diff --git a/README.md b/README.md index c20e549..a6857b3 100644 --- a/README.md +++ b/README.md @@ -8,31 +8,34 @@ GPTC provides both a CLI tool and a Python library. ### Classifying text - python -m gptc classify + python -m gptc classify [-n ] This will prompt for a string and classify it, then print (in JSON) a dict of -the format `{category: probability, category:probability, ...}` to stdout. +the format `{category: probability, category:probability, ...}` to stdout. (For +information about `-n `, see section "Ngrams.") Alternatively, if you only need the most likely category, you can use this: - python -m gptc classify [-c|--category] + python -m gptc classify [-n ] <-c|--category> This will prompt for a string and classify it, outputting the category on stdout (or "None" if it cannot determine anything). ### Compiling models - python -m gptc compile + python -m gptc compile [-n ] This will print the compiled model in JSON to stdout. ## Library -### `gptc.Classifier(model)` +### `gptc.Classifier(model, max_ngram_length=1)` Create a `Classifier` object using the given *compiled* model (as a dict, not JSON). +For information about `max_ngram_length`, see section "Ngrams." + #### `Classifier.confidence(text)` Classify `text`. Returns a dict of the format `{category: probability, @@ -43,10 +46,32 @@ category:probability, ...}` Classify `text`. Returns the category into which the text is placed (as a string), or `None` when it cannot classify the text. -### `gptc.compile(raw_model)` +### `gptc.compile(raw_model, max_ngram_length=1)` Compile a raw model (as a list, not JSON) and return the compiled model (as a dict). +For information about `max_ngram_length`, see section "Ngrams." + +## Ngrams + +GPTC optionally supports using ngrams to improve classification accuracy. They +are disabled by default (maximum length set to 1) for performance and +compatibility reasons. Enabling them significantly increases the time required +both for compilation and classification. The effect seems more significant for +compilation than for classification. Compiled models are also much larger when +ngrams are enabled. Larger maximum ngram lengths will result in slower +performance and larger files. It is a good idea to experiment with different +values and use the highest one at which GPTC is fast enough and models are +small enough for your needs. + +Once a model is compiled at a certain maximum ngram length, it cannot be used +for classification with a higher value. If you instantiate a `Classifier` with +a model compiled with a lower `max_ngram_length`, the value will be silently +reduced to the one used when compiling the model. + +Models compiled with older versions of GPTC which did not support ngrams are +handled the same way as models compiled with `max_ngram_length=1`. + ## Model format This section explains the raw model format, which is how you should create and @@ -73,6 +98,8 @@ Mark Twain and those written by William Shakespeare, is available in `models`. The raw model is in `models/raw.json`; the compiled model is in `models/compiled.json`. +The example model was compiled with `max_ngram_length=10`. + ## Benchmark A benchmark script is available for comparing performance of GPTC between diff --git a/benchmark.py b/benchmark.py index 4206f5a..08ea53a 100644 --- a/benchmark.py +++ b/benchmark.py @@ -3,6 +3,7 @@ import gptc import json import sys +max_ngram_length = 10 compile_iterations = 100 classify_iterations = 10000 @@ -12,9 +13,8 @@ with open("models/raw.json") as f: with open("models/benchmark_text.txt") as f: text = f.read() -classifier = gptc.Classifier(gptc.compile(raw_model)) - print("Benchmarking GPTC on Python", sys.version) +print("Maximum ngram length:", max_ngram_length) print( "Average compilation time over", @@ -23,7 +23,7 @@ print( round( 1000000 * timeit.timeit( - "gptc.compile(raw_model)", + "gptc.compile(raw_model, max_ngram_length)", number=compile_iterations, globals=globals(), ) @@ -33,6 +33,7 @@ print( ) +classifier = gptc.Classifier(gptc.compile(raw_model, max_ngram_length), max_ngram_length) print( "Average classification time over", classify_iterations, @@ -48,3 +49,4 @@ print( ), "microseconds", ) +print("--- benchmark complete ---") diff --git a/gptc/__main__.py b/gptc/__main__.py index 350ae36..cfabe87 100644 --- a/gptc/__main__.py +++ b/gptc/__main__.py @@ -6,14 +6,18 @@ import json import sys import gptc -parser = argparse.ArgumentParser(description="General Purpose Text Classifier", prog='gptc') +parser = argparse.ArgumentParser( + description="General Purpose Text Classifier", prog="gptc" +) subparsers = parser.add_subparsers(dest="subparser_name", required=True) -compile_parser = subparsers.add_parser('compile', help='compile a raw model') +compile_parser = subparsers.add_parser("compile", help="compile a raw model") compile_parser.add_argument("model", help="raw model to compile") +compile_parser.add_argument("--max-ngram-length", "-n", help="maximum ngram length", type=int, default=1) -classify_parser = subparsers.add_parser('classify', help='classify text') +classify_parser = subparsers.add_parser("classify", help="classify text") classify_parser.add_argument("model", help="compiled model to use") +classify_parser.add_argument("--max-ngram-length", "-n", help="maximum ngram length", type=int, default=1) group = classify_parser.add_mutually_exclusive_group() group.add_argument( "-j", @@ -33,10 +37,10 @@ args = parser.parse_args() with open(args.model, "r") as f: model = json.load(f) -if args.subparser_name == 'compile': - print(json.dumps(gptc.compile(model))) +if args.subparser_name == "compile": + print(json.dumps(gptc.compile(model, args.max_ngram_length))) else: - classifier = gptc.Classifier(model) + classifier = gptc.Classifier(model, args.max_ngram_length) if sys.stdin.isatty(): text = input("Text to analyse: ") diff --git a/gptc/classifier.py b/gptc/classifier.py index 5be02a9..3648a86 100755 --- a/gptc/classifier.py +++ b/gptc/classifier.py @@ -12,6 +12,11 @@ class Classifier: model : dict A compiled GPTC model. + max_ngram_length : int + The maximum ngram length to use when tokenizing input. If this is + greater than the value used when the model was compiled, it will be + silently lowered to that value. + Attributes ---------- model : dict @@ -19,12 +24,15 @@ class Classifier: """ - def __init__(self, model): + def __init__(self, model, max_ngram_length=1): if model.get("__version__", 0) != 3: raise gptc.exceptions.UnsupportedModelError( f"unsupported model version" ) self.model = model + self.max_ngram_length = min( + max_ngram_length, model.get("__ngrams__", 1) + ) def confidence(self, text): """Classify text with confidence. @@ -44,7 +52,7 @@ class Classifier: model = self.model - text = gptc.tokenizer.tokenize(text) + text = gptc.tokenizer.tokenize(text, self.max_ngram_length) probs = {} for word in text: try: diff --git a/gptc/compiler.py b/gptc/compiler.py index f0b63d6..3372e70 100755 --- a/gptc/compiler.py +++ b/gptc/compiler.py @@ -3,7 +3,7 @@ import gptc.tokenizer -def compile(raw_model): +def compile(raw_model, max_ngram_length=1): """Compile a raw model. Parameters @@ -11,6 +11,9 @@ def compile(raw_model): raw_model : list of dict A raw GPTC model. + max_ngram_length : int + Maximum ngram lenght to compile with. + Returns ------- dict @@ -21,7 +24,7 @@ def compile(raw_model): categories = {} for portion in raw_model: - text = gptc.tokenizer.tokenize(portion["text"]) + text = gptc.tokenizer.tokenize(portion["text"], max_ngram_length) category = portion["category"] try: categories[category] += text @@ -64,7 +67,7 @@ def compile(raw_model): ) model["__names__"] = names - + model["__ngrams__"] = max_ngram_length model["__version__"] = 3 return model diff --git a/gptc/tokenizer.py b/gptc/tokenizer.py index 7cebc86..bfceec8 100644 --- a/gptc/tokenizer.py +++ b/gptc/tokenizer.py @@ -1,14 +1,23 @@ # SPDX-License-Identifier: LGPL-3.0-or-later -def tokenize(text): +def tokenize(text, max_ngram_length=1): """Convert a string to a list of lemmas.""" - out = [""] + tokens = [""] for char in text.lower(): if char.isalpha() or char == "'": - out[-1] += char - elif out[-1] != "": - out.append("") + tokens[-1] += char + elif tokens[-1] != "": + tokens.append("") - return [string for string in out if string] + tokens = [string for string in tokens if string] + + if max_ngram_length == 1: + return tokens + else: + ngrams = [] + for ngram_length in range(1, max_ngram_length + 1): + for index in range(len(tokens) + 1 - ngram_length): + ngrams.append(" ".join(tokens[index : index + ngram_length])) + return ngrams diff --git a/models/compiled.json b/models/compiled.json index 5311602..d063870 100644 --- a/models/compiled.json +++ b/models/compiled.json @@ -1 +1 @@ -{"about": [51154, 14381], "half": [65535, 0], "past": [49102, 16433], "ten": [65535, 0], "the": [42261, 23274], "cracked": [65535, 0], "bell": [32701, 32834], "of": [39443, 26092], "small": [57314, 8221], "church": [65535, 0], "began": [65535, 0], "to": [31984, 33551], "ring": [5936, 59599], "and": [39961, 25574], "presently": [56957, 8578], "people": [26150, 39385], "gather": [16334, 49201], "for": [29857, 35678], "morning": [56140, 9395], "sermon": [65535, 0], "sunday": [65535, 0], "school": [65535, 0], "children": [45819, 19716], "distributed": [65535, 0], "themselves": [65535, 0], "house": [22468, 43067], "occupied": [65535, 0], "pews": [65535, 0], "with": [36273, 29262], "their": [26150, 39385], "parents": [21786, 43749], "so": [35190, 30345], "as": [39075, 26460], "be": [20356, 45179], "under": [65535, 0], "supervision": [65535, 0], "aunt": [65535, 0], "polly": [65535, 0], "came": [39257, 26278], "tom": [65535, 0], "sid": [65535, 0], "mary": [65535, 0], "sat": [65535, 0], "her": [31277, 34258], "being": [28022, 37513], "placed": [65535, 0], "next": [61424, 4111], "aisle": [65535, 0], "in": [31075, 34460], "order": [46757, 18778], "that": [30332, 35203], "he": [45490, 20045], "might": [32701, 32834], "far": [59555, 5980], "away": [40676, 24859], "from": [24960, 40575], "open": [37384, 28151], "window": [65535, 0], "seductive": [65535, 0], "outside": [65535, 0], "summer": [65535, 0], "scenes": [65535, 0], "possible": [65535, 0], "crowd": [65535, 0], "filed": [65535, 0], "up": [65535, 0], "aisles": [65535, 0], "aged": [65535, 0], "needy": [32701, 32834], "postmaster": [65535, 0], "who": [28274, 37261], "had": [47483, 18052], "seen": [65535, 0], "better": [37384, 28151], "days": [65535, 0], "mayor": [65535, 0], "his": [46783, 18752], "wife": [3529, 62006], "they": [39426, 26109], "a": [42950, 22585], "there": [38486, 27049], "among": [52386, 13149], "other": [35979, 29556], "unnecessaries": [65535, 0], "justice": [65535, 0], "peace": [32701, 32834], "widow": [65535, 0], "douglass": [65535, 0], "fair": [65535, 0], "smart": [65535, 0], "forty": [65535, 0], "generous": [65535, 0], "good": [34313, 31222], "hearted": [65535, 0], "soul": [65535, 0], "well": [37254, 28281], "do": [40351, 25184], "hill": [65535, 0], "mansion": [65535, 0], "only": [65535, 0], "palace": [65535, 0], "town": [57314, 8221], "most": [28428, 37107], "hospitable": [65535, 0], "much": [36151, 29384], "lavish": [65535, 0], "matter": [49102, 16433], "festivities": [65535, 0], "st": [65535, 0], "petersburg": [65535, 0], "could": [42614, 22921], "boast": [65535, 0], "bent": [49102, 16433], "venerable": [65535, 0], "major": [65535, 0], "mrs": [65535, 0], "ward": [65535, 0], "lawyer": [65535, 0], "riverson": [65535, 0], "new": [58488, 7047], "notable": [65535, 0], "distance": [65535, 0], "belle": [65535, 0], "village": [65535, 0], "followed": [65535, 0], "by": [27697, 37838], "troop": [65535, 0], "lawn": [65535, 0], "clad": [65535, 0], "ribbon": [65535, 0], "decked": [65535, 0], "young": [65535, 0], "heart": [48136, 17399], "breakers": [65535, 0], "then": [33247, 32288], "all": [37744, 27791], "clerks": [65535, 0], "body": [43631, 21904], "stood": [54576, 10959], "vestibule": [65535, 0], "sucking": [65535, 0], "cane": [65535, 0], "heads": [65535, 0], "circling": [65535, 0], "wall": [65535, 0], "oiled": [65535, 0], "simpering": [65535, 0], "admirers": [65535, 0], "till": [26462, 39073], "last": [47278, 18257], "girl": [65535, 0], "run": [32701, 32834], "gantlet": [65535, 0], "model": [65535, 0], "boy": [63571, 1964], "willie": [65535, 0], "mufferson": [65535, 0], "taking": [65535, 0], "heedful": [65535, 0], "care": [16334, 49201], "mother": [43631, 21904], "if": [29996, 35539], "she": [46091, 19444], "were": [37618, 27917], "cut": [54576, 10959], "glass": [65535, 0], "always": [65535, 0], "brought": [32701, 32834], "was": [56140, 9395], "pride": [43631, 21904], "matrons": [65535, 0], "boys": [65535, 0], "hated": [65535, 0], "him": [34489, 31046], "besides": [19605, 45930], "been": [65535, 0], "thrown": [65535, 0], "them": [27704, 37831], "white": [65535, 0], "handkerchief": [65535, 0], "hanging": [65535, 0], "out": [45314, 20221], "pocket": [65535, 0], "behind": [65535, 0], "usual": [65535, 0], "on": [42220, 23315], "sundays": [65535, 0], "accidentally": [32701, 32834], "no": [29996, 35539], "looked": [65535, 0], "upon": [65535, 0], "snobs": [65535, 0], "congregation": [65535, 0], "fully": [65535, 0], "assembled": [43631, 21904], "now": [35914, 29621], "rang": [65535, 0], "once": [37384, 28151], "more": [28022, 37513], "warn": [65535, 0], "laggards": [65535, 0], "stragglers": [65535, 0], "solemn": [65535, 0], "hush": [65535, 0], "fell": [58958, 6577], "which": [30304, 35231], "broken": [65535, 0], "tittering": [65535, 0], "whispering": [65535, 0], "choir": [65535, 0], "gallery": [65535, 0], "tittered": [65535, 0], "whispered": [65535, 0], "through": [59815, 5720], "service": [65535, 0], "not": [15442, 50093], "ill": [9330, 56205], "bred": [32701, 32834], "but": [34396, 31139], "i": [13497, 52038], "have": [65535, 0], "forgotten": [65535, 0], "where": [17821, 47714], "it": [40155, 25380], "great": [46454, 19081], "many": [54576, 10959], "years": [65535, 0], "ago": [65535, 0], "can": [42344, 23191], "scarcely": [65535, 0], "remember": [21786, 43749], "anything": [65535, 0], "think": [65535, 0], "some": [24013, 41522], "foreign": [65535, 0], "country": [65535, 0], "minister": [65535, 0], "gave": [65535, 0], "hymn": [65535, 0], "read": [39257, 26278], "relish": [65535, 0], "peculiar": [65535, 0], "style": [65535, 0], "admired": [65535, 0], "part": [30181, 35354], "voice": [49102, 16433], "medium": [65535, 0], "key": [32701, 32834], "climbed": [65535, 0], "steadily": [65535, 0], "reached": [65535, 0], "certain": [65535, 0], "point": [65535, 0], "bore": [32701, 32834], "strong": [32701, 32834], "emphasis": [65535, 0], "topmost": [65535, 0], "word": [26921, 38614], "plunged": [65535, 0], "down": [65535, 0], "spring": [52386, 13149], "board": [65535, 0], "shall": [18151, 47384], "car": [65535, 0], "ri": [65535, 0], "ed": [65535, 0], "toe": [65535, 0], "skies": [65535, 0], "flow'ry": [65535, 0], "beds": [65535, 0], "ease": [65535, 0], "whilst": [65535, 0], "others": [10886, 54649], "fight": [65535, 0], "win": [65535, 0], "prize": [65535, 0], "sail": [65535, 0], "thro'": [65535, 0], "bloody": [65535, 0], "seas": [32701, 32834], "regarded": [65535, 0], "wonderful": [65535, 0], "reader": [65535, 0], "at": [30457, 35078], "sociables": [65535, 0], "called": [57314, 8221], "poetry": [65535, 0], "when": [38529, 27006], "ladies": [65535, 0], "would": [34936, 30599], "lift": [65535, 0], "hands": [44998, 20537], "let": [23884, 41651], "fall": [37384, 28151], "helplessly": [65535, 0], "laps": [65535, 0], "eyes": [46757, 18778], "shake": [43631, 21904], "say": [32701, 32834], "words": [32701, 32834], "cannot": [5936, 59599], "express": [65535, 0], "is": [19637, 45898], "too": [28234, 37301], "beautiful": [65535, 0], "this": [22877, 42658], "mortal": [65535, 0], "earth": [13065, 52470], "after": [52386, 13149], "sung": [65535, 0], "rev": [65535, 0], "mr": [45819, 19716], "sprague": [65535, 0], "turned": [65535, 0], "himself": [65535, 0], "into": [54028, 11507], "bulletin": [65535, 0], "off": [53580, 11955], "notices": [65535, 0], "meetings": [65535, 0], "societies": [65535, 0], "things": [43631, 21904], "seemed": [65535, 0], "list": [32701, 32834], "stretch": [65535, 0], "crack": [65535, 0], "doom": [65535, 0], "queer": [65535, 0], "custom": [65535, 0], "still": [30517, 35018], "kept": [40897, 24638], "america": [32701, 32834], "even": [65535, 0], "cities": [65535, 0], "here": [24514, 41021], "age": [39257, 26278], "abundant": [65535, 0], "newspapers": [65535, 0], "often": [26150, 39385], "less": [65535, 0], "justify": [65535, 0], "traditional": [65535, 0], "harder": [65535, 0], "get": [37384, 28151], "rid": [65535, 0], "prayed": [65535, 0], "prayer": [65535, 0], "went": [55571, 9964], "details": [65535, 0], "pleaded": [32701, 32834], "little": [62402, 3133], "churches": [65535, 0], "itself": [65535, 0], "county": [65535, 0], "state": [37384, 28151], "officers": [43631, 21904], "united": [65535, 0], "states": [65535, 0], "congress": [65535, 0], "president": [65535, 0], "government": [65535, 0], "poor": [65535, 0], "sailors": [32701, 32834], "tossed": [65535, 0], "stormy": [65535, 0], "oppressed": [65535, 0], "millions": [65535, 0], "groaning": [65535, 0], "heel": [65535, 0], "european": [65535, 0], "monarchies": [65535, 0], "oriental": [65535, 0], "despotisms": [65535, 0], "such": [26560, 38975], "light": [24514, 41021], "tidings": [65535, 0], "yet": [19363, 46172], "see": [29630, 35905], "nor": [8905, 56630], "ears": [65535, 0], "hear": [58958, 6577], "withal": [65535, 0], "heathen": [65535, 0], "islands": [65535, 0], "sea": [9330, 56205], "closed": [65535, 0], "supplication": [65535, 0], "speak": [54576, 10959], "find": [46757, 18778], "grace": [7256, 58279], "favor": [65535, 0], "seed": [65535, 0], "sown": [65535, 0], "fertile": [65535, 0], "ground": [57314, 8221], "yielding": [65535, 0], "time": [32701, 32834], "grateful": [65535, 0], "harvest": [65535, 0], "amen": [65535, 0], "rustling": [65535, 0], "dresses": [65535, 0], "standing": [65535, 0], "whose": [30181, 35354], "history": [65535, 0], "book": [65535, 0], "relates": [65535, 0], "did": [25581, 39954], "enjoy": [65535, 0], "endured": [65535, 0], "restive": [65535, 0], "tally": [65535, 0], "unconsciously": [65535, 0], "listening": [65535, 0], "knew": [55418, 10117], "old": [50594, 14941], "clergyman's": [65535, 0], "regular": [65535, 0], "route": [65535, 0], "over": [65535, 0], "trifle": [65535, 0], "interlarded": [65535, 0], "ear": [65535, 0], "detected": [65535, 0], "whole": [55418, 10117], "nature": [26150, 39385], "resented": [65535, 0], "considered": [65535, 0], "additions": [65535, 0], "unfair": [65535, 0], "scoundrelly": [65535, 0], "midst": [49102, 16433], "fly": [65535, 0], "lit": [65535, 0], "back": [61548, 3987], "pew": [65535, 0], "front": [65535, 0], "tortured": [65535, 0], "spirit": [58958, 6577], "calmly": [65535, 0], "rubbing": [65535, 0], "its": [65535, 0], "together": [37384, 28151], "embracing": [65535, 0], "head": [50364, 15171], "arms": [65535, 0], "polishing": [65535, 0], "vigorously": [65535, 0], "almost": [40897, 24638], "company": [39257, 26278], "slender": [65535, 0], "thread": [65535, 0], "neck": [65535, 0], "exposed": [65535, 0], "view": [32701, 32834], "scraping": [65535, 0], "wings": [65535, 0], "hind": [65535, 0], "legs": [65535, 0], "smoothing": [65535, 0], "coat": [65535, 0], "tails": [65535, 0], "going": [59555, 5980], "toilet": [65535, 0], "tranquilly": [65535, 0], "perfectly": [65535, 0], "safe": [26150, 39385], "indeed": [65535, 0], "sorely": [65535, 0], "tom's": [65535, 0], "itched": [65535, 0], "grab": [65535, 0], "dare": [54576, 10959], "believed": [65535, 0], "instantly": [65535, 0], "destroyed": [65535, 0], "thing": [50926, 14609], "while": [55152, 10383], "closing": [65535, 0], "sentence": [32701, 32834], "hand": [38486, 27049], "curve": [65535, 0], "steal": [65535, 0], "forward": [54576, 10959], "instant": [46757, 18778], "prisoner": [16334, 49201], "war": [65535, 0], "act": [65535, 0], "made": [34750, 30785], "go": [26685, 38850], "text": [65535, 0], "droned": [65535, 0], "along": [54576, 10959], "monotonously": [65535, 0], "an": [30628, 34907], "argument": [65535, 0], "prosy": [65535, 0], "nod": [65535, 0], "dealt": [65535, 0], "limitless": [65535, 0], "fire": [41643, 23892], "brimstone": [65535, 0], "thinned": [65535, 0], "predestined": [65535, 0], "elect": [65535, 0], "hardly": [65535, 0], "worth": [46757, 18778], "saving": [65535, 0], "counted": [65535, 0], "pages": [65535, 0], "how": [22176, 43359], "seldom": [65535, 0], "else": [13065, 52470], "discourse": [26150, 39385], "however": [65535, 0], "really": [65535, 0], "interested": [65535, 0], "grand": [65535, 0], "moving": [65535, 0], "picture": [43631, 21904], "assembling": [65535, 0], "world's": [65535, 0], "hosts": [32701, 32834], "millennium": [65535, 0], "lion": [65535, 0], "lamb": [65535, 0], "should": [11876, 53659], "lie": [57314, 8221], "child": [65535, 0], "lead": [21786, 43749], "pathos": [65535, 0], "lesson": [65535, 0], "moral": [65535, 0], "spectacle": [65535, 0], "lost": [19605, 45930], "thought": [48388, 17147], "conspicuousness": [65535, 0], "principal": [65535, 0], "character": [65535, 0], "before": [39726, 25809], "looking": [56140, 9395], "nations": [65535, 0], "face": [37988, 27547], "said": [63305, 2230], "wished": [49102, 16433], "tame": [65535, 0], "lapsed": [65535, 0], "suffering": [65535, 0], "again": [65535, 0], "dry": [65535, 0], "resumed": [65535, 0], "bethought": [65535, 0], "treasure": [65535, 0], "got": [62073, 3462], "large": [32701, 32834], "black": [65535, 0], "beetle": [65535, 0], "formidable": [65535, 0], "jaws": [65535, 0], "pinchbug": [65535, 0], "percussion": [65535, 0], "cap": [65535, 0], "box": [65535, 0], "first": [28022, 37513], "take": [33587, 31948], "finger": [40897, 24638], "natural": [65535, 0], "fillip": [65535, 0], "floundering": [65535, 0], "hurt": [57314, 8221], "boy's": [65535, 0], "mouth": [65535, 0], "lay": [43631, 21904], "working": [43631, 21904], "helpless": [65535, 0], "unable": [65535, 0], "turn": [65535, 0], "eyed": [65535, 0], "longed": [65535, 0], "reach": [65535, 0], "uninterested": [65535, 0], "found": [45314, 20221], "relief": [65535, 0], "vagrant": [65535, 0], "poodle": [65535, 0], "dog": [57314, 8221], "idling": [65535, 0], "sad": [13065, 52470], "lazy": [65535, 0], "softness": [65535, 0], "quiet": [28022, 37513], "weary": [65535, 0], "captivity": [65535, 0], "sighing": [65535, 0], "change": [43631, 21904], "spied": [65535, 0], "drooping": [65535, 0], "tail": [65535, 0], "lifted": [65535, 0], "wagged": [65535, 0], "surveyed": [65535, 0], "walked": [65535, 0], "around": [65535, 0], "smelt": [65535, 0], "grew": [65535, 0], "bolder": [65535, 0], "took": [65535, 0], "closer": [65535, 0], "smell": [65535, 0], "lip": [65535, 0], "gingerly": [65535, 0], "snatch": [65535, 0], "just": [65535, 0], "missing": [65535, 0], "another": [40897, 24638], "diversion": [65535, 0], "subsided": [65535, 0], "stomach": [65535, 0], "between": [65535, 0], "paws": [65535, 0], "continued": [65535, 0], "experiments": [65535, 0], "indifferent": [65535, 0], "absent": [65535, 0], "minded": [65535, 0], "nodded": [65535, 0], "chin": [52386, 13149], "descended": [65535, 0], "touched": [65535, 0], "enemy": [65535, 0], "seized": [65535, 0], "sharp": [65535, 0], "yelp": [65535, 0], "flirt": [65535, 0], "poodle's": [65535, 0], "couple": [65535, 0], "yards": [65535, 0], "neighboring": [65535, 0], "spectators": [65535, 0], "shook": [65535, 0], "gentle": [19605, 45930], "inward": [65535, 0], "joy": [65535, 0], "several": [65535, 0], "faces": [65535, 0], "fans": [65535, 0], "handkerchiefs": [65535, 0], "entirely": [65535, 0], "happy": [39257, 26278], "foolish": [26150, 39385], "probably": [65535, 0], "felt": [49102, 16433], "resentment": [65535, 0], "craving": [65535, 0], "revenge": [65535, 0], "wary": [65535, 0], "attack": [65535, 0], "jumping": [65535, 0], "every": [65535, 0], "circle": [65535, 0], "lighting": [65535, 0], "fore": [65535, 0], "within": [20423, 45112], "inch": [65535, 0], "creature": [28022, 37513], "making": [36343, 29192], "snatches": [65535, 0], "teeth": [39257, 26278], "jerking": [65535, 0], "flapped": [65535, 0], "tired": [43631, 21904], "tried": [65535, 0], "amuse": [65535, 0], "ant": [526, 65009], "nose": [49102, 16433], "close": [65535, 0], "floor": [65535, 0], "quickly": [65535, 0], "wearied": [65535, 0], "yawned": [65535, 0], "sighed": [65535, 0], "forgot": [43631, 21904], "wild": [65535, 0], "agony": [65535, 0], "sailing": [65535, 0], "yelps": [65535, 0], "crossed": [65535, 0], "altar": [65535, 0], "flew": [65535, 0], "doors": [65535, 0], "clamored": [65535, 0], "home": [15729, 49806], "anguish": [65535, 0], "progress": [65535, 0], "woolly": [65535, 0], "comet": [65535, 0], "orbit": [65535, 0], "gleam": [65535, 0], "speed": [49102, 16433], "frantic": [65535, 0], "sufferer": [65535, 0], "sheered": [65535, 0], "course": [47609, 17926], "sprang": [65535, 0], "master's": [65535, 0], "lap": [65535, 0], "flung": [65535, 0], "distress": [65535, 0], "died": [65535, 0], "red": [54576, 10959], "faced": [65535, 0], "suffocating": [65535, 0], "suppressed": [65535, 0], "laughter": [65535, 0], "come": [18941, 46594], "dead": [53580, 11955], "standstill": [65535, 0], "lame": [65535, 0], "halting": [65535, 0], "possibility": [65535, 0], "impressiveness": [65535, 0], "end": [17045, 48490], "gravest": [65535, 0], "sentiments": [65535, 0], "constantly": [65535, 0], "received": [65535, 0], "smothered": [65535, 0], "burst": [65535, 0], "unholy": [65535, 0], "mirth": [32701, 32834], "cover": [65535, 0], "remote": [65535, 0], "parson": [65535, 0], "rarely": [65535, 0], "facetious": [65535, 0], "genuine": [65535, 0], "ordeal": [65535, 0], "benediction": [65535, 0], "pronounced": [65535, 0], "sawyer": [65535, 0], "quite": [49102, 16433], "cheerful": [65535, 0], "thinking": [65535, 0], "satisfaction": [16334, 49201], "divine": [65535, 0], "bit": [65535, 0], "variety": [65535, 0], "one": [35510, 30025], "marring": [65535, 0], "willing": [65535, 0], "play": [52386, 13149], "upright": [65535, 0], "carry": [65535, 0], "monday": [65535, 0], "miserable": [65535, 0], "because": [44782, 20753], "week's": [65535, 0], "slow": [49102, 16433], "generally": [65535, 0], "day": [17969, 47566], "wishing": [65535, 0], "intervening": [65535, 0], "holiday": [65535, 0], "fetters": [65535, 0], "odious": [65535, 0], "occurred": [65535, 0], "sick": [65535, 0], "stay": [23345, 42190], "vague": [65535, 0], "canvassed": [65535, 0], "system": [65535, 0], "ailment": [65535, 0], "investigated": [65535, 0], "detect": [65535, 0], "colicky": [65535, 0], "symptoms": [65535, 0], "encourage": [65535, 0], "considerable": [65535, 0], "hope": [21786, 43749], "soon": [65535, 0], "feeble": [32701, 32834], "wholly": [65535, 0], "reflected": [65535, 0], "further": [65535, 0], "suddenly": [65535, 0], "discovered": [65535, 0], "something": [43631, 21904], "upper": [65535, 0], "loose": [19605, 45930], "lucky": [65535, 0], "begin": [49102, 16433], "groan": [65535, 0], "starter": [65535, 0], "court": [65535, 0], "pull": [65535, 0], "hold": [18670, 46865], "tooth": [58227, 7308], "reserve": [65535, 0], "present": [16334, 49201], "seek": [32701, 32834], "nothing": [28022, 37513], "offered": [65535, 0], "remembered": [65535, 0], "hearing": [65535, 0], "doctor": [16334, 49201], "tell": [28428, 37107], "laid": [49102, 16433], "patient": [18670, 46865], "two": [40374, 25161], "or": [25204, 40331], "three": [40897, 24638], "weeks": [65535, 0], "threatened": [65535, 0], "make": [28022, 37513], "lose": [21786, 43749], "eagerly": [65535, 0], "drew": [40897, 24638], "sore": [52386, 13149], "sheet": [65535, 0], "held": [49102, 16433], "inspection": [65535, 0], "know": [24995, 40540], "necessary": [65535, 0], "chance": [56140, 9395], "slept": [43631, 21904], "unconscious": [65535, 0], "groaned": [65535, 0], "louder": [65535, 0], "fancied": [65535, 0], "feel": [65535, 0], "pain": [65535, 0], "result": [65535, 0], "panting": [65535, 0], "exertions": [65535, 0], "rest": [41643, 23892], "swelled": [65535, 0], "fetched": [65535, 0], "succession": [43631, 21904], "admirable": [65535, 0], "groans": [65535, 0], "snored": [65535, 0], "aggravated": [65535, 0], "worked": [65535, 0], "stretched": [65535, 0], "elbow": [65535, 0], "snort": [65535, 0], "stare": [65535, 0], "response": [65535, 0], "what": [18342, 47193], "anxiously": [65535, 0], "moaned": [65535, 0], "oh": [35681, 29854], "don't": [65535, 0], "joggle": [65535, 0], "me": [11136, 54399], "why": [27704, 37831], "what's": [50067, 15468], "must": [11527, 54008], "call": [18151, 47384], "auntie": [65535, 0], "never": [65535, 0], "mind": [65535, 0], "it'll": [65535, 0], "maybe": [65535, 0], "anybody": [65535, 0], "it's": [65535, 0], "awful": [65535, 0], "long": [32701, 32834], "you": [26229, 39306], "way": [49102, 16433], "hours": [65535, 0], "ouch": [65535, 0], "stir": [65535, 0], "you'll": [47609, 17926], "kill": [21786, 43749], "didn't": [65535, 0], "wake": [65535, 0], "sooner": [21786, 43749], "makes": [32701, 32834], "my": [5818, 59717], "flesh": [16334, 49201], "crawl": [65535, 0], "forgive": [65535, 0], "everything": [65535, 0], "you've": [65535, 0], "ever": [65535, 0], "done": [45819, 19716], "i'm": [65535, 0], "gone": [23070, 42465], "ain't": [65535, 0], "dying": [65535, 0], "are": [15503, 50032], "everybody": [65535, 0], "'em": [65535, 0], "give": [65535, 0], "sash": [65535, 0], "cat": [65535, 0], "eye": [42069, 23466], "that's": [46454, 19081], "snatched": [65535, 0], "clothes": [65535, 0], "reality": [65535, 0], "handsomely": [65535, 0], "imagination": [32701, 32834], "gathered": [65535, 0], "tone": [65535, 0], "stairs": [65535, 0], "yes'm": [65535, 0], "wait": [65535, 0], "quick": [65535, 0], "rubbage": [65535, 0], "believe": [65535, 0], "fled": [32701, 32834], "nevertheless": [65535, 0], "heels": [65535, 0], "trembled": [65535, 0], "bedside": [65535, 0], "gasped": [65535, 0], "toe's": [65535, 0], "mortified": [65535, 0], "lady": [55418, 10117], "sank": [65535, 0], "chair": [65535, 0], "laughed": [65535, 0], "cried": [65535, 0], "both": [22735, 42800], "restored": [65535, 0], "shut": [21786, 43749], "nonsense": [65535, 0], "climb": [65535, 0], "ceased": [65535, 0], "vanished": [65535, 0], "your": [11876, 53659], "them's": [65535, 0], "aches": [65535, 0], "you're": [65535, 0], "die": [24514, 41021], "silk": [65535, 0], "chunk": [65535, 0], "kitchen": [52386, 13149], "please": [27242, 38293], "any": [27054, 38481], "wish": [65535, 0], "may": [2511, 63024], "does": [65535, 0], "want": [53580, 11955], "row": [43631, 21904], "you'd": [65535, 0], "fishing": [65535, 0], "love": [65535, 0], "seem": [65535, 0], "try": [57314, 8221], "break": [21786, 43749], "outrageousness": [65535, 0], "dental": [65535, 0], "instruments": [65535, 0], "ready": [65535, 0], "fast": [14518, 51017], "loop": [65535, 0], "tied": [65535, 0], "bedpost": [65535, 0], "thrust": [65535, 0], "hung": [65535, 0], "dangling": [65535, 0], "trials": [65535, 0], "bring": [6530, 59005], "compensations": [65535, 0], "wended": [65535, 0], "breakfast": [65535, 0], "envy": [65535, 0], "met": [13065, 52470], "gap": [65535, 0], "enabled": [65535, 0], "expectorate": [65535, 0], "following": [32701, 32834], "lads": [65535, 0], "exhibition": [65535, 0], "centre": [65535, 0], "fascination": [65535, 0], "homage": [21786, 43749], "without": [35681, 29854], "adherent": [65535, 0], "shorn": [65535, 0], "glory": [65535, 0], "heavy": [65535, 0], "disdain": [65535, 0], "wasn't": [65535, 0], "spit": [21786, 43749], "like": [38065, 27470], "sour": [65535, 0], "grapes": [65535, 0], "wandered": [65535, 0], "dismantled": [65535, 0], "hero": [65535, 0], "shortly": [65535, 0], "juvenile": [65535, 0], "pariah": [65535, 0], "huckleberry": [65535, 0], "finn": [65535, 0], "son": [65535, 0], "drunkard": [32701, 32834], "cordially": [65535, 0], "dreaded": [65535, 0], "mothers": [65535, 0], "idle": [32701, 32834], "lawless": [65535, 0], "vulgar": [43631, 21904], "bad": [49102, 16433], "delighted": [65535, 0], "forbidden": [65535, 0], "society": [65535, 0], "dared": [65535, 0], "respectable": [65535, 0], "envied": [65535, 0], "gaudy": [65535, 0], "outcast": [65535, 0], "condition": [65535, 0], "strict": [65535, 0], "orders": [65535, 0], "played": [65535, 0], "dressed": [65535, 0], "cast": [65535, 0], "full": [49102, 16433], "grown": [65535, 0], "men": [18670, 46865], "perennial": [65535, 0], "bloom": [65535, 0], "fluttering": [65535, 0], "rags": [65535, 0], "hat": [65535, 0], "vast": [65535, 0], "ruin": [65535, 0], "wide": [43631, 21904], "crescent": [65535, 0], "lopped": [65535, 0], "brim": [65535, 0], "wore": [65535, 0], "nearly": [65535, 0], "rearward": [65535, 0], "buttons": [65535, 0], "suspender": [65535, 0], "supported": [65535, 0], "trousers": [65535, 0], "seat": [65535, 0], "bagged": [65535, 0], "low": [49102, 16433], "contained": [65535, 0], "fringed": [65535, 0], "dragged": [65535, 0], "dirt": [65535, 0], "rolled": [65535, 0], "own": [65535, 0], "free": [49102, 16433], "will": [11985, 53550], "doorsteps": [65535, 0], "fine": [49102, 16433], "weather": [65535, 0], "empty": [65535, 0], "hogsheads": [65535, 0], "wet": [65535, 0], "master": [5557, 59978], "obey": [13065, 52470], "swimming": [65535, 0], "chose": [65535, 0], "suited": [65535, 0], "nobody": [65535, 0], "forbade": [65535, 0], "sit": [37384, 28151], "late": [36343, 29192], "pleased": [65535, 0], "barefoot": [65535, 0], "resume": [65535, 0], "leather": [21786, 43749], "wash": [65535, 0], "put": [39257, 26278], "clean": [65535, 0], "swear": [65535, 0], "wonderfully": [65535, 0], "goes": [32701, 32834], "life": [14848, 50687], "precious": [65535, 0], "harassed": [65535, 0], "hampered": [65535, 0], "hailed": [65535, 0], "romantic": [65535, 0], "hello": [65535, 0], "yourself": [65535, 0], "lemme": [65535, 0], "huck": [65535, 0], "he's": [38164, 27371], "pretty": [65535, 0], "stiff": [65535, 0], "where'd": [65535, 0], "bought": [28022, 37513], "off'n": [65535, 0], "blue": [65535, 0], "ticket": [65535, 0], "bladder": [65535, 0], "slaughter": [65535, 0], "ben": [65535, 0], "rogers": [65535, 0], "hoop": [65535, 0], "stick": [65535, 0], "cats": [65535, 0], "cure": [65535, 0], "warts": [65535, 0], "bet": [65535, 0], "spunk": [65535, 0], "water": [57314, 8221], "wouldn't": [65535, 0], "dern": [65535, 0], "d'you": [65535, 0], "hain't": [65535, 0], "bob": [65535, 0], "tanner": [65535, 0], "told": [43631, 21904], "jeff": [65535, 0], "thatcher": [65535, 0], "johnny": [65535, 0], "baker": [65535, 0], "jim": [65535, 0], "hollis": [65535, 0], "nigger": [65535, 0], "they'll": [26150, 39385], "leastways": [65535, 0], "shucks": [65535, 0], "dipped": [65535, 0], "rotten": [65535, 0], "stump": [65535, 0], "rain": [65535, 0], "daytime": [65535, 0], "certainly": [65535, 0], "yes": [52386, 13149], "least": [32701, 32834], "reckon": [65535, 0], "aha": [65535, 0], "talk": [65535, 0], "trying": [54576, 10959], "blame": [21786, 43749], "fool": [65535, 0], "middle": [65535, 0], "woods": [65535, 0], "there's": [15077, 50458], "midnight": [65535, 0], "against": [7683, 57852], "jam": [65535, 0], "'barley": [65535, 0], "corn": [65535, 0], "barley": [65535, 0], "injun": [65535, 0], "meal": [65535, 0], "shorts": [65535, 0], "swaller": [65535, 0], "these": [16753, 48782], "'": [65535, 0], "walk": [65535, 0], "eleven": [65535, 0], "steps": [65535, 0], "times": [37384, 28151], "speaking": [65535, 0], "charm's": [65535, 0], "busted": [65535, 0], "sounds": [65535, 0], "sir": [4212, 61323], "becuz": [65535, 0], "wartiest": [65535, 0], "wart": [54576, 10959], "he'd": [65535, 0], "knowed": [65535, 0], "work": [65535, 0], "i've": [65535, 0], "thousands": [65535, 0], "frogs": [65535, 0], "sometimes": [49102, 16433], "bean": [65535, 0], "bean's": [65535, 0], "split": [65535, 0], "blood": [37384, 28151], "piece": [65535, 0], "dig": [65535, 0], "hole": [65535, 0], "bury": [65535, 0], "'bout": [65535, 0], "crossroads": [65535, 0], "dark": [65535, 0], "moon": [65535, 0], "burn": [65535, 0], "keep": [65535, 0], "drawing": [65535, 0], "fetch": [11527, 54008], "helps": [65535, 0], "draw": [26150, 39385], "comes": [4353, 61182], "though": [21786, 43749], "burying": [65535, 0], "'down": [65535, 0], "bother": [65535, 0], "joe": [65535, 0], "harper": [65535, 0], "coonville": [65535, 0], "everywheres": [65535, 0], "graveyard": [65535, 0], "'long": [65535, 0], "somebody": [65535, 0], "wicked": [65535, 0], "has": [65535, 0], "buried": [43631, 21904], "devil": [65535, 0], "can't": [65535, 0], "wind": [65535, 0], "they're": [65535, 0], "feller": [65535, 0], "heave": [65535, 0], "'devil": [65535, 0], "follow": [65535, 0], "corpse": [65535, 0], "ye": [65535, 0], "that'll": [65535, 0], "right": [49102, 16433], "hopkins": [65535, 0], "she's": [43631, 21904], "witch": [16334, 49201], "witched": [65535, 0], "pap": [65535, 0], "says": [65535, 0], "self": [65535, 0], "witching": [65535, 0], "rock": [65535, 0], "hadn't": [65535, 0], "dodged": [65535, 0], "very": [49102, 16433], "night": [26150, 39385], "shed": [65535, 0], "wher'": [65535, 0], "layin": [65535, 0], "drunk": [65535, 0], "broke": [40897, 24638], "arm": [65535, 0], "lord": [6530, 59005], "easy": [65535, 0], "stiddy": [65535, 0], "specially": [65535, 0], "mumble": [65535, 0], "saying": [56140, 9395], "lord's": [65535, 0], "backards": [65535, 0], "hucky": [65535, 0], "hoss": [65535, 0], "williams": [65535, 0], "saturday": [65535, 0], "charms": [65535, 0], "devils": [65535, 0], "slosh": [65535, 0], "afeard": [65535, 0], "'tain't": [65535, 0], "likely": [65535, 0], "meow": [65535, 0], "kep'": [65535, 0], "meowing": [65535, 0], "hays": [65535, 0], "throwing": [65535, 0], "rocks": [65535, 0], "'dern": [65535, 0], "hove": [65535, 0], "brick": [65535, 0], "won't": [65535, 0], "couldn't": [65535, 0], "watching": [65535, 0], "i'll": [65535, 0], "tick": [65535, 0], "what'll": [65535, 0], "sell": [65535, 0], "mighty": [46757, 18778], "anyway": [65535, 0], "belong": [65535, 0], "satisfied": [65535, 0], "enough": [51447, 14088], "sho": [65535, 0], "ticks": [65535, 0], "plenty": [65535, 0], "thousand": [34886, 30649], "wanted": [65535, 0], "early": [65535, 0], "year": [65535, 0], "paper": [65535, 0], "carefully": [65535, 0], "unrolled": [65535, 0], "viewed": [65535, 0], "wistfully": [65535, 0], "temptation": [65535, 0], "genuwyne": [65535, 0], "showed": [65535, 0], "vacancy": [65535, 0], "trade": [65535, 0], "enclosed": [65535, 0], "lately": [43631, 21904], "pinchbug's": [65535, 0], "prison": [21786, 43749], "separated": [65535, 0], "each": [54576, 10959], "feeling": [32701, 32834], "wealthier": [65535, 0], "than": [65535, 0], "isolated": [65535, 0], "frame": [65535, 0], "schoolhouse": [65535, 0], "strode": [65535, 0], "briskly": [65535, 0], "manner": [65535, 0], "honest": [37384, 28151], "peg": [65535, 0], "business": [65535, 0], "alacrity": [65535, 0], "throned": [65535, 0], "high": [65535, 0], "splint": [65535, 0], "bottom": [65535, 0], "dozing": [65535, 0], "lulled": [65535, 0], "drowsy": [65535, 0], "hum": [65535, 0], "study": [65535, 0], "interruption": [65535, 0], "roused": [65535, 0], "thomas": [65535, 0], "name": [17821, 47714], "meant": [32701, 32834], "trouble": [46757, 18778], "refuge": [65535, 0], "saw": [24903, 40632], "yellow": [65535, 0], "hair": [65535, 0], "recognized": [65535, 0], "electric": [65535, 0], "sympathy": [65535, 0], "form": [65535, 0], "vacant": [65535, 0], "place": [38486, 27049], "girls'": [65535, 0], "side": [65535, 0], "stopped": [65535, 0], "pulse": [21786, 43749], "stared": [65535, 0], "buzz": [65535, 0], "pupils": [65535, 0], "wondered": [65535, 0], "foolhardy": [65535, 0], "mistaking": [65535, 0], "astounding": [65535, 0], "confession": [65535, 0], "listened": [65535, 0], "mere": [65535, 0], "ferule": [65535, 0], "answer": [28606, 36929], "offence": [21786, 43749], "jacket": [65535, 0], "performed": [65535, 0], "until": [65535, 0], "stock": [65535, 0], "switches": [65535, 0], "notably": [65535, 0], "diminished": [65535, 0], "girls": [65535, 0], "warning": [65535, 0], "titter": [65535, 0], "rippled": [65535, 0], "room": [65535, 0], "appeared": [65535, 0], "abash": [65535, 0], "caused": [65535, 0], "rather": [21786, 43749], "worshipful": [65535, 0], "awe": [65535, 0], "unknown": [65535, 0], "idol": [65535, 0], "dread": [65535, 0], "pleasure": [65535, 0], "fortune": [13065, 52470], "pine": [65535, 0], "bench": [65535, 0], "hitched": [65535, 0], "herself": [65535, 0], "toss": [65535, 0], "nudges": [65535, 0], "winks": [65535, 0], "whispers": [65535, 0], "traversed": [65535, 0], "desk": [65535, 0], "attention": [65535, 0], "accustomed": [65535, 0], "murmur": [65535, 0], "rose": [65535, 0], "dull": [21786, 43749], "air": [65535, 0], "furtive": [65535, 0], "glances": [65535, 0], "observed": [65535, 0], "space": [65535, 0], "minute": [65535, 0], "cautiously": [65535, 0], "peach": [65535, 0], "gently": [65535, 0], "animosity": [65535, 0], "patiently": [43631, 21904], "returned": [65535, 0], "remain": [65535, 0], "scrawled": [65535, 0], "slate": [65535, 0], "glanced": [43631, 21904], "sign": [65535, 0], "hiding": [65535, 0], "left": [17424, 48111], "refused": [65535, 0], "notice": [65535, 0], "human": [65535, 0], "curiosity": [65535, 0], "manifest": [65535, 0], "perceptible": [65535, 0], "signs": [65535, 0], "apparently": [65535, 0], "sort": [65535, 0], "noncommittal": [65535, 0], "attempt": [65535, 0], "betray": [32701, 32834], "aware": [65535, 0], "hesitatingly": [65535, 0], "partly": [65535, 0], "uncovered": [65535, 0], "dismal": [65535, 0], "caricature": [65535, 0], "gable": [65535, 0], "ends": [65535, 0], "corkscrew": [65535, 0], "smoke": [65535, 0], "issuing": [65535, 0], "chimney": [65535, 0], "girl's": [65535, 0], "interest": [65535, 0], "fasten": [32701, 32834], "finished": [65535, 0], "gazed": [65535, 0], "moment": [65535, 0], "nice": [65535, 0], "man": [14125, 51410], "artist": [65535, 0], "erected": [65535, 0], "yard": [65535, 0], "resembled": [65535, 0], "derrick": [65535, 0], "stepped": [65535, 0], "hypercritical": [65535, 0], "monster": [65535, 0], "coming": [65535, 0], "hour": [65535, 0], "straw": [65535, 0], "limbs": [65535, 0], "armed": [65535, 0], "spreading": [65535, 0], "fingers": [65535, 0], "portentous": [65535, 0], "fan": [65535, 0], "learn": [65535, 0], "noon": [65535, 0], "dinner": [2611, 62924], "whack": [65535, 0], "becky": [65535, 0], "yours": [21786, 43749], "lick": [65535, 0], "scrawl": [65535, 0], "backward": [65535, 0], "begged": [65535, 0], "deed": [65535, 0], "double": [43631, 21904], "live": [65535, 0], "treat": [65535, 0], "scuffle": [65535, 0], "ensued": [65535, 0], "pretending": [65535, 0], "resist": [65535, 0], "earnest": [32701, 32834], "letting": [65535, 0], "slip": [65535, 0], "degrees": [65535, 0], "revealed": [65535, 0], "hit": [52386, 13149], "rap": [65535, 0], "reddened": [65535, 0], "juncture": [65535, 0], "fateful": [65535, 0], "grip": [65535, 0], "steady": [65535, 0], "lifting": [65535, 0], "impulse": [65535, 0], "vise": [65535, 0], "borne": [8163, 57372], "across": [65535, 0], "deposited": [65535, 0], "peppering": [65535, 0], "giggles": [65535, 0], "during": [43631, 21904], "few": [65535, 0], "moments": [65535, 0], "finally": [65535, 0], "moved": [65535, 0], "throne": [65535, 0], "although": [43631, 21904], "tingled": [65535, 0], "jubilant": [65535, 0], "quieted": [65535, 0], "effort": [65535, 0], "turmoil": [65535, 0], "reading": [65535, 0], "class": [65535, 0], "botch": [65535, 0], "geography": [65535, 0], "lakes": [65535, 0], "mountains": [65535, 0], "rivers": [65535, 0], "continents": [65535, 0], "chaos": [65535, 0], "spelling": [65535, 0], "baby": [65535, 0], "foot": [49102, 16433], "yielded": [65535, 0], "pewter": [65535, 0], "medal": [65535, 0], "worn": [65535, 0], "ostentation": [65535, 0], "months": [65535, 0], "world": [40897, 24638], "bright": [65535, 0], "fresh": [65535, 0], "brimming": [65535, 0], "song": [43631, 21904], "music": [65535, 0], "issued": [65535, 0], "lips": [65535, 0], "cheer": [32701, 32834], "step": [65535, 0], "locust": [65535, 0], "trees": [65535, 0], "fragrance": [65535, 0], "blossoms": [65535, 0], "filled": [65535, 0], "cardiff": [65535, 0], "beyond": [49102, 16433], "above": [65535, 0], "green": [65535, 0], "vegetation": [65535, 0], "delectable": [65535, 0], "land": [21786, 43749], "dreamy": [65535, 0], "reposeful": [65535, 0], "inviting": [65535, 0], "sidewalk": [65535, 0], "bucket": [65535, 0], "whitewash": [65535, 0], "handled": [65535, 0], "brush": [65535, 0], "fence": [65535, 0], "gladness": [65535, 0], "deep": [65535, 0], "melancholy": [65535, 0], "settled": [65535, 0], "thirty": [65535, 0], "nine": [65535, 0], "feet": [43631, 21904], "hollow": [49102, 16433], "existence": [65535, 0], "burden": [65535, 0], "passed": [32701, 32834], "plank": [65535, 0], "repeated": [65535, 0], "operation": [65535, 0], "compared": [65535, 0], "insignificant": [65535, 0], "whitewashed": [65535, 0], "streak": [65535, 0], "reaching": [65535, 0], "continent": [65535, 0], "unwhitewashed": [65535, 0], "tree": [65535, 0], "discouraged": [65535, 0], "skipping": [65535, 0], "gate": [24514, 41021], "tin": [65535, 0], "pail": [65535, 0], "singing": [65535, 0], "buffalo": [65535, 0], "gals": [65535, 0], "bringing": [43631, 21904], "pump": [65535, 0], "hateful": [65535, 0], "strike": [43631, 21904], "mulatto": [65535, 0], "negro": [65535, 0], "waiting": [65535, 0], "turns": [65535, 0], "resting": [65535, 0], "trading": [65535, 0], "playthings": [65535, 0], "quarrelling": [65535, 0], "fighting": [65535, 0], "skylarking": [65535, 0], "hundred": [18670, 46865], "fifty": [65535, 0], "mars": [65535, 0], "ole": [65535, 0], "missis": [65535, 0], "tole": [65535, 0], "an'": [65535, 0], "git": [65535, 0], "dis": [65535, 0], "stop": [46757, 18778], "foolin'": [65535, 0], "roun'": [65535, 0], "wid": [65535, 0], "spec'": [65535, 0], "gwine": [65535, 0], "ax": [65535, 0], "'tend": [65535, 0], "'lowed": [65535, 0], "she'd": [65535, 0], "de": [65535, 0], "whitewashin'": [65535, 0], "talks": [43631, 21904], "gimme": [65535, 0], "dasn't": [65535, 0], "tar": [65535, 0], "'deed": [65535, 0], "licks": [65535, 0], "whacks": [65535, 0], "thimble": [65535, 0], "cares": [32701, 32834], "i'd": [65535, 0], "anyways": [65535, 0], "cry": [32701, 32834], "marvel": [65535, 0], "alley": [65535, 0], "waver": [65535, 0], "bully": [65535, 0], "taw": [65535, 0], "dat's": [65535, 0], "gay": [32701, 32834], "i's": [65535, 0], "powerful": [65535, 0], "'fraid": [65535, 0], "show": [32701, 32834], "attraction": [65535, 0], "absorbing": [65535, 0], "bandage": [65535, 0], "unwound": [65535, 0], "flying": [65535, 0], "street": [49102, 16433], "tingling": [65535, 0], "rear": [65535, 0], "whitewashing": [65535, 0], "vigor": [32701, 32834], "retiring": [65535, 0], "field": [49102, 16433], "slipper": [65535, 0], "triumph": [65535, 0], "energy": [65535, 0], "fun": [65535, 0], "planned": [65535, 0], "sorrows": [65535, 0], "multiplied": [65535, 0], "tripping": [65535, 0], "sorts": [65535, 0], "delicious": [65535, 0], "expeditions": [65535, 0], "having": [65535, 0], "burnt": [65535, 0], "worldly": [65535, 0], "wealth": [28022, 37513], "examined": [65535, 0], "bits": [65535, 0], "toys": [65535, 0], "marbles": [65535, 0], "trash": [65535, 0], "buy": [19605, 45930], "exchange": [65535, 0], "pure": [32701, 32834], "freedom": [65535, 0], "straitened": [65535, 0], "means": [65535, 0], "idea": [65535, 0], "hopeless": [65535, 0], "inspiration": [49102, 16433], "magnificent": [65535, 0], "sight": [21786, 43749], "ridicule": [65535, 0], "dreading": [65535, 0], "ben's": [65535, 0], "gait": [65535, 0], "hop": [65535, 0], "skip": [65535, 0], "jump": [65535, 0], "proof": [65535, 0], "anticipations": [65535, 0], "eating": [65535, 0], "apple": [65535, 0], "giving": [65535, 0], "melodious": [65535, 0], "whoop": [65535, 0], "intervals": [65535, 0], "toned": [65535, 0], "ding": [65535, 0], "dong": [65535, 0], "personating": [65535, 0], "steamboat": [65535, 0], "near": [65535, 0], "slackened": [65535, 0], "leaned": [65535, 0], "starboard": [65535, 0], "rounded": [65535, 0], "ponderously": [65535, 0], "laborious": [65535, 0], "pomp": [65535, 0], "circumstance": [43631, 21904], "big": [65535, 0], "missouri": [65535, 0], "boat": [65535, 0], "captain": [65535, 0], "engine": [65535, 0], "bells": [65535, 0], "combined": [65535, 0], "imagine": [65535, 0], "hurricane": [65535, 0], "deck": [65535, 0], "executing": [65535, 0], "ting": [65535, 0], "ling": [65535, 0], "headway": [65535, 0], "ran": [37384, 28151], "slowly": [65535, 0], "toward": [65535, 0], "ship": [7256, 58279], "straightened": [65535, 0], "stiffened": [65535, 0], "sides": [65535, 0], "set": [46757, 18778], "stabboard": [65535, 0], "chow": [65535, 0], "ch": [65535, 0], "wow": [65535, 0], "meantime": [65535, 0], "describing": [65535, 0], "stately": [65535, 0], "circles": [65535, 0], "representing": [65535, 0], "wheel": [65535, 0], "labboard": [65535, 0], "describe": [65535, 0], "ahead": [65535, 0], "ow": [65535, 0], "line": [65535, 0], "lively": [65535, 0], "what're": [65535, 0], "round": [54576, 10959], "bight": [65535, 0], "stand": [16334, 49201], "stage": [65535, 0], "engines": [65535, 0], "sh't": [65535, 0], "s'h't": [65535, 0], "gauge": [65535, 0], "cocks": [65535, 0], "paid": [65535, 0], "hi": [65535, 0], "yi": [65535, 0], "touch": [32701, 32834], "sweep": [65535, 0], "ranged": [65535, 0], "alongside": [65535, 0], "watered": [65535, 0], "stuck": [65535, 0], "chap": [65535, 0], "hey": [65535, 0], "wheeled": [65535, 0], "warn't": [65535, 0], "noticing": [65535, 0], "am": [3211, 62324], "druther": [65535, 0], "contemplated": [65535, 0], "answered": [65535, 0], "carelessly": [65535, 0], "suits": [65535, 0], "mean": [65535, 0], "move": [65535, 0], "oughtn't": [65535, 0], "nibbling": [65535, 0], "swept": [65535, 0], "daintily": [65535, 0], "forth": [13999, 51536], "note": [39257, 26278], "effect": [49102, 16433], "added": [65535, 0], "criticised": [65535, 0], "getting": [65535, 0], "absorbed": [65535, 0], "consent": [21786, 43749], "altered": [65535, 0], "polly's": [65535, 0], "particular": [65535, 0], "careful": [65535, 0], "fixed": [65535, 0], "tackle": [65535, 0], "happen": [65535, 0], "core": [65535, 0], "reluctance": [65535, 0], "steamer": [65535, 0], "sweated": [65535, 0], "sun": [49102, 16433], "retired": [65535, 0], "barrel": [65535, 0], "shade": [65535, 0], "dangled": [65535, 0], "munched": [65535, 0], "innocents": [65535, 0], "lack": [65535, 0], "material": [65535, 0], "happened": [65535, 0], "jeer": [65535, 0], "remained": [65535, 0], "fagged": [65535, 0], "traded": [65535, 0], "billy": [65535, 0], "fisher": [65535, 0], "kite": [65535, 0], "repair": [65535, 0], "miller": [65535, 0], "rat": [65535, 0], "string": [65535, 0], "swing": [65535, 0], "afternoon": [65535, 0], "poverty": [65535, 0], "stricken": [65535, 0], "literally": [65535, 0], "rolling": [65535, 0], "mentioned": [65535, 0], "twelve": [65535, 0], "jews": [65535, 0], "harp": [65535, 0], "bottle": [65535, 0], "look": [65535, 0], "spool": [65535, 0], "cannon": [65535, 0], "unlock": [65535, 0], "fragment": [65535, 0], "chalk": [65535, 0], "stopper": [65535, 0], "decanter": [65535, 0], "soldier": [65535, 0], "tadpoles": [65535, 0], "six": [65535, 0], "crackers": [65535, 0], "kitten": [65535, 0], "brass": [65535, 0], "doorknob": [65535, 0], "collar": [65535, 0], "handle": [65535, 0], "knife": [65535, 0], "four": [65535, 0], "pieces": [65535, 0], "orange": [65535, 0], "peel": [65535, 0], "dilapidated": [65535, 0], "coats": [65535, 0], "bankrupted": [65535, 0], "law": [32701, 32834], "action": [65535, 0], "knowing": [32701, 32834], "namely": [21786, 43749], "covet": [65535, 0], "difficult": [65535, 0], "attain": [65535, 0], "wise": [21786, 43749], "philosopher": [65535, 0], "writer": [65535, 0], "comprehended": [65535, 0], "consists": [65535, 0], "whatever": [65535, 0], "obliged": [65535, 0], "help": [43631, 21904], "understand": [65535, 0], "constructing": [65535, 0], "artificial": [65535, 0], "flowers": [65535, 0], "performing": [65535, 0], "tread": [65535, 0], "mill": [65535, 0], "pins": [65535, 0], "climbing": [65535, 0], "mont": [65535, 0], "blanc": [65535, 0], "amusement": [65535, 0], "wealthy": [65535, 0], "gentlemen": [43631, 21904], "england": [32701, 32834], "drive": [65535, 0], "horse": [32701, 32834], "passenger": [65535, 0], "coaches": [65535, 0], "twenty": [65535, 0], "miles": [65535, 0], "daily": [32701, 32834], "privilege": [65535, 0], "costs": [65535, 0], "money": [14518, 51017], "wages": [65535, 0], "resign": [65535, 0], "mused": [65535, 0], "awhile": [65535, 0], "substantial": [65535, 0], "taken": [32701, 32834], "circumstances": [65535, 0], "headquarters": [65535, 0], "report": [21786, 43749], "wonder": [13065, 52470], "pulled": [65535, 0], "spectacles": [65535, 0], "pair": [65535, 0], "built": [65535, 0], "stove": [65535, 0], "lids": [65535, 0], "perplexed": [65535, 0], "fiercely": [65535, 0], "loud": [65535, 0], "furniture": [65535, 0], "finish": [65535, 0], "bending": [65535, 0], "punching": [65535, 0], "bed": [11876, 53659], "broom": [65535, 0], "needed": [65535, 0], "breath": [24514, 41021], "punctuate": [65535, 0], "punches": [65535, 0], "resurrected": [65535, 0], "beat": [9330, 56205], "door": [65535, 0], "tomato": [65535, 0], "vines": [65535, 0], "jimpson": [65535, 0], "weeds": [65535, 0], "constituted": [65535, 0], "garden": [65535, 0], "angle": [65535, 0], "calculated": [65535, 0], "shouted": [65535, 0], "y": [65535, 0], "o": [10886, 54649], "u": [65535, 0], "slight": [65535, 0], "noise": [32701, 32834], "seize": [65535, 0], "slack": [65535, 0], "roundabout": [65535, 0], "arrest": [9330, 56205], "flight": [65535, 0], "'a'": [65535, 0], "closet": [65535, 0], "doing": [43631, 21904], "alone": [26150, 39385], "skin": [16334, 49201], "switch": [65535, 0], "hovered": [65535, 0], "peril": [65535, 0], "desperate": [65535, 0], "whirled": [65535, 0], "skirts": [65535, 0], "danger": [65535, 0], "lad": [65535, 0], "scrambled": [65535, 0], "disappeared": [65535, 0], "surprised": [65535, 0], "laugh": [43631, 21904], "hang": [43631, 21904], "tricks": [43631, 21904], "fools": [43631, 21904], "biggest": [65535, 0], "goodness": [65535, 0], "plays": [65535, 0], "alike": [21786, 43749], "'pears": [65535, 0], "torment": [65535, 0], "dander": [65535, 0], "knows": [65535, 0], "duty": [65535, 0], "truth": [13065, 52470], "spare": [21786, 43749], "rod": [65535, 0], "spoil": [65535, 0], "laying": [65535, 0], "sin": [65535, 0], "us": [65535, 0], "scratch": [65535, 0], "laws": [65535, 0], "sister's": [65535, 0], "lash": [65535, 0], "somehow": [65535, 0], "conscience": [65535, 0], "breaks": [65535, 0], "born": [65535, 0], "woman": [6530, 59005], "scripture": [65535, 0], "he'll": [65535, 0], "hookey": [65535, 0], "evening": [65535, 0], "morrow": [32701, 32834], "punish": [65535, 0], "hard": [28022, 37513], "saturdays": [65535, 0], "hates": [65535, 0], "ruination": [65535, 0], "barely": [65535, 0], "season": [16334, 49201], "colored": [65535, 0], "day's": [65535, 0], "wood": [65535, 0], "kindlings": [65535, 0], "supper": [49102, 16433], "adventures": [65535, 0], "fourths": [65535, 0], "younger": [65535, 0], "brother": [25423, 40112], "already": [65535, 0], "picking": [65535, 0], "chips": [65535, 0], "adventurous": [65535, 0], "troublesome": [65535, 0], "ways": [65535, 0], "stealing": [32701, 32834], "sugar": [65535, 0], "opportunity": [65535, 0], "asked": [65535, 0], "questions": [65535, 0], "guile": [65535, 0], "trap": [65535, 0], "damaging": [65535, 0], "revealments": [65535, 0], "simple": [21786, 43749], "souls": [65535, 0], "pet": [65535, 0], "vanity": [65535, 0], "endowed": [65535, 0], "talent": [65535, 0], "mysterious": [65535, 0], "diplomacy": [65535, 0], "loved": [65535, 0], "contemplate": [65535, 0], "transparent": [65535, 0], "devices": [65535, 0], "marvels": [65535, 0], "cunning": [65535, 0], "middling": [65535, 0], "warm": [65535, 0], "scare": [65535, 0], "shot": [65535, 0], "uncomfortable": [65535, 0], "suspicion": [65535, 0], "searched": [65535, 0], "no'm": [65535, 0], "shirt": [65535, 0], "flattered": [65535, 0], "reflect": [65535, 0], "spite": [65535, 0], "forestalled": [65535, 0], "pumped": [65535, 0], "our": [1813, 63722], "mine's": [65535, 0], "damp": [65535, 0], "vexed": [65535, 0], "overlooked": [65535, 0], "circumstantial": [65535, 0], "evidence": [65535, 0], "missed": [65535, 0], "trick": [65535, 0], "undo": [65535, 0], "sewed": [65535, 0], "unbutton": [65535, 0], "opened": [65535, 0], "securely": [65535, 0], "sure": [8707, 56828], "kind": [65535, 0], "singed": [65535, 0], "better'n": [65535, 0], "sorry": [32701, 32834], "sagacity": [65535, 0], "miscarried": [65535, 0], "glad": [49102, 16433], "stumbled": [65535, 0], "obedient": [32701, 32834], "conduct": [65535, 0], "sidney": [65535, 0], "sew": [65535, 0], "siddy": [65535, 0], "needles": [65535, 0], "lapels": [65535, 0], "bound": [10886, 54649], "needle": [65535, 0], "carried": [21786, 43749], "noticed": [65535, 0], "confound": [65535, 0], "sews": [65535, 0], "geeminy": [65535, 0], "t'other": [65535, 0], "lam": [65535, 0], "loathed": [65535, 0], "minutes": [65535, 0], "troubles": [43631, 21904], "whit": [65535, 0], "bitter": [65535, 0], "man's": [65535, 0], "drove": [65535, 0], "men's": [65535, 0], "misfortunes": [32701, 32834], "excitement": [65535, 0], "enterprises": [65535, 0], "valued": [32701, 32834], "novelty": [65535, 0], "whistling": [65535, 0], "acquired": [65535, 0], "practise": [32701, 32834], "undisturbed": [65535, 0], "consisted": [65535, 0], "bird": [65535, 0], "liquid": [65535, 0], "warble": [65535, 0], "produced": [65535, 0], "touching": [32701, 32834], "tongue": [26150, 39385], "roof": [65535, 0], "short": [54576, 10959], "remembers": [65535, 0], "diligence": [65535, 0], "knack": [65535, 0], "harmony": [65535, 0], "gratitude": [65535, 0], "astronomer": [65535, 0], "feels": [65535, 0], "planet": [65535, 0], "doubt": [32701, 32834], "unalloyed": [65535, 0], "concerned": [65535, 0], "advantage": [65535, 0], "evenings": [65535, 0], "checked": [65535, 0], "whistle": [65535, 0], "stranger": [32701, 32834], "larger": [65535, 0], "comer": [65535, 0], "either": [24514, 41021], "sex": [65535, 0], "impressive": [65535, 0], "shabby": [65535, 0], "week": [65535, 0], "simply": [65535, 0], "dainty": [43631, 21904], "closebuttoned": [65535, 0], "cloth": [65535, 0], "natty": [65535, 0], "pantaloons": [65535, 0], "shoes": [65535, 0], "friday": [65535, 0], "necktie": [65535, 0], "citified": [65535, 0], "ate": [65535, 0], "vitals": [65535, 0], "splendid": [65535, 0], "higher": [65535, 0], "finery": [65535, 0], "shabbier": [65535, 0], "outfit": [65535, 0], "grow": [32701, 32834], "neither": [17821, 47714], "spoke": [65535, 0], "sidewise": [65535, 0], "pause": [43631, 21904], "'tisn't": [65535, 0], "'low": [65535, 0], "families": [65535, 0], "same": [10886, 54649], "fix": [65535, 0], "smarty": [65535, 0], "lump": [65535, 0], "knock": [65535, 0], "suck": [65535, 0], "eggs": [65535, 0], "liar": [65535, 0], "aw": [65535, 0], "sass": [65535, 0], "bounce": [65535, 0], "afraid": [65535, 0], "eying": [65535, 0], "sidling": [65535, 0], "shoulder": [32701, 32834], "brace": [65535, 0], "shoving": [65535, 0], "main": [65535, 0], "glowering": [65535, 0], "hate": [65535, 0], "struggling": [65535, 0], "hot": [16334, 49201], "flushed": [65535, 0], "relaxed": [65535, 0], "strain": [65535, 0], "watchful": [65535, 0], "caution": [65535, 0], "coward": [65535, 0], "pup": [65535, 0], "thrash": [65535, 0], "bigger": [65535, 0], "throw": [65535, 0], "brothers": [32701, 32834], "imaginary": [65535, 0], "dust": [65535, 0], "sheep": [32701, 32834], "promptly": [65535, 0], "let's": [16334, 49201], "jingo": [65535, 0], "cents": [65535, 0], "broad": [65535, 0], "coppers": [65535, 0], "derision": [65535, 0], "struck": [65535, 0], "tumbling": [65535, 0], "gripped": [65535, 0], "tugged": [65535, 0], "tore": [65535, 0], "other's": [65535, 0], "punched": [65535, 0], "scratched": [65535, 0], "covered": [65535, 0], "confusion": [32701, 32834], "fog": [65535, 0], "battle": [65535, 0], "seated": [65535, 0], "astride": [65535, 0], "pounding": [65535, 0], "fists": [65535, 0], "holler": [65535, 0], "'nuff": [65535, 0], "struggled": [65535, 0], "crying": [65535, 0], "mainly": [65535, 0], "rage": [9330, 56205], "fooling": [65535, 0], "brushing": [65535, 0], "sobbing": [65535, 0], "snuffling": [65535, 0], "occasionally": [65535, 0], "shaking": [65535, 0], "threatening": [65535, 0], "caught": [65535, 0], "responded": [65535, 0], "jeers": [65535, 0], "started": [65535, 0], "feather": [32701, 32834], "stone": [32701, 32834], "threw": [32701, 32834], "shoulders": [21786, 43749], "antelope": [65535, 0], "chased": [65535, 0], "traitor": [32701, 32834], "thus": [10312, 55223], "lived": [65535, 0], "position": [65535, 0], "daring": [65535, 0], "declined": [65535, 0], "enemy's": [65535, 0], "vicious": [32701, 32834], "ordered": [65535, 0], "ambuscade": [65535, 0], "person": [26150, 39385], "resolution": [65535, 0], "labor": [65535, 0], "became": [16334, 49201], "adamantine": [65535, 0], "firmness": [65535, 0], "tranquil": [65535, 0], "beamed": [65535, 0], "peaceful": [65535, 0], "family": [65535, 0], "worship": [43631, 21904], "solid": [65535, 0], "courses": [65535, 0], "scriptural": [65535, 0], "quotations": [65535, 0], "welded": [65535, 0], "thin": [32701, 32834], "mortar": [65535, 0], "originality": [65535, 0], "summit": [65535, 0], "delivered": [65535, 0], "grim": [32701, 32834], "chapter": [65535, 0], "mosaic": [65535, 0], "sinai": [65535, 0], "girded": [65535, 0], "loins": [65535, 0], "verses": [65535, 0], "learned": [65535, 0], "energies": [65535, 0], "memorizing": [65535, 0], "five": [65535, 0], "mount": [65535, 0], "shorter": [65535, 0], "general": [65535, 0], "traversing": [65535, 0], "busy": [65535, 0], "distracting": [65535, 0], "recreations": [65535, 0], "recite": [65535, 0], "blessed": [56140, 9395], "theirs": [65535, 0], "kingdom": [65535, 0], "heaven": [65535, 0], "mourn": [65535, 0], "sh": [65535, 0], "s": [1467, 64068], "h": [65535, 0], "thick": [65535, 0], "headed": [65535, 0], "teasing": [65535, 0], "manage": [65535, 0], "pressure": [65535, 0], "prospective": [65535, 0], "gain": [65535, 0], "accomplished": [65535, 0], "shining": [65535, 0], "success": [65535, 0], "brand": [65535, 0], "barlow": [65535, 0], "convulsion": [65535, 0], "delight": [32701, 32834], "foundations": [65535, 0], "true": [19605, 45930], "inconceivable": [65535, 0], "grandeur": [65535, 0], "western": [65535, 0], "weapon": [65535, 0], "possibly": [65535, 0], "counterfeited": [65535, 0], "injury": [65535, 0], "imposing": [65535, 0], "mystery": [65535, 0], "perhaps": [39257, 26278], "contrived": [65535, 0], "scarify": [65535, 0], "cupboard": [65535, 0], "arranging": [65535, 0], "bureau": [65535, 0], "dress": [65535, 0], "basin": [65535, 0], "soap": [65535, 0], "sleeves": [65535, 0], "poured": [65535, 0], "entered": [65535, 0], "wipe": [65535, 0], "diligently": [65535, 0], "towel": [65535, 0], "removed": [65535, 0], "ashamed": [65535, 0], "mustn't": [65535, 0], "disconcerted": [65535, 0], "refilled": [65535, 0], "gathering": [65535, 0], "groping": [65535, 0], "honorable": [65535, 0], "testimony": [65535, 0], "suds": [65535, 0], "dripping": [65535, 0], "emerged": [65535, 0], "satisfactory": [65535, 0], "territory": [65535, 0], "mask": [65535, 0], "below": [65535, 0], "expanse": [65535, 0], "unirrigated": [65535, 0], "soil": [65535, 0], "spread": [43631, 21904], "downward": [65535, 0], "distinction": [65535, 0], "color": [65535, 0], "saturated": [65535, 0], "neatly": [65535, 0], "brushed": [65535, 0], "curls": [65535, 0], "wrought": [21786, 43749], "symmetrical": [65535, 0], "privately": [65535, 0], "smoothed": [65535, 0], "difficulty": [65535, 0], "plastered": [65535, 0], "effeminate": [65535, 0], "bitterness": [65535, 0], "suit": [32701, 32834], "clothing": [65535, 0], "used": [65535, 0], "we": [2778, 62757], "size": [65535, 0], "wardrobe": [65535, 0], "rights": [65535, 0], "buttoned": [65535, 0], "neat": [65535, 0], "crowned": [65535, 0], "speckled": [65535, 0], "exceedingly": [65535, 0], "improved": [65535, 0], "restraint": [32701, 32834], "cleanliness": [65535, 0], "galled": [65535, 0], "hoped": [65535, 0], "forget": [65535, 0], "blighted": [65535, 0], "coated": [65535, 0], "thoroughly": [65535, 0], "tallow": [43631, 21904], "temper": [65535, 0], "persuasively": [65535, 0], "snarling": [65535, 0], "fond": [32701, 32834], "sabbath": [65535, 0], "voluntarily": [65535, 0], "stronger": [32701, 32834], "reasons": [65535, 0], "church's": [65535, 0], "backed": [65535, 0], "uncushioned": [65535, 0], "persons": [65535, 0], "edifice": [65535, 0], "plain": [32701, 32834], "affair": [65535, 0], "top": [65535, 0], "steeple": [65535, 0], "dropped": [65535, 0], "accosted": [65535, 0], "comrade": [65535, 0], "yaller": [65535, 0], "lickrish": [65535, 0], "fish": [13065, 52470], "hook": [65535, 0], "exhibited": [65535, 0], "property": [65535, 0], "changed": [65535, 0], "alleys": [65535, 0], "tickets": [65535, 0], "ones": [28022, 37513], "waylaid": [65535, 0], "buying": [65535, 0], "various": [65535, 0], "colors": [65535, 0], "fifteen": [65535, 0], "longer": [21786, 43749], "swarm": [65535, 0], "noisy": [65535, 0], "proceeded": [65535, 0], "quarrel": [65535, 0], "handy": [65535, 0], "teacher": [65535, 0], "grave": [65535, 0], "elderly": [65535, 0], "interfered": [65535, 0], "pin": [32701, 32834], "reprimand": [65535, 0], "pattern": [65535, 0], "restless": [65535, 0], "lessons": [65535, 0], "prompted": [65535, 0], "worried": [65535, 0], "reward": [65535, 0], "passage": [32701, 32834], "pay": [6530, 59005], "recitation": [65535, 0], "equalled": [65535, 0], "exchanged": [65535, 0], "superintendent": [65535, 0], "plainly": [32701, 32834], "bible": [65535, 0], "those": [27242, 38293], "pupil": [65535, 0], "readers": [65535, 0], "industry": [65535, 0], "application": [65535, 0], "memorize": [65535, 0], "dore": [10886, 54649], "bibles": [65535, 0], "german": [65535, 0], "parentage": [65535, 0], "won": [43631, 21904], "recited": [65535, 0], "stopping": [65535, 0], "mental": [65535, 0], "faculties": [65535, 0], "idiot": [32701, 32834], "grievous": [65535, 0], "misfortune": [65535, 0], "occasions": [65535, 0], "expressed": [65535, 0], "older": [65535, 0], "managed": [32701, 32834], "tedious": [65535, 0], "delivery": [65535, 0], "prizes": [65535, 0], "rare": [65535, 0], "noteworthy": [65535, 0], "successful": [65535, 0], "conspicuous": [65535, 0], "spot": [65535, 0], "scholar's": [65535, 0], "fired": [65535, 0], "ambition": [65535, 0], "lasted": [65535, 0], "hungered": [65535, 0], "unquestionably": [65535, 0], "entire": [65535, 0], "eclat": [65535, 0], "due": [10886, 54649], "pulpit": [65535, 0], "forefinger": [65535, 0], "inserted": [65535, 0], "leaves": [65535, 0], "commanded": [65535, 0], "customary": [65535, 0], "speech": [54576, 10959], "inevitable": [65535, 0], "singer": [65535, 0], "stands": [16334, 49201], "platform": [65535, 0], "sings": [65535, 0], "solo": [65535, 0], "concert": [65535, 0], "referred": [65535, 0], "slim": [65535, 0], "sandy": [65535, 0], "goatee": [65535, 0], "edge": [65535, 0], "points": [32701, 32834], "curved": [65535, 0], "abreast": [65535, 0], "corners": [65535, 0], "compelled": [65535, 0], "straight": [16334, 49201], "lookout": [65535, 0], "turning": [65535, 0], "required": [65535, 0], "propped": [65535, 0], "cravat": [65535, 0], "bank": [65535, 0], "boot": [65535, 0], "toes": [65535, 0], "sharply": [65535, 0], "fashion": [26150, 39385], "sleigh": [65535, 0], "runners": [65535, 0], "laboriously": [65535, 0], "sitting": [65535, 0], "pressed": [65535, 0], "walters": [65535, 0], "mien": [65535, 0], "sincere": [65535, 0], "sacred": [49102, 16433], "places": [65535, 0], "reverence": [65535, 0], "matters": [65535, 0], "intonation": [65535, 0], "thinks": [32701, 32834], "somewhere": [32701, 32834], "birds": [65535, 0], "applausive": [65535, 0], "learning": [65535, 0], "oration": [65535, 0], "vary": [65535, 0], "familiar": [65535, 0], "latter": [32701, 32834], "third": [65535, 0], "marred": [65535, 0], "resumption": [65535, 0], "fights": [65535, 0], "fidgetings": [65535, 0], "whisperings": [65535, 0], "extended": [65535, 0], "washing": [65535, 0], "bases": [65535, 0], "incorruptible": [65535, 0], "sound": [32701, 32834], "subsidence": [65535, 0], "walters'": [65535, 0], "conclusion": [21786, 43749], "silent": [65535, 0], "occasioned": [65535, 0], "event": [65535, 0], "entrance": [32701, 32834], "visitors": [65535, 0], "accompanied": [65535, 0], "portly": [65535, 0], "gentleman": [32701, 32834], "iron": [32701, 32834], "gray": [65535, 0], "dignified": [65535, 0], "doubtless": [65535, 0], "latter's": [65535, 0], "leading": [65535, 0], "chafings": [65535, 0], "repinings": [65535, 0], "smitten": [65535, 0], "meet": [21786, 43749], "amy": [65535, 0], "lawrence's": [65535, 0], "brook": [65535, 0], "loving": [65535, 0], "gaze": [32701, 32834], "ablaze": [65535, 0], "bliss": [65535, 0], "showing": [65535, 0], "cuffing": [65535, 0], "pulling": [65535, 0], "using": [65535, 0], "art": [2838, 62697], "fascinate": [65535, 0], "applause": [65535, 0], "exaltation": [65535, 0], "alloy": [65535, 0], "memory": [65535, 0], "humiliation": [65535, 0], "angel's": [65535, 0], "record": [65535, 0], "sand": [65535, 0], "waves": [65535, 0], "happiness": [65535, 0], "sweeping": [65535, 0], "given": [65535, 0], "highest": [32701, 32834], "honor": [21786, 43749], "introduced": [65535, 0], "prodigious": [65535, 0], "personage": [65535, 0], "judge": [65535, 0], "altogether": [32701, 32834], "august": [65535, 0], "creation": [65535, 0], "roar": [65535, 0], "constantinople": [65535, 0], "travelled": [65535, 0], "reflections": [65535, 0], "inspired": [65535, 0], "attested": [65535, 0], "silence": [65535, 0], "ranks": [65535, 0], "staring": [65535, 0], "immediately": [32701, 32834], "jings": [65535, 0], "official": [65535, 0], "bustlings": [65535, 0], "activities": [65535, 0], "delivering": [65535, 0], "judgments": [65535, 0], "discharging": [65535, 0], "directions": [65535, 0], "everywhere": [65535, 0], "target": [65535, 0], "librarian": [65535, 0], "running": [32701, 32834], "hither": [10886, 54649], "thither": [21786, 43749], "books": [65535, 0], "deal": [65535, 0], "splutter": [65535, 0], "fuss": [65535, 0], "insect": [65535, 0], "authority": [65535, 0], "delights": [65535, 0], "teachers": [65535, 0], "sweetly": [65535, 0], "boxed": [65535, 0], "patting": [65535, 0], "lovingly": [65535, 0], "scoldings": [65535, 0], "displays": [65535, 0], "discipline": [65535, 0], "sexes": [65535, 0], "library": [65535, 0], "frequently": [65535, 0], "seeming": [32701, 32834], "vexation": [65535, 0], "wads": [65535, 0], "scufflings": [65535, 0], "majestic": [65535, 0], "judicial": [65535, 0], "smile": [65535, 0], "warmed": [65535, 0], "wanting": [32701, 32834], "ecstasy": [65535, 0], "complete": [65535, 0], "deliver": [65535, 0], "exhibit": [65535, 0], "prodigy": [65535, 0], "none": [8707, 56828], "star": [65535, 0], "inquiring": [65535, 0], "worlds": [43631, 21904], "demanded": [65535, 0], "thunderbolt": [65535, 0], "clear": [65535, 0], "sky": [65535, 0], "expecting": [65535, 0], "source": [65535, 0], "certified": [65535, 0], "checks": [65535, 0], "therefore": [4664, 60871], "elevated": [65535, 0], "news": [65535, 0], "announced": [65535, 0], "stunning": [65535, 0], "surprise": [65535, 0], "decade": [65535, 0], "profound": [65535, 0], "sensation": [65535, 0], "one's": [65535, 0], "altitude": [65535, 0], "eaten": [65535, 0], "suffered": [65535, 0], "bitterest": [65535, 0], "pangs": [65535, 0], "perceived": [65535, 0], "contributed": [65535, 0], "splendor": [65535, 0], "amassed": [65535, 0], "selling": [65535, 0], "privileges": [65535, 0], "despised": [65535, 0], "dupes": [65535, 0], "wily": [65535, 0], "fraud": [65535, 0], "guileful": [65535, 0], "snake": [65535, 0], "grass": [65535, 0], "effusion": [65535, 0], "lacked": [65535, 0], "somewhat": [65535, 0], "gush": [65535, 0], "fellow's": [65535, 0], "instinct": [65535, 0], "taught": [65535, 0], "bear": [49102, 16433], "preposterous": [65535, 0], "warehoused": [65535, 0], "sheaves": [65535, 0], "wisdom": [65535, 0], "premises": [65535, 0], "dozen": [65535, 0], "capacity": [65535, 0], "lawrence": [65535, 0], "proud": [65535, 0], "grain": [65535, 0], "troubled": [43631, 21904], "dim": [65535, 0], "watched": [65535, 0], "glance": [65535, 0], "jealous": [65535, 0], "angry": [65535, 0], "tears": [65535, 0], "quaked": [65535, 0], "greatness": [65535, 0], "parent": [65535, 0], "liked": [65535, 0], "stammered": [65535, 0], "ah": [26150, 39385], "daresay": [65535, 0], "manners": [32701, 32834], "manly": [65535, 0], "fellow": [10886, 54649], "knowledge": [32701, 32834], "owing": [65535, 0], "boyhood": [65535, 0], "dear": [65535, 0], "encouraged": [65535, 0], "elegant": [65535, 0], "telling": [65535, 0], "names": [39257, 26278], "disciples": [65535, 0], "appointed": [65535, 0], "tugging": [65535, 0], "button": [65535, 0], "sheepish": [65535, 0], "blushed": [65535, 0], "simplest": [65535, 0], "question": [32701, 32834], "ask": [65535, 0], "david": [65535, 0], "goliath": [65535, 0], "curtain": [65535, 0], "charity": [65535, 0], "scene": [65535, 0], "presented": [65535, 0], "pleasant": [65535, 0], "apartment": [65535, 0], "bedroom": [65535, 0], "dining": [65535, 0], "balmy": [65535, 0], "restful": [65535, 0], "odor": [65535, 0], "drowsing": [65535, 0], "bees": [65535, 0], "nodding": [65535, 0], "knitting": [65535, 0], "asleep": [65535, 0], "safety": [32701, 32834], "deserted": [65535, 0], "seeing": [65535, 0], "power": [32701, 32834], "intrepid": [65535, 0], "mayn't": [65535, 0], "a'ready": [65535, 0], "trust": [13065, 52470], "content": [21786, 43749], "per": [65535, 0], "cent": [65535, 0], "statement": [65535, 0], "elaborately": [65535, 0], "recoated": [65535, 0], "astonishment": [65535, 0], "unspeakable": [65535, 0], "diluted": [65535, 0], "compliment": [65535, 0], "adding": [65535, 0], "tan": [65535, 0], "overcome": [65535, 0], "achievement": [65535, 0], "selected": [65535, 0], "choice": [65535, 0], "improving": [65535, 0], "lecture": [65535, 0], "value": [65535, 0], "flavor": [65535, 0], "virtuous": [65535, 0], "flourish": [65535, 0], "hooked": [65535, 0], "doughnut": [65535, 0], "skipped": [65535, 0], "starting": [65535, 0], "stairway": [65535, 0], "led": [65535, 0], "rooms": [65535, 0], "second": [32701, 32834], "clods": [65535, 0], "twinkling": [65535, 0], "raged": [65535, 0], "hail": [65535, 0], "storm": [65535, 0], "collect": [65535, 0], "sally": [65535, 0], "rescue": [32701, 32834], "seven": [65535, 0], "personal": [65535, 0], "crowded": [65535, 0], "use": [65535, 0], "calling": [65535, 0], "skirted": [65535, 0], "block": [65535, 0], "muddy": [65535, 0], "aunt's": [65535, 0], "cowstable": [65535, 0], "safely": [65535, 0], "capture": [65535, 0], "punishment": [32701, 32834], "hastened": [65535, 0], "public": [65535, 0], "square": [65535, 0], "military": [65535, 0], "companies": [65535, 0], "conflict": [65535, 0], "according": [32701, 32834], "previous": [65535, 0], "appointment": [65535, 0], "armies": [65535, 0], "bosom": [65535, 0], "friend": [8163, 57372], "commanders": [65535, 0], "condescend": [65535, 0], "smaller": [65535, 0], "fry": [65535, 0], "eminence": [65535, 0], "conducted": [65535, 0], "operations": [65535, 0], "aides": [65535, 0], "camp": [65535, 0], "army": [65535, 0], "victory": [65535, 0], "fought": [65535, 0], "prisoners": [65535, 0], "terms": [65535, 0], "disagreement": [65535, 0], "agreed": [32701, 32834], "marched": [65535, 0], "homeward": [21786, 43749], "passing": [65535, 0], "lovely": [65535, 0], "plaited": [65535, 0], "frock": [65535, 0], "embroidered": [65535, 0], "pantalettes": [65535, 0], "firing": [65535, 0], "distraction": [65535, 0], "passion": [21786, 43749], "adoration": [65535, 0], "behold": [16334, 49201], "evanescent": [65535, 0], "partiality": [65535, 0], "winning": [65535, 0], "confessed": [65535, 0], "happiest": [65535, 0], "proudest": [65535, 0], "casual": [65535, 0], "visit": [43631, 21904], "worshipped": [65535, 0], "angel": [32701, 32834], "pretended": [65535, 0], "absurd": [65535, 0], "boyish": [65535, 0], "admiration": [65535, 0], "grotesque": [65535, 0], "foolishness": [65535, 0], "dangerous": [65535, 0], "gymnastic": [65535, 0], "performances": [65535, 0], "aside": [65535, 0], "wending": [65535, 0], "grieving": [65535, 0], "hoping": [65535, 0], "tarry": [32701, 32834], "halted": [65535, 0], "heaved": [65535, 0], "sigh": [65535, 0], "threshold": [65535, 0], "pansy": [65535, 0], "flower": [65535, 0], "shaded": [65535, 0], "direction": [65535, 0], "picked": [65535, 0], "balance": [65535, 0], "tilted": [65535, 0], "efforts": [65535, 0], "edged": [65535, 0], "nearer": [65535, 0], "bare": [16334, 49201], "rested": [16334, 49201], "pliant": [65535, 0], "hopped": [65535, 0], "corner": [65535, 0], "inside": [65535, 0], "posted": [65535, 0], "anatomy": [65535, 0], "nightfall": [65535, 0], "comforted": [65535, 0], "attentions": [65535, 0], "reluctantly": [65535, 0], "visions": [65535, 0], "spirits": [65535, 0], "scolding": [65535, 0], "clodding": [65535, 0], "knuckles": [65535, 0], "rapped": [65535, 0], "takes": [21786, 43749], "immunity": [65535, 0], "bowl": [65535, 0], "glorying": [65535, 0], "nigh": [65535, 0], "unbearable": [65535, 0], "sid's": [65535, 0], "slipped": [65535, 0], "ecstasies": [65535, 0], "controlled": [65535, 0], "mischief": [65535, 0], "catch": [32701, 32834], "brimful": [65535, 0], "exultation": [65535, 0], "wreck": [65535, 0], "lightnings": [65535, 0], "wrath": [65535, 0], "sprawling": [65535, 0], "potent": [65535, 0], "palm": [65535, 0], "uplifted": [65535, 0], "'er": [65535, 0], "belting": [65535, 0], "paused": [65535, 0], "healing": [65535, 0], "pity": [65535, 0], "umf": [65535, 0], "amiss": [65535, 0], "audacious": [65535, 0], "reproached": [65535, 0], "yearned": [65535, 0], "judged": [65535, 0], "construed": [65535, 0], "wrong": [5441, 60094], "affairs": [65535, 0], "sulked": [65535, 0], "exalted": [65535, 0], "woes": [16334, 49201], "knees": [65535, 0], "morosely": [65535, 0], "gratified": [65535, 0], "consciousness": [65535, 0], "signals": [65535, 0], "yearning": [65535, 0], "film": [65535, 0], "recognition": [65535, 0], "pictured": [65535, 0], "lying": [65535, 0], "unto": [65535, 0], "death": [13065, 52470], "beseeching": [65535, 0], "forgiving": [65535, 0], "unsaid": [65535, 0], "river": [65535, 0], "pray": [3627, 61908], "god": [5022, 60513], "abuse": [65535, 0], "cold": [26150, 39385], "griefs": [65535, 0], "feelings": [65535, 0], "dreams": [65535, 0], "swallowing": [65535, 0], "choke": [65535, 0], "swam": [65535, 0], "blur": [65535, 0], "overflowed": [65535, 0], "winked": [65535, 0], "trickled": [65535, 0], "luxury": [65535, 0], "petting": [65535, 0], "cheeriness": [65535, 0], "grating": [65535, 0], "intrude": [65535, 0], "contact": [65535, 0], "cousin": [65535, 0], "danced": [65535, 0], "alive": [65535, 0], "clouds": [65535, 0], "darkness": [65535, 0], "sunshine": [65535, 0], "haunts": [32701, 32834], "sought": [32701, 32834], "desolate": [65535, 0], "log": [65535, 0], "raft": [65535, 0], "invited": [65535, 0], "outer": [65535, 0], "dreary": [65535, 0], "vastness": [65535, 0], "stream": [65535, 0], "drowned": [32701, 32834], "undergoing": [65535, 0], "routine": [65535, 0], "devised": [65535, 0], "rumpled": [65535, 0], "wilted": [65535, 0], "mightily": [65535, 0], "increased": [65535, 0], "felicity": [65535, 0], "comfort": [16334, 49201], "coldly": [32701, 32834], "pleasurable": [65535, 0], "varied": [65535, 0], "lights": [65535, 0], "threadbare": [65535, 0], "departed": [65535, 0], "o'clock": [65535, 0], "adored": [65535, 0], "candle": [65535, 0], "casting": [65535, 0], "glow": [65535, 0], "story": [32701, 32834], "presence": [16334, 49201], "threaded": [65535, 0], "stealthy": [65535, 0], "plants": [65535, 0], "emotion": [65535, 0], "disposing": [65535, 0], "clasped": [65535, 0], "breast": [65535, 0], "holding": [65535, 0], "shelter": [65535, 0], "homeless": [65535, 0], "friendly": [65535, 0], "damps": [65535, 0], "brow": [32701, 32834], "bend": [32701, 32834], "pityingly": [65535, 0], "drop": [9330, 56205], "tear": [65535, 0], "lifeless": [65535, 0], "rudely": [65535, 0], "untimely": [65535, 0], "maid": [65535, 0], "servant's": [65535, 0], "discordant": [65535, 0], "profaned": [65535, 0], "holy": [13065, 52470], "calm": [65535, 0], "deluge": [65535, 0], "drenched": [65535, 0], "prone": [65535, 0], "martyr's": [65535, 0], "remains": [65535, 0], "strangling": [65535, 0], "relieving": [65535, 0], "whiz": [65535, 0], "missile": [65535, 0], "mingled": [32701, 32834], "curse": [32701, 32834], "shivering": [65535, 0], "gloom": [65535, 0], "undressed": [65535, 0], "surveying": [65535, 0], "garments": [32701, 32834], "dip": [65535, 0], "woke": [65535, 0], "references": [65535, 0], "allusions": [65535, 0], "prayers": [21786, 43749], "omission": [65535, 0], "actus": [0, 65535], "tertius": [0, 65535], "scena": [0, 65535], "prima": [0, 65535], "enter": [0, 65535], "antipholus": [0, 65535], "ephesus": [0, 65535], "dromio": [0, 65535], "angelo": [0, 65535], "goldsmith": [0, 65535], "balthaser": [0, 65535], "merchant": [0, 65535], "e": [0, 65535], "anti": [0, 65535], "signior": [0, 65535], "excuse": [0, 65535], "vs": [0, 65535], "shrewish": [0, 65535], "keepe": [0, 65535], "howres": [0, 65535], "lingerd": [0, 65535], "shop": [0, 65535], "carkanet": [0, 65535], "here's": [0, 65535], "villaine": [0, 65535], "downe": [0, 65535], "mart": [0, 65535], "charg'd": [0, 65535], "markes": [0, 65535], "gold": [0, 65535], "denie": [0, 65535], "thou": [0, 65535], "didst": [0, 65535], "meane": [0, 65535], "dro": [0, 65535], "wil": [0, 65535], "haue": [0, 65535], "parchment": [0, 65535], "blows": [0, 65535], "gaue": [0, 65535], "ink": [0, 65535], "owne": [0, 65535], "writing": [0, 65535], "thinke": [0, 65535], "asse": [0, 65535], "marry": [0, 65535], "doth": [0, 65535], "appeare": [0, 65535], "wrongs": [0, 65535], "suffer": [0, 65535], "blowes": [0, 65535], "beare": [0, 65535], "kicke": [0, 65535], "kickt": [0, 65535], "passe": [0, 65535], "heeles": [0, 65535], "beware": [0, 65535], "y'are": [0, 65535], "balthazar": [0, 65535], "welcom": [0, 65535], "bal": [0, 65535], "dainties": [0, 65535], "cheap": [0, 65535], "deer": [0, 65535], "table": [0, 65535], "welcome": [0, 65535], "scarce": [0, 65535], "dish": [0, 65535], "meat": [0, 65535], "co": [0, 65535], "m": [0, 65535], "mon": [0, 65535], "euery": [0, 65535], "churle": [0, 65535], "affords": [0, 65535], "common": [0, 65535], "thats": [0, 65535], "cheere": [0, 65535], "merrie": [0, 65535], "feast": [0, 65535], "niggardly": [0, 65535], "host": [0, 65535], "sparing": [0, 65535], "guest": [0, 65535], "cates": [0, 65535], "hart": [0, 65535], "soft": [0, 65535], "doore": [0, 65535], "lockt": [0, 65535], "goe": [0, 65535], "bid": [0, 65535], "maud": [0, 65535], "briget": [0, 65535], "marian": [0, 65535], "cisley": [0, 65535], "gillian": [0, 65535], "ginn": [0, 65535], "mome": [0, 65535], "malthorse": [0, 65535], "capon": [0, 65535], "coxcombe": [0, 65535], "patch": [0, 65535], "thee": [0, 65535], "hatch": [0, 65535], "dost": [0, 65535], "coniure": [0, 65535], "wenches": [0, 65535], "calst": [0, 65535], "store": [0, 65535], "porter": [0, 65535], "stayes": [0, 65535], "walke": [0, 65535], "whence": [0, 65535], "lest": [0, 65535], "hee": [0, 65535], "on's": [0, 65535], "hoa": [0, 65535], "ile": [0, 65535], "wherefore": [0, 65535], "din'd": [0, 65535], "againe": [0, 65535], "keep'st": [0, 65535], "mee": [0, 65535], "howse": [0, 65535], "owe": [0, 65535], "hast": [0, 65535], "stolne": [0, 65535], "mine": [0, 65535], "office": [0, 65535], "nere": [0, 65535], "credit": [0, 65535], "mickle": [0, 65535], "hadst": [0, 65535], "beene": [0, 65535], "wouldst": [0, 65535], "chang'd": [0, 65535], "thy": [0, 65535], "luce": [0, 65535], "coile": [0, 65535], "faith": [0, 65535], "prouerbe": [0, 65535], "staffe": [0, 65535], "swer'd": [0, 65535], "doe": [0, 65535], "heare": [0, 65535], "minion": [0, 65535], "askt": [0, 65535], "helpe": [0, 65535], "strooke": [0, 65535], "blow": [0, 65535], "baggage": [0, 65535], "sake": [0, 65535], "drom": [0, 65535], "knocke": [0, 65535], "ake": [0, 65535], "crie": [0, 65535], "needs": [0, 65535], "paire": [0, 65535], "stocks": [0, 65535], "towne": [0, 65535], "adriana": [0, 65535], "adr": [0, 65535], "keeps": [0, 65535], "troth": [0, 65535], "vnruly": [0, 65535], "boies": [0, 65535], "adri": [0, 65535], "knaue": [0, 65535], "paine": [0, 65535], "wold": [0, 65535], "heere": [0, 65535], "faine": [0, 65535], "baltz": [0, 65535], "debating": [0, 65535], "best": [0, 65535], "wee": [0, 65535], "winde": [0, 65535], "cake": [0, 65535], "warme": [0, 65535], "mad": [0, 65535], "bucke": [0, 65535], "sold": [0, 65535], "ope": [0, 65535], "breake": [0, 65535], "breaking": [0, 65535], "knaues": [0, 65535], "pate": [0, 65535], "behinde": [0, 65535], "seemes": [0, 65535], "want'st": [0, 65535], "vpon": [0, 65535], "hinde": [0, 65535], "fowles": [0, 65535], "feathers": [0, 65535], "fin": [0, 65535], "borrow": [0, 65535], "crow": [0, 65535], "finne": [0, 65535], "ther's": [0, 65535], "fowle": [0, 65535], "fether": [0, 65535], "sirra": [0, 65535], "wee'll": [0, 65535], "plucke": [0, 65535], "gon": [0, 65535], "balth": [0, 65535], "patience": [0, 65535], "heerein": [0, 65535], "warre": [0, 65535], "reputation": [0, 65535], "compasse": [0, 65535], "suspect": [0, 65535], "th'": [0, 65535], "vnuiolated": [0, 65535], "experience": [0, 65535], "wisedome": [0, 65535], "sober": [0, 65535], "vertue": [0, 65535], "yeares": [0, 65535], "modestie": [0, 65535], "plead": [0, 65535], "cause": [0, 65535], "vnknowne": [0, 65535], "dores": [0, 65535], "rul'd": [0, 65535], "depart": [0, 65535], "tyger": [0, 65535], "euening": [0, 65535], "selfe": [0, 65535], "reason": [0, 65535], "strange": [0, 65535], "offer": [0, 65535], "stirring": [0, 65535], "comment": [0, 65535], "supposed": [0, 65535], "rowt": [0, 65535], "vngalled": [0, 65535], "estimation": [0, 65535], "foule": [0, 65535], "intrusion": [0, 65535], "dwell": [0, 65535], "graue": [0, 65535], "slander": [0, 65535], "liues": [0, 65535], "euer": [0, 65535], "hows'd": [0, 65535], "gets": [0, 65535], "possession": [0, 65535], "preuail'd": [0, 65535], "despight": [0, 65535], "wench": [0, 65535], "excellent": [0, 65535], "prettie": [0, 65535], "wittie": [0, 65535], "wilde": [0, 65535], "dine": [0, 65535], "protest": [0, 65535], "desert": [0, 65535], "hath": [0, 65535], "oftentimes": [0, 65535], "vpbraided": [0, 65535], "withall": [0, 65535], "chaine": [0, 65535], "'tis": [0, 65535], "porpentine": [0, 65535], "bestow": [0, 65535], "spight": [0, 65535], "hostesse": [0, 65535], "haste": [0, 65535], "since": [0, 65535], "doores": [0, 65535], "refuse": [0, 65535], "entertaine": [0, 65535], "disdaine": [0, 65535], "ang": [0, 65535], "houre": [0, 65535], "hence": [0, 65535], "iest": [0, 65535], "cost": [0, 65535], "expence": [0, 65535], "exeunt": [0, 65535], "iuliana": [0, 65535], "siracusia": [0, 65535], "iulia": [0, 65535], "husbands": [0, 65535], "euen": [0, 65535], "loue": [0, 65535], "springs": [0, 65535], "rot": [0, 65535], "buildings": [0, 65535], "ruinate": [0, 65535], "wed": [0, 65535], "sister": [0, 65535], "wealths": [0, 65535], "vse": [0, 65535], "kindnesse": [0, 65535], "stealth": [0, 65535], "muffle": [0, 65535], "false": [0, 65535], "shew": [0, 65535], "blindnesse": [0, 65535], "shames": [0, 65535], "orator": [0, 65535], "looke": [0, 65535], "sweet": [0, 65535], "speake": [0, 65535], "faire": [0, 65535], "become": [0, 65535], "disloyaltie": [0, 65535], "apparell": [0, 65535], "vice": [0, 65535], "vertues": [0, 65535], "harbenger": [0, 65535], "tainted": [0, 65535], "teach": [0, 65535], "sinne": [0, 65535], "carriage": [0, 65535], "saint": [0, 65535], "secret": [0, 65535], "need": [0, 65535], "acquainted": [0, 65535], "thiefe": [0, 65535], "brags": [0, 65535], "attaine": [0, 65535], "truant": [0, 65535], "lookes": [0, 65535], "boord": [0, 65535], "shame": [0, 65535], "bastard": [0, 65535], "fame": [0, 65535], "deeds": [0, 65535], "doubled": [0, 65535], "euill": [0, 65535], "alas": [0, 65535], "poore": [0, 65535], "women": [0, 65535], "beleeue": [0, 65535], "compact": [0, 65535], "arme": [0, 65535], "sleeue": [0, 65535], "motion": [0, 65535], "turne": [0, 65535], "moue": [0, 65535], "sport": [0, 65535], "vaine": [0, 65535], "flatterie": [0, 65535], "conquers": [0, 65535], "strife": [0, 65535], "sweete": [0, 65535], "mistris": [0, 65535], "lesse": [0, 65535], "earths": [0, 65535], "diuine": [0, 65535], "deere": [0, 65535], "earthie": [0, 65535], "grosse": [0, 65535], "conceit": [0, 65535], "smothred": [0, 65535], "errors": [0, 65535], "shallow": [0, 65535], "weake": [0, 65535], "foulded": [0, 65535], "meaning": [0, 65535], "deceit": [0, 65535], "soules": [0, 65535], "labour": [0, 65535], "wander": [0, 65535], "create": [0, 65535], "transforme": [0, 65535], "powre": [0, 65535], "yeeld": [0, 65535], "weeping": [0, 65535], "farre": [0, 65535], "decline": [0, 65535], "traine": [0, 65535], "mermaide": [0, 65535], "drowne": [0, 65535], "floud": [0, 65535], "teares": [0, 65535], "sing": [0, 65535], "siren": [0, 65535], "dote": [0, 65535], "ore": [0, 65535], "siluer": [0, 65535], "waues": [0, 65535], "golden": [0, 65535], "haires": [0, 65535], "bud": [0, 65535], "glorious": [0, 65535], "supposition": [0, 65535], "gaines": [0, 65535], "meanes": [0, 65535], "sinke": [0, 65535], "luc": [0, 65535], "mated": [0, 65535], "fault": [0, 65535], "springeth": [0, 65535], "eie": [0, 65535], "gazing": [0, 65535], "beames": [0, 65535], "cleere": [0, 65535], "winke": [0, 65535], "sisters": [0, 65535], "selfes": [0, 65535], "eies": [0, 65535], "hearts": [0, 65535], "deerer": [0, 65535], "foode": [0, 65535], "hopes": [0, 65535], "aime": [0, 65535], "sole": [0, 65535], "heauen": [0, 65535], "heauens": [0, 65535], "claime": [0, 65535], "husband": [0, 65535], "giue": [0, 65535], "exit": [0, 65535], "run'st": [0, 65535], "womans": [0, 65535], "marrie": [0, 65535], "claimes": [0, 65535], "laies": [0, 65535], "beast": [0, 65535], "beeing": [0, 65535], "verie": [0, 65535], "beastly": [0, 65535], "layes": [0, 65535], "reuerent": [0, 65535], "reuerence": [0, 65535], "leane": [0, 65535], "lucke": [0, 65535], "match": [0, 65535], "wondrous": [0, 65535], "fat": [0, 65535], "marriage": [0, 65535], "kitchin": [0, 65535], "al": [0, 65535], "grease": [0, 65535], "lampe": [0, 65535], "warrant": [0, 65535], "ragges": [0, 65535], "burne": [0, 65535], "poland": [0, 65535], "winter": [0, 65535], "doomesday": [0, 65535], "she'l": [0, 65535], "weeke": [0, 65535], "complexion": [0, 65535], "swart": [0, 65535], "shoo": [0, 65535], "cleane": [0, 65535], "sweats": [0, 65535], "uer": [0, 65535], "shooes": [0, 65535], "grime": [0, 65535], "mend": [0, 65535], "graine": [0, 65535], "noahs": [0, 65535], "flood": [0, 65535], "nell": [0, 65535], "quarters": [0, 65535], "ell": [0, 65535], "measure": [0, 65535], "hip": [0, 65535], "beares": [0, 65535], "bredth": [0, 65535], "hippe": [0, 65535], "sphericall": [0, 65535], "globe": [0, 65535], "countries": [0, 65535], "ireland": [0, 65535], "buttockes": [0, 65535], "bogges": [0, 65535], "scotland": [0, 65535], "barrennesse": [0, 65535], "palme": [0, 65535], "france": [0, 65535], "forhead": [0, 65535], "arm'd": [0, 65535], "reuerted": [0, 65535], "heire": [0, 65535], "look'd": [0, 65535], "chalkle": [0, 65535], "cliffes": [0, 65535], "whitenesse": [0, 65535], "guesse": [0, 65535], "salt": [0, 65535], "rheume": [0, 65535], "ranne": [0, 65535], "betweene": [0, 65535], "spaine": [0, 65535], "breth": [0, 65535], "indies": [0, 65535], "embellished": [0, 65535], "rubies": [0, 65535], "carbuncles": [0, 65535], "saphires": [0, 65535], "declining": [0, 65535], "rich": [0, 65535], "aspect": [0, 65535], "sent": [0, 65535], "armadoes": [0, 65535], "carrects": [0, 65535], "ballast": [0, 65535], "belgia": [0, 65535], "netherlands": [0, 65535], "conclude": [0, 65535], "drudge": [0, 65535], "diuiner": [0, 65535], "layd": [0, 65535], "call'd": [0, 65535], "swore": [0, 65535], "assur'd": [0, 65535], "priuie": [0, 65535], "marke": [0, 65535], "mole": [0, 65535], "necke": [0, 65535], "amaz'd": [0, 65535], "brest": [0, 65535], "steele": [0, 65535], "transform'd": [0, 65535], "curtull": [0, 65535], "i'th": [0, 65535], "wheele": [0, 65535], "hie": [0, 65535], "post": [0, 65535], "rode": [0, 65535], "shore": [0, 65535], "harbour": [0, 65535], "barke": [0, 65535], "returne": [0, 65535], "euerie": [0, 65535], "knowes": [0, 65535], "trudge": [0, 65535], "packe": [0, 65535], "flie": [0, 65535], "witches": [0, 65535], "inhabite": [0, 65535], "soule": [0, 65535], "abhorre": [0, 65535], "possest": [0, 65535], "soueraigne": [0, 65535], "inchanting": [0, 65535], "guilty": [0, 65535], "eares": [0, 65535], "mermaids": [0, 65535], "loe": [0, 65535], "tane": [0, 65535], "vnfinish'd": [0, 65535], "shal": [0, 65535], "bespoke": [0, 65535], "twice": [0, 65535], "twentie": [0, 65535], "soone": [0, 65535], "receiue": [0, 65535], "feare": [0, 65535], "ne're": [0, 65535], "mony": [0, 65535], "merry": [0, 65535], "fare": [0, 65535], "offer'd": [0, 65535], "liue": [0, 65535], "shifts": [0, 65535], "streets": [0, 65535], "meetes": [0, 65535], "gifts": [0, 65535], "secundus": [0, 65535], "antipholis": [0, 65535], "sereptus": [0, 65535], "luciana": [0, 65535], "slaue": [0, 65535], "return'd": [0, 65535], "seeke": [0, 65535], "clocke": [0, 65535], "inuited": [0, 65535], "neuer": [0, 65535], "fret": [0, 65535], "libertie": [0, 65535], "ours": [0, 65535], "businesse": [0, 65535], "lies": [0, 65535], "serue": [0, 65535], "bridle": [0, 65535], "asses": [0, 65535], "bridled": [0, 65535], "headstrong": [0, 65535], "liberty": [0, 65535], "lasht": [0, 65535], "woe": [0, 65535], "situate": [0, 65535], "vnder": [0, 65535], "skie": [0, 65535], "beasts": [0, 65535], "fishes": [0, 65535], "winged": [0, 65535], "males": [0, 65535], "subiects": [0, 65535], "controules": [0, 65535], "watry": [0, 65535], "indued": [0, 65535], "intellectuall": [0, 65535], "sence": [0, 65535], "preheminence": [0, 65535], "masters": [0, 65535], "females": [0, 65535], "lords": [0, 65535], "attend": [0, 65535], "accords": [0, 65535], "seruitude": [0, 65535], "vnwed": [0, 65535], "luci": [0, 65535], "wedded": [0, 65535], "sway": [0, 65535], "ere": [0, 65535], "learne": [0, 65535], "start": [0, 65535], "forbeare": [0, 65535], "vnmou'd": [0, 65535], "maruel": [0, 65535], "meeke": [0, 65535], "wretched": [0, 65535], "bruis'd": [0, 65535], "aduersitie": [0, 65535], "burdned": [0, 65535], "waight": [0, 65535], "selues": [0, 65535], "complaine": [0, 65535], "vnkinde": [0, 65535], "mate": [0, 65535], "greeue": [0, 65535], "vrging": [0, 65535], "helpelesse": [0, 65535], "releeue": [0, 65535], "bereft": [0, 65535], "foole": [0, 65535], "beg'd": [0, 65535], "trie": [0, 65535], "nie": [0, 65535], "eph": [0, 65535], "tardie": [0, 65535], "nay": [0, 65535], "hee's": [0, 65535], "witnesse": [0, 65535], "knowst": [0, 65535], "minde": [0, 65535], "eare": [0, 65535], "beshrew": [0, 65535], "vnderstand": [0, 65535], "spake": [0, 65535], "doubtfully": [0, 65535], "couldst": [0, 65535], "feele": [0, 65535], "prethee": [0, 65535], "comming": [0, 65535], "mistresse": [0, 65535], "horne": [0, 65535], "cuckold": [0, 65535], "starke": [0, 65535], "desir'd": [0, 65535], "ask'd": [0, 65535], "quoth": [0, 65535], "pigge": [0, 65535], "burn'd": [0, 65535], "vp": [0, 65535], "dr": [0, 65535], "arrant": [0, 65535], "vnto": [0, 65535], "thanke": [0, 65535], "backe": [0, 65535], "beaten": [0, 65535], "gods": [0, 65535], "send": [0, 65535], "messenger": [0, 65535], "crosse": [0, 65535], "blesse": [0, 65535], "beating": [0, 65535], "prating": [0, 65535], "pesant": [0, 65535], "ball": [0, 65535], "spurne": [0, 65535], "seruice": [0, 65535], "case": [0, 65535], "fie": [0, 65535], "impatience": [0, 65535], "lowreth": [0, 65535], "minions": [0, 65535], "whil'st": [0, 65535], "starue": [0, 65535], "homelie": [0, 65535], "alluring": [0, 65535], "beauty": [0, 65535], "tooke": [0, 65535], "cheeke": [0, 65535], "wasted": [0, 65535], "discourses": [0, 65535], "barren": [0, 65535], "wit": [0, 65535], "voluble": [0, 65535], "sharpe": [0, 65535], "mar'd": [0, 65535], "vnkindnesse": [0, 65535], "blunts": [0, 65535], "marble": [0, 65535], "vestments": [0, 65535], "affections": [0, 65535], "baite": [0, 65535], "ruines": [0, 65535], "ruin'd": [0, 65535], "defeatures": [0, 65535], "decayed": [0, 65535], "sunnie": [0, 65535], "repaire": [0, 65535], "breakes": [0, 65535], "pale": [0, 65535], "feedes": [0, 65535], "stale": [0, 65535], "harming": [0, 65535], "iealousie": [0, 65535], "ad": [0, 65535], "vnfeeling": [0, 65535], "dispence": [0, 65535], "lets": [0, 65535], "promis'd": [0, 65535], "detaine": [0, 65535], "quarter": [0, 65535], "iewell": [0, 65535], "enamaled": [0, 65535], "beautie": [0, 65535], "bides": [0, 65535], "falshood": [0, 65535], "corruption": [0, 65535], "weepe": [0, 65535], "manie": [0, 65535], "fooles": [0, 65535], "ielousie": [0, 65535], "errotis": [0, 65535], "centaur": [0, 65535], "heedfull": [0, 65535], "wandred": [0, 65535], "computation": [0, 65535], "humor": [0, 65535], "alter'd": [0, 65535], "stroakes": [0, 65535], "receiu'd": [0, 65535], "ph\u0153nix": [0, 65535], "wast": [0, 65535], "madlie": [0, 65535], "answere": [0, 65535], "halfe": [0, 65535], "howre": [0, 65535], "golds": [0, 65535], "receit": [0, 65535], "toldst": [0, 65535], "feltst": [0, 65535], "displeas'd": [0, 65535], "yea": [0, 65535], "ieere": [0, 65535], "flowt": [0, 65535], "thinkst": [0, 65535], "beats": [0, 65535], "bargaine": [0, 65535], "antiph": [0, 65535], "familiarlie": [0, 65535], "chat": [0, 65535], "sawcinesse": [0, 65535], "serious": [0, 65535], "sunne": [0, 65535], "shines": [0, 65535], "gnats": [0, 65535], "creepe": [0, 65535], "crannies": [0, 65535], "hides": [0, 65535], "demeanor": [0, 65535], "method": [0, 65535], "sconce": [0, 65535], "leaue": [0, 65535], "battering": [0, 65535], "insconce": [0, 65535], "flowting": [0, 65535], "anie": [0, 65535], "rime": [0, 65535], "amends": [0, 65535], "wants": [0, 65535], "basting": [0, 65535], "'twill": [0, 65535], "drie": [0, 65535], "eat": [0, 65535], "chollericke": [0, 65535], "purchase": [0, 65535], "durst": [0, 65535], "denied": [0, 65535], "rule": [0, 65535], "plaine": [0, 65535], "bald": [0, 65535], "father": [0, 65535], "himselfe": [0, 65535], "recouer": [0, 65535], "haire": [0, 65535], "growes": [0, 65535], "recouerie": [0, 65535], "perewig": [0, 65535], "niggard": [0, 65535], "plentifull": [0, 65535], "excrement": [0, 65535], "blessing": [0, 65535], "bestowes": [0, 65535], "scanted": [0, 65535], "giuen": [0, 65535], "theres": [0, 65535], "hairy": [0, 65535], "dealers": [0, 65535], "plainer": [0, 65535], "dealer": [0, 65535], "looseth": [0, 65535], "kinde": [0, 65535], "iollitie": [0, 65535], "falsing": [0, 65535], "certaine": [0, 65535], "saue": [0, 65535], "spends": [0, 65535], "porrage": [0, 65535], "prou'd": [0, 65535], "substantiall": [0, 65535], "followers": [0, 65535], "'twould": [0, 65535], "wafts": [0, 65535], "yonder": [0, 65535], "frowne": [0, 65535], "aspects": [0, 65535], "vn": [0, 65535], "vrg'd": [0, 65535], "vow": [0, 65535], "musicke": [0, 65535], "thine": [0, 65535], "obiect": [0, 65535], "pleasing": [0, 65535], "sauour'd": [0, 65535], "taste": [0, 65535], "vnlesse": [0, 65535], "touch'd": [0, 65535], "caru'd": [0, 65535], "estranged": [0, 65535], "vndiuidable": [0, 65535], "incorporate": [0, 65535], "teare": [0, 65535], "easie": [0, 65535], "maist": [0, 65535], "gulfe": [0, 65535], "vnmingled": [0, 65535], "thence": [0, 65535], "addition": [0, 65535], "diminishing": [0, 65535], "deerely": [0, 65535], "quicke": [0, 65535], "shouldst": [0, 65535], "licencious": [0, 65535], "consecrate": [0, 65535], "ruffian": [0, 65535], "lust": [0, 65535], "contaminate": [0, 65535], "hurle": [0, 65535], "stain'd": [0, 65535], "harlot": [0, 65535], "wedding": [0, 65535], "deepe": [0, 65535], "diuorcing": [0, 65535], "canst": [0, 65535], "adulterate": [0, 65535], "blot": [0, 65535], "bloud": [0, 65535], "crime": [0, 65535], "digest": [0, 65535], "poison": [0, 65535], "strumpeted": [0, 65535], "contagion": [0, 65535], "league": [0, 65535], "truce": [0, 65535], "distain'd": [0, 65535], "vndishonoured": [0, 65535], "antip": [0, 65535], "dame": [0, 65535], "houres": [0, 65535], "talke": [0, 65535], "scan'd": [0, 65535], "wont": [0, 65535], "buffet": [0, 65535], "conuerse": [0, 65535], "gentlewoman": [0, 65535], "drift": [0, 65535], "liest": [0, 65535], "deliuer": [0, 65535], "agrees": [0, 65535], "grauitie": [0, 65535], "counterfeit": [0, 65535], "grosely": [0, 65535], "abetting": [0, 65535], "thwart": [0, 65535], "moode": [0, 65535], "exempt": [0, 65535], "contempt": [0, 65535], "elme": [0, 65535], "vine": [0, 65535], "weaknesse": [0, 65535], "married": [0, 65535], "strength": [0, 65535], "communicate": [0, 65535], "ought": [0, 65535], "possesse": [0, 65535], "drosse": [0, 65535], "vsurping": [0, 65535], "iuie": [0, 65535], "brier": [0, 65535], "mosse": [0, 65535], "pruning": [0, 65535], "infect": [0, 65535], "sap": [0, 65535], "shee": [0, 65535], "speakes": [0, 65535], "moues": [0, 65535], "theame": [0, 65535], "dreame": [0, 65535], "sleepe": [0, 65535], "error": [0, 65535], "driues": [0, 65535], "amisse": [0, 65535], "vntill": [0, 65535], "vncertaintie": [0, 65535], "free'd": [0, 65535], "fallacie": [0, 65535], "seruants": [0, 65535], "spred": [0, 65535], "beads": [0, 65535], "sinner": [0, 65535], "fairie": [0, 65535], "spights": [0, 65535], "goblins": [0, 65535], "owles": [0, 65535], "sprights": [0, 65535], "obay": [0, 65535], "insue": [0, 65535], "sucke": [0, 65535], "pinch": [0, 65535], "blacke": [0, 65535], "blew": [0, 65535], "prat'st": [0, 65535], "answer'st": [0, 65535], "snaile": [0, 65535], "slug": [0, 65535], "sot": [0, 65535], "transformed": [0, 65535], "shape": [0, 65535], "forme": [0, 65535], "ape": [0, 65535], "rides": [0, 65535], "grasse": [0, 65535], "laughes": [0, 65535], "scorne": [0, 65535], "aboue": [0, 65535], "shriue": [0, 65535], "prankes": [0, 65535], "aske": [0, 65535], "dines": [0, 65535], "hell": [0, 65535], "sleeping": [0, 65535], "waking": [0, 65535], "aduisde": [0, 65535], "knowne": [0, 65535], "disguisde": [0, 65535], "perseuer": [0, 65535], "mist": [0, 65535], "aduentures": [0, 65535], "quintus": [0, 65535], "sc\u0153na": [0, 65535], "hindred": [0, 65535], "dishonestly": [0, 65535], "mar": [0, 65535], "esteem'd": [0, 65535], "citie": [0, 65535], "infinite": [0, 65535], "highly": [0, 65535], "belou'd": [0, 65535], "softly": [0, 65535], "walkes": [0, 65535], "forswore": [0, 65535], "monstrously": [0, 65535], "neere": [0, 65535], "scandall": [0, 65535], "oaths": [0, 65535], "weare": [0, 65535], "openly": [0, 65535], "beside": [0, 65535], "charge": [0, 65535], "imprisonment": [0, 65535], "staying": [0, 65535], "controuersie": [0, 65535], "hoisted": [0, 65535], "saile": [0, 65535], "deny": [0, 65535], "heard": [0, 65535], "forsweare": [0, 65535], "wretch": [0, 65535], "pitty": [0, 65535], "liu'st": [0, 65535], "resort": [0, 65535], "impeach": [0, 65535], "proue": [0, 65535], "honestie": [0, 65535], "dar'st": [0, 65535], "defie": [0, 65535], "courtezan": [0, 65535], "sword": [0, 65535], "binde": [0, 65535], "runne": [0, 65535], "priorie": [0, 65535], "spoyl'd": [0, 65535], "ladie": [0, 65535], "abbesse": [0, 65535], "ab": [0, 65535], "throng": [0, 65535], "distracted": [0, 65535], "perfect": [0, 65535], "wits": [0, 65535], "heauie": [0, 65535], "sower": [0, 65535], "different": [0, 65535], "afternoone": [0, 65535], "brake": [0, 65535], "extremity": [0, 65535], "wrack": [0, 65535], "stray'd": [0, 65535], "affection": [0, 65535], "vnlawfull": [0, 65535], "preuailing": [0, 65535], "youthfull": [0, 65535], "sorrowes": [0, 65535], "subiect": [0, 65535], "except": [0, 65535], "oft": [0, 65535], "reprehended": [0, 65535], "rough": [0, 65535], "roughly": [0, 65535], "haply": [0, 65535], "priuate": [0, 65535], "assemblies": [0, 65535], "copie": [0, 65535], "conference": [0, 65535], "fed": [0, 65535], "vilde": [0, 65535], "thereof": [0, 65535], "venome": [0, 65535], "clamors": [0, 65535], "iealous": [0, 65535], "poisons": [0, 65535], "deadly": [0, 65535], "dogges": [0, 65535], "sleepes": [0, 65535], "railing": [0, 65535], "saist": [0, 65535], "meate": [0, 65535], "sawc'd": [0, 65535], "vpbraidings": [0, 65535], "vnquiet": [0, 65535], "meales": [0, 65535], "digestions": [0, 65535], "raging": [0, 65535], "feauer": [0, 65535], "fit": [0, 65535], "madnesse": [0, 65535], "sayest": [0, 65535], "sports": [0, 65535], "bralles": [0, 65535], "recreation": [0, 65535], "barr'd": [0, 65535], "ensue": [0, 65535], "moodie": [0, 65535], "melancholly": [0, 65535], "kinsman": [0, 65535], "comfortlesse": [0, 65535], "dispaire": [0, 65535], "huge": [0, 65535], "infectious": [0, 65535], "troope": [0, 65535], "distemperatures": [0, 65535], "foes": [0, 65535], "food": [0, 65535], "preseruing": [0, 65535], "disturb'd": [0, 65535], "consequence": [0, 65535], "fits": [0, 65535], "scar'd": [0, 65535], "mildely": [0, 65535], "demean'd": [0, 65535], "rude": [0, 65535], "wildly": [0, 65535], "rebukes": [0, 65535], "reproofe": [0, 65535], "enters": [0, 65535], "sanctuary": [0, 65535], "priuiledge": [0, 65535], "assaying": [0, 65535], "nurse": [0, 65535], "diet": [0, 65535], "sicknesse": [0, 65535], "atturney": [0, 65535], "stirre": [0, 65535], "vs'd": [0, 65535], "approoued": [0, 65535], "wholsome": [0, 65535], "sirrups": [0, 65535], "drugges": [0, 65535], "formall": [0, 65535], "branch": [0, 65535], "parcell": [0, 65535], "oath": [0, 65535], "charitable": [0, 65535], "dutie": [0, 65535], "beseeme": [0, 65535], "holinesse": [0, 65535], "separate": [0, 65535], "shalt": [0, 65535], "duke": [0, 65535], "indignity": [0, 65535], "prostrate": [0, 65535], "feete": [0, 65535], "rise": [0, 65535], "perforce": [0, 65535], "diall": [0, 65535], "fiue": [0, 65535], "anon": [0, 65535], "i'me": [0, 65535], "vale": [0, 65535], "depth": [0, 65535], "sorrie": [0, 65535], "execution": [0, 65535], "ditches": [0, 65535], "abbey": [0, 65535], "siracusian": [0, 65535], "vnluckily": [0, 65535], "bay": [0, 65535], "lawes": [0, 65535], "statutes": [0, 65535], "beheaded": [0, 65535], "publikely": [0, 65535], "kneele": [0, 65535], "siracuse": [0, 65535], "headsman": [0, 65535], "proclaime": [0, 65535], "summe": [0, 65535], "tender": [0, 65535], "iustice": [0, 65535], "vertuous": [0, 65535], "reuerend": [0, 65535], "husba": [0, 65535], "n": [0, 65535], "d": [0, 65535], "important": [0, 65535], "letters": [0, 65535], "outragious": [0, 65535], "desp'rately": [0, 65535], "hurried": [0, 65535], "streete": [0, 65535], "bondman": [0, 65535], "displeasure": [0, 65535], "citizens": [0, 65535], "rushing": [0, 65535], "houses": [0, 65535], "bearing": [0, 65535], "rings": [0, 65535], "iewels": [0, 65535], "furie": [0, 65535], "committed": [0, 65535], "wot": [0, 65535], "escape": [0, 65535], "guard": [0, 65535], "attendant": [0, 65535], "irefull": [0, 65535], "drawne": [0, 65535], "swords": [0, 65535], "madly": [0, 65535], "chac'd": [0, 65535], "raising": [0, 65535], "aide": [0, 65535], "whether": [0, 65535], "pursu'd": [0, 65535], "shuts": [0, 65535], "gates": [0, 65535], "gracious": [0, 65535], "command": [0, 65535], "seru'd": [0, 65535], "wars": [0, 65535], "ingag'd": [0, 65535], "princes": [0, 65535], "determine": [0, 65535], "shift": [0, 65535], "maids": [0, 65535], "beard": [0, 65535], "sindg'd": [0, 65535], "brands": [0, 65535], "blaz'd": [0, 65535], "pailes": [0, 65535], "puddled": [0, 65535], "myre": [0, 65535], "quench": [0, 65535], "preaches": [0, 65535], "cizers": [0, 65535], "nickes": [0, 65535], "coniurer": [0, 65535], "mess": [0, 65535], "tel": [0, 65535], "breath'd": [0, 65535], "cries": [0, 65535], "vowes": [0, 65535], "scorch": [0, 65535], "disfigure": [0, 65535], "harke": [0, 65535], "halberds": [0, 65535], "ay": [0, 65535], "inuisible": [0, 65535], "hous'd": [0, 65535], "humane": [0, 65535], "grant": [0, 65535], "bestrid": [0, 65535], "warres": [0, 65535], "scarres": [0, 65535], "sonne": [0, 65535], "prince": [0, 65535], "whom": [0, 65535], "gau'st": [0, 65535], "abused": [0, 65535], "dishonored": [0, 65535], "height": [0, 65535], "iniurie": [0, 65535], "shamelesse": [0, 65535], "throwne": [0, 65535], "discouer": [0, 65535], "finde": [0, 65535], "iust": [0, 65535], "harlots": [0, 65535], "feasted": [0, 65535], "greeuous": [0, 65535], "befall": [0, 65535], "burthens": [0, 65535], "tels": [0, 65535], "highnesse": [0, 65535], "periur'd": [0, 65535], "forsworne": [0, 65535], "madman": [0, 65535], "iustly": [0, 65535], "chargeth": [0, 65535], "liege": [0, 65535], "aduised": [0, 65535], "disturbed": [0, 65535], "wine": [0, 65535], "headie": [0, 65535], "rash": [0, 65535], "prouoak'd": [0, 65535], "ire": [0, 65535], "albeit": [0, 65535], "wiser": [0, 65535], "lock'd": [0, 65535], "pack'd": [0, 65535], "parted": [0, 65535], "promising": [0, 65535], "balthasar": [0, 65535], "companie": [0, 65535], "sweare": [0, 65535], "officer": [0, 65535], "duckets": [0, 65535], "fairely": [0, 65535], "by'th'": [0, 65535], "rabble": [0, 65535], "confederates": [0, 65535], "hungry": [0, 65535], "fac'd": [0, 65535], "meere": [0, 65535], "anatomie": [0, 65535], "mountebanke": [0, 65535], "thred": [0, 65535], "iugler": [0, 65535], "teller": [0, 65535], "ey'd": [0, 65535], "liuing": [0, 65535], "pernicious": [0, 65535], "forsooth": [0, 65535], "'twere": [0, 65535], "facing": [0, 65535], "darke": [0, 65535], "dankish": [0, 65535], "vault": [0, 65535], "gnawing": [0, 65535], "bonds": [0, 65535], "sunder": [0, 65535], "gain'd": [0, 65535], "freedome": [0, 65535], "hether": [0, 65535], "beseech": [0, 65535], "ample": [0, 65535], "indignities": [0, 65535], "witnes": [0, 65535], "sworne": [0, 65535], "confesse": [0, 65535], "thereupon": [0, 65535], "miracle": [0, 65535], "wals": [0, 65535], "burthen": [0, 65535], "intricate": [0, 65535], "drunke": [0, 65535], "circes": [0, 65535], "cup": [0, 65535], "bin": [0, 65535], "pleade": [0, 65535], "denies": [0, 65535], "din'de": [0, 65535], "cur": [0, 65535], "snacht": [0, 65535], "tis": [0, 65535], "saw'st": [0, 65535], "curt": [0, 65535], "straunge": [0, 65535], "fa": [0, 65535], "vouchsafe": [0, 65535], "sum": [0, 65535], "freely": [0, 65535], "wilt": [0, 65535], "fath": [0, 65535], "gnaw'd": [0, 65535], "cords": [0, 65535], "vnbound": [0, 65535], "pinches": [0, 65535], "griefe": [0, 65535], "carefull": [0, 65535], "deformed": [0, 65535], "written": [0, 65535], "whatsoeuer": [0, 65535], "crack'd": [0, 65535], "splitted": [0, 65535], "seuen": [0, 65535], "onely": [0, 65535], "vntun'd": [0, 65535], "grained": [0, 65535], "hid": [0, 65535], "consuming": [0, 65535], "winters": [0, 65535], "drizled": [0, 65535], "snow": [0, 65535], "conduits": [0, 65535], "froze": [0, 65535], "memorie": [0, 65535], "wasting": [0, 65535], "lampes": [0, 65535], "fading": [0, 65535], "glimmer": [0, 65535], "deafe": [0, 65535], "witnesses": [0, 65535], "erre": [0, 65535], "siracusa": [0, 65535], "know'st": [0, 65535], "sham'st": [0, 65535], "acknowledge": [0, 65535], "miserie": [0, 65535], "city": [0, 65535], "patron": [0, 65535], "dangers": [0, 65535], "mightie": [0, 65535], "wrong'd": [0, 65535], "deceiue": [0, 65535], "genius": [0, 65535], "naturall": [0, 65535], "deciphers": [0, 65535], "egeon": [0, 65535], "ghost": [0, 65535], "olde": [0, 65535], "abb": [0, 65535], "gaine": [0, 65535], "bee'st": [0, 65535], "\u00e6milia": [0, 65535], "sonnes": [0, 65535], "begins": [0, 65535], "storie": [0, 65535], "twoantipholus": [0, 65535], "dromio's": [0, 65535], "semblance": [0, 65535], "wracke": [0, 65535], "floated": [0, 65535], "fatall": [0, 65535], "rafte": [0, 65535], "epidamium": [0, 65535], "twin": [0, 65535], "fishermen": [0, 65535], "corinth": [0, 65535], "force": [0, 65535], "cam'st": [0, 65535], "apart": [0, 65535], "famous": [0, 65535], "warriour": [0, 65535], "menaphon": [0, 65535], "renowned": [0, 65535], "vnckle": [0, 65535], "leisure": [0, 65535], "arrested": [0, 65535], "monie": [0, 65535], "baile": [0, 65535], "purse": [0, 65535], "meete": [0, 65535], "arose": [0, 65535], "pawne": [0, 65535], "neede": [0, 65535], "diamond": [0, 65535], "thanks": [0, 65535], "paines": [0, 65535], "discoursed": [0, 65535], "fortunes": [0, 65535], "simpathized": [0, 65535], "daies": [0, 65535], "suffer'd": [0, 65535], "thirtie": [0, 65535], "trauaile": [0, 65535], "deliuered": [0, 65535], "kalenders": [0, 65535], "natiuity": [0, 65535], "gossips": [0, 65535], "greefe": [0, 65535], "natiuitie": [0, 65535], "gossip": [0, 65535], "omnes": [0, 65535], "manet": [0, 65535], "mast": [0, 65535], "stuffe": [0, 65535], "shipbord": [0, 65535], "imbarkt": [0, 65535], "goods": [0, 65535], "wee'l": [0, 65535], "embrace": [0, 65535], "reioyce": [0, 65535], "kitchin'd": [0, 65535], "glasse": [0, 65535], "youth": [0, 65535], "gossipping": [0, 65535], "elder": [0, 65535], "cuts": [0, 65535], "finis": [0, 65535], "comedie": [0, 65535], "primus": [0, 65535], "iaylor": [0, 65535], "attendants": [0, 65535], "marchant": [0, 65535], "broceed": [0, 65535], "solinus": [0, 65535], "procure": [0, 65535], "doome": [0, 65535], "partiall": [0, 65535], "infringe": [0, 65535], "enmity": [0, 65535], "discord": [0, 65535], "sprung": [0, 65535], "rancorous": [0, 65535], "outrage": [0, 65535], "merchants": [0, 65535], "dealing": [0, 65535], "countrimen": [0, 65535], "gilders": [0, 65535], "redeeme": [0, 65535], "seal'd": [0, 65535], "rigorous": [0, 65535], "blouds": [0, 65535], "excludes": [0, 65535], "threatning": [0, 65535], "mortall": [0, 65535], "intestine": [0, 65535], "iarres": [0, 65535], "twixt": [0, 65535], "seditious": [0, 65535], "solemne": [0, 65535], "synodes": [0, 65535], "decreed": [0, 65535], "siracusians": [0, 65535], "admit": [0, 65535], "trafficke": [0, 65535], "aduerse": [0, 65535], "townes": [0, 65535], "seene": [0, 65535], "marts": [0, 65535], "fayres": [0, 65535], "dies": [0, 65535], "confiscate": [0, 65535], "dukes": [0, 65535], "dispose": [0, 65535], "leuied": [0, 65535], "quit": [0, 65535], "penalty": [0, 65535], "ransome": [0, 65535], "substance": [0, 65535], "rate": [0, 65535], "amount": [0, 65535], "condemn'd": [0, 65535], "mer": [0, 65535], "likewise": [0, 65535], "duk": [0, 65535], "briefe": [0, 65535], "departedst": [0, 65535], "natiue": [0, 65535], "heauier": [0, 65535], "taske": [0, 65535], "impos'd": [0, 65535], "griefes": [0, 65535], "vnspeakeable": [0, 65535], "vile": [0, 65535], "vtter": [0, 65535], "sorrow": [0, 65535], "giues": [0, 65535], "syracusa": [0, 65535], "wedde": [0, 65535], "hap": [0, 65535], "liu'd": [0, 65535], "ioy": [0, 65535], "increast": [0, 65535], "prosperous": [0, 65535], "voyages": [0, 65535], "factors": [0, 65535], "randone": [0, 65535], "embracements": [0, 65535], "spouse": [0, 65535], "absence": [0, 65535], "sixe": [0, 65535], "moneths": [0, 65535], "fainting": [0, 65535], "prouision": [0, 65535], "arriued": [0, 65535], "ioyfull": [0, 65535], "goodly": [0, 65535], "distinguish'd": [0, 65535], "inne": [0, 65535], "male": [0, 65535], "twins": [0, 65535], "exceeding": [0, 65535], "meanely": [0, 65535], "prowd": [0, 65535], "boyes": [0, 65535], "motions": [0, 65535], "vnwilling": [0, 65535], "aboord": [0, 65535], "saild": [0, 65535], "alwaies": [0, 65535], "obeying": [0, 65535], "tragicke": [0, 65535], "instance": [0, 65535], "harme": [0, 65535], "retaine": [0, 65535], "obscured": [0, 65535], "conuay": [0, 65535], "fearefull": [0, 65535], "mindes": [0, 65535], "doubtfull": [0, 65535], "immediate": [0, 65535], "gladly": [0, 65535], "imbrac'd": [0, 65535], "incessant": [0, 65535], "weepings": [0, 65535], "pitteous": [0, 65535], "playnings": [0, 65535], "babes": [0, 65535], "mourn'd": [0, 65535], "ignorant": [0, 65535], "forst": [0, 65535], "delayes": [0, 65535], "boate": [0, 65535], "sinking": [0, 65535], "ripe": [0, 65535], "fastned": [0, 65535], "faring": [0, 65535], "prouide": [0, 65535], "stormes": [0, 65535], "dispos'd": [0, 65535], "fixing": [0, 65535], "fixt": [0, 65535], "eyther": [0, 65535], "floating": [0, 65535], "streame": [0, 65535], "towards": [0, 65535], "length": [0, 65535], "disperst": [0, 65535], "vapours": [0, 65535], "offended": [0, 65535], "benefit": [0, 65535], "waxt": [0, 65535], "calme": [0, 65535], "discouered": [0, 65535], "shippes": [0, 65535], "amaine": [0, 65535], "epidarus": [0, 65535], "sequell": [0, 65535], "pardon": [0, 65535], "merch": [0, 65535], "worthily": [0, 65535], "tearm'd": [0, 65535], "mercilesse": [0, 65535], "ships": [0, 65535], "leagues": [0, 65535], "encountred": [0, 65535], "rocke": [0, 65535], "violently": [0, 65535], "helpefull": [0, 65535], "vniust": [0, 65535], "diuorce": [0, 65535], "burdened": [0, 65535], "lesser": [0, 65535], "seiz'd": [0, 65535], "healthfull": [0, 65535], "wrackt": [0, 65535], "guests": [0, 65535], "reft": [0, 65535], "fishers": [0, 65535], "prey": [0, 65535], "seuer'd": [0, 65535], "blisse": [0, 65535], "prolong'd": [0, 65535], "stories": [0, 65535], "mishaps": [0, 65535], "sorrowest": [0, 65535], "fauour": [0, 65535], "dilate": [0, 65535], "befalne": [0, 65535], "yongest": [0, 65535], "eldest": [0, 65535], "eighteene": [0, 65535], "yeeres": [0, 65535], "inquisitiue": [0, 65535], "importun'd": [0, 65535], "retain'd": [0, 65535], "quest": [0, 65535], "laboured": [0, 65535], "hazarded": [0, 65535], "losse": [0, 65535], "lou'd": [0, 65535], "sommers": [0, 65535], "spent": [0, 65535], "farthest": [0, 65535], "greece": [0, 65535], "roming": [0, 65535], "bounds": [0, 65535], "asia": [0, 65535], "coasting": [0, 65535], "hopelesse": [0, 65535], "loth": [0, 65535], "vnsought": [0, 65535], "harbours": [0, 65535], "timelie": [0, 65535], "trauells": [0, 65535], "haplesse": [0, 65535], "fates": [0, 65535], "markt": [0, 65535], "extremitie": [0, 65535], "dire": [0, 65535], "mishap": [0, 65535], "crowne": [0, 65535], "dignity": [0, 65535], "disanull": [0, 65535], "sue": [0, 65535], "aduocate": [0, 65535], "adiudged": [0, 65535], "recal'd": [0, 65535], "honours": [0, 65535], "disparagement": [0, 65535], "limit": [0, 65535], "beneficiall": [0, 65535], "friends": [0, 65535], "beg": [0, 65535], "doom'd": [0, 65535], "custodie": [0, 65535], "egean": [0, 65535], "wend": [0, 65535], "procrastinate": [0, 65535], "liuelesse": [0, 65535], "erotes": [0, 65535], "syracusian": [0, 65535], "apprehended": [0, 65535], "riuall": [0, 65535], "able": [0, 65535], "statute": [0, 65535], "wearie": [0, 65535], "west": [0, 65535], "centaure": [0, 65535], "peruse": [0, 65535], "traders": [0, 65535], "stiffe": [0, 65535], "indeede": [0, 65535], "hauing": [0, 65535], "trustie": [0, 65535], "lightens": [0, 65535], "humour": [0, 65535], "iests": [0, 65535], "marchants": [0, 65535], "craue": [0, 65535], "afterward": [0, 65535], "consort": [0, 65535], "cals": [0, 65535], "farewell": [0, 65535], "commend": [0, 65535], "commends": [0, 65535], "ocean": [0, 65535], "seekes": [0, 65535], "falling": [0, 65535], "vnseene": [0, 65535], "confounds": [0, 65535], "vnhappie": [0, 65535], "almanacke": [0, 65535], "date": [0, 65535], "approacht": [0, 65535], "burnes": [0, 65535], "pig": [0, 65535], "fals": [0, 65535], "strucken": [0, 65535], "twelue": [0, 65535], "colde": [0, 65535], "stomacke": [0, 65535], "penitent": [0, 65535], "default": [0, 65535], "pence": [0, 65535], "wensday": [0, 65535], "sadler": [0, 65535], "crupper": [0, 65535], "sportiue": [0, 65535], "dally": [0, 65535], "strangers": [0, 65535], "scoure": [0, 65535], "thinkes": [0, 65535], "maw": [0, 65535], "cooke": [0, 65535], "reserue": [0, 65535], "merrier": [0, 65535], "foolishnes": [0, 65535], "staies": [0, 65535], "christian": [0, 65535], "bestow'd": [0, 65535], "vndispos'd": [0, 65535], "perchance": [0, 65535], "worships": [0, 65535], "praies": [0, 65535], "flout": [0, 65535], "forbid": [0, 65535], "ep": [0, 65535], "deuise": [0, 65535], "cosenage": [0, 65535], "nimble": [0, 65535], "iuglers": [0, 65535], "sorcerers": [0, 65535], "killing": [0, 65535], "deforme": [0, 65535], "bodie": [0, 65535], "disguised": [0, 65535], "cheaters": [0, 65535], "mountebankes": [0, 65535], "liberties": [0, 65535], "greatly": [0, 65535], "quartus": [0, 65535], "sc\u00e6na": [0, 65535], "pentecost": [0, 65535], "persia": [0, 65535], "voyage": [0, 65535], "attach": [0, 65535], "growing": [0, 65535], "pleaseth": [0, 65535], "discharge": [0, 65535], "bond": [0, 65535], "ephes": [0, 65535], "courtizans": [0, 65535], "offi": [0, 65535], "goldsmiths": [0, 65535], "ropes": [0, 65535], "locking": [0, 65535], "rope": [0, 65535], "pound": [0, 65535], "yeare": [0, 65535], "holpe": [0, 65535], "trusts": [0, 65535], "promised": [0, 65535], "belike": [0, 65535], "chain'd": [0, 65535], "sauing": [0, 65535], "weighs": [0, 65535], "vtmost": [0, 65535], "charect": [0, 65535], "finenesse": [0, 65535], "chargefull": [0, 65535], "odde": [0, 65535], "debted": [0, 65535], "discharg'd": [0, 65535], "furnish'd": [0, 65535], "disburse": [0, 65535], "tide": [0, 65535], "dalliance": [0, 65535], "breach": [0, 65535], "promise": [0, 65535], "chid": [0, 65535], "shrew": [0, 65535], "brawle": [0, 65535], "steales": [0, 65535], "dispatch": [0, 65535], "importunes": [0, 65535], "token": [0, 65535], "where's": [0, 65535], "brooke": [0, 65535], "whe'r": [0, 65535], "you'l": [0, 65535], "denying": [0, 65535], "consider": [0, 65535], "suite": [0, 65535], "touches": [0, 65535], "fee": [0, 65535], "apparantly": [0, 65535], "offic": [0, 65535], "sirrah": [0, 65535], "mettall": [0, 65535], "notorious": [0, 65535], "sira": [0, 65535], "owner": [0, 65535], "fraughtage": [0, 65535], "conuei'd": [0, 65535], "oyle": [0, 65535], "balsamum": [0, 65535], "aqua": [0, 65535], "vit\u00e6": [0, 65535], "trim": [0, 65535], "nought": [0, 65535], "peeuish": [0, 65535], "hier": [0, 65535], "waftage": [0, 65535], "drunken": [0, 65535], "purpose": [0, 65535], "debate": [0, 65535], "heede": [0, 65535], "deske": [0, 65535], "couer'd": [0, 65535], "o're": [0, 65535], "turkish": [0, 65535], "tapistrie": [0, 65535], "dowsabell": [0, 65535], "bigge": [0, 65535], "fulfill": [0, 65535], "tempt": [0, 65535], "might'st": [0, 65535], "perceiue": [0, 65535], "austeerely": [0, 65535], "merrily": [0, 65535], "obseruation": [0, 65535], "mad'st": [0, 65535], "meteors": [0, 65535], "tilting": [0, 65535], "deni'de": [0, 65535], "begg'd": [0, 65535], "perswasion": [0, 65535], "praise": [0, 65535], "did'st": [0, 65535], "crooked": [0, 65535], "sere": [0, 65535], "worse": [0, 65535], "bodied": [0, 65535], "shapelesse": [0, 65535], "vngentle": [0, 65535], "blunt": [0, 65535], "stigmaticall": [0, 65535], "wail'd": [0, 65535], "herein": [0, 65535], "nest": [0, 65535], "lapwing": [0, 65535], "tartar": [0, 65535], "limbo": [0, 65535], "diuell": [0, 65535], "euerlasting": [0, 65535], "garment": [0, 65535], "button'd": [0, 65535], "feind": [0, 65535], "pittilesse": [0, 65535], "ruffe": [0, 65535], "wolfe": [0, 65535], "buffe": [0, 65535], "clapper": [0, 65535], "countermads": [0, 65535], "passages": [0, 65535], "allies": [0, 65535], "creekes": [0, 65535], "narrow": [0, 65535], "lands": [0, 65535], "hound": [0, 65535], "runs": [0, 65535], "counter": [0, 65535], "draws": [0, 65535], "drifoot": [0, 65535], "iudgment": [0, 65535], "carries": [0, 65535], "hel": [0, 65535], "arested": [0, 65535], "redemption": [0, 65535], "debt": [0, 65535], "band": [0, 65535], "adria": [0, 65535], "strikes": [0, 65535], "serieant": [0, 65535], "turnes": [0, 65535], "fondly": [0, 65535], "do'st": [0, 65535], "bankerout": [0, 65535], "owes": [0, 65535], "theefe": [0, 65535], "theft": [0, 65535], "imediately": [0, 65535], "prest": [0, 65535], "salute": [0, 65535], "inuite": [0, 65535], "thankes": [0, 65535], "kindnesses": [0, 65535], "commodities": [0, 65535], "tailor": [0, 65535], "cal'd": [0, 65535], "show'd": [0, 65535], "silkes": [0, 65535], "therewithall": [0, 65535], "imaginarie": [0, 65535], "wiles": [0, 65535], "lapland": [0, 65535], "adam": [0, 65535], "apparel'd": [0, 65535], "paradise": [0, 65535], "keepes": [0, 65535], "calues": [0, 65535], "kil'd": [0, 65535], "prodigall": [0, 65535], "forsake": [0, 65535], "base": [0, 65535], "viole": [0, 65535], "sob": [0, 65535], "rests": [0, 65535], "pittie": [0, 65535], "decaied": [0, 65535], "suites": [0, 65535], "durance": [0, 65535], "sets": [0, 65535], "exploits": [0, 65535], "mace": [0, 65535], "moris": [0, 65535], "pike": [0, 65535], "mean'st": [0, 65535], "brings": [0, 65535], "saies": [0, 65535], "foolerie": [0, 65535], "puts": [0, 65535], "expedition": [0, 65535], "hoy": [0, 65535], "delay": [0, 65535], "angels": [0, 65535], "distract": [0, 65535], "illusions": [0, 65535], "curtizan": [0, 65535], "smith": [0, 65535], "sathan": [0, 65535], "auoide": [0, 65535], "diuels": [0, 65535], "dam": [0, 65535], "habit": [0, 65535], "ergo": [0, 65535], "maruailous": [0, 65535], "expect": [0, 65535], "spoon": [0, 65535], "bespeake": [0, 65535], "spoone": [0, 65535], "eate": [0, 65535], "auoid": [0, 65535], "fiend": [0, 65535], "tel'st": [0, 65535], "supping": [0, 65535], "sorceresse": [0, 65535], "parings": [0, 65535], "naile": [0, 65535], "rush": [0, 65535], "nut": [0, 65535], "cherrie": [0, 65535], "couetous": [0, 65535], "fright": [0, 65535], "cheate": [0, 65535], "auant": [0, 65535], "pea": [0, 65535], "cocke": [0, 65535], "demeane": [0, 65535], "fortie": [0, 65535], "tale": [0, 65535], "lunaticke": [0, 65535], "rush'd": [0, 65535], "fittest": [0, 65535], "choose": [0, 65535], "iailor": [0, 65535], "wayward": [0, 65535], "lightly": [0, 65535], "attach'd": [0, 65535], "harshly": [0, 65535], "re": [0, 65535], "turn'd": [0, 65535], "perswade": [0, 65535], "whoreson": [0, 65535], "senselesse": [0, 65535], "sensible": [0, 65535], "prooue": [0, 65535], "serued": [0, 65535], "heates": [0, 65535], "cooles": [0, 65535], "wak'd": [0, 65535], "rais'd": [0, 65535], "driuen": [0, 65535], "welcom'd": [0, 65535], "begger": [0, 65535], "woont": [0, 65535], "brat": [0, 65535], "lam'd": [0, 65535], "begge": [0, 65535], "courtizan": [0, 65535], "schoolemaster": [0, 65535], "respice": [0, 65535], "finem": [0, 65535], "respect": [0, 65535], "prophesie": [0, 65535], "parrat": [0, 65535], "inciuility": [0, 65535], "confirmes": [0, 65535], "establish": [0, 65535], "demand": [0, 65535], "fiery": [0, 65535], "trembles": [0, 65535], "extasie": [0, 65535], "holie": [0, 65535], "praiers": [0, 65535], "darknesse": [0, 65535], "saints": [0, 65535], "doting": [0, 65535], "wizard": [0, 65535], "wer't": [0, 65535], "distressed": [0, 65535], "customers": [0, 65535], "companion": [0, 65535], "saffron": [0, 65535], "reuell": [0, 65535], "guiltie": [0, 65535], "remain'd": [0, 65535], "slanders": [0, 65535], "sooth": [0, 65535], "perdie": [0, 65535], "reuile": [0, 65535], "sans": [0, 65535], "fable": [0, 65535], "reuil'd": [0, 65535], "maide": [0, 65535], "raile": [0, 65535], "taunt": [0, 65535], "certis": [0, 65535], "vestall": [0, 65535], "scorn'd": [0, 65535], "veritie": [0, 65535], "bones": [0, 65535], "is't": [0, 65535], "contraries": [0, 65535], "finds": [0, 65535], "yeelding": [0, 65535], "humors": [0, 65535], "frensie": [0, 65535], "subborn'd": [0, 65535], "surely": [0, 65535], "ragge": [0, 65535], "wentst": [0, 65535], "deliuer'd": [0, 65535], "maker": [0, 65535], "laide": [0, 65535], "roome": [0, 65535], "locke": [0, 65535], "bagge": [0, 65535], "dissembling": [0, 65535], "villain": [0, 65535], "speak'st": [0, 65535], "confederate": [0, 65535], "damned": [0, 65535], "loathsome": [0, 65535], "abiect": [0, 65535], "nailes": [0, 65535], "shamefull": [0, 65535], "foure": [0, 65535], "striues": [0, 65535], "aye": [0, 65535], "wan": [0, 65535], "looks": [0, 65535], "murther": [0, 65535], "franticke": [0, 65535], "requir'd": [0, 65535], "forthwith": [0, 65535], "creditor": [0, 65535], "conuey'd": [0, 65535], "vnhappy": [0, 65535], "strumpet": [0, 65535], "entred": [0, 65535], "idlely": [0, 65535], "chain": [0, 65535], "heereof": [0, 65535], "rapier": [0, 65535], "sirac": [0, 65535], "mercy": [0, 65535], "naked": [0, 65535], "they'l": [0, 65535], "frighted": [0, 65535], "affraid": [0, 65535], "nation": [0, 65535], "mountaine": [0, 65535], "mariage": [0, 65535], "__names__": ["twain", "shakespeare"], "__version__": 3} +{"about": [51157, 14378], "half": [65535, 0], "past": [49105, 16430], "ten": [65535, 0], "the": [42265, 23270], "cracked": [65535, 0], "bell": [32706, 32829], "of": [39448, 26087], "small": [57316, 8219], "church": [65535, 0], "began": [65535, 0], "to": [31988, 33547], "ring": [5937, 59598], "and": [39965, 25570], "presently": [56959, 8576], "people": [26155, 39380], "gather": [16338, 49197], "for": [29862, 35673], "morning": [56143, 9392], "sermon": [65535, 0], "sunday": [65535, 0], "school": [65535, 0], "children": [45823, 19712], "distributed": [65535, 0], "themselves": [65535, 0], "house": [22472, 43063], "occupied": [65535, 0], "pews": [65535, 0], "with": [36277, 29258], "their": [26155, 39380], "parents": [21790, 43745], "so": [35195, 30340], "as": [39080, 26455], "be": [20360, 45175], "under": [65535, 0], "supervision": [65535, 0], "aunt": [65535, 0], "polly": [65535, 0], "came": [39262, 26273], "tom": [65535, 0], "sid": [65535, 0], "mary": [65535, 0], "sat": [65535, 0], "her": [31281, 34254], "being": [28026, 37509], "placed": [65535, 0], "next": [61425, 4110], "aisle": [65535, 0], "in": [31079, 34456], "order": [46760, 18775], "that": [30337, 35198], "he": [45494, 20041], "might": [32706, 32829], "far": [59557, 5978], "away": [40680, 24855], "from": [24964, 40571], "open": [37388, 28147], "window": [65535, 0], "seductive": [65535, 0], "outside": [65535, 0], "summer": [65535, 0], "scenes": [65535, 0], "possible": [65535, 0], "crowd": [65535, 0], "filed": [65535, 0], "up": [65535, 0], "aisles": [65535, 0], "aged": [65535, 0], "needy": [32706, 32829], "postmaster": [65535, 0], "who": [28279, 37256], "had": [47487, 18048], "seen": [65535, 0], "better": [37388, 28147], "days": [65535, 0], "mayor": [65535, 0], "his": [46786, 18749], "wife": [3530, 62005], "they": [39430, 26105], "a": [42955, 22580], "there": [38490, 27045], "among": [52389, 13146], "other": [35983, 29552], "unnecessaries": [65535, 0], "justice": [65535, 0], "peace": [32706, 32829], "widow": [65535, 0], "douglass": [65535, 0], "fair": [65535, 0], "smart": [65535, 0], "forty": [65535, 0], "generous": [65535, 0], "good": [34318, 31217], "hearted": [65535, 0], "soul": [65535, 0], "well": [37258, 28277], "do": [40355, 25180], "hill": [65535, 0], "mansion": [65535, 0], "only": [65535, 0], "palace": [65535, 0], "town": [57316, 8219], "most": [28433, 37102], "hospitable": [65535, 0], "much": [36156, 29379], "lavish": [65535, 0], "matter": [49105, 16430], "festivities": [65535, 0], "st": [65535, 0], "petersburg": [65535, 0], "could": [42618, 22917], "boast": [65535, 0], "bent": [49105, 16430], "venerable": [65535, 0], "major": [65535, 0], "mrs": [65535, 0], "ward": [65535, 0], "lawyer": [65535, 0], "riverson": [65535, 0], "new": [58490, 7045], "notable": [65535, 0], "distance": [65535, 0], "belle": [65535, 0], "village": [65535, 0], "followed": [65535, 0], "by": [27701, 37834], "troop": [65535, 0], "lawn": [65535, 0], "clad": [65535, 0], "ribbon": [65535, 0], "decked": [65535, 0], "young": [65535, 0], "heart": [48140, 17395], "breakers": [65535, 0], "then": [33252, 32283], "all": [37749, 27786], "clerks": [65535, 0], "body": [43635, 21900], "stood": [54578, 10957], "vestibule": [65535, 0], "sucking": [65535, 0], "cane": [65535, 0], "heads": [65535, 0], "circling": [65535, 0], "wall": [65535, 0], "oiled": [65535, 0], "simpering": [65535, 0], "admirers": [65535, 0], "till": [26467, 39068], "last": [47281, 18254], "girl": [65535, 0], "run": [32706, 32829], "gantlet": [65535, 0], "model": [65535, 0], "boy": [63572, 1963], "willie": [65535, 0], "mufferson": [65535, 0], "taking": [65535, 0], "heedful": [65535, 0], "care": [16338, 49197], "mother": [43635, 21900], "if": [30001, 35534], "she": [46095, 19440], "were": [37622, 27913], "cut": [54578, 10957], "glass": [65535, 0], "always": [65535, 0], "brought": [32706, 32829], "was": [56143, 9392], "pride": [43635, 21900], "matrons": [65535, 0], "boys": [65535, 0], "hated": [65535, 0], "him": [34493, 31042], "besides": [19609, 45926], "been": [65535, 0], "thrown": [65535, 0], "them": [27709, 37826], "white": [65535, 0], "handkerchief": [65535, 0], "hanging": [65535, 0], "out": [45318, 20217], "pocket": [65535, 0], "behind": [65535, 0], "usual": [65535, 0], "on": [42224, 23311], "sundays": [65535, 0], "accidentally": [32706, 32829], "no": [30001, 35534], "looked": [65535, 0], "upon": [65535, 0], "snobs": [65535, 0], "congregation": [65535, 0], "fully": [65535, 0], "assembled": [43635, 21900], "now": [35919, 29616], "rang": [65535, 0], "once": [37388, 28147], "more": [28026, 37509], "warn": [65535, 0], "laggards": [65535, 0], "stragglers": [65535, 0], "solemn": [65535, 0], "hush": [65535, 0], "fell": [58959, 6576], "which": [30309, 35226], "broken": [65535, 0], "tittering": [65535, 0], "whispering": [65535, 0], "choir": [65535, 0], "gallery": [65535, 0], "tittered": [65535, 0], "whispered": [65535, 0], "through": [59817, 5718], "service": [65535, 0], "not": [15446, 50089], "ill": [9332, 56203], "bred": [32706, 32829], "but": [34401, 31134], "i": [13500, 52035], "have": [65535, 0], "forgotten": [65535, 0], "where": [17824, 47711], "it": [40160, 25375], "great": [46458, 19077], "many": [54578, 10957], "years": [65535, 0], "ago": [65535, 0], "can": [42349, 23186], "scarcely": [65535, 0], "remember": [21790, 43745], "anything": [65535, 0], "think": [65535, 0], "some": [24017, 41518], "foreign": [65535, 0], "country": [65535, 0], "minister": [65535, 0], "gave": [65535, 0], "hymn": [65535, 0], "read": [39262, 26273], "relish": [65535, 0], "peculiar": [65535, 0], "style": [65535, 0], "admired": [65535, 0], "part": [30186, 35349], "voice": [49105, 16430], "medium": [65535, 0], "key": [32706, 32829], "climbed": [65535, 0], "steadily": [65535, 0], "reached": [65535, 0], "certain": [65535, 0], "point": [65535, 0], "bore": [32706, 32829], "strong": [32706, 32829], "emphasis": [65535, 0], "topmost": [65535, 0], "word": [26925, 38610], "plunged": [65535, 0], "down": [65535, 0], "spring": [52389, 13146], "board": [65535, 0], "shall": [18155, 47380], "car": [65535, 0], "ri": [65535, 0], "ed": [65535, 0], "toe": [65535, 0], "skies": [65535, 0], "flow'ry": [65535, 0], "beds": [65535, 0], "ease": [65535, 0], "whilst": [65535, 0], "others": [10888, 54647], "fight": [65535, 0], "win": [65535, 0], "prize": [65535, 0], "sail": [65535, 0], "thro'": [65535, 0], "bloody": [65535, 0], "seas": [32706, 32829], "regarded": [65535, 0], "wonderful": [65535, 0], "reader": [65535, 0], "at": [30462, 35073], "sociables": [65535, 0], "called": [57316, 8219], "poetry": [65535, 0], "when": [38533, 27002], "ladies": [65535, 0], "would": [34940, 30595], "lift": [65535, 0], "hands": [45002, 20533], "let": [23888, 41647], "fall": [37388, 28147], "helplessly": [65535, 0], "laps": [65535, 0], "eyes": [46760, 18775], "shake": [43635, 21900], "say": [32706, 32829], "words": [32706, 32829], "cannot": [5937, 59598], "express": [65535, 0], "is": [19641, 45894], "too": [28239, 37296], "beautiful": [65535, 0], "this": [22881, 42654], "mortal": [65535, 0], "earth": [13068, 52467], "after": [52389, 13146], "sung": [65535, 0], "rev": [65535, 0], "mr": [45823, 19712], "sprague": [65535, 0], "turned": [65535, 0], "himself": [65535, 0], "into": [54031, 11504], "bulletin": [65535, 0], "off": [53583, 11952], "notices": [65535, 0], "meetings": [65535, 0], "societies": [65535, 0], "things": [43635, 21900], "seemed": [65535, 0], "list": [32706, 32829], "stretch": [65535, 0], "crack": [65535, 0], "doom": [65535, 0], "queer": [65535, 0], "custom": [65535, 0], "still": [30522, 35013], "kept": [40902, 24633], "america": [32706, 32829], "even": [65535, 0], "cities": [65535, 0], "here": [24518, 41017], "age": [39262, 26273], "abundant": [65535, 0], "newspapers": [65535, 0], "often": [26155, 39380], "less": [65535, 0], "justify": [65535, 0], "traditional": [65535, 0], "harder": [65535, 0], "get": [37388, 28147], "rid": [65535, 0], "prayed": [65535, 0], "prayer": [65535, 0], "went": [55574, 9961], "details": [65535, 0], "pleaded": [32706, 32829], "little": [62403, 3132], "churches": [65535, 0], "itself": [65535, 0], "county": [65535, 0], "state": [37388, 28147], "officers": [43635, 21900], "united": [65535, 0], "states": [65535, 0], "congress": [65535, 0], "president": [65535, 0], "government": [65535, 0], "poor": [65535, 0], "sailors": [32706, 32829], "tossed": [65535, 0], "stormy": [65535, 0], "oppressed": [65535, 0], "millions": [65535, 0], "groaning": [65535, 0], "heel": [65535, 0], "european": [65535, 0], "monarchies": [65535, 0], "oriental": [65535, 0], "despotisms": [65535, 0], "such": [26564, 38971], "light": [24518, 41017], "tidings": [65535, 0], "yet": [19366, 46169], "see": [29635, 35900], "nor": [8908, 56627], "ears": [65535, 0], "hear": [58959, 6576], "withal": [65535, 0], "heathen": [65535, 0], "islands": [65535, 0], "sea": [9332, 56203], "closed": [65535, 0], "supplication": [65535, 0], "speak": [54578, 10957], "find": [46760, 18775], "grace": [7257, 58278], "favor": [65535, 0], "seed": [65535, 0], "sown": [65535, 0], "fertile": [65535, 0], "ground": [57316, 8219], "yielding": [65535, 0], "time": [32706, 32829], "grateful": [65535, 0], "harvest": [65535, 0], "amen": [65535, 0], "rustling": [65535, 0], "dresses": [65535, 0], "standing": [65535, 0], "whose": [30186, 35349], "history": [65535, 0], "book": [65535, 0], "relates": [65535, 0], "did": [25585, 39950], "enjoy": [65535, 0], "endured": [65535, 0], "restive": [65535, 0], "tally": [65535, 0], "unconsciously": [65535, 0], "listening": [65535, 0], "knew": [55421, 10114], "old": [50597, 14938], "clergyman's": [65535, 0], "regular": [65535, 0], "route": [65535, 0], "over": [65535, 0], "trifle": [65535, 0], "interlarded": [65535, 0], "ear": [65535, 0], "detected": [65535, 0], "whole": [55421, 10114], "nature": [26155, 39380], "resented": [65535, 0], "considered": [65535, 0], "additions": [65535, 0], "unfair": [65535, 0], "scoundrelly": [65535, 0], "midst": [49105, 16430], "fly": [65535, 0], "lit": [65535, 0], "back": [61549, 3986], "pew": [65535, 0], "front": [65535, 0], "tortured": [65535, 0], "spirit": [58959, 6576], "calmly": [65535, 0], "rubbing": [65535, 0], "its": [65535, 0], "together": [37388, 28147], "embracing": [65535, 0], "head": [50368, 15167], "arms": [65535, 0], "polishing": [65535, 0], "vigorously": [65535, 0], "almost": [40902, 24633], "company": [39262, 26273], "slender": [65535, 0], "thread": [65535, 0], "neck": [65535, 0], "exposed": [65535, 0], "view": [32706, 32829], "scraping": [65535, 0], "wings": [65535, 0], "hind": [65535, 0], "legs": [65535, 0], "smoothing": [65535, 0], "coat": [65535, 0], "tails": [65535, 0], "going": [59557, 5978], "toilet": [65535, 0], "tranquilly": [65535, 0], "perfectly": [65535, 0], "safe": [26155, 39380], "indeed": [65535, 0], "sorely": [65535, 0], "tom's": [65535, 0], "itched": [65535, 0], "grab": [65535, 0], "dare": [54578, 10957], "believed": [65535, 0], "instantly": [65535, 0], "destroyed": [65535, 0], "thing": [50929, 14606], "while": [55155, 10380], "closing": [65535, 0], "sentence": [32706, 32829], "hand": [38490, 27045], "curve": [65535, 0], "steal": [65535, 0], "forward": [54578, 10957], "instant": [46760, 18775], "prisoner": [16338, 49197], "war": [65535, 0], "act": [65535, 0], "made": [34754, 30781], "go": [26690, 38845], "text": [65535, 0], "droned": [65535, 0], "along": [54578, 10957], "monotonously": [65535, 0], "an": [30632, 34903], "argument": [65535, 0], "prosy": [65535, 0], "nod": [65535, 0], "dealt": [65535, 0], "limitless": [65535, 0], "fire": [41647, 23888], "brimstone": [65535, 0], "thinned": [65535, 0], "predestined": [65535, 0], "elect": [65535, 0], "hardly": [65535, 0], "worth": [46760, 18775], "saving": [65535, 0], "counted": [65535, 0], "pages": [65535, 0], "how": [22180, 43355], "seldom": [65535, 0], "else": [13068, 52467], "discourse": [26155, 39380], "however": [65535, 0], "really": [65535, 0], "interested": [65535, 0], "grand": [65535, 0], "moving": [65535, 0], "picture": [43635, 21900], "assembling": [65535, 0], "world's": [65535, 0], "hosts": [32706, 32829], "millennium": [65535, 0], "lion": [65535, 0], "lamb": [65535, 0], "should": [11879, 53656], "lie": [57316, 8219], "child": [65535, 0], "lead": [21790, 43745], "pathos": [65535, 0], "lesson": [65535, 0], "moral": [65535, 0], "spectacle": [65535, 0], "lost": [19609, 45926], "thought": [48391, 17144], "conspicuousness": [65535, 0], "principal": [65535, 0], "character": [65535, 0], "before": [39730, 25805], "looking": [56143, 9392], "nations": [65535, 0], "face": [37993, 27542], "said": [63305, 2230], "wished": [49105, 16430], "tame": [65535, 0], "lapsed": [65535, 0], "suffering": [65535, 0], "again": [65535, 0], "dry": [65535, 0], "resumed": [65535, 0], "bethought": [65535, 0], "treasure": [65535, 0], "got": [62073, 3462], "large": [32706, 32829], "black": [65535, 0], "beetle": [65535, 0], "formidable": [65535, 0], "jaws": [65535, 0], "pinchbug": [65535, 0], "percussion": [65535, 0], "cap": [65535, 0], "box": [65535, 0], "first": [28026, 37509], "take": [33592, 31943], "finger": [40902, 24633], "natural": [65535, 0], "fillip": [65535, 0], "floundering": [65535, 0], "hurt": [57316, 8219], "boy's": [65535, 0], "mouth": [65535, 0], "lay": [43635, 21900], "working": [43635, 21900], "helpless": [65535, 0], "unable": [65535, 0], "turn": [65535, 0], "eyed": [65535, 0], "longed": [65535, 0], "reach": [65535, 0], "uninterested": [65535, 0], "found": [45318, 20217], "relief": [65535, 0], "vagrant": [65535, 0], "poodle": [65535, 0], "dog": [57316, 8219], "idling": [65535, 0], "sad": [13068, 52467], "lazy": [65535, 0], "softness": [65535, 0], "quiet": [28026, 37509], "weary": [65535, 0], "captivity": [65535, 0], "sighing": [65535, 0], "change": [43635, 21900], "spied": [65535, 0], "drooping": [65535, 0], "tail": [65535, 0], "lifted": [65535, 0], "wagged": [65535, 0], "surveyed": [65535, 0], "walked": [65535, 0], "around": [65535, 0], "smelt": [65535, 0], "grew": [65535, 0], "bolder": [65535, 0], "took": [65535, 0], "closer": [65535, 0], "smell": [65535, 0], "lip": [65535, 0], "gingerly": [65535, 0], "snatch": [65535, 0], "just": [65535, 0], "missing": [65535, 0], "another": [40902, 24633], "diversion": [65535, 0], "subsided": [65535, 0], "stomach": [65535, 0], "between": [65535, 0], "paws": [65535, 0], "continued": [65535, 0], "experiments": [65535, 0], "indifferent": [65535, 0], "absent": [65535, 0], "minded": [65535, 0], "nodded": [65535, 0], "chin": [52389, 13146], "descended": [65535, 0], "touched": [65535, 0], "enemy": [65535, 0], "seized": [65535, 0], "sharp": [65535, 0], "yelp": [65535, 0], "flirt": [65535, 0], "poodle's": [65535, 0], "couple": [65535, 0], "yards": [65535, 0], "neighboring": [65535, 0], "spectators": [65535, 0], "shook": [65535, 0], "gentle": [19609, 45926], "inward": [65535, 0], "joy": [65535, 0], "several": [65535, 0], "faces": [65535, 0], "fans": [65535, 0], "handkerchiefs": [65535, 0], "entirely": [65535, 0], "happy": [39262, 26273], "foolish": [26155, 39380], "probably": [65535, 0], "felt": [49105, 16430], "resentment": [65535, 0], "craving": [65535, 0], "revenge": [65535, 0], "wary": [65535, 0], "attack": [65535, 0], "jumping": [65535, 0], "every": [65535, 0], "circle": [65535, 0], "lighting": [65535, 0], "fore": [65535, 0], "within": [20427, 45108], "inch": [65535, 0], "creature": [28026, 37509], "making": [36348, 29187], "snatches": [65535, 0], "teeth": [39262, 26273], "jerking": [65535, 0], "flapped": [65535, 0], "tired": [43635, 21900], "tried": [65535, 0], "amuse": [65535, 0], "ant": [527, 65008], "nose": [49105, 16430], "close": [65535, 0], "floor": [65535, 0], "quickly": [65535, 0], "wearied": [65535, 0], "yawned": [65535, 0], "sighed": [65535, 0], "forgot": [43635, 21900], "wild": [65535, 0], "agony": [65535, 0], "sailing": [65535, 0], "yelps": [65535, 0], "crossed": [65535, 0], "altar": [65535, 0], "flew": [65535, 0], "doors": [65535, 0], "clamored": [65535, 0], "home": [15732, 49803], "anguish": [65535, 0], "progress": [65535, 0], "woolly": [65535, 0], "comet": [65535, 0], "orbit": [65535, 0], "gleam": [65535, 0], "speed": [49105, 16430], "frantic": [65535, 0], "sufferer": [65535, 0], "sheered": [65535, 0], "course": [47613, 17922], "sprang": [65535, 0], "master's": [65535, 0], "lap": [65535, 0], "flung": [65535, 0], "distress": [65535, 0], "died": [65535, 0], "red": [54578, 10957], "faced": [65535, 0], "suffocating": [65535, 0], "suppressed": [65535, 0], "laughter": [65535, 0], "come": [18945, 46590], "dead": [53583, 11952], "standstill": [65535, 0], "lame": [65535, 0], "halting": [65535, 0], "possibility": [65535, 0], "impressiveness": [65535, 0], "end": [17049, 48486], "gravest": [65535, 0], "sentiments": [65535, 0], "constantly": [65535, 0], "received": [65535, 0], "smothered": [65535, 0], "burst": [65535, 0], "unholy": [65535, 0], "mirth": [32706, 32829], "cover": [65535, 0], "remote": [65535, 0], "parson": [65535, 0], "rarely": [65535, 0], "facetious": [65535, 0], "genuine": [65535, 0], "ordeal": [65535, 0], "benediction": [65535, 0], "pronounced": [65535, 0], "sawyer": [65535, 0], "quite": [49105, 16430], "cheerful": [65535, 0], "thinking": [65535, 0], "satisfaction": [16338, 49197], "divine": [65535, 0], "bit": [65535, 0], "variety": [65535, 0], "one": [35515, 30020], "marring": [65535, 0], "willing": [65535, 0], "play": [52389, 13146], "upright": [65535, 0], "carry": [65535, 0], "about half": [65535, 0], "half past": [65535, 0], "past ten": [65535, 0], "ten the": [65535, 0], "the cracked": [65535, 0], "cracked bell": [65535, 0], "bell of": [65535, 0], "of the": [56959, 8576], "the small": [65535, 0], "small church": [65535, 0], "church began": [65535, 0], "began to": [65535, 0], "to ring": [65535, 0], "ring and": [32706, 32829], "and presently": [65535, 0], "presently the": [65535, 0], "the people": [65535, 0], "people began": [65535, 0], "to gather": [65535, 0], "gather for": [65535, 0], "for the": [43635, 21900], "the morning": [65535, 0], "morning sermon": [65535, 0], "sermon the": [65535, 0], "the sunday": [65535, 0], "sunday school": [65535, 0], "school children": [65535, 0], "children distributed": [65535, 0], "distributed themselves": [65535, 0], "themselves about": [65535, 0], "about the": [52389, 13146], "the house": [57316, 8219], "house and": [28026, 37509], "and occupied": [65535, 0], "occupied pews": [65535, 0], "pews with": [65535, 0], "with their": [43635, 21900], "their parents": [32706, 32829], "parents so": [65535, 0], "so as": [65535, 0], "as to": [54578, 10957], "to be": [40511, 25024], "be under": [65535, 0], "under supervision": [65535, 0], "supervision aunt": [65535, 0], "aunt polly": [65535, 0], "polly came": [65535, 0], "came and": [65535, 0], "and tom": [65535, 0], "tom and": [65535, 0], "and sid": [65535, 0], "sid and": [65535, 0], "and mary": [65535, 0], "mary sat": [65535, 0], "sat with": [65535, 0], "with her": [18674, 46861], "her tom": [65535, 0], "tom being": [65535, 0], "being placed": [65535, 0], "placed next": [65535, 0], "next the": [65535, 0], "the aisle": [65535, 0], "aisle in": [65535, 0], "in order": [65535, 0], "order that": [65535, 0], "that he": [46370, 19165], "he might": [65535, 0], "might be": [65535, 0], "be as": [65535, 0], "as far": [65535, 0], "far away": [65535, 0], "away from": [65535, 0], "from the": [30366, 35169], "the open": [65535, 0], "open window": [65535, 0], "window and": [65535, 0], "and the": [52604, 12931], "the seductive": [65535, 0], "seductive outside": [65535, 0], "outside summer": [65535, 0], "summer scenes": [65535, 0], "scenes as": [65535, 0], "as possible": [65535, 0], "possible the": [65535, 0], "the crowd": [65535, 0], "crowd filed": [65535, 0], "filed up": [65535, 0], "up the": [65535, 0], "the aisles": [65535, 0], "aisles the": [65535, 0], "the aged": [65535, 0], "aged and": [65535, 0], "and needy": [65535, 0], "needy postmaster": [65535, 0], "postmaster who": [65535, 0], "who had": [65535, 0], "had seen": [65535, 0], "seen better": [65535, 0], "better days": [65535, 0], "days the": [65535, 0], "the mayor": [65535, 0], "mayor and": [65535, 0], "and his": [53934, 11601], "his wife": [13068, 52467], "wife for": [65535, 0], "for they": [58959, 6576], "they had": [65535, 0], "had a": [58229, 7306], "a mayor": [65535, 0], "mayor there": [65535, 0], "there among": [65535, 0], "among other": [65535, 0], "other unnecessaries": [65535, 0], "unnecessaries the": [65535, 0], "the justice": [65535, 0], "justice of": [65535, 0], "the peace": [65535, 0], "peace the": [65535, 0], "the widow": [65535, 0], "widow douglass": [65535, 0], "douglass fair": [65535, 0], "fair smart": [65535, 0], "smart and": [65535, 0], "and forty": [65535, 0], "forty a": [65535, 0], "a generous": [65535, 0], "generous good": [65535, 0], "good hearted": [65535, 0], "hearted soul": [65535, 0], "soul and": [65535, 0], "and well": [65535, 0], "well to": [65535, 0], "to do": [60055, 5480], "do her": [65535, 0], "her hill": [65535, 0], "hill mansion": [65535, 0], "mansion the": [65535, 0], "the only": [65535, 0], "only palace": [65535, 0], "palace in": [65535, 0], "in the": [40813, 24722], "the town": [65535, 0], "town and": [65535, 0], "the most": [65535, 0], "most hospitable": [65535, 0], "hospitable and": [65535, 0], "and much": [21790, 43745], "much the": [65535, 0], "most lavish": [65535, 0], "lavish in": [65535, 0], "the matter": [52389, 13146], "matter of": [65535, 0], "of festivities": [65535, 0], "festivities that": [65535, 0], "that st": [65535, 0], "st petersburg": [65535, 0], "petersburg could": [65535, 0], "could boast": [65535, 0], "boast the": [65535, 0], "the bent": [65535, 0], "bent and": [65535, 0], "and venerable": [65535, 0], "venerable major": [65535, 0], "major and": [65535, 0], "and mrs": [65535, 0], "mrs ward": [65535, 0], "ward lawyer": [65535, 0], "lawyer riverson": [65535, 0], "riverson the": [65535, 0], "the new": [65535, 0], "new notable": [65535, 0], "notable from": [65535, 0], "from a": [52389, 13146], "a distance": [65535, 0], "distance next": [65535, 0], "the belle": [65535, 0], "belle of": [65535, 0], "the village": [65535, 0], "village followed": [65535, 0], "followed by": [65535, 0], "by a": [43635, 21900], "a troop": [65535, 0], "troop of": [65535, 0], "of lawn": [65535, 0], "lawn clad": [65535, 0], "clad and": [65535, 0], "and ribbon": [65535, 0], "ribbon decked": [65535, 0], "decked young": [65535, 0], "young heart": [65535, 0], "heart breakers": [65535, 0], "breakers then": [65535, 0], "then all": [65535, 0], "all the": [43635, 21900], "the young": [65535, 0], "young clerks": [65535, 0], "clerks in": [65535, 0], "in town": [65535, 0], "town in": [65535, 0], "in a": [48576, 16959], "a body": [65535, 0], "body for": [65535, 0], "had stood": [65535, 0], "stood in": [43635, 21900], "the vestibule": [65535, 0], "vestibule sucking": [65535, 0], "sucking their": [65535, 0], "their cane": [65535, 0], "cane heads": [65535, 0], "heads a": [65535, 0], "a circling": [65535, 0], "circling wall": [65535, 0], "wall of": [65535, 0], "of oiled": [65535, 0], "oiled and": [65535, 0], "and simpering": [65535, 0], "simpering admirers": [65535, 0], "admirers till": [65535, 0], "till the": [65535, 0], "the last": [43635, 21900], "last girl": [65535, 0], "girl had": [65535, 0], "had run": [65535, 0], "run their": [65535, 0], "their gantlet": [65535, 0], "gantlet and": [65535, 0], "and last": [65535, 0], "last of": [65535, 0], "of all": [46760, 18775], "all came": [65535, 0], "came the": [65535, 0], "the model": [65535, 0], "model boy": [65535, 0], "boy willie": [65535, 0], "willie mufferson": [65535, 0], "mufferson taking": [65535, 0], "taking as": [65535, 0], "as heedful": [65535, 0], "heedful care": [65535, 0], "care of": [32706, 32829], "of his": [49602, 15933], "his mother": [65535, 0], "mother as": [65535, 0], "as if": [49105, 16430], "if she": [46760, 18775], "she were": [65535, 0], "were cut": [65535, 0], "cut glass": [65535, 0], "glass he": [65535, 0], "he always": [65535, 0], "always brought": [65535, 0], "brought his": [65535, 0], "mother to": [65535, 0], "to church": [65535, 0], "church and": [65535, 0], "and was": [65535, 0], "was the": [56143, 9392], "the pride": [65535, 0], "pride of": [65535, 0], "the matrons": [65535, 0], "matrons the": [65535, 0], "the boys": [65535, 0], "boys all": [65535, 0], "all hated": [65535, 0], "hated him": [65535, 0], "him he": [57316, 8219], "he was": [60377, 5158], "was so": [65535, 0], "so good": [43635, 21900], "good and": [65535, 0], "and besides": [43635, 21900], "besides he": [65535, 0], "he had": [57565, 7970], "had been": [65535, 0], "been thrown": [65535, 0], "thrown up": [65535, 0], "up to": [65535, 0], "to them": [65535, 0], "them so": [65535, 0], "so much": [43635, 21900], "much his": [65535, 0], "his white": [65535, 0], "white handkerchief": [65535, 0], "handkerchief was": [65535, 0], "was hanging": [65535, 0], "hanging out": [65535, 0], "out of": [46760, 18775], "his pocket": [65535, 0], "pocket behind": [65535, 0], "behind as": [65535, 0], "as usual": [65535, 0], "usual on": [65535, 0], "on sundays": [65535, 0], "sundays accidentally": [65535, 0], "accidentally tom": [65535, 0], "tom had": [65535, 0], "had no": [65535, 0], "no handkerchief": [65535, 0], "handkerchief and": [65535, 0], "and he": [55574, 9961], "he looked": [65535, 0], "looked upon": [65535, 0], "upon boys": [65535, 0], "boys who": [65535, 0], "had as": [65535, 0], "as snobs": [65535, 0], "snobs the": [65535, 0], "the congregation": [65535, 0], "congregation being": [65535, 0], "being fully": [65535, 0], "fully assembled": [65535, 0], "assembled now": [65535, 0], "now the": [43635, 21900], "the bell": [21790, 43745], "bell rang": [65535, 0], "rang once": [65535, 0], "once more": [65535, 0], "more to": [49105, 16430], "to warn": [65535, 0], "warn laggards": [65535, 0], "laggards and": [65535, 0], "and stragglers": [65535, 0], "stragglers and": [65535, 0], "and then": [51157, 14378], "then a": [21790, 43745], "a solemn": [65535, 0], "solemn hush": [65535, 0], "hush fell": [65535, 0], "fell upon": [65535, 0], "upon the": [65535, 0], "the church": [65535, 0], "church which": [65535, 0], "which was": [52389, 13146], "was only": [65535, 0], "only broken": [65535, 0], "broken by": [65535, 0], "by the": [43635, 21900], "the tittering": [65535, 0], "tittering and": [65535, 0], "and whispering": [65535, 0], "whispering of": [65535, 0], "the choir": [65535, 0], "choir in": [65535, 0], "the gallery": [65535, 0], "gallery the": [65535, 0], "choir always": [65535, 0], "always tittered": [65535, 0], "tittered and": [65535, 0], "and whispered": [65535, 0], "whispered all": [65535, 0], "all through": [65535, 0], "through service": [65535, 0], "service there": [65535, 0], "there was": [62795, 2740], "was once": [32706, 32829], "once a": [65535, 0], "a church": [65535, 0], "church choir": [65535, 0], "choir that": [65535, 0], "that was": [54578, 10957], "was not": [50368, 15167], "not ill": [65535, 0], "ill bred": [65535, 0], "bred but": [65535, 0], "but i": [20642, 44893], "i have": [65535, 0], "have forgotten": [65535, 0], "forgotten where": [65535, 0], "where it": [43635, 21900], "it was": [55155, 10380], "was now": [65535, 0], "now it": [65535, 0], "was a": [63480, 2055], "a great": [65535, 0], "great many": [65535, 0], "many years": [65535, 0], "years ago": [65535, 0], "ago and": [65535, 0], "and i": [11879, 53656], "i can": [54578, 10957], "can scarcely": [65535, 0], "scarcely remember": [65535, 0], "remember anything": [65535, 0], "anything about": [65535, 0], "about it": [65535, 0], "it but": [43635, 21900], "i think": [65535, 0], "think it": [65535, 0], "was in": [65535, 0], "in some": [32706, 32829], "some foreign": [65535, 0], "foreign country": [65535, 0], "country the": [65535, 0], "the minister": [65535, 0], "minister gave": [65535, 0], "gave out": [65535, 0], "out the": [65535, 0], "the hymn": [65535, 0], "hymn and": [65535, 0], "and read": [65535, 0], "read it": [21790, 43745], "it through": [65535, 0], "through with": [65535, 0], "with a": [52389, 13146], "a relish": [65535, 0], "relish in": [65535, 0], "a peculiar": [65535, 0], "peculiar style": [65535, 0], "style which": [65535, 0], "was much": [65535, 0], "much admired": [65535, 0], "admired in": [65535, 0], "in that": [46760, 18775], "that part": [65535, 0], "part of": [54578, 10957], "the country": [65535, 0], "country his": [65535, 0], "his voice": [65535, 0], "voice began": [65535, 0], "began on": [65535, 0], "on a": [49105, 16430], "a medium": [65535, 0], "medium key": [65535, 0], "key and": [32706, 32829], "and climbed": [65535, 0], "climbed steadily": [65535, 0], "steadily up": [65535, 0], "up till": [65535, 0], "till it": [32706, 32829], "it reached": [65535, 0], "reached a": [65535, 0], "a certain": [65535, 0], "certain point": [65535, 0], "point where": [65535, 0], "it bore": [65535, 0], "bore with": [65535, 0], "with strong": [65535, 0], "strong emphasis": [65535, 0], "emphasis upon": [65535, 0], "the topmost": [65535, 0], "topmost word": [65535, 0], "word and": [32706, 32829], "then plunged": [65535, 0], "plunged down": [65535, 0], "down as": [65535, 0], "if from": [65535, 0], "a spring": [65535, 0], "spring board": [65535, 0], "board shall": [65535, 0], "shall i": [13068, 52467], "i be": [16338, 49197], "be car": [65535, 0], "car ri": [65535, 0], "ri ed": [65535, 0], "ed toe": [65535, 0], "toe the": [65535, 0], "the skies": [65535, 0], "skies on": [65535, 0], "on flow'ry": [65535, 0], "flow'ry beds": [65535, 0], "beds of": [65535, 0], "of ease": [65535, 0], "ease whilst": [65535, 0], "whilst others": [65535, 0], "others fight": [65535, 0], "fight to": [65535, 0], "to win": [65535, 0], "win the": [65535, 0], "the prize": [65535, 0], "prize and": [65535, 0], "and sail": [65535, 0], "sail thro'": [65535, 0], "thro' bloody": [65535, 0], "bloody seas": [65535, 0], "seas he": [65535, 0], "was regarded": [65535, 0], "regarded as": [65535, 0], "as a": [30186, 35349], "a wonderful": [65535, 0], "wonderful reader": [65535, 0], "reader at": [65535, 0], "at church": [65535, 0], "church sociables": [65535, 0], "sociables he": [65535, 0], "was always": [65535, 0], "always called": [65535, 0], "called upon": [65535, 0], "upon to": [65535, 0], "to read": [65535, 0], "read poetry": [65535, 0], "poetry and": [65535, 0], "and when": [53583, 11952], "when he": [48011, 17524], "was through": [65535, 0], "through the": [46760, 18775], "the ladies": [65535, 0], "ladies would": [65535, 0], "would lift": [65535, 0], "lift up": [65535, 0], "up their": [65535, 0], "their hands": [65535, 0], "hands and": [65535, 0], "and let": [16338, 49197], "let them": [65535, 0], "them fall": [65535, 0], "fall helplessly": [65535, 0], "helplessly in": [65535, 0], "in their": [32706, 32829], "their laps": [65535, 0], "laps and": [65535, 0], "and wall": [65535, 0], "wall their": [65535, 0], "their eyes": [65535, 0], "eyes and": [65535, 0], "and shake": [65535, 0], "shake their": [65535, 0], "their heads": [65535, 0], "heads as": [65535, 0], "as much": [32706, 32829], "much as": [65535, 0], "to say": [32706, 32829], "say words": [65535, 0], "words cannot": [65535, 0], "cannot express": [65535, 0], "express it": [65535, 0], "it it": [65535, 0], "it is": [33836, 31699], "is too": [21790, 43745], "too beautiful": [65535, 0], "beautiful too": [65535, 0], "beautiful for": [65535, 0], "for this": [24518, 41017], "this mortal": [65535, 0], "mortal earth": [65535, 0], "earth after": [65535, 0], "after the": [65535, 0], "hymn had": [65535, 0], "been sung": [65535, 0], "sung the": [65535, 0], "the rev": [65535, 0], "rev mr": [65535, 0], "mr sprague": [65535, 0], "sprague turned": [65535, 0], "turned himself": [65535, 0], "himself into": [65535, 0], "into a": [65535, 0], "a bulletin": [65535, 0], "bulletin board": [65535, 0], "board and": [65535, 0], "read off": [65535, 0], "off notices": [65535, 0], "notices of": [65535, 0], "of meetings": [65535, 0], "meetings and": [65535, 0], "and societies": [65535, 0], "societies and": [65535, 0], "and things": [65535, 0], "things till": [65535, 0], "it seemed": [65535, 0], "seemed that": [65535, 0], "that the": [38169, 27366], "the list": [65535, 0], "list would": [65535, 0], "would stretch": [65535, 0], "stretch out": [65535, 0], "out to": [65535, 0], "to the": [30446, 35089], "the crack": [65535, 0], "crack of": [65535, 0], "of doom": [65535, 0], "doom a": [65535, 0], "a queer": [65535, 0], "queer custom": [65535, 0], "custom which": [65535, 0], "which is": [21790, 43745], "is still": [65535, 0], "still kept": [65535, 0], "kept up": [65535, 0], "up in": [65535, 0], "in america": [65535, 0], "america even": [65535, 0], "even in": [65535, 0], "in cities": [65535, 0], "cities away": [65535, 0], "away here": [65535, 0], "here in": [43635, 21900], "in this": [23349, 42186], "this age": [65535, 0], "age of": [65535, 0], "of abundant": [65535, 0], "abundant newspapers": [65535, 0], "newspapers often": [65535, 0], "often the": [65535, 0], "the less": [65535, 0], "less there": [65535, 0], "there is": [19609, 45926], "is to": [65535, 0], "to justify": [65535, 0], "justify a": [65535, 0], "a traditional": [65535, 0], "traditional custom": [65535, 0], "custom the": [65535, 0], "the harder": [65535, 0], "harder it": [65535, 0], "to get": [43635, 21900], "get rid": [65535, 0], "rid of": [65535, 0], "of it": [53934, 11601], "it and": [54578, 10957], "and now": [32706, 32829], "minister prayed": [65535, 0], "prayed a": [65535, 0], "a good": [65535, 0], "good generous": [65535, 0], "generous prayer": [65535, 0], "prayer it": [65535, 0], "was and": [65535, 0], "and went": [65535, 0], "went into": [65535, 0], "into details": [65535, 0], "details it": [65535, 0], "it pleaded": [65535, 0], "pleaded for": [65535, 0], "the little": [65535, 0], "little children": [65535, 0], "children of": [65535, 0], "church for": [65535, 0], "the other": [40902, 24633], "other churches": [65535, 0], "churches of": [65535, 0], "village for": [65535, 0], "village itself": [65535, 0], "itself for": [65535, 0], "the county": [65535, 0], "county for": [65535, 0], "the state": [65535, 0], "state for": [65535, 0], "state officers": [65535, 0], "officers for": [65535, 0], "the united": [65535, 0], "united states": [65535, 0], "states for": [65535, 0], "the churches": [65535, 0], "for congress": [65535, 0], "congress for": [65535, 0], "the president": [65535, 0], "president for": [65535, 0], "the officers": [65535, 0], "officers of": [65535, 0], "the government": [65535, 0], "government for": [65535, 0], "for poor": [65535, 0], "poor sailors": [65535, 0], "sailors tossed": [65535, 0], "tossed by": [65535, 0], "by stormy": [65535, 0], "stormy seas": [65535, 0], "seas for": [65535, 0], "the oppressed": [65535, 0], "oppressed millions": [65535, 0], "millions groaning": [65535, 0], "groaning under": [65535, 0], "under the": [65535, 0], "the heel": [65535, 0], "heel of": [65535, 0], "of european": [65535, 0], "european monarchies": [65535, 0], "monarchies and": [65535, 0], "and oriental": [65535, 0], "oriental despotisms": [65535, 0], "despotisms for": [65535, 0], "for such": [43635, 21900], "such as": [32706, 32829], "as have": [65535, 0], "have the": [65535, 0], "the light": [65535, 0], "light and": [65535, 0], "the good": [65535, 0], "good tidings": [65535, 0], "tidings and": [65535, 0], "and yet": [24518, 41017], "yet have": [65535, 0], "have not": [65535, 0], "not eyes": [65535, 0], "eyes to": [65535, 0], "to see": [34431, 31104], "see nor": [65535, 0], "nor ears": [65535, 0], "ears to": [65535, 0], "to hear": [65535, 0], "hear withal": [65535, 0], "withal for": [65535, 0], "the heathen": [65535, 0], "heathen in": [65535, 0], "the far": [65535, 0], "far islands": [65535, 0], "islands of": [65535, 0], "the sea": [65535, 0], "sea and": [32706, 32829], "and closed": [65535, 0], "closed with": [65535, 0], "a supplication": [65535, 0], "supplication that": [65535, 0], "the words": [65535, 0], "words he": [65535, 0], "was about": [65535, 0], "about to": [65535, 0], "to speak": [65535, 0], "speak might": [65535, 0], "might find": [65535, 0], "find grace": [65535, 0], "grace and": [32706, 32829], "and favor": [65535, 0], "favor and": [65535, 0], "and be": [32706, 32829], "as seed": [65535, 0], "seed sown": [65535, 0], "sown in": [65535, 0], "in fertile": [65535, 0], "fertile ground": [65535, 0], "ground yielding": [65535, 0], "yielding in": [65535, 0], "in time": [65535, 0], "time a": [65535, 0], "a grateful": [65535, 0], "grateful harvest": [65535, 0], "harvest of": [65535, 0], "of good": [65535, 0], "good amen": [65535, 0], "amen there": [65535, 0], "a rustling": [65535, 0], "rustling of": [65535, 0], "of dresses": [65535, 0], "dresses and": [65535, 0], "the standing": [65535, 0], "standing congregation": [65535, 0], "congregation sat": [65535, 0], "sat down": [65535, 0], "down the": [65535, 0], "the boy": [65535, 0], "boy whose": [65535, 0], "whose history": [65535, 0], "history this": [65535, 0], "this book": [65535, 0], "book relates": [65535, 0], "relates did": [65535, 0], "did not": [43635, 21900], "not enjoy": [65535, 0], "enjoy the": [65535, 0], "the prayer": [65535, 0], "prayer he": [65535, 0], "he only": [65535, 0], "only endured": [65535, 0], "endured it": [65535, 0], "it if": [65535, 0], "if he": [49105, 16430], "he even": [65535, 0], "even did": [65535, 0], "did that": [65535, 0], "that much": [65535, 0], "much he": [65535, 0], "was restive": [65535, 0], "restive all": [65535, 0], "through it": [65535, 0], "it he": [57316, 8219], "he kept": [65535, 0], "kept tally": [65535, 0], "tally of": [65535, 0], "the details": [65535, 0], "details of": [65535, 0], "prayer unconsciously": [65535, 0], "unconsciously for": [65535, 0], "for he": [45823, 19712], "not listening": [65535, 0], "listening but": [65535, 0], "but he": [52389, 13146], "he knew": [65535, 0], "knew the": [65535, 0], "the ground": [56143, 9392], "ground of": [32706, 32829], "of old": [32706, 32829], "old and": [32706, 32829], "the clergyman's": [65535, 0], "clergyman's regular": [65535, 0], "regular route": [65535, 0], "route over": [65535, 0], "over it": [65535, 0], "when a": [65535, 0], "a little": [56143, 9392], "little trifle": [65535, 0], "trifle of": [65535, 0], "of new": [65535, 0], "new matter": [65535, 0], "matter was": [65535, 0], "was interlarded": [65535, 0], "interlarded his": [65535, 0], "his ear": [65535, 0], "ear detected": [65535, 0], "detected it": [65535, 0], "his whole": [65535, 0], "whole nature": [65535, 0], "nature resented": [65535, 0], "resented it": [65535, 0], "he considered": [65535, 0], "considered additions": [65535, 0], "additions unfair": [65535, 0], "unfair and": [65535, 0], "and scoundrelly": [65535, 0], "scoundrelly in": [65535, 0], "the midst": [49105, 16430], "midst of": [65535, 0], "prayer a": [65535, 0], "a fly": [65535, 0], "fly had": [65535, 0], "had lit": [65535, 0], "lit on": [65535, 0], "on the": [50929, 14606], "the back": [65535, 0], "back of": [65535, 0], "the pew": [65535, 0], "pew in": [65535, 0], "in front": [65535, 0], "front of": [65535, 0], "of him": [21790, 43745], "him and": [36803, 28732], "and tortured": [65535, 0], "tortured his": [65535, 0], "his spirit": [65535, 0], "spirit by": [65535, 0], "by calmly": [65535, 0], "calmly rubbing": [65535, 0], "rubbing its": [65535, 0], "its hands": [65535, 0], "hands together": [65535, 0], "together embracing": [65535, 0], "embracing its": [65535, 0], "its head": [65535, 0], "head with": [43635, 21900], "with its": [65535, 0], "its arms": [65535, 0], "arms and": [65535, 0], "and polishing": [65535, 0], "polishing it": [65535, 0], "it so": [49105, 16430], "so vigorously": [65535, 0], "vigorously that": [65535, 0], "that it": [52389, 13146], "seemed to": [65535, 0], "to almost": [65535, 0], "almost part": [65535, 0], "part company": [65535, 0], "company with": [65535, 0], "with the": [46209, 19326], "the body": [65535, 0], "body and": [65535, 0], "the slender": [65535, 0], "slender thread": [65535, 0], "thread of": [65535, 0], "of a": [50929, 14606], "a neck": [65535, 0], "neck was": [65535, 0], "was exposed": [65535, 0], "exposed to": [65535, 0], "to view": [32706, 32829], "view scraping": [65535, 0], "scraping its": [65535, 0], "its wings": [65535, 0], "wings with": [65535, 0], "its hind": [65535, 0], "hind legs": [65535, 0], "legs and": [65535, 0], "and smoothing": [65535, 0], "smoothing them": [65535, 0], "them to": [39262, 26273], "to its": [65535, 0], "its body": [65535, 0], "body as": [65535, 0], "if they": [65535, 0], "been coat": [65535, 0], "coat tails": [65535, 0], "tails going": [65535, 0], "going through": [65535, 0], "through its": [65535, 0], "its whole": [65535, 0], "whole toilet": [65535, 0], "toilet as": [65535, 0], "as tranquilly": [65535, 0], "tranquilly as": [65535, 0], "if it": [43635, 21900], "it knew": [65535, 0], "knew it": [65535, 0], "was perfectly": [65535, 0], "perfectly safe": [65535, 0], "safe as": [65535, 0], "as indeed": [65535, 0], "indeed it": [65535, 0], "was for": [32706, 32829], "for as": [65535, 0], "as sorely": [65535, 0], "sorely as": [65535, 0], "as tom's": [65535, 0], "tom's hands": [65535, 0], "hands itched": [65535, 0], "itched to": [65535, 0], "to grab": [65535, 0], "grab for": [65535, 0], "for it": [40902, 24633], "it they": [65535, 0], "they did": [65535, 0], "not dare": [65535, 0], "dare he": [65535, 0], "he believed": [65535, 0], "believed his": [65535, 0], "his soul": [65535, 0], "soul would": [65535, 0], "would be": [28026, 37509], "be instantly": [65535, 0], "instantly destroyed": [65535, 0], "destroyed if": [65535, 0], "he did": [34634, 30901], "did such": [65535, 0], "such a": [25148, 40387], "a thing": [49105, 16430], "thing while": [65535, 0], "while the": [65535, 0], "prayer was": [65535, 0], "was going": [65535, 0], "going on": [65535, 0], "on but": [65535, 0], "but with": [43635, 21900], "the closing": [65535, 0], "closing sentence": [65535, 0], "sentence his": [65535, 0], "his hand": [57316, 8219], "hand began": [65535, 0], "to curve": [65535, 0], "curve and": [65535, 0], "and steal": [65535, 0], "steal forward": [65535, 0], "forward and": [65535, 0], "the instant": [43635, 21900], "instant the": [65535, 0], "the amen": [65535, 0], "amen was": [65535, 0], "was out": [65535, 0], "the fly": [65535, 0], "fly was": [65535, 0], "a prisoner": [65535, 0], "prisoner of": [65535, 0], "of war": [65535, 0], "war his": [65535, 0], "his aunt": [65535, 0], "aunt detected": [65535, 0], "detected the": [65535, 0], "the act": [65535, 0], "act and": [65535, 0], "and made": [65535, 0], "made him": [65535, 0], "him let": [32706, 32829], "let it": [32706, 32829], "it go": [65535, 0], "go the": [32706, 32829], "out his": [43635, 21900], "his text": [65535, 0], "text and": [65535, 0], "and droned": [65535, 0], "droned along": [65535, 0], "along monotonously": [65535, 0], "monotonously through": [65535, 0], "through an": [65535, 0], "an argument": [65535, 0], "argument that": [65535, 0], "so prosy": [65535, 0], "prosy that": [65535, 0], "that many": [65535, 0], "many a": [43635, 21900], "a head": [32706, 32829], "head by": [65535, 0], "by and": [52389, 13146], "and by": [39262, 26273], "by began": [65535, 0], "to nod": [65535, 0], "nod and": [65535, 0], "yet it": [65535, 0], "was an": [65535, 0], "that dealt": [65535, 0], "dealt in": [65535, 0], "in limitless": [65535, 0], "limitless fire": [65535, 0], "fire and": [32706, 32829], "and brimstone": [65535, 0], "brimstone and": [65535, 0], "and thinned": [65535, 0], "thinned the": [65535, 0], "the predestined": [65535, 0], "predestined elect": [65535, 0], "elect down": [65535, 0], "down to": [65535, 0], "to a": [29066, 36469], "a company": [65535, 0], "company so": [65535, 0], "so small": [65535, 0], "small as": [65535, 0], "be hardly": [65535, 0], "hardly worth": [65535, 0], "worth the": [65535, 0], "the saving": [65535, 0], "saving tom": [65535, 0], "tom counted": [65535, 0], "counted the": [65535, 0], "the pages": [65535, 0], "pages of": [65535, 0], "the sermon": [65535, 0], "sermon after": [65535, 0], "after church": [65535, 0], "church he": [65535, 0], "always knew": [65535, 0], "knew how": [65535, 0], "how many": [65535, 0], "many pages": [65535, 0], "pages there": [65535, 0], "there had": [32706, 32829], "been but": [65535, 0], "he seldom": [65535, 0], "seldom knew": [65535, 0], "knew anything": [65535, 0], "anything else": [65535, 0], "else about": [65535, 0], "the discourse": [65535, 0], "discourse however": [65535, 0], "however this": [65535, 0], "this time": [46209, 19326], "time he": [57316, 8219], "was really": [65535, 0], "really interested": [65535, 0], "interested for": [65535, 0], "for a": [28026, 37509], "little while": [65535, 0], "minister made": [65535, 0], "made a": [65535, 0], "a grand": [65535, 0], "grand and": [65535, 0], "and moving": [65535, 0], "moving picture": [65535, 0], "picture of": [32706, 32829], "the assembling": [65535, 0], "assembling together": [65535, 0], "together of": [65535, 0], "the world's": [65535, 0], "world's hosts": [65535, 0], "hosts at": [65535, 0], "at the": [34754, 30781], "the millennium": [65535, 0], "millennium when": [65535, 0], "when the": [49105, 16430], "the lion": [65535, 0], "lion and": [65535, 0], "the lamb": [65535, 0], "lamb should": [65535, 0], "should lie": [65535, 0], "lie down": [65535, 0], "down together": [65535, 0], "together and": [32706, 32829], "and a": [49105, 16430], "little child": [65535, 0], "child should": [65535, 0], "should lead": [65535, 0], "lead them": [65535, 0], "them but": [32706, 32829], "but the": [60055, 5480], "the pathos": [65535, 0], "pathos the": [65535, 0], "the lesson": [65535, 0], "lesson the": [65535, 0], "the moral": [65535, 0], "moral of": [65535, 0], "the great": [56143, 9392], "great spectacle": [65535, 0], "spectacle were": [65535, 0], "were lost": [65535, 0], "lost upon": [65535, 0], "boy he": [65535, 0], "only thought": [65535, 0], "thought of": [54578, 10957], "the conspicuousness": [65535, 0], "conspicuousness of": [65535, 0], "the principal": [65535, 0], "principal character": [65535, 0], "character before": [65535, 0], "before the": [26155, 39380], "the on": [65535, 0], "on looking": [65535, 0], "looking nations": [65535, 0], "nations his": [65535, 0], "his face": [58229, 7306], "face lit": [65535, 0], "lit with": [65535, 0], "the thought": [65535, 0], "thought and": [65535, 0], "he said": [65535, 0], "said to": [65535, 0], "to himself": [65535, 0], "himself that": [65535, 0], "he wished": [65535, 0], "wished he": [65535, 0], "he could": [65535, 0], "could be": [65535, 0], "be that": [21790, 43745], "that child": [65535, 0], "child if": [65535, 0], "a tame": [65535, 0], "tame lion": [65535, 0], "lion now": [65535, 0], "now he": [65535, 0], "he lapsed": [65535, 0], "lapsed into": [65535, 0], "into suffering": [65535, 0], "suffering again": [65535, 0], "again as": [65535, 0], "as the": [50929, 14606], "the dry": [65535, 0], "dry argument": [65535, 0], "argument was": [65535, 0], "was resumed": [65535, 0], "resumed presently": [65535, 0], "presently he": [65535, 0], "he bethought": [65535, 0], "bethought him": [65535, 0], "him of": [65535, 0], "a treasure": [65535, 0], "treasure he": [65535, 0], "had and": [65535, 0], "and got": [65535, 0], "got it": [65535, 0], "it out": [56143, 9392], "out it": [65535, 0], "a large": [65535, 0], "large black": [65535, 0], "black beetle": [65535, 0], "beetle with": [65535, 0], "with formidable": [65535, 0], "formidable jaws": [65535, 0], "jaws a": [65535, 0], "a pinchbug": [65535, 0], "pinchbug he": [65535, 0], "he called": [65535, 0], "called it": [65535, 0], "a percussion": [65535, 0], "percussion cap": [65535, 0], "cap box": [65535, 0], "box the": [65535, 0], "the first": [65535, 0], "first thing": [65535, 0], "thing the": [65535, 0], "the beetle": [65535, 0], "beetle did": [65535, 0], "did was": [65535, 0], "was to": [65535, 0], "to take": [32706, 32829], "take him": [32706, 32829], "him by": [65535, 0], "the finger": [32706, 32829], "finger a": [65535, 0], "a natural": [65535, 0], "natural fillip": [65535, 0], "fillip followed": [65535, 0], "followed the": [65535, 0], "beetle went": [65535, 0], "went floundering": [65535, 0], "floundering into": [65535, 0], "into the": [52389, 13146], "aisle and": [65535, 0], "and lit": [65535, 0], "on its": [65535, 0], "its back": [65535, 0], "back and": [65535, 0], "the hurt": [65535, 0], "hurt finger": [65535, 0], "finger went": [65535, 0], "the boy's": [65535, 0], "boy's mouth": [65535, 0], "mouth the": [65535, 0], "beetle lay": [65535, 0], "lay there": [65535, 0], "there working": [65535, 0], "working its": [65535, 0], "its helpless": [65535, 0], "helpless legs": [65535, 0], "legs unable": [65535, 0], "unable to": [65535, 0], "to turn": [65535, 0], "turn over": [65535, 0], "over tom": [65535, 0], "tom eyed": [65535, 0], "eyed it": [65535, 0], "and longed": [65535, 0], "longed for": [65535, 0], "but it": [65535, 0], "was safe": [65535, 0], "safe out": [65535, 0], "his reach": [65535, 0], "reach other": [65535, 0], "other people": [65535, 0], "people uninterested": [65535, 0], "uninterested in": [65535, 0], "sermon found": [65535, 0], "found relief": [65535, 0], "relief in": [65535, 0], "beetle and": [65535, 0], "and they": [56143, 9392], "they eyed": [65535, 0], "it too": [43635, 21900], "too presently": [65535, 0], "presently a": [65535, 0], "a vagrant": [65535, 0], "vagrant poodle": [65535, 0], "poodle dog": [65535, 0], "dog came": [65535, 0], "came idling": [65535, 0], "idling along": [65535, 0], "along sad": [65535, 0], "sad at": [65535, 0], "at heart": [65535, 0], "heart lazy": [65535, 0], "lazy with": [65535, 0], "the summer": [65535, 0], "summer softness": [65535, 0], "softness and": [65535, 0], "the quiet": [65535, 0], "quiet weary": [65535, 0], "weary of": [65535, 0], "of captivity": [65535, 0], "captivity sighing": [65535, 0], "sighing for": [65535, 0], "for change": [65535, 0], "change he": [65535, 0], "he spied": [65535, 0], "spied the": [65535, 0], "beetle the": [65535, 0], "the drooping": [65535, 0], "drooping tail": [65535, 0], "tail lifted": [65535, 0], "lifted and": [65535, 0], "and wagged": [65535, 0], "wagged he": [65535, 0], "he surveyed": [65535, 0], "surveyed the": [65535, 0], "prize walked": [65535, 0], "walked around": [65535, 0], "around it": [65535, 0], "it smelt": [65535, 0], "smelt at": [65535, 0], "at it": [65535, 0], "it from": [43635, 21900], "a safe": [65535, 0], "safe distance": [65535, 0], "distance walked": [65535, 0], "it again": [65535, 0], "again grew": [65535, 0], "grew bolder": [65535, 0], "bolder and": [65535, 0], "and took": [65535, 0], "took a": [65535, 0], "a closer": [65535, 0], "closer smell": [65535, 0], "smell then": [65535, 0], "then lifted": [65535, 0], "lifted his": [65535, 0], "his lip": [65535, 0], "lip and": [65535, 0], "a gingerly": [65535, 0], "gingerly snatch": [65535, 0], "snatch at": [65535, 0], "it just": [65535, 0], "just missing": [65535, 0], "missing it": [65535, 0], "it made": [65535, 0], "made another": [65535, 0], "another and": [65535, 0], "and another": [65535, 0], "another began": [65535, 0], "to enjoy": [65535, 0], "the diversion": [65535, 0], "diversion subsided": [65535, 0], "subsided to": [65535, 0], "to his": [51450, 14085], "his stomach": [65535, 0], "stomach with": [65535, 0], "beetle between": [65535, 0], "between his": [65535, 0], "his paws": [65535, 0], "paws and": [65535, 0], "and continued": [65535, 0], "continued his": [65535, 0], "his experiments": [65535, 0], "experiments grew": [65535, 0], "grew weary": [65535, 0], "weary at": [65535, 0], "at last": [65535, 0], "last and": [32706, 32829], "then indifferent": [65535, 0], "indifferent and": [65535, 0], "and absent": [65535, 0], "absent minded": [65535, 0], "minded his": [65535, 0], "his head": [56143, 9392], "head nodded": [65535, 0], "nodded and": [65535, 0], "and little": [65535, 0], "little by": [65535, 0], "by little": [65535, 0], "little his": [65535, 0], "his chin": [65535, 0], "chin descended": [65535, 0], "descended and": [65535, 0], "and touched": [65535, 0], "touched the": [65535, 0], "the enemy": [65535, 0], "enemy who": [65535, 0], "who seized": [65535, 0], "seized it": [65535, 0], "it there": [65535, 0], "a sharp": [65535, 0], "sharp yelp": [65535, 0], "yelp a": [65535, 0], "a flirt": [65535, 0], "flirt of": [65535, 0], "the poodle's": [65535, 0], "poodle's head": [65535, 0], "head and": [43635, 21900], "beetle fell": [65535, 0], "fell a": [65535, 0], "a couple": [65535, 0], "couple of": [65535, 0], "of yards": [65535, 0], "yards away": [65535, 0], "away and": [49105, 16430], "back once": [65535, 0], "more the": [65535, 0], "the neighboring": [65535, 0], "neighboring spectators": [65535, 0], "spectators shook": [65535, 0], "shook with": [65535, 0], "a gentle": [32706, 32829], "gentle inward": [65535, 0], "inward joy": [65535, 0], "joy several": [65535, 0], "several faces": [65535, 0], "faces went": [65535, 0], "went behind": [65535, 0], "behind fans": [65535, 0], "fans and": [65535, 0], "and handkerchiefs": [65535, 0], "handkerchiefs and": [65535, 0], "tom was": [65535, 0], "was entirely": [65535, 0], "entirely happy": [65535, 0], "happy the": [65535, 0], "the dog": [65535, 0], "dog looked": [65535, 0], "looked foolish": [65535, 0], "foolish and": [65535, 0], "and probably": [65535, 0], "probably felt": [65535, 0], "felt so": [65535, 0], "so but": [32706, 32829], "but there": [65535, 0], "was resentment": [65535, 0], "resentment in": [65535, 0], "in his": [39262, 26273], "his heart": [65535, 0], "heart too": [65535, 0], "too and": [43635, 21900], "a craving": [65535, 0], "craving for": [65535, 0], "for revenge": [65535, 0], "revenge so": [65535, 0], "so he": [53210, 12325], "he went": [65535, 0], "went to": [52389, 13146], "and began": [65535, 0], "began a": [65535, 0], "a wary": [65535, 0], "wary attack": [65535, 0], "attack on": [65535, 0], "on it": [65535, 0], "again jumping": [65535, 0], "jumping at": [65535, 0], "from every": [65535, 0], "every point": [65535, 0], "point of": [65535, 0], "a circle": [65535, 0], "circle lighting": [65535, 0], "lighting with": [65535, 0], "with his": [52812, 12723], "his fore": [65535, 0], "fore paws": [65535, 0], "paws within": [65535, 0], "within an": [65535, 0], "an inch": [65535, 0], "inch of": [65535, 0], "the creature": [65535, 0], "creature making": [65535, 0], "making even": [65535, 0], "even closer": [65535, 0], "closer snatches": [65535, 0], "snatches at": [65535, 0], "it with": [43635, 21900], "his teeth": [65535, 0], "teeth and": [65535, 0], "and jerking": [65535, 0], "jerking his": [65535, 0], "head till": [65535, 0], "till his": [65535, 0], "his ears": [65535, 0], "ears flapped": [65535, 0], "flapped again": [65535, 0], "again but": [65535, 0], "he grew": [65535, 0], "grew tired": [65535, 0], "tired once": [65535, 0], "more after": [65535, 0], "after a": [65535, 0], "a while": [65535, 0], "while tried": [65535, 0], "tried to": [65535, 0], "to amuse": [65535, 0], "amuse himself": [65535, 0], "himself with": [65535, 0], "fly but": [65535, 0], "but found": [65535, 0], "found no": [65535, 0], "no relief": [65535, 0], "relief followed": [65535, 0], "followed an": [65535, 0], "an ant": [65535, 0], "ant around": [65535, 0], "around with": [65535, 0], "his nose": [65535, 0], "nose close": [65535, 0], "close to": [65535, 0], "the floor": [65535, 0], "floor and": [65535, 0], "and quickly": [65535, 0], "quickly wearied": [65535, 0], "wearied of": [65535, 0], "of that": [65535, 0], "that yawned": [65535, 0], "yawned sighed": [65535, 0], "sighed forgot": [65535, 0], "forgot the": [65535, 0], "beetle entirely": [65535, 0], "entirely and": [65535, 0], "and sat": [65535, 0], "down on": [65535, 0], "it then": [65535, 0], "then there": [65535, 0], "a wild": [65535, 0], "wild yelp": [65535, 0], "yelp of": [65535, 0], "of agony": [65535, 0], "agony and": [65535, 0], "the poodle": [65535, 0], "poodle went": [65535, 0], "went sailing": [65535, 0], "sailing up": [65535, 0], "aisle the": [65535, 0], "the yelps": [65535, 0], "yelps continued": [65535, 0], "continued and": [65535, 0], "and so": [47613, 17922], "so did": [65535, 0], "did the": [49105, 16430], "dog he": [65535, 0], "he crossed": [65535, 0], "crossed the": [65535, 0], "house in": [65535, 0], "the altar": [65535, 0], "altar he": [65535, 0], "he flew": [65535, 0], "flew down": [65535, 0], "other aisle": [65535, 0], "aisle he": [65535, 0], "crossed before": [65535, 0], "the doors": [65535, 0], "doors he": [65535, 0], "he clamored": [65535, 0], "clamored up": [65535, 0], "the home": [65535, 0], "home stretch": [65535, 0], "stretch his": [65535, 0], "his anguish": [65535, 0], "anguish grew": [65535, 0], "grew with": [65535, 0], "his progress": [65535, 0], "progress till": [65535, 0], "till presently": [65535, 0], "was but": [32706, 32829], "but a": [43635, 21900], "a woolly": [65535, 0], "woolly comet": [65535, 0], "comet moving": [65535, 0], "moving in": [65535, 0], "in its": [65535, 0], "its orbit": [65535, 0], "orbit with": [65535, 0], "the gleam": [65535, 0], "gleam and": [65535, 0], "the speed": [65535, 0], "speed of": [65535, 0], "of light": [32706, 32829], "light at": [65535, 0], "last the": [65535, 0], "the frantic": [65535, 0], "frantic sufferer": [65535, 0], "sufferer sheered": [65535, 0], "sheered from": [65535, 0], "from its": [65535, 0], "its course": [65535, 0], "course and": [32706, 32829], "and sprang": [65535, 0], "sprang into": [65535, 0], "into its": [65535, 0], "its master's": [65535, 0], "master's lap": [65535, 0], "lap he": [65535, 0], "he flung": [65535, 0], "flung it": [65535, 0], "the window": [65535, 0], "the voice": [65535, 0], "voice of": [65535, 0], "of distress": [65535, 0], "distress quickly": [65535, 0], "quickly thinned": [65535, 0], "thinned away": [65535, 0], "and died": [65535, 0], "died in": [65535, 0], "the distance": [65535, 0], "distance by": [65535, 0], "by this": [29728, 35807], "time the": [52389, 13146], "the whole": [54578, 10957], "whole church": [65535, 0], "church was": [65535, 0], "was red": [65535, 0], "red faced": [65535, 0], "faced and": [65535, 0], "and suffocating": [65535, 0], "suffocating with": [65535, 0], "with suppressed": [65535, 0], "suppressed laughter": [65535, 0], "laughter and": [65535, 0], "sermon had": [65535, 0], "had come": [65535, 0], "come to": [16338, 49197], "a dead": [65535, 0], "dead standstill": [65535, 0], "standstill the": [65535, 0], "discourse was": [65535, 0], "presently but": [65535, 0], "it went": [65535, 0], "went lame": [65535, 0], "lame and": [65535, 0], "and halting": [65535, 0], "halting all": [65535, 0], "all possibility": [65535, 0], "possibility of": [65535, 0], "of impressiveness": [65535, 0], "impressiveness being": [65535, 0], "being at": [32706, 32829], "at an": [65535, 0], "an end": [65535, 0], "end for": [65535, 0], "for even": [65535, 0], "even the": [65535, 0], "the gravest": [65535, 0], "gravest sentiments": [65535, 0], "sentiments were": [65535, 0], "were constantly": [65535, 0], "constantly being": [65535, 0], "being received": [65535, 0], "received with": [65535, 0], "a smothered": [65535, 0], "smothered burst": [65535, 0], "burst of": [65535, 0], "of unholy": [65535, 0], "unholy mirth": [65535, 0], "mirth under": [65535, 0], "under cover": [65535, 0], "cover of": [65535, 0], "of some": [65535, 0], "some remote": [65535, 0], "remote pew": [65535, 0], "pew back": [65535, 0], "back as": [65535, 0], "if the": [32706, 32829], "the poor": [65535, 0], "poor parson": [65535, 0], "parson had": [65535, 0], "had said": [65535, 0], "said a": [65535, 0], "a rarely": [65535, 0], "rarely facetious": [65535, 0], "facetious thing": [65535, 0], "thing it": [65535, 0], "a genuine": [65535, 0], "genuine relief": [65535, 0], "relief to": [65535, 0], "whole congregation": [65535, 0], "congregation when": [65535, 0], "the ordeal": [65535, 0], "ordeal was": [65535, 0], "was over": [65535, 0], "over and": [65535, 0], "the benediction": [65535, 0], "benediction pronounced": [65535, 0], "pronounced tom": [65535, 0], "tom sawyer": [65535, 0], "sawyer went": [65535, 0], "went home": [65535, 0], "home quite": [65535, 0], "quite cheerful": [65535, 0], "cheerful thinking": [65535, 0], "thinking to": [65535, 0], "that there": [65535, 0], "was some": [65535, 0], "some satisfaction": [65535, 0], "satisfaction about": [65535, 0], "about divine": [65535, 0], "divine service": [65535, 0], "service when": [65535, 0], "when there": [65535, 0], "a bit": [65535, 0], "bit of": [65535, 0], "of variety": [65535, 0], "variety in": [65535, 0], "in it": [65535, 0], "had but": [65535, 0], "but one": [65535, 0], "one marring": [65535, 0], "marring thought": [65535, 0], "thought he": [65535, 0], "was willing": [65535, 0], "willing that": [65535, 0], "dog should": [65535, 0], "should play": [65535, 0], "play with": [65535, 0], "his pinchbug": [65535, 0], "pinchbug but": [65535, 0], "not think": [65535, 0], "was upright": [65535, 0], "upright in": [65535, 0], "in him": [32706, 32829], "him to": [35227, 30308], "to carry": [65535, 0], "carry it": [65535, 0], "it off": [65535, 0], "about half past": [65535, 0], "half past ten": [65535, 0], "past ten the": [65535, 0], "ten the cracked": [65535, 0], "the cracked bell": [65535, 0], "cracked bell of": [65535, 0], "bell of the": [65535, 0], "of the small": [65535, 0], "the small church": [65535, 0], "small church began": [65535, 0], "church began to": [65535, 0], "began to ring": [65535, 0], "to ring and": [65535, 0], "ring and presently": [65535, 0], "and presently the": [65535, 0], "presently the people": [65535, 0], "the people began": [65535, 0], "people began to": [65535, 0], "began to gather": [65535, 0], "to gather for": [65535, 0], "gather for the": [65535, 0], "for the morning": [65535, 0], "the morning sermon": [65535, 0], "morning sermon the": [65535, 0], "sermon the sunday": [65535, 0], "the sunday school": [65535, 0], "sunday school children": [65535, 0], "school children distributed": [65535, 0], "children distributed themselves": [65535, 0], "distributed themselves about": [65535, 0], "themselves about the": [65535, 0], "about the house": [65535, 0], "the house and": [65535, 0], "house and occupied": [65535, 0], "and occupied pews": [65535, 0], "occupied pews with": [65535, 0], "pews with their": [65535, 0], "with their parents": [65535, 0], "their parents so": [65535, 0], "parents so as": [65535, 0], "so as to": [65535, 0], "as to be": [65535, 0], "to be under": [65535, 0], "be under supervision": [65535, 0], "under supervision aunt": [65535, 0], "supervision aunt polly": [65535, 0], "aunt polly came": [65535, 0], "polly came and": [65535, 0], "came and tom": [65535, 0], "and tom and": [65535, 0], "tom and sid": [65535, 0], "and sid and": [65535, 0], "sid and mary": [65535, 0], "and mary sat": [65535, 0], "mary sat with": [65535, 0], "sat with her": [65535, 0], "with her tom": [65535, 0], "her tom being": [65535, 0], "tom being placed": [65535, 0], "being placed next": [65535, 0], "placed next the": [65535, 0], "next the aisle": [65535, 0], "the aisle in": [65535, 0], "aisle in order": [65535, 0], "in order that": [65535, 0], "order that he": [65535, 0], "that he might": [65535, 0], "he might be": [65535, 0], "might be as": [65535, 0], "be as far": [65535, 0], "as far away": [65535, 0], "far away from": [65535, 0], "away from the": [65535, 0], "from the open": [65535, 0], "the open window": [65535, 0], "open window and": [65535, 0], "window and the": [65535, 0], "and the seductive": [65535, 0], "the seductive outside": [65535, 0], "seductive outside summer": [65535, 0], "outside summer scenes": [65535, 0], "summer scenes as": [65535, 0], "scenes as possible": [65535, 0], "as possible the": [65535, 0], "possible the crowd": [65535, 0], "the crowd filed": [65535, 0], "crowd filed up": [65535, 0], "filed up the": [65535, 0], "up the aisles": [65535, 0], "the aisles the": [65535, 0], "aisles the aged": [65535, 0], "the aged and": [65535, 0], "aged and needy": [65535, 0], "and needy postmaster": [65535, 0], "needy postmaster who": [65535, 0], "postmaster who had": [65535, 0], "who had seen": [65535, 0], "had seen better": [65535, 0], "seen better days": [65535, 0], "better days the": [65535, 0], "days the mayor": [65535, 0], "the mayor and": [65535, 0], "mayor and his": [65535, 0], "and his wife": [65535, 0], "his wife for": [65535, 0], "wife for they": [65535, 0], "for they had": [65535, 0], "they had a": [65535, 0], "had a mayor": [65535, 0], "a mayor there": [65535, 0], "mayor there among": [65535, 0], "there among other": [65535, 0], "among other unnecessaries": [65535, 0], "other unnecessaries the": [65535, 0], "unnecessaries the justice": [65535, 0], "the justice of": [65535, 0], "justice of the": [65535, 0], "of the peace": [65535, 0], "the peace the": [65535, 0], "peace the widow": [65535, 0], "the widow douglass": [65535, 0], "widow douglass fair": [65535, 0], "douglass fair smart": [65535, 0], "fair smart and": [65535, 0], "smart and forty": [65535, 0], "and forty a": [65535, 0], "forty a generous": [65535, 0], "a generous good": [65535, 0], "generous good hearted": [65535, 0], "good hearted soul": [65535, 0], "hearted soul and": [65535, 0], "soul and well": [65535, 0], "and well to": [65535, 0], "well to do": [65535, 0], "to do her": [65535, 0], "do her hill": [65535, 0], "her hill mansion": [65535, 0], "hill mansion the": [65535, 0], "mansion the only": [65535, 0], "the only palace": [65535, 0], "only palace in": [65535, 0], "palace in the": [65535, 0], "in the town": [65535, 0], "the town and": [65535, 0], "town and the": [65535, 0], "and the most": [65535, 0], "the most hospitable": [65535, 0], "most hospitable and": [65535, 0], "hospitable and much": [65535, 0], "and much the": [65535, 0], "much the most": [65535, 0], "the most lavish": [65535, 0], "most lavish in": [65535, 0], "lavish in the": [65535, 0], "in the matter": [65535, 0], "the matter of": [65535, 0], "matter of festivities": [65535, 0], "of festivities that": [65535, 0], "festivities that st": [65535, 0], "that st petersburg": [65535, 0], "st petersburg could": [65535, 0], "petersburg could boast": [65535, 0], "could boast the": [65535, 0], "boast the bent": [65535, 0], "the bent and": [65535, 0], "bent and venerable": [65535, 0], "and venerable major": [65535, 0], "venerable major and": [65535, 0], "major and mrs": [65535, 0], "and mrs ward": [65535, 0], "mrs ward lawyer": [65535, 0], "ward lawyer riverson": [65535, 0], "lawyer riverson the": [65535, 0], "riverson the new": [65535, 0], "the new notable": [65535, 0], "new notable from": [65535, 0], "notable from a": [65535, 0], "from a distance": [65535, 0], "a distance next": [65535, 0], "distance next the": [65535, 0], "next the belle": [65535, 0], "the belle of": [65535, 0], "belle of the": [65535, 0], "of the village": [65535, 0], "the village followed": [65535, 0], "village followed by": [65535, 0], "followed by a": [65535, 0], "by a troop": [65535, 0], "a troop of": [65535, 0], "troop of lawn": [65535, 0], "of lawn clad": [65535, 0], "lawn clad and": [65535, 0], "clad and ribbon": [65535, 0], "and ribbon decked": [65535, 0], "ribbon decked young": [65535, 0], "decked young heart": [65535, 0], "young heart breakers": [65535, 0], "heart breakers then": [65535, 0], "breakers then all": [65535, 0], "then all the": [65535, 0], "all the young": [65535, 0], "the young clerks": [65535, 0], "young clerks in": [65535, 0], "clerks in town": [65535, 0], "in town in": [65535, 0], "town in a": [65535, 0], "in a body": [65535, 0], "a body for": [65535, 0], "body for they": [65535, 0], "they had stood": [65535, 0], "had stood in": [65535, 0], "stood in the": [65535, 0], "in the vestibule": [65535, 0], "the vestibule sucking": [65535, 0], "vestibule sucking their": [65535, 0], "sucking their cane": [65535, 0], "their cane heads": [65535, 0], "cane heads a": [65535, 0], "heads a circling": [65535, 0], "a circling wall": [65535, 0], "circling wall of": [65535, 0], "wall of oiled": [65535, 0], "of oiled and": [65535, 0], "oiled and simpering": [65535, 0], "and simpering admirers": [65535, 0], "simpering admirers till": [65535, 0], "admirers till the": [65535, 0], "till the last": [65535, 0], "the last girl": [65535, 0], "last girl had": [65535, 0], "girl had run": [65535, 0], "had run their": [65535, 0], "run their gantlet": [65535, 0], "their gantlet and": [65535, 0], "gantlet and last": [65535, 0], "and last of": [65535, 0], "last of all": [65535, 0], "of all came": [65535, 0], "all came the": [65535, 0], "came the model": [65535, 0], "the model boy": [65535, 0], "model boy willie": [65535, 0], "boy willie mufferson": [65535, 0], "willie mufferson taking": [65535, 0], "mufferson taking as": [65535, 0], "taking as heedful": [65535, 0], "as heedful care": [65535, 0], "heedful care of": [65535, 0], "care of his": [65535, 0], "of his mother": [65535, 0], "his mother as": [65535, 0], "mother as if": [65535, 0], "as if she": [65535, 0], "if she were": [65535, 0], "she were cut": [65535, 0], "were cut glass": [65535, 0], "cut glass he": [65535, 0], "glass he always": [65535, 0], "he always brought": [65535, 0], "always brought his": [65535, 0], "brought his mother": [65535, 0], "his mother to": [65535, 0], "mother to church": [65535, 0], "to church and": [65535, 0], "church and was": [65535, 0], "and was the": [65535, 0], "was the pride": [65535, 0], "the pride of": [65535, 0], "pride of all": [65535, 0], "of all the": [65535, 0], "all the matrons": [65535, 0], "the matrons the": [65535, 0], "matrons the boys": [65535, 0], "the boys all": [65535, 0], "boys all hated": [65535, 0], "all hated him": [65535, 0], "hated him he": [65535, 0], "him he was": [65535, 0], "he was so": [65535, 0], "was so good": [65535, 0], "so good and": [65535, 0], "good and besides": [65535, 0], "and besides he": [65535, 0], "besides he had": [65535, 0], "he had been": [65535, 0], "had been thrown": [65535, 0], "been thrown up": [65535, 0], "thrown up to": [65535, 0], "up to them": [65535, 0], "to them so": [65535, 0], "them so much": [65535, 0], "so much his": [65535, 0], "much his white": [65535, 0], "his white handkerchief": [65535, 0], "white handkerchief was": [65535, 0], "handkerchief was hanging": [65535, 0], "was hanging out": [65535, 0], "hanging out of": [65535, 0], "out of his": [65535, 0], "of his pocket": [65535, 0], "his pocket behind": [65535, 0], "pocket behind as": [65535, 0], "behind as usual": [65535, 0], "as usual on": [65535, 0], "usual on sundays": [65535, 0], "on sundays accidentally": [65535, 0], "sundays accidentally tom": [65535, 0], "accidentally tom had": [65535, 0], "tom had no": [65535, 0], "had no handkerchief": [65535, 0], "no handkerchief and": [65535, 0], "handkerchief and he": [65535, 0], "and he looked": [65535, 0], "he looked upon": [65535, 0], "looked upon boys": [65535, 0], "upon boys who": [65535, 0], "boys who had": [65535, 0], "who had as": [65535, 0], "had as snobs": [65535, 0], "as snobs the": [65535, 0], "snobs the congregation": [65535, 0], "the congregation being": [65535, 0], "congregation being fully": [65535, 0], "being fully assembled": [65535, 0], "fully assembled now": [65535, 0], "assembled now the": [65535, 0], "now the bell": [65535, 0], "the bell rang": [65535, 0], "bell rang once": [65535, 0], "rang once more": [65535, 0], "once more to": [65535, 0], "more to warn": [65535, 0], "to warn laggards": [65535, 0], "warn laggards and": [65535, 0], "laggards and stragglers": [65535, 0], "and stragglers and": [65535, 0], "stragglers and then": [65535, 0], "and then a": [65535, 0], "then a solemn": [65535, 0], "a solemn hush": [65535, 0], "solemn hush fell": [65535, 0], "hush fell upon": [65535, 0], "fell upon the": [65535, 0], "upon the church": [65535, 0], "the church which": [65535, 0], "church which was": [65535, 0], "which was only": [65535, 0], "was only broken": [65535, 0], "only broken by": [65535, 0], "broken by the": [65535, 0], "by the tittering": [65535, 0], "the tittering and": [65535, 0], "tittering and whispering": [65535, 0], "and whispering of": [65535, 0], "whispering of the": [65535, 0], "of the choir": [65535, 0], "the choir in": [65535, 0], "choir in the": [65535, 0], "in the gallery": [65535, 0], "the gallery the": [65535, 0], "gallery the choir": [65535, 0], "the choir always": [65535, 0], "choir always tittered": [65535, 0], "always tittered and": [65535, 0], "tittered and whispered": [65535, 0], "and whispered all": [65535, 0], "whispered all through": [65535, 0], "all through service": [65535, 0], "through service there": [65535, 0], "service there was": [65535, 0], "there was once": [65535, 0], "was once a": [65535, 0], "once a church": [65535, 0], "a church choir": [65535, 0], "church choir that": [65535, 0], "choir that was": [65535, 0], "that was not": [65535, 0], "was not ill": [65535, 0], "not ill bred": [65535, 0], "ill bred but": [65535, 0], "bred but i": [65535, 0], "but i have": [65535, 0], "i have forgotten": [65535, 0], "have forgotten where": [65535, 0], "forgotten where it": [65535, 0], "where it was": [65535, 0], "it was now": [65535, 0], "was now it": [65535, 0], "now it was": [65535, 0], "it was a": [65535, 0], "was a great": [65535, 0], "a great many": [65535, 0], "great many years": [65535, 0], "many years ago": [65535, 0], "years ago and": [65535, 0], "ago and i": [65535, 0], "and i can": [65535, 0], "i can scarcely": [65535, 0], "can scarcely remember": [65535, 0], "scarcely remember anything": [65535, 0], "remember anything about": [65535, 0], "anything about it": [65535, 0], "about it but": [65535, 0], "it but i": [65535, 0], "but i think": [65535, 0], "i think it": [65535, 0], "think it was": [65535, 0], "it was in": [65535, 0], "was in some": [65535, 0], "in some foreign": [65535, 0], "some foreign country": [65535, 0], "foreign country the": [65535, 0], "country the minister": [65535, 0], "the minister gave": [65535, 0], "minister gave out": [65535, 0], "gave out the": [65535, 0], "out the hymn": [65535, 0], "the hymn and": [65535, 0], "hymn and read": [65535, 0], "and read it": [65535, 0], "read it through": [65535, 0], "it through with": [65535, 0], "through with a": [65535, 0], "with a relish": [65535, 0], "a relish in": [65535, 0], "relish in a": [65535, 0], "in a peculiar": [65535, 0], "a peculiar style": [65535, 0], "peculiar style which": [65535, 0], "style which was": [65535, 0], "which was much": [65535, 0], "was much admired": [65535, 0], "much admired in": [65535, 0], "admired in that": [65535, 0], "in that part": [65535, 0], "that part of": [65535, 0], "part of the": [65535, 0], "of the country": [65535, 0], "the country his": [65535, 0], "country his voice": [65535, 0], "his voice began": [65535, 0], "voice began on": [65535, 0], "began on a": [65535, 0], "on a medium": [65535, 0], "a medium key": [65535, 0], "medium key and": [65535, 0], "key and climbed": [65535, 0], "and climbed steadily": [65535, 0], "climbed steadily up": [65535, 0], "steadily up till": [65535, 0], "up till it": [65535, 0], "till it reached": [65535, 0], "it reached a": [65535, 0], "reached a certain": [65535, 0], "a certain point": [65535, 0], "certain point where": [65535, 0], "point where it": [65535, 0], "where it bore": [65535, 0], "it bore with": [65535, 0], "bore with strong": [65535, 0], "with strong emphasis": [65535, 0], "strong emphasis upon": [65535, 0], "emphasis upon the": [65535, 0], "upon the topmost": [65535, 0], "the topmost word": [65535, 0], "topmost word and": [65535, 0], "word and then": [65535, 0], "and then plunged": [65535, 0], "then plunged down": [65535, 0], "plunged down as": [65535, 0], "down as if": [65535, 0], "as if from": [65535, 0], "if from a": [65535, 0], "from a spring": [65535, 0], "a spring board": [65535, 0], "spring board shall": [65535, 0], "board shall i": [65535, 0], "shall i be": [32706, 32829], "i be car": [65535, 0], "be car ri": [65535, 0], "car ri ed": [65535, 0], "ri ed toe": [65535, 0], "ed toe the": [65535, 0], "toe the skies": [65535, 0], "the skies on": [65535, 0], "skies on flow'ry": [65535, 0], "on flow'ry beds": [65535, 0], "flow'ry beds of": [65535, 0], "beds of ease": [65535, 0], "of ease whilst": [65535, 0], "ease whilst others": [65535, 0], "whilst others fight": [65535, 0], "others fight to": [65535, 0], "fight to win": [65535, 0], "to win the": [65535, 0], "win the prize": [65535, 0], "the prize and": [65535, 0], "prize and sail": [65535, 0], "and sail thro'": [65535, 0], "sail thro' bloody": [65535, 0], "thro' bloody seas": [65535, 0], "bloody seas he": [65535, 0], "seas he was": [65535, 0], "he was regarded": [65535, 0], "was regarded as": [65535, 0], "regarded as a": [65535, 0], "as a wonderful": [65535, 0], "a wonderful reader": [65535, 0], "wonderful reader at": [65535, 0], "reader at church": [65535, 0], "at church sociables": [65535, 0], "church sociables he": [65535, 0], "sociables he was": [65535, 0], "he was always": [65535, 0], "was always called": [65535, 0], "always called upon": [65535, 0], "called upon to": [65535, 0], "upon to read": [65535, 0], "to read poetry": [65535, 0], "read poetry and": [65535, 0], "poetry and when": [65535, 0], "and when he": [49105, 16430], "when he was": [65535, 0], "he was through": [65535, 0], "was through the": [65535, 0], "through the ladies": [65535, 0], "the ladies would": [65535, 0], "ladies would lift": [65535, 0], "would lift up": [65535, 0], "lift up their": [65535, 0], "up their hands": [65535, 0], "their hands and": [65535, 0], "hands and let": [65535, 0], "and let them": [65535, 0], "let them fall": [65535, 0], "them fall helplessly": [65535, 0], "fall helplessly in": [65535, 0], "helplessly in their": [65535, 0], "in their laps": [65535, 0], "their laps and": [65535, 0], "laps and wall": [65535, 0], "and wall their": [65535, 0], "wall their eyes": [65535, 0], "their eyes and": [65535, 0], "eyes and shake": [65535, 0], "and shake their": [65535, 0], "shake their heads": [65535, 0], "their heads as": [65535, 0], "heads as much": [65535, 0], "as much as": [65535, 0], "much as to": [65535, 0], "as to say": [65535, 0], "to say words": [65535, 0], "say words cannot": [65535, 0], "words cannot express": [65535, 0], "cannot express it": [65535, 0], "express it it": [65535, 0], "it it is": [65535, 0], "it is too": [65535, 0], "is too beautiful": [65535, 0], "too beautiful too": [65535, 0], "beautiful too beautiful": [65535, 0], "too beautiful for": [65535, 0], "beautiful for this": [65535, 0], "for this mortal": [65535, 0], "this mortal earth": [65535, 0], "mortal earth after": [65535, 0], "earth after the": [65535, 0], "after the hymn": [65535, 0], "the hymn had": [65535, 0], "hymn had been": [65535, 0], "had been sung": [65535, 0], "been sung the": [65535, 0], "sung the rev": [65535, 0], "the rev mr": [65535, 0], "rev mr sprague": [65535, 0], "mr sprague turned": [65535, 0], "sprague turned himself": [65535, 0], "turned himself into": [65535, 0], "himself into a": [65535, 0], "into a bulletin": [65535, 0], "a bulletin board": [65535, 0], "bulletin board and": [65535, 0], "board and read": [65535, 0], "and read off": [65535, 0], "read off notices": [65535, 0], "off notices of": [65535, 0], "notices of meetings": [65535, 0], "of meetings and": [65535, 0], "meetings and societies": [65535, 0], "and societies and": [65535, 0], "societies and things": [65535, 0], "and things till": [65535, 0], "things till it": [65535, 0], "till it seemed": [65535, 0], "it seemed that": [65535, 0], "seemed that the": [65535, 0], "that the list": [65535, 0], "the list would": [65535, 0], "list would stretch": [65535, 0], "would stretch out": [65535, 0], "stretch out to": [65535, 0], "out to the": [65535, 0], "to the crack": [65535, 0], "the crack of": [65535, 0], "crack of doom": [65535, 0], "of doom a": [65535, 0], "doom a queer": [65535, 0], "a queer custom": [65535, 0], "queer custom which": [65535, 0], "custom which is": [65535, 0], "which is still": [65535, 0], "is still kept": [65535, 0], "still kept up": [65535, 0], "kept up in": [65535, 0], "up in america": [65535, 0], "in america even": [65535, 0], "america even in": [65535, 0], "even in cities": [65535, 0], "in cities away": [65535, 0], "cities away here": [65535, 0], "away here in": [65535, 0], "here in this": [65535, 0], "in this age": [65535, 0], "this age of": [65535, 0], "age of abundant": [65535, 0], "of abundant newspapers": [65535, 0], "abundant newspapers often": [65535, 0], "newspapers often the": [65535, 0], "often the less": [65535, 0], "the less there": [65535, 0], "less there is": [65535, 0], "there is to": [65535, 0], "is to justify": [65535, 0], "to justify a": [65535, 0], "justify a traditional": [65535, 0], "a traditional custom": [65535, 0], "traditional custom the": [65535, 0], "custom the harder": [65535, 0], "the harder it": [65535, 0], "harder it is": [65535, 0], "it is to": [65535, 0], "is to get": [65535, 0], "to get rid": [65535, 0], "get rid of": [65535, 0], "rid of it": [65535, 0], "of it and": [49105, 16430], "it and now": [65535, 0], "and now the": [32706, 32829], "now the minister": [65535, 0], "the minister prayed": [65535, 0], "minister prayed a": [65535, 0], "prayed a good": [65535, 0], "a good generous": [65535, 0], "good generous prayer": [65535, 0], "generous prayer it": [65535, 0], "prayer it was": [65535, 0], "it was and": [65535, 0], "was and went": [65535, 0], "and went into": [65535, 0], "went into details": [65535, 0], "into details it": [65535, 0], "details it pleaded": [65535, 0], "it pleaded for": [65535, 0], "pleaded for the": [65535, 0], "for the church": [65535, 0], "the church and": [65535, 0], "church and the": [65535, 0], "and the little": [65535, 0], "the little children": [65535, 0], "little children of": [65535, 0], "children of the": [65535, 0], "of the church": [65535, 0], "the church for": [65535, 0], "church for the": [65535, 0], "for the other": [65535, 0], "the other churches": [65535, 0], "other churches of": [65535, 0], "churches of the": [65535, 0], "the village for": [65535, 0], "village for the": [65535, 0], "for the village": [65535, 0], "the village itself": [65535, 0], "village itself for": [65535, 0], "itself for the": [65535, 0], "for the county": [65535, 0], "the county for": [65535, 0], "county for the": [65535, 0], "for the state": [65535, 0], "the state for": [65535, 0], "state for the": [65535, 0], "the state officers": [65535, 0], "state officers for": [65535, 0], "officers for the": [65535, 0], "for the united": [65535, 0], "the united states": [65535, 0], "united states for": [65535, 0], "states for the": [65535, 0], "for the churches": [65535, 0], "the churches of": [65535, 0], "of the united": [65535, 0], "states for congress": [65535, 0], "for congress for": [65535, 0], "congress for the": [65535, 0], "for the president": [65535, 0], "the president for": [65535, 0], "president for the": [65535, 0], "for the officers": [65535, 0], "the officers of": [65535, 0], "officers of the": [65535, 0], "of the government": [65535, 0], "the government for": [65535, 0], "government for poor": [65535, 0], "for poor sailors": [65535, 0], "poor sailors tossed": [65535, 0], "sailors tossed by": [65535, 0], "tossed by stormy": [65535, 0], "by stormy seas": [65535, 0], "stormy seas for": [65535, 0], "seas for the": [65535, 0], "for the oppressed": [65535, 0], "the oppressed millions": [65535, 0], "oppressed millions groaning": [65535, 0], "millions groaning under": [65535, 0], "groaning under the": [65535, 0], "under the heel": [65535, 0], "the heel of": [65535, 0], "heel of european": [65535, 0], "of european monarchies": [65535, 0], "european monarchies and": [65535, 0], "monarchies and oriental": [65535, 0], "and oriental despotisms": [65535, 0], "oriental despotisms for": [65535, 0], "despotisms for such": [65535, 0], "for such as": [65535, 0], "such as have": [65535, 0], "as have the": [65535, 0], "have the light": [65535, 0], "the light and": [65535, 0], "light and the": [65535, 0], "and the good": [65535, 0], "the good tidings": [65535, 0], "good tidings and": [65535, 0], "tidings and yet": [65535, 0], "and yet have": [65535, 0], "yet have not": [65535, 0], "have not eyes": [65535, 0], "not eyes to": [65535, 0], "eyes to see": [65535, 0], "to see nor": [65535, 0], "see nor ears": [65535, 0], "nor ears to": [65535, 0], "ears to hear": [65535, 0], "to hear withal": [65535, 0], "hear withal for": [65535, 0], "withal for the": [65535, 0], "for the heathen": [65535, 0], "the heathen in": [65535, 0], "heathen in the": [65535, 0], "in the far": [65535, 0], "the far islands": [65535, 0], "far islands of": [65535, 0], "islands of the": [65535, 0], "of the sea": [65535, 0], "the sea and": [65535, 0], "sea and closed": [65535, 0], "and closed with": [65535, 0], "closed with a": [65535, 0], "with a supplication": [65535, 0], "a supplication that": [65535, 0], "supplication that the": [65535, 0], "that the words": [65535, 0], "the words he": [65535, 0], "words he was": [65535, 0], "he was about": [65535, 0], "was about to": [65535, 0], "about to speak": [65535, 0], "to speak might": [65535, 0], "speak might find": [65535, 0], "might find grace": [65535, 0], "find grace and": [65535, 0], "grace and favor": [65535, 0], "and favor and": [65535, 0], "favor and be": [65535, 0], "and be as": [65535, 0], "be as seed": [65535, 0], "as seed sown": [65535, 0], "seed sown in": [65535, 0], "sown in fertile": [65535, 0], "in fertile ground": [65535, 0], "fertile ground yielding": [65535, 0], "ground yielding in": [65535, 0], "yielding in time": [65535, 0], "in time a": [65535, 0], "time a grateful": [65535, 0], "a grateful harvest": [65535, 0], "grateful harvest of": [65535, 0], "harvest of good": [65535, 0], "of good amen": [65535, 0], "good amen there": [65535, 0], "amen there was": [65535, 0], "there was a": [65535, 0], "was a rustling": [65535, 0], "a rustling of": [65535, 0], "rustling of dresses": [65535, 0], "of dresses and": [65535, 0], "dresses and the": [65535, 0], "and the standing": [65535, 0], "the standing congregation": [65535, 0], "standing congregation sat": [65535, 0], "congregation sat down": [65535, 0], "sat down the": [65535, 0], "down the boy": [65535, 0], "the boy whose": [65535, 0], "boy whose history": [65535, 0], "whose history this": [65535, 0], "history this book": [65535, 0], "this book relates": [65535, 0], "book relates did": [65535, 0], "relates did not": [65535, 0], "did not enjoy": [65535, 0], "not enjoy the": [65535, 0], "enjoy the prayer": [65535, 0], "the prayer he": [65535, 0], "prayer he only": [65535, 0], "he only endured": [65535, 0], "only endured it": [65535, 0], "endured it if": [65535, 0], "it if he": [65535, 0], "if he even": [65535, 0], "he even did": [65535, 0], "even did that": [65535, 0], "did that much": [65535, 0], "that much he": [65535, 0], "much he was": [65535, 0], "he was restive": [65535, 0], "was restive all": [65535, 0], "restive all through": [65535, 0], "all through it": [65535, 0], "through it he": [65535, 0], "it he kept": [65535, 0], "he kept tally": [65535, 0], "kept tally of": [65535, 0], "tally of the": [65535, 0], "of the details": [65535, 0], "the details of": [65535, 0], "details of the": [65535, 0], "of the prayer": [65535, 0], "the prayer unconsciously": [65535, 0], "prayer unconsciously for": [65535, 0], "unconsciously for he": [65535, 0], "for he was": [56143, 9392], "he was not": [52389, 13146], "was not listening": [65535, 0], "not listening but": [65535, 0], "listening but he": [65535, 0], "but he knew": [65535, 0], "he knew the": [65535, 0], "knew the ground": [65535, 0], "the ground of": [32706, 32829], "ground of old": [65535, 0], "of old and": [65535, 0], "old and the": [65535, 0], "and the clergyman's": [65535, 0], "the clergyman's regular": [65535, 0], "clergyman's regular route": [65535, 0], "regular route over": [65535, 0], "route over it": [65535, 0], "over it and": [65535, 0], "it and when": [65535, 0], "and when a": [65535, 0], "when a little": [65535, 0], "a little trifle": [65535, 0], "little trifle of": [65535, 0], "trifle of new": [65535, 0], "of new matter": [65535, 0], "new matter was": [65535, 0], "matter was interlarded": [65535, 0], "was interlarded his": [65535, 0], "interlarded his ear": [65535, 0], "his ear detected": [65535, 0], "ear detected it": [65535, 0], "detected it and": [65535, 0], "it and his": [65535, 0], "and his whole": [65535, 0], "his whole nature": [65535, 0], "whole nature resented": [65535, 0], "nature resented it": [65535, 0], "resented it he": [65535, 0], "it he considered": [65535, 0], "he considered additions": [65535, 0], "considered additions unfair": [65535, 0], "additions unfair and": [65535, 0], "unfair and scoundrelly": [65535, 0], "and scoundrelly in": [65535, 0], "scoundrelly in the": [65535, 0], "in the midst": [49105, 16430], "the midst of": [65535, 0], "midst of the": [65535, 0], "the prayer a": [65535, 0], "prayer a fly": [65535, 0], "a fly had": [65535, 0], "fly had lit": [65535, 0], "had lit on": [65535, 0], "lit on the": [65535, 0], "on the back": [65535, 0], "the back of": [65535, 0], "back of the": [65535, 0], "of the pew": [65535, 0], "the pew in": [65535, 0], "pew in front": [65535, 0], "in front of": [65535, 0], "front of him": [65535, 0], "of him and": [32706, 32829], "him and tortured": [65535, 0], "and tortured his": [65535, 0], "tortured his spirit": [65535, 0], "his spirit by": [65535, 0], "spirit by calmly": [65535, 0], "by calmly rubbing": [65535, 0], "calmly rubbing its": [65535, 0], "rubbing its hands": [65535, 0], "its hands together": [65535, 0], "hands together embracing": [65535, 0], "together embracing its": [65535, 0], "embracing its head": [65535, 0], "its head with": [65535, 0], "head with its": [65535, 0], "with its arms": [65535, 0], "its arms and": [65535, 0], "arms and polishing": [65535, 0], "and polishing it": [65535, 0], "polishing it so": [65535, 0], "it so vigorously": [65535, 0], "so vigorously that": [65535, 0], "vigorously that it": [65535, 0], "that it seemed": [65535, 0], "it seemed to": [65535, 0], "seemed to almost": [65535, 0], "to almost part": [65535, 0], "almost part company": [65535, 0], "part company with": [65535, 0], "company with the": [65535, 0], "with the body": [65535, 0], "the body and": [65535, 0], "body and the": [65535, 0], "and the slender": [65535, 0], "the slender thread": [65535, 0], "slender thread of": [65535, 0], "thread of a": [65535, 0], "of a neck": [65535, 0], "a neck was": [65535, 0], "neck was exposed": [65535, 0], "was exposed to": [65535, 0], "exposed to view": [65535, 0], "to view scraping": [65535, 0], "view scraping its": [65535, 0], "scraping its wings": [65535, 0], "its wings with": [65535, 0], "wings with its": [65535, 0], "with its hind": [65535, 0], "its hind legs": [65535, 0], "hind legs and": [65535, 0], "legs and smoothing": [65535, 0], "and smoothing them": [65535, 0], "smoothing them to": [65535, 0], "them to its": [65535, 0], "to its body": [65535, 0], "its body as": [65535, 0], "body as if": [65535, 0], "as if they": [65535, 0], "if they had": [65535, 0], "they had been": [65535, 0], "had been coat": [65535, 0], "been coat tails": [65535, 0], "coat tails going": [65535, 0], "tails going through": [65535, 0], "going through its": [65535, 0], "through its whole": [65535, 0], "its whole toilet": [65535, 0], "whole toilet as": [65535, 0], "toilet as tranquilly": [65535, 0], "as tranquilly as": [65535, 0], "tranquilly as if": [65535, 0], "as if it": [65535, 0], "if it knew": [65535, 0], "it knew it": [65535, 0], "knew it was": [65535, 0], "it was perfectly": [65535, 0], "was perfectly safe": [65535, 0], "perfectly safe as": [65535, 0], "safe as indeed": [65535, 0], "as indeed it": [65535, 0], "indeed it was": [65535, 0], "it was for": [32706, 32829], "was for as": [65535, 0], "for as sorely": [65535, 0], "as sorely as": [65535, 0], "sorely as tom's": [65535, 0], "as tom's hands": [65535, 0], "tom's hands itched": [65535, 0], "hands itched to": [65535, 0], "itched to grab": [65535, 0], "to grab for": [65535, 0], "grab for it": [65535, 0], "for it they": [65535, 0], "it they did": [65535, 0], "they did not": [65535, 0], "did not dare": [65535, 0], "not dare he": [65535, 0], "dare he believed": [65535, 0], "he believed his": [65535, 0], "believed his soul": [65535, 0], "his soul would": [65535, 0], "soul would be": [65535, 0], "would be instantly": [65535, 0], "be instantly destroyed": [65535, 0], "instantly destroyed if": [65535, 0], "destroyed if he": [65535, 0], "if he did": [65535, 0], "he did such": [65535, 0], "did such a": [65535, 0], "such a thing": [65535, 0], "a thing while": [65535, 0], "thing while the": [65535, 0], "while the prayer": [65535, 0], "the prayer was": [65535, 0], "prayer was going": [65535, 0], "was going on": [65535, 0], "going on but": [65535, 0], "on but with": [65535, 0], "but with the": [65535, 0], "with the closing": [65535, 0], "the closing sentence": [65535, 0], "closing sentence his": [65535, 0], "sentence his hand": [65535, 0], "his hand began": [65535, 0], "hand began to": [65535, 0], "began to curve": [65535, 0], "to curve and": [65535, 0], "curve and steal": [65535, 0], "and steal forward": [65535, 0], "steal forward and": [65535, 0], "forward and the": [65535, 0], "and the instant": [65535, 0], "the instant the": [65535, 0], "instant the amen": [65535, 0], "the amen was": [65535, 0], "amen was out": [65535, 0], "was out the": [65535, 0], "out the fly": [65535, 0], "the fly was": [65535, 0], "fly was a": [65535, 0], "was a prisoner": [65535, 0], "a prisoner of": [65535, 0], "prisoner of war": [65535, 0], "of war his": [65535, 0], "war his aunt": [65535, 0], "his aunt detected": [65535, 0], "aunt detected the": [65535, 0], "detected the act": [65535, 0], "the act and": [65535, 0], "act and made": [65535, 0], "and made him": [65535, 0], "made him let": [65535, 0], "him let it": [65535, 0], "let it go": [65535, 0], "it go the": [65535, 0], "go the minister": [65535, 0], "gave out his": [65535, 0], "out his text": [65535, 0], "his text and": [65535, 0], "text and droned": [65535, 0], "and droned along": [65535, 0], "droned along monotonously": [65535, 0], "along monotonously through": [65535, 0], "monotonously through an": [65535, 0], "through an argument": [65535, 0], "an argument that": [65535, 0], "argument that was": [65535, 0], "that was so": [65535, 0], "was so prosy": [65535, 0], "so prosy that": [65535, 0], "prosy that many": [65535, 0], "that many a": [65535, 0], "many a head": [65535, 0], "a head by": [65535, 0], "head by and": [65535, 0], "by and by": [52389, 13146], "and by began": [65535, 0], "by began to": [65535, 0], "began to nod": [65535, 0], "to nod and": [65535, 0], "nod and yet": [65535, 0], "and yet it": [65535, 0], "yet it was": [65535, 0], "it was an": [65535, 0], "was an argument": [65535, 0], "argument that dealt": [65535, 0], "that dealt in": [65535, 0], "dealt in limitless": [65535, 0], "in limitless fire": [65535, 0], "limitless fire and": [65535, 0], "fire and brimstone": [65535, 0], "and brimstone and": [65535, 0], "brimstone and thinned": [65535, 0], "and thinned the": [65535, 0], "thinned the predestined": [65535, 0], "the predestined elect": [65535, 0], "predestined elect down": [65535, 0], "elect down to": [65535, 0], "down to a": [65535, 0], "to a company": [65535, 0], "a company so": [65535, 0], "company so small": [65535, 0], "so small as": [65535, 0], "small as to": [65535, 0], "to be hardly": [65535, 0], "be hardly worth": [65535, 0], "hardly worth the": [65535, 0], "worth the saving": [65535, 0], "the saving tom": [65535, 0], "saving tom counted": [65535, 0], "tom counted the": [65535, 0], "counted the pages": [65535, 0], "the pages of": [65535, 0], "pages of the": [65535, 0], "of the sermon": [65535, 0], "the sermon after": [65535, 0], "sermon after church": [65535, 0], "after church he": [65535, 0], "church he always": [65535, 0], "he always knew": [65535, 0], "always knew how": [65535, 0], "knew how many": [65535, 0], "how many pages": [65535, 0], "many pages there": [65535, 0], "pages there had": [65535, 0], "there had been": [65535, 0], "had been but": [65535, 0], "been but he": [65535, 0], "but he seldom": [65535, 0], "he seldom knew": [65535, 0], "seldom knew anything": [65535, 0], "knew anything else": [65535, 0], "anything else about": [65535, 0], "else about the": [65535, 0], "about the discourse": [65535, 0], "the discourse however": [65535, 0], "discourse however this": [65535, 0], "however this time": [65535, 0], "this time he": [65535, 0], "time he was": [65535, 0], "he was really": [65535, 0], "was really interested": [65535, 0], "really interested for": [65535, 0], "interested for a": [65535, 0], "for a little": [65535, 0], "a little while": [65535, 0], "little while the": [65535, 0], "while the minister": [65535, 0], "the minister made": [65535, 0], "minister made a": [65535, 0], "made a grand": [65535, 0], "a grand and": [65535, 0], "grand and moving": [65535, 0], "and moving picture": [65535, 0], "moving picture of": [65535, 0], "picture of the": [65535, 0], "of the assembling": [65535, 0], "the assembling together": [65535, 0], "assembling together of": [65535, 0], "together of the": [65535, 0], "of the world's": [65535, 0], "the world's hosts": [65535, 0], "world's hosts at": [65535, 0], "hosts at the": [65535, 0], "at the millennium": [65535, 0], "the millennium when": [65535, 0], "millennium when the": [65535, 0], "when the lion": [65535, 0], "the lion and": [65535, 0], "lion and the": [65535, 0], "and the lamb": [65535, 0], "the lamb should": [65535, 0], "lamb should lie": [65535, 0], "should lie down": [65535, 0], "lie down together": [65535, 0], "down together and": [65535, 0], "together and a": [65535, 0], "and a little": [65535, 0], "a little child": [65535, 0], "little child should": [65535, 0], "child should lead": [65535, 0], "should lead them": [65535, 0], "lead them but": [65535, 0], "them but the": [65535, 0], "but the pathos": [65535, 0], "the pathos the": [65535, 0], "pathos the lesson": [65535, 0], "the lesson the": [65535, 0], "lesson the moral": [65535, 0], "the moral of": [65535, 0], "moral of the": [65535, 0], "of the great": [65535, 0], "the great spectacle": [65535, 0], "great spectacle were": [65535, 0], "spectacle were lost": [65535, 0], "were lost upon": [65535, 0], "lost upon the": [65535, 0], "upon the boy": [65535, 0], "the boy he": [65535, 0], "boy he only": [65535, 0], "he only thought": [65535, 0], "only thought of": [65535, 0], "thought of the": [65535, 0], "of the conspicuousness": [65535, 0], "the conspicuousness of": [65535, 0], "conspicuousness of the": [65535, 0], "of the principal": [65535, 0], "the principal character": [65535, 0], "principal character before": [65535, 0], "character before the": [65535, 0], "before the on": [65535, 0], "the on looking": [65535, 0], "on looking nations": [65535, 0], "looking nations his": [65535, 0], "nations his face": [65535, 0], "his face lit": [65535, 0], "face lit with": [65535, 0], "lit with the": [65535, 0], "with the thought": [65535, 0], "the thought and": [65535, 0], "thought and he": [65535, 0], "and he said": [65535, 0], "he said to": [65535, 0], "said to himself": [65535, 0], "to himself that": [65535, 0], "himself that he": [65535, 0], "that he wished": [65535, 0], "he wished he": [65535, 0], "wished he could": [65535, 0], "he could be": [65535, 0], "could be that": [65535, 0], "be that child": [65535, 0], "that child if": [65535, 0], "child if it": [65535, 0], "if it was": [65535, 0], "was a tame": [65535, 0], "a tame lion": [65535, 0], "tame lion now": [65535, 0], "lion now he": [65535, 0], "now he lapsed": [65535, 0], "he lapsed into": [65535, 0], "lapsed into suffering": [65535, 0], "into suffering again": [65535, 0], "suffering again as": [65535, 0], "again as the": [65535, 0], "as the dry": [65535, 0], "the dry argument": [65535, 0], "dry argument was": [65535, 0], "argument was resumed": [65535, 0], "was resumed presently": [65535, 0], "resumed presently he": [65535, 0], "presently he bethought": [65535, 0], "he bethought him": [65535, 0], "bethought him of": [65535, 0], "him of a": [65535, 0], "of a treasure": [65535, 0], "a treasure he": [65535, 0], "treasure he had": [65535, 0], "he had and": [65535, 0], "had and got": [65535, 0], "and got it": [65535, 0], "got it out": [65535, 0], "it out it": [65535, 0], "out it was": [65535, 0], "was a large": [65535, 0], "a large black": [65535, 0], "large black beetle": [65535, 0], "black beetle with": [65535, 0], "beetle with formidable": [65535, 0], "with formidable jaws": [65535, 0], "formidable jaws a": [65535, 0], "jaws a pinchbug": [65535, 0], "a pinchbug he": [65535, 0], "pinchbug he called": [65535, 0], "he called it": [65535, 0], "called it it": [65535, 0], "it it was": [65535, 0], "was in a": [65535, 0], "in a percussion": [65535, 0], "a percussion cap": [65535, 0], "percussion cap box": [65535, 0], "cap box the": [65535, 0], "box the first": [65535, 0], "the first thing": [65535, 0], "first thing the": [65535, 0], "thing the beetle": [65535, 0], "the beetle did": [65535, 0], "beetle did was": [65535, 0], "did was to": [65535, 0], "was to take": [65535, 0], "to take him": [65535, 0], "take him by": [65535, 0], "him by the": [65535, 0], "by the finger": [65535, 0], "the finger a": [65535, 0], "finger a natural": [65535, 0], "a natural fillip": [65535, 0], "natural fillip followed": [65535, 0], "fillip followed the": [65535, 0], "followed the beetle": [65535, 0], "the beetle went": [65535, 0], "beetle went floundering": [65535, 0], "went floundering into": [65535, 0], "floundering into the": [65535, 0], "into the aisle": [65535, 0], "the aisle and": [65535, 0], "aisle and lit": [65535, 0], "and lit on": [65535, 0], "lit on its": [65535, 0], "on its back": [65535, 0], "its back and": [65535, 0], "back and the": [65535, 0], "and the hurt": [65535, 0], "the hurt finger": [65535, 0], "hurt finger went": [65535, 0], "finger went into": [65535, 0], "went into the": [65535, 0], "into the boy's": [65535, 0], "the boy's mouth": [65535, 0], "boy's mouth the": [65535, 0], "mouth the beetle": [65535, 0], "the beetle lay": [65535, 0], "beetle lay there": [65535, 0], "lay there working": [65535, 0], "there working its": [65535, 0], "working its helpless": [65535, 0], "its helpless legs": [65535, 0], "helpless legs unable": [65535, 0], "legs unable to": [65535, 0], "unable to turn": [65535, 0], "to turn over": [65535, 0], "turn over tom": [65535, 0], "over tom eyed": [65535, 0], "tom eyed it": [65535, 0], "eyed it and": [65535, 0], "it and longed": [65535, 0], "and longed for": [65535, 0], "longed for it": [65535, 0], "for it but": [65535, 0], "it but it": [65535, 0], "but it was": [65535, 0], "it was safe": [65535, 0], "was safe out": [65535, 0], "safe out of": [65535, 0], "of his reach": [65535, 0], "his reach other": [65535, 0], "reach other people": [65535, 0], "other people uninterested": [65535, 0], "people uninterested in": [65535, 0], "uninterested in the": [65535, 0], "in the sermon": [65535, 0], "the sermon found": [65535, 0], "sermon found relief": [65535, 0], "found relief in": [65535, 0], "relief in the": [65535, 0], "in the beetle": [65535, 0], "the beetle and": [65535, 0], "beetle and they": [65535, 0], "and they eyed": [65535, 0], "they eyed it": [65535, 0], "eyed it too": [65535, 0], "it too presently": [65535, 0], "too presently a": [65535, 0], "presently a vagrant": [65535, 0], "a vagrant poodle": [65535, 0], "vagrant poodle dog": [65535, 0], "poodle dog came": [65535, 0], "dog came idling": [65535, 0], "came idling along": [65535, 0], "idling along sad": [65535, 0], "along sad at": [65535, 0], "sad at heart": [65535, 0], "at heart lazy": [65535, 0], "heart lazy with": [65535, 0], "lazy with the": [65535, 0], "with the summer": [65535, 0], "the summer softness": [65535, 0], "summer softness and": [65535, 0], "softness and the": [65535, 0], "and the quiet": [65535, 0], "the quiet weary": [65535, 0], "quiet weary of": [65535, 0], "weary of captivity": [65535, 0], "of captivity sighing": [65535, 0], "captivity sighing for": [65535, 0], "sighing for change": [65535, 0], "for change he": [65535, 0], "change he spied": [65535, 0], "he spied the": [65535, 0], "spied the beetle": [65535, 0], "the beetle the": [65535, 0], "beetle the drooping": [65535, 0], "the drooping tail": [65535, 0], "drooping tail lifted": [65535, 0], "tail lifted and": [65535, 0], "lifted and wagged": [65535, 0], "and wagged he": [65535, 0], "wagged he surveyed": [65535, 0], "he surveyed the": [65535, 0], "surveyed the prize": [65535, 0], "the prize walked": [65535, 0], "prize walked around": [65535, 0], "walked around it": [65535, 0], "around it smelt": [65535, 0], "it smelt at": [65535, 0], "smelt at it": [65535, 0], "at it from": [65535, 0], "it from a": [65535, 0], "from a safe": [65535, 0], "a safe distance": [65535, 0], "safe distance walked": [65535, 0], "distance walked around": [65535, 0], "around it again": [65535, 0], "it again grew": [65535, 0], "again grew bolder": [65535, 0], "grew bolder and": [65535, 0], "bolder and took": [65535, 0], "and took a": [65535, 0], "took a closer": [65535, 0], "a closer smell": [65535, 0], "closer smell then": [65535, 0], "smell then lifted": [65535, 0], "then lifted his": [65535, 0], "lifted his lip": [65535, 0], "his lip and": [65535, 0], "lip and made": [65535, 0], "and made a": [65535, 0], "made a gingerly": [65535, 0], "a gingerly snatch": [65535, 0], "gingerly snatch at": [65535, 0], "snatch at it": [65535, 0], "at it just": [65535, 0], "it just missing": [65535, 0], "just missing it": [65535, 0], "missing it made": [65535, 0], "it made another": [65535, 0], "made another and": [65535, 0], "another and another": [65535, 0], "and another began": [65535, 0], "another began to": [65535, 0], "began to enjoy": [65535, 0], "to enjoy the": [65535, 0], "enjoy the diversion": [65535, 0], "the diversion subsided": [65535, 0], "diversion subsided to": [65535, 0], "subsided to his": [65535, 0], "to his stomach": [65535, 0], "his stomach with": [65535, 0], "stomach with the": [65535, 0], "with the beetle": [65535, 0], "the beetle between": [65535, 0], "beetle between his": [65535, 0], "between his paws": [65535, 0], "his paws and": [65535, 0], "paws and continued": [65535, 0], "and continued his": [65535, 0], "continued his experiments": [65535, 0], "his experiments grew": [65535, 0], "experiments grew weary": [65535, 0], "grew weary at": [65535, 0], "weary at last": [65535, 0], "at last and": [65535, 0], "last and then": [65535, 0], "and then indifferent": [65535, 0], "then indifferent and": [65535, 0], "indifferent and absent": [65535, 0], "and absent minded": [65535, 0], "absent minded his": [65535, 0], "minded his head": [65535, 0], "his head nodded": [65535, 0], "head nodded and": [65535, 0], "nodded and little": [65535, 0], "and little by": [65535, 0], "little by little": [65535, 0], "by little his": [65535, 0], "little his chin": [65535, 0], "his chin descended": [65535, 0], "chin descended and": [65535, 0], "descended and touched": [65535, 0], "and touched the": [65535, 0], "touched the enemy": [65535, 0], "the enemy who": [65535, 0], "enemy who seized": [65535, 0], "who seized it": [65535, 0], "seized it there": [65535, 0], "it there was": [65535, 0], "was a sharp": [65535, 0], "a sharp yelp": [65535, 0], "sharp yelp a": [65535, 0], "yelp a flirt": [65535, 0], "a flirt of": [65535, 0], "flirt of the": [65535, 0], "of the poodle's": [65535, 0], "the poodle's head": [65535, 0], "poodle's head and": [65535, 0], "head and the": [65535, 0], "and the beetle": [65535, 0], "the beetle fell": [65535, 0], "beetle fell a": [65535, 0], "fell a couple": [65535, 0], "a couple of": [65535, 0], "couple of yards": [65535, 0], "of yards away": [65535, 0], "yards away and": [65535, 0], "away and lit": [65535, 0], "its back once": [65535, 0], "back once more": [65535, 0], "once more the": [65535, 0], "more the neighboring": [65535, 0], "the neighboring spectators": [65535, 0], "neighboring spectators shook": [65535, 0], "spectators shook with": [65535, 0], "shook with a": [65535, 0], "with a gentle": [65535, 0], "a gentle inward": [65535, 0], "gentle inward joy": [65535, 0], "inward joy several": [65535, 0], "joy several faces": [65535, 0], "several faces went": [65535, 0], "faces went behind": [65535, 0], "went behind fans": [65535, 0], "behind fans and": [65535, 0], "fans and handkerchiefs": [65535, 0], "and handkerchiefs and": [65535, 0], "handkerchiefs and tom": [65535, 0], "and tom was": [65535, 0], "tom was entirely": [65535, 0], "was entirely happy": [65535, 0], "entirely happy the": [65535, 0], "happy the dog": [65535, 0], "the dog looked": [65535, 0], "dog looked foolish": [65535, 0], "looked foolish and": [65535, 0], "foolish and probably": [65535, 0], "and probably felt": [65535, 0], "probably felt so": [65535, 0], "felt so but": [65535, 0], "so but there": [65535, 0], "but there was": [65535, 0], "there was resentment": [65535, 0], "was resentment in": [65535, 0], "resentment in his": [65535, 0], "in his heart": [65535, 0], "his heart too": [65535, 0], "heart too and": [65535, 0], "too and a": [65535, 0], "and a craving": [65535, 0], "a craving for": [65535, 0], "craving for revenge": [65535, 0], "for revenge so": [65535, 0], "revenge so he": [65535, 0], "so he went": [65535, 0], "he went to": [65535, 0], "went to the": [65535, 0], "to the beetle": [65535, 0], "beetle and began": [65535, 0], "and began a": [65535, 0], "began a wary": [65535, 0], "a wary attack": [65535, 0], "wary attack on": [65535, 0], "attack on it": [65535, 0], "on it again": [65535, 0], "it again jumping": [65535, 0], "again jumping at": [65535, 0], "jumping at it": [65535, 0], "it from every": [65535, 0], "from every point": [65535, 0], "every point of": [65535, 0], "point of a": [65535, 0], "of a circle": [65535, 0], "a circle lighting": [65535, 0], "circle lighting with": [65535, 0], "lighting with his": [65535, 0], "with his fore": [65535, 0], "his fore paws": [65535, 0], "fore paws within": [65535, 0], "paws within an": [65535, 0], "within an inch": [65535, 0], "an inch of": [65535, 0], "inch of the": [65535, 0], "of the creature": [65535, 0], "the creature making": [65535, 0], "creature making even": [65535, 0], "making even closer": [65535, 0], "even closer snatches": [65535, 0], "closer snatches at": [65535, 0], "snatches at it": [65535, 0], "at it with": [65535, 0], "it with his": [65535, 0], "with his teeth": [65535, 0], "his teeth and": [65535, 0], "teeth and jerking": [65535, 0], "and jerking his": [65535, 0], "jerking his head": [65535, 0], "his head till": [65535, 0], "head till his": [65535, 0], "till his ears": [65535, 0], "his ears flapped": [65535, 0], "ears flapped again": [65535, 0], "flapped again but": [65535, 0], "again but he": [65535, 0], "but he grew": [65535, 0], "he grew tired": [65535, 0], "grew tired once": [65535, 0], "tired once more": [65535, 0], "once more after": [65535, 0], "more after a": [65535, 0], "after a while": [65535, 0], "a while tried": [65535, 0], "while tried to": [65535, 0], "tried to amuse": [65535, 0], "to amuse himself": [65535, 0], "amuse himself with": [65535, 0], "himself with a": [65535, 0], "with a fly": [65535, 0], "a fly but": [65535, 0], "fly but found": [65535, 0], "but found no": [65535, 0], "found no relief": [65535, 0], "no relief followed": [65535, 0], "relief followed an": [65535, 0], "followed an ant": [65535, 0], "an ant around": [65535, 0], "ant around with": [65535, 0], "around with his": [65535, 0], "with his nose": [65535, 0], "his nose close": [65535, 0], "nose close to": [65535, 0], "close to the": [65535, 0], "to the floor": [65535, 0], "the floor and": [65535, 0], "floor and quickly": [65535, 0], "and quickly wearied": [65535, 0], "quickly wearied of": [65535, 0], "wearied of that": [65535, 0], "of that yawned": [65535, 0], "that yawned sighed": [65535, 0], "yawned sighed forgot": [65535, 0], "sighed forgot the": [65535, 0], "forgot the beetle": [65535, 0], "the beetle entirely": [65535, 0], "beetle entirely and": [65535, 0], "entirely and sat": [65535, 0], "and sat down": [65535, 0], "sat down on": [65535, 0], "down on it": [65535, 0], "on it then": [65535, 0], "it then there": [65535, 0], "then there was": [65535, 0], "was a wild": [65535, 0], "a wild yelp": [65535, 0], "wild yelp of": [65535, 0], "yelp of agony": [65535, 0], "of agony and": [65535, 0], "agony and the": [65535, 0], "and the poodle": [65535, 0], "the poodle went": [65535, 0], "poodle went sailing": [65535, 0], "went sailing up": [65535, 0], "sailing up the": [65535, 0], "up the aisle": [65535, 0], "the aisle the": [65535, 0], "aisle the yelps": [65535, 0], "the yelps continued": [65535, 0], "yelps continued and": [65535, 0], "continued and so": [65535, 0], "and so did": [65535, 0], "so did the": [65535, 0], "did the dog": [65535, 0], "the dog he": [65535, 0], "dog he crossed": [65535, 0], "he crossed the": [65535, 0], "crossed the house": [65535, 0], "the house in": [65535, 0], "house in front": [65535, 0], "front of the": [65535, 0], "of the altar": [65535, 0], "the altar he": [65535, 0], "altar he flew": [65535, 0], "he flew down": [65535, 0], "flew down the": [65535, 0], "down the other": [65535, 0], "the other aisle": [65535, 0], "other aisle he": [65535, 0], "aisle he crossed": [65535, 0], "he crossed before": [65535, 0], "crossed before the": [65535, 0], "before the doors": [65535, 0], "the doors he": [65535, 0], "doors he clamored": [65535, 0], "he clamored up": [65535, 0], "clamored up the": [65535, 0], "up the home": [65535, 0], "the home stretch": [65535, 0], "home stretch his": [65535, 0], "stretch his anguish": [65535, 0], "his anguish grew": [65535, 0], "anguish grew with": [65535, 0], "grew with his": [65535, 0], "with his progress": [65535, 0], "his progress till": [65535, 0], "progress till presently": [65535, 0], "till presently he": [65535, 0], "presently he was": [65535, 0], "he was but": [32706, 32829], "was but a": [65535, 0], "but a woolly": [65535, 0], "a woolly comet": [65535, 0], "woolly comet moving": [65535, 0], "comet moving in": [65535, 0], "moving in its": [65535, 0], "in its orbit": [65535, 0], "its orbit with": [65535, 0], "orbit with the": [65535, 0], "with the gleam": [65535, 0], "the gleam and": [65535, 0], "gleam and the": [65535, 0], "and the speed": [65535, 0], "the speed of": [65535, 0], "speed of light": [65535, 0], "of light at": [65535, 0], "light at last": [65535, 0], "at last the": [65535, 0], "last the frantic": [65535, 0], "the frantic sufferer": [65535, 0], "frantic sufferer sheered": [65535, 0], "sufferer sheered from": [65535, 0], "sheered from its": [65535, 0], "from its course": [65535, 0], "its course and": [65535, 0], "course and sprang": [65535, 0], "and sprang into": [65535, 0], "sprang into its": [65535, 0], "into its master's": [65535, 0], "its master's lap": [65535, 0], "master's lap he": [65535, 0], "lap he flung": [65535, 0], "he flung it": [65535, 0], "flung it out": [65535, 0], "it out of": [65535, 0], "out of the": [65535, 0], "of the window": [65535, 0], "the window and": [65535, 0], "and the voice": [65535, 0], "the voice of": [65535, 0], "voice of distress": [65535, 0], "of distress quickly": [65535, 0], "distress quickly thinned": [65535, 0], "quickly thinned away": [65535, 0], "thinned away and": [65535, 0], "away and died": [65535, 0], "and died in": [65535, 0], "died in the": [65535, 0], "in the distance": [65535, 0], "the distance by": [65535, 0], "distance by this": [65535, 0], "by this time": [65535, 0], "this time the": [43635, 21900], "time the whole": [65535, 0], "the whole church": [65535, 0], "whole church was": [65535, 0], "church was red": [65535, 0], "was red faced": [65535, 0], "red faced and": [65535, 0], "faced and suffocating": [65535, 0], "and suffocating with": [65535, 0], "suffocating with suppressed": [65535, 0], "with suppressed laughter": [65535, 0], "suppressed laughter and": [65535, 0], "laughter and the": [65535, 0], "and the sermon": [65535, 0], "the sermon had": [65535, 0], "sermon had come": [65535, 0], "had come to": [65535, 0], "come to a": [65535, 0], "to a dead": [65535, 0], "a dead standstill": [65535, 0], "dead standstill the": [65535, 0], "standstill the discourse": [65535, 0], "the discourse was": [65535, 0], "discourse was resumed": [65535, 0], "resumed presently but": [65535, 0], "presently but it": [65535, 0], "but it went": [65535, 0], "it went lame": [65535, 0], "went lame and": [65535, 0], "lame and halting": [65535, 0], "and halting all": [65535, 0], "halting all possibility": [65535, 0], "all possibility of": [65535, 0], "possibility of impressiveness": [65535, 0], "of impressiveness being": [65535, 0], "impressiveness being at": [65535, 0], "being at an": [65535, 0], "at an end": [65535, 0], "an end for": [65535, 0], "end for even": [65535, 0], "for even the": [65535, 0], "even the gravest": [65535, 0], "the gravest sentiments": [65535, 0], "gravest sentiments were": [65535, 0], "sentiments were constantly": [65535, 0], "were constantly being": [65535, 0], "constantly being received": [65535, 0], "being received with": [65535, 0], "received with a": [65535, 0], "with a smothered": [65535, 0], "a smothered burst": [65535, 0], "smothered burst of": [65535, 0], "burst of unholy": [65535, 0], "of unholy mirth": [65535, 0], "unholy mirth under": [65535, 0], "mirth under cover": [65535, 0], "under cover of": [65535, 0], "cover of some": [65535, 0], "of some remote": [65535, 0], "some remote pew": [65535, 0], "remote pew back": [65535, 0], "pew back as": [65535, 0], "back as if": [65535, 0], "as if the": [65535, 0], "if the poor": [65535, 0], "the poor parson": [65535, 0], "poor parson had": [65535, 0], "parson had said": [65535, 0], "had said a": [65535, 0], "said a rarely": [65535, 0], "a rarely facetious": [65535, 0], "rarely facetious thing": [65535, 0], "facetious thing it": [65535, 0], "thing it was": [65535, 0], "was a genuine": [65535, 0], "a genuine relief": [65535, 0], "genuine relief to": [65535, 0], "relief to the": [65535, 0], "to the whole": [65535, 0], "the whole congregation": [65535, 0], "whole congregation when": [65535, 0], "congregation when the": [65535, 0], "when the ordeal": [65535, 0], "the ordeal was": [65535, 0], "ordeal was over": [65535, 0], "was over and": [65535, 0], "over and the": [65535, 0], "and the benediction": [65535, 0], "the benediction pronounced": [65535, 0], "benediction pronounced tom": [65535, 0], "pronounced tom sawyer": [65535, 0], "tom sawyer went": [65535, 0], "sawyer went home": [65535, 0], "went home quite": [65535, 0], "home quite cheerful": [65535, 0], "quite cheerful thinking": [65535, 0], "cheerful thinking to": [65535, 0], "thinking to himself": [65535, 0], "himself that there": [65535, 0], "that there was": [65535, 0], "there was some": [65535, 0], "was some satisfaction": [65535, 0], "some satisfaction about": [65535, 0], "satisfaction about divine": [65535, 0], "about divine service": [65535, 0], "divine service when": [65535, 0], "service when there": [65535, 0], "when there was": [65535, 0], "was a bit": [65535, 0], "a bit of": [65535, 0], "bit of variety": [65535, 0], "of variety in": [65535, 0], "variety in it": [65535, 0], "in it he": [65535, 0], "it he had": [65535, 0], "he had but": [65535, 0], "had but one": [65535, 0], "but one marring": [65535, 0], "one marring thought": [65535, 0], "marring thought he": [65535, 0], "thought he was": [65535, 0], "he was willing": [65535, 0], "was willing that": [65535, 0], "willing that the": [65535, 0], "that the dog": [65535, 0], "the dog should": [65535, 0], "dog should play": [65535, 0], "should play with": [65535, 0], "play with his": [65535, 0], "with his pinchbug": [65535, 0], "his pinchbug but": [65535, 0], "pinchbug but he": [65535, 0], "but he did": [65535, 0], "he did not": [65535, 0], "did not think": [65535, 0], "not think it": [65535, 0], "it was upright": [65535, 0], "was upright in": [65535, 0], "upright in him": [65535, 0], "in him to": [65535, 0], "him to carry": [65535, 0], "to carry it": [65535, 0], "carry it off": [65535, 0], "about half past ten": [65535, 0], "half past ten the": [65535, 0], "past ten the cracked": [65535, 0], "ten the cracked bell": [65535, 0], "the cracked bell of": [65535, 0], "cracked bell of the": [65535, 0], "bell of the small": [65535, 0], "of the small church": [65535, 0], "the small church began": [65535, 0], "small church began to": [65535, 0], "church began to ring": [65535, 0], "began to ring and": [65535, 0], "to ring and presently": [65535, 0], "ring and presently the": [65535, 0], "and presently the people": [65535, 0], "presently the people began": [65535, 0], "the people began to": [65535, 0], "people began to gather": [65535, 0], "began to gather for": [65535, 0], "to gather for the": [65535, 0], "gather for the morning": [65535, 0], "for the morning sermon": [65535, 0], "the morning sermon the": [65535, 0], "morning sermon the sunday": [65535, 0], "sermon the sunday school": [65535, 0], "the sunday school children": [65535, 0], "sunday school children distributed": [65535, 0], "school children distributed themselves": [65535, 0], "children distributed themselves about": [65535, 0], "distributed themselves about the": [65535, 0], "themselves about the house": [65535, 0], "about the house and": [65535, 0], "the house and occupied": [65535, 0], "house and occupied pews": [65535, 0], "and occupied pews with": [65535, 0], "occupied pews with their": [65535, 0], "pews with their parents": [65535, 0], "with their parents so": [65535, 0], "their parents so as": [65535, 0], "parents so as to": [65535, 0], "so as to be": [65535, 0], "as to be under": [65535, 0], "to be under supervision": [65535, 0], "be under supervision aunt": [65535, 0], "under supervision aunt polly": [65535, 0], "supervision aunt polly came": [65535, 0], "aunt polly came and": [65535, 0], "polly came and tom": [65535, 0], "came and tom and": [65535, 0], "and tom and sid": [65535, 0], "tom and sid and": [65535, 0], "and sid and mary": [65535, 0], "sid and mary sat": [65535, 0], "and mary sat with": [65535, 0], "mary sat with her": [65535, 0], "sat with her tom": [65535, 0], "with her tom being": [65535, 0], "her tom being placed": [65535, 0], "tom being placed next": [65535, 0], "being placed next the": [65535, 0], "placed next the aisle": [65535, 0], "next the aisle in": [65535, 0], "the aisle in order": [65535, 0], "aisle in order that": [65535, 0], "in order that he": [65535, 0], "order that he might": [65535, 0], "that he might be": [65535, 0], "he might be as": [65535, 0], "might be as far": [65535, 0], "be as far away": [65535, 0], "as far away from": [65535, 0], "far away from the": [65535, 0], "away from the open": [65535, 0], "from the open window": [65535, 0], "the open window and": [65535, 0], "open window and the": [65535, 0], "window and the seductive": [65535, 0], "and the seductive outside": [65535, 0], "the seductive outside summer": [65535, 0], "seductive outside summer scenes": [65535, 0], "outside summer scenes as": [65535, 0], "summer scenes as possible": [65535, 0], "scenes as possible the": [65535, 0], "as possible the crowd": [65535, 0], "possible the crowd filed": [65535, 0], "the crowd filed up": [65535, 0], "crowd filed up the": [65535, 0], "filed up the aisles": [65535, 0], "up the aisles the": [65535, 0], "the aisles the aged": [65535, 0], "aisles the aged and": [65535, 0], "the aged and needy": [65535, 0], "aged and needy postmaster": [65535, 0], "and needy postmaster who": [65535, 0], "needy postmaster who had": [65535, 0], "postmaster who had seen": [65535, 0], "who had seen better": [65535, 0], "had seen better days": [65535, 0], "seen better days the": [65535, 0], "better days the mayor": [65535, 0], "days the mayor and": [65535, 0], "the mayor and his": [65535, 0], "mayor and his wife": [65535, 0], "and his wife for": [65535, 0], "his wife for they": [65535, 0], "wife for they had": [65535, 0], "for they had a": [65535, 0], "they had a mayor": [65535, 0], "had a mayor there": [65535, 0], "a mayor there among": [65535, 0], "mayor there among other": [65535, 0], "there among other unnecessaries": [65535, 0], "among other unnecessaries the": [65535, 0], "other unnecessaries the justice": [65535, 0], "unnecessaries the justice of": [65535, 0], "the justice of the": [65535, 0], "justice of the peace": [65535, 0], "of the peace the": [65535, 0], "the peace the widow": [65535, 0], "peace the widow douglass": [65535, 0], "the widow douglass fair": [65535, 0], "widow douglass fair smart": [65535, 0], "douglass fair smart and": [65535, 0], "fair smart and forty": [65535, 0], "smart and forty a": [65535, 0], "and forty a generous": [65535, 0], "forty a generous good": [65535, 0], "a generous good hearted": [65535, 0], "generous good hearted soul": [65535, 0], "good hearted soul and": [65535, 0], "hearted soul and well": [65535, 0], "soul and well to": [65535, 0], "and well to do": [65535, 0], "well to do her": [65535, 0], "to do her hill": [65535, 0], "do her hill mansion": [65535, 0], "her hill mansion the": [65535, 0], "hill mansion the only": [65535, 0], "mansion the only palace": [65535, 0], "the only palace in": [65535, 0], "only palace in the": [65535, 0], "palace in the town": [65535, 0], "in the town and": [65535, 0], "the town and the": [65535, 0], "town and the most": [65535, 0], "and the most hospitable": [65535, 0], "the most hospitable and": [65535, 0], "most hospitable and much": [65535, 0], "hospitable and much the": [65535, 0], "and much the most": [65535, 0], "much the most lavish": [65535, 0], "the most lavish in": [65535, 0], "most lavish in the": [65535, 0], "lavish in the matter": [65535, 0], "in the matter of": [65535, 0], "the matter of festivities": [65535, 0], "matter of festivities that": [65535, 0], "of festivities that st": [65535, 0], "festivities that st petersburg": [65535, 0], "that st petersburg could": [65535, 0], "st petersburg could boast": [65535, 0], "petersburg could boast the": [65535, 0], "could boast the bent": [65535, 0], "boast the bent and": [65535, 0], "the bent and venerable": [65535, 0], "bent and venerable major": [65535, 0], "and venerable major and": [65535, 0], "venerable major and mrs": [65535, 0], "major and mrs ward": [65535, 0], "and mrs ward lawyer": [65535, 0], "mrs ward lawyer riverson": [65535, 0], "ward lawyer riverson the": [65535, 0], "lawyer riverson the new": [65535, 0], "riverson the new notable": [65535, 0], "the new notable from": [65535, 0], "new notable from a": [65535, 0], "notable from a distance": [65535, 0], "from a distance next": [65535, 0], "a distance next the": [65535, 0], "distance next the belle": [65535, 0], "next the belle of": [65535, 0], "the belle of the": [65535, 0], "belle of the village": [65535, 0], "of the village followed": [65535, 0], "the village followed by": [65535, 0], "village followed by a": [65535, 0], "followed by a troop": [65535, 0], "by a troop of": [65535, 0], "a troop of lawn": [65535, 0], "troop of lawn clad": [65535, 0], "of lawn clad and": [65535, 0], "lawn clad and ribbon": [65535, 0], "clad and ribbon decked": [65535, 0], "and ribbon decked young": [65535, 0], "ribbon decked young heart": [65535, 0], "decked young heart breakers": [65535, 0], "young heart breakers then": [65535, 0], "heart breakers then all": [65535, 0], "breakers then all the": [65535, 0], "then all the young": [65535, 0], "all the young clerks": [65535, 0], "the young clerks in": [65535, 0], "young clerks in town": [65535, 0], "clerks in town in": [65535, 0], "in town in a": [65535, 0], "town in a body": [65535, 0], "in a body for": [65535, 0], "a body for they": [65535, 0], "body for they had": [65535, 0], "for they had stood": [65535, 0], "they had stood in": [65535, 0], "had stood in the": [65535, 0], "stood in the vestibule": [65535, 0], "in the vestibule sucking": [65535, 0], "the vestibule sucking their": [65535, 0], "vestibule sucking their cane": [65535, 0], "sucking their cane heads": [65535, 0], "their cane heads a": [65535, 0], "cane heads a circling": [65535, 0], "heads a circling wall": [65535, 0], "a circling wall of": [65535, 0], "circling wall of oiled": [65535, 0], "wall of oiled and": [65535, 0], "of oiled and simpering": [65535, 0], "oiled and simpering admirers": [65535, 0], "and simpering admirers till": [65535, 0], "simpering admirers till the": [65535, 0], "admirers till the last": [65535, 0], "till the last girl": [65535, 0], "the last girl had": [65535, 0], "last girl had run": [65535, 0], "girl had run their": [65535, 0], "had run their gantlet": [65535, 0], "run their gantlet and": [65535, 0], "their gantlet and last": [65535, 0], "gantlet and last of": [65535, 0], "and last of all": [65535, 0], "last of all came": [65535, 0], "of all came the": [65535, 0], "all came the model": [65535, 0], "came the model boy": [65535, 0], "the model boy willie": [65535, 0], "model boy willie mufferson": [65535, 0], "boy willie mufferson taking": [65535, 0], "willie mufferson taking as": [65535, 0], "mufferson taking as heedful": [65535, 0], "taking as heedful care": [65535, 0], "as heedful care of": [65535, 0], "heedful care of his": [65535, 0], "care of his mother": [65535, 0], "of his mother as": [65535, 0], "his mother as if": [65535, 0], "mother as if she": [65535, 0], "as if she were": [65535, 0], "if she were cut": [65535, 0], "she were cut glass": [65535, 0], "were cut glass he": [65535, 0], "cut glass he always": [65535, 0], "glass he always brought": [65535, 0], "he always brought his": [65535, 0], "always brought his mother": [65535, 0], "brought his mother to": [65535, 0], "his mother to church": [65535, 0], "mother to church and": [65535, 0], "to church and was": [65535, 0], "church and was the": [65535, 0], "and was the pride": [65535, 0], "was the pride of": [65535, 0], "the pride of all": [65535, 0], "pride of all the": [65535, 0], "of all the matrons": [65535, 0], "all the matrons the": [65535, 0], "the matrons the boys": [65535, 0], "matrons the boys all": [65535, 0], "the boys all hated": [65535, 0], "boys all hated him": [65535, 0], "all hated him he": [65535, 0], "hated him he was": [65535, 0], "him he was so": [65535, 0], "he was so good": [65535, 0], "was so good and": [65535, 0], "so good and besides": [65535, 0], "good and besides he": [65535, 0], "and besides he had": [65535, 0], "besides he had been": [65535, 0], "he had been thrown": [65535, 0], "had been thrown up": [65535, 0], "been thrown up to": [65535, 0], "thrown up to them": [65535, 0], "up to them so": [65535, 0], "to them so much": [65535, 0], "them so much his": [65535, 0], "so much his white": [65535, 0], "much his white handkerchief": [65535, 0], "his white handkerchief was": [65535, 0], "white handkerchief was hanging": [65535, 0], "handkerchief was hanging out": [65535, 0], "was hanging out of": [65535, 0], "hanging out of his": [65535, 0], "out of his pocket": [65535, 0], "of his pocket behind": [65535, 0], "his pocket behind as": [65535, 0], "pocket behind as usual": [65535, 0], "behind as usual on": [65535, 0], "as usual on sundays": [65535, 0], "usual on sundays accidentally": [65535, 0], "on sundays accidentally tom": [65535, 0], "sundays accidentally tom had": [65535, 0], "accidentally tom had no": [65535, 0], "tom had no handkerchief": [65535, 0], "had no handkerchief and": [65535, 0], "no handkerchief and he": [65535, 0], "handkerchief and he looked": [65535, 0], "and he looked upon": [65535, 0], "he looked upon boys": [65535, 0], "looked upon boys who": [65535, 0], "upon boys who had": [65535, 0], "boys who had as": [65535, 0], "who had as snobs": [65535, 0], "had as snobs the": [65535, 0], "as snobs the congregation": [65535, 0], "snobs the congregation being": [65535, 0], "the congregation being fully": [65535, 0], "congregation being fully assembled": [65535, 0], "being fully assembled now": [65535, 0], "fully assembled now the": [65535, 0], "assembled now the bell": [65535, 0], "now the bell rang": [65535, 0], "the bell rang once": [65535, 0], "bell rang once more": [65535, 0], "rang once more to": [65535, 0], "once more to warn": [65535, 0], "more to warn laggards": [65535, 0], "to warn laggards and": [65535, 0], "warn laggards and stragglers": [65535, 0], "laggards and stragglers and": [65535, 0], "and stragglers and then": [65535, 0], "stragglers and then a": [65535, 0], "and then a solemn": [65535, 0], "then a solemn hush": [65535, 0], "a solemn hush fell": [65535, 0], "solemn hush fell upon": [65535, 0], "hush fell upon the": [65535, 0], "fell upon the church": [65535, 0], "upon the church which": [65535, 0], "the church which was": [65535, 0], "church which was only": [65535, 0], "which was only broken": [65535, 0], "was only broken by": [65535, 0], "only broken by the": [65535, 0], "broken by the tittering": [65535, 0], "by the tittering and": [65535, 0], "the tittering and whispering": [65535, 0], "tittering and whispering of": [65535, 0], "and whispering of the": [65535, 0], "whispering of the choir": [65535, 0], "of the choir in": [65535, 0], "the choir in the": [65535, 0], "choir in the gallery": [65535, 0], "in the gallery the": [65535, 0], "the gallery the choir": [65535, 0], "gallery the choir always": [65535, 0], "the choir always tittered": [65535, 0], "choir always tittered and": [65535, 0], "always tittered and whispered": [65535, 0], "tittered and whispered all": [65535, 0], "and whispered all through": [65535, 0], "whispered all through service": [65535, 0], "all through service there": [65535, 0], "through service there was": [65535, 0], "service there was once": [65535, 0], "there was once a": [65535, 0], "was once a church": [65535, 0], "once a church choir": [65535, 0], "a church choir that": [65535, 0], "church choir that was": [65535, 0], "choir that was not": [65535, 0], "that was not ill": [65535, 0], "was not ill bred": [65535, 0], "not ill bred but": [65535, 0], "ill bred but i": [65535, 0], "bred but i have": [65535, 0], "but i have forgotten": [65535, 0], "i have forgotten where": [65535, 0], "have forgotten where it": [65535, 0], "forgotten where it was": [65535, 0], "where it was now": [65535, 0], "it was now it": [65535, 0], "was now it was": [65535, 0], "now it was a": [65535, 0], "it was a great": [65535, 0], "was a great many": [65535, 0], "a great many years": [65535, 0], "great many years ago": [65535, 0], "many years ago and": [65535, 0], "years ago and i": [65535, 0], "ago and i can": [65535, 0], "and i can scarcely": [65535, 0], "i can scarcely remember": [65535, 0], "can scarcely remember anything": [65535, 0], "scarcely remember anything about": [65535, 0], "remember anything about it": [65535, 0], "anything about it but": [65535, 0], "about it but i": [65535, 0], "it but i think": [65535, 0], "but i think it": [65535, 0], "i think it was": [65535, 0], "think it was in": [65535, 0], "it was in some": [65535, 0], "was in some foreign": [65535, 0], "in some foreign country": [65535, 0], "some foreign country the": [65535, 0], "foreign country the minister": [65535, 0], "country the minister gave": [65535, 0], "the minister gave out": [65535, 0], "minister gave out the": [65535, 0], "gave out the hymn": [65535, 0], "out the hymn and": [65535, 0], "the hymn and read": [65535, 0], "hymn and read it": [65535, 0], "and read it through": [65535, 0], "read it through with": [65535, 0], "it through with a": [65535, 0], "through with a relish": [65535, 0], "with a relish in": [65535, 0], "a relish in a": [65535, 0], "relish in a peculiar": [65535, 0], "in a peculiar style": [65535, 0], "a peculiar style which": [65535, 0], "peculiar style which was": [65535, 0], "style which was much": [65535, 0], "which was much admired": [65535, 0], "was much admired in": [65535, 0], "much admired in that": [65535, 0], "admired in that part": [65535, 0], "in that part of": [65535, 0], "that part of the": [65535, 0], "part of the country": [65535, 0], "of the country his": [65535, 0], "the country his voice": [65535, 0], "country his voice began": [65535, 0], "his voice began on": [65535, 0], "voice began on a": [65535, 0], "began on a medium": [65535, 0], "on a medium key": [65535, 0], "a medium key and": [65535, 0], "medium key and climbed": [65535, 0], "key and climbed steadily": [65535, 0], "and climbed steadily up": [65535, 0], "climbed steadily up till": [65535, 0], "steadily up till it": [65535, 0], "up till it reached": [65535, 0], "till it reached a": [65535, 0], "it reached a certain": [65535, 0], "reached a certain point": [65535, 0], "a certain point where": [65535, 0], "certain point where it": [65535, 0], "point where it bore": [65535, 0], "where it bore with": [65535, 0], "it bore with strong": [65535, 0], "bore with strong emphasis": [65535, 0], "with strong emphasis upon": [65535, 0], "strong emphasis upon the": [65535, 0], "emphasis upon the topmost": [65535, 0], "upon the topmost word": [65535, 0], "the topmost word and": [65535, 0], "topmost word and then": [65535, 0], "word and then plunged": [65535, 0], "and then plunged down": [65535, 0], "then plunged down as": [65535, 0], "plunged down as if": [65535, 0], "down as if from": [65535, 0], "as if from a": [65535, 0], "if from a spring": [65535, 0], "from a spring board": [65535, 0], "a spring board shall": [65535, 0], "spring board shall i": [65535, 0], "board shall i be": [65535, 0], "shall i be car": [65535, 0], "i be car ri": [65535, 0], "be car ri ed": [65535, 0], "car ri ed toe": [65535, 0], "ri ed toe the": [65535, 0], "ed toe the skies": [65535, 0], "toe the skies on": [65535, 0], "the skies on flow'ry": [65535, 0], "skies on flow'ry beds": [65535, 0], "on flow'ry beds of": [65535, 0], "flow'ry beds of ease": [65535, 0], "beds of ease whilst": [65535, 0], "of ease whilst others": [65535, 0], "ease whilst others fight": [65535, 0], "whilst others fight to": [65535, 0], "others fight to win": [65535, 0], "fight to win the": [65535, 0], "to win the prize": [65535, 0], "win the prize and": [65535, 0], "the prize and sail": [65535, 0], "prize and sail thro'": [65535, 0], "and sail thro' bloody": [65535, 0], "sail thro' bloody seas": [65535, 0], "thro' bloody seas he": [65535, 0], "bloody seas he was": [65535, 0], "seas he was regarded": [65535, 0], "he was regarded as": [65535, 0], "was regarded as a": [65535, 0], "regarded as a wonderful": [65535, 0], "as a wonderful reader": [65535, 0], "a wonderful reader at": [65535, 0], "wonderful reader at church": [65535, 0], "reader at church sociables": [65535, 0], "at church sociables he": [65535, 0], "church sociables he was": [65535, 0], "sociables he was always": [65535, 0], "he was always called": [65535, 0], "was always called upon": [65535, 0], "always called upon to": [65535, 0], "called upon to read": [65535, 0], "upon to read poetry": [65535, 0], "to read poetry and": [65535, 0], "read poetry and when": [65535, 0], "poetry and when he": [65535, 0], "and when he was": [65535, 0], "when he was through": [65535, 0], "he was through the": [65535, 0], "was through the ladies": [65535, 0], "through the ladies would": [65535, 0], "the ladies would lift": [65535, 0], "ladies would lift up": [65535, 0], "would lift up their": [65535, 0], "lift up their hands": [65535, 0], "up their hands and": [65535, 0], "their hands and let": [65535, 0], "hands and let them": [65535, 0], "and let them fall": [65535, 0], "let them fall helplessly": [65535, 0], "them fall helplessly in": [65535, 0], "fall helplessly in their": [65535, 0], "helplessly in their laps": [65535, 0], "in their laps and": [65535, 0], "their laps and wall": [65535, 0], "laps and wall their": [65535, 0], "and wall their eyes": [65535, 0], "wall their eyes and": [65535, 0], "their eyes and shake": [65535, 0], "eyes and shake their": [65535, 0], "and shake their heads": [65535, 0], "shake their heads as": [65535, 0], "their heads as much": [65535, 0], "heads as much as": [65535, 0], "as much as to": [65535, 0], "much as to say": [65535, 0], "as to say words": [65535, 0], "to say words cannot": [65535, 0], "say words cannot express": [65535, 0], "words cannot express it": [65535, 0], "cannot express it it": [65535, 0], "express it it is": [65535, 0], "it it is too": [65535, 0], "it is too beautiful": [65535, 0], "is too beautiful too": [65535, 0], "too beautiful too beautiful": [65535, 0], "beautiful too beautiful for": [65535, 0], "too beautiful for this": [65535, 0], "beautiful for this mortal": [65535, 0], "for this mortal earth": [65535, 0], "this mortal earth after": [65535, 0], "mortal earth after the": [65535, 0], "earth after the hymn": [65535, 0], "after the hymn had": [65535, 0], "the hymn had been": [65535, 0], "hymn had been sung": [65535, 0], "had been sung the": [65535, 0], "been sung the rev": [65535, 0], "sung the rev mr": [65535, 0], "the rev mr sprague": [65535, 0], "rev mr sprague turned": [65535, 0], "mr sprague turned himself": [65535, 0], "sprague turned himself into": [65535, 0], "turned himself into a": [65535, 0], "himself into a bulletin": [65535, 0], "into a bulletin board": [65535, 0], "a bulletin board and": [65535, 0], "bulletin board and read": [65535, 0], "board and read off": [65535, 0], "and read off notices": [65535, 0], "read off notices of": [65535, 0], "off notices of meetings": [65535, 0], "notices of meetings and": [65535, 0], "of meetings and societies": [65535, 0], "meetings and societies and": [65535, 0], "and societies and things": [65535, 0], "societies and things till": [65535, 0], "and things till it": [65535, 0], "things till it seemed": [65535, 0], "till it seemed that": [65535, 0], "it seemed that the": [65535, 0], "seemed that the list": [65535, 0], "that the list would": [65535, 0], "the list would stretch": [65535, 0], "list would stretch out": [65535, 0], "would stretch out to": [65535, 0], "stretch out to the": [65535, 0], "out to the crack": [65535, 0], "to the crack of": [65535, 0], "the crack of doom": [65535, 0], "crack of doom a": [65535, 0], "of doom a queer": [65535, 0], "doom a queer custom": [65535, 0], "a queer custom which": [65535, 0], "queer custom which is": [65535, 0], "custom which is still": [65535, 0], "which is still kept": [65535, 0], "is still kept up": [65535, 0], "still kept up in": [65535, 0], "kept up in america": [65535, 0], "up in america even": [65535, 0], "in america even in": [65535, 0], "america even in cities": [65535, 0], "even in cities away": [65535, 0], "in cities away here": [65535, 0], "cities away here in": [65535, 0], "away here in this": [65535, 0], "here in this age": [65535, 0], "in this age of": [65535, 0], "this age of abundant": [65535, 0], "age of abundant newspapers": [65535, 0], "of abundant newspapers often": [65535, 0], "abundant newspapers often the": [65535, 0], "newspapers often the less": [65535, 0], "often the less there": [65535, 0], "the less there is": [65535, 0], "less there is to": [65535, 0], "there is to justify": [65535, 0], "is to justify a": [65535, 0], "to justify a traditional": [65535, 0], "justify a traditional custom": [65535, 0], "a traditional custom the": [65535, 0], "traditional custom the harder": [65535, 0], "custom the harder it": [65535, 0], "the harder it is": [65535, 0], "harder it is to": [65535, 0], "it is to get": [65535, 0], "is to get rid": [65535, 0], "to get rid of": [65535, 0], "get rid of it": [65535, 0], "rid of it and": [65535, 0], "of it and now": [65535, 0], "it and now the": [65535, 0], "and now the minister": [65535, 0], "now the minister prayed": [65535, 0], "the minister prayed a": [65535, 0], "minister prayed a good": [65535, 0], "prayed a good generous": [65535, 0], "a good generous prayer": [65535, 0], "good generous prayer it": [65535, 0], "generous prayer it was": [65535, 0], "prayer it was and": [65535, 0], "it was and went": [65535, 0], "was and went into": [65535, 0], "and went into details": [65535, 0], "went into details it": [65535, 0], "into details it pleaded": [65535, 0], "details it pleaded for": [65535, 0], "it pleaded for the": [65535, 0], "pleaded for the church": [65535, 0], "for the church and": [65535, 0], "the church and the": [65535, 0], "church and the little": [65535, 0], "and the little children": [65535, 0], "the little children of": [65535, 0], "little children of the": [65535, 0], "children of the church": [65535, 0], "of the church for": [65535, 0], "the church for the": [65535, 0], "church for the other": [65535, 0], "for the other churches": [65535, 0], "the other churches of": [65535, 0], "other churches of the": [65535, 0], "churches of the village": [65535, 0], "of the village for": [65535, 0], "the village for the": [65535, 0], "village for the village": [65535, 0], "for the village itself": [65535, 0], "the village itself for": [65535, 0], "village itself for the": [65535, 0], "itself for the county": [65535, 0], "for the county for": [65535, 0], "the county for the": [65535, 0], "county for the state": [65535, 0], "for the state for": [65535, 0], "the state for the": [65535, 0], "state for the state": [65535, 0], "for the state officers": [65535, 0], "the state officers for": [65535, 0], "state officers for the": [65535, 0], "officers for the united": [65535, 0], "for the united states": [65535, 0], "the united states for": [65535, 0], "united states for the": [65535, 0], "states for the churches": [65535, 0], "for the churches of": [65535, 0], "the churches of the": [65535, 0], "churches of the united": [65535, 0], "of the united states": [65535, 0], "united states for congress": [65535, 0], "states for congress for": [65535, 0], "for congress for the": [65535, 0], "congress for the president": [65535, 0], "for the president for": [65535, 0], "the president for the": [65535, 0], "president for the officers": [65535, 0], "for the officers of": [65535, 0], "the officers of the": [65535, 0], "officers of the government": [65535, 0], "of the government for": [65535, 0], "the government for poor": [65535, 0], "government for poor sailors": [65535, 0], "for poor sailors tossed": [65535, 0], "poor sailors tossed by": [65535, 0], "sailors tossed by stormy": [65535, 0], "tossed by stormy seas": [65535, 0], "by stormy seas for": [65535, 0], "stormy seas for the": [65535, 0], "seas for the oppressed": [65535, 0], "for the oppressed millions": [65535, 0], "the oppressed millions groaning": [65535, 0], "oppressed millions groaning under": [65535, 0], "millions groaning under the": [65535, 0], "groaning under the heel": [65535, 0], "under the heel of": [65535, 0], "the heel of european": [65535, 0], "heel of european monarchies": [65535, 0], "of european monarchies and": [65535, 0], "european monarchies and oriental": [65535, 0], "monarchies and oriental despotisms": [65535, 0], "and oriental despotisms for": [65535, 0], "oriental despotisms for such": [65535, 0], "despotisms for such as": [65535, 0], "for such as have": [65535, 0], "such as have the": [65535, 0], "as have the light": [65535, 0], "have the light and": [65535, 0], "the light and the": [65535, 0], "light and the good": [65535, 0], "and the good tidings": [65535, 0], "the good tidings and": [65535, 0], "good tidings and yet": [65535, 0], "tidings and yet have": [65535, 0], "and yet have not": [65535, 0], "yet have not eyes": [65535, 0], "have not eyes to": [65535, 0], "not eyes to see": [65535, 0], "eyes to see nor": [65535, 0], "to see nor ears": [65535, 0], "see nor ears to": [65535, 0], "nor ears to hear": [65535, 0], "ears to hear withal": [65535, 0], "to hear withal for": [65535, 0], "hear withal for the": [65535, 0], "withal for the heathen": [65535, 0], "for the heathen in": [65535, 0], "the heathen in the": [65535, 0], "heathen in the far": [65535, 0], "in the far islands": [65535, 0], "the far islands of": [65535, 0], "far islands of the": [65535, 0], "islands of the sea": [65535, 0], "of the sea and": [65535, 0], "the sea and closed": [65535, 0], "sea and closed with": [65535, 0], "and closed with a": [65535, 0], "closed with a supplication": [65535, 0], "with a supplication that": [65535, 0], "a supplication that the": [65535, 0], "supplication that the words": [65535, 0], "that the words he": [65535, 0], "the words he was": [65535, 0], "words he was about": [65535, 0], "he was about to": [65535, 0], "was about to speak": [65535, 0], "about to speak might": [65535, 0], "to speak might find": [65535, 0], "speak might find grace": [65535, 0], "might find grace and": [65535, 0], "find grace and favor": [65535, 0], "grace and favor and": [65535, 0], "and favor and be": [65535, 0], "favor and be as": [65535, 0], "and be as seed": [65535, 0], "be as seed sown": [65535, 0], "as seed sown in": [65535, 0], "seed sown in fertile": [65535, 0], "sown in fertile ground": [65535, 0], "in fertile ground yielding": [65535, 0], "fertile ground yielding in": [65535, 0], "ground yielding in time": [65535, 0], "yielding in time a": [65535, 0], "in time a grateful": [65535, 0], "time a grateful harvest": [65535, 0], "a grateful harvest of": [65535, 0], "grateful harvest of good": [65535, 0], "harvest of good amen": [65535, 0], "of good amen there": [65535, 0], "good amen there was": [65535, 0], "amen there was a": [65535, 0], "there was a rustling": [65535, 0], "was a rustling of": [65535, 0], "a rustling of dresses": [65535, 0], "rustling of dresses and": [65535, 0], "of dresses and the": [65535, 0], "dresses and the standing": [65535, 0], "and the standing congregation": [65535, 0], "the standing congregation sat": [65535, 0], "standing congregation sat down": [65535, 0], "congregation sat down the": [65535, 0], "sat down the boy": [65535, 0], "down the boy whose": [65535, 0], "the boy whose history": [65535, 0], "boy whose history this": [65535, 0], "whose history this book": [65535, 0], "history this book relates": [65535, 0], "this book relates did": [65535, 0], "book relates did not": [65535, 0], "relates did not enjoy": [65535, 0], "did not enjoy the": [65535, 0], "not enjoy the prayer": [65535, 0], "enjoy the prayer he": [65535, 0], "the prayer he only": [65535, 0], "prayer he only endured": [65535, 0], "he only endured it": [65535, 0], "only endured it if": [65535, 0], "endured it if he": [65535, 0], "it if he even": [65535, 0], "if he even did": [65535, 0], "he even did that": [65535, 0], "even did that much": [65535, 0], "did that much he": [65535, 0], "that much he was": [65535, 0], "much he was restive": [65535, 0], "he was restive all": [65535, 0], "was restive all through": [65535, 0], "restive all through it": [65535, 0], "all through it he": [65535, 0], "through it he kept": [65535, 0], "it he kept tally": [65535, 0], "he kept tally of": [65535, 0], "kept tally of the": [65535, 0], "tally of the details": [65535, 0], "of the details of": [65535, 0], "the details of the": [65535, 0], "details of the prayer": [65535, 0], "of the prayer unconsciously": [65535, 0], "the prayer unconsciously for": [65535, 0], "prayer unconsciously for he": [65535, 0], "unconsciously for he was": [65535, 0], "for he was not": [65535, 0], "he was not listening": [65535, 0], "was not listening but": [65535, 0], "not listening but he": [65535, 0], "listening but he knew": [65535, 0], "but he knew the": [65535, 0], "he knew the ground": [65535, 0], "knew the ground of": [65535, 0], "the ground of old": [65535, 0], "ground of old and": [65535, 0], "of old and the": [65535, 0], "old and the clergyman's": [65535, 0], "and the clergyman's regular": [65535, 0], "the clergyman's regular route": [65535, 0], "clergyman's regular route over": [65535, 0], "regular route over it": [65535, 0], "route over it and": [65535, 0], "over it and when": [65535, 0], "it and when a": [65535, 0], "and when a little": [65535, 0], "when a little trifle": [65535, 0], "a little trifle of": [65535, 0], "little trifle of new": [65535, 0], "trifle of new matter": [65535, 0], "of new matter was": [65535, 0], "new matter was interlarded": [65535, 0], "matter was interlarded his": [65535, 0], "was interlarded his ear": [65535, 0], "interlarded his ear detected": [65535, 0], "his ear detected it": [65535, 0], "ear detected it and": [65535, 0], "detected it and his": [65535, 0], "it and his whole": [65535, 0], "and his whole nature": [65535, 0], "his whole nature resented": [65535, 0], "whole nature resented it": [65535, 0], "nature resented it he": [65535, 0], "resented it he considered": [65535, 0], "it he considered additions": [65535, 0], "he considered additions unfair": [65535, 0], "considered additions unfair and": [65535, 0], "additions unfair and scoundrelly": [65535, 0], "unfair and scoundrelly in": [65535, 0], "and scoundrelly in the": [65535, 0], "scoundrelly in the midst": [65535, 0], "in the midst of": [65535, 0], "the midst of the": [65535, 0], "midst of the prayer": [65535, 0], "of the prayer a": [65535, 0], "the prayer a fly": [65535, 0], "prayer a fly had": [65535, 0], "a fly had lit": [65535, 0], "fly had lit on": [65535, 0], "had lit on the": [65535, 0], "lit on the back": [65535, 0], "on the back of": [65535, 0], "the back of the": [65535, 0], "back of the pew": [65535, 0], "of the pew in": [65535, 0], "the pew in front": [65535, 0], "pew in front of": [65535, 0], "in front of him": [65535, 0], "front of him and": [65535, 0], "of him and tortured": [65535, 0], "him and tortured his": [65535, 0], "and tortured his spirit": [65535, 0], "tortured his spirit by": [65535, 0], "his spirit by calmly": [65535, 0], "spirit by calmly rubbing": [65535, 0], "by calmly rubbing its": [65535, 0], "calmly rubbing its hands": [65535, 0], "rubbing its hands together": [65535, 0], "its hands together embracing": [65535, 0], "hands together embracing its": [65535, 0], "together embracing its head": [65535, 0], "embracing its head with": [65535, 0], "its head with its": [65535, 0], "head with its arms": [65535, 0], "with its arms and": [65535, 0], "its arms and polishing": [65535, 0], "arms and polishing it": [65535, 0], "and polishing it so": [65535, 0], "polishing it so vigorously": [65535, 0], "it so vigorously that": [65535, 0], "so vigorously that it": [65535, 0], "vigorously that it seemed": [65535, 0], "that it seemed to": [65535, 0], "it seemed to almost": [65535, 0], "seemed to almost part": [65535, 0], "to almost part company": [65535, 0], "almost part company with": [65535, 0], "part company with the": [65535, 0], "company with the body": [65535, 0], "with the body and": [65535, 0], "the body and the": [65535, 0], "body and the slender": [65535, 0], "and the slender thread": [65535, 0], "the slender thread of": [65535, 0], "slender thread of a": [65535, 0], "thread of a neck": [65535, 0], "of a neck was": [65535, 0], "a neck was exposed": [65535, 0], "neck was exposed to": [65535, 0], "was exposed to view": [65535, 0], "exposed to view scraping": [65535, 0], "to view scraping its": [65535, 0], "view scraping its wings": [65535, 0], "scraping its wings with": [65535, 0], "its wings with its": [65535, 0], "wings with its hind": [65535, 0], "with its hind legs": [65535, 0], "its hind legs and": [65535, 0], "hind legs and smoothing": [65535, 0], "legs and smoothing them": [65535, 0], "and smoothing them to": [65535, 0], "smoothing them to its": [65535, 0], "them to its body": [65535, 0], "to its body as": [65535, 0], "its body as if": [65535, 0], "body as if they": [65535, 0], "as if they had": [65535, 0], "if they had been": [65535, 0], "they had been coat": [65535, 0], "had been coat tails": [65535, 0], "been coat tails going": [65535, 0], "coat tails going through": [65535, 0], "tails going through its": [65535, 0], "going through its whole": [65535, 0], "through its whole toilet": [65535, 0], "its whole toilet as": [65535, 0], "whole toilet as tranquilly": [65535, 0], "toilet as tranquilly as": [65535, 0], "as tranquilly as if": [65535, 0], "tranquilly as if it": [65535, 0], "as if it knew": [65535, 0], "if it knew it": [65535, 0], "it knew it was": [65535, 0], "knew it was perfectly": [65535, 0], "it was perfectly safe": [65535, 0], "was perfectly safe as": [65535, 0], "perfectly safe as indeed": [65535, 0], "safe as indeed it": [65535, 0], "as indeed it was": [65535, 0], "indeed it was for": [65535, 0], "it was for as": [65535, 0], "was for as sorely": [65535, 0], "for as sorely as": [65535, 0], "as sorely as tom's": [65535, 0], "sorely as tom's hands": [65535, 0], "as tom's hands itched": [65535, 0], "tom's hands itched to": [65535, 0], "hands itched to grab": [65535, 0], "itched to grab for": [65535, 0], "to grab for it": [65535, 0], "grab for it they": [65535, 0], "for it they did": [65535, 0], "it they did not": [65535, 0], "they did not dare": [65535, 0], "did not dare he": [65535, 0], "not dare he believed": [65535, 0], "dare he believed his": [65535, 0], "he believed his soul": [65535, 0], "believed his soul would": [65535, 0], "his soul would be": [65535, 0], "soul would be instantly": [65535, 0], "would be instantly destroyed": [65535, 0], "be instantly destroyed if": [65535, 0], "instantly destroyed if he": [65535, 0], "destroyed if he did": [65535, 0], "if he did such": [65535, 0], "he did such a": [65535, 0], "did such a thing": [65535, 0], "such a thing while": [65535, 0], "a thing while the": [65535, 0], "thing while the prayer": [65535, 0], "while the prayer was": [65535, 0], "the prayer was going": [65535, 0], "prayer was going on": [65535, 0], "was going on but": [65535, 0], "going on but with": [65535, 0], "on but with the": [65535, 0], "but with the closing": [65535, 0], "with the closing sentence": [65535, 0], "the closing sentence his": [65535, 0], "closing sentence his hand": [65535, 0], "sentence his hand began": [65535, 0], "his hand began to": [65535, 0], "hand began to curve": [65535, 0], "began to curve and": [65535, 0], "to curve and steal": [65535, 0], "curve and steal forward": [65535, 0], "and steal forward and": [65535, 0], "steal forward and the": [65535, 0], "forward and the instant": [65535, 0], "and the instant the": [65535, 0], "the instant the amen": [65535, 0], "instant the amen was": [65535, 0], "the amen was out": [65535, 0], "amen was out the": [65535, 0], "was out the fly": [65535, 0], "out the fly was": [65535, 0], "the fly was a": [65535, 0], "fly was a prisoner": [65535, 0], "was a prisoner of": [65535, 0], "a prisoner of war": [65535, 0], "prisoner of war his": [65535, 0], "of war his aunt": [65535, 0], "war his aunt detected": [65535, 0], "his aunt detected the": [65535, 0], "aunt detected the act": [65535, 0], "detected the act and": [65535, 0], "the act and made": [65535, 0], "act and made him": [65535, 0], "and made him let": [65535, 0], "made him let it": [65535, 0], "him let it go": [65535, 0], "let it go the": [65535, 0], "it go the minister": [65535, 0], "go the minister gave": [65535, 0], "minister gave out his": [65535, 0], "gave out his text": [65535, 0], "out his text and": [65535, 0], "his text and droned": [65535, 0], "text and droned along": [65535, 0], "and droned along monotonously": [65535, 0], "droned along monotonously through": [65535, 0], "along monotonously through an": [65535, 0], "monotonously through an argument": [65535, 0], "through an argument that": [65535, 0], "an argument that was": [65535, 0], "argument that was so": [65535, 0], "that was so prosy": [65535, 0], "was so prosy that": [65535, 0], "so prosy that many": [65535, 0], "prosy that many a": [65535, 0], "that many a head": [65535, 0], "many a head by": [65535, 0], "a head by and": [65535, 0], "head by and by": [65535, 0], "by and by began": [65535, 0], "and by began to": [65535, 0], "by began to nod": [65535, 0], "began to nod and": [65535, 0], "to nod and yet": [65535, 0], "nod and yet it": [65535, 0], "and yet it was": [65535, 0], "yet it was an": [65535, 0], "it was an argument": [65535, 0], "was an argument that": [65535, 0], "an argument that dealt": [65535, 0], "argument that dealt in": [65535, 0], "that dealt in limitless": [65535, 0], "dealt in limitless fire": [65535, 0], "in limitless fire and": [65535, 0], "limitless fire and brimstone": [65535, 0], "fire and brimstone and": [65535, 0], "and brimstone and thinned": [65535, 0], "brimstone and thinned the": [65535, 0], "and thinned the predestined": [65535, 0], "thinned the predestined elect": [65535, 0], "the predestined elect down": [65535, 0], "predestined elect down to": [65535, 0], "elect down to a": [65535, 0], "down to a company": [65535, 0], "to a company so": [65535, 0], "a company so small": [65535, 0], "company so small as": [65535, 0], "so small as to": [65535, 0], "small as to be": [65535, 0], "as to be hardly": [65535, 0], "to be hardly worth": [65535, 0], "be hardly worth the": [65535, 0], "hardly worth the saving": [65535, 0], "worth the saving tom": [65535, 0], "the saving tom counted": [65535, 0], "saving tom counted the": [65535, 0], "tom counted the pages": [65535, 0], "counted the pages of": [65535, 0], "the pages of the": [65535, 0], "pages of the sermon": [65535, 0], "of the sermon after": [65535, 0], "the sermon after church": [65535, 0], "sermon after church he": [65535, 0], "after church he always": [65535, 0], "church he always knew": [65535, 0], "he always knew how": [65535, 0], "always knew how many": [65535, 0], "knew how many pages": [65535, 0], "how many pages there": [65535, 0], "many pages there had": [65535, 0], "pages there had been": [65535, 0], "there had been but": [65535, 0], "had been but he": [65535, 0], "been but he seldom": [65535, 0], "but he seldom knew": [65535, 0], "he seldom knew anything": [65535, 0], "seldom knew anything else": [65535, 0], "knew anything else about": [65535, 0], "anything else about the": [65535, 0], "else about the discourse": [65535, 0], "about the discourse however": [65535, 0], "the discourse however this": [65535, 0], "discourse however this time": [65535, 0], "however this time he": [65535, 0], "this time he was": [65535, 0], "time he was really": [65535, 0], "he was really interested": [65535, 0], "was really interested for": [65535, 0], "really interested for a": [65535, 0], "interested for a little": [65535, 0], "for a little while": [65535, 0], "a little while the": [65535, 0], "little while the minister": [65535, 0], "while the minister made": [65535, 0], "the minister made a": [65535, 0], "minister made a grand": [65535, 0], "made a grand and": [65535, 0], "a grand and moving": [65535, 0], "grand and moving picture": [65535, 0], "and moving picture of": [65535, 0], "moving picture of the": [65535, 0], "picture of the assembling": [65535, 0], "of the assembling together": [65535, 0], "the assembling together of": [65535, 0], "assembling together of the": [65535, 0], "together of the world's": [65535, 0], "of the world's hosts": [65535, 0], "the world's hosts at": [65535, 0], "world's hosts at the": [65535, 0], "hosts at the millennium": [65535, 0], "at the millennium when": [65535, 0], "the millennium when the": [65535, 0], "millennium when the lion": [65535, 0], "when the lion and": [65535, 0], "the lion and the": [65535, 0], "lion and the lamb": [65535, 0], "and the lamb should": [65535, 0], "the lamb should lie": [65535, 0], "lamb should lie down": [65535, 0], "should lie down together": [65535, 0], "lie down together and": [65535, 0], "down together and a": [65535, 0], "together and a little": [65535, 0], "and a little child": [65535, 0], "a little child should": [65535, 0], "little child should lead": [65535, 0], "child should lead them": [65535, 0], "should lead them but": [65535, 0], "lead them but the": [65535, 0], "them but the pathos": [65535, 0], "but the pathos the": [65535, 0], "the pathos the lesson": [65535, 0], "pathos the lesson the": [65535, 0], "the lesson the moral": [65535, 0], "lesson the moral of": [65535, 0], "the moral of the": [65535, 0], "moral of the great": [65535, 0], "of the great spectacle": [65535, 0], "the great spectacle were": [65535, 0], "great spectacle were lost": [65535, 0], "spectacle were lost upon": [65535, 0], "were lost upon the": [65535, 0], "lost upon the boy": [65535, 0], "upon the boy he": [65535, 0], "the boy he only": [65535, 0], "boy he only thought": [65535, 0], "he only thought of": [65535, 0], "only thought of the": [65535, 0], "thought of the conspicuousness": [65535, 0], "of the conspicuousness of": [65535, 0], "the conspicuousness of the": [65535, 0], "conspicuousness of the principal": [65535, 0], "of the principal character": [65535, 0], "the principal character before": [65535, 0], "principal character before the": [65535, 0], "character before the on": [65535, 0], "before the on looking": [65535, 0], "the on looking nations": [65535, 0], "on looking nations his": [65535, 0], "looking nations his face": [65535, 0], "nations his face lit": [65535, 0], "his face lit with": [65535, 0], "face lit with the": [65535, 0], "lit with the thought": [65535, 0], "with the thought and": [65535, 0], "the thought and he": [65535, 0], "thought and he said": [65535, 0], "and he said to": [65535, 0], "he said to himself": [65535, 0], "said to himself that": [65535, 0], "to himself that he": [65535, 0], "himself that he wished": [65535, 0], "that he wished he": [65535, 0], "he wished he could": [65535, 0], "wished he could be": [65535, 0], "he could be that": [65535, 0], "could be that child": [65535, 0], "be that child if": [65535, 0], "that child if it": [65535, 0], "child if it was": [65535, 0], "if it was a": [65535, 0], "it was a tame": [65535, 0], "was a tame lion": [65535, 0], "a tame lion now": [65535, 0], "tame lion now he": [65535, 0], "lion now he lapsed": [65535, 0], "now he lapsed into": [65535, 0], "he lapsed into suffering": [65535, 0], "lapsed into suffering again": [65535, 0], "into suffering again as": [65535, 0], "suffering again as the": [65535, 0], "again as the dry": [65535, 0], "as the dry argument": [65535, 0], "the dry argument was": [65535, 0], "dry argument was resumed": [65535, 0], "argument was resumed presently": [65535, 0], "was resumed presently he": [65535, 0], "resumed presently he bethought": [65535, 0], "presently he bethought him": [65535, 0], "he bethought him of": [65535, 0], "bethought him of a": [65535, 0], "him of a treasure": [65535, 0], "of a treasure he": [65535, 0], "a treasure he had": [65535, 0], "treasure he had and": [65535, 0], "he had and got": [65535, 0], "had and got it": [65535, 0], "and got it out": [65535, 0], "got it out it": [65535, 0], "it out it was": [65535, 0], "out it was a": [65535, 0], "it was a large": [65535, 0], "was a large black": [65535, 0], "a large black beetle": [65535, 0], "large black beetle with": [65535, 0], "black beetle with formidable": [65535, 0], "beetle with formidable jaws": [65535, 0], "with formidable jaws a": [65535, 0], "formidable jaws a pinchbug": [65535, 0], "jaws a pinchbug he": [65535, 0], "a pinchbug he called": [65535, 0], "pinchbug he called it": [65535, 0], "he called it it": [65535, 0], "called it it was": [65535, 0], "it it was in": [65535, 0], "it was in a": [65535, 0], "was in a percussion": [65535, 0], "in a percussion cap": [65535, 0], "a percussion cap box": [65535, 0], "percussion cap box the": [65535, 0], "cap box the first": [65535, 0], "box the first thing": [65535, 0], "the first thing the": [65535, 0], "first thing the beetle": [65535, 0], "thing the beetle did": [65535, 0], "the beetle did was": [65535, 0], "beetle did was to": [65535, 0], "did was to take": [65535, 0], "was to take him": [65535, 0], "to take him by": [65535, 0], "take him by the": [65535, 0], "him by the finger": [65535, 0], "by the finger a": [65535, 0], "the finger a natural": [65535, 0], "finger a natural fillip": [65535, 0], "a natural fillip followed": [65535, 0], "natural fillip followed the": [65535, 0], "fillip followed the beetle": [65535, 0], "followed the beetle went": [65535, 0], "the beetle went floundering": [65535, 0], "beetle went floundering into": [65535, 0], "went floundering into the": [65535, 0], "floundering into the aisle": [65535, 0], "into the aisle and": [65535, 0], "the aisle and lit": [65535, 0], "aisle and lit on": [65535, 0], "and lit on its": [65535, 0], "lit on its back": [65535, 0], "on its back and": [65535, 0], "its back and the": [65535, 0], "back and the hurt": [65535, 0], "and the hurt finger": [65535, 0], "the hurt finger went": [65535, 0], "hurt finger went into": [65535, 0], "finger went into the": [65535, 0], "went into the boy's": [65535, 0], "into the boy's mouth": [65535, 0], "the boy's mouth the": [65535, 0], "boy's mouth the beetle": [65535, 0], "mouth the beetle lay": [65535, 0], "the beetle lay there": [65535, 0], "beetle lay there working": [65535, 0], "lay there working its": [65535, 0], "there working its helpless": [65535, 0], "working its helpless legs": [65535, 0], "its helpless legs unable": [65535, 0], "helpless legs unable to": [65535, 0], "legs unable to turn": [65535, 0], "unable to turn over": [65535, 0], "to turn over tom": [65535, 0], "turn over tom eyed": [65535, 0], "over tom eyed it": [65535, 0], "tom eyed it and": [65535, 0], "eyed it and longed": [65535, 0], "it and longed for": [65535, 0], "and longed for it": [65535, 0], "longed for it but": [65535, 0], "for it but it": [65535, 0], "it but it was": [65535, 0], "but it was safe": [65535, 0], "it was safe out": [65535, 0], "was safe out of": [65535, 0], "safe out of his": [65535, 0], "out of his reach": [65535, 0], "of his reach other": [65535, 0], "his reach other people": [65535, 0], "reach other people uninterested": [65535, 0], "other people uninterested in": [65535, 0], "people uninterested in the": [65535, 0], "uninterested in the sermon": [65535, 0], "in the sermon found": [65535, 0], "the sermon found relief": [65535, 0], "sermon found relief in": [65535, 0], "found relief in the": [65535, 0], "relief in the beetle": [65535, 0], "in the beetle and": [65535, 0], "the beetle and they": [65535, 0], "beetle and they eyed": [65535, 0], "and they eyed it": [65535, 0], "they eyed it too": [65535, 0], "eyed it too presently": [65535, 0], "it too presently a": [65535, 0], "too presently a vagrant": [65535, 0], "presently a vagrant poodle": [65535, 0], "a vagrant poodle dog": [65535, 0], "vagrant poodle dog came": [65535, 0], "poodle dog came idling": [65535, 0], "dog came idling along": [65535, 0], "came idling along sad": [65535, 0], "idling along sad at": [65535, 0], "along sad at heart": [65535, 0], "sad at heart lazy": [65535, 0], "at heart lazy with": [65535, 0], "heart lazy with the": [65535, 0], "lazy with the summer": [65535, 0], "with the summer softness": [65535, 0], "the summer softness and": [65535, 0], "summer softness and the": [65535, 0], "softness and the quiet": [65535, 0], "and the quiet weary": [65535, 0], "the quiet weary of": [65535, 0], "quiet weary of captivity": [65535, 0], "weary of captivity sighing": [65535, 0], "of captivity sighing for": [65535, 0], "captivity sighing for change": [65535, 0], "sighing for change he": [65535, 0], "for change he spied": [65535, 0], "change he spied the": [65535, 0], "he spied the beetle": [65535, 0], "spied the beetle the": [65535, 0], "the beetle the drooping": [65535, 0], "beetle the drooping tail": [65535, 0], "the drooping tail lifted": [65535, 0], "drooping tail lifted and": [65535, 0], "tail lifted and wagged": [65535, 0], "lifted and wagged he": [65535, 0], "and wagged he surveyed": [65535, 0], "wagged he surveyed the": [65535, 0], "he surveyed the prize": [65535, 0], "surveyed the prize walked": [65535, 0], "the prize walked around": [65535, 0], "prize walked around it": [65535, 0], "walked around it smelt": [65535, 0], "around it smelt at": [65535, 0], "it smelt at it": [65535, 0], "smelt at it from": [65535, 0], "at it from a": [65535, 0], "it from a safe": [65535, 0], "from a safe distance": [65535, 0], "a safe distance walked": [65535, 0], "safe distance walked around": [65535, 0], "distance walked around it": [65535, 0], "walked around it again": [65535, 0], "around it again grew": [65535, 0], "it again grew bolder": [65535, 0], "again grew bolder and": [65535, 0], "grew bolder and took": [65535, 0], "bolder and took a": [65535, 0], "and took a closer": [65535, 0], "took a closer smell": [65535, 0], "a closer smell then": [65535, 0], "closer smell then lifted": [65535, 0], "smell then lifted his": [65535, 0], "then lifted his lip": [65535, 0], "lifted his lip and": [65535, 0], "his lip and made": [65535, 0], "lip and made a": [65535, 0], "and made a gingerly": [65535, 0], "made a gingerly snatch": [65535, 0], "a gingerly snatch at": [65535, 0], "gingerly snatch at it": [65535, 0], "snatch at it just": [65535, 0], "at it just missing": [65535, 0], "it just missing it": [65535, 0], "just missing it made": [65535, 0], "missing it made another": [65535, 0], "it made another and": [65535, 0], "made another and another": [65535, 0], "another and another began": [65535, 0], "and another began to": [65535, 0], "another began to enjoy": [65535, 0], "began to enjoy the": [65535, 0], "to enjoy the diversion": [65535, 0], "enjoy the diversion subsided": [65535, 0], "the diversion subsided to": [65535, 0], "diversion subsided to his": [65535, 0], "subsided to his stomach": [65535, 0], "to his stomach with": [65535, 0], "his stomach with the": [65535, 0], "stomach with the beetle": [65535, 0], "with the beetle between": [65535, 0], "the beetle between his": [65535, 0], "beetle between his paws": [65535, 0], "between his paws and": [65535, 0], "his paws and continued": [65535, 0], "paws and continued his": [65535, 0], "and continued his experiments": [65535, 0], "continued his experiments grew": [65535, 0], "his experiments grew weary": [65535, 0], "experiments grew weary at": [65535, 0], "grew weary at last": [65535, 0], "weary at last and": [65535, 0], "at last and then": [65535, 0], "last and then indifferent": [65535, 0], "and then indifferent and": [65535, 0], "then indifferent and absent": [65535, 0], "indifferent and absent minded": [65535, 0], "and absent minded his": [65535, 0], "absent minded his head": [65535, 0], "minded his head nodded": [65535, 0], "his head nodded and": [65535, 0], "head nodded and little": [65535, 0], "nodded and little by": [65535, 0], "and little by little": [65535, 0], "little by little his": [65535, 0], "by little his chin": [65535, 0], "little his chin descended": [65535, 0], "his chin descended and": [65535, 0], "chin descended and touched": [65535, 0], "descended and touched the": [65535, 0], "and touched the enemy": [65535, 0], "touched the enemy who": [65535, 0], "the enemy who seized": [65535, 0], "enemy who seized it": [65535, 0], "who seized it there": [65535, 0], "seized it there was": [65535, 0], "it there was a": [65535, 0], "there was a sharp": [65535, 0], "was a sharp yelp": [65535, 0], "a sharp yelp a": [65535, 0], "sharp yelp a flirt": [65535, 0], "yelp a flirt of": [65535, 0], "a flirt of the": [65535, 0], "flirt of the poodle's": [65535, 0], "of the poodle's head": [65535, 0], "the poodle's head and": [65535, 0], "poodle's head and the": [65535, 0], "head and the beetle": [65535, 0], "and the beetle fell": [65535, 0], "the beetle fell a": [65535, 0], "beetle fell a couple": [65535, 0], "fell a couple of": [65535, 0], "a couple of yards": [65535, 0], "couple of yards away": [65535, 0], "of yards away and": [65535, 0], "yards away and lit": [65535, 0], "away and lit on": [65535, 0], "on its back once": [65535, 0], "its back once more": [65535, 0], "back once more the": [65535, 0], "once more the neighboring": [65535, 0], "more the neighboring spectators": [65535, 0], "the neighboring spectators shook": [65535, 0], "neighboring spectators shook with": [65535, 0], "spectators shook with a": [65535, 0], "shook with a gentle": [65535, 0], "with a gentle inward": [65535, 0], "a gentle inward joy": [65535, 0], "gentle inward joy several": [65535, 0], "inward joy several faces": [65535, 0], "joy several faces went": [65535, 0], "several faces went behind": [65535, 0], "faces went behind fans": [65535, 0], "went behind fans and": [65535, 0], "behind fans and handkerchiefs": [65535, 0], "fans and handkerchiefs and": [65535, 0], "and handkerchiefs and tom": [65535, 0], "handkerchiefs and tom was": [65535, 0], "and tom was entirely": [65535, 0], "tom was entirely happy": [65535, 0], "was entirely happy the": [65535, 0], "entirely happy the dog": [65535, 0], "happy the dog looked": [65535, 0], "the dog looked foolish": [65535, 0], "dog looked foolish and": [65535, 0], "looked foolish and probably": [65535, 0], "foolish and probably felt": [65535, 0], "and probably felt so": [65535, 0], "probably felt so but": [65535, 0], "felt so but there": [65535, 0], "so but there was": [65535, 0], "but there was resentment": [65535, 0], "there was resentment in": [65535, 0], "was resentment in his": [65535, 0], "resentment in his heart": [65535, 0], "in his heart too": [65535, 0], "his heart too and": [65535, 0], "heart too and a": [65535, 0], "too and a craving": [65535, 0], "and a craving for": [65535, 0], "a craving for revenge": [65535, 0], "craving for revenge so": [65535, 0], "for revenge so he": [65535, 0], "revenge so he went": [65535, 0], "so he went to": [65535, 0], "he went to the": [65535, 0], "went to the beetle": [65535, 0], "to the beetle and": [65535, 0], "the beetle and began": [65535, 0], "beetle and began a": [65535, 0], "and began a wary": [65535, 0], "began a wary attack": [65535, 0], "a wary attack on": [65535, 0], "wary attack on it": [65535, 0], "attack on it again": [65535, 0], "on it again jumping": [65535, 0], "it again jumping at": [65535, 0], "again jumping at it": [65535, 0], "jumping at it from": [65535, 0], "at it from every": [65535, 0], "it from every point": [65535, 0], "from every point of": [65535, 0], "every point of a": [65535, 0], "point of a circle": [65535, 0], "of a circle lighting": [65535, 0], "a circle lighting with": [65535, 0], "circle lighting with his": [65535, 0], "lighting with his fore": [65535, 0], "with his fore paws": [65535, 0], "his fore paws within": [65535, 0], "fore paws within an": [65535, 0], "paws within an inch": [65535, 0], "within an inch of": [65535, 0], "an inch of the": [65535, 0], "inch of the creature": [65535, 0], "of the creature making": [65535, 0], "the creature making even": [65535, 0], "creature making even closer": [65535, 0], "making even closer snatches": [65535, 0], "even closer snatches at": [65535, 0], "closer snatches at it": [65535, 0], "snatches at it with": [65535, 0], "at it with his": [65535, 0], "it with his teeth": [65535, 0], "with his teeth and": [65535, 0], "his teeth and jerking": [65535, 0], "teeth and jerking his": [65535, 0], "and jerking his head": [65535, 0], "jerking his head till": [65535, 0], "his head till his": [65535, 0], "head till his ears": [65535, 0], "till his ears flapped": [65535, 0], "his ears flapped again": [65535, 0], "ears flapped again but": [65535, 0], "flapped again but he": [65535, 0], "again but he grew": [65535, 0], "but he grew tired": [65535, 0], "he grew tired once": [65535, 0], "grew tired once more": [65535, 0], "tired once more after": [65535, 0], "once more after a": [65535, 0], "more after a while": [65535, 0], "after a while tried": [65535, 0], "a while tried to": [65535, 0], "while tried to amuse": [65535, 0], "tried to amuse himself": [65535, 0], "to amuse himself with": [65535, 0], "amuse himself with a": [65535, 0], "himself with a fly": [65535, 0], "with a fly but": [65535, 0], "a fly but found": [65535, 0], "fly but found no": [65535, 0], "but found no relief": [65535, 0], "found no relief followed": [65535, 0], "no relief followed an": [65535, 0], "relief followed an ant": [65535, 0], "followed an ant around": [65535, 0], "an ant around with": [65535, 0], "ant around with his": [65535, 0], "around with his nose": [65535, 0], "with his nose close": [65535, 0], "his nose close to": [65535, 0], "nose close to the": [65535, 0], "close to the floor": [65535, 0], "to the floor and": [65535, 0], "the floor and quickly": [65535, 0], "floor and quickly wearied": [65535, 0], "and quickly wearied of": [65535, 0], "quickly wearied of that": [65535, 0], "wearied of that yawned": [65535, 0], "of that yawned sighed": [65535, 0], "that yawned sighed forgot": [65535, 0], "yawned sighed forgot the": [65535, 0], "sighed forgot the beetle": [65535, 0], "forgot the beetle entirely": [65535, 0], "the beetle entirely and": [65535, 0], "beetle entirely and sat": [65535, 0], "entirely and sat down": [65535, 0], "and sat down on": [65535, 0], "sat down on it": [65535, 0], "down on it then": [65535, 0], "on it then there": [65535, 0], "it then there was": [65535, 0], "then there was a": [65535, 0], "there was a wild": [65535, 0], "was a wild yelp": [65535, 0], "a wild yelp of": [65535, 0], "wild yelp of agony": [65535, 0], "yelp of agony and": [65535, 0], "of agony and the": [65535, 0], "agony and the poodle": [65535, 0], "and the poodle went": [65535, 0], "the poodle went sailing": [65535, 0], "poodle went sailing up": [65535, 0], "went sailing up the": [65535, 0], "sailing up the aisle": [65535, 0], "up the aisle the": [65535, 0], "the aisle the yelps": [65535, 0], "aisle the yelps continued": [65535, 0], "the yelps continued and": [65535, 0], "yelps continued and so": [65535, 0], "continued and so did": [65535, 0], "and so did the": [65535, 0], "so did the dog": [65535, 0], "did the dog he": [65535, 0], "the dog he crossed": [65535, 0], "dog he crossed the": [65535, 0], "he crossed the house": [65535, 0], "crossed the house in": [65535, 0], "the house in front": [65535, 0], "house in front of": [65535, 0], "in front of the": [65535, 0], "front of the altar": [65535, 0], "of the altar he": [65535, 0], "the altar he flew": [65535, 0], "altar he flew down": [65535, 0], "he flew down the": [65535, 0], "flew down the other": [65535, 0], "down the other aisle": [65535, 0], "the other aisle he": [65535, 0], "other aisle he crossed": [65535, 0], "aisle he crossed before": [65535, 0], "he crossed before the": [65535, 0], "crossed before the doors": [65535, 0], "before the doors he": [65535, 0], "the doors he clamored": [65535, 0], "doors he clamored up": [65535, 0], "he clamored up the": [65535, 0], "clamored up the home": [65535, 0], "up the home stretch": [65535, 0], "the home stretch his": [65535, 0], "home stretch his anguish": [65535, 0], "stretch his anguish grew": [65535, 0], "his anguish grew with": [65535, 0], "anguish grew with his": [65535, 0], "grew with his progress": [65535, 0], "with his progress till": [65535, 0], "his progress till presently": [65535, 0], "progress till presently he": [65535, 0], "till presently he was": [65535, 0], "presently he was but": [65535, 0], "he was but a": [65535, 0], "was but a woolly": [65535, 0], "but a woolly comet": [65535, 0], "a woolly comet moving": [65535, 0], "woolly comet moving in": [65535, 0], "comet moving in its": [65535, 0], "moving in its orbit": [65535, 0], "in its orbit with": [65535, 0], "its orbit with the": [65535, 0], "orbit with the gleam": [65535, 0], "with the gleam and": [65535, 0], "the gleam and the": [65535, 0], "gleam and the speed": [65535, 0], "and the speed of": [65535, 0], "the speed of light": [65535, 0], "speed of light at": [65535, 0], "of light at last": [65535, 0], "light at last the": [65535, 0], "at last the frantic": [65535, 0], "last the frantic sufferer": [65535, 0], "the frantic sufferer sheered": [65535, 0], "frantic sufferer sheered from": [65535, 0], "sufferer sheered from its": [65535, 0], "sheered from its course": [65535, 0], "from its course and": [65535, 0], "its course and sprang": [65535, 0], "course and sprang into": [65535, 0], "and sprang into its": [65535, 0], "sprang into its master's": [65535, 0], "into its master's lap": [65535, 0], "its master's lap he": [65535, 0], "master's lap he flung": [65535, 0], "lap he flung it": [65535, 0], "he flung it out": [65535, 0], "flung it out of": [65535, 0], "it out of the": [65535, 0], "out of the window": [65535, 0], "of the window and": [65535, 0], "the window and the": [65535, 0], "window and the voice": [65535, 0], "and the voice of": [65535, 0], "the voice of distress": [65535, 0], "voice of distress quickly": [65535, 0], "of distress quickly thinned": [65535, 0], "distress quickly thinned away": [65535, 0], "quickly thinned away and": [65535, 0], "thinned away and died": [65535, 0], "away and died in": [65535, 0], "and died in the": [65535, 0], "died in the distance": [65535, 0], "in the distance by": [65535, 0], "the distance by this": [65535, 0], "distance by this time": [65535, 0], "by this time the": [65535, 0], "this time the whole": [65535, 0], "time the whole church": [65535, 0], "the whole church was": [65535, 0], "whole church was red": [65535, 0], "church was red faced": [65535, 0], "was red faced and": [65535, 0], "red faced and suffocating": [65535, 0], "faced and suffocating with": [65535, 0], "and suffocating with suppressed": [65535, 0], "suffocating with suppressed laughter": [65535, 0], "with suppressed laughter and": [65535, 0], "suppressed laughter and the": [65535, 0], "laughter and the sermon": [65535, 0], "and the sermon had": [65535, 0], "the sermon had come": [65535, 0], "sermon had come to": [65535, 0], "had come to a": [65535, 0], "come to a dead": [65535, 0], "to a dead standstill": [65535, 0], "a dead standstill the": [65535, 0], "dead standstill the discourse": [65535, 0], "standstill the discourse was": [65535, 0], "the discourse was resumed": [65535, 0], "discourse was resumed presently": [65535, 0], "was resumed presently but": [65535, 0], "resumed presently but it": [65535, 0], "presently but it went": [65535, 0], "but it went lame": [65535, 0], "it went lame and": [65535, 0], "went lame and halting": [65535, 0], "lame and halting all": [65535, 0], "and halting all possibility": [65535, 0], "halting all possibility of": [65535, 0], "all possibility of impressiveness": [65535, 0], "possibility of impressiveness being": [65535, 0], "of impressiveness being at": [65535, 0], "impressiveness being at an": [65535, 0], "being at an end": [65535, 0], "at an end for": [65535, 0], "an end for even": [65535, 0], "end for even the": [65535, 0], "for even the gravest": [65535, 0], "even the gravest sentiments": [65535, 0], "the gravest sentiments were": [65535, 0], "gravest sentiments were constantly": [65535, 0], "sentiments were constantly being": [65535, 0], "were constantly being received": [65535, 0], "constantly being received with": [65535, 0], "being received with a": [65535, 0], "received with a smothered": [65535, 0], "with a smothered burst": [65535, 0], "a smothered burst of": [65535, 0], "smothered burst of unholy": [65535, 0], "burst of unholy mirth": [65535, 0], "of unholy mirth under": [65535, 0], "unholy mirth under cover": [65535, 0], "mirth under cover of": [65535, 0], "under cover of some": [65535, 0], "cover of some remote": [65535, 0], "of some remote pew": [65535, 0], "some remote pew back": [65535, 0], "remote pew back as": [65535, 0], "pew back as if": [65535, 0], "back as if the": [65535, 0], "as if the poor": [65535, 0], "if the poor parson": [65535, 0], "the poor parson had": [65535, 0], "poor parson had said": [65535, 0], "parson had said a": [65535, 0], "had said a rarely": [65535, 0], "said a rarely facetious": [65535, 0], "a rarely facetious thing": [65535, 0], "rarely facetious thing it": [65535, 0], "facetious thing it was": [65535, 0], "thing it was a": [65535, 0], "it was a genuine": [65535, 0], "was a genuine relief": [65535, 0], "a genuine relief to": [65535, 0], "genuine relief to the": [65535, 0], "relief to the whole": [65535, 0], "to the whole congregation": [65535, 0], "the whole congregation when": [65535, 0], "whole congregation when the": [65535, 0], "congregation when the ordeal": [65535, 0], "when the ordeal was": [65535, 0], "the ordeal was over": [65535, 0], "ordeal was over and": [65535, 0], "was over and the": [65535, 0], "over and the benediction": [65535, 0], "and the benediction pronounced": [65535, 0], "the benediction pronounced tom": [65535, 0], "benediction pronounced tom sawyer": [65535, 0], "pronounced tom sawyer went": [65535, 0], "tom sawyer went home": [65535, 0], "sawyer went home quite": [65535, 0], "went home quite cheerful": [65535, 0], "home quite cheerful thinking": [65535, 0], "quite cheerful thinking to": [65535, 0], "cheerful thinking to himself": [65535, 0], "thinking to himself that": [65535, 0], "to himself that there": [65535, 0], "himself that there was": [65535, 0], "that there was some": [65535, 0], "there was some satisfaction": [65535, 0], "was some satisfaction about": [65535, 0], "some satisfaction about divine": [65535, 0], "satisfaction about divine service": [65535, 0], "about divine service when": [65535, 0], "divine service when there": [65535, 0], "service when there was": [65535, 0], "when there was a": [65535, 0], "there was a bit": [65535, 0], "was a bit of": [65535, 0], "a bit of variety": [65535, 0], "bit of variety in": [65535, 0], "of variety in it": [65535, 0], "variety in it he": [65535, 0], "in it he had": [65535, 0], "it he had but": [65535, 0], "he had but one": [65535, 0], "had but one marring": [65535, 0], "but one marring thought": [65535, 0], "one marring thought he": [65535, 0], "marring thought he was": [65535, 0], "thought he was willing": [65535, 0], "he was willing that": [65535, 0], "was willing that the": [65535, 0], "willing that the dog": [65535, 0], "that the dog should": [65535, 0], "the dog should play": [65535, 0], "dog should play with": [65535, 0], "should play with his": [65535, 0], "play with his pinchbug": [65535, 0], "with his pinchbug but": [65535, 0], "his pinchbug but he": [65535, 0], "pinchbug but he did": [65535, 0], "but he did not": [65535, 0], "he did not think": [65535, 0], "did not think it": [65535, 0], "not think it was": [65535, 0], "think it was upright": [65535, 0], "it was upright in": [65535, 0], "was upright in him": [65535, 0], "upright in him to": [65535, 0], "in him to carry": [65535, 0], "him to carry it": [65535, 0], "to carry it off": [65535, 0], "about half past ten the": [65535, 0], "half past ten the cracked": [65535, 0], "past ten the cracked bell": [65535, 0], "ten the cracked bell of": [65535, 0], "the cracked bell of the": [65535, 0], "cracked bell of the small": [65535, 0], "bell of the small church": [65535, 0], "of the small church began": [65535, 0], "the small church began to": [65535, 0], "small church began to ring": [65535, 0], "church began to ring and": [65535, 0], "began to ring and presently": [65535, 0], "to ring and presently the": [65535, 0], "ring and presently the people": [65535, 0], "and presently the people began": [65535, 0], "presently the people began to": [65535, 0], "the people began to gather": [65535, 0], "people began to gather for": [65535, 0], "began to gather for the": [65535, 0], "to gather for the morning": [65535, 0], "gather for the morning sermon": [65535, 0], "for the morning sermon the": [65535, 0], "the morning sermon the sunday": [65535, 0], "morning sermon the sunday school": [65535, 0], "sermon the sunday school children": [65535, 0], "the sunday school children distributed": [65535, 0], "sunday school children distributed themselves": [65535, 0], "school children distributed themselves about": [65535, 0], "children distributed themselves about the": [65535, 0], "distributed themselves about the house": [65535, 0], "themselves about the house and": [65535, 0], "about the house and occupied": [65535, 0], "the house and occupied pews": [65535, 0], "house and occupied pews with": [65535, 0], "and occupied pews with their": [65535, 0], "occupied pews with their parents": [65535, 0], "pews with their parents so": [65535, 0], "with their parents so as": [65535, 0], "their parents so as to": [65535, 0], "parents so as to be": [65535, 0], "so as to be under": [65535, 0], "as to be under supervision": [65535, 0], "to be under supervision aunt": [65535, 0], "be under supervision aunt polly": [65535, 0], "under supervision aunt polly came": [65535, 0], "supervision aunt polly came and": [65535, 0], "aunt polly came and tom": [65535, 0], "polly came and tom and": [65535, 0], "came and tom and sid": [65535, 0], "and tom and sid and": [65535, 0], "tom and sid and mary": [65535, 0], "and sid and mary sat": [65535, 0], "sid and mary sat with": [65535, 0], "and mary sat with her": [65535, 0], "mary sat with her tom": [65535, 0], "sat with her tom being": [65535, 0], "with her tom being placed": [65535, 0], "her tom being placed next": [65535, 0], "tom being placed next the": [65535, 0], "being placed next the aisle": [65535, 0], "placed next the aisle in": [65535, 0], "next the aisle in order": [65535, 0], "the aisle in order that": [65535, 0], "aisle in order that he": [65535, 0], "in order that he might": [65535, 0], "order that he might be": [65535, 0], "that he might be as": [65535, 0], "he might be as far": [65535, 0], "might be as far away": [65535, 0], "be as far away from": [65535, 0], "as far away from the": [65535, 0], "far away from the open": [65535, 0], "away from the open window": [65535, 0], "from the open window and": [65535, 0], "the open window and the": [65535, 0], "open window and the seductive": [65535, 0], "window and the seductive outside": [65535, 0], "and the seductive outside summer": [65535, 0], "the seductive outside summer scenes": [65535, 0], "seductive outside summer scenes as": [65535, 0], "outside summer scenes as possible": [65535, 0], "summer scenes as possible the": [65535, 0], "scenes as possible the crowd": [65535, 0], "as possible the crowd filed": [65535, 0], "possible the crowd filed up": [65535, 0], "the crowd filed up the": [65535, 0], "crowd filed up the aisles": [65535, 0], "filed up the aisles the": [65535, 0], "up the aisles the aged": [65535, 0], "the aisles the aged and": [65535, 0], "aisles the aged and needy": [65535, 0], "the aged and needy postmaster": [65535, 0], "aged and needy postmaster who": [65535, 0], "and needy postmaster who had": [65535, 0], "needy postmaster who had seen": [65535, 0], "postmaster who had seen better": [65535, 0], "who had seen better days": [65535, 0], "had seen better days the": [65535, 0], "seen better days the mayor": [65535, 0], "better days the mayor and": [65535, 0], "days the mayor and his": [65535, 0], "the mayor and his wife": [65535, 0], "mayor and his wife for": [65535, 0], "and his wife for they": [65535, 0], "his wife for they had": [65535, 0], "wife for they had a": [65535, 0], "for they had a mayor": [65535, 0], "they had a mayor there": [65535, 0], "had a mayor there among": [65535, 0], "a mayor there among other": [65535, 0], "mayor there among other unnecessaries": [65535, 0], "there among other unnecessaries the": [65535, 0], "among other unnecessaries the justice": [65535, 0], "other unnecessaries the justice of": [65535, 0], "unnecessaries the justice of the": [65535, 0], "the justice of the peace": [65535, 0], "justice of the peace the": [65535, 0], "of the peace the widow": [65535, 0], "the peace the widow douglass": [65535, 0], "peace the widow douglass fair": [65535, 0], "the widow douglass fair smart": [65535, 0], "widow douglass fair smart and": [65535, 0], "douglass fair smart and forty": [65535, 0], "fair smart and forty a": [65535, 0], "smart and forty a generous": [65535, 0], "and forty a generous good": [65535, 0], "forty a generous good hearted": [65535, 0], "a generous good hearted soul": [65535, 0], "generous good hearted soul and": [65535, 0], "good hearted soul and well": [65535, 0], "hearted soul and well to": [65535, 0], "soul and well to do": [65535, 0], "and well to do her": [65535, 0], "well to do her hill": [65535, 0], "to do her hill mansion": [65535, 0], "do her hill mansion the": [65535, 0], "her hill mansion the only": [65535, 0], "hill mansion the only palace": [65535, 0], "mansion the only palace in": [65535, 0], "the only palace in the": [65535, 0], "only palace in the town": [65535, 0], "palace in the town and": [65535, 0], "in the town and the": [65535, 0], "the town and the most": [65535, 0], "town and the most hospitable": [65535, 0], "and the most hospitable and": [65535, 0], "the most hospitable and much": [65535, 0], "most hospitable and much the": [65535, 0], "hospitable and much the most": [65535, 0], "and much the most lavish": [65535, 0], "much the most lavish in": [65535, 0], "the most lavish in the": [65535, 0], "most lavish in the matter": [65535, 0], "lavish in the matter of": [65535, 0], "in the matter of festivities": [65535, 0], "the matter of festivities that": [65535, 0], "matter of festivities that st": [65535, 0], "of festivities that st petersburg": [65535, 0], "festivities that st petersburg could": [65535, 0], "that st petersburg could boast": [65535, 0], "st petersburg could boast the": [65535, 0], "petersburg could boast the bent": [65535, 0], "could boast the bent and": [65535, 0], "boast the bent and venerable": [65535, 0], "the bent and venerable major": [65535, 0], "bent and venerable major and": [65535, 0], "and venerable major and mrs": [65535, 0], "venerable major and mrs ward": [65535, 0], "major and mrs ward lawyer": [65535, 0], "and mrs ward lawyer riverson": [65535, 0], "mrs ward lawyer riverson the": [65535, 0], "ward lawyer riverson the new": [65535, 0], "lawyer riverson the new notable": [65535, 0], "riverson the new notable from": [65535, 0], "the new notable from a": [65535, 0], "new notable from a distance": [65535, 0], "notable from a distance next": [65535, 0], "from a distance next the": [65535, 0], "a distance next the belle": [65535, 0], "distance next the belle of": [65535, 0], "next the belle of the": [65535, 0], "the belle of the village": [65535, 0], "belle of the village followed": [65535, 0], "of the village followed by": [65535, 0], "the village followed by a": [65535, 0], "village followed by a troop": [65535, 0], "followed by a troop of": [65535, 0], "by a troop of lawn": [65535, 0], "a troop of lawn clad": [65535, 0], "troop of lawn clad and": [65535, 0], "of lawn clad and ribbon": [65535, 0], "lawn clad and ribbon decked": [65535, 0], "clad and ribbon decked young": [65535, 0], "and ribbon decked young heart": [65535, 0], "ribbon decked young heart breakers": [65535, 0], "decked young heart breakers then": [65535, 0], "young heart breakers then all": [65535, 0], "heart breakers then all the": [65535, 0], "breakers then all the young": [65535, 0], "then all the young clerks": [65535, 0], "all the young clerks in": [65535, 0], "the young clerks in town": [65535, 0], "young clerks in town in": [65535, 0], "clerks in town in a": [65535, 0], "in town in a body": [65535, 0], "town in a body for": [65535, 0], "in a body for they": [65535, 0], "a body for they had": [65535, 0], "body for they had stood": [65535, 0], "for they had stood in": [65535, 0], "they had stood in the": [65535, 0], "had stood in the vestibule": [65535, 0], "stood in the vestibule sucking": [65535, 0], "in the vestibule sucking their": [65535, 0], "the vestibule sucking their cane": [65535, 0], "vestibule sucking their cane heads": [65535, 0], "sucking their cane heads a": [65535, 0], "their cane heads a circling": [65535, 0], "cane heads a circling wall": [65535, 0], "heads a circling wall of": [65535, 0], "a circling wall of oiled": [65535, 0], "circling wall of oiled and": [65535, 0], "wall of oiled and simpering": [65535, 0], "of oiled and simpering admirers": [65535, 0], "oiled and simpering admirers till": [65535, 0], "and simpering admirers till the": [65535, 0], "simpering admirers till the last": [65535, 0], "admirers till the last girl": [65535, 0], "till the last girl had": [65535, 0], "the last girl had run": [65535, 0], "last girl had run their": [65535, 0], "girl had run their gantlet": [65535, 0], "had run their gantlet and": [65535, 0], "run their gantlet and last": [65535, 0], "their gantlet and last of": [65535, 0], "gantlet and last of all": [65535, 0], "and last of all came": [65535, 0], "last of all came the": [65535, 0], "of all came the model": [65535, 0], "all came the model boy": [65535, 0], "came the model boy willie": [65535, 0], "the model boy willie mufferson": [65535, 0], "model boy willie mufferson taking": [65535, 0], "boy willie mufferson taking as": [65535, 0], "willie mufferson taking as heedful": [65535, 0], "mufferson taking as heedful care": [65535, 0], "taking as heedful care of": [65535, 0], "as heedful care of his": [65535, 0], "heedful care of his mother": [65535, 0], "care of his mother as": [65535, 0], "of his mother as if": [65535, 0], "his mother as if she": [65535, 0], "mother as if she were": [65535, 0], "as if she were cut": [65535, 0], "if she were cut glass": [65535, 0], "she were cut glass he": [65535, 0], "were cut glass he always": [65535, 0], "cut glass he always brought": [65535, 0], "glass he always brought his": [65535, 0], "he always brought his mother": [65535, 0], "always brought his mother to": [65535, 0], "brought his mother to church": [65535, 0], "his mother to church and": [65535, 0], "mother to church and was": [65535, 0], "to church and was the": [65535, 0], "church and was the pride": [65535, 0], "and was the pride of": [65535, 0], "was the pride of all": [65535, 0], "the pride of all the": [65535, 0], "pride of all the matrons": [65535, 0], "of all the matrons the": [65535, 0], "all the matrons the boys": [65535, 0], "the matrons the boys all": [65535, 0], "matrons the boys all hated": [65535, 0], "the boys all hated him": [65535, 0], "boys all hated him he": [65535, 0], "all hated him he was": [65535, 0], "hated him he was so": [65535, 0], "him he was so good": [65535, 0], "he was so good and": [65535, 0], "was so good and besides": [65535, 0], "so good and besides he": [65535, 0], "good and besides he had": [65535, 0], "and besides he had been": [65535, 0], "besides he had been thrown": [65535, 0], "he had been thrown up": [65535, 0], "had been thrown up to": [65535, 0], "been thrown up to them": [65535, 0], "thrown up to them so": [65535, 0], "up to them so much": [65535, 0], "to them so much his": [65535, 0], "them so much his white": [65535, 0], "so much his white handkerchief": [65535, 0], "much his white handkerchief was": [65535, 0], "his white handkerchief was hanging": [65535, 0], "white handkerchief was hanging out": [65535, 0], "handkerchief was hanging out of": [65535, 0], "was hanging out of his": [65535, 0], "hanging out of his pocket": [65535, 0], "out of his pocket behind": [65535, 0], "of his pocket behind as": [65535, 0], "his pocket behind as usual": [65535, 0], "pocket behind as usual on": [65535, 0], "behind as usual on sundays": [65535, 0], "as usual on sundays accidentally": [65535, 0], "usual on sundays accidentally tom": [65535, 0], "on sundays accidentally tom had": [65535, 0], "sundays accidentally tom had no": [65535, 0], "accidentally tom had no handkerchief": [65535, 0], "tom had no handkerchief and": [65535, 0], "had no handkerchief and he": [65535, 0], "no handkerchief and he looked": [65535, 0], "handkerchief and he looked upon": [65535, 0], "and he looked upon boys": [65535, 0], "he looked upon boys who": [65535, 0], "looked upon boys who had": [65535, 0], "upon boys who had as": [65535, 0], "boys who had as snobs": [65535, 0], "who had as snobs the": [65535, 0], "had as snobs the congregation": [65535, 0], "as snobs the congregation being": [65535, 0], "snobs the congregation being fully": [65535, 0], "the congregation being fully assembled": [65535, 0], "congregation being fully assembled now": [65535, 0], "being fully assembled now the": [65535, 0], "fully assembled now the bell": [65535, 0], "assembled now the bell rang": [65535, 0], "now the bell rang once": [65535, 0], "the bell rang once more": [65535, 0], "bell rang once more to": [65535, 0], "rang once more to warn": [65535, 0], "once more to warn laggards": [65535, 0], "more to warn laggards and": [65535, 0], "to warn laggards and stragglers": [65535, 0], "warn laggards and stragglers and": [65535, 0], "laggards and stragglers and then": [65535, 0], "and stragglers and then a": [65535, 0], "stragglers and then a solemn": [65535, 0], "and then a solemn hush": [65535, 0], "then a solemn hush fell": [65535, 0], "a solemn hush fell upon": [65535, 0], "solemn hush fell upon the": [65535, 0], "hush fell upon the church": [65535, 0], "fell upon the church which": [65535, 0], "upon the church which was": [65535, 0], "the church which was only": [65535, 0], "church which was only broken": [65535, 0], "which was only broken by": [65535, 0], "was only broken by the": [65535, 0], "only broken by the tittering": [65535, 0], "broken by the tittering and": [65535, 0], "by the tittering and whispering": [65535, 0], "the tittering and whispering of": [65535, 0], "tittering and whispering of the": [65535, 0], "and whispering of the choir": [65535, 0], "whispering of the choir in": [65535, 0], "of the choir in the": [65535, 0], "the choir in the gallery": [65535, 0], "choir in the gallery the": [65535, 0], "in the gallery the choir": [65535, 0], "the gallery the choir always": [65535, 0], "gallery the choir always tittered": [65535, 0], "the choir always tittered and": [65535, 0], "choir always tittered and whispered": [65535, 0], "always tittered and whispered all": [65535, 0], "tittered and whispered all through": [65535, 0], "and whispered all through service": [65535, 0], "whispered all through service there": [65535, 0], "all through service there was": [65535, 0], "through service there was once": [65535, 0], "service there was once a": [65535, 0], "there was once a church": [65535, 0], "was once a church choir": [65535, 0], "once a church choir that": [65535, 0], "a church choir that was": [65535, 0], "church choir that was not": [65535, 0], "choir that was not ill": [65535, 0], "that was not ill bred": [65535, 0], "was not ill bred but": [65535, 0], "not ill bred but i": [65535, 0], "ill bred but i have": [65535, 0], "bred but i have forgotten": [65535, 0], "but i have forgotten where": [65535, 0], "i have forgotten where it": [65535, 0], "have forgotten where it was": [65535, 0], "forgotten where it was now": [65535, 0], "where it was now it": [65535, 0], "it was now it was": [65535, 0], "was now it was a": [65535, 0], "now it was a great": [65535, 0], "it was a great many": [65535, 0], "was a great many years": [65535, 0], "a great many years ago": [65535, 0], "great many years ago and": [65535, 0], "many years ago and i": [65535, 0], "years ago and i can": [65535, 0], "ago and i can scarcely": [65535, 0], "and i can scarcely remember": [65535, 0], "i can scarcely remember anything": [65535, 0], "can scarcely remember anything about": [65535, 0], "scarcely remember anything about it": [65535, 0], "remember anything about it but": [65535, 0], "anything about it but i": [65535, 0], "about it but i think": [65535, 0], "it but i think it": [65535, 0], "but i think it was": [65535, 0], "i think it was in": [65535, 0], "think it was in some": [65535, 0], "it was in some foreign": [65535, 0], "was in some foreign country": [65535, 0], "in some foreign country the": [65535, 0], "some foreign country the minister": [65535, 0], "foreign country the minister gave": [65535, 0], "country the minister gave out": [65535, 0], "the minister gave out the": [65535, 0], "minister gave out the hymn": [65535, 0], "gave out the hymn and": [65535, 0], "out the hymn and read": [65535, 0], "the hymn and read it": [65535, 0], "hymn and read it through": [65535, 0], "and read it through with": [65535, 0], "read it through with a": [65535, 0], "it through with a relish": [65535, 0], "through with a relish in": [65535, 0], "with a relish in a": [65535, 0], "a relish in a peculiar": [65535, 0], "relish in a peculiar style": [65535, 0], "in a peculiar style which": [65535, 0], "a peculiar style which was": [65535, 0], "peculiar style which was much": [65535, 0], "style which was much admired": [65535, 0], "which was much admired in": [65535, 0], "was much admired in that": [65535, 0], "much admired in that part": [65535, 0], "admired in that part of": [65535, 0], "in that part of the": [65535, 0], "that part of the country": [65535, 0], "part of the country his": [65535, 0], "of the country his voice": [65535, 0], "the country his voice began": [65535, 0], "country his voice began on": [65535, 0], "his voice began on a": [65535, 0], "voice began on a medium": [65535, 0], "began on a medium key": [65535, 0], "on a medium key and": [65535, 0], "a medium key and climbed": [65535, 0], "medium key and climbed steadily": [65535, 0], "key and climbed steadily up": [65535, 0], "and climbed steadily up till": [65535, 0], "climbed steadily up till it": [65535, 0], "steadily up till it reached": [65535, 0], "up till it reached a": [65535, 0], "till it reached a certain": [65535, 0], "it reached a certain point": [65535, 0], "reached a certain point where": [65535, 0], "a certain point where it": [65535, 0], "certain point where it bore": [65535, 0], "point where it bore with": [65535, 0], "where it bore with strong": [65535, 0], "it bore with strong emphasis": [65535, 0], "bore with strong emphasis upon": [65535, 0], "with strong emphasis upon the": [65535, 0], "strong emphasis upon the topmost": [65535, 0], "emphasis upon the topmost word": [65535, 0], "upon the topmost word and": [65535, 0], "the topmost word and then": [65535, 0], "topmost word and then plunged": [65535, 0], "word and then plunged down": [65535, 0], "and then plunged down as": [65535, 0], "then plunged down as if": [65535, 0], "plunged down as if from": [65535, 0], "down as if from a": [65535, 0], "as if from a spring": [65535, 0], "if from a spring board": [65535, 0], "from a spring board shall": [65535, 0], "a spring board shall i": [65535, 0], "spring board shall i be": [65535, 0], "board shall i be car": [65535, 0], "shall i be car ri": [65535, 0], "i be car ri ed": [65535, 0], "be car ri ed toe": [65535, 0], "car ri ed toe the": [65535, 0], "ri ed toe the skies": [65535, 0], "ed toe the skies on": [65535, 0], "toe the skies on flow'ry": [65535, 0], "the skies on flow'ry beds": [65535, 0], "skies on flow'ry beds of": [65535, 0], "on flow'ry beds of ease": [65535, 0], "flow'ry beds of ease whilst": [65535, 0], "beds of ease whilst others": [65535, 0], "of ease whilst others fight": [65535, 0], "ease whilst others fight to": [65535, 0], "whilst others fight to win": [65535, 0], "others fight to win the": [65535, 0], "fight to win the prize": [65535, 0], "to win the prize and": [65535, 0], "win the prize and sail": [65535, 0], "the prize and sail thro'": [65535, 0], "prize and sail thro' bloody": [65535, 0], "and sail thro' bloody seas": [65535, 0], "sail thro' bloody seas he": [65535, 0], "thro' bloody seas he was": [65535, 0], "bloody seas he was regarded": [65535, 0], "seas he was regarded as": [65535, 0], "he was regarded as a": [65535, 0], "was regarded as a wonderful": [65535, 0], "regarded as a wonderful reader": [65535, 0], "as a wonderful reader at": [65535, 0], "a wonderful reader at church": [65535, 0], "wonderful reader at church sociables": [65535, 0], "reader at church sociables he": [65535, 0], "at church sociables he was": [65535, 0], "church sociables he was always": [65535, 0], "sociables he was always called": [65535, 0], "he was always called upon": [65535, 0], "was always called upon to": [65535, 0], "always called upon to read": [65535, 0], "called upon to read poetry": [65535, 0], "upon to read poetry and": [65535, 0], "to read poetry and when": [65535, 0], "read poetry and when he": [65535, 0], "poetry and when he was": [65535, 0], "and when he was through": [65535, 0], "when he was through the": [65535, 0], "he was through the ladies": [65535, 0], "was through the ladies would": [65535, 0], "through the ladies would lift": [65535, 0], "the ladies would lift up": [65535, 0], "ladies would lift up their": [65535, 0], "would lift up their hands": [65535, 0], "lift up their hands and": [65535, 0], "up their hands and let": [65535, 0], "their hands and let them": [65535, 0], "hands and let them fall": [65535, 0], "and let them fall helplessly": [65535, 0], "let them fall helplessly in": [65535, 0], "them fall helplessly in their": [65535, 0], "fall helplessly in their laps": [65535, 0], "helplessly in their laps and": [65535, 0], "in their laps and wall": [65535, 0], "their laps and wall their": [65535, 0], "laps and wall their eyes": [65535, 0], "and wall their eyes and": [65535, 0], "wall their eyes and shake": [65535, 0], "their eyes and shake their": [65535, 0], "eyes and shake their heads": [65535, 0], "and shake their heads as": [65535, 0], "shake their heads as much": [65535, 0], "their heads as much as": [65535, 0], "heads as much as to": [65535, 0], "as much as to say": [65535, 0], "much as to say words": [65535, 0], "as to say words cannot": [65535, 0], "to say words cannot express": [65535, 0], "say words cannot express it": [65535, 0], "words cannot express it it": [65535, 0], "cannot express it it is": [65535, 0], "express it it is too": [65535, 0], "it it is too beautiful": [65535, 0], "it is too beautiful too": [65535, 0], "is too beautiful too beautiful": [65535, 0], "too beautiful too beautiful for": [65535, 0], "beautiful too beautiful for this": [65535, 0], "too beautiful for this mortal": [65535, 0], "beautiful for this mortal earth": [65535, 0], "for this mortal earth after": [65535, 0], "this mortal earth after the": [65535, 0], "mortal earth after the hymn": [65535, 0], "earth after the hymn had": [65535, 0], "after the hymn had been": [65535, 0], "the hymn had been sung": [65535, 0], "hymn had been sung the": [65535, 0], "had been sung the rev": [65535, 0], "been sung the rev mr": [65535, 0], "sung the rev mr sprague": [65535, 0], "the rev mr sprague turned": [65535, 0], "rev mr sprague turned himself": [65535, 0], "mr sprague turned himself into": [65535, 0], "sprague turned himself into a": [65535, 0], "turned himself into a bulletin": [65535, 0], "himself into a bulletin board": [65535, 0], "into a bulletin board and": [65535, 0], "a bulletin board and read": [65535, 0], "bulletin board and read off": [65535, 0], "board and read off notices": [65535, 0], "and read off notices of": [65535, 0], "read off notices of meetings": [65535, 0], "off notices of meetings and": [65535, 0], "notices of meetings and societies": [65535, 0], "of meetings and societies and": [65535, 0], "meetings and societies and things": [65535, 0], "and societies and things till": [65535, 0], "societies and things till it": [65535, 0], "and things till it seemed": [65535, 0], "things till it seemed that": [65535, 0], "till it seemed that the": [65535, 0], "it seemed that the list": [65535, 0], "seemed that the list would": [65535, 0], "that the list would stretch": [65535, 0], "the list would stretch out": [65535, 0], "list would stretch out to": [65535, 0], "would stretch out to the": [65535, 0], "stretch out to the crack": [65535, 0], "out to the crack of": [65535, 0], "to the crack of doom": [65535, 0], "the crack of doom a": [65535, 0], "crack of doom a queer": [65535, 0], "of doom a queer custom": [65535, 0], "doom a queer custom which": [65535, 0], "a queer custom which is": [65535, 0], "queer custom which is still": [65535, 0], "custom which is still kept": [65535, 0], "which is still kept up": [65535, 0], "is still kept up in": [65535, 0], "still kept up in america": [65535, 0], "kept up in america even": [65535, 0], "up in america even in": [65535, 0], "in america even in cities": [65535, 0], "america even in cities away": [65535, 0], "even in cities away here": [65535, 0], "in cities away here in": [65535, 0], "cities away here in this": [65535, 0], "away here in this age": [65535, 0], "here in this age of": [65535, 0], "in this age of abundant": [65535, 0], "this age of abundant newspapers": [65535, 0], "age of abundant newspapers often": [65535, 0], "of abundant newspapers often the": [65535, 0], "abundant newspapers often the less": [65535, 0], "newspapers often the less there": [65535, 0], "often the less there is": [65535, 0], "the less there is to": [65535, 0], "less there is to justify": [65535, 0], "there is to justify a": [65535, 0], "is to justify a traditional": [65535, 0], "to justify a traditional custom": [65535, 0], "justify a traditional custom the": [65535, 0], "a traditional custom the harder": [65535, 0], "traditional custom the harder it": [65535, 0], "custom the harder it is": [65535, 0], "the harder it is to": [65535, 0], "harder it is to get": [65535, 0], "it is to get rid": [65535, 0], "is to get rid of": [65535, 0], "to get rid of it": [65535, 0], "get rid of it and": [65535, 0], "rid of it and now": [65535, 0], "of it and now the": [65535, 0], "it and now the minister": [65535, 0], "and now the minister prayed": [65535, 0], "now the minister prayed a": [65535, 0], "the minister prayed a good": [65535, 0], "minister prayed a good generous": [65535, 0], "prayed a good generous prayer": [65535, 0], "a good generous prayer it": [65535, 0], "good generous prayer it was": [65535, 0], "generous prayer it was and": [65535, 0], "prayer it was and went": [65535, 0], "it was and went into": [65535, 0], "was and went into details": [65535, 0], "and went into details it": [65535, 0], "went into details it pleaded": [65535, 0], "into details it pleaded for": [65535, 0], "details it pleaded for the": [65535, 0], "it pleaded for the church": [65535, 0], "pleaded for the church and": [65535, 0], "for the church and the": [65535, 0], "the church and the little": [65535, 0], "church and the little children": [65535, 0], "and the little children of": [65535, 0], "the little children of the": [65535, 0], "little children of the church": [65535, 0], "children of the church for": [65535, 0], "of the church for the": [65535, 0], "the church for the other": [65535, 0], "church for the other churches": [65535, 0], "for the other churches of": [65535, 0], "the other churches of the": [65535, 0], "other churches of the village": [65535, 0], "churches of the village for": [65535, 0], "of the village for the": [65535, 0], "the village for the village": [65535, 0], "village for the village itself": [65535, 0], "for the village itself for": [65535, 0], "the village itself for the": [65535, 0], "village itself for the county": [65535, 0], "itself for the county for": [65535, 0], "for the county for the": [65535, 0], "the county for the state": [65535, 0], "county for the state for": [65535, 0], "for the state for the": [65535, 0], "the state for the state": [65535, 0], "state for the state officers": [65535, 0], "for the state officers for": [65535, 0], "the state officers for the": [65535, 0], "state officers for the united": [65535, 0], "officers for the united states": [65535, 0], "for the united states for": [65535, 0], "the united states for the": [65535, 0], "united states for the churches": [65535, 0], "states for the churches of": [65535, 0], "for the churches of the": [65535, 0], "the churches of the united": [65535, 0], "churches of the united states": [65535, 0], "of the united states for": [65535, 0], "the united states for congress": [65535, 0], "united states for congress for": [65535, 0], "states for congress for the": [65535, 0], "for congress for the president": [65535, 0], "congress for the president for": [65535, 0], "for the president for the": [65535, 0], "the president for the officers": [65535, 0], "president for the officers of": [65535, 0], "for the officers of the": [65535, 0], "the officers of the government": [65535, 0], "officers of the government for": [65535, 0], "of the government for poor": [65535, 0], "the government for poor sailors": [65535, 0], "government for poor sailors tossed": [65535, 0], "for poor sailors tossed by": [65535, 0], "poor sailors tossed by stormy": [65535, 0], "sailors tossed by stormy seas": [65535, 0], "tossed by stormy seas for": [65535, 0], "by stormy seas for the": [65535, 0], "stormy seas for the oppressed": [65535, 0], "seas for the oppressed millions": [65535, 0], "for the oppressed millions groaning": [65535, 0], "the oppressed millions groaning under": [65535, 0], "oppressed millions groaning under the": [65535, 0], "millions groaning under the heel": [65535, 0], "groaning under the heel of": [65535, 0], "under the heel of european": [65535, 0], "the heel of european monarchies": [65535, 0], "heel of european monarchies and": [65535, 0], "of european monarchies and oriental": [65535, 0], "european monarchies and oriental despotisms": [65535, 0], "monarchies and oriental despotisms for": [65535, 0], "and oriental despotisms for such": [65535, 0], "oriental despotisms for such as": [65535, 0], "despotisms for such as have": [65535, 0], "for such as have the": [65535, 0], "such as have the light": [65535, 0], "as have the light and": [65535, 0], "have the light and the": [65535, 0], "the light and the good": [65535, 0], "light and the good tidings": [65535, 0], "and the good tidings and": [65535, 0], "the good tidings and yet": [65535, 0], "good tidings and yet have": [65535, 0], "tidings and yet have not": [65535, 0], "and yet have not eyes": [65535, 0], "yet have not eyes to": [65535, 0], "have not eyes to see": [65535, 0], "not eyes to see nor": [65535, 0], "eyes to see nor ears": [65535, 0], "to see nor ears to": [65535, 0], "see nor ears to hear": [65535, 0], "nor ears to hear withal": [65535, 0], "ears to hear withal for": [65535, 0], "to hear withal for the": [65535, 0], "hear withal for the heathen": [65535, 0], "withal for the heathen in": [65535, 0], "for the heathen in the": [65535, 0], "the heathen in the far": [65535, 0], "heathen in the far islands": [65535, 0], "in the far islands of": [65535, 0], "the far islands of the": [65535, 0], "far islands of the sea": [65535, 0], "islands of the sea and": [65535, 0], "of the sea and closed": [65535, 0], "the sea and closed with": [65535, 0], "sea and closed with a": [65535, 0], "and closed with a supplication": [65535, 0], "closed with a supplication that": [65535, 0], "with a supplication that the": [65535, 0], "a supplication that the words": [65535, 0], "supplication that the words he": [65535, 0], "that the words he was": [65535, 0], "the words he was about": [65535, 0], "words he was about to": [65535, 0], "he was about to speak": [65535, 0], "was about to speak might": [65535, 0], "about to speak might find": [65535, 0], "to speak might find grace": [65535, 0], "speak might find grace and": [65535, 0], "might find grace and favor": [65535, 0], "find grace and favor and": [65535, 0], "grace and favor and be": [65535, 0], "and favor and be as": [65535, 0], "favor and be as seed": [65535, 0], "and be as seed sown": [65535, 0], "be as seed sown in": [65535, 0], "as seed sown in fertile": [65535, 0], "seed sown in fertile ground": [65535, 0], "sown in fertile ground yielding": [65535, 0], "in fertile ground yielding in": [65535, 0], "fertile ground yielding in time": [65535, 0], "ground yielding in time a": [65535, 0], "yielding in time a grateful": [65535, 0], "in time a grateful harvest": [65535, 0], "time a grateful harvest of": [65535, 0], "a grateful harvest of good": [65535, 0], "grateful harvest of good amen": [65535, 0], "harvest of good amen there": [65535, 0], "of good amen there was": [65535, 0], "good amen there was a": [65535, 0], "amen there was a rustling": [65535, 0], "there was a rustling of": [65535, 0], "was a rustling of dresses": [65535, 0], "a rustling of dresses and": [65535, 0], "rustling of dresses and the": [65535, 0], "of dresses and the standing": [65535, 0], "dresses and the standing congregation": [65535, 0], "and the standing congregation sat": [65535, 0], "the standing congregation sat down": [65535, 0], "standing congregation sat down the": [65535, 0], "congregation sat down the boy": [65535, 0], "sat down the boy whose": [65535, 0], "down the boy whose history": [65535, 0], "the boy whose history this": [65535, 0], "boy whose history this book": [65535, 0], "whose history this book relates": [65535, 0], "history this book relates did": [65535, 0], "this book relates did not": [65535, 0], "book relates did not enjoy": [65535, 0], "relates did not enjoy the": [65535, 0], "did not enjoy the prayer": [65535, 0], "not enjoy the prayer he": [65535, 0], "enjoy the prayer he only": [65535, 0], "the prayer he only endured": [65535, 0], "prayer he only endured it": [65535, 0], "he only endured it if": [65535, 0], "only endured it if he": [65535, 0], "endured it if he even": [65535, 0], "it if he even did": [65535, 0], "if he even did that": [65535, 0], "he even did that much": [65535, 0], "even did that much he": [65535, 0], "did that much he was": [65535, 0], "that much he was restive": [65535, 0], "much he was restive all": [65535, 0], "he was restive all through": [65535, 0], "was restive all through it": [65535, 0], "restive all through it he": [65535, 0], "all through it he kept": [65535, 0], "through it he kept tally": [65535, 0], "it he kept tally of": [65535, 0], "he kept tally of the": [65535, 0], "kept tally of the details": [65535, 0], "tally of the details of": [65535, 0], "of the details of the": [65535, 0], "the details of the prayer": [65535, 0], "details of the prayer unconsciously": [65535, 0], "of the prayer unconsciously for": [65535, 0], "the prayer unconsciously for he": [65535, 0], "prayer unconsciously for he was": [65535, 0], "unconsciously for he was not": [65535, 0], "for he was not listening": [65535, 0], "he was not listening but": [65535, 0], "was not listening but he": [65535, 0], "not listening but he knew": [65535, 0], "listening but he knew the": [65535, 0], "but he knew the ground": [65535, 0], "he knew the ground of": [65535, 0], "knew the ground of old": [65535, 0], "the ground of old and": [65535, 0], "ground of old and the": [65535, 0], "of old and the clergyman's": [65535, 0], "old and the clergyman's regular": [65535, 0], "and the clergyman's regular route": [65535, 0], "the clergyman's regular route over": [65535, 0], "clergyman's regular route over it": [65535, 0], "regular route over it and": [65535, 0], "route over it and when": [65535, 0], "over it and when a": [65535, 0], "it and when a little": [65535, 0], "and when a little trifle": [65535, 0], "when a little trifle of": [65535, 0], "a little trifle of new": [65535, 0], "little trifle of new matter": [65535, 0], "trifle of new matter was": [65535, 0], "of new matter was interlarded": [65535, 0], "new matter was interlarded his": [65535, 0], "matter was interlarded his ear": [65535, 0], "was interlarded his ear detected": [65535, 0], "interlarded his ear detected it": [65535, 0], "his ear detected it and": [65535, 0], "ear detected it and his": [65535, 0], "detected it and his whole": [65535, 0], "it and his whole nature": [65535, 0], "and his whole nature resented": [65535, 0], "his whole nature resented it": [65535, 0], "whole nature resented it he": [65535, 0], "nature resented it he considered": [65535, 0], "resented it he considered additions": [65535, 0], "it he considered additions unfair": [65535, 0], "he considered additions unfair and": [65535, 0], "considered additions unfair and scoundrelly": [65535, 0], "additions unfair and scoundrelly in": [65535, 0], "unfair and scoundrelly in the": [65535, 0], "and scoundrelly in the midst": [65535, 0], "scoundrelly in the midst of": [65535, 0], "in the midst of the": [65535, 0], "the midst of the prayer": [65535, 0], "midst of the prayer a": [65535, 0], "of the prayer a fly": [65535, 0], "the prayer a fly had": [65535, 0], "prayer a fly had lit": [65535, 0], "a fly had lit on": [65535, 0], "fly had lit on the": [65535, 0], "had lit on the back": [65535, 0], "lit on the back of": [65535, 0], "on the back of the": [65535, 0], "the back of the pew": [65535, 0], "back of the pew in": [65535, 0], "of the pew in front": [65535, 0], "the pew in front of": [65535, 0], "pew in front of him": [65535, 0], "in front of him and": [65535, 0], "front of him and tortured": [65535, 0], "of him and tortured his": [65535, 0], "him and tortured his spirit": [65535, 0], "and tortured his spirit by": [65535, 0], "tortured his spirit by calmly": [65535, 0], "his spirit by calmly rubbing": [65535, 0], "spirit by calmly rubbing its": [65535, 0], "by calmly rubbing its hands": [65535, 0], "calmly rubbing its hands together": [65535, 0], "rubbing its hands together embracing": [65535, 0], "its hands together embracing its": [65535, 0], "hands together embracing its head": [65535, 0], "together embracing its head with": [65535, 0], "embracing its head with its": [65535, 0], "its head with its arms": [65535, 0], "head with its arms and": [65535, 0], "with its arms and polishing": [65535, 0], "its arms and polishing it": [65535, 0], "arms and polishing it so": [65535, 0], "and polishing it so vigorously": [65535, 0], "polishing it so vigorously that": [65535, 0], "it so vigorously that it": [65535, 0], "so vigorously that it seemed": [65535, 0], "vigorously that it seemed to": [65535, 0], "that it seemed to almost": [65535, 0], "it seemed to almost part": [65535, 0], "seemed to almost part company": [65535, 0], "to almost part company with": [65535, 0], "almost part company with the": [65535, 0], "part company with the body": [65535, 0], "company with the body and": [65535, 0], "with the body and the": [65535, 0], "the body and the slender": [65535, 0], "body and the slender thread": [65535, 0], "and the slender thread of": [65535, 0], "the slender thread of a": [65535, 0], "slender thread of a neck": [65535, 0], "thread of a neck was": [65535, 0], "of a neck was exposed": [65535, 0], "a neck was exposed to": [65535, 0], "neck was exposed to view": [65535, 0], "was exposed to view scraping": [65535, 0], "exposed to view scraping its": [65535, 0], "to view scraping its wings": [65535, 0], "view scraping its wings with": [65535, 0], "scraping its wings with its": [65535, 0], "its wings with its hind": [65535, 0], "wings with its hind legs": [65535, 0], "with its hind legs and": [65535, 0], "its hind legs and smoothing": [65535, 0], "hind legs and smoothing them": [65535, 0], "legs and smoothing them to": [65535, 0], "and smoothing them to its": [65535, 0], "smoothing them to its body": [65535, 0], "them to its body as": [65535, 0], "to its body as if": [65535, 0], "its body as if they": [65535, 0], "body as if they had": [65535, 0], "as if they had been": [65535, 0], "if they had been coat": [65535, 0], "they had been coat tails": [65535, 0], "had been coat tails going": [65535, 0], "been coat tails going through": [65535, 0], "coat tails going through its": [65535, 0], "tails going through its whole": [65535, 0], "going through its whole toilet": [65535, 0], "through its whole toilet as": [65535, 0], "its whole toilet as tranquilly": [65535, 0], "whole toilet as tranquilly as": [65535, 0], "toilet as tranquilly as if": [65535, 0], "as tranquilly as if it": [65535, 0], "tranquilly as if it knew": [65535, 0], "as if it knew it": [65535, 0], "if it knew it was": [65535, 0], "it knew it was perfectly": [65535, 0], "knew it was perfectly safe": [65535, 0], "it was perfectly safe as": [65535, 0], "was perfectly safe as indeed": [65535, 0], "perfectly safe as indeed it": [65535, 0], "safe as indeed it was": [65535, 0], "as indeed it was for": [65535, 0], "indeed it was for as": [65535, 0], "it was for as sorely": [65535, 0], "was for as sorely as": [65535, 0], "for as sorely as tom's": [65535, 0], "as sorely as tom's hands": [65535, 0], "sorely as tom's hands itched": [65535, 0], "as tom's hands itched to": [65535, 0], "tom's hands itched to grab": [65535, 0], "hands itched to grab for": [65535, 0], "itched to grab for it": [65535, 0], "to grab for it they": [65535, 0], "grab for it they did": [65535, 0], "for it they did not": [65535, 0], "it they did not dare": [65535, 0], "they did not dare he": [65535, 0], "did not dare he believed": [65535, 0], "not dare he believed his": [65535, 0], "dare he believed his soul": [65535, 0], "he believed his soul would": [65535, 0], "believed his soul would be": [65535, 0], "his soul would be instantly": [65535, 0], "soul would be instantly destroyed": [65535, 0], "would be instantly destroyed if": [65535, 0], "be instantly destroyed if he": [65535, 0], "instantly destroyed if he did": [65535, 0], "destroyed if he did such": [65535, 0], "if he did such a": [65535, 0], "he did such a thing": [65535, 0], "did such a thing while": [65535, 0], "such a thing while the": [65535, 0], "a thing while the prayer": [65535, 0], "thing while the prayer was": [65535, 0], "while the prayer was going": [65535, 0], "the prayer was going on": [65535, 0], "prayer was going on but": [65535, 0], "was going on but with": [65535, 0], "going on but with the": [65535, 0], "on but with the closing": [65535, 0], "but with the closing sentence": [65535, 0], "with the closing sentence his": [65535, 0], "the closing sentence his hand": [65535, 0], "closing sentence his hand began": [65535, 0], "sentence his hand began to": [65535, 0], "his hand began to curve": [65535, 0], "hand began to curve and": [65535, 0], "began to curve and steal": [65535, 0], "to curve and steal forward": [65535, 0], "curve and steal forward and": [65535, 0], "and steal forward and the": [65535, 0], "steal forward and the instant": [65535, 0], "forward and the instant the": [65535, 0], "and the instant the amen": [65535, 0], "the instant the amen was": [65535, 0], "instant the amen was out": [65535, 0], "the amen was out the": [65535, 0], "amen was out the fly": [65535, 0], "was out the fly was": [65535, 0], "out the fly was a": [65535, 0], "the fly was a prisoner": [65535, 0], "fly was a prisoner of": [65535, 0], "was a prisoner of war": [65535, 0], "a prisoner of war his": [65535, 0], "prisoner of war his aunt": [65535, 0], "of war his aunt detected": [65535, 0], "war his aunt detected the": [65535, 0], "his aunt detected the act": [65535, 0], "aunt detected the act and": [65535, 0], "detected the act and made": [65535, 0], "the act and made him": [65535, 0], "act and made him let": [65535, 0], "and made him let it": [65535, 0], "made him let it go": [65535, 0], "him let it go the": [65535, 0], "let it go the minister": [65535, 0], "it go the minister gave": [65535, 0], "go the minister gave out": [65535, 0], "the minister gave out his": [65535, 0], "minister gave out his text": [65535, 0], "gave out his text and": [65535, 0], "out his text and droned": [65535, 0], "his text and droned along": [65535, 0], "text and droned along monotonously": [65535, 0], "and droned along monotonously through": [65535, 0], "droned along monotonously through an": [65535, 0], "along monotonously through an argument": [65535, 0], "monotonously through an argument that": [65535, 0], "through an argument that was": [65535, 0], "an argument that was so": [65535, 0], "argument that was so prosy": [65535, 0], "that was so prosy that": [65535, 0], "was so prosy that many": [65535, 0], "so prosy that many a": [65535, 0], "prosy that many a head": [65535, 0], "that many a head by": [65535, 0], "many a head by and": [65535, 0], "a head by and by": [65535, 0], "head by and by began": [65535, 0], "by and by began to": [65535, 0], "and by began to nod": [65535, 0], "by began to nod and": [65535, 0], "began to nod and yet": [65535, 0], "to nod and yet it": [65535, 0], "nod and yet it was": [65535, 0], "and yet it was an": [65535, 0], "yet it was an argument": [65535, 0], "it was an argument that": [65535, 0], "was an argument that dealt": [65535, 0], "an argument that dealt in": [65535, 0], "argument that dealt in limitless": [65535, 0], "that dealt in limitless fire": [65535, 0], "dealt in limitless fire and": [65535, 0], "in limitless fire and brimstone": [65535, 0], "limitless fire and brimstone and": [65535, 0], "fire and brimstone and thinned": [65535, 0], "and brimstone and thinned the": [65535, 0], "brimstone and thinned the predestined": [65535, 0], "and thinned the predestined elect": [65535, 0], "thinned the predestined elect down": [65535, 0], "the predestined elect down to": [65535, 0], "predestined elect down to a": [65535, 0], "elect down to a company": [65535, 0], "down to a company so": [65535, 0], "to a company so small": [65535, 0], "a company so small as": [65535, 0], "company so small as to": [65535, 0], "so small as to be": [65535, 0], "small as to be hardly": [65535, 0], "as to be hardly worth": [65535, 0], "to be hardly worth the": [65535, 0], "be hardly worth the saving": [65535, 0], "hardly worth the saving tom": [65535, 0], "worth the saving tom counted": [65535, 0], "the saving tom counted the": [65535, 0], "saving tom counted the pages": [65535, 0], "tom counted the pages of": [65535, 0], "counted the pages of the": [65535, 0], "the pages of the sermon": [65535, 0], "pages of the sermon after": [65535, 0], "of the sermon after church": [65535, 0], "the sermon after church he": [65535, 0], "sermon after church he always": [65535, 0], "after church he always knew": [65535, 0], "church he always knew how": [65535, 0], "he always knew how many": [65535, 0], "always knew how many pages": [65535, 0], "knew how many pages there": [65535, 0], "how many pages there had": [65535, 0], "many pages there had been": [65535, 0], "pages there had been but": [65535, 0], "there had been but he": [65535, 0], "had been but he seldom": [65535, 0], "been but he seldom knew": [65535, 0], "but he seldom knew anything": [65535, 0], "he seldom knew anything else": [65535, 0], "seldom knew anything else about": [65535, 0], "knew anything else about the": [65535, 0], "anything else about the discourse": [65535, 0], "else about the discourse however": [65535, 0], "about the discourse however this": [65535, 0], "the discourse however this time": [65535, 0], "discourse however this time he": [65535, 0], "however this time he was": [65535, 0], "this time he was really": [65535, 0], "time he was really interested": [65535, 0], "he was really interested for": [65535, 0], "was really interested for a": [65535, 0], "really interested for a little": [65535, 0], "interested for a little while": [65535, 0], "for a little while the": [65535, 0], "a little while the minister": [65535, 0], "little while the minister made": [65535, 0], "while the minister made a": [65535, 0], "the minister made a grand": [65535, 0], "minister made a grand and": [65535, 0], "made a grand and moving": [65535, 0], "a grand and moving picture": [65535, 0], "grand and moving picture of": [65535, 0], "and moving picture of the": [65535, 0], "moving picture of the assembling": [65535, 0], "picture of the assembling together": [65535, 0], "of the assembling together of": [65535, 0], "the assembling together of the": [65535, 0], "assembling together of the world's": [65535, 0], "together of the world's hosts": [65535, 0], "of the world's hosts at": [65535, 0], "the world's hosts at the": [65535, 0], "world's hosts at the millennium": [65535, 0], "hosts at the millennium when": [65535, 0], "at the millennium when the": [65535, 0], "the millennium when the lion": [65535, 0], "millennium when the lion and": [65535, 0], "when the lion and the": [65535, 0], "the lion and the lamb": [65535, 0], "lion and the lamb should": [65535, 0], "and the lamb should lie": [65535, 0], "the lamb should lie down": [65535, 0], "lamb should lie down together": [65535, 0], "should lie down together and": [65535, 0], "lie down together and a": [65535, 0], "down together and a little": [65535, 0], "together and a little child": [65535, 0], "and a little child should": [65535, 0], "a little child should lead": [65535, 0], "little child should lead them": [65535, 0], "child should lead them but": [65535, 0], "should lead them but the": [65535, 0], "lead them but the pathos": [65535, 0], "them but the pathos the": [65535, 0], "but the pathos the lesson": [65535, 0], "the pathos the lesson the": [65535, 0], "pathos the lesson the moral": [65535, 0], "the lesson the moral of": [65535, 0], "lesson the moral of the": [65535, 0], "the moral of the great": [65535, 0], "moral of the great spectacle": [65535, 0], "of the great spectacle were": [65535, 0], "the great spectacle were lost": [65535, 0], "great spectacle were lost upon": [65535, 0], "spectacle were lost upon the": [65535, 0], "were lost upon the boy": [65535, 0], "lost upon the boy he": [65535, 0], "upon the boy he only": [65535, 0], "the boy he only thought": [65535, 0], "boy he only thought of": [65535, 0], "he only thought of the": [65535, 0], "only thought of the conspicuousness": [65535, 0], "thought of the conspicuousness of": [65535, 0], "of the conspicuousness of the": [65535, 0], "the conspicuousness of the principal": [65535, 0], "conspicuousness of the principal character": [65535, 0], "of the principal character before": [65535, 0], "the principal character before the": [65535, 0], "principal character before the on": [65535, 0], "character before the on looking": [65535, 0], "before the on looking nations": [65535, 0], "the on looking nations his": [65535, 0], "on looking nations his face": [65535, 0], "looking nations his face lit": [65535, 0], "nations his face lit with": [65535, 0], "his face lit with the": [65535, 0], "face lit with the thought": [65535, 0], "lit with the thought and": [65535, 0], "with the thought and he": [65535, 0], "the thought and he said": [65535, 0], "thought and he said to": [65535, 0], "and he said to himself": [65535, 0], "he said to himself that": [65535, 0], "said to himself that he": [65535, 0], "to himself that he wished": [65535, 0], "himself that he wished he": [65535, 0], "that he wished he could": [65535, 0], "he wished he could be": [65535, 0], "wished he could be that": [65535, 0], "he could be that child": [65535, 0], "could be that child if": [65535, 0], "be that child if it": [65535, 0], "that child if it was": [65535, 0], "child if it was a": [65535, 0], "if it was a tame": [65535, 0], "it was a tame lion": [65535, 0], "was a tame lion now": [65535, 0], "a tame lion now he": [65535, 0], "tame lion now he lapsed": [65535, 0], "lion now he lapsed into": [65535, 0], "now he lapsed into suffering": [65535, 0], "he lapsed into suffering again": [65535, 0], "lapsed into suffering again as": [65535, 0], "into suffering again as the": [65535, 0], "suffering again as the dry": [65535, 0], "again as the dry argument": [65535, 0], "as the dry argument was": [65535, 0], "the dry argument was resumed": [65535, 0], "dry argument was resumed presently": [65535, 0], "argument was resumed presently he": [65535, 0], "was resumed presently he bethought": [65535, 0], "resumed presently he bethought him": [65535, 0], "presently he bethought him of": [65535, 0], "he bethought him of a": [65535, 0], "bethought him of a treasure": [65535, 0], "him of a treasure he": [65535, 0], "of a treasure he had": [65535, 0], "a treasure he had and": [65535, 0], "treasure he had and got": [65535, 0], "he had and got it": [65535, 0], "had and got it out": [65535, 0], "and got it out it": [65535, 0], "got it out it was": [65535, 0], "it out it was a": [65535, 0], "out it was a large": [65535, 0], "it was a large black": [65535, 0], "was a large black beetle": [65535, 0], "a large black beetle with": [65535, 0], "large black beetle with formidable": [65535, 0], "black beetle with formidable jaws": [65535, 0], "beetle with formidable jaws a": [65535, 0], "with formidable jaws a pinchbug": [65535, 0], "formidable jaws a pinchbug he": [65535, 0], "jaws a pinchbug he called": [65535, 0], "a pinchbug he called it": [65535, 0], "pinchbug he called it it": [65535, 0], "he called it it was": [65535, 0], "called it it was in": [65535, 0], "it it was in a": [65535, 0], "it was in a percussion": [65535, 0], "was in a percussion cap": [65535, 0], "in a percussion cap box": [65535, 0], "a percussion cap box the": [65535, 0], "percussion cap box the first": [65535, 0], "cap box the first thing": [65535, 0], "box the first thing the": [65535, 0], "the first thing the beetle": [65535, 0], "first thing the beetle did": [65535, 0], "thing the beetle did was": [65535, 0], "the beetle did was to": [65535, 0], "beetle did was to take": [65535, 0], "did was to take him": [65535, 0], "was to take him by": [65535, 0], "to take him by the": [65535, 0], "take him by the finger": [65535, 0], "him by the finger a": [65535, 0], "by the finger a natural": [65535, 0], "the finger a natural fillip": [65535, 0], "finger a natural fillip followed": [65535, 0], "a natural fillip followed the": [65535, 0], "natural fillip followed the beetle": [65535, 0], "fillip followed the beetle went": [65535, 0], "followed the beetle went floundering": [65535, 0], "the beetle went floundering into": [65535, 0], "beetle went floundering into the": [65535, 0], "went floundering into the aisle": [65535, 0], "floundering into the aisle and": [65535, 0], "into the aisle and lit": [65535, 0], "the aisle and lit on": [65535, 0], "aisle and lit on its": [65535, 0], "and lit on its back": [65535, 0], "lit on its back and": [65535, 0], "on its back and the": [65535, 0], "its back and the hurt": [65535, 0], "back and the hurt finger": [65535, 0], "and the hurt finger went": [65535, 0], "the hurt finger went into": [65535, 0], "hurt finger went into the": [65535, 0], "finger went into the boy's": [65535, 0], "went into the boy's mouth": [65535, 0], "into the boy's mouth the": [65535, 0], "the boy's mouth the beetle": [65535, 0], "boy's mouth the beetle lay": [65535, 0], "mouth the beetle lay there": [65535, 0], "the beetle lay there working": [65535, 0], "beetle lay there working its": [65535, 0], "lay there working its helpless": [65535, 0], "there working its helpless legs": [65535, 0], "working its helpless legs unable": [65535, 0], "its helpless legs unable to": [65535, 0], "helpless legs unable to turn": [65535, 0], "legs unable to turn over": [65535, 0], "unable to turn over tom": [65535, 0], "to turn over tom eyed": [65535, 0], "turn over tom eyed it": [65535, 0], "over tom eyed it and": [65535, 0], "tom eyed it and longed": [65535, 0], "eyed it and longed for": [65535, 0], "it and longed for it": [65535, 0], "and longed for it but": [65535, 0], "longed for it but it": [65535, 0], "for it but it was": [65535, 0], "it but it was safe": [65535, 0], "but it was safe out": [65535, 0], "it was safe out of": [65535, 0], "was safe out of his": [65535, 0], "safe out of his reach": [65535, 0], "out of his reach other": [65535, 0], "of his reach other people": [65535, 0], "his reach other people uninterested": [65535, 0], "reach other people uninterested in": [65535, 0], "other people uninterested in the": [65535, 0], "people uninterested in the sermon": [65535, 0], "uninterested in the sermon found": [65535, 0], "in the sermon found relief": [65535, 0], "the sermon found relief in": [65535, 0], "sermon found relief in the": [65535, 0], "found relief in the beetle": [65535, 0], "relief in the beetle and": [65535, 0], "in the beetle and they": [65535, 0], "the beetle and they eyed": [65535, 0], "beetle and they eyed it": [65535, 0], "and they eyed it too": [65535, 0], "they eyed it too presently": [65535, 0], "eyed it too presently a": [65535, 0], "it too presently a vagrant": [65535, 0], "too presently a vagrant poodle": [65535, 0], "presently a vagrant poodle dog": [65535, 0], "a vagrant poodle dog came": [65535, 0], "vagrant poodle dog came idling": [65535, 0], "poodle dog came idling along": [65535, 0], "dog came idling along sad": [65535, 0], "came idling along sad at": [65535, 0], "idling along sad at heart": [65535, 0], "along sad at heart lazy": [65535, 0], "sad at heart lazy with": [65535, 0], "at heart lazy with the": [65535, 0], "heart lazy with the summer": [65535, 0], "lazy with the summer softness": [65535, 0], "with the summer softness and": [65535, 0], "the summer softness and the": [65535, 0], "summer softness and the quiet": [65535, 0], "softness and the quiet weary": [65535, 0], "and the quiet weary of": [65535, 0], "the quiet weary of captivity": [65535, 0], "quiet weary of captivity sighing": [65535, 0], "weary of captivity sighing for": [65535, 0], "of captivity sighing for change": [65535, 0], "captivity sighing for change he": [65535, 0], "sighing for change he spied": [65535, 0], "for change he spied the": [65535, 0], "change he spied the beetle": [65535, 0], "he spied the beetle the": [65535, 0], "spied the beetle the drooping": [65535, 0], "the beetle the drooping tail": [65535, 0], "beetle the drooping tail lifted": [65535, 0], "the drooping tail lifted and": [65535, 0], "drooping tail lifted and wagged": [65535, 0], "tail lifted and wagged he": [65535, 0], "lifted and wagged he surveyed": [65535, 0], "and wagged he surveyed the": [65535, 0], "wagged he surveyed the prize": [65535, 0], "he surveyed the prize walked": [65535, 0], "surveyed the prize walked around": [65535, 0], "the prize walked around it": [65535, 0], "prize walked around it smelt": [65535, 0], "walked around it smelt at": [65535, 0], "around it smelt at it": [65535, 0], "it smelt at it from": [65535, 0], "smelt at it from a": [65535, 0], "at it from a safe": [65535, 0], "it from a safe distance": [65535, 0], "from a safe distance walked": [65535, 0], "a safe distance walked around": [65535, 0], "safe distance walked around it": [65535, 0], "distance walked around it again": [65535, 0], "walked around it again grew": [65535, 0], "around it again grew bolder": [65535, 0], "it again grew bolder and": [65535, 0], "again grew bolder and took": [65535, 0], "grew bolder and took a": [65535, 0], "bolder and took a closer": [65535, 0], "and took a closer smell": [65535, 0], "took a closer smell then": [65535, 0], "a closer smell then lifted": [65535, 0], "closer smell then lifted his": [65535, 0], "smell then lifted his lip": [65535, 0], "then lifted his lip and": [65535, 0], "lifted his lip and made": [65535, 0], "his lip and made a": [65535, 0], "lip and made a gingerly": [65535, 0], "and made a gingerly snatch": [65535, 0], "made a gingerly snatch at": [65535, 0], "a gingerly snatch at it": [65535, 0], "gingerly snatch at it just": [65535, 0], "snatch at it just missing": [65535, 0], "at it just missing it": [65535, 0], "it just missing it made": [65535, 0], "just missing it made another": [65535, 0], "missing it made another and": [65535, 0], "it made another and another": [65535, 0], "made another and another began": [65535, 0], "another and another began to": [65535, 0], "and another began to enjoy": [65535, 0], "another began to enjoy the": [65535, 0], "began to enjoy the diversion": [65535, 0], "to enjoy the diversion subsided": [65535, 0], "enjoy the diversion subsided to": [65535, 0], "the diversion subsided to his": [65535, 0], "diversion subsided to his stomach": [65535, 0], "subsided to his stomach with": [65535, 0], "to his stomach with the": [65535, 0], "his stomach with the beetle": [65535, 0], "stomach with the beetle between": [65535, 0], "with the beetle between his": [65535, 0], "the beetle between his paws": [65535, 0], "beetle between his paws and": [65535, 0], "between his paws and continued": [65535, 0], "his paws and continued his": [65535, 0], "paws and continued his experiments": [65535, 0], "and continued his experiments grew": [65535, 0], "continued his experiments grew weary": [65535, 0], "his experiments grew weary at": [65535, 0], "experiments grew weary at last": [65535, 0], "grew weary at last and": [65535, 0], "weary at last and then": [65535, 0], "at last and then indifferent": [65535, 0], "last and then indifferent and": [65535, 0], "and then indifferent and absent": [65535, 0], "then indifferent and absent minded": [65535, 0], "indifferent and absent minded his": [65535, 0], "and absent minded his head": [65535, 0], "absent minded his head nodded": [65535, 0], "minded his head nodded and": [65535, 0], "his head nodded and little": [65535, 0], "head nodded and little by": [65535, 0], "nodded and little by little": [65535, 0], "and little by little his": [65535, 0], "little by little his chin": [65535, 0], "by little his chin descended": [65535, 0], "little his chin descended and": [65535, 0], "his chin descended and touched": [65535, 0], "chin descended and touched the": [65535, 0], "descended and touched the enemy": [65535, 0], "and touched the enemy who": [65535, 0], "touched the enemy who seized": [65535, 0], "the enemy who seized it": [65535, 0], "enemy who seized it there": [65535, 0], "who seized it there was": [65535, 0], "seized it there was a": [65535, 0], "it there was a sharp": [65535, 0], "there was a sharp yelp": [65535, 0], "was a sharp yelp a": [65535, 0], "a sharp yelp a flirt": [65535, 0], "sharp yelp a flirt of": [65535, 0], "yelp a flirt of the": [65535, 0], "a flirt of the poodle's": [65535, 0], "flirt of the poodle's head": [65535, 0], "of the poodle's head and": [65535, 0], "the poodle's head and the": [65535, 0], "poodle's head and the beetle": [65535, 0], "head and the beetle fell": [65535, 0], "and the beetle fell a": [65535, 0], "the beetle fell a couple": [65535, 0], "beetle fell a couple of": [65535, 0], "fell a couple of yards": [65535, 0], "a couple of yards away": [65535, 0], "couple of yards away and": [65535, 0], "of yards away and lit": [65535, 0], "yards away and lit on": [65535, 0], "away and lit on its": [65535, 0], "lit on its back once": [65535, 0], "on its back once more": [65535, 0], "its back once more the": [65535, 0], "back once more the neighboring": [65535, 0], "once more the neighboring spectators": [65535, 0], "more the neighboring spectators shook": [65535, 0], "the neighboring spectators shook with": [65535, 0], "neighboring spectators shook with a": [65535, 0], "spectators shook with a gentle": [65535, 0], "shook with a gentle inward": [65535, 0], "with a gentle inward joy": [65535, 0], "a gentle inward joy several": [65535, 0], "gentle inward joy several faces": [65535, 0], "inward joy several faces went": [65535, 0], "joy several faces went behind": [65535, 0], "several faces went behind fans": [65535, 0], "faces went behind fans and": [65535, 0], "went behind fans and handkerchiefs": [65535, 0], "behind fans and handkerchiefs and": [65535, 0], "fans and handkerchiefs and tom": [65535, 0], "and handkerchiefs and tom was": [65535, 0], "handkerchiefs and tom was entirely": [65535, 0], "and tom was entirely happy": [65535, 0], "tom was entirely happy the": [65535, 0], "was entirely happy the dog": [65535, 0], "entirely happy the dog looked": [65535, 0], "happy the dog looked foolish": [65535, 0], "the dog looked foolish and": [65535, 0], "dog looked foolish and probably": [65535, 0], "looked foolish and probably felt": [65535, 0], "foolish and probably felt so": [65535, 0], "and probably felt so but": [65535, 0], "probably felt so but there": [65535, 0], "felt so but there was": [65535, 0], "so but there was resentment": [65535, 0], "but there was resentment in": [65535, 0], "there was resentment in his": [65535, 0], "was resentment in his heart": [65535, 0], "resentment in his heart too": [65535, 0], "in his heart too and": [65535, 0], "his heart too and a": [65535, 0], "heart too and a craving": [65535, 0], "too and a craving for": [65535, 0], "and a craving for revenge": [65535, 0], "a craving for revenge so": [65535, 0], "craving for revenge so he": [65535, 0], "for revenge so he went": [65535, 0], "revenge so he went to": [65535, 0], "so he went to the": [65535, 0], "he went to the beetle": [65535, 0], "went to the beetle and": [65535, 0], "to the beetle and began": [65535, 0], "the beetle and began a": [65535, 0], "beetle and began a wary": [65535, 0], "and began a wary attack": [65535, 0], "began a wary attack on": [65535, 0], "a wary attack on it": [65535, 0], "wary attack on it again": [65535, 0], "attack on it again jumping": [65535, 0], "on it again jumping at": [65535, 0], "it again jumping at it": [65535, 0], "again jumping at it from": [65535, 0], "jumping at it from every": [65535, 0], "at it from every point": [65535, 0], "it from every point of": [65535, 0], "from every point of a": [65535, 0], "every point of a circle": [65535, 0], "point of a circle lighting": [65535, 0], "of a circle lighting with": [65535, 0], "a circle lighting with his": [65535, 0], "circle lighting with his fore": [65535, 0], "lighting with his fore paws": [65535, 0], "with his fore paws within": [65535, 0], "his fore paws within an": [65535, 0], "fore paws within an inch": [65535, 0], "paws within an inch of": [65535, 0], "within an inch of the": [65535, 0], "an inch of the creature": [65535, 0], "inch of the creature making": [65535, 0], "of the creature making even": [65535, 0], "the creature making even closer": [65535, 0], "creature making even closer snatches": [65535, 0], "making even closer snatches at": [65535, 0], "even closer snatches at it": [65535, 0], "closer snatches at it with": [65535, 0], "snatches at it with his": [65535, 0], "at it with his teeth": [65535, 0], "it with his teeth and": [65535, 0], "with his teeth and jerking": [65535, 0], "his teeth and jerking his": [65535, 0], "teeth and jerking his head": [65535, 0], "and jerking his head till": [65535, 0], "jerking his head till his": [65535, 0], "his head till his ears": [65535, 0], "head till his ears flapped": [65535, 0], "till his ears flapped again": [65535, 0], "his ears flapped again but": [65535, 0], "ears flapped again but he": [65535, 0], "flapped again but he grew": [65535, 0], "again but he grew tired": [65535, 0], "but he grew tired once": [65535, 0], "he grew tired once more": [65535, 0], "grew tired once more after": [65535, 0], "tired once more after a": [65535, 0], "once more after a while": [65535, 0], "more after a while tried": [65535, 0], "after a while tried to": [65535, 0], "a while tried to amuse": [65535, 0], "while tried to amuse himself": [65535, 0], "tried to amuse himself with": [65535, 0], "to amuse himself with a": [65535, 0], "amuse himself with a fly": [65535, 0], "himself with a fly but": [65535, 0], "with a fly but found": [65535, 0], "a fly but found no": [65535, 0], "fly but found no relief": [65535, 0], "but found no relief followed": [65535, 0], "found no relief followed an": [65535, 0], "no relief followed an ant": [65535, 0], "relief followed an ant around": [65535, 0], "followed an ant around with": [65535, 0], "an ant around with his": [65535, 0], "ant around with his nose": [65535, 0], "around with his nose close": [65535, 0], "with his nose close to": [65535, 0], "his nose close to the": [65535, 0], "nose close to the floor": [65535, 0], "close to the floor and": [65535, 0], "to the floor and quickly": [65535, 0], "the floor and quickly wearied": [65535, 0], "floor and quickly wearied of": [65535, 0], "and quickly wearied of that": [65535, 0], "quickly wearied of that yawned": [65535, 0], "wearied of that yawned sighed": [65535, 0], "of that yawned sighed forgot": [65535, 0], "that yawned sighed forgot the": [65535, 0], "yawned sighed forgot the beetle": [65535, 0], "sighed forgot the beetle entirely": [65535, 0], "forgot the beetle entirely and": [65535, 0], "the beetle entirely and sat": [65535, 0], "beetle entirely and sat down": [65535, 0], "entirely and sat down on": [65535, 0], "and sat down on it": [65535, 0], "sat down on it then": [65535, 0], "down on it then there": [65535, 0], "on it then there was": [65535, 0], "it then there was a": [65535, 0], "then there was a wild": [65535, 0], "there was a wild yelp": [65535, 0], "was a wild yelp of": [65535, 0], "a wild yelp of agony": [65535, 0], "wild yelp of agony and": [65535, 0], "yelp of agony and the": [65535, 0], "of agony and the poodle": [65535, 0], "agony and the poodle went": [65535, 0], "and the poodle went sailing": [65535, 0], "the poodle went sailing up": [65535, 0], "poodle went sailing up the": [65535, 0], "went sailing up the aisle": [65535, 0], "sailing up the aisle the": [65535, 0], "up the aisle the yelps": [65535, 0], "the aisle the yelps continued": [65535, 0], "aisle the yelps continued and": [65535, 0], "the yelps continued and so": [65535, 0], "yelps continued and so did": [65535, 0], "continued and so did the": [65535, 0], "and so did the dog": [65535, 0], "so did the dog he": [65535, 0], "did the dog he crossed": [65535, 0], "the dog he crossed the": [65535, 0], "dog he crossed the house": [65535, 0], "he crossed the house in": [65535, 0], "crossed the house in front": [65535, 0], "the house in front of": [65535, 0], "house in front of the": [65535, 0], "in front of the altar": [65535, 0], "front of the altar he": [65535, 0], "of the altar he flew": [65535, 0], "the altar he flew down": [65535, 0], "altar he flew down the": [65535, 0], "he flew down the other": [65535, 0], "flew down the other aisle": [65535, 0], "down the other aisle he": [65535, 0], "the other aisle he crossed": [65535, 0], "other aisle he crossed before": [65535, 0], "aisle he crossed before the": [65535, 0], "he crossed before the doors": [65535, 0], "crossed before the doors he": [65535, 0], "before the doors he clamored": [65535, 0], "the doors he clamored up": [65535, 0], "doors he clamored up the": [65535, 0], "he clamored up the home": [65535, 0], "clamored up the home stretch": [65535, 0], "up the home stretch his": [65535, 0], "the home stretch his anguish": [65535, 0], "home stretch his anguish grew": [65535, 0], "stretch his anguish grew with": [65535, 0], "his anguish grew with his": [65535, 0], "anguish grew with his progress": [65535, 0], "grew with his progress till": [65535, 0], "with his progress till presently": [65535, 0], "his progress till presently he": [65535, 0], "progress till presently he was": [65535, 0], "till presently he was but": [65535, 0], "presently he was but a": [65535, 0], "he was but a woolly": [65535, 0], "was but a woolly comet": [65535, 0], "but a woolly comet moving": [65535, 0], "a woolly comet moving in": [65535, 0], "woolly comet moving in its": [65535, 0], "comet moving in its orbit": [65535, 0], "moving in its orbit with": [65535, 0], "in its orbit with the": [65535, 0], "its orbit with the gleam": [65535, 0], "orbit with the gleam and": [65535, 0], "with the gleam and the": [65535, 0], "the gleam and the speed": [65535, 0], "gleam and the speed of": [65535, 0], "and the speed of light": [65535, 0], "the speed of light at": [65535, 0], "speed of light at last": [65535, 0], "of light at last the": [65535, 0], "light at last the frantic": [65535, 0], "at last the frantic sufferer": [65535, 0], "last the frantic sufferer sheered": [65535, 0], "the frantic sufferer sheered from": [65535, 0], "frantic sufferer sheered from its": [65535, 0], "sufferer sheered from its course": [65535, 0], "sheered from its course and": [65535, 0], "from its course and sprang": [65535, 0], "its course and sprang into": [65535, 0], "course and sprang into its": [65535, 0], "and sprang into its master's": [65535, 0], "sprang into its master's lap": [65535, 0], "into its master's lap he": [65535, 0], "its master's lap he flung": [65535, 0], "master's lap he flung it": [65535, 0], "lap he flung it out": [65535, 0], "he flung it out of": [65535, 0], "flung it out of the": [65535, 0], "it out of the window": [65535, 0], "out of the window and": [65535, 0], "of the window and the": [65535, 0], "the window and the voice": [65535, 0], "window and the voice of": [65535, 0], "and the voice of distress": [65535, 0], "the voice of distress quickly": [65535, 0], "voice of distress quickly thinned": [65535, 0], "of distress quickly thinned away": [65535, 0], "distress quickly thinned away and": [65535, 0], "quickly thinned away and died": [65535, 0], "thinned away and died in": [65535, 0], "away and died in the": [65535, 0], "and died in the distance": [65535, 0], "died in the distance by": [65535, 0], "in the distance by this": [65535, 0], "the distance by this time": [65535, 0], "distance by this time the": [65535, 0], "by this time the whole": [65535, 0], "this time the whole church": [65535, 0], "time the whole church was": [65535, 0], "the whole church was red": [65535, 0], "whole church was red faced": [65535, 0], "church was red faced and": [65535, 0], "was red faced and suffocating": [65535, 0], "red faced and suffocating with": [65535, 0], "faced and suffocating with suppressed": [65535, 0], "and suffocating with suppressed laughter": [65535, 0], "suffocating with suppressed laughter and": [65535, 0], "with suppressed laughter and the": [65535, 0], "suppressed laughter and the sermon": [65535, 0], "laughter and the sermon had": [65535, 0], "and the sermon had come": [65535, 0], "the sermon had come to": [65535, 0], "sermon had come to a": [65535, 0], "had come to a dead": [65535, 0], "come to a dead standstill": [65535, 0], "to a dead standstill the": [65535, 0], "a dead standstill the discourse": [65535, 0], "dead standstill the discourse was": [65535, 0], "standstill the discourse was resumed": [65535, 0], "the discourse was resumed presently": [65535, 0], "discourse was resumed presently but": [65535, 0], "was resumed presently but it": [65535, 0], "resumed presently but it went": [65535, 0], "presently but it went lame": [65535, 0], "but it went lame and": [65535, 0], "it went lame and halting": [65535, 0], "went lame and halting all": [65535, 0], "lame and halting all possibility": [65535, 0], "and halting all possibility of": [65535, 0], "halting all possibility of impressiveness": [65535, 0], "all possibility of impressiveness being": [65535, 0], "possibility of impressiveness being at": [65535, 0], "of impressiveness being at an": [65535, 0], "impressiveness being at an end": [65535, 0], "being at an end for": [65535, 0], "at an end for even": [65535, 0], "an end for even the": [65535, 0], "end for even the gravest": [65535, 0], "for even the gravest sentiments": [65535, 0], "even the gravest sentiments were": [65535, 0], "the gravest sentiments were constantly": [65535, 0], "gravest sentiments were constantly being": [65535, 0], "sentiments were constantly being received": [65535, 0], "were constantly being received with": [65535, 0], "constantly being received with a": [65535, 0], "being received with a smothered": [65535, 0], "received with a smothered burst": [65535, 0], "with a smothered burst of": [65535, 0], "a smothered burst of unholy": [65535, 0], "smothered burst of unholy mirth": [65535, 0], "burst of unholy mirth under": [65535, 0], "of unholy mirth under cover": [65535, 0], "unholy mirth under cover of": [65535, 0], "mirth under cover of some": [65535, 0], "under cover of some remote": [65535, 0], "cover of some remote pew": [65535, 0], "of some remote pew back": [65535, 0], "some remote pew back as": [65535, 0], "remote pew back as if": [65535, 0], "pew back as if the": [65535, 0], "back as if the poor": [65535, 0], "as if the poor parson": [65535, 0], "if the poor parson had": [65535, 0], "the poor parson had said": [65535, 0], "poor parson had said a": [65535, 0], "parson had said a rarely": [65535, 0], "had said a rarely facetious": [65535, 0], "said a rarely facetious thing": [65535, 0], "a rarely facetious thing it": [65535, 0], "rarely facetious thing it was": [65535, 0], "facetious thing it was a": [65535, 0], "thing it was a genuine": [65535, 0], "it was a genuine relief": [65535, 0], "was a genuine relief to": [65535, 0], "a genuine relief to the": [65535, 0], "genuine relief to the whole": [65535, 0], "relief to the whole congregation": [65535, 0], "to the whole congregation when": [65535, 0], "the whole congregation when the": [65535, 0], "whole congregation when the ordeal": [65535, 0], "congregation when the ordeal was": [65535, 0], "when the ordeal was over": [65535, 0], "the ordeal was over and": [65535, 0], "ordeal was over and the": [65535, 0], "was over and the benediction": [65535, 0], "over and the benediction pronounced": [65535, 0], "and the benediction pronounced tom": [65535, 0], "the benediction pronounced tom sawyer": [65535, 0], "benediction pronounced tom sawyer went": [65535, 0], "pronounced tom sawyer went home": [65535, 0], "tom sawyer went home quite": [65535, 0], "sawyer went home quite cheerful": [65535, 0], "went home quite cheerful thinking": [65535, 0], "home quite cheerful thinking to": [65535, 0], "quite cheerful thinking to himself": [65535, 0], "cheerful thinking to himself that": [65535, 0], "thinking to himself that there": [65535, 0], "to himself that there was": [65535, 0], "himself that there was some": [65535, 0], "that there was some satisfaction": [65535, 0], "there was some satisfaction about": [65535, 0], "was some satisfaction about divine": [65535, 0], "some satisfaction about divine service": [65535, 0], "satisfaction about divine service when": [65535, 0], "about divine service when there": [65535, 0], "divine service when there was": [65535, 0], "service when there was a": [65535, 0], "when there was a bit": [65535, 0], "there was a bit of": [65535, 0], "was a bit of variety": [65535, 0], "a bit of variety in": [65535, 0], "bit of variety in it": [65535, 0], "of variety in it he": [65535, 0], "variety in it he had": [65535, 0], "in it he had but": [65535, 0], "it he had but one": [65535, 0], "he had but one marring": [65535, 0], "had but one marring thought": [65535, 0], "but one marring thought he": [65535, 0], "one marring thought he was": [65535, 0], "marring thought he was willing": [65535, 0], "thought he was willing that": [65535, 0], "he was willing that the": [65535, 0], "was willing that the dog": [65535, 0], "willing that the dog should": [65535, 0], "that the dog should play": [65535, 0], "the dog should play with": [65535, 0], "dog should play with his": [65535, 0], "should play with his pinchbug": [65535, 0], "play with his pinchbug but": [65535, 0], "with his pinchbug but he": [65535, 0], "his pinchbug but he did": [65535, 0], "pinchbug but he did not": [65535, 0], "but he did not think": [65535, 0], "he did not think it": [65535, 0], "did not think it was": [65535, 0], "not think it was upright": [65535, 0], "think it was upright in": [65535, 0], "it was upright in him": [65535, 0], "was upright in him to": [65535, 0], "upright in him to carry": [65535, 0], "in him to carry it": [65535, 0], "him to carry it off": [65535, 0], "about half past ten the cracked": [65535, 0], "half past ten the cracked bell": [65535, 0], "past ten the cracked bell of": [65535, 0], "ten the cracked bell of the": [65535, 0], "the cracked bell of the small": [65535, 0], "cracked bell of the small church": [65535, 0], "bell of the small church began": [65535, 0], "of the small church began to": [65535, 0], "the small church began to ring": [65535, 0], "small church began to ring and": [65535, 0], "church began to ring and presently": [65535, 0], "began to ring and presently the": [65535, 0], "to ring and presently the people": [65535, 0], "ring and presently the people began": [65535, 0], "and presently the people began to": [65535, 0], "presently the people began to gather": [65535, 0], "the people began to gather for": [65535, 0], "people began to gather for the": [65535, 0], "began to gather for the morning": [65535, 0], "to gather for the morning sermon": [65535, 0], "gather for the morning sermon the": [65535, 0], "for the morning sermon the sunday": [65535, 0], "the morning sermon the sunday school": [65535, 0], "morning sermon the sunday school children": [65535, 0], "sermon the sunday school children distributed": [65535, 0], "the sunday school children distributed themselves": [65535, 0], "sunday school children distributed themselves about": [65535, 0], "school children distributed themselves about the": [65535, 0], "children distributed themselves about the house": [65535, 0], "distributed themselves about the house and": [65535, 0], "themselves about the house and occupied": [65535, 0], "about the house and occupied pews": [65535, 0], "the house and occupied pews with": [65535, 0], "house and occupied pews with their": [65535, 0], "and occupied pews with their parents": [65535, 0], "occupied pews with their parents so": [65535, 0], "pews with their parents so as": [65535, 0], "with their parents so as to": [65535, 0], "their parents so as to be": [65535, 0], "parents so as to be under": [65535, 0], "so as to be under supervision": [65535, 0], "as to be under supervision aunt": [65535, 0], "to be under supervision aunt polly": [65535, 0], "be under supervision aunt polly came": [65535, 0], "under supervision aunt polly came and": [65535, 0], "supervision aunt polly came and tom": [65535, 0], "aunt polly came and tom and": [65535, 0], "polly came and tom and sid": [65535, 0], "came and tom and sid and": [65535, 0], "and tom and sid and mary": [65535, 0], "tom and sid and mary sat": [65535, 0], "and sid and mary sat with": [65535, 0], "sid and mary sat with her": [65535, 0], "and mary sat with her tom": [65535, 0], "mary sat with her tom being": [65535, 0], "sat with her tom being placed": [65535, 0], "with her tom being placed next": [65535, 0], "her tom being placed next the": [65535, 0], "tom being placed next the aisle": [65535, 0], "being placed next the aisle in": [65535, 0], "placed next the aisle in order": [65535, 0], "next the aisle in order that": [65535, 0], "the aisle in order that he": [65535, 0], "aisle in order that he might": [65535, 0], "in order that he might be": [65535, 0], "order that he might be as": [65535, 0], "that he might be as far": [65535, 0], "he might be as far away": [65535, 0], "might be as far away from": [65535, 0], "be as far away from the": [65535, 0], "as far away from the open": [65535, 0], "far away from the open window": [65535, 0], "away from the open window and": [65535, 0], "from the open window and the": [65535, 0], "the open window and the seductive": [65535, 0], "open window and the seductive outside": [65535, 0], "window and the seductive outside summer": [65535, 0], "and the seductive outside summer scenes": [65535, 0], "the seductive outside summer scenes as": [65535, 0], "seductive outside summer scenes as possible": [65535, 0], "outside summer scenes as possible the": [65535, 0], "summer scenes as possible the crowd": [65535, 0], "scenes as possible the crowd filed": [65535, 0], "as possible the crowd filed up": [65535, 0], "possible the crowd filed up the": [65535, 0], "the crowd filed up the aisles": [65535, 0], "crowd filed up the aisles the": [65535, 0], "filed up the aisles the aged": [65535, 0], "up the aisles the aged and": [65535, 0], "the aisles the aged and needy": [65535, 0], "aisles the aged and needy postmaster": [65535, 0], "the aged and needy postmaster who": [65535, 0], "aged and needy postmaster who had": [65535, 0], "and needy postmaster who had seen": [65535, 0], "needy postmaster who had seen better": [65535, 0], "postmaster who had seen better days": [65535, 0], "who had seen better days the": [65535, 0], "had seen better days the mayor": [65535, 0], "seen better days the mayor and": [65535, 0], "better days the mayor and his": [65535, 0], "days the mayor and his wife": [65535, 0], "the mayor and his wife for": [65535, 0], "mayor and his wife for they": [65535, 0], "and his wife for they had": [65535, 0], "his wife for they had a": [65535, 0], "wife for they had a mayor": [65535, 0], "for they had a mayor there": [65535, 0], "they had a mayor there among": [65535, 0], "had a mayor there among other": [65535, 0], "a mayor there among other unnecessaries": [65535, 0], "mayor there among other unnecessaries the": [65535, 0], "there among other unnecessaries the justice": [65535, 0], "among other unnecessaries the justice of": [65535, 0], "other unnecessaries the justice of the": [65535, 0], "unnecessaries the justice of the peace": [65535, 0], "the justice of the peace the": [65535, 0], "justice of the peace the widow": [65535, 0], "of the peace the widow douglass": [65535, 0], "the peace the widow douglass fair": [65535, 0], "peace the widow douglass fair smart": [65535, 0], "the widow douglass fair smart and": [65535, 0], "widow douglass fair smart and forty": [65535, 0], "douglass fair smart and forty a": [65535, 0], "fair smart and forty a generous": [65535, 0], "smart and forty a generous good": [65535, 0], "and forty a generous good hearted": [65535, 0], "forty a generous good hearted soul": [65535, 0], "a generous good hearted soul and": [65535, 0], "generous good hearted soul and well": [65535, 0], "good hearted soul and well to": [65535, 0], "hearted soul and well to do": [65535, 0], "soul and well to do her": [65535, 0], "and well to do her hill": [65535, 0], "well to do her hill mansion": [65535, 0], "to do her hill mansion the": [65535, 0], "do her hill mansion the only": [65535, 0], "her hill mansion the only palace": [65535, 0], "hill mansion the only palace in": [65535, 0], "mansion the only palace in the": [65535, 0], "the only palace in the town": [65535, 0], "only palace in the town and": [65535, 0], "palace in the town and the": [65535, 0], "in the town and the most": [65535, 0], "the town and the most hospitable": [65535, 0], "town and the most hospitable and": [65535, 0], "and the most hospitable and much": [65535, 0], "the most hospitable and much the": [65535, 0], "most hospitable and much the most": [65535, 0], "hospitable and much the most lavish": [65535, 0], "and much the most lavish in": [65535, 0], "much the most lavish in the": [65535, 0], "the most lavish in the matter": [65535, 0], "most lavish in the matter of": [65535, 0], "lavish in the matter of festivities": [65535, 0], "in the matter of festivities that": [65535, 0], "the matter of festivities that st": [65535, 0], "matter of festivities that st petersburg": [65535, 0], "of festivities that st petersburg could": [65535, 0], "festivities that st petersburg could boast": [65535, 0], "that st petersburg could boast the": [65535, 0], "st petersburg could boast the bent": [65535, 0], "petersburg could boast the bent and": [65535, 0], "could boast the bent and venerable": [65535, 0], "boast the bent and venerable major": [65535, 0], "the bent and venerable major and": [65535, 0], "bent and venerable major and mrs": [65535, 0], "and venerable major and mrs ward": [65535, 0], "venerable major and mrs ward lawyer": [65535, 0], "major and mrs ward lawyer riverson": [65535, 0], "and mrs ward lawyer riverson the": [65535, 0], "mrs ward lawyer riverson the new": [65535, 0], "ward lawyer riverson the new notable": [65535, 0], "lawyer riverson the new notable from": [65535, 0], "riverson the new notable from a": [65535, 0], "the new notable from a distance": [65535, 0], "new notable from a distance next": [65535, 0], "notable from a distance next the": [65535, 0], "from a distance next the belle": [65535, 0], "a distance next the belle of": [65535, 0], "distance next the belle of the": [65535, 0], "next the belle of the village": [65535, 0], "the belle of the village followed": [65535, 0], "belle of the village followed by": [65535, 0], "of the village followed by a": [65535, 0], "the village followed by a troop": [65535, 0], "village followed by a troop of": [65535, 0], "followed by a troop of lawn": [65535, 0], "by a troop of lawn clad": [65535, 0], "a troop of lawn clad and": [65535, 0], "troop of lawn clad and ribbon": [65535, 0], "of lawn clad and ribbon decked": [65535, 0], "lawn clad and ribbon decked young": [65535, 0], "clad and ribbon decked young heart": [65535, 0], "and ribbon decked young heart breakers": [65535, 0], "ribbon decked young heart breakers then": [65535, 0], "decked young heart breakers then all": [65535, 0], "young heart breakers then all the": [65535, 0], "heart breakers then all the young": [65535, 0], "breakers then all the young clerks": [65535, 0], "then all the young clerks in": [65535, 0], "all the young clerks in town": [65535, 0], "the young clerks in town in": [65535, 0], "young clerks in town in a": [65535, 0], "clerks in town in a body": [65535, 0], "in town in a body for": [65535, 0], "town in a body for they": [65535, 0], "in a body for they had": [65535, 0], "a body for they had stood": [65535, 0], "body for they had stood in": [65535, 0], "for they had stood in the": [65535, 0], "they had stood in the vestibule": [65535, 0], "had stood in the vestibule sucking": [65535, 0], "stood in the vestibule sucking their": [65535, 0], "in the vestibule sucking their cane": [65535, 0], "the vestibule sucking their cane heads": [65535, 0], "vestibule sucking their cane heads a": [65535, 0], "sucking their cane heads a circling": [65535, 0], "their cane heads a circling wall": [65535, 0], "cane heads a circling wall of": [65535, 0], "heads a circling wall of oiled": [65535, 0], "a circling wall of oiled and": [65535, 0], "circling wall of oiled and simpering": [65535, 0], "wall of oiled and simpering admirers": [65535, 0], "of oiled and simpering admirers till": [65535, 0], "oiled and simpering admirers till the": [65535, 0], "and simpering admirers till the last": [65535, 0], "simpering admirers till the last girl": [65535, 0], "admirers till the last girl had": [65535, 0], "till the last girl had run": [65535, 0], "the last girl had run their": [65535, 0], "last girl had run their gantlet": [65535, 0], "girl had run their gantlet and": [65535, 0], "had run their gantlet and last": [65535, 0], "run their gantlet and last of": [65535, 0], "their gantlet and last of all": [65535, 0], "gantlet and last of all came": [65535, 0], "and last of all came the": [65535, 0], "last of all came the model": [65535, 0], "of all came the model boy": [65535, 0], "all came the model boy willie": [65535, 0], "came the model boy willie mufferson": [65535, 0], "the model boy willie mufferson taking": [65535, 0], "model boy willie mufferson taking as": [65535, 0], "boy willie mufferson taking as heedful": [65535, 0], "willie mufferson taking as heedful care": [65535, 0], "mufferson taking as heedful care of": [65535, 0], "taking as heedful care of his": [65535, 0], "as heedful care of his mother": [65535, 0], "heedful care of his mother as": [65535, 0], "care of his mother as if": [65535, 0], "of his mother as if she": [65535, 0], "his mother as if she were": [65535, 0], "mother as if she were cut": [65535, 0], "as if she were cut glass": [65535, 0], "if she were cut glass he": [65535, 0], "she were cut glass he always": [65535, 0], "were cut glass he always brought": [65535, 0], "cut glass he always brought his": [65535, 0], "glass he always brought his mother": [65535, 0], "he always brought his mother to": [65535, 0], "always brought his mother to church": [65535, 0], "brought his mother to church and": [65535, 0], "his mother to church and was": [65535, 0], "mother to church and was the": [65535, 0], "to church and was the pride": [65535, 0], "church and was the pride of": [65535, 0], "and was the pride of all": [65535, 0], "was the pride of all the": [65535, 0], "the pride of all the matrons": [65535, 0], "pride of all the matrons the": [65535, 0], "of all the matrons the boys": [65535, 0], "all the matrons the boys all": [65535, 0], "the matrons the boys all hated": [65535, 0], "matrons the boys all hated him": [65535, 0], "the boys all hated him he": [65535, 0], "boys all hated him he was": [65535, 0], "all hated him he was so": [65535, 0], "hated him he was so good": [65535, 0], "him he was so good and": [65535, 0], "he was so good and besides": [65535, 0], "was so good and besides he": [65535, 0], "so good and besides he had": [65535, 0], "good and besides he had been": [65535, 0], "and besides he had been thrown": [65535, 0], "besides he had been thrown up": [65535, 0], "he had been thrown up to": [65535, 0], "had been thrown up to them": [65535, 0], "been thrown up to them so": [65535, 0], "thrown up to them so much": [65535, 0], "up to them so much his": [65535, 0], "to them so much his white": [65535, 0], "them so much his white handkerchief": [65535, 0], "so much his white handkerchief was": [65535, 0], "much his white handkerchief was hanging": [65535, 0], "his white handkerchief was hanging out": [65535, 0], "white handkerchief was hanging out of": [65535, 0], "handkerchief was hanging out of his": [65535, 0], "was hanging out of his pocket": [65535, 0], "hanging out of his pocket behind": [65535, 0], "out of his pocket behind as": [65535, 0], "of his pocket behind as usual": [65535, 0], "his pocket behind as usual on": [65535, 0], "pocket behind as usual on sundays": [65535, 0], "behind as usual on sundays accidentally": [65535, 0], "as usual on sundays accidentally tom": [65535, 0], "usual on sundays accidentally tom had": [65535, 0], "on sundays accidentally tom had no": [65535, 0], "sundays accidentally tom had no handkerchief": [65535, 0], "accidentally tom had no handkerchief and": [65535, 0], "tom had no handkerchief and he": [65535, 0], "had no handkerchief and he looked": [65535, 0], "no handkerchief and he looked upon": [65535, 0], "handkerchief and he looked upon boys": [65535, 0], "and he looked upon boys who": [65535, 0], "he looked upon boys who had": [65535, 0], "looked upon boys who had as": [65535, 0], "upon boys who had as snobs": [65535, 0], "boys who had as snobs the": [65535, 0], "who had as snobs the congregation": [65535, 0], "had as snobs the congregation being": [65535, 0], "as snobs the congregation being fully": [65535, 0], "snobs the congregation being fully assembled": [65535, 0], "the congregation being fully assembled now": [65535, 0], "congregation being fully assembled now the": [65535, 0], "being fully assembled now the bell": [65535, 0], "fully assembled now the bell rang": [65535, 0], "assembled now the bell rang once": [65535, 0], "now the bell rang once more": [65535, 0], "the bell rang once more to": [65535, 0], "bell rang once more to warn": [65535, 0], "rang once more to warn laggards": [65535, 0], "once more to warn laggards and": [65535, 0], "more to warn laggards and stragglers": [65535, 0], "to warn laggards and stragglers and": [65535, 0], "warn laggards and stragglers and then": [65535, 0], "laggards and stragglers and then a": [65535, 0], "and stragglers and then a solemn": [65535, 0], "stragglers and then a solemn hush": [65535, 0], "and then a solemn hush fell": [65535, 0], "then a solemn hush fell upon": [65535, 0], "a solemn hush fell upon the": [65535, 0], "solemn hush fell upon the church": [65535, 0], "hush fell upon the church which": [65535, 0], "fell upon the church which was": [65535, 0], "upon the church which was only": [65535, 0], "the church which was only broken": [65535, 0], "church which was only broken by": [65535, 0], "which was only broken by the": [65535, 0], "was only broken by the tittering": [65535, 0], "only broken by the tittering and": [65535, 0], "broken by the tittering and whispering": [65535, 0], "by the tittering and whispering of": [65535, 0], "the tittering and whispering of the": [65535, 0], "tittering and whispering of the choir": [65535, 0], "and whispering of the choir in": [65535, 0], "whispering of the choir in the": [65535, 0], "of the choir in the gallery": [65535, 0], "the choir in the gallery the": [65535, 0], "choir in the gallery the choir": [65535, 0], "in the gallery the choir always": [65535, 0], "the gallery the choir always tittered": [65535, 0], "gallery the choir always tittered and": [65535, 0], "the choir always tittered and whispered": [65535, 0], "choir always tittered and whispered all": [65535, 0], "always tittered and whispered all through": [65535, 0], "tittered and whispered all through service": [65535, 0], "and whispered all through service there": [65535, 0], "whispered all through service there was": [65535, 0], "all through service there was once": [65535, 0], "through service there was once a": [65535, 0], "service there was once a church": [65535, 0], "there was once a church choir": [65535, 0], "was once a church choir that": [65535, 0], "once a church choir that was": [65535, 0], "a church choir that was not": [65535, 0], "church choir that was not ill": [65535, 0], "choir that was not ill bred": [65535, 0], "that was not ill bred but": [65535, 0], "was not ill bred but i": [65535, 0], "not ill bred but i have": [65535, 0], "ill bred but i have forgotten": [65535, 0], "bred but i have forgotten where": [65535, 0], "but i have forgotten where it": [65535, 0], "i have forgotten where it was": [65535, 0], "have forgotten where it was now": [65535, 0], "forgotten where it was now it": [65535, 0], "where it was now it was": [65535, 0], "it was now it was a": [65535, 0], "was now it was a great": [65535, 0], "now it was a great many": [65535, 0], "it was a great many years": [65535, 0], "was a great many years ago": [65535, 0], "a great many years ago and": [65535, 0], "great many years ago and i": [65535, 0], "many years ago and i can": [65535, 0], "years ago and i can scarcely": [65535, 0], "ago and i can scarcely remember": [65535, 0], "and i can scarcely remember anything": [65535, 0], "i can scarcely remember anything about": [65535, 0], "can scarcely remember anything about it": [65535, 0], "scarcely remember anything about it but": [65535, 0], "remember anything about it but i": [65535, 0], "anything about it but i think": [65535, 0], "about it but i think it": [65535, 0], "it but i think it was": [65535, 0], "but i think it was in": [65535, 0], "i think it was in some": [65535, 0], "think it was in some foreign": [65535, 0], "it was in some foreign country": [65535, 0], "was in some foreign country the": [65535, 0], "in some foreign country the minister": [65535, 0], "some foreign country the minister gave": [65535, 0], "foreign country the minister gave out": [65535, 0], "country the minister gave out the": [65535, 0], "the minister gave out the hymn": [65535, 0], "minister gave out the hymn and": [65535, 0], "gave out the hymn and read": [65535, 0], "out the hymn and read it": [65535, 0], "the hymn and read it through": [65535, 0], "hymn and read it through with": [65535, 0], "and read it through with a": [65535, 0], "read it through with a relish": [65535, 0], "it through with a relish in": [65535, 0], "through with a relish in a": [65535, 0], "with a relish in a peculiar": [65535, 0], "a relish in a peculiar style": [65535, 0], "relish in a peculiar style which": [65535, 0], "in a peculiar style which was": [65535, 0], "a peculiar style which was much": [65535, 0], "peculiar style which was much admired": [65535, 0], "style which was much admired in": [65535, 0], "which was much admired in that": [65535, 0], "was much admired in that part": [65535, 0], "much admired in that part of": [65535, 0], "admired in that part of the": [65535, 0], "in that part of the country": [65535, 0], "that part of the country his": [65535, 0], "part of the country his voice": [65535, 0], "of the country his voice began": [65535, 0], "the country his voice began on": [65535, 0], "country his voice began on a": [65535, 0], "his voice began on a medium": [65535, 0], "voice began on a medium key": [65535, 0], "began on a medium key and": [65535, 0], "on a medium key and climbed": [65535, 0], "a medium key and climbed steadily": [65535, 0], "medium key and climbed steadily up": [65535, 0], "key and climbed steadily up till": [65535, 0], "and climbed steadily up till it": [65535, 0], "climbed steadily up till it reached": [65535, 0], "steadily up till it reached a": [65535, 0], "up till it reached a certain": [65535, 0], "till it reached a certain point": [65535, 0], "it reached a certain point where": [65535, 0], "reached a certain point where it": [65535, 0], "a certain point where it bore": [65535, 0], "certain point where it bore with": [65535, 0], "point where it bore with strong": [65535, 0], "where it bore with strong emphasis": [65535, 0], "it bore with strong emphasis upon": [65535, 0], "bore with strong emphasis upon the": [65535, 0], "with strong emphasis upon the topmost": [65535, 0], "strong emphasis upon the topmost word": [65535, 0], "emphasis upon the topmost word and": [65535, 0], "upon the topmost word and then": [65535, 0], "the topmost word and then plunged": [65535, 0], "topmost word and then plunged down": [65535, 0], "word and then plunged down as": [65535, 0], "and then plunged down as if": [65535, 0], "then plunged down as if from": [65535, 0], "plunged down as if from a": [65535, 0], "down as if from a spring": [65535, 0], "as if from a spring board": [65535, 0], "if from a spring board shall": [65535, 0], "from a spring board shall i": [65535, 0], "a spring board shall i be": [65535, 0], "spring board shall i be car": [65535, 0], "board shall i be car ri": [65535, 0], "shall i be car ri ed": [65535, 0], "i be car ri ed toe": [65535, 0], "be car ri ed toe the": [65535, 0], "car ri ed toe the skies": [65535, 0], "ri ed toe the skies on": [65535, 0], "ed toe the skies on flow'ry": [65535, 0], "toe the skies on flow'ry beds": [65535, 0], "the skies on flow'ry beds of": [65535, 0], "skies on flow'ry beds of ease": [65535, 0], "on flow'ry beds of ease whilst": [65535, 0], "flow'ry beds of ease whilst others": [65535, 0], "beds of ease whilst others fight": [65535, 0], "of ease whilst others fight to": [65535, 0], "ease whilst others fight to win": [65535, 0], "whilst others fight to win the": [65535, 0], "others fight to win the prize": [65535, 0], "fight to win the prize and": [65535, 0], "to win the prize and sail": [65535, 0], "win the prize and sail thro'": [65535, 0], "the prize and sail thro' bloody": [65535, 0], "prize and sail thro' bloody seas": [65535, 0], "and sail thro' bloody seas he": [65535, 0], "sail thro' bloody seas he was": [65535, 0], "thro' bloody seas he was regarded": [65535, 0], "bloody seas he was regarded as": [65535, 0], "seas he was regarded as a": [65535, 0], "he was regarded as a wonderful": [65535, 0], "was regarded as a wonderful reader": [65535, 0], "regarded as a wonderful reader at": [65535, 0], "as a wonderful reader at church": [65535, 0], "a wonderful reader at church sociables": [65535, 0], "wonderful reader at church sociables he": [65535, 0], "reader at church sociables he was": [65535, 0], "at church sociables he was always": [65535, 0], "church sociables he was always called": [65535, 0], "sociables he was always called upon": [65535, 0], "he was always called upon to": [65535, 0], "was always called upon to read": [65535, 0], "always called upon to read poetry": [65535, 0], "called upon to read poetry and": [65535, 0], "upon to read poetry and when": [65535, 0], "to read poetry and when he": [65535, 0], "read poetry and when he was": [65535, 0], "poetry and when he was through": [65535, 0], "and when he was through the": [65535, 0], "when he was through the ladies": [65535, 0], "he was through the ladies would": [65535, 0], "was through the ladies would lift": [65535, 0], "through the ladies would lift up": [65535, 0], "the ladies would lift up their": [65535, 0], "ladies would lift up their hands": [65535, 0], "would lift up their hands and": [65535, 0], "lift up their hands and let": [65535, 0], "up their hands and let them": [65535, 0], "their hands and let them fall": [65535, 0], "hands and let them fall helplessly": [65535, 0], "and let them fall helplessly in": [65535, 0], "let them fall helplessly in their": [65535, 0], "them fall helplessly in their laps": [65535, 0], "fall helplessly in their laps and": [65535, 0], "helplessly in their laps and wall": [65535, 0], "in their laps and wall their": [65535, 0], "their laps and wall their eyes": [65535, 0], "laps and wall their eyes and": [65535, 0], "and wall their eyes and shake": [65535, 0], "wall their eyes and shake their": [65535, 0], "their eyes and shake their heads": [65535, 0], "eyes and shake their heads as": [65535, 0], "and shake their heads as much": [65535, 0], "shake their heads as much as": [65535, 0], "their heads as much as to": [65535, 0], "heads as much as to say": [65535, 0], "as much as to say words": [65535, 0], "much as to say words cannot": [65535, 0], "as to say words cannot express": [65535, 0], "to say words cannot express it": [65535, 0], "say words cannot express it it": [65535, 0], "words cannot express it it is": [65535, 0], "cannot express it it is too": [65535, 0], "express it it is too beautiful": [65535, 0], "it it is too beautiful too": [65535, 0], "it is too beautiful too beautiful": [65535, 0], "is too beautiful too beautiful for": [65535, 0], "too beautiful too beautiful for this": [65535, 0], "beautiful too beautiful for this mortal": [65535, 0], "too beautiful for this mortal earth": [65535, 0], "beautiful for this mortal earth after": [65535, 0], "for this mortal earth after the": [65535, 0], "this mortal earth after the hymn": [65535, 0], "mortal earth after the hymn had": [65535, 0], "earth after the hymn had been": [65535, 0], "after the hymn had been sung": [65535, 0], "the hymn had been sung the": [65535, 0], "hymn had been sung the rev": [65535, 0], "had been sung the rev mr": [65535, 0], "been sung the rev mr sprague": [65535, 0], "sung the rev mr sprague turned": [65535, 0], "the rev mr sprague turned himself": [65535, 0], "rev mr sprague turned himself into": [65535, 0], "mr sprague turned himself into a": [65535, 0], "sprague turned himself into a bulletin": [65535, 0], "turned himself into a bulletin board": [65535, 0], "himself into a bulletin board and": [65535, 0], "into a bulletin board and read": [65535, 0], "a bulletin board and read off": [65535, 0], "bulletin board and read off notices": [65535, 0], "board and read off notices of": [65535, 0], "and read off notices of meetings": [65535, 0], "read off notices of meetings and": [65535, 0], "off notices of meetings and societies": [65535, 0], "notices of meetings and societies and": [65535, 0], "of meetings and societies and things": [65535, 0], "meetings and societies and things till": [65535, 0], "and societies and things till it": [65535, 0], "societies and things till it seemed": [65535, 0], "and things till it seemed that": [65535, 0], "things till it seemed that the": [65535, 0], "till it seemed that the list": [65535, 0], "it seemed that the list would": [65535, 0], "seemed that the list would stretch": [65535, 0], "that the list would stretch out": [65535, 0], "the list would stretch out to": [65535, 0], "list would stretch out to the": [65535, 0], "would stretch out to the crack": [65535, 0], "stretch out to the crack of": [65535, 0], "out to the crack of doom": [65535, 0], "to the crack of doom a": [65535, 0], "the crack of doom a queer": [65535, 0], "crack of doom a queer custom": [65535, 0], "of doom a queer custom which": [65535, 0], "doom a queer custom which is": [65535, 0], "a queer custom which is still": [65535, 0], "queer custom which is still kept": [65535, 0], "custom which is still kept up": [65535, 0], "which is still kept up in": [65535, 0], "is still kept up in america": [65535, 0], "still kept up in america even": [65535, 0], "kept up in america even in": [65535, 0], "up in america even in cities": [65535, 0], "in america even in cities away": [65535, 0], "america even in cities away here": [65535, 0], "even in cities away here in": [65535, 0], "in cities away here in this": [65535, 0], "cities away here in this age": [65535, 0], "away here in this age of": [65535, 0], "here in this age of abundant": [65535, 0], "in this age of abundant newspapers": [65535, 0], "this age of abundant newspapers often": [65535, 0], "age of abundant newspapers often the": [65535, 0], "of abundant newspapers often the less": [65535, 0], "abundant newspapers often the less there": [65535, 0], "newspapers often the less there is": [65535, 0], "often the less there is to": [65535, 0], "the less there is to justify": [65535, 0], "less there is to justify a": [65535, 0], "there is to justify a traditional": [65535, 0], "is to justify a traditional custom": [65535, 0], "to justify a traditional custom the": [65535, 0], "justify a traditional custom the harder": [65535, 0], "a traditional custom the harder it": [65535, 0], "traditional custom the harder it is": [65535, 0], "custom the harder it is to": [65535, 0], "the harder it is to get": [65535, 0], "harder it is to get rid": [65535, 0], "it is to get rid of": [65535, 0], "is to get rid of it": [65535, 0], "to get rid of it and": [65535, 0], "get rid of it and now": [65535, 0], "rid of it and now the": [65535, 0], "of it and now the minister": [65535, 0], "it and now the minister prayed": [65535, 0], "and now the minister prayed a": [65535, 0], "now the minister prayed a good": [65535, 0], "the minister prayed a good generous": [65535, 0], "minister prayed a good generous prayer": [65535, 0], "prayed a good generous prayer it": [65535, 0], "a good generous prayer it was": [65535, 0], "good generous prayer it was and": [65535, 0], "generous prayer it was and went": [65535, 0], "prayer it was and went into": [65535, 0], "it was and went into details": [65535, 0], "was and went into details it": [65535, 0], "and went into details it pleaded": [65535, 0], "went into details it pleaded for": [65535, 0], "into details it pleaded for the": [65535, 0], "details it pleaded for the church": [65535, 0], "it pleaded for the church and": [65535, 0], "pleaded for the church and the": [65535, 0], "for the church and the little": [65535, 0], "the church and the little children": [65535, 0], "church and the little children of": [65535, 0], "and the little children of the": [65535, 0], "the little children of the church": [65535, 0], "little children of the church for": [65535, 0], "children of the church for the": [65535, 0], "of the church for the other": [65535, 0], "the church for the other churches": [65535, 0], "church for the other churches of": [65535, 0], "for the other churches of the": [65535, 0], "the other churches of the village": [65535, 0], "other churches of the village for": [65535, 0], "churches of the village for the": [65535, 0], "of the village for the village": [65535, 0], "the village for the village itself": [65535, 0], "village for the village itself for": [65535, 0], "for the village itself for the": [65535, 0], "the village itself for the county": [65535, 0], "village itself for the county for": [65535, 0], "itself for the county for the": [65535, 0], "for the county for the state": [65535, 0], "the county for the state for": [65535, 0], "county for the state for the": [65535, 0], "for the state for the state": [65535, 0], "the state for the state officers": [65535, 0], "state for the state officers for": [65535, 0], "for the state officers for the": [65535, 0], "the state officers for the united": [65535, 0], "state officers for the united states": [65535, 0], "officers for the united states for": [65535, 0], "for the united states for the": [65535, 0], "the united states for the churches": [65535, 0], "united states for the churches of": [65535, 0], "states for the churches of the": [65535, 0], "for the churches of the united": [65535, 0], "the churches of the united states": [65535, 0], "churches of the united states for": [65535, 0], "of the united states for congress": [65535, 0], "the united states for congress for": [65535, 0], "united states for congress for the": [65535, 0], "states for congress for the president": [65535, 0], "for congress for the president for": [65535, 0], "congress for the president for the": [65535, 0], "for the president for the officers": [65535, 0], "the president for the officers of": [65535, 0], "president for the officers of the": [65535, 0], "for the officers of the government": [65535, 0], "the officers of the government for": [65535, 0], "officers of the government for poor": [65535, 0], "of the government for poor sailors": [65535, 0], "the government for poor sailors tossed": [65535, 0], "government for poor sailors tossed by": [65535, 0], "for poor sailors tossed by stormy": [65535, 0], "poor sailors tossed by stormy seas": [65535, 0], "sailors tossed by stormy seas for": [65535, 0], "tossed by stormy seas for the": [65535, 0], "by stormy seas for the oppressed": [65535, 0], "stormy seas for the oppressed millions": [65535, 0], "seas for the oppressed millions groaning": [65535, 0], "for the oppressed millions groaning under": [65535, 0], "the oppressed millions groaning under the": [65535, 0], "oppressed millions groaning under the heel": [65535, 0], "millions groaning under the heel of": [65535, 0], "groaning under the heel of european": [65535, 0], "under the heel of european monarchies": [65535, 0], "the heel of european monarchies and": [65535, 0], "heel of european monarchies and oriental": [65535, 0], "of european monarchies and oriental despotisms": [65535, 0], "european monarchies and oriental despotisms for": [65535, 0], "monarchies and oriental despotisms for such": [65535, 0], "and oriental despotisms for such as": [65535, 0], "oriental despotisms for such as have": [65535, 0], "despotisms for such as have the": [65535, 0], "for such as have the light": [65535, 0], "such as have the light and": [65535, 0], "as have the light and the": [65535, 0], "have the light and the good": [65535, 0], "the light and the good tidings": [65535, 0], "light and the good tidings and": [65535, 0], "and the good tidings and yet": [65535, 0], "the good tidings and yet have": [65535, 0], "good tidings and yet have not": [65535, 0], "tidings and yet have not eyes": [65535, 0], "and yet have not eyes to": [65535, 0], "yet have not eyes to see": [65535, 0], "have not eyes to see nor": [65535, 0], "not eyes to see nor ears": [65535, 0], "eyes to see nor ears to": [65535, 0], "to see nor ears to hear": [65535, 0], "see nor ears to hear withal": [65535, 0], "nor ears to hear withal for": [65535, 0], "ears to hear withal for the": [65535, 0], "to hear withal for the heathen": [65535, 0], "hear withal for the heathen in": [65535, 0], "withal for the heathen in the": [65535, 0], "for the heathen in the far": [65535, 0], "the heathen in the far islands": [65535, 0], "heathen in the far islands of": [65535, 0], "in the far islands of the": [65535, 0], "the far islands of the sea": [65535, 0], "far islands of the sea and": [65535, 0], "islands of the sea and closed": [65535, 0], "of the sea and closed with": [65535, 0], "the sea and closed with a": [65535, 0], "sea and closed with a supplication": [65535, 0], "and closed with a supplication that": [65535, 0], "closed with a supplication that the": [65535, 0], "with a supplication that the words": [65535, 0], "a supplication that the words he": [65535, 0], "supplication that the words he was": [65535, 0], "that the words he was about": [65535, 0], "the words he was about to": [65535, 0], "words he was about to speak": [65535, 0], "he was about to speak might": [65535, 0], "was about to speak might find": [65535, 0], "about to speak might find grace": [65535, 0], "to speak might find grace and": [65535, 0], "speak might find grace and favor": [65535, 0], "might find grace and favor and": [65535, 0], "find grace and favor and be": [65535, 0], "grace and favor and be as": [65535, 0], "and favor and be as seed": [65535, 0], "favor and be as seed sown": [65535, 0], "and be as seed sown in": [65535, 0], "be as seed sown in fertile": [65535, 0], "as seed sown in fertile ground": [65535, 0], "seed sown in fertile ground yielding": [65535, 0], "sown in fertile ground yielding in": [65535, 0], "in fertile ground yielding in time": [65535, 0], "fertile ground yielding in time a": [65535, 0], "ground yielding in time a grateful": [65535, 0], "yielding in time a grateful harvest": [65535, 0], "in time a grateful harvest of": [65535, 0], "time a grateful harvest of good": [65535, 0], "a grateful harvest of good amen": [65535, 0], "grateful harvest of good amen there": [65535, 0], "harvest of good amen there was": [65535, 0], "of good amen there was a": [65535, 0], "good amen there was a rustling": [65535, 0], "amen there was a rustling of": [65535, 0], "there was a rustling of dresses": [65535, 0], "was a rustling of dresses and": [65535, 0], "a rustling of dresses and the": [65535, 0], "rustling of dresses and the standing": [65535, 0], "of dresses and the standing congregation": [65535, 0], "dresses and the standing congregation sat": [65535, 0], "and the standing congregation sat down": [65535, 0], "the standing congregation sat down the": [65535, 0], "standing congregation sat down the boy": [65535, 0], "congregation sat down the boy whose": [65535, 0], "sat down the boy whose history": [65535, 0], "down the boy whose history this": [65535, 0], "the boy whose history this book": [65535, 0], "boy whose history this book relates": [65535, 0], "whose history this book relates did": [65535, 0], "history this book relates did not": [65535, 0], "this book relates did not enjoy": [65535, 0], "book relates did not enjoy the": [65535, 0], "relates did not enjoy the prayer": [65535, 0], "did not enjoy the prayer he": [65535, 0], "not enjoy the prayer he only": [65535, 0], "enjoy the prayer he only endured": [65535, 0], "the prayer he only endured it": [65535, 0], "prayer he only endured it if": [65535, 0], "he only endured it if he": [65535, 0], "only endured it if he even": [65535, 0], "endured it if he even did": [65535, 0], "it if he even did that": [65535, 0], "if he even did that much": [65535, 0], "he even did that much he": [65535, 0], "even did that much he was": [65535, 0], "did that much he was restive": [65535, 0], "that much he was restive all": [65535, 0], "much he was restive all through": [65535, 0], "he was restive all through it": [65535, 0], "was restive all through it he": [65535, 0], "restive all through it he kept": [65535, 0], "all through it he kept tally": [65535, 0], "through it he kept tally of": [65535, 0], "it he kept tally of the": [65535, 0], "he kept tally of the details": [65535, 0], "kept tally of the details of": [65535, 0], "tally of the details of the": [65535, 0], "of the details of the prayer": [65535, 0], "the details of the prayer unconsciously": [65535, 0], "details of the prayer unconsciously for": [65535, 0], "of the prayer unconsciously for he": [65535, 0], "the prayer unconsciously for he was": [65535, 0], "prayer unconsciously for he was not": [65535, 0], "unconsciously for he was not listening": [65535, 0], "for he was not listening but": [65535, 0], "he was not listening but he": [65535, 0], "was not listening but he knew": [65535, 0], "not listening but he knew the": [65535, 0], "listening but he knew the ground": [65535, 0], "but he knew the ground of": [65535, 0], "he knew the ground of old": [65535, 0], "knew the ground of old and": [65535, 0], "the ground of old and the": [65535, 0], "ground of old and the clergyman's": [65535, 0], "of old and the clergyman's regular": [65535, 0], "old and the clergyman's regular route": [65535, 0], "and the clergyman's regular route over": [65535, 0], "the clergyman's regular route over it": [65535, 0], "clergyman's regular route over it and": [65535, 0], "regular route over it and when": [65535, 0], "route over it and when a": [65535, 0], "over it and when a little": [65535, 0], "it and when a little trifle": [65535, 0], "and when a little trifle of": [65535, 0], "when a little trifle of new": [65535, 0], "a little trifle of new matter": [65535, 0], "little trifle of new matter was": [65535, 0], "trifle of new matter was interlarded": [65535, 0], "of new matter was interlarded his": [65535, 0], "new matter was interlarded his ear": [65535, 0], "matter was interlarded his ear detected": [65535, 0], "was interlarded his ear detected it": [65535, 0], "interlarded his ear detected it and": [65535, 0], "his ear detected it and his": [65535, 0], "ear detected it and his whole": [65535, 0], "detected it and his whole nature": [65535, 0], "it and his whole nature resented": [65535, 0], "and his whole nature resented it": [65535, 0], "his whole nature resented it he": [65535, 0], "whole nature resented it he considered": [65535, 0], "nature resented it he considered additions": [65535, 0], "resented it he considered additions unfair": [65535, 0], "it he considered additions unfair and": [65535, 0], "he considered additions unfair and scoundrelly": [65535, 0], "considered additions unfair and scoundrelly in": [65535, 0], "additions unfair and scoundrelly in the": [65535, 0], "unfair and scoundrelly in the midst": [65535, 0], "and scoundrelly in the midst of": [65535, 0], "scoundrelly in the midst of the": [65535, 0], "in the midst of the prayer": [65535, 0], "the midst of the prayer a": [65535, 0], "midst of the prayer a fly": [65535, 0], "of the prayer a fly had": [65535, 0], "the prayer a fly had lit": [65535, 0], "prayer a fly had lit on": [65535, 0], "a fly had lit on the": [65535, 0], "fly had lit on the back": [65535, 0], "had lit on the back of": [65535, 0], "lit on the back of the": [65535, 0], "on the back of the pew": [65535, 0], "the back of the pew in": [65535, 0], "back of the pew in front": [65535, 0], "of the pew in front of": [65535, 0], "the pew in front of him": [65535, 0], "pew in front of him and": [65535, 0], "in front of him and tortured": [65535, 0], "front of him and tortured his": [65535, 0], "of him and tortured his spirit": [65535, 0], "him and tortured his spirit by": [65535, 0], "and tortured his spirit by calmly": [65535, 0], "tortured his spirit by calmly rubbing": [65535, 0], "his spirit by calmly rubbing its": [65535, 0], "spirit by calmly rubbing its hands": [65535, 0], "by calmly rubbing its hands together": [65535, 0], "calmly rubbing its hands together embracing": [65535, 0], "rubbing its hands together embracing its": [65535, 0], "its hands together embracing its head": [65535, 0], "hands together embracing its head with": [65535, 0], "together embracing its head with its": [65535, 0], "embracing its head with its arms": [65535, 0], "its head with its arms and": [65535, 0], "head with its arms and polishing": [65535, 0], "with its arms and polishing it": [65535, 0], "its arms and polishing it so": [65535, 0], "arms and polishing it so vigorously": [65535, 0], "and polishing it so vigorously that": [65535, 0], "polishing it so vigorously that it": [65535, 0], "it so vigorously that it seemed": [65535, 0], "so vigorously that it seemed to": [65535, 0], "vigorously that it seemed to almost": [65535, 0], "that it seemed to almost part": [65535, 0], "it seemed to almost part company": [65535, 0], "seemed to almost part company with": [65535, 0], "to almost part company with the": [65535, 0], "almost part company with the body": [65535, 0], "part company with the body and": [65535, 0], "company with the body and the": [65535, 0], "with the body and the slender": [65535, 0], "the body and the slender thread": [65535, 0], "body and the slender thread of": [65535, 0], "and the slender thread of a": [65535, 0], "the slender thread of a neck": [65535, 0], "slender thread of a neck was": [65535, 0], "thread of a neck was exposed": [65535, 0], "of a neck was exposed to": [65535, 0], "a neck was exposed to view": [65535, 0], "neck was exposed to view scraping": [65535, 0], "was exposed to view scraping its": [65535, 0], "exposed to view scraping its wings": [65535, 0], "to view scraping its wings with": [65535, 0], "view scraping its wings with its": [65535, 0], "scraping its wings with its hind": [65535, 0], "its wings with its hind legs": [65535, 0], "wings with its hind legs and": [65535, 0], "with its hind legs and smoothing": [65535, 0], "its hind legs and smoothing them": [65535, 0], "hind legs and smoothing them to": [65535, 0], "legs and smoothing them to its": [65535, 0], "and smoothing them to its body": [65535, 0], "smoothing them to its body as": [65535, 0], "them to its body as if": [65535, 0], "to its body as if they": [65535, 0], "its body as if they had": [65535, 0], "body as if they had been": [65535, 0], "as if they had been coat": [65535, 0], "if they had been coat tails": [65535, 0], "they had been coat tails going": [65535, 0], "had been coat tails going through": [65535, 0], "been coat tails going through its": [65535, 0], "coat tails going through its whole": [65535, 0], "tails going through its whole toilet": [65535, 0], "going through its whole toilet as": [65535, 0], "through its whole toilet as tranquilly": [65535, 0], "its whole toilet as tranquilly as": [65535, 0], "whole toilet as tranquilly as if": [65535, 0], "toilet as tranquilly as if it": [65535, 0], "as tranquilly as if it knew": [65535, 0], "tranquilly as if it knew it": [65535, 0], "as if it knew it was": [65535, 0], "if it knew it was perfectly": [65535, 0], "it knew it was perfectly safe": [65535, 0], "knew it was perfectly safe as": [65535, 0], "it was perfectly safe as indeed": [65535, 0], "was perfectly safe as indeed it": [65535, 0], "perfectly safe as indeed it was": [65535, 0], "safe as indeed it was for": [65535, 0], "as indeed it was for as": [65535, 0], "indeed it was for as sorely": [65535, 0], "it was for as sorely as": [65535, 0], "was for as sorely as tom's": [65535, 0], "for as sorely as tom's hands": [65535, 0], "as sorely as tom's hands itched": [65535, 0], "sorely as tom's hands itched to": [65535, 0], "as tom's hands itched to grab": [65535, 0], "tom's hands itched to grab for": [65535, 0], "hands itched to grab for it": [65535, 0], "itched to grab for it they": [65535, 0], "to grab for it they did": [65535, 0], "grab for it they did not": [65535, 0], "for it they did not dare": [65535, 0], "it they did not dare he": [65535, 0], "they did not dare he believed": [65535, 0], "did not dare he believed his": [65535, 0], "not dare he believed his soul": [65535, 0], "dare he believed his soul would": [65535, 0], "he believed his soul would be": [65535, 0], "believed his soul would be instantly": [65535, 0], "his soul would be instantly destroyed": [65535, 0], "soul would be instantly destroyed if": [65535, 0], "would be instantly destroyed if he": [65535, 0], "be instantly destroyed if he did": [65535, 0], "instantly destroyed if he did such": [65535, 0], "destroyed if he did such a": [65535, 0], "if he did such a thing": [65535, 0], "he did such a thing while": [65535, 0], "did such a thing while the": [65535, 0], "such a thing while the prayer": [65535, 0], "a thing while the prayer was": [65535, 0], "thing while the prayer was going": [65535, 0], "while the prayer was going on": [65535, 0], "the prayer was going on but": [65535, 0], "prayer was going on but with": [65535, 0], "was going on but with the": [65535, 0], "going on but with the closing": [65535, 0], "on but with the closing sentence": [65535, 0], "but with the closing sentence his": [65535, 0], "with the closing sentence his hand": [65535, 0], "the closing sentence his hand began": [65535, 0], "closing sentence his hand began to": [65535, 0], "sentence his hand began to curve": [65535, 0], "his hand began to curve and": [65535, 0], "hand began to curve and steal": [65535, 0], "began to curve and steal forward": [65535, 0], "to curve and steal forward and": [65535, 0], "curve and steal forward and the": [65535, 0], "and steal forward and the instant": [65535, 0], "steal forward and the instant the": [65535, 0], "forward and the instant the amen": [65535, 0], "and the instant the amen was": [65535, 0], "the instant the amen was out": [65535, 0], "instant the amen was out the": [65535, 0], "the amen was out the fly": [65535, 0], "amen was out the fly was": [65535, 0], "was out the fly was a": [65535, 0], "out the fly was a prisoner": [65535, 0], "the fly was a prisoner of": [65535, 0], "fly was a prisoner of war": [65535, 0], "was a prisoner of war his": [65535, 0], "a prisoner of war his aunt": [65535, 0], "prisoner of war his aunt detected": [65535, 0], "of war his aunt detected the": [65535, 0], "war his aunt detected the act": [65535, 0], "his aunt detected the act and": [65535, 0], "aunt detected the act and made": [65535, 0], "detected the act and made him": [65535, 0], "the act and made him let": [65535, 0], "act and made him let it": [65535, 0], "and made him let it go": [65535, 0], "made him let it go the": [65535, 0], "him let it go the minister": [65535, 0], "let it go the minister gave": [65535, 0], "it go the minister gave out": [65535, 0], "go the minister gave out his": [65535, 0], "the minister gave out his text": [65535, 0], "minister gave out his text and": [65535, 0], "gave out his text and droned": [65535, 0], "out his text and droned along": [65535, 0], "his text and droned along monotonously": [65535, 0], "text and droned along monotonously through": [65535, 0], "and droned along monotonously through an": [65535, 0], "droned along monotonously through an argument": [65535, 0], "along monotonously through an argument that": [65535, 0], "monotonously through an argument that was": [65535, 0], "through an argument that was so": [65535, 0], "an argument that was so prosy": [65535, 0], "argument that was so prosy that": [65535, 0], "that was so prosy that many": [65535, 0], "was so prosy that many a": [65535, 0], "so prosy that many a head": [65535, 0], "prosy that many a head by": [65535, 0], "that many a head by and": [65535, 0], "many a head by and by": [65535, 0], "a head by and by began": [65535, 0], "head by and by began to": [65535, 0], "by and by began to nod": [65535, 0], "and by began to nod and": [65535, 0], "by began to nod and yet": [65535, 0], "began to nod and yet it": [65535, 0], "to nod and yet it was": [65535, 0], "nod and yet it was an": [65535, 0], "and yet it was an argument": [65535, 0], "yet it was an argument that": [65535, 0], "it was an argument that dealt": [65535, 0], "was an argument that dealt in": [65535, 0], "an argument that dealt in limitless": [65535, 0], "argument that dealt in limitless fire": [65535, 0], "that dealt in limitless fire and": [65535, 0], "dealt in limitless fire and brimstone": [65535, 0], "in limitless fire and brimstone and": [65535, 0], "limitless fire and brimstone and thinned": [65535, 0], "fire and brimstone and thinned the": [65535, 0], "and brimstone and thinned the predestined": [65535, 0], "brimstone and thinned the predestined elect": [65535, 0], "and thinned the predestined elect down": [65535, 0], "thinned the predestined elect down to": [65535, 0], "the predestined elect down to a": [65535, 0], "predestined elect down to a company": [65535, 0], "elect down to a company so": [65535, 0], "down to a company so small": [65535, 0], "to a company so small as": [65535, 0], "a company so small as to": [65535, 0], "company so small as to be": [65535, 0], "so small as to be hardly": [65535, 0], "small as to be hardly worth": [65535, 0], "as to be hardly worth the": [65535, 0], "to be hardly worth the saving": [65535, 0], "be hardly worth the saving tom": [65535, 0], "hardly worth the saving tom counted": [65535, 0], "worth the saving tom counted the": [65535, 0], "the saving tom counted the pages": [65535, 0], "saving tom counted the pages of": [65535, 0], "tom counted the pages of the": [65535, 0], "counted the pages of the sermon": [65535, 0], "the pages of the sermon after": [65535, 0], "pages of the sermon after church": [65535, 0], "of the sermon after church he": [65535, 0], "the sermon after church he always": [65535, 0], "sermon after church he always knew": [65535, 0], "after church he always knew how": [65535, 0], "church he always knew how many": [65535, 0], "he always knew how many pages": [65535, 0], "always knew how many pages there": [65535, 0], "knew how many pages there had": [65535, 0], "how many pages there had been": [65535, 0], "many pages there had been but": [65535, 0], "pages there had been but he": [65535, 0], "there had been but he seldom": [65535, 0], "had been but he seldom knew": [65535, 0], "been but he seldom knew anything": [65535, 0], "but he seldom knew anything else": [65535, 0], "he seldom knew anything else about": [65535, 0], "seldom knew anything else about the": [65535, 0], "knew anything else about the discourse": [65535, 0], "anything else about the discourse however": [65535, 0], "else about the discourse however this": [65535, 0], "about the discourse however this time": [65535, 0], "the discourse however this time he": [65535, 0], "discourse however this time he was": [65535, 0], "however this time he was really": [65535, 0], "this time he was really interested": [65535, 0], "time he was really interested for": [65535, 0], "he was really interested for a": [65535, 0], "was really interested for a little": [65535, 0], "really interested for a little while": [65535, 0], "interested for a little while the": [65535, 0], "for a little while the minister": [65535, 0], "a little while the minister made": [65535, 0], "little while the minister made a": [65535, 0], "while the minister made a grand": [65535, 0], "the minister made a grand and": [65535, 0], "minister made a grand and moving": [65535, 0], "made a grand and moving picture": [65535, 0], "a grand and moving picture of": [65535, 0], "grand and moving picture of the": [65535, 0], "and moving picture of the assembling": [65535, 0], "moving picture of the assembling together": [65535, 0], "picture of the assembling together of": [65535, 0], "of the assembling together of the": [65535, 0], "the assembling together of the world's": [65535, 0], "assembling together of the world's hosts": [65535, 0], "together of the world's hosts at": [65535, 0], "of the world's hosts at the": [65535, 0], "the world's hosts at the millennium": [65535, 0], "world's hosts at the millennium when": [65535, 0], "hosts at the millennium when the": [65535, 0], "at the millennium when the lion": [65535, 0], "the millennium when the lion and": [65535, 0], "millennium when the lion and the": [65535, 0], "when the lion and the lamb": [65535, 0], "the lion and the lamb should": [65535, 0], "lion and the lamb should lie": [65535, 0], "and the lamb should lie down": [65535, 0], "the lamb should lie down together": [65535, 0], "lamb should lie down together and": [65535, 0], "should lie down together and a": [65535, 0], "lie down together and a little": [65535, 0], "down together and a little child": [65535, 0], "together and a little child should": [65535, 0], "and a little child should lead": [65535, 0], "a little child should lead them": [65535, 0], "little child should lead them but": [65535, 0], "child should lead them but the": [65535, 0], "should lead them but the pathos": [65535, 0], "lead them but the pathos the": [65535, 0], "them but the pathos the lesson": [65535, 0], "but the pathos the lesson the": [65535, 0], "the pathos the lesson the moral": [65535, 0], "pathos the lesson the moral of": [65535, 0], "the lesson the moral of the": [65535, 0], "lesson the moral of the great": [65535, 0], "the moral of the great spectacle": [65535, 0], "moral of the great spectacle were": [65535, 0], "of the great spectacle were lost": [65535, 0], "the great spectacle were lost upon": [65535, 0], "great spectacle were lost upon the": [65535, 0], "spectacle were lost upon the boy": [65535, 0], "were lost upon the boy he": [65535, 0], "lost upon the boy he only": [65535, 0], "upon the boy he only thought": [65535, 0], "the boy he only thought of": [65535, 0], "boy he only thought of the": [65535, 0], "he only thought of the conspicuousness": [65535, 0], "only thought of the conspicuousness of": [65535, 0], "thought of the conspicuousness of the": [65535, 0], "of the conspicuousness of the principal": [65535, 0], "the conspicuousness of the principal character": [65535, 0], "conspicuousness of the principal character before": [65535, 0], "of the principal character before the": [65535, 0], "the principal character before the on": [65535, 0], "principal character before the on looking": [65535, 0], "character before the on looking nations": [65535, 0], "before the on looking nations his": [65535, 0], "the on looking nations his face": [65535, 0], "on looking nations his face lit": [65535, 0], "looking nations his face lit with": [65535, 0], "nations his face lit with the": [65535, 0], "his face lit with the thought": [65535, 0], "face lit with the thought and": [65535, 0], "lit with the thought and he": [65535, 0], "with the thought and he said": [65535, 0], "the thought and he said to": [65535, 0], "thought and he said to himself": [65535, 0], "and he said to himself that": [65535, 0], "he said to himself that he": [65535, 0], "said to himself that he wished": [65535, 0], "to himself that he wished he": [65535, 0], "himself that he wished he could": [65535, 0], "that he wished he could be": [65535, 0], "he wished he could be that": [65535, 0], "wished he could be that child": [65535, 0], "he could be that child if": [65535, 0], "could be that child if it": [65535, 0], "be that child if it was": [65535, 0], "that child if it was a": [65535, 0], "child if it was a tame": [65535, 0], "if it was a tame lion": [65535, 0], "it was a tame lion now": [65535, 0], "was a tame lion now he": [65535, 0], "a tame lion now he lapsed": [65535, 0], "tame lion now he lapsed into": [65535, 0], "lion now he lapsed into suffering": [65535, 0], "now he lapsed into suffering again": [65535, 0], "he lapsed into suffering again as": [65535, 0], "lapsed into suffering again as the": [65535, 0], "into suffering again as the dry": [65535, 0], "suffering again as the dry argument": [65535, 0], "again as the dry argument was": [65535, 0], "as the dry argument was resumed": [65535, 0], "the dry argument was resumed presently": [65535, 0], "dry argument was resumed presently he": [65535, 0], "argument was resumed presently he bethought": [65535, 0], "was resumed presently he bethought him": [65535, 0], "resumed presently he bethought him of": [65535, 0], "presently he bethought him of a": [65535, 0], "he bethought him of a treasure": [65535, 0], "bethought him of a treasure he": [65535, 0], "him of a treasure he had": [65535, 0], "of a treasure he had and": [65535, 0], "a treasure he had and got": [65535, 0], "treasure he had and got it": [65535, 0], "he had and got it out": [65535, 0], "had and got it out it": [65535, 0], "and got it out it was": [65535, 0], "got it out it was a": [65535, 0], "it out it was a large": [65535, 0], "out it was a large black": [65535, 0], "it was a large black beetle": [65535, 0], "was a large black beetle with": [65535, 0], "a large black beetle with formidable": [65535, 0], "large black beetle with formidable jaws": [65535, 0], "black beetle with formidable jaws a": [65535, 0], "beetle with formidable jaws a pinchbug": [65535, 0], "with formidable jaws a pinchbug he": [65535, 0], "formidable jaws a pinchbug he called": [65535, 0], "jaws a pinchbug he called it": [65535, 0], "a pinchbug he called it it": [65535, 0], "pinchbug he called it it was": [65535, 0], "he called it it was in": [65535, 0], "called it it was in a": [65535, 0], "it it was in a percussion": [65535, 0], "it was in a percussion cap": [65535, 0], "was in a percussion cap box": [65535, 0], "in a percussion cap box the": [65535, 0], "a percussion cap box the first": [65535, 0], "percussion cap box the first thing": [65535, 0], "cap box the first thing the": [65535, 0], "box the first thing the beetle": [65535, 0], "the first thing the beetle did": [65535, 0], "first thing the beetle did was": [65535, 0], "thing the beetle did was to": [65535, 0], "the beetle did was to take": [65535, 0], "beetle did was to take him": [65535, 0], "did was to take him by": [65535, 0], "was to take him by the": [65535, 0], "to take him by the finger": [65535, 0], "take him by the finger a": [65535, 0], "him by the finger a natural": [65535, 0], "by the finger a natural fillip": [65535, 0], "the finger a natural fillip followed": [65535, 0], "finger a natural fillip followed the": [65535, 0], "a natural fillip followed the beetle": [65535, 0], "natural fillip followed the beetle went": [65535, 0], "fillip followed the beetle went floundering": [65535, 0], "followed the beetle went floundering into": [65535, 0], "the beetle went floundering into the": [65535, 0], "beetle went floundering into the aisle": [65535, 0], "went floundering into the aisle and": [65535, 0], "floundering into the aisle and lit": [65535, 0], "into the aisle and lit on": [65535, 0], "the aisle and lit on its": [65535, 0], "aisle and lit on its back": [65535, 0], "and lit on its back and": [65535, 0], "lit on its back and the": [65535, 0], "on its back and the hurt": [65535, 0], "its back and the hurt finger": [65535, 0], "back and the hurt finger went": [65535, 0], "and the hurt finger went into": [65535, 0], "the hurt finger went into the": [65535, 0], "hurt finger went into the boy's": [65535, 0], "finger went into the boy's mouth": [65535, 0], "went into the boy's mouth the": [65535, 0], "into the boy's mouth the beetle": [65535, 0], "the boy's mouth the beetle lay": [65535, 0], "boy's mouth the beetle lay there": [65535, 0], "mouth the beetle lay there working": [65535, 0], "the beetle lay there working its": [65535, 0], "beetle lay there working its helpless": [65535, 0], "lay there working its helpless legs": [65535, 0], "there working its helpless legs unable": [65535, 0], "working its helpless legs unable to": [65535, 0], "its helpless legs unable to turn": [65535, 0], "helpless legs unable to turn over": [65535, 0], "legs unable to turn over tom": [65535, 0], "unable to turn over tom eyed": [65535, 0], "to turn over tom eyed it": [65535, 0], "turn over tom eyed it and": [65535, 0], "over tom eyed it and longed": [65535, 0], "tom eyed it and longed for": [65535, 0], "eyed it and longed for it": [65535, 0], "it and longed for it but": [65535, 0], "and longed for it but it": [65535, 0], "longed for it but it was": [65535, 0], "for it but it was safe": [65535, 0], "it but it was safe out": [65535, 0], "but it was safe out of": [65535, 0], "it was safe out of his": [65535, 0], "was safe out of his reach": [65535, 0], "safe out of his reach other": [65535, 0], "out of his reach other people": [65535, 0], "of his reach other people uninterested": [65535, 0], "his reach other people uninterested in": [65535, 0], "reach other people uninterested in the": [65535, 0], "other people uninterested in the sermon": [65535, 0], "people uninterested in the sermon found": [65535, 0], "uninterested in the sermon found relief": [65535, 0], "in the sermon found relief in": [65535, 0], "the sermon found relief in the": [65535, 0], "sermon found relief in the beetle": [65535, 0], "found relief in the beetle and": [65535, 0], "relief in the beetle and they": [65535, 0], "in the beetle and they eyed": [65535, 0], "the beetle and they eyed it": [65535, 0], "beetle and they eyed it too": [65535, 0], "and they eyed it too presently": [65535, 0], "they eyed it too presently a": [65535, 0], "eyed it too presently a vagrant": [65535, 0], "it too presently a vagrant poodle": [65535, 0], "too presently a vagrant poodle dog": [65535, 0], "presently a vagrant poodle dog came": [65535, 0], "a vagrant poodle dog came idling": [65535, 0], "vagrant poodle dog came idling along": [65535, 0], "poodle dog came idling along sad": [65535, 0], "dog came idling along sad at": [65535, 0], "came idling along sad at heart": [65535, 0], "idling along sad at heart lazy": [65535, 0], "along sad at heart lazy with": [65535, 0], "sad at heart lazy with the": [65535, 0], "at heart lazy with the summer": [65535, 0], "heart lazy with the summer softness": [65535, 0], "lazy with the summer softness and": [65535, 0], "with the summer softness and the": [65535, 0], "the summer softness and the quiet": [65535, 0], "summer softness and the quiet weary": [65535, 0], "softness and the quiet weary of": [65535, 0], "and the quiet weary of captivity": [65535, 0], "the quiet weary of captivity sighing": [65535, 0], "quiet weary of captivity sighing for": [65535, 0], "weary of captivity sighing for change": [65535, 0], "of captivity sighing for change he": [65535, 0], "captivity sighing for change he spied": [65535, 0], "sighing for change he spied the": [65535, 0], "for change he spied the beetle": [65535, 0], "change he spied the beetle the": [65535, 0], "he spied the beetle the drooping": [65535, 0], "spied the beetle the drooping tail": [65535, 0], "the beetle the drooping tail lifted": [65535, 0], "beetle the drooping tail lifted and": [65535, 0], "the drooping tail lifted and wagged": [65535, 0], "drooping tail lifted and wagged he": [65535, 0], "tail lifted and wagged he surveyed": [65535, 0], "lifted and wagged he surveyed the": [65535, 0], "and wagged he surveyed the prize": [65535, 0], "wagged he surveyed the prize walked": [65535, 0], "he surveyed the prize walked around": [65535, 0], "surveyed the prize walked around it": [65535, 0], "the prize walked around it smelt": [65535, 0], "prize walked around it smelt at": [65535, 0], "walked around it smelt at it": [65535, 0], "around it smelt at it from": [65535, 0], "it smelt at it from a": [65535, 0], "smelt at it from a safe": [65535, 0], "at it from a safe distance": [65535, 0], "it from a safe distance walked": [65535, 0], "from a safe distance walked around": [65535, 0], "a safe distance walked around it": [65535, 0], "safe distance walked around it again": [65535, 0], "distance walked around it again grew": [65535, 0], "walked around it again grew bolder": [65535, 0], "around it again grew bolder and": [65535, 0], "it again grew bolder and took": [65535, 0], "again grew bolder and took a": [65535, 0], "grew bolder and took a closer": [65535, 0], "bolder and took a closer smell": [65535, 0], "and took a closer smell then": [65535, 0], "took a closer smell then lifted": [65535, 0], "a closer smell then lifted his": [65535, 0], "closer smell then lifted his lip": [65535, 0], "smell then lifted his lip and": [65535, 0], "then lifted his lip and made": [65535, 0], "lifted his lip and made a": [65535, 0], "his lip and made a gingerly": [65535, 0], "lip and made a gingerly snatch": [65535, 0], "and made a gingerly snatch at": [65535, 0], "made a gingerly snatch at it": [65535, 0], "a gingerly snatch at it just": [65535, 0], "gingerly snatch at it just missing": [65535, 0], "snatch at it just missing it": [65535, 0], "at it just missing it made": [65535, 0], "it just missing it made another": [65535, 0], "just missing it made another and": [65535, 0], "missing it made another and another": [65535, 0], "it made another and another began": [65535, 0], "made another and another began to": [65535, 0], "another and another began to enjoy": [65535, 0], "and another began to enjoy the": [65535, 0], "another began to enjoy the diversion": [65535, 0], "began to enjoy the diversion subsided": [65535, 0], "to enjoy the diversion subsided to": [65535, 0], "enjoy the diversion subsided to his": [65535, 0], "the diversion subsided to his stomach": [65535, 0], "diversion subsided to his stomach with": [65535, 0], "subsided to his stomach with the": [65535, 0], "to his stomach with the beetle": [65535, 0], "his stomach with the beetle between": [65535, 0], "stomach with the beetle between his": [65535, 0], "with the beetle between his paws": [65535, 0], "the beetle between his paws and": [65535, 0], "beetle between his paws and continued": [65535, 0], "between his paws and continued his": [65535, 0], "his paws and continued his experiments": [65535, 0], "paws and continued his experiments grew": [65535, 0], "and continued his experiments grew weary": [65535, 0], "continued his experiments grew weary at": [65535, 0], "his experiments grew weary at last": [65535, 0], "experiments grew weary at last and": [65535, 0], "grew weary at last and then": [65535, 0], "weary at last and then indifferent": [65535, 0], "at last and then indifferent and": [65535, 0], "last and then indifferent and absent": [65535, 0], "and then indifferent and absent minded": [65535, 0], "then indifferent and absent minded his": [65535, 0], "indifferent and absent minded his head": [65535, 0], "and absent minded his head nodded": [65535, 0], "absent minded his head nodded and": [65535, 0], "minded his head nodded and little": [65535, 0], "his head nodded and little by": [65535, 0], "head nodded and little by little": [65535, 0], "nodded and little by little his": [65535, 0], "and little by little his chin": [65535, 0], "little by little his chin descended": [65535, 0], "by little his chin descended and": [65535, 0], "little his chin descended and touched": [65535, 0], "his chin descended and touched the": [65535, 0], "chin descended and touched the enemy": [65535, 0], "descended and touched the enemy who": [65535, 0], "and touched the enemy who seized": [65535, 0], "touched the enemy who seized it": [65535, 0], "the enemy who seized it there": [65535, 0], "enemy who seized it there was": [65535, 0], "who seized it there was a": [65535, 0], "seized it there was a sharp": [65535, 0], "it there was a sharp yelp": [65535, 0], "there was a sharp yelp a": [65535, 0], "was a sharp yelp a flirt": [65535, 0], "a sharp yelp a flirt of": [65535, 0], "sharp yelp a flirt of the": [65535, 0], "yelp a flirt of the poodle's": [65535, 0], "a flirt of the poodle's head": [65535, 0], "flirt of the poodle's head and": [65535, 0], "of the poodle's head and the": [65535, 0], "the poodle's head and the beetle": [65535, 0], "poodle's head and the beetle fell": [65535, 0], "head and the beetle fell a": [65535, 0], "and the beetle fell a couple": [65535, 0], "the beetle fell a couple of": [65535, 0], "beetle fell a couple of yards": [65535, 0], "fell a couple of yards away": [65535, 0], "a couple of yards away and": [65535, 0], "couple of yards away and lit": [65535, 0], "of yards away and lit on": [65535, 0], "yards away and lit on its": [65535, 0], "away and lit on its back": [65535, 0], "and lit on its back once": [65535, 0], "lit on its back once more": [65535, 0], "on its back once more the": [65535, 0], "its back once more the neighboring": [65535, 0], "back once more the neighboring spectators": [65535, 0], "once more the neighboring spectators shook": [65535, 0], "more the neighboring spectators shook with": [65535, 0], "the neighboring spectators shook with a": [65535, 0], "neighboring spectators shook with a gentle": [65535, 0], "spectators shook with a gentle inward": [65535, 0], "shook with a gentle inward joy": [65535, 0], "with a gentle inward joy several": [65535, 0], "a gentle inward joy several faces": [65535, 0], "gentle inward joy several faces went": [65535, 0], "inward joy several faces went behind": [65535, 0], "joy several faces went behind fans": [65535, 0], "several faces went behind fans and": [65535, 0], "faces went behind fans and handkerchiefs": [65535, 0], "went behind fans and handkerchiefs and": [65535, 0], "behind fans and handkerchiefs and tom": [65535, 0], "fans and handkerchiefs and tom was": [65535, 0], "and handkerchiefs and tom was entirely": [65535, 0], "handkerchiefs and tom was entirely happy": [65535, 0], "and tom was entirely happy the": [65535, 0], "tom was entirely happy the dog": [65535, 0], "was entirely happy the dog looked": [65535, 0], "entirely happy the dog looked foolish": [65535, 0], "happy the dog looked foolish and": [65535, 0], "the dog looked foolish and probably": [65535, 0], "dog looked foolish and probably felt": [65535, 0], "looked foolish and probably felt so": [65535, 0], "foolish and probably felt so but": [65535, 0], "and probably felt so but there": [65535, 0], "probably felt so but there was": [65535, 0], "felt so but there was resentment": [65535, 0], "so but there was resentment in": [65535, 0], "but there was resentment in his": [65535, 0], "there was resentment in his heart": [65535, 0], "was resentment in his heart too": [65535, 0], "resentment in his heart too and": [65535, 0], "in his heart too and a": [65535, 0], "his heart too and a craving": [65535, 0], "heart too and a craving for": [65535, 0], "too and a craving for revenge": [65535, 0], "and a craving for revenge so": [65535, 0], "a craving for revenge so he": [65535, 0], "craving for revenge so he went": [65535, 0], "for revenge so he went to": [65535, 0], "revenge so he went to the": [65535, 0], "so he went to the beetle": [65535, 0], "he went to the beetle and": [65535, 0], "went to the beetle and began": [65535, 0], "to the beetle and began a": [65535, 0], "the beetle and began a wary": [65535, 0], "beetle and began a wary attack": [65535, 0], "and began a wary attack on": [65535, 0], "began a wary attack on it": [65535, 0], "a wary attack on it again": [65535, 0], "wary attack on it again jumping": [65535, 0], "attack on it again jumping at": [65535, 0], "on it again jumping at it": [65535, 0], "it again jumping at it from": [65535, 0], "again jumping at it from every": [65535, 0], "jumping at it from every point": [65535, 0], "at it from every point of": [65535, 0], "it from every point of a": [65535, 0], "from every point of a circle": [65535, 0], "every point of a circle lighting": [65535, 0], "point of a circle lighting with": [65535, 0], "of a circle lighting with his": [65535, 0], "a circle lighting with his fore": [65535, 0], "circle lighting with his fore paws": [65535, 0], "lighting with his fore paws within": [65535, 0], "with his fore paws within an": [65535, 0], "his fore paws within an inch": [65535, 0], "fore paws within an inch of": [65535, 0], "paws within an inch of the": [65535, 0], "within an inch of the creature": [65535, 0], "an inch of the creature making": [65535, 0], "inch of the creature making even": [65535, 0], "of the creature making even closer": [65535, 0], "the creature making even closer snatches": [65535, 0], "creature making even closer snatches at": [65535, 0], "making even closer snatches at it": [65535, 0], "even closer snatches at it with": [65535, 0], "closer snatches at it with his": [65535, 0], "snatches at it with his teeth": [65535, 0], "at it with his teeth and": [65535, 0], "it with his teeth and jerking": [65535, 0], "with his teeth and jerking his": [65535, 0], "his teeth and jerking his head": [65535, 0], "teeth and jerking his head till": [65535, 0], "and jerking his head till his": [65535, 0], "jerking his head till his ears": [65535, 0], "his head till his ears flapped": [65535, 0], "head till his ears flapped again": [65535, 0], "till his ears flapped again but": [65535, 0], "his ears flapped again but he": [65535, 0], "ears flapped again but he grew": [65535, 0], "flapped again but he grew tired": [65535, 0], "again but he grew tired once": [65535, 0], "but he grew tired once more": [65535, 0], "he grew tired once more after": [65535, 0], "grew tired once more after a": [65535, 0], "tired once more after a while": [65535, 0], "once more after a while tried": [65535, 0], "more after a while tried to": [65535, 0], "after a while tried to amuse": [65535, 0], "a while tried to amuse himself": [65535, 0], "while tried to amuse himself with": [65535, 0], "tried to amuse himself with a": [65535, 0], "to amuse himself with a fly": [65535, 0], "amuse himself with a fly but": [65535, 0], "himself with a fly but found": [65535, 0], "with a fly but found no": [65535, 0], "a fly but found no relief": [65535, 0], "fly but found no relief followed": [65535, 0], "but found no relief followed an": [65535, 0], "found no relief followed an ant": [65535, 0], "no relief followed an ant around": [65535, 0], "relief followed an ant around with": [65535, 0], "followed an ant around with his": [65535, 0], "an ant around with his nose": [65535, 0], "ant around with his nose close": [65535, 0], "around with his nose close to": [65535, 0], "with his nose close to the": [65535, 0], "his nose close to the floor": [65535, 0], "nose close to the floor and": [65535, 0], "close to the floor and quickly": [65535, 0], "to the floor and quickly wearied": [65535, 0], "the floor and quickly wearied of": [65535, 0], "floor and quickly wearied of that": [65535, 0], "and quickly wearied of that yawned": [65535, 0], "quickly wearied of that yawned sighed": [65535, 0], "wearied of that yawned sighed forgot": [65535, 0], "of that yawned sighed forgot the": [65535, 0], "that yawned sighed forgot the beetle": [65535, 0], "yawned sighed forgot the beetle entirely": [65535, 0], "sighed forgot the beetle entirely and": [65535, 0], "forgot the beetle entirely and sat": [65535, 0], "the beetle entirely and sat down": [65535, 0], "beetle entirely and sat down on": [65535, 0], "entirely and sat down on it": [65535, 0], "and sat down on it then": [65535, 0], "sat down on it then there": [65535, 0], "down on it then there was": [65535, 0], "on it then there was a": [65535, 0], "it then there was a wild": [65535, 0], "then there was a wild yelp": [65535, 0], "there was a wild yelp of": [65535, 0], "was a wild yelp of agony": [65535, 0], "a wild yelp of agony and": [65535, 0], "wild yelp of agony and the": [65535, 0], "yelp of agony and the poodle": [65535, 0], "of agony and the poodle went": [65535, 0], "agony and the poodle went sailing": [65535, 0], "and the poodle went sailing up": [65535, 0], "the poodle went sailing up the": [65535, 0], "poodle went sailing up the aisle": [65535, 0], "went sailing up the aisle the": [65535, 0], "sailing up the aisle the yelps": [65535, 0], "up the aisle the yelps continued": [65535, 0], "the aisle the yelps continued and": [65535, 0], "aisle the yelps continued and so": [65535, 0], "the yelps continued and so did": [65535, 0], "yelps continued and so did the": [65535, 0], "continued and so did the dog": [65535, 0], "and so did the dog he": [65535, 0], "so did the dog he crossed": [65535, 0], "did the dog he crossed the": [65535, 0], "the dog he crossed the house": [65535, 0], "dog he crossed the house in": [65535, 0], "he crossed the house in front": [65535, 0], "crossed the house in front of": [65535, 0], "the house in front of the": [65535, 0], "house in front of the altar": [65535, 0], "in front of the altar he": [65535, 0], "front of the altar he flew": [65535, 0], "of the altar he flew down": [65535, 0], "the altar he flew down the": [65535, 0], "altar he flew down the other": [65535, 0], "he flew down the other aisle": [65535, 0], "flew down the other aisle he": [65535, 0], "down the other aisle he crossed": [65535, 0], "the other aisle he crossed before": [65535, 0], "other aisle he crossed before the": [65535, 0], "aisle he crossed before the doors": [65535, 0], "he crossed before the doors he": [65535, 0], "crossed before the doors he clamored": [65535, 0], "before the doors he clamored up": [65535, 0], "the doors he clamored up the": [65535, 0], "doors he clamored up the home": [65535, 0], "he clamored up the home stretch": [65535, 0], "clamored up the home stretch his": [65535, 0], "up the home stretch his anguish": [65535, 0], "the home stretch his anguish grew": [65535, 0], "home stretch his anguish grew with": [65535, 0], "stretch his anguish grew with his": [65535, 0], "his anguish grew with his progress": [65535, 0], "anguish grew with his progress till": [65535, 0], "grew with his progress till presently": [65535, 0], "with his progress till presently he": [65535, 0], "his progress till presently he was": [65535, 0], "progress till presently he was but": [65535, 0], "till presently he was but a": [65535, 0], "presently he was but a woolly": [65535, 0], "he was but a woolly comet": [65535, 0], "was but a woolly comet moving": [65535, 0], "but a woolly comet moving in": [65535, 0], "a woolly comet moving in its": [65535, 0], "woolly comet moving in its orbit": [65535, 0], "comet moving in its orbit with": [65535, 0], "moving in its orbit with the": [65535, 0], "in its orbit with the gleam": [65535, 0], "its orbit with the gleam and": [65535, 0], "orbit with the gleam and the": [65535, 0], "with the gleam and the speed": [65535, 0], "the gleam and the speed of": [65535, 0], "gleam and the speed of light": [65535, 0], "and the speed of light at": [65535, 0], "the speed of light at last": [65535, 0], "speed of light at last the": [65535, 0], "of light at last the frantic": [65535, 0], "light at last the frantic sufferer": [65535, 0], "at last the frantic sufferer sheered": [65535, 0], "last the frantic sufferer sheered from": [65535, 0], "the frantic sufferer sheered from its": [65535, 0], "frantic sufferer sheered from its course": [65535, 0], "sufferer sheered from its course and": [65535, 0], "sheered from its course and sprang": [65535, 0], "from its course and sprang into": [65535, 0], "its course and sprang into its": [65535, 0], "course and sprang into its master's": [65535, 0], "and sprang into its master's lap": [65535, 0], "sprang into its master's lap he": [65535, 0], "into its master's lap he flung": [65535, 0], "its master's lap he flung it": [65535, 0], "master's lap he flung it out": [65535, 0], "lap he flung it out of": [65535, 0], "he flung it out of the": [65535, 0], "flung it out of the window": [65535, 0], "it out of the window and": [65535, 0], "out of the window and the": [65535, 0], "of the window and the voice": [65535, 0], "the window and the voice of": [65535, 0], "window and the voice of distress": [65535, 0], "and the voice of distress quickly": [65535, 0], "the voice of distress quickly thinned": [65535, 0], "voice of distress quickly thinned away": [65535, 0], "of distress quickly thinned away and": [65535, 0], "distress quickly thinned away and died": [65535, 0], "quickly thinned away and died in": [65535, 0], "thinned away and died in the": [65535, 0], "away and died in the distance": [65535, 0], "and died in the distance by": [65535, 0], "died in the distance by this": [65535, 0], "in the distance by this time": [65535, 0], "the distance by this time the": [65535, 0], "distance by this time the whole": [65535, 0], "by this time the whole church": [65535, 0], "this time the whole church was": [65535, 0], "time the whole church was red": [65535, 0], "the whole church was red faced": [65535, 0], "whole church was red faced and": [65535, 0], "church was red faced and suffocating": [65535, 0], "was red faced and suffocating with": [65535, 0], "red faced and suffocating with suppressed": [65535, 0], "faced and suffocating with suppressed laughter": [65535, 0], "and suffocating with suppressed laughter and": [65535, 0], "suffocating with suppressed laughter and the": [65535, 0], "with suppressed laughter and the sermon": [65535, 0], "suppressed laughter and the sermon had": [65535, 0], "laughter and the sermon had come": [65535, 0], "and the sermon had come to": [65535, 0], "the sermon had come to a": [65535, 0], "sermon had come to a dead": [65535, 0], "had come to a dead standstill": [65535, 0], "come to a dead standstill the": [65535, 0], "to a dead standstill the discourse": [65535, 0], "a dead standstill the discourse was": [65535, 0], "dead standstill the discourse was resumed": [65535, 0], "standstill the discourse was resumed presently": [65535, 0], "the discourse was resumed presently but": [65535, 0], "discourse was resumed presently but it": [65535, 0], "was resumed presently but it went": [65535, 0], "resumed presently but it went lame": [65535, 0], "presently but it went lame and": [65535, 0], "but it went lame and halting": [65535, 0], "it went lame and halting all": [65535, 0], "went lame and halting all possibility": [65535, 0], "lame and halting all possibility of": [65535, 0], "and halting all possibility of impressiveness": [65535, 0], "halting all possibility of impressiveness being": [65535, 0], "all possibility of impressiveness being at": [65535, 0], "possibility of impressiveness being at an": [65535, 0], "of impressiveness being at an end": [65535, 0], "impressiveness being at an end for": [65535, 0], "being at an end for even": [65535, 0], "at an end for even the": [65535, 0], "an end for even the gravest": [65535, 0], "end for even the gravest sentiments": [65535, 0], "for even the gravest sentiments were": [65535, 0], "even the gravest sentiments were constantly": [65535, 0], "the gravest sentiments were constantly being": [65535, 0], "gravest sentiments were constantly being received": [65535, 0], "sentiments were constantly being received with": [65535, 0], "were constantly being received with a": [65535, 0], "constantly being received with a smothered": [65535, 0], "being received with a smothered burst": [65535, 0], "received with a smothered burst of": [65535, 0], "with a smothered burst of unholy": [65535, 0], "a smothered burst of unholy mirth": [65535, 0], "smothered burst of unholy mirth under": [65535, 0], "burst of unholy mirth under cover": [65535, 0], "of unholy mirth under cover of": [65535, 0], "unholy mirth under cover of some": [65535, 0], "mirth under cover of some remote": [65535, 0], "under cover of some remote pew": [65535, 0], "cover of some remote pew back": [65535, 0], "of some remote pew back as": [65535, 0], "some remote pew back as if": [65535, 0], "remote pew back as if the": [65535, 0], "pew back as if the poor": [65535, 0], "back as if the poor parson": [65535, 0], "as if the poor parson had": [65535, 0], "if the poor parson had said": [65535, 0], "the poor parson had said a": [65535, 0], "poor parson had said a rarely": [65535, 0], "parson had said a rarely facetious": [65535, 0], "had said a rarely facetious thing": [65535, 0], "said a rarely facetious thing it": [65535, 0], "a rarely facetious thing it was": [65535, 0], "rarely facetious thing it was a": [65535, 0], "facetious thing it was a genuine": [65535, 0], "thing it was a genuine relief": [65535, 0], "it was a genuine relief to": [65535, 0], "was a genuine relief to the": [65535, 0], "a genuine relief to the whole": [65535, 0], "genuine relief to the whole congregation": [65535, 0], "relief to the whole congregation when": [65535, 0], "to the whole congregation when the": [65535, 0], "the whole congregation when the ordeal": [65535, 0], "whole congregation when the ordeal was": [65535, 0], "congregation when the ordeal was over": [65535, 0], "when the ordeal was over and": [65535, 0], "the ordeal was over and the": [65535, 0], "ordeal was over and the benediction": [65535, 0], "was over and the benediction pronounced": [65535, 0], "over and the benediction pronounced tom": [65535, 0], "and the benediction pronounced tom sawyer": [65535, 0], "the benediction pronounced tom sawyer went": [65535, 0], "benediction pronounced tom sawyer went home": [65535, 0], "pronounced tom sawyer went home quite": [65535, 0], "tom sawyer went home quite cheerful": [65535, 0], "sawyer went home quite cheerful thinking": [65535, 0], "went home quite cheerful thinking to": [65535, 0], "home quite cheerful thinking to himself": [65535, 0], "quite cheerful thinking to himself that": [65535, 0], "cheerful thinking to himself that there": [65535, 0], "thinking to himself that there was": [65535, 0], "to himself that there was some": [65535, 0], "himself that there was some satisfaction": [65535, 0], "that there was some satisfaction about": [65535, 0], "there was some satisfaction about divine": [65535, 0], "was some satisfaction about divine service": [65535, 0], "some satisfaction about divine service when": [65535, 0], "satisfaction about divine service when there": [65535, 0], "about divine service when there was": [65535, 0], "divine service when there was a": [65535, 0], "service when there was a bit": [65535, 0], "when there was a bit of": [65535, 0], "there was a bit of variety": [65535, 0], "was a bit of variety in": [65535, 0], "a bit of variety in it": [65535, 0], "bit of variety in it he": [65535, 0], "of variety in it he had": [65535, 0], "variety in it he had but": [65535, 0], "in it he had but one": [65535, 0], "it he had but one marring": [65535, 0], "he had but one marring thought": [65535, 0], "had but one marring thought he": [65535, 0], "but one marring thought he was": [65535, 0], "one marring thought he was willing": [65535, 0], "marring thought he was willing that": [65535, 0], "thought he was willing that the": [65535, 0], "he was willing that the dog": [65535, 0], "was willing that the dog should": [65535, 0], "willing that the dog should play": [65535, 0], "that the dog should play with": [65535, 0], "the dog should play with his": [65535, 0], "dog should play with his pinchbug": [65535, 0], "should play with his pinchbug but": [65535, 0], "play with his pinchbug but he": [65535, 0], "with his pinchbug but he did": [65535, 0], "his pinchbug but he did not": [65535, 0], "pinchbug but he did not think": [65535, 0], "but he did not think it": [65535, 0], "he did not think it was": [65535, 0], "did not think it was upright": [65535, 0], "not think it was upright in": [65535, 0], "think it was upright in him": [65535, 0], "it was upright in him to": [65535, 0], "was upright in him to carry": [65535, 0], "upright in him to carry it": [65535, 0], "in him to carry it off": [65535, 0], "about half past ten the cracked bell": [65535, 0], "half past ten the cracked bell of": [65535, 0], "past ten the cracked bell of the": [65535, 0], "ten the cracked bell of the small": [65535, 0], "the cracked bell of the small church": [65535, 0], "cracked bell of the small church began": [65535, 0], "bell of the small church began to": [65535, 0], "of the small church began to ring": [65535, 0], "the small church began to ring and": [65535, 0], "small church began to ring and presently": [65535, 0], "church began to ring and presently the": [65535, 0], "began to ring and presently the people": [65535, 0], "to ring and presently the people began": [65535, 0], "ring and presently the people began to": [65535, 0], "and presently the people began to gather": [65535, 0], "presently the people began to gather for": [65535, 0], "the people began to gather for the": [65535, 0], "people began to gather for the morning": [65535, 0], "began to gather for the morning sermon": [65535, 0], "to gather for the morning sermon the": [65535, 0], "gather for the morning sermon the sunday": [65535, 0], "for the morning sermon the sunday school": [65535, 0], "the morning sermon the sunday school children": [65535, 0], "morning sermon the sunday school children distributed": [65535, 0], "sermon the sunday school children distributed themselves": [65535, 0], "the sunday school children distributed themselves about": [65535, 0], "sunday school children distributed themselves about the": [65535, 0], "school children distributed themselves about the house": [65535, 0], "children distributed themselves about the house and": [65535, 0], "distributed themselves about the house and occupied": [65535, 0], "themselves about the house and occupied pews": [65535, 0], "about the house and occupied pews with": [65535, 0], "the house and occupied pews with their": [65535, 0], "house and occupied pews with their parents": [65535, 0], "and occupied pews with their parents so": [65535, 0], "occupied pews with their parents so as": [65535, 0], "pews with their parents so as to": [65535, 0], "with their parents so as to be": [65535, 0], "their parents so as to be under": [65535, 0], "parents so as to be under supervision": [65535, 0], "so as to be under supervision aunt": [65535, 0], "as to be under supervision aunt polly": [65535, 0], "to be under supervision aunt polly came": [65535, 0], "be under supervision aunt polly came and": [65535, 0], "under supervision aunt polly came and tom": [65535, 0], "supervision aunt polly came and tom and": [65535, 0], "aunt polly came and tom and sid": [65535, 0], "polly came and tom and sid and": [65535, 0], "came and tom and sid and mary": [65535, 0], "and tom and sid and mary sat": [65535, 0], "tom and sid and mary sat with": [65535, 0], "and sid and mary sat with her": [65535, 0], "sid and mary sat with her tom": [65535, 0], "and mary sat with her tom being": [65535, 0], "mary sat with her tom being placed": [65535, 0], "sat with her tom being placed next": [65535, 0], "with her tom being placed next the": [65535, 0], "her tom being placed next the aisle": [65535, 0], "tom being placed next the aisle in": [65535, 0], "being placed next the aisle in order": [65535, 0], "placed next the aisle in order that": [65535, 0], "next the aisle in order that he": [65535, 0], "the aisle in order that he might": [65535, 0], "aisle in order that he might be": [65535, 0], "in order that he might be as": [65535, 0], "order that he might be as far": [65535, 0], "that he might be as far away": [65535, 0], "he might be as far away from": [65535, 0], "might be as far away from the": [65535, 0], "be as far away from the open": [65535, 0], "as far away from the open window": [65535, 0], "far away from the open window and": [65535, 0], "away from the open window and the": [65535, 0], "from the open window and the seductive": [65535, 0], "the open window and the seductive outside": [65535, 0], "open window and the seductive outside summer": [65535, 0], "window and the seductive outside summer scenes": [65535, 0], "and the seductive outside summer scenes as": [65535, 0], "the seductive outside summer scenes as possible": [65535, 0], "seductive outside summer scenes as possible the": [65535, 0], "outside summer scenes as possible the crowd": [65535, 0], "summer scenes as possible the crowd filed": [65535, 0], "scenes as possible the crowd filed up": [65535, 0], "as possible the crowd filed up the": [65535, 0], "possible the crowd filed up the aisles": [65535, 0], "the crowd filed up the aisles the": [65535, 0], "crowd filed up the aisles the aged": [65535, 0], "filed up the aisles the aged and": [65535, 0], "up the aisles the aged and needy": [65535, 0], "the aisles the aged and needy postmaster": [65535, 0], "aisles the aged and needy postmaster who": [65535, 0], "the aged and needy postmaster who had": [65535, 0], "aged and needy postmaster who had seen": [65535, 0], "and needy postmaster who had seen better": [65535, 0], "needy postmaster who had seen better days": [65535, 0], "postmaster who had seen better days the": [65535, 0], "who had seen better days the mayor": [65535, 0], "had seen better days the mayor and": [65535, 0], "seen better days the mayor and his": [65535, 0], "better days the mayor and his wife": [65535, 0], "days the mayor and his wife for": [65535, 0], "the mayor and his wife for they": [65535, 0], "mayor and his wife for they had": [65535, 0], "and his wife for they had a": [65535, 0], "his wife for they had a mayor": [65535, 0], "wife for they had a mayor there": [65535, 0], "for they had a mayor there among": [65535, 0], "they had a mayor there among other": [65535, 0], "had a mayor there among other unnecessaries": [65535, 0], "a mayor there among other unnecessaries the": [65535, 0], "mayor there among other unnecessaries the justice": [65535, 0], "there among other unnecessaries the justice of": [65535, 0], "among other unnecessaries the justice of the": [65535, 0], "other unnecessaries the justice of the peace": [65535, 0], "unnecessaries the justice of the peace the": [65535, 0], "the justice of the peace the widow": [65535, 0], "justice of the peace the widow douglass": [65535, 0], "of the peace the widow douglass fair": [65535, 0], "the peace the widow douglass fair smart": [65535, 0], "peace the widow douglass fair smart and": [65535, 0], "the widow douglass fair smart and forty": [65535, 0], "widow douglass fair smart and forty a": [65535, 0], "douglass fair smart and forty a generous": [65535, 0], "fair smart and forty a generous good": [65535, 0], "smart and forty a generous good hearted": [65535, 0], "and forty a generous good hearted soul": [65535, 0], "forty a generous good hearted soul and": [65535, 0], "a generous good hearted soul and well": [65535, 0], "generous good hearted soul and well to": [65535, 0], "good hearted soul and well to do": [65535, 0], "hearted soul and well to do her": [65535, 0], "soul and well to do her hill": [65535, 0], "and well to do her hill mansion": [65535, 0], "well to do her hill mansion the": [65535, 0], "to do her hill mansion the only": [65535, 0], "do her hill mansion the only palace": [65535, 0], "her hill mansion the only palace in": [65535, 0], "hill mansion the only palace in the": [65535, 0], "mansion the only palace in the town": [65535, 0], "the only palace in the town and": [65535, 0], "only palace in the town and the": [65535, 0], "palace in the town and the most": [65535, 0], "in the town and the most hospitable": [65535, 0], "the town and the most hospitable and": [65535, 0], "town and the most hospitable and much": [65535, 0], "and the most hospitable and much the": [65535, 0], "the most hospitable and much the most": [65535, 0], "most hospitable and much the most lavish": [65535, 0], "hospitable and much the most lavish in": [65535, 0], "and much the most lavish in the": [65535, 0], "much the most lavish in the matter": [65535, 0], "the most lavish in the matter of": [65535, 0], "most lavish in the matter of festivities": [65535, 0], "lavish in the matter of festivities that": [65535, 0], "in the matter of festivities that st": [65535, 0], "the matter of festivities that st petersburg": [65535, 0], "matter of festivities that st petersburg could": [65535, 0], "of festivities that st petersburg could boast": [65535, 0], "festivities that st petersburg could boast the": [65535, 0], "that st petersburg could boast the bent": [65535, 0], "st petersburg could boast the bent and": [65535, 0], "petersburg could boast the bent and venerable": [65535, 0], "could boast the bent and venerable major": [65535, 0], "boast the bent and venerable major and": [65535, 0], "the bent and venerable major and mrs": [65535, 0], "bent and venerable major and mrs ward": [65535, 0], "and venerable major and mrs ward lawyer": [65535, 0], "venerable major and mrs ward lawyer riverson": [65535, 0], "major and mrs ward lawyer riverson the": [65535, 0], "and mrs ward lawyer riverson the new": [65535, 0], "mrs ward lawyer riverson the new notable": [65535, 0], "ward lawyer riverson the new notable from": [65535, 0], "lawyer riverson the new notable from a": [65535, 0], "riverson the new notable from a distance": [65535, 0], "the new notable from a distance next": [65535, 0], "new notable from a distance next the": [65535, 0], "notable from a distance next the belle": [65535, 0], "from a distance next the belle of": [65535, 0], "a distance next the belle of the": [65535, 0], "distance next the belle of the village": [65535, 0], "next the belle of the village followed": [65535, 0], "the belle of the village followed by": [65535, 0], "belle of the village followed by a": [65535, 0], "of the village followed by a troop": [65535, 0], "the village followed by a troop of": [65535, 0], "village followed by a troop of lawn": [65535, 0], "followed by a troop of lawn clad": [65535, 0], "by a troop of lawn clad and": [65535, 0], "a troop of lawn clad and ribbon": [65535, 0], "troop of lawn clad and ribbon decked": [65535, 0], "of lawn clad and ribbon decked young": [65535, 0], "lawn clad and ribbon decked young heart": [65535, 0], "clad and ribbon decked young heart breakers": [65535, 0], "and ribbon decked young heart breakers then": [65535, 0], "ribbon decked young heart breakers then all": [65535, 0], "decked young heart breakers then all the": [65535, 0], "young heart breakers then all the young": [65535, 0], "heart breakers then all the young clerks": [65535, 0], "breakers then all the young clerks in": [65535, 0], "then all the young clerks in town": [65535, 0], "all the young clerks in town in": [65535, 0], "the young clerks in town in a": [65535, 0], "young clerks in town in a body": [65535, 0], "clerks in town in a body for": [65535, 0], "in town in a body for they": [65535, 0], "town in a body for they had": [65535, 0], "in a body for they had stood": [65535, 0], "a body for they had stood in": [65535, 0], "body for they had stood in the": [65535, 0], "for they had stood in the vestibule": [65535, 0], "they had stood in the vestibule sucking": [65535, 0], "had stood in the vestibule sucking their": [65535, 0], "stood in the vestibule sucking their cane": [65535, 0], "in the vestibule sucking their cane heads": [65535, 0], "the vestibule sucking their cane heads a": [65535, 0], "vestibule sucking their cane heads a circling": [65535, 0], "sucking their cane heads a circling wall": [65535, 0], "their cane heads a circling wall of": [65535, 0], "cane heads a circling wall of oiled": [65535, 0], "heads a circling wall of oiled and": [65535, 0], "a circling wall of oiled and simpering": [65535, 0], "circling wall of oiled and simpering admirers": [65535, 0], "wall of oiled and simpering admirers till": [65535, 0], "of oiled and simpering admirers till the": [65535, 0], "oiled and simpering admirers till the last": [65535, 0], "and simpering admirers till the last girl": [65535, 0], "simpering admirers till the last girl had": [65535, 0], "admirers till the last girl had run": [65535, 0], "till the last girl had run their": [65535, 0], "the last girl had run their gantlet": [65535, 0], "last girl had run their gantlet and": [65535, 0], "girl had run their gantlet and last": [65535, 0], "had run their gantlet and last of": [65535, 0], "run their gantlet and last of all": [65535, 0], "their gantlet and last of all came": [65535, 0], "gantlet and last of all came the": [65535, 0], "and last of all came the model": [65535, 0], "last of all came the model boy": [65535, 0], "of all came the model boy willie": [65535, 0], "all came the model boy willie mufferson": [65535, 0], "came the model boy willie mufferson taking": [65535, 0], "the model boy willie mufferson taking as": [65535, 0], "model boy willie mufferson taking as heedful": [65535, 0], "boy willie mufferson taking as heedful care": [65535, 0], "willie mufferson taking as heedful care of": [65535, 0], "mufferson taking as heedful care of his": [65535, 0], "taking as heedful care of his mother": [65535, 0], "as heedful care of his mother as": [65535, 0], "heedful care of his mother as if": [65535, 0], "care of his mother as if she": [65535, 0], "of his mother as if she were": [65535, 0], "his mother as if she were cut": [65535, 0], "mother as if she were cut glass": [65535, 0], "as if she were cut glass he": [65535, 0], "if she were cut glass he always": [65535, 0], "she were cut glass he always brought": [65535, 0], "were cut glass he always brought his": [65535, 0], "cut glass he always brought his mother": [65535, 0], "glass he always brought his mother to": [65535, 0], "he always brought his mother to church": [65535, 0], "always brought his mother to church and": [65535, 0], "brought his mother to church and was": [65535, 0], "his mother to church and was the": [65535, 0], "mother to church and was the pride": [65535, 0], "to church and was the pride of": [65535, 0], "church and was the pride of all": [65535, 0], "and was the pride of all the": [65535, 0], "was the pride of all the matrons": [65535, 0], "the pride of all the matrons the": [65535, 0], "pride of all the matrons the boys": [65535, 0], "of all the matrons the boys all": [65535, 0], "all the matrons the boys all hated": [65535, 0], "the matrons the boys all hated him": [65535, 0], "matrons the boys all hated him he": [65535, 0], "the boys all hated him he was": [65535, 0], "boys all hated him he was so": [65535, 0], "all hated him he was so good": [65535, 0], "hated him he was so good and": [65535, 0], "him he was so good and besides": [65535, 0], "he was so good and besides he": [65535, 0], "was so good and besides he had": [65535, 0], "so good and besides he had been": [65535, 0], "good and besides he had been thrown": [65535, 0], "and besides he had been thrown up": [65535, 0], "besides he had been thrown up to": [65535, 0], "he had been thrown up to them": [65535, 0], "had been thrown up to them so": [65535, 0], "been thrown up to them so much": [65535, 0], "thrown up to them so much his": [65535, 0], "up to them so much his white": [65535, 0], "to them so much his white handkerchief": [65535, 0], "them so much his white handkerchief was": [65535, 0], "so much his white handkerchief was hanging": [65535, 0], "much his white handkerchief was hanging out": [65535, 0], "his white handkerchief was hanging out of": [65535, 0], "white handkerchief was hanging out of his": [65535, 0], "handkerchief was hanging out of his pocket": [65535, 0], "was hanging out of his pocket behind": [65535, 0], "hanging out of his pocket behind as": [65535, 0], "out of his pocket behind as usual": [65535, 0], "of his pocket behind as usual on": [65535, 0], "his pocket behind as usual on sundays": [65535, 0], "pocket behind as usual on sundays accidentally": [65535, 0], "behind as usual on sundays accidentally tom": [65535, 0], "as usual on sundays accidentally tom had": [65535, 0], "usual on sundays accidentally tom had no": [65535, 0], "on sundays accidentally tom had no handkerchief": [65535, 0], "sundays accidentally tom had no handkerchief and": [65535, 0], "accidentally tom had no handkerchief and he": [65535, 0], "tom had no handkerchief and he looked": [65535, 0], "had no handkerchief and he looked upon": [65535, 0], "no handkerchief and he looked upon boys": [65535, 0], "handkerchief and he looked upon boys who": [65535, 0], "and he looked upon boys who had": [65535, 0], "he looked upon boys who had as": [65535, 0], "looked upon boys who had as snobs": [65535, 0], "upon boys who had as snobs the": [65535, 0], "boys who had as snobs the congregation": [65535, 0], "who had as snobs the congregation being": [65535, 0], "had as snobs the congregation being fully": [65535, 0], "as snobs the congregation being fully assembled": [65535, 0], "snobs the congregation being fully assembled now": [65535, 0], "the congregation being fully assembled now the": [65535, 0], "congregation being fully assembled now the bell": [65535, 0], "being fully assembled now the bell rang": [65535, 0], "fully assembled now the bell rang once": [65535, 0], "assembled now the bell rang once more": [65535, 0], "now the bell rang once more to": [65535, 0], "the bell rang once more to warn": [65535, 0], "bell rang once more to warn laggards": [65535, 0], "rang once more to warn laggards and": [65535, 0], "once more to warn laggards and stragglers": [65535, 0], "more to warn laggards and stragglers and": [65535, 0], "to warn laggards and stragglers and then": [65535, 0], "warn laggards and stragglers and then a": [65535, 0], "laggards and stragglers and then a solemn": [65535, 0], "and stragglers and then a solemn hush": [65535, 0], "stragglers and then a solemn hush fell": [65535, 0], "and then a solemn hush fell upon": [65535, 0], "then a solemn hush fell upon the": [65535, 0], "a solemn hush fell upon the church": [65535, 0], "solemn hush fell upon the church which": [65535, 0], "hush fell upon the church which was": [65535, 0], "fell upon the church which was only": [65535, 0], "upon the church which was only broken": [65535, 0], "the church which was only broken by": [65535, 0], "church which was only broken by the": [65535, 0], "which was only broken by the tittering": [65535, 0], "was only broken by the tittering and": [65535, 0], "only broken by the tittering and whispering": [65535, 0], "broken by the tittering and whispering of": [65535, 0], "by the tittering and whispering of the": [65535, 0], "the tittering and whispering of the choir": [65535, 0], "tittering and whispering of the choir in": [65535, 0], "and whispering of the choir in the": [65535, 0], "whispering of the choir in the gallery": [65535, 0], "of the choir in the gallery the": [65535, 0], "the choir in the gallery the choir": [65535, 0], "choir in the gallery the choir always": [65535, 0], "in the gallery the choir always tittered": [65535, 0], "the gallery the choir always tittered and": [65535, 0], "gallery the choir always tittered and whispered": [65535, 0], "the choir always tittered and whispered all": [65535, 0], "choir always tittered and whispered all through": [65535, 0], "always tittered and whispered all through service": [65535, 0], "tittered and whispered all through service there": [65535, 0], "and whispered all through service there was": [65535, 0], "whispered all through service there was once": [65535, 0], "all through service there was once a": [65535, 0], "through service there was once a church": [65535, 0], "service there was once a church choir": [65535, 0], "there was once a church choir that": [65535, 0], "was once a church choir that was": [65535, 0], "once a church choir that was not": [65535, 0], "a church choir that was not ill": [65535, 0], "church choir that was not ill bred": [65535, 0], "choir that was not ill bred but": [65535, 0], "that was not ill bred but i": [65535, 0], "was not ill bred but i have": [65535, 0], "not ill bred but i have forgotten": [65535, 0], "ill bred but i have forgotten where": [65535, 0], "bred but i have forgotten where it": [65535, 0], "but i have forgotten where it was": [65535, 0], "i have forgotten where it was now": [65535, 0], "have forgotten where it was now it": [65535, 0], "forgotten where it was now it was": [65535, 0], "where it was now it was a": [65535, 0], "it was now it was a great": [65535, 0], "was now it was a great many": [65535, 0], "now it was a great many years": [65535, 0], "it was a great many years ago": [65535, 0], "was a great many years ago and": [65535, 0], "a great many years ago and i": [65535, 0], "great many years ago and i can": [65535, 0], "many years ago and i can scarcely": [65535, 0], "years ago and i can scarcely remember": [65535, 0], "ago and i can scarcely remember anything": [65535, 0], "and i can scarcely remember anything about": [65535, 0], "i can scarcely remember anything about it": [65535, 0], "can scarcely remember anything about it but": [65535, 0], "scarcely remember anything about it but i": [65535, 0], "remember anything about it but i think": [65535, 0], "anything about it but i think it": [65535, 0], "about it but i think it was": [65535, 0], "it but i think it was in": [65535, 0], "but i think it was in some": [65535, 0], "i think it was in some foreign": [65535, 0], "think it was in some foreign country": [65535, 0], "it was in some foreign country the": [65535, 0], "was in some foreign country the minister": [65535, 0], "in some foreign country the minister gave": [65535, 0], "some foreign country the minister gave out": [65535, 0], "foreign country the minister gave out the": [65535, 0], "country the minister gave out the hymn": [65535, 0], "the minister gave out the hymn and": [65535, 0], "minister gave out the hymn and read": [65535, 0], "gave out the hymn and read it": [65535, 0], "out the hymn and read it through": [65535, 0], "the hymn and read it through with": [65535, 0], "hymn and read it through with a": [65535, 0], "and read it through with a relish": [65535, 0], "read it through with a relish in": [65535, 0], "it through with a relish in a": [65535, 0], "through with a relish in a peculiar": [65535, 0], "with a relish in a peculiar style": [65535, 0], "a relish in a peculiar style which": [65535, 0], "relish in a peculiar style which was": [65535, 0], "in a peculiar style which was much": [65535, 0], "a peculiar style which was much admired": [65535, 0], "peculiar style which was much admired in": [65535, 0], "style which was much admired in that": [65535, 0], "which was much admired in that part": [65535, 0], "was much admired in that part of": [65535, 0], "much admired in that part of the": [65535, 0], "admired in that part of the country": [65535, 0], "in that part of the country his": [65535, 0], "that part of the country his voice": [65535, 0], "part of the country his voice began": [65535, 0], "of the country his voice began on": [65535, 0], "the country his voice began on a": [65535, 0], "country his voice began on a medium": [65535, 0], "his voice began on a medium key": [65535, 0], "voice began on a medium key and": [65535, 0], "began on a medium key and climbed": [65535, 0], "on a medium key and climbed steadily": [65535, 0], "a medium key and climbed steadily up": [65535, 0], "medium key and climbed steadily up till": [65535, 0], "key and climbed steadily up till it": [65535, 0], "and climbed steadily up till it reached": [65535, 0], "climbed steadily up till it reached a": [65535, 0], "steadily up till it reached a certain": [65535, 0], "up till it reached a certain point": [65535, 0], "till it reached a certain point where": [65535, 0], "it reached a certain point where it": [65535, 0], "reached a certain point where it bore": [65535, 0], "a certain point where it bore with": [65535, 0], "certain point where it bore with strong": [65535, 0], "point where it bore with strong emphasis": [65535, 0], "where it bore with strong emphasis upon": [65535, 0], "it bore with strong emphasis upon the": [65535, 0], "bore with strong emphasis upon the topmost": [65535, 0], "with strong emphasis upon the topmost word": [65535, 0], "strong emphasis upon the topmost word and": [65535, 0], "emphasis upon the topmost word and then": [65535, 0], "upon the topmost word and then plunged": [65535, 0], "the topmost word and then plunged down": [65535, 0], "topmost word and then plunged down as": [65535, 0], "word and then plunged down as if": [65535, 0], "and then plunged down as if from": [65535, 0], "then plunged down as if from a": [65535, 0], "plunged down as if from a spring": [65535, 0], "down as if from a spring board": [65535, 0], "as if from a spring board shall": [65535, 0], "if from a spring board shall i": [65535, 0], "from a spring board shall i be": [65535, 0], "a spring board shall i be car": [65535, 0], "spring board shall i be car ri": [65535, 0], "board shall i be car ri ed": [65535, 0], "shall i be car ri ed toe": [65535, 0], "i be car ri ed toe the": [65535, 0], "be car ri ed toe the skies": [65535, 0], "car ri ed toe the skies on": [65535, 0], "ri ed toe the skies on flow'ry": [65535, 0], "ed toe the skies on flow'ry beds": [65535, 0], "toe the skies on flow'ry beds of": [65535, 0], "the skies on flow'ry beds of ease": [65535, 0], "skies on flow'ry beds of ease whilst": [65535, 0], "on flow'ry beds of ease whilst others": [65535, 0], "flow'ry beds of ease whilst others fight": [65535, 0], "beds of ease whilst others fight to": [65535, 0], "of ease whilst others fight to win": [65535, 0], "ease whilst others fight to win the": [65535, 0], "whilst others fight to win the prize": [65535, 0], "others fight to win the prize and": [65535, 0], "fight to win the prize and sail": [65535, 0], "to win the prize and sail thro'": [65535, 0], "win the prize and sail thro' bloody": [65535, 0], "the prize and sail thro' bloody seas": [65535, 0], "prize and sail thro' bloody seas he": [65535, 0], "and sail thro' bloody seas he was": [65535, 0], "sail thro' bloody seas he was regarded": [65535, 0], "thro' bloody seas he was regarded as": [65535, 0], "bloody seas he was regarded as a": [65535, 0], "seas he was regarded as a wonderful": [65535, 0], "he was regarded as a wonderful reader": [65535, 0], "was regarded as a wonderful reader at": [65535, 0], "regarded as a wonderful reader at church": [65535, 0], "as a wonderful reader at church sociables": [65535, 0], "a wonderful reader at church sociables he": [65535, 0], "wonderful reader at church sociables he was": [65535, 0], "reader at church sociables he was always": [65535, 0], "at church sociables he was always called": [65535, 0], "church sociables he was always called upon": [65535, 0], "sociables he was always called upon to": [65535, 0], "he was always called upon to read": [65535, 0], "was always called upon to read poetry": [65535, 0], "always called upon to read poetry and": [65535, 0], "called upon to read poetry and when": [65535, 0], "upon to read poetry and when he": [65535, 0], "to read poetry and when he was": [65535, 0], "read poetry and when he was through": [65535, 0], "poetry and when he was through the": [65535, 0], "and when he was through the ladies": [65535, 0], "when he was through the ladies would": [65535, 0], "he was through the ladies would lift": [65535, 0], "was through the ladies would lift up": [65535, 0], "through the ladies would lift up their": [65535, 0], "the ladies would lift up their hands": [65535, 0], "ladies would lift up their hands and": [65535, 0], "would lift up their hands and let": [65535, 0], "lift up their hands and let them": [65535, 0], "up their hands and let them fall": [65535, 0], "their hands and let them fall helplessly": [65535, 0], "hands and let them fall helplessly in": [65535, 0], "and let them fall helplessly in their": [65535, 0], "let them fall helplessly in their laps": [65535, 0], "them fall helplessly in their laps and": [65535, 0], "fall helplessly in their laps and wall": [65535, 0], "helplessly in their laps and wall their": [65535, 0], "in their laps and wall their eyes": [65535, 0], "their laps and wall their eyes and": [65535, 0], "laps and wall their eyes and shake": [65535, 0], "and wall their eyes and shake their": [65535, 0], "wall their eyes and shake their heads": [65535, 0], "their eyes and shake their heads as": [65535, 0], "eyes and shake their heads as much": [65535, 0], "and shake their heads as much as": [65535, 0], "shake their heads as much as to": [65535, 0], "their heads as much as to say": [65535, 0], "heads as much as to say words": [65535, 0], "as much as to say words cannot": [65535, 0], "much as to say words cannot express": [65535, 0], "as to say words cannot express it": [65535, 0], "to say words cannot express it it": [65535, 0], "say words cannot express it it is": [65535, 0], "words cannot express it it is too": [65535, 0], "cannot express it it is too beautiful": [65535, 0], "express it it is too beautiful too": [65535, 0], "it it is too beautiful too beautiful": [65535, 0], "it is too beautiful too beautiful for": [65535, 0], "is too beautiful too beautiful for this": [65535, 0], "too beautiful too beautiful for this mortal": [65535, 0], "beautiful too beautiful for this mortal earth": [65535, 0], "too beautiful for this mortal earth after": [65535, 0], "beautiful for this mortal earth after the": [65535, 0], "for this mortal earth after the hymn": [65535, 0], "this mortal earth after the hymn had": [65535, 0], "mortal earth after the hymn had been": [65535, 0], "earth after the hymn had been sung": [65535, 0], "after the hymn had been sung the": [65535, 0], "the hymn had been sung the rev": [65535, 0], "hymn had been sung the rev mr": [65535, 0], "had been sung the rev mr sprague": [65535, 0], "been sung the rev mr sprague turned": [65535, 0], "sung the rev mr sprague turned himself": [65535, 0], "the rev mr sprague turned himself into": [65535, 0], "rev mr sprague turned himself into a": [65535, 0], "mr sprague turned himself into a bulletin": [65535, 0], "sprague turned himself into a bulletin board": [65535, 0], "turned himself into a bulletin board and": [65535, 0], "himself into a bulletin board and read": [65535, 0], "into a bulletin board and read off": [65535, 0], "a bulletin board and read off notices": [65535, 0], "bulletin board and read off notices of": [65535, 0], "board and read off notices of meetings": [65535, 0], "and read off notices of meetings and": [65535, 0], "read off notices of meetings and societies": [65535, 0], "off notices of meetings and societies and": [65535, 0], "notices of meetings and societies and things": [65535, 0], "of meetings and societies and things till": [65535, 0], "meetings and societies and things till it": [65535, 0], "and societies and things till it seemed": [65535, 0], "societies and things till it seemed that": [65535, 0], "and things till it seemed that the": [65535, 0], "things till it seemed that the list": [65535, 0], "till it seemed that the list would": [65535, 0], "it seemed that the list would stretch": [65535, 0], "seemed that the list would stretch out": [65535, 0], "that the list would stretch out to": [65535, 0], "the list would stretch out to the": [65535, 0], "list would stretch out to the crack": [65535, 0], "would stretch out to the crack of": [65535, 0], "stretch out to the crack of doom": [65535, 0], "out to the crack of doom a": [65535, 0], "to the crack of doom a queer": [65535, 0], "the crack of doom a queer custom": [65535, 0], "crack of doom a queer custom which": [65535, 0], "of doom a queer custom which is": [65535, 0], "doom a queer custom which is still": [65535, 0], "a queer custom which is still kept": [65535, 0], "queer custom which is still kept up": [65535, 0], "custom which is still kept up in": [65535, 0], "which is still kept up in america": [65535, 0], "is still kept up in america even": [65535, 0], "still kept up in america even in": [65535, 0], "kept up in america even in cities": [65535, 0], "up in america even in cities away": [65535, 0], "in america even in cities away here": [65535, 0], "america even in cities away here in": [65535, 0], "even in cities away here in this": [65535, 0], "in cities away here in this age": [65535, 0], "cities away here in this age of": [65535, 0], "away here in this age of abundant": [65535, 0], "here in this age of abundant newspapers": [65535, 0], "in this age of abundant newspapers often": [65535, 0], "this age of abundant newspapers often the": [65535, 0], "age of abundant newspapers often the less": [65535, 0], "of abundant newspapers often the less there": [65535, 0], "abundant newspapers often the less there is": [65535, 0], "newspapers often the less there is to": [65535, 0], "often the less there is to justify": [65535, 0], "the less there is to justify a": [65535, 0], "less there is to justify a traditional": [65535, 0], "there is to justify a traditional custom": [65535, 0], "is to justify a traditional custom the": [65535, 0], "to justify a traditional custom the harder": [65535, 0], "justify a traditional custom the harder it": [65535, 0], "a traditional custom the harder it is": [65535, 0], "traditional custom the harder it is to": [65535, 0], "custom the harder it is to get": [65535, 0], "the harder it is to get rid": [65535, 0], "harder it is to get rid of": [65535, 0], "it is to get rid of it": [65535, 0], "is to get rid of it and": [65535, 0], "to get rid of it and now": [65535, 0], "get rid of it and now the": [65535, 0], "rid of it and now the minister": [65535, 0], "of it and now the minister prayed": [65535, 0], "it and now the minister prayed a": [65535, 0], "and now the minister prayed a good": [65535, 0], "now the minister prayed a good generous": [65535, 0], "the minister prayed a good generous prayer": [65535, 0], "minister prayed a good generous prayer it": [65535, 0], "prayed a good generous prayer it was": [65535, 0], "a good generous prayer it was and": [65535, 0], "good generous prayer it was and went": [65535, 0], "generous prayer it was and went into": [65535, 0], "prayer it was and went into details": [65535, 0], "it was and went into details it": [65535, 0], "was and went into details it pleaded": [65535, 0], "and went into details it pleaded for": [65535, 0], "went into details it pleaded for the": [65535, 0], "into details it pleaded for the church": [65535, 0], "details it pleaded for the church and": [65535, 0], "it pleaded for the church and the": [65535, 0], "pleaded for the church and the little": [65535, 0], "for the church and the little children": [65535, 0], "the church and the little children of": [65535, 0], "church and the little children of the": [65535, 0], "and the little children of the church": [65535, 0], "the little children of the church for": [65535, 0], "little children of the church for the": [65535, 0], "children of the church for the other": [65535, 0], "of the church for the other churches": [65535, 0], "the church for the other churches of": [65535, 0], "church for the other churches of the": [65535, 0], "for the other churches of the village": [65535, 0], "the other churches of the village for": [65535, 0], "other churches of the village for the": [65535, 0], "churches of the village for the village": [65535, 0], "of the village for the village itself": [65535, 0], "the village for the village itself for": [65535, 0], "village for the village itself for the": [65535, 0], "for the village itself for the county": [65535, 0], "the village itself for the county for": [65535, 0], "village itself for the county for the": [65535, 0], "itself for the county for the state": [65535, 0], "for the county for the state for": [65535, 0], "the county for the state for the": [65535, 0], "county for the state for the state": [65535, 0], "for the state for the state officers": [65535, 0], "the state for the state officers for": [65535, 0], "state for the state officers for the": [65535, 0], "for the state officers for the united": [65535, 0], "the state officers for the united states": [65535, 0], "state officers for the united states for": [65535, 0], "officers for the united states for the": [65535, 0], "for the united states for the churches": [65535, 0], "the united states for the churches of": [65535, 0], "united states for the churches of the": [65535, 0], "states for the churches of the united": [65535, 0], "for the churches of the united states": [65535, 0], "the churches of the united states for": [65535, 0], "churches of the united states for congress": [65535, 0], "of the united states for congress for": [65535, 0], "the united states for congress for the": [65535, 0], "united states for congress for the president": [65535, 0], "states for congress for the president for": [65535, 0], "for congress for the president for the": [65535, 0], "congress for the president for the officers": [65535, 0], "for the president for the officers of": [65535, 0], "the president for the officers of the": [65535, 0], "president for the officers of the government": [65535, 0], "for the officers of the government for": [65535, 0], "the officers of the government for poor": [65535, 0], "officers of the government for poor sailors": [65535, 0], "of the government for poor sailors tossed": [65535, 0], "the government for poor sailors tossed by": [65535, 0], "government for poor sailors tossed by stormy": [65535, 0], "for poor sailors tossed by stormy seas": [65535, 0], "poor sailors tossed by stormy seas for": [65535, 0], "sailors tossed by stormy seas for the": [65535, 0], "tossed by stormy seas for the oppressed": [65535, 0], "by stormy seas for the oppressed millions": [65535, 0], "stormy seas for the oppressed millions groaning": [65535, 0], "seas for the oppressed millions groaning under": [65535, 0], "for the oppressed millions groaning under the": [65535, 0], "the oppressed millions groaning under the heel": [65535, 0], "oppressed millions groaning under the heel of": [65535, 0], "millions groaning under the heel of european": [65535, 0], "groaning under the heel of european monarchies": [65535, 0], "under the heel of european monarchies and": [65535, 0], "the heel of european monarchies and oriental": [65535, 0], "heel of european monarchies and oriental despotisms": [65535, 0], "of european monarchies and oriental despotisms for": [65535, 0], "european monarchies and oriental despotisms for such": [65535, 0], "monarchies and oriental despotisms for such as": [65535, 0], "and oriental despotisms for such as have": [65535, 0], "oriental despotisms for such as have the": [65535, 0], "despotisms for such as have the light": [65535, 0], "for such as have the light and": [65535, 0], "such as have the light and the": [65535, 0], "as have the light and the good": [65535, 0], "have the light and the good tidings": [65535, 0], "the light and the good tidings and": [65535, 0], "light and the good tidings and yet": [65535, 0], "and the good tidings and yet have": [65535, 0], "the good tidings and yet have not": [65535, 0], "good tidings and yet have not eyes": [65535, 0], "tidings and yet have not eyes to": [65535, 0], "and yet have not eyes to see": [65535, 0], "yet have not eyes to see nor": [65535, 0], "have not eyes to see nor ears": [65535, 0], "not eyes to see nor ears to": [65535, 0], "eyes to see nor ears to hear": [65535, 0], "to see nor ears to hear withal": [65535, 0], "see nor ears to hear withal for": [65535, 0], "nor ears to hear withal for the": [65535, 0], "ears to hear withal for the heathen": [65535, 0], "to hear withal for the heathen in": [65535, 0], "hear withal for the heathen in the": [65535, 0], "withal for the heathen in the far": [65535, 0], "for the heathen in the far islands": [65535, 0], "the heathen in the far islands of": [65535, 0], "heathen in the far islands of the": [65535, 0], "in the far islands of the sea": [65535, 0], "the far islands of the sea and": [65535, 0], "far islands of the sea and closed": [65535, 0], "islands of the sea and closed with": [65535, 0], "of the sea and closed with a": [65535, 0], "the sea and closed with a supplication": [65535, 0], "sea and closed with a supplication that": [65535, 0], "and closed with a supplication that the": [65535, 0], "closed with a supplication that the words": [65535, 0], "with a supplication that the words he": [65535, 0], "a supplication that the words he was": [65535, 0], "supplication that the words he was about": [65535, 0], "that the words he was about to": [65535, 0], "the words he was about to speak": [65535, 0], "words he was about to speak might": [65535, 0], "he was about to speak might find": [65535, 0], "was about to speak might find grace": [65535, 0], "about to speak might find grace and": [65535, 0], "to speak might find grace and favor": [65535, 0], "speak might find grace and favor and": [65535, 0], "might find grace and favor and be": [65535, 0], "find grace and favor and be as": [65535, 0], "grace and favor and be as seed": [65535, 0], "and favor and be as seed sown": [65535, 0], "favor and be as seed sown in": [65535, 0], "and be as seed sown in fertile": [65535, 0], "be as seed sown in fertile ground": [65535, 0], "as seed sown in fertile ground yielding": [65535, 0], "seed sown in fertile ground yielding in": [65535, 0], "sown in fertile ground yielding in time": [65535, 0], "in fertile ground yielding in time a": [65535, 0], "fertile ground yielding in time a grateful": [65535, 0], "ground yielding in time a grateful harvest": [65535, 0], "yielding in time a grateful harvest of": [65535, 0], "in time a grateful harvest of good": [65535, 0], "time a grateful harvest of good amen": [65535, 0], "a grateful harvest of good amen there": [65535, 0], "grateful harvest of good amen there was": [65535, 0], "harvest of good amen there was a": [65535, 0], "of good amen there was a rustling": [65535, 0], "good amen there was a rustling of": [65535, 0], "amen there was a rustling of dresses": [65535, 0], "there was a rustling of dresses and": [65535, 0], "was a rustling of dresses and the": [65535, 0], "a rustling of dresses and the standing": [65535, 0], "rustling of dresses and the standing congregation": [65535, 0], "of dresses and the standing congregation sat": [65535, 0], "dresses and the standing congregation sat down": [65535, 0], "and the standing congregation sat down the": [65535, 0], "the standing congregation sat down the boy": [65535, 0], "standing congregation sat down the boy whose": [65535, 0], "congregation sat down the boy whose history": [65535, 0], "sat down the boy whose history this": [65535, 0], "down the boy whose history this book": [65535, 0], "the boy whose history this book relates": [65535, 0], "boy whose history this book relates did": [65535, 0], "whose history this book relates did not": [65535, 0], "history this book relates did not enjoy": [65535, 0], "this book relates did not enjoy the": [65535, 0], "book relates did not enjoy the prayer": [65535, 0], "relates did not enjoy the prayer he": [65535, 0], "did not enjoy the prayer he only": [65535, 0], "not enjoy the prayer he only endured": [65535, 0], "enjoy the prayer he only endured it": [65535, 0], "the prayer he only endured it if": [65535, 0], "prayer he only endured it if he": [65535, 0], "he only endured it if he even": [65535, 0], "only endured it if he even did": [65535, 0], "endured it if he even did that": [65535, 0], "it if he even did that much": [65535, 0], "if he even did that much he": [65535, 0], "he even did that much he was": [65535, 0], "even did that much he was restive": [65535, 0], "did that much he was restive all": [65535, 0], "that much he was restive all through": [65535, 0], "much he was restive all through it": [65535, 0], "he was restive all through it he": [65535, 0], "was restive all through it he kept": [65535, 0], "restive all through it he kept tally": [65535, 0], "all through it he kept tally of": [65535, 0], "through it he kept tally of the": [65535, 0], "it he kept tally of the details": [65535, 0], "he kept tally of the details of": [65535, 0], "kept tally of the details of the": [65535, 0], "tally of the details of the prayer": [65535, 0], "of the details of the prayer unconsciously": [65535, 0], "the details of the prayer unconsciously for": [65535, 0], "details of the prayer unconsciously for he": [65535, 0], "of the prayer unconsciously for he was": [65535, 0], "the prayer unconsciously for he was not": [65535, 0], "prayer unconsciously for he was not listening": [65535, 0], "unconsciously for he was not listening but": [65535, 0], "for he was not listening but he": [65535, 0], "he was not listening but he knew": [65535, 0], "was not listening but he knew the": [65535, 0], "not listening but he knew the ground": [65535, 0], "listening but he knew the ground of": [65535, 0], "but he knew the ground of old": [65535, 0], "he knew the ground of old and": [65535, 0], "knew the ground of old and the": [65535, 0], "the ground of old and the clergyman's": [65535, 0], "ground of old and the clergyman's regular": [65535, 0], "of old and the clergyman's regular route": [65535, 0], "old and the clergyman's regular route over": [65535, 0], "and the clergyman's regular route over it": [65535, 0], "the clergyman's regular route over it and": [65535, 0], "clergyman's regular route over it and when": [65535, 0], "regular route over it and when a": [65535, 0], "route over it and when a little": [65535, 0], "over it and when a little trifle": [65535, 0], "it and when a little trifle of": [65535, 0], "and when a little trifle of new": [65535, 0], "when a little trifle of new matter": [65535, 0], "a little trifle of new matter was": [65535, 0], "little trifle of new matter was interlarded": [65535, 0], "trifle of new matter was interlarded his": [65535, 0], "of new matter was interlarded his ear": [65535, 0], "new matter was interlarded his ear detected": [65535, 0], "matter was interlarded his ear detected it": [65535, 0], "was interlarded his ear detected it and": [65535, 0], "interlarded his ear detected it and his": [65535, 0], "his ear detected it and his whole": [65535, 0], "ear detected it and his whole nature": [65535, 0], "detected it and his whole nature resented": [65535, 0], "it and his whole nature resented it": [65535, 0], "and his whole nature resented it he": [65535, 0], "his whole nature resented it he considered": [65535, 0], "whole nature resented it he considered additions": [65535, 0], "nature resented it he considered additions unfair": [65535, 0], "resented it he considered additions unfair and": [65535, 0], "it he considered additions unfair and scoundrelly": [65535, 0], "he considered additions unfair and scoundrelly in": [65535, 0], "considered additions unfair and scoundrelly in the": [65535, 0], "additions unfair and scoundrelly in the midst": [65535, 0], "unfair and scoundrelly in the midst of": [65535, 0], "and scoundrelly in the midst of the": [65535, 0], "scoundrelly in the midst of the prayer": [65535, 0], "in the midst of the prayer a": [65535, 0], "the midst of the prayer a fly": [65535, 0], "midst of the prayer a fly had": [65535, 0], "of the prayer a fly had lit": [65535, 0], "the prayer a fly had lit on": [65535, 0], "prayer a fly had lit on the": [65535, 0], "a fly had lit on the back": [65535, 0], "fly had lit on the back of": [65535, 0], "had lit on the back of the": [65535, 0], "lit on the back of the pew": [65535, 0], "on the back of the pew in": [65535, 0], "the back of the pew in front": [65535, 0], "back of the pew in front of": [65535, 0], "of the pew in front of him": [65535, 0], "the pew in front of him and": [65535, 0], "pew in front of him and tortured": [65535, 0], "in front of him and tortured his": [65535, 0], "front of him and tortured his spirit": [65535, 0], "of him and tortured his spirit by": [65535, 0], "him and tortured his spirit by calmly": [65535, 0], "and tortured his spirit by calmly rubbing": [65535, 0], "tortured his spirit by calmly rubbing its": [65535, 0], "his spirit by calmly rubbing its hands": [65535, 0], "spirit by calmly rubbing its hands together": [65535, 0], "by calmly rubbing its hands together embracing": [65535, 0], "calmly rubbing its hands together embracing its": [65535, 0], "rubbing its hands together embracing its head": [65535, 0], "its hands together embracing its head with": [65535, 0], "hands together embracing its head with its": [65535, 0], "together embracing its head with its arms": [65535, 0], "embracing its head with its arms and": [65535, 0], "its head with its arms and polishing": [65535, 0], "head with its arms and polishing it": [65535, 0], "with its arms and polishing it so": [65535, 0], "its arms and polishing it so vigorously": [65535, 0], "arms and polishing it so vigorously that": [65535, 0], "and polishing it so vigorously that it": [65535, 0], "polishing it so vigorously that it seemed": [65535, 0], "it so vigorously that it seemed to": [65535, 0], "so vigorously that it seemed to almost": [65535, 0], "vigorously that it seemed to almost part": [65535, 0], "that it seemed to almost part company": [65535, 0], "it seemed to almost part company with": [65535, 0], "seemed to almost part company with the": [65535, 0], "to almost part company with the body": [65535, 0], "almost part company with the body and": [65535, 0], "part company with the body and the": [65535, 0], "company with the body and the slender": [65535, 0], "with the body and the slender thread": [65535, 0], "the body and the slender thread of": [65535, 0], "body and the slender thread of a": [65535, 0], "and the slender thread of a neck": [65535, 0], "the slender thread of a neck was": [65535, 0], "slender thread of a neck was exposed": [65535, 0], "thread of a neck was exposed to": [65535, 0], "of a neck was exposed to view": [65535, 0], "a neck was exposed to view scraping": [65535, 0], "neck was exposed to view scraping its": [65535, 0], "was exposed to view scraping its wings": [65535, 0], "exposed to view scraping its wings with": [65535, 0], "to view scraping its wings with its": [65535, 0], "view scraping its wings with its hind": [65535, 0], "scraping its wings with its hind legs": [65535, 0], "its wings with its hind legs and": [65535, 0], "wings with its hind legs and smoothing": [65535, 0], "with its hind legs and smoothing them": [65535, 0], "its hind legs and smoothing them to": [65535, 0], "hind legs and smoothing them to its": [65535, 0], "legs and smoothing them to its body": [65535, 0], "and smoothing them to its body as": [65535, 0], "smoothing them to its body as if": [65535, 0], "them to its body as if they": [65535, 0], "to its body as if they had": [65535, 0], "its body as if they had been": [65535, 0], "body as if they had been coat": [65535, 0], "as if they had been coat tails": [65535, 0], "if they had been coat tails going": [65535, 0], "they had been coat tails going through": [65535, 0], "had been coat tails going through its": [65535, 0], "been coat tails going through its whole": [65535, 0], "coat tails going through its whole toilet": [65535, 0], "tails going through its whole toilet as": [65535, 0], "going through its whole toilet as tranquilly": [65535, 0], "through its whole toilet as tranquilly as": [65535, 0], "its whole toilet as tranquilly as if": [65535, 0], "whole toilet as tranquilly as if it": [65535, 0], "toilet as tranquilly as if it knew": [65535, 0], "as tranquilly as if it knew it": [65535, 0], "tranquilly as if it knew it was": [65535, 0], "as if it knew it was perfectly": [65535, 0], "if it knew it was perfectly safe": [65535, 0], "it knew it was perfectly safe as": [65535, 0], "knew it was perfectly safe as indeed": [65535, 0], "it was perfectly safe as indeed it": [65535, 0], "was perfectly safe as indeed it was": [65535, 0], "perfectly safe as indeed it was for": [65535, 0], "safe as indeed it was for as": [65535, 0], "as indeed it was for as sorely": [65535, 0], "indeed it was for as sorely as": [65535, 0], "it was for as sorely as tom's": [65535, 0], "was for as sorely as tom's hands": [65535, 0], "for as sorely as tom's hands itched": [65535, 0], "as sorely as tom's hands itched to": [65535, 0], "sorely as tom's hands itched to grab": [65535, 0], "as tom's hands itched to grab for": [65535, 0], "tom's hands itched to grab for it": [65535, 0], "hands itched to grab for it they": [65535, 0], "itched to grab for it they did": [65535, 0], "to grab for it they did not": [65535, 0], "grab for it they did not dare": [65535, 0], "for it they did not dare he": [65535, 0], "it they did not dare he believed": [65535, 0], "they did not dare he believed his": [65535, 0], "did not dare he believed his soul": [65535, 0], "not dare he believed his soul would": [65535, 0], "dare he believed his soul would be": [65535, 0], "he believed his soul would be instantly": [65535, 0], "believed his soul would be instantly destroyed": [65535, 0], "his soul would be instantly destroyed if": [65535, 0], "soul would be instantly destroyed if he": [65535, 0], "would be instantly destroyed if he did": [65535, 0], "be instantly destroyed if he did such": [65535, 0], "instantly destroyed if he did such a": [65535, 0], "destroyed if he did such a thing": [65535, 0], "if he did such a thing while": [65535, 0], "he did such a thing while the": [65535, 0], "did such a thing while the prayer": [65535, 0], "such a thing while the prayer was": [65535, 0], "a thing while the prayer was going": [65535, 0], "thing while the prayer was going on": [65535, 0], "while the prayer was going on but": [65535, 0], "the prayer was going on but with": [65535, 0], "prayer was going on but with the": [65535, 0], "was going on but with the closing": [65535, 0], "going on but with the closing sentence": [65535, 0], "on but with the closing sentence his": [65535, 0], "but with the closing sentence his hand": [65535, 0], "with the closing sentence his hand began": [65535, 0], "the closing sentence his hand began to": [65535, 0], "closing sentence his hand began to curve": [65535, 0], "sentence his hand began to curve and": [65535, 0], "his hand began to curve and steal": [65535, 0], "hand began to curve and steal forward": [65535, 0], "began to curve and steal forward and": [65535, 0], "to curve and steal forward and the": [65535, 0], "curve and steal forward and the instant": [65535, 0], "and steal forward and the instant the": [65535, 0], "steal forward and the instant the amen": [65535, 0], "forward and the instant the amen was": [65535, 0], "and the instant the amen was out": [65535, 0], "the instant the amen was out the": [65535, 0], "instant the amen was out the fly": [65535, 0], "the amen was out the fly was": [65535, 0], "amen was out the fly was a": [65535, 0], "was out the fly was a prisoner": [65535, 0], "out the fly was a prisoner of": [65535, 0], "the fly was a prisoner of war": [65535, 0], "fly was a prisoner of war his": [65535, 0], "was a prisoner of war his aunt": [65535, 0], "a prisoner of war his aunt detected": [65535, 0], "prisoner of war his aunt detected the": [65535, 0], "of war his aunt detected the act": [65535, 0], "war his aunt detected the act and": [65535, 0], "his aunt detected the act and made": [65535, 0], "aunt detected the act and made him": [65535, 0], "detected the act and made him let": [65535, 0], "the act and made him let it": [65535, 0], "act and made him let it go": [65535, 0], "and made him let it go the": [65535, 0], "made him let it go the minister": [65535, 0], "him let it go the minister gave": [65535, 0], "let it go the minister gave out": [65535, 0], "it go the minister gave out his": [65535, 0], "go the minister gave out his text": [65535, 0], "the minister gave out his text and": [65535, 0], "minister gave out his text and droned": [65535, 0], "gave out his text and droned along": [65535, 0], "out his text and droned along monotonously": [65535, 0], "his text and droned along monotonously through": [65535, 0], "text and droned along monotonously through an": [65535, 0], "and droned along monotonously through an argument": [65535, 0], "droned along monotonously through an argument that": [65535, 0], "along monotonously through an argument that was": [65535, 0], "monotonously through an argument that was so": [65535, 0], "through an argument that was so prosy": [65535, 0], "an argument that was so prosy that": [65535, 0], "argument that was so prosy that many": [65535, 0], "that was so prosy that many a": [65535, 0], "was so prosy that many a head": [65535, 0], "so prosy that many a head by": [65535, 0], "prosy that many a head by and": [65535, 0], "that many a head by and by": [65535, 0], "many a head by and by began": [65535, 0], "a head by and by began to": [65535, 0], "head by and by began to nod": [65535, 0], "by and by began to nod and": [65535, 0], "and by began to nod and yet": [65535, 0], "by began to nod and yet it": [65535, 0], "began to nod and yet it was": [65535, 0], "to nod and yet it was an": [65535, 0], "nod and yet it was an argument": [65535, 0], "and yet it was an argument that": [65535, 0], "yet it was an argument that dealt": [65535, 0], "it was an argument that dealt in": [65535, 0], "was an argument that dealt in limitless": [65535, 0], "an argument that dealt in limitless fire": [65535, 0], "argument that dealt in limitless fire and": [65535, 0], "that dealt in limitless fire and brimstone": [65535, 0], "dealt in limitless fire and brimstone and": [65535, 0], "in limitless fire and brimstone and thinned": [65535, 0], "limitless fire and brimstone and thinned the": [65535, 0], "fire and brimstone and thinned the predestined": [65535, 0], "and brimstone and thinned the predestined elect": [65535, 0], "brimstone and thinned the predestined elect down": [65535, 0], "and thinned the predestined elect down to": [65535, 0], "thinned the predestined elect down to a": [65535, 0], "the predestined elect down to a company": [65535, 0], "predestined elect down to a company so": [65535, 0], "elect down to a company so small": [65535, 0], "down to a company so small as": [65535, 0], "to a company so small as to": [65535, 0], "a company so small as to be": [65535, 0], "company so small as to be hardly": [65535, 0], "so small as to be hardly worth": [65535, 0], "small as to be hardly worth the": [65535, 0], "as to be hardly worth the saving": [65535, 0], "to be hardly worth the saving tom": [65535, 0], "be hardly worth the saving tom counted": [65535, 0], "hardly worth the saving tom counted the": [65535, 0], "worth the saving tom counted the pages": [65535, 0], "the saving tom counted the pages of": [65535, 0], "saving tom counted the pages of the": [65535, 0], "tom counted the pages of the sermon": [65535, 0], "counted the pages of the sermon after": [65535, 0], "the pages of the sermon after church": [65535, 0], "pages of the sermon after church he": [65535, 0], "of the sermon after church he always": [65535, 0], "the sermon after church he always knew": [65535, 0], "sermon after church he always knew how": [65535, 0], "after church he always knew how many": [65535, 0], "church he always knew how many pages": [65535, 0], "he always knew how many pages there": [65535, 0], "always knew how many pages there had": [65535, 0], "knew how many pages there had been": [65535, 0], "how many pages there had been but": [65535, 0], "many pages there had been but he": [65535, 0], "pages there had been but he seldom": [65535, 0], "there had been but he seldom knew": [65535, 0], "had been but he seldom knew anything": [65535, 0], "been but he seldom knew anything else": [65535, 0], "but he seldom knew anything else about": [65535, 0], "he seldom knew anything else about the": [65535, 0], "seldom knew anything else about the discourse": [65535, 0], "knew anything else about the discourse however": [65535, 0], "anything else about the discourse however this": [65535, 0], "else about the discourse however this time": [65535, 0], "about the discourse however this time he": [65535, 0], "the discourse however this time he was": [65535, 0], "discourse however this time he was really": [65535, 0], "however this time he was really interested": [65535, 0], "this time he was really interested for": [65535, 0], "time he was really interested for a": [65535, 0], "he was really interested for a little": [65535, 0], "was really interested for a little while": [65535, 0], "really interested for a little while the": [65535, 0], "interested for a little while the minister": [65535, 0], "for a little while the minister made": [65535, 0], "a little while the minister made a": [65535, 0], "little while the minister made a grand": [65535, 0], "while the minister made a grand and": [65535, 0], "the minister made a grand and moving": [65535, 0], "minister made a grand and moving picture": [65535, 0], "made a grand and moving picture of": [65535, 0], "a grand and moving picture of the": [65535, 0], "grand and moving picture of the assembling": [65535, 0], "and moving picture of the assembling together": [65535, 0], "moving picture of the assembling together of": [65535, 0], "picture of the assembling together of the": [65535, 0], "of the assembling together of the world's": [65535, 0], "the assembling together of the world's hosts": [65535, 0], "assembling together of the world's hosts at": [65535, 0], "together of the world's hosts at the": [65535, 0], "of the world's hosts at the millennium": [65535, 0], "the world's hosts at the millennium when": [65535, 0], "world's hosts at the millennium when the": [65535, 0], "hosts at the millennium when the lion": [65535, 0], "at the millennium when the lion and": [65535, 0], "the millennium when the lion and the": [65535, 0], "millennium when the lion and the lamb": [65535, 0], "when the lion and the lamb should": [65535, 0], "the lion and the lamb should lie": [65535, 0], "lion and the lamb should lie down": [65535, 0], "and the lamb should lie down together": [65535, 0], "the lamb should lie down together and": [65535, 0], "lamb should lie down together and a": [65535, 0], "should lie down together and a little": [65535, 0], "lie down together and a little child": [65535, 0], "down together and a little child should": [65535, 0], "together and a little child should lead": [65535, 0], "and a little child should lead them": [65535, 0], "a little child should lead them but": [65535, 0], "little child should lead them but the": [65535, 0], "child should lead them but the pathos": [65535, 0], "should lead them but the pathos the": [65535, 0], "lead them but the pathos the lesson": [65535, 0], "them but the pathos the lesson the": [65535, 0], "but the pathos the lesson the moral": [65535, 0], "the pathos the lesson the moral of": [65535, 0], "pathos the lesson the moral of the": [65535, 0], "the lesson the moral of the great": [65535, 0], "lesson the moral of the great spectacle": [65535, 0], "the moral of the great spectacle were": [65535, 0], "moral of the great spectacle were lost": [65535, 0], "of the great spectacle were lost upon": [65535, 0], "the great spectacle were lost upon the": [65535, 0], "great spectacle were lost upon the boy": [65535, 0], "spectacle were lost upon the boy he": [65535, 0], "were lost upon the boy he only": [65535, 0], "lost upon the boy he only thought": [65535, 0], "upon the boy he only thought of": [65535, 0], "the boy he only thought of the": [65535, 0], "boy he only thought of the conspicuousness": [65535, 0], "he only thought of the conspicuousness of": [65535, 0], "only thought of the conspicuousness of the": [65535, 0], "thought of the conspicuousness of the principal": [65535, 0], "of the conspicuousness of the principal character": [65535, 0], "the conspicuousness of the principal character before": [65535, 0], "conspicuousness of the principal character before the": [65535, 0], "of the principal character before the on": [65535, 0], "the principal character before the on looking": [65535, 0], "principal character before the on looking nations": [65535, 0], "character before the on looking nations his": [65535, 0], "before the on looking nations his face": [65535, 0], "the on looking nations his face lit": [65535, 0], "on looking nations his face lit with": [65535, 0], "looking nations his face lit with the": [65535, 0], "nations his face lit with the thought": [65535, 0], "his face lit with the thought and": [65535, 0], "face lit with the thought and he": [65535, 0], "lit with the thought and he said": [65535, 0], "with the thought and he said to": [65535, 0], "the thought and he said to himself": [65535, 0], "thought and he said to himself that": [65535, 0], "and he said to himself that he": [65535, 0], "he said to himself that he wished": [65535, 0], "said to himself that he wished he": [65535, 0], "to himself that he wished he could": [65535, 0], "himself that he wished he could be": [65535, 0], "that he wished he could be that": [65535, 0], "he wished he could be that child": [65535, 0], "wished he could be that child if": [65535, 0], "he could be that child if it": [65535, 0], "could be that child if it was": [65535, 0], "be that child if it was a": [65535, 0], "that child if it was a tame": [65535, 0], "child if it was a tame lion": [65535, 0], "if it was a tame lion now": [65535, 0], "it was a tame lion now he": [65535, 0], "was a tame lion now he lapsed": [65535, 0], "a tame lion now he lapsed into": [65535, 0], "tame lion now he lapsed into suffering": [65535, 0], "lion now he lapsed into suffering again": [65535, 0], "now he lapsed into suffering again as": [65535, 0], "he lapsed into suffering again as the": [65535, 0], "lapsed into suffering again as the dry": [65535, 0], "into suffering again as the dry argument": [65535, 0], "suffering again as the dry argument was": [65535, 0], "again as the dry argument was resumed": [65535, 0], "as the dry argument was resumed presently": [65535, 0], "the dry argument was resumed presently he": [65535, 0], "dry argument was resumed presently he bethought": [65535, 0], "argument was resumed presently he bethought him": [65535, 0], "was resumed presently he bethought him of": [65535, 0], "resumed presently he bethought him of a": [65535, 0], "presently he bethought him of a treasure": [65535, 0], "he bethought him of a treasure he": [65535, 0], "bethought him of a treasure he had": [65535, 0], "him of a treasure he had and": [65535, 0], "of a treasure he had and got": [65535, 0], "a treasure he had and got it": [65535, 0], "treasure he had and got it out": [65535, 0], "he had and got it out it": [65535, 0], "had and got it out it was": [65535, 0], "and got it out it was a": [65535, 0], "got it out it was a large": [65535, 0], "it out it was a large black": [65535, 0], "out it was a large black beetle": [65535, 0], "it was a large black beetle with": [65535, 0], "was a large black beetle with formidable": [65535, 0], "a large black beetle with formidable jaws": [65535, 0], "large black beetle with formidable jaws a": [65535, 0], "black beetle with formidable jaws a pinchbug": [65535, 0], "beetle with formidable jaws a pinchbug he": [65535, 0], "with formidable jaws a pinchbug he called": [65535, 0], "formidable jaws a pinchbug he called it": [65535, 0], "jaws a pinchbug he called it it": [65535, 0], "a pinchbug he called it it was": [65535, 0], "pinchbug he called it it was in": [65535, 0], "he called it it was in a": [65535, 0], "called it it was in a percussion": [65535, 0], "it it was in a percussion cap": [65535, 0], "it was in a percussion cap box": [65535, 0], "was in a percussion cap box the": [65535, 0], "in a percussion cap box the first": [65535, 0], "a percussion cap box the first thing": [65535, 0], "percussion cap box the first thing the": [65535, 0], "cap box the first thing the beetle": [65535, 0], "box the first thing the beetle did": [65535, 0], "the first thing the beetle did was": [65535, 0], "first thing the beetle did was to": [65535, 0], "thing the beetle did was to take": [65535, 0], "the beetle did was to take him": [65535, 0], "beetle did was to take him by": [65535, 0], "did was to take him by the": [65535, 0], "was to take him by the finger": [65535, 0], "to take him by the finger a": [65535, 0], "take him by the finger a natural": [65535, 0], "him by the finger a natural fillip": [65535, 0], "by the finger a natural fillip followed": [65535, 0], "the finger a natural fillip followed the": [65535, 0], "finger a natural fillip followed the beetle": [65535, 0], "a natural fillip followed the beetle went": [65535, 0], "natural fillip followed the beetle went floundering": [65535, 0], "fillip followed the beetle went floundering into": [65535, 0], "followed the beetle went floundering into the": [65535, 0], "the beetle went floundering into the aisle": [65535, 0], "beetle went floundering into the aisle and": [65535, 0], "went floundering into the aisle and lit": [65535, 0], "floundering into the aisle and lit on": [65535, 0], "into the aisle and lit on its": [65535, 0], "the aisle and lit on its back": [65535, 0], "aisle and lit on its back and": [65535, 0], "and lit on its back and the": [65535, 0], "lit on its back and the hurt": [65535, 0], "on its back and the hurt finger": [65535, 0], "its back and the hurt finger went": [65535, 0], "back and the hurt finger went into": [65535, 0], "and the hurt finger went into the": [65535, 0], "the hurt finger went into the boy's": [65535, 0], "hurt finger went into the boy's mouth": [65535, 0], "finger went into the boy's mouth the": [65535, 0], "went into the boy's mouth the beetle": [65535, 0], "into the boy's mouth the beetle lay": [65535, 0], "the boy's mouth the beetle lay there": [65535, 0], "boy's mouth the beetle lay there working": [65535, 0], "mouth the beetle lay there working its": [65535, 0], "the beetle lay there working its helpless": [65535, 0], "beetle lay there working its helpless legs": [65535, 0], "lay there working its helpless legs unable": [65535, 0], "there working its helpless legs unable to": [65535, 0], "working its helpless legs unable to turn": [65535, 0], "its helpless legs unable to turn over": [65535, 0], "helpless legs unable to turn over tom": [65535, 0], "legs unable to turn over tom eyed": [65535, 0], "unable to turn over tom eyed it": [65535, 0], "to turn over tom eyed it and": [65535, 0], "turn over tom eyed it and longed": [65535, 0], "over tom eyed it and longed for": [65535, 0], "tom eyed it and longed for it": [65535, 0], "eyed it and longed for it but": [65535, 0], "it and longed for it but it": [65535, 0], "and longed for it but it was": [65535, 0], "longed for it but it was safe": [65535, 0], "for it but it was safe out": [65535, 0], "it but it was safe out of": [65535, 0], "but it was safe out of his": [65535, 0], "it was safe out of his reach": [65535, 0], "was safe out of his reach other": [65535, 0], "safe out of his reach other people": [65535, 0], "out of his reach other people uninterested": [65535, 0], "of his reach other people uninterested in": [65535, 0], "his reach other people uninterested in the": [65535, 0], "reach other people uninterested in the sermon": [65535, 0], "other people uninterested in the sermon found": [65535, 0], "people uninterested in the sermon found relief": [65535, 0], "uninterested in the sermon found relief in": [65535, 0], "in the sermon found relief in the": [65535, 0], "the sermon found relief in the beetle": [65535, 0], "sermon found relief in the beetle and": [65535, 0], "found relief in the beetle and they": [65535, 0], "relief in the beetle and they eyed": [65535, 0], "in the beetle and they eyed it": [65535, 0], "the beetle and they eyed it too": [65535, 0], "beetle and they eyed it too presently": [65535, 0], "and they eyed it too presently a": [65535, 0], "they eyed it too presently a vagrant": [65535, 0], "eyed it too presently a vagrant poodle": [65535, 0], "it too presently a vagrant poodle dog": [65535, 0], "too presently a vagrant poodle dog came": [65535, 0], "presently a vagrant poodle dog came idling": [65535, 0], "a vagrant poodle dog came idling along": [65535, 0], "vagrant poodle dog came idling along sad": [65535, 0], "poodle dog came idling along sad at": [65535, 0], "dog came idling along sad at heart": [65535, 0], "came idling along sad at heart lazy": [65535, 0], "idling along sad at heart lazy with": [65535, 0], "along sad at heart lazy with the": [65535, 0], "sad at heart lazy with the summer": [65535, 0], "at heart lazy with the summer softness": [65535, 0], "heart lazy with the summer softness and": [65535, 0], "lazy with the summer softness and the": [65535, 0], "with the summer softness and the quiet": [65535, 0], "the summer softness and the quiet weary": [65535, 0], "summer softness and the quiet weary of": [65535, 0], "softness and the quiet weary of captivity": [65535, 0], "and the quiet weary of captivity sighing": [65535, 0], "the quiet weary of captivity sighing for": [65535, 0], "quiet weary of captivity sighing for change": [65535, 0], "weary of captivity sighing for change he": [65535, 0], "of captivity sighing for change he spied": [65535, 0], "captivity sighing for change he spied the": [65535, 0], "sighing for change he spied the beetle": [65535, 0], "for change he spied the beetle the": [65535, 0], "change he spied the beetle the drooping": [65535, 0], "he spied the beetle the drooping tail": [65535, 0], "spied the beetle the drooping tail lifted": [65535, 0], "the beetle the drooping tail lifted and": [65535, 0], "beetle the drooping tail lifted and wagged": [65535, 0], "the drooping tail lifted and wagged he": [65535, 0], "drooping tail lifted and wagged he surveyed": [65535, 0], "tail lifted and wagged he surveyed the": [65535, 0], "lifted and wagged he surveyed the prize": [65535, 0], "and wagged he surveyed the prize walked": [65535, 0], "wagged he surveyed the prize walked around": [65535, 0], "he surveyed the prize walked around it": [65535, 0], "surveyed the prize walked around it smelt": [65535, 0], "the prize walked around it smelt at": [65535, 0], "prize walked around it smelt at it": [65535, 0], "walked around it smelt at it from": [65535, 0], "around it smelt at it from a": [65535, 0], "it smelt at it from a safe": [65535, 0], "smelt at it from a safe distance": [65535, 0], "at it from a safe distance walked": [65535, 0], "it from a safe distance walked around": [65535, 0], "from a safe distance walked around it": [65535, 0], "a safe distance walked around it again": [65535, 0], "safe distance walked around it again grew": [65535, 0], "distance walked around it again grew bolder": [65535, 0], "walked around it again grew bolder and": [65535, 0], "around it again grew bolder and took": [65535, 0], "it again grew bolder and took a": [65535, 0], "again grew bolder and took a closer": [65535, 0], "grew bolder and took a closer smell": [65535, 0], "bolder and took a closer smell then": [65535, 0], "and took a closer smell then lifted": [65535, 0], "took a closer smell then lifted his": [65535, 0], "a closer smell then lifted his lip": [65535, 0], "closer smell then lifted his lip and": [65535, 0], "smell then lifted his lip and made": [65535, 0], "then lifted his lip and made a": [65535, 0], "lifted his lip and made a gingerly": [65535, 0], "his lip and made a gingerly snatch": [65535, 0], "lip and made a gingerly snatch at": [65535, 0], "and made a gingerly snatch at it": [65535, 0], "made a gingerly snatch at it just": [65535, 0], "a gingerly snatch at it just missing": [65535, 0], "gingerly snatch at it just missing it": [65535, 0], "snatch at it just missing it made": [65535, 0], "at it just missing it made another": [65535, 0], "it just missing it made another and": [65535, 0], "just missing it made another and another": [65535, 0], "missing it made another and another began": [65535, 0], "it made another and another began to": [65535, 0], "made another and another began to enjoy": [65535, 0], "another and another began to enjoy the": [65535, 0], "and another began to enjoy the diversion": [65535, 0], "another began to enjoy the diversion subsided": [65535, 0], "began to enjoy the diversion subsided to": [65535, 0], "to enjoy the diversion subsided to his": [65535, 0], "enjoy the diversion subsided to his stomach": [65535, 0], "the diversion subsided to his stomach with": [65535, 0], "diversion subsided to his stomach with the": [65535, 0], "subsided to his stomach with the beetle": [65535, 0], "to his stomach with the beetle between": [65535, 0], "his stomach with the beetle between his": [65535, 0], "stomach with the beetle between his paws": [65535, 0], "with the beetle between his paws and": [65535, 0], "the beetle between his paws and continued": [65535, 0], "beetle between his paws and continued his": [65535, 0], "between his paws and continued his experiments": [65535, 0], "his paws and continued his experiments grew": [65535, 0], "paws and continued his experiments grew weary": [65535, 0], "and continued his experiments grew weary at": [65535, 0], "continued his experiments grew weary at last": [65535, 0], "his experiments grew weary at last and": [65535, 0], "experiments grew weary at last and then": [65535, 0], "grew weary at last and then indifferent": [65535, 0], "weary at last and then indifferent and": [65535, 0], "at last and then indifferent and absent": [65535, 0], "last and then indifferent and absent minded": [65535, 0], "and then indifferent and absent minded his": [65535, 0], "then indifferent and absent minded his head": [65535, 0], "indifferent and absent minded his head nodded": [65535, 0], "and absent minded his head nodded and": [65535, 0], "absent minded his head nodded and little": [65535, 0], "minded his head nodded and little by": [65535, 0], "his head nodded and little by little": [65535, 0], "head nodded and little by little his": [65535, 0], "nodded and little by little his chin": [65535, 0], "and little by little his chin descended": [65535, 0], "little by little his chin descended and": [65535, 0], "by little his chin descended and touched": [65535, 0], "little his chin descended and touched the": [65535, 0], "his chin descended and touched the enemy": [65535, 0], "chin descended and touched the enemy who": [65535, 0], "descended and touched the enemy who seized": [65535, 0], "and touched the enemy who seized it": [65535, 0], "touched the enemy who seized it there": [65535, 0], "the enemy who seized it there was": [65535, 0], "enemy who seized it there was a": [65535, 0], "who seized it there was a sharp": [65535, 0], "seized it there was a sharp yelp": [65535, 0], "it there was a sharp yelp a": [65535, 0], "there was a sharp yelp a flirt": [65535, 0], "was a sharp yelp a flirt of": [65535, 0], "a sharp yelp a flirt of the": [65535, 0], "sharp yelp a flirt of the poodle's": [65535, 0], "yelp a flirt of the poodle's head": [65535, 0], "a flirt of the poodle's head and": [65535, 0], "flirt of the poodle's head and the": [65535, 0], "of the poodle's head and the beetle": [65535, 0], "the poodle's head and the beetle fell": [65535, 0], "poodle's head and the beetle fell a": [65535, 0], "head and the beetle fell a couple": [65535, 0], "and the beetle fell a couple of": [65535, 0], "the beetle fell a couple of yards": [65535, 0], "beetle fell a couple of yards away": [65535, 0], "fell a couple of yards away and": [65535, 0], "a couple of yards away and lit": [65535, 0], "couple of yards away and lit on": [65535, 0], "of yards away and lit on its": [65535, 0], "yards away and lit on its back": [65535, 0], "away and lit on its back once": [65535, 0], "and lit on its back once more": [65535, 0], "lit on its back once more the": [65535, 0], "on its back once more the neighboring": [65535, 0], "its back once more the neighboring spectators": [65535, 0], "back once more the neighboring spectators shook": [65535, 0], "once more the neighboring spectators shook with": [65535, 0], "more the neighboring spectators shook with a": [65535, 0], "the neighboring spectators shook with a gentle": [65535, 0], "neighboring spectators shook with a gentle inward": [65535, 0], "spectators shook with a gentle inward joy": [65535, 0], "shook with a gentle inward joy several": [65535, 0], "with a gentle inward joy several faces": [65535, 0], "a gentle inward joy several faces went": [65535, 0], "gentle inward joy several faces went behind": [65535, 0], "inward joy several faces went behind fans": [65535, 0], "joy several faces went behind fans and": [65535, 0], "several faces went behind fans and handkerchiefs": [65535, 0], "faces went behind fans and handkerchiefs and": [65535, 0], "went behind fans and handkerchiefs and tom": [65535, 0], "behind fans and handkerchiefs and tom was": [65535, 0], "fans and handkerchiefs and tom was entirely": [65535, 0], "and handkerchiefs and tom was entirely happy": [65535, 0], "handkerchiefs and tom was entirely happy the": [65535, 0], "and tom was entirely happy the dog": [65535, 0], "tom was entirely happy the dog looked": [65535, 0], "was entirely happy the dog looked foolish": [65535, 0], "entirely happy the dog looked foolish and": [65535, 0], "happy the dog looked foolish and probably": [65535, 0], "the dog looked foolish and probably felt": [65535, 0], "dog looked foolish and probably felt so": [65535, 0], "looked foolish and probably felt so but": [65535, 0], "foolish and probably felt so but there": [65535, 0], "and probably felt so but there was": [65535, 0], "probably felt so but there was resentment": [65535, 0], "felt so but there was resentment in": [65535, 0], "so but there was resentment in his": [65535, 0], "but there was resentment in his heart": [65535, 0], "there was resentment in his heart too": [65535, 0], "was resentment in his heart too and": [65535, 0], "resentment in his heart too and a": [65535, 0], "in his heart too and a craving": [65535, 0], "his heart too and a craving for": [65535, 0], "heart too and a craving for revenge": [65535, 0], "too and a craving for revenge so": [65535, 0], "and a craving for revenge so he": [65535, 0], "a craving for revenge so he went": [65535, 0], "craving for revenge so he went to": [65535, 0], "for revenge so he went to the": [65535, 0], "revenge so he went to the beetle": [65535, 0], "so he went to the beetle and": [65535, 0], "he went to the beetle and began": [65535, 0], "went to the beetle and began a": [65535, 0], "to the beetle and began a wary": [65535, 0], "the beetle and began a wary attack": [65535, 0], "beetle and began a wary attack on": [65535, 0], "and began a wary attack on it": [65535, 0], "began a wary attack on it again": [65535, 0], "a wary attack on it again jumping": [65535, 0], "wary attack on it again jumping at": [65535, 0], "attack on it again jumping at it": [65535, 0], "on it again jumping at it from": [65535, 0], "it again jumping at it from every": [65535, 0], "again jumping at it from every point": [65535, 0], "jumping at it from every point of": [65535, 0], "at it from every point of a": [65535, 0], "it from every point of a circle": [65535, 0], "from every point of a circle lighting": [65535, 0], "every point of a circle lighting with": [65535, 0], "point of a circle lighting with his": [65535, 0], "of a circle lighting with his fore": [65535, 0], "a circle lighting with his fore paws": [65535, 0], "circle lighting with his fore paws within": [65535, 0], "lighting with his fore paws within an": [65535, 0], "with his fore paws within an inch": [65535, 0], "his fore paws within an inch of": [65535, 0], "fore paws within an inch of the": [65535, 0], "paws within an inch of the creature": [65535, 0], "within an inch of the creature making": [65535, 0], "an inch of the creature making even": [65535, 0], "inch of the creature making even closer": [65535, 0], "of the creature making even closer snatches": [65535, 0], "the creature making even closer snatches at": [65535, 0], "creature making even closer snatches at it": [65535, 0], "making even closer snatches at it with": [65535, 0], "even closer snatches at it with his": [65535, 0], "closer snatches at it with his teeth": [65535, 0], "snatches at it with his teeth and": [65535, 0], "at it with his teeth and jerking": [65535, 0], "it with his teeth and jerking his": [65535, 0], "with his teeth and jerking his head": [65535, 0], "his teeth and jerking his head till": [65535, 0], "teeth and jerking his head till his": [65535, 0], "and jerking his head till his ears": [65535, 0], "jerking his head till his ears flapped": [65535, 0], "his head till his ears flapped again": [65535, 0], "head till his ears flapped again but": [65535, 0], "till his ears flapped again but he": [65535, 0], "his ears flapped again but he grew": [65535, 0], "ears flapped again but he grew tired": [65535, 0], "flapped again but he grew tired once": [65535, 0], "again but he grew tired once more": [65535, 0], "but he grew tired once more after": [65535, 0], "he grew tired once more after a": [65535, 0], "grew tired once more after a while": [65535, 0], "tired once more after a while tried": [65535, 0], "once more after a while tried to": [65535, 0], "more after a while tried to amuse": [65535, 0], "after a while tried to amuse himself": [65535, 0], "a while tried to amuse himself with": [65535, 0], "while tried to amuse himself with a": [65535, 0], "tried to amuse himself with a fly": [65535, 0], "to amuse himself with a fly but": [65535, 0], "amuse himself with a fly but found": [65535, 0], "himself with a fly but found no": [65535, 0], "with a fly but found no relief": [65535, 0], "a fly but found no relief followed": [65535, 0], "fly but found no relief followed an": [65535, 0], "but found no relief followed an ant": [65535, 0], "found no relief followed an ant around": [65535, 0], "no relief followed an ant around with": [65535, 0], "relief followed an ant around with his": [65535, 0], "followed an ant around with his nose": [65535, 0], "an ant around with his nose close": [65535, 0], "ant around with his nose close to": [65535, 0], "around with his nose close to the": [65535, 0], "with his nose close to the floor": [65535, 0], "his nose close to the floor and": [65535, 0], "nose close to the floor and quickly": [65535, 0], "close to the floor and quickly wearied": [65535, 0], "to the floor and quickly wearied of": [65535, 0], "the floor and quickly wearied of that": [65535, 0], "floor and quickly wearied of that yawned": [65535, 0], "and quickly wearied of that yawned sighed": [65535, 0], "quickly wearied of that yawned sighed forgot": [65535, 0], "wearied of that yawned sighed forgot the": [65535, 0], "of that yawned sighed forgot the beetle": [65535, 0], "that yawned sighed forgot the beetle entirely": [65535, 0], "yawned sighed forgot the beetle entirely and": [65535, 0], "sighed forgot the beetle entirely and sat": [65535, 0], "forgot the beetle entirely and sat down": [65535, 0], "the beetle entirely and sat down on": [65535, 0], "beetle entirely and sat down on it": [65535, 0], "entirely and sat down on it then": [65535, 0], "and sat down on it then there": [65535, 0], "sat down on it then there was": [65535, 0], "down on it then there was a": [65535, 0], "on it then there was a wild": [65535, 0], "it then there was a wild yelp": [65535, 0], "then there was a wild yelp of": [65535, 0], "there was a wild yelp of agony": [65535, 0], "was a wild yelp of agony and": [65535, 0], "a wild yelp of agony and the": [65535, 0], "wild yelp of agony and the poodle": [65535, 0], "yelp of agony and the poodle went": [65535, 0], "of agony and the poodle went sailing": [65535, 0], "agony and the poodle went sailing up": [65535, 0], "and the poodle went sailing up the": [65535, 0], "the poodle went sailing up the aisle": [65535, 0], "poodle went sailing up the aisle the": [65535, 0], "went sailing up the aisle the yelps": [65535, 0], "sailing up the aisle the yelps continued": [65535, 0], "up the aisle the yelps continued and": [65535, 0], "the aisle the yelps continued and so": [65535, 0], "aisle the yelps continued and so did": [65535, 0], "the yelps continued and so did the": [65535, 0], "yelps continued and so did the dog": [65535, 0], "continued and so did the dog he": [65535, 0], "and so did the dog he crossed": [65535, 0], "so did the dog he crossed the": [65535, 0], "did the dog he crossed the house": [65535, 0], "the dog he crossed the house in": [65535, 0], "dog he crossed the house in front": [65535, 0], "he crossed the house in front of": [65535, 0], "crossed the house in front of the": [65535, 0], "the house in front of the altar": [65535, 0], "house in front of the altar he": [65535, 0], "in front of the altar he flew": [65535, 0], "front of the altar he flew down": [65535, 0], "of the altar he flew down the": [65535, 0], "the altar he flew down the other": [65535, 0], "altar he flew down the other aisle": [65535, 0], "he flew down the other aisle he": [65535, 0], "flew down the other aisle he crossed": [65535, 0], "down the other aisle he crossed before": [65535, 0], "the other aisle he crossed before the": [65535, 0], "other aisle he crossed before the doors": [65535, 0], "aisle he crossed before the doors he": [65535, 0], "he crossed before the doors he clamored": [65535, 0], "crossed before the doors he clamored up": [65535, 0], "before the doors he clamored up the": [65535, 0], "the doors he clamored up the home": [65535, 0], "doors he clamored up the home stretch": [65535, 0], "he clamored up the home stretch his": [65535, 0], "clamored up the home stretch his anguish": [65535, 0], "up the home stretch his anguish grew": [65535, 0], "the home stretch his anguish grew with": [65535, 0], "home stretch his anguish grew with his": [65535, 0], "stretch his anguish grew with his progress": [65535, 0], "his anguish grew with his progress till": [65535, 0], "anguish grew with his progress till presently": [65535, 0], "grew with his progress till presently he": [65535, 0], "with his progress till presently he was": [65535, 0], "his progress till presently he was but": [65535, 0], "progress till presently he was but a": [65535, 0], "till presently he was but a woolly": [65535, 0], "presently he was but a woolly comet": [65535, 0], "he was but a woolly comet moving": [65535, 0], "was but a woolly comet moving in": [65535, 0], "but a woolly comet moving in its": [65535, 0], "a woolly comet moving in its orbit": [65535, 0], "woolly comet moving in its orbit with": [65535, 0], "comet moving in its orbit with the": [65535, 0], "moving in its orbit with the gleam": [65535, 0], "in its orbit with the gleam and": [65535, 0], "its orbit with the gleam and the": [65535, 0], "orbit with the gleam and the speed": [65535, 0], "with the gleam and the speed of": [65535, 0], "the gleam and the speed of light": [65535, 0], "gleam and the speed of light at": [65535, 0], "and the speed of light at last": [65535, 0], "the speed of light at last the": [65535, 0], "speed of light at last the frantic": [65535, 0], "of light at last the frantic sufferer": [65535, 0], "light at last the frantic sufferer sheered": [65535, 0], "at last the frantic sufferer sheered from": [65535, 0], "last the frantic sufferer sheered from its": [65535, 0], "the frantic sufferer sheered from its course": [65535, 0], "frantic sufferer sheered from its course and": [65535, 0], "sufferer sheered from its course and sprang": [65535, 0], "sheered from its course and sprang into": [65535, 0], "from its course and sprang into its": [65535, 0], "its course and sprang into its master's": [65535, 0], "course and sprang into its master's lap": [65535, 0], "and sprang into its master's lap he": [65535, 0], "sprang into its master's lap he flung": [65535, 0], "into its master's lap he flung it": [65535, 0], "its master's lap he flung it out": [65535, 0], "master's lap he flung it out of": [65535, 0], "lap he flung it out of the": [65535, 0], "he flung it out of the window": [65535, 0], "flung it out of the window and": [65535, 0], "it out of the window and the": [65535, 0], "out of the window and the voice": [65535, 0], "of the window and the voice of": [65535, 0], "the window and the voice of distress": [65535, 0], "window and the voice of distress quickly": [65535, 0], "and the voice of distress quickly thinned": [65535, 0], "the voice of distress quickly thinned away": [65535, 0], "voice of distress quickly thinned away and": [65535, 0], "of distress quickly thinned away and died": [65535, 0], "distress quickly thinned away and died in": [65535, 0], "quickly thinned away and died in the": [65535, 0], "thinned away and died in the distance": [65535, 0], "away and died in the distance by": [65535, 0], "and died in the distance by this": [65535, 0], "died in the distance by this time": [65535, 0], "in the distance by this time the": [65535, 0], "the distance by this time the whole": [65535, 0], "distance by this time the whole church": [65535, 0], "by this time the whole church was": [65535, 0], "this time the whole church was red": [65535, 0], "time the whole church was red faced": [65535, 0], "the whole church was red faced and": [65535, 0], "whole church was red faced and suffocating": [65535, 0], "church was red faced and suffocating with": [65535, 0], "was red faced and suffocating with suppressed": [65535, 0], "red faced and suffocating with suppressed laughter": [65535, 0], "faced and suffocating with suppressed laughter and": [65535, 0], "and suffocating with suppressed laughter and the": [65535, 0], "suffocating with suppressed laughter and the sermon": [65535, 0], "with suppressed laughter and the sermon had": [65535, 0], "suppressed laughter and the sermon had come": [65535, 0], "laughter and the sermon had come to": [65535, 0], "and the sermon had come to a": [65535, 0], "the sermon had come to a dead": [65535, 0], "sermon had come to a dead standstill": [65535, 0], "had come to a dead standstill the": [65535, 0], "come to a dead standstill the discourse": [65535, 0], "to a dead standstill the discourse was": [65535, 0], "a dead standstill the discourse was resumed": [65535, 0], "dead standstill the discourse was resumed presently": [65535, 0], "standstill the discourse was resumed presently but": [65535, 0], "the discourse was resumed presently but it": [65535, 0], "discourse was resumed presently but it went": [65535, 0], "was resumed presently but it went lame": [65535, 0], "resumed presently but it went lame and": [65535, 0], "presently but it went lame and halting": [65535, 0], "but it went lame and halting all": [65535, 0], "it went lame and halting all possibility": [65535, 0], "went lame and halting all possibility of": [65535, 0], "lame and halting all possibility of impressiveness": [65535, 0], "and halting all possibility of impressiveness being": [65535, 0], "halting all possibility of impressiveness being at": [65535, 0], "all possibility of impressiveness being at an": [65535, 0], "possibility of impressiveness being at an end": [65535, 0], "of impressiveness being at an end for": [65535, 0], "impressiveness being at an end for even": [65535, 0], "being at an end for even the": [65535, 0], "at an end for even the gravest": [65535, 0], "an end for even the gravest sentiments": [65535, 0], "end for even the gravest sentiments were": [65535, 0], "for even the gravest sentiments were constantly": [65535, 0], "even the gravest sentiments were constantly being": [65535, 0], "the gravest sentiments were constantly being received": [65535, 0], "gravest sentiments were constantly being received with": [65535, 0], "sentiments were constantly being received with a": [65535, 0], "were constantly being received with a smothered": [65535, 0], "constantly being received with a smothered burst": [65535, 0], "being received with a smothered burst of": [65535, 0], "received with a smothered burst of unholy": [65535, 0], "with a smothered burst of unholy mirth": [65535, 0], "a smothered burst of unholy mirth under": [65535, 0], "smothered burst of unholy mirth under cover": [65535, 0], "burst of unholy mirth under cover of": [65535, 0], "of unholy mirth under cover of some": [65535, 0], "unholy mirth under cover of some remote": [65535, 0], "mirth under cover of some remote pew": [65535, 0], "under cover of some remote pew back": [65535, 0], "cover of some remote pew back as": [65535, 0], "of some remote pew back as if": [65535, 0], "some remote pew back as if the": [65535, 0], "remote pew back as if the poor": [65535, 0], "pew back as if the poor parson": [65535, 0], "back as if the poor parson had": [65535, 0], "as if the poor parson had said": [65535, 0], "if the poor parson had said a": [65535, 0], "the poor parson had said a rarely": [65535, 0], "poor parson had said a rarely facetious": [65535, 0], "parson had said a rarely facetious thing": [65535, 0], "had said a rarely facetious thing it": [65535, 0], "said a rarely facetious thing it was": [65535, 0], "a rarely facetious thing it was a": [65535, 0], "rarely facetious thing it was a genuine": [65535, 0], "facetious thing it was a genuine relief": [65535, 0], "thing it was a genuine relief to": [65535, 0], "it was a genuine relief to the": [65535, 0], "was a genuine relief to the whole": [65535, 0], "a genuine relief to the whole congregation": [65535, 0], "genuine relief to the whole congregation when": [65535, 0], "relief to the whole congregation when the": [65535, 0], "to the whole congregation when the ordeal": [65535, 0], "the whole congregation when the ordeal was": [65535, 0], "whole congregation when the ordeal was over": [65535, 0], "congregation when the ordeal was over and": [65535, 0], "when the ordeal was over and the": [65535, 0], "the ordeal was over and the benediction": [65535, 0], "ordeal was over and the benediction pronounced": [65535, 0], "was over and the benediction pronounced tom": [65535, 0], "over and the benediction pronounced tom sawyer": [65535, 0], "and the benediction pronounced tom sawyer went": [65535, 0], "the benediction pronounced tom sawyer went home": [65535, 0], "benediction pronounced tom sawyer went home quite": [65535, 0], "pronounced tom sawyer went home quite cheerful": [65535, 0], "tom sawyer went home quite cheerful thinking": [65535, 0], "sawyer went home quite cheerful thinking to": [65535, 0], "went home quite cheerful thinking to himself": [65535, 0], "home quite cheerful thinking to himself that": [65535, 0], "quite cheerful thinking to himself that there": [65535, 0], "cheerful thinking to himself that there was": [65535, 0], "thinking to himself that there was some": [65535, 0], "to himself that there was some satisfaction": [65535, 0], "himself that there was some satisfaction about": [65535, 0], "that there was some satisfaction about divine": [65535, 0], "there was some satisfaction about divine service": [65535, 0], "was some satisfaction about divine service when": [65535, 0], "some satisfaction about divine service when there": [65535, 0], "satisfaction about divine service when there was": [65535, 0], "about divine service when there was a": [65535, 0], "divine service when there was a bit": [65535, 0], "service when there was a bit of": [65535, 0], "when there was a bit of variety": [65535, 0], "there was a bit of variety in": [65535, 0], "was a bit of variety in it": [65535, 0], "a bit of variety in it he": [65535, 0], "bit of variety in it he had": [65535, 0], "of variety in it he had but": [65535, 0], "variety in it he had but one": [65535, 0], "in it he had but one marring": [65535, 0], "it he had but one marring thought": [65535, 0], "he had but one marring thought he": [65535, 0], "had but one marring thought he was": [65535, 0], "but one marring thought he was willing": [65535, 0], "one marring thought he was willing that": [65535, 0], "marring thought he was willing that the": [65535, 0], "thought he was willing that the dog": [65535, 0], "he was willing that the dog should": [65535, 0], "was willing that the dog should play": [65535, 0], "willing that the dog should play with": [65535, 0], "that the dog should play with his": [65535, 0], "the dog should play with his pinchbug": [65535, 0], "dog should play with his pinchbug but": [65535, 0], "should play with his pinchbug but he": [65535, 0], "play with his pinchbug but he did": [65535, 0], "with his pinchbug but he did not": [65535, 0], "his pinchbug but he did not think": [65535, 0], "pinchbug but he did not think it": [65535, 0], "but he did not think it was": [65535, 0], "he did not think it was upright": [65535, 0], "did not think it was upright in": [65535, 0], "not think it was upright in him": [65535, 0], "think it was upright in him to": [65535, 0], "it was upright in him to carry": [65535, 0], "was upright in him to carry it": [65535, 0], "upright in him to carry it off": [65535, 0], "about half past ten the cracked bell of": [65535, 0], "half past ten the cracked bell of the": [65535, 0], "past ten the cracked bell of the small": [65535, 0], "ten the cracked bell of the small church": [65535, 0], "the cracked bell of the small church began": [65535, 0], "cracked bell of the small church began to": [65535, 0], "bell of the small church began to ring": [65535, 0], "of the small church began to ring and": [65535, 0], "the small church began to ring and presently": [65535, 0], "small church began to ring and presently the": [65535, 0], "church began to ring and presently the people": [65535, 0], "began to ring and presently the people began": [65535, 0], "to ring and presently the people began to": [65535, 0], "ring and presently the people began to gather": [65535, 0], "and presently the people began to gather for": [65535, 0], "presently the people began to gather for the": [65535, 0], "the people began to gather for the morning": [65535, 0], "people began to gather for the morning sermon": [65535, 0], "began to gather for the morning sermon the": [65535, 0], "to gather for the morning sermon the sunday": [65535, 0], "gather for the morning sermon the sunday school": [65535, 0], "for the morning sermon the sunday school children": [65535, 0], "the morning sermon the sunday school children distributed": [65535, 0], "morning sermon the sunday school children distributed themselves": [65535, 0], "sermon the sunday school children distributed themselves about": [65535, 0], "the sunday school children distributed themselves about the": [65535, 0], "sunday school children distributed themselves about the house": [65535, 0], "school children distributed themselves about the house and": [65535, 0], "children distributed themselves about the house and occupied": [65535, 0], "distributed themselves about the house and occupied pews": [65535, 0], "themselves about the house and occupied pews with": [65535, 0], "about the house and occupied pews with their": [65535, 0], "the house and occupied pews with their parents": [65535, 0], "house and occupied pews with their parents so": [65535, 0], "and occupied pews with their parents so as": [65535, 0], "occupied pews with their parents so as to": [65535, 0], "pews with their parents so as to be": [65535, 0], "with their parents so as to be under": [65535, 0], "their parents so as to be under supervision": [65535, 0], "parents so as to be under supervision aunt": [65535, 0], "so as to be under supervision aunt polly": [65535, 0], "as to be under supervision aunt polly came": [65535, 0], "to be under supervision aunt polly came and": [65535, 0], "be under supervision aunt polly came and tom": [65535, 0], "under supervision aunt polly came and tom and": [65535, 0], "supervision aunt polly came and tom and sid": [65535, 0], "aunt polly came and tom and sid and": [65535, 0], "polly came and tom and sid and mary": [65535, 0], "came and tom and sid and mary sat": [65535, 0], "and tom and sid and mary sat with": [65535, 0], "tom and sid and mary sat with her": [65535, 0], "and sid and mary sat with her tom": [65535, 0], "sid and mary sat with her tom being": [65535, 0], "and mary sat with her tom being placed": [65535, 0], "mary sat with her tom being placed next": [65535, 0], "sat with her tom being placed next the": [65535, 0], "with her tom being placed next the aisle": [65535, 0], "her tom being placed next the aisle in": [65535, 0], "tom being placed next the aisle in order": [65535, 0], "being placed next the aisle in order that": [65535, 0], "placed next the aisle in order that he": [65535, 0], "next the aisle in order that he might": [65535, 0], "the aisle in order that he might be": [65535, 0], "aisle in order that he might be as": [65535, 0], "in order that he might be as far": [65535, 0], "order that he might be as far away": [65535, 0], "that he might be as far away from": [65535, 0], "he might be as far away from the": [65535, 0], "might be as far away from the open": [65535, 0], "be as far away from the open window": [65535, 0], "as far away from the open window and": [65535, 0], "far away from the open window and the": [65535, 0], "away from the open window and the seductive": [65535, 0], "from the open window and the seductive outside": [65535, 0], "the open window and the seductive outside summer": [65535, 0], "open window and the seductive outside summer scenes": [65535, 0], "window and the seductive outside summer scenes as": [65535, 0], "and the seductive outside summer scenes as possible": [65535, 0], "the seductive outside summer scenes as possible the": [65535, 0], "seductive outside summer scenes as possible the crowd": [65535, 0], "outside summer scenes as possible the crowd filed": [65535, 0], "summer scenes as possible the crowd filed up": [65535, 0], "scenes as possible the crowd filed up the": [65535, 0], "as possible the crowd filed up the aisles": [65535, 0], "possible the crowd filed up the aisles the": [65535, 0], "the crowd filed up the aisles the aged": [65535, 0], "crowd filed up the aisles the aged and": [65535, 0], "filed up the aisles the aged and needy": [65535, 0], "up the aisles the aged and needy postmaster": [65535, 0], "the aisles the aged and needy postmaster who": [65535, 0], "aisles the aged and needy postmaster who had": [65535, 0], "the aged and needy postmaster who had seen": [65535, 0], "aged and needy postmaster who had seen better": [65535, 0], "and needy postmaster who had seen better days": [65535, 0], "needy postmaster who had seen better days the": [65535, 0], "postmaster who had seen better days the mayor": [65535, 0], "who had seen better days the mayor and": [65535, 0], "had seen better days the mayor and his": [65535, 0], "seen better days the mayor and his wife": [65535, 0], "better days the mayor and his wife for": [65535, 0], "days the mayor and his wife for they": [65535, 0], "the mayor and his wife for they had": [65535, 0], "mayor and his wife for they had a": [65535, 0], "and his wife for they had a mayor": [65535, 0], "his wife for they had a mayor there": [65535, 0], "wife for they had a mayor there among": [65535, 0], "for they had a mayor there among other": [65535, 0], "they had a mayor there among other unnecessaries": [65535, 0], "had a mayor there among other unnecessaries the": [65535, 0], "a mayor there among other unnecessaries the justice": [65535, 0], "mayor there among other unnecessaries the justice of": [65535, 0], "there among other unnecessaries the justice of the": [65535, 0], "among other unnecessaries the justice of the peace": [65535, 0], "other unnecessaries the justice of the peace the": [65535, 0], "unnecessaries the justice of the peace the widow": [65535, 0], "the justice of the peace the widow douglass": [65535, 0], "justice of the peace the widow douglass fair": [65535, 0], "of the peace the widow douglass fair smart": [65535, 0], "the peace the widow douglass fair smart and": [65535, 0], "peace the widow douglass fair smart and forty": [65535, 0], "the widow douglass fair smart and forty a": [65535, 0], "widow douglass fair smart and forty a generous": [65535, 0], "douglass fair smart and forty a generous good": [65535, 0], "fair smart and forty a generous good hearted": [65535, 0], "smart and forty a generous good hearted soul": [65535, 0], "and forty a generous good hearted soul and": [65535, 0], "forty a generous good hearted soul and well": [65535, 0], "a generous good hearted soul and well to": [65535, 0], "generous good hearted soul and well to do": [65535, 0], "good hearted soul and well to do her": [65535, 0], "hearted soul and well to do her hill": [65535, 0], "soul and well to do her hill mansion": [65535, 0], "and well to do her hill mansion the": [65535, 0], "well to do her hill mansion the only": [65535, 0], "to do her hill mansion the only palace": [65535, 0], "do her hill mansion the only palace in": [65535, 0], "her hill mansion the only palace in the": [65535, 0], "hill mansion the only palace in the town": [65535, 0], "mansion the only palace in the town and": [65535, 0], "the only palace in the town and the": [65535, 0], "only palace in the town and the most": [65535, 0], "palace in the town and the most hospitable": [65535, 0], "in the town and the most hospitable and": [65535, 0], "the town and the most hospitable and much": [65535, 0], "town and the most hospitable and much the": [65535, 0], "and the most hospitable and much the most": [65535, 0], "the most hospitable and much the most lavish": [65535, 0], "most hospitable and much the most lavish in": [65535, 0], "hospitable and much the most lavish in the": [65535, 0], "and much the most lavish in the matter": [65535, 0], "much the most lavish in the matter of": [65535, 0], "the most lavish in the matter of festivities": [65535, 0], "most lavish in the matter of festivities that": [65535, 0], "lavish in the matter of festivities that st": [65535, 0], "in the matter of festivities that st petersburg": [65535, 0], "the matter of festivities that st petersburg could": [65535, 0], "matter of festivities that st petersburg could boast": [65535, 0], "of festivities that st petersburg could boast the": [65535, 0], "festivities that st petersburg could boast the bent": [65535, 0], "that st petersburg could boast the bent and": [65535, 0], "st petersburg could boast the bent and venerable": [65535, 0], "petersburg could boast the bent and venerable major": [65535, 0], "could boast the bent and venerable major and": [65535, 0], "boast the bent and venerable major and mrs": [65535, 0], "the bent and venerable major and mrs ward": [65535, 0], "bent and venerable major and mrs ward lawyer": [65535, 0], "and venerable major and mrs ward lawyer riverson": [65535, 0], "venerable major and mrs ward lawyer riverson the": [65535, 0], "major and mrs ward lawyer riverson the new": [65535, 0], "and mrs ward lawyer riverson the new notable": [65535, 0], "mrs ward lawyer riverson the new notable from": [65535, 0], "ward lawyer riverson the new notable from a": [65535, 0], "lawyer riverson the new notable from a distance": [65535, 0], "riverson the new notable from a distance next": [65535, 0], "the new notable from a distance next the": [65535, 0], "new notable from a distance next the belle": [65535, 0], "notable from a distance next the belle of": [65535, 0], "from a distance next the belle of the": [65535, 0], "a distance next the belle of the village": [65535, 0], "distance next the belle of the village followed": [65535, 0], "next the belle of the village followed by": [65535, 0], "the belle of the village followed by a": [65535, 0], "belle of the village followed by a troop": [65535, 0], "of the village followed by a troop of": [65535, 0], "the village followed by a troop of lawn": [65535, 0], "village followed by a troop of lawn clad": [65535, 0], "followed by a troop of lawn clad and": [65535, 0], "by a troop of lawn clad and ribbon": [65535, 0], "a troop of lawn clad and ribbon decked": [65535, 0], "troop of lawn clad and ribbon decked young": [65535, 0], "of lawn clad and ribbon decked young heart": [65535, 0], "lawn clad and ribbon decked young heart breakers": [65535, 0], "clad and ribbon decked young heart breakers then": [65535, 0], "and ribbon decked young heart breakers then all": [65535, 0], "ribbon decked young heart breakers then all the": [65535, 0], "decked young heart breakers then all the young": [65535, 0], "young heart breakers then all the young clerks": [65535, 0], "heart breakers then all the young clerks in": [65535, 0], "breakers then all the young clerks in town": [65535, 0], "then all the young clerks in town in": [65535, 0], "all the young clerks in town in a": [65535, 0], "the young clerks in town in a body": [65535, 0], "young clerks in town in a body for": [65535, 0], "clerks in town in a body for they": [65535, 0], "in town in a body for they had": [65535, 0], "town in a body for they had stood": [65535, 0], "in a body for they had stood in": [65535, 0], "a body for they had stood in the": [65535, 0], "body for they had stood in the vestibule": [65535, 0], "for they had stood in the vestibule sucking": [65535, 0], "they had stood in the vestibule sucking their": [65535, 0], "had stood in the vestibule sucking their cane": [65535, 0], "stood in the vestibule sucking their cane heads": [65535, 0], "in the vestibule sucking their cane heads a": [65535, 0], "the vestibule sucking their cane heads a circling": [65535, 0], "vestibule sucking their cane heads a circling wall": [65535, 0], "sucking their cane heads a circling wall of": [65535, 0], "their cane heads a circling wall of oiled": [65535, 0], "cane heads a circling wall of oiled and": [65535, 0], "heads a circling wall of oiled and simpering": [65535, 0], "a circling wall of oiled and simpering admirers": [65535, 0], "circling wall of oiled and simpering admirers till": [65535, 0], "wall of oiled and simpering admirers till the": [65535, 0], "of oiled and simpering admirers till the last": [65535, 0], "oiled and simpering admirers till the last girl": [65535, 0], "and simpering admirers till the last girl had": [65535, 0], "simpering admirers till the last girl had run": [65535, 0], "admirers till the last girl had run their": [65535, 0], "till the last girl had run their gantlet": [65535, 0], "the last girl had run their gantlet and": [65535, 0], "last girl had run their gantlet and last": [65535, 0], "girl had run their gantlet and last of": [65535, 0], "had run their gantlet and last of all": [65535, 0], "run their gantlet and last of all came": [65535, 0], "their gantlet and last of all came the": [65535, 0], "gantlet and last of all came the model": [65535, 0], "and last of all came the model boy": [65535, 0], "last of all came the model boy willie": [65535, 0], "of all came the model boy willie mufferson": [65535, 0], "all came the model boy willie mufferson taking": [65535, 0], "came the model boy willie mufferson taking as": [65535, 0], "the model boy willie mufferson taking as heedful": [65535, 0], "model boy willie mufferson taking as heedful care": [65535, 0], "boy willie mufferson taking as heedful care of": [65535, 0], "willie mufferson taking as heedful care of his": [65535, 0], "mufferson taking as heedful care of his mother": [65535, 0], "taking as heedful care of his mother as": [65535, 0], "as heedful care of his mother as if": [65535, 0], "heedful care of his mother as if she": [65535, 0], "care of his mother as if she were": [65535, 0], "of his mother as if she were cut": [65535, 0], "his mother as if she were cut glass": [65535, 0], "mother as if she were cut glass he": [65535, 0], "as if she were cut glass he always": [65535, 0], "if she were cut glass he always brought": [65535, 0], "she were cut glass he always brought his": [65535, 0], "were cut glass he always brought his mother": [65535, 0], "cut glass he always brought his mother to": [65535, 0], "glass he always brought his mother to church": [65535, 0], "he always brought his mother to church and": [65535, 0], "always brought his mother to church and was": [65535, 0], "brought his mother to church and was the": [65535, 0], "his mother to church and was the pride": [65535, 0], "mother to church and was the pride of": [65535, 0], "to church and was the pride of all": [65535, 0], "church and was the pride of all the": [65535, 0], "and was the pride of all the matrons": [65535, 0], "was the pride of all the matrons the": [65535, 0], "the pride of all the matrons the boys": [65535, 0], "pride of all the matrons the boys all": [65535, 0], "of all the matrons the boys all hated": [65535, 0], "all the matrons the boys all hated him": [65535, 0], "the matrons the boys all hated him he": [65535, 0], "matrons the boys all hated him he was": [65535, 0], "the boys all hated him he was so": [65535, 0], "boys all hated him he was so good": [65535, 0], "all hated him he was so good and": [65535, 0], "hated him he was so good and besides": [65535, 0], "him he was so good and besides he": [65535, 0], "he was so good and besides he had": [65535, 0], "was so good and besides he had been": [65535, 0], "so good and besides he had been thrown": [65535, 0], "good and besides he had been thrown up": [65535, 0], "and besides he had been thrown up to": [65535, 0], "besides he had been thrown up to them": [65535, 0], "he had been thrown up to them so": [65535, 0], "had been thrown up to them so much": [65535, 0], "been thrown up to them so much his": [65535, 0], "thrown up to them so much his white": [65535, 0], "up to them so much his white handkerchief": [65535, 0], "to them so much his white handkerchief was": [65535, 0], "them so much his white handkerchief was hanging": [65535, 0], "so much his white handkerchief was hanging out": [65535, 0], "much his white handkerchief was hanging out of": [65535, 0], "his white handkerchief was hanging out of his": [65535, 0], "white handkerchief was hanging out of his pocket": [65535, 0], "handkerchief was hanging out of his pocket behind": [65535, 0], "was hanging out of his pocket behind as": [65535, 0], "hanging out of his pocket behind as usual": [65535, 0], "out of his pocket behind as usual on": [65535, 0], "of his pocket behind as usual on sundays": [65535, 0], "his pocket behind as usual on sundays accidentally": [65535, 0], "pocket behind as usual on sundays accidentally tom": [65535, 0], "behind as usual on sundays accidentally tom had": [65535, 0], "as usual on sundays accidentally tom had no": [65535, 0], "usual on sundays accidentally tom had no handkerchief": [65535, 0], "on sundays accidentally tom had no handkerchief and": [65535, 0], "sundays accidentally tom had no handkerchief and he": [65535, 0], "accidentally tom had no handkerchief and he looked": [65535, 0], "tom had no handkerchief and he looked upon": [65535, 0], "had no handkerchief and he looked upon boys": [65535, 0], "no handkerchief and he looked upon boys who": [65535, 0], "handkerchief and he looked upon boys who had": [65535, 0], "and he looked upon boys who had as": [65535, 0], "he looked upon boys who had as snobs": [65535, 0], "looked upon boys who had as snobs the": [65535, 0], "upon boys who had as snobs the congregation": [65535, 0], "boys who had as snobs the congregation being": [65535, 0], "who had as snobs the congregation being fully": [65535, 0], "had as snobs the congregation being fully assembled": [65535, 0], "as snobs the congregation being fully assembled now": [65535, 0], "snobs the congregation being fully assembled now the": [65535, 0], "the congregation being fully assembled now the bell": [65535, 0], "congregation being fully assembled now the bell rang": [65535, 0], "being fully assembled now the bell rang once": [65535, 0], "fully assembled now the bell rang once more": [65535, 0], "assembled now the bell rang once more to": [65535, 0], "now the bell rang once more to warn": [65535, 0], "the bell rang once more to warn laggards": [65535, 0], "bell rang once more to warn laggards and": [65535, 0], "rang once more to warn laggards and stragglers": [65535, 0], "once more to warn laggards and stragglers and": [65535, 0], "more to warn laggards and stragglers and then": [65535, 0], "to warn laggards and stragglers and then a": [65535, 0], "warn laggards and stragglers and then a solemn": [65535, 0], "laggards and stragglers and then a solemn hush": [65535, 0], "and stragglers and then a solemn hush fell": [65535, 0], "stragglers and then a solemn hush fell upon": [65535, 0], "and then a solemn hush fell upon the": [65535, 0], "then a solemn hush fell upon the church": [65535, 0], "a solemn hush fell upon the church which": [65535, 0], "solemn hush fell upon the church which was": [65535, 0], "hush fell upon the church which was only": [65535, 0], "fell upon the church which was only broken": [65535, 0], "upon the church which was only broken by": [65535, 0], "the church which was only broken by the": [65535, 0], "church which was only broken by the tittering": [65535, 0], "which was only broken by the tittering and": [65535, 0], "was only broken by the tittering and whispering": [65535, 0], "only broken by the tittering and whispering of": [65535, 0], "broken by the tittering and whispering of the": [65535, 0], "by the tittering and whispering of the choir": [65535, 0], "the tittering and whispering of the choir in": [65535, 0], "tittering and whispering of the choir in the": [65535, 0], "and whispering of the choir in the gallery": [65535, 0], "whispering of the choir in the gallery the": [65535, 0], "of the choir in the gallery the choir": [65535, 0], "the choir in the gallery the choir always": [65535, 0], "choir in the gallery the choir always tittered": [65535, 0], "in the gallery the choir always tittered and": [65535, 0], "the gallery the choir always tittered and whispered": [65535, 0], "gallery the choir always tittered and whispered all": [65535, 0], "the choir always tittered and whispered all through": [65535, 0], "choir always tittered and whispered all through service": [65535, 0], "always tittered and whispered all through service there": [65535, 0], "tittered and whispered all through service there was": [65535, 0], "and whispered all through service there was once": [65535, 0], "whispered all through service there was once a": [65535, 0], "all through service there was once a church": [65535, 0], "through service there was once a church choir": [65535, 0], "service there was once a church choir that": [65535, 0], "there was once a church choir that was": [65535, 0], "was once a church choir that was not": [65535, 0], "once a church choir that was not ill": [65535, 0], "a church choir that was not ill bred": [65535, 0], "church choir that was not ill bred but": [65535, 0], "choir that was not ill bred but i": [65535, 0], "that was not ill bred but i have": [65535, 0], "was not ill bred but i have forgotten": [65535, 0], "not ill bred but i have forgotten where": [65535, 0], "ill bred but i have forgotten where it": [65535, 0], "bred but i have forgotten where it was": [65535, 0], "but i have forgotten where it was now": [65535, 0], "i have forgotten where it was now it": [65535, 0], "have forgotten where it was now it was": [65535, 0], "forgotten where it was now it was a": [65535, 0], "where it was now it was a great": [65535, 0], "it was now it was a great many": [65535, 0], "was now it was a great many years": [65535, 0], "now it was a great many years ago": [65535, 0], "it was a great many years ago and": [65535, 0], "was a great many years ago and i": [65535, 0], "a great many years ago and i can": [65535, 0], "great many years ago and i can scarcely": [65535, 0], "many years ago and i can scarcely remember": [65535, 0], "years ago and i can scarcely remember anything": [65535, 0], "ago and i can scarcely remember anything about": [65535, 0], "and i can scarcely remember anything about it": [65535, 0], "i can scarcely remember anything about it but": [65535, 0], "can scarcely remember anything about it but i": [65535, 0], "scarcely remember anything about it but i think": [65535, 0], "remember anything about it but i think it": [65535, 0], "anything about it but i think it was": [65535, 0], "about it but i think it was in": [65535, 0], "it but i think it was in some": [65535, 0], "but i think it was in some foreign": [65535, 0], "i think it was in some foreign country": [65535, 0], "think it was in some foreign country the": [65535, 0], "it was in some foreign country the minister": [65535, 0], "was in some foreign country the minister gave": [65535, 0], "in some foreign country the minister gave out": [65535, 0], "some foreign country the minister gave out the": [65535, 0], "foreign country the minister gave out the hymn": [65535, 0], "country the minister gave out the hymn and": [65535, 0], "the minister gave out the hymn and read": [65535, 0], "minister gave out the hymn and read it": [65535, 0], "gave out the hymn and read it through": [65535, 0], "out the hymn and read it through with": [65535, 0], "the hymn and read it through with a": [65535, 0], "hymn and read it through with a relish": [65535, 0], "and read it through with a relish in": [65535, 0], "read it through with a relish in a": [65535, 0], "it through with a relish in a peculiar": [65535, 0], "through with a relish in a peculiar style": [65535, 0], "with a relish in a peculiar style which": [65535, 0], "a relish in a peculiar style which was": [65535, 0], "relish in a peculiar style which was much": [65535, 0], "in a peculiar style which was much admired": [65535, 0], "a peculiar style which was much admired in": [65535, 0], "peculiar style which was much admired in that": [65535, 0], "style which was much admired in that part": [65535, 0], "which was much admired in that part of": [65535, 0], "was much admired in that part of the": [65535, 0], "much admired in that part of the country": [65535, 0], "admired in that part of the country his": [65535, 0], "in that part of the country his voice": [65535, 0], "that part of the country his voice began": [65535, 0], "part of the country his voice began on": [65535, 0], "of the country his voice began on a": [65535, 0], "the country his voice began on a medium": [65535, 0], "country his voice began on a medium key": [65535, 0], "his voice began on a medium key and": [65535, 0], "voice began on a medium key and climbed": [65535, 0], "began on a medium key and climbed steadily": [65535, 0], "on a medium key and climbed steadily up": [65535, 0], "a medium key and climbed steadily up till": [65535, 0], "medium key and climbed steadily up till it": [65535, 0], "key and climbed steadily up till it reached": [65535, 0], "and climbed steadily up till it reached a": [65535, 0], "climbed steadily up till it reached a certain": [65535, 0], "steadily up till it reached a certain point": [65535, 0], "up till it reached a certain point where": [65535, 0], "till it reached a certain point where it": [65535, 0], "it reached a certain point where it bore": [65535, 0], "reached a certain point where it bore with": [65535, 0], "a certain point where it bore with strong": [65535, 0], "certain point where it bore with strong emphasis": [65535, 0], "point where it bore with strong emphasis upon": [65535, 0], "where it bore with strong emphasis upon the": [65535, 0], "it bore with strong emphasis upon the topmost": [65535, 0], "bore with strong emphasis upon the topmost word": [65535, 0], "with strong emphasis upon the topmost word and": [65535, 0], "strong emphasis upon the topmost word and then": [65535, 0], "emphasis upon the topmost word and then plunged": [65535, 0], "upon the topmost word and then plunged down": [65535, 0], "the topmost word and then plunged down as": [65535, 0], "topmost word and then plunged down as if": [65535, 0], "word and then plunged down as if from": [65535, 0], "and then plunged down as if from a": [65535, 0], "then plunged down as if from a spring": [65535, 0], "plunged down as if from a spring board": [65535, 0], "down as if from a spring board shall": [65535, 0], "as if from a spring board shall i": [65535, 0], "if from a spring board shall i be": [65535, 0], "from a spring board shall i be car": [65535, 0], "a spring board shall i be car ri": [65535, 0], "spring board shall i be car ri ed": [65535, 0], "board shall i be car ri ed toe": [65535, 0], "shall i be car ri ed toe the": [65535, 0], "i be car ri ed toe the skies": [65535, 0], "be car ri ed toe the skies on": [65535, 0], "car ri ed toe the skies on flow'ry": [65535, 0], "ri ed toe the skies on flow'ry beds": [65535, 0], "ed toe the skies on flow'ry beds of": [65535, 0], "toe the skies on flow'ry beds of ease": [65535, 0], "the skies on flow'ry beds of ease whilst": [65535, 0], "skies on flow'ry beds of ease whilst others": [65535, 0], "on flow'ry beds of ease whilst others fight": [65535, 0], "flow'ry beds of ease whilst others fight to": [65535, 0], "beds of ease whilst others fight to win": [65535, 0], "of ease whilst others fight to win the": [65535, 0], "ease whilst others fight to win the prize": [65535, 0], "whilst others fight to win the prize and": [65535, 0], "others fight to win the prize and sail": [65535, 0], "fight to win the prize and sail thro'": [65535, 0], "to win the prize and sail thro' bloody": [65535, 0], "win the prize and sail thro' bloody seas": [65535, 0], "the prize and sail thro' bloody seas he": [65535, 0], "prize and sail thro' bloody seas he was": [65535, 0], "and sail thro' bloody seas he was regarded": [65535, 0], "sail thro' bloody seas he was regarded as": [65535, 0], "thro' bloody seas he was regarded as a": [65535, 0], "bloody seas he was regarded as a wonderful": [65535, 0], "seas he was regarded as a wonderful reader": [65535, 0], "he was regarded as a wonderful reader at": [65535, 0], "was regarded as a wonderful reader at church": [65535, 0], "regarded as a wonderful reader at church sociables": [65535, 0], "as a wonderful reader at church sociables he": [65535, 0], "a wonderful reader at church sociables he was": [65535, 0], "wonderful reader at church sociables he was always": [65535, 0], "reader at church sociables he was always called": [65535, 0], "at church sociables he was always called upon": [65535, 0], "church sociables he was always called upon to": [65535, 0], "sociables he was always called upon to read": [65535, 0], "he was always called upon to read poetry": [65535, 0], "was always called upon to read poetry and": [65535, 0], "always called upon to read poetry and when": [65535, 0], "called upon to read poetry and when he": [65535, 0], "upon to read poetry and when he was": [65535, 0], "to read poetry and when he was through": [65535, 0], "read poetry and when he was through the": [65535, 0], "poetry and when he was through the ladies": [65535, 0], "and when he was through the ladies would": [65535, 0], "when he was through the ladies would lift": [65535, 0], "he was through the ladies would lift up": [65535, 0], "was through the ladies would lift up their": [65535, 0], "through the ladies would lift up their hands": [65535, 0], "the ladies would lift up their hands and": [65535, 0], "ladies would lift up their hands and let": [65535, 0], "would lift up their hands and let them": [65535, 0], "lift up their hands and let them fall": [65535, 0], "up their hands and let them fall helplessly": [65535, 0], "their hands and let them fall helplessly in": [65535, 0], "hands and let them fall helplessly in their": [65535, 0], "and let them fall helplessly in their laps": [65535, 0], "let them fall helplessly in their laps and": [65535, 0], "them fall helplessly in their laps and wall": [65535, 0], "fall helplessly in their laps and wall their": [65535, 0], "helplessly in their laps and wall their eyes": [65535, 0], "in their laps and wall their eyes and": [65535, 0], "their laps and wall their eyes and shake": [65535, 0], "laps and wall their eyes and shake their": [65535, 0], "and wall their eyes and shake their heads": [65535, 0], "wall their eyes and shake their heads as": [65535, 0], "their eyes and shake their heads as much": [65535, 0], "eyes and shake their heads as much as": [65535, 0], "and shake their heads as much as to": [65535, 0], "shake their heads as much as to say": [65535, 0], "their heads as much as to say words": [65535, 0], "heads as much as to say words cannot": [65535, 0], "as much as to say words cannot express": [65535, 0], "much as to say words cannot express it": [65535, 0], "as to say words cannot express it it": [65535, 0], "to say words cannot express it it is": [65535, 0], "say words cannot express it it is too": [65535, 0], "words cannot express it it is too beautiful": [65535, 0], "cannot express it it is too beautiful too": [65535, 0], "express it it is too beautiful too beautiful": [65535, 0], "it it is too beautiful too beautiful for": [65535, 0], "it is too beautiful too beautiful for this": [65535, 0], "is too beautiful too beautiful for this mortal": [65535, 0], "too beautiful too beautiful for this mortal earth": [65535, 0], "beautiful too beautiful for this mortal earth after": [65535, 0], "too beautiful for this mortal earth after the": [65535, 0], "beautiful for this mortal earth after the hymn": [65535, 0], "for this mortal earth after the hymn had": [65535, 0], "this mortal earth after the hymn had been": [65535, 0], "mortal earth after the hymn had been sung": [65535, 0], "earth after the hymn had been sung the": [65535, 0], "after the hymn had been sung the rev": [65535, 0], "the hymn had been sung the rev mr": [65535, 0], "hymn had been sung the rev mr sprague": [65535, 0], "had been sung the rev mr sprague turned": [65535, 0], "been sung the rev mr sprague turned himself": [65535, 0], "sung the rev mr sprague turned himself into": [65535, 0], "the rev mr sprague turned himself into a": [65535, 0], "rev mr sprague turned himself into a bulletin": [65535, 0], "mr sprague turned himself into a bulletin board": [65535, 0], "sprague turned himself into a bulletin board and": [65535, 0], "turned himself into a bulletin board and read": [65535, 0], "himself into a bulletin board and read off": [65535, 0], "into a bulletin board and read off notices": [65535, 0], "a bulletin board and read off notices of": [65535, 0], "bulletin board and read off notices of meetings": [65535, 0], "board and read off notices of meetings and": [65535, 0], "and read off notices of meetings and societies": [65535, 0], "read off notices of meetings and societies and": [65535, 0], "off notices of meetings and societies and things": [65535, 0], "notices of meetings and societies and things till": [65535, 0], "of meetings and societies and things till it": [65535, 0], "meetings and societies and things till it seemed": [65535, 0], "and societies and things till it seemed that": [65535, 0], "societies and things till it seemed that the": [65535, 0], "and things till it seemed that the list": [65535, 0], "things till it seemed that the list would": [65535, 0], "till it seemed that the list would stretch": [65535, 0], "it seemed that the list would stretch out": [65535, 0], "seemed that the list would stretch out to": [65535, 0], "that the list would stretch out to the": [65535, 0], "the list would stretch out to the crack": [65535, 0], "list would stretch out to the crack of": [65535, 0], "would stretch out to the crack of doom": [65535, 0], "stretch out to the crack of doom a": [65535, 0], "out to the crack of doom a queer": [65535, 0], "to the crack of doom a queer custom": [65535, 0], "the crack of doom a queer custom which": [65535, 0], "crack of doom a queer custom which is": [65535, 0], "of doom a queer custom which is still": [65535, 0], "doom a queer custom which is still kept": [65535, 0], "a queer custom which is still kept up": [65535, 0], "queer custom which is still kept up in": [65535, 0], "custom which is still kept up in america": [65535, 0], "which is still kept up in america even": [65535, 0], "is still kept up in america even in": [65535, 0], "still kept up in america even in cities": [65535, 0], "kept up in america even in cities away": [65535, 0], "up in america even in cities away here": [65535, 0], "in america even in cities away here in": [65535, 0], "america even in cities away here in this": [65535, 0], "even in cities away here in this age": [65535, 0], "in cities away here in this age of": [65535, 0], "cities away here in this age of abundant": [65535, 0], "away here in this age of abundant newspapers": [65535, 0], "here in this age of abundant newspapers often": [65535, 0], "in this age of abundant newspapers often the": [65535, 0], "this age of abundant newspapers often the less": [65535, 0], "age of abundant newspapers often the less there": [65535, 0], "of abundant newspapers often the less there is": [65535, 0], "abundant newspapers often the less there is to": [65535, 0], "newspapers often the less there is to justify": [65535, 0], "often the less there is to justify a": [65535, 0], "the less there is to justify a traditional": [65535, 0], "less there is to justify a traditional custom": [65535, 0], "there is to justify a traditional custom the": [65535, 0], "is to justify a traditional custom the harder": [65535, 0], "to justify a traditional custom the harder it": [65535, 0], "justify a traditional custom the harder it is": [65535, 0], "a traditional custom the harder it is to": [65535, 0], "traditional custom the harder it is to get": [65535, 0], "custom the harder it is to get rid": [65535, 0], "the harder it is to get rid of": [65535, 0], "harder it is to get rid of it": [65535, 0], "it is to get rid of it and": [65535, 0], "is to get rid of it and now": [65535, 0], "to get rid of it and now the": [65535, 0], "get rid of it and now the minister": [65535, 0], "rid of it and now the minister prayed": [65535, 0], "of it and now the minister prayed a": [65535, 0], "it and now the minister prayed a good": [65535, 0], "and now the minister prayed a good generous": [65535, 0], "now the minister prayed a good generous prayer": [65535, 0], "the minister prayed a good generous prayer it": [65535, 0], "minister prayed a good generous prayer it was": [65535, 0], "prayed a good generous prayer it was and": [65535, 0], "a good generous prayer it was and went": [65535, 0], "good generous prayer it was and went into": [65535, 0], "generous prayer it was and went into details": [65535, 0], "prayer it was and went into details it": [65535, 0], "it was and went into details it pleaded": [65535, 0], "was and went into details it pleaded for": [65535, 0], "and went into details it pleaded for the": [65535, 0], "went into details it pleaded for the church": [65535, 0], "into details it pleaded for the church and": [65535, 0], "details it pleaded for the church and the": [65535, 0], "it pleaded for the church and the little": [65535, 0], "pleaded for the church and the little children": [65535, 0], "for the church and the little children of": [65535, 0], "the church and the little children of the": [65535, 0], "church and the little children of the church": [65535, 0], "and the little children of the church for": [65535, 0], "the little children of the church for the": [65535, 0], "little children of the church for the other": [65535, 0], "children of the church for the other churches": [65535, 0], "of the church for the other churches of": [65535, 0], "the church for the other churches of the": [65535, 0], "church for the other churches of the village": [65535, 0], "for the other churches of the village for": [65535, 0], "the other churches of the village for the": [65535, 0], "other churches of the village for the village": [65535, 0], "churches of the village for the village itself": [65535, 0], "of the village for the village itself for": [65535, 0], "the village for the village itself for the": [65535, 0], "village for the village itself for the county": [65535, 0], "for the village itself for the county for": [65535, 0], "the village itself for the county for the": [65535, 0], "village itself for the county for the state": [65535, 0], "itself for the county for the state for": [65535, 0], "for the county for the state for the": [65535, 0], "the county for the state for the state": [65535, 0], "county for the state for the state officers": [65535, 0], "for the state for the state officers for": [65535, 0], "the state for the state officers for the": [65535, 0], "state for the state officers for the united": [65535, 0], "for the state officers for the united states": [65535, 0], "the state officers for the united states for": [65535, 0], "state officers for the united states for the": [65535, 0], "officers for the united states for the churches": [65535, 0], "for the united states for the churches of": [65535, 0], "the united states for the churches of the": [65535, 0], "united states for the churches of the united": [65535, 0], "states for the churches of the united states": [65535, 0], "for the churches of the united states for": [65535, 0], "the churches of the united states for congress": [65535, 0], "churches of the united states for congress for": [65535, 0], "of the united states for congress for the": [65535, 0], "the united states for congress for the president": [65535, 0], "united states for congress for the president for": [65535, 0], "states for congress for the president for the": [65535, 0], "for congress for the president for the officers": [65535, 0], "congress for the president for the officers of": [65535, 0], "for the president for the officers of the": [65535, 0], "the president for the officers of the government": [65535, 0], "president for the officers of the government for": [65535, 0], "for the officers of the government for poor": [65535, 0], "the officers of the government for poor sailors": [65535, 0], "officers of the government for poor sailors tossed": [65535, 0], "of the government for poor sailors tossed by": [65535, 0], "the government for poor sailors tossed by stormy": [65535, 0], "government for poor sailors tossed by stormy seas": [65535, 0], "for poor sailors tossed by stormy seas for": [65535, 0], "poor sailors tossed by stormy seas for the": [65535, 0], "sailors tossed by stormy seas for the oppressed": [65535, 0], "tossed by stormy seas for the oppressed millions": [65535, 0], "by stormy seas for the oppressed millions groaning": [65535, 0], "stormy seas for the oppressed millions groaning under": [65535, 0], "seas for the oppressed millions groaning under the": [65535, 0], "for the oppressed millions groaning under the heel": [65535, 0], "the oppressed millions groaning under the heel of": [65535, 0], "oppressed millions groaning under the heel of european": [65535, 0], "millions groaning under the heel of european monarchies": [65535, 0], "groaning under the heel of european monarchies and": [65535, 0], "under the heel of european monarchies and oriental": [65535, 0], "the heel of european monarchies and oriental despotisms": [65535, 0], "heel of european monarchies and oriental despotisms for": [65535, 0], "of european monarchies and oriental despotisms for such": [65535, 0], "european monarchies and oriental despotisms for such as": [65535, 0], "monarchies and oriental despotisms for such as have": [65535, 0], "and oriental despotisms for such as have the": [65535, 0], "oriental despotisms for such as have the light": [65535, 0], "despotisms for such as have the light and": [65535, 0], "for such as have the light and the": [65535, 0], "such as have the light and the good": [65535, 0], "as have the light and the good tidings": [65535, 0], "have the light and the good tidings and": [65535, 0], "the light and the good tidings and yet": [65535, 0], "light and the good tidings and yet have": [65535, 0], "and the good tidings and yet have not": [65535, 0], "the good tidings and yet have not eyes": [65535, 0], "good tidings and yet have not eyes to": [65535, 0], "tidings and yet have not eyes to see": [65535, 0], "and yet have not eyes to see nor": [65535, 0], "yet have not eyes to see nor ears": [65535, 0], "have not eyes to see nor ears to": [65535, 0], "not eyes to see nor ears to hear": [65535, 0], "eyes to see nor ears to hear withal": [65535, 0], "to see nor ears to hear withal for": [65535, 0], "see nor ears to hear withal for the": [65535, 0], "nor ears to hear withal for the heathen": [65535, 0], "ears to hear withal for the heathen in": [65535, 0], "to hear withal for the heathen in the": [65535, 0], "hear withal for the heathen in the far": [65535, 0], "withal for the heathen in the far islands": [65535, 0], "for the heathen in the far islands of": [65535, 0], "the heathen in the far islands of the": [65535, 0], "heathen in the far islands of the sea": [65535, 0], "in the far islands of the sea and": [65535, 0], "the far islands of the sea and closed": [65535, 0], "far islands of the sea and closed with": [65535, 0], "islands of the sea and closed with a": [65535, 0], "of the sea and closed with a supplication": [65535, 0], "the sea and closed with a supplication that": [65535, 0], "sea and closed with a supplication that the": [65535, 0], "and closed with a supplication that the words": [65535, 0], "closed with a supplication that the words he": [65535, 0], "with a supplication that the words he was": [65535, 0], "a supplication that the words he was about": [65535, 0], "supplication that the words he was about to": [65535, 0], "that the words he was about to speak": [65535, 0], "the words he was about to speak might": [65535, 0], "words he was about to speak might find": [65535, 0], "he was about to speak might find grace": [65535, 0], "was about to speak might find grace and": [65535, 0], "about to speak might find grace and favor": [65535, 0], "to speak might find grace and favor and": [65535, 0], "speak might find grace and favor and be": [65535, 0], "might find grace and favor and be as": [65535, 0], "find grace and favor and be as seed": [65535, 0], "grace and favor and be as seed sown": [65535, 0], "and favor and be as seed sown in": [65535, 0], "favor and be as seed sown in fertile": [65535, 0], "and be as seed sown in fertile ground": [65535, 0], "be as seed sown in fertile ground yielding": [65535, 0], "as seed sown in fertile ground yielding in": [65535, 0], "seed sown in fertile ground yielding in time": [65535, 0], "sown in fertile ground yielding in time a": [65535, 0], "in fertile ground yielding in time a grateful": [65535, 0], "fertile ground yielding in time a grateful harvest": [65535, 0], "ground yielding in time a grateful harvest of": [65535, 0], "yielding in time a grateful harvest of good": [65535, 0], "in time a grateful harvest of good amen": [65535, 0], "time a grateful harvest of good amen there": [65535, 0], "a grateful harvest of good amen there was": [65535, 0], "grateful harvest of good amen there was a": [65535, 0], "harvest of good amen there was a rustling": [65535, 0], "of good amen there was a rustling of": [65535, 0], "good amen there was a rustling of dresses": [65535, 0], "amen there was a rustling of dresses and": [65535, 0], "there was a rustling of dresses and the": [65535, 0], "was a rustling of dresses and the standing": [65535, 0], "a rustling of dresses and the standing congregation": [65535, 0], "rustling of dresses and the standing congregation sat": [65535, 0], "of dresses and the standing congregation sat down": [65535, 0], "dresses and the standing congregation sat down the": [65535, 0], "and the standing congregation sat down the boy": [65535, 0], "the standing congregation sat down the boy whose": [65535, 0], "standing congregation sat down the boy whose history": [65535, 0], "congregation sat down the boy whose history this": [65535, 0], "sat down the boy whose history this book": [65535, 0], "down the boy whose history this book relates": [65535, 0], "the boy whose history this book relates did": [65535, 0], "boy whose history this book relates did not": [65535, 0], "whose history this book relates did not enjoy": [65535, 0], "history this book relates did not enjoy the": [65535, 0], "this book relates did not enjoy the prayer": [65535, 0], "book relates did not enjoy the prayer he": [65535, 0], "relates did not enjoy the prayer he only": [65535, 0], "did not enjoy the prayer he only endured": [65535, 0], "not enjoy the prayer he only endured it": [65535, 0], "enjoy the prayer he only endured it if": [65535, 0], "the prayer he only endured it if he": [65535, 0], "prayer he only endured it if he even": [65535, 0], "he only endured it if he even did": [65535, 0], "only endured it if he even did that": [65535, 0], "endured it if he even did that much": [65535, 0], "it if he even did that much he": [65535, 0], "if he even did that much he was": [65535, 0], "he even did that much he was restive": [65535, 0], "even did that much he was restive all": [65535, 0], "did that much he was restive all through": [65535, 0], "that much he was restive all through it": [65535, 0], "much he was restive all through it he": [65535, 0], "he was restive all through it he kept": [65535, 0], "was restive all through it he kept tally": [65535, 0], "restive all through it he kept tally of": [65535, 0], "all through it he kept tally of the": [65535, 0], "through it he kept tally of the details": [65535, 0], "it he kept tally of the details of": [65535, 0], "he kept tally of the details of the": [65535, 0], "kept tally of the details of the prayer": [65535, 0], "tally of the details of the prayer unconsciously": [65535, 0], "of the details of the prayer unconsciously for": [65535, 0], "the details of the prayer unconsciously for he": [65535, 0], "details of the prayer unconsciously for he was": [65535, 0], "of the prayer unconsciously for he was not": [65535, 0], "the prayer unconsciously for he was not listening": [65535, 0], "prayer unconsciously for he was not listening but": [65535, 0], "unconsciously for he was not listening but he": [65535, 0], "for he was not listening but he knew": [65535, 0], "he was not listening but he knew the": [65535, 0], "was not listening but he knew the ground": [65535, 0], "not listening but he knew the ground of": [65535, 0], "listening but he knew the ground of old": [65535, 0], "but he knew the ground of old and": [65535, 0], "he knew the ground of old and the": [65535, 0], "knew the ground of old and the clergyman's": [65535, 0], "the ground of old and the clergyman's regular": [65535, 0], "ground of old and the clergyman's regular route": [65535, 0], "of old and the clergyman's regular route over": [65535, 0], "old and the clergyman's regular route over it": [65535, 0], "and the clergyman's regular route over it and": [65535, 0], "the clergyman's regular route over it and when": [65535, 0], "clergyman's regular route over it and when a": [65535, 0], "regular route over it and when a little": [65535, 0], "route over it and when a little trifle": [65535, 0], "over it and when a little trifle of": [65535, 0], "it and when a little trifle of new": [65535, 0], "and when a little trifle of new matter": [65535, 0], "when a little trifle of new matter was": [65535, 0], "a little trifle of new matter was interlarded": [65535, 0], "little trifle of new matter was interlarded his": [65535, 0], "trifle of new matter was interlarded his ear": [65535, 0], "of new matter was interlarded his ear detected": [65535, 0], "new matter was interlarded his ear detected it": [65535, 0], "matter was interlarded his ear detected it and": [65535, 0], "was interlarded his ear detected it and his": [65535, 0], "interlarded his ear detected it and his whole": [65535, 0], "his ear detected it and his whole nature": [65535, 0], "ear detected it and his whole nature resented": [65535, 0], "detected it and his whole nature resented it": [65535, 0], "it and his whole nature resented it he": [65535, 0], "and his whole nature resented it he considered": [65535, 0], "his whole nature resented it he considered additions": [65535, 0], "whole nature resented it he considered additions unfair": [65535, 0], "nature resented it he considered additions unfair and": [65535, 0], "resented it he considered additions unfair and scoundrelly": [65535, 0], "it he considered additions unfair and scoundrelly in": [65535, 0], "he considered additions unfair and scoundrelly in the": [65535, 0], "considered additions unfair and scoundrelly in the midst": [65535, 0], "additions unfair and scoundrelly in the midst of": [65535, 0], "unfair and scoundrelly in the midst of the": [65535, 0], "and scoundrelly in the midst of the prayer": [65535, 0], "scoundrelly in the midst of the prayer a": [65535, 0], "in the midst of the prayer a fly": [65535, 0], "the midst of the prayer a fly had": [65535, 0], "midst of the prayer a fly had lit": [65535, 0], "of the prayer a fly had lit on": [65535, 0], "the prayer a fly had lit on the": [65535, 0], "prayer a fly had lit on the back": [65535, 0], "a fly had lit on the back of": [65535, 0], "fly had lit on the back of the": [65535, 0], "had lit on the back of the pew": [65535, 0], "lit on the back of the pew in": [65535, 0], "on the back of the pew in front": [65535, 0], "the back of the pew in front of": [65535, 0], "back of the pew in front of him": [65535, 0], "of the pew in front of him and": [65535, 0], "the pew in front of him and tortured": [65535, 0], "pew in front of him and tortured his": [65535, 0], "in front of him and tortured his spirit": [65535, 0], "front of him and tortured his spirit by": [65535, 0], "of him and tortured his spirit by calmly": [65535, 0], "him and tortured his spirit by calmly rubbing": [65535, 0], "and tortured his spirit by calmly rubbing its": [65535, 0], "tortured his spirit by calmly rubbing its hands": [65535, 0], "his spirit by calmly rubbing its hands together": [65535, 0], "spirit by calmly rubbing its hands together embracing": [65535, 0], "by calmly rubbing its hands together embracing its": [65535, 0], "calmly rubbing its hands together embracing its head": [65535, 0], "rubbing its hands together embracing its head with": [65535, 0], "its hands together embracing its head with its": [65535, 0], "hands together embracing its head with its arms": [65535, 0], "together embracing its head with its arms and": [65535, 0], "embracing its head with its arms and polishing": [65535, 0], "its head with its arms and polishing it": [65535, 0], "head with its arms and polishing it so": [65535, 0], "with its arms and polishing it so vigorously": [65535, 0], "its arms and polishing it so vigorously that": [65535, 0], "arms and polishing it so vigorously that it": [65535, 0], "and polishing it so vigorously that it seemed": [65535, 0], "polishing it so vigorously that it seemed to": [65535, 0], "it so vigorously that it seemed to almost": [65535, 0], "so vigorously that it seemed to almost part": [65535, 0], "vigorously that it seemed to almost part company": [65535, 0], "that it seemed to almost part company with": [65535, 0], "it seemed to almost part company with the": [65535, 0], "seemed to almost part company with the body": [65535, 0], "to almost part company with the body and": [65535, 0], "almost part company with the body and the": [65535, 0], "part company with the body and the slender": [65535, 0], "company with the body and the slender thread": [65535, 0], "with the body and the slender thread of": [65535, 0], "the body and the slender thread of a": [65535, 0], "body and the slender thread of a neck": [65535, 0], "and the slender thread of a neck was": [65535, 0], "the slender thread of a neck was exposed": [65535, 0], "slender thread of a neck was exposed to": [65535, 0], "thread of a neck was exposed to view": [65535, 0], "of a neck was exposed to view scraping": [65535, 0], "a neck was exposed to view scraping its": [65535, 0], "neck was exposed to view scraping its wings": [65535, 0], "was exposed to view scraping its wings with": [65535, 0], "exposed to view scraping its wings with its": [65535, 0], "to view scraping its wings with its hind": [65535, 0], "view scraping its wings with its hind legs": [65535, 0], "scraping its wings with its hind legs and": [65535, 0], "its wings with its hind legs and smoothing": [65535, 0], "wings with its hind legs and smoothing them": [65535, 0], "with its hind legs and smoothing them to": [65535, 0], "its hind legs and smoothing them to its": [65535, 0], "hind legs and smoothing them to its body": [65535, 0], "legs and smoothing them to its body as": [65535, 0], "and smoothing them to its body as if": [65535, 0], "smoothing them to its body as if they": [65535, 0], "them to its body as if they had": [65535, 0], "to its body as if they had been": [65535, 0], "its body as if they had been coat": [65535, 0], "body as if they had been coat tails": [65535, 0], "as if they had been coat tails going": [65535, 0], "if they had been coat tails going through": [65535, 0], "they had been coat tails going through its": [65535, 0], "had been coat tails going through its whole": [65535, 0], "been coat tails going through its whole toilet": [65535, 0], "coat tails going through its whole toilet as": [65535, 0], "tails going through its whole toilet as tranquilly": [65535, 0], "going through its whole toilet as tranquilly as": [65535, 0], "through its whole toilet as tranquilly as if": [65535, 0], "its whole toilet as tranquilly as if it": [65535, 0], "whole toilet as tranquilly as if it knew": [65535, 0], "toilet as tranquilly as if it knew it": [65535, 0], "as tranquilly as if it knew it was": [65535, 0], "tranquilly as if it knew it was perfectly": [65535, 0], "as if it knew it was perfectly safe": [65535, 0], "if it knew it was perfectly safe as": [65535, 0], "it knew it was perfectly safe as indeed": [65535, 0], "knew it was perfectly safe as indeed it": [65535, 0], "it was perfectly safe as indeed it was": [65535, 0], "was perfectly safe as indeed it was for": [65535, 0], "perfectly safe as indeed it was for as": [65535, 0], "safe as indeed it was for as sorely": [65535, 0], "as indeed it was for as sorely as": [65535, 0], "indeed it was for as sorely as tom's": [65535, 0], "it was for as sorely as tom's hands": [65535, 0], "was for as sorely as tom's hands itched": [65535, 0], "for as sorely as tom's hands itched to": [65535, 0], "as sorely as tom's hands itched to grab": [65535, 0], "sorely as tom's hands itched to grab for": [65535, 0], "as tom's hands itched to grab for it": [65535, 0], "tom's hands itched to grab for it they": [65535, 0], "hands itched to grab for it they did": [65535, 0], "itched to grab for it they did not": [65535, 0], "to grab for it they did not dare": [65535, 0], "grab for it they did not dare he": [65535, 0], "for it they did not dare he believed": [65535, 0], "it they did not dare he believed his": [65535, 0], "they did not dare he believed his soul": [65535, 0], "did not dare he believed his soul would": [65535, 0], "not dare he believed his soul would be": [65535, 0], "dare he believed his soul would be instantly": [65535, 0], "he believed his soul would be instantly destroyed": [65535, 0], "believed his soul would be instantly destroyed if": [65535, 0], "his soul would be instantly destroyed if he": [65535, 0], "soul would be instantly destroyed if he did": [65535, 0], "would be instantly destroyed if he did such": [65535, 0], "be instantly destroyed if he did such a": [65535, 0], "instantly destroyed if he did such a thing": [65535, 0], "destroyed if he did such a thing while": [65535, 0], "if he did such a thing while the": [65535, 0], "he did such a thing while the prayer": [65535, 0], "did such a thing while the prayer was": [65535, 0], "such a thing while the prayer was going": [65535, 0], "a thing while the prayer was going on": [65535, 0], "thing while the prayer was going on but": [65535, 0], "while the prayer was going on but with": [65535, 0], "the prayer was going on but with the": [65535, 0], "prayer was going on but with the closing": [65535, 0], "was going on but with the closing sentence": [65535, 0], "going on but with the closing sentence his": [65535, 0], "on but with the closing sentence his hand": [65535, 0], "but with the closing sentence his hand began": [65535, 0], "with the closing sentence his hand began to": [65535, 0], "the closing sentence his hand began to curve": [65535, 0], "closing sentence his hand began to curve and": [65535, 0], "sentence his hand began to curve and steal": [65535, 0], "his hand began to curve and steal forward": [65535, 0], "hand began to curve and steal forward and": [65535, 0], "began to curve and steal forward and the": [65535, 0], "to curve and steal forward and the instant": [65535, 0], "curve and steal forward and the instant the": [65535, 0], "and steal forward and the instant the amen": [65535, 0], "steal forward and the instant the amen was": [65535, 0], "forward and the instant the amen was out": [65535, 0], "and the instant the amen was out the": [65535, 0], "the instant the amen was out the fly": [65535, 0], "instant the amen was out the fly was": [65535, 0], "the amen was out the fly was a": [65535, 0], "amen was out the fly was a prisoner": [65535, 0], "was out the fly was a prisoner of": [65535, 0], "out the fly was a prisoner of war": [65535, 0], "the fly was a prisoner of war his": [65535, 0], "fly was a prisoner of war his aunt": [65535, 0], "was a prisoner of war his aunt detected": [65535, 0], "a prisoner of war his aunt detected the": [65535, 0], "prisoner of war his aunt detected the act": [65535, 0], "of war his aunt detected the act and": [65535, 0], "war his aunt detected the act and made": [65535, 0], "his aunt detected the act and made him": [65535, 0], "aunt detected the act and made him let": [65535, 0], "detected the act and made him let it": [65535, 0], "the act and made him let it go": [65535, 0], "act and made him let it go the": [65535, 0], "and made him let it go the minister": [65535, 0], "made him let it go the minister gave": [65535, 0], "him let it go the minister gave out": [65535, 0], "let it go the minister gave out his": [65535, 0], "it go the minister gave out his text": [65535, 0], "go the minister gave out his text and": [65535, 0], "the minister gave out his text and droned": [65535, 0], "minister gave out his text and droned along": [65535, 0], "gave out his text and droned along monotonously": [65535, 0], "out his text and droned along monotonously through": [65535, 0], "his text and droned along monotonously through an": [65535, 0], "text and droned along monotonously through an argument": [65535, 0], "and droned along monotonously through an argument that": [65535, 0], "droned along monotonously through an argument that was": [65535, 0], "along monotonously through an argument that was so": [65535, 0], "monotonously through an argument that was so prosy": [65535, 0], "through an argument that was so prosy that": [65535, 0], "an argument that was so prosy that many": [65535, 0], "argument that was so prosy that many a": [65535, 0], "that was so prosy that many a head": [65535, 0], "was so prosy that many a head by": [65535, 0], "so prosy that many a head by and": [65535, 0], "prosy that many a head by and by": [65535, 0], "that many a head by and by began": [65535, 0], "many a head by and by began to": [65535, 0], "a head by and by began to nod": [65535, 0], "head by and by began to nod and": [65535, 0], "by and by began to nod and yet": [65535, 0], "and by began to nod and yet it": [65535, 0], "by began to nod and yet it was": [65535, 0], "began to nod and yet it was an": [65535, 0], "to nod and yet it was an argument": [65535, 0], "nod and yet it was an argument that": [65535, 0], "and yet it was an argument that dealt": [65535, 0], "yet it was an argument that dealt in": [65535, 0], "it was an argument that dealt in limitless": [65535, 0], "was an argument that dealt in limitless fire": [65535, 0], "an argument that dealt in limitless fire and": [65535, 0], "argument that dealt in limitless fire and brimstone": [65535, 0], "that dealt in limitless fire and brimstone and": [65535, 0], "dealt in limitless fire and brimstone and thinned": [65535, 0], "in limitless fire and brimstone and thinned the": [65535, 0], "limitless fire and brimstone and thinned the predestined": [65535, 0], "fire and brimstone and thinned the predestined elect": [65535, 0], "and brimstone and thinned the predestined elect down": [65535, 0], "brimstone and thinned the predestined elect down to": [65535, 0], "and thinned the predestined elect down to a": [65535, 0], "thinned the predestined elect down to a company": [65535, 0], "the predestined elect down to a company so": [65535, 0], "predestined elect down to a company so small": [65535, 0], "elect down to a company so small as": [65535, 0], "down to a company so small as to": [65535, 0], "to a company so small as to be": [65535, 0], "a company so small as to be hardly": [65535, 0], "company so small as to be hardly worth": [65535, 0], "so small as to be hardly worth the": [65535, 0], "small as to be hardly worth the saving": [65535, 0], "as to be hardly worth the saving tom": [65535, 0], "to be hardly worth the saving tom counted": [65535, 0], "be hardly worth the saving tom counted the": [65535, 0], "hardly worth the saving tom counted the pages": [65535, 0], "worth the saving tom counted the pages of": [65535, 0], "the saving tom counted the pages of the": [65535, 0], "saving tom counted the pages of the sermon": [65535, 0], "tom counted the pages of the sermon after": [65535, 0], "counted the pages of the sermon after church": [65535, 0], "the pages of the sermon after church he": [65535, 0], "pages of the sermon after church he always": [65535, 0], "of the sermon after church he always knew": [65535, 0], "the sermon after church he always knew how": [65535, 0], "sermon after church he always knew how many": [65535, 0], "after church he always knew how many pages": [65535, 0], "church he always knew how many pages there": [65535, 0], "he always knew how many pages there had": [65535, 0], "always knew how many pages there had been": [65535, 0], "knew how many pages there had been but": [65535, 0], "how many pages there had been but he": [65535, 0], "many pages there had been but he seldom": [65535, 0], "pages there had been but he seldom knew": [65535, 0], "there had been but he seldom knew anything": [65535, 0], "had been but he seldom knew anything else": [65535, 0], "been but he seldom knew anything else about": [65535, 0], "but he seldom knew anything else about the": [65535, 0], "he seldom knew anything else about the discourse": [65535, 0], "seldom knew anything else about the discourse however": [65535, 0], "knew anything else about the discourse however this": [65535, 0], "anything else about the discourse however this time": [65535, 0], "else about the discourse however this time he": [65535, 0], "about the discourse however this time he was": [65535, 0], "the discourse however this time he was really": [65535, 0], "discourse however this time he was really interested": [65535, 0], "however this time he was really interested for": [65535, 0], "this time he was really interested for a": [65535, 0], "time he was really interested for a little": [65535, 0], "he was really interested for a little while": [65535, 0], "was really interested for a little while the": [65535, 0], "really interested for a little while the minister": [65535, 0], "interested for a little while the minister made": [65535, 0], "for a little while the minister made a": [65535, 0], "a little while the minister made a grand": [65535, 0], "little while the minister made a grand and": [65535, 0], "while the minister made a grand and moving": [65535, 0], "the minister made a grand and moving picture": [65535, 0], "minister made a grand and moving picture of": [65535, 0], "made a grand and moving picture of the": [65535, 0], "a grand and moving picture of the assembling": [65535, 0], "grand and moving picture of the assembling together": [65535, 0], "and moving picture of the assembling together of": [65535, 0], "moving picture of the assembling together of the": [65535, 0], "picture of the assembling together of the world's": [65535, 0], "of the assembling together of the world's hosts": [65535, 0], "the assembling together of the world's hosts at": [65535, 0], "assembling together of the world's hosts at the": [65535, 0], "together of the world's hosts at the millennium": [65535, 0], "of the world's hosts at the millennium when": [65535, 0], "the world's hosts at the millennium when the": [65535, 0], "world's hosts at the millennium when the lion": [65535, 0], "hosts at the millennium when the lion and": [65535, 0], "at the millennium when the lion and the": [65535, 0], "the millennium when the lion and the lamb": [65535, 0], "millennium when the lion and the lamb should": [65535, 0], "when the lion and the lamb should lie": [65535, 0], "the lion and the lamb should lie down": [65535, 0], "lion and the lamb should lie down together": [65535, 0], "and the lamb should lie down together and": [65535, 0], "the lamb should lie down together and a": [65535, 0], "lamb should lie down together and a little": [65535, 0], "should lie down together and a little child": [65535, 0], "lie down together and a little child should": [65535, 0], "down together and a little child should lead": [65535, 0], "together and a little child should lead them": [65535, 0], "and a little child should lead them but": [65535, 0], "a little child should lead them but the": [65535, 0], "little child should lead them but the pathos": [65535, 0], "child should lead them but the pathos the": [65535, 0], "should lead them but the pathos the lesson": [65535, 0], "lead them but the pathos the lesson the": [65535, 0], "them but the pathos the lesson the moral": [65535, 0], "but the pathos the lesson the moral of": [65535, 0], "the pathos the lesson the moral of the": [65535, 0], "pathos the lesson the moral of the great": [65535, 0], "the lesson the moral of the great spectacle": [65535, 0], "lesson the moral of the great spectacle were": [65535, 0], "the moral of the great spectacle were lost": [65535, 0], "moral of the great spectacle were lost upon": [65535, 0], "of the great spectacle were lost upon the": [65535, 0], "the great spectacle were lost upon the boy": [65535, 0], "great spectacle were lost upon the boy he": [65535, 0], "spectacle were lost upon the boy he only": [65535, 0], "were lost upon the boy he only thought": [65535, 0], "lost upon the boy he only thought of": [65535, 0], "upon the boy he only thought of the": [65535, 0], "the boy he only thought of the conspicuousness": [65535, 0], "boy he only thought of the conspicuousness of": [65535, 0], "he only thought of the conspicuousness of the": [65535, 0], "only thought of the conspicuousness of the principal": [65535, 0], "thought of the conspicuousness of the principal character": [65535, 0], "of the conspicuousness of the principal character before": [65535, 0], "the conspicuousness of the principal character before the": [65535, 0], "conspicuousness of the principal character before the on": [65535, 0], "of the principal character before the on looking": [65535, 0], "the principal character before the on looking nations": [65535, 0], "principal character before the on looking nations his": [65535, 0], "character before the on looking nations his face": [65535, 0], "before the on looking nations his face lit": [65535, 0], "the on looking nations his face lit with": [65535, 0], "on looking nations his face lit with the": [65535, 0], "looking nations his face lit with the thought": [65535, 0], "nations his face lit with the thought and": [65535, 0], "his face lit with the thought and he": [65535, 0], "face lit with the thought and he said": [65535, 0], "lit with the thought and he said to": [65535, 0], "with the thought and he said to himself": [65535, 0], "the thought and he said to himself that": [65535, 0], "thought and he said to himself that he": [65535, 0], "and he said to himself that he wished": [65535, 0], "he said to himself that he wished he": [65535, 0], "said to himself that he wished he could": [65535, 0], "to himself that he wished he could be": [65535, 0], "himself that he wished he could be that": [65535, 0], "that he wished he could be that child": [65535, 0], "he wished he could be that child if": [65535, 0], "wished he could be that child if it": [65535, 0], "he could be that child if it was": [65535, 0], "could be that child if it was a": [65535, 0], "be that child if it was a tame": [65535, 0], "that child if it was a tame lion": [65535, 0], "child if it was a tame lion now": [65535, 0], "if it was a tame lion now he": [65535, 0], "it was a tame lion now he lapsed": [65535, 0], "was a tame lion now he lapsed into": [65535, 0], "a tame lion now he lapsed into suffering": [65535, 0], "tame lion now he lapsed into suffering again": [65535, 0], "lion now he lapsed into suffering again as": [65535, 0], "now he lapsed into suffering again as the": [65535, 0], "he lapsed into suffering again as the dry": [65535, 0], "lapsed into suffering again as the dry argument": [65535, 0], "into suffering again as the dry argument was": [65535, 0], "suffering again as the dry argument was resumed": [65535, 0], "again as the dry argument was resumed presently": [65535, 0], "as the dry argument was resumed presently he": [65535, 0], "the dry argument was resumed presently he bethought": [65535, 0], "dry argument was resumed presently he bethought him": [65535, 0], "argument was resumed presently he bethought him of": [65535, 0], "was resumed presently he bethought him of a": [65535, 0], "resumed presently he bethought him of a treasure": [65535, 0], "presently he bethought him of a treasure he": [65535, 0], "he bethought him of a treasure he had": [65535, 0], "bethought him of a treasure he had and": [65535, 0], "him of a treasure he had and got": [65535, 0], "of a treasure he had and got it": [65535, 0], "a treasure he had and got it out": [65535, 0], "treasure he had and got it out it": [65535, 0], "he had and got it out it was": [65535, 0], "had and got it out it was a": [65535, 0], "and got it out it was a large": [65535, 0], "got it out it was a large black": [65535, 0], "it out it was a large black beetle": [65535, 0], "out it was a large black beetle with": [65535, 0], "it was a large black beetle with formidable": [65535, 0], "was a large black beetle with formidable jaws": [65535, 0], "a large black beetle with formidable jaws a": [65535, 0], "large black beetle with formidable jaws a pinchbug": [65535, 0], "black beetle with formidable jaws a pinchbug he": [65535, 0], "beetle with formidable jaws a pinchbug he called": [65535, 0], "with formidable jaws a pinchbug he called it": [65535, 0], "formidable jaws a pinchbug he called it it": [65535, 0], "jaws a pinchbug he called it it was": [65535, 0], "a pinchbug he called it it was in": [65535, 0], "pinchbug he called it it was in a": [65535, 0], "he called it it was in a percussion": [65535, 0], "called it it was in a percussion cap": [65535, 0], "it it was in a percussion cap box": [65535, 0], "it was in a percussion cap box the": [65535, 0], "was in a percussion cap box the first": [65535, 0], "in a percussion cap box the first thing": [65535, 0], "a percussion cap box the first thing the": [65535, 0], "percussion cap box the first thing the beetle": [65535, 0], "cap box the first thing the beetle did": [65535, 0], "box the first thing the beetle did was": [65535, 0], "the first thing the beetle did was to": [65535, 0], "first thing the beetle did was to take": [65535, 0], "thing the beetle did was to take him": [65535, 0], "the beetle did was to take him by": [65535, 0], "beetle did was to take him by the": [65535, 0], "did was to take him by the finger": [65535, 0], "was to take him by the finger a": [65535, 0], "to take him by the finger a natural": [65535, 0], "take him by the finger a natural fillip": [65535, 0], "him by the finger a natural fillip followed": [65535, 0], "by the finger a natural fillip followed the": [65535, 0], "the finger a natural fillip followed the beetle": [65535, 0], "finger a natural fillip followed the beetle went": [65535, 0], "a natural fillip followed the beetle went floundering": [65535, 0], "natural fillip followed the beetle went floundering into": [65535, 0], "fillip followed the beetle went floundering into the": [65535, 0], "followed the beetle went floundering into the aisle": [65535, 0], "the beetle went floundering into the aisle and": [65535, 0], "beetle went floundering into the aisle and lit": [65535, 0], "went floundering into the aisle and lit on": [65535, 0], "floundering into the aisle and lit on its": [65535, 0], "into the aisle and lit on its back": [65535, 0], "the aisle and lit on its back and": [65535, 0], "aisle and lit on its back and the": [65535, 0], "and lit on its back and the hurt": [65535, 0], "lit on its back and the hurt finger": [65535, 0], "on its back and the hurt finger went": [65535, 0], "its back and the hurt finger went into": [65535, 0], "back and the hurt finger went into the": [65535, 0], "and the hurt finger went into the boy's": [65535, 0], "the hurt finger went into the boy's mouth": [65535, 0], "hurt finger went into the boy's mouth the": [65535, 0], "finger went into the boy's mouth the beetle": [65535, 0], "went into the boy's mouth the beetle lay": [65535, 0], "into the boy's mouth the beetle lay there": [65535, 0], "the boy's mouth the beetle lay there working": [65535, 0], "boy's mouth the beetle lay there working its": [65535, 0], "mouth the beetle lay there working its helpless": [65535, 0], "the beetle lay there working its helpless legs": [65535, 0], "beetle lay there working its helpless legs unable": [65535, 0], "lay there working its helpless legs unable to": [65535, 0], "there working its helpless legs unable to turn": [65535, 0], "working its helpless legs unable to turn over": [65535, 0], "its helpless legs unable to turn over tom": [65535, 0], "helpless legs unable to turn over tom eyed": [65535, 0], "legs unable to turn over tom eyed it": [65535, 0], "unable to turn over tom eyed it and": [65535, 0], "to turn over tom eyed it and longed": [65535, 0], "turn over tom eyed it and longed for": [65535, 0], "over tom eyed it and longed for it": [65535, 0], "tom eyed it and longed for it but": [65535, 0], "eyed it and longed for it but it": [65535, 0], "it and longed for it but it was": [65535, 0], "and longed for it but it was safe": [65535, 0], "longed for it but it was safe out": [65535, 0], "for it but it was safe out of": [65535, 0], "it but it was safe out of his": [65535, 0], "but it was safe out of his reach": [65535, 0], "it was safe out of his reach other": [65535, 0], "was safe out of his reach other people": [65535, 0], "safe out of his reach other people uninterested": [65535, 0], "out of his reach other people uninterested in": [65535, 0], "of his reach other people uninterested in the": [65535, 0], "his reach other people uninterested in the sermon": [65535, 0], "reach other people uninterested in the sermon found": [65535, 0], "other people uninterested in the sermon found relief": [65535, 0], "people uninterested in the sermon found relief in": [65535, 0], "uninterested in the sermon found relief in the": [65535, 0], "in the sermon found relief in the beetle": [65535, 0], "the sermon found relief in the beetle and": [65535, 0], "sermon found relief in the beetle and they": [65535, 0], "found relief in the beetle and they eyed": [65535, 0], "relief in the beetle and they eyed it": [65535, 0], "in the beetle and they eyed it too": [65535, 0], "the beetle and they eyed it too presently": [65535, 0], "beetle and they eyed it too presently a": [65535, 0], "and they eyed it too presently a vagrant": [65535, 0], "they eyed it too presently a vagrant poodle": [65535, 0], "eyed it too presently a vagrant poodle dog": [65535, 0], "it too presently a vagrant poodle dog came": [65535, 0], "too presently a vagrant poodle dog came idling": [65535, 0], "presently a vagrant poodle dog came idling along": [65535, 0], "a vagrant poodle dog came idling along sad": [65535, 0], "vagrant poodle dog came idling along sad at": [65535, 0], "poodle dog came idling along sad at heart": [65535, 0], "dog came idling along sad at heart lazy": [65535, 0], "came idling along sad at heart lazy with": [65535, 0], "idling along sad at heart lazy with the": [65535, 0], "along sad at heart lazy with the summer": [65535, 0], "sad at heart lazy with the summer softness": [65535, 0], "at heart lazy with the summer softness and": [65535, 0], "heart lazy with the summer softness and the": [65535, 0], "lazy with the summer softness and the quiet": [65535, 0], "with the summer softness and the quiet weary": [65535, 0], "the summer softness and the quiet weary of": [65535, 0], "summer softness and the quiet weary of captivity": [65535, 0], "softness and the quiet weary of captivity sighing": [65535, 0], "and the quiet weary of captivity sighing for": [65535, 0], "the quiet weary of captivity sighing for change": [65535, 0], "quiet weary of captivity sighing for change he": [65535, 0], "weary of captivity sighing for change he spied": [65535, 0], "of captivity sighing for change he spied the": [65535, 0], "captivity sighing for change he spied the beetle": [65535, 0], "sighing for change he spied the beetle the": [65535, 0], "for change he spied the beetle the drooping": [65535, 0], "change he spied the beetle the drooping tail": [65535, 0], "he spied the beetle the drooping tail lifted": [65535, 0], "spied the beetle the drooping tail lifted and": [65535, 0], "the beetle the drooping tail lifted and wagged": [65535, 0], "beetle the drooping tail lifted and wagged he": [65535, 0], "the drooping tail lifted and wagged he surveyed": [65535, 0], "drooping tail lifted and wagged he surveyed the": [65535, 0], "tail lifted and wagged he surveyed the prize": [65535, 0], "lifted and wagged he surveyed the prize walked": [65535, 0], "and wagged he surveyed the prize walked around": [65535, 0], "wagged he surveyed the prize walked around it": [65535, 0], "he surveyed the prize walked around it smelt": [65535, 0], "surveyed the prize walked around it smelt at": [65535, 0], "the prize walked around it smelt at it": [65535, 0], "prize walked around it smelt at it from": [65535, 0], "walked around it smelt at it from a": [65535, 0], "around it smelt at it from a safe": [65535, 0], "it smelt at it from a safe distance": [65535, 0], "smelt at it from a safe distance walked": [65535, 0], "at it from a safe distance walked around": [65535, 0], "it from a safe distance walked around it": [65535, 0], "from a safe distance walked around it again": [65535, 0], "a safe distance walked around it again grew": [65535, 0], "safe distance walked around it again grew bolder": [65535, 0], "distance walked around it again grew bolder and": [65535, 0], "walked around it again grew bolder and took": [65535, 0], "around it again grew bolder and took a": [65535, 0], "it again grew bolder and took a closer": [65535, 0], "again grew bolder and took a closer smell": [65535, 0], "grew bolder and took a closer smell then": [65535, 0], "bolder and took a closer smell then lifted": [65535, 0], "and took a closer smell then lifted his": [65535, 0], "took a closer smell then lifted his lip": [65535, 0], "a closer smell then lifted his lip and": [65535, 0], "closer smell then lifted his lip and made": [65535, 0], "smell then lifted his lip and made a": [65535, 0], "then lifted his lip and made a gingerly": [65535, 0], "lifted his lip and made a gingerly snatch": [65535, 0], "his lip and made a gingerly snatch at": [65535, 0], "lip and made a gingerly snatch at it": [65535, 0], "and made a gingerly snatch at it just": [65535, 0], "made a gingerly snatch at it just missing": [65535, 0], "a gingerly snatch at it just missing it": [65535, 0], "gingerly snatch at it just missing it made": [65535, 0], "snatch at it just missing it made another": [65535, 0], "at it just missing it made another and": [65535, 0], "it just missing it made another and another": [65535, 0], "just missing it made another and another began": [65535, 0], "missing it made another and another began to": [65535, 0], "it made another and another began to enjoy": [65535, 0], "made another and another began to enjoy the": [65535, 0], "another and another began to enjoy the diversion": [65535, 0], "and another began to enjoy the diversion subsided": [65535, 0], "another began to enjoy the diversion subsided to": [65535, 0], "began to enjoy the diversion subsided to his": [65535, 0], "to enjoy the diversion subsided to his stomach": [65535, 0], "enjoy the diversion subsided to his stomach with": [65535, 0], "the diversion subsided to his stomach with the": [65535, 0], "diversion subsided to his stomach with the beetle": [65535, 0], "subsided to his stomach with the beetle between": [65535, 0], "to his stomach with the beetle between his": [65535, 0], "his stomach with the beetle between his paws": [65535, 0], "stomach with the beetle between his paws and": [65535, 0], "with the beetle between his paws and continued": [65535, 0], "the beetle between his paws and continued his": [65535, 0], "beetle between his paws and continued his experiments": [65535, 0], "between his paws and continued his experiments grew": [65535, 0], "his paws and continued his experiments grew weary": [65535, 0], "paws and continued his experiments grew weary at": [65535, 0], "and continued his experiments grew weary at last": [65535, 0], "continued his experiments grew weary at last and": [65535, 0], "his experiments grew weary at last and then": [65535, 0], "experiments grew weary at last and then indifferent": [65535, 0], "grew weary at last and then indifferent and": [65535, 0], "weary at last and then indifferent and absent": [65535, 0], "at last and then indifferent and absent minded": [65535, 0], "last and then indifferent and absent minded his": [65535, 0], "and then indifferent and absent minded his head": [65535, 0], "then indifferent and absent minded his head nodded": [65535, 0], "indifferent and absent minded his head nodded and": [65535, 0], "and absent minded his head nodded and little": [65535, 0], "absent minded his head nodded and little by": [65535, 0], "minded his head nodded and little by little": [65535, 0], "his head nodded and little by little his": [65535, 0], "head nodded and little by little his chin": [65535, 0], "nodded and little by little his chin descended": [65535, 0], "and little by little his chin descended and": [65535, 0], "little by little his chin descended and touched": [65535, 0], "by little his chin descended and touched the": [65535, 0], "little his chin descended and touched the enemy": [65535, 0], "his chin descended and touched the enemy who": [65535, 0], "chin descended and touched the enemy who seized": [65535, 0], "descended and touched the enemy who seized it": [65535, 0], "and touched the enemy who seized it there": [65535, 0], "touched the enemy who seized it there was": [65535, 0], "the enemy who seized it there was a": [65535, 0], "enemy who seized it there was a sharp": [65535, 0], "who seized it there was a sharp yelp": [65535, 0], "seized it there was a sharp yelp a": [65535, 0], "it there was a sharp yelp a flirt": [65535, 0], "there was a sharp yelp a flirt of": [65535, 0], "was a sharp yelp a flirt of the": [65535, 0], "a sharp yelp a flirt of the poodle's": [65535, 0], "sharp yelp a flirt of the poodle's head": [65535, 0], "yelp a flirt of the poodle's head and": [65535, 0], "a flirt of the poodle's head and the": [65535, 0], "flirt of the poodle's head and the beetle": [65535, 0], "of the poodle's head and the beetle fell": [65535, 0], "the poodle's head and the beetle fell a": [65535, 0], "poodle's head and the beetle fell a couple": [65535, 0], "head and the beetle fell a couple of": [65535, 0], "and the beetle fell a couple of yards": [65535, 0], "the beetle fell a couple of yards away": [65535, 0], "beetle fell a couple of yards away and": [65535, 0], "fell a couple of yards away and lit": [65535, 0], "a couple of yards away and lit on": [65535, 0], "couple of yards away and lit on its": [65535, 0], "of yards away and lit on its back": [65535, 0], "yards away and lit on its back once": [65535, 0], "away and lit on its back once more": [65535, 0], "and lit on its back once more the": [65535, 0], "lit on its back once more the neighboring": [65535, 0], "on its back once more the neighboring spectators": [65535, 0], "its back once more the neighboring spectators shook": [65535, 0], "back once more the neighboring spectators shook with": [65535, 0], "once more the neighboring spectators shook with a": [65535, 0], "more the neighboring spectators shook with a gentle": [65535, 0], "the neighboring spectators shook with a gentle inward": [65535, 0], "neighboring spectators shook with a gentle inward joy": [65535, 0], "spectators shook with a gentle inward joy several": [65535, 0], "shook with a gentle inward joy several faces": [65535, 0], "with a gentle inward joy several faces went": [65535, 0], "a gentle inward joy several faces went behind": [65535, 0], "gentle inward joy several faces went behind fans": [65535, 0], "inward joy several faces went behind fans and": [65535, 0], "joy several faces went behind fans and handkerchiefs": [65535, 0], "several faces went behind fans and handkerchiefs and": [65535, 0], "faces went behind fans and handkerchiefs and tom": [65535, 0], "went behind fans and handkerchiefs and tom was": [65535, 0], "behind fans and handkerchiefs and tom was entirely": [65535, 0], "fans and handkerchiefs and tom was entirely happy": [65535, 0], "and handkerchiefs and tom was entirely happy the": [65535, 0], "handkerchiefs and tom was entirely happy the dog": [65535, 0], "and tom was entirely happy the dog looked": [65535, 0], "tom was entirely happy the dog looked foolish": [65535, 0], "was entirely happy the dog looked foolish and": [65535, 0], "entirely happy the dog looked foolish and probably": [65535, 0], "happy the dog looked foolish and probably felt": [65535, 0], "the dog looked foolish and probably felt so": [65535, 0], "dog looked foolish and probably felt so but": [65535, 0], "looked foolish and probably felt so but there": [65535, 0], "foolish and probably felt so but there was": [65535, 0], "and probably felt so but there was resentment": [65535, 0], "probably felt so but there was resentment in": [65535, 0], "felt so but there was resentment in his": [65535, 0], "so but there was resentment in his heart": [65535, 0], "but there was resentment in his heart too": [65535, 0], "there was resentment in his heart too and": [65535, 0], "was resentment in his heart too and a": [65535, 0], "resentment in his heart too and a craving": [65535, 0], "in his heart too and a craving for": [65535, 0], "his heart too and a craving for revenge": [65535, 0], "heart too and a craving for revenge so": [65535, 0], "too and a craving for revenge so he": [65535, 0], "and a craving for revenge so he went": [65535, 0], "a craving for revenge so he went to": [65535, 0], "craving for revenge so he went to the": [65535, 0], "for revenge so he went to the beetle": [65535, 0], "revenge so he went to the beetle and": [65535, 0], "so he went to the beetle and began": [65535, 0], "he went to the beetle and began a": [65535, 0], "went to the beetle and began a wary": [65535, 0], "to the beetle and began a wary attack": [65535, 0], "the beetle and began a wary attack on": [65535, 0], "beetle and began a wary attack on it": [65535, 0], "and began a wary attack on it again": [65535, 0], "began a wary attack on it again jumping": [65535, 0], "a wary attack on it again jumping at": [65535, 0], "wary attack on it again jumping at it": [65535, 0], "attack on it again jumping at it from": [65535, 0], "on it again jumping at it from every": [65535, 0], "it again jumping at it from every point": [65535, 0], "again jumping at it from every point of": [65535, 0], "jumping at it from every point of a": [65535, 0], "at it from every point of a circle": [65535, 0], "it from every point of a circle lighting": [65535, 0], "from every point of a circle lighting with": [65535, 0], "every point of a circle lighting with his": [65535, 0], "point of a circle lighting with his fore": [65535, 0], "of a circle lighting with his fore paws": [65535, 0], "a circle lighting with his fore paws within": [65535, 0], "circle lighting with his fore paws within an": [65535, 0], "lighting with his fore paws within an inch": [65535, 0], "with his fore paws within an inch of": [65535, 0], "his fore paws within an inch of the": [65535, 0], "fore paws within an inch of the creature": [65535, 0], "paws within an inch of the creature making": [65535, 0], "within an inch of the creature making even": [65535, 0], "an inch of the creature making even closer": [65535, 0], "inch of the creature making even closer snatches": [65535, 0], "of the creature making even closer snatches at": [65535, 0], "the creature making even closer snatches at it": [65535, 0], "creature making even closer snatches at it with": [65535, 0], "making even closer snatches at it with his": [65535, 0], "even closer snatches at it with his teeth": [65535, 0], "closer snatches at it with his teeth and": [65535, 0], "snatches at it with his teeth and jerking": [65535, 0], "at it with his teeth and jerking his": [65535, 0], "it with his teeth and jerking his head": [65535, 0], "with his teeth and jerking his head till": [65535, 0], "his teeth and jerking his head till his": [65535, 0], "teeth and jerking his head till his ears": [65535, 0], "and jerking his head till his ears flapped": [65535, 0], "jerking his head till his ears flapped again": [65535, 0], "his head till his ears flapped again but": [65535, 0], "head till his ears flapped again but he": [65535, 0], "till his ears flapped again but he grew": [65535, 0], "his ears flapped again but he grew tired": [65535, 0], "ears flapped again but he grew tired once": [65535, 0], "flapped again but he grew tired once more": [65535, 0], "again but he grew tired once more after": [65535, 0], "but he grew tired once more after a": [65535, 0], "he grew tired once more after a while": [65535, 0], "grew tired once more after a while tried": [65535, 0], "tired once more after a while tried to": [65535, 0], "once more after a while tried to amuse": [65535, 0], "more after a while tried to amuse himself": [65535, 0], "after a while tried to amuse himself with": [65535, 0], "a while tried to amuse himself with a": [65535, 0], "while tried to amuse himself with a fly": [65535, 0], "tried to amuse himself with a fly but": [65535, 0], "to amuse himself with a fly but found": [65535, 0], "amuse himself with a fly but found no": [65535, 0], "himself with a fly but found no relief": [65535, 0], "with a fly but found no relief followed": [65535, 0], "a fly but found no relief followed an": [65535, 0], "fly but found no relief followed an ant": [65535, 0], "but found no relief followed an ant around": [65535, 0], "found no relief followed an ant around with": [65535, 0], "no relief followed an ant around with his": [65535, 0], "relief followed an ant around with his nose": [65535, 0], "followed an ant around with his nose close": [65535, 0], "an ant around with his nose close to": [65535, 0], "ant around with his nose close to the": [65535, 0], "around with his nose close to the floor": [65535, 0], "with his nose close to the floor and": [65535, 0], "his nose close to the floor and quickly": [65535, 0], "nose close to the floor and quickly wearied": [65535, 0], "close to the floor and quickly wearied of": [65535, 0], "to the floor and quickly wearied of that": [65535, 0], "the floor and quickly wearied of that yawned": [65535, 0], "floor and quickly wearied of that yawned sighed": [65535, 0], "and quickly wearied of that yawned sighed forgot": [65535, 0], "quickly wearied of that yawned sighed forgot the": [65535, 0], "wearied of that yawned sighed forgot the beetle": [65535, 0], "of that yawned sighed forgot the beetle entirely": [65535, 0], "that yawned sighed forgot the beetle entirely and": [65535, 0], "yawned sighed forgot the beetle entirely and sat": [65535, 0], "sighed forgot the beetle entirely and sat down": [65535, 0], "forgot the beetle entirely and sat down on": [65535, 0], "the beetle entirely and sat down on it": [65535, 0], "beetle entirely and sat down on it then": [65535, 0], "entirely and sat down on it then there": [65535, 0], "and sat down on it then there was": [65535, 0], "sat down on it then there was a": [65535, 0], "down on it then there was a wild": [65535, 0], "on it then there was a wild yelp": [65535, 0], "it then there was a wild yelp of": [65535, 0], "then there was a wild yelp of agony": [65535, 0], "there was a wild yelp of agony and": [65535, 0], "was a wild yelp of agony and the": [65535, 0], "a wild yelp of agony and the poodle": [65535, 0], "wild yelp of agony and the poodle went": [65535, 0], "yelp of agony and the poodle went sailing": [65535, 0], "of agony and the poodle went sailing up": [65535, 0], "agony and the poodle went sailing up the": [65535, 0], "and the poodle went sailing up the aisle": [65535, 0], "the poodle went sailing up the aisle the": [65535, 0], "poodle went sailing up the aisle the yelps": [65535, 0], "went sailing up the aisle the yelps continued": [65535, 0], "sailing up the aisle the yelps continued and": [65535, 0], "up the aisle the yelps continued and so": [65535, 0], "the aisle the yelps continued and so did": [65535, 0], "aisle the yelps continued and so did the": [65535, 0], "the yelps continued and so did the dog": [65535, 0], "yelps continued and so did the dog he": [65535, 0], "continued and so did the dog he crossed": [65535, 0], "and so did the dog he crossed the": [65535, 0], "so did the dog he crossed the house": [65535, 0], "did the dog he crossed the house in": [65535, 0], "the dog he crossed the house in front": [65535, 0], "dog he crossed the house in front of": [65535, 0], "he crossed the house in front of the": [65535, 0], "crossed the house in front of the altar": [65535, 0], "the house in front of the altar he": [65535, 0], "house in front of the altar he flew": [65535, 0], "in front of the altar he flew down": [65535, 0], "front of the altar he flew down the": [65535, 0], "of the altar he flew down the other": [65535, 0], "the altar he flew down the other aisle": [65535, 0], "altar he flew down the other aisle he": [65535, 0], "he flew down the other aisle he crossed": [65535, 0], "flew down the other aisle he crossed before": [65535, 0], "down the other aisle he crossed before the": [65535, 0], "the other aisle he crossed before the doors": [65535, 0], "other aisle he crossed before the doors he": [65535, 0], "aisle he crossed before the doors he clamored": [65535, 0], "he crossed before the doors he clamored up": [65535, 0], "crossed before the doors he clamored up the": [65535, 0], "before the doors he clamored up the home": [65535, 0], "the doors he clamored up the home stretch": [65535, 0], "doors he clamored up the home stretch his": [65535, 0], "he clamored up the home stretch his anguish": [65535, 0], "clamored up the home stretch his anguish grew": [65535, 0], "up the home stretch his anguish grew with": [65535, 0], "the home stretch his anguish grew with his": [65535, 0], "home stretch his anguish grew with his progress": [65535, 0], "stretch his anguish grew with his progress till": [65535, 0], "his anguish grew with his progress till presently": [65535, 0], "anguish grew with his progress till presently he": [65535, 0], "grew with his progress till presently he was": [65535, 0], "with his progress till presently he was but": [65535, 0], "his progress till presently he was but a": [65535, 0], "progress till presently he was but a woolly": [65535, 0], "till presently he was but a woolly comet": [65535, 0], "presently he was but a woolly comet moving": [65535, 0], "he was but a woolly comet moving in": [65535, 0], "was but a woolly comet moving in its": [65535, 0], "but a woolly comet moving in its orbit": [65535, 0], "a woolly comet moving in its orbit with": [65535, 0], "woolly comet moving in its orbit with the": [65535, 0], "comet moving in its orbit with the gleam": [65535, 0], "moving in its orbit with the gleam and": [65535, 0], "in its orbit with the gleam and the": [65535, 0], "its orbit with the gleam and the speed": [65535, 0], "orbit with the gleam and the speed of": [65535, 0], "with the gleam and the speed of light": [65535, 0], "the gleam and the speed of light at": [65535, 0], "gleam and the speed of light at last": [65535, 0], "and the speed of light at last the": [65535, 0], "the speed of light at last the frantic": [65535, 0], "speed of light at last the frantic sufferer": [65535, 0], "of light at last the frantic sufferer sheered": [65535, 0], "light at last the frantic sufferer sheered from": [65535, 0], "at last the frantic sufferer sheered from its": [65535, 0], "last the frantic sufferer sheered from its course": [65535, 0], "the frantic sufferer sheered from its course and": [65535, 0], "frantic sufferer sheered from its course and sprang": [65535, 0], "sufferer sheered from its course and sprang into": [65535, 0], "sheered from its course and sprang into its": [65535, 0], "from its course and sprang into its master's": [65535, 0], "its course and sprang into its master's lap": [65535, 0], "course and sprang into its master's lap he": [65535, 0], "and sprang into its master's lap he flung": [65535, 0], "sprang into its master's lap he flung it": [65535, 0], "into its master's lap he flung it out": [65535, 0], "its master's lap he flung it out of": [65535, 0], "master's lap he flung it out of the": [65535, 0], "lap he flung it out of the window": [65535, 0], "he flung it out of the window and": [65535, 0], "flung it out of the window and the": [65535, 0], "it out of the window and the voice": [65535, 0], "out of the window and the voice of": [65535, 0], "of the window and the voice of distress": [65535, 0], "the window and the voice of distress quickly": [65535, 0], "window and the voice of distress quickly thinned": [65535, 0], "and the voice of distress quickly thinned away": [65535, 0], "the voice of distress quickly thinned away and": [65535, 0], "voice of distress quickly thinned away and died": [65535, 0], "of distress quickly thinned away and died in": [65535, 0], "distress quickly thinned away and died in the": [65535, 0], "quickly thinned away and died in the distance": [65535, 0], "thinned away and died in the distance by": [65535, 0], "away and died in the distance by this": [65535, 0], "and died in the distance by this time": [65535, 0], "died in the distance by this time the": [65535, 0], "in the distance by this time the whole": [65535, 0], "the distance by this time the whole church": [65535, 0], "distance by this time the whole church was": [65535, 0], "by this time the whole church was red": [65535, 0], "this time the whole church was red faced": [65535, 0], "time the whole church was red faced and": [65535, 0], "the whole church was red faced and suffocating": [65535, 0], "whole church was red faced and suffocating with": [65535, 0], "church was red faced and suffocating with suppressed": [65535, 0], "was red faced and suffocating with suppressed laughter": [65535, 0], "red faced and suffocating with suppressed laughter and": [65535, 0], "faced and suffocating with suppressed laughter and the": [65535, 0], "and suffocating with suppressed laughter and the sermon": [65535, 0], "suffocating with suppressed laughter and the sermon had": [65535, 0], "with suppressed laughter and the sermon had come": [65535, 0], "suppressed laughter and the sermon had come to": [65535, 0], "laughter and the sermon had come to a": [65535, 0], "and the sermon had come to a dead": [65535, 0], "the sermon had come to a dead standstill": [65535, 0], "sermon had come to a dead standstill the": [65535, 0], "had come to a dead standstill the discourse": [65535, 0], "come to a dead standstill the discourse was": [65535, 0], "to a dead standstill the discourse was resumed": [65535, 0], "a dead standstill the discourse was resumed presently": [65535, 0], "dead standstill the discourse was resumed presently but": [65535, 0], "standstill the discourse was resumed presently but it": [65535, 0], "the discourse was resumed presently but it went": [65535, 0], "discourse was resumed presently but it went lame": [65535, 0], "was resumed presently but it went lame and": [65535, 0], "resumed presently but it went lame and halting": [65535, 0], "presently but it went lame and halting all": [65535, 0], "but it went lame and halting all possibility": [65535, 0], "it went lame and halting all possibility of": [65535, 0], "went lame and halting all possibility of impressiveness": [65535, 0], "lame and halting all possibility of impressiveness being": [65535, 0], "and halting all possibility of impressiveness being at": [65535, 0], "halting all possibility of impressiveness being at an": [65535, 0], "all possibility of impressiveness being at an end": [65535, 0], "possibility of impressiveness being at an end for": [65535, 0], "of impressiveness being at an end for even": [65535, 0], "impressiveness being at an end for even the": [65535, 0], "being at an end for even the gravest": [65535, 0], "at an end for even the gravest sentiments": [65535, 0], "an end for even the gravest sentiments were": [65535, 0], "end for even the gravest sentiments were constantly": [65535, 0], "for even the gravest sentiments were constantly being": [65535, 0], "even the gravest sentiments were constantly being received": [65535, 0], "the gravest sentiments were constantly being received with": [65535, 0], "gravest sentiments were constantly being received with a": [65535, 0], "sentiments were constantly being received with a smothered": [65535, 0], "were constantly being received with a smothered burst": [65535, 0], "constantly being received with a smothered burst of": [65535, 0], "being received with a smothered burst of unholy": [65535, 0], "received with a smothered burst of unholy mirth": [65535, 0], "with a smothered burst of unholy mirth under": [65535, 0], "a smothered burst of unholy mirth under cover": [65535, 0], "smothered burst of unholy mirth under cover of": [65535, 0], "burst of unholy mirth under cover of some": [65535, 0], "of unholy mirth under cover of some remote": [65535, 0], "unholy mirth under cover of some remote pew": [65535, 0], "mirth under cover of some remote pew back": [65535, 0], "under cover of some remote pew back as": [65535, 0], "cover of some remote pew back as if": [65535, 0], "of some remote pew back as if the": [65535, 0], "some remote pew back as if the poor": [65535, 0], "remote pew back as if the poor parson": [65535, 0], "pew back as if the poor parson had": [65535, 0], "back as if the poor parson had said": [65535, 0], "as if the poor parson had said a": [65535, 0], "if the poor parson had said a rarely": [65535, 0], "the poor parson had said a rarely facetious": [65535, 0], "poor parson had said a rarely facetious thing": [65535, 0], "parson had said a rarely facetious thing it": [65535, 0], "had said a rarely facetious thing it was": [65535, 0], "said a rarely facetious thing it was a": [65535, 0], "a rarely facetious thing it was a genuine": [65535, 0], "rarely facetious thing it was a genuine relief": [65535, 0], "facetious thing it was a genuine relief to": [65535, 0], "thing it was a genuine relief to the": [65535, 0], "it was a genuine relief to the whole": [65535, 0], "was a genuine relief to the whole congregation": [65535, 0], "a genuine relief to the whole congregation when": [65535, 0], "genuine relief to the whole congregation when the": [65535, 0], "relief to the whole congregation when the ordeal": [65535, 0], "to the whole congregation when the ordeal was": [65535, 0], "the whole congregation when the ordeal was over": [65535, 0], "whole congregation when the ordeal was over and": [65535, 0], "congregation when the ordeal was over and the": [65535, 0], "when the ordeal was over and the benediction": [65535, 0], "the ordeal was over and the benediction pronounced": [65535, 0], "ordeal was over and the benediction pronounced tom": [65535, 0], "was over and the benediction pronounced tom sawyer": [65535, 0], "over and the benediction pronounced tom sawyer went": [65535, 0], "and the benediction pronounced tom sawyer went home": [65535, 0], "the benediction pronounced tom sawyer went home quite": [65535, 0], "benediction pronounced tom sawyer went home quite cheerful": [65535, 0], "pronounced tom sawyer went home quite cheerful thinking": [65535, 0], "tom sawyer went home quite cheerful thinking to": [65535, 0], "sawyer went home quite cheerful thinking to himself": [65535, 0], "went home quite cheerful thinking to himself that": [65535, 0], "home quite cheerful thinking to himself that there": [65535, 0], "quite cheerful thinking to himself that there was": [65535, 0], "cheerful thinking to himself that there was some": [65535, 0], "thinking to himself that there was some satisfaction": [65535, 0], "to himself that there was some satisfaction about": [65535, 0], "himself that there was some satisfaction about divine": [65535, 0], "that there was some satisfaction about divine service": [65535, 0], "there was some satisfaction about divine service when": [65535, 0], "was some satisfaction about divine service when there": [65535, 0], "some satisfaction about divine service when there was": [65535, 0], "satisfaction about divine service when there was a": [65535, 0], "about divine service when there was a bit": [65535, 0], "divine service when there was a bit of": [65535, 0], "service when there was a bit of variety": [65535, 0], "when there was a bit of variety in": [65535, 0], "there was a bit of variety in it": [65535, 0], "was a bit of variety in it he": [65535, 0], "a bit of variety in it he had": [65535, 0], "bit of variety in it he had but": [65535, 0], "of variety in it he had but one": [65535, 0], "variety in it he had but one marring": [65535, 0], "in it he had but one marring thought": [65535, 0], "it he had but one marring thought he": [65535, 0], "he had but one marring thought he was": [65535, 0], "had but one marring thought he was willing": [65535, 0], "but one marring thought he was willing that": [65535, 0], "one marring thought he was willing that the": [65535, 0], "marring thought he was willing that the dog": [65535, 0], "thought he was willing that the dog should": [65535, 0], "he was willing that the dog should play": [65535, 0], "was willing that the dog should play with": [65535, 0], "willing that the dog should play with his": [65535, 0], "that the dog should play with his pinchbug": [65535, 0], "the dog should play with his pinchbug but": [65535, 0], "dog should play with his pinchbug but he": [65535, 0], "should play with his pinchbug but he did": [65535, 0], "play with his pinchbug but he did not": [65535, 0], "with his pinchbug but he did not think": [65535, 0], "his pinchbug but he did not think it": [65535, 0], "pinchbug but he did not think it was": [65535, 0], "but he did not think it was upright": [65535, 0], "he did not think it was upright in": [65535, 0], "did not think it was upright in him": [65535, 0], "not think it was upright in him to": [65535, 0], "think it was upright in him to carry": [65535, 0], "it was upright in him to carry it": [65535, 0], "was upright in him to carry it off": [65535, 0], "about half past ten the cracked bell of the": [65535, 0], "half past ten the cracked bell of the small": [65535, 0], "past ten the cracked bell of the small church": [65535, 0], "ten the cracked bell of the small church began": [65535, 0], "the cracked bell of the small church began to": [65535, 0], "cracked bell of the small church began to ring": [65535, 0], "bell of the small church began to ring and": [65535, 0], "of the small church began to ring and presently": [65535, 0], "the small church began to ring and presently the": [65535, 0], "small church began to ring and presently the people": [65535, 0], "church began to ring and presently the people began": [65535, 0], "began to ring and presently the people began to": [65535, 0], "to ring and presently the people began to gather": [65535, 0], "ring and presently the people began to gather for": [65535, 0], "and presently the people began to gather for the": [65535, 0], "presently the people began to gather for the morning": [65535, 0], "the people began to gather for the morning sermon": [65535, 0], "people began to gather for the morning sermon the": [65535, 0], "began to gather for the morning sermon the sunday": [65535, 0], "to gather for the morning sermon the sunday school": [65535, 0], "gather for the morning sermon the sunday school children": [65535, 0], "for the morning sermon the sunday school children distributed": [65535, 0], "the morning sermon the sunday school children distributed themselves": [65535, 0], "morning sermon the sunday school children distributed themselves about": [65535, 0], "sermon the sunday school children distributed themselves about the": [65535, 0], "the sunday school children distributed themselves about the house": [65535, 0], "sunday school children distributed themselves about the house and": [65535, 0], "school children distributed themselves about the house and occupied": [65535, 0], "children distributed themselves about the house and occupied pews": [65535, 0], "distributed themselves about the house and occupied pews with": [65535, 0], "themselves about the house and occupied pews with their": [65535, 0], "about the house and occupied pews with their parents": [65535, 0], "the house and occupied pews with their parents so": [65535, 0], "house and occupied pews with their parents so as": [65535, 0], "and occupied pews with their parents so as to": [65535, 0], "occupied pews with their parents so as to be": [65535, 0], "pews with their parents so as to be under": [65535, 0], "with their parents so as to be under supervision": [65535, 0], "their parents so as to be under supervision aunt": [65535, 0], "parents so as to be under supervision aunt polly": [65535, 0], "so as to be under supervision aunt polly came": [65535, 0], "as to be under supervision aunt polly came and": [65535, 0], "to be under supervision aunt polly came and tom": [65535, 0], "be under supervision aunt polly came and tom and": [65535, 0], "under supervision aunt polly came and tom and sid": [65535, 0], "supervision aunt polly came and tom and sid and": [65535, 0], "aunt polly came and tom and sid and mary": [65535, 0], "polly came and tom and sid and mary sat": [65535, 0], "came and tom and sid and mary sat with": [65535, 0], "and tom and sid and mary sat with her": [65535, 0], "tom and sid and mary sat with her tom": [65535, 0], "and sid and mary sat with her tom being": [65535, 0], "sid and mary sat with her tom being placed": [65535, 0], "and mary sat with her tom being placed next": [65535, 0], "mary sat with her tom being placed next the": [65535, 0], "sat with her tom being placed next the aisle": [65535, 0], "with her tom being placed next the aisle in": [65535, 0], "her tom being placed next the aisle in order": [65535, 0], "tom being placed next the aisle in order that": [65535, 0], "being placed next the aisle in order that he": [65535, 0], "placed next the aisle in order that he might": [65535, 0], "next the aisle in order that he might be": [65535, 0], "the aisle in order that he might be as": [65535, 0], "aisle in order that he might be as far": [65535, 0], "in order that he might be as far away": [65535, 0], "order that he might be as far away from": [65535, 0], "that he might be as far away from the": [65535, 0], "he might be as far away from the open": [65535, 0], "might be as far away from the open window": [65535, 0], "be as far away from the open window and": [65535, 0], "as far away from the open window and the": [65535, 0], "far away from the open window and the seductive": [65535, 0], "away from the open window and the seductive outside": [65535, 0], "from the open window and the seductive outside summer": [65535, 0], "the open window and the seductive outside summer scenes": [65535, 0], "open window and the seductive outside summer scenes as": [65535, 0], "window and the seductive outside summer scenes as possible": [65535, 0], "and the seductive outside summer scenes as possible the": [65535, 0], "the seductive outside summer scenes as possible the crowd": [65535, 0], "seductive outside summer scenes as possible the crowd filed": [65535, 0], "outside summer scenes as possible the crowd filed up": [65535, 0], "summer scenes as possible the crowd filed up the": [65535, 0], "scenes as possible the crowd filed up the aisles": [65535, 0], "as possible the crowd filed up the aisles the": [65535, 0], "possible the crowd filed up the aisles the aged": [65535, 0], "the crowd filed up the aisles the aged and": [65535, 0], "crowd filed up the aisles the aged and needy": [65535, 0], "filed up the aisles the aged and needy postmaster": [65535, 0], "up the aisles the aged and needy postmaster who": [65535, 0], "the aisles the aged and needy postmaster who had": [65535, 0], "aisles the aged and needy postmaster who had seen": [65535, 0], "the aged and needy postmaster who had seen better": [65535, 0], "aged and needy postmaster who had seen better days": [65535, 0], "and needy postmaster who had seen better days the": [65535, 0], "needy postmaster who had seen better days the mayor": [65535, 0], "postmaster who had seen better days the mayor and": [65535, 0], "who had seen better days the mayor and his": [65535, 0], "had seen better days the mayor and his wife": [65535, 0], "seen better days the mayor and his wife for": [65535, 0], "better days the mayor and his wife for they": [65535, 0], "days the mayor and his wife for they had": [65535, 0], "the mayor and his wife for they had a": [65535, 0], "mayor and his wife for they had a mayor": [65535, 0], "and his wife for they had a mayor there": [65535, 0], "his wife for they had a mayor there among": [65535, 0], "wife for they had a mayor there among other": [65535, 0], "for they had a mayor there among other unnecessaries": [65535, 0], "they had a mayor there among other unnecessaries the": [65535, 0], "had a mayor there among other unnecessaries the justice": [65535, 0], "a mayor there among other unnecessaries the justice of": [65535, 0], "mayor there among other unnecessaries the justice of the": [65535, 0], "there among other unnecessaries the justice of the peace": [65535, 0], "among other unnecessaries the justice of the peace the": [65535, 0], "other unnecessaries the justice of the peace the widow": [65535, 0], "unnecessaries the justice of the peace the widow douglass": [65535, 0], "the justice of the peace the widow douglass fair": [65535, 0], "justice of the peace the widow douglass fair smart": [65535, 0], "of the peace the widow douglass fair smart and": [65535, 0], "the peace the widow douglass fair smart and forty": [65535, 0], "peace the widow douglass fair smart and forty a": [65535, 0], "the widow douglass fair smart and forty a generous": [65535, 0], "widow douglass fair smart and forty a generous good": [65535, 0], "douglass fair smart and forty a generous good hearted": [65535, 0], "fair smart and forty a generous good hearted soul": [65535, 0], "smart and forty a generous good hearted soul and": [65535, 0], "and forty a generous good hearted soul and well": [65535, 0], "forty a generous good hearted soul and well to": [65535, 0], "a generous good hearted soul and well to do": [65535, 0], "generous good hearted soul and well to do her": [65535, 0], "good hearted soul and well to do her hill": [65535, 0], "hearted soul and well to do her hill mansion": [65535, 0], "soul and well to do her hill mansion the": [65535, 0], "and well to do her hill mansion the only": [65535, 0], "well to do her hill mansion the only palace": [65535, 0], "to do her hill mansion the only palace in": [65535, 0], "do her hill mansion the only palace in the": [65535, 0], "her hill mansion the only palace in the town": [65535, 0], "hill mansion the only palace in the town and": [65535, 0], "mansion the only palace in the town and the": [65535, 0], "the only palace in the town and the most": [65535, 0], "only palace in the town and the most hospitable": [65535, 0], "palace in the town and the most hospitable and": [65535, 0], "in the town and the most hospitable and much": [65535, 0], "the town and the most hospitable and much the": [65535, 0], "town and the most hospitable and much the most": [65535, 0], "and the most hospitable and much the most lavish": [65535, 0], "the most hospitable and much the most lavish in": [65535, 0], "most hospitable and much the most lavish in the": [65535, 0], "hospitable and much the most lavish in the matter": [65535, 0], "and much the most lavish in the matter of": [65535, 0], "much the most lavish in the matter of festivities": [65535, 0], "the most lavish in the matter of festivities that": [65535, 0], "most lavish in the matter of festivities that st": [65535, 0], "lavish in the matter of festivities that st petersburg": [65535, 0], "in the matter of festivities that st petersburg could": [65535, 0], "the matter of festivities that st petersburg could boast": [65535, 0], "matter of festivities that st petersburg could boast the": [65535, 0], "of festivities that st petersburg could boast the bent": [65535, 0], "festivities that st petersburg could boast the bent and": [65535, 0], "that st petersburg could boast the bent and venerable": [65535, 0], "st petersburg could boast the bent and venerable major": [65535, 0], "petersburg could boast the bent and venerable major and": [65535, 0], "could boast the bent and venerable major and mrs": [65535, 0], "boast the bent and venerable major and mrs ward": [65535, 0], "the bent and venerable major and mrs ward lawyer": [65535, 0], "bent and venerable major and mrs ward lawyer riverson": [65535, 0], "and venerable major and mrs ward lawyer riverson the": [65535, 0], "venerable major and mrs ward lawyer riverson the new": [65535, 0], "major and mrs ward lawyer riverson the new notable": [65535, 0], "and mrs ward lawyer riverson the new notable from": [65535, 0], "mrs ward lawyer riverson the new notable from a": [65535, 0], "ward lawyer riverson the new notable from a distance": [65535, 0], "lawyer riverson the new notable from a distance next": [65535, 0], "riverson the new notable from a distance next the": [65535, 0], "the new notable from a distance next the belle": [65535, 0], "new notable from a distance next the belle of": [65535, 0], "notable from a distance next the belle of the": [65535, 0], "from a distance next the belle of the village": [65535, 0], "a distance next the belle of the village followed": [65535, 0], "distance next the belle of the village followed by": [65535, 0], "next the belle of the village followed by a": [65535, 0], "the belle of the village followed by a troop": [65535, 0], "belle of the village followed by a troop of": [65535, 0], "of the village followed by a troop of lawn": [65535, 0], "the village followed by a troop of lawn clad": [65535, 0], "village followed by a troop of lawn clad and": [65535, 0], "followed by a troop of lawn clad and ribbon": [65535, 0], "by a troop of lawn clad and ribbon decked": [65535, 0], "a troop of lawn clad and ribbon decked young": [65535, 0], "troop of lawn clad and ribbon decked young heart": [65535, 0], "of lawn clad and ribbon decked young heart breakers": [65535, 0], "lawn clad and ribbon decked young heart breakers then": [65535, 0], "clad and ribbon decked young heart breakers then all": [65535, 0], "and ribbon decked young heart breakers then all the": [65535, 0], "ribbon decked young heart breakers then all the young": [65535, 0], "decked young heart breakers then all the young clerks": [65535, 0], "young heart breakers then all the young clerks in": [65535, 0], "heart breakers then all the young clerks in town": [65535, 0], "breakers then all the young clerks in town in": [65535, 0], "then all the young clerks in town in a": [65535, 0], "all the young clerks in town in a body": [65535, 0], "the young clerks in town in a body for": [65535, 0], "young clerks in town in a body for they": [65535, 0], "clerks in town in a body for they had": [65535, 0], "in town in a body for they had stood": [65535, 0], "town in a body for they had stood in": [65535, 0], "in a body for they had stood in the": [65535, 0], "a body for they had stood in the vestibule": [65535, 0], "body for they had stood in the vestibule sucking": [65535, 0], "for they had stood in the vestibule sucking their": [65535, 0], "they had stood in the vestibule sucking their cane": [65535, 0], "had stood in the vestibule sucking their cane heads": [65535, 0], "stood in the vestibule sucking their cane heads a": [65535, 0], "in the vestibule sucking their cane heads a circling": [65535, 0], "the vestibule sucking their cane heads a circling wall": [65535, 0], "vestibule sucking their cane heads a circling wall of": [65535, 0], "sucking their cane heads a circling wall of oiled": [65535, 0], "their cane heads a circling wall of oiled and": [65535, 0], "cane heads a circling wall of oiled and simpering": [65535, 0], "heads a circling wall of oiled and simpering admirers": [65535, 0], "a circling wall of oiled and simpering admirers till": [65535, 0], "circling wall of oiled and simpering admirers till the": [65535, 0], "wall of oiled and simpering admirers till the last": [65535, 0], "of oiled and simpering admirers till the last girl": [65535, 0], "oiled and simpering admirers till the last girl had": [65535, 0], "and simpering admirers till the last girl had run": [65535, 0], "simpering admirers till the last girl had run their": [65535, 0], "admirers till the last girl had run their gantlet": [65535, 0], "till the last girl had run their gantlet and": [65535, 0], "the last girl had run their gantlet and last": [65535, 0], "last girl had run their gantlet and last of": [65535, 0], "girl had run their gantlet and last of all": [65535, 0], "had run their gantlet and last of all came": [65535, 0], "run their gantlet and last of all came the": [65535, 0], "their gantlet and last of all came the model": [65535, 0], "gantlet and last of all came the model boy": [65535, 0], "and last of all came the model boy willie": [65535, 0], "last of all came the model boy willie mufferson": [65535, 0], "of all came the model boy willie mufferson taking": [65535, 0], "all came the model boy willie mufferson taking as": [65535, 0], "came the model boy willie mufferson taking as heedful": [65535, 0], "the model boy willie mufferson taking as heedful care": [65535, 0], "model boy willie mufferson taking as heedful care of": [65535, 0], "boy willie mufferson taking as heedful care of his": [65535, 0], "willie mufferson taking as heedful care of his mother": [65535, 0], "mufferson taking as heedful care of his mother as": [65535, 0], "taking as heedful care of his mother as if": [65535, 0], "as heedful care of his mother as if she": [65535, 0], "heedful care of his mother as if she were": [65535, 0], "care of his mother as if she were cut": [65535, 0], "of his mother as if she were cut glass": [65535, 0], "his mother as if she were cut glass he": [65535, 0], "mother as if she were cut glass he always": [65535, 0], "as if she were cut glass he always brought": [65535, 0], "if she were cut glass he always brought his": [65535, 0], "she were cut glass he always brought his mother": [65535, 0], "were cut glass he always brought his mother to": [65535, 0], "cut glass he always brought his mother to church": [65535, 0], "glass he always brought his mother to church and": [65535, 0], "he always brought his mother to church and was": [65535, 0], "always brought his mother to church and was the": [65535, 0], "brought his mother to church and was the pride": [65535, 0], "his mother to church and was the pride of": [65535, 0], "mother to church and was the pride of all": [65535, 0], "to church and was the pride of all the": [65535, 0], "church and was the pride of all the matrons": [65535, 0], "and was the pride of all the matrons the": [65535, 0], "was the pride of all the matrons the boys": [65535, 0], "the pride of all the matrons the boys all": [65535, 0], "pride of all the matrons the boys all hated": [65535, 0], "of all the matrons the boys all hated him": [65535, 0], "all the matrons the boys all hated him he": [65535, 0], "the matrons the boys all hated him he was": [65535, 0], "matrons the boys all hated him he was so": [65535, 0], "the boys all hated him he was so good": [65535, 0], "boys all hated him he was so good and": [65535, 0], "all hated him he was so good and besides": [65535, 0], "hated him he was so good and besides he": [65535, 0], "him he was so good and besides he had": [65535, 0], "he was so good and besides he had been": [65535, 0], "was so good and besides he had been thrown": [65535, 0], "so good and besides he had been thrown up": [65535, 0], "good and besides he had been thrown up to": [65535, 0], "and besides he had been thrown up to them": [65535, 0], "besides he had been thrown up to them so": [65535, 0], "he had been thrown up to them so much": [65535, 0], "had been thrown up to them so much his": [65535, 0], "been thrown up to them so much his white": [65535, 0], "thrown up to them so much his white handkerchief": [65535, 0], "up to them so much his white handkerchief was": [65535, 0], "to them so much his white handkerchief was hanging": [65535, 0], "them so much his white handkerchief was hanging out": [65535, 0], "so much his white handkerchief was hanging out of": [65535, 0], "much his white handkerchief was hanging out of his": [65535, 0], "his white handkerchief was hanging out of his pocket": [65535, 0], "white handkerchief was hanging out of his pocket behind": [65535, 0], "handkerchief was hanging out of his pocket behind as": [65535, 0], "was hanging out of his pocket behind as usual": [65535, 0], "hanging out of his pocket behind as usual on": [65535, 0], "out of his pocket behind as usual on sundays": [65535, 0], "of his pocket behind as usual on sundays accidentally": [65535, 0], "his pocket behind as usual on sundays accidentally tom": [65535, 0], "pocket behind as usual on sundays accidentally tom had": [65535, 0], "behind as usual on sundays accidentally tom had no": [65535, 0], "as usual on sundays accidentally tom had no handkerchief": [65535, 0], "usual on sundays accidentally tom had no handkerchief and": [65535, 0], "on sundays accidentally tom had no handkerchief and he": [65535, 0], "sundays accidentally tom had no handkerchief and he looked": [65535, 0], "accidentally tom had no handkerchief and he looked upon": [65535, 0], "tom had no handkerchief and he looked upon boys": [65535, 0], "had no handkerchief and he looked upon boys who": [65535, 0], "no handkerchief and he looked upon boys who had": [65535, 0], "handkerchief and he looked upon boys who had as": [65535, 0], "and he looked upon boys who had as snobs": [65535, 0], "he looked upon boys who had as snobs the": [65535, 0], "looked upon boys who had as snobs the congregation": [65535, 0], "upon boys who had as snobs the congregation being": [65535, 0], "boys who had as snobs the congregation being fully": [65535, 0], "who had as snobs the congregation being fully assembled": [65535, 0], "had as snobs the congregation being fully assembled now": [65535, 0], "as snobs the congregation being fully assembled now the": [65535, 0], "snobs the congregation being fully assembled now the bell": [65535, 0], "the congregation being fully assembled now the bell rang": [65535, 0], "congregation being fully assembled now the bell rang once": [65535, 0], "being fully assembled now the bell rang once more": [65535, 0], "fully assembled now the bell rang once more to": [65535, 0], "assembled now the bell rang once more to warn": [65535, 0], "now the bell rang once more to warn laggards": [65535, 0], "the bell rang once more to warn laggards and": [65535, 0], "bell rang once more to warn laggards and stragglers": [65535, 0], "rang once more to warn laggards and stragglers and": [65535, 0], "once more to warn laggards and stragglers and then": [65535, 0], "more to warn laggards and stragglers and then a": [65535, 0], "to warn laggards and stragglers and then a solemn": [65535, 0], "warn laggards and stragglers and then a solemn hush": [65535, 0], "laggards and stragglers and then a solemn hush fell": [65535, 0], "and stragglers and then a solemn hush fell upon": [65535, 0], "stragglers and then a solemn hush fell upon the": [65535, 0], "and then a solemn hush fell upon the church": [65535, 0], "then a solemn hush fell upon the church which": [65535, 0], "a solemn hush fell upon the church which was": [65535, 0], "solemn hush fell upon the church which was only": [65535, 0], "hush fell upon the church which was only broken": [65535, 0], "fell upon the church which was only broken by": [65535, 0], "upon the church which was only broken by the": [65535, 0], "the church which was only broken by the tittering": [65535, 0], "church which was only broken by the tittering and": [65535, 0], "which was only broken by the tittering and whispering": [65535, 0], "was only broken by the tittering and whispering of": [65535, 0], "only broken by the tittering and whispering of the": [65535, 0], "broken by the tittering and whispering of the choir": [65535, 0], "by the tittering and whispering of the choir in": [65535, 0], "the tittering and whispering of the choir in the": [65535, 0], "tittering and whispering of the choir in the gallery": [65535, 0], "and whispering of the choir in the gallery the": [65535, 0], "whispering of the choir in the gallery the choir": [65535, 0], "of the choir in the gallery the choir always": [65535, 0], "the choir in the gallery the choir always tittered": [65535, 0], "choir in the gallery the choir always tittered and": [65535, 0], "in the gallery the choir always tittered and whispered": [65535, 0], "the gallery the choir always tittered and whispered all": [65535, 0], "gallery the choir always tittered and whispered all through": [65535, 0], "the choir always tittered and whispered all through service": [65535, 0], "choir always tittered and whispered all through service there": [65535, 0], "always tittered and whispered all through service there was": [65535, 0], "tittered and whispered all through service there was once": [65535, 0], "and whispered all through service there was once a": [65535, 0], "whispered all through service there was once a church": [65535, 0], "all through service there was once a church choir": [65535, 0], "through service there was once a church choir that": [65535, 0], "service there was once a church choir that was": [65535, 0], "there was once a church choir that was not": [65535, 0], "was once a church choir that was not ill": [65535, 0], "once a church choir that was not ill bred": [65535, 0], "a church choir that was not ill bred but": [65535, 0], "church choir that was not ill bred but i": [65535, 0], "choir that was not ill bred but i have": [65535, 0], "that was not ill bred but i have forgotten": [65535, 0], "was not ill bred but i have forgotten where": [65535, 0], "not ill bred but i have forgotten where it": [65535, 0], "ill bred but i have forgotten where it was": [65535, 0], "bred but i have forgotten where it was now": [65535, 0], "but i have forgotten where it was now it": [65535, 0], "i have forgotten where it was now it was": [65535, 0], "have forgotten where it was now it was a": [65535, 0], "forgotten where it was now it was a great": [65535, 0], "where it was now it was a great many": [65535, 0], "it was now it was a great many years": [65535, 0], "was now it was a great many years ago": [65535, 0], "now it was a great many years ago and": [65535, 0], "it was a great many years ago and i": [65535, 0], "was a great many years ago and i can": [65535, 0], "a great many years ago and i can scarcely": [65535, 0], "great many years ago and i can scarcely remember": [65535, 0], "many years ago and i can scarcely remember anything": [65535, 0], "years ago and i can scarcely remember anything about": [65535, 0], "ago and i can scarcely remember anything about it": [65535, 0], "and i can scarcely remember anything about it but": [65535, 0], "i can scarcely remember anything about it but i": [65535, 0], "can scarcely remember anything about it but i think": [65535, 0], "scarcely remember anything about it but i think it": [65535, 0], "remember anything about it but i think it was": [65535, 0], "anything about it but i think it was in": [65535, 0], "about it but i think it was in some": [65535, 0], "it but i think it was in some foreign": [65535, 0], "but i think it was in some foreign country": [65535, 0], "i think it was in some foreign country the": [65535, 0], "think it was in some foreign country the minister": [65535, 0], "it was in some foreign country the minister gave": [65535, 0], "was in some foreign country the minister gave out": [65535, 0], "in some foreign country the minister gave out the": [65535, 0], "some foreign country the minister gave out the hymn": [65535, 0], "foreign country the minister gave out the hymn and": [65535, 0], "country the minister gave out the hymn and read": [65535, 0], "the minister gave out the hymn and read it": [65535, 0], "minister gave out the hymn and read it through": [65535, 0], "gave out the hymn and read it through with": [65535, 0], "out the hymn and read it through with a": [65535, 0], "the hymn and read it through with a relish": [65535, 0], "hymn and read it through with a relish in": [65535, 0], "and read it through with a relish in a": [65535, 0], "read it through with a relish in a peculiar": [65535, 0], "it through with a relish in a peculiar style": [65535, 0], "through with a relish in a peculiar style which": [65535, 0], "with a relish in a peculiar style which was": [65535, 0], "a relish in a peculiar style which was much": [65535, 0], "relish in a peculiar style which was much admired": [65535, 0], "in a peculiar style which was much admired in": [65535, 0], "a peculiar style which was much admired in that": [65535, 0], "peculiar style which was much admired in that part": [65535, 0], "style which was much admired in that part of": [65535, 0], "which was much admired in that part of the": [65535, 0], "was much admired in that part of the country": [65535, 0], "much admired in that part of the country his": [65535, 0], "admired in that part of the country his voice": [65535, 0], "in that part of the country his voice began": [65535, 0], "that part of the country his voice began on": [65535, 0], "part of the country his voice began on a": [65535, 0], "of the country his voice began on a medium": [65535, 0], "the country his voice began on a medium key": [65535, 0], "country his voice began on a medium key and": [65535, 0], "his voice began on a medium key and climbed": [65535, 0], "voice began on a medium key and climbed steadily": [65535, 0], "began on a medium key and climbed steadily up": [65535, 0], "on a medium key and climbed steadily up till": [65535, 0], "a medium key and climbed steadily up till it": [65535, 0], "medium key and climbed steadily up till it reached": [65535, 0], "key and climbed steadily up till it reached a": [65535, 0], "and climbed steadily up till it reached a certain": [65535, 0], "climbed steadily up till it reached a certain point": [65535, 0], "steadily up till it reached a certain point where": [65535, 0], "up till it reached a certain point where it": [65535, 0], "till it reached a certain point where it bore": [65535, 0], "it reached a certain point where it bore with": [65535, 0], "reached a certain point where it bore with strong": [65535, 0], "a certain point where it bore with strong emphasis": [65535, 0], "certain point where it bore with strong emphasis upon": [65535, 0], "point where it bore with strong emphasis upon the": [65535, 0], "where it bore with strong emphasis upon the topmost": [65535, 0], "it bore with strong emphasis upon the topmost word": [65535, 0], "bore with strong emphasis upon the topmost word and": [65535, 0], "with strong emphasis upon the topmost word and then": [65535, 0], "strong emphasis upon the topmost word and then plunged": [65535, 0], "emphasis upon the topmost word and then plunged down": [65535, 0], "upon the topmost word and then plunged down as": [65535, 0], "the topmost word and then plunged down as if": [65535, 0], "topmost word and then plunged down as if from": [65535, 0], "word and then plunged down as if from a": [65535, 0], "and then plunged down as if from a spring": [65535, 0], "then plunged down as if from a spring board": [65535, 0], "plunged down as if from a spring board shall": [65535, 0], "down as if from a spring board shall i": [65535, 0], "as if from a spring board shall i be": [65535, 0], "if from a spring board shall i be car": [65535, 0], "from a spring board shall i be car ri": [65535, 0], "a spring board shall i be car ri ed": [65535, 0], "spring board shall i be car ri ed toe": [65535, 0], "board shall i be car ri ed toe the": [65535, 0], "shall i be car ri ed toe the skies": [65535, 0], "i be car ri ed toe the skies on": [65535, 0], "be car ri ed toe the skies on flow'ry": [65535, 0], "car ri ed toe the skies on flow'ry beds": [65535, 0], "ri ed toe the skies on flow'ry beds of": [65535, 0], "ed toe the skies on flow'ry beds of ease": [65535, 0], "toe the skies on flow'ry beds of ease whilst": [65535, 0], "the skies on flow'ry beds of ease whilst others": [65535, 0], "skies on flow'ry beds of ease whilst others fight": [65535, 0], "on flow'ry beds of ease whilst others fight to": [65535, 0], "flow'ry beds of ease whilst others fight to win": [65535, 0], "beds of ease whilst others fight to win the": [65535, 0], "of ease whilst others fight to win the prize": [65535, 0], "ease whilst others fight to win the prize and": [65535, 0], "whilst others fight to win the prize and sail": [65535, 0], "others fight to win the prize and sail thro'": [65535, 0], "fight to win the prize and sail thro' bloody": [65535, 0], "to win the prize and sail thro' bloody seas": [65535, 0], "win the prize and sail thro' bloody seas he": [65535, 0], "the prize and sail thro' bloody seas he was": [65535, 0], "prize and sail thro' bloody seas he was regarded": [65535, 0], "and sail thro' bloody seas he was regarded as": [65535, 0], "sail thro' bloody seas he was regarded as a": [65535, 0], "thro' bloody seas he was regarded as a wonderful": [65535, 0], "bloody seas he was regarded as a wonderful reader": [65535, 0], "seas he was regarded as a wonderful reader at": [65535, 0], "he was regarded as a wonderful reader at church": [65535, 0], "was regarded as a wonderful reader at church sociables": [65535, 0], "regarded as a wonderful reader at church sociables he": [65535, 0], "as a wonderful reader at church sociables he was": [65535, 0], "a wonderful reader at church sociables he was always": [65535, 0], "wonderful reader at church sociables he was always called": [65535, 0], "reader at church sociables he was always called upon": [65535, 0], "at church sociables he was always called upon to": [65535, 0], "church sociables he was always called upon to read": [65535, 0], "sociables he was always called upon to read poetry": [65535, 0], "he was always called upon to read poetry and": [65535, 0], "was always called upon to read poetry and when": [65535, 0], "always called upon to read poetry and when he": [65535, 0], "called upon to read poetry and when he was": [65535, 0], "upon to read poetry and when he was through": [65535, 0], "to read poetry and when he was through the": [65535, 0], "read poetry and when he was through the ladies": [65535, 0], "poetry and when he was through the ladies would": [65535, 0], "and when he was through the ladies would lift": [65535, 0], "when he was through the ladies would lift up": [65535, 0], "he was through the ladies would lift up their": [65535, 0], "was through the ladies would lift up their hands": [65535, 0], "through the ladies would lift up their hands and": [65535, 0], "the ladies would lift up their hands and let": [65535, 0], "ladies would lift up their hands and let them": [65535, 0], "would lift up their hands and let them fall": [65535, 0], "lift up their hands and let them fall helplessly": [65535, 0], "up their hands and let them fall helplessly in": [65535, 0], "their hands and let them fall helplessly in their": [65535, 0], "hands and let them fall helplessly in their laps": [65535, 0], "and let them fall helplessly in their laps and": [65535, 0], "let them fall helplessly in their laps and wall": [65535, 0], "them fall helplessly in their laps and wall their": [65535, 0], "fall helplessly in their laps and wall their eyes": [65535, 0], "helplessly in their laps and wall their eyes and": [65535, 0], "in their laps and wall their eyes and shake": [65535, 0], "their laps and wall their eyes and shake their": [65535, 0], "laps and wall their eyes and shake their heads": [65535, 0], "and wall their eyes and shake their heads as": [65535, 0], "wall their eyes and shake their heads as much": [65535, 0], "their eyes and shake their heads as much as": [65535, 0], "eyes and shake their heads as much as to": [65535, 0], "and shake their heads as much as to say": [65535, 0], "shake their heads as much as to say words": [65535, 0], "their heads as much as to say words cannot": [65535, 0], "heads as much as to say words cannot express": [65535, 0], "as much as to say words cannot express it": [65535, 0], "much as to say words cannot express it it": [65535, 0], "as to say words cannot express it it is": [65535, 0], "to say words cannot express it it is too": [65535, 0], "say words cannot express it it is too beautiful": [65535, 0], "words cannot express it it is too beautiful too": [65535, 0], "cannot express it it is too beautiful too beautiful": [65535, 0], "express it it is too beautiful too beautiful for": [65535, 0], "it it is too beautiful too beautiful for this": [65535, 0], "it is too beautiful too beautiful for this mortal": [65535, 0], "is too beautiful too beautiful for this mortal earth": [65535, 0], "too beautiful too beautiful for this mortal earth after": [65535, 0], "beautiful too beautiful for this mortal earth after the": [65535, 0], "too beautiful for this mortal earth after the hymn": [65535, 0], "beautiful for this mortal earth after the hymn had": [65535, 0], "for this mortal earth after the hymn had been": [65535, 0], "this mortal earth after the hymn had been sung": [65535, 0], "mortal earth after the hymn had been sung the": [65535, 0], "earth after the hymn had been sung the rev": [65535, 0], "after the hymn had been sung the rev mr": [65535, 0], "the hymn had been sung the rev mr sprague": [65535, 0], "hymn had been sung the rev mr sprague turned": [65535, 0], "had been sung the rev mr sprague turned himself": [65535, 0], "been sung the rev mr sprague turned himself into": [65535, 0], "sung the rev mr sprague turned himself into a": [65535, 0], "the rev mr sprague turned himself into a bulletin": [65535, 0], "rev mr sprague turned himself into a bulletin board": [65535, 0], "mr sprague turned himself into a bulletin board and": [65535, 0], "sprague turned himself into a bulletin board and read": [65535, 0], "turned himself into a bulletin board and read off": [65535, 0], "himself into a bulletin board and read off notices": [65535, 0], "into a bulletin board and read off notices of": [65535, 0], "a bulletin board and read off notices of meetings": [65535, 0], "bulletin board and read off notices of meetings and": [65535, 0], "board and read off notices of meetings and societies": [65535, 0], "and read off notices of meetings and societies and": [65535, 0], "read off notices of meetings and societies and things": [65535, 0], "off notices of meetings and societies and things till": [65535, 0], "notices of meetings and societies and things till it": [65535, 0], "of meetings and societies and things till it seemed": [65535, 0], "meetings and societies and things till it seemed that": [65535, 0], "and societies and things till it seemed that the": [65535, 0], "societies and things till it seemed that the list": [65535, 0], "and things till it seemed that the list would": [65535, 0], "things till it seemed that the list would stretch": [65535, 0], "till it seemed that the list would stretch out": [65535, 0], "it seemed that the list would stretch out to": [65535, 0], "seemed that the list would stretch out to the": [65535, 0], "that the list would stretch out to the crack": [65535, 0], "the list would stretch out to the crack of": [65535, 0], "list would stretch out to the crack of doom": [65535, 0], "would stretch out to the crack of doom a": [65535, 0], "stretch out to the crack of doom a queer": [65535, 0], "out to the crack of doom a queer custom": [65535, 0], "to the crack of doom a queer custom which": [65535, 0], "the crack of doom a queer custom which is": [65535, 0], "crack of doom a queer custom which is still": [65535, 0], "of doom a queer custom which is still kept": [65535, 0], "doom a queer custom which is still kept up": [65535, 0], "a queer custom which is still kept up in": [65535, 0], "queer custom which is still kept up in america": [65535, 0], "custom which is still kept up in america even": [65535, 0], "which is still kept up in america even in": [65535, 0], "is still kept up in america even in cities": [65535, 0], "still kept up in america even in cities away": [65535, 0], "kept up in america even in cities away here": [65535, 0], "up in america even in cities away here in": [65535, 0], "in america even in cities away here in this": [65535, 0], "america even in cities away here in this age": [65535, 0], "even in cities away here in this age of": [65535, 0], "in cities away here in this age of abundant": [65535, 0], "cities away here in this age of abundant newspapers": [65535, 0], "away here in this age of abundant newspapers often": [65535, 0], "here in this age of abundant newspapers often the": [65535, 0], "in this age of abundant newspapers often the less": [65535, 0], "this age of abundant newspapers often the less there": [65535, 0], "age of abundant newspapers often the less there is": [65535, 0], "of abundant newspapers often the less there is to": [65535, 0], "abundant newspapers often the less there is to justify": [65535, 0], "newspapers often the less there is to justify a": [65535, 0], "often the less there is to justify a traditional": [65535, 0], "the less there is to justify a traditional custom": [65535, 0], "less there is to justify a traditional custom the": [65535, 0], "there is to justify a traditional custom the harder": [65535, 0], "is to justify a traditional custom the harder it": [65535, 0], "to justify a traditional custom the harder it is": [65535, 0], "justify a traditional custom the harder it is to": [65535, 0], "a traditional custom the harder it is to get": [65535, 0], "traditional custom the harder it is to get rid": [65535, 0], "custom the harder it is to get rid of": [65535, 0], "the harder it is to get rid of it": [65535, 0], "harder it is to get rid of it and": [65535, 0], "it is to get rid of it and now": [65535, 0], "is to get rid of it and now the": [65535, 0], "to get rid of it and now the minister": [65535, 0], "get rid of it and now the minister prayed": [65535, 0], "rid of it and now the minister prayed a": [65535, 0], "of it and now the minister prayed a good": [65535, 0], "it and now the minister prayed a good generous": [65535, 0], "and now the minister prayed a good generous prayer": [65535, 0], "now the minister prayed a good generous prayer it": [65535, 0], "the minister prayed a good generous prayer it was": [65535, 0], "minister prayed a good generous prayer it was and": [65535, 0], "prayed a good generous prayer it was and went": [65535, 0], "a good generous prayer it was and went into": [65535, 0], "good generous prayer it was and went into details": [65535, 0], "generous prayer it was and went into details it": [65535, 0], "prayer it was and went into details it pleaded": [65535, 0], "it was and went into details it pleaded for": [65535, 0], "was and went into details it pleaded for the": [65535, 0], "and went into details it pleaded for the church": [65535, 0], "went into details it pleaded for the church and": [65535, 0], "into details it pleaded for the church and the": [65535, 0], "details it pleaded for the church and the little": [65535, 0], "it pleaded for the church and the little children": [65535, 0], "pleaded for the church and the little children of": [65535, 0], "for the church and the little children of the": [65535, 0], "the church and the little children of the church": [65535, 0], "church and the little children of the church for": [65535, 0], "and the little children of the church for the": [65535, 0], "the little children of the church for the other": [65535, 0], "little children of the church for the other churches": [65535, 0], "children of the church for the other churches of": [65535, 0], "of the church for the other churches of the": [65535, 0], "the church for the other churches of the village": [65535, 0], "church for the other churches of the village for": [65535, 0], "for the other churches of the village for the": [65535, 0], "the other churches of the village for the village": [65535, 0], "other churches of the village for the village itself": [65535, 0], "churches of the village for the village itself for": [65535, 0], "of the village for the village itself for the": [65535, 0], "the village for the village itself for the county": [65535, 0], "village for the village itself for the county for": [65535, 0], "for the village itself for the county for the": [65535, 0], "the village itself for the county for the state": [65535, 0], "village itself for the county for the state for": [65535, 0], "itself for the county for the state for the": [65535, 0], "for the county for the state for the state": [65535, 0], "the county for the state for the state officers": [65535, 0], "county for the state for the state officers for": [65535, 0], "for the state for the state officers for the": [65535, 0], "the state for the state officers for the united": [65535, 0], "state for the state officers for the united states": [65535, 0], "for the state officers for the united states for": [65535, 0], "the state officers for the united states for the": [65535, 0], "state officers for the united states for the churches": [65535, 0], "officers for the united states for the churches of": [65535, 0], "for the united states for the churches of the": [65535, 0], "the united states for the churches of the united": [65535, 0], "united states for the churches of the united states": [65535, 0], "states for the churches of the united states for": [65535, 0], "for the churches of the united states for congress": [65535, 0], "the churches of the united states for congress for": [65535, 0], "churches of the united states for congress for the": [65535, 0], "of the united states for congress for the president": [65535, 0], "the united states for congress for the president for": [65535, 0], "united states for congress for the president for the": [65535, 0], "states for congress for the president for the officers": [65535, 0], "for congress for the president for the officers of": [65535, 0], "congress for the president for the officers of the": [65535, 0], "for the president for the officers of the government": [65535, 0], "the president for the officers of the government for": [65535, 0], "president for the officers of the government for poor": [65535, 0], "for the officers of the government for poor sailors": [65535, 0], "the officers of the government for poor sailors tossed": [65535, 0], "officers of the government for poor sailors tossed by": [65535, 0], "of the government for poor sailors tossed by stormy": [65535, 0], "the government for poor sailors tossed by stormy seas": [65535, 0], "government for poor sailors tossed by stormy seas for": [65535, 0], "for poor sailors tossed by stormy seas for the": [65535, 0], "poor sailors tossed by stormy seas for the oppressed": [65535, 0], "sailors tossed by stormy seas for the oppressed millions": [65535, 0], "tossed by stormy seas for the oppressed millions groaning": [65535, 0], "by stormy seas for the oppressed millions groaning under": [65535, 0], "stormy seas for the oppressed millions groaning under the": [65535, 0], "seas for the oppressed millions groaning under the heel": [65535, 0], "for the oppressed millions groaning under the heel of": [65535, 0], "the oppressed millions groaning under the heel of european": [65535, 0], "oppressed millions groaning under the heel of european monarchies": [65535, 0], "millions groaning under the heel of european monarchies and": [65535, 0], "groaning under the heel of european monarchies and oriental": [65535, 0], "under the heel of european monarchies and oriental despotisms": [65535, 0], "the heel of european monarchies and oriental despotisms for": [65535, 0], "heel of european monarchies and oriental despotisms for such": [65535, 0], "of european monarchies and oriental despotisms for such as": [65535, 0], "european monarchies and oriental despotisms for such as have": [65535, 0], "monarchies and oriental despotisms for such as have the": [65535, 0], "and oriental despotisms for such as have the light": [65535, 0], "oriental despotisms for such as have the light and": [65535, 0], "despotisms for such as have the light and the": [65535, 0], "for such as have the light and the good": [65535, 0], "such as have the light and the good tidings": [65535, 0], "as have the light and the good tidings and": [65535, 0], "have the light and the good tidings and yet": [65535, 0], "the light and the good tidings and yet have": [65535, 0], "light and the good tidings and yet have not": [65535, 0], "and the good tidings and yet have not eyes": [65535, 0], "the good tidings and yet have not eyes to": [65535, 0], "good tidings and yet have not eyes to see": [65535, 0], "tidings and yet have not eyes to see nor": [65535, 0], "and yet have not eyes to see nor ears": [65535, 0], "yet have not eyes to see nor ears to": [65535, 0], "have not eyes to see nor ears to hear": [65535, 0], "not eyes to see nor ears to hear withal": [65535, 0], "eyes to see nor ears to hear withal for": [65535, 0], "to see nor ears to hear withal for the": [65535, 0], "see nor ears to hear withal for the heathen": [65535, 0], "nor ears to hear withal for the heathen in": [65535, 0], "ears to hear withal for the heathen in the": [65535, 0], "to hear withal for the heathen in the far": [65535, 0], "hear withal for the heathen in the far islands": [65535, 0], "withal for the heathen in the far islands of": [65535, 0], "for the heathen in the far islands of the": [65535, 0], "the heathen in the far islands of the sea": [65535, 0], "heathen in the far islands of the sea and": [65535, 0], "in the far islands of the sea and closed": [65535, 0], "the far islands of the sea and closed with": [65535, 0], "far islands of the sea and closed with a": [65535, 0], "islands of the sea and closed with a supplication": [65535, 0], "of the sea and closed with a supplication that": [65535, 0], "the sea and closed with a supplication that the": [65535, 0], "sea and closed with a supplication that the words": [65535, 0], "and closed with a supplication that the words he": [65535, 0], "closed with a supplication that the words he was": [65535, 0], "with a supplication that the words he was about": [65535, 0], "a supplication that the words he was about to": [65535, 0], "supplication that the words he was about to speak": [65535, 0], "that the words he was about to speak might": [65535, 0], "the words he was about to speak might find": [65535, 0], "words he was about to speak might find grace": [65535, 0], "he was about to speak might find grace and": [65535, 0], "was about to speak might find grace and favor": [65535, 0], "about to speak might find grace and favor and": [65535, 0], "to speak might find grace and favor and be": [65535, 0], "speak might find grace and favor and be as": [65535, 0], "might find grace and favor and be as seed": [65535, 0], "find grace and favor and be as seed sown": [65535, 0], "grace and favor and be as seed sown in": [65535, 0], "and favor and be as seed sown in fertile": [65535, 0], "favor and be as seed sown in fertile ground": [65535, 0], "and be as seed sown in fertile ground yielding": [65535, 0], "be as seed sown in fertile ground yielding in": [65535, 0], "as seed sown in fertile ground yielding in time": [65535, 0], "seed sown in fertile ground yielding in time a": [65535, 0], "sown in fertile ground yielding in time a grateful": [65535, 0], "in fertile ground yielding in time a grateful harvest": [65535, 0], "fertile ground yielding in time a grateful harvest of": [65535, 0], "ground yielding in time a grateful harvest of good": [65535, 0], "yielding in time a grateful harvest of good amen": [65535, 0], "in time a grateful harvest of good amen there": [65535, 0], "time a grateful harvest of good amen there was": [65535, 0], "a grateful harvest of good amen there was a": [65535, 0], "grateful harvest of good amen there was a rustling": [65535, 0], "harvest of good amen there was a rustling of": [65535, 0], "of good amen there was a rustling of dresses": [65535, 0], "good amen there was a rustling of dresses and": [65535, 0], "amen there was a rustling of dresses and the": [65535, 0], "there was a rustling of dresses and the standing": [65535, 0], "was a rustling of dresses and the standing congregation": [65535, 0], "a rustling of dresses and the standing congregation sat": [65535, 0], "rustling of dresses and the standing congregation sat down": [65535, 0], "of dresses and the standing congregation sat down the": [65535, 0], "dresses and the standing congregation sat down the boy": [65535, 0], "and the standing congregation sat down the boy whose": [65535, 0], "the standing congregation sat down the boy whose history": [65535, 0], "standing congregation sat down the boy whose history this": [65535, 0], "congregation sat down the boy whose history this book": [65535, 0], "sat down the boy whose history this book relates": [65535, 0], "down the boy whose history this book relates did": [65535, 0], "the boy whose history this book relates did not": [65535, 0], "boy whose history this book relates did not enjoy": [65535, 0], "whose history this book relates did not enjoy the": [65535, 0], "history this book relates did not enjoy the prayer": [65535, 0], "this book relates did not enjoy the prayer he": [65535, 0], "book relates did not enjoy the prayer he only": [65535, 0], "relates did not enjoy the prayer he only endured": [65535, 0], "did not enjoy the prayer he only endured it": [65535, 0], "not enjoy the prayer he only endured it if": [65535, 0], "enjoy the prayer he only endured it if he": [65535, 0], "the prayer he only endured it if he even": [65535, 0], "prayer he only endured it if he even did": [65535, 0], "he only endured it if he even did that": [65535, 0], "only endured it if he even did that much": [65535, 0], "endured it if he even did that much he": [65535, 0], "it if he even did that much he was": [65535, 0], "if he even did that much he was restive": [65535, 0], "he even did that much he was restive all": [65535, 0], "even did that much he was restive all through": [65535, 0], "did that much he was restive all through it": [65535, 0], "that much he was restive all through it he": [65535, 0], "much he was restive all through it he kept": [65535, 0], "he was restive all through it he kept tally": [65535, 0], "was restive all through it he kept tally of": [65535, 0], "restive all through it he kept tally of the": [65535, 0], "all through it he kept tally of the details": [65535, 0], "through it he kept tally of the details of": [65535, 0], "it he kept tally of the details of the": [65535, 0], "he kept tally of the details of the prayer": [65535, 0], "kept tally of the details of the prayer unconsciously": [65535, 0], "tally of the details of the prayer unconsciously for": [65535, 0], "of the details of the prayer unconsciously for he": [65535, 0], "the details of the prayer unconsciously for he was": [65535, 0], "details of the prayer unconsciously for he was not": [65535, 0], "of the prayer unconsciously for he was not listening": [65535, 0], "the prayer unconsciously for he was not listening but": [65535, 0], "prayer unconsciously for he was not listening but he": [65535, 0], "unconsciously for he was not listening but he knew": [65535, 0], "for he was not listening but he knew the": [65535, 0], "he was not listening but he knew the ground": [65535, 0], "was not listening but he knew the ground of": [65535, 0], "not listening but he knew the ground of old": [65535, 0], "listening but he knew the ground of old and": [65535, 0], "but he knew the ground of old and the": [65535, 0], "he knew the ground of old and the clergyman's": [65535, 0], "knew the ground of old and the clergyman's regular": [65535, 0], "the ground of old and the clergyman's regular route": [65535, 0], "ground of old and the clergyman's regular route over": [65535, 0], "of old and the clergyman's regular route over it": [65535, 0], "old and the clergyman's regular route over it and": [65535, 0], "and the clergyman's regular route over it and when": [65535, 0], "the clergyman's regular route over it and when a": [65535, 0], "clergyman's regular route over it and when a little": [65535, 0], "regular route over it and when a little trifle": [65535, 0], "route over it and when a little trifle of": [65535, 0], "over it and when a little trifle of new": [65535, 0], "it and when a little trifle of new matter": [65535, 0], "and when a little trifle of new matter was": [65535, 0], "when a little trifle of new matter was interlarded": [65535, 0], "a little trifle of new matter was interlarded his": [65535, 0], "little trifle of new matter was interlarded his ear": [65535, 0], "trifle of new matter was interlarded his ear detected": [65535, 0], "of new matter was interlarded his ear detected it": [65535, 0], "new matter was interlarded his ear detected it and": [65535, 0], "matter was interlarded his ear detected it and his": [65535, 0], "was interlarded his ear detected it and his whole": [65535, 0], "interlarded his ear detected it and his whole nature": [65535, 0], "his ear detected it and his whole nature resented": [65535, 0], "ear detected it and his whole nature resented it": [65535, 0], "detected it and his whole nature resented it he": [65535, 0], "it and his whole nature resented it he considered": [65535, 0], "and his whole nature resented it he considered additions": [65535, 0], "his whole nature resented it he considered additions unfair": [65535, 0], "whole nature resented it he considered additions unfair and": [65535, 0], "nature resented it he considered additions unfair and scoundrelly": [65535, 0], "resented it he considered additions unfair and scoundrelly in": [65535, 0], "it he considered additions unfair and scoundrelly in the": [65535, 0], "he considered additions unfair and scoundrelly in the midst": [65535, 0], "considered additions unfair and scoundrelly in the midst of": [65535, 0], "additions unfair and scoundrelly in the midst of the": [65535, 0], "unfair and scoundrelly in the midst of the prayer": [65535, 0], "and scoundrelly in the midst of the prayer a": [65535, 0], "scoundrelly in the midst of the prayer a fly": [65535, 0], "in the midst of the prayer a fly had": [65535, 0], "the midst of the prayer a fly had lit": [65535, 0], "midst of the prayer a fly had lit on": [65535, 0], "of the prayer a fly had lit on the": [65535, 0], "the prayer a fly had lit on the back": [65535, 0], "prayer a fly had lit on the back of": [65535, 0], "a fly had lit on the back of the": [65535, 0], "fly had lit on the back of the pew": [65535, 0], "had lit on the back of the pew in": [65535, 0], "lit on the back of the pew in front": [65535, 0], "on the back of the pew in front of": [65535, 0], "the back of the pew in front of him": [65535, 0], "back of the pew in front of him and": [65535, 0], "of the pew in front of him and tortured": [65535, 0], "the pew in front of him and tortured his": [65535, 0], "pew in front of him and tortured his spirit": [65535, 0], "in front of him and tortured his spirit by": [65535, 0], "front of him and tortured his spirit by calmly": [65535, 0], "of him and tortured his spirit by calmly rubbing": [65535, 0], "him and tortured his spirit by calmly rubbing its": [65535, 0], "and tortured his spirit by calmly rubbing its hands": [65535, 0], "tortured his spirit by calmly rubbing its hands together": [65535, 0], "his spirit by calmly rubbing its hands together embracing": [65535, 0], "spirit by calmly rubbing its hands together embracing its": [65535, 0], "by calmly rubbing its hands together embracing its head": [65535, 0], "calmly rubbing its hands together embracing its head with": [65535, 0], "rubbing its hands together embracing its head with its": [65535, 0], "its hands together embracing its head with its arms": [65535, 0], "hands together embracing its head with its arms and": [65535, 0], "together embracing its head with its arms and polishing": [65535, 0], "embracing its head with its arms and polishing it": [65535, 0], "its head with its arms and polishing it so": [65535, 0], "head with its arms and polishing it so vigorously": [65535, 0], "with its arms and polishing it so vigorously that": [65535, 0], "its arms and polishing it so vigorously that it": [65535, 0], "arms and polishing it so vigorously that it seemed": [65535, 0], "and polishing it so vigorously that it seemed to": [65535, 0], "polishing it so vigorously that it seemed to almost": [65535, 0], "it so vigorously that it seemed to almost part": [65535, 0], "so vigorously that it seemed to almost part company": [65535, 0], "vigorously that it seemed to almost part company with": [65535, 0], "that it seemed to almost part company with the": [65535, 0], "it seemed to almost part company with the body": [65535, 0], "seemed to almost part company with the body and": [65535, 0], "to almost part company with the body and the": [65535, 0], "almost part company with the body and the slender": [65535, 0], "part company with the body and the slender thread": [65535, 0], "company with the body and the slender thread of": [65535, 0], "with the body and the slender thread of a": [65535, 0], "the body and the slender thread of a neck": [65535, 0], "body and the slender thread of a neck was": [65535, 0], "and the slender thread of a neck was exposed": [65535, 0], "the slender thread of a neck was exposed to": [65535, 0], "slender thread of a neck was exposed to view": [65535, 0], "thread of a neck was exposed to view scraping": [65535, 0], "of a neck was exposed to view scraping its": [65535, 0], "a neck was exposed to view scraping its wings": [65535, 0], "neck was exposed to view scraping its wings with": [65535, 0], "was exposed to view scraping its wings with its": [65535, 0], "exposed to view scraping its wings with its hind": [65535, 0], "to view scraping its wings with its hind legs": [65535, 0], "view scraping its wings with its hind legs and": [65535, 0], "scraping its wings with its hind legs and smoothing": [65535, 0], "its wings with its hind legs and smoothing them": [65535, 0], "wings with its hind legs and smoothing them to": [65535, 0], "with its hind legs and smoothing them to its": [65535, 0], "its hind legs and smoothing them to its body": [65535, 0], "hind legs and smoothing them to its body as": [65535, 0], "legs and smoothing them to its body as if": [65535, 0], "and smoothing them to its body as if they": [65535, 0], "smoothing them to its body as if they had": [65535, 0], "them to its body as if they had been": [65535, 0], "to its body as if they had been coat": [65535, 0], "its body as if they had been coat tails": [65535, 0], "body as if they had been coat tails going": [65535, 0], "as if they had been coat tails going through": [65535, 0], "if they had been coat tails going through its": [65535, 0], "they had been coat tails going through its whole": [65535, 0], "had been coat tails going through its whole toilet": [65535, 0], "been coat tails going through its whole toilet as": [65535, 0], "coat tails going through its whole toilet as tranquilly": [65535, 0], "tails going through its whole toilet as tranquilly as": [65535, 0], "going through its whole toilet as tranquilly as if": [65535, 0], "through its whole toilet as tranquilly as if it": [65535, 0], "its whole toilet as tranquilly as if it knew": [65535, 0], "whole toilet as tranquilly as if it knew it": [65535, 0], "toilet as tranquilly as if it knew it was": [65535, 0], "as tranquilly as if it knew it was perfectly": [65535, 0], "tranquilly as if it knew it was perfectly safe": [65535, 0], "as if it knew it was perfectly safe as": [65535, 0], "if it knew it was perfectly safe as indeed": [65535, 0], "it knew it was perfectly safe as indeed it": [65535, 0], "knew it was perfectly safe as indeed it was": [65535, 0], "it was perfectly safe as indeed it was for": [65535, 0], "was perfectly safe as indeed it was for as": [65535, 0], "perfectly safe as indeed it was for as sorely": [65535, 0], "safe as indeed it was for as sorely as": [65535, 0], "as indeed it was for as sorely as tom's": [65535, 0], "indeed it was for as sorely as tom's hands": [65535, 0], "it was for as sorely as tom's hands itched": [65535, 0], "was for as sorely as tom's hands itched to": [65535, 0], "for as sorely as tom's hands itched to grab": [65535, 0], "as sorely as tom's hands itched to grab for": [65535, 0], "sorely as tom's hands itched to grab for it": [65535, 0], "as tom's hands itched to grab for it they": [65535, 0], "tom's hands itched to grab for it they did": [65535, 0], "hands itched to grab for it they did not": [65535, 0], "itched to grab for it they did not dare": [65535, 0], "to grab for it they did not dare he": [65535, 0], "grab for it they did not dare he believed": [65535, 0], "for it they did not dare he believed his": [65535, 0], "it they did not dare he believed his soul": [65535, 0], "they did not dare he believed his soul would": [65535, 0], "did not dare he believed his soul would be": [65535, 0], "not dare he believed his soul would be instantly": [65535, 0], "dare he believed his soul would be instantly destroyed": [65535, 0], "he believed his soul would be instantly destroyed if": [65535, 0], "believed his soul would be instantly destroyed if he": [65535, 0], "his soul would be instantly destroyed if he did": [65535, 0], "soul would be instantly destroyed if he did such": [65535, 0], "would be instantly destroyed if he did such a": [65535, 0], "be instantly destroyed if he did such a thing": [65535, 0], "instantly destroyed if he did such a thing while": [65535, 0], "destroyed if he did such a thing while the": [65535, 0], "if he did such a thing while the prayer": [65535, 0], "he did such a thing while the prayer was": [65535, 0], "did such a thing while the prayer was going": [65535, 0], "such a thing while the prayer was going on": [65535, 0], "a thing while the prayer was going on but": [65535, 0], "thing while the prayer was going on but with": [65535, 0], "while the prayer was going on but with the": [65535, 0], "the prayer was going on but with the closing": [65535, 0], "prayer was going on but with the closing sentence": [65535, 0], "was going on but with the closing sentence his": [65535, 0], "going on but with the closing sentence his hand": [65535, 0], "on but with the closing sentence his hand began": [65535, 0], "but with the closing sentence his hand began to": [65535, 0], "with the closing sentence his hand began to curve": [65535, 0], "the closing sentence his hand began to curve and": [65535, 0], "closing sentence his hand began to curve and steal": [65535, 0], "sentence his hand began to curve and steal forward": [65535, 0], "his hand began to curve and steal forward and": [65535, 0], "hand began to curve and steal forward and the": [65535, 0], "began to curve and steal forward and the instant": [65535, 0], "to curve and steal forward and the instant the": [65535, 0], "curve and steal forward and the instant the amen": [65535, 0], "and steal forward and the instant the amen was": [65535, 0], "steal forward and the instant the amen was out": [65535, 0], "forward and the instant the amen was out the": [65535, 0], "and the instant the amen was out the fly": [65535, 0], "the instant the amen was out the fly was": [65535, 0], "instant the amen was out the fly was a": [65535, 0], "the amen was out the fly was a prisoner": [65535, 0], "amen was out the fly was a prisoner of": [65535, 0], "was out the fly was a prisoner of war": [65535, 0], "out the fly was a prisoner of war his": [65535, 0], "the fly was a prisoner of war his aunt": [65535, 0], "fly was a prisoner of war his aunt detected": [65535, 0], "was a prisoner of war his aunt detected the": [65535, 0], "a prisoner of war his aunt detected the act": [65535, 0], "prisoner of war his aunt detected the act and": [65535, 0], "of war his aunt detected the act and made": [65535, 0], "war his aunt detected the act and made him": [65535, 0], "his aunt detected the act and made him let": [65535, 0], "aunt detected the act and made him let it": [65535, 0], "detected the act and made him let it go": [65535, 0], "the act and made him let it go the": [65535, 0], "act and made him let it go the minister": [65535, 0], "and made him let it go the minister gave": [65535, 0], "made him let it go the minister gave out": [65535, 0], "him let it go the minister gave out his": [65535, 0], "let it go the minister gave out his text": [65535, 0], "it go the minister gave out his text and": [65535, 0], "go the minister gave out his text and droned": [65535, 0], "the minister gave out his text and droned along": [65535, 0], "minister gave out his text and droned along monotonously": [65535, 0], "gave out his text and droned along monotonously through": [65535, 0], "out his text and droned along monotonously through an": [65535, 0], "his text and droned along monotonously through an argument": [65535, 0], "text and droned along monotonously through an argument that": [65535, 0], "and droned along monotonously through an argument that was": [65535, 0], "droned along monotonously through an argument that was so": [65535, 0], "along monotonously through an argument that was so prosy": [65535, 0], "monotonously through an argument that was so prosy that": [65535, 0], "through an argument that was so prosy that many": [65535, 0], "an argument that was so prosy that many a": [65535, 0], "argument that was so prosy that many a head": [65535, 0], "that was so prosy that many a head by": [65535, 0], "was so prosy that many a head by and": [65535, 0], "so prosy that many a head by and by": [65535, 0], "prosy that many a head by and by began": [65535, 0], "that many a head by and by began to": [65535, 0], "many a head by and by began to nod": [65535, 0], "a head by and by began to nod and": [65535, 0], "head by and by began to nod and yet": [65535, 0], "by and by began to nod and yet it": [65535, 0], "and by began to nod and yet it was": [65535, 0], "by began to nod and yet it was an": [65535, 0], "began to nod and yet it was an argument": [65535, 0], "to nod and yet it was an argument that": [65535, 0], "nod and yet it was an argument that dealt": [65535, 0], "and yet it was an argument that dealt in": [65535, 0], "yet it was an argument that dealt in limitless": [65535, 0], "it was an argument that dealt in limitless fire": [65535, 0], "was an argument that dealt in limitless fire and": [65535, 0], "an argument that dealt in limitless fire and brimstone": [65535, 0], "argument that dealt in limitless fire and brimstone and": [65535, 0], "that dealt in limitless fire and brimstone and thinned": [65535, 0], "dealt in limitless fire and brimstone and thinned the": [65535, 0], "in limitless fire and brimstone and thinned the predestined": [65535, 0], "limitless fire and brimstone and thinned the predestined elect": [65535, 0], "fire and brimstone and thinned the predestined elect down": [65535, 0], "and brimstone and thinned the predestined elect down to": [65535, 0], "brimstone and thinned the predestined elect down to a": [65535, 0], "and thinned the predestined elect down to a company": [65535, 0], "thinned the predestined elect down to a company so": [65535, 0], "the predestined elect down to a company so small": [65535, 0], "predestined elect down to a company so small as": [65535, 0], "elect down to a company so small as to": [65535, 0], "down to a company so small as to be": [65535, 0], "to a company so small as to be hardly": [65535, 0], "a company so small as to be hardly worth": [65535, 0], "company so small as to be hardly worth the": [65535, 0], "so small as to be hardly worth the saving": [65535, 0], "small as to be hardly worth the saving tom": [65535, 0], "as to be hardly worth the saving tom counted": [65535, 0], "to be hardly worth the saving tom counted the": [65535, 0], "be hardly worth the saving tom counted the pages": [65535, 0], "hardly worth the saving tom counted the pages of": [65535, 0], "worth the saving tom counted the pages of the": [65535, 0], "the saving tom counted the pages of the sermon": [65535, 0], "saving tom counted the pages of the sermon after": [65535, 0], "tom counted the pages of the sermon after church": [65535, 0], "counted the pages of the sermon after church he": [65535, 0], "the pages of the sermon after church he always": [65535, 0], "pages of the sermon after church he always knew": [65535, 0], "of the sermon after church he always knew how": [65535, 0], "the sermon after church he always knew how many": [65535, 0], "sermon after church he always knew how many pages": [65535, 0], "after church he always knew how many pages there": [65535, 0], "church he always knew how many pages there had": [65535, 0], "he always knew how many pages there had been": [65535, 0], "always knew how many pages there had been but": [65535, 0], "knew how many pages there had been but he": [65535, 0], "how many pages there had been but he seldom": [65535, 0], "many pages there had been but he seldom knew": [65535, 0], "pages there had been but he seldom knew anything": [65535, 0], "there had been but he seldom knew anything else": [65535, 0], "had been but he seldom knew anything else about": [65535, 0], "been but he seldom knew anything else about the": [65535, 0], "but he seldom knew anything else about the discourse": [65535, 0], "he seldom knew anything else about the discourse however": [65535, 0], "seldom knew anything else about the discourse however this": [65535, 0], "knew anything else about the discourse however this time": [65535, 0], "anything else about the discourse however this time he": [65535, 0], "else about the discourse however this time he was": [65535, 0], "about the discourse however this time he was really": [65535, 0], "the discourse however this time he was really interested": [65535, 0], "discourse however this time he was really interested for": [65535, 0], "however this time he was really interested for a": [65535, 0], "this time he was really interested for a little": [65535, 0], "time he was really interested for a little while": [65535, 0], "he was really interested for a little while the": [65535, 0], "was really interested for a little while the minister": [65535, 0], "really interested for a little while the minister made": [65535, 0], "interested for a little while the minister made a": [65535, 0], "for a little while the minister made a grand": [65535, 0], "a little while the minister made a grand and": [65535, 0], "little while the minister made a grand and moving": [65535, 0], "while the minister made a grand and moving picture": [65535, 0], "the minister made a grand and moving picture of": [65535, 0], "minister made a grand and moving picture of the": [65535, 0], "made a grand and moving picture of the assembling": [65535, 0], "a grand and moving picture of the assembling together": [65535, 0], "grand and moving picture of the assembling together of": [65535, 0], "and moving picture of the assembling together of the": [65535, 0], "moving picture of the assembling together of the world's": [65535, 0], "picture of the assembling together of the world's hosts": [65535, 0], "of the assembling together of the world's hosts at": [65535, 0], "the assembling together of the world's hosts at the": [65535, 0], "assembling together of the world's hosts at the millennium": [65535, 0], "together of the world's hosts at the millennium when": [65535, 0], "of the world's hosts at the millennium when the": [65535, 0], "the world's hosts at the millennium when the lion": [65535, 0], "world's hosts at the millennium when the lion and": [65535, 0], "hosts at the millennium when the lion and the": [65535, 0], "at the millennium when the lion and the lamb": [65535, 0], "the millennium when the lion and the lamb should": [65535, 0], "millennium when the lion and the lamb should lie": [65535, 0], "when the lion and the lamb should lie down": [65535, 0], "the lion and the lamb should lie down together": [65535, 0], "lion and the lamb should lie down together and": [65535, 0], "and the lamb should lie down together and a": [65535, 0], "the lamb should lie down together and a little": [65535, 0], "lamb should lie down together and a little child": [65535, 0], "should lie down together and a little child should": [65535, 0], "lie down together and a little child should lead": [65535, 0], "down together and a little child should lead them": [65535, 0], "together and a little child should lead them but": [65535, 0], "and a little child should lead them but the": [65535, 0], "a little child should lead them but the pathos": [65535, 0], "little child should lead them but the pathos the": [65535, 0], "child should lead them but the pathos the lesson": [65535, 0], "should lead them but the pathos the lesson the": [65535, 0], "lead them but the pathos the lesson the moral": [65535, 0], "them but the pathos the lesson the moral of": [65535, 0], "but the pathos the lesson the moral of the": [65535, 0], "the pathos the lesson the moral of the great": [65535, 0], "pathos the lesson the moral of the great spectacle": [65535, 0], "the lesson the moral of the great spectacle were": [65535, 0], "lesson the moral of the great spectacle were lost": [65535, 0], "the moral of the great spectacle were lost upon": [65535, 0], "moral of the great spectacle were lost upon the": [65535, 0], "of the great spectacle were lost upon the boy": [65535, 0], "the great spectacle were lost upon the boy he": [65535, 0], "great spectacle were lost upon the boy he only": [65535, 0], "spectacle were lost upon the boy he only thought": [65535, 0], "were lost upon the boy he only thought of": [65535, 0], "lost upon the boy he only thought of the": [65535, 0], "upon the boy he only thought of the conspicuousness": [65535, 0], "the boy he only thought of the conspicuousness of": [65535, 0], "boy he only thought of the conspicuousness of the": [65535, 0], "he only thought of the conspicuousness of the principal": [65535, 0], "only thought of the conspicuousness of the principal character": [65535, 0], "thought of the conspicuousness of the principal character before": [65535, 0], "of the conspicuousness of the principal character before the": [65535, 0], "the conspicuousness of the principal character before the on": [65535, 0], "conspicuousness of the principal character before the on looking": [65535, 0], "of the principal character before the on looking nations": [65535, 0], "the principal character before the on looking nations his": [65535, 0], "principal character before the on looking nations his face": [65535, 0], "character before the on looking nations his face lit": [65535, 0], "before the on looking nations his face lit with": [65535, 0], "the on looking nations his face lit with the": [65535, 0], "on looking nations his face lit with the thought": [65535, 0], "looking nations his face lit with the thought and": [65535, 0], "nations his face lit with the thought and he": [65535, 0], "his face lit with the thought and he said": [65535, 0], "face lit with the thought and he said to": [65535, 0], "lit with the thought and he said to himself": [65535, 0], "with the thought and he said to himself that": [65535, 0], "the thought and he said to himself that he": [65535, 0], "thought and he said to himself that he wished": [65535, 0], "and he said to himself that he wished he": [65535, 0], "he said to himself that he wished he could": [65535, 0], "said to himself that he wished he could be": [65535, 0], "to himself that he wished he could be that": [65535, 0], "himself that he wished he could be that child": [65535, 0], "that he wished he could be that child if": [65535, 0], "he wished he could be that child if it": [65535, 0], "wished he could be that child if it was": [65535, 0], "he could be that child if it was a": [65535, 0], "could be that child if it was a tame": [65535, 0], "be that child if it was a tame lion": [65535, 0], "that child if it was a tame lion now": [65535, 0], "child if it was a tame lion now he": [65535, 0], "if it was a tame lion now he lapsed": [65535, 0], "it was a tame lion now he lapsed into": [65535, 0], "was a tame lion now he lapsed into suffering": [65535, 0], "a tame lion now he lapsed into suffering again": [65535, 0], "tame lion now he lapsed into suffering again as": [65535, 0], "lion now he lapsed into suffering again as the": [65535, 0], "now he lapsed into suffering again as the dry": [65535, 0], "he lapsed into suffering again as the dry argument": [65535, 0], "lapsed into suffering again as the dry argument was": [65535, 0], "into suffering again as the dry argument was resumed": [65535, 0], "suffering again as the dry argument was resumed presently": [65535, 0], "again as the dry argument was resumed presently he": [65535, 0], "as the dry argument was resumed presently he bethought": [65535, 0], "the dry argument was resumed presently he bethought him": [65535, 0], "dry argument was resumed presently he bethought him of": [65535, 0], "argument was resumed presently he bethought him of a": [65535, 0], "was resumed presently he bethought him of a treasure": [65535, 0], "resumed presently he bethought him of a treasure he": [65535, 0], "presently he bethought him of a treasure he had": [65535, 0], "he bethought him of a treasure he had and": [65535, 0], "bethought him of a treasure he had and got": [65535, 0], "him of a treasure he had and got it": [65535, 0], "of a treasure he had and got it out": [65535, 0], "a treasure he had and got it out it": [65535, 0], "treasure he had and got it out it was": [65535, 0], "he had and got it out it was a": [65535, 0], "had and got it out it was a large": [65535, 0], "and got it out it was a large black": [65535, 0], "got it out it was a large black beetle": [65535, 0], "it out it was a large black beetle with": [65535, 0], "out it was a large black beetle with formidable": [65535, 0], "it was a large black beetle with formidable jaws": [65535, 0], "was a large black beetle with formidable jaws a": [65535, 0], "a large black beetle with formidable jaws a pinchbug": [65535, 0], "large black beetle with formidable jaws a pinchbug he": [65535, 0], "black beetle with formidable jaws a pinchbug he called": [65535, 0], "beetle with formidable jaws a pinchbug he called it": [65535, 0], "with formidable jaws a pinchbug he called it it": [65535, 0], "formidable jaws a pinchbug he called it it was": [65535, 0], "jaws a pinchbug he called it it was in": [65535, 0], "a pinchbug he called it it was in a": [65535, 0], "pinchbug he called it it was in a percussion": [65535, 0], "he called it it was in a percussion cap": [65535, 0], "called it it was in a percussion cap box": [65535, 0], "it it was in a percussion cap box the": [65535, 0], "it was in a percussion cap box the first": [65535, 0], "was in a percussion cap box the first thing": [65535, 0], "in a percussion cap box the first thing the": [65535, 0], "a percussion cap box the first thing the beetle": [65535, 0], "percussion cap box the first thing the beetle did": [65535, 0], "cap box the first thing the beetle did was": [65535, 0], "box the first thing the beetle did was to": [65535, 0], "the first thing the beetle did was to take": [65535, 0], "first thing the beetle did was to take him": [65535, 0], "thing the beetle did was to take him by": [65535, 0], "the beetle did was to take him by the": [65535, 0], "beetle did was to take him by the finger": [65535, 0], "did was to take him by the finger a": [65535, 0], "was to take him by the finger a natural": [65535, 0], "to take him by the finger a natural fillip": [65535, 0], "take him by the finger a natural fillip followed": [65535, 0], "him by the finger a natural fillip followed the": [65535, 0], "by the finger a natural fillip followed the beetle": [65535, 0], "the finger a natural fillip followed the beetle went": [65535, 0], "finger a natural fillip followed the beetle went floundering": [65535, 0], "a natural fillip followed the beetle went floundering into": [65535, 0], "natural fillip followed the beetle went floundering into the": [65535, 0], "fillip followed the beetle went floundering into the aisle": [65535, 0], "followed the beetle went floundering into the aisle and": [65535, 0], "the beetle went floundering into the aisle and lit": [65535, 0], "beetle went floundering into the aisle and lit on": [65535, 0], "went floundering into the aisle and lit on its": [65535, 0], "floundering into the aisle and lit on its back": [65535, 0], "into the aisle and lit on its back and": [65535, 0], "the aisle and lit on its back and the": [65535, 0], "aisle and lit on its back and the hurt": [65535, 0], "and lit on its back and the hurt finger": [65535, 0], "lit on its back and the hurt finger went": [65535, 0], "on its back and the hurt finger went into": [65535, 0], "its back and the hurt finger went into the": [65535, 0], "back and the hurt finger went into the boy's": [65535, 0], "and the hurt finger went into the boy's mouth": [65535, 0], "the hurt finger went into the boy's mouth the": [65535, 0], "hurt finger went into the boy's mouth the beetle": [65535, 0], "finger went into the boy's mouth the beetle lay": [65535, 0], "went into the boy's mouth the beetle lay there": [65535, 0], "into the boy's mouth the beetle lay there working": [65535, 0], "the boy's mouth the beetle lay there working its": [65535, 0], "boy's mouth the beetle lay there working its helpless": [65535, 0], "mouth the beetle lay there working its helpless legs": [65535, 0], "the beetle lay there working its helpless legs unable": [65535, 0], "beetle lay there working its helpless legs unable to": [65535, 0], "lay there working its helpless legs unable to turn": [65535, 0], "there working its helpless legs unable to turn over": [65535, 0], "working its helpless legs unable to turn over tom": [65535, 0], "its helpless legs unable to turn over tom eyed": [65535, 0], "helpless legs unable to turn over tom eyed it": [65535, 0], "legs unable to turn over tom eyed it and": [65535, 0], "unable to turn over tom eyed it and longed": [65535, 0], "to turn over tom eyed it and longed for": [65535, 0], "turn over tom eyed it and longed for it": [65535, 0], "over tom eyed it and longed for it but": [65535, 0], "tom eyed it and longed for it but it": [65535, 0], "eyed it and longed for it but it was": [65535, 0], "it and longed for it but it was safe": [65535, 0], "and longed for it but it was safe out": [65535, 0], "longed for it but it was safe out of": [65535, 0], "for it but it was safe out of his": [65535, 0], "it but it was safe out of his reach": [65535, 0], "but it was safe out of his reach other": [65535, 0], "it was safe out of his reach other people": [65535, 0], "was safe out of his reach other people uninterested": [65535, 0], "safe out of his reach other people uninterested in": [65535, 0], "out of his reach other people uninterested in the": [65535, 0], "of his reach other people uninterested in the sermon": [65535, 0], "his reach other people uninterested in the sermon found": [65535, 0], "reach other people uninterested in the sermon found relief": [65535, 0], "other people uninterested in the sermon found relief in": [65535, 0], "people uninterested in the sermon found relief in the": [65535, 0], "uninterested in the sermon found relief in the beetle": [65535, 0], "in the sermon found relief in the beetle and": [65535, 0], "the sermon found relief in the beetle and they": [65535, 0], "sermon found relief in the beetle and they eyed": [65535, 0], "found relief in the beetle and they eyed it": [65535, 0], "relief in the beetle and they eyed it too": [65535, 0], "in the beetle and they eyed it too presently": [65535, 0], "the beetle and they eyed it too presently a": [65535, 0], "beetle and they eyed it too presently a vagrant": [65535, 0], "and they eyed it too presently a vagrant poodle": [65535, 0], "they eyed it too presently a vagrant poodle dog": [65535, 0], "eyed it too presently a vagrant poodle dog came": [65535, 0], "it too presently a vagrant poodle dog came idling": [65535, 0], "too presently a vagrant poodle dog came idling along": [65535, 0], "presently a vagrant poodle dog came idling along sad": [65535, 0], "a vagrant poodle dog came idling along sad at": [65535, 0], "vagrant poodle dog came idling along sad at heart": [65535, 0], "poodle dog came idling along sad at heart lazy": [65535, 0], "dog came idling along sad at heart lazy with": [65535, 0], "came idling along sad at heart lazy with the": [65535, 0], "idling along sad at heart lazy with the summer": [65535, 0], "along sad at heart lazy with the summer softness": [65535, 0], "sad at heart lazy with the summer softness and": [65535, 0], "at heart lazy with the summer softness and the": [65535, 0], "heart lazy with the summer softness and the quiet": [65535, 0], "lazy with the summer softness and the quiet weary": [65535, 0], "with the summer softness and the quiet weary of": [65535, 0], "the summer softness and the quiet weary of captivity": [65535, 0], "summer softness and the quiet weary of captivity sighing": [65535, 0], "softness and the quiet weary of captivity sighing for": [65535, 0], "and the quiet weary of captivity sighing for change": [65535, 0], "the quiet weary of captivity sighing for change he": [65535, 0], "quiet weary of captivity sighing for change he spied": [65535, 0], "weary of captivity sighing for change he spied the": [65535, 0], "of captivity sighing for change he spied the beetle": [65535, 0], "captivity sighing for change he spied the beetle the": [65535, 0], "sighing for change he spied the beetle the drooping": [65535, 0], "for change he spied the beetle the drooping tail": [65535, 0], "change he spied the beetle the drooping tail lifted": [65535, 0], "he spied the beetle the drooping tail lifted and": [65535, 0], "spied the beetle the drooping tail lifted and wagged": [65535, 0], "the beetle the drooping tail lifted and wagged he": [65535, 0], "beetle the drooping tail lifted and wagged he surveyed": [65535, 0], "the drooping tail lifted and wagged he surveyed the": [65535, 0], "drooping tail lifted and wagged he surveyed the prize": [65535, 0], "tail lifted and wagged he surveyed the prize walked": [65535, 0], "lifted and wagged he surveyed the prize walked around": [65535, 0], "and wagged he surveyed the prize walked around it": [65535, 0], "wagged he surveyed the prize walked around it smelt": [65535, 0], "he surveyed the prize walked around it smelt at": [65535, 0], "surveyed the prize walked around it smelt at it": [65535, 0], "the prize walked around it smelt at it from": [65535, 0], "prize walked around it smelt at it from a": [65535, 0], "walked around it smelt at it from a safe": [65535, 0], "around it smelt at it from a safe distance": [65535, 0], "it smelt at it from a safe distance walked": [65535, 0], "smelt at it from a safe distance walked around": [65535, 0], "at it from a safe distance walked around it": [65535, 0], "it from a safe distance walked around it again": [65535, 0], "from a safe distance walked around it again grew": [65535, 0], "a safe distance walked around it again grew bolder": [65535, 0], "safe distance walked around it again grew bolder and": [65535, 0], "distance walked around it again grew bolder and took": [65535, 0], "walked around it again grew bolder and took a": [65535, 0], "around it again grew bolder and took a closer": [65535, 0], "it again grew bolder and took a closer smell": [65535, 0], "again grew bolder and took a closer smell then": [65535, 0], "grew bolder and took a closer smell then lifted": [65535, 0], "bolder and took a closer smell then lifted his": [65535, 0], "and took a closer smell then lifted his lip": [65535, 0], "took a closer smell then lifted his lip and": [65535, 0], "a closer smell then lifted his lip and made": [65535, 0], "closer smell then lifted his lip and made a": [65535, 0], "smell then lifted his lip and made a gingerly": [65535, 0], "then lifted his lip and made a gingerly snatch": [65535, 0], "lifted his lip and made a gingerly snatch at": [65535, 0], "his lip and made a gingerly snatch at it": [65535, 0], "lip and made a gingerly snatch at it just": [65535, 0], "and made a gingerly snatch at it just missing": [65535, 0], "made a gingerly snatch at it just missing it": [65535, 0], "a gingerly snatch at it just missing it made": [65535, 0], "gingerly snatch at it just missing it made another": [65535, 0], "snatch at it just missing it made another and": [65535, 0], "at it just missing it made another and another": [65535, 0], "it just missing it made another and another began": [65535, 0], "just missing it made another and another began to": [65535, 0], "missing it made another and another began to enjoy": [65535, 0], "it made another and another began to enjoy the": [65535, 0], "made another and another began to enjoy the diversion": [65535, 0], "another and another began to enjoy the diversion subsided": [65535, 0], "and another began to enjoy the diversion subsided to": [65535, 0], "another began to enjoy the diversion subsided to his": [65535, 0], "began to enjoy the diversion subsided to his stomach": [65535, 0], "to enjoy the diversion subsided to his stomach with": [65535, 0], "enjoy the diversion subsided to his stomach with the": [65535, 0], "the diversion subsided to his stomach with the beetle": [65535, 0], "diversion subsided to his stomach with the beetle between": [65535, 0], "subsided to his stomach with the beetle between his": [65535, 0], "to his stomach with the beetle between his paws": [65535, 0], "his stomach with the beetle between his paws and": [65535, 0], "stomach with the beetle between his paws and continued": [65535, 0], "with the beetle between his paws and continued his": [65535, 0], "the beetle between his paws and continued his experiments": [65535, 0], "beetle between his paws and continued his experiments grew": [65535, 0], "between his paws and continued his experiments grew weary": [65535, 0], "his paws and continued his experiments grew weary at": [65535, 0], "paws and continued his experiments grew weary at last": [65535, 0], "and continued his experiments grew weary at last and": [65535, 0], "continued his experiments grew weary at last and then": [65535, 0], "his experiments grew weary at last and then indifferent": [65535, 0], "experiments grew weary at last and then indifferent and": [65535, 0], "grew weary at last and then indifferent and absent": [65535, 0], "weary at last and then indifferent and absent minded": [65535, 0], "at last and then indifferent and absent minded his": [65535, 0], "last and then indifferent and absent minded his head": [65535, 0], "and then indifferent and absent minded his head nodded": [65535, 0], "then indifferent and absent minded his head nodded and": [65535, 0], "indifferent and absent minded his head nodded and little": [65535, 0], "and absent minded his head nodded and little by": [65535, 0], "absent minded his head nodded and little by little": [65535, 0], "minded his head nodded and little by little his": [65535, 0], "his head nodded and little by little his chin": [65535, 0], "head nodded and little by little his chin descended": [65535, 0], "nodded and little by little his chin descended and": [65535, 0], "and little by little his chin descended and touched": [65535, 0], "little by little his chin descended and touched the": [65535, 0], "by little his chin descended and touched the enemy": [65535, 0], "little his chin descended and touched the enemy who": [65535, 0], "his chin descended and touched the enemy who seized": [65535, 0], "chin descended and touched the enemy who seized it": [65535, 0], "descended and touched the enemy who seized it there": [65535, 0], "and touched the enemy who seized it there was": [65535, 0], "touched the enemy who seized it there was a": [65535, 0], "the enemy who seized it there was a sharp": [65535, 0], "enemy who seized it there was a sharp yelp": [65535, 0], "who seized it there was a sharp yelp a": [65535, 0], "seized it there was a sharp yelp a flirt": [65535, 0], "it there was a sharp yelp a flirt of": [65535, 0], "there was a sharp yelp a flirt of the": [65535, 0], "was a sharp yelp a flirt of the poodle's": [65535, 0], "a sharp yelp a flirt of the poodle's head": [65535, 0], "sharp yelp a flirt of the poodle's head and": [65535, 0], "yelp a flirt of the poodle's head and the": [65535, 0], "a flirt of the poodle's head and the beetle": [65535, 0], "flirt of the poodle's head and the beetle fell": [65535, 0], "of the poodle's head and the beetle fell a": [65535, 0], "the poodle's head and the beetle fell a couple": [65535, 0], "poodle's head and the beetle fell a couple of": [65535, 0], "head and the beetle fell a couple of yards": [65535, 0], "and the beetle fell a couple of yards away": [65535, 0], "the beetle fell a couple of yards away and": [65535, 0], "beetle fell a couple of yards away and lit": [65535, 0], "fell a couple of yards away and lit on": [65535, 0], "a couple of yards away and lit on its": [65535, 0], "couple of yards away and lit on its back": [65535, 0], "of yards away and lit on its back once": [65535, 0], "yards away and lit on its back once more": [65535, 0], "away and lit on its back once more the": [65535, 0], "and lit on its back once more the neighboring": [65535, 0], "lit on its back once more the neighboring spectators": [65535, 0], "on its back once more the neighboring spectators shook": [65535, 0], "its back once more the neighboring spectators shook with": [65535, 0], "back once more the neighboring spectators shook with a": [65535, 0], "once more the neighboring spectators shook with a gentle": [65535, 0], "more the neighboring spectators shook with a gentle inward": [65535, 0], "the neighboring spectators shook with a gentle inward joy": [65535, 0], "neighboring spectators shook with a gentle inward joy several": [65535, 0], "spectators shook with a gentle inward joy several faces": [65535, 0], "shook with a gentle inward joy several faces went": [65535, 0], "with a gentle inward joy several faces went behind": [65535, 0], "a gentle inward joy several faces went behind fans": [65535, 0], "gentle inward joy several faces went behind fans and": [65535, 0], "inward joy several faces went behind fans and handkerchiefs": [65535, 0], "joy several faces went behind fans and handkerchiefs and": [65535, 0], "several faces went behind fans and handkerchiefs and tom": [65535, 0], "faces went behind fans and handkerchiefs and tom was": [65535, 0], "went behind fans and handkerchiefs and tom was entirely": [65535, 0], "behind fans and handkerchiefs and tom was entirely happy": [65535, 0], "fans and handkerchiefs and tom was entirely happy the": [65535, 0], "and handkerchiefs and tom was entirely happy the dog": [65535, 0], "handkerchiefs and tom was entirely happy the dog looked": [65535, 0], "and tom was entirely happy the dog looked foolish": [65535, 0], "tom was entirely happy the dog looked foolish and": [65535, 0], "was entirely happy the dog looked foolish and probably": [65535, 0], "entirely happy the dog looked foolish and probably felt": [65535, 0], "happy the dog looked foolish and probably felt so": [65535, 0], "the dog looked foolish and probably felt so but": [65535, 0], "dog looked foolish and probably felt so but there": [65535, 0], "looked foolish and probably felt so but there was": [65535, 0], "foolish and probably felt so but there was resentment": [65535, 0], "and probably felt so but there was resentment in": [65535, 0], "probably felt so but there was resentment in his": [65535, 0], "felt so but there was resentment in his heart": [65535, 0], "so but there was resentment in his heart too": [65535, 0], "but there was resentment in his heart too and": [65535, 0], "there was resentment in his heart too and a": [65535, 0], "was resentment in his heart too and a craving": [65535, 0], "resentment in his heart too and a craving for": [65535, 0], "in his heart too and a craving for revenge": [65535, 0], "his heart too and a craving for revenge so": [65535, 0], "heart too and a craving for revenge so he": [65535, 0], "too and a craving for revenge so he went": [65535, 0], "and a craving for revenge so he went to": [65535, 0], "a craving for revenge so he went to the": [65535, 0], "craving for revenge so he went to the beetle": [65535, 0], "for revenge so he went to the beetle and": [65535, 0], "revenge so he went to the beetle and began": [65535, 0], "so he went to the beetle and began a": [65535, 0], "he went to the beetle and began a wary": [65535, 0], "went to the beetle and began a wary attack": [65535, 0], "to the beetle and began a wary attack on": [65535, 0], "the beetle and began a wary attack on it": [65535, 0], "beetle and began a wary attack on it again": [65535, 0], "and began a wary attack on it again jumping": [65535, 0], "began a wary attack on it again jumping at": [65535, 0], "a wary attack on it again jumping at it": [65535, 0], "wary attack on it again jumping at it from": [65535, 0], "attack on it again jumping at it from every": [65535, 0], "on it again jumping at it from every point": [65535, 0], "it again jumping at it from every point of": [65535, 0], "again jumping at it from every point of a": [65535, 0], "jumping at it from every point of a circle": [65535, 0], "at it from every point of a circle lighting": [65535, 0], "it from every point of a circle lighting with": [65535, 0], "from every point of a circle lighting with his": [65535, 0], "every point of a circle lighting with his fore": [65535, 0], "point of a circle lighting with his fore paws": [65535, 0], "of a circle lighting with his fore paws within": [65535, 0], "a circle lighting with his fore paws within an": [65535, 0], "circle lighting with his fore paws within an inch": [65535, 0], "lighting with his fore paws within an inch of": [65535, 0], "with his fore paws within an inch of the": [65535, 0], "his fore paws within an inch of the creature": [65535, 0], "fore paws within an inch of the creature making": [65535, 0], "paws within an inch of the creature making even": [65535, 0], "within an inch of the creature making even closer": [65535, 0], "an inch of the creature making even closer snatches": [65535, 0], "inch of the creature making even closer snatches at": [65535, 0], "of the creature making even closer snatches at it": [65535, 0], "the creature making even closer snatches at it with": [65535, 0], "creature making even closer snatches at it with his": [65535, 0], "making even closer snatches at it with his teeth": [65535, 0], "even closer snatches at it with his teeth and": [65535, 0], "closer snatches at it with his teeth and jerking": [65535, 0], "snatches at it with his teeth and jerking his": [65535, 0], "at it with his teeth and jerking his head": [65535, 0], "it with his teeth and jerking his head till": [65535, 0], "with his teeth and jerking his head till his": [65535, 0], "his teeth and jerking his head till his ears": [65535, 0], "teeth and jerking his head till his ears flapped": [65535, 0], "and jerking his head till his ears flapped again": [65535, 0], "jerking his head till his ears flapped again but": [65535, 0], "his head till his ears flapped again but he": [65535, 0], "head till his ears flapped again but he grew": [65535, 0], "till his ears flapped again but he grew tired": [65535, 0], "his ears flapped again but he grew tired once": [65535, 0], "ears flapped again but he grew tired once more": [65535, 0], "flapped again but he grew tired once more after": [65535, 0], "again but he grew tired once more after a": [65535, 0], "but he grew tired once more after a while": [65535, 0], "he grew tired once more after a while tried": [65535, 0], "grew tired once more after a while tried to": [65535, 0], "tired once more after a while tried to amuse": [65535, 0], "once more after a while tried to amuse himself": [65535, 0], "more after a while tried to amuse himself with": [65535, 0], "after a while tried to amuse himself with a": [65535, 0], "a while tried to amuse himself with a fly": [65535, 0], "while tried to amuse himself with a fly but": [65535, 0], "tried to amuse himself with a fly but found": [65535, 0], "to amuse himself with a fly but found no": [65535, 0], "amuse himself with a fly but found no relief": [65535, 0], "himself with a fly but found no relief followed": [65535, 0], "with a fly but found no relief followed an": [65535, 0], "a fly but found no relief followed an ant": [65535, 0], "fly but found no relief followed an ant around": [65535, 0], "but found no relief followed an ant around with": [65535, 0], "found no relief followed an ant around with his": [65535, 0], "no relief followed an ant around with his nose": [65535, 0], "relief followed an ant around with his nose close": [65535, 0], "followed an ant around with his nose close to": [65535, 0], "an ant around with his nose close to the": [65535, 0], "ant around with his nose close to the floor": [65535, 0], "around with his nose close to the floor and": [65535, 0], "with his nose close to the floor and quickly": [65535, 0], "his nose close to the floor and quickly wearied": [65535, 0], "nose close to the floor and quickly wearied of": [65535, 0], "close to the floor and quickly wearied of that": [65535, 0], "to the floor and quickly wearied of that yawned": [65535, 0], "the floor and quickly wearied of that yawned sighed": [65535, 0], "floor and quickly wearied of that yawned sighed forgot": [65535, 0], "and quickly wearied of that yawned sighed forgot the": [65535, 0], "quickly wearied of that yawned sighed forgot the beetle": [65535, 0], "wearied of that yawned sighed forgot the beetle entirely": [65535, 0], "of that yawned sighed forgot the beetle entirely and": [65535, 0], "that yawned sighed forgot the beetle entirely and sat": [65535, 0], "yawned sighed forgot the beetle entirely and sat down": [65535, 0], "sighed forgot the beetle entirely and sat down on": [65535, 0], "forgot the beetle entirely and sat down on it": [65535, 0], "the beetle entirely and sat down on it then": [65535, 0], "beetle entirely and sat down on it then there": [65535, 0], "entirely and sat down on it then there was": [65535, 0], "and sat down on it then there was a": [65535, 0], "sat down on it then there was a wild": [65535, 0], "down on it then there was a wild yelp": [65535, 0], "on it then there was a wild yelp of": [65535, 0], "it then there was a wild yelp of agony": [65535, 0], "then there was a wild yelp of agony and": [65535, 0], "there was a wild yelp of agony and the": [65535, 0], "was a wild yelp of agony and the poodle": [65535, 0], "a wild yelp of agony and the poodle went": [65535, 0], "wild yelp of agony and the poodle went sailing": [65535, 0], "yelp of agony and the poodle went sailing up": [65535, 0], "of agony and the poodle went sailing up the": [65535, 0], "agony and the poodle went sailing up the aisle": [65535, 0], "and the poodle went sailing up the aisle the": [65535, 0], "the poodle went sailing up the aisle the yelps": [65535, 0], "poodle went sailing up the aisle the yelps continued": [65535, 0], "went sailing up the aisle the yelps continued and": [65535, 0], "sailing up the aisle the yelps continued and so": [65535, 0], "up the aisle the yelps continued and so did": [65535, 0], "the aisle the yelps continued and so did the": [65535, 0], "aisle the yelps continued and so did the dog": [65535, 0], "the yelps continued and so did the dog he": [65535, 0], "yelps continued and so did the dog he crossed": [65535, 0], "continued and so did the dog he crossed the": [65535, 0], "and so did the dog he crossed the house": [65535, 0], "so did the dog he crossed the house in": [65535, 0], "did the dog he crossed the house in front": [65535, 0], "the dog he crossed the house in front of": [65535, 0], "dog he crossed the house in front of the": [65535, 0], "he crossed the house in front of the altar": [65535, 0], "crossed the house in front of the altar he": [65535, 0], "the house in front of the altar he flew": [65535, 0], "house in front of the altar he flew down": [65535, 0], "in front of the altar he flew down the": [65535, 0], "front of the altar he flew down the other": [65535, 0], "of the altar he flew down the other aisle": [65535, 0], "the altar he flew down the other aisle he": [65535, 0], "altar he flew down the other aisle he crossed": [65535, 0], "he flew down the other aisle he crossed before": [65535, 0], "flew down the other aisle he crossed before the": [65535, 0], "down the other aisle he crossed before the doors": [65535, 0], "the other aisle he crossed before the doors he": [65535, 0], "other aisle he crossed before the doors he clamored": [65535, 0], "aisle he crossed before the doors he clamored up": [65535, 0], "he crossed before the doors he clamored up the": [65535, 0], "crossed before the doors he clamored up the home": [65535, 0], "before the doors he clamored up the home stretch": [65535, 0], "the doors he clamored up the home stretch his": [65535, 0], "doors he clamored up the home stretch his anguish": [65535, 0], "he clamored up the home stretch his anguish grew": [65535, 0], "clamored up the home stretch his anguish grew with": [65535, 0], "up the home stretch his anguish grew with his": [65535, 0], "the home stretch his anguish grew with his progress": [65535, 0], "home stretch his anguish grew with his progress till": [65535, 0], "stretch his anguish grew with his progress till presently": [65535, 0], "his anguish grew with his progress till presently he": [65535, 0], "anguish grew with his progress till presently he was": [65535, 0], "grew with his progress till presently he was but": [65535, 0], "with his progress till presently he was but a": [65535, 0], "his progress till presently he was but a woolly": [65535, 0], "progress till presently he was but a woolly comet": [65535, 0], "till presently he was but a woolly comet moving": [65535, 0], "presently he was but a woolly comet moving in": [65535, 0], "he was but a woolly comet moving in its": [65535, 0], "was but a woolly comet moving in its orbit": [65535, 0], "but a woolly comet moving in its orbit with": [65535, 0], "a woolly comet moving in its orbit with the": [65535, 0], "woolly comet moving in its orbit with the gleam": [65535, 0], "comet moving in its orbit with the gleam and": [65535, 0], "moving in its orbit with the gleam and the": [65535, 0], "in its orbit with the gleam and the speed": [65535, 0], "its orbit with the gleam and the speed of": [65535, 0], "orbit with the gleam and the speed of light": [65535, 0], "with the gleam and the speed of light at": [65535, 0], "the gleam and the speed of light at last": [65535, 0], "gleam and the speed of light at last the": [65535, 0], "and the speed of light at last the frantic": [65535, 0], "the speed of light at last the frantic sufferer": [65535, 0], "speed of light at last the frantic sufferer sheered": [65535, 0], "of light at last the frantic sufferer sheered from": [65535, 0], "light at last the frantic sufferer sheered from its": [65535, 0], "at last the frantic sufferer sheered from its course": [65535, 0], "last the frantic sufferer sheered from its course and": [65535, 0], "the frantic sufferer sheered from its course and sprang": [65535, 0], "frantic sufferer sheered from its course and sprang into": [65535, 0], "sufferer sheered from its course and sprang into its": [65535, 0], "sheered from its course and sprang into its master's": [65535, 0], "from its course and sprang into its master's lap": [65535, 0], "its course and sprang into its master's lap he": [65535, 0], "course and sprang into its master's lap he flung": [65535, 0], "and sprang into its master's lap he flung it": [65535, 0], "sprang into its master's lap he flung it out": [65535, 0], "into its master's lap he flung it out of": [65535, 0], "its master's lap he flung it out of the": [65535, 0], "master's lap he flung it out of the window": [65535, 0], "lap he flung it out of the window and": [65535, 0], "he flung it out of the window and the": [65535, 0], "flung it out of the window and the voice": [65535, 0], "it out of the window and the voice of": [65535, 0], "out of the window and the voice of distress": [65535, 0], "of the window and the voice of distress quickly": [65535, 0], "the window and the voice of distress quickly thinned": [65535, 0], "window and the voice of distress quickly thinned away": [65535, 0], "and the voice of distress quickly thinned away and": [65535, 0], "the voice of distress quickly thinned away and died": [65535, 0], "voice of distress quickly thinned away and died in": [65535, 0], "of distress quickly thinned away and died in the": [65535, 0], "distress quickly thinned away and died in the distance": [65535, 0], "quickly thinned away and died in the distance by": [65535, 0], "thinned away and died in the distance by this": [65535, 0], "away and died in the distance by this time": [65535, 0], "and died in the distance by this time the": [65535, 0], "died in the distance by this time the whole": [65535, 0], "in the distance by this time the whole church": [65535, 0], "the distance by this time the whole church was": [65535, 0], "distance by this time the whole church was red": [65535, 0], "by this time the whole church was red faced": [65535, 0], "this time the whole church was red faced and": [65535, 0], "time the whole church was red faced and suffocating": [65535, 0], "the whole church was red faced and suffocating with": [65535, 0], "whole church was red faced and suffocating with suppressed": [65535, 0], "church was red faced and suffocating with suppressed laughter": [65535, 0], "was red faced and suffocating with suppressed laughter and": [65535, 0], "red faced and suffocating with suppressed laughter and the": [65535, 0], "faced and suffocating with suppressed laughter and the sermon": [65535, 0], "and suffocating with suppressed laughter and the sermon had": [65535, 0], "suffocating with suppressed laughter and the sermon had come": [65535, 0], "with suppressed laughter and the sermon had come to": [65535, 0], "suppressed laughter and the sermon had come to a": [65535, 0], "laughter and the sermon had come to a dead": [65535, 0], "and the sermon had come to a dead standstill": [65535, 0], "the sermon had come to a dead standstill the": [65535, 0], "sermon had come to a dead standstill the discourse": [65535, 0], "had come to a dead standstill the discourse was": [65535, 0], "come to a dead standstill the discourse was resumed": [65535, 0], "to a dead standstill the discourse was resumed presently": [65535, 0], "a dead standstill the discourse was resumed presently but": [65535, 0], "dead standstill the discourse was resumed presently but it": [65535, 0], "standstill the discourse was resumed presently but it went": [65535, 0], "the discourse was resumed presently but it went lame": [65535, 0], "discourse was resumed presently but it went lame and": [65535, 0], "was resumed presently but it went lame and halting": [65535, 0], "resumed presently but it went lame and halting all": [65535, 0], "presently but it went lame and halting all possibility": [65535, 0], "but it went lame and halting all possibility of": [65535, 0], "it went lame and halting all possibility of impressiveness": [65535, 0], "went lame and halting all possibility of impressiveness being": [65535, 0], "lame and halting all possibility of impressiveness being at": [65535, 0], "and halting all possibility of impressiveness being at an": [65535, 0], "halting all possibility of impressiveness being at an end": [65535, 0], "all possibility of impressiveness being at an end for": [65535, 0], "possibility of impressiveness being at an end for even": [65535, 0], "of impressiveness being at an end for even the": [65535, 0], "impressiveness being at an end for even the gravest": [65535, 0], "being at an end for even the gravest sentiments": [65535, 0], "at an end for even the gravest sentiments were": [65535, 0], "an end for even the gravest sentiments were constantly": [65535, 0], "end for even the gravest sentiments were constantly being": [65535, 0], "for even the gravest sentiments were constantly being received": [65535, 0], "even the gravest sentiments were constantly being received with": [65535, 0], "the gravest sentiments were constantly being received with a": [65535, 0], "gravest sentiments were constantly being received with a smothered": [65535, 0], "sentiments were constantly being received with a smothered burst": [65535, 0], "were constantly being received with a smothered burst of": [65535, 0], "constantly being received with a smothered burst of unholy": [65535, 0], "being received with a smothered burst of unholy mirth": [65535, 0], "received with a smothered burst of unholy mirth under": [65535, 0], "with a smothered burst of unholy mirth under cover": [65535, 0], "a smothered burst of unholy mirth under cover of": [65535, 0], "smothered burst of unholy mirth under cover of some": [65535, 0], "burst of unholy mirth under cover of some remote": [65535, 0], "of unholy mirth under cover of some remote pew": [65535, 0], "unholy mirth under cover of some remote pew back": [65535, 0], "mirth under cover of some remote pew back as": [65535, 0], "under cover of some remote pew back as if": [65535, 0], "cover of some remote pew back as if the": [65535, 0], "of some remote pew back as if the poor": [65535, 0], "some remote pew back as if the poor parson": [65535, 0], "remote pew back as if the poor parson had": [65535, 0], "pew back as if the poor parson had said": [65535, 0], "back as if the poor parson had said a": [65535, 0], "as if the poor parson had said a rarely": [65535, 0], "if the poor parson had said a rarely facetious": [65535, 0], "the poor parson had said a rarely facetious thing": [65535, 0], "poor parson had said a rarely facetious thing it": [65535, 0], "parson had said a rarely facetious thing it was": [65535, 0], "had said a rarely facetious thing it was a": [65535, 0], "said a rarely facetious thing it was a genuine": [65535, 0], "a rarely facetious thing it was a genuine relief": [65535, 0], "rarely facetious thing it was a genuine relief to": [65535, 0], "facetious thing it was a genuine relief to the": [65535, 0], "thing it was a genuine relief to the whole": [65535, 0], "it was a genuine relief to the whole congregation": [65535, 0], "was a genuine relief to the whole congregation when": [65535, 0], "a genuine relief to the whole congregation when the": [65535, 0], "genuine relief to the whole congregation when the ordeal": [65535, 0], "relief to the whole congregation when the ordeal was": [65535, 0], "to the whole congregation when the ordeal was over": [65535, 0], "the whole congregation when the ordeal was over and": [65535, 0], "whole congregation when the ordeal was over and the": [65535, 0], "congregation when the ordeal was over and the benediction": [65535, 0], "when the ordeal was over and the benediction pronounced": [65535, 0], "the ordeal was over and the benediction pronounced tom": [65535, 0], "ordeal was over and the benediction pronounced tom sawyer": [65535, 0], "was over and the benediction pronounced tom sawyer went": [65535, 0], "over and the benediction pronounced tom sawyer went home": [65535, 0], "and the benediction pronounced tom sawyer went home quite": [65535, 0], "the benediction pronounced tom sawyer went home quite cheerful": [65535, 0], "benediction pronounced tom sawyer went home quite cheerful thinking": [65535, 0], "pronounced tom sawyer went home quite cheerful thinking to": [65535, 0], "tom sawyer went home quite cheerful thinking to himself": [65535, 0], "sawyer went home quite cheerful thinking to himself that": [65535, 0], "went home quite cheerful thinking to himself that there": [65535, 0], "home quite cheerful thinking to himself that there was": [65535, 0], "quite cheerful thinking to himself that there was some": [65535, 0], "cheerful thinking to himself that there was some satisfaction": [65535, 0], "thinking to himself that there was some satisfaction about": [65535, 0], "to himself that there was some satisfaction about divine": [65535, 0], "himself that there was some satisfaction about divine service": [65535, 0], "that there was some satisfaction about divine service when": [65535, 0], "there was some satisfaction about divine service when there": [65535, 0], "was some satisfaction about divine service when there was": [65535, 0], "some satisfaction about divine service when there was a": [65535, 0], "satisfaction about divine service when there was a bit": [65535, 0], "about divine service when there was a bit of": [65535, 0], "divine service when there was a bit of variety": [65535, 0], "service when there was a bit of variety in": [65535, 0], "when there was a bit of variety in it": [65535, 0], "there was a bit of variety in it he": [65535, 0], "was a bit of variety in it he had": [65535, 0], "a bit of variety in it he had but": [65535, 0], "bit of variety in it he had but one": [65535, 0], "of variety in it he had but one marring": [65535, 0], "variety in it he had but one marring thought": [65535, 0], "in it he had but one marring thought he": [65535, 0], "it he had but one marring thought he was": [65535, 0], "he had but one marring thought he was willing": [65535, 0], "had but one marring thought he was willing that": [65535, 0], "but one marring thought he was willing that the": [65535, 0], "one marring thought he was willing that the dog": [65535, 0], "marring thought he was willing that the dog should": [65535, 0], "thought he was willing that the dog should play": [65535, 0], "he was willing that the dog should play with": [65535, 0], "was willing that the dog should play with his": [65535, 0], "willing that the dog should play with his pinchbug": [65535, 0], "that the dog should play with his pinchbug but": [65535, 0], "the dog should play with his pinchbug but he": [65535, 0], "dog should play with his pinchbug but he did": [65535, 0], "should play with his pinchbug but he did not": [65535, 0], "play with his pinchbug but he did not think": [65535, 0], "with his pinchbug but he did not think it": [65535, 0], "his pinchbug but he did not think it was": [65535, 0], "pinchbug but he did not think it was upright": [65535, 0], "but he did not think it was upright in": [65535, 0], "he did not think it was upright in him": [65535, 0], "did not think it was upright in him to": [65535, 0], "not think it was upright in him to carry": [65535, 0], "think it was upright in him to carry it": [65535, 0], "it was upright in him to carry it off": [65535, 0], "about half past ten the cracked bell of the small": [65535, 0], "half past ten the cracked bell of the small church": [65535, 0], "past ten the cracked bell of the small church began": [65535, 0], "ten the cracked bell of the small church began to": [65535, 0], "the cracked bell of the small church began to ring": [65535, 0], "cracked bell of the small church began to ring and": [65535, 0], "bell of the small church began to ring and presently": [65535, 0], "of the small church began to ring and presently the": [65535, 0], "the small church began to ring and presently the people": [65535, 0], "small church began to ring and presently the people began": [65535, 0], "church began to ring and presently the people began to": [65535, 0], "began to ring and presently the people began to gather": [65535, 0], "to ring and presently the people began to gather for": [65535, 0], "ring and presently the people began to gather for the": [65535, 0], "and presently the people began to gather for the morning": [65535, 0], "presently the people began to gather for the morning sermon": [65535, 0], "the people began to gather for the morning sermon the": [65535, 0], "people began to gather for the morning sermon the sunday": [65535, 0], "began to gather for the morning sermon the sunday school": [65535, 0], "to gather for the morning sermon the sunday school children": [65535, 0], "gather for the morning sermon the sunday school children distributed": [65535, 0], "for the morning sermon the sunday school children distributed themselves": [65535, 0], "the morning sermon the sunday school children distributed themselves about": [65535, 0], "morning sermon the sunday school children distributed themselves about the": [65535, 0], "sermon the sunday school children distributed themselves about the house": [65535, 0], "the sunday school children distributed themselves about the house and": [65535, 0], "sunday school children distributed themselves about the house and occupied": [65535, 0], "school children distributed themselves about the house and occupied pews": [65535, 0], "children distributed themselves about the house and occupied pews with": [65535, 0], "distributed themselves about the house and occupied pews with their": [65535, 0], "themselves about the house and occupied pews with their parents": [65535, 0], "about the house and occupied pews with their parents so": [65535, 0], "the house and occupied pews with their parents so as": [65535, 0], "house and occupied pews with their parents so as to": [65535, 0], "and occupied pews with their parents so as to be": [65535, 0], "occupied pews with their parents so as to be under": [65535, 0], "pews with their parents so as to be under supervision": [65535, 0], "with their parents so as to be under supervision aunt": [65535, 0], "their parents so as to be under supervision aunt polly": [65535, 0], "parents so as to be under supervision aunt polly came": [65535, 0], "so as to be under supervision aunt polly came and": [65535, 0], "as to be under supervision aunt polly came and tom": [65535, 0], "to be under supervision aunt polly came and tom and": [65535, 0], "be under supervision aunt polly came and tom and sid": [65535, 0], "under supervision aunt polly came and tom and sid and": [65535, 0], "supervision aunt polly came and tom and sid and mary": [65535, 0], "aunt polly came and tom and sid and mary sat": [65535, 0], "polly came and tom and sid and mary sat with": [65535, 0], "came and tom and sid and mary sat with her": [65535, 0], "and tom and sid and mary sat with her tom": [65535, 0], "tom and sid and mary sat with her tom being": [65535, 0], "and sid and mary sat with her tom being placed": [65535, 0], "sid and mary sat with her tom being placed next": [65535, 0], "and mary sat with her tom being placed next the": [65535, 0], "mary sat with her tom being placed next the aisle": [65535, 0], "sat with her tom being placed next the aisle in": [65535, 0], "with her tom being placed next the aisle in order": [65535, 0], "her tom being placed next the aisle in order that": [65535, 0], "tom being placed next the aisle in order that he": [65535, 0], "being placed next the aisle in order that he might": [65535, 0], "placed next the aisle in order that he might be": [65535, 0], "next the aisle in order that he might be as": [65535, 0], "the aisle in order that he might be as far": [65535, 0], "aisle in order that he might be as far away": [65535, 0], "in order that he might be as far away from": [65535, 0], "order that he might be as far away from the": [65535, 0], "that he might be as far away from the open": [65535, 0], "he might be as far away from the open window": [65535, 0], "might be as far away from the open window and": [65535, 0], "be as far away from the open window and the": [65535, 0], "as far away from the open window and the seductive": [65535, 0], "far away from the open window and the seductive outside": [65535, 0], "away from the open window and the seductive outside summer": [65535, 0], "from the open window and the seductive outside summer scenes": [65535, 0], "the open window and the seductive outside summer scenes as": [65535, 0], "open window and the seductive outside summer scenes as possible": [65535, 0], "window and the seductive outside summer scenes as possible the": [65535, 0], "and the seductive outside summer scenes as possible the crowd": [65535, 0], "the seductive outside summer scenes as possible the crowd filed": [65535, 0], "seductive outside summer scenes as possible the crowd filed up": [65535, 0], "outside summer scenes as possible the crowd filed up the": [65535, 0], "summer scenes as possible the crowd filed up the aisles": [65535, 0], "scenes as possible the crowd filed up the aisles the": [65535, 0], "as possible the crowd filed up the aisles the aged": [65535, 0], "possible the crowd filed up the aisles the aged and": [65535, 0], "the crowd filed up the aisles the aged and needy": [65535, 0], "crowd filed up the aisles the aged and needy postmaster": [65535, 0], "filed up the aisles the aged and needy postmaster who": [65535, 0], "up the aisles the aged and needy postmaster who had": [65535, 0], "the aisles the aged and needy postmaster who had seen": [65535, 0], "aisles the aged and needy postmaster who had seen better": [65535, 0], "the aged and needy postmaster who had seen better days": [65535, 0], "aged and needy postmaster who had seen better days the": [65535, 0], "and needy postmaster who had seen better days the mayor": [65535, 0], "needy postmaster who had seen better days the mayor and": [65535, 0], "postmaster who had seen better days the mayor and his": [65535, 0], "who had seen better days the mayor and his wife": [65535, 0], "had seen better days the mayor and his wife for": [65535, 0], "seen better days the mayor and his wife for they": [65535, 0], "better days the mayor and his wife for they had": [65535, 0], "days the mayor and his wife for they had a": [65535, 0], "the mayor and his wife for they had a mayor": [65535, 0], "mayor and his wife for they had a mayor there": [65535, 0], "and his wife for they had a mayor there among": [65535, 0], "his wife for they had a mayor there among other": [65535, 0], "wife for they had a mayor there among other unnecessaries": [65535, 0], "for they had a mayor there among other unnecessaries the": [65535, 0], "they had a mayor there among other unnecessaries the justice": [65535, 0], "had a mayor there among other unnecessaries the justice of": [65535, 0], "a mayor there among other unnecessaries the justice of the": [65535, 0], "mayor there among other unnecessaries the justice of the peace": [65535, 0], "there among other unnecessaries the justice of the peace the": [65535, 0], "among other unnecessaries the justice of the peace the widow": [65535, 0], "other unnecessaries the justice of the peace the widow douglass": [65535, 0], "unnecessaries the justice of the peace the widow douglass fair": [65535, 0], "the justice of the peace the widow douglass fair smart": [65535, 0], "justice of the peace the widow douglass fair smart and": [65535, 0], "of the peace the widow douglass fair smart and forty": [65535, 0], "the peace the widow douglass fair smart and forty a": [65535, 0], "peace the widow douglass fair smart and forty a generous": [65535, 0], "the widow douglass fair smart and forty a generous good": [65535, 0], "widow douglass fair smart and forty a generous good hearted": [65535, 0], "douglass fair smart and forty a generous good hearted soul": [65535, 0], "fair smart and forty a generous good hearted soul and": [65535, 0], "smart and forty a generous good hearted soul and well": [65535, 0], "and forty a generous good hearted soul and well to": [65535, 0], "forty a generous good hearted soul and well to do": [65535, 0], "a generous good hearted soul and well to do her": [65535, 0], "generous good hearted soul and well to do her hill": [65535, 0], "good hearted soul and well to do her hill mansion": [65535, 0], "hearted soul and well to do her hill mansion the": [65535, 0], "soul and well to do her hill mansion the only": [65535, 0], "and well to do her hill mansion the only palace": [65535, 0], "well to do her hill mansion the only palace in": [65535, 0], "to do her hill mansion the only palace in the": [65535, 0], "do her hill mansion the only palace in the town": [65535, 0], "her hill mansion the only palace in the town and": [65535, 0], "hill mansion the only palace in the town and the": [65535, 0], "mansion the only palace in the town and the most": [65535, 0], "the only palace in the town and the most hospitable": [65535, 0], "only palace in the town and the most hospitable and": [65535, 0], "palace in the town and the most hospitable and much": [65535, 0], "in the town and the most hospitable and much the": [65535, 0], "the town and the most hospitable and much the most": [65535, 0], "town and the most hospitable and much the most lavish": [65535, 0], "and the most hospitable and much the most lavish in": [65535, 0], "the most hospitable and much the most lavish in the": [65535, 0], "most hospitable and much the most lavish in the matter": [65535, 0], "hospitable and much the most lavish in the matter of": [65535, 0], "and much the most lavish in the matter of festivities": [65535, 0], "much the most lavish in the matter of festivities that": [65535, 0], "the most lavish in the matter of festivities that st": [65535, 0], "most lavish in the matter of festivities that st petersburg": [65535, 0], "lavish in the matter of festivities that st petersburg could": [65535, 0], "in the matter of festivities that st petersburg could boast": [65535, 0], "the matter of festivities that st petersburg could boast the": [65535, 0], "matter of festivities that st petersburg could boast the bent": [65535, 0], "of festivities that st petersburg could boast the bent and": [65535, 0], "festivities that st petersburg could boast the bent and venerable": [65535, 0], "that st petersburg could boast the bent and venerable major": [65535, 0], "st petersburg could boast the bent and venerable major and": [65535, 0], "petersburg could boast the bent and venerable major and mrs": [65535, 0], "could boast the bent and venerable major and mrs ward": [65535, 0], "boast the bent and venerable major and mrs ward lawyer": [65535, 0], "the bent and venerable major and mrs ward lawyer riverson": [65535, 0], "bent and venerable major and mrs ward lawyer riverson the": [65535, 0], "and venerable major and mrs ward lawyer riverson the new": [65535, 0], "venerable major and mrs ward lawyer riverson the new notable": [65535, 0], "major and mrs ward lawyer riverson the new notable from": [65535, 0], "and mrs ward lawyer riverson the new notable from a": [65535, 0], "mrs ward lawyer riverson the new notable from a distance": [65535, 0], "ward lawyer riverson the new notable from a distance next": [65535, 0], "lawyer riverson the new notable from a distance next the": [65535, 0], "riverson the new notable from a distance next the belle": [65535, 0], "the new notable from a distance next the belle of": [65535, 0], "new notable from a distance next the belle of the": [65535, 0], "notable from a distance next the belle of the village": [65535, 0], "from a distance next the belle of the village followed": [65535, 0], "a distance next the belle of the village followed by": [65535, 0], "distance next the belle of the village followed by a": [65535, 0], "next the belle of the village followed by a troop": [65535, 0], "the belle of the village followed by a troop of": [65535, 0], "belle of the village followed by a troop of lawn": [65535, 0], "of the village followed by a troop of lawn clad": [65535, 0], "the village followed by a troop of lawn clad and": [65535, 0], "village followed by a troop of lawn clad and ribbon": [65535, 0], "followed by a troop of lawn clad and ribbon decked": [65535, 0], "by a troop of lawn clad and ribbon decked young": [65535, 0], "a troop of lawn clad and ribbon decked young heart": [65535, 0], "troop of lawn clad and ribbon decked young heart breakers": [65535, 0], "of lawn clad and ribbon decked young heart breakers then": [65535, 0], "lawn clad and ribbon decked young heart breakers then all": [65535, 0], "clad and ribbon decked young heart breakers then all the": [65535, 0], "and ribbon decked young heart breakers then all the young": [65535, 0], "ribbon decked young heart breakers then all the young clerks": [65535, 0], "decked young heart breakers then all the young clerks in": [65535, 0], "young heart breakers then all the young clerks in town": [65535, 0], "heart breakers then all the young clerks in town in": [65535, 0], "breakers then all the young clerks in town in a": [65535, 0], "then all the young clerks in town in a body": [65535, 0], "all the young clerks in town in a body for": [65535, 0], "the young clerks in town in a body for they": [65535, 0], "young clerks in town in a body for they had": [65535, 0], "clerks in town in a body for they had stood": [65535, 0], "in town in a body for they had stood in": [65535, 0], "town in a body for they had stood in the": [65535, 0], "in a body for they had stood in the vestibule": [65535, 0], "a body for they had stood in the vestibule sucking": [65535, 0], "body for they had stood in the vestibule sucking their": [65535, 0], "for they had stood in the vestibule sucking their cane": [65535, 0], "they had stood in the vestibule sucking their cane heads": [65535, 0], "had stood in the vestibule sucking their cane heads a": [65535, 0], "stood in the vestibule sucking their cane heads a circling": [65535, 0], "in the vestibule sucking their cane heads a circling wall": [65535, 0], "the vestibule sucking their cane heads a circling wall of": [65535, 0], "vestibule sucking their cane heads a circling wall of oiled": [65535, 0], "sucking their cane heads a circling wall of oiled and": [65535, 0], "their cane heads a circling wall of oiled and simpering": [65535, 0], "cane heads a circling wall of oiled and simpering admirers": [65535, 0], "heads a circling wall of oiled and simpering admirers till": [65535, 0], "a circling wall of oiled and simpering admirers till the": [65535, 0], "circling wall of oiled and simpering admirers till the last": [65535, 0], "wall of oiled and simpering admirers till the last girl": [65535, 0], "of oiled and simpering admirers till the last girl had": [65535, 0], "oiled and simpering admirers till the last girl had run": [65535, 0], "and simpering admirers till the last girl had run their": [65535, 0], "simpering admirers till the last girl had run their gantlet": [65535, 0], "admirers till the last girl had run their gantlet and": [65535, 0], "till the last girl had run their gantlet and last": [65535, 0], "the last girl had run their gantlet and last of": [65535, 0], "last girl had run their gantlet and last of all": [65535, 0], "girl had run their gantlet and last of all came": [65535, 0], "had run their gantlet and last of all came the": [65535, 0], "run their gantlet and last of all came the model": [65535, 0], "their gantlet and last of all came the model boy": [65535, 0], "gantlet and last of all came the model boy willie": [65535, 0], "and last of all came the model boy willie mufferson": [65535, 0], "last of all came the model boy willie mufferson taking": [65535, 0], "of all came the model boy willie mufferson taking as": [65535, 0], "all came the model boy willie mufferson taking as heedful": [65535, 0], "came the model boy willie mufferson taking as heedful care": [65535, 0], "the model boy willie mufferson taking as heedful care of": [65535, 0], "model boy willie mufferson taking as heedful care of his": [65535, 0], "boy willie mufferson taking as heedful care of his mother": [65535, 0], "willie mufferson taking as heedful care of his mother as": [65535, 0], "mufferson taking as heedful care of his mother as if": [65535, 0], "taking as heedful care of his mother as if she": [65535, 0], "as heedful care of his mother as if she were": [65535, 0], "heedful care of his mother as if she were cut": [65535, 0], "care of his mother as if she were cut glass": [65535, 0], "of his mother as if she were cut glass he": [65535, 0], "his mother as if she were cut glass he always": [65535, 0], "mother as if she were cut glass he always brought": [65535, 0], "as if she were cut glass he always brought his": [65535, 0], "if she were cut glass he always brought his mother": [65535, 0], "she were cut glass he always brought his mother to": [65535, 0], "were cut glass he always brought his mother to church": [65535, 0], "cut glass he always brought his mother to church and": [65535, 0], "glass he always brought his mother to church and was": [65535, 0], "he always brought his mother to church and was the": [65535, 0], "always brought his mother to church and was the pride": [65535, 0], "brought his mother to church and was the pride of": [65535, 0], "his mother to church and was the pride of all": [65535, 0], "mother to church and was the pride of all the": [65535, 0], "to church and was the pride of all the matrons": [65535, 0], "church and was the pride of all the matrons the": [65535, 0], "and was the pride of all the matrons the boys": [65535, 0], "was the pride of all the matrons the boys all": [65535, 0], "the pride of all the matrons the boys all hated": [65535, 0], "pride of all the matrons the boys all hated him": [65535, 0], "of all the matrons the boys all hated him he": [65535, 0], "all the matrons the boys all hated him he was": [65535, 0], "the matrons the boys all hated him he was so": [65535, 0], "matrons the boys all hated him he was so good": [65535, 0], "the boys all hated him he was so good and": [65535, 0], "boys all hated him he was so good and besides": [65535, 0], "all hated him he was so good and besides he": [65535, 0], "hated him he was so good and besides he had": [65535, 0], "him he was so good and besides he had been": [65535, 0], "he was so good and besides he had been thrown": [65535, 0], "was so good and besides he had been thrown up": [65535, 0], "so good and besides he had been thrown up to": [65535, 0], "good and besides he had been thrown up to them": [65535, 0], "and besides he had been thrown up to them so": [65535, 0], "besides he had been thrown up to them so much": [65535, 0], "he had been thrown up to them so much his": [65535, 0], "had been thrown up to them so much his white": [65535, 0], "been thrown up to them so much his white handkerchief": [65535, 0], "thrown up to them so much his white handkerchief was": [65535, 0], "up to them so much his white handkerchief was hanging": [65535, 0], "to them so much his white handkerchief was hanging out": [65535, 0], "them so much his white handkerchief was hanging out of": [65535, 0], "so much his white handkerchief was hanging out of his": [65535, 0], "much his white handkerchief was hanging out of his pocket": [65535, 0], "his white handkerchief was hanging out of his pocket behind": [65535, 0], "white handkerchief was hanging out of his pocket behind as": [65535, 0], "handkerchief was hanging out of his pocket behind as usual": [65535, 0], "was hanging out of his pocket behind as usual on": [65535, 0], "hanging out of his pocket behind as usual on sundays": [65535, 0], "out of his pocket behind as usual on sundays accidentally": [65535, 0], "of his pocket behind as usual on sundays accidentally tom": [65535, 0], "his pocket behind as usual on sundays accidentally tom had": [65535, 0], "pocket behind as usual on sundays accidentally tom had no": [65535, 0], "behind as usual on sundays accidentally tom had no handkerchief": [65535, 0], "as usual on sundays accidentally tom had no handkerchief and": [65535, 0], "usual on sundays accidentally tom had no handkerchief and he": [65535, 0], "on sundays accidentally tom had no handkerchief and he looked": [65535, 0], "sundays accidentally tom had no handkerchief and he looked upon": [65535, 0], "accidentally tom had no handkerchief and he looked upon boys": [65535, 0], "tom had no handkerchief and he looked upon boys who": [65535, 0], "had no handkerchief and he looked upon boys who had": [65535, 0], "no handkerchief and he looked upon boys who had as": [65535, 0], "handkerchief and he looked upon boys who had as snobs": [65535, 0], "and he looked upon boys who had as snobs the": [65535, 0], "he looked upon boys who had as snobs the congregation": [65535, 0], "looked upon boys who had as snobs the congregation being": [65535, 0], "upon boys who had as snobs the congregation being fully": [65535, 0], "boys who had as snobs the congregation being fully assembled": [65535, 0], "who had as snobs the congregation being fully assembled now": [65535, 0], "had as snobs the congregation being fully assembled now the": [65535, 0], "as snobs the congregation being fully assembled now the bell": [65535, 0], "snobs the congregation being fully assembled now the bell rang": [65535, 0], "the congregation being fully assembled now the bell rang once": [65535, 0], "congregation being fully assembled now the bell rang once more": [65535, 0], "being fully assembled now the bell rang once more to": [65535, 0], "fully assembled now the bell rang once more to warn": [65535, 0], "assembled now the bell rang once more to warn laggards": [65535, 0], "now the bell rang once more to warn laggards and": [65535, 0], "the bell rang once more to warn laggards and stragglers": [65535, 0], "bell rang once more to warn laggards and stragglers and": [65535, 0], "rang once more to warn laggards and stragglers and then": [65535, 0], "once more to warn laggards and stragglers and then a": [65535, 0], "more to warn laggards and stragglers and then a solemn": [65535, 0], "to warn laggards and stragglers and then a solemn hush": [65535, 0], "warn laggards and stragglers and then a solemn hush fell": [65535, 0], "laggards and stragglers and then a solemn hush fell upon": [65535, 0], "and stragglers and then a solemn hush fell upon the": [65535, 0], "stragglers and then a solemn hush fell upon the church": [65535, 0], "and then a solemn hush fell upon the church which": [65535, 0], "then a solemn hush fell upon the church which was": [65535, 0], "a solemn hush fell upon the church which was only": [65535, 0], "solemn hush fell upon the church which was only broken": [65535, 0], "hush fell upon the church which was only broken by": [65535, 0], "fell upon the church which was only broken by the": [65535, 0], "upon the church which was only broken by the tittering": [65535, 0], "the church which was only broken by the tittering and": [65535, 0], "church which was only broken by the tittering and whispering": [65535, 0], "which was only broken by the tittering and whispering of": [65535, 0], "was only broken by the tittering and whispering of the": [65535, 0], "only broken by the tittering and whispering of the choir": [65535, 0], "broken by the tittering and whispering of the choir in": [65535, 0], "by the tittering and whispering of the choir in the": [65535, 0], "the tittering and whispering of the choir in the gallery": [65535, 0], "tittering and whispering of the choir in the gallery the": [65535, 0], "and whispering of the choir in the gallery the choir": [65535, 0], "whispering of the choir in the gallery the choir always": [65535, 0], "of the choir in the gallery the choir always tittered": [65535, 0], "the choir in the gallery the choir always tittered and": [65535, 0], "choir in the gallery the choir always tittered and whispered": [65535, 0], "in the gallery the choir always tittered and whispered all": [65535, 0], "the gallery the choir always tittered and whispered all through": [65535, 0], "gallery the choir always tittered and whispered all through service": [65535, 0], "the choir always tittered and whispered all through service there": [65535, 0], "choir always tittered and whispered all through service there was": [65535, 0], "always tittered and whispered all through service there was once": [65535, 0], "tittered and whispered all through service there was once a": [65535, 0], "and whispered all through service there was once a church": [65535, 0], "whispered all through service there was once a church choir": [65535, 0], "all through service there was once a church choir that": [65535, 0], "through service there was once a church choir that was": [65535, 0], "service there was once a church choir that was not": [65535, 0], "there was once a church choir that was not ill": [65535, 0], "was once a church choir that was not ill bred": [65535, 0], "once a church choir that was not ill bred but": [65535, 0], "a church choir that was not ill bred but i": [65535, 0], "church choir that was not ill bred but i have": [65535, 0], "choir that was not ill bred but i have forgotten": [65535, 0], "that was not ill bred but i have forgotten where": [65535, 0], "was not ill bred but i have forgotten where it": [65535, 0], "not ill bred but i have forgotten where it was": [65535, 0], "ill bred but i have forgotten where it was now": [65535, 0], "bred but i have forgotten where it was now it": [65535, 0], "but i have forgotten where it was now it was": [65535, 0], "i have forgotten where it was now it was a": [65535, 0], "have forgotten where it was now it was a great": [65535, 0], "forgotten where it was now it was a great many": [65535, 0], "where it was now it was a great many years": [65535, 0], "it was now it was a great many years ago": [65535, 0], "was now it was a great many years ago and": [65535, 0], "now it was a great many years ago and i": [65535, 0], "it was a great many years ago and i can": [65535, 0], "was a great many years ago and i can scarcely": [65535, 0], "a great many years ago and i can scarcely remember": [65535, 0], "great many years ago and i can scarcely remember anything": [65535, 0], "many years ago and i can scarcely remember anything about": [65535, 0], "years ago and i can scarcely remember anything about it": [65535, 0], "ago and i can scarcely remember anything about it but": [65535, 0], "and i can scarcely remember anything about it but i": [65535, 0], "i can scarcely remember anything about it but i think": [65535, 0], "can scarcely remember anything about it but i think it": [65535, 0], "scarcely remember anything about it but i think it was": [65535, 0], "remember anything about it but i think it was in": [65535, 0], "anything about it but i think it was in some": [65535, 0], "about it but i think it was in some foreign": [65535, 0], "it but i think it was in some foreign country": [65535, 0], "but i think it was in some foreign country the": [65535, 0], "i think it was in some foreign country the minister": [65535, 0], "think it was in some foreign country the minister gave": [65535, 0], "it was in some foreign country the minister gave out": [65535, 0], "was in some foreign country the minister gave out the": [65535, 0], "in some foreign country the minister gave out the hymn": [65535, 0], "some foreign country the minister gave out the hymn and": [65535, 0], "foreign country the minister gave out the hymn and read": [65535, 0], "country the minister gave out the hymn and read it": [65535, 0], "the minister gave out the hymn and read it through": [65535, 0], "minister gave out the hymn and read it through with": [65535, 0], "gave out the hymn and read it through with a": [65535, 0], "out the hymn and read it through with a relish": [65535, 0], "the hymn and read it through with a relish in": [65535, 0], "hymn and read it through with a relish in a": [65535, 0], "and read it through with a relish in a peculiar": [65535, 0], "read it through with a relish in a peculiar style": [65535, 0], "it through with a relish in a peculiar style which": [65535, 0], "through with a relish in a peculiar style which was": [65535, 0], "with a relish in a peculiar style which was much": [65535, 0], "a relish in a peculiar style which was much admired": [65535, 0], "relish in a peculiar style which was much admired in": [65535, 0], "in a peculiar style which was much admired in that": [65535, 0], "a peculiar style which was much admired in that part": [65535, 0], "peculiar style which was much admired in that part of": [65535, 0], "style which was much admired in that part of the": [65535, 0], "which was much admired in that part of the country": [65535, 0], "was much admired in that part of the country his": [65535, 0], "much admired in that part of the country his voice": [65535, 0], "admired in that part of the country his voice began": [65535, 0], "in that part of the country his voice began on": [65535, 0], "that part of the country his voice began on a": [65535, 0], "part of the country his voice began on a medium": [65535, 0], "of the country his voice began on a medium key": [65535, 0], "the country his voice began on a medium key and": [65535, 0], "country his voice began on a medium key and climbed": [65535, 0], "his voice began on a medium key and climbed steadily": [65535, 0], "voice began on a medium key and climbed steadily up": [65535, 0], "began on a medium key and climbed steadily up till": [65535, 0], "on a medium key and climbed steadily up till it": [65535, 0], "a medium key and climbed steadily up till it reached": [65535, 0], "medium key and climbed steadily up till it reached a": [65535, 0], "key and climbed steadily up till it reached a certain": [65535, 0], "and climbed steadily up till it reached a certain point": [65535, 0], "climbed steadily up till it reached a certain point where": [65535, 0], "steadily up till it reached a certain point where it": [65535, 0], "up till it reached a certain point where it bore": [65535, 0], "till it reached a certain point where it bore with": [65535, 0], "it reached a certain point where it bore with strong": [65535, 0], "reached a certain point where it bore with strong emphasis": [65535, 0], "a certain point where it bore with strong emphasis upon": [65535, 0], "certain point where it bore with strong emphasis upon the": [65535, 0], "point where it bore with strong emphasis upon the topmost": [65535, 0], "where it bore with strong emphasis upon the topmost word": [65535, 0], "it bore with strong emphasis upon the topmost word and": [65535, 0], "bore with strong emphasis upon the topmost word and then": [65535, 0], "with strong emphasis upon the topmost word and then plunged": [65535, 0], "strong emphasis upon the topmost word and then plunged down": [65535, 0], "emphasis upon the topmost word and then plunged down as": [65535, 0], "upon the topmost word and then plunged down as if": [65535, 0], "the topmost word and then plunged down as if from": [65535, 0], "topmost word and then plunged down as if from a": [65535, 0], "word and then plunged down as if from a spring": [65535, 0], "and then plunged down as if from a spring board": [65535, 0], "then plunged down as if from a spring board shall": [65535, 0], "plunged down as if from a spring board shall i": [65535, 0], "down as if from a spring board shall i be": [65535, 0], "as if from a spring board shall i be car": [65535, 0], "if from a spring board shall i be car ri": [65535, 0], "from a spring board shall i be car ri ed": [65535, 0], "a spring board shall i be car ri ed toe": [65535, 0], "spring board shall i be car ri ed toe the": [65535, 0], "board shall i be car ri ed toe the skies": [65535, 0], "shall i be car ri ed toe the skies on": [65535, 0], "i be car ri ed toe the skies on flow'ry": [65535, 0], "be car ri ed toe the skies on flow'ry beds": [65535, 0], "car ri ed toe the skies on flow'ry beds of": [65535, 0], "ri ed toe the skies on flow'ry beds of ease": [65535, 0], "ed toe the skies on flow'ry beds of ease whilst": [65535, 0], "toe the skies on flow'ry beds of ease whilst others": [65535, 0], "the skies on flow'ry beds of ease whilst others fight": [65535, 0], "skies on flow'ry beds of ease whilst others fight to": [65535, 0], "on flow'ry beds of ease whilst others fight to win": [65535, 0], "flow'ry beds of ease whilst others fight to win the": [65535, 0], "beds of ease whilst others fight to win the prize": [65535, 0], "of ease whilst others fight to win the prize and": [65535, 0], "ease whilst others fight to win the prize and sail": [65535, 0], "whilst others fight to win the prize and sail thro'": [65535, 0], "others fight to win the prize and sail thro' bloody": [65535, 0], "fight to win the prize and sail thro' bloody seas": [65535, 0], "to win the prize and sail thro' bloody seas he": [65535, 0], "win the prize and sail thro' bloody seas he was": [65535, 0], "the prize and sail thro' bloody seas he was regarded": [65535, 0], "prize and sail thro' bloody seas he was regarded as": [65535, 0], "and sail thro' bloody seas he was regarded as a": [65535, 0], "sail thro' bloody seas he was regarded as a wonderful": [65535, 0], "thro' bloody seas he was regarded as a wonderful reader": [65535, 0], "bloody seas he was regarded as a wonderful reader at": [65535, 0], "seas he was regarded as a wonderful reader at church": [65535, 0], "he was regarded as a wonderful reader at church sociables": [65535, 0], "was regarded as a wonderful reader at church sociables he": [65535, 0], "regarded as a wonderful reader at church sociables he was": [65535, 0], "as a wonderful reader at church sociables he was always": [65535, 0], "a wonderful reader at church sociables he was always called": [65535, 0], "wonderful reader at church sociables he was always called upon": [65535, 0], "reader at church sociables he was always called upon to": [65535, 0], "at church sociables he was always called upon to read": [65535, 0], "church sociables he was always called upon to read poetry": [65535, 0], "sociables he was always called upon to read poetry and": [65535, 0], "he was always called upon to read poetry and when": [65535, 0], "was always called upon to read poetry and when he": [65535, 0], "always called upon to read poetry and when he was": [65535, 0], "called upon to read poetry and when he was through": [65535, 0], "upon to read poetry and when he was through the": [65535, 0], "to read poetry and when he was through the ladies": [65535, 0], "read poetry and when he was through the ladies would": [65535, 0], "poetry and when he was through the ladies would lift": [65535, 0], "and when he was through the ladies would lift up": [65535, 0], "when he was through the ladies would lift up their": [65535, 0], "he was through the ladies would lift up their hands": [65535, 0], "was through the ladies would lift up their hands and": [65535, 0], "through the ladies would lift up their hands and let": [65535, 0], "the ladies would lift up their hands and let them": [65535, 0], "ladies would lift up their hands and let them fall": [65535, 0], "would lift up their hands and let them fall helplessly": [65535, 0], "lift up their hands and let them fall helplessly in": [65535, 0], "up their hands and let them fall helplessly in their": [65535, 0], "their hands and let them fall helplessly in their laps": [65535, 0], "hands and let them fall helplessly in their laps and": [65535, 0], "and let them fall helplessly in their laps and wall": [65535, 0], "let them fall helplessly in their laps and wall their": [65535, 0], "them fall helplessly in their laps and wall their eyes": [65535, 0], "fall helplessly in their laps and wall their eyes and": [65535, 0], "helplessly in their laps and wall their eyes and shake": [65535, 0], "in their laps and wall their eyes and shake their": [65535, 0], "their laps and wall their eyes and shake their heads": [65535, 0], "laps and wall their eyes and shake their heads as": [65535, 0], "and wall their eyes and shake their heads as much": [65535, 0], "wall their eyes and shake their heads as much as": [65535, 0], "their eyes and shake their heads as much as to": [65535, 0], "eyes and shake their heads as much as to say": [65535, 0], "and shake their heads as much as to say words": [65535, 0], "shake their heads as much as to say words cannot": [65535, 0], "their heads as much as to say words cannot express": [65535, 0], "heads as much as to say words cannot express it": [65535, 0], "as much as to say words cannot express it it": [65535, 0], "much as to say words cannot express it it is": [65535, 0], "as to say words cannot express it it is too": [65535, 0], "to say words cannot express it it is too beautiful": [65535, 0], "say words cannot express it it is too beautiful too": [65535, 0], "words cannot express it it is too beautiful too beautiful": [65535, 0], "cannot express it it is too beautiful too beautiful for": [65535, 0], "express it it is too beautiful too beautiful for this": [65535, 0], "it it is too beautiful too beautiful for this mortal": [65535, 0], "it is too beautiful too beautiful for this mortal earth": [65535, 0], "is too beautiful too beautiful for this mortal earth after": [65535, 0], "too beautiful too beautiful for this mortal earth after the": [65535, 0], "beautiful too beautiful for this mortal earth after the hymn": [65535, 0], "too beautiful for this mortal earth after the hymn had": [65535, 0], "beautiful for this mortal earth after the hymn had been": [65535, 0], "for this mortal earth after the hymn had been sung": [65535, 0], "this mortal earth after the hymn had been sung the": [65535, 0], "mortal earth after the hymn had been sung the rev": [65535, 0], "earth after the hymn had been sung the rev mr": [65535, 0], "after the hymn had been sung the rev mr sprague": [65535, 0], "the hymn had been sung the rev mr sprague turned": [65535, 0], "hymn had been sung the rev mr sprague turned himself": [65535, 0], "had been sung the rev mr sprague turned himself into": [65535, 0], "been sung the rev mr sprague turned himself into a": [65535, 0], "sung the rev mr sprague turned himself into a bulletin": [65535, 0], "the rev mr sprague turned himself into a bulletin board": [65535, 0], "rev mr sprague turned himself into a bulletin board and": [65535, 0], "mr sprague turned himself into a bulletin board and read": [65535, 0], "sprague turned himself into a bulletin board and read off": [65535, 0], "turned himself into a bulletin board and read off notices": [65535, 0], "himself into a bulletin board and read off notices of": [65535, 0], "into a bulletin board and read off notices of meetings": [65535, 0], "a bulletin board and read off notices of meetings and": [65535, 0], "bulletin board and read off notices of meetings and societies": [65535, 0], "board and read off notices of meetings and societies and": [65535, 0], "and read off notices of meetings and societies and things": [65535, 0], "read off notices of meetings and societies and things till": [65535, 0], "off notices of meetings and societies and things till it": [65535, 0], "notices of meetings and societies and things till it seemed": [65535, 0], "of meetings and societies and things till it seemed that": [65535, 0], "meetings and societies and things till it seemed that the": [65535, 0], "and societies and things till it seemed that the list": [65535, 0], "societies and things till it seemed that the list would": [65535, 0], "and things till it seemed that the list would stretch": [65535, 0], "things till it seemed that the list would stretch out": [65535, 0], "till it seemed that the list would stretch out to": [65535, 0], "it seemed that the list would stretch out to the": [65535, 0], "seemed that the list would stretch out to the crack": [65535, 0], "that the list would stretch out to the crack of": [65535, 0], "the list would stretch out to the crack of doom": [65535, 0], "list would stretch out to the crack of doom a": [65535, 0], "would stretch out to the crack of doom a queer": [65535, 0], "stretch out to the crack of doom a queer custom": [65535, 0], "out to the crack of doom a queer custom which": [65535, 0], "to the crack of doom a queer custom which is": [65535, 0], "the crack of doom a queer custom which is still": [65535, 0], "crack of doom a queer custom which is still kept": [65535, 0], "of doom a queer custom which is still kept up": [65535, 0], "doom a queer custom which is still kept up in": [65535, 0], "a queer custom which is still kept up in america": [65535, 0], "queer custom which is still kept up in america even": [65535, 0], "custom which is still kept up in america even in": [65535, 0], "which is still kept up in america even in cities": [65535, 0], "is still kept up in america even in cities away": [65535, 0], "still kept up in america even in cities away here": [65535, 0], "kept up in america even in cities away here in": [65535, 0], "up in america even in cities away here in this": [65535, 0], "in america even in cities away here in this age": [65535, 0], "america even in cities away here in this age of": [65535, 0], "even in cities away here in this age of abundant": [65535, 0], "in cities away here in this age of abundant newspapers": [65535, 0], "cities away here in this age of abundant newspapers often": [65535, 0], "away here in this age of abundant newspapers often the": [65535, 0], "here in this age of abundant newspapers often the less": [65535, 0], "in this age of abundant newspapers often the less there": [65535, 0], "this age of abundant newspapers often the less there is": [65535, 0], "age of abundant newspapers often the less there is to": [65535, 0], "of abundant newspapers often the less there is to justify": [65535, 0], "abundant newspapers often the less there is to justify a": [65535, 0], "newspapers often the less there is to justify a traditional": [65535, 0], "often the less there is to justify a traditional custom": [65535, 0], "the less there is to justify a traditional custom the": [65535, 0], "less there is to justify a traditional custom the harder": [65535, 0], "there is to justify a traditional custom the harder it": [65535, 0], "is to justify a traditional custom the harder it is": [65535, 0], "to justify a traditional custom the harder it is to": [65535, 0], "justify a traditional custom the harder it is to get": [65535, 0], "a traditional custom the harder it is to get rid": [65535, 0], "traditional custom the harder it is to get rid of": [65535, 0], "custom the harder it is to get rid of it": [65535, 0], "the harder it is to get rid of it and": [65535, 0], "harder it is to get rid of it and now": [65535, 0], "it is to get rid of it and now the": [65535, 0], "is to get rid of it and now the minister": [65535, 0], "to get rid of it and now the minister prayed": [65535, 0], "get rid of it and now the minister prayed a": [65535, 0], "rid of it and now the minister prayed a good": [65535, 0], "of it and now the minister prayed a good generous": [65535, 0], "it and now the minister prayed a good generous prayer": [65535, 0], "and now the minister prayed a good generous prayer it": [65535, 0], "now the minister prayed a good generous prayer it was": [65535, 0], "the minister prayed a good generous prayer it was and": [65535, 0], "minister prayed a good generous prayer it was and went": [65535, 0], "prayed a good generous prayer it was and went into": [65535, 0], "a good generous prayer it was and went into details": [65535, 0], "good generous prayer it was and went into details it": [65535, 0], "generous prayer it was and went into details it pleaded": [65535, 0], "prayer it was and went into details it pleaded for": [65535, 0], "it was and went into details it pleaded for the": [65535, 0], "was and went into details it pleaded for the church": [65535, 0], "and went into details it pleaded for the church and": [65535, 0], "went into details it pleaded for the church and the": [65535, 0], "into details it pleaded for the church and the little": [65535, 0], "details it pleaded for the church and the little children": [65535, 0], "it pleaded for the church and the little children of": [65535, 0], "pleaded for the church and the little children of the": [65535, 0], "for the church and the little children of the church": [65535, 0], "the church and the little children of the church for": [65535, 0], "church and the little children of the church for the": [65535, 0], "and the little children of the church for the other": [65535, 0], "the little children of the church for the other churches": [65535, 0], "little children of the church for the other churches of": [65535, 0], "children of the church for the other churches of the": [65535, 0], "of the church for the other churches of the village": [65535, 0], "the church for the other churches of the village for": [65535, 0], "church for the other churches of the village for the": [65535, 0], "for the other churches of the village for the village": [65535, 0], "the other churches of the village for the village itself": [65535, 0], "other churches of the village for the village itself for": [65535, 0], "churches of the village for the village itself for the": [65535, 0], "of the village for the village itself for the county": [65535, 0], "the village for the village itself for the county for": [65535, 0], "village for the village itself for the county for the": [65535, 0], "for the village itself for the county for the state": [65535, 0], "the village itself for the county for the state for": [65535, 0], "village itself for the county for the state for the": [65535, 0], "itself for the county for the state for the state": [65535, 0], "for the county for the state for the state officers": [65535, 0], "the county for the state for the state officers for": [65535, 0], "county for the state for the state officers for the": [65535, 0], "for the state for the state officers for the united": [65535, 0], "the state for the state officers for the united states": [65535, 0], "state for the state officers for the united states for": [65535, 0], "for the state officers for the united states for the": [65535, 0], "the state officers for the united states for the churches": [65535, 0], "state officers for the united states for the churches of": [65535, 0], "officers for the united states for the churches of the": [65535, 0], "for the united states for the churches of the united": [65535, 0], "the united states for the churches of the united states": [65535, 0], "united states for the churches of the united states for": [65535, 0], "states for the churches of the united states for congress": [65535, 0], "for the churches of the united states for congress for": [65535, 0], "the churches of the united states for congress for the": [65535, 0], "churches of the united states for congress for the president": [65535, 0], "of the united states for congress for the president for": [65535, 0], "the united states for congress for the president for the": [65535, 0], "united states for congress for the president for the officers": [65535, 0], "states for congress for the president for the officers of": [65535, 0], "for congress for the president for the officers of the": [65535, 0], "congress for the president for the officers of the government": [65535, 0], "for the president for the officers of the government for": [65535, 0], "the president for the officers of the government for poor": [65535, 0], "president for the officers of the government for poor sailors": [65535, 0], "for the officers of the government for poor sailors tossed": [65535, 0], "the officers of the government for poor sailors tossed by": [65535, 0], "officers of the government for poor sailors tossed by stormy": [65535, 0], "of the government for poor sailors tossed by stormy seas": [65535, 0], "the government for poor sailors tossed by stormy seas for": [65535, 0], "government for poor sailors tossed by stormy seas for the": [65535, 0], "for poor sailors tossed by stormy seas for the oppressed": [65535, 0], "poor sailors tossed by stormy seas for the oppressed millions": [65535, 0], "sailors tossed by stormy seas for the oppressed millions groaning": [65535, 0], "tossed by stormy seas for the oppressed millions groaning under": [65535, 0], "by stormy seas for the oppressed millions groaning under the": [65535, 0], "stormy seas for the oppressed millions groaning under the heel": [65535, 0], "seas for the oppressed millions groaning under the heel of": [65535, 0], "for the oppressed millions groaning under the heel of european": [65535, 0], "the oppressed millions groaning under the heel of european monarchies": [65535, 0], "oppressed millions groaning under the heel of european monarchies and": [65535, 0], "millions groaning under the heel of european monarchies and oriental": [65535, 0], "groaning under the heel of european monarchies and oriental despotisms": [65535, 0], "under the heel of european monarchies and oriental despotisms for": [65535, 0], "the heel of european monarchies and oriental despotisms for such": [65535, 0], "heel of european monarchies and oriental despotisms for such as": [65535, 0], "of european monarchies and oriental despotisms for such as have": [65535, 0], "european monarchies and oriental despotisms for such as have the": [65535, 0], "monarchies and oriental despotisms for such as have the light": [65535, 0], "and oriental despotisms for such as have the light and": [65535, 0], "oriental despotisms for such as have the light and the": [65535, 0], "despotisms for such as have the light and the good": [65535, 0], "for such as have the light and the good tidings": [65535, 0], "such as have the light and the good tidings and": [65535, 0], "as have the light and the good tidings and yet": [65535, 0], "have the light and the good tidings and yet have": [65535, 0], "the light and the good tidings and yet have not": [65535, 0], "light and the good tidings and yet have not eyes": [65535, 0], "and the good tidings and yet have not eyes to": [65535, 0], "the good tidings and yet have not eyes to see": [65535, 0], "good tidings and yet have not eyes to see nor": [65535, 0], "tidings and yet have not eyes to see nor ears": [65535, 0], "and yet have not eyes to see nor ears to": [65535, 0], "yet have not eyes to see nor ears to hear": [65535, 0], "have not eyes to see nor ears to hear withal": [65535, 0], "not eyes to see nor ears to hear withal for": [65535, 0], "eyes to see nor ears to hear withal for the": [65535, 0], "to see nor ears to hear withal for the heathen": [65535, 0], "see nor ears to hear withal for the heathen in": [65535, 0], "nor ears to hear withal for the heathen in the": [65535, 0], "ears to hear withal for the heathen in the far": [65535, 0], "to hear withal for the heathen in the far islands": [65535, 0], "hear withal for the heathen in the far islands of": [65535, 0], "withal for the heathen in the far islands of the": [65535, 0], "for the heathen in the far islands of the sea": [65535, 0], "the heathen in the far islands of the sea and": [65535, 0], "heathen in the far islands of the sea and closed": [65535, 0], "in the far islands of the sea and closed with": [65535, 0], "the far islands of the sea and closed with a": [65535, 0], "far islands of the sea and closed with a supplication": [65535, 0], "islands of the sea and closed with a supplication that": [65535, 0], "of the sea and closed with a supplication that the": [65535, 0], "the sea and closed with a supplication that the words": [65535, 0], "sea and closed with a supplication that the words he": [65535, 0], "and closed with a supplication that the words he was": [65535, 0], "closed with a supplication that the words he was about": [65535, 0], "with a supplication that the words he was about to": [65535, 0], "a supplication that the words he was about to speak": [65535, 0], "supplication that the words he was about to speak might": [65535, 0], "that the words he was about to speak might find": [65535, 0], "the words he was about to speak might find grace": [65535, 0], "words he was about to speak might find grace and": [65535, 0], "he was about to speak might find grace and favor": [65535, 0], "was about to speak might find grace and favor and": [65535, 0], "about to speak might find grace and favor and be": [65535, 0], "to speak might find grace and favor and be as": [65535, 0], "speak might find grace and favor and be as seed": [65535, 0], "might find grace and favor and be as seed sown": [65535, 0], "find grace and favor and be as seed sown in": [65535, 0], "grace and favor and be as seed sown in fertile": [65535, 0], "and favor and be as seed sown in fertile ground": [65535, 0], "favor and be as seed sown in fertile ground yielding": [65535, 0], "and be as seed sown in fertile ground yielding in": [65535, 0], "be as seed sown in fertile ground yielding in time": [65535, 0], "as seed sown in fertile ground yielding in time a": [65535, 0], "seed sown in fertile ground yielding in time a grateful": [65535, 0], "sown in fertile ground yielding in time a grateful harvest": [65535, 0], "in fertile ground yielding in time a grateful harvest of": [65535, 0], "fertile ground yielding in time a grateful harvest of good": [65535, 0], "ground yielding in time a grateful harvest of good amen": [65535, 0], "yielding in time a grateful harvest of good amen there": [65535, 0], "in time a grateful harvest of good amen there was": [65535, 0], "time a grateful harvest of good amen there was a": [65535, 0], "a grateful harvest of good amen there was a rustling": [65535, 0], "grateful harvest of good amen there was a rustling of": [65535, 0], "harvest of good amen there was a rustling of dresses": [65535, 0], "of good amen there was a rustling of dresses and": [65535, 0], "good amen there was a rustling of dresses and the": [65535, 0], "amen there was a rustling of dresses and the standing": [65535, 0], "there was a rustling of dresses and the standing congregation": [65535, 0], "was a rustling of dresses and the standing congregation sat": [65535, 0], "a rustling of dresses and the standing congregation sat down": [65535, 0], "rustling of dresses and the standing congregation sat down the": [65535, 0], "of dresses and the standing congregation sat down the boy": [65535, 0], "dresses and the standing congregation sat down the boy whose": [65535, 0], "and the standing congregation sat down the boy whose history": [65535, 0], "the standing congregation sat down the boy whose history this": [65535, 0], "standing congregation sat down the boy whose history this book": [65535, 0], "congregation sat down the boy whose history this book relates": [65535, 0], "sat down the boy whose history this book relates did": [65535, 0], "down the boy whose history this book relates did not": [65535, 0], "the boy whose history this book relates did not enjoy": [65535, 0], "boy whose history this book relates did not enjoy the": [65535, 0], "whose history this book relates did not enjoy the prayer": [65535, 0], "history this book relates did not enjoy the prayer he": [65535, 0], "this book relates did not enjoy the prayer he only": [65535, 0], "book relates did not enjoy the prayer he only endured": [65535, 0], "relates did not enjoy the prayer he only endured it": [65535, 0], "did not enjoy the prayer he only endured it if": [65535, 0], "not enjoy the prayer he only endured it if he": [65535, 0], "enjoy the prayer he only endured it if he even": [65535, 0], "the prayer he only endured it if he even did": [65535, 0], "prayer he only endured it if he even did that": [65535, 0], "he only endured it if he even did that much": [65535, 0], "only endured it if he even did that much he": [65535, 0], "endured it if he even did that much he was": [65535, 0], "it if he even did that much he was restive": [65535, 0], "if he even did that much he was restive all": [65535, 0], "he even did that much he was restive all through": [65535, 0], "even did that much he was restive all through it": [65535, 0], "did that much he was restive all through it he": [65535, 0], "that much he was restive all through it he kept": [65535, 0], "much he was restive all through it he kept tally": [65535, 0], "he was restive all through it he kept tally of": [65535, 0], "was restive all through it he kept tally of the": [65535, 0], "restive all through it he kept tally of the details": [65535, 0], "all through it he kept tally of the details of": [65535, 0], "through it he kept tally of the details of the": [65535, 0], "it he kept tally of the details of the prayer": [65535, 0], "he kept tally of the details of the prayer unconsciously": [65535, 0], "kept tally of the details of the prayer unconsciously for": [65535, 0], "tally of the details of the prayer unconsciously for he": [65535, 0], "of the details of the prayer unconsciously for he was": [65535, 0], "the details of the prayer unconsciously for he was not": [65535, 0], "details of the prayer unconsciously for he was not listening": [65535, 0], "of the prayer unconsciously for he was not listening but": [65535, 0], "the prayer unconsciously for he was not listening but he": [65535, 0], "prayer unconsciously for he was not listening but he knew": [65535, 0], "unconsciously for he was not listening but he knew the": [65535, 0], "for he was not listening but he knew the ground": [65535, 0], "he was not listening but he knew the ground of": [65535, 0], "was not listening but he knew the ground of old": [65535, 0], "not listening but he knew the ground of old and": [65535, 0], "listening but he knew the ground of old and the": [65535, 0], "but he knew the ground of old and the clergyman's": [65535, 0], "he knew the ground of old and the clergyman's regular": [65535, 0], "knew the ground of old and the clergyman's regular route": [65535, 0], "the ground of old and the clergyman's regular route over": [65535, 0], "ground of old and the clergyman's regular route over it": [65535, 0], "of old and the clergyman's regular route over it and": [65535, 0], "old and the clergyman's regular route over it and when": [65535, 0], "and the clergyman's regular route over it and when a": [65535, 0], "the clergyman's regular route over it and when a little": [65535, 0], "clergyman's regular route over it and when a little trifle": [65535, 0], "regular route over it and when a little trifle of": [65535, 0], "route over it and when a little trifle of new": [65535, 0], "over it and when a little trifle of new matter": [65535, 0], "it and when a little trifle of new matter was": [65535, 0], "and when a little trifle of new matter was interlarded": [65535, 0], "when a little trifle of new matter was interlarded his": [65535, 0], "a little trifle of new matter was interlarded his ear": [65535, 0], "little trifle of new matter was interlarded his ear detected": [65535, 0], "trifle of new matter was interlarded his ear detected it": [65535, 0], "of new matter was interlarded his ear detected it and": [65535, 0], "new matter was interlarded his ear detected it and his": [65535, 0], "matter was interlarded his ear detected it and his whole": [65535, 0], "was interlarded his ear detected it and his whole nature": [65535, 0], "interlarded his ear detected it and his whole nature resented": [65535, 0], "his ear detected it and his whole nature resented it": [65535, 0], "ear detected it and his whole nature resented it he": [65535, 0], "detected it and his whole nature resented it he considered": [65535, 0], "it and his whole nature resented it he considered additions": [65535, 0], "and his whole nature resented it he considered additions unfair": [65535, 0], "his whole nature resented it he considered additions unfair and": [65535, 0], "whole nature resented it he considered additions unfair and scoundrelly": [65535, 0], "nature resented it he considered additions unfair and scoundrelly in": [65535, 0], "resented it he considered additions unfair and scoundrelly in the": [65535, 0], "it he considered additions unfair and scoundrelly in the midst": [65535, 0], "he considered additions unfair and scoundrelly in the midst of": [65535, 0], "considered additions unfair and scoundrelly in the midst of the": [65535, 0], "additions unfair and scoundrelly in the midst of the prayer": [65535, 0], "unfair and scoundrelly in the midst of the prayer a": [65535, 0], "and scoundrelly in the midst of the prayer a fly": [65535, 0], "scoundrelly in the midst of the prayer a fly had": [65535, 0], "in the midst of the prayer a fly had lit": [65535, 0], "the midst of the prayer a fly had lit on": [65535, 0], "midst of the prayer a fly had lit on the": [65535, 0], "of the prayer a fly had lit on the back": [65535, 0], "the prayer a fly had lit on the back of": [65535, 0], "prayer a fly had lit on the back of the": [65535, 0], "a fly had lit on the back of the pew": [65535, 0], "fly had lit on the back of the pew in": [65535, 0], "had lit on the back of the pew in front": [65535, 0], "lit on the back of the pew in front of": [65535, 0], "on the back of the pew in front of him": [65535, 0], "the back of the pew in front of him and": [65535, 0], "back of the pew in front of him and tortured": [65535, 0], "of the pew in front of him and tortured his": [65535, 0], "the pew in front of him and tortured his spirit": [65535, 0], "pew in front of him and tortured his spirit by": [65535, 0], "in front of him and tortured his spirit by calmly": [65535, 0], "front of him and tortured his spirit by calmly rubbing": [65535, 0], "of him and tortured his spirit by calmly rubbing its": [65535, 0], "him and tortured his spirit by calmly rubbing its hands": [65535, 0], "and tortured his spirit by calmly rubbing its hands together": [65535, 0], "tortured his spirit by calmly rubbing its hands together embracing": [65535, 0], "his spirit by calmly rubbing its hands together embracing its": [65535, 0], "spirit by calmly rubbing its hands together embracing its head": [65535, 0], "by calmly rubbing its hands together embracing its head with": [65535, 0], "calmly rubbing its hands together embracing its head with its": [65535, 0], "rubbing its hands together embracing its head with its arms": [65535, 0], "its hands together embracing its head with its arms and": [65535, 0], "hands together embracing its head with its arms and polishing": [65535, 0], "together embracing its head with its arms and polishing it": [65535, 0], "embracing its head with its arms and polishing it so": [65535, 0], "its head with its arms and polishing it so vigorously": [65535, 0], "head with its arms and polishing it so vigorously that": [65535, 0], "with its arms and polishing it so vigorously that it": [65535, 0], "its arms and polishing it so vigorously that it seemed": [65535, 0], "arms and polishing it so vigorously that it seemed to": [65535, 0], "and polishing it so vigorously that it seemed to almost": [65535, 0], "polishing it so vigorously that it seemed to almost part": [65535, 0], "it so vigorously that it seemed to almost part company": [65535, 0], "so vigorously that it seemed to almost part company with": [65535, 0], "vigorously that it seemed to almost part company with the": [65535, 0], "that it seemed to almost part company with the body": [65535, 0], "it seemed to almost part company with the body and": [65535, 0], "seemed to almost part company with the body and the": [65535, 0], "to almost part company with the body and the slender": [65535, 0], "almost part company with the body and the slender thread": [65535, 0], "part company with the body and the slender thread of": [65535, 0], "company with the body and the slender thread of a": [65535, 0], "with the body and the slender thread of a neck": [65535, 0], "the body and the slender thread of a neck was": [65535, 0], "body and the slender thread of a neck was exposed": [65535, 0], "and the slender thread of a neck was exposed to": [65535, 0], "the slender thread of a neck was exposed to view": [65535, 0], "slender thread of a neck was exposed to view scraping": [65535, 0], "thread of a neck was exposed to view scraping its": [65535, 0], "of a neck was exposed to view scraping its wings": [65535, 0], "a neck was exposed to view scraping its wings with": [65535, 0], "neck was exposed to view scraping its wings with its": [65535, 0], "was exposed to view scraping its wings with its hind": [65535, 0], "exposed to view scraping its wings with its hind legs": [65535, 0], "to view scraping its wings with its hind legs and": [65535, 0], "view scraping its wings with its hind legs and smoothing": [65535, 0], "scraping its wings with its hind legs and smoothing them": [65535, 0], "its wings with its hind legs and smoothing them to": [65535, 0], "wings with its hind legs and smoothing them to its": [65535, 0], "with its hind legs and smoothing them to its body": [65535, 0], "its hind legs and smoothing them to its body as": [65535, 0], "hind legs and smoothing them to its body as if": [65535, 0], "legs and smoothing them to its body as if they": [65535, 0], "and smoothing them to its body as if they had": [65535, 0], "smoothing them to its body as if they had been": [65535, 0], "them to its body as if they had been coat": [65535, 0], "to its body as if they had been coat tails": [65535, 0], "its body as if they had been coat tails going": [65535, 0], "body as if they had been coat tails going through": [65535, 0], "as if they had been coat tails going through its": [65535, 0], "if they had been coat tails going through its whole": [65535, 0], "they had been coat tails going through its whole toilet": [65535, 0], "had been coat tails going through its whole toilet as": [65535, 0], "been coat tails going through its whole toilet as tranquilly": [65535, 0], "coat tails going through its whole toilet as tranquilly as": [65535, 0], "tails going through its whole toilet as tranquilly as if": [65535, 0], "going through its whole toilet as tranquilly as if it": [65535, 0], "through its whole toilet as tranquilly as if it knew": [65535, 0], "its whole toilet as tranquilly as if it knew it": [65535, 0], "whole toilet as tranquilly as if it knew it was": [65535, 0], "toilet as tranquilly as if it knew it was perfectly": [65535, 0], "as tranquilly as if it knew it was perfectly safe": [65535, 0], "tranquilly as if it knew it was perfectly safe as": [65535, 0], "as if it knew it was perfectly safe as indeed": [65535, 0], "if it knew it was perfectly safe as indeed it": [65535, 0], "it knew it was perfectly safe as indeed it was": [65535, 0], "knew it was perfectly safe as indeed it was for": [65535, 0], "it was perfectly safe as indeed it was for as": [65535, 0], "was perfectly safe as indeed it was for as sorely": [65535, 0], "perfectly safe as indeed it was for as sorely as": [65535, 0], "safe as indeed it was for as sorely as tom's": [65535, 0], "as indeed it was for as sorely as tom's hands": [65535, 0], "indeed it was for as sorely as tom's hands itched": [65535, 0], "it was for as sorely as tom's hands itched to": [65535, 0], "was for as sorely as tom's hands itched to grab": [65535, 0], "for as sorely as tom's hands itched to grab for": [65535, 0], "as sorely as tom's hands itched to grab for it": [65535, 0], "sorely as tom's hands itched to grab for it they": [65535, 0], "as tom's hands itched to grab for it they did": [65535, 0], "tom's hands itched to grab for it they did not": [65535, 0], "hands itched to grab for it they did not dare": [65535, 0], "itched to grab for it they did not dare he": [65535, 0], "to grab for it they did not dare he believed": [65535, 0], "grab for it they did not dare he believed his": [65535, 0], "for it they did not dare he believed his soul": [65535, 0], "it they did not dare he believed his soul would": [65535, 0], "they did not dare he believed his soul would be": [65535, 0], "did not dare he believed his soul would be instantly": [65535, 0], "not dare he believed his soul would be instantly destroyed": [65535, 0], "dare he believed his soul would be instantly destroyed if": [65535, 0], "he believed his soul would be instantly destroyed if he": [65535, 0], "believed his soul would be instantly destroyed if he did": [65535, 0], "his soul would be instantly destroyed if he did such": [65535, 0], "soul would be instantly destroyed if he did such a": [65535, 0], "would be instantly destroyed if he did such a thing": [65535, 0], "be instantly destroyed if he did such a thing while": [65535, 0], "instantly destroyed if he did such a thing while the": [65535, 0], "destroyed if he did such a thing while the prayer": [65535, 0], "if he did such a thing while the prayer was": [65535, 0], "he did such a thing while the prayer was going": [65535, 0], "did such a thing while the prayer was going on": [65535, 0], "such a thing while the prayer was going on but": [65535, 0], "a thing while the prayer was going on but with": [65535, 0], "thing while the prayer was going on but with the": [65535, 0], "while the prayer was going on but with the closing": [65535, 0], "the prayer was going on but with the closing sentence": [65535, 0], "prayer was going on but with the closing sentence his": [65535, 0], "was going on but with the closing sentence his hand": [65535, 0], "going on but with the closing sentence his hand began": [65535, 0], "on but with the closing sentence his hand began to": [65535, 0], "but with the closing sentence his hand began to curve": [65535, 0], "with the closing sentence his hand began to curve and": [65535, 0], "the closing sentence his hand began to curve and steal": [65535, 0], "closing sentence his hand began to curve and steal forward": [65535, 0], "sentence his hand began to curve and steal forward and": [65535, 0], "his hand began to curve and steal forward and the": [65535, 0], "hand began to curve and steal forward and the instant": [65535, 0], "began to curve and steal forward and the instant the": [65535, 0], "to curve and steal forward and the instant the amen": [65535, 0], "curve and steal forward and the instant the amen was": [65535, 0], "and steal forward and the instant the amen was out": [65535, 0], "steal forward and the instant the amen was out the": [65535, 0], "forward and the instant the amen was out the fly": [65535, 0], "and the instant the amen was out the fly was": [65535, 0], "the instant the amen was out the fly was a": [65535, 0], "instant the amen was out the fly was a prisoner": [65535, 0], "the amen was out the fly was a prisoner of": [65535, 0], "amen was out the fly was a prisoner of war": [65535, 0], "was out the fly was a prisoner of war his": [65535, 0], "out the fly was a prisoner of war his aunt": [65535, 0], "the fly was a prisoner of war his aunt detected": [65535, 0], "fly was a prisoner of war his aunt detected the": [65535, 0], "was a prisoner of war his aunt detected the act": [65535, 0], "a prisoner of war his aunt detected the act and": [65535, 0], "prisoner of war his aunt detected the act and made": [65535, 0], "of war his aunt detected the act and made him": [65535, 0], "war his aunt detected the act and made him let": [65535, 0], "his aunt detected the act and made him let it": [65535, 0], "aunt detected the act and made him let it go": [65535, 0], "detected the act and made him let it go the": [65535, 0], "the act and made him let it go the minister": [65535, 0], "act and made him let it go the minister gave": [65535, 0], "and made him let it go the minister gave out": [65535, 0], "made him let it go the minister gave out his": [65535, 0], "him let it go the minister gave out his text": [65535, 0], "let it go the minister gave out his text and": [65535, 0], "it go the minister gave out his text and droned": [65535, 0], "go the minister gave out his text and droned along": [65535, 0], "the minister gave out his text and droned along monotonously": [65535, 0], "minister gave out his text and droned along monotonously through": [65535, 0], "gave out his text and droned along monotonously through an": [65535, 0], "out his text and droned along monotonously through an argument": [65535, 0], "his text and droned along monotonously through an argument that": [65535, 0], "text and droned along monotonously through an argument that was": [65535, 0], "and droned along monotonously through an argument that was so": [65535, 0], "droned along monotonously through an argument that was so prosy": [65535, 0], "along monotonously through an argument that was so prosy that": [65535, 0], "monotonously through an argument that was so prosy that many": [65535, 0], "through an argument that was so prosy that many a": [65535, 0], "an argument that was so prosy that many a head": [65535, 0], "argument that was so prosy that many a head by": [65535, 0], "that was so prosy that many a head by and": [65535, 0], "was so prosy that many a head by and by": [65535, 0], "so prosy that many a head by and by began": [65535, 0], "prosy that many a head by and by began to": [65535, 0], "that many a head by and by began to nod": [65535, 0], "many a head by and by began to nod and": [65535, 0], "a head by and by began to nod and yet": [65535, 0], "head by and by began to nod and yet it": [65535, 0], "by and by began to nod and yet it was": [65535, 0], "and by began to nod and yet it was an": [65535, 0], "by began to nod and yet it was an argument": [65535, 0], "began to nod and yet it was an argument that": [65535, 0], "to nod and yet it was an argument that dealt": [65535, 0], "nod and yet it was an argument that dealt in": [65535, 0], "and yet it was an argument that dealt in limitless": [65535, 0], "yet it was an argument that dealt in limitless fire": [65535, 0], "it was an argument that dealt in limitless fire and": [65535, 0], "was an argument that dealt in limitless fire and brimstone": [65535, 0], "an argument that dealt in limitless fire and brimstone and": [65535, 0], "argument that dealt in limitless fire and brimstone and thinned": [65535, 0], "that dealt in limitless fire and brimstone and thinned the": [65535, 0], "dealt in limitless fire and brimstone and thinned the predestined": [65535, 0], "in limitless fire and brimstone and thinned the predestined elect": [65535, 0], "limitless fire and brimstone and thinned the predestined elect down": [65535, 0], "fire and brimstone and thinned the predestined elect down to": [65535, 0], "and brimstone and thinned the predestined elect down to a": [65535, 0], "brimstone and thinned the predestined elect down to a company": [65535, 0], "and thinned the predestined elect down to a company so": [65535, 0], "thinned the predestined elect down to a company so small": [65535, 0], "the predestined elect down to a company so small as": [65535, 0], "predestined elect down to a company so small as to": [65535, 0], "elect down to a company so small as to be": [65535, 0], "down to a company so small as to be hardly": [65535, 0], "to a company so small as to be hardly worth": [65535, 0], "a company so small as to be hardly worth the": [65535, 0], "company so small as to be hardly worth the saving": [65535, 0], "so small as to be hardly worth the saving tom": [65535, 0], "small as to be hardly worth the saving tom counted": [65535, 0], "as to be hardly worth the saving tom counted the": [65535, 0], "to be hardly worth the saving tom counted the pages": [65535, 0], "be hardly worth the saving tom counted the pages of": [65535, 0], "hardly worth the saving tom counted the pages of the": [65535, 0], "worth the saving tom counted the pages of the sermon": [65535, 0], "the saving tom counted the pages of the sermon after": [65535, 0], "saving tom counted the pages of the sermon after church": [65535, 0], "tom counted the pages of the sermon after church he": [65535, 0], "counted the pages of the sermon after church he always": [65535, 0], "the pages of the sermon after church he always knew": [65535, 0], "pages of the sermon after church he always knew how": [65535, 0], "of the sermon after church he always knew how many": [65535, 0], "the sermon after church he always knew how many pages": [65535, 0], "sermon after church he always knew how many pages there": [65535, 0], "after church he always knew how many pages there had": [65535, 0], "church he always knew how many pages there had been": [65535, 0], "he always knew how many pages there had been but": [65535, 0], "always knew how many pages there had been but he": [65535, 0], "knew how many pages there had been but he seldom": [65535, 0], "how many pages there had been but he seldom knew": [65535, 0], "many pages there had been but he seldom knew anything": [65535, 0], "pages there had been but he seldom knew anything else": [65535, 0], "there had been but he seldom knew anything else about": [65535, 0], "had been but he seldom knew anything else about the": [65535, 0], "been but he seldom knew anything else about the discourse": [65535, 0], "but he seldom knew anything else about the discourse however": [65535, 0], "he seldom knew anything else about the discourse however this": [65535, 0], "seldom knew anything else about the discourse however this time": [65535, 0], "knew anything else about the discourse however this time he": [65535, 0], "anything else about the discourse however this time he was": [65535, 0], "else about the discourse however this time he was really": [65535, 0], "about the discourse however this time he was really interested": [65535, 0], "the discourse however this time he was really interested for": [65535, 0], "discourse however this time he was really interested for a": [65535, 0], "however this time he was really interested for a little": [65535, 0], "this time he was really interested for a little while": [65535, 0], "time he was really interested for a little while the": [65535, 0], "he was really interested for a little while the minister": [65535, 0], "was really interested for a little while the minister made": [65535, 0], "really interested for a little while the minister made a": [65535, 0], "interested for a little while the minister made a grand": [65535, 0], "for a little while the minister made a grand and": [65535, 0], "a little while the minister made a grand and moving": [65535, 0], "little while the minister made a grand and moving picture": [65535, 0], "while the minister made a grand and moving picture of": [65535, 0], "the minister made a grand and moving picture of the": [65535, 0], "minister made a grand and moving picture of the assembling": [65535, 0], "made a grand and moving picture of the assembling together": [65535, 0], "a grand and moving picture of the assembling together of": [65535, 0], "grand and moving picture of the assembling together of the": [65535, 0], "and moving picture of the assembling together of the world's": [65535, 0], "moving picture of the assembling together of the world's hosts": [65535, 0], "picture of the assembling together of the world's hosts at": [65535, 0], "of the assembling together of the world's hosts at the": [65535, 0], "the assembling together of the world's hosts at the millennium": [65535, 0], "assembling together of the world's hosts at the millennium when": [65535, 0], "together of the world's hosts at the millennium when the": [65535, 0], "of the world's hosts at the millennium when the lion": [65535, 0], "the world's hosts at the millennium when the lion and": [65535, 0], "world's hosts at the millennium when the lion and the": [65535, 0], "hosts at the millennium when the lion and the lamb": [65535, 0], "at the millennium when the lion and the lamb should": [65535, 0], "the millennium when the lion and the lamb should lie": [65535, 0], "millennium when the lion and the lamb should lie down": [65535, 0], "when the lion and the lamb should lie down together": [65535, 0], "the lion and the lamb should lie down together and": [65535, 0], "lion and the lamb should lie down together and a": [65535, 0], "and the lamb should lie down together and a little": [65535, 0], "the lamb should lie down together and a little child": [65535, 0], "lamb should lie down together and a little child should": [65535, 0], "should lie down together and a little child should lead": [65535, 0], "lie down together and a little child should lead them": [65535, 0], "down together and a little child should lead them but": [65535, 0], "together and a little child should lead them but the": [65535, 0], "and a little child should lead them but the pathos": [65535, 0], "a little child should lead them but the pathos the": [65535, 0], "little child should lead them but the pathos the lesson": [65535, 0], "child should lead them but the pathos the lesson the": [65535, 0], "should lead them but the pathos the lesson the moral": [65535, 0], "lead them but the pathos the lesson the moral of": [65535, 0], "them but the pathos the lesson the moral of the": [65535, 0], "but the pathos the lesson the moral of the great": [65535, 0], "the pathos the lesson the moral of the great spectacle": [65535, 0], "pathos the lesson the moral of the great spectacle were": [65535, 0], "the lesson the moral of the great spectacle were lost": [65535, 0], "lesson the moral of the great spectacle were lost upon": [65535, 0], "the moral of the great spectacle were lost upon the": [65535, 0], "moral of the great spectacle were lost upon the boy": [65535, 0], "of the great spectacle were lost upon the boy he": [65535, 0], "the great spectacle were lost upon the boy he only": [65535, 0], "great spectacle were lost upon the boy he only thought": [65535, 0], "spectacle were lost upon the boy he only thought of": [65535, 0], "were lost upon the boy he only thought of the": [65535, 0], "lost upon the boy he only thought of the conspicuousness": [65535, 0], "upon the boy he only thought of the conspicuousness of": [65535, 0], "the boy he only thought of the conspicuousness of the": [65535, 0], "boy he only thought of the conspicuousness of the principal": [65535, 0], "he only thought of the conspicuousness of the principal character": [65535, 0], "only thought of the conspicuousness of the principal character before": [65535, 0], "thought of the conspicuousness of the principal character before the": [65535, 0], "of the conspicuousness of the principal character before the on": [65535, 0], "the conspicuousness of the principal character before the on looking": [65535, 0], "conspicuousness of the principal character before the on looking nations": [65535, 0], "of the principal character before the on looking nations his": [65535, 0], "the principal character before the on looking nations his face": [65535, 0], "principal character before the on looking nations his face lit": [65535, 0], "character before the on looking nations his face lit with": [65535, 0], "before the on looking nations his face lit with the": [65535, 0], "the on looking nations his face lit with the thought": [65535, 0], "on looking nations his face lit with the thought and": [65535, 0], "looking nations his face lit with the thought and he": [65535, 0], "nations his face lit with the thought and he said": [65535, 0], "his face lit with the thought and he said to": [65535, 0], "face lit with the thought and he said to himself": [65535, 0], "lit with the thought and he said to himself that": [65535, 0], "with the thought and he said to himself that he": [65535, 0], "the thought and he said to himself that he wished": [65535, 0], "thought and he said to himself that he wished he": [65535, 0], "and he said to himself that he wished he could": [65535, 0], "he said to himself that he wished he could be": [65535, 0], "said to himself that he wished he could be that": [65535, 0], "to himself that he wished he could be that child": [65535, 0], "himself that he wished he could be that child if": [65535, 0], "that he wished he could be that child if it": [65535, 0], "he wished he could be that child if it was": [65535, 0], "wished he could be that child if it was a": [65535, 0], "he could be that child if it was a tame": [65535, 0], "could be that child if it was a tame lion": [65535, 0], "be that child if it was a tame lion now": [65535, 0], "that child if it was a tame lion now he": [65535, 0], "child if it was a tame lion now he lapsed": [65535, 0], "if it was a tame lion now he lapsed into": [65535, 0], "it was a tame lion now he lapsed into suffering": [65535, 0], "was a tame lion now he lapsed into suffering again": [65535, 0], "a tame lion now he lapsed into suffering again as": [65535, 0], "tame lion now he lapsed into suffering again as the": [65535, 0], "lion now he lapsed into suffering again as the dry": [65535, 0], "now he lapsed into suffering again as the dry argument": [65535, 0], "he lapsed into suffering again as the dry argument was": [65535, 0], "lapsed into suffering again as the dry argument was resumed": [65535, 0], "into suffering again as the dry argument was resumed presently": [65535, 0], "suffering again as the dry argument was resumed presently he": [65535, 0], "again as the dry argument was resumed presently he bethought": [65535, 0], "as the dry argument was resumed presently he bethought him": [65535, 0], "the dry argument was resumed presently he bethought him of": [65535, 0], "dry argument was resumed presently he bethought him of a": [65535, 0], "argument was resumed presently he bethought him of a treasure": [65535, 0], "was resumed presently he bethought him of a treasure he": [65535, 0], "resumed presently he bethought him of a treasure he had": [65535, 0], "presently he bethought him of a treasure he had and": [65535, 0], "he bethought him of a treasure he had and got": [65535, 0], "bethought him of a treasure he had and got it": [65535, 0], "him of a treasure he had and got it out": [65535, 0], "of a treasure he had and got it out it": [65535, 0], "a treasure he had and got it out it was": [65535, 0], "treasure he had and got it out it was a": [65535, 0], "he had and got it out it was a large": [65535, 0], "had and got it out it was a large black": [65535, 0], "and got it out it was a large black beetle": [65535, 0], "got it out it was a large black beetle with": [65535, 0], "it out it was a large black beetle with formidable": [65535, 0], "out it was a large black beetle with formidable jaws": [65535, 0], "it was a large black beetle with formidable jaws a": [65535, 0], "was a large black beetle with formidable jaws a pinchbug": [65535, 0], "a large black beetle with formidable jaws a pinchbug he": [65535, 0], "large black beetle with formidable jaws a pinchbug he called": [65535, 0], "black beetle with formidable jaws a pinchbug he called it": [65535, 0], "beetle with formidable jaws a pinchbug he called it it": [65535, 0], "with formidable jaws a pinchbug he called it it was": [65535, 0], "formidable jaws a pinchbug he called it it was in": [65535, 0], "jaws a pinchbug he called it it was in a": [65535, 0], "a pinchbug he called it it was in a percussion": [65535, 0], "pinchbug he called it it was in a percussion cap": [65535, 0], "he called it it was in a percussion cap box": [65535, 0], "called it it was in a percussion cap box the": [65535, 0], "it it was in a percussion cap box the first": [65535, 0], "it was in a percussion cap box the first thing": [65535, 0], "was in a percussion cap box the first thing the": [65535, 0], "in a percussion cap box the first thing the beetle": [65535, 0], "a percussion cap box the first thing the beetle did": [65535, 0], "percussion cap box the first thing the beetle did was": [65535, 0], "cap box the first thing the beetle did was to": [65535, 0], "box the first thing the beetle did was to take": [65535, 0], "the first thing the beetle did was to take him": [65535, 0], "first thing the beetle did was to take him by": [65535, 0], "thing the beetle did was to take him by the": [65535, 0], "the beetle did was to take him by the finger": [65535, 0], "beetle did was to take him by the finger a": [65535, 0], "did was to take him by the finger a natural": [65535, 0], "was to take him by the finger a natural fillip": [65535, 0], "to take him by the finger a natural fillip followed": [65535, 0], "take him by the finger a natural fillip followed the": [65535, 0], "him by the finger a natural fillip followed the beetle": [65535, 0], "by the finger a natural fillip followed the beetle went": [65535, 0], "the finger a natural fillip followed the beetle went floundering": [65535, 0], "finger a natural fillip followed the beetle went floundering into": [65535, 0], "a natural fillip followed the beetle went floundering into the": [65535, 0], "natural fillip followed the beetle went floundering into the aisle": [65535, 0], "fillip followed the beetle went floundering into the aisle and": [65535, 0], "followed the beetle went floundering into the aisle and lit": [65535, 0], "the beetle went floundering into the aisle and lit on": [65535, 0], "beetle went floundering into the aisle and lit on its": [65535, 0], "went floundering into the aisle and lit on its back": [65535, 0], "floundering into the aisle and lit on its back and": [65535, 0], "into the aisle and lit on its back and the": [65535, 0], "the aisle and lit on its back and the hurt": [65535, 0], "aisle and lit on its back and the hurt finger": [65535, 0], "and lit on its back and the hurt finger went": [65535, 0], "lit on its back and the hurt finger went into": [65535, 0], "on its back and the hurt finger went into the": [65535, 0], "its back and the hurt finger went into the boy's": [65535, 0], "back and the hurt finger went into the boy's mouth": [65535, 0], "and the hurt finger went into the boy's mouth the": [65535, 0], "the hurt finger went into the boy's mouth the beetle": [65535, 0], "hurt finger went into the boy's mouth the beetle lay": [65535, 0], "finger went into the boy's mouth the beetle lay there": [65535, 0], "went into the boy's mouth the beetle lay there working": [65535, 0], "into the boy's mouth the beetle lay there working its": [65535, 0], "the boy's mouth the beetle lay there working its helpless": [65535, 0], "boy's mouth the beetle lay there working its helpless legs": [65535, 0], "mouth the beetle lay there working its helpless legs unable": [65535, 0], "the beetle lay there working its helpless legs unable to": [65535, 0], "beetle lay there working its helpless legs unable to turn": [65535, 0], "lay there working its helpless legs unable to turn over": [65535, 0], "there working its helpless legs unable to turn over tom": [65535, 0], "working its helpless legs unable to turn over tom eyed": [65535, 0], "its helpless legs unable to turn over tom eyed it": [65535, 0], "helpless legs unable to turn over tom eyed it and": [65535, 0], "legs unable to turn over tom eyed it and longed": [65535, 0], "unable to turn over tom eyed it and longed for": [65535, 0], "to turn over tom eyed it and longed for it": [65535, 0], "turn over tom eyed it and longed for it but": [65535, 0], "over tom eyed it and longed for it but it": [65535, 0], "tom eyed it and longed for it but it was": [65535, 0], "eyed it and longed for it but it was safe": [65535, 0], "it and longed for it but it was safe out": [65535, 0], "and longed for it but it was safe out of": [65535, 0], "longed for it but it was safe out of his": [65535, 0], "for it but it was safe out of his reach": [65535, 0], "it but it was safe out of his reach other": [65535, 0], "but it was safe out of his reach other people": [65535, 0], "it was safe out of his reach other people uninterested": [65535, 0], "was safe out of his reach other people uninterested in": [65535, 0], "safe out of his reach other people uninterested in the": [65535, 0], "out of his reach other people uninterested in the sermon": [65535, 0], "of his reach other people uninterested in the sermon found": [65535, 0], "his reach other people uninterested in the sermon found relief": [65535, 0], "reach other people uninterested in the sermon found relief in": [65535, 0], "other people uninterested in the sermon found relief in the": [65535, 0], "people uninterested in the sermon found relief in the beetle": [65535, 0], "uninterested in the sermon found relief in the beetle and": [65535, 0], "in the sermon found relief in the beetle and they": [65535, 0], "the sermon found relief in the beetle and they eyed": [65535, 0], "sermon found relief in the beetle and they eyed it": [65535, 0], "found relief in the beetle and they eyed it too": [65535, 0], "relief in the beetle and they eyed it too presently": [65535, 0], "in the beetle and they eyed it too presently a": [65535, 0], "the beetle and they eyed it too presently a vagrant": [65535, 0], "beetle and they eyed it too presently a vagrant poodle": [65535, 0], "and they eyed it too presently a vagrant poodle dog": [65535, 0], "they eyed it too presently a vagrant poodle dog came": [65535, 0], "eyed it too presently a vagrant poodle dog came idling": [65535, 0], "it too presently a vagrant poodle dog came idling along": [65535, 0], "too presently a vagrant poodle dog came idling along sad": [65535, 0], "presently a vagrant poodle dog came idling along sad at": [65535, 0], "a vagrant poodle dog came idling along sad at heart": [65535, 0], "vagrant poodle dog came idling along sad at heart lazy": [65535, 0], "poodle dog came idling along sad at heart lazy with": [65535, 0], "dog came idling along sad at heart lazy with the": [65535, 0], "came idling along sad at heart lazy with the summer": [65535, 0], "idling along sad at heart lazy with the summer softness": [65535, 0], "along sad at heart lazy with the summer softness and": [65535, 0], "sad at heart lazy with the summer softness and the": [65535, 0], "at heart lazy with the summer softness and the quiet": [65535, 0], "heart lazy with the summer softness and the quiet weary": [65535, 0], "lazy with the summer softness and the quiet weary of": [65535, 0], "with the summer softness and the quiet weary of captivity": [65535, 0], "the summer softness and the quiet weary of captivity sighing": [65535, 0], "summer softness and the quiet weary of captivity sighing for": [65535, 0], "softness and the quiet weary of captivity sighing for change": [65535, 0], "and the quiet weary of captivity sighing for change he": [65535, 0], "the quiet weary of captivity sighing for change he spied": [65535, 0], "quiet weary of captivity sighing for change he spied the": [65535, 0], "weary of captivity sighing for change he spied the beetle": [65535, 0], "of captivity sighing for change he spied the beetle the": [65535, 0], "captivity sighing for change he spied the beetle the drooping": [65535, 0], "sighing for change he spied the beetle the drooping tail": [65535, 0], "for change he spied the beetle the drooping tail lifted": [65535, 0], "change he spied the beetle the drooping tail lifted and": [65535, 0], "he spied the beetle the drooping tail lifted and wagged": [65535, 0], "spied the beetle the drooping tail lifted and wagged he": [65535, 0], "the beetle the drooping tail lifted and wagged he surveyed": [65535, 0], "beetle the drooping tail lifted and wagged he surveyed the": [65535, 0], "the drooping tail lifted and wagged he surveyed the prize": [65535, 0], "drooping tail lifted and wagged he surveyed the prize walked": [65535, 0], "tail lifted and wagged he surveyed the prize walked around": [65535, 0], "lifted and wagged he surveyed the prize walked around it": [65535, 0], "and wagged he surveyed the prize walked around it smelt": [65535, 0], "wagged he surveyed the prize walked around it smelt at": [65535, 0], "he surveyed the prize walked around it smelt at it": [65535, 0], "surveyed the prize walked around it smelt at it from": [65535, 0], "the prize walked around it smelt at it from a": [65535, 0], "prize walked around it smelt at it from a safe": [65535, 0], "walked around it smelt at it from a safe distance": [65535, 0], "around it smelt at it from a safe distance walked": [65535, 0], "it smelt at it from a safe distance walked around": [65535, 0], "smelt at it from a safe distance walked around it": [65535, 0], "at it from a safe distance walked around it again": [65535, 0], "it from a safe distance walked around it again grew": [65535, 0], "from a safe distance walked around it again grew bolder": [65535, 0], "a safe distance walked around it again grew bolder and": [65535, 0], "safe distance walked around it again grew bolder and took": [65535, 0], "distance walked around it again grew bolder and took a": [65535, 0], "walked around it again grew bolder and took a closer": [65535, 0], "around it again grew bolder and took a closer smell": [65535, 0], "it again grew bolder and took a closer smell then": [65535, 0], "again grew bolder and took a closer smell then lifted": [65535, 0], "grew bolder and took a closer smell then lifted his": [65535, 0], "bolder and took a closer smell then lifted his lip": [65535, 0], "and took a closer smell then lifted his lip and": [65535, 0], "took a closer smell then lifted his lip and made": [65535, 0], "a closer smell then lifted his lip and made a": [65535, 0], "closer smell then lifted his lip and made a gingerly": [65535, 0], "smell then lifted his lip and made a gingerly snatch": [65535, 0], "then lifted his lip and made a gingerly snatch at": [65535, 0], "lifted his lip and made a gingerly snatch at it": [65535, 0], "his lip and made a gingerly snatch at it just": [65535, 0], "lip and made a gingerly snatch at it just missing": [65535, 0], "and made a gingerly snatch at it just missing it": [65535, 0], "made a gingerly snatch at it just missing it made": [65535, 0], "a gingerly snatch at it just missing it made another": [65535, 0], "gingerly snatch at it just missing it made another and": [65535, 0], "snatch at it just missing it made another and another": [65535, 0], "at it just missing it made another and another began": [65535, 0], "it just missing it made another and another began to": [65535, 0], "just missing it made another and another began to enjoy": [65535, 0], "missing it made another and another began to enjoy the": [65535, 0], "it made another and another began to enjoy the diversion": [65535, 0], "made another and another began to enjoy the diversion subsided": [65535, 0], "another and another began to enjoy the diversion subsided to": [65535, 0], "and another began to enjoy the diversion subsided to his": [65535, 0], "another began to enjoy the diversion subsided to his stomach": [65535, 0], "began to enjoy the diversion subsided to his stomach with": [65535, 0], "to enjoy the diversion subsided to his stomach with the": [65535, 0], "enjoy the diversion subsided to his stomach with the beetle": [65535, 0], "the diversion subsided to his stomach with the beetle between": [65535, 0], "diversion subsided to his stomach with the beetle between his": [65535, 0], "subsided to his stomach with the beetle between his paws": [65535, 0], "to his stomach with the beetle between his paws and": [65535, 0], "his stomach with the beetle between his paws and continued": [65535, 0], "stomach with the beetle between his paws and continued his": [65535, 0], "with the beetle between his paws and continued his experiments": [65535, 0], "the beetle between his paws and continued his experiments grew": [65535, 0], "beetle between his paws and continued his experiments grew weary": [65535, 0], "between his paws and continued his experiments grew weary at": [65535, 0], "his paws and continued his experiments grew weary at last": [65535, 0], "paws and continued his experiments grew weary at last and": [65535, 0], "and continued his experiments grew weary at last and then": [65535, 0], "continued his experiments grew weary at last and then indifferent": [65535, 0], "his experiments grew weary at last and then indifferent and": [65535, 0], "experiments grew weary at last and then indifferent and absent": [65535, 0], "grew weary at last and then indifferent and absent minded": [65535, 0], "weary at last and then indifferent and absent minded his": [65535, 0], "at last and then indifferent and absent minded his head": [65535, 0], "last and then indifferent and absent minded his head nodded": [65535, 0], "and then indifferent and absent minded his head nodded and": [65535, 0], "then indifferent and absent minded his head nodded and little": [65535, 0], "indifferent and absent minded his head nodded and little by": [65535, 0], "and absent minded his head nodded and little by little": [65535, 0], "absent minded his head nodded and little by little his": [65535, 0], "minded his head nodded and little by little his chin": [65535, 0], "his head nodded and little by little his chin descended": [65535, 0], "head nodded and little by little his chin descended and": [65535, 0], "nodded and little by little his chin descended and touched": [65535, 0], "and little by little his chin descended and touched the": [65535, 0], "little by little his chin descended and touched the enemy": [65535, 0], "by little his chin descended and touched the enemy who": [65535, 0], "little his chin descended and touched the enemy who seized": [65535, 0], "his chin descended and touched the enemy who seized it": [65535, 0], "chin descended and touched the enemy who seized it there": [65535, 0], "descended and touched the enemy who seized it there was": [65535, 0], "and touched the enemy who seized it there was a": [65535, 0], "touched the enemy who seized it there was a sharp": [65535, 0], "the enemy who seized it there was a sharp yelp": [65535, 0], "enemy who seized it there was a sharp yelp a": [65535, 0], "who seized it there was a sharp yelp a flirt": [65535, 0], "seized it there was a sharp yelp a flirt of": [65535, 0], "it there was a sharp yelp a flirt of the": [65535, 0], "there was a sharp yelp a flirt of the poodle's": [65535, 0], "was a sharp yelp a flirt of the poodle's head": [65535, 0], "a sharp yelp a flirt of the poodle's head and": [65535, 0], "sharp yelp a flirt of the poodle's head and the": [65535, 0], "yelp a flirt of the poodle's head and the beetle": [65535, 0], "a flirt of the poodle's head and the beetle fell": [65535, 0], "flirt of the poodle's head and the beetle fell a": [65535, 0], "of the poodle's head and the beetle fell a couple": [65535, 0], "the poodle's head and the beetle fell a couple of": [65535, 0], "poodle's head and the beetle fell a couple of yards": [65535, 0], "head and the beetle fell a couple of yards away": [65535, 0], "and the beetle fell a couple of yards away and": [65535, 0], "the beetle fell a couple of yards away and lit": [65535, 0], "beetle fell a couple of yards away and lit on": [65535, 0], "fell a couple of yards away and lit on its": [65535, 0], "a couple of yards away and lit on its back": [65535, 0], "couple of yards away and lit on its back once": [65535, 0], "of yards away and lit on its back once more": [65535, 0], "yards away and lit on its back once more the": [65535, 0], "away and lit on its back once more the neighboring": [65535, 0], "and lit on its back once more the neighboring spectators": [65535, 0], "lit on its back once more the neighboring spectators shook": [65535, 0], "on its back once more the neighboring spectators shook with": [65535, 0], "its back once more the neighboring spectators shook with a": [65535, 0], "back once more the neighboring spectators shook with a gentle": [65535, 0], "once more the neighboring spectators shook with a gentle inward": [65535, 0], "more the neighboring spectators shook with a gentle inward joy": [65535, 0], "the neighboring spectators shook with a gentle inward joy several": [65535, 0], "neighboring spectators shook with a gentle inward joy several faces": [65535, 0], "spectators shook with a gentle inward joy several faces went": [65535, 0], "shook with a gentle inward joy several faces went behind": [65535, 0], "with a gentle inward joy several faces went behind fans": [65535, 0], "a gentle inward joy several faces went behind fans and": [65535, 0], "gentle inward joy several faces went behind fans and handkerchiefs": [65535, 0], "inward joy several faces went behind fans and handkerchiefs and": [65535, 0], "joy several faces went behind fans and handkerchiefs and tom": [65535, 0], "several faces went behind fans and handkerchiefs and tom was": [65535, 0], "faces went behind fans and handkerchiefs and tom was entirely": [65535, 0], "went behind fans and handkerchiefs and tom was entirely happy": [65535, 0], "behind fans and handkerchiefs and tom was entirely happy the": [65535, 0], "fans and handkerchiefs and tom was entirely happy the dog": [65535, 0], "and handkerchiefs and tom was entirely happy the dog looked": [65535, 0], "handkerchiefs and tom was entirely happy the dog looked foolish": [65535, 0], "and tom was entirely happy the dog looked foolish and": [65535, 0], "tom was entirely happy the dog looked foolish and probably": [65535, 0], "was entirely happy the dog looked foolish and probably felt": [65535, 0], "entirely happy the dog looked foolish and probably felt so": [65535, 0], "happy the dog looked foolish and probably felt so but": [65535, 0], "the dog looked foolish and probably felt so but there": [65535, 0], "dog looked foolish and probably felt so but there was": [65535, 0], "looked foolish and probably felt so but there was resentment": [65535, 0], "foolish and probably felt so but there was resentment in": [65535, 0], "and probably felt so but there was resentment in his": [65535, 0], "probably felt so but there was resentment in his heart": [65535, 0], "felt so but there was resentment in his heart too": [65535, 0], "so but there was resentment in his heart too and": [65535, 0], "but there was resentment in his heart too and a": [65535, 0], "there was resentment in his heart too and a craving": [65535, 0], "was resentment in his heart too and a craving for": [65535, 0], "resentment in his heart too and a craving for revenge": [65535, 0], "in his heart too and a craving for revenge so": [65535, 0], "his heart too and a craving for revenge so he": [65535, 0], "heart too and a craving for revenge so he went": [65535, 0], "too and a craving for revenge so he went to": [65535, 0], "and a craving for revenge so he went to the": [65535, 0], "a craving for revenge so he went to the beetle": [65535, 0], "craving for revenge so he went to the beetle and": [65535, 0], "for revenge so he went to the beetle and began": [65535, 0], "revenge so he went to the beetle and began a": [65535, 0], "so he went to the beetle and began a wary": [65535, 0], "he went to the beetle and began a wary attack": [65535, 0], "went to the beetle and began a wary attack on": [65535, 0], "to the beetle and began a wary attack on it": [65535, 0], "the beetle and began a wary attack on it again": [65535, 0], "beetle and began a wary attack on it again jumping": [65535, 0], "and began a wary attack on it again jumping at": [65535, 0], "began a wary attack on it again jumping at it": [65535, 0], "a wary attack on it again jumping at it from": [65535, 0], "wary attack on it again jumping at it from every": [65535, 0], "attack on it again jumping at it from every point": [65535, 0], "on it again jumping at it from every point of": [65535, 0], "it again jumping at it from every point of a": [65535, 0], "again jumping at it from every point of a circle": [65535, 0], "jumping at it from every point of a circle lighting": [65535, 0], "at it from every point of a circle lighting with": [65535, 0], "it from every point of a circle lighting with his": [65535, 0], "from every point of a circle lighting with his fore": [65535, 0], "every point of a circle lighting with his fore paws": [65535, 0], "point of a circle lighting with his fore paws within": [65535, 0], "of a circle lighting with his fore paws within an": [65535, 0], "a circle lighting with his fore paws within an inch": [65535, 0], "circle lighting with his fore paws within an inch of": [65535, 0], "lighting with his fore paws within an inch of the": [65535, 0], "with his fore paws within an inch of the creature": [65535, 0], "his fore paws within an inch of the creature making": [65535, 0], "fore paws within an inch of the creature making even": [65535, 0], "paws within an inch of the creature making even closer": [65535, 0], "within an inch of the creature making even closer snatches": [65535, 0], "an inch of the creature making even closer snatches at": [65535, 0], "inch of the creature making even closer snatches at it": [65535, 0], "of the creature making even closer snatches at it with": [65535, 0], "the creature making even closer snatches at it with his": [65535, 0], "creature making even closer snatches at it with his teeth": [65535, 0], "making even closer snatches at it with his teeth and": [65535, 0], "even closer snatches at it with his teeth and jerking": [65535, 0], "closer snatches at it with his teeth and jerking his": [65535, 0], "snatches at it with his teeth and jerking his head": [65535, 0], "at it with his teeth and jerking his head till": [65535, 0], "it with his teeth and jerking his head till his": [65535, 0], "with his teeth and jerking his head till his ears": [65535, 0], "his teeth and jerking his head till his ears flapped": [65535, 0], "teeth and jerking his head till his ears flapped again": [65535, 0], "and jerking his head till his ears flapped again but": [65535, 0], "jerking his head till his ears flapped again but he": [65535, 0], "his head till his ears flapped again but he grew": [65535, 0], "head till his ears flapped again but he grew tired": [65535, 0], "till his ears flapped again but he grew tired once": [65535, 0], "his ears flapped again but he grew tired once more": [65535, 0], "ears flapped again but he grew tired once more after": [65535, 0], "flapped again but he grew tired once more after a": [65535, 0], "again but he grew tired once more after a while": [65535, 0], "but he grew tired once more after a while tried": [65535, 0], "he grew tired once more after a while tried to": [65535, 0], "grew tired once more after a while tried to amuse": [65535, 0], "tired once more after a while tried to amuse himself": [65535, 0], "once more after a while tried to amuse himself with": [65535, 0], "more after a while tried to amuse himself with a": [65535, 0], "after a while tried to amuse himself with a fly": [65535, 0], "a while tried to amuse himself with a fly but": [65535, 0], "while tried to amuse himself with a fly but found": [65535, 0], "tried to amuse himself with a fly but found no": [65535, 0], "to amuse himself with a fly but found no relief": [65535, 0], "amuse himself with a fly but found no relief followed": [65535, 0], "himself with a fly but found no relief followed an": [65535, 0], "with a fly but found no relief followed an ant": [65535, 0], "a fly but found no relief followed an ant around": [65535, 0], "fly but found no relief followed an ant around with": [65535, 0], "but found no relief followed an ant around with his": [65535, 0], "found no relief followed an ant around with his nose": [65535, 0], "no relief followed an ant around with his nose close": [65535, 0], "relief followed an ant around with his nose close to": [65535, 0], "followed an ant around with his nose close to the": [65535, 0], "an ant around with his nose close to the floor": [65535, 0], "ant around with his nose close to the floor and": [65535, 0], "around with his nose close to the floor and quickly": [65535, 0], "with his nose close to the floor and quickly wearied": [65535, 0], "his nose close to the floor and quickly wearied of": [65535, 0], "nose close to the floor and quickly wearied of that": [65535, 0], "close to the floor and quickly wearied of that yawned": [65535, 0], "to the floor and quickly wearied of that yawned sighed": [65535, 0], "the floor and quickly wearied of that yawned sighed forgot": [65535, 0], "floor and quickly wearied of that yawned sighed forgot the": [65535, 0], "and quickly wearied of that yawned sighed forgot the beetle": [65535, 0], "quickly wearied of that yawned sighed forgot the beetle entirely": [65535, 0], "wearied of that yawned sighed forgot the beetle entirely and": [65535, 0], "of that yawned sighed forgot the beetle entirely and sat": [65535, 0], "that yawned sighed forgot the beetle entirely and sat down": [65535, 0], "yawned sighed forgot the beetle entirely and sat down on": [65535, 0], "sighed forgot the beetle entirely and sat down on it": [65535, 0], "forgot the beetle entirely and sat down on it then": [65535, 0], "the beetle entirely and sat down on it then there": [65535, 0], "beetle entirely and sat down on it then there was": [65535, 0], "entirely and sat down on it then there was a": [65535, 0], "and sat down on it then there was a wild": [65535, 0], "sat down on it then there was a wild yelp": [65535, 0], "down on it then there was a wild yelp of": [65535, 0], "on it then there was a wild yelp of agony": [65535, 0], "it then there was a wild yelp of agony and": [65535, 0], "then there was a wild yelp of agony and the": [65535, 0], "there was a wild yelp of agony and the poodle": [65535, 0], "was a wild yelp of agony and the poodle went": [65535, 0], "a wild yelp of agony and the poodle went sailing": [65535, 0], "wild yelp of agony and the poodle went sailing up": [65535, 0], "yelp of agony and the poodle went sailing up the": [65535, 0], "of agony and the poodle went sailing up the aisle": [65535, 0], "agony and the poodle went sailing up the aisle the": [65535, 0], "and the poodle went sailing up the aisle the yelps": [65535, 0], "the poodle went sailing up the aisle the yelps continued": [65535, 0], "poodle went sailing up the aisle the yelps continued and": [65535, 0], "went sailing up the aisle the yelps continued and so": [65535, 0], "sailing up the aisle the yelps continued and so did": [65535, 0], "up the aisle the yelps continued and so did the": [65535, 0], "the aisle the yelps continued and so did the dog": [65535, 0], "aisle the yelps continued and so did the dog he": [65535, 0], "the yelps continued and so did the dog he crossed": [65535, 0], "yelps continued and so did the dog he crossed the": [65535, 0], "continued and so did the dog he crossed the house": [65535, 0], "and so did the dog he crossed the house in": [65535, 0], "so did the dog he crossed the house in front": [65535, 0], "did the dog he crossed the house in front of": [65535, 0], "the dog he crossed the house in front of the": [65535, 0], "dog he crossed the house in front of the altar": [65535, 0], "he crossed the house in front of the altar he": [65535, 0], "crossed the house in front of the altar he flew": [65535, 0], "the house in front of the altar he flew down": [65535, 0], "house in front of the altar he flew down the": [65535, 0], "in front of the altar he flew down the other": [65535, 0], "front of the altar he flew down the other aisle": [65535, 0], "of the altar he flew down the other aisle he": [65535, 0], "the altar he flew down the other aisle he crossed": [65535, 0], "altar he flew down the other aisle he crossed before": [65535, 0], "he flew down the other aisle he crossed before the": [65535, 0], "flew down the other aisle he crossed before the doors": [65535, 0], "down the other aisle he crossed before the doors he": [65535, 0], "the other aisle he crossed before the doors he clamored": [65535, 0], "other aisle he crossed before the doors he clamored up": [65535, 0], "aisle he crossed before the doors he clamored up the": [65535, 0], "he crossed before the doors he clamored up the home": [65535, 0], "crossed before the doors he clamored up the home stretch": [65535, 0], "before the doors he clamored up the home stretch his": [65535, 0], "the doors he clamored up the home stretch his anguish": [65535, 0], "doors he clamored up the home stretch his anguish grew": [65535, 0], "he clamored up the home stretch his anguish grew with": [65535, 0], "clamored up the home stretch his anguish grew with his": [65535, 0], "up the home stretch his anguish grew with his progress": [65535, 0], "the home stretch his anguish grew with his progress till": [65535, 0], "home stretch his anguish grew with his progress till presently": [65535, 0], "stretch his anguish grew with his progress till presently he": [65535, 0], "his anguish grew with his progress till presently he was": [65535, 0], "anguish grew with his progress till presently he was but": [65535, 0], "grew with his progress till presently he was but a": [65535, 0], "with his progress till presently he was but a woolly": [65535, 0], "his progress till presently he was but a woolly comet": [65535, 0], "progress till presently he was but a woolly comet moving": [65535, 0], "till presently he was but a woolly comet moving in": [65535, 0], "presently he was but a woolly comet moving in its": [65535, 0], "he was but a woolly comet moving in its orbit": [65535, 0], "was but a woolly comet moving in its orbit with": [65535, 0], "but a woolly comet moving in its orbit with the": [65535, 0], "a woolly comet moving in its orbit with the gleam": [65535, 0], "woolly comet moving in its orbit with the gleam and": [65535, 0], "comet moving in its orbit with the gleam and the": [65535, 0], "moving in its orbit with the gleam and the speed": [65535, 0], "in its orbit with the gleam and the speed of": [65535, 0], "its orbit with the gleam and the speed of light": [65535, 0], "orbit with the gleam and the speed of light at": [65535, 0], "with the gleam and the speed of light at last": [65535, 0], "the gleam and the speed of light at last the": [65535, 0], "gleam and the speed of light at last the frantic": [65535, 0], "and the speed of light at last the frantic sufferer": [65535, 0], "the speed of light at last the frantic sufferer sheered": [65535, 0], "speed of light at last the frantic sufferer sheered from": [65535, 0], "of light at last the frantic sufferer sheered from its": [65535, 0], "light at last the frantic sufferer sheered from its course": [65535, 0], "at last the frantic sufferer sheered from its course and": [65535, 0], "last the frantic sufferer sheered from its course and sprang": [65535, 0], "the frantic sufferer sheered from its course and sprang into": [65535, 0], "frantic sufferer sheered from its course and sprang into its": [65535, 0], "sufferer sheered from its course and sprang into its master's": [65535, 0], "sheered from its course and sprang into its master's lap": [65535, 0], "from its course and sprang into its master's lap he": [65535, 0], "its course and sprang into its master's lap he flung": [65535, 0], "course and sprang into its master's lap he flung it": [65535, 0], "and sprang into its master's lap he flung it out": [65535, 0], "sprang into its master's lap he flung it out of": [65535, 0], "into its master's lap he flung it out of the": [65535, 0], "its master's lap he flung it out of the window": [65535, 0], "master's lap he flung it out of the window and": [65535, 0], "lap he flung it out of the window and the": [65535, 0], "he flung it out of the window and the voice": [65535, 0], "flung it out of the window and the voice of": [65535, 0], "it out of the window and the voice of distress": [65535, 0], "out of the window and the voice of distress quickly": [65535, 0], "of the window and the voice of distress quickly thinned": [65535, 0], "the window and the voice of distress quickly thinned away": [65535, 0], "window and the voice of distress quickly thinned away and": [65535, 0], "and the voice of distress quickly thinned away and died": [65535, 0], "the voice of distress quickly thinned away and died in": [65535, 0], "voice of distress quickly thinned away and died in the": [65535, 0], "of distress quickly thinned away and died in the distance": [65535, 0], "distress quickly thinned away and died in the distance by": [65535, 0], "quickly thinned away and died in the distance by this": [65535, 0], "thinned away and died in the distance by this time": [65535, 0], "away and died in the distance by this time the": [65535, 0], "and died in the distance by this time the whole": [65535, 0], "died in the distance by this time the whole church": [65535, 0], "in the distance by this time the whole church was": [65535, 0], "the distance by this time the whole church was red": [65535, 0], "distance by this time the whole church was red faced": [65535, 0], "by this time the whole church was red faced and": [65535, 0], "this time the whole church was red faced and suffocating": [65535, 0], "time the whole church was red faced and suffocating with": [65535, 0], "the whole church was red faced and suffocating with suppressed": [65535, 0], "whole church was red faced and suffocating with suppressed laughter": [65535, 0], "church was red faced and suffocating with suppressed laughter and": [65535, 0], "was red faced and suffocating with suppressed laughter and the": [65535, 0], "red faced and suffocating with suppressed laughter and the sermon": [65535, 0], "faced and suffocating with suppressed laughter and the sermon had": [65535, 0], "and suffocating with suppressed laughter and the sermon had come": [65535, 0], "suffocating with suppressed laughter and the sermon had come to": [65535, 0], "with suppressed laughter and the sermon had come to a": [65535, 0], "suppressed laughter and the sermon had come to a dead": [65535, 0], "laughter and the sermon had come to a dead standstill": [65535, 0], "and the sermon had come to a dead standstill the": [65535, 0], "the sermon had come to a dead standstill the discourse": [65535, 0], "sermon had come to a dead standstill the discourse was": [65535, 0], "had come to a dead standstill the discourse was resumed": [65535, 0], "come to a dead standstill the discourse was resumed presently": [65535, 0], "to a dead standstill the discourse was resumed presently but": [65535, 0], "a dead standstill the discourse was resumed presently but it": [65535, 0], "dead standstill the discourse was resumed presently but it went": [65535, 0], "standstill the discourse was resumed presently but it went lame": [65535, 0], "the discourse was resumed presently but it went lame and": [65535, 0], "discourse was resumed presently but it went lame and halting": [65535, 0], "was resumed presently but it went lame and halting all": [65535, 0], "resumed presently but it went lame and halting all possibility": [65535, 0], "presently but it went lame and halting all possibility of": [65535, 0], "but it went lame and halting all possibility of impressiveness": [65535, 0], "it went lame and halting all possibility of impressiveness being": [65535, 0], "went lame and halting all possibility of impressiveness being at": [65535, 0], "lame and halting all possibility of impressiveness being at an": [65535, 0], "and halting all possibility of impressiveness being at an end": [65535, 0], "halting all possibility of impressiveness being at an end for": [65535, 0], "all possibility of impressiveness being at an end for even": [65535, 0], "possibility of impressiveness being at an end for even the": [65535, 0], "of impressiveness being at an end for even the gravest": [65535, 0], "impressiveness being at an end for even the gravest sentiments": [65535, 0], "being at an end for even the gravest sentiments were": [65535, 0], "at an end for even the gravest sentiments were constantly": [65535, 0], "an end for even the gravest sentiments were constantly being": [65535, 0], "end for even the gravest sentiments were constantly being received": [65535, 0], "for even the gravest sentiments were constantly being received with": [65535, 0], "even the gravest sentiments were constantly being received with a": [65535, 0], "the gravest sentiments were constantly being received with a smothered": [65535, 0], "gravest sentiments were constantly being received with a smothered burst": [65535, 0], "sentiments were constantly being received with a smothered burst of": [65535, 0], "were constantly being received with a smothered burst of unholy": [65535, 0], "constantly being received with a smothered burst of unholy mirth": [65535, 0], "being received with a smothered burst of unholy mirth under": [65535, 0], "received with a smothered burst of unholy mirth under cover": [65535, 0], "with a smothered burst of unholy mirth under cover of": [65535, 0], "a smothered burst of unholy mirth under cover of some": [65535, 0], "smothered burst of unholy mirth under cover of some remote": [65535, 0], "burst of unholy mirth under cover of some remote pew": [65535, 0], "of unholy mirth under cover of some remote pew back": [65535, 0], "unholy mirth under cover of some remote pew back as": [65535, 0], "mirth under cover of some remote pew back as if": [65535, 0], "under cover of some remote pew back as if the": [65535, 0], "cover of some remote pew back as if the poor": [65535, 0], "of some remote pew back as if the poor parson": [65535, 0], "some remote pew back as if the poor parson had": [65535, 0], "remote pew back as if the poor parson had said": [65535, 0], "pew back as if the poor parson had said a": [65535, 0], "back as if the poor parson had said a rarely": [65535, 0], "as if the poor parson had said a rarely facetious": [65535, 0], "if the poor parson had said a rarely facetious thing": [65535, 0], "the poor parson had said a rarely facetious thing it": [65535, 0], "poor parson had said a rarely facetious thing it was": [65535, 0], "parson had said a rarely facetious thing it was a": [65535, 0], "had said a rarely facetious thing it was a genuine": [65535, 0], "said a rarely facetious thing it was a genuine relief": [65535, 0], "a rarely facetious thing it was a genuine relief to": [65535, 0], "rarely facetious thing it was a genuine relief to the": [65535, 0], "facetious thing it was a genuine relief to the whole": [65535, 0], "thing it was a genuine relief to the whole congregation": [65535, 0], "it was a genuine relief to the whole congregation when": [65535, 0], "was a genuine relief to the whole congregation when the": [65535, 0], "a genuine relief to the whole congregation when the ordeal": [65535, 0], "genuine relief to the whole congregation when the ordeal was": [65535, 0], "relief to the whole congregation when the ordeal was over": [65535, 0], "to the whole congregation when the ordeal was over and": [65535, 0], "the whole congregation when the ordeal was over and the": [65535, 0], "whole congregation when the ordeal was over and the benediction": [65535, 0], "congregation when the ordeal was over and the benediction pronounced": [65535, 0], "when the ordeal was over and the benediction pronounced tom": [65535, 0], "the ordeal was over and the benediction pronounced tom sawyer": [65535, 0], "ordeal was over and the benediction pronounced tom sawyer went": [65535, 0], "was over and the benediction pronounced tom sawyer went home": [65535, 0], "over and the benediction pronounced tom sawyer went home quite": [65535, 0], "and the benediction pronounced tom sawyer went home quite cheerful": [65535, 0], "the benediction pronounced tom sawyer went home quite cheerful thinking": [65535, 0], "benediction pronounced tom sawyer went home quite cheerful thinking to": [65535, 0], "pronounced tom sawyer went home quite cheerful thinking to himself": [65535, 0], "tom sawyer went home quite cheerful thinking to himself that": [65535, 0], "sawyer went home quite cheerful thinking to himself that there": [65535, 0], "went home quite cheerful thinking to himself that there was": [65535, 0], "home quite cheerful thinking to himself that there was some": [65535, 0], "quite cheerful thinking to himself that there was some satisfaction": [65535, 0], "cheerful thinking to himself that there was some satisfaction about": [65535, 0], "thinking to himself that there was some satisfaction about divine": [65535, 0], "to himself that there was some satisfaction about divine service": [65535, 0], "himself that there was some satisfaction about divine service when": [65535, 0], "that there was some satisfaction about divine service when there": [65535, 0], "there was some satisfaction about divine service when there was": [65535, 0], "was some satisfaction about divine service when there was a": [65535, 0], "some satisfaction about divine service when there was a bit": [65535, 0], "satisfaction about divine service when there was a bit of": [65535, 0], "about divine service when there was a bit of variety": [65535, 0], "divine service when there was a bit of variety in": [65535, 0], "service when there was a bit of variety in it": [65535, 0], "when there was a bit of variety in it he": [65535, 0], "there was a bit of variety in it he had": [65535, 0], "was a bit of variety in it he had but": [65535, 0], "a bit of variety in it he had but one": [65535, 0], "bit of variety in it he had but one marring": [65535, 0], "of variety in it he had but one marring thought": [65535, 0], "variety in it he had but one marring thought he": [65535, 0], "in it he had but one marring thought he was": [65535, 0], "it he had but one marring thought he was willing": [65535, 0], "he had but one marring thought he was willing that": [65535, 0], "had but one marring thought he was willing that the": [65535, 0], "but one marring thought he was willing that the dog": [65535, 0], "one marring thought he was willing that the dog should": [65535, 0], "marring thought he was willing that the dog should play": [65535, 0], "thought he was willing that the dog should play with": [65535, 0], "he was willing that the dog should play with his": [65535, 0], "was willing that the dog should play with his pinchbug": [65535, 0], "willing that the dog should play with his pinchbug but": [65535, 0], "that the dog should play with his pinchbug but he": [65535, 0], "the dog should play with his pinchbug but he did": [65535, 0], "dog should play with his pinchbug but he did not": [65535, 0], "should play with his pinchbug but he did not think": [65535, 0], "play with his pinchbug but he did not think it": [65535, 0], "with his pinchbug but he did not think it was": [65535, 0], "his pinchbug but he did not think it was upright": [65535, 0], "pinchbug but he did not think it was upright in": [65535, 0], "but he did not think it was upright in him": [65535, 0], "he did not think it was upright in him to": [65535, 0], "did not think it was upright in him to carry": [65535, 0], "not think it was upright in him to carry it": [65535, 0], "think it was upright in him to carry it off": [65535, 0], "monday": [65535, 0], "miserable": [65535, 0], "because": [44786, 20749], "week's": [65535, 0], "slow": [49105, 16430], "generally": [65535, 0], "day": [17973, 47562], "wishing": [65535, 0], "intervening": [65535, 0], "holiday": [65535, 0], "fetters": [65535, 0], "odious": [65535, 0], "occurred": [65535, 0], "sick": [65535, 0], "stay": [23349, 42186], "vague": [65535, 0], "canvassed": [65535, 0], "system": [65535, 0], "ailment": [65535, 0], "investigated": [65535, 0], "detect": [65535, 0], "colicky": [65535, 0], "symptoms": [65535, 0], "encourage": [65535, 0], "considerable": [65535, 0], "hope": [21790, 43745], "soon": [65535, 0], "feeble": [32706, 32829], "wholly": [65535, 0], "reflected": [65535, 0], "further": [65535, 0], "suddenly": [65535, 0], "discovered": [65535, 0], "something": [43635, 21900], "upper": [65535, 0], "loose": [19609, 45926], "lucky": [65535, 0], "begin": [49105, 16430], "groan": [65535, 0], "starter": [65535, 0], "court": [65535, 0], "pull": [65535, 0], "hold": [18674, 46861], "tooth": [58229, 7306], "reserve": [65535, 0], "present": [16338, 49197], "seek": [32706, 32829], "nothing": [28026, 37509], "offered": [65535, 0], "remembered": [65535, 0], "hearing": [65535, 0], "doctor": [16338, 49197], "tell": [28433, 37102], "laid": [49105, 16430], "patient": [18674, 46861], "two": [40378, 25157], "or": [25208, 40327], "three": [40902, 24633], "weeks": [65535, 0], "threatened": [65535, 0], "make": [28026, 37509], "lose": [21790, 43745], "eagerly": [65535, 0], "drew": [40902, 24633], "sore": [52389, 13146], "sheet": [65535, 0], "held": [49105, 16430], "inspection": [65535, 0], "know": [24999, 40536], "necessary": [65535, 0], "chance": [56143, 9392], "slept": [43635, 21900], "unconscious": [65535, 0], "groaned": [65535, 0], "louder": [65535, 0], "fancied": [65535, 0], "feel": [65535, 0], "pain": [65535, 0], "result": [65535, 0], "panting": [65535, 0], "exertions": [65535, 0], "rest": [41647, 23888], "swelled": [65535, 0], "fetched": [65535, 0], "succession": [43635, 21900], "admirable": [65535, 0], "groans": [65535, 0], "snored": [65535, 0], "aggravated": [65535, 0], "worked": [65535, 0], "stretched": [65535, 0], "elbow": [65535, 0], "snort": [65535, 0], "stare": [65535, 0], "response": [65535, 0], "what": [18346, 47189], "anxiously": [65535, 0], "moaned": [65535, 0], "oh": [35685, 29850], "don't": [65535, 0], "joggle": [65535, 0], "me": [11138, 54397], "why": [27709, 37826], "what's": [50071, 15464], "must": [11529, 54006], "call": [18155, 47380], "auntie": [65535, 0], "never": [65535, 0], "mind": [65535, 0], "it'll": [65535, 0], "maybe": [65535, 0], "anybody": [65535, 0], "it's": [65535, 0], "awful": [65535, 0], "long": [32706, 32829], "you": [26233, 39302], "way": [49105, 16430], "hours": [65535, 0], "ouch": [65535, 0], "stir": [65535, 0], "you'll": [47613, 17922], "kill": [21790, 43745], "didn't": [65535, 0], "wake": [65535, 0], "sooner": [21790, 43745], "makes": [32706, 32829], "my": [5820, 59715], "flesh": [16338, 49197], "crawl": [65535, 0], "forgive": [65535, 0], "everything": [65535, 0], "you've": [65535, 0], "ever": [65535, 0], "done": [45823, 19712], "i'm": [65535, 0], "gone": [23074, 42461], "ain't": [65535, 0], "dying": [65535, 0], "are": [15506, 50029], "everybody": [65535, 0], "'em": [65535, 0], "give": [65535, 0], "sash": [65535, 0], "cat": [65535, 0], "eye": [42073, 23462], "that's": [46458, 19077], "snatched": [65535, 0], "clothes": [65535, 0], "reality": [65535, 0], "handsomely": [65535, 0], "imagination": [32706, 32829], "gathered": [65535, 0], "tone": [65535, 0], "stairs": [65535, 0], "yes'm": [65535, 0], "wait": [65535, 0], "quick": [65535, 0], "rubbage": [65535, 0], "believe": [65535, 0], "fled": [32706, 32829], "nevertheless": [65535, 0], "heels": [65535, 0], "trembled": [65535, 0], "bedside": [65535, 0], "gasped": [65535, 0], "toe's": [65535, 0], "mortified": [65535, 0], "lady": [55421, 10114], "sank": [65535, 0], "chair": [65535, 0], "laughed": [65535, 0], "cried": [65535, 0], "both": [22739, 42796], "restored": [65535, 0], "shut": [21790, 43745], "nonsense": [65535, 0], "climb": [65535, 0], "ceased": [65535, 0], "vanished": [65535, 0], "your": [11879, 53656], "them's": [65535, 0], "aches": [65535, 0], "you're": [65535, 0], "die": [24518, 41017], "silk": [65535, 0], "chunk": [65535, 0], "kitchen": [52389, 13146], "please": [27246, 38289], "any": [27058, 38477], "wish": [65535, 0], "may": [2511, 63024], "does": [65535, 0], "want": [53583, 11952], "row": [43635, 21900], "you'd": [65535, 0], "fishing": [65535, 0], "love": [65535, 0], "seem": [65535, 0], "try": [57316, 8219], "break": [21790, 43745], "outrageousness": [65535, 0], "dental": [65535, 0], "instruments": [65535, 0], "ready": [65535, 0], "fast": [14521, 51014], "loop": [65535, 0], "tied": [65535, 0], "bedpost": [65535, 0], "thrust": [65535, 0], "hung": [65535, 0], "dangling": [65535, 0], "trials": [65535, 0], "bring": [6531, 59004], "compensations": [65535, 0], "wended": [65535, 0], "breakfast": [65535, 0], "envy": [65535, 0], "met": [13068, 52467], "gap": [65535, 0], "enabled": [65535, 0], "expectorate": [65535, 0], "following": [32706, 32829], "lads": [65535, 0], "exhibition": [65535, 0], "centre": [65535, 0], "fascination": [65535, 0], "homage": [21790, 43745], "without": [35685, 29850], "adherent": [65535, 0], "shorn": [65535, 0], "glory": [65535, 0], "heavy": [65535, 0], "disdain": [65535, 0], "wasn't": [65535, 0], "spit": [21790, 43745], "like": [38070, 27465], "sour": [65535, 0], "grapes": [65535, 0], "wandered": [65535, 0], "dismantled": [65535, 0], "hero": [65535, 0], "shortly": [65535, 0], "juvenile": [65535, 0], "pariah": [65535, 0], "huckleberry": [65535, 0], "finn": [65535, 0], "son": [65535, 0], "drunkard": [32706, 32829], "cordially": [65535, 0], "dreaded": [65535, 0], "mothers": [65535, 0], "idle": [32706, 32829], "lawless": [65535, 0], "vulgar": [43635, 21900], "bad": [49105, 16430], "delighted": [65535, 0], "forbidden": [65535, 0], "society": [65535, 0], "dared": [65535, 0], "respectable": [65535, 0], "envied": [65535, 0], "gaudy": [65535, 0], "outcast": [65535, 0], "condition": [65535, 0], "strict": [65535, 0], "orders": [65535, 0], "played": [65535, 0], "dressed": [65535, 0], "cast": [65535, 0], "full": [49105, 16430], "grown": [65535, 0], "men": [18674, 46861], "perennial": [65535, 0], "bloom": [65535, 0], "fluttering": [65535, 0], "rags": [65535, 0], "hat": [65535, 0], "vast": [65535, 0], "ruin": [65535, 0], "wide": [43635, 21900], "crescent": [65535, 0], "lopped": [65535, 0], "brim": [65535, 0], "wore": [65535, 0], "nearly": [65535, 0], "rearward": [65535, 0], "buttons": [65535, 0], "suspender": [65535, 0], "supported": [65535, 0], "trousers": [65535, 0], "seat": [65535, 0], "bagged": [65535, 0], "low": [49105, 16430], "contained": [65535, 0], "fringed": [65535, 0], "dragged": [65535, 0], "dirt": [65535, 0], "rolled": [65535, 0], "own": [65535, 0], "free": [49105, 16430], "will": [11988, 53547], "doorsteps": [65535, 0], "fine": [49105, 16430], "weather": [65535, 0], "empty": [65535, 0], "hogsheads": [65535, 0], "wet": [65535, 0], "master": [5558, 59977], "obey": [13068, 52467], "swimming": [65535, 0], "chose": [65535, 0], "suited": [65535, 0], "nobody": [65535, 0], "forbade": [65535, 0], "sit": [37388, 28147], "late": [36348, 29187], "pleased": [65535, 0], "barefoot": [65535, 0], "resume": [65535, 0], "leather": [21790, 43745], "wash": [65535, 0], "put": [39262, 26273], "clean": [65535, 0], "swear": [65535, 0], "wonderfully": [65535, 0], "goes": [32706, 32829], "life": [14851, 50684], "precious": [65535, 0], "harassed": [65535, 0], "hampered": [65535, 0], "hailed": [65535, 0], "romantic": [65535, 0], "hello": [65535, 0], "yourself": [65535, 0], "lemme": [65535, 0], "huck": [65535, 0], "he's": [38169, 27366], "pretty": [65535, 0], "stiff": [65535, 0], "where'd": [65535, 0], "bought": [28026, 37509], "off'n": [65535, 0], "blue": [65535, 0], "ticket": [65535, 0], "bladder": [65535, 0], "slaughter": [65535, 0], "ben": [65535, 0], "rogers": [65535, 0], "hoop": [65535, 0], "stick": [65535, 0], "cats": [65535, 0], "cure": [65535, 0], "warts": [65535, 0], "bet": [65535, 0], "spunk": [65535, 0], "water": [57316, 8219], "wouldn't": [65535, 0], "dern": [65535, 0], "d'you": [65535, 0], "hain't": [65535, 0], "bob": [65535, 0], "tanner": [65535, 0], "told": [43635, 21900], "jeff": [65535, 0], "thatcher": [65535, 0], "johnny": [65535, 0], "baker": [65535, 0], "jim": [65535, 0], "hollis": [65535, 0], "nigger": [65535, 0], "they'll": [26155, 39380], "leastways": [65535, 0], "shucks": [65535, 0], "dipped": [65535, 0], "rotten": [65535, 0], "stump": [65535, 0], "rain": [65535, 0], "daytime": [65535, 0], "certainly": [65535, 0], "yes": [52389, 13146], "least": [32706, 32829], "reckon": [65535, 0], "aha": [65535, 0], "talk": [65535, 0], "trying": [54578, 10957], "blame": [21790, 43745], "fool": [65535, 0], "middle": [65535, 0], "woods": [65535, 0], "there's": [15080, 50455], "midnight": [65535, 0], "against": [7684, 57851], "jam": [65535, 0], "'barley": [65535, 0], "corn": [65535, 0], "barley": [65535, 0], "injun": [65535, 0], "meal": [65535, 0], "shorts": [65535, 0], "swaller": [65535, 0], "these": [16757, 48778], "'": [65535, 0], "walk": [65535, 0], "eleven": [65535, 0], "steps": [65535, 0], "times": [37388, 28147], "speaking": [65535, 0], "charm's": [65535, 0], "busted": [65535, 0], "sounds": [65535, 0], "sir": [4213, 61322], "becuz": [65535, 0], "wartiest": [65535, 0], "wart": [54578, 10957], "he'd": [65535, 0], "knowed": [65535, 0], "work": [65535, 0], "i've": [65535, 0], "thousands": [65535, 0], "frogs": [65535, 0], "sometimes": [49105, 16430], "bean": [65535, 0], "bean's": [65535, 0], "split": [65535, 0], "blood": [37388, 28147], "piece": [65535, 0], "dig": [65535, 0], "hole": [65535, 0], "bury": [65535, 0], "'bout": [65535, 0], "crossroads": [65535, 0], "dark": [65535, 0], "moon": [65535, 0], "burn": [65535, 0], "keep": [65535, 0], "drawing": [65535, 0], "fetch": [11529, 54006], "helps": [65535, 0], "draw": [26155, 39380], "comes": [4354, 61181], "though": [21790, 43745], "burying": [65535, 0], "'down": [65535, 0], "bother": [65535, 0], "joe": [65535, 0], "harper": [65535, 0], "coonville": [65535, 0], "everywheres": [65535, 0], "graveyard": [65535, 0], "'long": [65535, 0], "somebody": [65535, 0], "wicked": [65535, 0], "has": [65535, 0], "buried": [43635, 21900], "devil": [65535, 0], "can't": [65535, 0], "wind": [65535, 0], "they're": [65535, 0], "feller": [65535, 0], "heave": [65535, 0], "'devil": [65535, 0], "follow": [65535, 0], "corpse": [65535, 0], "ye": [65535, 0], "that'll": [65535, 0], "right": [49105, 16430], "hopkins": [65535, 0], "she's": [43635, 21900], "witch": [16338, 49197], "witched": [65535, 0], "pap": [65535, 0], "says": [65535, 0], "self": [65535, 0], "witching": [65535, 0], "rock": [65535, 0], "hadn't": [65535, 0], "dodged": [65535, 0], "very": [49105, 16430], "night": [26155, 39380], "shed": [65535, 0], "wher'": [65535, 0], "layin": [65535, 0], "drunk": [65535, 0], "broke": [40902, 24633], "arm": [65535, 0], "lord": [6531, 59004], "easy": [65535, 0], "stiddy": [65535, 0], "specially": [65535, 0], "mumble": [65535, 0], "saying": [56143, 9392], "lord's": [65535, 0], "backards": [65535, 0], "hucky": [65535, 0], "hoss": [65535, 0], "williams": [65535, 0], "saturday": [65535, 0], "charms": [65535, 0], "devils": [65535, 0], "slosh": [65535, 0], "afeard": [65535, 0], "'tain't": [65535, 0], "likely": [65535, 0], "meow": [65535, 0], "kep'": [65535, 0], "meowing": [65535, 0], "hays": [65535, 0], "throwing": [65535, 0], "rocks": [65535, 0], "'dern": [65535, 0], "hove": [65535, 0], "brick": [65535, 0], "won't": [65535, 0], "couldn't": [65535, 0], "watching": [65535, 0], "i'll": [65535, 0], "tick": [65535, 0], "what'll": [65535, 0], "sell": [65535, 0], "mighty": [46760, 18775], "anyway": [65535, 0], "belong": [65535, 0], "satisfied": [65535, 0], "enough": [51450, 14085], "sho": [65535, 0], "ticks": [65535, 0], "plenty": [65535, 0], "thousand": [34891, 30644], "wanted": [65535, 0], "early": [65535, 0], "year": [65535, 0], "paper": [65535, 0], "carefully": [65535, 0], "unrolled": [65535, 0], "viewed": [65535, 0], "wistfully": [65535, 0], "temptation": [65535, 0], "genuwyne": [65535, 0], "showed": [65535, 0], "vacancy": [65535, 0], "trade": [65535, 0], "enclosed": [65535, 0], "lately": [43635, 21900], "pinchbug's": [65535, 0], "prison": [21790, 43745], "separated": [65535, 0], "each": [54578, 10957], "feeling": [32706, 32829], "wealthier": [65535, 0], "than": [65535, 0], "isolated": [65535, 0], "frame": [65535, 0], "schoolhouse": [65535, 0], "strode": [65535, 0], "briskly": [65535, 0], "manner": [65535, 0], "honest": [37388, 28147], "peg": [65535, 0], "business": [65535, 0], "alacrity": [65535, 0], "throned": [65535, 0], "high": [65535, 0], "splint": [65535, 0], "bottom": [65535, 0], "dozing": [65535, 0], "lulled": [65535, 0], "drowsy": [65535, 0], "hum": [65535, 0], "study": [65535, 0], "interruption": [65535, 0], "roused": [65535, 0], "thomas": [65535, 0], "name": [17824, 47711], "meant": [32706, 32829], "trouble": [46760, 18775], "refuge": [65535, 0], "saw": [24908, 40627], "yellow": [65535, 0], "hair": [65535, 0], "recognized": [65535, 0], "electric": [65535, 0], "sympathy": [65535, 0], "form": [65535, 0], "vacant": [65535, 0], "place": [38490, 27045], "girls'": [65535, 0], "side": [65535, 0], "stopped": [65535, 0], "pulse": [21790, 43745], "stared": [65535, 0], "buzz": [65535, 0], "pupils": [65535, 0], "wondered": [65535, 0], "foolhardy": [65535, 0], "mistaking": [65535, 0], "astounding": [65535, 0], "confession": [65535, 0], "listened": [65535, 0], "mere": [65535, 0], "ferule": [65535, 0], "answer": [28611, 36924], "offence": [21790, 43745], "jacket": [65535, 0], "performed": [65535, 0], "until": [65535, 0], "stock": [65535, 0], "switches": [65535, 0], "notably": [65535, 0], "diminished": [65535, 0], "girls": [65535, 0], "warning": [65535, 0], "titter": [65535, 0], "rippled": [65535, 0], "room": [65535, 0], "appeared": [65535, 0], "abash": [65535, 0], "caused": [65535, 0], "rather": [21790, 43745], "worshipful": [65535, 0], "awe": [65535, 0], "unknown": [65535, 0], "idol": [65535, 0], "dread": [65535, 0], "pleasure": [65535, 0], "fortune": [13068, 52467], "pine": [65535, 0], "bench": [65535, 0], "hitched": [65535, 0], "herself": [65535, 0], "toss": [65535, 0], "nudges": [65535, 0], "winks": [65535, 0], "whispers": [65535, 0], "traversed": [65535, 0], "desk": [65535, 0], "attention": [65535, 0], "accustomed": [65535, 0], "murmur": [65535, 0], "rose": [65535, 0], "dull": [21790, 43745], "air": [65535, 0], "furtive": [65535, 0], "glances": [65535, 0], "observed": [65535, 0], "space": [65535, 0], "minute": [65535, 0], "cautiously": [65535, 0], "peach": [65535, 0], "gently": [65535, 0], "animosity": [65535, 0], "patiently": [43635, 21900], "returned": [65535, 0], "remain": [65535, 0], "scrawled": [65535, 0], "slate": [65535, 0], "glanced": [43635, 21900], "sign": [65535, 0], "hiding": [65535, 0], "left": [17428, 48107], "refused": [65535, 0], "notice": [65535, 0], "human": [65535, 0], "curiosity": [65535, 0], "manifest": [65535, 0], "perceptible": [65535, 0], "signs": [65535, 0], "apparently": [65535, 0], "sort": [65535, 0], "noncommittal": [65535, 0], "attempt": [65535, 0], "betray": [32706, 32829], "aware": [65535, 0], "hesitatingly": [65535, 0], "partly": [65535, 0], "uncovered": [65535, 0], "dismal": [65535, 0], "caricature": [65535, 0], "gable": [65535, 0], "ends": [65535, 0], "corkscrew": [65535, 0], "smoke": [65535, 0], "issuing": [65535, 0], "chimney": [65535, 0], "girl's": [65535, 0], "interest": [65535, 0], "fasten": [32706, 32829], "finished": [65535, 0], "gazed": [65535, 0], "moment": [65535, 0], "nice": [65535, 0], "man": [14128, 51407], "artist": [65535, 0], "erected": [65535, 0], "yard": [65535, 0], "resembled": [65535, 0], "derrick": [65535, 0], "stepped": [65535, 0], "hypercritical": [65535, 0], "monster": [65535, 0], "coming": [65535, 0], "hour": [65535, 0], "straw": [65535, 0], "limbs": [65535, 0], "armed": [65535, 0], "spreading": [65535, 0], "fingers": [65535, 0], "portentous": [65535, 0], "fan": [65535, 0], "learn": [65535, 0], "noon": [65535, 0], "dinner": [2612, 62923], "whack": [65535, 0], "becky": [65535, 0], "yours": [21790, 43745], "lick": [65535, 0], "scrawl": [65535, 0], "backward": [65535, 0], "begged": [65535, 0], "deed": [65535, 0], "double": [43635, 21900], "live": [65535, 0], "treat": [65535, 0], "scuffle": [65535, 0], "ensued": [65535, 0], "pretending": [65535, 0], "resist": [65535, 0], "earnest": [32706, 32829], "letting": [65535, 0], "slip": [65535, 0], "degrees": [65535, 0], "revealed": [65535, 0], "hit": [52389, 13146], "rap": [65535, 0], "reddened": [65535, 0], "juncture": [65535, 0], "fateful": [65535, 0], "grip": [65535, 0], "steady": [65535, 0], "lifting": [65535, 0], "impulse": [65535, 0], "vise": [65535, 0], "borne": [8165, 57370], "across": [65535, 0], "deposited": [65535, 0], "peppering": [65535, 0], "giggles": [65535, 0], "during": [43635, 21900], "few": [65535, 0], "moments": [65535, 0], "finally": [65535, 0], "moved": [65535, 0], "throne": [65535, 0], "although": [43635, 21900], "tingled": [65535, 0], "jubilant": [65535, 0], "quieted": [65535, 0], "effort": [65535, 0], "turmoil": [65535, 0], "reading": [65535, 0], "class": [65535, 0], "botch": [65535, 0], "geography": [65535, 0], "lakes": [65535, 0], "mountains": [65535, 0], "rivers": [65535, 0], "continents": [65535, 0], "chaos": [65535, 0], "spelling": [65535, 0], "baby": [65535, 0], "foot": [49105, 16430], "yielded": [65535, 0], "pewter": [65535, 0], "medal": [65535, 0], "worn": [65535, 0], "ostentation": [65535, 0], "months": [65535, 0], "monday morning": [65535, 0], "morning found": [65535, 0], "found tom": [65535, 0], "sawyer miserable": [65535, 0], "miserable monday": [65535, 0], "morning always": [65535, 0], "always found": [65535, 0], "found him": [65535, 0], "him so": [54578, 10957], "so because": [65535, 0], "because it": [32706, 32829], "it began": [65535, 0], "began another": [65535, 0], "another week's": [65535, 0], "week's slow": [65535, 0], "slow suffering": [65535, 0], "suffering in": [65535, 0], "in school": [65535, 0], "school he": [65535, 0], "he generally": [65535, 0], "generally began": [65535, 0], "began that": [65535, 0], "that day": [65535, 0], "day with": [65535, 0], "with wishing": [65535, 0], "wishing he": [65535, 0], "had had": [65535, 0], "no intervening": [65535, 0], "intervening holiday": [65535, 0], "holiday it": [65535, 0], "made the": [65535, 0], "the going": [65535, 0], "going into": [65535, 0], "into captivity": [65535, 0], "captivity and": [65535, 0], "and fetters": [65535, 0], "fetters again": [65535, 0], "again so": [65535, 0], "much more": [65535, 0], "more odious": [65535, 0], "odious tom": [65535, 0], "tom lay": [65535, 0], "lay thinking": [65535, 0], "thinking presently": [65535, 0], "presently it": [65535, 0], "it occurred": [65535, 0], "occurred to": [65535, 0], "to him": [43635, 21900], "him that": [32706, 32829], "was sick": [65535, 0], "sick then": [65535, 0], "then he": [58959, 6576], "could stay": [65535, 0], "stay home": [65535, 0], "home from": [65535, 0], "from school": [65535, 0], "school here": [65535, 0], "here was": [65535, 0], "a vague": [65535, 0], "vague possibility": [65535, 0], "possibility he": [65535, 0], "he canvassed": [65535, 0], "canvassed his": [65535, 0], "his system": [65535, 0], "system no": [65535, 0], "no ailment": [65535, 0], "ailment was": [65535, 0], "was found": [65535, 0], "found and": [65535, 0], "he investigated": [65535, 0], "investigated again": [65535, 0], "again this": [65535, 0], "he thought": [65535, 0], "could detect": [65535, 0], "detect colicky": [65535, 0], "colicky symptoms": [65535, 0], "symptoms and": [65535, 0], "he began": [65535, 0], "to encourage": [65535, 0], "encourage them": [65535, 0], "them with": [65535, 0], "with considerable": [65535, 0], "considerable hope": [65535, 0], "hope but": [65535, 0], "but they": [65535, 0], "they soon": [65535, 0], "soon grew": [65535, 0], "grew feeble": [65535, 0], "feeble and": [65535, 0], "presently died": [65535, 0], "died wholly": [65535, 0], "wholly away": [65535, 0], "away he": [65535, 0], "he reflected": [65535, 0], "reflected further": [65535, 0], "further suddenly": [65535, 0], "suddenly he": [65535, 0], "he discovered": [65535, 0], "discovered something": [65535, 0], "something one": [65535, 0], "one of": [50929, 14606], "his upper": [65535, 0], "upper front": [65535, 0], "front teeth": [65535, 0], "teeth was": [65535, 0], "was loose": [65535, 0], "loose this": [65535, 0], "this was": [65535, 0], "was lucky": [65535, 0], "lucky he": [65535, 0], "to begin": [65535, 0], "begin to": [32706, 32829], "to groan": [65535, 0], "groan as": [65535, 0], "a starter": [65535, 0], "starter as": [65535, 0], "as he": [57316, 8219], "it when": [13068, 52467], "when it": [49105, 16430], "that if": [65535, 0], "he came": [32706, 32829], "came into": [32706, 32829], "into court": [65535, 0], "court with": [65535, 0], "with that": [65535, 0], "that argument": [65535, 0], "argument his": [65535, 0], "aunt would": [65535, 0], "would pull": [65535, 0], "pull it": [65535, 0], "out and": [65535, 0], "and that": [18674, 46861], "that would": [18674, 46861], "would hurt": [65535, 0], "hurt so": [65535, 0], "he would": [47281, 18254], "would hold": [65535, 0], "hold the": [65535, 0], "the tooth": [65535, 0], "tooth in": [65535, 0], "in reserve": [65535, 0], "reserve for": [65535, 0], "the present": [32706, 32829], "present and": [65535, 0], "and seek": [65535, 0], "seek further": [65535, 0], "further nothing": [65535, 0], "nothing offered": [65535, 0], "offered for": [65535, 0], "for some": [65535, 0], "some little": [65535, 0], "little time": [65535, 0], "time and": [65535, 0], "he remembered": [65535, 0], "remembered hearing": [65535, 0], "hearing the": [65535, 0], "the doctor": [32706, 32829], "doctor tell": [65535, 0], "tell about": [65535, 0], "about a": [65535, 0], "certain thing": [65535, 0], "thing that": [65535, 0], "that laid": [65535, 0], "laid up": [65535, 0], "up a": [65535, 0], "a patient": [65535, 0], "patient for": [32706, 32829], "for two": [49105, 16430], "two or": [65535, 0], "or three": [65535, 0], "three weeks": [65535, 0], "weeks and": [65535, 0], "and threatened": [65535, 0], "threatened to": [65535, 0], "to make": [34634, 30901], "make him": [52389, 13146], "him lose": [65535, 0], "lose a": [65535, 0], "a finger": [65535, 0], "finger so": [65535, 0], "so the": [65535, 0], "boy eagerly": [65535, 0], "eagerly drew": [65535, 0], "drew his": [65535, 0], "his sore": [65535, 0], "sore toe": [65535, 0], "toe from": [65535, 0], "from under": [65535, 0], "the sheet": [65535, 0], "sheet and": [65535, 0], "and held": [65535, 0], "held it": [65535, 0], "it up": [65535, 0], "up for": [65535, 0], "for inspection": [65535, 0], "inspection but": [65535, 0], "but now": [65535, 0], "not know": [18674, 46861], "know the": [28026, 37509], "the necessary": [65535, 0], "necessary symptoms": [65535, 0], "symptoms however": [65535, 0], "however it": [65535, 0], "seemed well": [65535, 0], "well worth": [65535, 0], "worth while": [65535, 0], "while to": [65535, 0], "to chance": [65535, 0], "chance it": [65535, 0], "he fell": [65535, 0], "fell to": [65535, 0], "to groaning": [65535, 0], "groaning with": [65535, 0], "considerable spirit": [65535, 0], "spirit but": [65535, 0], "but sid": [65535, 0], "sid slept": [65535, 0], "slept on": [65535, 0], "on unconscious": [65535, 0], "unconscious tom": [65535, 0], "tom groaned": [65535, 0], "groaned louder": [65535, 0], "louder and": [65535, 0], "and fancied": [65535, 0], "fancied that": [65535, 0], "to feel": [65535, 0], "feel pain": [65535, 0], "pain in": [65535, 0], "the toe": [65535, 0], "toe no": [65535, 0], "no result": [65535, 0], "result from": [65535, 0], "from sid": [65535, 0], "sid tom": [65535, 0], "was panting": [65535, 0], "panting with": [65535, 0], "his exertions": [65535, 0], "exertions by": [65535, 0], "he took": [65535, 0], "a rest": [65535, 0], "rest and": [65535, 0], "then swelled": [65535, 0], "swelled himself": [65535, 0], "himself up": [65535, 0], "up and": [65535, 0], "and fetched": [65535, 0], "fetched a": [65535, 0], "a succession": [65535, 0], "succession of": [65535, 0], "of admirable": [65535, 0], "admirable groans": [65535, 0], "groans sid": [65535, 0], "sid snored": [65535, 0], "snored on": [65535, 0], "on tom": [65535, 0], "was aggravated": [65535, 0], "aggravated he": [65535, 0], "said sid": [65535, 0], "sid sid": [65535, 0], "and shook": [65535, 0], "shook him": [65535, 0], "him this": [65535, 0], "this course": [32706, 32829], "course worked": [65535, 0], "worked well": [65535, 0], "well and": [65535, 0], "tom began": [65535, 0], "groan again": [65535, 0], "again sid": [65535, 0], "sid yawned": [65535, 0], "yawned stretched": [65535, 0], "stretched then": [65535, 0], "then brought": [65535, 0], "brought himself": [65535, 0], "up on": [65535, 0], "on his": [65535, 0], "his elbow": [65535, 0], "elbow with": [65535, 0], "a snort": [65535, 0], "snort and": [65535, 0], "to stare": [65535, 0], "stare at": [65535, 0], "at tom": [65535, 0], "tom tom": [65535, 0], "tom went": [65535, 0], "went on": [65535, 0], "on groaning": [65535, 0], "groaning sid": [65535, 0], "sid said": [65535, 0], "said tom": [65535, 0], "tom say": [65535, 0], "say tom": [65535, 0], "tom no": [65535, 0], "no response": [65535, 0], "response here": [65535, 0], "here tom": [65535, 0], "tom what": [65535, 0], "what is": [35227, 30308], "is the": [22739, 42796], "matter tom": [65535, 0], "he shook": [65535, 0], "and looked": [65535, 0], "looked in": [65535, 0], "face anxiously": [65535, 0], "anxiously tom": [65535, 0], "tom moaned": [65535, 0], "moaned out": [65535, 0], "out oh": [65535, 0], "oh don't": [65535, 0], "don't sid": [65535, 0], "sid don't": [65535, 0], "don't joggle": [65535, 0], "joggle me": [65535, 0], "me why": [65535, 0], "why what's": [65535, 0], "what's the": [65535, 0], "tom i": [65535, 0], "i must": [21790, 43745], "must call": [65535, 0], "call auntie": [65535, 0], "auntie no": [65535, 0], "no never": [65535, 0], "never mind": [65535, 0], "mind it'll": [65535, 0], "it'll be": [65535, 0], "be over": [65535, 0], "over by": [65535, 0], "by maybe": [65535, 0], "maybe don't": [65535, 0], "don't call": [65535, 0], "call anybody": [65535, 0], "anybody but": [65535, 0], "must don't": [65535, 0], "don't groan": [65535, 0], "groan so": [65535, 0], "so tom": [65535, 0], "tom it's": [65535, 0], "it's awful": [65535, 0], "awful how": [65535, 0], "how long": [43635, 21900], "long you": [65535, 0], "you been": [65535, 0], "been this": [65535, 0], "this way": [43635, 21900], "way hours": [65535, 0], "hours ouch": [65535, 0], "ouch oh": [65535, 0], "don't stir": [65535, 0], "stir so": [65535, 0], "so sid": [65535, 0], "sid you'll": [65535, 0], "you'll kill": [65535, 0], "kill me": [65535, 0], "me tom": [65535, 0], "tom why": [65535, 0], "why didn't": [65535, 0], "didn't you": [65535, 0], "you wake": [65535, 0], "wake me": [65535, 0], "me sooner": [65535, 0], "sooner oh": [65535, 0], "oh tom": [65535, 0], "tom don't": [65535, 0], "don't it": [65535, 0], "it makes": [65535, 0], "makes my": [65535, 0], "my flesh": [65535, 0], "flesh crawl": [65535, 0], "crawl to": [65535, 0], "hear you": [65535, 0], "you tom": [65535, 0], "matter i": [65535, 0], "i forgive": [65535, 0], "forgive you": [65535, 0], "you everything": [65535, 0], "everything sid": [65535, 0], "sid groan": [65535, 0], "groan everything": [65535, 0], "everything you've": [65535, 0], "you've ever": [65535, 0], "ever done": [65535, 0], "done to": [65535, 0], "to me": [9332, 56203], "me when": [65535, 0], "when i'm": [65535, 0], "i'm gone": [65535, 0], "gone oh": [65535, 0], "tom you": [65535, 0], "you ain't": [65535, 0], "ain't dying": [65535, 0], "dying are": [65535, 0], "are you": [21790, 43745], "you don't": [65535, 0], "don't tom": [65535, 0], "tom oh": [65535, 0], "don't maybe": [65535, 0], "maybe i": [65535, 0], "forgive everybody": [65535, 0], "everybody sid": [65535, 0], "groan tell": [65535, 0], "tell 'em": [65535, 0], "'em so": [65535, 0], "sid you": [65535, 0], "you give": [65535, 0], "give my": [65535, 0], "my window": [65535, 0], "window sash": [65535, 0], "sash and": [65535, 0], "and my": [5937, 59598], "my cat": [65535, 0], "cat with": [65535, 0], "with one": [65535, 0], "one eye": [65535, 0], "eye to": [65535, 0], "to that": [13068, 52467], "that new": [65535, 0], "new girl": [65535, 0], "girl that's": [65535, 0], "that's come": [65535, 0], "to town": [65535, 0], "and tell": [16338, 49197], "tell her": [21790, 43745], "her but": [65535, 0], "sid had": [65535, 0], "had snatched": [65535, 0], "snatched his": [65535, 0], "his clothes": [65535, 0], "clothes and": [65535, 0], "and gone": [65535, 0], "gone tom": [65535, 0], "was suffering": [65535, 0], "in reality": [65535, 0], "reality now": [65535, 0], "now so": [65535, 0], "so handsomely": [65535, 0], "handsomely was": [65535, 0], "was his": [32706, 32829], "his imagination": [65535, 0], "imagination working": [65535, 0], "working and": [65535, 0], "so his": [43635, 21900], "his groans": [65535, 0], "groans had": [65535, 0], "had gathered": [65535, 0], "gathered quite": [65535, 0], "quite a": [65535, 0], "genuine tone": [65535, 0], "tone sid": [65535, 0], "sid flew": [65535, 0], "down stairs": [65535, 0], "stairs and": [65535, 0], "and said": [65535, 0], "said oh": [65535, 0], "oh aunt": [65535, 0], "polly come": [65535, 0], "come tom's": [65535, 0], "tom's dying": [65535, 0], "dying dying": [65535, 0], "dying yes'm": [65535, 0], "yes'm don't": [65535, 0], "don't wait": [65535, 0], "wait come": [65535, 0], "come quick": [65535, 0], "quick rubbage": [65535, 0], "rubbage i": [65535, 0], "i don't": [65535, 0], "don't believe": [65535, 0], "believe it": [65535, 0], "but she": [32706, 32829], "she fled": [65535, 0], "fled up": [65535, 0], "up stairs": [65535, 0], "stairs nevertheless": [65535, 0], "nevertheless with": [65535, 0], "with sid": [65535, 0], "mary at": [65535, 0], "at her": [21790, 43745], "her heels": [65535, 0], "heels and": [65535, 0], "and her": [49105, 16430], "her face": [43635, 21900], "face grew": [65535, 0], "grew white": [65535, 0], "white too": [65535, 0], "her lip": [65535, 0], "lip trembled": [65535, 0], "trembled when": [65535, 0], "when she": [65535, 0], "she reached": [65535, 0], "reached the": [65535, 0], "the bedside": [65535, 0], "bedside she": [65535, 0], "she gasped": [65535, 0], "gasped out": [65535, 0], "out you": [32706, 32829], "tom what's": [65535, 0], "matter with": [65535, 0], "with you": [23349, 42186], "you oh": [65535, 0], "oh auntie": [65535, 0], "auntie i'm": [65535, 0], "i'm what's": [65535, 0], "you what": [16338, 49197], "you child": [65535, 0], "child oh": [65535, 0], "auntie my": [65535, 0], "my sore": [65535, 0], "sore toe's": [65535, 0], "toe's mortified": [65535, 0], "mortified the": [65535, 0], "the old": [65535, 0], "old lady": [65535, 0], "lady sank": [65535, 0], "sank down": [65535, 0], "down into": [65535, 0], "a chair": [65535, 0], "chair and": [65535, 0], "and laughed": [65535, 0], "laughed a": [65535, 0], "little then": [65535, 0], "then cried": [65535, 0], "cried a": [65535, 0], "then did": [65535, 0], "did both": [65535, 0], "both together": [65535, 0], "together this": [65535, 0], "this restored": [65535, 0], "restored her": [65535, 0], "her and": [49105, 16430], "and she": [61666, 3869], "she said": [65535, 0], "what a": [43635, 21900], "a turn": [65535, 0], "turn you": [65535, 0], "you did": [21790, 43745], "did give": [65535, 0], "give me": [65535, 0], "me now": [43635, 21900], "now you": [43635, 21900], "you shut": [32706, 32829], "shut up": [65535, 0], "up that": [65535, 0], "that nonsense": [65535, 0], "nonsense and": [65535, 0], "and climb": [65535, 0], "climb out": [65535, 0], "of this": [28026, 37509], "this the": [32706, 32829], "the groans": [65535, 0], "groans ceased": [65535, 0], "ceased and": [65535, 0], "the pain": [65535, 0], "pain vanished": [65535, 0], "vanished from": [65535, 0], "boy felt": [65535, 0], "felt a": [65535, 0], "little foolish": [65535, 0], "said aunt": [65535, 0], "polly it": [65535, 0], "seemed mortified": [65535, 0], "mortified and": [65535, 0], "and it": [52389, 13146], "it hurt": [65535, 0], "so i": [26155, 39380], "i never": [65535, 0], "never minded": [65535, 0], "minded my": [65535, 0], "my tooth": [65535, 0], "tooth at": [65535, 0], "at all": [32706, 32829], "all your": [65535, 0], "your tooth": [65535, 0], "tooth indeed": [65535, 0], "indeed what's": [65535, 0], "with your": [32706, 32829], "tooth one": [65535, 0], "of them's": [65535, 0], "them's loose": [65535, 0], "loose and": [65535, 0], "it aches": [65535, 0], "aches perfectly": [65535, 0], "perfectly awful": [65535, 0], "awful there": [65535, 0], "there there": [65535, 0], "there now": [65535, 0], "now don't": [65535, 0], "don't begin": [65535, 0], "begin that": [65535, 0], "that groaning": [65535, 0], "groaning again": [65535, 0], "again open": [65535, 0], "open your": [65535, 0], "your mouth": [65535, 0], "mouth well": [65535, 0], "well your": [65535, 0], "tooth is": [65535, 0], "is loose": [65535, 0], "loose but": [65535, 0], "but you're": [65535, 0], "you're not": [65535, 0], "not going": [65535, 0], "going to": [52389, 13146], "to die": [16338, 49197], "die about": [65535, 0], "about that": [65535, 0], "that mary": [65535, 0], "mary get": [65535, 0], "get me": [65535, 0], "me a": [24518, 41017], "a silk": [65535, 0], "silk thread": [65535, 0], "thread and": [65535, 0], "a chunk": [65535, 0], "chunk of": [65535, 0], "of fire": [32706, 32829], "fire out": [65535, 0], "the kitchen": [65535, 0], "kitchen tom": [65535, 0], "tom said": [65535, 0], "oh please": [65535, 0], "please auntie": [65535, 0], "auntie don't": [65535, 0], "don't pull": [65535, 0], "it don't": [65535, 0], "don't hurt": [65535, 0], "hurt any": [65535, 0], "any more": [65535, 0], "more i": [32706, 32829], "i wish": [65535, 0], "wish i": [65535, 0], "i may": [65535, 0], "may never": [65535, 0], "never stir": [65535, 0], "stir if": [65535, 0], "it does": [65535, 0], "does please": [65535, 0], "please don't": [65535, 0], "don't auntie": [65535, 0], "auntie i": [65535, 0], "don't want": [65535, 0], "want to": [65535, 0], "to stay": [43635, 21900], "school oh": [65535, 0], "oh you": [65535, 0], "don't don't": [65535, 0], "don't you": [65535, 0], "you so": [49105, 16430], "so all": [65535, 0], "all this": [13068, 52467], "this row": [65535, 0], "row was": [65535, 0], "was because": [65535, 0], "because you": [21790, 43745], "you thought": [32706, 32829], "thought you'd": [65535, 0], "you'd get": [65535, 0], "get to": [65535, 0], "school and": [65535, 0], "and go": [43635, 21900], "go a": [65535, 0], "a fishing": [65535, 0], "fishing tom": [65535, 0], "i love": [65535, 0], "love you": [65535, 0], "so and": [32706, 32829], "and you": [20112, 45423], "you seem": [65535, 0], "seem to": [65535, 0], "to try": [65535, 0], "try every": [65535, 0], "every way": [65535, 0], "way you": [65535, 0], "you can": [65535, 0], "can to": [65535, 0], "to break": [65535, 0], "break my": [65535, 0], "my old": [65535, 0], "old heart": [65535, 0], "heart with": [65535, 0], "your outrageousness": [65535, 0], "outrageousness by": [65535, 0], "the dental": [65535, 0], "dental instruments": [65535, 0], "instruments were": [65535, 0], "were ready": [65535, 0], "ready the": [65535, 0], "lady made": [65535, 0], "made one": [65535, 0], "one end": [65535, 0], "end of": [65535, 0], "the silk": [65535, 0], "thread fast": [65535, 0], "fast to": [65535, 0], "to tom's": [65535, 0], "tom's tooth": [65535, 0], "tooth with": [65535, 0], "a loop": [65535, 0], "loop and": [65535, 0], "and tied": [65535, 0], "tied the": [65535, 0], "other to": [65535, 0], "the bedpost": [65535, 0], "bedpost then": [65535, 0], "then she": [56143, 9392], "she seized": [65535, 0], "seized the": [65535, 0], "the chunk": [65535, 0], "and suddenly": [65535, 0], "suddenly thrust": [65535, 0], "thrust it": [65535, 0], "it almost": [65535, 0], "almost into": [65535, 0], "boy's face": [65535, 0], "face the": [65535, 0], "tooth hung": [65535, 0], "hung dangling": [65535, 0], "dangling by": [65535, 0], "bedpost now": [65535, 0], "now but": [65535, 0], "but all": [65535, 0], "all trials": [65535, 0], "trials bring": [65535, 0], "bring their": [65535, 0], "their compensations": [65535, 0], "compensations as": [65535, 0], "as tom": [65535, 0], "tom wended": [65535, 0], "wended to": [65535, 0], "to school": [65535, 0], "school after": [65535, 0], "after breakfast": [65535, 0], "breakfast he": [65535, 0], "the envy": [65535, 0], "envy of": [65535, 0], "of every": [65535, 0], "every boy": [65535, 0], "he met": [32706, 32829], "met because": [65535, 0], "because the": [43635, 21900], "the gap": [65535, 0], "gap in": [65535, 0], "upper row": [65535, 0], "row of": [65535, 0], "of teeth": [65535, 0], "teeth enabled": [65535, 0], "enabled him": [65535, 0], "to expectorate": [65535, 0], "expectorate in": [65535, 0], "a new": [65535, 0], "new and": [65535, 0], "and admirable": [65535, 0], "admirable way": [65535, 0], "way he": [65535, 0], "he gathered": [65535, 0], "a following": [65535, 0], "following of": [65535, 0], "of lads": [65535, 0], "lads interested": [65535, 0], "interested in": [65535, 0], "the exhibition": [65535, 0], "exhibition and": [65535, 0], "and one": [65535, 0], "one that": [9332, 56203], "that had": [49105, 16430], "had cut": [65535, 0], "cut his": [65535, 0], "his finger": [32706, 32829], "finger and": [65535, 0], "and had": [65535, 0], "been a": [65535, 0], "a centre": [65535, 0], "centre of": [65535, 0], "of fascination": [65535, 0], "fascination and": [65535, 0], "and homage": [65535, 0], "homage up": [65535, 0], "to this": [16338, 49197], "time now": [65535, 0], "now found": [65535, 0], "found himself": [65535, 0], "himself suddenly": [65535, 0], "suddenly without": [65535, 0], "without an": [65535, 0], "an adherent": [65535, 0], "adherent and": [65535, 0], "and shorn": [65535, 0], "shorn of": [65535, 0], "his glory": [65535, 0], "glory his": [65535, 0], "heart was": [65535, 0], "was heavy": [65535, 0], "heavy and": [65535, 0], "said with": [65535, 0], "a disdain": [65535, 0], "disdain which": [65535, 0], "which he": [39262, 26273], "not feel": [65535, 0], "feel that": [65535, 0], "it wasn't": [65535, 0], "wasn't anything": [65535, 0], "anything to": [65535, 0], "to spit": [65535, 0], "spit like": [65535, 0], "like tom": [65535, 0], "sawyer but": [65535, 0], "but another": [65535, 0], "another boy": [65535, 0], "boy said": [65535, 0], "said sour": [65535, 0], "sour grapes": [65535, 0], "grapes and": [65535, 0], "he wandered": [65535, 0], "wandered away": [65535, 0], "away a": [65535, 0], "a dismantled": [65535, 0], "dismantled hero": [65535, 0], "hero shortly": [65535, 0], "shortly tom": [65535, 0], "tom came": [65535, 0], "came upon": [65535, 0], "the juvenile": [65535, 0], "juvenile pariah": [65535, 0], "pariah of": [65535, 0], "village huckleberry": [65535, 0], "huckleberry finn": [65535, 0], "finn son": [65535, 0], "son of": [65535, 0], "town drunkard": [65535, 0], "drunkard huckleberry": [65535, 0], "huckleberry was": [65535, 0], "was cordially": [65535, 0], "cordially hated": [65535, 0], "hated and": [65535, 0], "and dreaded": [65535, 0], "dreaded by": [65535, 0], "by all": [21790, 43745], "the mothers": [65535, 0], "mothers of": [65535, 0], "town because": [65535, 0], "because he": [65535, 0], "was idle": [65535, 0], "idle and": [65535, 0], "and lawless": [65535, 0], "lawless and": [65535, 0], "and vulgar": [65535, 0], "vulgar and": [65535, 0], "and bad": [32706, 32829], "bad and": [65535, 0], "and because": [65535, 0], "because all": [65535, 0], "all their": [65535, 0], "their children": [65535, 0], "children admired": [65535, 0], "admired him": [65535, 0], "and delighted": [65535, 0], "delighted in": [65535, 0], "his forbidden": [65535, 0], "forbidden society": [65535, 0], "society and": [65535, 0], "and wished": [65535, 0], "wished they": [65535, 0], "they dared": [65535, 0], "dared to": [65535, 0], "be like": [65535, 0], "like him": [65535, 0], "him tom": [65535, 0], "was like": [32706, 32829], "like the": [39262, 26273], "the rest": [65535, 0], "rest of": [65535, 0], "the respectable": [65535, 0], "respectable boys": [65535, 0], "boys in": [65535, 0], "he envied": [65535, 0], "envied huckleberry": [65535, 0], "huckleberry his": [65535, 0], "his gaudy": [65535, 0], "gaudy outcast": [65535, 0], "outcast condition": [65535, 0], "condition and": [65535, 0], "was under": [65535, 0], "under strict": [65535, 0], "strict orders": [65535, 0], "orders not": [65535, 0], "not to": [65535, 0], "to play": [65535, 0], "with him": [32706, 32829], "he played": [65535, 0], "played with": [65535, 0], "him every": [65535, 0], "every time": [65535, 0], "he got": [65535, 0], "got a": [65535, 0], "a chance": [65535, 0], "chance huckleberry": [65535, 0], "always dressed": [65535, 0], "dressed in": [65535, 0], "the cast": [65535, 0], "cast off": [65535, 0], "off clothes": [65535, 0], "clothes of": [65535, 0], "of full": [65535, 0], "full grown": [65535, 0], "grown men": [65535, 0], "men and": [43635, 21900], "they were": [65535, 0], "were in": [54578, 10957], "in perennial": [65535, 0], "perennial bloom": [65535, 0], "bloom and": [65535, 0], "and fluttering": [65535, 0], "fluttering with": [65535, 0], "with rags": [65535, 0], "rags his": [65535, 0], "his hat": [65535, 0], "hat was": [65535, 0], "a vast": [65535, 0], "vast ruin": [65535, 0], "ruin with": [65535, 0], "a wide": [65535, 0], "wide crescent": [65535, 0], "crescent lopped": [65535, 0], "lopped out": [65535, 0], "of its": [65535, 0], "its brim": [65535, 0], "brim his": [65535, 0], "his coat": [65535, 0], "coat when": [65535, 0], "he wore": [65535, 0], "wore one": [65535, 0], "one hung": [65535, 0], "hung nearly": [65535, 0], "nearly to": [65535, 0], "his heels": [65535, 0], "had the": [13068, 52467], "the rearward": [65535, 0], "rearward buttons": [65535, 0], "buttons far": [65535, 0], "far down": [65535, 0], "back but": [65535, 0], "one suspender": [65535, 0], "suspender supported": [65535, 0], "supported his": [65535, 0], "his trousers": [65535, 0], "trousers the": [65535, 0], "the seat": [65535, 0], "seat of": [65535, 0], "the trousers": [65535, 0], "trousers bagged": [65535, 0], "bagged low": [65535, 0], "low and": [65535, 0], "and contained": [65535, 0], "contained nothing": [65535, 0], "nothing the": [65535, 0], "the fringed": [65535, 0], "fringed legs": [65535, 0], "legs dragged": [65535, 0], "dragged in": [65535, 0], "the dirt": [65535, 0], "dirt when": [65535, 0], "when not": [65535, 0], "not rolled": [65535, 0], "rolled up": [65535, 0], "up huckleberry": [65535, 0], "huckleberry came": [65535, 0], "went at": [65535, 0], "at his": [39262, 26273], "his own": [65535, 0], "own free": [65535, 0], "free will": [65535, 0], "will he": [32706, 32829], "he slept": [32706, 32829], "on doorsteps": [65535, 0], "doorsteps in": [65535, 0], "in fine": [65535, 0], "fine weather": [65535, 0], "weather and": [65535, 0], "and in": [5442, 60093], "in empty": [65535, 0], "empty hogsheads": [65535, 0], "hogsheads in": [65535, 0], "in wet": [65535, 0], "wet he": [65535, 0], "not have": [65535, 0], "have to": [65535, 0], "to go": [40902, 24633], "go to": [21790, 43745], "school or": [65535, 0], "or to": [65535, 0], "church or": [65535, 0], "or call": [65535, 0], "call any": [65535, 0], "any being": [65535, 0], "being master": [65535, 0], "master or": [65535, 0], "or obey": [65535, 0], "obey anybody": [65535, 0], "anybody he": [65535, 0], "could go": [32706, 32829], "go fishing": [65535, 0], "fishing or": [65535, 0], "or swimming": [65535, 0], "swimming when": [65535, 0], "when and": [32706, 32829], "and where": [65535, 0], "where he": [43635, 21900], "he chose": [65535, 0], "chose and": [65535, 0], "and stay": [32706, 32829], "stay as": [65535, 0], "as long": [65535, 0], "long as": [65535, 0], "as it": [21790, 43745], "it suited": [65535, 0], "suited him": [65535, 0], "him nobody": [65535, 0], "nobody forbade": [65535, 0], "forbade him": [65535, 0], "to fight": [65535, 0], "fight he": [65535, 0], "could sit": [65535, 0], "sit up": [65535, 0], "up as": [65535, 0], "as late": [65535, 0], "late as": [65535, 0], "he pleased": [65535, 0], "pleased he": [65535, 0], "always the": [65535, 0], "first boy": [65535, 0], "boy that": [65535, 0], "that went": [21790, 43745], "went barefoot": [65535, 0], "barefoot in": [65535, 0], "the spring": [32706, 32829], "spring and": [65535, 0], "last to": [32706, 32829], "to resume": [65535, 0], "resume leather": [65535, 0], "leather in": [65535, 0], "the fall": [65535, 0], "fall he": [65535, 0], "he never": [65535, 0], "never had": [65535, 0], "had to": [56143, 9392], "to wash": [65535, 0], "wash nor": [65535, 0], "nor put": [65535, 0], "put on": [65535, 0], "on clean": [65535, 0], "clean clothes": [65535, 0], "clothes he": [65535, 0], "could swear": [65535, 0], "swear wonderfully": [65535, 0], "wonderfully in": [65535, 0], "a word": [37388, 28147], "word everything": [65535, 0], "everything that": [65535, 0], "that goes": [32706, 32829], "goes to": [65535, 0], "make life": [65535, 0], "life precious": [65535, 0], "precious that": [65535, 0], "that boy": [65535, 0], "boy had": [65535, 0], "had so": [65535, 0], "so thought": [65535, 0], "thought every": [65535, 0], "every harassed": [65535, 0], "harassed hampered": [65535, 0], "hampered respectable": [65535, 0], "respectable boy": [65535, 0], "boy in": [65535, 0], "in st": [65535, 0], "petersburg tom": [65535, 0], "tom hailed": [65535, 0], "hailed the": [65535, 0], "the romantic": [65535, 0], "romantic outcast": [65535, 0], "outcast hello": [65535, 0], "hello huckleberry": [65535, 0], "huckleberry hello": [65535, 0], "hello yourself": [65535, 0], "yourself and": [65535, 0], "and see": [65535, 0], "see how": [65535, 0], "how you": [65535, 0], "you like": [43635, 21900], "like it": [65535, 0], "it what's": [65535, 0], "what's that": [43635, 21900], "that you": [16338, 49197], "you got": [49105, 16430], "got dead": [65535, 0], "dead cat": [65535, 0], "cat lemme": [65535, 0], "lemme see": [65535, 0], "see him": [32706, 32829], "him huck": [65535, 0], "huck my": [65535, 0], "my he's": [65535, 0], "he's pretty": [65535, 0], "pretty stiff": [65535, 0], "stiff where'd": [65535, 0], "where'd you": [65535, 0], "you get": [65535, 0], "get him": [49105, 16430], "him bought": [65535, 0], "bought him": [65535, 0], "him off'n": [65535, 0], "off'n a": [65535, 0], "a boy": [65535, 0], "boy what": [65535, 0], "what did": [65535, 0], "did you": [43635, 21900], "give i": [65535, 0], "i give": [65535, 0], "give a": [65535, 0], "a blue": [65535, 0], "blue ticket": [65535, 0], "ticket and": [65535, 0], "a bladder": [65535, 0], "bladder that": [65535, 0], "that i": [4082, 61453], "i got": [65535, 0], "got at": [65535, 0], "the slaughter": [65535, 0], "slaughter house": [65535, 0], "house where'd": [65535, 0], "get the": [65535, 0], "the blue": [65535, 0], "ticket bought": [65535, 0], "bought it": [65535, 0], "it off'n": [65535, 0], "off'n ben": [65535, 0], "ben rogers": [65535, 0], "rogers two": [65535, 0], "two weeks": [65535, 0], "weeks ago": [65535, 0], "ago for": [65535, 0], "a hoop": [65535, 0], "hoop stick": [65535, 0], "stick say": [65535, 0], "say what": [32706, 32829], "is dead": [65535, 0], "dead cats": [65535, 0], "cats good": [65535, 0], "good for": [65535, 0], "for huck": [65535, 0], "huck good": [65535, 0], "for cure": [65535, 0], "cure warts": [65535, 0], "warts with": [65535, 0], "with no": [43635, 21900], "no is": [65535, 0], "is that": [32706, 32829], "that so": [65535, 0], "i know": [20112, 45423], "know something": [65535, 0], "something that's": [65535, 0], "that's better": [65535, 0], "better i": [65535, 0], "i bet": [65535, 0], "bet you": [65535, 0], "don't what": [65535, 0], "is it": [54578, 10957], "it why": [65535, 0], "why spunk": [65535, 0], "spunk water": [65535, 0], "water spunk": [65535, 0], "water i": [65535, 0], "i wouldn't": [65535, 0], "wouldn't give": [65535, 0], "a dern": [65535, 0], "dern for": [65535, 0], "for spunk": [65535, 0], "water you": [65535, 0], "you wouldn't": [65535, 0], "wouldn't wouldn't": [65535, 0], "wouldn't you": [65535, 0], "you d'you": [65535, 0], "d'you ever": [65535, 0], "ever try": [65535, 0], "try it": [65535, 0], "it no": [65535, 0], "no i": [46760, 18775], "i hain't": [65535, 0], "hain't but": [65535, 0], "but bob": [65535, 0], "bob tanner": [65535, 0], "tanner did": [65535, 0], "did who": [65535, 0], "who told": [65535, 0], "told you": [32706, 32829], "so why": [65535, 0], "why he": [65535, 0], "he told": [21790, 43745], "told jeff": [65535, 0], "jeff thatcher": [65535, 0], "thatcher and": [65535, 0], "and jeff": [65535, 0], "jeff told": [65535, 0], "told johnny": [65535, 0], "johnny baker": [65535, 0], "baker and": [65535, 0], "and johnny": [65535, 0], "johnny told": [65535, 0], "told jim": [65535, 0], "jim hollis": [65535, 0], "hollis and": [65535, 0], "and jim": [65535, 0], "jim told": [65535, 0], "told ben": [65535, 0], "rogers and": [65535, 0], "and ben": [65535, 0], "ben told": [65535, 0], "told a": [65535, 0], "a nigger": [65535, 0], "nigger and": [65535, 0], "the nigger": [65535, 0], "nigger told": [65535, 0], "told me": [43635, 21900], "me there": [21790, 43745], "now well": [65535, 0], "well what": [65535, 0], "what of": [65535, 0], "it they'll": [65535, 0], "they'll all": [65535, 0], "all lie": [65535, 0], "lie leastways": [65535, 0], "leastways all": [65535, 0], "all but": [32706, 32829], "nigger i": [65535, 0], "don't know": [65535, 0], "know him": [32706, 32829], "him but": [32706, 32829], "never see": [65535, 0], "see a": [21790, 43745], "nigger that": [65535, 0], "that wouldn't": [65535, 0], "wouldn't lie": [65535, 0], "lie shucks": [65535, 0], "shucks now": [65535, 0], "you tell": [46760, 18775], "tell me": [18674, 46861], "me how": [32706, 32829], "how bob": [65535, 0], "tanner done": [65535, 0], "done it": [65535, 0], "it huck": [65535, 0], "huck why": [65535, 0], "took and": [65535, 0], "and dipped": [65535, 0], "dipped his": [65535, 0], "hand in": [43635, 21900], "a rotten": [65535, 0], "rotten stump": [65535, 0], "stump where": [65535, 0], "where the": [52389, 13146], "the rain": [65535, 0], "rain water": [65535, 0], "water was": [65535, 0], "the daytime": [65535, 0], "daytime certainly": [65535, 0], "certainly with": [65535, 0], "face to": [65535, 0], "the stump": [65535, 0], "stump yes": [65535, 0], "yes least": [65535, 0], "least i": [21790, 43745], "i reckon": [65535, 0], "reckon so": [65535, 0], "did he": [32706, 32829], "he say": [32706, 32829], "say anything": [65535, 0], "anything i": [65535, 0], "don't reckon": [65535, 0], "reckon he": [65535, 0], "did i": [10888, 54647], "know aha": [65535, 0], "aha talk": [65535, 0], "talk about": [65535, 0], "about trying": [65535, 0], "trying to": [65535, 0], "to cure": [65535, 0], "with spunk": [65535, 0], "water such": [65535, 0], "a blame": [65535, 0], "blame fool": [65535, 0], "fool way": [65535, 0], "way as": [65535, 0], "as that": [65535, 0], "that why": [65535, 0], "why that": [65535, 0], "that ain't": [65535, 0], "ain't a": [65535, 0], "a going": [65535, 0], "do any": [65535, 0], "any good": [65535, 0], "good you": [65535, 0], "got to": [65535, 0], "go all": [65535, 0], "all by": [65535, 0], "by yourself": [65535, 0], "yourself to": [65535, 0], "the middle": [65535, 0], "middle of": [65535, 0], "the woods": [65535, 0], "woods where": [65535, 0], "where you": [65535, 0], "you know": [23349, 42186], "know there's": [65535, 0], "there's a": [21790, 43745], "a spunk": [65535, 0], "water stump": [65535, 0], "stump and": [65535, 0], "and just": [65535, 0], "just as": [65535, 0], "as it's": [65535, 0], "it's midnight": [65535, 0], "midnight you": [65535, 0], "you back": [65535, 0], "back up": [65535, 0], "up against": [65535, 0], "against the": [16338, 49197], "and jam": [65535, 0], "jam your": [65535, 0], "your hand": [21790, 43745], "in and": [43635, 21900], "and say": [65535, 0], "say 'barley": [65535, 0], "'barley corn": [65535, 0], "corn barley": [65535, 0], "barley corn": [65535, 0], "corn injun": [65535, 0], "injun meal": [65535, 0], "meal shorts": [65535, 0], "shorts spunk": [65535, 0], "water swaller": [65535, 0], "swaller these": [65535, 0], "these warts": [65535, 0], "warts '": [65535, 0], "' and": [65535, 0], "then walk": [65535, 0], "walk away": [65535, 0], "away quick": [65535, 0], "quick eleven": [65535, 0], "eleven steps": [65535, 0], "steps with": [65535, 0], "your eyes": [65535, 0], "eyes shut": [65535, 0], "shut and": [43635, 21900], "then turn": [65535, 0], "turn around": [65535, 0], "around three": [65535, 0], "three times": [65535, 0], "times and": [65535, 0], "and walk": [65535, 0], "walk home": [65535, 0], "home without": [32706, 32829], "without speaking": [65535, 0], "speaking to": [65535, 0], "to anybody": [65535, 0], "anybody because": [65535, 0], "because if": [65535, 0], "if you": [48241, 17294], "you speak": [65535, 0], "speak the": [65535, 0], "the charm's": [65535, 0], "charm's busted": [65535, 0], "busted well": [65535, 0], "well that": [65535, 0], "that sounds": [65535, 0], "sounds like": [65535, 0], "like a": [29728, 35807], "good way": [65535, 0], "way but": [65535, 0], "but that": [13068, 52467], "ain't the": [65535, 0], "the way": [56143, 9392], "way bob": [65535, 0], "done no": [65535, 0], "no sir": [16338, 49197], "sir you": [26155, 39380], "can bet": [65535, 0], "bet he": [65535, 0], "he didn't": [65535, 0], "didn't becuz": [65535, 0], "becuz he's": [65535, 0], "he's the": [65535, 0], "the wartiest": [65535, 0], "wartiest boy": [65535, 0], "this town": [32706, 32829], "he wouldn't": [65535, 0], "wouldn't have": [65535, 0], "have a": [65535, 0], "a wart": [65535, 0], "wart on": [32706, 32829], "on him": [13068, 52467], "him if": [65535, 0], "if he'd": [65535, 0], "he'd knowed": [65535, 0], "knowed how": [65535, 0], "how to": [43635, 21900], "to work": [65535, 0], "work spunk": [65535, 0], "water i've": [65535, 0], "i've took": [65535, 0], "took off": [65535, 0], "off thousands": [65535, 0], "thousands of": [65535, 0], "of warts": [65535, 0], "warts off": [65535, 0], "off of": [65535, 0], "of my": [14851, 50684], "my hands": [65535, 0], "hands that": [65535, 0], "that way": [65535, 0], "way huck": [65535, 0], "huck i": [65535, 0], "i play": [65535, 0], "with frogs": [65535, 0], "frogs so": [65535, 0], "much that": [32706, 32829], "that i've": [65535, 0], "i've always": [65535, 0], "always got": [65535, 0], "got considerable": [65535, 0], "considerable many": [65535, 0], "many warts": [65535, 0], "warts sometimes": [65535, 0], "sometimes i": [65535, 0], "i take": [65535, 0], "take 'em": [65535, 0], "'em off": [65535, 0], "off with": [54578, 10957], "a bean": [65535, 0], "bean yes": [65535, 0], "yes bean's": [65535, 0], "bean's good": [65535, 0], "good i've": [65535, 0], "i've done": [65535, 0], "done that": [65535, 0], "that have": [65535, 0], "have you": [65535, 0], "you what's": [65535, 0], "what's your": [65535, 0], "your way": [65535, 0], "you take": [52389, 13146], "take and": [65535, 0], "and split": [65535, 0], "split the": [65535, 0], "the bean": [65535, 0], "bean and": [65535, 0], "and cut": [65535, 0], "cut the": [32706, 32829], "the wart": [65535, 0], "wart so": [65535, 0], "get some": [65535, 0], "some blood": [65535, 0], "blood and": [65535, 0], "then you": [32706, 32829], "you put": [65535, 0], "put the": [43635, 21900], "the blood": [49105, 16430], "blood on": [65535, 0], "on one": [65535, 0], "one piece": [65535, 0], "piece of": [65535, 0], "and take": [21790, 43745], "and dig": [65535, 0], "dig a": [65535, 0], "a hole": [65535, 0], "hole and": [65535, 0], "and bury": [65535, 0], "bury it": [65535, 0], "it 'bout": [65535, 0], "'bout midnight": [65535, 0], "midnight at": [65535, 0], "the crossroads": [65535, 0], "crossroads in": [65535, 0], "the dark": [65535, 0], "dark of": [65535, 0], "the moon": [65535, 0], "moon and": [65535, 0], "you burn": [65535, 0], "burn up": [65535, 0], "bean you": [65535, 0], "you see": [39262, 26273], "see that": [65535, 0], "that piece": [65535, 0], "piece that's": [65535, 0], "that's got": [65535, 0], "got the": [49105, 16430], "it will": [32706, 32829], "will keep": [65535, 0], "keep drawing": [65535, 0], "drawing and": [65535, 0], "and drawing": [65535, 0], "drawing trying": [65535, 0], "to fetch": [16338, 49197], "fetch the": [43635, 21900], "other piece": [65535, 0], "piece to": [65535, 0], "to it": [65535, 0], "so that": [21790, 43745], "that helps": [65535, 0], "helps the": [65535, 0], "blood to": [65535, 0], "to draw": [65535, 0], "draw the": [65535, 0], "wart and": [65535, 0], "and pretty": [65535, 0], "pretty soon": [65535, 0], "soon off": [65535, 0], "off she": [65535, 0], "she comes": [32706, 32829], "comes yes": [65535, 0], "yes that's": [65535, 0], "that's it": [65535, 0], "huck that's": [65535, 0], "it though": [65535, 0], "though when": [65535, 0], "when you're": [65535, 0], "you're burying": [65535, 0], "burying it": [65535, 0], "you say": [49105, 16430], "say 'down": [65535, 0], "'down bean": [65535, 0], "bean off": [65535, 0], "off wart": [65535, 0], "wart come": [65535, 0], "come no": [32706, 32829], "no more": [32706, 32829], "to bother": [65535, 0], "bother me": [65535, 0], "me '": [65535, 0], "' it's": [65535, 0], "it's better": [65535, 0], "better that's": [65535, 0], "that's the": [65535, 0], "way joe": [65535, 0], "joe harper": [65535, 0], "harper does": [65535, 0], "does and": [65535, 0], "and he's": [65535, 0], "he's been": [65535, 0], "been nearly": [65535, 0], "to coonville": [65535, 0], "coonville and": [65535, 0], "and most": [65535, 0], "most everywheres": [65535, 0], "everywheres but": [65535, 0], "but say": [21790, 43745], "say how": [32706, 32829], "how do": [65535, 0], "do you": [46760, 18775], "you cure": [65535, 0], "cure 'em": [65535, 0], "'em with": [65535, 0], "with dead": [65535, 0], "cats why": [65535, 0], "why you": [32706, 32829], "take your": [65535, 0], "your cat": [65535, 0], "cat and": [65535, 0], "go and": [65535, 0], "and get": [65535, 0], "get in": [32706, 32829], "the graveyard": [65535, 0], "graveyard 'long": [65535, 0], "'long about": [65535, 0], "about midnight": [65535, 0], "midnight when": [65535, 0], "when somebody": [65535, 0], "somebody that": [65535, 0], "was wicked": [65535, 0], "wicked has": [65535, 0], "has been": [65535, 0], "been buried": [65535, 0], "buried and": [65535, 0], "when it's": [65535, 0], "midnight a": [65535, 0], "a devil": [65535, 0], "devil will": [65535, 0], "will come": [65535, 0], "come or": [65535, 0], "or maybe": [65535, 0], "maybe two": [65535, 0], "three but": [65535, 0], "but you": [65535, 0], "you can't": [65535, 0], "can't see": [65535, 0], "see 'em": [65535, 0], "'em you": [65535, 0], "can only": [65535, 0], "only hear": [65535, 0], "hear something": [65535, 0], "something like": [65535, 0], "the wind": [65535, 0], "wind or": [65535, 0], "maybe hear": [65535, 0], "hear 'em": [65535, 0], "'em talk": [65535, 0], "talk and": [65535, 0], "when they're": [65535, 0], "they're taking": [65535, 0], "taking that": [65535, 0], "that feller": [65535, 0], "feller away": [65535, 0], "away you": [65535, 0], "you heave": [65535, 0], "heave your": [65535, 0], "cat after": [65535, 0], "after 'em": [65535, 0], "'em and": [65535, 0], "say 'devil": [65535, 0], "'devil follow": [65535, 0], "follow corpse": [65535, 0], "corpse cat": [65535, 0], "cat follow": [65535, 0], "follow devil": [65535, 0], "devil warts": [65535, 0], "warts follow": [65535, 0], "follow cat": [65535, 0], "cat i'm": [65535, 0], "i'm done": [65535, 0], "done with": [65535, 0], "with ye": [65535, 0], "ye '": [65535, 0], "' that'll": [65535, 0], "that'll fetch": [65535, 0], "fetch any": [65535, 0], "any wart": [65535, 0], "wart sounds": [65535, 0], "sounds right": [65535, 0], "right d'you": [65535, 0], "huck no": [65535, 0], "no but": [65535, 0], "but old": [65535, 0], "old mother": [65535, 0], "mother hopkins": [65535, 0], "hopkins told": [65535, 0], "me well": [32706, 32829], "well i": [53583, 11952], "reckon it's": [65535, 0], "it's so": [65535, 0], "so then": [65535, 0], "then becuz": [65535, 0], "becuz they": [65535, 0], "they say": [16338, 49197], "say she's": [65535, 0], "she's a": [65535, 0], "a witch": [32706, 32829], "witch say": [65535, 0], "say why": [65535, 0], "why tom": [65535, 0], "know she": [65535, 0], "she is": [9332, 56203], "is she": [16338, 49197], "she witched": [65535, 0], "witched pap": [65535, 0], "pap pap": [65535, 0], "pap says": [65535, 0], "says so": [65535, 0], "own self": [65535, 0], "self he": [65535, 0], "he come": [32706, 32829], "come along": [65535, 0], "along one": [65535, 0], "one day": [32706, 32829], "day and": [26155, 39380], "he see": [65535, 0], "see she": [65535, 0], "she was": [65535, 0], "a witching": [65535, 0], "witching him": [65535, 0], "took up": [65535, 0], "a rock": [65535, 0], "rock and": [65535, 0], "and if": [32706, 32829], "she hadn't": [65535, 0], "hadn't dodged": [65535, 0], "dodged he'd": [65535, 0], "he'd a": [65535, 0], "a got": [65535, 0], "got her": [65535, 0], "her well": [65535, 0], "that very": [21790, 43745], "very night": [65535, 0], "night he": [65535, 0], "he rolled": [65535, 0], "rolled off'n": [65535, 0], "a shed": [65535, 0], "shed wher'": [65535, 0], "wher' he": [65535, 0], "a layin": [65535, 0], "layin drunk": [65535, 0], "drunk and": [65535, 0], "and broke": [65535, 0], "broke his": [65535, 0], "his arm": [65535, 0], "arm why": [65535, 0], "why that's": [65535, 0], "that's awful": [65535, 0], "how did": [65535, 0], "he know": [65535, 0], "him lord": [65535, 0], "lord pap": [65535, 0], "pap can": [65535, 0], "can tell": [65535, 0], "tell easy": [65535, 0], "easy pap": [65535, 0], "says when": [65535, 0], "when they": [49105, 16430], "they keep": [65535, 0], "keep looking": [65535, 0], "looking at": [65535, 0], "at you": [21790, 43745], "you right": [65535, 0], "right stiddy": [65535, 0], "stiddy they're": [65535, 0], "they're a": [65535, 0], "witching you": [65535, 0], "you specially": [65535, 0], "specially if": [65535, 0], "they mumble": [65535, 0], "mumble becuz": [65535, 0], "becuz when": [65535, 0], "mumble they're": [65535, 0], "they're saying": [65535, 0], "saying the": [65535, 0], "the lord's": [65535, 0], "lord's prayer": [65535, 0], "prayer backards": [65535, 0], "backards say": [65535, 0], "say hucky": [65535, 0], "hucky when": [65535, 0], "when you": [16338, 49197], "you going": [65535, 0], "try the": [65535, 0], "the cat": [65535, 0], "cat to": [65535, 0], "to night": [21790, 43745], "night i": [65535, 0], "reckon they'll": [65535, 0], "they'll come": [65535, 0], "come after": [65535, 0], "after old": [65535, 0], "old hoss": [65535, 0], "hoss williams": [65535, 0], "williams to": [65535, 0], "night but": [32706, 32829], "they buried": [65535, 0], "buried him": [65535, 0], "him saturday": [65535, 0], "saturday didn't": [65535, 0], "didn't they": [65535, 0], "they get": [65535, 0], "saturday night": [65535, 0], "night why": [65535, 0], "why how": [32706, 32829], "you talk": [65535, 0], "talk how": [65535, 0], "how could": [65535, 0], "could their": [65535, 0], "their charms": [65535, 0], "charms work": [65535, 0], "work till": [65535, 0], "till midnight": [65535, 0], "midnight and": [65535, 0], "then it's": [65535, 0], "it's sunday": [65535, 0], "sunday devils": [65535, 0], "devils don't": [65535, 0], "don't slosh": [65535, 0], "slosh around": [65535, 0], "around much": [65535, 0], "much of": [65535, 0], "a sunday": [65535, 0], "sunday i": [65535, 0], "reckon i": [65535, 0], "never thought": [65535, 0], "that that's": [65535, 0], "that's so": [65535, 0], "so lemme": [65535, 0], "lemme go": [65535, 0], "go with": [16338, 49197], "you of": [32706, 32829], "of course": [65535, 0], "course if": [65535, 0], "ain't afeard": [65535, 0], "afeard afeard": [65535, 0], "afeard 'tain't": [65535, 0], "'tain't likely": [65535, 0], "likely will": [65535, 0], "will you": [17824, 47711], "you meow": [65535, 0], "meow yes": [65535, 0], "yes and": [65535, 0], "meow back": [65535, 0], "back if": [65535, 0], "get a": [52389, 13146], "chance last": [65535, 0], "last time": [65535, 0], "time you": [65535, 0], "you kep'": [65535, 0], "kep' me": [65535, 0], "a meowing": [65535, 0], "meowing around": [65535, 0], "around till": [65535, 0], "till old": [65535, 0], "old hays": [65535, 0], "hays went": [65535, 0], "to throwing": [65535, 0], "throwing rocks": [65535, 0], "rocks at": [65535, 0], "at me": [21790, 43745], "me and": [14521, 51014], "and says": [65535, 0], "says 'dern": [65535, 0], "'dern that": [65535, 0], "that cat": [65535, 0], "cat '": [65535, 0], "i hove": [65535, 0], "hove a": [65535, 0], "a brick": [65535, 0], "brick through": [65535, 0], "through his": [65535, 0], "his window": [65535, 0], "window but": [65535, 0], "but don't": [65535, 0], "tell i": [32706, 32829], "i won't": [65535, 0], "won't i": [65535, 0], "i couldn't": [65535, 0], "couldn't meow": [65535, 0], "meow that": [65535, 0], "that night": [65535, 0], "night becuz": [65535, 0], "becuz auntie": [65535, 0], "auntie was": [65535, 0], "was watching": [65535, 0], "watching me": [65535, 0], "me but": [13068, 52467], "but i'll": [65535, 0], "i'll meow": [65535, 0], "meow this": [65535, 0], "time say": [65535, 0], "say what's": [65535, 0], "that nothing": [65535, 0], "nothing but": [21790, 43745], "a tick": [65535, 0], "tick where'd": [65535, 0], "him out": [43635, 21900], "out in": [65535, 0], "woods what'll": [65535, 0], "what'll you": [65535, 0], "take for": [65535, 0], "for him": [37388, 28147], "him i": [21790, 43745], "know i": [21790, 43745], "to sell": [65535, 0], "sell him": [65535, 0], "him all": [32706, 32829], "all right": [65535, 0], "right it's": [65535, 0], "it's a": [65535, 0], "a mighty": [43635, 21900], "mighty small": [65535, 0], "small tick": [65535, 0], "tick anyway": [65535, 0], "anyway oh": [65535, 0], "oh anybody": [65535, 0], "anybody can": [65535, 0], "can run": [65535, 0], "run a": [65535, 0], "tick down": [65535, 0], "down that": [65535, 0], "that don't": [65535, 0], "don't belong": [65535, 0], "belong to": [65535, 0], "them i'm": [65535, 0], "i'm satisfied": [65535, 0], "satisfied with": [65535, 0], "with it": [19609, 45926], "it it's": [65535, 0], "good enough": [65535, 0], "enough tick": [65535, 0], "tick for": [65535, 0], "for me": [11879, 53656], "me sho": [65535, 0], "sho there's": [65535, 0], "there's ticks": [65535, 0], "ticks a": [65535, 0], "a plenty": [65535, 0], "plenty i": [65535, 0], "i could": [19609, 45926], "could have": [65535, 0], "a thousand": [18674, 46861], "thousand of": [65535, 0], "of 'em": [65535, 0], "'em if": [65535, 0], "if i": [26155, 39380], "i wanted": [65535, 0], "wanted to": [65535, 0], "to well": [65535, 0], "well why": [65535, 0], "why don't": [65535, 0], "you becuz": [65535, 0], "becuz you": [65535, 0], "know mighty": [65535, 0], "mighty well": [65535, 0], "well you": [65535, 0], "can't this": [65535, 0], "this is": [18674, 46861], "is a": [21790, 43745], "a pretty": [65535, 0], "pretty early": [65535, 0], "early tick": [65535, 0], "tick i": [65535, 0], "it's the": [65535, 0], "first one": [65535, 0], "one i've": [65535, 0], "i've seen": [65535, 0], "seen this": [65535, 0], "this year": [65535, 0], "year say": [65535, 0], "say huck": [65535, 0], "huck i'll": [65535, 0], "i'll give": [65535, 0], "give you": [65535, 0], "you my": [32706, 32829], "tooth for": [65535, 0], "him less": [65535, 0], "less see": [65535, 0], "see it": [32706, 32829], "it tom": [65535, 0], "tom got": [65535, 0], "got out": [65535, 0], "out a": [49105, 16430], "of paper": [65535, 0], "paper and": [65535, 0], "and carefully": [65535, 0], "carefully unrolled": [65535, 0], "unrolled it": [65535, 0], "it huckleberry": [65535, 0], "huckleberry viewed": [65535, 0], "viewed it": [65535, 0], "it wistfully": [65535, 0], "wistfully the": [65535, 0], "the temptation": [65535, 0], "temptation was": [65535, 0], "was very": [65535, 0], "very strong": [65535, 0], "strong at": [65535, 0], "last he": [65535, 0], "said is": [65535, 0], "it genuwyne": [65535, 0], "genuwyne tom": [65535, 0], "tom lifted": [65535, 0], "and showed": [65535, 0], "showed the": [65535, 0], "the vacancy": [65535, 0], "vacancy well": [65535, 0], "well all": [65535, 0], "right said": [65535, 0], "said huckleberry": [65535, 0], "huckleberry it's": [65535, 0], "a trade": [65535, 0], "trade tom": [65535, 0], "tom enclosed": [65535, 0], "enclosed the": [65535, 0], "the tick": [65535, 0], "tick in": [65535, 0], "the percussion": [65535, 0], "box that": [65535, 0], "had lately": [65535, 0], "lately been": [65535, 0], "been the": [65535, 0], "the pinchbug's": [65535, 0], "pinchbug's prison": [65535, 0], "prison and": [65535, 0], "boys separated": [65535, 0], "separated each": [65535, 0], "each feeling": [65535, 0], "feeling wealthier": [65535, 0], "wealthier than": [65535, 0], "than before": [65535, 0], "before when": [65535, 0], "when tom": [65535, 0], "tom reached": [65535, 0], "little isolated": [65535, 0], "isolated frame": [65535, 0], "frame schoolhouse": [65535, 0], "schoolhouse he": [65535, 0], "he strode": [65535, 0], "strode in": [65535, 0], "in briskly": [65535, 0], "briskly with": [65535, 0], "the manner": [65535, 0], "manner of": [65535, 0], "of one": [65535, 0], "one who": [65535, 0], "come with": [32706, 32829], "with all": [49105, 16430], "all honest": [65535, 0], "honest speed": [65535, 0], "speed he": [65535, 0], "he hung": [65535, 0], "hung his": [65535, 0], "hat on": [65535, 0], "a peg": [65535, 0], "peg and": [65535, 0], "and flung": [65535, 0], "flung himself": [65535, 0], "into his": [65535, 0], "his seat": [65535, 0], "seat with": [65535, 0], "with business": [65535, 0], "business like": [65535, 0], "like alacrity": [65535, 0], "alacrity the": [65535, 0], "the master": [49105, 16430], "master throned": [65535, 0], "throned on": [65535, 0], "on high": [65535, 0], "high in": [65535, 0], "his great": [65535, 0], "great splint": [65535, 0], "splint bottom": [65535, 0], "bottom arm": [65535, 0], "arm chair": [65535, 0], "chair was": [65535, 0], "was dozing": [65535, 0], "dozing lulled": [65535, 0], "lulled by": [65535, 0], "the drowsy": [65535, 0], "drowsy hum": [65535, 0], "hum of": [65535, 0], "of study": [65535, 0], "study the": [65535, 0], "the interruption": [65535, 0], "interruption roused": [65535, 0], "roused him": [65535, 0], "him thomas": [65535, 0], "thomas sawyer": [65535, 0], "sawyer tom": [65535, 0], "tom knew": [65535, 0], "knew that": [65535, 0], "that when": [32706, 32829], "when his": [65535, 0], "his name": [43635, 21900], "name was": [65535, 0], "was pronounced": [65535, 0], "pronounced in": [65535, 0], "in full": [65535, 0], "full it": [65535, 0], "it meant": [65535, 0], "meant trouble": [65535, 0], "trouble sir": [65535, 0], "sir come": [65535, 0], "come up": [65535, 0], "up here": [65535, 0], "here now": [65535, 0], "now sir": [32706, 32829], "sir why": [21790, 43745], "why are": [65535, 0], "you late": [65535, 0], "late again": [65535, 0], "usual tom": [65535, 0], "take refuge": [65535, 0], "refuge in": [65535, 0], "a lie": [65535, 0], "lie when": [65535, 0], "he saw": [65535, 0], "saw two": [65535, 0], "two long": [65535, 0], "long tails": [65535, 0], "tails of": [65535, 0], "of yellow": [65535, 0], "yellow hair": [65535, 0], "hair hanging": [65535, 0], "hanging down": [65535, 0], "down a": [65535, 0], "a back": [32706, 32829], "back that": [65535, 0], "he recognized": [65535, 0], "recognized by": [65535, 0], "the electric": [65535, 0], "electric sympathy": [65535, 0], "sympathy of": [65535, 0], "of love": [65535, 0], "love and": [65535, 0], "by that": [43635, 21900], "that form": [65535, 0], "form was": [65535, 0], "only vacant": [65535, 0], "vacant place": [65535, 0], "place on": [65535, 0], "the girls'": [65535, 0], "girls' side": [65535, 0], "side of": [65535, 0], "the school": [65535, 0], "school house": [65535, 0], "house he": [65535, 0], "he instantly": [65535, 0], "instantly said": [65535, 0], "said i": [65535, 0], "i stopped": [65535, 0], "stopped to": [65535, 0], "to talk": [65535, 0], "talk with": [65535, 0], "with huckleberry": [65535, 0], "finn the": [65535, 0], "the master's": [65535, 0], "master's pulse": [65535, 0], "pulse stood": [65535, 0], "stood still": [65535, 0], "still and": [32706, 32829], "he stared": [65535, 0], "stared helplessly": [65535, 0], "helplessly the": [65535, 0], "the buzz": [65535, 0], "buzz of": [65535, 0], "study ceased": [65535, 0], "ceased the": [65535, 0], "the pupils": [65535, 0], "pupils wondered": [65535, 0], "wondered if": [65535, 0], "if this": [32706, 32829], "this foolhardy": [65535, 0], "foolhardy boy": [65535, 0], "had lost": [65535, 0], "lost his": [65535, 0], "his mind": [65535, 0], "mind the": [65535, 0], "master said": [65535, 0], "said you": [65535, 0], "you you": [65535, 0], "did what": [65535, 0], "what stopped": [65535, 0], "finn there": [65535, 0], "was no": [65535, 0], "no mistaking": [65535, 0], "mistaking the": [65535, 0], "words thomas": [65535, 0], "sawyer this": [65535, 0], "most astounding": [65535, 0], "astounding confession": [65535, 0], "confession i": [65535, 0], "have ever": [65535, 0], "ever listened": [65535, 0], "listened to": [65535, 0], "to no": [65535, 0], "no mere": [65535, 0], "mere ferule": [65535, 0], "ferule will": [65535, 0], "will answer": [32706, 32829], "answer for": [65535, 0], "this offence": [65535, 0], "offence take": [65535, 0], "take off": [65535, 0], "off your": [65535, 0], "your jacket": [65535, 0], "jacket the": [65535, 0], "master's arm": [65535, 0], "arm performed": [65535, 0], "performed until": [65535, 0], "until it": [65535, 0], "was tired": [65535, 0], "tired and": [65535, 0], "the stock": [65535, 0], "stock of": [65535, 0], "of switches": [65535, 0], "switches notably": [65535, 0], "notably diminished": [65535, 0], "diminished then": [65535, 0], "then the": [52389, 13146], "the order": [65535, 0], "order followed": [65535, 0], "followed now": [65535, 0], "sir go": [65535, 0], "and sit": [65535, 0], "sit with": [65535, 0], "the girls": [65535, 0], "girls and": [65535, 0], "let this": [65535, 0], "this be": [32706, 32829], "be a": [32706, 32829], "a warning": [65535, 0], "warning to": [65535, 0], "to you": [10888, 54647], "you the": [32706, 32829], "the titter": [65535, 0], "titter that": [65535, 0], "that rippled": [65535, 0], "rippled around": [65535, 0], "around the": [65535, 0], "the room": [65535, 0], "room appeared": [65535, 0], "appeared to": [65535, 0], "to abash": [65535, 0], "abash the": [65535, 0], "boy but": [65535, 0], "but in": [65535, 0], "reality that": [65535, 0], "that result": [65535, 0], "result was": [65535, 0], "was caused": [65535, 0], "caused rather": [65535, 0], "rather more": [65535, 0], "more by": [65535, 0], "by his": [32706, 32829], "his worshipful": [65535, 0], "worshipful awe": [65535, 0], "awe of": [65535, 0], "his unknown": [65535, 0], "unknown idol": [65535, 0], "idol and": [65535, 0], "the dread": [65535, 0], "dread pleasure": [65535, 0], "pleasure that": [65535, 0], "that lay": [32706, 32829], "lay in": [65535, 0], "his high": [65535, 0], "high good": [65535, 0], "good fortune": [65535, 0], "fortune he": [65535, 0], "he sat": [65535, 0], "down upon": [65535, 0], "the end": [65535, 0], "the pine": [65535, 0], "pine bench": [65535, 0], "bench and": [65535, 0], "the girl": [65535, 0], "girl hitched": [65535, 0], "hitched herself": [65535, 0], "herself away": [65535, 0], "from him": [43635, 21900], "him with": [39262, 26273], "a toss": [65535, 0], "toss of": [65535, 0], "of her": [29066, 36469], "her head": [65535, 0], "head nudges": [65535, 0], "nudges and": [65535, 0], "and winks": [65535, 0], "winks and": [65535, 0], "and whispers": [65535, 0], "whispers traversed": [65535, 0], "traversed the": [65535, 0], "room but": [65535, 0], "but tom": [65535, 0], "tom sat": [65535, 0], "sat still": [65535, 0], "still with": [65535, 0], "his arms": [65535, 0], "arms upon": [65535, 0], "the long": [65535, 0], "long low": [65535, 0], "low desk": [65535, 0], "desk before": [65535, 0], "before him": [65535, 0], "and seemed": [65535, 0], "to study": [65535, 0], "study his": [65535, 0], "his book": [65535, 0], "book by": [65535, 0], "by attention": [65535, 0], "attention ceased": [65535, 0], "ceased from": [65535, 0], "the accustomed": [65535, 0], "accustomed school": [65535, 0], "school murmur": [65535, 0], "murmur rose": [65535, 0], "rose upon": [65535, 0], "the dull": [65535, 0], "dull air": [65535, 0], "air once": [65535, 0], "more presently": [65535, 0], "boy began": [65535, 0], "to steal": [65535, 0], "steal furtive": [65535, 0], "furtive glances": [65535, 0], "glances at": [65535, 0], "girl she": [65535, 0], "she observed": [65535, 0], "observed it": [65535, 0], "a mouth": [65535, 0], "mouth at": [65535, 0], "at him": [65535, 0], "and gave": [65535, 0], "gave him": [65535, 0], "him the": [65535, 0], "head for": [65535, 0], "the space": [65535, 0], "space of": [65535, 0], "a minute": [65535, 0], "minute when": [65535, 0], "she cautiously": [65535, 0], "cautiously faced": [65535, 0], "faced around": [65535, 0], "around again": [65535, 0], "again a": [65535, 0], "a peach": [65535, 0], "peach lay": [65535, 0], "lay before": [65535, 0], "before her": [32706, 32829], "her she": [65535, 0], "she thrust": [65535, 0], "it away": [65535, 0], "away tom": [65535, 0], "tom gently": [65535, 0], "gently put": [65535, 0], "put it": [65535, 0], "it back": [65535, 0], "back she": [65535, 0], "away again": [65535, 0], "with less": [65535, 0], "less animosity": [65535, 0], "animosity tom": [65535, 0], "tom patiently": [65535, 0], "patiently returned": [65535, 0], "returned it": [65535, 0], "it to": [32706, 32829], "its place": [65535, 0], "place then": [65535, 0], "she let": [65535, 0], "it remain": [65535, 0], "remain tom": [65535, 0], "tom scrawled": [65535, 0], "scrawled on": [65535, 0], "his slate": [65535, 0], "slate please": [65535, 0], "please take": [65535, 0], "take it": [43635, 21900], "it i": [43635, 21900], "got more": [65535, 0], "girl glanced": [65535, 0], "glanced at": [65535, 0], "words but": [65535, 0], "but made": [65535, 0], "made no": [65535, 0], "no sign": [65535, 0], "sign now": [65535, 0], "draw something": [65535, 0], "something on": [65535, 0], "the slate": [65535, 0], "slate hiding": [65535, 0], "hiding his": [65535, 0], "his work": [65535, 0], "work with": [65535, 0], "his left": [65535, 0], "left hand": [65535, 0], "hand for": [65535, 0], "a time": [32706, 32829], "girl refused": [65535, 0], "refused to": [65535, 0], "to notice": [65535, 0], "notice but": [65535, 0], "but her": [16338, 49197], "her human": [65535, 0], "human curiosity": [65535, 0], "curiosity presently": [65535, 0], "presently began": [65535, 0], "to manifest": [65535, 0], "manifest itself": [65535, 0], "itself by": [65535, 0], "by hardly": [65535, 0], "hardly perceptible": [65535, 0], "perceptible signs": [65535, 0], "signs the": [65535, 0], "boy worked": [65535, 0], "worked on": [65535, 0], "on apparently": [65535, 0], "apparently unconscious": [65535, 0], "unconscious the": [65535, 0], "girl made": [65535, 0], "a sort": [65535, 0], "sort of": [65535, 0], "of noncommittal": [65535, 0], "noncommittal attempt": [65535, 0], "attempt to": [65535, 0], "see but": [65535, 0], "boy did": [65535, 0], "not betray": [65535, 0], "betray that": [65535, 0], "was aware": [65535, 0], "aware of": [65535, 0], "it at": [21790, 43745], "last she": [65535, 0], "she gave": [65535, 0], "gave in": [65535, 0], "and hesitatingly": [65535, 0], "hesitatingly whispered": [65535, 0], "whispered let": [65535, 0], "let me": [23774, 41761], "me see": [32706, 32829], "tom partly": [65535, 0], "partly uncovered": [65535, 0], "uncovered a": [65535, 0], "a dismal": [65535, 0], "dismal caricature": [65535, 0], "caricature of": [65535, 0], "a house": [32706, 32829], "house with": [65535, 0], "with two": [65535, 0], "two gable": [65535, 0], "gable ends": [65535, 0], "ends to": [65535, 0], "a corkscrew": [65535, 0], "corkscrew of": [65535, 0], "of smoke": [65535, 0], "smoke issuing": [65535, 0], "issuing from": [65535, 0], "the chimney": [65535, 0], "chimney then": [65535, 0], "the girl's": [65535, 0], "girl's interest": [65535, 0], "interest began": [65535, 0], "to fasten": [65535, 0], "fasten itself": [65535, 0], "itself upon": [65535, 0], "the work": [65535, 0], "work and": [65535, 0], "she forgot": [65535, 0], "forgot everything": [65535, 0], "everything else": [65535, 0], "else when": [65535, 0], "was finished": [65535, 0], "finished she": [65535, 0], "she gazed": [65535, 0], "gazed a": [65535, 0], "a moment": [65535, 0], "moment then": [65535, 0], "then whispered": [65535, 0], "whispered it's": [65535, 0], "it's nice": [65535, 0], "nice make": [65535, 0], "make a": [24518, 41017], "a man": [15559, 49976], "man the": [65535, 0], "the artist": [65535, 0], "artist erected": [65535, 0], "erected a": [65535, 0], "man in": [65535, 0], "the front": [65535, 0], "front yard": [65535, 0], "yard that": [65535, 0], "that resembled": [65535, 0], "resembled a": [65535, 0], "a derrick": [65535, 0], "derrick he": [65535, 0], "have stepped": [65535, 0], "stepped over": [65535, 0], "over the": [65535, 0], "house but": [65535, 0], "girl was": [65535, 0], "not hypercritical": [65535, 0], "hypercritical she": [65535, 0], "was satisfied": [65535, 0], "the monster": [65535, 0], "monster and": [65535, 0], "a beautiful": [65535, 0], "beautiful man": [65535, 0], "man now": [32706, 32829], "now make": [32706, 32829], "make me": [32706, 32829], "me coming": [65535, 0], "coming along": [65535, 0], "along tom": [65535, 0], "tom drew": [65535, 0], "drew an": [65535, 0], "an hour": [65535, 0], "hour glass": [65535, 0], "glass with": [65535, 0], "a full": [65535, 0], "full moon": [65535, 0], "and straw": [65535, 0], "straw limbs": [65535, 0], "limbs to": [65535, 0], "and armed": [65535, 0], "armed the": [65535, 0], "the spreading": [65535, 0], "spreading fingers": [65535, 0], "fingers with": [65535, 0], "a portentous": [65535, 0], "portentous fan": [65535, 0], "fan the": [65535, 0], "girl said": [65535, 0], "said it's": [65535, 0], "it's ever": [65535, 0], "ever so": [65535, 0], "so nice": [65535, 0], "nice i": [65535, 0], "could draw": [65535, 0], "draw it's": [65535, 0], "it's easy": [65535, 0], "easy whispered": [65535, 0], "whispered tom": [65535, 0], "tom i'll": [65535, 0], "i'll learn": [65535, 0], "learn you": [65535, 0], "oh will": [65535, 0], "you when": [21790, 43745], "when at": [65535, 0], "at noon": [65535, 0], "noon do": [65535, 0], "you go": [65535, 0], "go home": [32706, 32829], "home to": [5937, 59598], "to dinner": [5937, 59598], "dinner i'll": [65535, 0], "i'll stay": [65535, 0], "stay if": [32706, 32829], "you will": [25148, 40387], "will good": [65535, 0], "good that's": [65535, 0], "that's a": [46760, 18775], "a whack": [65535, 0], "whack what's": [65535, 0], "your name": [32706, 32829], "name becky": [65535, 0], "becky thatcher": [65535, 0], "thatcher what's": [65535, 0], "what's yours": [65535, 0], "yours oh": [65535, 0], "oh i": [65535, 0], "know it's": [65535, 0], "it's thomas": [65535, 0], "sawyer that's": [65535, 0], "the name": [32706, 32829], "name they": [65535, 0], "they lick": [65535, 0], "lick me": [65535, 0], "me by": [16338, 49197], "by i'm": [65535, 0], "i'm tom": [65535, 0], "tom when": [65535, 0], "i'm good": [65535, 0], "you call": [65535, 0], "call me": [13068, 52467], "tom will": [65535, 0], "you yes": [65535, 0], "yes now": [65535, 0], "now tom": [65535, 0], "to scrawl": [65535, 0], "scrawl something": [65535, 0], "hiding the": [65535, 0], "words from": [65535, 0], "girl but": [65535, 0], "not backward": [65535, 0], "backward this": [65535, 0], "time she": [65535, 0], "she begged": [65535, 0], "begged to": [65535, 0], "see tom": [65535, 0], "oh it": [65535, 0], "it ain't": [65535, 0], "ain't anything": [65535, 0], "anything yes": [65535, 0], "yes it": [65535, 0], "is no": [13068, 52467], "no it": [32706, 32829], "ain't you": [65535, 0], "see yes": [65535, 0], "yes i": [65535, 0], "i do": [16338, 49197], "do indeed": [65535, 0], "indeed i": [65535, 0], "do please": [65535, 0], "please let": [65535, 0], "me you'll": [65535, 0], "you'll tell": [49105, 16430], "tell no": [65535, 0], "won't deed": [65535, 0], "deed and": [65535, 0], "and deed": [65535, 0], "and double": [65535, 0], "double deed": [65535, 0], "deed won't": [65535, 0], "won't you": [65535, 0], "you won't": [65535, 0], "won't tell": [65535, 0], "tell anybody": [65535, 0], "anybody at": [65535, 0], "all ever": [65535, 0], "ever as": [65535, 0], "as you": [14521, 51014], "you live": [65535, 0], "live no": [65535, 0], "won't ever": [65535, 0], "ever tell": [65535, 0], "anybody now": [65535, 0], "now let": [65535, 0], "me oh": [65535, 0], "see now": [65535, 0], "now that": [43635, 21900], "you treat": [65535, 0], "treat me": [65535, 0], "me so": [26155, 39380], "i will": [9607, 55928], "will see": [65535, 0], "see and": [32706, 32829], "she put": [65535, 0], "put her": [49105, 16430], "her small": [65535, 0], "small hand": [65535, 0], "hand upon": [65535, 0], "upon his": [65535, 0], "his and": [65535, 0], "little scuffle": [65535, 0], "scuffle ensued": [65535, 0], "ensued tom": [65535, 0], "tom pretending": [65535, 0], "pretending to": [65535, 0], "to resist": [65535, 0], "resist in": [65535, 0], "in earnest": [32706, 32829], "earnest but": [65535, 0], "but letting": [65535, 0], "letting his": [65535, 0], "hand slip": [65535, 0], "slip by": [65535, 0], "by degrees": [65535, 0], "degrees till": [65535, 0], "till these": [65535, 0], "these words": [65535, 0], "words were": [32706, 32829], "were revealed": [65535, 0], "revealed i": [65535, 0], "you bad": [65535, 0], "bad thing": [65535, 0], "thing and": [65535, 0], "she hit": [65535, 0], "hit his": [65535, 0], "hand a": [65535, 0], "a smart": [65535, 0], "smart rap": [65535, 0], "rap but": [65535, 0], "but reddened": [65535, 0], "reddened and": [65535, 0], "looked pleased": [65535, 0], "pleased nevertheless": [65535, 0], "nevertheless just": [65535, 0], "just at": [65535, 0], "at this": [39262, 26273], "this juncture": [65535, 0], "juncture the": [65535, 0], "a slow": [65535, 0], "slow fateful": [65535, 0], "fateful grip": [65535, 0], "grip closing": [65535, 0], "closing on": [65535, 0], "ear and": [65535, 0], "a steady": [65535, 0], "steady lifting": [65535, 0], "lifting impulse": [65535, 0], "impulse in": [65535, 0], "that vise": [65535, 0], "vise he": [65535, 0], "was borne": [65535, 0], "borne across": [65535, 0], "across the": [65535, 0], "and deposited": [65535, 0], "deposited in": [65535, 0], "own seat": [65535, 0], "seat under": [65535, 0], "under a": [65535, 0], "a peppering": [65535, 0], "peppering fire": [65535, 0], "fire of": [32706, 32829], "of giggles": [65535, 0], "giggles from": [65535, 0], "whole school": [65535, 0], "school then": [65535, 0], "master stood": [65535, 0], "stood over": [65535, 0], "over him": [65535, 0], "him during": [65535, 0], "during a": [65535, 0], "a few": [65535, 0], "few awful": [65535, 0], "awful moments": [65535, 0], "moments and": [65535, 0], "and finally": [65535, 0], "finally moved": [65535, 0], "moved away": [65535, 0], "away to": [43635, 21900], "his throne": [65535, 0], "throne without": [65535, 0], "without saying": [65535, 0], "saying a": [65535, 0], "word but": [65535, 0], "but although": [65535, 0], "although tom's": [65535, 0], "tom's ear": [65535, 0], "ear tingled": [65535, 0], "tingled his": [65535, 0], "was jubilant": [65535, 0], "jubilant as": [65535, 0], "school quieted": [65535, 0], "quieted down": [65535, 0], "down tom": [65535, 0], "tom made": [65535, 0], "made an": [65535, 0], "an honest": [32706, 32829], "honest effort": [65535, 0], "effort to": [65535, 0], "study but": [65535, 0], "the turmoil": [65535, 0], "turmoil within": [65535, 0], "within him": [32706, 32829], "him was": [65535, 0], "was too": [65535, 0], "too great": [65535, 0], "great in": [65535, 0], "in turn": [65535, 0], "turn he": [65535, 0], "took his": [65535, 0], "his place": [65535, 0], "place in": [65535, 0], "the reading": [65535, 0], "reading class": [65535, 0], "class and": [65535, 0], "a botch": [65535, 0], "botch of": [65535, 0], "then in": [65535, 0], "the geography": [65535, 0], "geography class": [65535, 0], "and turned": [65535, 0], "turned lakes": [65535, 0], "lakes into": [65535, 0], "into mountains": [65535, 0], "mountains mountains": [65535, 0], "mountains into": [65535, 0], "into rivers": [65535, 0], "rivers and": [65535, 0], "and rivers": [65535, 0], "rivers into": [65535, 0], "into continents": [65535, 0], "continents till": [65535, 0], "till chaos": [65535, 0], "chaos was": [65535, 0], "was come": [65535, 0], "come again": [65535, 0], "again then": [65535, 0], "the spelling": [65535, 0], "spelling class": [65535, 0], "got turned": [65535, 0], "turned down": [65535, 0], "down by": [65535, 0], "of mere": [65535, 0], "mere baby": [65535, 0], "baby words": [65535, 0], "words till": [65535, 0], "till he": [52389, 13146], "he brought": [32706, 32829], "brought up": [65535, 0], "up at": [65535, 0], "the foot": [65535, 0], "foot and": [65535, 0], "and yielded": [65535, 0], "yielded up": [65535, 0], "the pewter": [65535, 0], "pewter medal": [65535, 0], "medal which": [65535, 0], "had worn": [65535, 0], "worn with": [65535, 0], "with ostentation": [65535, 0], "ostentation for": [65535, 0], "for months": [65535, 0], "monday morning found": [65535, 0], "morning found tom": [65535, 0], "found tom sawyer": [65535, 0], "tom sawyer miserable": [65535, 0], "sawyer miserable monday": [65535, 0], "miserable monday morning": [65535, 0], "monday morning always": [65535, 0], "morning always found": [65535, 0], "always found him": [65535, 0], "found him so": [65535, 0], "him so because": [65535, 0], "so because it": [65535, 0], "because it began": [65535, 0], "it began another": [65535, 0], "began another week's": [65535, 0], "another week's slow": [65535, 0], "week's slow suffering": [65535, 0], "slow suffering in": [65535, 0], "suffering in school": [65535, 0], "in school he": [65535, 0], "school he generally": [65535, 0], "he generally began": [65535, 0], "generally began that": [65535, 0], "began that day": [65535, 0], "that day with": [65535, 0], "day with wishing": [65535, 0], "with wishing he": [65535, 0], "wishing he had": [65535, 0], "he had had": [65535, 0], "had had no": [65535, 0], "had no intervening": [65535, 0], "no intervening holiday": [65535, 0], "intervening holiday it": [65535, 0], "holiday it made": [65535, 0], "it made the": [65535, 0], "made the going": [65535, 0], "the going into": [65535, 0], "going into captivity": [65535, 0], "into captivity and": [65535, 0], "captivity and fetters": [65535, 0], "and fetters again": [65535, 0], "fetters again so": [65535, 0], "again so much": [65535, 0], "so much more": [65535, 0], "much more odious": [65535, 0], "more odious tom": [65535, 0], "odious tom lay": [65535, 0], "tom lay thinking": [65535, 0], "lay thinking presently": [65535, 0], "thinking presently it": [65535, 0], "presently it occurred": [65535, 0], "it occurred to": [65535, 0], "occurred to him": [65535, 0], "to him that": [65535, 0], "him that he": [21790, 43745], "wished he was": [65535, 0], "he was sick": [65535, 0], "was sick then": [65535, 0], "sick then he": [65535, 0], "then he could": [65535, 0], "he could stay": [65535, 0], "could stay home": [65535, 0], "stay home from": [65535, 0], "home from school": [65535, 0], "from school here": [65535, 0], "school here was": [65535, 0], "here was a": [65535, 0], "was a vague": [65535, 0], "a vague possibility": [65535, 0], "vague possibility he": [65535, 0], "possibility he canvassed": [65535, 0], "he canvassed his": [65535, 0], "canvassed his system": [65535, 0], "his system no": [65535, 0], "system no ailment": [65535, 0], "no ailment was": [65535, 0], "ailment was found": [65535, 0], "was found and": [65535, 0], "found and he": [65535, 0], "and he investigated": [65535, 0], "he investigated again": [65535, 0], "investigated again this": [65535, 0], "again this time": [65535, 0], "time he thought": [65535, 0], "he thought he": [65535, 0], "thought he could": [65535, 0], "he could detect": [65535, 0], "could detect colicky": [65535, 0], "detect colicky symptoms": [65535, 0], "colicky symptoms and": [65535, 0], "symptoms and he": [65535, 0], "and he began": [65535, 0], "he began to": [65535, 0], "began to encourage": [65535, 0], "to encourage them": [65535, 0], "encourage them with": [65535, 0], "them with considerable": [65535, 0], "with considerable hope": [65535, 0], "considerable hope but": [65535, 0], "hope but they": [65535, 0], "but they soon": [65535, 0], "they soon grew": [65535, 0], "soon grew feeble": [65535, 0], "grew feeble and": [65535, 0], "feeble and presently": [65535, 0], "and presently died": [65535, 0], "presently died wholly": [65535, 0], "died wholly away": [65535, 0], "wholly away he": [65535, 0], "away he reflected": [65535, 0], "he reflected further": [65535, 0], "reflected further suddenly": [65535, 0], "further suddenly he": [65535, 0], "suddenly he discovered": [65535, 0], "he discovered something": [65535, 0], "discovered something one": [65535, 0], "something one of": [65535, 0], "one of his": [65535, 0], "of his upper": [65535, 0], "his upper front": [65535, 0], "upper front teeth": [65535, 0], "front teeth was": [65535, 0], "teeth was loose": [65535, 0], "was loose this": [65535, 0], "loose this was": [65535, 0], "this was lucky": [65535, 0], "was lucky he": [65535, 0], "lucky he was": [65535, 0], "about to begin": [65535, 0], "to begin to": [65535, 0], "begin to groan": [65535, 0], "to groan as": [65535, 0], "groan as a": [65535, 0], "as a starter": [65535, 0], "a starter as": [65535, 0], "starter as he": [65535, 0], "as he called": [65535, 0], "called it when": [65535, 0], "it when it": [65535, 0], "when it occurred": [65535, 0], "him that if": [65535, 0], "that if he": [65535, 0], "if he came": [65535, 0], "he came into": [65535, 0], "came into court": [65535, 0], "into court with": [65535, 0], "court with that": [65535, 0], "with that argument": [65535, 0], "that argument his": [65535, 0], "argument his aunt": [65535, 0], "his aunt would": [65535, 0], "aunt would pull": [65535, 0], "would pull it": [65535, 0], "pull it out": [65535, 0], "it out and": [65535, 0], "out and that": [65535, 0], "and that would": [65535, 0], "that would hurt": [65535, 0], "would hurt so": [65535, 0], "hurt so he": [65535, 0], "so he thought": [65535, 0], "thought he would": [65535, 0], "he would hold": [65535, 0], "would hold the": [65535, 0], "hold the tooth": [65535, 0], "the tooth in": [65535, 0], "tooth in reserve": [65535, 0], "in reserve for": [65535, 0], "reserve for the": [65535, 0], "for the present": [65535, 0], "the present and": [65535, 0], "present and seek": [65535, 0], "and seek further": [65535, 0], "seek further nothing": [65535, 0], "further nothing offered": [65535, 0], "nothing offered for": [65535, 0], "offered for some": [65535, 0], "for some little": [65535, 0], "some little time": [65535, 0], "little time and": [65535, 0], "time and then": [65535, 0], "and then he": [65535, 0], "then he remembered": [65535, 0], "he remembered hearing": [65535, 0], "remembered hearing the": [65535, 0], "hearing the doctor": [65535, 0], "the doctor tell": [65535, 0], "doctor tell about": [65535, 0], "tell about a": [65535, 0], "about a certain": [65535, 0], "a certain thing": [65535, 0], "certain thing that": [65535, 0], "thing that laid": [65535, 0], "that laid up": [65535, 0], "laid up a": [65535, 0], "up a patient": [65535, 0], "a patient for": [65535, 0], "patient for two": [65535, 0], "for two or": [65535, 0], "two or three": [65535, 0], "or three weeks": [65535, 0], "three weeks and": [65535, 0], "weeks and threatened": [65535, 0], "and threatened to": [65535, 0], "threatened to make": [65535, 0], "to make him": [65535, 0], "make him lose": [65535, 0], "him lose a": [65535, 0], "lose a finger": [65535, 0], "a finger so": [65535, 0], "finger so the": [65535, 0], "so the boy": [65535, 0], "the boy eagerly": [65535, 0], "boy eagerly drew": [65535, 0], "eagerly drew his": [65535, 0], "drew his sore": [65535, 0], "his sore toe": [65535, 0], "sore toe from": [65535, 0], "toe from under": [65535, 0], "from under the": [65535, 0], "under the sheet": [65535, 0], "the sheet and": [65535, 0], "sheet and held": [65535, 0], "and held it": [65535, 0], "held it up": [65535, 0], "it up for": [65535, 0], "up for inspection": [65535, 0], "for inspection but": [65535, 0], "inspection but now": [65535, 0], "but now he": [65535, 0], "now he did": [65535, 0], "did not know": [65535, 0], "not know the": [32706, 32829], "know the necessary": [65535, 0], "the necessary symptoms": [65535, 0], "necessary symptoms however": [65535, 0], "symptoms however it": [65535, 0], "however it seemed": [65535, 0], "it seemed well": [65535, 0], "seemed well worth": [65535, 0], "well worth while": [65535, 0], "worth while to": [65535, 0], "while to chance": [65535, 0], "to chance it": [65535, 0], "chance it so": [65535, 0], "it so he": [65535, 0], "so he fell": [65535, 0], "he fell to": [65535, 0], "fell to groaning": [65535, 0], "to groaning with": [65535, 0], "groaning with considerable": [65535, 0], "with considerable spirit": [65535, 0], "considerable spirit but": [65535, 0], "spirit but sid": [65535, 0], "but sid slept": [65535, 0], "sid slept on": [65535, 0], "slept on unconscious": [65535, 0], "on unconscious tom": [65535, 0], "unconscious tom groaned": [65535, 0], "tom groaned louder": [65535, 0], "groaned louder and": [65535, 0], "louder and fancied": [65535, 0], "and fancied that": [65535, 0], "fancied that he": [65535, 0], "that he began": [65535, 0], "began to feel": [65535, 0], "to feel pain": [65535, 0], "feel pain in": [65535, 0], "pain in the": [65535, 0], "in the toe": [65535, 0], "the toe no": [65535, 0], "toe no result": [65535, 0], "no result from": [65535, 0], "result from sid": [65535, 0], "from sid tom": [65535, 0], "sid tom was": [65535, 0], "tom was panting": [65535, 0], "was panting with": [65535, 0], "panting with his": [65535, 0], "with his exertions": [65535, 0], "his exertions by": [65535, 0], "exertions by this": [65535, 0], "time he took": [65535, 0], "he took a": [65535, 0], "took a rest": [65535, 0], "a rest and": [65535, 0], "rest and then": [65535, 0], "and then swelled": [65535, 0], "then swelled himself": [65535, 0], "swelled himself up": [65535, 0], "himself up and": [65535, 0], "up and fetched": [65535, 0], "and fetched a": [65535, 0], "fetched a succession": [65535, 0], "a succession of": [65535, 0], "succession of admirable": [65535, 0], "of admirable groans": [65535, 0], "admirable groans sid": [65535, 0], "groans sid snored": [65535, 0], "sid snored on": [65535, 0], "snored on tom": [65535, 0], "on tom was": [65535, 0], "tom was aggravated": [65535, 0], "was aggravated he": [65535, 0], "aggravated he said": [65535, 0], "he said sid": [65535, 0], "said sid sid": [65535, 0], "sid sid and": [65535, 0], "sid and shook": [65535, 0], "and shook him": [65535, 0], "shook him this": [65535, 0], "him this course": [65535, 0], "this course worked": [65535, 0], "course worked well": [65535, 0], "worked well and": [65535, 0], "well and tom": [65535, 0], "and tom began": [65535, 0], "tom began to": [65535, 0], "began to groan": [65535, 0], "to groan again": [65535, 0], "groan again sid": [65535, 0], "again sid yawned": [65535, 0], "sid yawned stretched": [65535, 0], "yawned stretched then": [65535, 0], "stretched then brought": [65535, 0], "then brought himself": [65535, 0], "brought himself up": [65535, 0], "himself up on": [65535, 0], "up on his": [65535, 0], "on his elbow": [65535, 0], "his elbow with": [65535, 0], "elbow with a": [65535, 0], "with a snort": [65535, 0], "a snort and": [65535, 0], "snort and began": [65535, 0], "and began to": [65535, 0], "began to stare": [65535, 0], "to stare at": [65535, 0], "stare at tom": [65535, 0], "at tom tom": [65535, 0], "tom tom went": [65535, 0], "tom went on": [65535, 0], "went on groaning": [65535, 0], "on groaning sid": [65535, 0], "groaning sid said": [65535, 0], "sid said tom": [65535, 0], "said tom say": [65535, 0], "tom say tom": [65535, 0], "say tom no": [65535, 0], "tom no response": [65535, 0], "no response here": [65535, 0], "response here tom": [65535, 0], "here tom tom": [65535, 0], "tom tom what": [65535, 0], "tom what is": [65535, 0], "what is the": [32706, 32829], "is the matter": [49105, 16430], "the matter tom": [65535, 0], "matter tom and": [65535, 0], "tom and he": [65535, 0], "and he shook": [65535, 0], "he shook him": [65535, 0], "shook him and": [65535, 0], "him and looked": [65535, 0], "and looked in": [65535, 0], "looked in his": [65535, 0], "in his face": [43635, 21900], "his face anxiously": [65535, 0], "face anxiously tom": [65535, 0], "anxiously tom moaned": [65535, 0], "tom moaned out": [65535, 0], "moaned out oh": [65535, 0], "out oh don't": [65535, 0], "oh don't sid": [65535, 0], "don't sid don't": [65535, 0], "sid don't joggle": [65535, 0], "don't joggle me": [65535, 0], "joggle me why": [65535, 0], "me why what's": [65535, 0], "why what's the": [65535, 0], "what's the matter": [65535, 0], "matter tom i": [65535, 0], "tom i must": [65535, 0], "i must call": [65535, 0], "must call auntie": [65535, 0], "call auntie no": [65535, 0], "auntie no never": [65535, 0], "no never mind": [65535, 0], "never mind it'll": [65535, 0], "mind it'll be": [65535, 0], "it'll be over": [65535, 0], "be over by": [65535, 0], "over by and": [65535, 0], "and by maybe": [65535, 0], "by maybe don't": [65535, 0], "maybe don't call": [65535, 0], "don't call anybody": [65535, 0], "call anybody but": [65535, 0], "anybody but i": [65535, 0], "but i must": [65535, 0], "i must don't": [65535, 0], "must don't groan": [65535, 0], "don't groan so": [65535, 0], "groan so tom": [65535, 0], "so tom it's": [65535, 0], "tom it's awful": [65535, 0], "it's awful how": [65535, 0], "awful how long": [65535, 0], "how long you": [65535, 0], "long you been": [65535, 0], "you been this": [65535, 0], "been this way": [65535, 0], "this way hours": [65535, 0], "way hours ouch": [65535, 0], "hours ouch oh": [65535, 0], "ouch oh don't": [65535, 0], "oh don't stir": [65535, 0], "don't stir so": [65535, 0], "stir so sid": [65535, 0], "so sid you'll": [65535, 0], "sid you'll kill": [65535, 0], "you'll kill me": [65535, 0], "kill me tom": [65535, 0], "me tom why": [65535, 0], "tom why didn't": [65535, 0], "why didn't you": [65535, 0], "didn't you wake": [65535, 0], "you wake me": [65535, 0], "wake me sooner": [65535, 0], "me sooner oh": [65535, 0], "sooner oh tom": [65535, 0], "oh tom don't": [65535, 0], "tom don't it": [65535, 0], "don't it makes": [65535, 0], "it makes my": [65535, 0], "makes my flesh": [65535, 0], "my flesh crawl": [65535, 0], "flesh crawl to": [65535, 0], "crawl to hear": [65535, 0], "to hear you": [65535, 0], "hear you tom": [65535, 0], "you tom what": [65535, 0], "the matter i": [65535, 0], "matter i forgive": [65535, 0], "i forgive you": [65535, 0], "forgive you everything": [65535, 0], "you everything sid": [65535, 0], "everything sid groan": [65535, 0], "sid groan everything": [65535, 0], "groan everything you've": [65535, 0], "everything you've ever": [65535, 0], "you've ever done": [65535, 0], "ever done to": [65535, 0], "done to me": [65535, 0], "to me when": [65535, 0], "me when i'm": [65535, 0], "when i'm gone": [65535, 0], "i'm gone oh": [65535, 0], "gone oh tom": [65535, 0], "oh tom you": [65535, 0], "tom you ain't": [65535, 0], "you ain't dying": [65535, 0], "ain't dying are": [65535, 0], "dying are you": [65535, 0], "are you don't": [65535, 0], "you don't tom": [65535, 0], "don't tom oh": [65535, 0], "tom oh don't": [65535, 0], "oh don't maybe": [65535, 0], "don't maybe i": [65535, 0], "maybe i forgive": [65535, 0], "i forgive everybody": [65535, 0], "forgive everybody sid": [65535, 0], "everybody sid groan": [65535, 0], "sid groan tell": [65535, 0], "groan tell 'em": [65535, 0], "tell 'em so": [65535, 0], "'em so sid": [65535, 0], "so sid and": [65535, 0], "sid and sid": [65535, 0], "and sid you": [65535, 0], "sid you give": [65535, 0], "you give my": [65535, 0], "give my window": [65535, 0], "my window sash": [65535, 0], "window sash and": [65535, 0], "sash and my": [65535, 0], "and my cat": [65535, 0], "my cat with": [65535, 0], "cat with one": [65535, 0], "with one eye": [65535, 0], "one eye to": [65535, 0], "eye to that": [65535, 0], "to that new": [65535, 0], "that new girl": [65535, 0], "new girl that's": [65535, 0], "girl that's come": [65535, 0], "that's come to": [65535, 0], "come to town": [65535, 0], "to town and": [65535, 0], "town and tell": [65535, 0], "and tell her": [32706, 32829], "tell her but": [65535, 0], "her but sid": [65535, 0], "but sid had": [65535, 0], "sid had snatched": [65535, 0], "had snatched his": [65535, 0], "snatched his clothes": [65535, 0], "his clothes and": [65535, 0], "clothes and gone": [65535, 0], "and gone tom": [65535, 0], "gone tom was": [65535, 0], "tom was suffering": [65535, 0], "was suffering in": [65535, 0], "suffering in reality": [65535, 0], "in reality now": [65535, 0], "reality now so": [65535, 0], "now so handsomely": [65535, 0], "so handsomely was": [65535, 0], "handsomely was his": [65535, 0], "was his imagination": [65535, 0], "his imagination working": [65535, 0], "imagination working and": [65535, 0], "working and so": [65535, 0], "and so his": [65535, 0], "so his groans": [65535, 0], "his groans had": [65535, 0], "groans had gathered": [65535, 0], "had gathered quite": [65535, 0], "gathered quite a": [65535, 0], "quite a genuine": [65535, 0], "a genuine tone": [65535, 0], "genuine tone sid": [65535, 0], "tone sid flew": [65535, 0], "sid flew down": [65535, 0], "flew down stairs": [65535, 0], "down stairs and": [65535, 0], "stairs and said": [65535, 0], "and said oh": [65535, 0], "said oh aunt": [65535, 0], "oh aunt polly": [65535, 0], "aunt polly come": [65535, 0], "polly come tom's": [65535, 0], "come tom's dying": [65535, 0], "tom's dying dying": [65535, 0], "dying dying yes'm": [65535, 0], "dying yes'm don't": [65535, 0], "yes'm don't wait": [65535, 0], "don't wait come": [65535, 0], "wait come quick": [65535, 0], "come quick rubbage": [65535, 0], "quick rubbage i": [65535, 0], "rubbage i don't": [65535, 0], "i don't believe": [65535, 0], "don't believe it": [65535, 0], "believe it but": [65535, 0], "it but she": [65535, 0], "but she fled": [65535, 0], "she fled up": [65535, 0], "fled up stairs": [65535, 0], "up stairs nevertheless": [65535, 0], "stairs nevertheless with": [65535, 0], "nevertheless with sid": [65535, 0], "with sid and": [65535, 0], "and mary at": [65535, 0], "mary at her": [65535, 0], "at her heels": [65535, 0], "her heels and": [65535, 0], "heels and her": [65535, 0], "and her face": [65535, 0], "her face grew": [65535, 0], "face grew white": [65535, 0], "grew white too": [65535, 0], "white too and": [65535, 0], "too and her": [65535, 0], "and her lip": [65535, 0], "her lip trembled": [65535, 0], "lip trembled when": [65535, 0], "trembled when she": [65535, 0], "when she reached": [65535, 0], "she reached the": [65535, 0], "reached the bedside": [65535, 0], "the bedside she": [65535, 0], "bedside she gasped": [65535, 0], "she gasped out": [65535, 0], "gasped out you": [65535, 0], "out you tom": [65535, 0], "you tom tom": [65535, 0], "tom tom what's": [65535, 0], "tom what's the": [65535, 0], "the matter with": [65535, 0], "matter with you": [65535, 0], "with you oh": [65535, 0], "you oh auntie": [65535, 0], "oh auntie i'm": [65535, 0], "auntie i'm what's": [65535, 0], "i'm what's the": [65535, 0], "with you what": [65535, 0], "you what is": [65535, 0], "with you child": [65535, 0], "you child oh": [65535, 0], "child oh auntie": [65535, 0], "oh auntie my": [65535, 0], "auntie my sore": [65535, 0], "my sore toe's": [65535, 0], "sore toe's mortified": [65535, 0], "toe's mortified the": [65535, 0], "mortified the old": [65535, 0], "the old lady": [65535, 0], "old lady sank": [65535, 0], "lady sank down": [65535, 0], "sank down into": [65535, 0], "down into a": [65535, 0], "into a chair": [65535, 0], "a chair and": [65535, 0], "chair and laughed": [65535, 0], "and laughed a": [65535, 0], "laughed a little": [65535, 0], "a little then": [65535, 0], "little then cried": [65535, 0], "then cried a": [65535, 0], "cried a little": [65535, 0], "little then did": [65535, 0], "then did both": [65535, 0], "did both together": [65535, 0], "both together this": [65535, 0], "together this restored": [65535, 0], "this restored her": [65535, 0], "restored her and": [65535, 0], "her and she": [65535, 0], "and she said": [65535, 0], "she said tom": [65535, 0], "said tom what": [65535, 0], "tom what a": [65535, 0], "what a turn": [65535, 0], "a turn you": [65535, 0], "turn you did": [65535, 0], "you did give": [65535, 0], "did give me": [65535, 0], "give me now": [65535, 0], "me now you": [65535, 0], "now you shut": [65535, 0], "you shut up": [65535, 0], "shut up that": [65535, 0], "up that nonsense": [65535, 0], "that nonsense and": [65535, 0], "nonsense and climb": [65535, 0], "and climb out": [65535, 0], "climb out of": [65535, 0], "out of this": [65535, 0], "of this the": [65535, 0], "this the groans": [65535, 0], "the groans ceased": [65535, 0], "groans ceased and": [65535, 0], "ceased and the": [65535, 0], "and the pain": [65535, 0], "the pain vanished": [65535, 0], "pain vanished from": [65535, 0], "vanished from the": [65535, 0], "from the toe": [65535, 0], "the toe the": [65535, 0], "toe the boy": [65535, 0], "the boy felt": [65535, 0], "boy felt a": [65535, 0], "felt a little": [65535, 0], "a little foolish": [65535, 0], "little foolish and": [65535, 0], "foolish and he": [65535, 0], "he said aunt": [65535, 0], "said aunt polly": [65535, 0], "aunt polly it": [65535, 0], "polly it seemed": [65535, 0], "it seemed mortified": [65535, 0], "seemed mortified and": [65535, 0], "mortified and it": [65535, 0], "and it hurt": [65535, 0], "it hurt so": [65535, 0], "hurt so i": [65535, 0], "so i never": [65535, 0], "i never minded": [65535, 0], "never minded my": [65535, 0], "minded my tooth": [65535, 0], "my tooth at": [65535, 0], "tooth at all": [65535, 0], "at all your": [65535, 0], "all your tooth": [65535, 0], "your tooth indeed": [65535, 0], "tooth indeed what's": [65535, 0], "indeed what's the": [65535, 0], "matter with your": [65535, 0], "with your tooth": [65535, 0], "your tooth one": [65535, 0], "tooth one of": [65535, 0], "one of them's": [65535, 0], "of them's loose": [65535, 0], "them's loose and": [65535, 0], "loose and it": [65535, 0], "and it aches": [65535, 0], "it aches perfectly": [65535, 0], "aches perfectly awful": [65535, 0], "perfectly awful there": [65535, 0], "awful there there": [65535, 0], "there there now": [65535, 0], "there now don't": [65535, 0], "now don't begin": [65535, 0], "don't begin that": [65535, 0], "begin that groaning": [65535, 0], "that groaning again": [65535, 0], "groaning again open": [65535, 0], "again open your": [65535, 0], "open your mouth": [65535, 0], "your mouth well": [65535, 0], "mouth well your": [65535, 0], "well your tooth": [65535, 0], "your tooth is": [65535, 0], "tooth is loose": [65535, 0], "is loose but": [65535, 0], "loose but you're": [65535, 0], "but you're not": [65535, 0], "you're not going": [65535, 0], "not going to": [65535, 0], "going to die": [65535, 0], "to die about": [65535, 0], "die about that": [65535, 0], "about that mary": [65535, 0], "that mary get": [65535, 0], "mary get me": [65535, 0], "get me a": [65535, 0], "me a silk": [65535, 0], "a silk thread": [65535, 0], "silk thread and": [65535, 0], "thread and a": [65535, 0], "and a chunk": [65535, 0], "a chunk of": [65535, 0], "chunk of fire": [65535, 0], "of fire out": [65535, 0], "fire out of": [65535, 0], "of the kitchen": [65535, 0], "the kitchen tom": [65535, 0], "kitchen tom said": [65535, 0], "tom said oh": [65535, 0], "said oh please": [65535, 0], "oh please auntie": [65535, 0], "please auntie don't": [65535, 0], "auntie don't pull": [65535, 0], "don't pull it": [65535, 0], "out it don't": [65535, 0], "it don't hurt": [65535, 0], "don't hurt any": [65535, 0], "hurt any more": [65535, 0], "any more i": [65535, 0], "more i wish": [65535, 0], "i wish i": [65535, 0], "wish i may": [65535, 0], "i may never": [65535, 0], "may never stir": [65535, 0], "never stir if": [65535, 0], "stir if it": [65535, 0], "if it does": [65535, 0], "it does please": [65535, 0], "does please don't": [65535, 0], "please don't auntie": [65535, 0], "don't auntie i": [65535, 0], "auntie i don't": [65535, 0], "i don't want": [65535, 0], "don't want to": [65535, 0], "want to stay": [65535, 0], "to stay home": [65535, 0], "from school oh": [65535, 0], "school oh you": [65535, 0], "oh you don't": [65535, 0], "you don't don't": [65535, 0], "don't don't you": [65535, 0], "don't you so": [65535, 0], "you so all": [65535, 0], "so all this": [65535, 0], "all this row": [65535, 0], "this row was": [65535, 0], "row was because": [65535, 0], "was because you": [65535, 0], "because you thought": [65535, 0], "you thought you'd": [65535, 0], "thought you'd get": [65535, 0], "you'd get to": [65535, 0], "get to stay": [65535, 0], "from school and": [65535, 0], "school and go": [65535, 0], "and go a": [65535, 0], "go a fishing": [65535, 0], "a fishing tom": [65535, 0], "fishing tom tom": [65535, 0], "tom tom i": [65535, 0], "tom i love": [65535, 0], "i love you": [65535, 0], "love you so": [65535, 0], "you so and": [65535, 0], "so and you": [65535, 0], "and you seem": [65535, 0], "you seem to": [65535, 0], "seem to try": [65535, 0], "to try every": [65535, 0], "try every way": [65535, 0], "every way you": [65535, 0], "way you can": [65535, 0], "you can to": [65535, 0], "can to break": [65535, 0], "to break my": [65535, 0], "break my old": [65535, 0], "my old heart": [65535, 0], "old heart with": [65535, 0], "heart with your": [65535, 0], "with your outrageousness": [65535, 0], "your outrageousness by": [65535, 0], "outrageousness by this": [65535, 0], "time the dental": [65535, 0], "the dental instruments": [65535, 0], "dental instruments were": [65535, 0], "instruments were ready": [65535, 0], "were ready the": [65535, 0], "ready the old": [65535, 0], "old lady made": [65535, 0], "lady made one": [65535, 0], "made one end": [65535, 0], "one end of": [65535, 0], "end of the": [65535, 0], "of the silk": [65535, 0], "the silk thread": [65535, 0], "silk thread fast": [65535, 0], "thread fast to": [65535, 0], "fast to tom's": [65535, 0], "to tom's tooth": [65535, 0], "tom's tooth with": [65535, 0], "tooth with a": [65535, 0], "with a loop": [65535, 0], "a loop and": [65535, 0], "loop and tied": [65535, 0], "and tied the": [65535, 0], "tied the other": [65535, 0], "the other to": [65535, 0], "other to the": [65535, 0], "to the bedpost": [65535, 0], "the bedpost then": [65535, 0], "bedpost then she": [65535, 0], "then she seized": [65535, 0], "she seized the": [65535, 0], "seized the chunk": [65535, 0], "the chunk of": [65535, 0], "of fire and": [21790, 43745], "fire and suddenly": [65535, 0], "and suddenly thrust": [65535, 0], "suddenly thrust it": [65535, 0], "thrust it almost": [65535, 0], "it almost into": [65535, 0], "almost into the": [65535, 0], "the boy's face": [65535, 0], "boy's face the": [65535, 0], "face the tooth": [65535, 0], "the tooth hung": [65535, 0], "tooth hung dangling": [65535, 0], "hung dangling by": [65535, 0], "dangling by the": [65535, 0], "by the bedpost": [65535, 0], "the bedpost now": [65535, 0], "bedpost now but": [65535, 0], "now but all": [65535, 0], "but all trials": [65535, 0], "all trials bring": [65535, 0], "trials bring their": [65535, 0], "bring their compensations": [65535, 0], "their compensations as": [65535, 0], "compensations as tom": [65535, 0], "as tom wended": [65535, 0], "tom wended to": [65535, 0], "wended to school": [65535, 0], "to school after": [65535, 0], "school after breakfast": [65535, 0], "after breakfast he": [65535, 0], "breakfast he was": [65535, 0], "he was the": [65535, 0], "was the envy": [65535, 0], "the envy of": [65535, 0], "envy of every": [65535, 0], "of every boy": [65535, 0], "every boy he": [65535, 0], "boy he met": [65535, 0], "he met because": [65535, 0], "met because the": [65535, 0], "because the gap": [65535, 0], "the gap in": [65535, 0], "gap in his": [65535, 0], "in his upper": [65535, 0], "his upper row": [65535, 0], "upper row of": [65535, 0], "row of teeth": [65535, 0], "of teeth enabled": [65535, 0], "teeth enabled him": [65535, 0], "enabled him to": [65535, 0], "him to expectorate": [65535, 0], "to expectorate in": [65535, 0], "expectorate in a": [65535, 0], "in a new": [65535, 0], "a new and": [65535, 0], "new and admirable": [65535, 0], "and admirable way": [65535, 0], "admirable way he": [65535, 0], "way he gathered": [65535, 0], "he gathered quite": [65535, 0], "quite a following": [65535, 0], "a following of": [65535, 0], "following of lads": [65535, 0], "of lads interested": [65535, 0], "lads interested in": [65535, 0], "interested in the": [65535, 0], "in the exhibition": [65535, 0], "the exhibition and": [65535, 0], "exhibition and one": [65535, 0], "and one that": [65535, 0], "one that had": [65535, 0], "that had cut": [65535, 0], "had cut his": [65535, 0], "cut his finger": [65535, 0], "his finger and": [65535, 0], "finger and had": [65535, 0], "and had been": [65535, 0], "had been a": [65535, 0], "been a centre": [65535, 0], "a centre of": [65535, 0], "centre of fascination": [65535, 0], "of fascination and": [65535, 0], "fascination and homage": [65535, 0], "and homage up": [65535, 0], "homage up to": [65535, 0], "up to this": [65535, 0], "to this time": [65535, 0], "this time now": [65535, 0], "time now found": [65535, 0], "now found himself": [65535, 0], "found himself suddenly": [65535, 0], "himself suddenly without": [65535, 0], "suddenly without an": [65535, 0], "without an adherent": [65535, 0], "an adherent and": [65535, 0], "adherent and shorn": [65535, 0], "and shorn of": [65535, 0], "shorn of his": [65535, 0], "of his glory": [65535, 0], "his glory his": [65535, 0], "glory his heart": [65535, 0], "his heart was": [65535, 0], "heart was heavy": [65535, 0], "was heavy and": [65535, 0], "heavy and he": [65535, 0], "he said with": [65535, 0], "said with a": [65535, 0], "with a disdain": [65535, 0], "a disdain which": [65535, 0], "disdain which he": [65535, 0], "which he did": [32706, 32829], "did not feel": [65535, 0], "not feel that": [65535, 0], "feel that it": [65535, 0], "that it wasn't": [65535, 0], "it wasn't anything": [65535, 0], "wasn't anything to": [65535, 0], "anything to spit": [65535, 0], "to spit like": [65535, 0], "spit like tom": [65535, 0], "like tom sawyer": [65535, 0], "tom sawyer but": [65535, 0], "sawyer but another": [65535, 0], "but another boy": [65535, 0], "another boy said": [65535, 0], "boy said sour": [65535, 0], "said sour grapes": [65535, 0], "sour grapes and": [65535, 0], "grapes and he": [65535, 0], "and he wandered": [65535, 0], "he wandered away": [65535, 0], "wandered away a": [65535, 0], "away a dismantled": [65535, 0], "a dismantled hero": [65535, 0], "dismantled hero shortly": [65535, 0], "hero shortly tom": [65535, 0], "shortly tom came": [65535, 0], "tom came upon": [65535, 0], "came upon the": [65535, 0], "upon the juvenile": [65535, 0], "the juvenile pariah": [65535, 0], "juvenile pariah of": [65535, 0], "pariah of the": [65535, 0], "the village huckleberry": [65535, 0], "village huckleberry finn": [65535, 0], "huckleberry finn son": [65535, 0], "finn son of": [65535, 0], "son of the": [65535, 0], "of the town": [65535, 0], "the town drunkard": [65535, 0], "town drunkard huckleberry": [65535, 0], "drunkard huckleberry was": [65535, 0], "huckleberry was cordially": [65535, 0], "was cordially hated": [65535, 0], "cordially hated and": [65535, 0], "hated and dreaded": [65535, 0], "and dreaded by": [65535, 0], "dreaded by all": [65535, 0], "by all the": [32706, 32829], "all the mothers": [65535, 0], "the mothers of": [65535, 0], "mothers of the": [65535, 0], "the town because": [65535, 0], "town because he": [65535, 0], "because he was": [65535, 0], "he was idle": [65535, 0], "was idle and": [65535, 0], "idle and lawless": [65535, 0], "and lawless and": [65535, 0], "lawless and vulgar": [65535, 0], "and vulgar and": [65535, 0], "vulgar and bad": [65535, 0], "and bad and": [65535, 0], "bad and because": [65535, 0], "and because all": [65535, 0], "because all their": [65535, 0], "all their children": [65535, 0], "their children admired": [65535, 0], "children admired him": [65535, 0], "admired him so": [65535, 0], "him so and": [65535, 0], "so and delighted": [65535, 0], "and delighted in": [65535, 0], "delighted in his": [65535, 0], "in his forbidden": [65535, 0], "his forbidden society": [65535, 0], "forbidden society and": [65535, 0], "society and wished": [65535, 0], "and wished they": [65535, 0], "wished they dared": [65535, 0], "they dared to": [65535, 0], "dared to be": [65535, 0], "to be like": [65535, 0], "be like him": [65535, 0], "like him tom": [65535, 0], "him tom was": [65535, 0], "tom was like": [65535, 0], "was like the": [65535, 0], "like the rest": [65535, 0], "the rest of": [65535, 0], "rest of the": [65535, 0], "of the respectable": [65535, 0], "the respectable boys": [65535, 0], "respectable boys in": [65535, 0], "boys in that": [65535, 0], "in that he": [65535, 0], "that he envied": [65535, 0], "he envied huckleberry": [65535, 0], "envied huckleberry his": [65535, 0], "huckleberry his gaudy": [65535, 0], "his gaudy outcast": [65535, 0], "gaudy outcast condition": [65535, 0], "outcast condition and": [65535, 0], "condition and was": [65535, 0], "and was under": [65535, 0], "was under strict": [65535, 0], "under strict orders": [65535, 0], "strict orders not": [65535, 0], "orders not to": [65535, 0], "not to play": [65535, 0], "to play with": [65535, 0], "play with him": [65535, 0], "with him so": [65535, 0], "him so he": [49105, 16430], "so he played": [65535, 0], "he played with": [65535, 0], "played with him": [65535, 0], "with him every": [65535, 0], "him every time": [65535, 0], "every time he": [65535, 0], "time he got": [65535, 0], "he got a": [65535, 0], "got a chance": [65535, 0], "a chance huckleberry": [65535, 0], "chance huckleberry was": [65535, 0], "huckleberry was always": [65535, 0], "was always dressed": [65535, 0], "always dressed in": [65535, 0], "dressed in the": [65535, 0], "in the cast": [65535, 0], "the cast off": [65535, 0], "cast off clothes": [65535, 0], "off clothes of": [65535, 0], "clothes of full": [65535, 0], "of full grown": [65535, 0], "full grown men": [65535, 0], "grown men and": [65535, 0], "men and they": [65535, 0], "and they were": [65535, 0], "they were in": [65535, 0], "were in perennial": [65535, 0], "in perennial bloom": [65535, 0], "perennial bloom and": [65535, 0], "bloom and fluttering": [65535, 0], "and fluttering with": [65535, 0], "fluttering with rags": [65535, 0], "with rags his": [65535, 0], "rags his hat": [65535, 0], "his hat was": [65535, 0], "hat was a": [65535, 0], "was a vast": [65535, 0], "a vast ruin": [65535, 0], "vast ruin with": [65535, 0], "ruin with a": [65535, 0], "with a wide": [65535, 0], "a wide crescent": [65535, 0], "wide crescent lopped": [65535, 0], "crescent lopped out": [65535, 0], "lopped out of": [65535, 0], "out of its": [65535, 0], "of its brim": [65535, 0], "its brim his": [65535, 0], "brim his coat": [65535, 0], "his coat when": [65535, 0], "coat when he": [65535, 0], "when he wore": [65535, 0], "he wore one": [65535, 0], "wore one hung": [65535, 0], "one hung nearly": [65535, 0], "hung nearly to": [65535, 0], "nearly to his": [65535, 0], "to his heels": [65535, 0], "his heels and": [65535, 0], "heels and had": [65535, 0], "and had the": [65535, 0], "had the rearward": [65535, 0], "the rearward buttons": [65535, 0], "rearward buttons far": [65535, 0], "buttons far down": [65535, 0], "far down the": [65535, 0], "down the back": [65535, 0], "the back but": [65535, 0], "back but one": [65535, 0], "but one suspender": [65535, 0], "one suspender supported": [65535, 0], "suspender supported his": [65535, 0], "supported his trousers": [65535, 0], "his trousers the": [65535, 0], "trousers the seat": [65535, 0], "the seat of": [65535, 0], "seat of the": [65535, 0], "of the trousers": [65535, 0], "the trousers bagged": [65535, 0], "trousers bagged low": [65535, 0], "bagged low and": [65535, 0], "low and contained": [65535, 0], "and contained nothing": [65535, 0], "contained nothing the": [65535, 0], "nothing the fringed": [65535, 0], "the fringed legs": [65535, 0], "fringed legs dragged": [65535, 0], "legs dragged in": [65535, 0], "dragged in the": [65535, 0], "in the dirt": [65535, 0], "the dirt when": [65535, 0], "dirt when not": [65535, 0], "when not rolled": [65535, 0], "not rolled up": [65535, 0], "rolled up huckleberry": [65535, 0], "up huckleberry came": [65535, 0], "huckleberry came and": [65535, 0], "came and went": [65535, 0], "and went at": [65535, 0], "went at his": [65535, 0], "at his own": [65535, 0], "his own free": [65535, 0], "own free will": [65535, 0], "free will he": [65535, 0], "will he slept": [65535, 0], "he slept on": [65535, 0], "slept on doorsteps": [65535, 0], "on doorsteps in": [65535, 0], "doorsteps in fine": [65535, 0], "in fine weather": [65535, 0], "fine weather and": [65535, 0], "weather and in": [65535, 0], "and in empty": [65535, 0], "in empty hogsheads": [65535, 0], "empty hogsheads in": [65535, 0], "hogsheads in wet": [65535, 0], "in wet he": [65535, 0], "wet he did": [65535, 0], "did not have": [65535, 0], "not have to": [65535, 0], "have to go": [65535, 0], "to go to": [65535, 0], "go to school": [65535, 0], "to school or": [65535, 0], "school or to": [65535, 0], "or to church": [65535, 0], "to church or": [65535, 0], "church or call": [65535, 0], "or call any": [65535, 0], "call any being": [65535, 0], "any being master": [65535, 0], "being master or": [65535, 0], "master or obey": [65535, 0], "or obey anybody": [65535, 0], "obey anybody he": [65535, 0], "anybody he could": [65535, 0], "he could go": [65535, 0], "could go fishing": [65535, 0], "go fishing or": [65535, 0], "fishing or swimming": [65535, 0], "or swimming when": [65535, 0], "swimming when and": [65535, 0], "when and where": [65535, 0], "and where he": [65535, 0], "where he chose": [65535, 0], "he chose and": [65535, 0], "chose and stay": [65535, 0], "and stay as": [65535, 0], "stay as long": [65535, 0], "as long as": [65535, 0], "long as it": [65535, 0], "as it suited": [65535, 0], "it suited him": [65535, 0], "suited him nobody": [65535, 0], "him nobody forbade": [65535, 0], "nobody forbade him": [65535, 0], "forbade him to": [65535, 0], "him to fight": [65535, 0], "to fight he": [65535, 0], "fight he could": [65535, 0], "he could sit": [65535, 0], "could sit up": [65535, 0], "sit up as": [65535, 0], "up as late": [65535, 0], "as late as": [65535, 0], "late as he": [65535, 0], "as he pleased": [65535, 0], "he pleased he": [65535, 0], "pleased he was": [65535, 0], "was always the": [65535, 0], "always the first": [65535, 0], "the first boy": [65535, 0], "first boy that": [65535, 0], "boy that went": [65535, 0], "that went barefoot": [65535, 0], "went barefoot in": [65535, 0], "barefoot in the": [65535, 0], "in the spring": [32706, 32829], "the spring and": [65535, 0], "spring and the": [65535, 0], "and the last": [65535, 0], "the last to": [65535, 0], "last to resume": [65535, 0], "to resume leather": [65535, 0], "resume leather in": [65535, 0], "leather in the": [65535, 0], "in the fall": [65535, 0], "the fall he": [65535, 0], "fall he never": [65535, 0], "he never had": [65535, 0], "never had to": [65535, 0], "had to wash": [65535, 0], "to wash nor": [65535, 0], "wash nor put": [65535, 0], "nor put on": [65535, 0], "put on clean": [65535, 0], "on clean clothes": [65535, 0], "clean clothes he": [65535, 0], "clothes he could": [65535, 0], "he could swear": [65535, 0], "could swear wonderfully": [65535, 0], "swear wonderfully in": [65535, 0], "wonderfully in a": [65535, 0], "in a word": [65535, 0], "a word everything": [65535, 0], "word everything that": [65535, 0], "everything that goes": [65535, 0], "that goes to": [65535, 0], "goes to make": [65535, 0], "to make life": [65535, 0], "make life precious": [65535, 0], "life precious that": [65535, 0], "precious that boy": [65535, 0], "that boy had": [65535, 0], "boy had so": [65535, 0], "had so thought": [65535, 0], "so thought every": [65535, 0], "thought every harassed": [65535, 0], "every harassed hampered": [65535, 0], "harassed hampered respectable": [65535, 0], "hampered respectable boy": [65535, 0], "respectable boy in": [65535, 0], "boy in st": [65535, 0], "in st petersburg": [65535, 0], "st petersburg tom": [65535, 0], "petersburg tom hailed": [65535, 0], "tom hailed the": [65535, 0], "hailed the romantic": [65535, 0], "the romantic outcast": [65535, 0], "romantic outcast hello": [65535, 0], "outcast hello huckleberry": [65535, 0], "hello huckleberry hello": [65535, 0], "huckleberry hello yourself": [65535, 0], "hello yourself and": [65535, 0], "yourself and see": [65535, 0], "and see how": [65535, 0], "see how you": [65535, 0], "how you like": [65535, 0], "you like it": [65535, 0], "like it what's": [65535, 0], "it what's that": [65535, 0], "what's that you": [65535, 0], "that you got": [65535, 0], "you got dead": [65535, 0], "got dead cat": [65535, 0], "dead cat lemme": [65535, 0], "cat lemme see": [65535, 0], "lemme see him": [65535, 0], "see him huck": [65535, 0], "him huck my": [65535, 0], "huck my he's": [65535, 0], "my he's pretty": [65535, 0], "he's pretty stiff": [65535, 0], "pretty stiff where'd": [65535, 0], "stiff where'd you": [65535, 0], "where'd you get": [65535, 0], "you get him": [65535, 0], "get him bought": [65535, 0], "him bought him": [65535, 0], "bought him off'n": [65535, 0], "him off'n a": [65535, 0], "off'n a boy": [65535, 0], "a boy what": [65535, 0], "boy what did": [65535, 0], "what did you": [65535, 0], "did you give": [65535, 0], "you give i": [65535, 0], "give i give": [65535, 0], "i give a": [65535, 0], "give a blue": [65535, 0], "a blue ticket": [65535, 0], "blue ticket and": [65535, 0], "ticket and a": [65535, 0], "and a bladder": [65535, 0], "a bladder that": [65535, 0], "bladder that i": [65535, 0], "that i got": [65535, 0], "i got at": [65535, 0], "got at the": [65535, 0], "at the slaughter": [65535, 0], "the slaughter house": [65535, 0], "slaughter house where'd": [65535, 0], "house where'd you": [65535, 0], "you get the": [65535, 0], "get the blue": [65535, 0], "the blue ticket": [65535, 0], "blue ticket bought": [65535, 0], "ticket bought it": [65535, 0], "bought it off'n": [65535, 0], "it off'n ben": [65535, 0], "off'n ben rogers": [65535, 0], "ben rogers two": [65535, 0], "rogers two weeks": [65535, 0], "two weeks ago": [65535, 0], "weeks ago for": [65535, 0], "ago for a": [65535, 0], "for a hoop": [65535, 0], "a hoop stick": [65535, 0], "hoop stick say": [65535, 0], "stick say what": [65535, 0], "say what is": [65535, 0], "what is dead": [65535, 0], "is dead cats": [65535, 0], "dead cats good": [65535, 0], "cats good for": [65535, 0], "good for huck": [65535, 0], "for huck good": [65535, 0], "huck good for": [65535, 0], "good for cure": [65535, 0], "for cure warts": [65535, 0], "cure warts with": [65535, 0], "warts with no": [65535, 0], "with no is": [65535, 0], "no is that": [65535, 0], "is that so": [65535, 0], "that so i": [65535, 0], "so i know": [65535, 0], "i know something": [65535, 0], "know something that's": [65535, 0], "something that's better": [65535, 0], "that's better i": [65535, 0], "better i bet": [65535, 0], "i bet you": [65535, 0], "bet you don't": [65535, 0], "you don't what": [65535, 0], "don't what is": [65535, 0], "what is it": [65535, 0], "is it why": [65535, 0], "it why spunk": [65535, 0], "why spunk water": [65535, 0], "spunk water spunk": [65535, 0], "water spunk water": [65535, 0], "spunk water i": [65535, 0], "water i wouldn't": [65535, 0], "i wouldn't give": [65535, 0], "wouldn't give a": [65535, 0], "give a dern": [65535, 0], "a dern for": [65535, 0], "dern for spunk": [65535, 0], "for spunk water": [65535, 0], "spunk water you": [65535, 0], "water you wouldn't": [65535, 0], "you wouldn't wouldn't": [65535, 0], "wouldn't wouldn't you": [65535, 0], "wouldn't you d'you": [65535, 0], "you d'you ever": [65535, 0], "d'you ever try": [65535, 0], "ever try it": [65535, 0], "try it no": [65535, 0], "it no i": [65535, 0], "no i hain't": [65535, 0], "i hain't but": [65535, 0], "hain't but bob": [65535, 0], "but bob tanner": [65535, 0], "bob tanner did": [65535, 0], "tanner did who": [65535, 0], "did who told": [65535, 0], "who told you": [65535, 0], "told you so": [65535, 0], "you so why": [65535, 0], "so why he": [65535, 0], "why he told": [65535, 0], "he told jeff": [65535, 0], "told jeff thatcher": [65535, 0], "jeff thatcher and": [65535, 0], "thatcher and jeff": [65535, 0], "and jeff told": [65535, 0], "jeff told johnny": [65535, 0], "told johnny baker": [65535, 0], "johnny baker and": [65535, 0], "baker and johnny": [65535, 0], "and johnny told": [65535, 0], "johnny told jim": [65535, 0], "told jim hollis": [65535, 0], "jim hollis and": [65535, 0], "hollis and jim": [65535, 0], "and jim told": [65535, 0], "jim told ben": [65535, 0], "told ben rogers": [65535, 0], "ben rogers and": [65535, 0], "rogers and ben": [65535, 0], "and ben told": [65535, 0], "ben told a": [65535, 0], "told a nigger": [65535, 0], "a nigger and": [65535, 0], "nigger and the": [65535, 0], "and the nigger": [65535, 0], "the nigger told": [65535, 0], "nigger told me": [65535, 0], "told me there": [65535, 0], "me there now": [65535, 0], "there now well": [65535, 0], "now well what": [65535, 0], "well what of": [65535, 0], "what of it": [65535, 0], "of it they'll": [65535, 0], "it they'll all": [65535, 0], "they'll all lie": [65535, 0], "all lie leastways": [65535, 0], "lie leastways all": [65535, 0], "leastways all but": [65535, 0], "all but the": [65535, 0], "but the nigger": [65535, 0], "the nigger i": [65535, 0], "nigger i don't": [65535, 0], "i don't know": [65535, 0], "don't know him": [65535, 0], "know him but": [65535, 0], "him but i": [65535, 0], "but i never": [65535, 0], "i never see": [65535, 0], "never see a": [65535, 0], "see a nigger": [65535, 0], "a nigger that": [65535, 0], "nigger that wouldn't": [65535, 0], "that wouldn't lie": [65535, 0], "wouldn't lie shucks": [65535, 0], "lie shucks now": [65535, 0], "shucks now you": [65535, 0], "now you tell": [65535, 0], "you tell me": [65535, 0], "tell me how": [32706, 32829], "me how bob": [65535, 0], "how bob tanner": [65535, 0], "bob tanner done": [65535, 0], "tanner done it": [65535, 0], "done it huck": [65535, 0], "it huck why": [65535, 0], "huck why he": [65535, 0], "why he took": [65535, 0], "he took and": [65535, 0], "took and dipped": [65535, 0], "and dipped his": [65535, 0], "dipped his hand": [65535, 0], "his hand in": [65535, 0], "hand in a": [65535, 0], "in a rotten": [65535, 0], "a rotten stump": [65535, 0], "rotten stump where": [65535, 0], "stump where the": [65535, 0], "where the rain": [65535, 0], "the rain water": [65535, 0], "rain water was": [65535, 0], "water was in": [65535, 0], "was in the": [65535, 0], "in the daytime": [65535, 0], "the daytime certainly": [65535, 0], "daytime certainly with": [65535, 0], "certainly with his": [65535, 0], "with his face": [65535, 0], "his face to": [65535, 0], "face to the": [65535, 0], "to the stump": [65535, 0], "the stump yes": [65535, 0], "stump yes least": [65535, 0], "yes least i": [65535, 0], "least i reckon": [65535, 0], "i reckon so": [65535, 0], "reckon so did": [65535, 0], "so did he": [65535, 0], "did he say": [65535, 0], "he say anything": [65535, 0], "say anything i": [65535, 0], "anything i don't": [65535, 0], "i don't reckon": [65535, 0], "don't reckon he": [65535, 0], "reckon he did": [65535, 0], "he did i": [65535, 0], "did i don't": [65535, 0], "don't know aha": [65535, 0], "know aha talk": [65535, 0], "aha talk about": [65535, 0], "talk about trying": [65535, 0], "about trying to": [65535, 0], "trying to cure": [65535, 0], "to cure warts": [65535, 0], "warts with spunk": [65535, 0], "with spunk water": [65535, 0], "spunk water such": [65535, 0], "water such a": [65535, 0], "such a blame": [65535, 0], "a blame fool": [65535, 0], "blame fool way": [65535, 0], "fool way as": [65535, 0], "way as that": [65535, 0], "as that why": [65535, 0], "that why that": [65535, 0], "why that ain't": [65535, 0], "that ain't a": [65535, 0], "ain't a going": [65535, 0], "a going to": [65535, 0], "going to do": [65535, 0], "to do any": [65535, 0], "do any good": [65535, 0], "any good you": [65535, 0], "good you got": [65535, 0], "you got to": [65535, 0], "got to go": [65535, 0], "to go all": [65535, 0], "go all by": [65535, 0], "all by yourself": [65535, 0], "by yourself to": [65535, 0], "yourself to the": [65535, 0], "to the middle": [65535, 0], "the middle of": [65535, 0], "middle of the": [65535, 0], "of the woods": [65535, 0], "the woods where": [65535, 0], "woods where you": [65535, 0], "where you know": [65535, 0], "you know there's": [65535, 0], "know there's a": [65535, 0], "there's a spunk": [65535, 0], "a spunk water": [65535, 0], "spunk water stump": [65535, 0], "water stump and": [65535, 0], "stump and just": [65535, 0], "and just as": [65535, 0], "just as it's": [65535, 0], "as it's midnight": [65535, 0], "it's midnight you": [65535, 0], "midnight you back": [65535, 0], "you back up": [65535, 0], "back up against": [65535, 0], "up against the": [65535, 0], "against the stump": [65535, 0], "the stump and": [65535, 0], "stump and jam": [65535, 0], "and jam your": [65535, 0], "jam your hand": [65535, 0], "your hand in": [65535, 0], "hand in and": [65535, 0], "in and say": [65535, 0], "and say 'barley": [65535, 0], "say 'barley corn": [65535, 0], "'barley corn barley": [65535, 0], "corn barley corn": [65535, 0], "barley corn injun": [65535, 0], "corn injun meal": [65535, 0], "injun meal shorts": [65535, 0], "meal shorts spunk": [65535, 0], "shorts spunk water": [65535, 0], "spunk water swaller": [65535, 0], "water swaller these": [65535, 0], "swaller these warts": [65535, 0], "these warts '": [65535, 0], "warts ' and": [65535, 0], "' and then": [65535, 0], "and then walk": [65535, 0], "then walk away": [65535, 0], "walk away quick": [65535, 0], "away quick eleven": [65535, 0], "quick eleven steps": [65535, 0], "eleven steps with": [65535, 0], "steps with your": [65535, 0], "with your eyes": [65535, 0], "your eyes shut": [65535, 0], "eyes shut and": [65535, 0], "shut and then": [65535, 0], "and then turn": [65535, 0], "then turn around": [65535, 0], "turn around three": [65535, 0], "around three times": [65535, 0], "three times and": [65535, 0], "times and walk": [65535, 0], "and walk home": [65535, 0], "walk home without": [65535, 0], "home without speaking": [65535, 0], "without speaking to": [65535, 0], "speaking to anybody": [65535, 0], "to anybody because": [65535, 0], "anybody because if": [65535, 0], "because if you": [65535, 0], "if you speak": [65535, 0], "you speak the": [65535, 0], "speak the charm's": [65535, 0], "the charm's busted": [65535, 0], "charm's busted well": [65535, 0], "busted well that": [65535, 0], "well that sounds": [65535, 0], "that sounds like": [65535, 0], "sounds like a": [65535, 0], "like a good": [65535, 0], "a good way": [65535, 0], "good way but": [65535, 0], "way but that": [65535, 0], "but that ain't": [65535, 0], "that ain't the": [65535, 0], "ain't the way": [65535, 0], "the way bob": [65535, 0], "way bob tanner": [65535, 0], "tanner done no": [65535, 0], "done no sir": [65535, 0], "no sir you": [65535, 0], "sir you can": [65535, 0], "you can bet": [65535, 0], "can bet he": [65535, 0], "bet he didn't": [65535, 0], "he didn't becuz": [65535, 0], "didn't becuz he's": [65535, 0], "becuz he's the": [65535, 0], "he's the wartiest": [65535, 0], "the wartiest boy": [65535, 0], "wartiest boy in": [65535, 0], "boy in this": [65535, 0], "in this town": [65535, 0], "this town and": [65535, 0], "town and he": [65535, 0], "and he wouldn't": [65535, 0], "he wouldn't have": [65535, 0], "wouldn't have a": [65535, 0], "have a wart": [65535, 0], "a wart on": [65535, 0], "wart on him": [65535, 0], "on him if": [65535, 0], "him if he'd": [65535, 0], "if he'd knowed": [65535, 0], "he'd knowed how": [65535, 0], "knowed how to": [65535, 0], "how to work": [65535, 0], "to work spunk": [65535, 0], "work spunk water": [65535, 0], "spunk water i've": [65535, 0], "water i've took": [65535, 0], "i've took off": [65535, 0], "took off thousands": [65535, 0], "off thousands of": [65535, 0], "thousands of warts": [65535, 0], "of warts off": [65535, 0], "warts off of": [65535, 0], "off of my": [65535, 0], "of my hands": [65535, 0], "my hands that": [65535, 0], "hands that way": [65535, 0], "that way huck": [65535, 0], "way huck i": [65535, 0], "huck i play": [65535, 0], "i play with": [65535, 0], "play with frogs": [65535, 0], "with frogs so": [65535, 0], "frogs so much": [65535, 0], "so much that": [65535, 0], "much that i've": [65535, 0], "that i've always": [65535, 0], "i've always got": [65535, 0], "always got considerable": [65535, 0], "got considerable many": [65535, 0], "considerable many warts": [65535, 0], "many warts sometimes": [65535, 0], "warts sometimes i": [65535, 0], "sometimes i take": [65535, 0], "i take 'em": [65535, 0], "take 'em off": [65535, 0], "'em off with": [65535, 0], "off with a": [65535, 0], "with a bean": [65535, 0], "a bean yes": [65535, 0], "bean yes bean's": [65535, 0], "yes bean's good": [65535, 0], "bean's good i've": [65535, 0], "good i've done": [65535, 0], "i've done that": [65535, 0], "done that have": [65535, 0], "that have you": [65535, 0], "have you what's": [65535, 0], "you what's your": [65535, 0], "what's your way": [65535, 0], "your way you": [65535, 0], "way you take": [65535, 0], "you take and": [65535, 0], "take and split": [65535, 0], "and split the": [65535, 0], "split the bean": [65535, 0], "the bean and": [65535, 0], "bean and cut": [65535, 0], "and cut the": [65535, 0], "cut the wart": [65535, 0], "the wart so": [65535, 0], "wart so as": [65535, 0], "as to get": [65535, 0], "to get some": [65535, 0], "get some blood": [65535, 0], "some blood and": [65535, 0], "blood and then": [65535, 0], "and then you": [43635, 21900], "then you put": [65535, 0], "you put the": [65535, 0], "put the blood": [65535, 0], "the blood on": [65535, 0], "blood on one": [65535, 0], "on one piece": [65535, 0], "one piece of": [65535, 0], "piece of the": [65535, 0], "of the bean": [65535, 0], "bean and take": [65535, 0], "and take and": [65535, 0], "take and dig": [65535, 0], "and dig a": [65535, 0], "dig a hole": [65535, 0], "a hole and": [65535, 0], "hole and bury": [65535, 0], "and bury it": [65535, 0], "bury it 'bout": [65535, 0], "it 'bout midnight": [65535, 0], "'bout midnight at": [65535, 0], "midnight at the": [65535, 0], "at the crossroads": [65535, 0], "the crossroads in": [65535, 0], "crossroads in the": [65535, 0], "in the dark": [65535, 0], "the dark of": [65535, 0], "dark of the": [65535, 0], "of the moon": [65535, 0], "the moon and": [65535, 0], "moon and then": [65535, 0], "then you burn": [65535, 0], "you burn up": [65535, 0], "burn up the": [65535, 0], "up the rest": [65535, 0], "the bean you": [65535, 0], "bean you see": [65535, 0], "you see that": [65535, 0], "see that piece": [65535, 0], "that piece that's": [65535, 0], "piece that's got": [65535, 0], "that's got the": [65535, 0], "got the blood": [65535, 0], "blood on it": [65535, 0], "on it will": [65535, 0], "it will keep": [65535, 0], "will keep drawing": [65535, 0], "keep drawing and": [65535, 0], "drawing and drawing": [65535, 0], "and drawing trying": [65535, 0], "drawing trying to": [65535, 0], "trying to fetch": [65535, 0], "to fetch the": [65535, 0], "fetch the other": [65535, 0], "the other piece": [65535, 0], "other piece to": [65535, 0], "piece to it": [65535, 0], "to it and": [65535, 0], "it and so": [65535, 0], "and so that": [65535, 0], "so that helps": [65535, 0], "that helps the": [65535, 0], "helps the blood": [65535, 0], "the blood to": [65535, 0], "blood to draw": [65535, 0], "to draw the": [65535, 0], "draw the wart": [65535, 0], "the wart and": [65535, 0], "wart and pretty": [65535, 0], "and pretty soon": [65535, 0], "pretty soon off": [65535, 0], "soon off she": [65535, 0], "off she comes": [65535, 0], "she comes yes": [65535, 0], "comes yes that's": [65535, 0], "yes that's it": [65535, 0], "that's it huck": [65535, 0], "it huck that's": [65535, 0], "huck that's it": [65535, 0], "that's it though": [65535, 0], "it though when": [65535, 0], "though when you're": [65535, 0], "when you're burying": [65535, 0], "you're burying it": [65535, 0], "burying it if": [65535, 0], "it if you": [65535, 0], "if you say": [65535, 0], "you say 'down": [65535, 0], "say 'down bean": [65535, 0], "'down bean off": [65535, 0], "bean off wart": [65535, 0], "off wart come": [65535, 0], "wart come no": [65535, 0], "come no more": [65535, 0], "no more to": [65535, 0], "more to bother": [65535, 0], "to bother me": [65535, 0], "bother me '": [65535, 0], "me ' it's": [65535, 0], "' it's better": [65535, 0], "it's better that's": [65535, 0], "better that's the": [65535, 0], "that's the way": [65535, 0], "the way joe": [65535, 0], "way joe harper": [65535, 0], "joe harper does": [65535, 0], "harper does and": [65535, 0], "does and he's": [65535, 0], "and he's been": [65535, 0], "he's been nearly": [65535, 0], "been nearly to": [65535, 0], "nearly to coonville": [65535, 0], "to coonville and": [65535, 0], "coonville and most": [65535, 0], "and most everywheres": [65535, 0], "most everywheres but": [65535, 0], "everywheres but say": [65535, 0], "but say how": [65535, 0], "say how do": [65535, 0], "how do you": [65535, 0], "do you cure": [65535, 0], "you cure 'em": [65535, 0], "cure 'em with": [65535, 0], "'em with dead": [65535, 0], "with dead cats": [65535, 0], "dead cats why": [65535, 0], "cats why you": [65535, 0], "why you take": [65535, 0], "you take your": [65535, 0], "take your cat": [65535, 0], "your cat and": [65535, 0], "cat and go": [65535, 0], "and go and": [65535, 0], "go and get": [65535, 0], "and get in": [65535, 0], "get in the": [65535, 0], "in the graveyard": [65535, 0], "the graveyard 'long": [65535, 0], "graveyard 'long about": [65535, 0], "'long about midnight": [65535, 0], "about midnight when": [65535, 0], "midnight when somebody": [65535, 0], "when somebody that": [65535, 0], "somebody that was": [65535, 0], "that was wicked": [65535, 0], "was wicked has": [65535, 0], "wicked has been": [65535, 0], "has been buried": [65535, 0], "been buried and": [65535, 0], "buried and when": [65535, 0], "and when it's": [65535, 0], "when it's midnight": [65535, 0], "it's midnight a": [65535, 0], "midnight a devil": [65535, 0], "a devil will": [65535, 0], "devil will come": [65535, 0], "will come or": [65535, 0], "come or maybe": [65535, 0], "or maybe two": [65535, 0], "maybe two or": [65535, 0], "or three but": [65535, 0], "three but you": [65535, 0], "but you can't": [65535, 0], "you can't see": [65535, 0], "can't see 'em": [65535, 0], "see 'em you": [65535, 0], "'em you can": [65535, 0], "you can only": [65535, 0], "can only hear": [65535, 0], "only hear something": [65535, 0], "hear something like": [65535, 0], "something like the": [65535, 0], "like the wind": [65535, 0], "the wind or": [65535, 0], "wind or maybe": [65535, 0], "or maybe hear": [65535, 0], "maybe hear 'em": [65535, 0], "hear 'em talk": [65535, 0], "'em talk and": [65535, 0], "talk and when": [65535, 0], "and when they're": [65535, 0], "when they're taking": [65535, 0], "they're taking that": [65535, 0], "taking that feller": [65535, 0], "that feller away": [65535, 0], "feller away you": [65535, 0], "away you heave": [65535, 0], "you heave your": [65535, 0], "heave your cat": [65535, 0], "your cat after": [65535, 0], "cat after 'em": [65535, 0], "after 'em and": [65535, 0], "'em and say": [65535, 0], "and say 'devil": [65535, 0], "say 'devil follow": [65535, 0], "'devil follow corpse": [65535, 0], "follow corpse cat": [65535, 0], "corpse cat follow": [65535, 0], "cat follow devil": [65535, 0], "follow devil warts": [65535, 0], "devil warts follow": [65535, 0], "warts follow cat": [65535, 0], "follow cat i'm": [65535, 0], "cat i'm done": [65535, 0], "i'm done with": [65535, 0], "done with ye": [65535, 0], "with ye '": [65535, 0], "ye ' that'll": [65535, 0], "' that'll fetch": [65535, 0], "that'll fetch any": [65535, 0], "fetch any wart": [65535, 0], "any wart sounds": [65535, 0], "wart sounds right": [65535, 0], "sounds right d'you": [65535, 0], "right d'you ever": [65535, 0], "try it huck": [65535, 0], "it huck no": [65535, 0], "huck no but": [65535, 0], "no but old": [65535, 0], "but old mother": [65535, 0], "old mother hopkins": [65535, 0], "mother hopkins told": [65535, 0], "hopkins told me": [65535, 0], "told me well": [65535, 0], "me well i": [65535, 0], "well i reckon": [65535, 0], "i reckon it's": [65535, 0], "reckon it's so": [65535, 0], "it's so then": [65535, 0], "so then becuz": [65535, 0], "then becuz they": [65535, 0], "becuz they say": [65535, 0], "they say she's": [65535, 0], "say she's a": [65535, 0], "she's a witch": [65535, 0], "a witch say": [65535, 0], "witch say why": [65535, 0], "say why tom": [65535, 0], "why tom i": [65535, 0], "tom i know": [65535, 0], "i know she": [65535, 0], "know she is": [65535, 0], "she is she": [65535, 0], "is she witched": [65535, 0], "she witched pap": [65535, 0], "witched pap pap": [65535, 0], "pap pap says": [65535, 0], "pap says so": [65535, 0], "says so his": [65535, 0], "so his own": [65535, 0], "his own self": [65535, 0], "own self he": [65535, 0], "self he come": [65535, 0], "he come along": [65535, 0], "come along one": [65535, 0], "along one day": [65535, 0], "one day and": [65535, 0], "day and he": [65535, 0], "and he see": [65535, 0], "he see she": [65535, 0], "see she was": [65535, 0], "she was a": [65535, 0], "was a witching": [65535, 0], "a witching him": [65535, 0], "witching him so": [65535, 0], "so he took": [65535, 0], "he took up": [65535, 0], "took up a": [65535, 0], "up a rock": [65535, 0], "a rock and": [65535, 0], "rock and if": [65535, 0], "and if she": [65535, 0], "if she hadn't": [65535, 0], "she hadn't dodged": [65535, 0], "hadn't dodged he'd": [65535, 0], "dodged he'd a": [65535, 0], "he'd a got": [65535, 0], "a got her": [65535, 0], "got her well": [65535, 0], "her well that": [65535, 0], "well that very": [65535, 0], "that very night": [65535, 0], "very night he": [65535, 0], "night he rolled": [65535, 0], "he rolled off'n": [65535, 0], "rolled off'n a": [65535, 0], "off'n a shed": [65535, 0], "a shed wher'": [65535, 0], "shed wher' he": [65535, 0], "wher' he was": [65535, 0], "he was a": [49105, 16430], "was a layin": [65535, 0], "a layin drunk": [65535, 0], "layin drunk and": [65535, 0], "drunk and broke": [65535, 0], "and broke his": [65535, 0], "broke his arm": [65535, 0], "his arm why": [65535, 0], "arm why that's": [65535, 0], "why that's awful": [65535, 0], "that's awful how": [65535, 0], "awful how did": [65535, 0], "how did he": [65535, 0], "did he know": [65535, 0], "he know she": [65535, 0], "know she was": [65535, 0], "witching him lord": [65535, 0], "him lord pap": [65535, 0], "lord pap can": [65535, 0], "pap can tell": [65535, 0], "can tell easy": [65535, 0], "tell easy pap": [65535, 0], "easy pap says": [65535, 0], "pap says when": [65535, 0], "says when they": [65535, 0], "when they keep": [65535, 0], "they keep looking": [65535, 0], "keep looking at": [65535, 0], "looking at you": [65535, 0], "at you right": [65535, 0], "you right stiddy": [65535, 0], "right stiddy they're": [65535, 0], "stiddy they're a": [65535, 0], "they're a witching": [65535, 0], "a witching you": [65535, 0], "witching you specially": [65535, 0], "you specially if": [65535, 0], "specially if they": [65535, 0], "if they mumble": [65535, 0], "they mumble becuz": [65535, 0], "mumble becuz when": [65535, 0], "becuz when they": [65535, 0], "when they mumble": [65535, 0], "they mumble they're": [65535, 0], "mumble they're saying": [65535, 0], "they're saying the": [65535, 0], "saying the lord's": [65535, 0], "the lord's prayer": [65535, 0], "lord's prayer backards": [65535, 0], "prayer backards say": [65535, 0], "backards say hucky": [65535, 0], "say hucky when": [65535, 0], "hucky when you": [65535, 0], "when you going": [65535, 0], "you going to": [65535, 0], "going to try": [65535, 0], "to try the": [65535, 0], "try the cat": [65535, 0], "the cat to": [65535, 0], "cat to night": [65535, 0], "to night i": [65535, 0], "night i reckon": [65535, 0], "i reckon they'll": [65535, 0], "reckon they'll come": [65535, 0], "they'll come after": [65535, 0], "come after old": [65535, 0], "after old hoss": [65535, 0], "old hoss williams": [65535, 0], "hoss williams to": [65535, 0], "williams to night": [65535, 0], "to night but": [65535, 0], "night but they": [65535, 0], "but they buried": [65535, 0], "they buried him": [65535, 0], "buried him saturday": [65535, 0], "him saturday didn't": [65535, 0], "saturday didn't they": [65535, 0], "didn't they get": [65535, 0], "they get him": [65535, 0], "get him saturday": [65535, 0], "him saturday night": [65535, 0], "saturday night why": [65535, 0], "night why how": [65535, 0], "why how you": [65535, 0], "how you talk": [65535, 0], "you talk how": [65535, 0], "talk how could": [65535, 0], "how could their": [65535, 0], "could their charms": [65535, 0], "their charms work": [65535, 0], "charms work till": [65535, 0], "work till midnight": [65535, 0], "till midnight and": [65535, 0], "midnight and then": [65535, 0], "and then it's": [65535, 0], "then it's sunday": [65535, 0], "it's sunday devils": [65535, 0], "sunday devils don't": [65535, 0], "devils don't slosh": [65535, 0], "don't slosh around": [65535, 0], "slosh around much": [65535, 0], "around much of": [65535, 0], "much of a": [65535, 0], "of a sunday": [65535, 0], "a sunday i": [65535, 0], "sunday i don't": [65535, 0], "don't reckon i": [65535, 0], "reckon i never": [65535, 0], "i never thought": [65535, 0], "never thought of": [65535, 0], "thought of that": [65535, 0], "of that that's": [65535, 0], "that that's so": [65535, 0], "that's so lemme": [65535, 0], "so lemme go": [65535, 0], "lemme go with": [65535, 0], "go with you": [65535, 0], "with you of": [65535, 0], "you of course": [65535, 0], "of course if": [65535, 0], "course if you": [65535, 0], "if you ain't": [65535, 0], "you ain't afeard": [65535, 0], "ain't afeard afeard": [65535, 0], "afeard afeard 'tain't": [65535, 0], "afeard 'tain't likely": [65535, 0], "'tain't likely will": [65535, 0], "likely will you": [65535, 0], "will you meow": [65535, 0], "you meow yes": [65535, 0], "meow yes and": [65535, 0], "yes and you": [65535, 0], "and you meow": [65535, 0], "you meow back": [65535, 0], "meow back if": [65535, 0], "back if you": [65535, 0], "if you get": [65535, 0], "you get a": [65535, 0], "get a chance": [65535, 0], "a chance last": [65535, 0], "chance last time": [65535, 0], "last time you": [65535, 0], "time you kep'": [65535, 0], "you kep' me": [65535, 0], "kep' me a": [65535, 0], "me a meowing": [65535, 0], "a meowing around": [65535, 0], "meowing around till": [65535, 0], "around till old": [65535, 0], "till old hays": [65535, 0], "old hays went": [65535, 0], "hays went to": [65535, 0], "went to throwing": [65535, 0], "to throwing rocks": [65535, 0], "throwing rocks at": [65535, 0], "rocks at me": [65535, 0], "at me and": [21790, 43745], "me and says": [65535, 0], "and says 'dern": [65535, 0], "says 'dern that": [65535, 0], "'dern that cat": [65535, 0], "that cat '": [65535, 0], "cat ' and": [65535, 0], "' and so": [65535, 0], "and so i": [65535, 0], "so i hove": [65535, 0], "i hove a": [65535, 0], "hove a brick": [65535, 0], "a brick through": [65535, 0], "brick through his": [65535, 0], "through his window": [65535, 0], "his window but": [65535, 0], "window but don't": [65535, 0], "but don't you": [65535, 0], "don't you tell": [65535, 0], "you tell i": [65535, 0], "tell i won't": [65535, 0], "i won't i": [65535, 0], "won't i couldn't": [65535, 0], "i couldn't meow": [65535, 0], "couldn't meow that": [65535, 0], "meow that night": [65535, 0], "that night becuz": [65535, 0], "night becuz auntie": [65535, 0], "becuz auntie was": [65535, 0], "auntie was watching": [65535, 0], "was watching me": [65535, 0], "watching me but": [65535, 0], "me but i'll": [65535, 0], "but i'll meow": [65535, 0], "i'll meow this": [65535, 0], "meow this time": [65535, 0], "this time say": [65535, 0], "time say what's": [65535, 0], "say what's that": [65535, 0], "what's that nothing": [65535, 0], "that nothing but": [65535, 0], "nothing but a": [32706, 32829], "but a tick": [65535, 0], "a tick where'd": [65535, 0], "tick where'd you": [65535, 0], "get him out": [65535, 0], "him out in": [65535, 0], "out in the": [65535, 0], "in the woods": [65535, 0], "the woods what'll": [65535, 0], "woods what'll you": [65535, 0], "what'll you take": [65535, 0], "you take for": [65535, 0], "take for him": [65535, 0], "for him i": [65535, 0], "him i don't": [65535, 0], "don't know i": [65535, 0], "know i don't": [65535, 0], "want to sell": [65535, 0], "to sell him": [65535, 0], "sell him all": [65535, 0], "him all right": [65535, 0], "all right it's": [65535, 0], "right it's a": [65535, 0], "it's a mighty": [65535, 0], "a mighty small": [65535, 0], "mighty small tick": [65535, 0], "small tick anyway": [65535, 0], "tick anyway oh": [65535, 0], "anyway oh anybody": [65535, 0], "oh anybody can": [65535, 0], "anybody can run": [65535, 0], "can run a": [65535, 0], "run a tick": [65535, 0], "a tick down": [65535, 0], "tick down that": [65535, 0], "down that don't": [65535, 0], "that don't belong": [65535, 0], "don't belong to": [65535, 0], "belong to them": [65535, 0], "to them i'm": [65535, 0], "them i'm satisfied": [65535, 0], "i'm satisfied with": [65535, 0], "satisfied with it": [65535, 0], "with it it's": [65535, 0], "it it's a": [65535, 0], "it's a good": [65535, 0], "a good enough": [65535, 0], "good enough tick": [65535, 0], "enough tick for": [65535, 0], "tick for me": [65535, 0], "for me sho": [65535, 0], "me sho there's": [65535, 0], "sho there's ticks": [65535, 0], "there's ticks a": [65535, 0], "ticks a plenty": [65535, 0], "a plenty i": [65535, 0], "plenty i could": [65535, 0], "i could have": [65535, 0], "could have a": [65535, 0], "have a thousand": [65535, 0], "a thousand of": [65535, 0], "thousand of 'em": [65535, 0], "of 'em if": [65535, 0], "'em if i": [65535, 0], "if i wanted": [65535, 0], "i wanted to": [65535, 0], "wanted to well": [65535, 0], "to well why": [65535, 0], "well why don't": [65535, 0], "why don't you": [65535, 0], "don't you becuz": [65535, 0], "you becuz you": [65535, 0], "becuz you know": [65535, 0], "you know mighty": [65535, 0], "know mighty well": [65535, 0], "mighty well you": [65535, 0], "well you can't": [65535, 0], "you can't this": [65535, 0], "can't this is": [65535, 0], "this is a": [65535, 0], "is a pretty": [65535, 0], "a pretty early": [65535, 0], "pretty early tick": [65535, 0], "early tick i": [65535, 0], "tick i reckon": [65535, 0], "reckon it's the": [65535, 0], "it's the first": [65535, 0], "the first one": [65535, 0], "first one i've": [65535, 0], "one i've seen": [65535, 0], "i've seen this": [65535, 0], "seen this year": [65535, 0], "this year say": [65535, 0], "year say huck": [65535, 0], "say huck i'll": [65535, 0], "huck i'll give": [65535, 0], "i'll give you": [65535, 0], "give you my": [65535, 0], "you my tooth": [65535, 0], "my tooth for": [65535, 0], "tooth for him": [65535, 0], "for him less": [65535, 0], "him less see": [65535, 0], "less see it": [65535, 0], "see it tom": [65535, 0], "it tom got": [65535, 0], "tom got out": [65535, 0], "got out a": [65535, 0], "out a bit": [65535, 0], "bit of paper": [65535, 0], "of paper and": [65535, 0], "paper and carefully": [65535, 0], "and carefully unrolled": [65535, 0], "carefully unrolled it": [65535, 0], "unrolled it huckleberry": [65535, 0], "it huckleberry viewed": [65535, 0], "huckleberry viewed it": [65535, 0], "viewed it wistfully": [65535, 0], "it wistfully the": [65535, 0], "wistfully the temptation": [65535, 0], "the temptation was": [65535, 0], "temptation was very": [65535, 0], "was very strong": [65535, 0], "very strong at": [65535, 0], "strong at last": [65535, 0], "at last he": [65535, 0], "last he said": [65535, 0], "he said is": [65535, 0], "said is it": [65535, 0], "is it genuwyne": [65535, 0], "it genuwyne tom": [65535, 0], "genuwyne tom lifted": [65535, 0], "tom lifted his": [65535, 0], "lip and showed": [65535, 0], "and showed the": [65535, 0], "showed the vacancy": [65535, 0], "the vacancy well": [65535, 0], "vacancy well all": [65535, 0], "well all right": [65535, 0], "all right said": [65535, 0], "right said huckleberry": [65535, 0], "said huckleberry it's": [65535, 0], "huckleberry it's a": [65535, 0], "it's a trade": [65535, 0], "a trade tom": [65535, 0], "trade tom enclosed": [65535, 0], "tom enclosed the": [65535, 0], "enclosed the tick": [65535, 0], "the tick in": [65535, 0], "tick in the": [65535, 0], "in the percussion": [65535, 0], "the percussion cap": [65535, 0], "cap box that": [65535, 0], "box that had": [65535, 0], "that had lately": [65535, 0], "had lately been": [65535, 0], "lately been the": [65535, 0], "been the pinchbug's": [65535, 0], "the pinchbug's prison": [65535, 0], "pinchbug's prison and": [65535, 0], "prison and the": [65535, 0], "and the boys": [65535, 0], "the boys separated": [65535, 0], "boys separated each": [65535, 0], "separated each feeling": [65535, 0], "each feeling wealthier": [65535, 0], "feeling wealthier than": [65535, 0], "wealthier than before": [65535, 0], "than before when": [65535, 0], "before when tom": [65535, 0], "when tom reached": [65535, 0], "tom reached the": [65535, 0], "reached the little": [65535, 0], "the little isolated": [65535, 0], "little isolated frame": [65535, 0], "isolated frame schoolhouse": [65535, 0], "frame schoolhouse he": [65535, 0], "schoolhouse he strode": [65535, 0], "he strode in": [65535, 0], "strode in briskly": [65535, 0], "in briskly with": [65535, 0], "briskly with the": [65535, 0], "with the manner": [65535, 0], "the manner of": [65535, 0], "manner of one": [65535, 0], "of one who": [65535, 0], "one who had": [65535, 0], "who had come": [65535, 0], "had come with": [65535, 0], "come with all": [65535, 0], "with all honest": [65535, 0], "all honest speed": [65535, 0], "honest speed he": [65535, 0], "speed he hung": [65535, 0], "he hung his": [65535, 0], "hung his hat": [65535, 0], "his hat on": [65535, 0], "hat on a": [65535, 0], "on a peg": [65535, 0], "a peg and": [65535, 0], "peg and flung": [65535, 0], "and flung himself": [65535, 0], "flung himself into": [65535, 0], "himself into his": [65535, 0], "into his seat": [65535, 0], "his seat with": [65535, 0], "seat with business": [65535, 0], "with business like": [65535, 0], "business like alacrity": [65535, 0], "like alacrity the": [65535, 0], "alacrity the master": [65535, 0], "the master throned": [65535, 0], "master throned on": [65535, 0], "throned on high": [65535, 0], "on high in": [65535, 0], "high in his": [65535, 0], "in his great": [65535, 0], "his great splint": [65535, 0], "great splint bottom": [65535, 0], "splint bottom arm": [65535, 0], "bottom arm chair": [65535, 0], "arm chair was": [65535, 0], "chair was dozing": [65535, 0], "was dozing lulled": [65535, 0], "dozing lulled by": [65535, 0], "lulled by the": [65535, 0], "by the drowsy": [65535, 0], "the drowsy hum": [65535, 0], "drowsy hum of": [65535, 0], "hum of study": [65535, 0], "of study the": [65535, 0], "study the interruption": [65535, 0], "the interruption roused": [65535, 0], "interruption roused him": [65535, 0], "roused him thomas": [65535, 0], "him thomas sawyer": [65535, 0], "thomas sawyer tom": [65535, 0], "sawyer tom knew": [65535, 0], "tom knew that": [65535, 0], "knew that when": [65535, 0], "that when his": [65535, 0], "when his name": [65535, 0], "his name was": [65535, 0], "name was pronounced": [65535, 0], "was pronounced in": [65535, 0], "pronounced in full": [65535, 0], "in full it": [65535, 0], "full it meant": [65535, 0], "it meant trouble": [65535, 0], "meant trouble sir": [65535, 0], "trouble sir come": [65535, 0], "sir come up": [65535, 0], "come up here": [65535, 0], "up here now": [65535, 0], "here now sir": [65535, 0], "now sir why": [65535, 0], "sir why are": [65535, 0], "why are you": [65535, 0], "are you late": [65535, 0], "you late again": [65535, 0], "late again as": [65535, 0], "again as usual": [65535, 0], "as usual tom": [65535, 0], "usual tom was": [65535, 0], "tom was about": [65535, 0], "about to take": [65535, 0], "to take refuge": [65535, 0], "take refuge in": [65535, 0], "refuge in a": [65535, 0], "in a lie": [65535, 0], "a lie when": [65535, 0], "lie when he": [65535, 0], "when he saw": [65535, 0], "he saw two": [65535, 0], "saw two long": [65535, 0], "two long tails": [65535, 0], "long tails of": [65535, 0], "tails of yellow": [65535, 0], "of yellow hair": [65535, 0], "yellow hair hanging": [65535, 0], "hair hanging down": [65535, 0], "hanging down a": [65535, 0], "down a back": [65535, 0], "a back that": [65535, 0], "back that he": [65535, 0], "that he recognized": [65535, 0], "he recognized by": [65535, 0], "recognized by the": [65535, 0], "by the electric": [65535, 0], "the electric sympathy": [65535, 0], "electric sympathy of": [65535, 0], "sympathy of love": [65535, 0], "of love and": [65535, 0], "love and by": [65535, 0], "and by that": [65535, 0], "by that form": [65535, 0], "that form was": [65535, 0], "form was the": [65535, 0], "was the only": [65535, 0], "the only vacant": [65535, 0], "only vacant place": [65535, 0], "vacant place on": [65535, 0], "place on the": [65535, 0], "on the girls'": [65535, 0], "the girls' side": [65535, 0], "girls' side of": [65535, 0], "side of the": [65535, 0], "of the school": [65535, 0], "the school house": [65535, 0], "school house he": [65535, 0], "house he instantly": [65535, 0], "he instantly said": [65535, 0], "instantly said i": [65535, 0], "said i stopped": [65535, 0], "i stopped to": [65535, 0], "stopped to talk": [65535, 0], "to talk with": [65535, 0], "talk with huckleberry": [65535, 0], "with huckleberry finn": [65535, 0], "huckleberry finn the": [65535, 0], "finn the master's": [65535, 0], "the master's pulse": [65535, 0], "master's pulse stood": [65535, 0], "pulse stood still": [65535, 0], "stood still and": [65535, 0], "still and he": [65535, 0], "and he stared": [65535, 0], "he stared helplessly": [65535, 0], "stared helplessly the": [65535, 0], "helplessly the buzz": [65535, 0], "the buzz of": [65535, 0], "buzz of study": [65535, 0], "of study ceased": [65535, 0], "study ceased the": [65535, 0], "ceased the pupils": [65535, 0], "the pupils wondered": [65535, 0], "pupils wondered if": [65535, 0], "wondered if this": [65535, 0], "if this foolhardy": [65535, 0], "this foolhardy boy": [65535, 0], "foolhardy boy had": [65535, 0], "boy had lost": [65535, 0], "had lost his": [65535, 0], "lost his mind": [65535, 0], "his mind the": [65535, 0], "mind the master": [65535, 0], "the master said": [65535, 0], "master said you": [65535, 0], "said you you": [65535, 0], "you you did": [65535, 0], "you did what": [65535, 0], "did what stopped": [65535, 0], "what stopped to": [65535, 0], "huckleberry finn there": [65535, 0], "finn there was": [65535, 0], "there was no": [65535, 0], "was no mistaking": [65535, 0], "no mistaking the": [65535, 0], "mistaking the words": [65535, 0], "the words thomas": [65535, 0], "words thomas sawyer": [65535, 0], "thomas sawyer this": [65535, 0], "sawyer this is": [65535, 0], "this is the": [32706, 32829], "is the most": [65535, 0], "the most astounding": [65535, 0], "most astounding confession": [65535, 0], "astounding confession i": [65535, 0], "confession i have": [65535, 0], "i have ever": [65535, 0], "have ever listened": [65535, 0], "ever listened to": [65535, 0], "listened to no": [65535, 0], "to no mere": [65535, 0], "no mere ferule": [65535, 0], "mere ferule will": [65535, 0], "ferule will answer": [65535, 0], "will answer for": [65535, 0], "answer for this": [65535, 0], "for this offence": [65535, 0], "this offence take": [65535, 0], "offence take off": [65535, 0], "take off your": [65535, 0], "off your jacket": [65535, 0], "your jacket the": [65535, 0], "jacket the master's": [65535, 0], "the master's arm": [65535, 0], "master's arm performed": [65535, 0], "arm performed until": [65535, 0], "performed until it": [65535, 0], "until it was": [65535, 0], "it was tired": [65535, 0], "was tired and": [65535, 0], "tired and the": [65535, 0], "and the stock": [65535, 0], "the stock of": [65535, 0], "stock of switches": [65535, 0], "of switches notably": [65535, 0], "switches notably diminished": [65535, 0], "notably diminished then": [65535, 0], "diminished then the": [65535, 0], "then the order": [65535, 0], "the order followed": [65535, 0], "order followed now": [65535, 0], "followed now sir": [65535, 0], "now sir go": [65535, 0], "sir go and": [65535, 0], "go and sit": [65535, 0], "and sit with": [65535, 0], "sit with the": [65535, 0], "with the girls": [65535, 0], "the girls and": [65535, 0], "girls and let": [65535, 0], "and let this": [65535, 0], "let this be": [65535, 0], "this be a": [65535, 0], "be a warning": [65535, 0], "a warning to": [65535, 0], "warning to you": [65535, 0], "to you the": [65535, 0], "you the titter": [65535, 0], "the titter that": [65535, 0], "titter that rippled": [65535, 0], "that rippled around": [65535, 0], "rippled around the": [65535, 0], "around the room": [65535, 0], "the room appeared": [65535, 0], "room appeared to": [65535, 0], "appeared to abash": [65535, 0], "to abash the": [65535, 0], "abash the boy": [65535, 0], "the boy but": [65535, 0], "boy but in": [65535, 0], "but in reality": [65535, 0], "in reality that": [65535, 0], "reality that result": [65535, 0], "that result was": [65535, 0], "result was caused": [65535, 0], "was caused rather": [65535, 0], "caused rather more": [65535, 0], "rather more by": [65535, 0], "more by his": [65535, 0], "by his worshipful": [65535, 0], "his worshipful awe": [65535, 0], "worshipful awe of": [65535, 0], "awe of his": [65535, 0], "of his unknown": [65535, 0], "his unknown idol": [65535, 0], "unknown idol and": [65535, 0], "idol and the": [65535, 0], "and the dread": [65535, 0], "the dread pleasure": [65535, 0], "dread pleasure that": [65535, 0], "pleasure that lay": [65535, 0], "that lay in": [65535, 0], "lay in his": [65535, 0], "in his high": [65535, 0], "his high good": [65535, 0], "high good fortune": [65535, 0], "good fortune he": [65535, 0], "fortune he sat": [65535, 0], "he sat down": [65535, 0], "sat down upon": [65535, 0], "down upon the": [65535, 0], "upon the end": [65535, 0], "the end of": [65535, 0], "of the pine": [65535, 0], "the pine bench": [65535, 0], "pine bench and": [65535, 0], "bench and the": [65535, 0], "and the girl": [65535, 0], "the girl hitched": [65535, 0], "girl hitched herself": [65535, 0], "hitched herself away": [65535, 0], "herself away from": [65535, 0], "away from him": [65535, 0], "from him with": [65535, 0], "him with a": [21790, 43745], "with a toss": [65535, 0], "a toss of": [65535, 0], "toss of her": [65535, 0], "of her head": [65535, 0], "her head nudges": [65535, 0], "head nudges and": [65535, 0], "nudges and winks": [65535, 0], "and winks and": [65535, 0], "winks and whispers": [65535, 0], "and whispers traversed": [65535, 0], "whispers traversed the": [65535, 0], "traversed the room": [65535, 0], "the room but": [65535, 0], "room but tom": [65535, 0], "but tom sat": [65535, 0], "tom sat still": [65535, 0], "sat still with": [65535, 0], "still with his": [65535, 0], "with his arms": [65535, 0], "his arms upon": [65535, 0], "arms upon the": [65535, 0], "upon the long": [65535, 0], "the long low": [65535, 0], "long low desk": [65535, 0], "low desk before": [65535, 0], "desk before him": [65535, 0], "before him and": [65535, 0], "him and seemed": [65535, 0], "and seemed to": [65535, 0], "seemed to study": [65535, 0], "to study his": [65535, 0], "study his book": [65535, 0], "his book by": [65535, 0], "book by and": [65535, 0], "and by attention": [65535, 0], "by attention ceased": [65535, 0], "attention ceased from": [65535, 0], "ceased from him": [65535, 0], "from him and": [65535, 0], "him and the": [32706, 32829], "and the accustomed": [65535, 0], "the accustomed school": [65535, 0], "accustomed school murmur": [65535, 0], "school murmur rose": [65535, 0], "murmur rose upon": [65535, 0], "rose upon the": [65535, 0], "upon the dull": [65535, 0], "the dull air": [65535, 0], "dull air once": [65535, 0], "air once more": [65535, 0], "once more presently": [65535, 0], "more presently the": [65535, 0], "presently the boy": [65535, 0], "the boy began": [65535, 0], "boy began to": [65535, 0], "began to steal": [65535, 0], "to steal furtive": [65535, 0], "steal furtive glances": [65535, 0], "furtive glances at": [65535, 0], "glances at the": [65535, 0], "at the girl": [65535, 0], "the girl she": [65535, 0], "girl she observed": [65535, 0], "she observed it": [65535, 0], "observed it made": [65535, 0], "it made a": [65535, 0], "made a mouth": [65535, 0], "a mouth at": [65535, 0], "mouth at him": [65535, 0], "at him and": [65535, 0], "him and gave": [65535, 0], "and gave him": [65535, 0], "gave him the": [65535, 0], "him the back": [65535, 0], "back of her": [65535, 0], "her head for": [65535, 0], "head for the": [65535, 0], "for the space": [65535, 0], "the space of": [65535, 0], "space of a": [65535, 0], "of a minute": [65535, 0], "a minute when": [65535, 0], "minute when she": [65535, 0], "when she cautiously": [65535, 0], "she cautiously faced": [65535, 0], "cautiously faced around": [65535, 0], "faced around again": [65535, 0], "around again a": [65535, 0], "again a peach": [65535, 0], "a peach lay": [65535, 0], "peach lay before": [65535, 0], "lay before her": [65535, 0], "before her she": [65535, 0], "her she thrust": [65535, 0], "she thrust it": [65535, 0], "thrust it away": [65535, 0], "it away tom": [65535, 0], "away tom gently": [65535, 0], "tom gently put": [65535, 0], "gently put it": [65535, 0], "put it back": [65535, 0], "it back she": [65535, 0], "back she thrust": [65535, 0], "it away again": [65535, 0], "away again but": [65535, 0], "again but with": [65535, 0], "but with less": [65535, 0], "with less animosity": [65535, 0], "less animosity tom": [65535, 0], "animosity tom patiently": [65535, 0], "tom patiently returned": [65535, 0], "patiently returned it": [65535, 0], "returned it to": [65535, 0], "it to its": [65535, 0], "to its place": [65535, 0], "its place then": [65535, 0], "place then she": [65535, 0], "then she let": [65535, 0], "she let it": [65535, 0], "let it remain": [65535, 0], "it remain tom": [65535, 0], "remain tom scrawled": [65535, 0], "tom scrawled on": [65535, 0], "scrawled on his": [65535, 0], "on his slate": [65535, 0], "his slate please": [65535, 0], "slate please take": [65535, 0], "please take it": [65535, 0], "take it i": [65535, 0], "it i got": [65535, 0], "i got more": [65535, 0], "got more the": [65535, 0], "more the girl": [65535, 0], "the girl glanced": [65535, 0], "girl glanced at": [65535, 0], "glanced at the": [65535, 0], "at the words": [65535, 0], "the words but": [65535, 0], "words but made": [65535, 0], "but made no": [65535, 0], "made no sign": [65535, 0], "no sign now": [65535, 0], "sign now the": [65535, 0], "now the boy": [65535, 0], "began to draw": [65535, 0], "to draw something": [65535, 0], "draw something on": [65535, 0], "something on the": [65535, 0], "on the slate": [65535, 0], "the slate hiding": [65535, 0], "slate hiding his": [65535, 0], "hiding his work": [65535, 0], "his work with": [65535, 0], "work with his": [65535, 0], "with his left": [65535, 0], "his left hand": [65535, 0], "left hand for": [65535, 0], "hand for a": [65535, 0], "for a time": [65535, 0], "a time the": [65535, 0], "time the girl": [65535, 0], "the girl refused": [65535, 0], "girl refused to": [65535, 0], "refused to notice": [65535, 0], "to notice but": [65535, 0], "notice but her": [65535, 0], "but her human": [65535, 0], "her human curiosity": [65535, 0], "human curiosity presently": [65535, 0], "curiosity presently began": [65535, 0], "presently began to": [65535, 0], "began to manifest": [65535, 0], "to manifest itself": [65535, 0], "manifest itself by": [65535, 0], "itself by hardly": [65535, 0], "by hardly perceptible": [65535, 0], "hardly perceptible signs": [65535, 0], "perceptible signs the": [65535, 0], "signs the boy": [65535, 0], "the boy worked": [65535, 0], "boy worked on": [65535, 0], "worked on apparently": [65535, 0], "on apparently unconscious": [65535, 0], "apparently unconscious the": [65535, 0], "unconscious the girl": [65535, 0], "the girl made": [65535, 0], "girl made a": [65535, 0], "made a sort": [65535, 0], "a sort of": [65535, 0], "sort of noncommittal": [65535, 0], "of noncommittal attempt": [65535, 0], "noncommittal attempt to": [65535, 0], "attempt to see": [65535, 0], "to see but": [65535, 0], "see but the": [65535, 0], "but the boy": [65535, 0], "the boy did": [65535, 0], "boy did not": [65535, 0], "did not betray": [65535, 0], "not betray that": [65535, 0], "betray that he": [65535, 0], "that he was": [32706, 32829], "he was aware": [65535, 0], "was aware of": [65535, 0], "aware of it": [65535, 0], "of it at": [65535, 0], "it at last": [65535, 0], "at last she": [65535, 0], "last she gave": [65535, 0], "she gave in": [65535, 0], "gave in and": [65535, 0], "in and hesitatingly": [65535, 0], "and hesitatingly whispered": [65535, 0], "hesitatingly whispered let": [65535, 0], "whispered let me": [65535, 0], "let me see": [32706, 32829], "me see it": [32706, 32829], "it tom partly": [65535, 0], "tom partly uncovered": [65535, 0], "partly uncovered a": [65535, 0], "uncovered a dismal": [65535, 0], "a dismal caricature": [65535, 0], "dismal caricature of": [65535, 0], "caricature of a": [65535, 0], "of a house": [65535, 0], "a house with": [65535, 0], "house with two": [65535, 0], "with two gable": [65535, 0], "two gable ends": [65535, 0], "gable ends to": [65535, 0], "ends to it": [65535, 0], "it and a": [65535, 0], "and a corkscrew": [65535, 0], "a corkscrew of": [65535, 0], "corkscrew of smoke": [65535, 0], "of smoke issuing": [65535, 0], "smoke issuing from": [65535, 0], "issuing from the": [65535, 0], "from the chimney": [65535, 0], "the chimney then": [65535, 0], "chimney then the": [65535, 0], "then the girl's": [65535, 0], "the girl's interest": [65535, 0], "girl's interest began": [65535, 0], "interest began to": [65535, 0], "began to fasten": [65535, 0], "to fasten itself": [65535, 0], "fasten itself upon": [65535, 0], "itself upon the": [65535, 0], "upon the work": [65535, 0], "the work and": [65535, 0], "work and she": [65535, 0], "and she forgot": [65535, 0], "she forgot everything": [65535, 0], "forgot everything else": [65535, 0], "everything else when": [65535, 0], "else when it": [65535, 0], "when it was": [65535, 0], "it was finished": [65535, 0], "was finished she": [65535, 0], "finished she gazed": [65535, 0], "she gazed a": [65535, 0], "gazed a moment": [65535, 0], "a moment then": [65535, 0], "moment then whispered": [65535, 0], "then whispered it's": [65535, 0], "whispered it's nice": [65535, 0], "it's nice make": [65535, 0], "nice make a": [65535, 0], "make a man": [43635, 21900], "a man the": [65535, 0], "man the artist": [65535, 0], "the artist erected": [65535, 0], "artist erected a": [65535, 0], "erected a man": [65535, 0], "a man in": [65535, 0], "man in the": [65535, 0], "in the front": [65535, 0], "the front yard": [65535, 0], "front yard that": [65535, 0], "yard that resembled": [65535, 0], "that resembled a": [65535, 0], "resembled a derrick": [65535, 0], "a derrick he": [65535, 0], "derrick he could": [65535, 0], "he could have": [65535, 0], "could have stepped": [65535, 0], "have stepped over": [65535, 0], "stepped over the": [65535, 0], "over the house": [65535, 0], "the house but": [65535, 0], "house but the": [65535, 0], "but the girl": [65535, 0], "the girl was": [65535, 0], "girl was not": [65535, 0], "was not hypercritical": [65535, 0], "not hypercritical she": [65535, 0], "hypercritical she was": [65535, 0], "she was satisfied": [65535, 0], "was satisfied with": [65535, 0], "satisfied with the": [65535, 0], "with the monster": [65535, 0], "the monster and": [65535, 0], "monster and whispered": [65535, 0], "and whispered it's": [65535, 0], "whispered it's a": [65535, 0], "it's a beautiful": [65535, 0], "a beautiful man": [65535, 0], "beautiful man now": [65535, 0], "man now make": [65535, 0], "now make me": [65535, 0], "make me coming": [65535, 0], "me coming along": [65535, 0], "coming along tom": [65535, 0], "along tom drew": [65535, 0], "tom drew an": [65535, 0], "drew an hour": [65535, 0], "an hour glass": [65535, 0], "hour glass with": [65535, 0], "glass with a": [65535, 0], "with a full": [65535, 0], "a full moon": [65535, 0], "full moon and": [65535, 0], "moon and straw": [65535, 0], "and straw limbs": [65535, 0], "straw limbs to": [65535, 0], "limbs to it": [65535, 0], "it and armed": [65535, 0], "and armed the": [65535, 0], "armed the spreading": [65535, 0], "the spreading fingers": [65535, 0], "spreading fingers with": [65535, 0], "fingers with a": [65535, 0], "with a portentous": [65535, 0], "a portentous fan": [65535, 0], "portentous fan the": [65535, 0], "fan the girl": [65535, 0], "the girl said": [65535, 0], "girl said it's": [65535, 0], "said it's ever": [65535, 0], "it's ever so": [65535, 0], "ever so nice": [65535, 0], "so nice i": [65535, 0], "nice i wish": [65535, 0], "wish i could": [65535, 0], "i could draw": [65535, 0], "could draw it's": [65535, 0], "draw it's easy": [65535, 0], "it's easy whispered": [65535, 0], "easy whispered tom": [65535, 0], "whispered tom i'll": [65535, 0], "tom i'll learn": [65535, 0], "i'll learn you": [65535, 0], "learn you oh": [65535, 0], "you oh will": [65535, 0], "oh will you": [65535, 0], "will you when": [65535, 0], "you when at": [65535, 0], "when at noon": [65535, 0], "at noon do": [65535, 0], "noon do you": [65535, 0], "do you go": [65535, 0], "you go home": [65535, 0], "go home to": [65535, 0], "home to dinner": [10888, 54647], "to dinner i'll": [65535, 0], "dinner i'll stay": [65535, 0], "i'll stay if": [65535, 0], "stay if you": [65535, 0], "if you will": [43635, 21900], "you will good": [65535, 0], "will good that's": [65535, 0], "good that's a": [65535, 0], "that's a whack": [65535, 0], "a whack what's": [65535, 0], "whack what's your": [65535, 0], "what's your name": [65535, 0], "your name becky": [65535, 0], "name becky thatcher": [65535, 0], "becky thatcher what's": [65535, 0], "thatcher what's yours": [65535, 0], "what's yours oh": [65535, 0], "yours oh i": [65535, 0], "oh i know": [65535, 0], "i know it's": [65535, 0], "know it's thomas": [65535, 0], "it's thomas sawyer": [65535, 0], "thomas sawyer that's": [65535, 0], "sawyer that's the": [65535, 0], "that's the name": [65535, 0], "the name they": [65535, 0], "name they lick": [65535, 0], "they lick me": [65535, 0], "lick me by": [65535, 0], "me by i'm": [65535, 0], "by i'm tom": [65535, 0], "i'm tom when": [65535, 0], "tom when i'm": [65535, 0], "when i'm good": [65535, 0], "i'm good you": [65535, 0], "good you call": [65535, 0], "you call me": [65535, 0], "call me tom": [65535, 0], "me tom will": [65535, 0], "tom will you": [65535, 0], "will you yes": [65535, 0], "you yes now": [65535, 0], "yes now tom": [65535, 0], "now tom began": [65535, 0], "began to scrawl": [65535, 0], "to scrawl something": [65535, 0], "scrawl something on": [65535, 0], "slate hiding the": [65535, 0], "hiding the words": [65535, 0], "the words from": [65535, 0], "words from the": [65535, 0], "from the girl": [65535, 0], "the girl but": [65535, 0], "girl but she": [65535, 0], "but she was": [65535, 0], "she was not": [65535, 0], "was not backward": [65535, 0], "not backward this": [65535, 0], "backward this time": [65535, 0], "this time she": [65535, 0], "time she begged": [65535, 0], "she begged to": [65535, 0], "begged to see": [65535, 0], "to see tom": [65535, 0], "see tom said": [65535, 0], "said oh it": [65535, 0], "oh it ain't": [65535, 0], "it ain't anything": [65535, 0], "ain't anything yes": [65535, 0], "anything yes it": [65535, 0], "yes it is": [65535, 0], "it is no": [32706, 32829], "is no it": [65535, 0], "no it ain't": [65535, 0], "it ain't you": [65535, 0], "ain't you don't": [65535, 0], "you don't want": [65535, 0], "want to see": [65535, 0], "to see yes": [65535, 0], "see yes i": [65535, 0], "yes i do": [65535, 0], "i do indeed": [65535, 0], "do indeed i": [65535, 0], "indeed i do": [65535, 0], "i do please": [65535, 0], "do please let": [65535, 0], "please let me": [65535, 0], "let me you'll": [65535, 0], "me you'll tell": [65535, 0], "you'll tell no": [65535, 0], "tell no i": [65535, 0], "no i won't": [65535, 0], "i won't deed": [65535, 0], "won't deed and": [65535, 0], "deed and deed": [65535, 0], "and deed and": [65535, 0], "deed and double": [65535, 0], "and double deed": [65535, 0], "double deed won't": [65535, 0], "deed won't you": [65535, 0], "won't you won't": [65535, 0], "you won't tell": [65535, 0], "won't tell anybody": [65535, 0], "tell anybody at": [65535, 0], "anybody at all": [65535, 0], "at all ever": [65535, 0], "all ever as": [65535, 0], "ever as long": [65535, 0], "long as you": [65535, 0], "as you live": [65535, 0], "you live no": [65535, 0], "live no i": [65535, 0], "i won't ever": [65535, 0], "won't ever tell": [65535, 0], "ever tell anybody": [65535, 0], "tell anybody now": [65535, 0], "anybody now let": [65535, 0], "now let me": [65535, 0], "let me oh": [65535, 0], "me oh you": [65535, 0], "to see now": [65535, 0], "see now that": [65535, 0], "now that you": [65535, 0], "that you treat": [65535, 0], "you treat me": [65535, 0], "treat me so": [65535, 0], "me so i": [65535, 0], "so i will": [32706, 32829], "i will see": [65535, 0], "will see and": [65535, 0], "see and she": [65535, 0], "and she put": [65535, 0], "she put her": [65535, 0], "put her small": [65535, 0], "her small hand": [65535, 0], "small hand upon": [65535, 0], "hand upon his": [65535, 0], "upon his and": [65535, 0], "his and a": [65535, 0], "a little scuffle": [65535, 0], "little scuffle ensued": [65535, 0], "scuffle ensued tom": [65535, 0], "ensued tom pretending": [65535, 0], "tom pretending to": [65535, 0], "pretending to resist": [65535, 0], "to resist in": [65535, 0], "resist in earnest": [65535, 0], "in earnest but": [65535, 0], "earnest but letting": [65535, 0], "but letting his": [65535, 0], "letting his hand": [65535, 0], "his hand slip": [65535, 0], "hand slip by": [65535, 0], "slip by degrees": [65535, 0], "by degrees till": [65535, 0], "degrees till these": [65535, 0], "till these words": [65535, 0], "these words were": [65535, 0], "words were revealed": [65535, 0], "were revealed i": [65535, 0], "revealed i love": [65535, 0], "love you oh": [65535, 0], "you oh you": [65535, 0], "oh you bad": [65535, 0], "you bad thing": [65535, 0], "bad thing and": [65535, 0], "thing and she": [65535, 0], "and she hit": [65535, 0], "she hit his": [65535, 0], "hit his hand": [65535, 0], "his hand a": [65535, 0], "hand a smart": [65535, 0], "a smart rap": [65535, 0], "smart rap but": [65535, 0], "rap but reddened": [65535, 0], "but reddened and": [65535, 0], "reddened and looked": [65535, 0], "and looked pleased": [65535, 0], "looked pleased nevertheless": [65535, 0], "pleased nevertheless just": [65535, 0], "nevertheless just at": [65535, 0], "just at this": [65535, 0], "at this juncture": [65535, 0], "this juncture the": [65535, 0], "juncture the boy": [65535, 0], "felt a slow": [65535, 0], "a slow fateful": [65535, 0], "slow fateful grip": [65535, 0], "fateful grip closing": [65535, 0], "grip closing on": [65535, 0], "closing on his": [65535, 0], "on his ear": [65535, 0], "his ear and": [65535, 0], "ear and a": [65535, 0], "and a steady": [65535, 0], "a steady lifting": [65535, 0], "steady lifting impulse": [65535, 0], "lifting impulse in": [65535, 0], "impulse in that": [65535, 0], "in that vise": [65535, 0], "that vise he": [65535, 0], "vise he was": [65535, 0], "he was borne": [65535, 0], "was borne across": [65535, 0], "borne across the": [65535, 0], "across the house": [65535, 0], "house and deposited": [65535, 0], "and deposited in": [65535, 0], "deposited in his": [65535, 0], "in his own": [65535, 0], "his own seat": [65535, 0], "own seat under": [65535, 0], "seat under a": [65535, 0], "under a peppering": [65535, 0], "a peppering fire": [65535, 0], "peppering fire of": [65535, 0], "fire of giggles": [65535, 0], "of giggles from": [65535, 0], "giggles from the": [65535, 0], "from the whole": [65535, 0], "the whole school": [65535, 0], "whole school then": [65535, 0], "school then the": [65535, 0], "then the master": [65535, 0], "the master stood": [65535, 0], "master stood over": [65535, 0], "stood over him": [65535, 0], "over him during": [65535, 0], "him during a": [65535, 0], "during a few": [65535, 0], "a few awful": [65535, 0], "few awful moments": [65535, 0], "awful moments and": [65535, 0], "moments and finally": [65535, 0], "and finally moved": [65535, 0], "finally moved away": [65535, 0], "moved away to": [65535, 0], "away to his": [65535, 0], "to his throne": [65535, 0], "his throne without": [65535, 0], "throne without saying": [65535, 0], "without saying a": [65535, 0], "saying a word": [65535, 0], "a word but": [65535, 0], "word but although": [65535, 0], "but although tom's": [65535, 0], "although tom's ear": [65535, 0], "tom's ear tingled": [65535, 0], "ear tingled his": [65535, 0], "tingled his heart": [65535, 0], "heart was jubilant": [65535, 0], "was jubilant as": [65535, 0], "jubilant as the": [65535, 0], "as the school": [65535, 0], "the school quieted": [65535, 0], "school quieted down": [65535, 0], "quieted down tom": [65535, 0], "down tom made": [65535, 0], "tom made an": [65535, 0], "made an honest": [65535, 0], "an honest effort": [65535, 0], "honest effort to": [65535, 0], "effort to study": [65535, 0], "to study but": [65535, 0], "study but the": [65535, 0], "but the turmoil": [65535, 0], "the turmoil within": [65535, 0], "turmoil within him": [65535, 0], "within him was": [65535, 0], "him was too": [65535, 0], "was too great": [65535, 0], "too great in": [65535, 0], "great in turn": [65535, 0], "in turn he": [65535, 0], "turn he took": [65535, 0], "he took his": [65535, 0], "took his place": [65535, 0], "his place in": [65535, 0], "place in the": [65535, 0], "in the reading": [65535, 0], "the reading class": [65535, 0], "reading class and": [65535, 0], "class and made": [65535, 0], "made a botch": [65535, 0], "a botch of": [65535, 0], "botch of it": [65535, 0], "of it then": [65535, 0], "it then in": [65535, 0], "then in the": [65535, 0], "in the geography": [65535, 0], "the geography class": [65535, 0], "geography class and": [65535, 0], "class and turned": [65535, 0], "and turned lakes": [65535, 0], "turned lakes into": [65535, 0], "lakes into mountains": [65535, 0], "into mountains mountains": [65535, 0], "mountains mountains into": [65535, 0], "mountains into rivers": [65535, 0], "into rivers and": [65535, 0], "rivers and rivers": [65535, 0], "and rivers into": [65535, 0], "rivers into continents": [65535, 0], "into continents till": [65535, 0], "continents till chaos": [65535, 0], "till chaos was": [65535, 0], "chaos was come": [65535, 0], "was come again": [65535, 0], "come again then": [65535, 0], "again then in": [65535, 0], "in the spelling": [65535, 0], "the spelling class": [65535, 0], "spelling class and": [65535, 0], "class and got": [65535, 0], "and got turned": [65535, 0], "got turned down": [65535, 0], "turned down by": [65535, 0], "down by a": [65535, 0], "by a succession": [65535, 0], "succession of mere": [65535, 0], "of mere baby": [65535, 0], "mere baby words": [65535, 0], "baby words till": [65535, 0], "words till he": [65535, 0], "till he brought": [65535, 0], "he brought up": [65535, 0], "brought up at": [65535, 0], "up at the": [65535, 0], "at the foot": [65535, 0], "the foot and": [65535, 0], "foot and yielded": [65535, 0], "and yielded up": [65535, 0], "yielded up the": [65535, 0], "up the pewter": [65535, 0], "the pewter medal": [65535, 0], "pewter medal which": [65535, 0], "medal which he": [65535, 0], "which he had": [65535, 0], "he had worn": [65535, 0], "had worn with": [65535, 0], "worn with ostentation": [65535, 0], "with ostentation for": [65535, 0], "ostentation for months": [65535, 0], "monday morning found tom": [65535, 0], "morning found tom sawyer": [65535, 0], "found tom sawyer miserable": [65535, 0], "tom sawyer miserable monday": [65535, 0], "sawyer miserable monday morning": [65535, 0], "miserable monday morning always": [65535, 0], "monday morning always found": [65535, 0], "morning always found him": [65535, 0], "always found him so": [65535, 0], "found him so because": [65535, 0], "him so because it": [65535, 0], "so because it began": [65535, 0], "because it began another": [65535, 0], "it began another week's": [65535, 0], "began another week's slow": [65535, 0], "another week's slow suffering": [65535, 0], "week's slow suffering in": [65535, 0], "slow suffering in school": [65535, 0], "suffering in school he": [65535, 0], "in school he generally": [65535, 0], "school he generally began": [65535, 0], "he generally began that": [65535, 0], "generally began that day": [65535, 0], "began that day with": [65535, 0], "that day with wishing": [65535, 0], "day with wishing he": [65535, 0], "with wishing he had": [65535, 0], "wishing he had had": [65535, 0], "he had had no": [65535, 0], "had had no intervening": [65535, 0], "had no intervening holiday": [65535, 0], "no intervening holiday it": [65535, 0], "intervening holiday it made": [65535, 0], "holiday it made the": [65535, 0], "it made the going": [65535, 0], "made the going into": [65535, 0], "the going into captivity": [65535, 0], "going into captivity and": [65535, 0], "into captivity and fetters": [65535, 0], "captivity and fetters again": [65535, 0], "and fetters again so": [65535, 0], "fetters again so much": [65535, 0], "again so much more": [65535, 0], "so much more odious": [65535, 0], "much more odious tom": [65535, 0], "more odious tom lay": [65535, 0], "odious tom lay thinking": [65535, 0], "tom lay thinking presently": [65535, 0], "lay thinking presently it": [65535, 0], "thinking presently it occurred": [65535, 0], "presently it occurred to": [65535, 0], "it occurred to him": [65535, 0], "occurred to him that": [65535, 0], "to him that he": [65535, 0], "him that he wished": [65535, 0], "he wished he was": [65535, 0], "wished he was sick": [65535, 0], "he was sick then": [65535, 0], "was sick then he": [65535, 0], "sick then he could": [65535, 0], "then he could stay": [65535, 0], "he could stay home": [65535, 0], "could stay home from": [65535, 0], "stay home from school": [65535, 0], "home from school here": [65535, 0], "from school here was": [65535, 0], "school here was a": [65535, 0], "here was a vague": [65535, 0], "was a vague possibility": [65535, 0], "a vague possibility he": [65535, 0], "vague possibility he canvassed": [65535, 0], "possibility he canvassed his": [65535, 0], "he canvassed his system": [65535, 0], "canvassed his system no": [65535, 0], "his system no ailment": [65535, 0], "system no ailment was": [65535, 0], "no ailment was found": [65535, 0], "ailment was found and": [65535, 0], "was found and he": [65535, 0], "found and he investigated": [65535, 0], "and he investigated again": [65535, 0], "he investigated again this": [65535, 0], "investigated again this time": [65535, 0], "again this time he": [65535, 0], "this time he thought": [65535, 0], "time he thought he": [65535, 0], "he thought he could": [65535, 0], "thought he could detect": [65535, 0], "he could detect colicky": [65535, 0], "could detect colicky symptoms": [65535, 0], "detect colicky symptoms and": [65535, 0], "colicky symptoms and he": [65535, 0], "symptoms and he began": [65535, 0], "and he began to": [65535, 0], "he began to encourage": [65535, 0], "began to encourage them": [65535, 0], "to encourage them with": [65535, 0], "encourage them with considerable": [65535, 0], "them with considerable hope": [65535, 0], "with considerable hope but": [65535, 0], "considerable hope but they": [65535, 0], "hope but they soon": [65535, 0], "but they soon grew": [65535, 0], "they soon grew feeble": [65535, 0], "soon grew feeble and": [65535, 0], "grew feeble and presently": [65535, 0], "feeble and presently died": [65535, 0], "and presently died wholly": [65535, 0], "presently died wholly away": [65535, 0], "died wholly away he": [65535, 0], "wholly away he reflected": [65535, 0], "away he reflected further": [65535, 0], "he reflected further suddenly": [65535, 0], "reflected further suddenly he": [65535, 0], "further suddenly he discovered": [65535, 0], "suddenly he discovered something": [65535, 0], "he discovered something one": [65535, 0], "discovered something one of": [65535, 0], "something one of his": [65535, 0], "one of his upper": [65535, 0], "of his upper front": [65535, 0], "his upper front teeth": [65535, 0], "upper front teeth was": [65535, 0], "front teeth was loose": [65535, 0], "teeth was loose this": [65535, 0], "was loose this was": [65535, 0], "loose this was lucky": [65535, 0], "this was lucky he": [65535, 0], "was lucky he was": [65535, 0], "lucky he was about": [65535, 0], "was about to begin": [65535, 0], "about to begin to": [65535, 0], "to begin to groan": [65535, 0], "begin to groan as": [65535, 0], "to groan as a": [65535, 0], "groan as a starter": [65535, 0], "as a starter as": [65535, 0], "a starter as he": [65535, 0], "starter as he called": [65535, 0], "as he called it": [65535, 0], "he called it when": [65535, 0], "called it when it": [65535, 0], "it when it occurred": [65535, 0], "when it occurred to": [65535, 0], "to him that if": [65535, 0], "him that if he": [65535, 0], "that if he came": [65535, 0], "if he came into": [65535, 0], "he came into court": [65535, 0], "came into court with": [65535, 0], "into court with that": [65535, 0], "court with that argument": [65535, 0], "with that argument his": [65535, 0], "that argument his aunt": [65535, 0], "argument his aunt would": [65535, 0], "his aunt would pull": [65535, 0], "aunt would pull it": [65535, 0], "would pull it out": [65535, 0], "pull it out and": [65535, 0], "it out and that": [65535, 0], "out and that would": [65535, 0], "and that would hurt": [65535, 0], "that would hurt so": [65535, 0], "would hurt so he": [65535, 0], "hurt so he thought": [65535, 0], "so he thought he": [65535, 0], "he thought he would": [65535, 0], "thought he would hold": [65535, 0], "he would hold the": [65535, 0], "would hold the tooth": [65535, 0], "hold the tooth in": [65535, 0], "the tooth in reserve": [65535, 0], "tooth in reserve for": [65535, 0], "in reserve for the": [65535, 0], "reserve for the present": [65535, 0], "for the present and": [65535, 0], "the present and seek": [65535, 0], "present and seek further": [65535, 0], "and seek further nothing": [65535, 0], "seek further nothing offered": [65535, 0], "further nothing offered for": [65535, 0], "nothing offered for some": [65535, 0], "offered for some little": [65535, 0], "for some little time": [65535, 0], "some little time and": [65535, 0], "little time and then": [65535, 0], "time and then he": [65535, 0], "and then he remembered": [65535, 0], "then he remembered hearing": [65535, 0], "he remembered hearing the": [65535, 0], "remembered hearing the doctor": [65535, 0], "hearing the doctor tell": [65535, 0], "the doctor tell about": [65535, 0], "doctor tell about a": [65535, 0], "tell about a certain": [65535, 0], "about a certain thing": [65535, 0], "a certain thing that": [65535, 0], "certain thing that laid": [65535, 0], "thing that laid up": [65535, 0], "that laid up a": [65535, 0], "laid up a patient": [65535, 0], "up a patient for": [65535, 0], "a patient for two": [65535, 0], "patient for two or": [65535, 0], "for two or three": [65535, 0], "two or three weeks": [65535, 0], "or three weeks and": [65535, 0], "three weeks and threatened": [65535, 0], "weeks and threatened to": [65535, 0], "and threatened to make": [65535, 0], "threatened to make him": [65535, 0], "to make him lose": [65535, 0], "make him lose a": [65535, 0], "him lose a finger": [65535, 0], "lose a finger so": [65535, 0], "a finger so the": [65535, 0], "finger so the boy": [65535, 0], "so the boy eagerly": [65535, 0], "the boy eagerly drew": [65535, 0], "boy eagerly drew his": [65535, 0], "eagerly drew his sore": [65535, 0], "drew his sore toe": [65535, 0], "his sore toe from": [65535, 0], "sore toe from under": [65535, 0], "toe from under the": [65535, 0], "from under the sheet": [65535, 0], "under the sheet and": [65535, 0], "the sheet and held": [65535, 0], "sheet and held it": [65535, 0], "and held it up": [65535, 0], "held it up for": [65535, 0], "it up for inspection": [65535, 0], "up for inspection but": [65535, 0], "for inspection but now": [65535, 0], "inspection but now he": [65535, 0], "but now he did": [65535, 0], "now he did not": [65535, 0], "he did not know": [65535, 0], "did not know the": [65535, 0], "not know the necessary": [65535, 0], "know the necessary symptoms": [65535, 0], "the necessary symptoms however": [65535, 0], "necessary symptoms however it": [65535, 0], "symptoms however it seemed": [65535, 0], "however it seemed well": [65535, 0], "it seemed well worth": [65535, 0], "seemed well worth while": [65535, 0], "well worth while to": [65535, 0], "worth while to chance": [65535, 0], "while to chance it": [65535, 0], "to chance it so": [65535, 0], "chance it so he": [65535, 0], "it so he fell": [65535, 0], "so he fell to": [65535, 0], "he fell to groaning": [65535, 0], "fell to groaning with": [65535, 0], "to groaning with considerable": [65535, 0], "groaning with considerable spirit": [65535, 0], "with considerable spirit but": [65535, 0], "considerable spirit but sid": [65535, 0], "spirit but sid slept": [65535, 0], "but sid slept on": [65535, 0], "sid slept on unconscious": [65535, 0], "slept on unconscious tom": [65535, 0], "on unconscious tom groaned": [65535, 0], "unconscious tom groaned louder": [65535, 0], "tom groaned louder and": [65535, 0], "groaned louder and fancied": [65535, 0], "louder and fancied that": [65535, 0], "and fancied that he": [65535, 0], "fancied that he began": [65535, 0], "that he began to": [65535, 0], "he began to feel": [65535, 0], "began to feel pain": [65535, 0], "to feel pain in": [65535, 0], "feel pain in the": [65535, 0], "pain in the toe": [65535, 0], "in the toe no": [65535, 0], "the toe no result": [65535, 0], "toe no result from": [65535, 0], "no result from sid": [65535, 0], "result from sid tom": [65535, 0], "from sid tom was": [65535, 0], "sid tom was panting": [65535, 0], "tom was panting with": [65535, 0], "was panting with his": [65535, 0], "panting with his exertions": [65535, 0], "with his exertions by": [65535, 0], "his exertions by this": [65535, 0], "exertions by this time": [65535, 0], "by this time he": [65535, 0], "this time he took": [65535, 0], "time he took a": [65535, 0], "he took a rest": [65535, 0], "took a rest and": [65535, 0], "a rest and then": [65535, 0], "rest and then swelled": [65535, 0], "and then swelled himself": [65535, 0], "then swelled himself up": [65535, 0], "swelled himself up and": [65535, 0], "himself up and fetched": [65535, 0], "up and fetched a": [65535, 0], "and fetched a succession": [65535, 0], "fetched a succession of": [65535, 0], "a succession of admirable": [65535, 0], "succession of admirable groans": [65535, 0], "of admirable groans sid": [65535, 0], "admirable groans sid snored": [65535, 0], "groans sid snored on": [65535, 0], "sid snored on tom": [65535, 0], "snored on tom was": [65535, 0], "on tom was aggravated": [65535, 0], "tom was aggravated he": [65535, 0], "was aggravated he said": [65535, 0], "aggravated he said sid": [65535, 0], "he said sid sid": [65535, 0], "said sid sid and": [65535, 0], "sid sid and shook": [65535, 0], "sid and shook him": [65535, 0], "and shook him this": [65535, 0], "shook him this course": [65535, 0], "him this course worked": [65535, 0], "this course worked well": [65535, 0], "course worked well and": [65535, 0], "worked well and tom": [65535, 0], "well and tom began": [65535, 0], "and tom began to": [65535, 0], "tom began to groan": [65535, 0], "began to groan again": [65535, 0], "to groan again sid": [65535, 0], "groan again sid yawned": [65535, 0], "again sid yawned stretched": [65535, 0], "sid yawned stretched then": [65535, 0], "yawned stretched then brought": [65535, 0], "stretched then brought himself": [65535, 0], "then brought himself up": [65535, 0], "brought himself up on": [65535, 0], "himself up on his": [65535, 0], "up on his elbow": [65535, 0], "on his elbow with": [65535, 0], "his elbow with a": [65535, 0], "elbow with a snort": [65535, 0], "with a snort and": [65535, 0], "a snort and began": [65535, 0], "snort and began to": [65535, 0], "and began to stare": [65535, 0], "began to stare at": [65535, 0], "to stare at tom": [65535, 0], "stare at tom tom": [65535, 0], "at tom tom went": [65535, 0], "tom tom went on": [65535, 0], "tom went on groaning": [65535, 0], "went on groaning sid": [65535, 0], "on groaning sid said": [65535, 0], "groaning sid said tom": [65535, 0], "sid said tom say": [65535, 0], "said tom say tom": [65535, 0], "tom say tom no": [65535, 0], "say tom no response": [65535, 0], "tom no response here": [65535, 0], "no response here tom": [65535, 0], "response here tom tom": [65535, 0], "here tom tom what": [65535, 0], "tom tom what is": [65535, 0], "tom what is the": [65535, 0], "what is the matter": [49105, 16430], "is the matter tom": [65535, 0], "the matter tom and": [65535, 0], "matter tom and he": [65535, 0], "tom and he shook": [65535, 0], "and he shook him": [65535, 0], "he shook him and": [65535, 0], "shook him and looked": [65535, 0], "him and looked in": [65535, 0], "and looked in his": [65535, 0], "looked in his face": [65535, 0], "in his face anxiously": [65535, 0], "his face anxiously tom": [65535, 0], "face anxiously tom moaned": [65535, 0], "anxiously tom moaned out": [65535, 0], "tom moaned out oh": [65535, 0], "moaned out oh don't": [65535, 0], "out oh don't sid": [65535, 0], "oh don't sid don't": [65535, 0], "don't sid don't joggle": [65535, 0], "sid don't joggle me": [65535, 0], "don't joggle me why": [65535, 0], "joggle me why what's": [65535, 0], "me why what's the": [65535, 0], "why what's the matter": [65535, 0], "what's the matter tom": [65535, 0], "the matter tom i": [65535, 0], "matter tom i must": [65535, 0], "tom i must call": [65535, 0], "i must call auntie": [65535, 0], "must call auntie no": [65535, 0], "call auntie no never": [65535, 0], "auntie no never mind": [65535, 0], "no never mind it'll": [65535, 0], "never mind it'll be": [65535, 0], "mind it'll be over": [65535, 0], "it'll be over by": [65535, 0], "be over by and": [65535, 0], "over by and by": [65535, 0], "by and by maybe": [65535, 0], "and by maybe don't": [65535, 0], "by maybe don't call": [65535, 0], "maybe don't call anybody": [65535, 0], "don't call anybody but": [65535, 0], "call anybody but i": [65535, 0], "anybody but i must": [65535, 0], "but i must don't": [65535, 0], "i must don't groan": [65535, 0], "must don't groan so": [65535, 0], "don't groan so tom": [65535, 0], "groan so tom it's": [65535, 0], "so tom it's awful": [65535, 0], "tom it's awful how": [65535, 0], "it's awful how long": [65535, 0], "awful how long you": [65535, 0], "how long you been": [65535, 0], "long you been this": [65535, 0], "you been this way": [65535, 0], "been this way hours": [65535, 0], "this way hours ouch": [65535, 0], "way hours ouch oh": [65535, 0], "hours ouch oh don't": [65535, 0], "ouch oh don't stir": [65535, 0], "oh don't stir so": [65535, 0], "don't stir so sid": [65535, 0], "stir so sid you'll": [65535, 0], "so sid you'll kill": [65535, 0], "sid you'll kill me": [65535, 0], "you'll kill me tom": [65535, 0], "kill me tom why": [65535, 0], "me tom why didn't": [65535, 0], "tom why didn't you": [65535, 0], "why didn't you wake": [65535, 0], "didn't you wake me": [65535, 0], "you wake me sooner": [65535, 0], "wake me sooner oh": [65535, 0], "me sooner oh tom": [65535, 0], "sooner oh tom don't": [65535, 0], "oh tom don't it": [65535, 0], "tom don't it makes": [65535, 0], "don't it makes my": [65535, 0], "it makes my flesh": [65535, 0], "makes my flesh crawl": [65535, 0], "my flesh crawl to": [65535, 0], "flesh crawl to hear": [65535, 0], "crawl to hear you": [65535, 0], "to hear you tom": [65535, 0], "hear you tom what": [65535, 0], "you tom what is": [65535, 0], "is the matter i": [65535, 0], "the matter i forgive": [65535, 0], "matter i forgive you": [65535, 0], "i forgive you everything": [65535, 0], "forgive you everything sid": [65535, 0], "you everything sid groan": [65535, 0], "everything sid groan everything": [65535, 0], "sid groan everything you've": [65535, 0], "groan everything you've ever": [65535, 0], "everything you've ever done": [65535, 0], "you've ever done to": [65535, 0], "ever done to me": [65535, 0], "done to me when": [65535, 0], "to me when i'm": [65535, 0], "me when i'm gone": [65535, 0], "when i'm gone oh": [65535, 0], "i'm gone oh tom": [65535, 0], "gone oh tom you": [65535, 0], "oh tom you ain't": [65535, 0], "tom you ain't dying": [65535, 0], "you ain't dying are": [65535, 0], "ain't dying are you": [65535, 0], "dying are you don't": [65535, 0], "are you don't tom": [65535, 0], "you don't tom oh": [65535, 0], "don't tom oh don't": [65535, 0], "tom oh don't maybe": [65535, 0], "oh don't maybe i": [65535, 0], "don't maybe i forgive": [65535, 0], "maybe i forgive everybody": [65535, 0], "i forgive everybody sid": [65535, 0], "forgive everybody sid groan": [65535, 0], "everybody sid groan tell": [65535, 0], "sid groan tell 'em": [65535, 0], "groan tell 'em so": [65535, 0], "tell 'em so sid": [65535, 0], "'em so sid and": [65535, 0], "so sid and sid": [65535, 0], "sid and sid you": [65535, 0], "and sid you give": [65535, 0], "sid you give my": [65535, 0], "you give my window": [65535, 0], "give my window sash": [65535, 0], "my window sash and": [65535, 0], "window sash and my": [65535, 0], "sash and my cat": [65535, 0], "and my cat with": [65535, 0], "my cat with one": [65535, 0], "cat with one eye": [65535, 0], "with one eye to": [65535, 0], "one eye to that": [65535, 0], "eye to that new": [65535, 0], "to that new girl": [65535, 0], "that new girl that's": [65535, 0], "new girl that's come": [65535, 0], "girl that's come to": [65535, 0], "that's come to town": [65535, 0], "come to town and": [65535, 0], "to town and tell": [65535, 0], "town and tell her": [65535, 0], "and tell her but": [65535, 0], "tell her but sid": [65535, 0], "her but sid had": [65535, 0], "but sid had snatched": [65535, 0], "sid had snatched his": [65535, 0], "had snatched his clothes": [65535, 0], "snatched his clothes and": [65535, 0], "his clothes and gone": [65535, 0], "clothes and gone tom": [65535, 0], "and gone tom was": [65535, 0], "gone tom was suffering": [65535, 0], "tom was suffering in": [65535, 0], "was suffering in reality": [65535, 0], "suffering in reality now": [65535, 0], "in reality now so": [65535, 0], "reality now so handsomely": [65535, 0], "now so handsomely was": [65535, 0], "so handsomely was his": [65535, 0], "handsomely was his imagination": [65535, 0], "was his imagination working": [65535, 0], "his imagination working and": [65535, 0], "imagination working and so": [65535, 0], "working and so his": [65535, 0], "and so his groans": [65535, 0], "so his groans had": [65535, 0], "his groans had gathered": [65535, 0], "groans had gathered quite": [65535, 0], "had gathered quite a": [65535, 0], "gathered quite a genuine": [65535, 0], "quite a genuine tone": [65535, 0], "a genuine tone sid": [65535, 0], "genuine tone sid flew": [65535, 0], "tone sid flew down": [65535, 0], "sid flew down stairs": [65535, 0], "flew down stairs and": [65535, 0], "down stairs and said": [65535, 0], "stairs and said oh": [65535, 0], "and said oh aunt": [65535, 0], "said oh aunt polly": [65535, 0], "oh aunt polly come": [65535, 0], "aunt polly come tom's": [65535, 0], "polly come tom's dying": [65535, 0], "come tom's dying dying": [65535, 0], "tom's dying dying yes'm": [65535, 0], "dying dying yes'm don't": [65535, 0], "dying yes'm don't wait": [65535, 0], "yes'm don't wait come": [65535, 0], "don't wait come quick": [65535, 0], "wait come quick rubbage": [65535, 0], "come quick rubbage i": [65535, 0], "quick rubbage i don't": [65535, 0], "rubbage i don't believe": [65535, 0], "i don't believe it": [65535, 0], "don't believe it but": [65535, 0], "believe it but she": [65535, 0], "it but she fled": [65535, 0], "but she fled up": [65535, 0], "she fled up stairs": [65535, 0], "fled up stairs nevertheless": [65535, 0], "up stairs nevertheless with": [65535, 0], "stairs nevertheless with sid": [65535, 0], "nevertheless with sid and": [65535, 0], "with sid and mary": [65535, 0], "sid and mary at": [65535, 0], "and mary at her": [65535, 0], "mary at her heels": [65535, 0], "at her heels and": [65535, 0], "her heels and her": [65535, 0], "heels and her face": [65535, 0], "and her face grew": [65535, 0], "her face grew white": [65535, 0], "face grew white too": [65535, 0], "grew white too and": [65535, 0], "white too and her": [65535, 0], "too and her lip": [65535, 0], "and her lip trembled": [65535, 0], "her lip trembled when": [65535, 0], "lip trembled when she": [65535, 0], "trembled when she reached": [65535, 0], "when she reached the": [65535, 0], "she reached the bedside": [65535, 0], "reached the bedside she": [65535, 0], "the bedside she gasped": [65535, 0], "bedside she gasped out": [65535, 0], "she gasped out you": [65535, 0], "gasped out you tom": [65535, 0], "out you tom tom": [65535, 0], "you tom tom what's": [65535, 0], "tom tom what's the": [65535, 0], "tom what's the matter": [65535, 0], "what's the matter with": [65535, 0], "the matter with you": [65535, 0], "matter with you oh": [65535, 0], "with you oh auntie": [65535, 0], "you oh auntie i'm": [65535, 0], "oh auntie i'm what's": [65535, 0], "auntie i'm what's the": [65535, 0], "i'm what's the matter": [65535, 0], "matter with you what": [65535, 0], "with you what is": [65535, 0], "you what is the": [65535, 0], "is the matter with": [65535, 0], "matter with you child": [65535, 0], "with you child oh": [65535, 0], "you child oh auntie": [65535, 0], "child oh auntie my": [65535, 0], "oh auntie my sore": [65535, 0], "auntie my sore toe's": [65535, 0], "my sore toe's mortified": [65535, 0], "sore toe's mortified the": [65535, 0], "toe's mortified the old": [65535, 0], "mortified the old lady": [65535, 0], "the old lady sank": [65535, 0], "old lady sank down": [65535, 0], "lady sank down into": [65535, 0], "sank down into a": [65535, 0], "down into a chair": [65535, 0], "into a chair and": [65535, 0], "a chair and laughed": [65535, 0], "chair and laughed a": [65535, 0], "and laughed a little": [65535, 0], "laughed a little then": [65535, 0], "a little then cried": [65535, 0], "little then cried a": [65535, 0], "then cried a little": [65535, 0], "cried a little then": [65535, 0], "a little then did": [65535, 0], "little then did both": [65535, 0], "then did both together": [65535, 0], "did both together this": [65535, 0], "both together this restored": [65535, 0], "together this restored her": [65535, 0], "this restored her and": [65535, 0], "restored her and she": [65535, 0], "her and she said": [65535, 0], "and she said tom": [65535, 0], "she said tom what": [65535, 0], "said tom what a": [65535, 0], "tom what a turn": [65535, 0], "what a turn you": [65535, 0], "a turn you did": [65535, 0], "turn you did give": [65535, 0], "you did give me": [65535, 0], "did give me now": [65535, 0], "give me now you": [65535, 0], "me now you shut": [65535, 0], "now you shut up": [65535, 0], "you shut up that": [65535, 0], "shut up that nonsense": [65535, 0], "up that nonsense and": [65535, 0], "that nonsense and climb": [65535, 0], "nonsense and climb out": [65535, 0], "and climb out of": [65535, 0], "climb out of this": [65535, 0], "out of this the": [65535, 0], "of this the groans": [65535, 0], "this the groans ceased": [65535, 0], "the groans ceased and": [65535, 0], "groans ceased and the": [65535, 0], "ceased and the pain": [65535, 0], "and the pain vanished": [65535, 0], "the pain vanished from": [65535, 0], "pain vanished from the": [65535, 0], "vanished from the toe": [65535, 0], "from the toe the": [65535, 0], "the toe the boy": [65535, 0], "toe the boy felt": [65535, 0], "the boy felt a": [65535, 0], "boy felt a little": [65535, 0], "felt a little foolish": [65535, 0], "a little foolish and": [65535, 0], "little foolish and he": [65535, 0], "foolish and he said": [65535, 0], "and he said aunt": [65535, 0], "he said aunt polly": [65535, 0], "said aunt polly it": [65535, 0], "aunt polly it seemed": [65535, 0], "polly it seemed mortified": [65535, 0], "it seemed mortified and": [65535, 0], "seemed mortified and it": [65535, 0], "mortified and it hurt": [65535, 0], "and it hurt so": [65535, 0], "it hurt so i": [65535, 0], "hurt so i never": [65535, 0], "so i never minded": [65535, 0], "i never minded my": [65535, 0], "never minded my tooth": [65535, 0], "minded my tooth at": [65535, 0], "my tooth at all": [65535, 0], "tooth at all your": [65535, 0], "at all your tooth": [65535, 0], "all your tooth indeed": [65535, 0], "your tooth indeed what's": [65535, 0], "tooth indeed what's the": [65535, 0], "indeed what's the matter": [65535, 0], "the matter with your": [65535, 0], "matter with your tooth": [65535, 0], "with your tooth one": [65535, 0], "your tooth one of": [65535, 0], "tooth one of them's": [65535, 0], "one of them's loose": [65535, 0], "of them's loose and": [65535, 0], "them's loose and it": [65535, 0], "loose and it aches": [65535, 0], "and it aches perfectly": [65535, 0], "it aches perfectly awful": [65535, 0], "aches perfectly awful there": [65535, 0], "perfectly awful there there": [65535, 0], "awful there there now": [65535, 0], "there there now don't": [65535, 0], "there now don't begin": [65535, 0], "now don't begin that": [65535, 0], "don't begin that groaning": [65535, 0], "begin that groaning again": [65535, 0], "that groaning again open": [65535, 0], "groaning again open your": [65535, 0], "again open your mouth": [65535, 0], "open your mouth well": [65535, 0], "your mouth well your": [65535, 0], "mouth well your tooth": [65535, 0], "well your tooth is": [65535, 0], "your tooth is loose": [65535, 0], "tooth is loose but": [65535, 0], "is loose but you're": [65535, 0], "loose but you're not": [65535, 0], "but you're not going": [65535, 0], "you're not going to": [65535, 0], "not going to die": [65535, 0], "going to die about": [65535, 0], "to die about that": [65535, 0], "die about that mary": [65535, 0], "about that mary get": [65535, 0], "that mary get me": [65535, 0], "mary get me a": [65535, 0], "get me a silk": [65535, 0], "me a silk thread": [65535, 0], "a silk thread and": [65535, 0], "silk thread and a": [65535, 0], "thread and a chunk": [65535, 0], "and a chunk of": [65535, 0], "a chunk of fire": [65535, 0], "chunk of fire out": [65535, 0], "of fire out of": [65535, 0], "fire out of the": [65535, 0], "out of the kitchen": [65535, 0], "of the kitchen tom": [65535, 0], "the kitchen tom said": [65535, 0], "kitchen tom said oh": [65535, 0], "tom said oh please": [65535, 0], "said oh please auntie": [65535, 0], "oh please auntie don't": [65535, 0], "please auntie don't pull": [65535, 0], "auntie don't pull it": [65535, 0], "don't pull it out": [65535, 0], "pull it out it": [65535, 0], "it out it don't": [65535, 0], "out it don't hurt": [65535, 0], "it don't hurt any": [65535, 0], "don't hurt any more": [65535, 0], "hurt any more i": [65535, 0], "any more i wish": [65535, 0], "more i wish i": [65535, 0], "i wish i may": [65535, 0], "wish i may never": [65535, 0], "i may never stir": [65535, 0], "may never stir if": [65535, 0], "never stir if it": [65535, 0], "stir if it does": [65535, 0], "if it does please": [65535, 0], "it does please don't": [65535, 0], "does please don't auntie": [65535, 0], "please don't auntie i": [65535, 0], "don't auntie i don't": [65535, 0], "auntie i don't want": [65535, 0], "i don't want to": [65535, 0], "don't want to stay": [65535, 0], "want to stay home": [65535, 0], "to stay home from": [65535, 0], "home from school oh": [65535, 0], "from school oh you": [65535, 0], "school oh you don't": [65535, 0], "oh you don't don't": [65535, 0], "you don't don't you": [65535, 0], "don't don't you so": [65535, 0], "don't you so all": [65535, 0], "you so all this": [65535, 0], "so all this row": [65535, 0], "all this row was": [65535, 0], "this row was because": [65535, 0], "row was because you": [65535, 0], "was because you thought": [65535, 0], "because you thought you'd": [65535, 0], "you thought you'd get": [65535, 0], "thought you'd get to": [65535, 0], "you'd get to stay": [65535, 0], "get to stay home": [65535, 0], "home from school and": [65535, 0], "from school and go": [65535, 0], "school and go a": [65535, 0], "and go a fishing": [65535, 0], "go a fishing tom": [65535, 0], "a fishing tom tom": [65535, 0], "fishing tom tom i": [65535, 0], "tom tom i love": [65535, 0], "tom i love you": [65535, 0], "i love you so": [65535, 0], "love you so and": [65535, 0], "you so and you": [65535, 0], "so and you seem": [65535, 0], "and you seem to": [65535, 0], "you seem to try": [65535, 0], "seem to try every": [65535, 0], "to try every way": [65535, 0], "try every way you": [65535, 0], "every way you can": [65535, 0], "way you can to": [65535, 0], "you can to break": [65535, 0], "can to break my": [65535, 0], "to break my old": [65535, 0], "break my old heart": [65535, 0], "my old heart with": [65535, 0], "old heart with your": [65535, 0], "heart with your outrageousness": [65535, 0], "with your outrageousness by": [65535, 0], "your outrageousness by this": [65535, 0], "outrageousness by this time": [65535, 0], "this time the dental": [65535, 0], "time the dental instruments": [65535, 0], "the dental instruments were": [65535, 0], "dental instruments were ready": [65535, 0], "instruments were ready the": [65535, 0], "were ready the old": [65535, 0], "ready the old lady": [65535, 0], "the old lady made": [65535, 0], "old lady made one": [65535, 0], "lady made one end": [65535, 0], "made one end of": [65535, 0], "one end of the": [65535, 0], "end of the silk": [65535, 0], "of the silk thread": [65535, 0], "the silk thread fast": [65535, 0], "silk thread fast to": [65535, 0], "thread fast to tom's": [65535, 0], "fast to tom's tooth": [65535, 0], "to tom's tooth with": [65535, 0], "tom's tooth with a": [65535, 0], "tooth with a loop": [65535, 0], "with a loop and": [65535, 0], "a loop and tied": [65535, 0], "loop and tied the": [65535, 0], "and tied the other": [65535, 0], "tied the other to": [65535, 0], "the other to the": [65535, 0], "other to the bedpost": [65535, 0], "to the bedpost then": [65535, 0], "the bedpost then she": [65535, 0], "bedpost then she seized": [65535, 0], "then she seized the": [65535, 0], "she seized the chunk": [65535, 0], "seized the chunk of": [65535, 0], "the chunk of fire": [65535, 0], "chunk of fire and": [65535, 0], "of fire and suddenly": [65535, 0], "fire and suddenly thrust": [65535, 0], "and suddenly thrust it": [65535, 0], "suddenly thrust it almost": [65535, 0], "thrust it almost into": [65535, 0], "it almost into the": [65535, 0], "almost into the boy's": [65535, 0], "into the boy's face": [65535, 0], "the boy's face the": [65535, 0], "boy's face the tooth": [65535, 0], "face the tooth hung": [65535, 0], "the tooth hung dangling": [65535, 0], "tooth hung dangling by": [65535, 0], "hung dangling by the": [65535, 0], "dangling by the bedpost": [65535, 0], "by the bedpost now": [65535, 0], "the bedpost now but": [65535, 0], "bedpost now but all": [65535, 0], "now but all trials": [65535, 0], "but all trials bring": [65535, 0], "all trials bring their": [65535, 0], "trials bring their compensations": [65535, 0], "bring their compensations as": [65535, 0], "their compensations as tom": [65535, 0], "compensations as tom wended": [65535, 0], "as tom wended to": [65535, 0], "tom wended to school": [65535, 0], "wended to school after": [65535, 0], "to school after breakfast": [65535, 0], "school after breakfast he": [65535, 0], "after breakfast he was": [65535, 0], "breakfast he was the": [65535, 0], "he was the envy": [65535, 0], "was the envy of": [65535, 0], "the envy of every": [65535, 0], "envy of every boy": [65535, 0], "of every boy he": [65535, 0], "every boy he met": [65535, 0], "boy he met because": [65535, 0], "he met because the": [65535, 0], "met because the gap": [65535, 0], "because the gap in": [65535, 0], "the gap in his": [65535, 0], "gap in his upper": [65535, 0], "in his upper row": [65535, 0], "his upper row of": [65535, 0], "upper row of teeth": [65535, 0], "row of teeth enabled": [65535, 0], "of teeth enabled him": [65535, 0], "teeth enabled him to": [65535, 0], "enabled him to expectorate": [65535, 0], "him to expectorate in": [65535, 0], "to expectorate in a": [65535, 0], "expectorate in a new": [65535, 0], "in a new and": [65535, 0], "a new and admirable": [65535, 0], "new and admirable way": [65535, 0], "and admirable way he": [65535, 0], "admirable way he gathered": [65535, 0], "way he gathered quite": [65535, 0], "he gathered quite a": [65535, 0], "gathered quite a following": [65535, 0], "quite a following of": [65535, 0], "a following of lads": [65535, 0], "following of lads interested": [65535, 0], "of lads interested in": [65535, 0], "lads interested in the": [65535, 0], "interested in the exhibition": [65535, 0], "in the exhibition and": [65535, 0], "the exhibition and one": [65535, 0], "exhibition and one that": [65535, 0], "and one that had": [65535, 0], "one that had cut": [65535, 0], "that had cut his": [65535, 0], "had cut his finger": [65535, 0], "cut his finger and": [65535, 0], "his finger and had": [65535, 0], "finger and had been": [65535, 0], "and had been a": [65535, 0], "had been a centre": [65535, 0], "been a centre of": [65535, 0], "a centre of fascination": [65535, 0], "centre of fascination and": [65535, 0], "of fascination and homage": [65535, 0], "fascination and homage up": [65535, 0], "and homage up to": [65535, 0], "homage up to this": [65535, 0], "up to this time": [65535, 0], "to this time now": [65535, 0], "this time now found": [65535, 0], "time now found himself": [65535, 0], "now found himself suddenly": [65535, 0], "found himself suddenly without": [65535, 0], "himself suddenly without an": [65535, 0], "suddenly without an adherent": [65535, 0], "without an adherent and": [65535, 0], "an adherent and shorn": [65535, 0], "adherent and shorn of": [65535, 0], "and shorn of his": [65535, 0], "shorn of his glory": [65535, 0], "of his glory his": [65535, 0], "his glory his heart": [65535, 0], "glory his heart was": [65535, 0], "his heart was heavy": [65535, 0], "heart was heavy and": [65535, 0], "was heavy and he": [65535, 0], "heavy and he said": [65535, 0], "and he said with": [65535, 0], "he said with a": [65535, 0], "said with a disdain": [65535, 0], "with a disdain which": [65535, 0], "a disdain which he": [65535, 0], "disdain which he did": [65535, 0], "which he did not": [65535, 0], "he did not feel": [65535, 0], "did not feel that": [65535, 0], "not feel that it": [65535, 0], "feel that it wasn't": [65535, 0], "that it wasn't anything": [65535, 0], "it wasn't anything to": [65535, 0], "wasn't anything to spit": [65535, 0], "anything to spit like": [65535, 0], "to spit like tom": [65535, 0], "spit like tom sawyer": [65535, 0], "like tom sawyer but": [65535, 0], "tom sawyer but another": [65535, 0], "sawyer but another boy": [65535, 0], "but another boy said": [65535, 0], "another boy said sour": [65535, 0], "boy said sour grapes": [65535, 0], "said sour grapes and": [65535, 0], "sour grapes and he": [65535, 0], "grapes and he wandered": [65535, 0], "and he wandered away": [65535, 0], "he wandered away a": [65535, 0], "wandered away a dismantled": [65535, 0], "away a dismantled hero": [65535, 0], "a dismantled hero shortly": [65535, 0], "dismantled hero shortly tom": [65535, 0], "hero shortly tom came": [65535, 0], "shortly tom came upon": [65535, 0], "tom came upon the": [65535, 0], "came upon the juvenile": [65535, 0], "upon the juvenile pariah": [65535, 0], "the juvenile pariah of": [65535, 0], "juvenile pariah of the": [65535, 0], "pariah of the village": [65535, 0], "of the village huckleberry": [65535, 0], "the village huckleberry finn": [65535, 0], "village huckleberry finn son": [65535, 0], "huckleberry finn son of": [65535, 0], "finn son of the": [65535, 0], "son of the town": [65535, 0], "of the town drunkard": [65535, 0], "the town drunkard huckleberry": [65535, 0], "town drunkard huckleberry was": [65535, 0], "drunkard huckleberry was cordially": [65535, 0], "huckleberry was cordially hated": [65535, 0], "was cordially hated and": [65535, 0], "cordially hated and dreaded": [65535, 0], "hated and dreaded by": [65535, 0], "and dreaded by all": [65535, 0], "dreaded by all the": [65535, 0], "by all the mothers": [65535, 0], "all the mothers of": [65535, 0], "the mothers of the": [65535, 0], "mothers of the town": [65535, 0], "of the town because": [65535, 0], "the town because he": [65535, 0], "town because he was": [65535, 0], "because he was idle": [65535, 0], "he was idle and": [65535, 0], "was idle and lawless": [65535, 0], "idle and lawless and": [65535, 0], "and lawless and vulgar": [65535, 0], "lawless and vulgar and": [65535, 0], "and vulgar and bad": [65535, 0], "vulgar and bad and": [65535, 0], "and bad and because": [65535, 0], "bad and because all": [65535, 0], "and because all their": [65535, 0], "because all their children": [65535, 0], "all their children admired": [65535, 0], "their children admired him": [65535, 0], "children admired him so": [65535, 0], "admired him so and": [65535, 0], "him so and delighted": [65535, 0], "so and delighted in": [65535, 0], "and delighted in his": [65535, 0], "delighted in his forbidden": [65535, 0], "in his forbidden society": [65535, 0], "his forbidden society and": [65535, 0], "forbidden society and wished": [65535, 0], "society and wished they": [65535, 0], "and wished they dared": [65535, 0], "wished they dared to": [65535, 0], "they dared to be": [65535, 0], "dared to be like": [65535, 0], "to be like him": [65535, 0], "be like him tom": [65535, 0], "like him tom was": [65535, 0], "him tom was like": [65535, 0], "tom was like the": [65535, 0], "was like the rest": [65535, 0], "like the rest of": [65535, 0], "the rest of the": [65535, 0], "rest of the respectable": [65535, 0], "of the respectable boys": [65535, 0], "the respectable boys in": [65535, 0], "respectable boys in that": [65535, 0], "boys in that he": [65535, 0], "in that he envied": [65535, 0], "that he envied huckleberry": [65535, 0], "he envied huckleberry his": [65535, 0], "envied huckleberry his gaudy": [65535, 0], "huckleberry his gaudy outcast": [65535, 0], "his gaudy outcast condition": [65535, 0], "gaudy outcast condition and": [65535, 0], "outcast condition and was": [65535, 0], "condition and was under": [65535, 0], "and was under strict": [65535, 0], "was under strict orders": [65535, 0], "under strict orders not": [65535, 0], "strict orders not to": [65535, 0], "orders not to play": [65535, 0], "not to play with": [65535, 0], "to play with him": [65535, 0], "play with him so": [65535, 0], "with him so he": [65535, 0], "him so he played": [65535, 0], "so he played with": [65535, 0], "he played with him": [65535, 0], "played with him every": [65535, 0], "with him every time": [65535, 0], "him every time he": [65535, 0], "every time he got": [65535, 0], "time he got a": [65535, 0], "he got a chance": [65535, 0], "got a chance huckleberry": [65535, 0], "a chance huckleberry was": [65535, 0], "chance huckleberry was always": [65535, 0], "huckleberry was always dressed": [65535, 0], "was always dressed in": [65535, 0], "always dressed in the": [65535, 0], "dressed in the cast": [65535, 0], "in the cast off": [65535, 0], "the cast off clothes": [65535, 0], "cast off clothes of": [65535, 0], "off clothes of full": [65535, 0], "clothes of full grown": [65535, 0], "of full grown men": [65535, 0], "full grown men and": [65535, 0], "grown men and they": [65535, 0], "men and they were": [65535, 0], "and they were in": [65535, 0], "they were in perennial": [65535, 0], "were in perennial bloom": [65535, 0], "in perennial bloom and": [65535, 0], "perennial bloom and fluttering": [65535, 0], "bloom and fluttering with": [65535, 0], "and fluttering with rags": [65535, 0], "fluttering with rags his": [65535, 0], "with rags his hat": [65535, 0], "rags his hat was": [65535, 0], "his hat was a": [65535, 0], "hat was a vast": [65535, 0], "was a vast ruin": [65535, 0], "a vast ruin with": [65535, 0], "vast ruin with a": [65535, 0], "ruin with a wide": [65535, 0], "with a wide crescent": [65535, 0], "a wide crescent lopped": [65535, 0], "wide crescent lopped out": [65535, 0], "crescent lopped out of": [65535, 0], "lopped out of its": [65535, 0], "out of its brim": [65535, 0], "of its brim his": [65535, 0], "its brim his coat": [65535, 0], "brim his coat when": [65535, 0], "his coat when he": [65535, 0], "coat when he wore": [65535, 0], "when he wore one": [65535, 0], "he wore one hung": [65535, 0], "wore one hung nearly": [65535, 0], "one hung nearly to": [65535, 0], "hung nearly to his": [65535, 0], "nearly to his heels": [65535, 0], "to his heels and": [65535, 0], "his heels and had": [65535, 0], "heels and had the": [65535, 0], "and had the rearward": [65535, 0], "had the rearward buttons": [65535, 0], "the rearward buttons far": [65535, 0], "rearward buttons far down": [65535, 0], "buttons far down the": [65535, 0], "far down the back": [65535, 0], "down the back but": [65535, 0], "the back but one": [65535, 0], "back but one suspender": [65535, 0], "but one suspender supported": [65535, 0], "one suspender supported his": [65535, 0], "suspender supported his trousers": [65535, 0], "supported his trousers the": [65535, 0], "his trousers the seat": [65535, 0], "trousers the seat of": [65535, 0], "the seat of the": [65535, 0], "seat of the trousers": [65535, 0], "of the trousers bagged": [65535, 0], "the trousers bagged low": [65535, 0], "trousers bagged low and": [65535, 0], "bagged low and contained": [65535, 0], "low and contained nothing": [65535, 0], "and contained nothing the": [65535, 0], "contained nothing the fringed": [65535, 0], "nothing the fringed legs": [65535, 0], "the fringed legs dragged": [65535, 0], "fringed legs dragged in": [65535, 0], "legs dragged in the": [65535, 0], "dragged in the dirt": [65535, 0], "in the dirt when": [65535, 0], "the dirt when not": [65535, 0], "dirt when not rolled": [65535, 0], "when not rolled up": [65535, 0], "not rolled up huckleberry": [65535, 0], "rolled up huckleberry came": [65535, 0], "up huckleberry came and": [65535, 0], "huckleberry came and went": [65535, 0], "came and went at": [65535, 0], "and went at his": [65535, 0], "went at his own": [65535, 0], "at his own free": [65535, 0], "his own free will": [65535, 0], "own free will he": [65535, 0], "free will he slept": [65535, 0], "will he slept on": [65535, 0], "he slept on doorsteps": [65535, 0], "slept on doorsteps in": [65535, 0], "on doorsteps in fine": [65535, 0], "doorsteps in fine weather": [65535, 0], "in fine weather and": [65535, 0], "fine weather and in": [65535, 0], "weather and in empty": [65535, 0], "and in empty hogsheads": [65535, 0], "in empty hogsheads in": [65535, 0], "empty hogsheads in wet": [65535, 0], "hogsheads in wet he": [65535, 0], "in wet he did": [65535, 0], "wet he did not": [65535, 0], "he did not have": [65535, 0], "did not have to": [65535, 0], "not have to go": [65535, 0], "have to go to": [65535, 0], "to go to school": [65535, 0], "go to school or": [65535, 0], "to school or to": [65535, 0], "school or to church": [65535, 0], "or to church or": [65535, 0], "to church or call": [65535, 0], "church or call any": [65535, 0], "or call any being": [65535, 0], "call any being master": [65535, 0], "any being master or": [65535, 0], "being master or obey": [65535, 0], "master or obey anybody": [65535, 0], "or obey anybody he": [65535, 0], "obey anybody he could": [65535, 0], "anybody he could go": [65535, 0], "he could go fishing": [65535, 0], "could go fishing or": [65535, 0], "go fishing or swimming": [65535, 0], "fishing or swimming when": [65535, 0], "or swimming when and": [65535, 0], "swimming when and where": [65535, 0], "when and where he": [65535, 0], "and where he chose": [65535, 0], "where he chose and": [65535, 0], "he chose and stay": [65535, 0], "chose and stay as": [65535, 0], "and stay as long": [65535, 0], "stay as long as": [65535, 0], "as long as it": [65535, 0], "long as it suited": [65535, 0], "as it suited him": [65535, 0], "it suited him nobody": [65535, 0], "suited him nobody forbade": [65535, 0], "him nobody forbade him": [65535, 0], "nobody forbade him to": [65535, 0], "forbade him to fight": [65535, 0], "him to fight he": [65535, 0], "to fight he could": [65535, 0], "fight he could sit": [65535, 0], "he could sit up": [65535, 0], "could sit up as": [65535, 0], "sit up as late": [65535, 0], "up as late as": [65535, 0], "as late as he": [65535, 0], "late as he pleased": [65535, 0], "as he pleased he": [65535, 0], "he pleased he was": [65535, 0], "pleased he was always": [65535, 0], "he was always the": [65535, 0], "was always the first": [65535, 0], "always the first boy": [65535, 0], "the first boy that": [65535, 0], "first boy that went": [65535, 0], "boy that went barefoot": [65535, 0], "that went barefoot in": [65535, 0], "went barefoot in the": [65535, 0], "barefoot in the spring": [65535, 0], "in the spring and": [65535, 0], "the spring and the": [65535, 0], "spring and the last": [65535, 0], "and the last to": [65535, 0], "the last to resume": [65535, 0], "last to resume leather": [65535, 0], "to resume leather in": [65535, 0], "resume leather in the": [65535, 0], "leather in the fall": [65535, 0], "in the fall he": [65535, 0], "the fall he never": [65535, 0], "fall he never had": [65535, 0], "he never had to": [65535, 0], "never had to wash": [65535, 0], "had to wash nor": [65535, 0], "to wash nor put": [65535, 0], "wash nor put on": [65535, 0], "nor put on clean": [65535, 0], "put on clean clothes": [65535, 0], "on clean clothes he": [65535, 0], "clean clothes he could": [65535, 0], "clothes he could swear": [65535, 0], "he could swear wonderfully": [65535, 0], "could swear wonderfully in": [65535, 0], "swear wonderfully in a": [65535, 0], "wonderfully in a word": [65535, 0], "in a word everything": [65535, 0], "a word everything that": [65535, 0], "word everything that goes": [65535, 0], "everything that goes to": [65535, 0], "that goes to make": [65535, 0], "goes to make life": [65535, 0], "to make life precious": [65535, 0], "make life precious that": [65535, 0], "life precious that boy": [65535, 0], "precious that boy had": [65535, 0], "that boy had so": [65535, 0], "boy had so thought": [65535, 0], "had so thought every": [65535, 0], "so thought every harassed": [65535, 0], "thought every harassed hampered": [65535, 0], "every harassed hampered respectable": [65535, 0], "harassed hampered respectable boy": [65535, 0], "hampered respectable boy in": [65535, 0], "respectable boy in st": [65535, 0], "boy in st petersburg": [65535, 0], "in st petersburg tom": [65535, 0], "st petersburg tom hailed": [65535, 0], "petersburg tom hailed the": [65535, 0], "tom hailed the romantic": [65535, 0], "hailed the romantic outcast": [65535, 0], "the romantic outcast hello": [65535, 0], "romantic outcast hello huckleberry": [65535, 0], "outcast hello huckleberry hello": [65535, 0], "hello huckleberry hello yourself": [65535, 0], "huckleberry hello yourself and": [65535, 0], "hello yourself and see": [65535, 0], "yourself and see how": [65535, 0], "and see how you": [65535, 0], "see how you like": [65535, 0], "how you like it": [65535, 0], "you like it what's": [65535, 0], "like it what's that": [65535, 0], "it what's that you": [65535, 0], "what's that you got": [65535, 0], "that you got dead": [65535, 0], "you got dead cat": [65535, 0], "got dead cat lemme": [65535, 0], "dead cat lemme see": [65535, 0], "cat lemme see him": [65535, 0], "lemme see him huck": [65535, 0], "see him huck my": [65535, 0], "him huck my he's": [65535, 0], "huck my he's pretty": [65535, 0], "my he's pretty stiff": [65535, 0], "he's pretty stiff where'd": [65535, 0], "pretty stiff where'd you": [65535, 0], "stiff where'd you get": [65535, 0], "where'd you get him": [65535, 0], "you get him bought": [65535, 0], "get him bought him": [65535, 0], "him bought him off'n": [65535, 0], "bought him off'n a": [65535, 0], "him off'n a boy": [65535, 0], "off'n a boy what": [65535, 0], "a boy what did": [65535, 0], "boy what did you": [65535, 0], "what did you give": [65535, 0], "did you give i": [65535, 0], "you give i give": [65535, 0], "give i give a": [65535, 0], "i give a blue": [65535, 0], "give a blue ticket": [65535, 0], "a blue ticket and": [65535, 0], "blue ticket and a": [65535, 0], "ticket and a bladder": [65535, 0], "and a bladder that": [65535, 0], "a bladder that i": [65535, 0], "bladder that i got": [65535, 0], "that i got at": [65535, 0], "i got at the": [65535, 0], "got at the slaughter": [65535, 0], "at the slaughter house": [65535, 0], "the slaughter house where'd": [65535, 0], "slaughter house where'd you": [65535, 0], "house where'd you get": [65535, 0], "where'd you get the": [65535, 0], "you get the blue": [65535, 0], "get the blue ticket": [65535, 0], "the blue ticket bought": [65535, 0], "blue ticket bought it": [65535, 0], "ticket bought it off'n": [65535, 0], "bought it off'n ben": [65535, 0], "it off'n ben rogers": [65535, 0], "off'n ben rogers two": [65535, 0], "ben rogers two weeks": [65535, 0], "rogers two weeks ago": [65535, 0], "two weeks ago for": [65535, 0], "weeks ago for a": [65535, 0], "ago for a hoop": [65535, 0], "for a hoop stick": [65535, 0], "a hoop stick say": [65535, 0], "hoop stick say what": [65535, 0], "stick say what is": [65535, 0], "say what is dead": [65535, 0], "what is dead cats": [65535, 0], "is dead cats good": [65535, 0], "dead cats good for": [65535, 0], "cats good for huck": [65535, 0], "good for huck good": [65535, 0], "for huck good for": [65535, 0], "huck good for cure": [65535, 0], "good for cure warts": [65535, 0], "for cure warts with": [65535, 0], "cure warts with no": [65535, 0], "warts with no is": [65535, 0], "with no is that": [65535, 0], "no is that so": [65535, 0], "is that so i": [65535, 0], "that so i know": [65535, 0], "so i know something": [65535, 0], "i know something that's": [65535, 0], "know something that's better": [65535, 0], "something that's better i": [65535, 0], "that's better i bet": [65535, 0], "better i bet you": [65535, 0], "i bet you don't": [65535, 0], "bet you don't what": [65535, 0], "you don't what is": [65535, 0], "don't what is it": [65535, 0], "what is it why": [65535, 0], "is it why spunk": [65535, 0], "it why spunk water": [65535, 0], "why spunk water spunk": [65535, 0], "spunk water spunk water": [65535, 0], "water spunk water i": [65535, 0], "spunk water i wouldn't": [65535, 0], "water i wouldn't give": [65535, 0], "i wouldn't give a": [65535, 0], "wouldn't give a dern": [65535, 0], "give a dern for": [65535, 0], "a dern for spunk": [65535, 0], "dern for spunk water": [65535, 0], "for spunk water you": [65535, 0], "spunk water you wouldn't": [65535, 0], "water you wouldn't wouldn't": [65535, 0], "you wouldn't wouldn't you": [65535, 0], "wouldn't wouldn't you d'you": [65535, 0], "wouldn't you d'you ever": [65535, 0], "you d'you ever try": [65535, 0], "d'you ever try it": [65535, 0], "ever try it no": [65535, 0], "try it no i": [65535, 0], "it no i hain't": [65535, 0], "no i hain't but": [65535, 0], "i hain't but bob": [65535, 0], "hain't but bob tanner": [65535, 0], "but bob tanner did": [65535, 0], "bob tanner did who": [65535, 0], "tanner did who told": [65535, 0], "did who told you": [65535, 0], "who told you so": [65535, 0], "told you so why": [65535, 0], "you so why he": [65535, 0], "so why he told": [65535, 0], "why he told jeff": [65535, 0], "he told jeff thatcher": [65535, 0], "told jeff thatcher and": [65535, 0], "jeff thatcher and jeff": [65535, 0], "thatcher and jeff told": [65535, 0], "and jeff told johnny": [65535, 0], "jeff told johnny baker": [65535, 0], "told johnny baker and": [65535, 0], "johnny baker and johnny": [65535, 0], "baker and johnny told": [65535, 0], "and johnny told jim": [65535, 0], "johnny told jim hollis": [65535, 0], "told jim hollis and": [65535, 0], "jim hollis and jim": [65535, 0], "hollis and jim told": [65535, 0], "and jim told ben": [65535, 0], "jim told ben rogers": [65535, 0], "told ben rogers and": [65535, 0], "ben rogers and ben": [65535, 0], "rogers and ben told": [65535, 0], "and ben told a": [65535, 0], "ben told a nigger": [65535, 0], "told a nigger and": [65535, 0], "a nigger and the": [65535, 0], "nigger and the nigger": [65535, 0], "and the nigger told": [65535, 0], "the nigger told me": [65535, 0], "nigger told me there": [65535, 0], "told me there now": [65535, 0], "me there now well": [65535, 0], "there now well what": [65535, 0], "now well what of": [65535, 0], "well what of it": [65535, 0], "what of it they'll": [65535, 0], "of it they'll all": [65535, 0], "it they'll all lie": [65535, 0], "they'll all lie leastways": [65535, 0], "all lie leastways all": [65535, 0], "lie leastways all but": [65535, 0], "leastways all but the": [65535, 0], "all but the nigger": [65535, 0], "but the nigger i": [65535, 0], "the nigger i don't": [65535, 0], "nigger i don't know": [65535, 0], "i don't know him": [65535, 0], "don't know him but": [65535, 0], "know him but i": [65535, 0], "him but i never": [65535, 0], "but i never see": [65535, 0], "i never see a": [65535, 0], "never see a nigger": [65535, 0], "see a nigger that": [65535, 0], "a nigger that wouldn't": [65535, 0], "nigger that wouldn't lie": [65535, 0], "that wouldn't lie shucks": [65535, 0], "wouldn't lie shucks now": [65535, 0], "lie shucks now you": [65535, 0], "shucks now you tell": [65535, 0], "now you tell me": [65535, 0], "you tell me how": [65535, 0], "tell me how bob": [65535, 0], "me how bob tanner": [65535, 0], "how bob tanner done": [65535, 0], "bob tanner done it": [65535, 0], "tanner done it huck": [65535, 0], "done it huck why": [65535, 0], "it huck why he": [65535, 0], "huck why he took": [65535, 0], "why he took and": [65535, 0], "he took and dipped": [65535, 0], "took and dipped his": [65535, 0], "and dipped his hand": [65535, 0], "dipped his hand in": [65535, 0], "his hand in a": [65535, 0], "hand in a rotten": [65535, 0], "in a rotten stump": [65535, 0], "a rotten stump where": [65535, 0], "rotten stump where the": [65535, 0], "stump where the rain": [65535, 0], "where the rain water": [65535, 0], "the rain water was": [65535, 0], "rain water was in": [65535, 0], "water was in the": [65535, 0], "was in the daytime": [65535, 0], "in the daytime certainly": [65535, 0], "the daytime certainly with": [65535, 0], "daytime certainly with his": [65535, 0], "certainly with his face": [65535, 0], "with his face to": [65535, 0], "his face to the": [65535, 0], "face to the stump": [65535, 0], "to the stump yes": [65535, 0], "the stump yes least": [65535, 0], "stump yes least i": [65535, 0], "yes least i reckon": [65535, 0], "least i reckon so": [65535, 0], "i reckon so did": [65535, 0], "reckon so did he": [65535, 0], "so did he say": [65535, 0], "did he say anything": [65535, 0], "he say anything i": [65535, 0], "say anything i don't": [65535, 0], "anything i don't reckon": [65535, 0], "i don't reckon he": [65535, 0], "don't reckon he did": [65535, 0], "reckon he did i": [65535, 0], "he did i don't": [65535, 0], "did i don't know": [65535, 0], "i don't know aha": [65535, 0], "don't know aha talk": [65535, 0], "know aha talk about": [65535, 0], "aha talk about trying": [65535, 0], "talk about trying to": [65535, 0], "about trying to cure": [65535, 0], "trying to cure warts": [65535, 0], "to cure warts with": [65535, 0], "cure warts with spunk": [65535, 0], "warts with spunk water": [65535, 0], "with spunk water such": [65535, 0], "spunk water such a": [65535, 0], "water such a blame": [65535, 0], "such a blame fool": [65535, 0], "a blame fool way": [65535, 0], "blame fool way as": [65535, 0], "fool way as that": [65535, 0], "way as that why": [65535, 0], "as that why that": [65535, 0], "that why that ain't": [65535, 0], "why that ain't a": [65535, 0], "that ain't a going": [65535, 0], "ain't a going to": [65535, 0], "a going to do": [65535, 0], "going to do any": [65535, 0], "to do any good": [65535, 0], "do any good you": [65535, 0], "any good you got": [65535, 0], "good you got to": [65535, 0], "you got to go": [65535, 0], "got to go all": [65535, 0], "to go all by": [65535, 0], "go all by yourself": [65535, 0], "all by yourself to": [65535, 0], "by yourself to the": [65535, 0], "yourself to the middle": [65535, 0], "to the middle of": [65535, 0], "the middle of the": [65535, 0], "middle of the woods": [65535, 0], "of the woods where": [65535, 0], "the woods where you": [65535, 0], "woods where you know": [65535, 0], "where you know there's": [65535, 0], "you know there's a": [65535, 0], "know there's a spunk": [65535, 0], "there's a spunk water": [65535, 0], "a spunk water stump": [65535, 0], "spunk water stump and": [65535, 0], "water stump and just": [65535, 0], "stump and just as": [65535, 0], "and just as it's": [65535, 0], "just as it's midnight": [65535, 0], "as it's midnight you": [65535, 0], "it's midnight you back": [65535, 0], "midnight you back up": [65535, 0], "you back up against": [65535, 0], "back up against the": [65535, 0], "up against the stump": [65535, 0], "against the stump and": [65535, 0], "the stump and jam": [65535, 0], "stump and jam your": [65535, 0], "and jam your hand": [65535, 0], "jam your hand in": [65535, 0], "your hand in and": [65535, 0], "hand in and say": [65535, 0], "in and say 'barley": [65535, 0], "and say 'barley corn": [65535, 0], "say 'barley corn barley": [65535, 0], "'barley corn barley corn": [65535, 0], "corn barley corn injun": [65535, 0], "barley corn injun meal": [65535, 0], "corn injun meal shorts": [65535, 0], "injun meal shorts spunk": [65535, 0], "meal shorts spunk water": [65535, 0], "shorts spunk water spunk": [65535, 0], "water spunk water swaller": [65535, 0], "spunk water swaller these": [65535, 0], "water swaller these warts": [65535, 0], "swaller these warts '": [65535, 0], "these warts ' and": [65535, 0], "warts ' and then": [65535, 0], "' and then walk": [65535, 0], "and then walk away": [65535, 0], "then walk away quick": [65535, 0], "walk away quick eleven": [65535, 0], "away quick eleven steps": [65535, 0], "quick eleven steps with": [65535, 0], "eleven steps with your": [65535, 0], "steps with your eyes": [65535, 0], "with your eyes shut": [65535, 0], "your eyes shut and": [65535, 0], "eyes shut and then": [65535, 0], "shut and then turn": [65535, 0], "and then turn around": [65535, 0], "then turn around three": [65535, 0], "turn around three times": [65535, 0], "around three times and": [65535, 0], "three times and walk": [65535, 0], "times and walk home": [65535, 0], "and walk home without": [65535, 0], "walk home without speaking": [65535, 0], "home without speaking to": [65535, 0], "without speaking to anybody": [65535, 0], "speaking to anybody because": [65535, 0], "to anybody because if": [65535, 0], "anybody because if you": [65535, 0], "because if you speak": [65535, 0], "if you speak the": [65535, 0], "you speak the charm's": [65535, 0], "speak the charm's busted": [65535, 0], "the charm's busted well": [65535, 0], "charm's busted well that": [65535, 0], "busted well that sounds": [65535, 0], "well that sounds like": [65535, 0], "that sounds like a": [65535, 0], "sounds like a good": [65535, 0], "like a good way": [65535, 0], "a good way but": [65535, 0], "good way but that": [65535, 0], "way but that ain't": [65535, 0], "but that ain't the": [65535, 0], "that ain't the way": [65535, 0], "ain't the way bob": [65535, 0], "the way bob tanner": [65535, 0], "way bob tanner done": [65535, 0], "bob tanner done no": [65535, 0], "tanner done no sir": [65535, 0], "done no sir you": [65535, 0], "no sir you can": [65535, 0], "sir you can bet": [65535, 0], "you can bet he": [65535, 0], "can bet he didn't": [65535, 0], "bet he didn't becuz": [65535, 0], "he didn't becuz he's": [65535, 0], "didn't becuz he's the": [65535, 0], "becuz he's the wartiest": [65535, 0], "he's the wartiest boy": [65535, 0], "the wartiest boy in": [65535, 0], "wartiest boy in this": [65535, 0], "boy in this town": [65535, 0], "in this town and": [65535, 0], "this town and he": [65535, 0], "town and he wouldn't": [65535, 0], "and he wouldn't have": [65535, 0], "he wouldn't have a": [65535, 0], "wouldn't have a wart": [65535, 0], "have a wart on": [65535, 0], "a wart on him": [65535, 0], "wart on him if": [65535, 0], "on him if he'd": [65535, 0], "him if he'd knowed": [65535, 0], "if he'd knowed how": [65535, 0], "he'd knowed how to": [65535, 0], "knowed how to work": [65535, 0], "how to work spunk": [65535, 0], "to work spunk water": [65535, 0], "work spunk water i've": [65535, 0], "spunk water i've took": [65535, 0], "water i've took off": [65535, 0], "i've took off thousands": [65535, 0], "took off thousands of": [65535, 0], "off thousands of warts": [65535, 0], "thousands of warts off": [65535, 0], "of warts off of": [65535, 0], "warts off of my": [65535, 0], "off of my hands": [65535, 0], "of my hands that": [65535, 0], "my hands that way": [65535, 0], "hands that way huck": [65535, 0], "that way huck i": [65535, 0], "way huck i play": [65535, 0], "huck i play with": [65535, 0], "i play with frogs": [65535, 0], "play with frogs so": [65535, 0], "with frogs so much": [65535, 0], "frogs so much that": [65535, 0], "so much that i've": [65535, 0], "much that i've always": [65535, 0], "that i've always got": [65535, 0], "i've always got considerable": [65535, 0], "always got considerable many": [65535, 0], "got considerable many warts": [65535, 0], "considerable many warts sometimes": [65535, 0], "many warts sometimes i": [65535, 0], "warts sometimes i take": [65535, 0], "sometimes i take 'em": [65535, 0], "i take 'em off": [65535, 0], "take 'em off with": [65535, 0], "'em off with a": [65535, 0], "off with a bean": [65535, 0], "with a bean yes": [65535, 0], "a bean yes bean's": [65535, 0], "bean yes bean's good": [65535, 0], "yes bean's good i've": [65535, 0], "bean's good i've done": [65535, 0], "good i've done that": [65535, 0], "i've done that have": [65535, 0], "done that have you": [65535, 0], "that have you what's": [65535, 0], "have you what's your": [65535, 0], "you what's your way": [65535, 0], "what's your way you": [65535, 0], "your way you take": [65535, 0], "way you take and": [65535, 0], "you take and split": [65535, 0], "take and split the": [65535, 0], "and split the bean": [65535, 0], "split the bean and": [65535, 0], "the bean and cut": [65535, 0], "bean and cut the": [65535, 0], "and cut the wart": [65535, 0], "cut the wart so": [65535, 0], "the wart so as": [65535, 0], "wart so as to": [65535, 0], "so as to get": [65535, 0], "as to get some": [65535, 0], "to get some blood": [65535, 0], "get some blood and": [65535, 0], "some blood and then": [65535, 0], "blood and then you": [65535, 0], "and then you put": [65535, 0], "then you put the": [65535, 0], "you put the blood": [65535, 0], "put the blood on": [65535, 0], "the blood on one": [65535, 0], "blood on one piece": [65535, 0], "on one piece of": [65535, 0], "one piece of the": [65535, 0], "piece of the bean": [65535, 0], "of the bean and": [65535, 0], "the bean and take": [65535, 0], "bean and take and": [65535, 0], "and take and dig": [65535, 0], "take and dig a": [65535, 0], "and dig a hole": [65535, 0], "dig a hole and": [65535, 0], "a hole and bury": [65535, 0], "hole and bury it": [65535, 0], "and bury it 'bout": [65535, 0], "bury it 'bout midnight": [65535, 0], "it 'bout midnight at": [65535, 0], "'bout midnight at the": [65535, 0], "midnight at the crossroads": [65535, 0], "at the crossroads in": [65535, 0], "the crossroads in the": [65535, 0], "crossroads in the dark": [65535, 0], "in the dark of": [65535, 0], "the dark of the": [65535, 0], "dark of the moon": [65535, 0], "of the moon and": [65535, 0], "the moon and then": [65535, 0], "moon and then you": [65535, 0], "and then you burn": [65535, 0], "then you burn up": [65535, 0], "you burn up the": [65535, 0], "burn up the rest": [65535, 0], "up the rest of": [65535, 0], "rest of the bean": [65535, 0], "of the bean you": [65535, 0], "the bean you see": [65535, 0], "bean you see that": [65535, 0], "you see that piece": [65535, 0], "see that piece that's": [65535, 0], "that piece that's got": [65535, 0], "piece that's got the": [65535, 0], "that's got the blood": [65535, 0], "got the blood on": [65535, 0], "the blood on it": [65535, 0], "blood on it will": [65535, 0], "on it will keep": [65535, 0], "it will keep drawing": [65535, 0], "will keep drawing and": [65535, 0], "keep drawing and drawing": [65535, 0], "drawing and drawing trying": [65535, 0], "and drawing trying to": [65535, 0], "drawing trying to fetch": [65535, 0], "trying to fetch the": [65535, 0], "to fetch the other": [65535, 0], "fetch the other piece": [65535, 0], "the other piece to": [65535, 0], "other piece to it": [65535, 0], "piece to it and": [65535, 0], "to it and so": [65535, 0], "it and so that": [65535, 0], "and so that helps": [65535, 0], "so that helps the": [65535, 0], "that helps the blood": [65535, 0], "helps the blood to": [65535, 0], "the blood to draw": [65535, 0], "blood to draw the": [65535, 0], "to draw the wart": [65535, 0], "draw the wart and": [65535, 0], "the wart and pretty": [65535, 0], "wart and pretty soon": [65535, 0], "and pretty soon off": [65535, 0], "pretty soon off she": [65535, 0], "soon off she comes": [65535, 0], "off she comes yes": [65535, 0], "she comes yes that's": [65535, 0], "comes yes that's it": [65535, 0], "yes that's it huck": [65535, 0], "that's it huck that's": [65535, 0], "it huck that's it": [65535, 0], "huck that's it though": [65535, 0], "that's it though when": [65535, 0], "it though when you're": [65535, 0], "though when you're burying": [65535, 0], "when you're burying it": [65535, 0], "you're burying it if": [65535, 0], "burying it if you": [65535, 0], "it if you say": [65535, 0], "if you say 'down": [65535, 0], "you say 'down bean": [65535, 0], "say 'down bean off": [65535, 0], "'down bean off wart": [65535, 0], "bean off wart come": [65535, 0], "off wart come no": [65535, 0], "wart come no more": [65535, 0], "come no more to": [65535, 0], "no more to bother": [65535, 0], "more to bother me": [65535, 0], "to bother me '": [65535, 0], "bother me ' it's": [65535, 0], "me ' it's better": [65535, 0], "' it's better that's": [65535, 0], "it's better that's the": [65535, 0], "better that's the way": [65535, 0], "that's the way joe": [65535, 0], "the way joe harper": [65535, 0], "way joe harper does": [65535, 0], "joe harper does and": [65535, 0], "harper does and he's": [65535, 0], "does and he's been": [65535, 0], "and he's been nearly": [65535, 0], "he's been nearly to": [65535, 0], "been nearly to coonville": [65535, 0], "nearly to coonville and": [65535, 0], "to coonville and most": [65535, 0], "coonville and most everywheres": [65535, 0], "and most everywheres but": [65535, 0], "most everywheres but say": [65535, 0], "everywheres but say how": [65535, 0], "but say how do": [65535, 0], "say how do you": [65535, 0], "how do you cure": [65535, 0], "do you cure 'em": [65535, 0], "you cure 'em with": [65535, 0], "cure 'em with dead": [65535, 0], "'em with dead cats": [65535, 0], "with dead cats why": [65535, 0], "dead cats why you": [65535, 0], "cats why you take": [65535, 0], "why you take your": [65535, 0], "you take your cat": [65535, 0], "take your cat and": [65535, 0], "your cat and go": [65535, 0], "cat and go and": [65535, 0], "and go and get": [65535, 0], "go and get in": [65535, 0], "and get in the": [65535, 0], "get in the graveyard": [65535, 0], "in the graveyard 'long": [65535, 0], "the graveyard 'long about": [65535, 0], "graveyard 'long about midnight": [65535, 0], "'long about midnight when": [65535, 0], "about midnight when somebody": [65535, 0], "midnight when somebody that": [65535, 0], "when somebody that was": [65535, 0], "somebody that was wicked": [65535, 0], "that was wicked has": [65535, 0], "was wicked has been": [65535, 0], "wicked has been buried": [65535, 0], "has been buried and": [65535, 0], "been buried and when": [65535, 0], "buried and when it's": [65535, 0], "and when it's midnight": [65535, 0], "when it's midnight a": [65535, 0], "it's midnight a devil": [65535, 0], "midnight a devil will": [65535, 0], "a devil will come": [65535, 0], "devil will come or": [65535, 0], "will come or maybe": [65535, 0], "come or maybe two": [65535, 0], "or maybe two or": [65535, 0], "maybe two or three": [65535, 0], "two or three but": [65535, 0], "or three but you": [65535, 0], "three but you can't": [65535, 0], "but you can't see": [65535, 0], "you can't see 'em": [65535, 0], "can't see 'em you": [65535, 0], "see 'em you can": [65535, 0], "'em you can only": [65535, 0], "you can only hear": [65535, 0], "can only hear something": [65535, 0], "only hear something like": [65535, 0], "hear something like the": [65535, 0], "something like the wind": [65535, 0], "like the wind or": [65535, 0], "the wind or maybe": [65535, 0], "wind or maybe hear": [65535, 0], "or maybe hear 'em": [65535, 0], "maybe hear 'em talk": [65535, 0], "hear 'em talk and": [65535, 0], "'em talk and when": [65535, 0], "talk and when they're": [65535, 0], "and when they're taking": [65535, 0], "when they're taking that": [65535, 0], "they're taking that feller": [65535, 0], "taking that feller away": [65535, 0], "that feller away you": [65535, 0], "feller away you heave": [65535, 0], "away you heave your": [65535, 0], "you heave your cat": [65535, 0], "heave your cat after": [65535, 0], "your cat after 'em": [65535, 0], "cat after 'em and": [65535, 0], "after 'em and say": [65535, 0], "'em and say 'devil": [65535, 0], "and say 'devil follow": [65535, 0], "say 'devil follow corpse": [65535, 0], "'devil follow corpse cat": [65535, 0], "follow corpse cat follow": [65535, 0], "corpse cat follow devil": [65535, 0], "cat follow devil warts": [65535, 0], "follow devil warts follow": [65535, 0], "devil warts follow cat": [65535, 0], "warts follow cat i'm": [65535, 0], "follow cat i'm done": [65535, 0], "cat i'm done with": [65535, 0], "i'm done with ye": [65535, 0], "done with ye '": [65535, 0], "with ye ' that'll": [65535, 0], "ye ' that'll fetch": [65535, 0], "' that'll fetch any": [65535, 0], "that'll fetch any wart": [65535, 0], "fetch any wart sounds": [65535, 0], "any wart sounds right": [65535, 0], "wart sounds right d'you": [65535, 0], "sounds right d'you ever": [65535, 0], "right d'you ever try": [65535, 0], "ever try it huck": [65535, 0], "try it huck no": [65535, 0], "it huck no but": [65535, 0], "huck no but old": [65535, 0], "no but old mother": [65535, 0], "but old mother hopkins": [65535, 0], "old mother hopkins told": [65535, 0], "mother hopkins told me": [65535, 0], "hopkins told me well": [65535, 0], "told me well i": [65535, 0], "me well i reckon": [65535, 0], "well i reckon it's": [65535, 0], "i reckon it's so": [65535, 0], "reckon it's so then": [65535, 0], "it's so then becuz": [65535, 0], "so then becuz they": [65535, 0], "then becuz they say": [65535, 0], "becuz they say she's": [65535, 0], "they say she's a": [65535, 0], "say she's a witch": [65535, 0], "she's a witch say": [65535, 0], "a witch say why": [65535, 0], "witch say why tom": [65535, 0], "say why tom i": [65535, 0], "why tom i know": [65535, 0], "tom i know she": [65535, 0], "i know she is": [65535, 0], "know she is she": [65535, 0], "she is she witched": [65535, 0], "is she witched pap": [65535, 0], "she witched pap pap": [65535, 0], "witched pap pap says": [65535, 0], "pap pap says so": [65535, 0], "pap says so his": [65535, 0], "says so his own": [65535, 0], "so his own self": [65535, 0], "his own self he": [65535, 0], "own self he come": [65535, 0], "self he come along": [65535, 0], "he come along one": [65535, 0], "come along one day": [65535, 0], "along one day and": [65535, 0], "one day and he": [65535, 0], "day and he see": [65535, 0], "and he see she": [65535, 0], "he see she was": [65535, 0], "see she was a": [65535, 0], "she was a witching": [65535, 0], "was a witching him": [65535, 0], "a witching him so": [65535, 0], "witching him so he": [65535, 0], "him so he took": [65535, 0], "so he took up": [65535, 0], "he took up a": [65535, 0], "took up a rock": [65535, 0], "up a rock and": [65535, 0], "a rock and if": [65535, 0], "rock and if she": [65535, 0], "and if she hadn't": [65535, 0], "if she hadn't dodged": [65535, 0], "she hadn't dodged he'd": [65535, 0], "hadn't dodged he'd a": [65535, 0], "dodged he'd a got": [65535, 0], "he'd a got her": [65535, 0], "a got her well": [65535, 0], "got her well that": [65535, 0], "her well that very": [65535, 0], "well that very night": [65535, 0], "that very night he": [65535, 0], "very night he rolled": [65535, 0], "night he rolled off'n": [65535, 0], "he rolled off'n a": [65535, 0], "rolled off'n a shed": [65535, 0], "off'n a shed wher'": [65535, 0], "a shed wher' he": [65535, 0], "shed wher' he was": [65535, 0], "wher' he was a": [65535, 0], "he was a layin": [65535, 0], "was a layin drunk": [65535, 0], "a layin drunk and": [65535, 0], "layin drunk and broke": [65535, 0], "drunk and broke his": [65535, 0], "and broke his arm": [65535, 0], "broke his arm why": [65535, 0], "his arm why that's": [65535, 0], "arm why that's awful": [65535, 0], "why that's awful how": [65535, 0], "that's awful how did": [65535, 0], "awful how did he": [65535, 0], "how did he know": [65535, 0], "did he know she": [65535, 0], "he know she was": [65535, 0], "know she was a": [65535, 0], "a witching him lord": [65535, 0], "witching him lord pap": [65535, 0], "him lord pap can": [65535, 0], "lord pap can tell": [65535, 0], "pap can tell easy": [65535, 0], "can tell easy pap": [65535, 0], "tell easy pap says": [65535, 0], "easy pap says when": [65535, 0], "pap says when they": [65535, 0], "says when they keep": [65535, 0], "when they keep looking": [65535, 0], "they keep looking at": [65535, 0], "keep looking at you": [65535, 0], "looking at you right": [65535, 0], "at you right stiddy": [65535, 0], "you right stiddy they're": [65535, 0], "right stiddy they're a": [65535, 0], "stiddy they're a witching": [65535, 0], "they're a witching you": [65535, 0], "a witching you specially": [65535, 0], "witching you specially if": [65535, 0], "you specially if they": [65535, 0], "specially if they mumble": [65535, 0], "if they mumble becuz": [65535, 0], "they mumble becuz when": [65535, 0], "mumble becuz when they": [65535, 0], "becuz when they mumble": [65535, 0], "when they mumble they're": [65535, 0], "they mumble they're saying": [65535, 0], "mumble they're saying the": [65535, 0], "they're saying the lord's": [65535, 0], "saying the lord's prayer": [65535, 0], "the lord's prayer backards": [65535, 0], "lord's prayer backards say": [65535, 0], "prayer backards say hucky": [65535, 0], "backards say hucky when": [65535, 0], "say hucky when you": [65535, 0], "hucky when you going": [65535, 0], "when you going to": [65535, 0], "you going to try": [65535, 0], "going to try the": [65535, 0], "to try the cat": [65535, 0], "try the cat to": [65535, 0], "the cat to night": [65535, 0], "cat to night i": [65535, 0], "to night i reckon": [65535, 0], "night i reckon they'll": [65535, 0], "i reckon they'll come": [65535, 0], "reckon they'll come after": [65535, 0], "they'll come after old": [65535, 0], "come after old hoss": [65535, 0], "after old hoss williams": [65535, 0], "old hoss williams to": [65535, 0], "hoss williams to night": [65535, 0], "williams to night but": [65535, 0], "to night but they": [65535, 0], "night but they buried": [65535, 0], "but they buried him": [65535, 0], "they buried him saturday": [65535, 0], "buried him saturday didn't": [65535, 0], "him saturday didn't they": [65535, 0], "saturday didn't they get": [65535, 0], "didn't they get him": [65535, 0], "they get him saturday": [65535, 0], "get him saturday night": [65535, 0], "him saturday night why": [65535, 0], "saturday night why how": [65535, 0], "night why how you": [65535, 0], "why how you talk": [65535, 0], "how you talk how": [65535, 0], "you talk how could": [65535, 0], "talk how could their": [65535, 0], "how could their charms": [65535, 0], "could their charms work": [65535, 0], "their charms work till": [65535, 0], "charms work till midnight": [65535, 0], "work till midnight and": [65535, 0], "till midnight and then": [65535, 0], "midnight and then it's": [65535, 0], "and then it's sunday": [65535, 0], "then it's sunday devils": [65535, 0], "it's sunday devils don't": [65535, 0], "sunday devils don't slosh": [65535, 0], "devils don't slosh around": [65535, 0], "don't slosh around much": [65535, 0], "slosh around much of": [65535, 0], "around much of a": [65535, 0], "much of a sunday": [65535, 0], "of a sunday i": [65535, 0], "a sunday i don't": [65535, 0], "sunday i don't reckon": [65535, 0], "i don't reckon i": [65535, 0], "don't reckon i never": [65535, 0], "reckon i never thought": [65535, 0], "i never thought of": [65535, 0], "never thought of that": [65535, 0], "thought of that that's": [65535, 0], "of that that's so": [65535, 0], "that that's so lemme": [65535, 0], "that's so lemme go": [65535, 0], "so lemme go with": [65535, 0], "lemme go with you": [65535, 0], "go with you of": [65535, 0], "with you of course": [65535, 0], "you of course if": [65535, 0], "of course if you": [65535, 0], "course if you ain't": [65535, 0], "if you ain't afeard": [65535, 0], "you ain't afeard afeard": [65535, 0], "ain't afeard afeard 'tain't": [65535, 0], "afeard afeard 'tain't likely": [65535, 0], "afeard 'tain't likely will": [65535, 0], "'tain't likely will you": [65535, 0], "likely will you meow": [65535, 0], "will you meow yes": [65535, 0], "you meow yes and": [65535, 0], "meow yes and you": [65535, 0], "yes and you meow": [65535, 0], "and you meow back": [65535, 0], "you meow back if": [65535, 0], "meow back if you": [65535, 0], "back if you get": [65535, 0], "if you get a": [65535, 0], "you get a chance": [65535, 0], "get a chance last": [65535, 0], "a chance last time": [65535, 0], "chance last time you": [65535, 0], "last time you kep'": [65535, 0], "time you kep' me": [65535, 0], "you kep' me a": [65535, 0], "kep' me a meowing": [65535, 0], "me a meowing around": [65535, 0], "a meowing around till": [65535, 0], "meowing around till old": [65535, 0], "around till old hays": [65535, 0], "till old hays went": [65535, 0], "old hays went to": [65535, 0], "hays went to throwing": [65535, 0], "went to throwing rocks": [65535, 0], "to throwing rocks at": [65535, 0], "throwing rocks at me": [65535, 0], "rocks at me and": [65535, 0], "at me and says": [65535, 0], "me and says 'dern": [65535, 0], "and says 'dern that": [65535, 0], "says 'dern that cat": [65535, 0], "'dern that cat '": [65535, 0], "that cat ' and": [65535, 0], "cat ' and so": [65535, 0], "' and so i": [65535, 0], "and so i hove": [65535, 0], "so i hove a": [65535, 0], "i hove a brick": [65535, 0], "hove a brick through": [65535, 0], "a brick through his": [65535, 0], "brick through his window": [65535, 0], "through his window but": [65535, 0], "his window but don't": [65535, 0], "window but don't you": [65535, 0], "but don't you tell": [65535, 0], "don't you tell i": [65535, 0], "you tell i won't": [65535, 0], "tell i won't i": [65535, 0], "i won't i couldn't": [65535, 0], "won't i couldn't meow": [65535, 0], "i couldn't meow that": [65535, 0], "couldn't meow that night": [65535, 0], "meow that night becuz": [65535, 0], "that night becuz auntie": [65535, 0], "night becuz auntie was": [65535, 0], "becuz auntie was watching": [65535, 0], "auntie was watching me": [65535, 0], "was watching me but": [65535, 0], "watching me but i'll": [65535, 0], "me but i'll meow": [65535, 0], "but i'll meow this": [65535, 0], "i'll meow this time": [65535, 0], "meow this time say": [65535, 0], "this time say what's": [65535, 0], "time say what's that": [65535, 0], "say what's that nothing": [65535, 0], "what's that nothing but": [65535, 0], "that nothing but a": [65535, 0], "nothing but a tick": [65535, 0], "but a tick where'd": [65535, 0], "a tick where'd you": [65535, 0], "tick where'd you get": [65535, 0], "you get him out": [65535, 0], "get him out in": [65535, 0], "him out in the": [65535, 0], "out in the woods": [65535, 0], "in the woods what'll": [65535, 0], "the woods what'll you": [65535, 0], "woods what'll you take": [65535, 0], "what'll you take for": [65535, 0], "you take for him": [65535, 0], "take for him i": [65535, 0], "for him i don't": [65535, 0], "him i don't know": [65535, 0], "i don't know i": [65535, 0], "don't know i don't": [65535, 0], "know i don't want": [65535, 0], "don't want to sell": [65535, 0], "want to sell him": [65535, 0], "to sell him all": [65535, 0], "sell him all right": [65535, 0], "him all right it's": [65535, 0], "all right it's a": [65535, 0], "right it's a mighty": [65535, 0], "it's a mighty small": [65535, 0], "a mighty small tick": [65535, 0], "mighty small tick anyway": [65535, 0], "small tick anyway oh": [65535, 0], "tick anyway oh anybody": [65535, 0], "anyway oh anybody can": [65535, 0], "oh anybody can run": [65535, 0], "anybody can run a": [65535, 0], "can run a tick": [65535, 0], "run a tick down": [65535, 0], "a tick down that": [65535, 0], "tick down that don't": [65535, 0], "down that don't belong": [65535, 0], "that don't belong to": [65535, 0], "don't belong to them": [65535, 0], "belong to them i'm": [65535, 0], "to them i'm satisfied": [65535, 0], "them i'm satisfied with": [65535, 0], "i'm satisfied with it": [65535, 0], "satisfied with it it's": [65535, 0], "with it it's a": [65535, 0], "it it's a good": [65535, 0], "it's a good enough": [65535, 0], "a good enough tick": [65535, 0], "good enough tick for": [65535, 0], "enough tick for me": [65535, 0], "tick for me sho": [65535, 0], "for me sho there's": [65535, 0], "me sho there's ticks": [65535, 0], "sho there's ticks a": [65535, 0], "there's ticks a plenty": [65535, 0], "ticks a plenty i": [65535, 0], "a plenty i could": [65535, 0], "plenty i could have": [65535, 0], "i could have a": [65535, 0], "could have a thousand": [65535, 0], "have a thousand of": [65535, 0], "a thousand of 'em": [65535, 0], "thousand of 'em if": [65535, 0], "of 'em if i": [65535, 0], "'em if i wanted": [65535, 0], "if i wanted to": [65535, 0], "i wanted to well": [65535, 0], "wanted to well why": [65535, 0], "to well why don't": [65535, 0], "well why don't you": [65535, 0], "why don't you becuz": [65535, 0], "don't you becuz you": [65535, 0], "you becuz you know": [65535, 0], "becuz you know mighty": [65535, 0], "you know mighty well": [65535, 0], "know mighty well you": [65535, 0], "mighty well you can't": [65535, 0], "well you can't this": [65535, 0], "you can't this is": [65535, 0], "can't this is a": [65535, 0], "this is a pretty": [65535, 0], "is a pretty early": [65535, 0], "a pretty early tick": [65535, 0], "pretty early tick i": [65535, 0], "early tick i reckon": [65535, 0], "tick i reckon it's": [65535, 0], "i reckon it's the": [65535, 0], "reckon it's the first": [65535, 0], "it's the first one": [65535, 0], "the first one i've": [65535, 0], "first one i've seen": [65535, 0], "one i've seen this": [65535, 0], "i've seen this year": [65535, 0], "seen this year say": [65535, 0], "this year say huck": [65535, 0], "year say huck i'll": [65535, 0], "say huck i'll give": [65535, 0], "huck i'll give you": [65535, 0], "i'll give you my": [65535, 0], "give you my tooth": [65535, 0], "you my tooth for": [65535, 0], "my tooth for him": [65535, 0], "tooth for him less": [65535, 0], "for him less see": [65535, 0], "him less see it": [65535, 0], "less see it tom": [65535, 0], "see it tom got": [65535, 0], "it tom got out": [65535, 0], "tom got out a": [65535, 0], "got out a bit": [65535, 0], "out a bit of": [65535, 0], "a bit of paper": [65535, 0], "bit of paper and": [65535, 0], "of paper and carefully": [65535, 0], "paper and carefully unrolled": [65535, 0], "and carefully unrolled it": [65535, 0], "carefully unrolled it huckleberry": [65535, 0], "unrolled it huckleberry viewed": [65535, 0], "it huckleberry viewed it": [65535, 0], "huckleberry viewed it wistfully": [65535, 0], "viewed it wistfully the": [65535, 0], "it wistfully the temptation": [65535, 0], "wistfully the temptation was": [65535, 0], "the temptation was very": [65535, 0], "temptation was very strong": [65535, 0], "was very strong at": [65535, 0], "very strong at last": [65535, 0], "strong at last he": [65535, 0], "at last he said": [65535, 0], "last he said is": [65535, 0], "he said is it": [65535, 0], "said is it genuwyne": [65535, 0], "is it genuwyne tom": [65535, 0], "it genuwyne tom lifted": [65535, 0], "genuwyne tom lifted his": [65535, 0], "tom lifted his lip": [65535, 0], "his lip and showed": [65535, 0], "lip and showed the": [65535, 0], "and showed the vacancy": [65535, 0], "showed the vacancy well": [65535, 0], "the vacancy well all": [65535, 0], "vacancy well all right": [65535, 0], "well all right said": [65535, 0], "all right said huckleberry": [65535, 0], "right said huckleberry it's": [65535, 0], "said huckleberry it's a": [65535, 0], "huckleberry it's a trade": [65535, 0], "it's a trade tom": [65535, 0], "a trade tom enclosed": [65535, 0], "trade tom enclosed the": [65535, 0], "tom enclosed the tick": [65535, 0], "enclosed the tick in": [65535, 0], "the tick in the": [65535, 0], "tick in the percussion": [65535, 0], "in the percussion cap": [65535, 0], "the percussion cap box": [65535, 0], "percussion cap box that": [65535, 0], "cap box that had": [65535, 0], "box that had lately": [65535, 0], "that had lately been": [65535, 0], "had lately been the": [65535, 0], "lately been the pinchbug's": [65535, 0], "been the pinchbug's prison": [65535, 0], "the pinchbug's prison and": [65535, 0], "pinchbug's prison and the": [65535, 0], "prison and the boys": [65535, 0], "and the boys separated": [65535, 0], "the boys separated each": [65535, 0], "boys separated each feeling": [65535, 0], "separated each feeling wealthier": [65535, 0], "each feeling wealthier than": [65535, 0], "feeling wealthier than before": [65535, 0], "wealthier than before when": [65535, 0], "than before when tom": [65535, 0], "before when tom reached": [65535, 0], "when tom reached the": [65535, 0], "tom reached the little": [65535, 0], "reached the little isolated": [65535, 0], "the little isolated frame": [65535, 0], "little isolated frame schoolhouse": [65535, 0], "isolated frame schoolhouse he": [65535, 0], "frame schoolhouse he strode": [65535, 0], "schoolhouse he strode in": [65535, 0], "he strode in briskly": [65535, 0], "strode in briskly with": [65535, 0], "in briskly with the": [65535, 0], "briskly with the manner": [65535, 0], "with the manner of": [65535, 0], "the manner of one": [65535, 0], "manner of one who": [65535, 0], "of one who had": [65535, 0], "one who had come": [65535, 0], "who had come with": [65535, 0], "had come with all": [65535, 0], "come with all honest": [65535, 0], "with all honest speed": [65535, 0], "all honest speed he": [65535, 0], "honest speed he hung": [65535, 0], "speed he hung his": [65535, 0], "he hung his hat": [65535, 0], "hung his hat on": [65535, 0], "his hat on a": [65535, 0], "hat on a peg": [65535, 0], "on a peg and": [65535, 0], "a peg and flung": [65535, 0], "peg and flung himself": [65535, 0], "and flung himself into": [65535, 0], "flung himself into his": [65535, 0], "himself into his seat": [65535, 0], "into his seat with": [65535, 0], "his seat with business": [65535, 0], "seat with business like": [65535, 0], "with business like alacrity": [65535, 0], "business like alacrity the": [65535, 0], "like alacrity the master": [65535, 0], "alacrity the master throned": [65535, 0], "the master throned on": [65535, 0], "master throned on high": [65535, 0], "throned on high in": [65535, 0], "on high in his": [65535, 0], "high in his great": [65535, 0], "in his great splint": [65535, 0], "his great splint bottom": [65535, 0], "great splint bottom arm": [65535, 0], "splint bottom arm chair": [65535, 0], "bottom arm chair was": [65535, 0], "arm chair was dozing": [65535, 0], "chair was dozing lulled": [65535, 0], "was dozing lulled by": [65535, 0], "dozing lulled by the": [65535, 0], "lulled by the drowsy": [65535, 0], "by the drowsy hum": [65535, 0], "the drowsy hum of": [65535, 0], "drowsy hum of study": [65535, 0], "hum of study the": [65535, 0], "of study the interruption": [65535, 0], "study the interruption roused": [65535, 0], "the interruption roused him": [65535, 0], "interruption roused him thomas": [65535, 0], "roused him thomas sawyer": [65535, 0], "him thomas sawyer tom": [65535, 0], "thomas sawyer tom knew": [65535, 0], "sawyer tom knew that": [65535, 0], "tom knew that when": [65535, 0], "knew that when his": [65535, 0], "that when his name": [65535, 0], "when his name was": [65535, 0], "his name was pronounced": [65535, 0], "name was pronounced in": [65535, 0], "was pronounced in full": [65535, 0], "pronounced in full it": [65535, 0], "in full it meant": [65535, 0], "full it meant trouble": [65535, 0], "it meant trouble sir": [65535, 0], "meant trouble sir come": [65535, 0], "trouble sir come up": [65535, 0], "sir come up here": [65535, 0], "come up here now": [65535, 0], "up here now sir": [65535, 0], "here now sir why": [65535, 0], "now sir why are": [65535, 0], "sir why are you": [65535, 0], "why are you late": [65535, 0], "are you late again": [65535, 0], "you late again as": [65535, 0], "late again as usual": [65535, 0], "again as usual tom": [65535, 0], "as usual tom was": [65535, 0], "usual tom was about": [65535, 0], "tom was about to": [65535, 0], "was about to take": [65535, 0], "about to take refuge": [65535, 0], "to take refuge in": [65535, 0], "take refuge in a": [65535, 0], "refuge in a lie": [65535, 0], "in a lie when": [65535, 0], "a lie when he": [65535, 0], "lie when he saw": [65535, 0], "when he saw two": [65535, 0], "he saw two long": [65535, 0], "saw two long tails": [65535, 0], "two long tails of": [65535, 0], "long tails of yellow": [65535, 0], "tails of yellow hair": [65535, 0], "of yellow hair hanging": [65535, 0], "yellow hair hanging down": [65535, 0], "hair hanging down a": [65535, 0], "hanging down a back": [65535, 0], "down a back that": [65535, 0], "a back that he": [65535, 0], "back that he recognized": [65535, 0], "that he recognized by": [65535, 0], "he recognized by the": [65535, 0], "recognized by the electric": [65535, 0], "by the electric sympathy": [65535, 0], "the electric sympathy of": [65535, 0], "electric sympathy of love": [65535, 0], "sympathy of love and": [65535, 0], "of love and by": [65535, 0], "love and by that": [65535, 0], "and by that form": [65535, 0], "by that form was": [65535, 0], "that form was the": [65535, 0], "form was the only": [65535, 0], "was the only vacant": [65535, 0], "the only vacant place": [65535, 0], "only vacant place on": [65535, 0], "vacant place on the": [65535, 0], "place on the girls'": [65535, 0], "on the girls' side": [65535, 0], "the girls' side of": [65535, 0], "girls' side of the": [65535, 0], "side of the school": [65535, 0], "of the school house": [65535, 0], "the school house he": [65535, 0], "school house he instantly": [65535, 0], "house he instantly said": [65535, 0], "he instantly said i": [65535, 0], "instantly said i stopped": [65535, 0], "said i stopped to": [65535, 0], "i stopped to talk": [65535, 0], "stopped to talk with": [65535, 0], "to talk with huckleberry": [65535, 0], "talk with huckleberry finn": [65535, 0], "with huckleberry finn the": [65535, 0], "huckleberry finn the master's": [65535, 0], "finn the master's pulse": [65535, 0], "the master's pulse stood": [65535, 0], "master's pulse stood still": [65535, 0], "pulse stood still and": [65535, 0], "stood still and he": [65535, 0], "still and he stared": [65535, 0], "and he stared helplessly": [65535, 0], "he stared helplessly the": [65535, 0], "stared helplessly the buzz": [65535, 0], "helplessly the buzz of": [65535, 0], "the buzz of study": [65535, 0], "buzz of study ceased": [65535, 0], "of study ceased the": [65535, 0], "study ceased the pupils": [65535, 0], "ceased the pupils wondered": [65535, 0], "the pupils wondered if": [65535, 0], "pupils wondered if this": [65535, 0], "wondered if this foolhardy": [65535, 0], "if this foolhardy boy": [65535, 0], "this foolhardy boy had": [65535, 0], "foolhardy boy had lost": [65535, 0], "boy had lost his": [65535, 0], "had lost his mind": [65535, 0], "lost his mind the": [65535, 0], "his mind the master": [65535, 0], "mind the master said": [65535, 0], "the master said you": [65535, 0], "master said you you": [65535, 0], "said you you did": [65535, 0], "you you did what": [65535, 0], "you did what stopped": [65535, 0], "did what stopped to": [65535, 0], "what stopped to talk": [65535, 0], "with huckleberry finn there": [65535, 0], "huckleberry finn there was": [65535, 0], "finn there was no": [65535, 0], "there was no mistaking": [65535, 0], "was no mistaking the": [65535, 0], "no mistaking the words": [65535, 0], "mistaking the words thomas": [65535, 0], "the words thomas sawyer": [65535, 0], "words thomas sawyer this": [65535, 0], "thomas sawyer this is": [65535, 0], "sawyer this is the": [65535, 0], "this is the most": [65535, 0], "is the most astounding": [65535, 0], "the most astounding confession": [65535, 0], "most astounding confession i": [65535, 0], "astounding confession i have": [65535, 0], "confession i have ever": [65535, 0], "i have ever listened": [65535, 0], "have ever listened to": [65535, 0], "ever listened to no": [65535, 0], "listened to no mere": [65535, 0], "to no mere ferule": [65535, 0], "no mere ferule will": [65535, 0], "mere ferule will answer": [65535, 0], "ferule will answer for": [65535, 0], "will answer for this": [65535, 0], "answer for this offence": [65535, 0], "for this offence take": [65535, 0], "this offence take off": [65535, 0], "offence take off your": [65535, 0], "take off your jacket": [65535, 0], "off your jacket the": [65535, 0], "your jacket the master's": [65535, 0], "jacket the master's arm": [65535, 0], "the master's arm performed": [65535, 0], "master's arm performed until": [65535, 0], "arm performed until it": [65535, 0], "performed until it was": [65535, 0], "until it was tired": [65535, 0], "it was tired and": [65535, 0], "was tired and the": [65535, 0], "tired and the stock": [65535, 0], "and the stock of": [65535, 0], "the stock of switches": [65535, 0], "stock of switches notably": [65535, 0], "of switches notably diminished": [65535, 0], "switches notably diminished then": [65535, 0], "notably diminished then the": [65535, 0], "diminished then the order": [65535, 0], "then the order followed": [65535, 0], "the order followed now": [65535, 0], "order followed now sir": [65535, 0], "followed now sir go": [65535, 0], "now sir go and": [65535, 0], "sir go and sit": [65535, 0], "go and sit with": [65535, 0], "and sit with the": [65535, 0], "sit with the girls": [65535, 0], "with the girls and": [65535, 0], "the girls and let": [65535, 0], "girls and let this": [65535, 0], "and let this be": [65535, 0], "let this be a": [65535, 0], "this be a warning": [65535, 0], "be a warning to": [65535, 0], "a warning to you": [65535, 0], "warning to you the": [65535, 0], "to you the titter": [65535, 0], "you the titter that": [65535, 0], "the titter that rippled": [65535, 0], "titter that rippled around": [65535, 0], "that rippled around the": [65535, 0], "rippled around the room": [65535, 0], "around the room appeared": [65535, 0], "the room appeared to": [65535, 0], "room appeared to abash": [65535, 0], "appeared to abash the": [65535, 0], "to abash the boy": [65535, 0], "abash the boy but": [65535, 0], "the boy but in": [65535, 0], "boy but in reality": [65535, 0], "but in reality that": [65535, 0], "in reality that result": [65535, 0], "reality that result was": [65535, 0], "that result was caused": [65535, 0], "result was caused rather": [65535, 0], "was caused rather more": [65535, 0], "caused rather more by": [65535, 0], "rather more by his": [65535, 0], "more by his worshipful": [65535, 0], "by his worshipful awe": [65535, 0], "his worshipful awe of": [65535, 0], "worshipful awe of his": [65535, 0], "awe of his unknown": [65535, 0], "of his unknown idol": [65535, 0], "his unknown idol and": [65535, 0], "unknown idol and the": [65535, 0], "idol and the dread": [65535, 0], "and the dread pleasure": [65535, 0], "the dread pleasure that": [65535, 0], "dread pleasure that lay": [65535, 0], "pleasure that lay in": [65535, 0], "that lay in his": [65535, 0], "lay in his high": [65535, 0], "in his high good": [65535, 0], "his high good fortune": [65535, 0], "high good fortune he": [65535, 0], "good fortune he sat": [65535, 0], "fortune he sat down": [65535, 0], "he sat down upon": [65535, 0], "sat down upon the": [65535, 0], "down upon the end": [65535, 0], "upon the end of": [65535, 0], "the end of the": [65535, 0], "end of the pine": [65535, 0], "of the pine bench": [65535, 0], "the pine bench and": [65535, 0], "pine bench and the": [65535, 0], "bench and the girl": [65535, 0], "and the girl hitched": [65535, 0], "the girl hitched herself": [65535, 0], "girl hitched herself away": [65535, 0], "hitched herself away from": [65535, 0], "herself away from him": [65535, 0], "away from him with": [65535, 0], "from him with a": [65535, 0], "him with a toss": [65535, 0], "with a toss of": [65535, 0], "a toss of her": [65535, 0], "toss of her head": [65535, 0], "of her head nudges": [65535, 0], "her head nudges and": [65535, 0], "head nudges and winks": [65535, 0], "nudges and winks and": [65535, 0], "and winks and whispers": [65535, 0], "winks and whispers traversed": [65535, 0], "and whispers traversed the": [65535, 0], "whispers traversed the room": [65535, 0], "traversed the room but": [65535, 0], "the room but tom": [65535, 0], "room but tom sat": [65535, 0], "but tom sat still": [65535, 0], "tom sat still with": [65535, 0], "sat still with his": [65535, 0], "still with his arms": [65535, 0], "with his arms upon": [65535, 0], "his arms upon the": [65535, 0], "arms upon the long": [65535, 0], "upon the long low": [65535, 0], "the long low desk": [65535, 0], "long low desk before": [65535, 0], "low desk before him": [65535, 0], "desk before him and": [65535, 0], "before him and seemed": [65535, 0], "him and seemed to": [65535, 0], "and seemed to study": [65535, 0], "seemed to study his": [65535, 0], "to study his book": [65535, 0], "study his book by": [65535, 0], "his book by and": [65535, 0], "book by and by": [65535, 0], "by and by attention": [65535, 0], "and by attention ceased": [65535, 0], "by attention ceased from": [65535, 0], "attention ceased from him": [65535, 0], "ceased from him and": [65535, 0], "from him and the": [65535, 0], "him and the accustomed": [65535, 0], "and the accustomed school": [65535, 0], "the accustomed school murmur": [65535, 0], "accustomed school murmur rose": [65535, 0], "school murmur rose upon": [65535, 0], "murmur rose upon the": [65535, 0], "rose upon the dull": [65535, 0], "upon the dull air": [65535, 0], "the dull air once": [65535, 0], "dull air once more": [65535, 0], "air once more presently": [65535, 0], "once more presently the": [65535, 0], "more presently the boy": [65535, 0], "presently the boy began": [65535, 0], "the boy began to": [65535, 0], "boy began to steal": [65535, 0], "began to steal furtive": [65535, 0], "to steal furtive glances": [65535, 0], "steal furtive glances at": [65535, 0], "furtive glances at the": [65535, 0], "glances at the girl": [65535, 0], "at the girl she": [65535, 0], "the girl she observed": [65535, 0], "girl she observed it": [65535, 0], "she observed it made": [65535, 0], "observed it made a": [65535, 0], "it made a mouth": [65535, 0], "made a mouth at": [65535, 0], "a mouth at him": [65535, 0], "mouth at him and": [65535, 0], "at him and gave": [65535, 0], "him and gave him": [65535, 0], "and gave him the": [65535, 0], "gave him the back": [65535, 0], "him the back of": [65535, 0], "the back of her": [65535, 0], "back of her head": [65535, 0], "of her head for": [65535, 0], "her head for the": [65535, 0], "head for the space": [65535, 0], "for the space of": [65535, 0], "the space of a": [65535, 0], "space of a minute": [65535, 0], "of a minute when": [65535, 0], "a minute when she": [65535, 0], "minute when she cautiously": [65535, 0], "when she cautiously faced": [65535, 0], "she cautiously faced around": [65535, 0], "cautiously faced around again": [65535, 0], "faced around again a": [65535, 0], "around again a peach": [65535, 0], "again a peach lay": [65535, 0], "a peach lay before": [65535, 0], "peach lay before her": [65535, 0], "lay before her she": [65535, 0], "before her she thrust": [65535, 0], "her she thrust it": [65535, 0], "she thrust it away": [65535, 0], "thrust it away tom": [65535, 0], "it away tom gently": [65535, 0], "away tom gently put": [65535, 0], "tom gently put it": [65535, 0], "gently put it back": [65535, 0], "put it back she": [65535, 0], "it back she thrust": [65535, 0], "back she thrust it": [65535, 0], "thrust it away again": [65535, 0], "it away again but": [65535, 0], "away again but with": [65535, 0], "again but with less": [65535, 0], "but with less animosity": [65535, 0], "with less animosity tom": [65535, 0], "less animosity tom patiently": [65535, 0], "animosity tom patiently returned": [65535, 0], "tom patiently returned it": [65535, 0], "patiently returned it to": [65535, 0], "returned it to its": [65535, 0], "it to its place": [65535, 0], "to its place then": [65535, 0], "its place then she": [65535, 0], "place then she let": [65535, 0], "then she let it": [65535, 0], "she let it remain": [65535, 0], "let it remain tom": [65535, 0], "it remain tom scrawled": [65535, 0], "remain tom scrawled on": [65535, 0], "tom scrawled on his": [65535, 0], "scrawled on his slate": [65535, 0], "on his slate please": [65535, 0], "his slate please take": [65535, 0], "slate please take it": [65535, 0], "please take it i": [65535, 0], "take it i got": [65535, 0], "it i got more": [65535, 0], "i got more the": [65535, 0], "got more the girl": [65535, 0], "more the girl glanced": [65535, 0], "the girl glanced at": [65535, 0], "girl glanced at the": [65535, 0], "glanced at the words": [65535, 0], "at the words but": [65535, 0], "the words but made": [65535, 0], "words but made no": [65535, 0], "but made no sign": [65535, 0], "made no sign now": [65535, 0], "no sign now the": [65535, 0], "sign now the boy": [65535, 0], "now the boy began": [65535, 0], "boy began to draw": [65535, 0], "began to draw something": [65535, 0], "to draw something on": [65535, 0], "draw something on the": [65535, 0], "something on the slate": [65535, 0], "on the slate hiding": [65535, 0], "the slate hiding his": [65535, 0], "slate hiding his work": [65535, 0], "hiding his work with": [65535, 0], "his work with his": [65535, 0], "work with his left": [65535, 0], "with his left hand": [65535, 0], "his left hand for": [65535, 0], "left hand for a": [65535, 0], "hand for a time": [65535, 0], "for a time the": [65535, 0], "a time the girl": [65535, 0], "time the girl refused": [65535, 0], "the girl refused to": [65535, 0], "girl refused to notice": [65535, 0], "refused to notice but": [65535, 0], "to notice but her": [65535, 0], "notice but her human": [65535, 0], "but her human curiosity": [65535, 0], "her human curiosity presently": [65535, 0], "human curiosity presently began": [65535, 0], "curiosity presently began to": [65535, 0], "presently began to manifest": [65535, 0], "began to manifest itself": [65535, 0], "to manifest itself by": [65535, 0], "manifest itself by hardly": [65535, 0], "itself by hardly perceptible": [65535, 0], "by hardly perceptible signs": [65535, 0], "hardly perceptible signs the": [65535, 0], "perceptible signs the boy": [65535, 0], "signs the boy worked": [65535, 0], "the boy worked on": [65535, 0], "boy worked on apparently": [65535, 0], "worked on apparently unconscious": [65535, 0], "on apparently unconscious the": [65535, 0], "apparently unconscious the girl": [65535, 0], "unconscious the girl made": [65535, 0], "the girl made a": [65535, 0], "girl made a sort": [65535, 0], "made a sort of": [65535, 0], "a sort of noncommittal": [65535, 0], "sort of noncommittal attempt": [65535, 0], "of noncommittal attempt to": [65535, 0], "noncommittal attempt to see": [65535, 0], "attempt to see but": [65535, 0], "to see but the": [65535, 0], "see but the boy": [65535, 0], "but the boy did": [65535, 0], "the boy did not": [65535, 0], "boy did not betray": [65535, 0], "did not betray that": [65535, 0], "not betray that he": [65535, 0], "betray that he was": [65535, 0], "that he was aware": [65535, 0], "he was aware of": [65535, 0], "was aware of it": [65535, 0], "aware of it at": [65535, 0], "of it at last": [65535, 0], "it at last she": [65535, 0], "at last she gave": [65535, 0], "last she gave in": [65535, 0], "she gave in and": [65535, 0], "gave in and hesitatingly": [65535, 0], "in and hesitatingly whispered": [65535, 0], "and hesitatingly whispered let": [65535, 0], "hesitatingly whispered let me": [65535, 0], "whispered let me see": [65535, 0], "let me see it": [32706, 32829], "me see it tom": [65535, 0], "see it tom partly": [65535, 0], "it tom partly uncovered": [65535, 0], "tom partly uncovered a": [65535, 0], "partly uncovered a dismal": [65535, 0], "uncovered a dismal caricature": [65535, 0], "a dismal caricature of": [65535, 0], "dismal caricature of a": [65535, 0], "caricature of a house": [65535, 0], "of a house with": [65535, 0], "a house with two": [65535, 0], "house with two gable": [65535, 0], "with two gable ends": [65535, 0], "two gable ends to": [65535, 0], "gable ends to it": [65535, 0], "ends to it and": [65535, 0], "to it and a": [65535, 0], "it and a corkscrew": [65535, 0], "and a corkscrew of": [65535, 0], "a corkscrew of smoke": [65535, 0], "corkscrew of smoke issuing": [65535, 0], "of smoke issuing from": [65535, 0], "smoke issuing from the": [65535, 0], "issuing from the chimney": [65535, 0], "from the chimney then": [65535, 0], "the chimney then the": [65535, 0], "chimney then the girl's": [65535, 0], "then the girl's interest": [65535, 0], "the girl's interest began": [65535, 0], "girl's interest began to": [65535, 0], "interest began to fasten": [65535, 0], "began to fasten itself": [65535, 0], "to fasten itself upon": [65535, 0], "fasten itself upon the": [65535, 0], "itself upon the work": [65535, 0], "upon the work and": [65535, 0], "the work and she": [65535, 0], "work and she forgot": [65535, 0], "and she forgot everything": [65535, 0], "she forgot everything else": [65535, 0], "forgot everything else when": [65535, 0], "everything else when it": [65535, 0], "else when it was": [65535, 0], "when it was finished": [65535, 0], "it was finished she": [65535, 0], "was finished she gazed": [65535, 0], "finished she gazed a": [65535, 0], "she gazed a moment": [65535, 0], "gazed a moment then": [65535, 0], "a moment then whispered": [65535, 0], "moment then whispered it's": [65535, 0], "then whispered it's nice": [65535, 0], "whispered it's nice make": [65535, 0], "it's nice make a": [65535, 0], "nice make a man": [65535, 0], "make a man the": [65535, 0], "a man the artist": [65535, 0], "man the artist erected": [65535, 0], "the artist erected a": [65535, 0], "artist erected a man": [65535, 0], "erected a man in": [65535, 0], "a man in the": [65535, 0], "man in the front": [65535, 0], "in the front yard": [65535, 0], "the front yard that": [65535, 0], "front yard that resembled": [65535, 0], "yard that resembled a": [65535, 0], "that resembled a derrick": [65535, 0], "resembled a derrick he": [65535, 0], "a derrick he could": [65535, 0], "derrick he could have": [65535, 0], "he could have stepped": [65535, 0], "could have stepped over": [65535, 0], "have stepped over the": [65535, 0], "stepped over the house": [65535, 0], "over the house but": [65535, 0], "the house but the": [65535, 0], "house but the girl": [65535, 0], "but the girl was": [65535, 0], "the girl was not": [65535, 0], "girl was not hypercritical": [65535, 0], "was not hypercritical she": [65535, 0], "not hypercritical she was": [65535, 0], "hypercritical she was satisfied": [65535, 0], "she was satisfied with": [65535, 0], "was satisfied with the": [65535, 0], "satisfied with the monster": [65535, 0], "with the monster and": [65535, 0], "the monster and whispered": [65535, 0], "monster and whispered it's": [65535, 0], "and whispered it's a": [65535, 0], "whispered it's a beautiful": [65535, 0], "it's a beautiful man": [65535, 0], "a beautiful man now": [65535, 0], "beautiful man now make": [65535, 0], "man now make me": [65535, 0], "now make me coming": [65535, 0], "make me coming along": [65535, 0], "me coming along tom": [65535, 0], "coming along tom drew": [65535, 0], "along tom drew an": [65535, 0], "tom drew an hour": [65535, 0], "drew an hour glass": [65535, 0], "an hour glass with": [65535, 0], "hour glass with a": [65535, 0], "glass with a full": [65535, 0], "with a full moon": [65535, 0], "a full moon and": [65535, 0], "full moon and straw": [65535, 0], "moon and straw limbs": [65535, 0], "and straw limbs to": [65535, 0], "straw limbs to it": [65535, 0], "limbs to it and": [65535, 0], "to it and armed": [65535, 0], "it and armed the": [65535, 0], "and armed the spreading": [65535, 0], "armed the spreading fingers": [65535, 0], "the spreading fingers with": [65535, 0], "spreading fingers with a": [65535, 0], "fingers with a portentous": [65535, 0], "with a portentous fan": [65535, 0], "a portentous fan the": [65535, 0], "portentous fan the girl": [65535, 0], "fan the girl said": [65535, 0], "the girl said it's": [65535, 0], "girl said it's ever": [65535, 0], "said it's ever so": [65535, 0], "it's ever so nice": [65535, 0], "ever so nice i": [65535, 0], "so nice i wish": [65535, 0], "nice i wish i": [65535, 0], "i wish i could": [65535, 0], "wish i could draw": [65535, 0], "i could draw it's": [65535, 0], "could draw it's easy": [65535, 0], "draw it's easy whispered": [65535, 0], "it's easy whispered tom": [65535, 0], "easy whispered tom i'll": [65535, 0], "whispered tom i'll learn": [65535, 0], "tom i'll learn you": [65535, 0], "i'll learn you oh": [65535, 0], "learn you oh will": [65535, 0], "you oh will you": [65535, 0], "oh will you when": [65535, 0], "will you when at": [65535, 0], "you when at noon": [65535, 0], "when at noon do": [65535, 0], "at noon do you": [65535, 0], "noon do you go": [65535, 0], "do you go home": [65535, 0], "you go home to": [65535, 0], "go home to dinner": [65535, 0], "home to dinner i'll": [65535, 0], "to dinner i'll stay": [65535, 0], "dinner i'll stay if": [65535, 0], "i'll stay if you": [65535, 0], "stay if you will": [65535, 0], "if you will good": [65535, 0], "you will good that's": [65535, 0], "will good that's a": [65535, 0], "good that's a whack": [65535, 0], "that's a whack what's": [65535, 0], "a whack what's your": [65535, 0], "whack what's your name": [65535, 0], "what's your name becky": [65535, 0], "your name becky thatcher": [65535, 0], "name becky thatcher what's": [65535, 0], "becky thatcher what's yours": [65535, 0], "thatcher what's yours oh": [65535, 0], "what's yours oh i": [65535, 0], "yours oh i know": [65535, 0], "oh i know it's": [65535, 0], "i know it's thomas": [65535, 0], "know it's thomas sawyer": [65535, 0], "it's thomas sawyer that's": [65535, 0], "thomas sawyer that's the": [65535, 0], "sawyer that's the name": [65535, 0], "that's the name they": [65535, 0], "the name they lick": [65535, 0], "name they lick me": [65535, 0], "they lick me by": [65535, 0], "lick me by i'm": [65535, 0], "me by i'm tom": [65535, 0], "by i'm tom when": [65535, 0], "i'm tom when i'm": [65535, 0], "tom when i'm good": [65535, 0], "when i'm good you": [65535, 0], "i'm good you call": [65535, 0], "good you call me": [65535, 0], "you call me tom": [65535, 0], "call me tom will": [65535, 0], "me tom will you": [65535, 0], "tom will you yes": [65535, 0], "will you yes now": [65535, 0], "you yes now tom": [65535, 0], "yes now tom began": [65535, 0], "now tom began to": [65535, 0], "tom began to scrawl": [65535, 0], "began to scrawl something": [65535, 0], "to scrawl something on": [65535, 0], "scrawl something on the": [65535, 0], "the slate hiding the": [65535, 0], "slate hiding the words": [65535, 0], "hiding the words from": [65535, 0], "the words from the": [65535, 0], "words from the girl": [65535, 0], "from the girl but": [65535, 0], "the girl but she": [65535, 0], "girl but she was": [65535, 0], "but she was not": [65535, 0], "she was not backward": [65535, 0], "was not backward this": [65535, 0], "not backward this time": [65535, 0], "backward this time she": [65535, 0], "this time she begged": [65535, 0], "time she begged to": [65535, 0], "she begged to see": [65535, 0], "begged to see tom": [65535, 0], "to see tom said": [65535, 0], "see tom said oh": [65535, 0], "tom said oh it": [65535, 0], "said oh it ain't": [65535, 0], "oh it ain't anything": [65535, 0], "it ain't anything yes": [65535, 0], "ain't anything yes it": [65535, 0], "anything yes it is": [65535, 0], "yes it is no": [65535, 0], "it is no it": [65535, 0], "is no it ain't": [65535, 0], "no it ain't you": [65535, 0], "it ain't you don't": [65535, 0], "ain't you don't want": [65535, 0], "you don't want to": [65535, 0], "don't want to see": [65535, 0], "want to see yes": [65535, 0], "to see yes i": [65535, 0], "see yes i do": [65535, 0], "yes i do indeed": [65535, 0], "i do indeed i": [65535, 0], "do indeed i do": [65535, 0], "indeed i do please": [65535, 0], "i do please let": [65535, 0], "do please let me": [65535, 0], "please let me you'll": [65535, 0], "let me you'll tell": [65535, 0], "me you'll tell no": [65535, 0], "you'll tell no i": [65535, 0], "tell no i won't": [65535, 0], "no i won't deed": [65535, 0], "i won't deed and": [65535, 0], "won't deed and deed": [65535, 0], "deed and deed and": [65535, 0], "and deed and double": [65535, 0], "deed and double deed": [65535, 0], "and double deed won't": [65535, 0], "double deed won't you": [65535, 0], "deed won't you won't": [65535, 0], "won't you won't tell": [65535, 0], "you won't tell anybody": [65535, 0], "won't tell anybody at": [65535, 0], "tell anybody at all": [65535, 0], "anybody at all ever": [65535, 0], "at all ever as": [65535, 0], "all ever as long": [65535, 0], "ever as long as": [65535, 0], "as long as you": [65535, 0], "long as you live": [65535, 0], "as you live no": [65535, 0], "you live no i": [65535, 0], "live no i won't": [65535, 0], "no i won't ever": [65535, 0], "i won't ever tell": [65535, 0], "won't ever tell anybody": [65535, 0], "ever tell anybody now": [65535, 0], "tell anybody now let": [65535, 0], "anybody now let me": [65535, 0], "now let me oh": [65535, 0], "let me oh you": [65535, 0], "me oh you don't": [65535, 0], "oh you don't want": [65535, 0], "want to see now": [65535, 0], "to see now that": [65535, 0], "see now that you": [65535, 0], "now that you treat": [65535, 0], "that you treat me": [65535, 0], "you treat me so": [65535, 0], "treat me so i": [65535, 0], "me so i will": [65535, 0], "so i will see": [65535, 0], "i will see and": [65535, 0], "will see and she": [65535, 0], "see and she put": [65535, 0], "and she put her": [65535, 0], "she put her small": [65535, 0], "put her small hand": [65535, 0], "her small hand upon": [65535, 0], "small hand upon his": [65535, 0], "hand upon his and": [65535, 0], "upon his and a": [65535, 0], "his and a little": [65535, 0], "and a little scuffle": [65535, 0], "a little scuffle ensued": [65535, 0], "little scuffle ensued tom": [65535, 0], "scuffle ensued tom pretending": [65535, 0], "ensued tom pretending to": [65535, 0], "tom pretending to resist": [65535, 0], "pretending to resist in": [65535, 0], "to resist in earnest": [65535, 0], "resist in earnest but": [65535, 0], "in earnest but letting": [65535, 0], "earnest but letting his": [65535, 0], "but letting his hand": [65535, 0], "letting his hand slip": [65535, 0], "his hand slip by": [65535, 0], "hand slip by degrees": [65535, 0], "slip by degrees till": [65535, 0], "by degrees till these": [65535, 0], "degrees till these words": [65535, 0], "till these words were": [65535, 0], "these words were revealed": [65535, 0], "words were revealed i": [65535, 0], "were revealed i love": [65535, 0], "revealed i love you": [65535, 0], "i love you oh": [65535, 0], "love you oh you": [65535, 0], "you oh you bad": [65535, 0], "oh you bad thing": [65535, 0], "you bad thing and": [65535, 0], "bad thing and she": [65535, 0], "thing and she hit": [65535, 0], "and she hit his": [65535, 0], "she hit his hand": [65535, 0], "hit his hand a": [65535, 0], "his hand a smart": [65535, 0], "hand a smart rap": [65535, 0], "a smart rap but": [65535, 0], "smart rap but reddened": [65535, 0], "rap but reddened and": [65535, 0], "but reddened and looked": [65535, 0], "reddened and looked pleased": [65535, 0], "and looked pleased nevertheless": [65535, 0], "looked pleased nevertheless just": [65535, 0], "pleased nevertheless just at": [65535, 0], "nevertheless just at this": [65535, 0], "just at this juncture": [65535, 0], "at this juncture the": [65535, 0], "this juncture the boy": [65535, 0], "juncture the boy felt": [65535, 0], "boy felt a slow": [65535, 0], "felt a slow fateful": [65535, 0], "a slow fateful grip": [65535, 0], "slow fateful grip closing": [65535, 0], "fateful grip closing on": [65535, 0], "grip closing on his": [65535, 0], "closing on his ear": [65535, 0], "on his ear and": [65535, 0], "his ear and a": [65535, 0], "ear and a steady": [65535, 0], "and a steady lifting": [65535, 0], "a steady lifting impulse": [65535, 0], "steady lifting impulse in": [65535, 0], "lifting impulse in that": [65535, 0], "impulse in that vise": [65535, 0], "in that vise he": [65535, 0], "that vise he was": [65535, 0], "vise he was borne": [65535, 0], "he was borne across": [65535, 0], "was borne across the": [65535, 0], "borne across the house": [65535, 0], "across the house and": [65535, 0], "the house and deposited": [65535, 0], "house and deposited in": [65535, 0], "and deposited in his": [65535, 0], "deposited in his own": [65535, 0], "in his own seat": [65535, 0], "his own seat under": [65535, 0], "own seat under a": [65535, 0], "seat under a peppering": [65535, 0], "under a peppering fire": [65535, 0], "a peppering fire of": [65535, 0], "peppering fire of giggles": [65535, 0], "fire of giggles from": [65535, 0], "of giggles from the": [65535, 0], "giggles from the whole": [65535, 0], "from the whole school": [65535, 0], "the whole school then": [65535, 0], "whole school then the": [65535, 0], "school then the master": [65535, 0], "then the master stood": [65535, 0], "the master stood over": [65535, 0], "master stood over him": [65535, 0], "stood over him during": [65535, 0], "over him during a": [65535, 0], "him during a few": [65535, 0], "during a few awful": [65535, 0], "a few awful moments": [65535, 0], "few awful moments and": [65535, 0], "awful moments and finally": [65535, 0], "moments and finally moved": [65535, 0], "and finally moved away": [65535, 0], "finally moved away to": [65535, 0], "moved away to his": [65535, 0], "away to his throne": [65535, 0], "to his throne without": [65535, 0], "his throne without saying": [65535, 0], "throne without saying a": [65535, 0], "without saying a word": [65535, 0], "saying a word but": [65535, 0], "a word but although": [65535, 0], "word but although tom's": [65535, 0], "but although tom's ear": [65535, 0], "although tom's ear tingled": [65535, 0], "tom's ear tingled his": [65535, 0], "ear tingled his heart": [65535, 0], "tingled his heart was": [65535, 0], "his heart was jubilant": [65535, 0], "heart was jubilant as": [65535, 0], "was jubilant as the": [65535, 0], "jubilant as the school": [65535, 0], "as the school quieted": [65535, 0], "the school quieted down": [65535, 0], "school quieted down tom": [65535, 0], "quieted down tom made": [65535, 0], "down tom made an": [65535, 0], "tom made an honest": [65535, 0], "made an honest effort": [65535, 0], "an honest effort to": [65535, 0], "honest effort to study": [65535, 0], "effort to study but": [65535, 0], "to study but the": [65535, 0], "study but the turmoil": [65535, 0], "but the turmoil within": [65535, 0], "the turmoil within him": [65535, 0], "turmoil within him was": [65535, 0], "within him was too": [65535, 0], "him was too great": [65535, 0], "was too great in": [65535, 0], "too great in turn": [65535, 0], "great in turn he": [65535, 0], "in turn he took": [65535, 0], "turn he took his": [65535, 0], "he took his place": [65535, 0], "took his place in": [65535, 0], "his place in the": [65535, 0], "place in the reading": [65535, 0], "in the reading class": [65535, 0], "the reading class and": [65535, 0], "reading class and made": [65535, 0], "class and made a": [65535, 0], "and made a botch": [65535, 0], "made a botch of": [65535, 0], "a botch of it": [65535, 0], "botch of it then": [65535, 0], "of it then in": [65535, 0], "it then in the": [65535, 0], "then in the geography": [65535, 0], "in the geography class": [65535, 0], "the geography class and": [65535, 0], "geography class and turned": [65535, 0], "class and turned lakes": [65535, 0], "and turned lakes into": [65535, 0], "turned lakes into mountains": [65535, 0], "lakes into mountains mountains": [65535, 0], "into mountains mountains into": [65535, 0], "mountains mountains into rivers": [65535, 0], "mountains into rivers and": [65535, 0], "into rivers and rivers": [65535, 0], "rivers and rivers into": [65535, 0], "and rivers into continents": [65535, 0], "rivers into continents till": [65535, 0], "into continents till chaos": [65535, 0], "continents till chaos was": [65535, 0], "till chaos was come": [65535, 0], "chaos was come again": [65535, 0], "was come again then": [65535, 0], "come again then in": [65535, 0], "again then in the": [65535, 0], "then in the spelling": [65535, 0], "in the spelling class": [65535, 0], "the spelling class and": [65535, 0], "spelling class and got": [65535, 0], "class and got turned": [65535, 0], "and got turned down": [65535, 0], "got turned down by": [65535, 0], "turned down by a": [65535, 0], "down by a succession": [65535, 0], "by a succession of": [65535, 0], "a succession of mere": [65535, 0], "succession of mere baby": [65535, 0], "of mere baby words": [65535, 0], "mere baby words till": [65535, 0], "baby words till he": [65535, 0], "words till he brought": [65535, 0], "till he brought up": [65535, 0], "he brought up at": [65535, 0], "brought up at the": [65535, 0], "up at the foot": [65535, 0], "at the foot and": [65535, 0], "the foot and yielded": [65535, 0], "foot and yielded up": [65535, 0], "and yielded up the": [65535, 0], "yielded up the pewter": [65535, 0], "up the pewter medal": [65535, 0], "the pewter medal which": [65535, 0], "pewter medal which he": [65535, 0], "medal which he had": [65535, 0], "which he had worn": [65535, 0], "he had worn with": [65535, 0], "had worn with ostentation": [65535, 0], "worn with ostentation for": [65535, 0], "with ostentation for months": [65535, 0], "monday morning found tom sawyer": [65535, 0], "morning found tom sawyer miserable": [65535, 0], "found tom sawyer miserable monday": [65535, 0], "tom sawyer miserable monday morning": [65535, 0], "sawyer miserable monday morning always": [65535, 0], "miserable monday morning always found": [65535, 0], "monday morning always found him": [65535, 0], "morning always found him so": [65535, 0], "always found him so because": [65535, 0], "found him so because it": [65535, 0], "him so because it began": [65535, 0], "so because it began another": [65535, 0], "because it began another week's": [65535, 0], "it began another week's slow": [65535, 0], "began another week's slow suffering": [65535, 0], "another week's slow suffering in": [65535, 0], "week's slow suffering in school": [65535, 0], "slow suffering in school he": [65535, 0], "suffering in school he generally": [65535, 0], "in school he generally began": [65535, 0], "school he generally began that": [65535, 0], "he generally began that day": [65535, 0], "generally began that day with": [65535, 0], "began that day with wishing": [65535, 0], "that day with wishing he": [65535, 0], "day with wishing he had": [65535, 0], "with wishing he had had": [65535, 0], "wishing he had had no": [65535, 0], "he had had no intervening": [65535, 0], "had had no intervening holiday": [65535, 0], "had no intervening holiday it": [65535, 0], "no intervening holiday it made": [65535, 0], "intervening holiday it made the": [65535, 0], "holiday it made the going": [65535, 0], "it made the going into": [65535, 0], "made the going into captivity": [65535, 0], "the going into captivity and": [65535, 0], "going into captivity and fetters": [65535, 0], "into captivity and fetters again": [65535, 0], "captivity and fetters again so": [65535, 0], "and fetters again so much": [65535, 0], "fetters again so much more": [65535, 0], "again so much more odious": [65535, 0], "so much more odious tom": [65535, 0], "much more odious tom lay": [65535, 0], "more odious tom lay thinking": [65535, 0], "odious tom lay thinking presently": [65535, 0], "tom lay thinking presently it": [65535, 0], "lay thinking presently it occurred": [65535, 0], "thinking presently it occurred to": [65535, 0], "presently it occurred to him": [65535, 0], "it occurred to him that": [65535, 0], "occurred to him that he": [65535, 0], "to him that he wished": [65535, 0], "him that he wished he": [65535, 0], "that he wished he was": [65535, 0], "he wished he was sick": [65535, 0], "wished he was sick then": [65535, 0], "he was sick then he": [65535, 0], "was sick then he could": [65535, 0], "sick then he could stay": [65535, 0], "then he could stay home": [65535, 0], "he could stay home from": [65535, 0], "could stay home from school": [65535, 0], "stay home from school here": [65535, 0], "home from school here was": [65535, 0], "from school here was a": [65535, 0], "school here was a vague": [65535, 0], "here was a vague possibility": [65535, 0], "was a vague possibility he": [65535, 0], "a vague possibility he canvassed": [65535, 0], "vague possibility he canvassed his": [65535, 0], "possibility he canvassed his system": [65535, 0], "he canvassed his system no": [65535, 0], "canvassed his system no ailment": [65535, 0], "his system no ailment was": [65535, 0], "system no ailment was found": [65535, 0], "no ailment was found and": [65535, 0], "ailment was found and he": [65535, 0], "was found and he investigated": [65535, 0], "found and he investigated again": [65535, 0], "and he investigated again this": [65535, 0], "he investigated again this time": [65535, 0], "investigated again this time he": [65535, 0], "again this time he thought": [65535, 0], "this time he thought he": [65535, 0], "time he thought he could": [65535, 0], "he thought he could detect": [65535, 0], "thought he could detect colicky": [65535, 0], "he could detect colicky symptoms": [65535, 0], "could detect colicky symptoms and": [65535, 0], "detect colicky symptoms and he": [65535, 0], "colicky symptoms and he began": [65535, 0], "symptoms and he began to": [65535, 0], "and he began to encourage": [65535, 0], "he began to encourage them": [65535, 0], "began to encourage them with": [65535, 0], "to encourage them with considerable": [65535, 0], "encourage them with considerable hope": [65535, 0], "them with considerable hope but": [65535, 0], "with considerable hope but they": [65535, 0], "considerable hope but they soon": [65535, 0], "hope but they soon grew": [65535, 0], "but they soon grew feeble": [65535, 0], "they soon grew feeble and": [65535, 0], "soon grew feeble and presently": [65535, 0], "grew feeble and presently died": [65535, 0], "feeble and presently died wholly": [65535, 0], "and presently died wholly away": [65535, 0], "presently died wholly away he": [65535, 0], "died wholly away he reflected": [65535, 0], "wholly away he reflected further": [65535, 0], "away he reflected further suddenly": [65535, 0], "he reflected further suddenly he": [65535, 0], "reflected further suddenly he discovered": [65535, 0], "further suddenly he discovered something": [65535, 0], "suddenly he discovered something one": [65535, 0], "he discovered something one of": [65535, 0], "discovered something one of his": [65535, 0], "something one of his upper": [65535, 0], "one of his upper front": [65535, 0], "of his upper front teeth": [65535, 0], "his upper front teeth was": [65535, 0], "upper front teeth was loose": [65535, 0], "front teeth was loose this": [65535, 0], "teeth was loose this was": [65535, 0], "was loose this was lucky": [65535, 0], "loose this was lucky he": [65535, 0], "this was lucky he was": [65535, 0], "was lucky he was about": [65535, 0], "lucky he was about to": [65535, 0], "he was about to begin": [65535, 0], "was about to begin to": [65535, 0], "about to begin to groan": [65535, 0], "to begin to groan as": [65535, 0], "begin to groan as a": [65535, 0], "to groan as a starter": [65535, 0], "groan as a starter as": [65535, 0], "as a starter as he": [65535, 0], "a starter as he called": [65535, 0], "starter as he called it": [65535, 0], "as he called it when": [65535, 0], "he called it when it": [65535, 0], "called it when it occurred": [65535, 0], "it when it occurred to": [65535, 0], "when it occurred to him": [65535, 0], "occurred to him that if": [65535, 0], "to him that if he": [65535, 0], "him that if he came": [65535, 0], "that if he came into": [65535, 0], "if he came into court": [65535, 0], "he came into court with": [65535, 0], "came into court with that": [65535, 0], "into court with that argument": [65535, 0], "court with that argument his": [65535, 0], "with that argument his aunt": [65535, 0], "that argument his aunt would": [65535, 0], "argument his aunt would pull": [65535, 0], "his aunt would pull it": [65535, 0], "aunt would pull it out": [65535, 0], "would pull it out and": [65535, 0], "pull it out and that": [65535, 0], "it out and that would": [65535, 0], "out and that would hurt": [65535, 0], "and that would hurt so": [65535, 0], "that would hurt so he": [65535, 0], "would hurt so he thought": [65535, 0], "hurt so he thought he": [65535, 0], "so he thought he would": [65535, 0], "he thought he would hold": [65535, 0], "thought he would hold the": [65535, 0], "he would hold the tooth": [65535, 0], "would hold the tooth in": [65535, 0], "hold the tooth in reserve": [65535, 0], "the tooth in reserve for": [65535, 0], "tooth in reserve for the": [65535, 0], "in reserve for the present": [65535, 0], "reserve for the present and": [65535, 0], "for the present and seek": [65535, 0], "the present and seek further": [65535, 0], "present and seek further nothing": [65535, 0], "and seek further nothing offered": [65535, 0], "seek further nothing offered for": [65535, 0], "further nothing offered for some": [65535, 0], "nothing offered for some little": [65535, 0], "offered for some little time": [65535, 0], "for some little time and": [65535, 0], "some little time and then": [65535, 0], "little time and then he": [65535, 0], "time and then he remembered": [65535, 0], "and then he remembered hearing": [65535, 0], "then he remembered hearing the": [65535, 0], "he remembered hearing the doctor": [65535, 0], "remembered hearing the doctor tell": [65535, 0], "hearing the doctor tell about": [65535, 0], "the doctor tell about a": [65535, 0], "doctor tell about a certain": [65535, 0], "tell about a certain thing": [65535, 0], "about a certain thing that": [65535, 0], "a certain thing that laid": [65535, 0], "certain thing that laid up": [65535, 0], "thing that laid up a": [65535, 0], "that laid up a patient": [65535, 0], "laid up a patient for": [65535, 0], "up a patient for two": [65535, 0], "a patient for two or": [65535, 0], "patient for two or three": [65535, 0], "for two or three weeks": [65535, 0], "two or three weeks and": [65535, 0], "or three weeks and threatened": [65535, 0], "three weeks and threatened to": [65535, 0], "weeks and threatened to make": [65535, 0], "and threatened to make him": [65535, 0], "threatened to make him lose": [65535, 0], "to make him lose a": [65535, 0], "make him lose a finger": [65535, 0], "him lose a finger so": [65535, 0], "lose a finger so the": [65535, 0], "a finger so the boy": [65535, 0], "finger so the boy eagerly": [65535, 0], "so the boy eagerly drew": [65535, 0], "the boy eagerly drew his": [65535, 0], "boy eagerly drew his sore": [65535, 0], "eagerly drew his sore toe": [65535, 0], "drew his sore toe from": [65535, 0], "his sore toe from under": [65535, 0], "sore toe from under the": [65535, 0], "toe from under the sheet": [65535, 0], "from under the sheet and": [65535, 0], "under the sheet and held": [65535, 0], "the sheet and held it": [65535, 0], "sheet and held it up": [65535, 0], "and held it up for": [65535, 0], "held it up for inspection": [65535, 0], "it up for inspection but": [65535, 0], "up for inspection but now": [65535, 0], "for inspection but now he": [65535, 0], "inspection but now he did": [65535, 0], "but now he did not": [65535, 0], "now he did not know": [65535, 0], "he did not know the": [65535, 0], "did not know the necessary": [65535, 0], "not know the necessary symptoms": [65535, 0], "know the necessary symptoms however": [65535, 0], "the necessary symptoms however it": [65535, 0], "necessary symptoms however it seemed": [65535, 0], "symptoms however it seemed well": [65535, 0], "however it seemed well worth": [65535, 0], "it seemed well worth while": [65535, 0], "seemed well worth while to": [65535, 0], "well worth while to chance": [65535, 0], "worth while to chance it": [65535, 0], "while to chance it so": [65535, 0], "to chance it so he": [65535, 0], "chance it so he fell": [65535, 0], "it so he fell to": [65535, 0], "so he fell to groaning": [65535, 0], "he fell to groaning with": [65535, 0], "fell to groaning with considerable": [65535, 0], "to groaning with considerable spirit": [65535, 0], "groaning with considerable spirit but": [65535, 0], "with considerable spirit but sid": [65535, 0], "considerable spirit but sid slept": [65535, 0], "spirit but sid slept on": [65535, 0], "but sid slept on unconscious": [65535, 0], "sid slept on unconscious tom": [65535, 0], "slept on unconscious tom groaned": [65535, 0], "on unconscious tom groaned louder": [65535, 0], "unconscious tom groaned louder and": [65535, 0], "tom groaned louder and fancied": [65535, 0], "groaned louder and fancied that": [65535, 0], "louder and fancied that he": [65535, 0], "and fancied that he began": [65535, 0], "fancied that he began to": [65535, 0], "that he began to feel": [65535, 0], "he began to feel pain": [65535, 0], "began to feel pain in": [65535, 0], "to feel pain in the": [65535, 0], "feel pain in the toe": [65535, 0], "pain in the toe no": [65535, 0], "in the toe no result": [65535, 0], "the toe no result from": [65535, 0], "toe no result from sid": [65535, 0], "no result from sid tom": [65535, 0], "result from sid tom was": [65535, 0], "from sid tom was panting": [65535, 0], "sid tom was panting with": [65535, 0], "tom was panting with his": [65535, 0], "was panting with his exertions": [65535, 0], "panting with his exertions by": [65535, 0], "with his exertions by this": [65535, 0], "his exertions by this time": [65535, 0], "exertions by this time he": [65535, 0], "by this time he took": [65535, 0], "this time he took a": [65535, 0], "time he took a rest": [65535, 0], "he took a rest and": [65535, 0], "took a rest and then": [65535, 0], "a rest and then swelled": [65535, 0], "rest and then swelled himself": [65535, 0], "and then swelled himself up": [65535, 0], "then swelled himself up and": [65535, 0], "swelled himself up and fetched": [65535, 0], "himself up and fetched a": [65535, 0], "up and fetched a succession": [65535, 0], "and fetched a succession of": [65535, 0], "fetched a succession of admirable": [65535, 0], "a succession of admirable groans": [65535, 0], "succession of admirable groans sid": [65535, 0], "of admirable groans sid snored": [65535, 0], "admirable groans sid snored on": [65535, 0], "groans sid snored on tom": [65535, 0], "sid snored on tom was": [65535, 0], "snored on tom was aggravated": [65535, 0], "on tom was aggravated he": [65535, 0], "tom was aggravated he said": [65535, 0], "was aggravated he said sid": [65535, 0], "aggravated he said sid sid": [65535, 0], "he said sid sid and": [65535, 0], "said sid sid and shook": [65535, 0], "sid sid and shook him": [65535, 0], "sid and shook him this": [65535, 0], "and shook him this course": [65535, 0], "shook him this course worked": [65535, 0], "him this course worked well": [65535, 0], "this course worked well and": [65535, 0], "course worked well and tom": [65535, 0], "worked well and tom began": [65535, 0], "well and tom began to": [65535, 0], "and tom began to groan": [65535, 0], "tom began to groan again": [65535, 0], "began to groan again sid": [65535, 0], "to groan again sid yawned": [65535, 0], "groan again sid yawned stretched": [65535, 0], "again sid yawned stretched then": [65535, 0], "sid yawned stretched then brought": [65535, 0], "yawned stretched then brought himself": [65535, 0], "stretched then brought himself up": [65535, 0], "then brought himself up on": [65535, 0], "brought himself up on his": [65535, 0], "himself up on his elbow": [65535, 0], "up on his elbow with": [65535, 0], "on his elbow with a": [65535, 0], "his elbow with a snort": [65535, 0], "elbow with a snort and": [65535, 0], "with a snort and began": [65535, 0], "a snort and began to": [65535, 0], "snort and began to stare": [65535, 0], "and began to stare at": [65535, 0], "began to stare at tom": [65535, 0], "to stare at tom tom": [65535, 0], "stare at tom tom went": [65535, 0], "at tom tom went on": [65535, 0], "tom tom went on groaning": [65535, 0], "tom went on groaning sid": [65535, 0], "went on groaning sid said": [65535, 0], "on groaning sid said tom": [65535, 0], "groaning sid said tom say": [65535, 0], "sid said tom say tom": [65535, 0], "said tom say tom no": [65535, 0], "tom say tom no response": [65535, 0], "say tom no response here": [65535, 0], "tom no response here tom": [65535, 0], "no response here tom tom": [65535, 0], "response here tom tom what": [65535, 0], "here tom tom what is": [65535, 0], "tom tom what is the": [65535, 0], "tom what is the matter": [65535, 0], "what is the matter tom": [65535, 0], "is the matter tom and": [65535, 0], "the matter tom and he": [65535, 0], "matter tom and he shook": [65535, 0], "tom and he shook him": [65535, 0], "and he shook him and": [65535, 0], "he shook him and looked": [65535, 0], "shook him and looked in": [65535, 0], "him and looked in his": [65535, 0], "and looked in his face": [65535, 0], "looked in his face anxiously": [65535, 0], "in his face anxiously tom": [65535, 0], "his face anxiously tom moaned": [65535, 0], "face anxiously tom moaned out": [65535, 0], "anxiously tom moaned out oh": [65535, 0], "tom moaned out oh don't": [65535, 0], "moaned out oh don't sid": [65535, 0], "out oh don't sid don't": [65535, 0], "oh don't sid don't joggle": [65535, 0], "don't sid don't joggle me": [65535, 0], "sid don't joggle me why": [65535, 0], "don't joggle me why what's": [65535, 0], "joggle me why what's the": [65535, 0], "me why what's the matter": [65535, 0], "why what's the matter tom": [65535, 0], "what's the matter tom i": [65535, 0], "the matter tom i must": [65535, 0], "matter tom i must call": [65535, 0], "tom i must call auntie": [65535, 0], "i must call auntie no": [65535, 0], "must call auntie no never": [65535, 0], "call auntie no never mind": [65535, 0], "auntie no never mind it'll": [65535, 0], "no never mind it'll be": [65535, 0], "never mind it'll be over": [65535, 0], "mind it'll be over by": [65535, 0], "it'll be over by and": [65535, 0], "be over by and by": [65535, 0], "over by and by maybe": [65535, 0], "by and by maybe don't": [65535, 0], "and by maybe don't call": [65535, 0], "by maybe don't call anybody": [65535, 0], "maybe don't call anybody but": [65535, 0], "don't call anybody but i": [65535, 0], "call anybody but i must": [65535, 0], "anybody but i must don't": [65535, 0], "but i must don't groan": [65535, 0], "i must don't groan so": [65535, 0], "must don't groan so tom": [65535, 0], "don't groan so tom it's": [65535, 0], "groan so tom it's awful": [65535, 0], "so tom it's awful how": [65535, 0], "tom it's awful how long": [65535, 0], "it's awful how long you": [65535, 0], "awful how long you been": [65535, 0], "how long you been this": [65535, 0], "long you been this way": [65535, 0], "you been this way hours": [65535, 0], "been this way hours ouch": [65535, 0], "this way hours ouch oh": [65535, 0], "way hours ouch oh don't": [65535, 0], "hours ouch oh don't stir": [65535, 0], "ouch oh don't stir so": [65535, 0], "oh don't stir so sid": [65535, 0], "don't stir so sid you'll": [65535, 0], "stir so sid you'll kill": [65535, 0], "so sid you'll kill me": [65535, 0], "sid you'll kill me tom": [65535, 0], "you'll kill me tom why": [65535, 0], "kill me tom why didn't": [65535, 0], "me tom why didn't you": [65535, 0], "tom why didn't you wake": [65535, 0], "why didn't you wake me": [65535, 0], "didn't you wake me sooner": [65535, 0], "you wake me sooner oh": [65535, 0], "wake me sooner oh tom": [65535, 0], "me sooner oh tom don't": [65535, 0], "sooner oh tom don't it": [65535, 0], "oh tom don't it makes": [65535, 0], "tom don't it makes my": [65535, 0], "don't it makes my flesh": [65535, 0], "it makes my flesh crawl": [65535, 0], "makes my flesh crawl to": [65535, 0], "my flesh crawl to hear": [65535, 0], "flesh crawl to hear you": [65535, 0], "crawl to hear you tom": [65535, 0], "to hear you tom what": [65535, 0], "hear you tom what is": [65535, 0], "you tom what is the": [65535, 0], "what is the matter i": [65535, 0], "is the matter i forgive": [65535, 0], "the matter i forgive you": [65535, 0], "matter i forgive you everything": [65535, 0], "i forgive you everything sid": [65535, 0], "forgive you everything sid groan": [65535, 0], "you everything sid groan everything": [65535, 0], "everything sid groan everything you've": [65535, 0], "sid groan everything you've ever": [65535, 0], "groan everything you've ever done": [65535, 0], "everything you've ever done to": [65535, 0], "you've ever done to me": [65535, 0], "ever done to me when": [65535, 0], "done to me when i'm": [65535, 0], "to me when i'm gone": [65535, 0], "me when i'm gone oh": [65535, 0], "when i'm gone oh tom": [65535, 0], "i'm gone oh tom you": [65535, 0], "gone oh tom you ain't": [65535, 0], "oh tom you ain't dying": [65535, 0], "tom you ain't dying are": [65535, 0], "you ain't dying are you": [65535, 0], "ain't dying are you don't": [65535, 0], "dying are you don't tom": [65535, 0], "are you don't tom oh": [65535, 0], "you don't tom oh don't": [65535, 0], "don't tom oh don't maybe": [65535, 0], "tom oh don't maybe i": [65535, 0], "oh don't maybe i forgive": [65535, 0], "don't maybe i forgive everybody": [65535, 0], "maybe i forgive everybody sid": [65535, 0], "i forgive everybody sid groan": [65535, 0], "forgive everybody sid groan tell": [65535, 0], "everybody sid groan tell 'em": [65535, 0], "sid groan tell 'em so": [65535, 0], "groan tell 'em so sid": [65535, 0], "tell 'em so sid and": [65535, 0], "'em so sid and sid": [65535, 0], "so sid and sid you": [65535, 0], "sid and sid you give": [65535, 0], "and sid you give my": [65535, 0], "sid you give my window": [65535, 0], "you give my window sash": [65535, 0], "give my window sash and": [65535, 0], "my window sash and my": [65535, 0], "window sash and my cat": [65535, 0], "sash and my cat with": [65535, 0], "and my cat with one": [65535, 0], "my cat with one eye": [65535, 0], "cat with one eye to": [65535, 0], "with one eye to that": [65535, 0], "one eye to that new": [65535, 0], "eye to that new girl": [65535, 0], "to that new girl that's": [65535, 0], "that new girl that's come": [65535, 0], "new girl that's come to": [65535, 0], "girl that's come to town": [65535, 0], "that's come to town and": [65535, 0], "come to town and tell": [65535, 0], "to town and tell her": [65535, 0], "town and tell her but": [65535, 0], "and tell her but sid": [65535, 0], "tell her but sid had": [65535, 0], "her but sid had snatched": [65535, 0], "but sid had snatched his": [65535, 0], "sid had snatched his clothes": [65535, 0], "had snatched his clothes and": [65535, 0], "snatched his clothes and gone": [65535, 0], "his clothes and gone tom": [65535, 0], "clothes and gone tom was": [65535, 0], "and gone tom was suffering": [65535, 0], "gone tom was suffering in": [65535, 0], "tom was suffering in reality": [65535, 0], "was suffering in reality now": [65535, 0], "suffering in reality now so": [65535, 0], "in reality now so handsomely": [65535, 0], "reality now so handsomely was": [65535, 0], "now so handsomely was his": [65535, 0], "so handsomely was his imagination": [65535, 0], "handsomely was his imagination working": [65535, 0], "was his imagination working and": [65535, 0], "his imagination working and so": [65535, 0], "imagination working and so his": [65535, 0], "working and so his groans": [65535, 0], "and so his groans had": [65535, 0], "so his groans had gathered": [65535, 0], "his groans had gathered quite": [65535, 0], "groans had gathered quite a": [65535, 0], "had gathered quite a genuine": [65535, 0], "gathered quite a genuine tone": [65535, 0], "quite a genuine tone sid": [65535, 0], "a genuine tone sid flew": [65535, 0], "genuine tone sid flew down": [65535, 0], "tone sid flew down stairs": [65535, 0], "sid flew down stairs and": [65535, 0], "flew down stairs and said": [65535, 0], "down stairs and said oh": [65535, 0], "stairs and said oh aunt": [65535, 0], "and said oh aunt polly": [65535, 0], "said oh aunt polly come": [65535, 0], "oh aunt polly come tom's": [65535, 0], "aunt polly come tom's dying": [65535, 0], "polly come tom's dying dying": [65535, 0], "come tom's dying dying yes'm": [65535, 0], "tom's dying dying yes'm don't": [65535, 0], "dying dying yes'm don't wait": [65535, 0], "dying yes'm don't wait come": [65535, 0], "yes'm don't wait come quick": [65535, 0], "don't wait come quick rubbage": [65535, 0], "wait come quick rubbage i": [65535, 0], "come quick rubbage i don't": [65535, 0], "quick rubbage i don't believe": [65535, 0], "rubbage i don't believe it": [65535, 0], "i don't believe it but": [65535, 0], "don't believe it but she": [65535, 0], "believe it but she fled": [65535, 0], "it but she fled up": [65535, 0], "but she fled up stairs": [65535, 0], "she fled up stairs nevertheless": [65535, 0], "fled up stairs nevertheless with": [65535, 0], "up stairs nevertheless with sid": [65535, 0], "stairs nevertheless with sid and": [65535, 0], "nevertheless with sid and mary": [65535, 0], "with sid and mary at": [65535, 0], "sid and mary at her": [65535, 0], "and mary at her heels": [65535, 0], "mary at her heels and": [65535, 0], "at her heels and her": [65535, 0], "her heels and her face": [65535, 0], "heels and her face grew": [65535, 0], "and her face grew white": [65535, 0], "her face grew white too": [65535, 0], "face grew white too and": [65535, 0], "grew white too and her": [65535, 0], "white too and her lip": [65535, 0], "too and her lip trembled": [65535, 0], "and her lip trembled when": [65535, 0], "her lip trembled when she": [65535, 0], "lip trembled when she reached": [65535, 0], "trembled when she reached the": [65535, 0], "when she reached the bedside": [65535, 0], "she reached the bedside she": [65535, 0], "reached the bedside she gasped": [65535, 0], "the bedside she gasped out": [65535, 0], "bedside she gasped out you": [65535, 0], "she gasped out you tom": [65535, 0], "gasped out you tom tom": [65535, 0], "out you tom tom what's": [65535, 0], "you tom tom what's the": [65535, 0], "tom tom what's the matter": [65535, 0], "tom what's the matter with": [65535, 0], "what's the matter with you": [65535, 0], "the matter with you oh": [65535, 0], "matter with you oh auntie": [65535, 0], "with you oh auntie i'm": [65535, 0], "you oh auntie i'm what's": [65535, 0], "oh auntie i'm what's the": [65535, 0], "auntie i'm what's the matter": [65535, 0], "i'm what's the matter with": [65535, 0], "the matter with you what": [65535, 0], "matter with you what is": [65535, 0], "with you what is the": [65535, 0], "you what is the matter": [65535, 0], "what is the matter with": [65535, 0], "is the matter with you": [65535, 0], "the matter with you child": [65535, 0], "matter with you child oh": [65535, 0], "with you child oh auntie": [65535, 0], "you child oh auntie my": [65535, 0], "child oh auntie my sore": [65535, 0], "oh auntie my sore toe's": [65535, 0], "auntie my sore toe's mortified": [65535, 0], "my sore toe's mortified the": [65535, 0], "sore toe's mortified the old": [65535, 0], "toe's mortified the old lady": [65535, 0], "mortified the old lady sank": [65535, 0], "the old lady sank down": [65535, 0], "old lady sank down into": [65535, 0], "lady sank down into a": [65535, 0], "sank down into a chair": [65535, 0], "down into a chair and": [65535, 0], "into a chair and laughed": [65535, 0], "a chair and laughed a": [65535, 0], "chair and laughed a little": [65535, 0], "and laughed a little then": [65535, 0], "laughed a little then cried": [65535, 0], "a little then cried a": [65535, 0], "little then cried a little": [65535, 0], "then cried a little then": [65535, 0], "cried a little then did": [65535, 0], "a little then did both": [65535, 0], "little then did both together": [65535, 0], "then did both together this": [65535, 0], "did both together this restored": [65535, 0], "both together this restored her": [65535, 0], "together this restored her and": [65535, 0], "this restored her and she": [65535, 0], "restored her and she said": [65535, 0], "her and she said tom": [65535, 0], "and she said tom what": [65535, 0], "she said tom what a": [65535, 0], "said tom what a turn": [65535, 0], "tom what a turn you": [65535, 0], "what a turn you did": [65535, 0], "a turn you did give": [65535, 0], "turn you did give me": [65535, 0], "you did give me now": [65535, 0], "did give me now you": [65535, 0], "give me now you shut": [65535, 0], "me now you shut up": [65535, 0], "now you shut up that": [65535, 0], "you shut up that nonsense": [65535, 0], "shut up that nonsense and": [65535, 0], "up that nonsense and climb": [65535, 0], "that nonsense and climb out": [65535, 0], "nonsense and climb out of": [65535, 0], "and climb out of this": [65535, 0], "climb out of this the": [65535, 0], "out of this the groans": [65535, 0], "of this the groans ceased": [65535, 0], "this the groans ceased and": [65535, 0], "the groans ceased and the": [65535, 0], "groans ceased and the pain": [65535, 0], "ceased and the pain vanished": [65535, 0], "and the pain vanished from": [65535, 0], "the pain vanished from the": [65535, 0], "pain vanished from the toe": [65535, 0], "vanished from the toe the": [65535, 0], "from the toe the boy": [65535, 0], "the toe the boy felt": [65535, 0], "toe the boy felt a": [65535, 0], "the boy felt a little": [65535, 0], "boy felt a little foolish": [65535, 0], "felt a little foolish and": [65535, 0], "a little foolish and he": [65535, 0], "little foolish and he said": [65535, 0], "foolish and he said aunt": [65535, 0], "and he said aunt polly": [65535, 0], "he said aunt polly it": [65535, 0], "said aunt polly it seemed": [65535, 0], "aunt polly it seemed mortified": [65535, 0], "polly it seemed mortified and": [65535, 0], "it seemed mortified and it": [65535, 0], "seemed mortified and it hurt": [65535, 0], "mortified and it hurt so": [65535, 0], "and it hurt so i": [65535, 0], "it hurt so i never": [65535, 0], "hurt so i never minded": [65535, 0], "so i never minded my": [65535, 0], "i never minded my tooth": [65535, 0], "never minded my tooth at": [65535, 0], "minded my tooth at all": [65535, 0], "my tooth at all your": [65535, 0], "tooth at all your tooth": [65535, 0], "at all your tooth indeed": [65535, 0], "all your tooth indeed what's": [65535, 0], "your tooth indeed what's the": [65535, 0], "tooth indeed what's the matter": [65535, 0], "indeed what's the matter with": [65535, 0], "what's the matter with your": [65535, 0], "the matter with your tooth": [65535, 0], "matter with your tooth one": [65535, 0], "with your tooth one of": [65535, 0], "your tooth one of them's": [65535, 0], "tooth one of them's loose": [65535, 0], "one of them's loose and": [65535, 0], "of them's loose and it": [65535, 0], "them's loose and it aches": [65535, 0], "loose and it aches perfectly": [65535, 0], "and it aches perfectly awful": [65535, 0], "it aches perfectly awful there": [65535, 0], "aches perfectly awful there there": [65535, 0], "perfectly awful there there now": [65535, 0], "awful there there now don't": [65535, 0], "there there now don't begin": [65535, 0], "there now don't begin that": [65535, 0], "now don't begin that groaning": [65535, 0], "don't begin that groaning again": [65535, 0], "begin that groaning again open": [65535, 0], "that groaning again open your": [65535, 0], "groaning again open your mouth": [65535, 0], "again open your mouth well": [65535, 0], "open your mouth well your": [65535, 0], "your mouth well your tooth": [65535, 0], "mouth well your tooth is": [65535, 0], "well your tooth is loose": [65535, 0], "your tooth is loose but": [65535, 0], "tooth is loose but you're": [65535, 0], "is loose but you're not": [65535, 0], "loose but you're not going": [65535, 0], "but you're not going to": [65535, 0], "you're not going to die": [65535, 0], "not going to die about": [65535, 0], "going to die about that": [65535, 0], "to die about that mary": [65535, 0], "die about that mary get": [65535, 0], "about that mary get me": [65535, 0], "that mary get me a": [65535, 0], "mary get me a silk": [65535, 0], "get me a silk thread": [65535, 0], "me a silk thread and": [65535, 0], "a silk thread and a": [65535, 0], "silk thread and a chunk": [65535, 0], "thread and a chunk of": [65535, 0], "and a chunk of fire": [65535, 0], "a chunk of fire out": [65535, 0], "chunk of fire out of": [65535, 0], "of fire out of the": [65535, 0], "fire out of the kitchen": [65535, 0], "out of the kitchen tom": [65535, 0], "of the kitchen tom said": [65535, 0], "the kitchen tom said oh": [65535, 0], "kitchen tom said oh please": [65535, 0], "tom said oh please auntie": [65535, 0], "said oh please auntie don't": [65535, 0], "oh please auntie don't pull": [65535, 0], "please auntie don't pull it": [65535, 0], "auntie don't pull it out": [65535, 0], "don't pull it out it": [65535, 0], "pull it out it don't": [65535, 0], "it out it don't hurt": [65535, 0], "out it don't hurt any": [65535, 0], "it don't hurt any more": [65535, 0], "don't hurt any more i": [65535, 0], "hurt any more i wish": [65535, 0], "any more i wish i": [65535, 0], "more i wish i may": [65535, 0], "i wish i may never": [65535, 0], "wish i may never stir": [65535, 0], "i may never stir if": [65535, 0], "may never stir if it": [65535, 0], "never stir if it does": [65535, 0], "stir if it does please": [65535, 0], "if it does please don't": [65535, 0], "it does please don't auntie": [65535, 0], "does please don't auntie i": [65535, 0], "please don't auntie i don't": [65535, 0], "don't auntie i don't want": [65535, 0], "auntie i don't want to": [65535, 0], "i don't want to stay": [65535, 0], "don't want to stay home": [65535, 0], "want to stay home from": [65535, 0], "to stay home from school": [65535, 0], "stay home from school oh": [65535, 0], "home from school oh you": [65535, 0], "from school oh you don't": [65535, 0], "school oh you don't don't": [65535, 0], "oh you don't don't you": [65535, 0], "you don't don't you so": [65535, 0], "don't don't you so all": [65535, 0], "don't you so all this": [65535, 0], "you so all this row": [65535, 0], "so all this row was": [65535, 0], "all this row was because": [65535, 0], "this row was because you": [65535, 0], "row was because you thought": [65535, 0], "was because you thought you'd": [65535, 0], "because you thought you'd get": [65535, 0], "you thought you'd get to": [65535, 0], "thought you'd get to stay": [65535, 0], "you'd get to stay home": [65535, 0], "get to stay home from": [65535, 0], "stay home from school and": [65535, 0], "home from school and go": [65535, 0], "from school and go a": [65535, 0], "school and go a fishing": [65535, 0], "and go a fishing tom": [65535, 0], "go a fishing tom tom": [65535, 0], "a fishing tom tom i": [65535, 0], "fishing tom tom i love": [65535, 0], "tom tom i love you": [65535, 0], "tom i love you so": [65535, 0], "i love you so and": [65535, 0], "love you so and you": [65535, 0], "you so and you seem": [65535, 0], "so and you seem to": [65535, 0], "and you seem to try": [65535, 0], "you seem to try every": [65535, 0], "seem to try every way": [65535, 0], "to try every way you": [65535, 0], "try every way you can": [65535, 0], "every way you can to": [65535, 0], "way you can to break": [65535, 0], "you can to break my": [65535, 0], "can to break my old": [65535, 0], "to break my old heart": [65535, 0], "break my old heart with": [65535, 0], "my old heart with your": [65535, 0], "old heart with your outrageousness": [65535, 0], "heart with your outrageousness by": [65535, 0], "with your outrageousness by this": [65535, 0], "your outrageousness by this time": [65535, 0], "outrageousness by this time the": [65535, 0], "by this time the dental": [65535, 0], "this time the dental instruments": [65535, 0], "time the dental instruments were": [65535, 0], "the dental instruments were ready": [65535, 0], "dental instruments were ready the": [65535, 0], "instruments were ready the old": [65535, 0], "were ready the old lady": [65535, 0], "ready the old lady made": [65535, 0], "the old lady made one": [65535, 0], "old lady made one end": [65535, 0], "lady made one end of": [65535, 0], "made one end of the": [65535, 0], "one end of the silk": [65535, 0], "end of the silk thread": [65535, 0], "of the silk thread fast": [65535, 0], "the silk thread fast to": [65535, 0], "silk thread fast to tom's": [65535, 0], "thread fast to tom's tooth": [65535, 0], "fast to tom's tooth with": [65535, 0], "to tom's tooth with a": [65535, 0], "tom's tooth with a loop": [65535, 0], "tooth with a loop and": [65535, 0], "with a loop and tied": [65535, 0], "a loop and tied the": [65535, 0], "loop and tied the other": [65535, 0], "and tied the other to": [65535, 0], "tied the other to the": [65535, 0], "the other to the bedpost": [65535, 0], "other to the bedpost then": [65535, 0], "to the bedpost then she": [65535, 0], "the bedpost then she seized": [65535, 0], "bedpost then she seized the": [65535, 0], "then she seized the chunk": [65535, 0], "she seized the chunk of": [65535, 0], "seized the chunk of fire": [65535, 0], "the chunk of fire and": [65535, 0], "chunk of fire and suddenly": [65535, 0], "of fire and suddenly thrust": [65535, 0], "fire and suddenly thrust it": [65535, 0], "and suddenly thrust it almost": [65535, 0], "suddenly thrust it almost into": [65535, 0], "thrust it almost into the": [65535, 0], "it almost into the boy's": [65535, 0], "almost into the boy's face": [65535, 0], "into the boy's face the": [65535, 0], "the boy's face the tooth": [65535, 0], "boy's face the tooth hung": [65535, 0], "face the tooth hung dangling": [65535, 0], "the tooth hung dangling by": [65535, 0], "tooth hung dangling by the": [65535, 0], "hung dangling by the bedpost": [65535, 0], "dangling by the bedpost now": [65535, 0], "by the bedpost now but": [65535, 0], "the bedpost now but all": [65535, 0], "bedpost now but all trials": [65535, 0], "now but all trials bring": [65535, 0], "but all trials bring their": [65535, 0], "all trials bring their compensations": [65535, 0], "trials bring their compensations as": [65535, 0], "bring their compensations as tom": [65535, 0], "their compensations as tom wended": [65535, 0], "compensations as tom wended to": [65535, 0], "as tom wended to school": [65535, 0], "tom wended to school after": [65535, 0], "wended to school after breakfast": [65535, 0], "to school after breakfast he": [65535, 0], "school after breakfast he was": [65535, 0], "after breakfast he was the": [65535, 0], "breakfast he was the envy": [65535, 0], "he was the envy of": [65535, 0], "was the envy of every": [65535, 0], "the envy of every boy": [65535, 0], "envy of every boy he": [65535, 0], "of every boy he met": [65535, 0], "every boy he met because": [65535, 0], "boy he met because the": [65535, 0], "he met because the gap": [65535, 0], "met because the gap in": [65535, 0], "because the gap in his": [65535, 0], "the gap in his upper": [65535, 0], "gap in his upper row": [65535, 0], "in his upper row of": [65535, 0], "his upper row of teeth": [65535, 0], "upper row of teeth enabled": [65535, 0], "row of teeth enabled him": [65535, 0], "of teeth enabled him to": [65535, 0], "teeth enabled him to expectorate": [65535, 0], "enabled him to expectorate in": [65535, 0], "him to expectorate in a": [65535, 0], "to expectorate in a new": [65535, 0], "expectorate in a new and": [65535, 0], "in a new and admirable": [65535, 0], "a new and admirable way": [65535, 0], "new and admirable way he": [65535, 0], "and admirable way he gathered": [65535, 0], "admirable way he gathered quite": [65535, 0], "way he gathered quite a": [65535, 0], "he gathered quite a following": [65535, 0], "gathered quite a following of": [65535, 0], "quite a following of lads": [65535, 0], "a following of lads interested": [65535, 0], "following of lads interested in": [65535, 0], "of lads interested in the": [65535, 0], "lads interested in the exhibition": [65535, 0], "interested in the exhibition and": [65535, 0], "in the exhibition and one": [65535, 0], "the exhibition and one that": [65535, 0], "exhibition and one that had": [65535, 0], "and one that had cut": [65535, 0], "one that had cut his": [65535, 0], "that had cut his finger": [65535, 0], "had cut his finger and": [65535, 0], "cut his finger and had": [65535, 0], "his finger and had been": [65535, 0], "finger and had been a": [65535, 0], "and had been a centre": [65535, 0], "had been a centre of": [65535, 0], "been a centre of fascination": [65535, 0], "a centre of fascination and": [65535, 0], "centre of fascination and homage": [65535, 0], "of fascination and homage up": [65535, 0], "fascination and homage up to": [65535, 0], "and homage up to this": [65535, 0], "homage up to this time": [65535, 0], "up to this time now": [65535, 0], "to this time now found": [65535, 0], "this time now found himself": [65535, 0], "time now found himself suddenly": [65535, 0], "now found himself suddenly without": [65535, 0], "found himself suddenly without an": [65535, 0], "himself suddenly without an adherent": [65535, 0], "suddenly without an adherent and": [65535, 0], "without an adherent and shorn": [65535, 0], "an adherent and shorn of": [65535, 0], "adherent and shorn of his": [65535, 0], "and shorn of his glory": [65535, 0], "shorn of his glory his": [65535, 0], "of his glory his heart": [65535, 0], "his glory his heart was": [65535, 0], "glory his heart was heavy": [65535, 0], "his heart was heavy and": [65535, 0], "heart was heavy and he": [65535, 0], "was heavy and he said": [65535, 0], "heavy and he said with": [65535, 0], "and he said with a": [65535, 0], "he said with a disdain": [65535, 0], "said with a disdain which": [65535, 0], "with a disdain which he": [65535, 0], "a disdain which he did": [65535, 0], "disdain which he did not": [65535, 0], "which he did not feel": [65535, 0], "he did not feel that": [65535, 0], "did not feel that it": [65535, 0], "not feel that it wasn't": [65535, 0], "feel that it wasn't anything": [65535, 0], "that it wasn't anything to": [65535, 0], "it wasn't anything to spit": [65535, 0], "wasn't anything to spit like": [65535, 0], "anything to spit like tom": [65535, 0], "to spit like tom sawyer": [65535, 0], "spit like tom sawyer but": [65535, 0], "like tom sawyer but another": [65535, 0], "tom sawyer but another boy": [65535, 0], "sawyer but another boy said": [65535, 0], "but another boy said sour": [65535, 0], "another boy said sour grapes": [65535, 0], "boy said sour grapes and": [65535, 0], "said sour grapes and he": [65535, 0], "sour grapes and he wandered": [65535, 0], "grapes and he wandered away": [65535, 0], "and he wandered away a": [65535, 0], "he wandered away a dismantled": [65535, 0], "wandered away a dismantled hero": [65535, 0], "away a dismantled hero shortly": [65535, 0], "a dismantled hero shortly tom": [65535, 0], "dismantled hero shortly tom came": [65535, 0], "hero shortly tom came upon": [65535, 0], "shortly tom came upon the": [65535, 0], "tom came upon the juvenile": [65535, 0], "came upon the juvenile pariah": [65535, 0], "upon the juvenile pariah of": [65535, 0], "the juvenile pariah of the": [65535, 0], "juvenile pariah of the village": [65535, 0], "pariah of the village huckleberry": [65535, 0], "of the village huckleberry finn": [65535, 0], "the village huckleberry finn son": [65535, 0], "village huckleberry finn son of": [65535, 0], "huckleberry finn son of the": [65535, 0], "finn son of the town": [65535, 0], "son of the town drunkard": [65535, 0], "of the town drunkard huckleberry": [65535, 0], "the town drunkard huckleberry was": [65535, 0], "town drunkard huckleberry was cordially": [65535, 0], "drunkard huckleberry was cordially hated": [65535, 0], "huckleberry was cordially hated and": [65535, 0], "was cordially hated and dreaded": [65535, 0], "cordially hated and dreaded by": [65535, 0], "hated and dreaded by all": [65535, 0], "and dreaded by all the": [65535, 0], "dreaded by all the mothers": [65535, 0], "by all the mothers of": [65535, 0], "all the mothers of the": [65535, 0], "the mothers of the town": [65535, 0], "mothers of the town because": [65535, 0], "of the town because he": [65535, 0], "the town because he was": [65535, 0], "town because he was idle": [65535, 0], "because he was idle and": [65535, 0], "he was idle and lawless": [65535, 0], "was idle and lawless and": [65535, 0], "idle and lawless and vulgar": [65535, 0], "and lawless and vulgar and": [65535, 0], "lawless and vulgar and bad": [65535, 0], "and vulgar and bad and": [65535, 0], "vulgar and bad and because": [65535, 0], "and bad and because all": [65535, 0], "bad and because all their": [65535, 0], "and because all their children": [65535, 0], "because all their children admired": [65535, 0], "all their children admired him": [65535, 0], "their children admired him so": [65535, 0], "children admired him so and": [65535, 0], "admired him so and delighted": [65535, 0], "him so and delighted in": [65535, 0], "so and delighted in his": [65535, 0], "and delighted in his forbidden": [65535, 0], "delighted in his forbidden society": [65535, 0], "in his forbidden society and": [65535, 0], "his forbidden society and wished": [65535, 0], "forbidden society and wished they": [65535, 0], "society and wished they dared": [65535, 0], "and wished they dared to": [65535, 0], "wished they dared to be": [65535, 0], "they dared to be like": [65535, 0], "dared to be like him": [65535, 0], "to be like him tom": [65535, 0], "be like him tom was": [65535, 0], "like him tom was like": [65535, 0], "him tom was like the": [65535, 0], "tom was like the rest": [65535, 0], "was like the rest of": [65535, 0], "like the rest of the": [65535, 0], "the rest of the respectable": [65535, 0], "rest of the respectable boys": [65535, 0], "of the respectable boys in": [65535, 0], "the respectable boys in that": [65535, 0], "respectable boys in that he": [65535, 0], "boys in that he envied": [65535, 0], "in that he envied huckleberry": [65535, 0], "that he envied huckleberry his": [65535, 0], "he envied huckleberry his gaudy": [65535, 0], "envied huckleberry his gaudy outcast": [65535, 0], "huckleberry his gaudy outcast condition": [65535, 0], "his gaudy outcast condition and": [65535, 0], "gaudy outcast condition and was": [65535, 0], "outcast condition and was under": [65535, 0], "condition and was under strict": [65535, 0], "and was under strict orders": [65535, 0], "was under strict orders not": [65535, 0], "under strict orders not to": [65535, 0], "strict orders not to play": [65535, 0], "orders not to play with": [65535, 0], "not to play with him": [65535, 0], "to play with him so": [65535, 0], "play with him so he": [65535, 0], "with him so he played": [65535, 0], "him so he played with": [65535, 0], "so he played with him": [65535, 0], "he played with him every": [65535, 0], "played with him every time": [65535, 0], "with him every time he": [65535, 0], "him every time he got": [65535, 0], "every time he got a": [65535, 0], "time he got a chance": [65535, 0], "he got a chance huckleberry": [65535, 0], "got a chance huckleberry was": [65535, 0], "a chance huckleberry was always": [65535, 0], "chance huckleberry was always dressed": [65535, 0], "huckleberry was always dressed in": [65535, 0], "was always dressed in the": [65535, 0], "always dressed in the cast": [65535, 0], "dressed in the cast off": [65535, 0], "in the cast off clothes": [65535, 0], "the cast off clothes of": [65535, 0], "cast off clothes of full": [65535, 0], "off clothes of full grown": [65535, 0], "clothes of full grown men": [65535, 0], "of full grown men and": [65535, 0], "full grown men and they": [65535, 0], "grown men and they were": [65535, 0], "men and they were in": [65535, 0], "and they were in perennial": [65535, 0], "they were in perennial bloom": [65535, 0], "were in perennial bloom and": [65535, 0], "in perennial bloom and fluttering": [65535, 0], "perennial bloom and fluttering with": [65535, 0], "bloom and fluttering with rags": [65535, 0], "and fluttering with rags his": [65535, 0], "fluttering with rags his hat": [65535, 0], "with rags his hat was": [65535, 0], "rags his hat was a": [65535, 0], "his hat was a vast": [65535, 0], "hat was a vast ruin": [65535, 0], "was a vast ruin with": [65535, 0], "a vast ruin with a": [65535, 0], "vast ruin with a wide": [65535, 0], "ruin with a wide crescent": [65535, 0], "with a wide crescent lopped": [65535, 0], "a wide crescent lopped out": [65535, 0], "wide crescent lopped out of": [65535, 0], "crescent lopped out of its": [65535, 0], "lopped out of its brim": [65535, 0], "out of its brim his": [65535, 0], "of its brim his coat": [65535, 0], "its brim his coat when": [65535, 0], "brim his coat when he": [65535, 0], "his coat when he wore": [65535, 0], "coat when he wore one": [65535, 0], "when he wore one hung": [65535, 0], "he wore one hung nearly": [65535, 0], "wore one hung nearly to": [65535, 0], "one hung nearly to his": [65535, 0], "hung nearly to his heels": [65535, 0], "nearly to his heels and": [65535, 0], "to his heels and had": [65535, 0], "his heels and had the": [65535, 0], "heels and had the rearward": [65535, 0], "and had the rearward buttons": [65535, 0], "had the rearward buttons far": [65535, 0], "the rearward buttons far down": [65535, 0], "rearward buttons far down the": [65535, 0], "buttons far down the back": [65535, 0], "far down the back but": [65535, 0], "down the back but one": [65535, 0], "the back but one suspender": [65535, 0], "back but one suspender supported": [65535, 0], "but one suspender supported his": [65535, 0], "one suspender supported his trousers": [65535, 0], "suspender supported his trousers the": [65535, 0], "supported his trousers the seat": [65535, 0], "his trousers the seat of": [65535, 0], "trousers the seat of the": [65535, 0], "the seat of the trousers": [65535, 0], "seat of the trousers bagged": [65535, 0], "of the trousers bagged low": [65535, 0], "the trousers bagged low and": [65535, 0], "trousers bagged low and contained": [65535, 0], "bagged low and contained nothing": [65535, 0], "low and contained nothing the": [65535, 0], "and contained nothing the fringed": [65535, 0], "contained nothing the fringed legs": [65535, 0], "nothing the fringed legs dragged": [65535, 0], "the fringed legs dragged in": [65535, 0], "fringed legs dragged in the": [65535, 0], "legs dragged in the dirt": [65535, 0], "dragged in the dirt when": [65535, 0], "in the dirt when not": [65535, 0], "the dirt when not rolled": [65535, 0], "dirt when not rolled up": [65535, 0], "when not rolled up huckleberry": [65535, 0], "not rolled up huckleberry came": [65535, 0], "rolled up huckleberry came and": [65535, 0], "up huckleberry came and went": [65535, 0], "huckleberry came and went at": [65535, 0], "came and went at his": [65535, 0], "and went at his own": [65535, 0], "went at his own free": [65535, 0], "at his own free will": [65535, 0], "his own free will he": [65535, 0], "own free will he slept": [65535, 0], "free will he slept on": [65535, 0], "will he slept on doorsteps": [65535, 0], "he slept on doorsteps in": [65535, 0], "slept on doorsteps in fine": [65535, 0], "on doorsteps in fine weather": [65535, 0], "doorsteps in fine weather and": [65535, 0], "in fine weather and in": [65535, 0], "fine weather and in empty": [65535, 0], "weather and in empty hogsheads": [65535, 0], "and in empty hogsheads in": [65535, 0], "in empty hogsheads in wet": [65535, 0], "empty hogsheads in wet he": [65535, 0], "hogsheads in wet he did": [65535, 0], "in wet he did not": [65535, 0], "wet he did not have": [65535, 0], "he did not have to": [65535, 0], "did not have to go": [65535, 0], "not have to go to": [65535, 0], "have to go to school": [65535, 0], "to go to school or": [65535, 0], "go to school or to": [65535, 0], "to school or to church": [65535, 0], "school or to church or": [65535, 0], "or to church or call": [65535, 0], "to church or call any": [65535, 0], "church or call any being": [65535, 0], "or call any being master": [65535, 0], "call any being master or": [65535, 0], "any being master or obey": [65535, 0], "being master or obey anybody": [65535, 0], "master or obey anybody he": [65535, 0], "or obey anybody he could": [65535, 0], "obey anybody he could go": [65535, 0], "anybody he could go fishing": [65535, 0], "he could go fishing or": [65535, 0], "could go fishing or swimming": [65535, 0], "go fishing or swimming when": [65535, 0], "fishing or swimming when and": [65535, 0], "or swimming when and where": [65535, 0], "swimming when and where he": [65535, 0], "when and where he chose": [65535, 0], "and where he chose and": [65535, 0], "where he chose and stay": [65535, 0], "he chose and stay as": [65535, 0], "chose and stay as long": [65535, 0], "and stay as long as": [65535, 0], "stay as long as it": [65535, 0], "as long as it suited": [65535, 0], "long as it suited him": [65535, 0], "as it suited him nobody": [65535, 0], "it suited him nobody forbade": [65535, 0], "suited him nobody forbade him": [65535, 0], "him nobody forbade him to": [65535, 0], "nobody forbade him to fight": [65535, 0], "forbade him to fight he": [65535, 0], "him to fight he could": [65535, 0], "to fight he could sit": [65535, 0], "fight he could sit up": [65535, 0], "he could sit up as": [65535, 0], "could sit up as late": [65535, 0], "sit up as late as": [65535, 0], "up as late as he": [65535, 0], "as late as he pleased": [65535, 0], "late as he pleased he": [65535, 0], "as he pleased he was": [65535, 0], "he pleased he was always": [65535, 0], "pleased he was always the": [65535, 0], "he was always the first": [65535, 0], "was always the first boy": [65535, 0], "always the first boy that": [65535, 0], "the first boy that went": [65535, 0], "first boy that went barefoot": [65535, 0], "boy that went barefoot in": [65535, 0], "that went barefoot in the": [65535, 0], "went barefoot in the spring": [65535, 0], "barefoot in the spring and": [65535, 0], "in the spring and the": [65535, 0], "the spring and the last": [65535, 0], "spring and the last to": [65535, 0], "and the last to resume": [65535, 0], "the last to resume leather": [65535, 0], "last to resume leather in": [65535, 0], "to resume leather in the": [65535, 0], "resume leather in the fall": [65535, 0], "leather in the fall he": [65535, 0], "in the fall he never": [65535, 0], "the fall he never had": [65535, 0], "fall he never had to": [65535, 0], "he never had to wash": [65535, 0], "never had to wash nor": [65535, 0], "had to wash nor put": [65535, 0], "to wash nor put on": [65535, 0], "wash nor put on clean": [65535, 0], "nor put on clean clothes": [65535, 0], "put on clean clothes he": [65535, 0], "on clean clothes he could": [65535, 0], "clean clothes he could swear": [65535, 0], "clothes he could swear wonderfully": [65535, 0], "he could swear wonderfully in": [65535, 0], "could swear wonderfully in a": [65535, 0], "swear wonderfully in a word": [65535, 0], "wonderfully in a word everything": [65535, 0], "in a word everything that": [65535, 0], "a word everything that goes": [65535, 0], "word everything that goes to": [65535, 0], "everything that goes to make": [65535, 0], "that goes to make life": [65535, 0], "goes to make life precious": [65535, 0], "to make life precious that": [65535, 0], "make life precious that boy": [65535, 0], "life precious that boy had": [65535, 0], "precious that boy had so": [65535, 0], "that boy had so thought": [65535, 0], "boy had so thought every": [65535, 0], "had so thought every harassed": [65535, 0], "so thought every harassed hampered": [65535, 0], "thought every harassed hampered respectable": [65535, 0], "every harassed hampered respectable boy": [65535, 0], "harassed hampered respectable boy in": [65535, 0], "hampered respectable boy in st": [65535, 0], "respectable boy in st petersburg": [65535, 0], "boy in st petersburg tom": [65535, 0], "in st petersburg tom hailed": [65535, 0], "st petersburg tom hailed the": [65535, 0], "petersburg tom hailed the romantic": [65535, 0], "tom hailed the romantic outcast": [65535, 0], "hailed the romantic outcast hello": [65535, 0], "the romantic outcast hello huckleberry": [65535, 0], "romantic outcast hello huckleberry hello": [65535, 0], "outcast hello huckleberry hello yourself": [65535, 0], "hello huckleberry hello yourself and": [65535, 0], "huckleberry hello yourself and see": [65535, 0], "hello yourself and see how": [65535, 0], "yourself and see how you": [65535, 0], "and see how you like": [65535, 0], "see how you like it": [65535, 0], "how you like it what's": [65535, 0], "you like it what's that": [65535, 0], "like it what's that you": [65535, 0], "it what's that you got": [65535, 0], "what's that you got dead": [65535, 0], "that you got dead cat": [65535, 0], "you got dead cat lemme": [65535, 0], "got dead cat lemme see": [65535, 0], "dead cat lemme see him": [65535, 0], "cat lemme see him huck": [65535, 0], "lemme see him huck my": [65535, 0], "see him huck my he's": [65535, 0], "him huck my he's pretty": [65535, 0], "huck my he's pretty stiff": [65535, 0], "my he's pretty stiff where'd": [65535, 0], "he's pretty stiff where'd you": [65535, 0], "pretty stiff where'd you get": [65535, 0], "stiff where'd you get him": [65535, 0], "where'd you get him bought": [65535, 0], "you get him bought him": [65535, 0], "get him bought him off'n": [65535, 0], "him bought him off'n a": [65535, 0], "bought him off'n a boy": [65535, 0], "him off'n a boy what": [65535, 0], "off'n a boy what did": [65535, 0], "a boy what did you": [65535, 0], "boy what did you give": [65535, 0], "what did you give i": [65535, 0], "did you give i give": [65535, 0], "you give i give a": [65535, 0], "give i give a blue": [65535, 0], "i give a blue ticket": [65535, 0], "give a blue ticket and": [65535, 0], "a blue ticket and a": [65535, 0], "blue ticket and a bladder": [65535, 0], "ticket and a bladder that": [65535, 0], "and a bladder that i": [65535, 0], "a bladder that i got": [65535, 0], "bladder that i got at": [65535, 0], "that i got at the": [65535, 0], "i got at the slaughter": [65535, 0], "got at the slaughter house": [65535, 0], "at the slaughter house where'd": [65535, 0], "the slaughter house where'd you": [65535, 0], "slaughter house where'd you get": [65535, 0], "house where'd you get the": [65535, 0], "where'd you get the blue": [65535, 0], "you get the blue ticket": [65535, 0], "get the blue ticket bought": [65535, 0], "the blue ticket bought it": [65535, 0], "blue ticket bought it off'n": [65535, 0], "ticket bought it off'n ben": [65535, 0], "bought it off'n ben rogers": [65535, 0], "it off'n ben rogers two": [65535, 0], "off'n ben rogers two weeks": [65535, 0], "ben rogers two weeks ago": [65535, 0], "rogers two weeks ago for": [65535, 0], "two weeks ago for a": [65535, 0], "weeks ago for a hoop": [65535, 0], "ago for a hoop stick": [65535, 0], "for a hoop stick say": [65535, 0], "a hoop stick say what": [65535, 0], "hoop stick say what is": [65535, 0], "stick say what is dead": [65535, 0], "say what is dead cats": [65535, 0], "what is dead cats good": [65535, 0], "is dead cats good for": [65535, 0], "dead cats good for huck": [65535, 0], "cats good for huck good": [65535, 0], "good for huck good for": [65535, 0], "for huck good for cure": [65535, 0], "huck good for cure warts": [65535, 0], "good for cure warts with": [65535, 0], "for cure warts with no": [65535, 0], "cure warts with no is": [65535, 0], "warts with no is that": [65535, 0], "with no is that so": [65535, 0], "no is that so i": [65535, 0], "is that so i know": [65535, 0], "that so i know something": [65535, 0], "so i know something that's": [65535, 0], "i know something that's better": [65535, 0], "know something that's better i": [65535, 0], "something that's better i bet": [65535, 0], "that's better i bet you": [65535, 0], "better i bet you don't": [65535, 0], "i bet you don't what": [65535, 0], "bet you don't what is": [65535, 0], "you don't what is it": [65535, 0], "don't what is it why": [65535, 0], "what is it why spunk": [65535, 0], "is it why spunk water": [65535, 0], "it why spunk water spunk": [65535, 0], "why spunk water spunk water": [65535, 0], "spunk water spunk water i": [65535, 0], "water spunk water i wouldn't": [65535, 0], "spunk water i wouldn't give": [65535, 0], "water i wouldn't give a": [65535, 0], "i wouldn't give a dern": [65535, 0], "wouldn't give a dern for": [65535, 0], "give a dern for spunk": [65535, 0], "a dern for spunk water": [65535, 0], "dern for spunk water you": [65535, 0], "for spunk water you wouldn't": [65535, 0], "spunk water you wouldn't wouldn't": [65535, 0], "water you wouldn't wouldn't you": [65535, 0], "you wouldn't wouldn't you d'you": [65535, 0], "wouldn't wouldn't you d'you ever": [65535, 0], "wouldn't you d'you ever try": [65535, 0], "you d'you ever try it": [65535, 0], "d'you ever try it no": [65535, 0], "ever try it no i": [65535, 0], "try it no i hain't": [65535, 0], "it no i hain't but": [65535, 0], "no i hain't but bob": [65535, 0], "i hain't but bob tanner": [65535, 0], "hain't but bob tanner did": [65535, 0], "but bob tanner did who": [65535, 0], "bob tanner did who told": [65535, 0], "tanner did who told you": [65535, 0], "did who told you so": [65535, 0], "who told you so why": [65535, 0], "told you so why he": [65535, 0], "you so why he told": [65535, 0], "so why he told jeff": [65535, 0], "why he told jeff thatcher": [65535, 0], "he told jeff thatcher and": [65535, 0], "told jeff thatcher and jeff": [65535, 0], "jeff thatcher and jeff told": [65535, 0], "thatcher and jeff told johnny": [65535, 0], "and jeff told johnny baker": [65535, 0], "jeff told johnny baker and": [65535, 0], "told johnny baker and johnny": [65535, 0], "johnny baker and johnny told": [65535, 0], "baker and johnny told jim": [65535, 0], "and johnny told jim hollis": [65535, 0], "johnny told jim hollis and": [65535, 0], "told jim hollis and jim": [65535, 0], "jim hollis and jim told": [65535, 0], "hollis and jim told ben": [65535, 0], "and jim told ben rogers": [65535, 0], "jim told ben rogers and": [65535, 0], "told ben rogers and ben": [65535, 0], "ben rogers and ben told": [65535, 0], "rogers and ben told a": [65535, 0], "and ben told a nigger": [65535, 0], "ben told a nigger and": [65535, 0], "told a nigger and the": [65535, 0], "a nigger and the nigger": [65535, 0], "nigger and the nigger told": [65535, 0], "and the nigger told me": [65535, 0], "the nigger told me there": [65535, 0], "nigger told me there now": [65535, 0], "told me there now well": [65535, 0], "me there now well what": [65535, 0], "there now well what of": [65535, 0], "now well what of it": [65535, 0], "well what of it they'll": [65535, 0], "what of it they'll all": [65535, 0], "of it they'll all lie": [65535, 0], "it they'll all lie leastways": [65535, 0], "they'll all lie leastways all": [65535, 0], "all lie leastways all but": [65535, 0], "lie leastways all but the": [65535, 0], "leastways all but the nigger": [65535, 0], "all but the nigger i": [65535, 0], "but the nigger i don't": [65535, 0], "the nigger i don't know": [65535, 0], "nigger i don't know him": [65535, 0], "i don't know him but": [65535, 0], "don't know him but i": [65535, 0], "know him but i never": [65535, 0], "him but i never see": [65535, 0], "but i never see a": [65535, 0], "i never see a nigger": [65535, 0], "never see a nigger that": [65535, 0], "see a nigger that wouldn't": [65535, 0], "a nigger that wouldn't lie": [65535, 0], "nigger that wouldn't lie shucks": [65535, 0], "that wouldn't lie shucks now": [65535, 0], "wouldn't lie shucks now you": [65535, 0], "lie shucks now you tell": [65535, 0], "shucks now you tell me": [65535, 0], "now you tell me how": [65535, 0], "you tell me how bob": [65535, 0], "tell me how bob tanner": [65535, 0], "me how bob tanner done": [65535, 0], "how bob tanner done it": [65535, 0], "bob tanner done it huck": [65535, 0], "tanner done it huck why": [65535, 0], "done it huck why he": [65535, 0], "it huck why he took": [65535, 0], "huck why he took and": [65535, 0], "why he took and dipped": [65535, 0], "he took and dipped his": [65535, 0], "took and dipped his hand": [65535, 0], "and dipped his hand in": [65535, 0], "dipped his hand in a": [65535, 0], "his hand in a rotten": [65535, 0], "hand in a rotten stump": [65535, 0], "in a rotten stump where": [65535, 0], "a rotten stump where the": [65535, 0], "rotten stump where the rain": [65535, 0], "stump where the rain water": [65535, 0], "where the rain water was": [65535, 0], "the rain water was in": [65535, 0], "rain water was in the": [65535, 0], "water was in the daytime": [65535, 0], "was in the daytime certainly": [65535, 0], "in the daytime certainly with": [65535, 0], "the daytime certainly with his": [65535, 0], "daytime certainly with his face": [65535, 0], "certainly with his face to": [65535, 0], "with his face to the": [65535, 0], "his face to the stump": [65535, 0], "face to the stump yes": [65535, 0], "to the stump yes least": [65535, 0], "the stump yes least i": [65535, 0], "stump yes least i reckon": [65535, 0], "yes least i reckon so": [65535, 0], "least i reckon so did": [65535, 0], "i reckon so did he": [65535, 0], "reckon so did he say": [65535, 0], "so did he say anything": [65535, 0], "did he say anything i": [65535, 0], "he say anything i don't": [65535, 0], "say anything i don't reckon": [65535, 0], "anything i don't reckon he": [65535, 0], "i don't reckon he did": [65535, 0], "don't reckon he did i": [65535, 0], "reckon he did i don't": [65535, 0], "he did i don't know": [65535, 0], "did i don't know aha": [65535, 0], "i don't know aha talk": [65535, 0], "don't know aha talk about": [65535, 0], "know aha talk about trying": [65535, 0], "aha talk about trying to": [65535, 0], "talk about trying to cure": [65535, 0], "about trying to cure warts": [65535, 0], "trying to cure warts with": [65535, 0], "to cure warts with spunk": [65535, 0], "cure warts with spunk water": [65535, 0], "warts with spunk water such": [65535, 0], "with spunk water such a": [65535, 0], "spunk water such a blame": [65535, 0], "water such a blame fool": [65535, 0], "such a blame fool way": [65535, 0], "a blame fool way as": [65535, 0], "blame fool way as that": [65535, 0], "fool way as that why": [65535, 0], "way as that why that": [65535, 0], "as that why that ain't": [65535, 0], "that why that ain't a": [65535, 0], "why that ain't a going": [65535, 0], "that ain't a going to": [65535, 0], "ain't a going to do": [65535, 0], "a going to do any": [65535, 0], "going to do any good": [65535, 0], "to do any good you": [65535, 0], "do any good you got": [65535, 0], "any good you got to": [65535, 0], "good you got to go": [65535, 0], "you got to go all": [65535, 0], "got to go all by": [65535, 0], "to go all by yourself": [65535, 0], "go all by yourself to": [65535, 0], "all by yourself to the": [65535, 0], "by yourself to the middle": [65535, 0], "yourself to the middle of": [65535, 0], "to the middle of the": [65535, 0], "the middle of the woods": [65535, 0], "middle of the woods where": [65535, 0], "of the woods where you": [65535, 0], "the woods where you know": [65535, 0], "woods where you know there's": [65535, 0], "where you know there's a": [65535, 0], "you know there's a spunk": [65535, 0], "know there's a spunk water": [65535, 0], "there's a spunk water stump": [65535, 0], "a spunk water stump and": [65535, 0], "spunk water stump and just": [65535, 0], "water stump and just as": [65535, 0], "stump and just as it's": [65535, 0], "and just as it's midnight": [65535, 0], "just as it's midnight you": [65535, 0], "as it's midnight you back": [65535, 0], "it's midnight you back up": [65535, 0], "midnight you back up against": [65535, 0], "you back up against the": [65535, 0], "back up against the stump": [65535, 0], "up against the stump and": [65535, 0], "against the stump and jam": [65535, 0], "the stump and jam your": [65535, 0], "stump and jam your hand": [65535, 0], "and jam your hand in": [65535, 0], "jam your hand in and": [65535, 0], "your hand in and say": [65535, 0], "hand in and say 'barley": [65535, 0], "in and say 'barley corn": [65535, 0], "and say 'barley corn barley": [65535, 0], "say 'barley corn barley corn": [65535, 0], "'barley corn barley corn injun": [65535, 0], "corn barley corn injun meal": [65535, 0], "barley corn injun meal shorts": [65535, 0], "corn injun meal shorts spunk": [65535, 0], "injun meal shorts spunk water": [65535, 0], "meal shorts spunk water spunk": [65535, 0], "shorts spunk water spunk water": [65535, 0], "spunk water spunk water swaller": [65535, 0], "water spunk water swaller these": [65535, 0], "spunk water swaller these warts": [65535, 0], "water swaller these warts '": [65535, 0], "swaller these warts ' and": [65535, 0], "these warts ' and then": [65535, 0], "warts ' and then walk": [65535, 0], "' and then walk away": [65535, 0], "and then walk away quick": [65535, 0], "then walk away quick eleven": [65535, 0], "walk away quick eleven steps": [65535, 0], "away quick eleven steps with": [65535, 0], "quick eleven steps with your": [65535, 0], "eleven steps with your eyes": [65535, 0], "steps with your eyes shut": [65535, 0], "with your eyes shut and": [65535, 0], "your eyes shut and then": [65535, 0], "eyes shut and then turn": [65535, 0], "shut and then turn around": [65535, 0], "and then turn around three": [65535, 0], "then turn around three times": [65535, 0], "turn around three times and": [65535, 0], "around three times and walk": [65535, 0], "three times and walk home": [65535, 0], "times and walk home without": [65535, 0], "and walk home without speaking": [65535, 0], "walk home without speaking to": [65535, 0], "home without speaking to anybody": [65535, 0], "without speaking to anybody because": [65535, 0], "speaking to anybody because if": [65535, 0], "to anybody because if you": [65535, 0], "anybody because if you speak": [65535, 0], "because if you speak the": [65535, 0], "if you speak the charm's": [65535, 0], "you speak the charm's busted": [65535, 0], "speak the charm's busted well": [65535, 0], "the charm's busted well that": [65535, 0], "charm's busted well that sounds": [65535, 0], "busted well that sounds like": [65535, 0], "well that sounds like a": [65535, 0], "that sounds like a good": [65535, 0], "sounds like a good way": [65535, 0], "like a good way but": [65535, 0], "a good way but that": [65535, 0], "good way but that ain't": [65535, 0], "way but that ain't the": [65535, 0], "but that ain't the way": [65535, 0], "that ain't the way bob": [65535, 0], "ain't the way bob tanner": [65535, 0], "the way bob tanner done": [65535, 0], "way bob tanner done no": [65535, 0], "bob tanner done no sir": [65535, 0], "tanner done no sir you": [65535, 0], "done no sir you can": [65535, 0], "no sir you can bet": [65535, 0], "sir you can bet he": [65535, 0], "you can bet he didn't": [65535, 0], "can bet he didn't becuz": [65535, 0], "bet he didn't becuz he's": [65535, 0], "he didn't becuz he's the": [65535, 0], "didn't becuz he's the wartiest": [65535, 0], "becuz he's the wartiest boy": [65535, 0], "he's the wartiest boy in": [65535, 0], "the wartiest boy in this": [65535, 0], "wartiest boy in this town": [65535, 0], "boy in this town and": [65535, 0], "in this town and he": [65535, 0], "this town and he wouldn't": [65535, 0], "town and he wouldn't have": [65535, 0], "and he wouldn't have a": [65535, 0], "he wouldn't have a wart": [65535, 0], "wouldn't have a wart on": [65535, 0], "have a wart on him": [65535, 0], "a wart on him if": [65535, 0], "wart on him if he'd": [65535, 0], "on him if he'd knowed": [65535, 0], "him if he'd knowed how": [65535, 0], "if he'd knowed how to": [65535, 0], "he'd knowed how to work": [65535, 0], "knowed how to work spunk": [65535, 0], "how to work spunk water": [65535, 0], "to work spunk water i've": [65535, 0], "work spunk water i've took": [65535, 0], "spunk water i've took off": [65535, 0], "water i've took off thousands": [65535, 0], "i've took off thousands of": [65535, 0], "took off thousands of warts": [65535, 0], "off thousands of warts off": [65535, 0], "thousands of warts off of": [65535, 0], "of warts off of my": [65535, 0], "warts off of my hands": [65535, 0], "off of my hands that": [65535, 0], "of my hands that way": [65535, 0], "my hands that way huck": [65535, 0], "hands that way huck i": [65535, 0], "that way huck i play": [65535, 0], "way huck i play with": [65535, 0], "huck i play with frogs": [65535, 0], "i play with frogs so": [65535, 0], "play with frogs so much": [65535, 0], "with frogs so much that": [65535, 0], "frogs so much that i've": [65535, 0], "so much that i've always": [65535, 0], "much that i've always got": [65535, 0], "that i've always got considerable": [65535, 0], "i've always got considerable many": [65535, 0], "always got considerable many warts": [65535, 0], "got considerable many warts sometimes": [65535, 0], "considerable many warts sometimes i": [65535, 0], "many warts sometimes i take": [65535, 0], "warts sometimes i take 'em": [65535, 0], "sometimes i take 'em off": [65535, 0], "i take 'em off with": [65535, 0], "take 'em off with a": [65535, 0], "'em off with a bean": [65535, 0], "off with a bean yes": [65535, 0], "with a bean yes bean's": [65535, 0], "a bean yes bean's good": [65535, 0], "bean yes bean's good i've": [65535, 0], "yes bean's good i've done": [65535, 0], "bean's good i've done that": [65535, 0], "good i've done that have": [65535, 0], "i've done that have you": [65535, 0], "done that have you what's": [65535, 0], "that have you what's your": [65535, 0], "have you what's your way": [65535, 0], "you what's your way you": [65535, 0], "what's your way you take": [65535, 0], "your way you take and": [65535, 0], "way you take and split": [65535, 0], "you take and split the": [65535, 0], "take and split the bean": [65535, 0], "and split the bean and": [65535, 0], "split the bean and cut": [65535, 0], "the bean and cut the": [65535, 0], "bean and cut the wart": [65535, 0], "and cut the wart so": [65535, 0], "cut the wart so as": [65535, 0], "the wart so as to": [65535, 0], "wart so as to get": [65535, 0], "so as to get some": [65535, 0], "as to get some blood": [65535, 0], "to get some blood and": [65535, 0], "get some blood and then": [65535, 0], "some blood and then you": [65535, 0], "blood and then you put": [65535, 0], "and then you put the": [65535, 0], "then you put the blood": [65535, 0], "you put the blood on": [65535, 0], "put the blood on one": [65535, 0], "the blood on one piece": [65535, 0], "blood on one piece of": [65535, 0], "on one piece of the": [65535, 0], "one piece of the bean": [65535, 0], "piece of the bean and": [65535, 0], "of the bean and take": [65535, 0], "the bean and take and": [65535, 0], "bean and take and dig": [65535, 0], "and take and dig a": [65535, 0], "take and dig a hole": [65535, 0], "and dig a hole and": [65535, 0], "dig a hole and bury": [65535, 0], "a hole and bury it": [65535, 0], "hole and bury it 'bout": [65535, 0], "and bury it 'bout midnight": [65535, 0], "bury it 'bout midnight at": [65535, 0], "it 'bout midnight at the": [65535, 0], "'bout midnight at the crossroads": [65535, 0], "midnight at the crossroads in": [65535, 0], "at the crossroads in the": [65535, 0], "the crossroads in the dark": [65535, 0], "crossroads in the dark of": [65535, 0], "in the dark of the": [65535, 0], "the dark of the moon": [65535, 0], "dark of the moon and": [65535, 0], "of the moon and then": [65535, 0], "the moon and then you": [65535, 0], "moon and then you burn": [65535, 0], "and then you burn up": [65535, 0], "then you burn up the": [65535, 0], "you burn up the rest": [65535, 0], "burn up the rest of": [65535, 0], "up the rest of the": [65535, 0], "the rest of the bean": [65535, 0], "rest of the bean you": [65535, 0], "of the bean you see": [65535, 0], "the bean you see that": [65535, 0], "bean you see that piece": [65535, 0], "you see that piece that's": [65535, 0], "see that piece that's got": [65535, 0], "that piece that's got the": [65535, 0], "piece that's got the blood": [65535, 0], "that's got the blood on": [65535, 0], "got the blood on it": [65535, 0], "the blood on it will": [65535, 0], "blood on it will keep": [65535, 0], "on it will keep drawing": [65535, 0], "it will keep drawing and": [65535, 0], "will keep drawing and drawing": [65535, 0], "keep drawing and drawing trying": [65535, 0], "drawing and drawing trying to": [65535, 0], "and drawing trying to fetch": [65535, 0], "drawing trying to fetch the": [65535, 0], "trying to fetch the other": [65535, 0], "to fetch the other piece": [65535, 0], "fetch the other piece to": [65535, 0], "the other piece to it": [65535, 0], "other piece to it and": [65535, 0], "piece to it and so": [65535, 0], "to it and so that": [65535, 0], "it and so that helps": [65535, 0], "and so that helps the": [65535, 0], "so that helps the blood": [65535, 0], "that helps the blood to": [65535, 0], "helps the blood to draw": [65535, 0], "the blood to draw the": [65535, 0], "blood to draw the wart": [65535, 0], "to draw the wart and": [65535, 0], "draw the wart and pretty": [65535, 0], "the wart and pretty soon": [65535, 0], "wart and pretty soon off": [65535, 0], "and pretty soon off she": [65535, 0], "pretty soon off she comes": [65535, 0], "soon off she comes yes": [65535, 0], "off she comes yes that's": [65535, 0], "she comes yes that's it": [65535, 0], "comes yes that's it huck": [65535, 0], "yes that's it huck that's": [65535, 0], "that's it huck that's it": [65535, 0], "it huck that's it though": [65535, 0], "huck that's it though when": [65535, 0], "that's it though when you're": [65535, 0], "it though when you're burying": [65535, 0], "though when you're burying it": [65535, 0], "when you're burying it if": [65535, 0], "you're burying it if you": [65535, 0], "burying it if you say": [65535, 0], "it if you say 'down": [65535, 0], "if you say 'down bean": [65535, 0], "you say 'down bean off": [65535, 0], "say 'down bean off wart": [65535, 0], "'down bean off wart come": [65535, 0], "bean off wart come no": [65535, 0], "off wart come no more": [65535, 0], "wart come no more to": [65535, 0], "come no more to bother": [65535, 0], "no more to bother me": [65535, 0], "more to bother me '": [65535, 0], "to bother me ' it's": [65535, 0], "bother me ' it's better": [65535, 0], "me ' it's better that's": [65535, 0], "' it's better that's the": [65535, 0], "it's better that's the way": [65535, 0], "better that's the way joe": [65535, 0], "that's the way joe harper": [65535, 0], "the way joe harper does": [65535, 0], "way joe harper does and": [65535, 0], "joe harper does and he's": [65535, 0], "harper does and he's been": [65535, 0], "does and he's been nearly": [65535, 0], "and he's been nearly to": [65535, 0], "he's been nearly to coonville": [65535, 0], "been nearly to coonville and": [65535, 0], "nearly to coonville and most": [65535, 0], "to coonville and most everywheres": [65535, 0], "coonville and most everywheres but": [65535, 0], "and most everywheres but say": [65535, 0], "most everywheres but say how": [65535, 0], "everywheres but say how do": [65535, 0], "but say how do you": [65535, 0], "say how do you cure": [65535, 0], "how do you cure 'em": [65535, 0], "do you cure 'em with": [65535, 0], "you cure 'em with dead": [65535, 0], "cure 'em with dead cats": [65535, 0], "'em with dead cats why": [65535, 0], "with dead cats why you": [65535, 0], "dead cats why you take": [65535, 0], "cats why you take your": [65535, 0], "why you take your cat": [65535, 0], "you take your cat and": [65535, 0], "take your cat and go": [65535, 0], "your cat and go and": [65535, 0], "cat and go and get": [65535, 0], "and go and get in": [65535, 0], "go and get in the": [65535, 0], "and get in the graveyard": [65535, 0], "get in the graveyard 'long": [65535, 0], "in the graveyard 'long about": [65535, 0], "the graveyard 'long about midnight": [65535, 0], "graveyard 'long about midnight when": [65535, 0], "'long about midnight when somebody": [65535, 0], "about midnight when somebody that": [65535, 0], "midnight when somebody that was": [65535, 0], "when somebody that was wicked": [65535, 0], "somebody that was wicked has": [65535, 0], "that was wicked has been": [65535, 0], "was wicked has been buried": [65535, 0], "wicked has been buried and": [65535, 0], "has been buried and when": [65535, 0], "been buried and when it's": [65535, 0], "buried and when it's midnight": [65535, 0], "and when it's midnight a": [65535, 0], "when it's midnight a devil": [65535, 0], "it's midnight a devil will": [65535, 0], "midnight a devil will come": [65535, 0], "a devil will come or": [65535, 0], "devil will come or maybe": [65535, 0], "will come or maybe two": [65535, 0], "come or maybe two or": [65535, 0], "or maybe two or three": [65535, 0], "maybe two or three but": [65535, 0], "two or three but you": [65535, 0], "or three but you can't": [65535, 0], "three but you can't see": [65535, 0], "but you can't see 'em": [65535, 0], "you can't see 'em you": [65535, 0], "can't see 'em you can": [65535, 0], "see 'em you can only": [65535, 0], "'em you can only hear": [65535, 0], "you can only hear something": [65535, 0], "can only hear something like": [65535, 0], "only hear something like the": [65535, 0], "hear something like the wind": [65535, 0], "something like the wind or": [65535, 0], "like the wind or maybe": [65535, 0], "the wind or maybe hear": [65535, 0], "wind or maybe hear 'em": [65535, 0], "or maybe hear 'em talk": [65535, 0], "maybe hear 'em talk and": [65535, 0], "hear 'em talk and when": [65535, 0], "'em talk and when they're": [65535, 0], "talk and when they're taking": [65535, 0], "and when they're taking that": [65535, 0], "when they're taking that feller": [65535, 0], "they're taking that feller away": [65535, 0], "taking that feller away you": [65535, 0], "that feller away you heave": [65535, 0], "feller away you heave your": [65535, 0], "away you heave your cat": [65535, 0], "you heave your cat after": [65535, 0], "heave your cat after 'em": [65535, 0], "your cat after 'em and": [65535, 0], "cat after 'em and say": [65535, 0], "after 'em and say 'devil": [65535, 0], "'em and say 'devil follow": [65535, 0], "and say 'devil follow corpse": [65535, 0], "say 'devil follow corpse cat": [65535, 0], "'devil follow corpse cat follow": [65535, 0], "follow corpse cat follow devil": [65535, 0], "corpse cat follow devil warts": [65535, 0], "cat follow devil warts follow": [65535, 0], "follow devil warts follow cat": [65535, 0], "devil warts follow cat i'm": [65535, 0], "warts follow cat i'm done": [65535, 0], "follow cat i'm done with": [65535, 0], "cat i'm done with ye": [65535, 0], "i'm done with ye '": [65535, 0], "done with ye ' that'll": [65535, 0], "with ye ' that'll fetch": [65535, 0], "ye ' that'll fetch any": [65535, 0], "' that'll fetch any wart": [65535, 0], "that'll fetch any wart sounds": [65535, 0], "fetch any wart sounds right": [65535, 0], "any wart sounds right d'you": [65535, 0], "wart sounds right d'you ever": [65535, 0], "sounds right d'you ever try": [65535, 0], "right d'you ever try it": [65535, 0], "d'you ever try it huck": [65535, 0], "ever try it huck no": [65535, 0], "try it huck no but": [65535, 0], "it huck no but old": [65535, 0], "huck no but old mother": [65535, 0], "no but old mother hopkins": [65535, 0], "but old mother hopkins told": [65535, 0], "old mother hopkins told me": [65535, 0], "mother hopkins told me well": [65535, 0], "hopkins told me well i": [65535, 0], "told me well i reckon": [65535, 0], "me well i reckon it's": [65535, 0], "well i reckon it's so": [65535, 0], "i reckon it's so then": [65535, 0], "reckon it's so then becuz": [65535, 0], "it's so then becuz they": [65535, 0], "so then becuz they say": [65535, 0], "then becuz they say she's": [65535, 0], "becuz they say she's a": [65535, 0], "they say she's a witch": [65535, 0], "say she's a witch say": [65535, 0], "she's a witch say why": [65535, 0], "a witch say why tom": [65535, 0], "witch say why tom i": [65535, 0], "say why tom i know": [65535, 0], "why tom i know she": [65535, 0], "tom i know she is": [65535, 0], "i know she is she": [65535, 0], "know she is she witched": [65535, 0], "she is she witched pap": [65535, 0], "is she witched pap pap": [65535, 0], "she witched pap pap says": [65535, 0], "witched pap pap says so": [65535, 0], "pap pap says so his": [65535, 0], "pap says so his own": [65535, 0], "says so his own self": [65535, 0], "so his own self he": [65535, 0], "his own self he come": [65535, 0], "own self he come along": [65535, 0], "self he come along one": [65535, 0], "he come along one day": [65535, 0], "come along one day and": [65535, 0], "along one day and he": [65535, 0], "one day and he see": [65535, 0], "day and he see she": [65535, 0], "and he see she was": [65535, 0], "he see she was a": [65535, 0], "see she was a witching": [65535, 0], "she was a witching him": [65535, 0], "was a witching him so": [65535, 0], "a witching him so he": [65535, 0], "witching him so he took": [65535, 0], "him so he took up": [65535, 0], "so he took up a": [65535, 0], "he took up a rock": [65535, 0], "took up a rock and": [65535, 0], "up a rock and if": [65535, 0], "a rock and if she": [65535, 0], "rock and if she hadn't": [65535, 0], "and if she hadn't dodged": [65535, 0], "if she hadn't dodged he'd": [65535, 0], "she hadn't dodged he'd a": [65535, 0], "hadn't dodged he'd a got": [65535, 0], "dodged he'd a got her": [65535, 0], "he'd a got her well": [65535, 0], "a got her well that": [65535, 0], "got her well that very": [65535, 0], "her well that very night": [65535, 0], "well that very night he": [65535, 0], "that very night he rolled": [65535, 0], "very night he rolled off'n": [65535, 0], "night he rolled off'n a": [65535, 0], "he rolled off'n a shed": [65535, 0], "rolled off'n a shed wher'": [65535, 0], "off'n a shed wher' he": [65535, 0], "a shed wher' he was": [65535, 0], "shed wher' he was a": [65535, 0], "wher' he was a layin": [65535, 0], "he was a layin drunk": [65535, 0], "was a layin drunk and": [65535, 0], "a layin drunk and broke": [65535, 0], "layin drunk and broke his": [65535, 0], "drunk and broke his arm": [65535, 0], "and broke his arm why": [65535, 0], "broke his arm why that's": [65535, 0], "his arm why that's awful": [65535, 0], "arm why that's awful how": [65535, 0], "why that's awful how did": [65535, 0], "that's awful how did he": [65535, 0], "awful how did he know": [65535, 0], "how did he know she": [65535, 0], "did he know she was": [65535, 0], "he know she was a": [65535, 0], "know she was a witching": [65535, 0], "was a witching him lord": [65535, 0], "a witching him lord pap": [65535, 0], "witching him lord pap can": [65535, 0], "him lord pap can tell": [65535, 0], "lord pap can tell easy": [65535, 0], "pap can tell easy pap": [65535, 0], "can tell easy pap says": [65535, 0], "tell easy pap says when": [65535, 0], "easy pap says when they": [65535, 0], "pap says when they keep": [65535, 0], "says when they keep looking": [65535, 0], "when they keep looking at": [65535, 0], "they keep looking at you": [65535, 0], "keep looking at you right": [65535, 0], "looking at you right stiddy": [65535, 0], "at you right stiddy they're": [65535, 0], "you right stiddy they're a": [65535, 0], "right stiddy they're a witching": [65535, 0], "stiddy they're a witching you": [65535, 0], "they're a witching you specially": [65535, 0], "a witching you specially if": [65535, 0], "witching you specially if they": [65535, 0], "you specially if they mumble": [65535, 0], "specially if they mumble becuz": [65535, 0], "if they mumble becuz when": [65535, 0], "they mumble becuz when they": [65535, 0], "mumble becuz when they mumble": [65535, 0], "becuz when they mumble they're": [65535, 0], "when they mumble they're saying": [65535, 0], "they mumble they're saying the": [65535, 0], "mumble they're saying the lord's": [65535, 0], "they're saying the lord's prayer": [65535, 0], "saying the lord's prayer backards": [65535, 0], "the lord's prayer backards say": [65535, 0], "lord's prayer backards say hucky": [65535, 0], "prayer backards say hucky when": [65535, 0], "backards say hucky when you": [65535, 0], "say hucky when you going": [65535, 0], "hucky when you going to": [65535, 0], "when you going to try": [65535, 0], "you going to try the": [65535, 0], "going to try the cat": [65535, 0], "to try the cat to": [65535, 0], "try the cat to night": [65535, 0], "the cat to night i": [65535, 0], "cat to night i reckon": [65535, 0], "to night i reckon they'll": [65535, 0], "night i reckon they'll come": [65535, 0], "i reckon they'll come after": [65535, 0], "reckon they'll come after old": [65535, 0], "they'll come after old hoss": [65535, 0], "come after old hoss williams": [65535, 0], "after old hoss williams to": [65535, 0], "old hoss williams to night": [65535, 0], "hoss williams to night but": [65535, 0], "williams to night but they": [65535, 0], "to night but they buried": [65535, 0], "night but they buried him": [65535, 0], "but they buried him saturday": [65535, 0], "they buried him saturday didn't": [65535, 0], "buried him saturday didn't they": [65535, 0], "him saturday didn't they get": [65535, 0], "saturday didn't they get him": [65535, 0], "didn't they get him saturday": [65535, 0], "they get him saturday night": [65535, 0], "get him saturday night why": [65535, 0], "him saturday night why how": [65535, 0], "saturday night why how you": [65535, 0], "night why how you talk": [65535, 0], "why how you talk how": [65535, 0], "how you talk how could": [65535, 0], "you talk how could their": [65535, 0], "talk how could their charms": [65535, 0], "how could their charms work": [65535, 0], "could their charms work till": [65535, 0], "their charms work till midnight": [65535, 0], "charms work till midnight and": [65535, 0], "work till midnight and then": [65535, 0], "till midnight and then it's": [65535, 0], "midnight and then it's sunday": [65535, 0], "and then it's sunday devils": [65535, 0], "then it's sunday devils don't": [65535, 0], "it's sunday devils don't slosh": [65535, 0], "sunday devils don't slosh around": [65535, 0], "devils don't slosh around much": [65535, 0], "don't slosh around much of": [65535, 0], "slosh around much of a": [65535, 0], "around much of a sunday": [65535, 0], "much of a sunday i": [65535, 0], "of a sunday i don't": [65535, 0], "a sunday i don't reckon": [65535, 0], "sunday i don't reckon i": [65535, 0], "i don't reckon i never": [65535, 0], "don't reckon i never thought": [65535, 0], "reckon i never thought of": [65535, 0], "i never thought of that": [65535, 0], "never thought of that that's": [65535, 0], "thought of that that's so": [65535, 0], "of that that's so lemme": [65535, 0], "that that's so lemme go": [65535, 0], "that's so lemme go with": [65535, 0], "so lemme go with you": [65535, 0], "lemme go with you of": [65535, 0], "go with you of course": [65535, 0], "with you of course if": [65535, 0], "you of course if you": [65535, 0], "of course if you ain't": [65535, 0], "course if you ain't afeard": [65535, 0], "if you ain't afeard afeard": [65535, 0], "you ain't afeard afeard 'tain't": [65535, 0], "ain't afeard afeard 'tain't likely": [65535, 0], "afeard afeard 'tain't likely will": [65535, 0], "afeard 'tain't likely will you": [65535, 0], "'tain't likely will you meow": [65535, 0], "likely will you meow yes": [65535, 0], "will you meow yes and": [65535, 0], "you meow yes and you": [65535, 0], "meow yes and you meow": [65535, 0], "yes and you meow back": [65535, 0], "and you meow back if": [65535, 0], "you meow back if you": [65535, 0], "meow back if you get": [65535, 0], "back if you get a": [65535, 0], "if you get a chance": [65535, 0], "you get a chance last": [65535, 0], "get a chance last time": [65535, 0], "a chance last time you": [65535, 0], "chance last time you kep'": [65535, 0], "last time you kep' me": [65535, 0], "time you kep' me a": [65535, 0], "you kep' me a meowing": [65535, 0], "kep' me a meowing around": [65535, 0], "me a meowing around till": [65535, 0], "a meowing around till old": [65535, 0], "meowing around till old hays": [65535, 0], "around till old hays went": [65535, 0], "till old hays went to": [65535, 0], "old hays went to throwing": [65535, 0], "hays went to throwing rocks": [65535, 0], "went to throwing rocks at": [65535, 0], "to throwing rocks at me": [65535, 0], "throwing rocks at me and": [65535, 0], "rocks at me and says": [65535, 0], "at me and says 'dern": [65535, 0], "me and says 'dern that": [65535, 0], "and says 'dern that cat": [65535, 0], "says 'dern that cat '": [65535, 0], "'dern that cat ' and": [65535, 0], "that cat ' and so": [65535, 0], "cat ' and so i": [65535, 0], "' and so i hove": [65535, 0], "and so i hove a": [65535, 0], "so i hove a brick": [65535, 0], "i hove a brick through": [65535, 0], "hove a brick through his": [65535, 0], "a brick through his window": [65535, 0], "brick through his window but": [65535, 0], "through his window but don't": [65535, 0], "his window but don't you": [65535, 0], "window but don't you tell": [65535, 0], "but don't you tell i": [65535, 0], "don't you tell i won't": [65535, 0], "you tell i won't i": [65535, 0], "tell i won't i couldn't": [65535, 0], "i won't i couldn't meow": [65535, 0], "won't i couldn't meow that": [65535, 0], "i couldn't meow that night": [65535, 0], "couldn't meow that night becuz": [65535, 0], "meow that night becuz auntie": [65535, 0], "that night becuz auntie was": [65535, 0], "night becuz auntie was watching": [65535, 0], "becuz auntie was watching me": [65535, 0], "auntie was watching me but": [65535, 0], "was watching me but i'll": [65535, 0], "watching me but i'll meow": [65535, 0], "me but i'll meow this": [65535, 0], "but i'll meow this time": [65535, 0], "i'll meow this time say": [65535, 0], "meow this time say what's": [65535, 0], "this time say what's that": [65535, 0], "time say what's that nothing": [65535, 0], "say what's that nothing but": [65535, 0], "what's that nothing but a": [65535, 0], "that nothing but a tick": [65535, 0], "nothing but a tick where'd": [65535, 0], "but a tick where'd you": [65535, 0], "a tick where'd you get": [65535, 0], "tick where'd you get him": [65535, 0], "where'd you get him out": [65535, 0], "you get him out in": [65535, 0], "get him out in the": [65535, 0], "him out in the woods": [65535, 0], "out in the woods what'll": [65535, 0], "in the woods what'll you": [65535, 0], "the woods what'll you take": [65535, 0], "woods what'll you take for": [65535, 0], "what'll you take for him": [65535, 0], "you take for him i": [65535, 0], "take for him i don't": [65535, 0], "for him i don't know": [65535, 0], "him i don't know i": [65535, 0], "i don't know i don't": [65535, 0], "don't know i don't want": [65535, 0], "know i don't want to": [65535, 0], "i don't want to sell": [65535, 0], "don't want to sell him": [65535, 0], "want to sell him all": [65535, 0], "to sell him all right": [65535, 0], "sell him all right it's": [65535, 0], "him all right it's a": [65535, 0], "all right it's a mighty": [65535, 0], "right it's a mighty small": [65535, 0], "it's a mighty small tick": [65535, 0], "a mighty small tick anyway": [65535, 0], "mighty small tick anyway oh": [65535, 0], "small tick anyway oh anybody": [65535, 0], "tick anyway oh anybody can": [65535, 0], "anyway oh anybody can run": [65535, 0], "oh anybody can run a": [65535, 0], "anybody can run a tick": [65535, 0], "can run a tick down": [65535, 0], "run a tick down that": [65535, 0], "a tick down that don't": [65535, 0], "tick down that don't belong": [65535, 0], "down that don't belong to": [65535, 0], "that don't belong to them": [65535, 0], "don't belong to them i'm": [65535, 0], "belong to them i'm satisfied": [65535, 0], "to them i'm satisfied with": [65535, 0], "them i'm satisfied with it": [65535, 0], "i'm satisfied with it it's": [65535, 0], "satisfied with it it's a": [65535, 0], "with it it's a good": [65535, 0], "it it's a good enough": [65535, 0], "it's a good enough tick": [65535, 0], "a good enough tick for": [65535, 0], "good enough tick for me": [65535, 0], "enough tick for me sho": [65535, 0], "tick for me sho there's": [65535, 0], "for me sho there's ticks": [65535, 0], "me sho there's ticks a": [65535, 0], "sho there's ticks a plenty": [65535, 0], "there's ticks a plenty i": [65535, 0], "ticks a plenty i could": [65535, 0], "a plenty i could have": [65535, 0], "plenty i could have a": [65535, 0], "i could have a thousand": [65535, 0], "could have a thousand of": [65535, 0], "have a thousand of 'em": [65535, 0], "a thousand of 'em if": [65535, 0], "thousand of 'em if i": [65535, 0], "of 'em if i wanted": [65535, 0], "'em if i wanted to": [65535, 0], "if i wanted to well": [65535, 0], "i wanted to well why": [65535, 0], "wanted to well why don't": [65535, 0], "to well why don't you": [65535, 0], "well why don't you becuz": [65535, 0], "why don't you becuz you": [65535, 0], "don't you becuz you know": [65535, 0], "you becuz you know mighty": [65535, 0], "becuz you know mighty well": [65535, 0], "you know mighty well you": [65535, 0], "know mighty well you can't": [65535, 0], "mighty well you can't this": [65535, 0], "well you can't this is": [65535, 0], "you can't this is a": [65535, 0], "can't this is a pretty": [65535, 0], "this is a pretty early": [65535, 0], "is a pretty early tick": [65535, 0], "a pretty early tick i": [65535, 0], "pretty early tick i reckon": [65535, 0], "early tick i reckon it's": [65535, 0], "tick i reckon it's the": [65535, 0], "i reckon it's the first": [65535, 0], "reckon it's the first one": [65535, 0], "it's the first one i've": [65535, 0], "the first one i've seen": [65535, 0], "first one i've seen this": [65535, 0], "one i've seen this year": [65535, 0], "i've seen this year say": [65535, 0], "seen this year say huck": [65535, 0], "this year say huck i'll": [65535, 0], "year say huck i'll give": [65535, 0], "say huck i'll give you": [65535, 0], "huck i'll give you my": [65535, 0], "i'll give you my tooth": [65535, 0], "give you my tooth for": [65535, 0], "you my tooth for him": [65535, 0], "my tooth for him less": [65535, 0], "tooth for him less see": [65535, 0], "for him less see it": [65535, 0], "him less see it tom": [65535, 0], "less see it tom got": [65535, 0], "see it tom got out": [65535, 0], "it tom got out a": [65535, 0], "tom got out a bit": [65535, 0], "got out a bit of": [65535, 0], "out a bit of paper": [65535, 0], "a bit of paper and": [65535, 0], "bit of paper and carefully": [65535, 0], "of paper and carefully unrolled": [65535, 0], "paper and carefully unrolled it": [65535, 0], "and carefully unrolled it huckleberry": [65535, 0], "carefully unrolled it huckleberry viewed": [65535, 0], "unrolled it huckleberry viewed it": [65535, 0], "it huckleberry viewed it wistfully": [65535, 0], "huckleberry viewed it wistfully the": [65535, 0], "viewed it wistfully the temptation": [65535, 0], "it wistfully the temptation was": [65535, 0], "wistfully the temptation was very": [65535, 0], "the temptation was very strong": [65535, 0], "temptation was very strong at": [65535, 0], "was very strong at last": [65535, 0], "very strong at last he": [65535, 0], "strong at last he said": [65535, 0], "at last he said is": [65535, 0], "last he said is it": [65535, 0], "he said is it genuwyne": [65535, 0], "said is it genuwyne tom": [65535, 0], "is it genuwyne tom lifted": [65535, 0], "it genuwyne tom lifted his": [65535, 0], "genuwyne tom lifted his lip": [65535, 0], "tom lifted his lip and": [65535, 0], "lifted his lip and showed": [65535, 0], "his lip and showed the": [65535, 0], "lip and showed the vacancy": [65535, 0], "and showed the vacancy well": [65535, 0], "showed the vacancy well all": [65535, 0], "the vacancy well all right": [65535, 0], "vacancy well all right said": [65535, 0], "well all right said huckleberry": [65535, 0], "all right said huckleberry it's": [65535, 0], "right said huckleberry it's a": [65535, 0], "said huckleberry it's a trade": [65535, 0], "huckleberry it's a trade tom": [65535, 0], "it's a trade tom enclosed": [65535, 0], "a trade tom enclosed the": [65535, 0], "trade tom enclosed the tick": [65535, 0], "tom enclosed the tick in": [65535, 0], "enclosed the tick in the": [65535, 0], "the tick in the percussion": [65535, 0], "tick in the percussion cap": [65535, 0], "in the percussion cap box": [65535, 0], "the percussion cap box that": [65535, 0], "percussion cap box that had": [65535, 0], "cap box that had lately": [65535, 0], "box that had lately been": [65535, 0], "that had lately been the": [65535, 0], "had lately been the pinchbug's": [65535, 0], "lately been the pinchbug's prison": [65535, 0], "been the pinchbug's prison and": [65535, 0], "the pinchbug's prison and the": [65535, 0], "pinchbug's prison and the boys": [65535, 0], "prison and the boys separated": [65535, 0], "and the boys separated each": [65535, 0], "the boys separated each feeling": [65535, 0], "boys separated each feeling wealthier": [65535, 0], "separated each feeling wealthier than": [65535, 0], "each feeling wealthier than before": [65535, 0], "feeling wealthier than before when": [65535, 0], "wealthier than before when tom": [65535, 0], "than before when tom reached": [65535, 0], "before when tom reached the": [65535, 0], "when tom reached the little": [65535, 0], "tom reached the little isolated": [65535, 0], "reached the little isolated frame": [65535, 0], "the little isolated frame schoolhouse": [65535, 0], "little isolated frame schoolhouse he": [65535, 0], "isolated frame schoolhouse he strode": [65535, 0], "frame schoolhouse he strode in": [65535, 0], "schoolhouse he strode in briskly": [65535, 0], "he strode in briskly with": [65535, 0], "strode in briskly with the": [65535, 0], "in briskly with the manner": [65535, 0], "briskly with the manner of": [65535, 0], "with the manner of one": [65535, 0], "the manner of one who": [65535, 0], "manner of one who had": [65535, 0], "of one who had come": [65535, 0], "one who had come with": [65535, 0], "who had come with all": [65535, 0], "had come with all honest": [65535, 0], "come with all honest speed": [65535, 0], "with all honest speed he": [65535, 0], "all honest speed he hung": [65535, 0], "honest speed he hung his": [65535, 0], "speed he hung his hat": [65535, 0], "he hung his hat on": [65535, 0], "hung his hat on a": [65535, 0], "his hat on a peg": [65535, 0], "hat on a peg and": [65535, 0], "on a peg and flung": [65535, 0], "a peg and flung himself": [65535, 0], "peg and flung himself into": [65535, 0], "and flung himself into his": [65535, 0], "flung himself into his seat": [65535, 0], "himself into his seat with": [65535, 0], "into his seat with business": [65535, 0], "his seat with business like": [65535, 0], "seat with business like alacrity": [65535, 0], "with business like alacrity the": [65535, 0], "business like alacrity the master": [65535, 0], "like alacrity the master throned": [65535, 0], "alacrity the master throned on": [65535, 0], "the master throned on high": [65535, 0], "master throned on high in": [65535, 0], "throned on high in his": [65535, 0], "on high in his great": [65535, 0], "high in his great splint": [65535, 0], "in his great splint bottom": [65535, 0], "his great splint bottom arm": [65535, 0], "great splint bottom arm chair": [65535, 0], "splint bottom arm chair was": [65535, 0], "bottom arm chair was dozing": [65535, 0], "arm chair was dozing lulled": [65535, 0], "chair was dozing lulled by": [65535, 0], "was dozing lulled by the": [65535, 0], "dozing lulled by the drowsy": [65535, 0], "lulled by the drowsy hum": [65535, 0], "by the drowsy hum of": [65535, 0], "the drowsy hum of study": [65535, 0], "drowsy hum of study the": [65535, 0], "hum of study the interruption": [65535, 0], "of study the interruption roused": [65535, 0], "study the interruption roused him": [65535, 0], "the interruption roused him thomas": [65535, 0], "interruption roused him thomas sawyer": [65535, 0], "roused him thomas sawyer tom": [65535, 0], "him thomas sawyer tom knew": [65535, 0], "thomas sawyer tom knew that": [65535, 0], "sawyer tom knew that when": [65535, 0], "tom knew that when his": [65535, 0], "knew that when his name": [65535, 0], "that when his name was": [65535, 0], "when his name was pronounced": [65535, 0], "his name was pronounced in": [65535, 0], "name was pronounced in full": [65535, 0], "was pronounced in full it": [65535, 0], "pronounced in full it meant": [65535, 0], "in full it meant trouble": [65535, 0], "full it meant trouble sir": [65535, 0], "it meant trouble sir come": [65535, 0], "meant trouble sir come up": [65535, 0], "trouble sir come up here": [65535, 0], "sir come up here now": [65535, 0], "come up here now sir": [65535, 0], "up here now sir why": [65535, 0], "here now sir why are": [65535, 0], "now sir why are you": [65535, 0], "sir why are you late": [65535, 0], "why are you late again": [65535, 0], "are you late again as": [65535, 0], "you late again as usual": [65535, 0], "late again as usual tom": [65535, 0], "again as usual tom was": [65535, 0], "as usual tom was about": [65535, 0], "usual tom was about to": [65535, 0], "tom was about to take": [65535, 0], "was about to take refuge": [65535, 0], "about to take refuge in": [65535, 0], "to take refuge in a": [65535, 0], "take refuge in a lie": [65535, 0], "refuge in a lie when": [65535, 0], "in a lie when he": [65535, 0], "a lie when he saw": [65535, 0], "lie when he saw two": [65535, 0], "when he saw two long": [65535, 0], "he saw two long tails": [65535, 0], "saw two long tails of": [65535, 0], "two long tails of yellow": [65535, 0], "long tails of yellow hair": [65535, 0], "tails of yellow hair hanging": [65535, 0], "of yellow hair hanging down": [65535, 0], "yellow hair hanging down a": [65535, 0], "hair hanging down a back": [65535, 0], "hanging down a back that": [65535, 0], "down a back that he": [65535, 0], "a back that he recognized": [65535, 0], "back that he recognized by": [65535, 0], "that he recognized by the": [65535, 0], "he recognized by the electric": [65535, 0], "recognized by the electric sympathy": [65535, 0], "by the electric sympathy of": [65535, 0], "the electric sympathy of love": [65535, 0], "electric sympathy of love and": [65535, 0], "sympathy of love and by": [65535, 0], "of love and by that": [65535, 0], "love and by that form": [65535, 0], "and by that form was": [65535, 0], "by that form was the": [65535, 0], "that form was the only": [65535, 0], "form was the only vacant": [65535, 0], "was the only vacant place": [65535, 0], "the only vacant place on": [65535, 0], "only vacant place on the": [65535, 0], "vacant place on the girls'": [65535, 0], "place on the girls' side": [65535, 0], "on the girls' side of": [65535, 0], "the girls' side of the": [65535, 0], "girls' side of the school": [65535, 0], "side of the school house": [65535, 0], "of the school house he": [65535, 0], "the school house he instantly": [65535, 0], "school house he instantly said": [65535, 0], "house he instantly said i": [65535, 0], "he instantly said i stopped": [65535, 0], "instantly said i stopped to": [65535, 0], "said i stopped to talk": [65535, 0], "i stopped to talk with": [65535, 0], "stopped to talk with huckleberry": [65535, 0], "to talk with huckleberry finn": [65535, 0], "talk with huckleberry finn the": [65535, 0], "with huckleberry finn the master's": [65535, 0], "huckleberry finn the master's pulse": [65535, 0], "finn the master's pulse stood": [65535, 0], "the master's pulse stood still": [65535, 0], "master's pulse stood still and": [65535, 0], "pulse stood still and he": [65535, 0], "stood still and he stared": [65535, 0], "still and he stared helplessly": [65535, 0], "and he stared helplessly the": [65535, 0], "he stared helplessly the buzz": [65535, 0], "stared helplessly the buzz of": [65535, 0], "helplessly the buzz of study": [65535, 0], "the buzz of study ceased": [65535, 0], "buzz of study ceased the": [65535, 0], "of study ceased the pupils": [65535, 0], "study ceased the pupils wondered": [65535, 0], "ceased the pupils wondered if": [65535, 0], "the pupils wondered if this": [65535, 0], "pupils wondered if this foolhardy": [65535, 0], "wondered if this foolhardy boy": [65535, 0], "if this foolhardy boy had": [65535, 0], "this foolhardy boy had lost": [65535, 0], "foolhardy boy had lost his": [65535, 0], "boy had lost his mind": [65535, 0], "had lost his mind the": [65535, 0], "lost his mind the master": [65535, 0], "his mind the master said": [65535, 0], "mind the master said you": [65535, 0], "the master said you you": [65535, 0], "master said you you did": [65535, 0], "said you you did what": [65535, 0], "you you did what stopped": [65535, 0], "you did what stopped to": [65535, 0], "did what stopped to talk": [65535, 0], "what stopped to talk with": [65535, 0], "talk with huckleberry finn there": [65535, 0], "with huckleberry finn there was": [65535, 0], "huckleberry finn there was no": [65535, 0], "finn there was no mistaking": [65535, 0], "there was no mistaking the": [65535, 0], "was no mistaking the words": [65535, 0], "no mistaking the words thomas": [65535, 0], "mistaking the words thomas sawyer": [65535, 0], "the words thomas sawyer this": [65535, 0], "words thomas sawyer this is": [65535, 0], "thomas sawyer this is the": [65535, 0], "sawyer this is the most": [65535, 0], "this is the most astounding": [65535, 0], "is the most astounding confession": [65535, 0], "the most astounding confession i": [65535, 0], "most astounding confession i have": [65535, 0], "astounding confession i have ever": [65535, 0], "confession i have ever listened": [65535, 0], "i have ever listened to": [65535, 0], "have ever listened to no": [65535, 0], "ever listened to no mere": [65535, 0], "listened to no mere ferule": [65535, 0], "to no mere ferule will": [65535, 0], "no mere ferule will answer": [65535, 0], "mere ferule will answer for": [65535, 0], "ferule will answer for this": [65535, 0], "will answer for this offence": [65535, 0], "answer for this offence take": [65535, 0], "for this offence take off": [65535, 0], "this offence take off your": [65535, 0], "offence take off your jacket": [65535, 0], "take off your jacket the": [65535, 0], "off your jacket the master's": [65535, 0], "your jacket the master's arm": [65535, 0], "jacket the master's arm performed": [65535, 0], "the master's arm performed until": [65535, 0], "master's arm performed until it": [65535, 0], "arm performed until it was": [65535, 0], "performed until it was tired": [65535, 0], "until it was tired and": [65535, 0], "it was tired and the": [65535, 0], "was tired and the stock": [65535, 0], "tired and the stock of": [65535, 0], "and the stock of switches": [65535, 0], "the stock of switches notably": [65535, 0], "stock of switches notably diminished": [65535, 0], "of switches notably diminished then": [65535, 0], "switches notably diminished then the": [65535, 0], "notably diminished then the order": [65535, 0], "diminished then the order followed": [65535, 0], "then the order followed now": [65535, 0], "the order followed now sir": [65535, 0], "order followed now sir go": [65535, 0], "followed now sir go and": [65535, 0], "now sir go and sit": [65535, 0], "sir go and sit with": [65535, 0], "go and sit with the": [65535, 0], "and sit with the girls": [65535, 0], "sit with the girls and": [65535, 0], "with the girls and let": [65535, 0], "the girls and let this": [65535, 0], "girls and let this be": [65535, 0], "and let this be a": [65535, 0], "let this be a warning": [65535, 0], "this be a warning to": [65535, 0], "be a warning to you": [65535, 0], "a warning to you the": [65535, 0], "warning to you the titter": [65535, 0], "to you the titter that": [65535, 0], "you the titter that rippled": [65535, 0], "the titter that rippled around": [65535, 0], "titter that rippled around the": [65535, 0], "that rippled around the room": [65535, 0], "rippled around the room appeared": [65535, 0], "around the room appeared to": [65535, 0], "the room appeared to abash": [65535, 0], "room appeared to abash the": [65535, 0], "appeared to abash the boy": [65535, 0], "to abash the boy but": [65535, 0], "abash the boy but in": [65535, 0], "the boy but in reality": [65535, 0], "boy but in reality that": [65535, 0], "but in reality that result": [65535, 0], "in reality that result was": [65535, 0], "reality that result was caused": [65535, 0], "that result was caused rather": [65535, 0], "result was caused rather more": [65535, 0], "was caused rather more by": [65535, 0], "caused rather more by his": [65535, 0], "rather more by his worshipful": [65535, 0], "more by his worshipful awe": [65535, 0], "by his worshipful awe of": [65535, 0], "his worshipful awe of his": [65535, 0], "worshipful awe of his unknown": [65535, 0], "awe of his unknown idol": [65535, 0], "of his unknown idol and": [65535, 0], "his unknown idol and the": [65535, 0], "unknown idol and the dread": [65535, 0], "idol and the dread pleasure": [65535, 0], "and the dread pleasure that": [65535, 0], "the dread pleasure that lay": [65535, 0], "dread pleasure that lay in": [65535, 0], "pleasure that lay in his": [65535, 0], "that lay in his high": [65535, 0], "lay in his high good": [65535, 0], "in his high good fortune": [65535, 0], "his high good fortune he": [65535, 0], "high good fortune he sat": [65535, 0], "good fortune he sat down": [65535, 0], "fortune he sat down upon": [65535, 0], "he sat down upon the": [65535, 0], "sat down upon the end": [65535, 0], "down upon the end of": [65535, 0], "upon the end of the": [65535, 0], "the end of the pine": [65535, 0], "end of the pine bench": [65535, 0], "of the pine bench and": [65535, 0], "the pine bench and the": [65535, 0], "pine bench and the girl": [65535, 0], "bench and the girl hitched": [65535, 0], "and the girl hitched herself": [65535, 0], "the girl hitched herself away": [65535, 0], "girl hitched herself away from": [65535, 0], "hitched herself away from him": [65535, 0], "herself away from him with": [65535, 0], "away from him with a": [65535, 0], "from him with a toss": [65535, 0], "him with a toss of": [65535, 0], "with a toss of her": [65535, 0], "a toss of her head": [65535, 0], "toss of her head nudges": [65535, 0], "of her head nudges and": [65535, 0], "her head nudges and winks": [65535, 0], "head nudges and winks and": [65535, 0], "nudges and winks and whispers": [65535, 0], "and winks and whispers traversed": [65535, 0], "winks and whispers traversed the": [65535, 0], "and whispers traversed the room": [65535, 0], "whispers traversed the room but": [65535, 0], "traversed the room but tom": [65535, 0], "the room but tom sat": [65535, 0], "room but tom sat still": [65535, 0], "but tom sat still with": [65535, 0], "tom sat still with his": [65535, 0], "sat still with his arms": [65535, 0], "still with his arms upon": [65535, 0], "with his arms upon the": [65535, 0], "his arms upon the long": [65535, 0], "arms upon the long low": [65535, 0], "upon the long low desk": [65535, 0], "the long low desk before": [65535, 0], "long low desk before him": [65535, 0], "low desk before him and": [65535, 0], "desk before him and seemed": [65535, 0], "before him and seemed to": [65535, 0], "him and seemed to study": [65535, 0], "and seemed to study his": [65535, 0], "seemed to study his book": [65535, 0], "to study his book by": [65535, 0], "study his book by and": [65535, 0], "his book by and by": [65535, 0], "book by and by attention": [65535, 0], "by and by attention ceased": [65535, 0], "and by attention ceased from": [65535, 0], "by attention ceased from him": [65535, 0], "attention ceased from him and": [65535, 0], "ceased from him and the": [65535, 0], "from him and the accustomed": [65535, 0], "him and the accustomed school": [65535, 0], "and the accustomed school murmur": [65535, 0], "the accustomed school murmur rose": [65535, 0], "accustomed school murmur rose upon": [65535, 0], "school murmur rose upon the": [65535, 0], "murmur rose upon the dull": [65535, 0], "rose upon the dull air": [65535, 0], "upon the dull air once": [65535, 0], "the dull air once more": [65535, 0], "dull air once more presently": [65535, 0], "air once more presently the": [65535, 0], "once more presently the boy": [65535, 0], "more presently the boy began": [65535, 0], "presently the boy began to": [65535, 0], "the boy began to steal": [65535, 0], "boy began to steal furtive": [65535, 0], "began to steal furtive glances": [65535, 0], "to steal furtive glances at": [65535, 0], "steal furtive glances at the": [65535, 0], "furtive glances at the girl": [65535, 0], "glances at the girl she": [65535, 0], "at the girl she observed": [65535, 0], "the girl she observed it": [65535, 0], "girl she observed it made": [65535, 0], "she observed it made a": [65535, 0], "observed it made a mouth": [65535, 0], "it made a mouth at": [65535, 0], "made a mouth at him": [65535, 0], "a mouth at him and": [65535, 0], "mouth at him and gave": [65535, 0], "at him and gave him": [65535, 0], "him and gave him the": [65535, 0], "and gave him the back": [65535, 0], "gave him the back of": [65535, 0], "him the back of her": [65535, 0], "the back of her head": [65535, 0], "back of her head for": [65535, 0], "of her head for the": [65535, 0], "her head for the space": [65535, 0], "head for the space of": [65535, 0], "for the space of a": [65535, 0], "the space of a minute": [65535, 0], "space of a minute when": [65535, 0], "of a minute when she": [65535, 0], "a minute when she cautiously": [65535, 0], "minute when she cautiously faced": [65535, 0], "when she cautiously faced around": [65535, 0], "she cautiously faced around again": [65535, 0], "cautiously faced around again a": [65535, 0], "faced around again a peach": [65535, 0], "around again a peach lay": [65535, 0], "again a peach lay before": [65535, 0], "a peach lay before her": [65535, 0], "peach lay before her she": [65535, 0], "lay before her she thrust": [65535, 0], "before her she thrust it": [65535, 0], "her she thrust it away": [65535, 0], "she thrust it away tom": [65535, 0], "thrust it away tom gently": [65535, 0], "it away tom gently put": [65535, 0], "away tom gently put it": [65535, 0], "tom gently put it back": [65535, 0], "gently put it back she": [65535, 0], "put it back she thrust": [65535, 0], "it back she thrust it": [65535, 0], "back she thrust it away": [65535, 0], "she thrust it away again": [65535, 0], "thrust it away again but": [65535, 0], "it away again but with": [65535, 0], "away again but with less": [65535, 0], "again but with less animosity": [65535, 0], "but with less animosity tom": [65535, 0], "with less animosity tom patiently": [65535, 0], "less animosity tom patiently returned": [65535, 0], "animosity tom patiently returned it": [65535, 0], "tom patiently returned it to": [65535, 0], "patiently returned it to its": [65535, 0], "returned it to its place": [65535, 0], "it to its place then": [65535, 0], "to its place then she": [65535, 0], "its place then she let": [65535, 0], "place then she let it": [65535, 0], "then she let it remain": [65535, 0], "she let it remain tom": [65535, 0], "let it remain tom scrawled": [65535, 0], "it remain tom scrawled on": [65535, 0], "remain tom scrawled on his": [65535, 0], "tom scrawled on his slate": [65535, 0], "scrawled on his slate please": [65535, 0], "on his slate please take": [65535, 0], "his slate please take it": [65535, 0], "slate please take it i": [65535, 0], "please take it i got": [65535, 0], "take it i got more": [65535, 0], "it i got more the": [65535, 0], "i got more the girl": [65535, 0], "got more the girl glanced": [65535, 0], "more the girl glanced at": [65535, 0], "the girl glanced at the": [65535, 0], "girl glanced at the words": [65535, 0], "glanced at the words but": [65535, 0], "at the words but made": [65535, 0], "the words but made no": [65535, 0], "words but made no sign": [65535, 0], "but made no sign now": [65535, 0], "made no sign now the": [65535, 0], "no sign now the boy": [65535, 0], "sign now the boy began": [65535, 0], "now the boy began to": [65535, 0], "the boy began to draw": [65535, 0], "boy began to draw something": [65535, 0], "began to draw something on": [65535, 0], "to draw something on the": [65535, 0], "draw something on the slate": [65535, 0], "something on the slate hiding": [65535, 0], "on the slate hiding his": [65535, 0], "the slate hiding his work": [65535, 0], "slate hiding his work with": [65535, 0], "hiding his work with his": [65535, 0], "his work with his left": [65535, 0], "work with his left hand": [65535, 0], "with his left hand for": [65535, 0], "his left hand for a": [65535, 0], "left hand for a time": [65535, 0], "hand for a time the": [65535, 0], "for a time the girl": [65535, 0], "a time the girl refused": [65535, 0], "time the girl refused to": [65535, 0], "the girl refused to notice": [65535, 0], "girl refused to notice but": [65535, 0], "refused to notice but her": [65535, 0], "to notice but her human": [65535, 0], "notice but her human curiosity": [65535, 0], "but her human curiosity presently": [65535, 0], "her human curiosity presently began": [65535, 0], "human curiosity presently began to": [65535, 0], "curiosity presently began to manifest": [65535, 0], "presently began to manifest itself": [65535, 0], "began to manifest itself by": [65535, 0], "to manifest itself by hardly": [65535, 0], "manifest itself by hardly perceptible": [65535, 0], "itself by hardly perceptible signs": [65535, 0], "by hardly perceptible signs the": [65535, 0], "hardly perceptible signs the boy": [65535, 0], "perceptible signs the boy worked": [65535, 0], "signs the boy worked on": [65535, 0], "the boy worked on apparently": [65535, 0], "boy worked on apparently unconscious": [65535, 0], "worked on apparently unconscious the": [65535, 0], "on apparently unconscious the girl": [65535, 0], "apparently unconscious the girl made": [65535, 0], "unconscious the girl made a": [65535, 0], "the girl made a sort": [65535, 0], "girl made a sort of": [65535, 0], "made a sort of noncommittal": [65535, 0], "a sort of noncommittal attempt": [65535, 0], "sort of noncommittal attempt to": [65535, 0], "of noncommittal attempt to see": [65535, 0], "noncommittal attempt to see but": [65535, 0], "attempt to see but the": [65535, 0], "to see but the boy": [65535, 0], "see but the boy did": [65535, 0], "but the boy did not": [65535, 0], "the boy did not betray": [65535, 0], "boy did not betray that": [65535, 0], "did not betray that he": [65535, 0], "not betray that he was": [65535, 0], "betray that he was aware": [65535, 0], "that he was aware of": [65535, 0], "he was aware of it": [65535, 0], "was aware of it at": [65535, 0], "aware of it at last": [65535, 0], "of it at last she": [65535, 0], "it at last she gave": [65535, 0], "at last she gave in": [65535, 0], "last she gave in and": [65535, 0], "she gave in and hesitatingly": [65535, 0], "gave in and hesitatingly whispered": [65535, 0], "in and hesitatingly whispered let": [65535, 0], "and hesitatingly whispered let me": [65535, 0], "hesitatingly whispered let me see": [65535, 0], "whispered let me see it": [65535, 0], "let me see it tom": [65535, 0], "me see it tom partly": [65535, 0], "see it tom partly uncovered": [65535, 0], "it tom partly uncovered a": [65535, 0], "tom partly uncovered a dismal": [65535, 0], "partly uncovered a dismal caricature": [65535, 0], "uncovered a dismal caricature of": [65535, 0], "a dismal caricature of a": [65535, 0], "dismal caricature of a house": [65535, 0], "caricature of a house with": [65535, 0], "of a house with two": [65535, 0], "a house with two gable": [65535, 0], "house with two gable ends": [65535, 0], "with two gable ends to": [65535, 0], "two gable ends to it": [65535, 0], "gable ends to it and": [65535, 0], "ends to it and a": [65535, 0], "to it and a corkscrew": [65535, 0], "it and a corkscrew of": [65535, 0], "and a corkscrew of smoke": [65535, 0], "a corkscrew of smoke issuing": [65535, 0], "corkscrew of smoke issuing from": [65535, 0], "of smoke issuing from the": [65535, 0], "smoke issuing from the chimney": [65535, 0], "issuing from the chimney then": [65535, 0], "from the chimney then the": [65535, 0], "the chimney then the girl's": [65535, 0], "chimney then the girl's interest": [65535, 0], "then the girl's interest began": [65535, 0], "the girl's interest began to": [65535, 0], "girl's interest began to fasten": [65535, 0], "interest began to fasten itself": [65535, 0], "began to fasten itself upon": [65535, 0], "to fasten itself upon the": [65535, 0], "fasten itself upon the work": [65535, 0], "itself upon the work and": [65535, 0], "upon the work and she": [65535, 0], "the work and she forgot": [65535, 0], "work and she forgot everything": [65535, 0], "and she forgot everything else": [65535, 0], "she forgot everything else when": [65535, 0], "forgot everything else when it": [65535, 0], "everything else when it was": [65535, 0], "else when it was finished": [65535, 0], "when it was finished she": [65535, 0], "it was finished she gazed": [65535, 0], "was finished she gazed a": [65535, 0], "finished she gazed a moment": [65535, 0], "she gazed a moment then": [65535, 0], "gazed a moment then whispered": [65535, 0], "a moment then whispered it's": [65535, 0], "moment then whispered it's nice": [65535, 0], "then whispered it's nice make": [65535, 0], "whispered it's nice make a": [65535, 0], "it's nice make a man": [65535, 0], "nice make a man the": [65535, 0], "make a man the artist": [65535, 0], "a man the artist erected": [65535, 0], "man the artist erected a": [65535, 0], "the artist erected a man": [65535, 0], "artist erected a man in": [65535, 0], "erected a man in the": [65535, 0], "a man in the front": [65535, 0], "man in the front yard": [65535, 0], "in the front yard that": [65535, 0], "the front yard that resembled": [65535, 0], "front yard that resembled a": [65535, 0], "yard that resembled a derrick": [65535, 0], "that resembled a derrick he": [65535, 0], "resembled a derrick he could": [65535, 0], "a derrick he could have": [65535, 0], "derrick he could have stepped": [65535, 0], "he could have stepped over": [65535, 0], "could have stepped over the": [65535, 0], "have stepped over the house": [65535, 0], "stepped over the house but": [65535, 0], "over the house but the": [65535, 0], "the house but the girl": [65535, 0], "house but the girl was": [65535, 0], "but the girl was not": [65535, 0], "the girl was not hypercritical": [65535, 0], "girl was not hypercritical she": [65535, 0], "was not hypercritical she was": [65535, 0], "not hypercritical she was satisfied": [65535, 0], "hypercritical she was satisfied with": [65535, 0], "she was satisfied with the": [65535, 0], "was satisfied with the monster": [65535, 0], "satisfied with the monster and": [65535, 0], "with the monster and whispered": [65535, 0], "the monster and whispered it's": [65535, 0], "monster and whispered it's a": [65535, 0], "and whispered it's a beautiful": [65535, 0], "whispered it's a beautiful man": [65535, 0], "it's a beautiful man now": [65535, 0], "a beautiful man now make": [65535, 0], "beautiful man now make me": [65535, 0], "man now make me coming": [65535, 0], "now make me coming along": [65535, 0], "make me coming along tom": [65535, 0], "me coming along tom drew": [65535, 0], "coming along tom drew an": [65535, 0], "along tom drew an hour": [65535, 0], "tom drew an hour glass": [65535, 0], "drew an hour glass with": [65535, 0], "an hour glass with a": [65535, 0], "hour glass with a full": [65535, 0], "glass with a full moon": [65535, 0], "with a full moon and": [65535, 0], "a full moon and straw": [65535, 0], "full moon and straw limbs": [65535, 0], "moon and straw limbs to": [65535, 0], "and straw limbs to it": [65535, 0], "straw limbs to it and": [65535, 0], "limbs to it and armed": [65535, 0], "to it and armed the": [65535, 0], "it and armed the spreading": [65535, 0], "and armed the spreading fingers": [65535, 0], "armed the spreading fingers with": [65535, 0], "the spreading fingers with a": [65535, 0], "spreading fingers with a portentous": [65535, 0], "fingers with a portentous fan": [65535, 0], "with a portentous fan the": [65535, 0], "a portentous fan the girl": [65535, 0], "portentous fan the girl said": [65535, 0], "fan the girl said it's": [65535, 0], "the girl said it's ever": [65535, 0], "girl said it's ever so": [65535, 0], "said it's ever so nice": [65535, 0], "it's ever so nice i": [65535, 0], "ever so nice i wish": [65535, 0], "so nice i wish i": [65535, 0], "nice i wish i could": [65535, 0], "i wish i could draw": [65535, 0], "wish i could draw it's": [65535, 0], "i could draw it's easy": [65535, 0], "could draw it's easy whispered": [65535, 0], "draw it's easy whispered tom": [65535, 0], "it's easy whispered tom i'll": [65535, 0], "easy whispered tom i'll learn": [65535, 0], "whispered tom i'll learn you": [65535, 0], "tom i'll learn you oh": [65535, 0], "i'll learn you oh will": [65535, 0], "learn you oh will you": [65535, 0], "you oh will you when": [65535, 0], "oh will you when at": [65535, 0], "will you when at noon": [65535, 0], "you when at noon do": [65535, 0], "when at noon do you": [65535, 0], "at noon do you go": [65535, 0], "noon do you go home": [65535, 0], "do you go home to": [65535, 0], "you go home to dinner": [65535, 0], "go home to dinner i'll": [65535, 0], "home to dinner i'll stay": [65535, 0], "to dinner i'll stay if": [65535, 0], "dinner i'll stay if you": [65535, 0], "i'll stay if you will": [65535, 0], "stay if you will good": [65535, 0], "if you will good that's": [65535, 0], "you will good that's a": [65535, 0], "will good that's a whack": [65535, 0], "good that's a whack what's": [65535, 0], "that's a whack what's your": [65535, 0], "a whack what's your name": [65535, 0], "whack what's your name becky": [65535, 0], "what's your name becky thatcher": [65535, 0], "your name becky thatcher what's": [65535, 0], "name becky thatcher what's yours": [65535, 0], "becky thatcher what's yours oh": [65535, 0], "thatcher what's yours oh i": [65535, 0], "what's yours oh i know": [65535, 0], "yours oh i know it's": [65535, 0], "oh i know it's thomas": [65535, 0], "i know it's thomas sawyer": [65535, 0], "know it's thomas sawyer that's": [65535, 0], "it's thomas sawyer that's the": [65535, 0], "thomas sawyer that's the name": [65535, 0], "sawyer that's the name they": [65535, 0], "that's the name they lick": [65535, 0], "the name they lick me": [65535, 0], "name they lick me by": [65535, 0], "they lick me by i'm": [65535, 0], "lick me by i'm tom": [65535, 0], "me by i'm tom when": [65535, 0], "by i'm tom when i'm": [65535, 0], "i'm tom when i'm good": [65535, 0], "tom when i'm good you": [65535, 0], "when i'm good you call": [65535, 0], "i'm good you call me": [65535, 0], "good you call me tom": [65535, 0], "you call me tom will": [65535, 0], "call me tom will you": [65535, 0], "me tom will you yes": [65535, 0], "tom will you yes now": [65535, 0], "will you yes now tom": [65535, 0], "you yes now tom began": [65535, 0], "yes now tom began to": [65535, 0], "now tom began to scrawl": [65535, 0], "tom began to scrawl something": [65535, 0], "began to scrawl something on": [65535, 0], "to scrawl something on the": [65535, 0], "scrawl something on the slate": [65535, 0], "on the slate hiding the": [65535, 0], "the slate hiding the words": [65535, 0], "slate hiding the words from": [65535, 0], "hiding the words from the": [65535, 0], "the words from the girl": [65535, 0], "words from the girl but": [65535, 0], "from the girl but she": [65535, 0], "the girl but she was": [65535, 0], "girl but she was not": [65535, 0], "but she was not backward": [65535, 0], "she was not backward this": [65535, 0], "was not backward this time": [65535, 0], "not backward this time she": [65535, 0], "backward this time she begged": [65535, 0], "this time she begged to": [65535, 0], "time she begged to see": [65535, 0], "she begged to see tom": [65535, 0], "begged to see tom said": [65535, 0], "to see tom said oh": [65535, 0], "see tom said oh it": [65535, 0], "tom said oh it ain't": [65535, 0], "said oh it ain't anything": [65535, 0], "oh it ain't anything yes": [65535, 0], "it ain't anything yes it": [65535, 0], "ain't anything yes it is": [65535, 0], "anything yes it is no": [65535, 0], "yes it is no it": [65535, 0], "it is no it ain't": [65535, 0], "is no it ain't you": [65535, 0], "no it ain't you don't": [65535, 0], "it ain't you don't want": [65535, 0], "ain't you don't want to": [65535, 0], "you don't want to see": [65535, 0], "don't want to see yes": [65535, 0], "want to see yes i": [65535, 0], "to see yes i do": [65535, 0], "see yes i do indeed": [65535, 0], "yes i do indeed i": [65535, 0], "i do indeed i do": [65535, 0], "do indeed i do please": [65535, 0], "indeed i do please let": [65535, 0], "i do please let me": [65535, 0], "do please let me you'll": [65535, 0], "please let me you'll tell": [65535, 0], "let me you'll tell no": [65535, 0], "me you'll tell no i": [65535, 0], "you'll tell no i won't": [65535, 0], "tell no i won't deed": [65535, 0], "no i won't deed and": [65535, 0], "i won't deed and deed": [65535, 0], "won't deed and deed and": [65535, 0], "deed and deed and double": [65535, 0], "and deed and double deed": [65535, 0], "deed and double deed won't": [65535, 0], "and double deed won't you": [65535, 0], "double deed won't you won't": [65535, 0], "deed won't you won't tell": [65535, 0], "won't you won't tell anybody": [65535, 0], "you won't tell anybody at": [65535, 0], "won't tell anybody at all": [65535, 0], "tell anybody at all ever": [65535, 0], "anybody at all ever as": [65535, 0], "at all ever as long": [65535, 0], "all ever as long as": [65535, 0], "ever as long as you": [65535, 0], "as long as you live": [65535, 0], "long as you live no": [65535, 0], "as you live no i": [65535, 0], "you live no i won't": [65535, 0], "live no i won't ever": [65535, 0], "no i won't ever tell": [65535, 0], "i won't ever tell anybody": [65535, 0], "won't ever tell anybody now": [65535, 0], "ever tell anybody now let": [65535, 0], "tell anybody now let me": [65535, 0], "anybody now let me oh": [65535, 0], "now let me oh you": [65535, 0], "let me oh you don't": [65535, 0], "me oh you don't want": [65535, 0], "oh you don't want to": [65535, 0], "don't want to see now": [65535, 0], "want to see now that": [65535, 0], "to see now that you": [65535, 0], "see now that you treat": [65535, 0], "now that you treat me": [65535, 0], "that you treat me so": [65535, 0], "you treat me so i": [65535, 0], "treat me so i will": [65535, 0], "me so i will see": [65535, 0], "so i will see and": [65535, 0], "i will see and she": [65535, 0], "will see and she put": [65535, 0], "see and she put her": [65535, 0], "and she put her small": [65535, 0], "she put her small hand": [65535, 0], "put her small hand upon": [65535, 0], "her small hand upon his": [65535, 0], "small hand upon his and": [65535, 0], "hand upon his and a": [65535, 0], "upon his and a little": [65535, 0], "his and a little scuffle": [65535, 0], "and a little scuffle ensued": [65535, 0], "a little scuffle ensued tom": [65535, 0], "little scuffle ensued tom pretending": [65535, 0], "scuffle ensued tom pretending to": [65535, 0], "ensued tom pretending to resist": [65535, 0], "tom pretending to resist in": [65535, 0], "pretending to resist in earnest": [65535, 0], "to resist in earnest but": [65535, 0], "resist in earnest but letting": [65535, 0], "in earnest but letting his": [65535, 0], "earnest but letting his hand": [65535, 0], "but letting his hand slip": [65535, 0], "letting his hand slip by": [65535, 0], "his hand slip by degrees": [65535, 0], "hand slip by degrees till": [65535, 0], "slip by degrees till these": [65535, 0], "by degrees till these words": [65535, 0], "degrees till these words were": [65535, 0], "till these words were revealed": [65535, 0], "these words were revealed i": [65535, 0], "words were revealed i love": [65535, 0], "were revealed i love you": [65535, 0], "revealed i love you oh": [65535, 0], "i love you oh you": [65535, 0], "love you oh you bad": [65535, 0], "you oh you bad thing": [65535, 0], "oh you bad thing and": [65535, 0], "you bad thing and she": [65535, 0], "bad thing and she hit": [65535, 0], "thing and she hit his": [65535, 0], "and she hit his hand": [65535, 0], "she hit his hand a": [65535, 0], "hit his hand a smart": [65535, 0], "his hand a smart rap": [65535, 0], "hand a smart rap but": [65535, 0], "a smart rap but reddened": [65535, 0], "smart rap but reddened and": [65535, 0], "rap but reddened and looked": [65535, 0], "but reddened and looked pleased": [65535, 0], "reddened and looked pleased nevertheless": [65535, 0], "and looked pleased nevertheless just": [65535, 0], "looked pleased nevertheless just at": [65535, 0], "pleased nevertheless just at this": [65535, 0], "nevertheless just at this juncture": [65535, 0], "just at this juncture the": [65535, 0], "at this juncture the boy": [65535, 0], "this juncture the boy felt": [65535, 0], "juncture the boy felt a": [65535, 0], "the boy felt a slow": [65535, 0], "boy felt a slow fateful": [65535, 0], "felt a slow fateful grip": [65535, 0], "a slow fateful grip closing": [65535, 0], "slow fateful grip closing on": [65535, 0], "fateful grip closing on his": [65535, 0], "grip closing on his ear": [65535, 0], "closing on his ear and": [65535, 0], "on his ear and a": [65535, 0], "his ear and a steady": [65535, 0], "ear and a steady lifting": [65535, 0], "and a steady lifting impulse": [65535, 0], "a steady lifting impulse in": [65535, 0], "steady lifting impulse in that": [65535, 0], "lifting impulse in that vise": [65535, 0], "impulse in that vise he": [65535, 0], "in that vise he was": [65535, 0], "that vise he was borne": [65535, 0], "vise he was borne across": [65535, 0], "he was borne across the": [65535, 0], "was borne across the house": [65535, 0], "borne across the house and": [65535, 0], "across the house and deposited": [65535, 0], "the house and deposited in": [65535, 0], "house and deposited in his": [65535, 0], "and deposited in his own": [65535, 0], "deposited in his own seat": [65535, 0], "in his own seat under": [65535, 0], "his own seat under a": [65535, 0], "own seat under a peppering": [65535, 0], "seat under a peppering fire": [65535, 0], "under a peppering fire of": [65535, 0], "a peppering fire of giggles": [65535, 0], "peppering fire of giggles from": [65535, 0], "fire of giggles from the": [65535, 0], "of giggles from the whole": [65535, 0], "giggles from the whole school": [65535, 0], "from the whole school then": [65535, 0], "the whole school then the": [65535, 0], "whole school then the master": [65535, 0], "school then the master stood": [65535, 0], "then the master stood over": [65535, 0], "the master stood over him": [65535, 0], "master stood over him during": [65535, 0], "stood over him during a": [65535, 0], "over him during a few": [65535, 0], "him during a few awful": [65535, 0], "during a few awful moments": [65535, 0], "a few awful moments and": [65535, 0], "few awful moments and finally": [65535, 0], "awful moments and finally moved": [65535, 0], "moments and finally moved away": [65535, 0], "and finally moved away to": [65535, 0], "finally moved away to his": [65535, 0], "moved away to his throne": [65535, 0], "away to his throne without": [65535, 0], "to his throne without saying": [65535, 0], "his throne without saying a": [65535, 0], "throne without saying a word": [65535, 0], "without saying a word but": [65535, 0], "saying a word but although": [65535, 0], "a word but although tom's": [65535, 0], "word but although tom's ear": [65535, 0], "but although tom's ear tingled": [65535, 0], "although tom's ear tingled his": [65535, 0], "tom's ear tingled his heart": [65535, 0], "ear tingled his heart was": [65535, 0], "tingled his heart was jubilant": [65535, 0], "his heart was jubilant as": [65535, 0], "heart was jubilant as the": [65535, 0], "was jubilant as the school": [65535, 0], "jubilant as the school quieted": [65535, 0], "as the school quieted down": [65535, 0], "the school quieted down tom": [65535, 0], "school quieted down tom made": [65535, 0], "quieted down tom made an": [65535, 0], "down tom made an honest": [65535, 0], "tom made an honest effort": [65535, 0], "made an honest effort to": [65535, 0], "an honest effort to study": [65535, 0], "honest effort to study but": [65535, 0], "effort to study but the": [65535, 0], "to study but the turmoil": [65535, 0], "study but the turmoil within": [65535, 0], "but the turmoil within him": [65535, 0], "the turmoil within him was": [65535, 0], "turmoil within him was too": [65535, 0], "within him was too great": [65535, 0], "him was too great in": [65535, 0], "was too great in turn": [65535, 0], "too great in turn he": [65535, 0], "great in turn he took": [65535, 0], "in turn he took his": [65535, 0], "turn he took his place": [65535, 0], "he took his place in": [65535, 0], "took his place in the": [65535, 0], "his place in the reading": [65535, 0], "place in the reading class": [65535, 0], "in the reading class and": [65535, 0], "the reading class and made": [65535, 0], "reading class and made a": [65535, 0], "class and made a botch": [65535, 0], "and made a botch of": [65535, 0], "made a botch of it": [65535, 0], "a botch of it then": [65535, 0], "botch of it then in": [65535, 0], "of it then in the": [65535, 0], "it then in the geography": [65535, 0], "then in the geography class": [65535, 0], "in the geography class and": [65535, 0], "the geography class and turned": [65535, 0], "geography class and turned lakes": [65535, 0], "class and turned lakes into": [65535, 0], "and turned lakes into mountains": [65535, 0], "turned lakes into mountains mountains": [65535, 0], "lakes into mountains mountains into": [65535, 0], "into mountains mountains into rivers": [65535, 0], "mountains mountains into rivers and": [65535, 0], "mountains into rivers and rivers": [65535, 0], "into rivers and rivers into": [65535, 0], "rivers and rivers into continents": [65535, 0], "and rivers into continents till": [65535, 0], "rivers into continents till chaos": [65535, 0], "into continents till chaos was": [65535, 0], "continents till chaos was come": [65535, 0], "till chaos was come again": [65535, 0], "chaos was come again then": [65535, 0], "was come again then in": [65535, 0], "come again then in the": [65535, 0], "again then in the spelling": [65535, 0], "then in the spelling class": [65535, 0], "in the spelling class and": [65535, 0], "the spelling class and got": [65535, 0], "spelling class and got turned": [65535, 0], "class and got turned down": [65535, 0], "and got turned down by": [65535, 0], "got turned down by a": [65535, 0], "turned down by a succession": [65535, 0], "down by a succession of": [65535, 0], "by a succession of mere": [65535, 0], "a succession of mere baby": [65535, 0], "succession of mere baby words": [65535, 0], "of mere baby words till": [65535, 0], "mere baby words till he": [65535, 0], "baby words till he brought": [65535, 0], "words till he brought up": [65535, 0], "till he brought up at": [65535, 0], "he brought up at the": [65535, 0], "brought up at the foot": [65535, 0], "up at the foot and": [65535, 0], "at the foot and yielded": [65535, 0], "the foot and yielded up": [65535, 0], "foot and yielded up the": [65535, 0], "and yielded up the pewter": [65535, 0], "yielded up the pewter medal": [65535, 0], "up the pewter medal which": [65535, 0], "the pewter medal which he": [65535, 0], "pewter medal which he had": [65535, 0], "medal which he had worn": [65535, 0], "which he had worn with": [65535, 0], "he had worn with ostentation": [65535, 0], "had worn with ostentation for": [65535, 0], "worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable": [65535, 0], "morning found tom sawyer miserable monday": [65535, 0], "found tom sawyer miserable monday morning": [65535, 0], "tom sawyer miserable monday morning always": [65535, 0], "sawyer miserable monday morning always found": [65535, 0], "miserable monday morning always found him": [65535, 0], "monday morning always found him so": [65535, 0], "morning always found him so because": [65535, 0], "always found him so because it": [65535, 0], "found him so because it began": [65535, 0], "him so because it began another": [65535, 0], "so because it began another week's": [65535, 0], "because it began another week's slow": [65535, 0], "it began another week's slow suffering": [65535, 0], "began another week's slow suffering in": [65535, 0], "another week's slow suffering in school": [65535, 0], "week's slow suffering in school he": [65535, 0], "slow suffering in school he generally": [65535, 0], "suffering in school he generally began": [65535, 0], "in school he generally began that": [65535, 0], "school he generally began that day": [65535, 0], "he generally began that day with": [65535, 0], "generally began that day with wishing": [65535, 0], "began that day with wishing he": [65535, 0], "that day with wishing he had": [65535, 0], "day with wishing he had had": [65535, 0], "with wishing he had had no": [65535, 0], "wishing he had had no intervening": [65535, 0], "he had had no intervening holiday": [65535, 0], "had had no intervening holiday it": [65535, 0], "had no intervening holiday it made": [65535, 0], "no intervening holiday it made the": [65535, 0], "intervening holiday it made the going": [65535, 0], "holiday it made the going into": [65535, 0], "it made the going into captivity": [65535, 0], "made the going into captivity and": [65535, 0], "the going into captivity and fetters": [65535, 0], "going into captivity and fetters again": [65535, 0], "into captivity and fetters again so": [65535, 0], "captivity and fetters again so much": [65535, 0], "and fetters again so much more": [65535, 0], "fetters again so much more odious": [65535, 0], "again so much more odious tom": [65535, 0], "so much more odious tom lay": [65535, 0], "much more odious tom lay thinking": [65535, 0], "more odious tom lay thinking presently": [65535, 0], "odious tom lay thinking presently it": [65535, 0], "tom lay thinking presently it occurred": [65535, 0], "lay thinking presently it occurred to": [65535, 0], "thinking presently it occurred to him": [65535, 0], "presently it occurred to him that": [65535, 0], "it occurred to him that he": [65535, 0], "occurred to him that he wished": [65535, 0], "to him that he wished he": [65535, 0], "him that he wished he was": [65535, 0], "that he wished he was sick": [65535, 0], "he wished he was sick then": [65535, 0], "wished he was sick then he": [65535, 0], "he was sick then he could": [65535, 0], "was sick then he could stay": [65535, 0], "sick then he could stay home": [65535, 0], "then he could stay home from": [65535, 0], "he could stay home from school": [65535, 0], "could stay home from school here": [65535, 0], "stay home from school here was": [65535, 0], "home from school here was a": [65535, 0], "from school here was a vague": [65535, 0], "school here was a vague possibility": [65535, 0], "here was a vague possibility he": [65535, 0], "was a vague possibility he canvassed": [65535, 0], "a vague possibility he canvassed his": [65535, 0], "vague possibility he canvassed his system": [65535, 0], "possibility he canvassed his system no": [65535, 0], "he canvassed his system no ailment": [65535, 0], "canvassed his system no ailment was": [65535, 0], "his system no ailment was found": [65535, 0], "system no ailment was found and": [65535, 0], "no ailment was found and he": [65535, 0], "ailment was found and he investigated": [65535, 0], "was found and he investigated again": [65535, 0], "found and he investigated again this": [65535, 0], "and he investigated again this time": [65535, 0], "he investigated again this time he": [65535, 0], "investigated again this time he thought": [65535, 0], "again this time he thought he": [65535, 0], "this time he thought he could": [65535, 0], "time he thought he could detect": [65535, 0], "he thought he could detect colicky": [65535, 0], "thought he could detect colicky symptoms": [65535, 0], "he could detect colicky symptoms and": [65535, 0], "could detect colicky symptoms and he": [65535, 0], "detect colicky symptoms and he began": [65535, 0], "colicky symptoms and he began to": [65535, 0], "symptoms and he began to encourage": [65535, 0], "and he began to encourage them": [65535, 0], "he began to encourage them with": [65535, 0], "began to encourage them with considerable": [65535, 0], "to encourage them with considerable hope": [65535, 0], "encourage them with considerable hope but": [65535, 0], "them with considerable hope but they": [65535, 0], "with considerable hope but they soon": [65535, 0], "considerable hope but they soon grew": [65535, 0], "hope but they soon grew feeble": [65535, 0], "but they soon grew feeble and": [65535, 0], "they soon grew feeble and presently": [65535, 0], "soon grew feeble and presently died": [65535, 0], "grew feeble and presently died wholly": [65535, 0], "feeble and presently died wholly away": [65535, 0], "and presently died wholly away he": [65535, 0], "presently died wholly away he reflected": [65535, 0], "died wholly away he reflected further": [65535, 0], "wholly away he reflected further suddenly": [65535, 0], "away he reflected further suddenly he": [65535, 0], "he reflected further suddenly he discovered": [65535, 0], "reflected further suddenly he discovered something": [65535, 0], "further suddenly he discovered something one": [65535, 0], "suddenly he discovered something one of": [65535, 0], "he discovered something one of his": [65535, 0], "discovered something one of his upper": [65535, 0], "something one of his upper front": [65535, 0], "one of his upper front teeth": [65535, 0], "of his upper front teeth was": [65535, 0], "his upper front teeth was loose": [65535, 0], "upper front teeth was loose this": [65535, 0], "front teeth was loose this was": [65535, 0], "teeth was loose this was lucky": [65535, 0], "was loose this was lucky he": [65535, 0], "loose this was lucky he was": [65535, 0], "this was lucky he was about": [65535, 0], "was lucky he was about to": [65535, 0], "lucky he was about to begin": [65535, 0], "he was about to begin to": [65535, 0], "was about to begin to groan": [65535, 0], "about to begin to groan as": [65535, 0], "to begin to groan as a": [65535, 0], "begin to groan as a starter": [65535, 0], "to groan as a starter as": [65535, 0], "groan as a starter as he": [65535, 0], "as a starter as he called": [65535, 0], "a starter as he called it": [65535, 0], "starter as he called it when": [65535, 0], "as he called it when it": [65535, 0], "he called it when it occurred": [65535, 0], "called it when it occurred to": [65535, 0], "it when it occurred to him": [65535, 0], "when it occurred to him that": [65535, 0], "it occurred to him that if": [65535, 0], "occurred to him that if he": [65535, 0], "to him that if he came": [65535, 0], "him that if he came into": [65535, 0], "that if he came into court": [65535, 0], "if he came into court with": [65535, 0], "he came into court with that": [65535, 0], "came into court with that argument": [65535, 0], "into court with that argument his": [65535, 0], "court with that argument his aunt": [65535, 0], "with that argument his aunt would": [65535, 0], "that argument his aunt would pull": [65535, 0], "argument his aunt would pull it": [65535, 0], "his aunt would pull it out": [65535, 0], "aunt would pull it out and": [65535, 0], "would pull it out and that": [65535, 0], "pull it out and that would": [65535, 0], "it out and that would hurt": [65535, 0], "out and that would hurt so": [65535, 0], "and that would hurt so he": [65535, 0], "that would hurt so he thought": [65535, 0], "would hurt so he thought he": [65535, 0], "hurt so he thought he would": [65535, 0], "so he thought he would hold": [65535, 0], "he thought he would hold the": [65535, 0], "thought he would hold the tooth": [65535, 0], "he would hold the tooth in": [65535, 0], "would hold the tooth in reserve": [65535, 0], "hold the tooth in reserve for": [65535, 0], "the tooth in reserve for the": [65535, 0], "tooth in reserve for the present": [65535, 0], "in reserve for the present and": [65535, 0], "reserve for the present and seek": [65535, 0], "for the present and seek further": [65535, 0], "the present and seek further nothing": [65535, 0], "present and seek further nothing offered": [65535, 0], "and seek further nothing offered for": [65535, 0], "seek further nothing offered for some": [65535, 0], "further nothing offered for some little": [65535, 0], "nothing offered for some little time": [65535, 0], "offered for some little time and": [65535, 0], "for some little time and then": [65535, 0], "some little time and then he": [65535, 0], "little time and then he remembered": [65535, 0], "time and then he remembered hearing": [65535, 0], "and then he remembered hearing the": [65535, 0], "then he remembered hearing the doctor": [65535, 0], "he remembered hearing the doctor tell": [65535, 0], "remembered hearing the doctor tell about": [65535, 0], "hearing the doctor tell about a": [65535, 0], "the doctor tell about a certain": [65535, 0], "doctor tell about a certain thing": [65535, 0], "tell about a certain thing that": [65535, 0], "about a certain thing that laid": [65535, 0], "a certain thing that laid up": [65535, 0], "certain thing that laid up a": [65535, 0], "thing that laid up a patient": [65535, 0], "that laid up a patient for": [65535, 0], "laid up a patient for two": [65535, 0], "up a patient for two or": [65535, 0], "a patient for two or three": [65535, 0], "patient for two or three weeks": [65535, 0], "for two or three weeks and": [65535, 0], "two or three weeks and threatened": [65535, 0], "or three weeks and threatened to": [65535, 0], "three weeks and threatened to make": [65535, 0], "weeks and threatened to make him": [65535, 0], "and threatened to make him lose": [65535, 0], "threatened to make him lose a": [65535, 0], "to make him lose a finger": [65535, 0], "make him lose a finger so": [65535, 0], "him lose a finger so the": [65535, 0], "lose a finger so the boy": [65535, 0], "a finger so the boy eagerly": [65535, 0], "finger so the boy eagerly drew": [65535, 0], "so the boy eagerly drew his": [65535, 0], "the boy eagerly drew his sore": [65535, 0], "boy eagerly drew his sore toe": [65535, 0], "eagerly drew his sore toe from": [65535, 0], "drew his sore toe from under": [65535, 0], "his sore toe from under the": [65535, 0], "sore toe from under the sheet": [65535, 0], "toe from under the sheet and": [65535, 0], "from under the sheet and held": [65535, 0], "under the sheet and held it": [65535, 0], "the sheet and held it up": [65535, 0], "sheet and held it up for": [65535, 0], "and held it up for inspection": [65535, 0], "held it up for inspection but": [65535, 0], "it up for inspection but now": [65535, 0], "up for inspection but now he": [65535, 0], "for inspection but now he did": [65535, 0], "inspection but now he did not": [65535, 0], "but now he did not know": [65535, 0], "now he did not know the": [65535, 0], "he did not know the necessary": [65535, 0], "did not know the necessary symptoms": [65535, 0], "not know the necessary symptoms however": [65535, 0], "know the necessary symptoms however it": [65535, 0], "the necessary symptoms however it seemed": [65535, 0], "necessary symptoms however it seemed well": [65535, 0], "symptoms however it seemed well worth": [65535, 0], "however it seemed well worth while": [65535, 0], "it seemed well worth while to": [65535, 0], "seemed well worth while to chance": [65535, 0], "well worth while to chance it": [65535, 0], "worth while to chance it so": [65535, 0], "while to chance it so he": [65535, 0], "to chance it so he fell": [65535, 0], "chance it so he fell to": [65535, 0], "it so he fell to groaning": [65535, 0], "so he fell to groaning with": [65535, 0], "he fell to groaning with considerable": [65535, 0], "fell to groaning with considerable spirit": [65535, 0], "to groaning with considerable spirit but": [65535, 0], "groaning with considerable spirit but sid": [65535, 0], "with considerable spirit but sid slept": [65535, 0], "considerable spirit but sid slept on": [65535, 0], "spirit but sid slept on unconscious": [65535, 0], "but sid slept on unconscious tom": [65535, 0], "sid slept on unconscious tom groaned": [65535, 0], "slept on unconscious tom groaned louder": [65535, 0], "on unconscious tom groaned louder and": [65535, 0], "unconscious tom groaned louder and fancied": [65535, 0], "tom groaned louder and fancied that": [65535, 0], "groaned louder and fancied that he": [65535, 0], "louder and fancied that he began": [65535, 0], "and fancied that he began to": [65535, 0], "fancied that he began to feel": [65535, 0], "that he began to feel pain": [65535, 0], "he began to feel pain in": [65535, 0], "began to feel pain in the": [65535, 0], "to feel pain in the toe": [65535, 0], "feel pain in the toe no": [65535, 0], "pain in the toe no result": [65535, 0], "in the toe no result from": [65535, 0], "the toe no result from sid": [65535, 0], "toe no result from sid tom": [65535, 0], "no result from sid tom was": [65535, 0], "result from sid tom was panting": [65535, 0], "from sid tom was panting with": [65535, 0], "sid tom was panting with his": [65535, 0], "tom was panting with his exertions": [65535, 0], "was panting with his exertions by": [65535, 0], "panting with his exertions by this": [65535, 0], "with his exertions by this time": [65535, 0], "his exertions by this time he": [65535, 0], "exertions by this time he took": [65535, 0], "by this time he took a": [65535, 0], "this time he took a rest": [65535, 0], "time he took a rest and": [65535, 0], "he took a rest and then": [65535, 0], "took a rest and then swelled": [65535, 0], "a rest and then swelled himself": [65535, 0], "rest and then swelled himself up": [65535, 0], "and then swelled himself up and": [65535, 0], "then swelled himself up and fetched": [65535, 0], "swelled himself up and fetched a": [65535, 0], "himself up and fetched a succession": [65535, 0], "up and fetched a succession of": [65535, 0], "and fetched a succession of admirable": [65535, 0], "fetched a succession of admirable groans": [65535, 0], "a succession of admirable groans sid": [65535, 0], "succession of admirable groans sid snored": [65535, 0], "of admirable groans sid snored on": [65535, 0], "admirable groans sid snored on tom": [65535, 0], "groans sid snored on tom was": [65535, 0], "sid snored on tom was aggravated": [65535, 0], "snored on tom was aggravated he": [65535, 0], "on tom was aggravated he said": [65535, 0], "tom was aggravated he said sid": [65535, 0], "was aggravated he said sid sid": [65535, 0], "aggravated he said sid sid and": [65535, 0], "he said sid sid and shook": [65535, 0], "said sid sid and shook him": [65535, 0], "sid sid and shook him this": [65535, 0], "sid and shook him this course": [65535, 0], "and shook him this course worked": [65535, 0], "shook him this course worked well": [65535, 0], "him this course worked well and": [65535, 0], "this course worked well and tom": [65535, 0], "course worked well and tom began": [65535, 0], "worked well and tom began to": [65535, 0], "well and tom began to groan": [65535, 0], "and tom began to groan again": [65535, 0], "tom began to groan again sid": [65535, 0], "began to groan again sid yawned": [65535, 0], "to groan again sid yawned stretched": [65535, 0], "groan again sid yawned stretched then": [65535, 0], "again sid yawned stretched then brought": [65535, 0], "sid yawned stretched then brought himself": [65535, 0], "yawned stretched then brought himself up": [65535, 0], "stretched then brought himself up on": [65535, 0], "then brought himself up on his": [65535, 0], "brought himself up on his elbow": [65535, 0], "himself up on his elbow with": [65535, 0], "up on his elbow with a": [65535, 0], "on his elbow with a snort": [65535, 0], "his elbow with a snort and": [65535, 0], "elbow with a snort and began": [65535, 0], "with a snort and began to": [65535, 0], "a snort and began to stare": [65535, 0], "snort and began to stare at": [65535, 0], "and began to stare at tom": [65535, 0], "began to stare at tom tom": [65535, 0], "to stare at tom tom went": [65535, 0], "stare at tom tom went on": [65535, 0], "at tom tom went on groaning": [65535, 0], "tom tom went on groaning sid": [65535, 0], "tom went on groaning sid said": [65535, 0], "went on groaning sid said tom": [65535, 0], "on groaning sid said tom say": [65535, 0], "groaning sid said tom say tom": [65535, 0], "sid said tom say tom no": [65535, 0], "said tom say tom no response": [65535, 0], "tom say tom no response here": [65535, 0], "say tom no response here tom": [65535, 0], "tom no response here tom tom": [65535, 0], "no response here tom tom what": [65535, 0], "response here tom tom what is": [65535, 0], "here tom tom what is the": [65535, 0], "tom tom what is the matter": [65535, 0], "tom what is the matter tom": [65535, 0], "what is the matter tom and": [65535, 0], "is the matter tom and he": [65535, 0], "the matter tom and he shook": [65535, 0], "matter tom and he shook him": [65535, 0], "tom and he shook him and": [65535, 0], "and he shook him and looked": [65535, 0], "he shook him and looked in": [65535, 0], "shook him and looked in his": [65535, 0], "him and looked in his face": [65535, 0], "and looked in his face anxiously": [65535, 0], "looked in his face anxiously tom": [65535, 0], "in his face anxiously tom moaned": [65535, 0], "his face anxiously tom moaned out": [65535, 0], "face anxiously tom moaned out oh": [65535, 0], "anxiously tom moaned out oh don't": [65535, 0], "tom moaned out oh don't sid": [65535, 0], "moaned out oh don't sid don't": [65535, 0], "out oh don't sid don't joggle": [65535, 0], "oh don't sid don't joggle me": [65535, 0], "don't sid don't joggle me why": [65535, 0], "sid don't joggle me why what's": [65535, 0], "don't joggle me why what's the": [65535, 0], "joggle me why what's the matter": [65535, 0], "me why what's the matter tom": [65535, 0], "why what's the matter tom i": [65535, 0], "what's the matter tom i must": [65535, 0], "the matter tom i must call": [65535, 0], "matter tom i must call auntie": [65535, 0], "tom i must call auntie no": [65535, 0], "i must call auntie no never": [65535, 0], "must call auntie no never mind": [65535, 0], "call auntie no never mind it'll": [65535, 0], "auntie no never mind it'll be": [65535, 0], "no never mind it'll be over": [65535, 0], "never mind it'll be over by": [65535, 0], "mind it'll be over by and": [65535, 0], "it'll be over by and by": [65535, 0], "be over by and by maybe": [65535, 0], "over by and by maybe don't": [65535, 0], "by and by maybe don't call": [65535, 0], "and by maybe don't call anybody": [65535, 0], "by maybe don't call anybody but": [65535, 0], "maybe don't call anybody but i": [65535, 0], "don't call anybody but i must": [65535, 0], "call anybody but i must don't": [65535, 0], "anybody but i must don't groan": [65535, 0], "but i must don't groan so": [65535, 0], "i must don't groan so tom": [65535, 0], "must don't groan so tom it's": [65535, 0], "don't groan so tom it's awful": [65535, 0], "groan so tom it's awful how": [65535, 0], "so tom it's awful how long": [65535, 0], "tom it's awful how long you": [65535, 0], "it's awful how long you been": [65535, 0], "awful how long you been this": [65535, 0], "how long you been this way": [65535, 0], "long you been this way hours": [65535, 0], "you been this way hours ouch": [65535, 0], "been this way hours ouch oh": [65535, 0], "this way hours ouch oh don't": [65535, 0], "way hours ouch oh don't stir": [65535, 0], "hours ouch oh don't stir so": [65535, 0], "ouch oh don't stir so sid": [65535, 0], "oh don't stir so sid you'll": [65535, 0], "don't stir so sid you'll kill": [65535, 0], "stir so sid you'll kill me": [65535, 0], "so sid you'll kill me tom": [65535, 0], "sid you'll kill me tom why": [65535, 0], "you'll kill me tom why didn't": [65535, 0], "kill me tom why didn't you": [65535, 0], "me tom why didn't you wake": [65535, 0], "tom why didn't you wake me": [65535, 0], "why didn't you wake me sooner": [65535, 0], "didn't you wake me sooner oh": [65535, 0], "you wake me sooner oh tom": [65535, 0], "wake me sooner oh tom don't": [65535, 0], "me sooner oh tom don't it": [65535, 0], "sooner oh tom don't it makes": [65535, 0], "oh tom don't it makes my": [65535, 0], "tom don't it makes my flesh": [65535, 0], "don't it makes my flesh crawl": [65535, 0], "it makes my flesh crawl to": [65535, 0], "makes my flesh crawl to hear": [65535, 0], "my flesh crawl to hear you": [65535, 0], "flesh crawl to hear you tom": [65535, 0], "crawl to hear you tom what": [65535, 0], "to hear you tom what is": [65535, 0], "hear you tom what is the": [65535, 0], "you tom what is the matter": [65535, 0], "tom what is the matter i": [65535, 0], "what is the matter i forgive": [65535, 0], "is the matter i forgive you": [65535, 0], "the matter i forgive you everything": [65535, 0], "matter i forgive you everything sid": [65535, 0], "i forgive you everything sid groan": [65535, 0], "forgive you everything sid groan everything": [65535, 0], "you everything sid groan everything you've": [65535, 0], "everything sid groan everything you've ever": [65535, 0], "sid groan everything you've ever done": [65535, 0], "groan everything you've ever done to": [65535, 0], "everything you've ever done to me": [65535, 0], "you've ever done to me when": [65535, 0], "ever done to me when i'm": [65535, 0], "done to me when i'm gone": [65535, 0], "to me when i'm gone oh": [65535, 0], "me when i'm gone oh tom": [65535, 0], "when i'm gone oh tom you": [65535, 0], "i'm gone oh tom you ain't": [65535, 0], "gone oh tom you ain't dying": [65535, 0], "oh tom you ain't dying are": [65535, 0], "tom you ain't dying are you": [65535, 0], "you ain't dying are you don't": [65535, 0], "ain't dying are you don't tom": [65535, 0], "dying are you don't tom oh": [65535, 0], "are you don't tom oh don't": [65535, 0], "you don't tom oh don't maybe": [65535, 0], "don't tom oh don't maybe i": [65535, 0], "tom oh don't maybe i forgive": [65535, 0], "oh don't maybe i forgive everybody": [65535, 0], "don't maybe i forgive everybody sid": [65535, 0], "maybe i forgive everybody sid groan": [65535, 0], "i forgive everybody sid groan tell": [65535, 0], "forgive everybody sid groan tell 'em": [65535, 0], "everybody sid groan tell 'em so": [65535, 0], "sid groan tell 'em so sid": [65535, 0], "groan tell 'em so sid and": [65535, 0], "tell 'em so sid and sid": [65535, 0], "'em so sid and sid you": [65535, 0], "so sid and sid you give": [65535, 0], "sid and sid you give my": [65535, 0], "and sid you give my window": [65535, 0], "sid you give my window sash": [65535, 0], "you give my window sash and": [65535, 0], "give my window sash and my": [65535, 0], "my window sash and my cat": [65535, 0], "window sash and my cat with": [65535, 0], "sash and my cat with one": [65535, 0], "and my cat with one eye": [65535, 0], "my cat with one eye to": [65535, 0], "cat with one eye to that": [65535, 0], "with one eye to that new": [65535, 0], "one eye to that new girl": [65535, 0], "eye to that new girl that's": [65535, 0], "to that new girl that's come": [65535, 0], "that new girl that's come to": [65535, 0], "new girl that's come to town": [65535, 0], "girl that's come to town and": [65535, 0], "that's come to town and tell": [65535, 0], "come to town and tell her": [65535, 0], "to town and tell her but": [65535, 0], "town and tell her but sid": [65535, 0], "and tell her but sid had": [65535, 0], "tell her but sid had snatched": [65535, 0], "her but sid had snatched his": [65535, 0], "but sid had snatched his clothes": [65535, 0], "sid had snatched his clothes and": [65535, 0], "had snatched his clothes and gone": [65535, 0], "snatched his clothes and gone tom": [65535, 0], "his clothes and gone tom was": [65535, 0], "clothes and gone tom was suffering": [65535, 0], "and gone tom was suffering in": [65535, 0], "gone tom was suffering in reality": [65535, 0], "tom was suffering in reality now": [65535, 0], "was suffering in reality now so": [65535, 0], "suffering in reality now so handsomely": [65535, 0], "in reality now so handsomely was": [65535, 0], "reality now so handsomely was his": [65535, 0], "now so handsomely was his imagination": [65535, 0], "so handsomely was his imagination working": [65535, 0], "handsomely was his imagination working and": [65535, 0], "was his imagination working and so": [65535, 0], "his imagination working and so his": [65535, 0], "imagination working and so his groans": [65535, 0], "working and so his groans had": [65535, 0], "and so his groans had gathered": [65535, 0], "so his groans had gathered quite": [65535, 0], "his groans had gathered quite a": [65535, 0], "groans had gathered quite a genuine": [65535, 0], "had gathered quite a genuine tone": [65535, 0], "gathered quite a genuine tone sid": [65535, 0], "quite a genuine tone sid flew": [65535, 0], "a genuine tone sid flew down": [65535, 0], "genuine tone sid flew down stairs": [65535, 0], "tone sid flew down stairs and": [65535, 0], "sid flew down stairs and said": [65535, 0], "flew down stairs and said oh": [65535, 0], "down stairs and said oh aunt": [65535, 0], "stairs and said oh aunt polly": [65535, 0], "and said oh aunt polly come": [65535, 0], "said oh aunt polly come tom's": [65535, 0], "oh aunt polly come tom's dying": [65535, 0], "aunt polly come tom's dying dying": [65535, 0], "polly come tom's dying dying yes'm": [65535, 0], "come tom's dying dying yes'm don't": [65535, 0], "tom's dying dying yes'm don't wait": [65535, 0], "dying dying yes'm don't wait come": [65535, 0], "dying yes'm don't wait come quick": [65535, 0], "yes'm don't wait come quick rubbage": [65535, 0], "don't wait come quick rubbage i": [65535, 0], "wait come quick rubbage i don't": [65535, 0], "come quick rubbage i don't believe": [65535, 0], "quick rubbage i don't believe it": [65535, 0], "rubbage i don't believe it but": [65535, 0], "i don't believe it but she": [65535, 0], "don't believe it but she fled": [65535, 0], "believe it but she fled up": [65535, 0], "it but she fled up stairs": [65535, 0], "but she fled up stairs nevertheless": [65535, 0], "she fled up stairs nevertheless with": [65535, 0], "fled up stairs nevertheless with sid": [65535, 0], "up stairs nevertheless with sid and": [65535, 0], "stairs nevertheless with sid and mary": [65535, 0], "nevertheless with sid and mary at": [65535, 0], "with sid and mary at her": [65535, 0], "sid and mary at her heels": [65535, 0], "and mary at her heels and": [65535, 0], "mary at her heels and her": [65535, 0], "at her heels and her face": [65535, 0], "her heels and her face grew": [65535, 0], "heels and her face grew white": [65535, 0], "and her face grew white too": [65535, 0], "her face grew white too and": [65535, 0], "face grew white too and her": [65535, 0], "grew white too and her lip": [65535, 0], "white too and her lip trembled": [65535, 0], "too and her lip trembled when": [65535, 0], "and her lip trembled when she": [65535, 0], "her lip trembled when she reached": [65535, 0], "lip trembled when she reached the": [65535, 0], "trembled when she reached the bedside": [65535, 0], "when she reached the bedside she": [65535, 0], "she reached the bedside she gasped": [65535, 0], "reached the bedside she gasped out": [65535, 0], "the bedside she gasped out you": [65535, 0], "bedside she gasped out you tom": [65535, 0], "she gasped out you tom tom": [65535, 0], "gasped out you tom tom what's": [65535, 0], "out you tom tom what's the": [65535, 0], "you tom tom what's the matter": [65535, 0], "tom tom what's the matter with": [65535, 0], "tom what's the matter with you": [65535, 0], "what's the matter with you oh": [65535, 0], "the matter with you oh auntie": [65535, 0], "matter with you oh auntie i'm": [65535, 0], "with you oh auntie i'm what's": [65535, 0], "you oh auntie i'm what's the": [65535, 0], "oh auntie i'm what's the matter": [65535, 0], "auntie i'm what's the matter with": [65535, 0], "i'm what's the matter with you": [65535, 0], "what's the matter with you what": [65535, 0], "the matter with you what is": [65535, 0], "matter with you what is the": [65535, 0], "with you what is the matter": [65535, 0], "you what is the matter with": [65535, 0], "what is the matter with you": [65535, 0], "is the matter with you child": [65535, 0], "the matter with you child oh": [65535, 0], "matter with you child oh auntie": [65535, 0], "with you child oh auntie my": [65535, 0], "you child oh auntie my sore": [65535, 0], "child oh auntie my sore toe's": [65535, 0], "oh auntie my sore toe's mortified": [65535, 0], "auntie my sore toe's mortified the": [65535, 0], "my sore toe's mortified the old": [65535, 0], "sore toe's mortified the old lady": [65535, 0], "toe's mortified the old lady sank": [65535, 0], "mortified the old lady sank down": [65535, 0], "the old lady sank down into": [65535, 0], "old lady sank down into a": [65535, 0], "lady sank down into a chair": [65535, 0], "sank down into a chair and": [65535, 0], "down into a chair and laughed": [65535, 0], "into a chair and laughed a": [65535, 0], "a chair and laughed a little": [65535, 0], "chair and laughed a little then": [65535, 0], "and laughed a little then cried": [65535, 0], "laughed a little then cried a": [65535, 0], "a little then cried a little": [65535, 0], "little then cried a little then": [65535, 0], "then cried a little then did": [65535, 0], "cried a little then did both": [65535, 0], "a little then did both together": [65535, 0], "little then did both together this": [65535, 0], "then did both together this restored": [65535, 0], "did both together this restored her": [65535, 0], "both together this restored her and": [65535, 0], "together this restored her and she": [65535, 0], "this restored her and she said": [65535, 0], "restored her and she said tom": [65535, 0], "her and she said tom what": [65535, 0], "and she said tom what a": [65535, 0], "she said tom what a turn": [65535, 0], "said tom what a turn you": [65535, 0], "tom what a turn you did": [65535, 0], "what a turn you did give": [65535, 0], "a turn you did give me": [65535, 0], "turn you did give me now": [65535, 0], "you did give me now you": [65535, 0], "did give me now you shut": [65535, 0], "give me now you shut up": [65535, 0], "me now you shut up that": [65535, 0], "now you shut up that nonsense": [65535, 0], "you shut up that nonsense and": [65535, 0], "shut up that nonsense and climb": [65535, 0], "up that nonsense and climb out": [65535, 0], "that nonsense and climb out of": [65535, 0], "nonsense and climb out of this": [65535, 0], "and climb out of this the": [65535, 0], "climb out of this the groans": [65535, 0], "out of this the groans ceased": [65535, 0], "of this the groans ceased and": [65535, 0], "this the groans ceased and the": [65535, 0], "the groans ceased and the pain": [65535, 0], "groans ceased and the pain vanished": [65535, 0], "ceased and the pain vanished from": [65535, 0], "and the pain vanished from the": [65535, 0], "the pain vanished from the toe": [65535, 0], "pain vanished from the toe the": [65535, 0], "vanished from the toe the boy": [65535, 0], "from the toe the boy felt": [65535, 0], "the toe the boy felt a": [65535, 0], "toe the boy felt a little": [65535, 0], "the boy felt a little foolish": [65535, 0], "boy felt a little foolish and": [65535, 0], "felt a little foolish and he": [65535, 0], "a little foolish and he said": [65535, 0], "little foolish and he said aunt": [65535, 0], "foolish and he said aunt polly": [65535, 0], "and he said aunt polly it": [65535, 0], "he said aunt polly it seemed": [65535, 0], "said aunt polly it seemed mortified": [65535, 0], "aunt polly it seemed mortified and": [65535, 0], "polly it seemed mortified and it": [65535, 0], "it seemed mortified and it hurt": [65535, 0], "seemed mortified and it hurt so": [65535, 0], "mortified and it hurt so i": [65535, 0], "and it hurt so i never": [65535, 0], "it hurt so i never minded": [65535, 0], "hurt so i never minded my": [65535, 0], "so i never minded my tooth": [65535, 0], "i never minded my tooth at": [65535, 0], "never minded my tooth at all": [65535, 0], "minded my tooth at all your": [65535, 0], "my tooth at all your tooth": [65535, 0], "tooth at all your tooth indeed": [65535, 0], "at all your tooth indeed what's": [65535, 0], "all your tooth indeed what's the": [65535, 0], "your tooth indeed what's the matter": [65535, 0], "tooth indeed what's the matter with": [65535, 0], "indeed what's the matter with your": [65535, 0], "what's the matter with your tooth": [65535, 0], "the matter with your tooth one": [65535, 0], "matter with your tooth one of": [65535, 0], "with your tooth one of them's": [65535, 0], "your tooth one of them's loose": [65535, 0], "tooth one of them's loose and": [65535, 0], "one of them's loose and it": [65535, 0], "of them's loose and it aches": [65535, 0], "them's loose and it aches perfectly": [65535, 0], "loose and it aches perfectly awful": [65535, 0], "and it aches perfectly awful there": [65535, 0], "it aches perfectly awful there there": [65535, 0], "aches perfectly awful there there now": [65535, 0], "perfectly awful there there now don't": [65535, 0], "awful there there now don't begin": [65535, 0], "there there now don't begin that": [65535, 0], "there now don't begin that groaning": [65535, 0], "now don't begin that groaning again": [65535, 0], "don't begin that groaning again open": [65535, 0], "begin that groaning again open your": [65535, 0], "that groaning again open your mouth": [65535, 0], "groaning again open your mouth well": [65535, 0], "again open your mouth well your": [65535, 0], "open your mouth well your tooth": [65535, 0], "your mouth well your tooth is": [65535, 0], "mouth well your tooth is loose": [65535, 0], "well your tooth is loose but": [65535, 0], "your tooth is loose but you're": [65535, 0], "tooth is loose but you're not": [65535, 0], "is loose but you're not going": [65535, 0], "loose but you're not going to": [65535, 0], "but you're not going to die": [65535, 0], "you're not going to die about": [65535, 0], "not going to die about that": [65535, 0], "going to die about that mary": [65535, 0], "to die about that mary get": [65535, 0], "die about that mary get me": [65535, 0], "about that mary get me a": [65535, 0], "that mary get me a silk": [65535, 0], "mary get me a silk thread": [65535, 0], "get me a silk thread and": [65535, 0], "me a silk thread and a": [65535, 0], "a silk thread and a chunk": [65535, 0], "silk thread and a chunk of": [65535, 0], "thread and a chunk of fire": [65535, 0], "and a chunk of fire out": [65535, 0], "a chunk of fire out of": [65535, 0], "chunk of fire out of the": [65535, 0], "of fire out of the kitchen": [65535, 0], "fire out of the kitchen tom": [65535, 0], "out of the kitchen tom said": [65535, 0], "of the kitchen tom said oh": [65535, 0], "the kitchen tom said oh please": [65535, 0], "kitchen tom said oh please auntie": [65535, 0], "tom said oh please auntie don't": [65535, 0], "said oh please auntie don't pull": [65535, 0], "oh please auntie don't pull it": [65535, 0], "please auntie don't pull it out": [65535, 0], "auntie don't pull it out it": [65535, 0], "don't pull it out it don't": [65535, 0], "pull it out it don't hurt": [65535, 0], "it out it don't hurt any": [65535, 0], "out it don't hurt any more": [65535, 0], "it don't hurt any more i": [65535, 0], "don't hurt any more i wish": [65535, 0], "hurt any more i wish i": [65535, 0], "any more i wish i may": [65535, 0], "more i wish i may never": [65535, 0], "i wish i may never stir": [65535, 0], "wish i may never stir if": [65535, 0], "i may never stir if it": [65535, 0], "may never stir if it does": [65535, 0], "never stir if it does please": [65535, 0], "stir if it does please don't": [65535, 0], "if it does please don't auntie": [65535, 0], "it does please don't auntie i": [65535, 0], "does please don't auntie i don't": [65535, 0], "please don't auntie i don't want": [65535, 0], "don't auntie i don't want to": [65535, 0], "auntie i don't want to stay": [65535, 0], "i don't want to stay home": [65535, 0], "don't want to stay home from": [65535, 0], "want to stay home from school": [65535, 0], "to stay home from school oh": [65535, 0], "stay home from school oh you": [65535, 0], "home from school oh you don't": [65535, 0], "from school oh you don't don't": [65535, 0], "school oh you don't don't you": [65535, 0], "oh you don't don't you so": [65535, 0], "you don't don't you so all": [65535, 0], "don't don't you so all this": [65535, 0], "don't you so all this row": [65535, 0], "you so all this row was": [65535, 0], "so all this row was because": [65535, 0], "all this row was because you": [65535, 0], "this row was because you thought": [65535, 0], "row was because you thought you'd": [65535, 0], "was because you thought you'd get": [65535, 0], "because you thought you'd get to": [65535, 0], "you thought you'd get to stay": [65535, 0], "thought you'd get to stay home": [65535, 0], "you'd get to stay home from": [65535, 0], "get to stay home from school": [65535, 0], "to stay home from school and": [65535, 0], "stay home from school and go": [65535, 0], "home from school and go a": [65535, 0], "from school and go a fishing": [65535, 0], "school and go a fishing tom": [65535, 0], "and go a fishing tom tom": [65535, 0], "go a fishing tom tom i": [65535, 0], "a fishing tom tom i love": [65535, 0], "fishing tom tom i love you": [65535, 0], "tom tom i love you so": [65535, 0], "tom i love you so and": [65535, 0], "i love you so and you": [65535, 0], "love you so and you seem": [65535, 0], "you so and you seem to": [65535, 0], "so and you seem to try": [65535, 0], "and you seem to try every": [65535, 0], "you seem to try every way": [65535, 0], "seem to try every way you": [65535, 0], "to try every way you can": [65535, 0], "try every way you can to": [65535, 0], "every way you can to break": [65535, 0], "way you can to break my": [65535, 0], "you can to break my old": [65535, 0], "can to break my old heart": [65535, 0], "to break my old heart with": [65535, 0], "break my old heart with your": [65535, 0], "my old heart with your outrageousness": [65535, 0], "old heart with your outrageousness by": [65535, 0], "heart with your outrageousness by this": [65535, 0], "with your outrageousness by this time": [65535, 0], "your outrageousness by this time the": [65535, 0], "outrageousness by this time the dental": [65535, 0], "by this time the dental instruments": [65535, 0], "this time the dental instruments were": [65535, 0], "time the dental instruments were ready": [65535, 0], "the dental instruments were ready the": [65535, 0], "dental instruments were ready the old": [65535, 0], "instruments were ready the old lady": [65535, 0], "were ready the old lady made": [65535, 0], "ready the old lady made one": [65535, 0], "the old lady made one end": [65535, 0], "old lady made one end of": [65535, 0], "lady made one end of the": [65535, 0], "made one end of the silk": [65535, 0], "one end of the silk thread": [65535, 0], "end of the silk thread fast": [65535, 0], "of the silk thread fast to": [65535, 0], "the silk thread fast to tom's": [65535, 0], "silk thread fast to tom's tooth": [65535, 0], "thread fast to tom's tooth with": [65535, 0], "fast to tom's tooth with a": [65535, 0], "to tom's tooth with a loop": [65535, 0], "tom's tooth with a loop and": [65535, 0], "tooth with a loop and tied": [65535, 0], "with a loop and tied the": [65535, 0], "a loop and tied the other": [65535, 0], "loop and tied the other to": [65535, 0], "and tied the other to the": [65535, 0], "tied the other to the bedpost": [65535, 0], "the other to the bedpost then": [65535, 0], "other to the bedpost then she": [65535, 0], "to the bedpost then she seized": [65535, 0], "the bedpost then she seized the": [65535, 0], "bedpost then she seized the chunk": [65535, 0], "then she seized the chunk of": [65535, 0], "she seized the chunk of fire": [65535, 0], "seized the chunk of fire and": [65535, 0], "the chunk of fire and suddenly": [65535, 0], "chunk of fire and suddenly thrust": [65535, 0], "of fire and suddenly thrust it": [65535, 0], "fire and suddenly thrust it almost": [65535, 0], "and suddenly thrust it almost into": [65535, 0], "suddenly thrust it almost into the": [65535, 0], "thrust it almost into the boy's": [65535, 0], "it almost into the boy's face": [65535, 0], "almost into the boy's face the": [65535, 0], "into the boy's face the tooth": [65535, 0], "the boy's face the tooth hung": [65535, 0], "boy's face the tooth hung dangling": [65535, 0], "face the tooth hung dangling by": [65535, 0], "the tooth hung dangling by the": [65535, 0], "tooth hung dangling by the bedpost": [65535, 0], "hung dangling by the bedpost now": [65535, 0], "dangling by the bedpost now but": [65535, 0], "by the bedpost now but all": [65535, 0], "the bedpost now but all trials": [65535, 0], "bedpost now but all trials bring": [65535, 0], "now but all trials bring their": [65535, 0], "but all trials bring their compensations": [65535, 0], "all trials bring their compensations as": [65535, 0], "trials bring their compensations as tom": [65535, 0], "bring their compensations as tom wended": [65535, 0], "their compensations as tom wended to": [65535, 0], "compensations as tom wended to school": [65535, 0], "as tom wended to school after": [65535, 0], "tom wended to school after breakfast": [65535, 0], "wended to school after breakfast he": [65535, 0], "to school after breakfast he was": [65535, 0], "school after breakfast he was the": [65535, 0], "after breakfast he was the envy": [65535, 0], "breakfast he was the envy of": [65535, 0], "he was the envy of every": [65535, 0], "was the envy of every boy": [65535, 0], "the envy of every boy he": [65535, 0], "envy of every boy he met": [65535, 0], "of every boy he met because": [65535, 0], "every boy he met because the": [65535, 0], "boy he met because the gap": [65535, 0], "he met because the gap in": [65535, 0], "met because the gap in his": [65535, 0], "because the gap in his upper": [65535, 0], "the gap in his upper row": [65535, 0], "gap in his upper row of": [65535, 0], "in his upper row of teeth": [65535, 0], "his upper row of teeth enabled": [65535, 0], "upper row of teeth enabled him": [65535, 0], "row of teeth enabled him to": [65535, 0], "of teeth enabled him to expectorate": [65535, 0], "teeth enabled him to expectorate in": [65535, 0], "enabled him to expectorate in a": [65535, 0], "him to expectorate in a new": [65535, 0], "to expectorate in a new and": [65535, 0], "expectorate in a new and admirable": [65535, 0], "in a new and admirable way": [65535, 0], "a new and admirable way he": [65535, 0], "new and admirable way he gathered": [65535, 0], "and admirable way he gathered quite": [65535, 0], "admirable way he gathered quite a": [65535, 0], "way he gathered quite a following": [65535, 0], "he gathered quite a following of": [65535, 0], "gathered quite a following of lads": [65535, 0], "quite a following of lads interested": [65535, 0], "a following of lads interested in": [65535, 0], "following of lads interested in the": [65535, 0], "of lads interested in the exhibition": [65535, 0], "lads interested in the exhibition and": [65535, 0], "interested in the exhibition and one": [65535, 0], "in the exhibition and one that": [65535, 0], "the exhibition and one that had": [65535, 0], "exhibition and one that had cut": [65535, 0], "and one that had cut his": [65535, 0], "one that had cut his finger": [65535, 0], "that had cut his finger and": [65535, 0], "had cut his finger and had": [65535, 0], "cut his finger and had been": [65535, 0], "his finger and had been a": [65535, 0], "finger and had been a centre": [65535, 0], "and had been a centre of": [65535, 0], "had been a centre of fascination": [65535, 0], "been a centre of fascination and": [65535, 0], "a centre of fascination and homage": [65535, 0], "centre of fascination and homage up": [65535, 0], "of fascination and homage up to": [65535, 0], "fascination and homage up to this": [65535, 0], "and homage up to this time": [65535, 0], "homage up to this time now": [65535, 0], "up to this time now found": [65535, 0], "to this time now found himself": [65535, 0], "this time now found himself suddenly": [65535, 0], "time now found himself suddenly without": [65535, 0], "now found himself suddenly without an": [65535, 0], "found himself suddenly without an adherent": [65535, 0], "himself suddenly without an adherent and": [65535, 0], "suddenly without an adherent and shorn": [65535, 0], "without an adherent and shorn of": [65535, 0], "an adherent and shorn of his": [65535, 0], "adherent and shorn of his glory": [65535, 0], "and shorn of his glory his": [65535, 0], "shorn of his glory his heart": [65535, 0], "of his glory his heart was": [65535, 0], "his glory his heart was heavy": [65535, 0], "glory his heart was heavy and": [65535, 0], "his heart was heavy and he": [65535, 0], "heart was heavy and he said": [65535, 0], "was heavy and he said with": [65535, 0], "heavy and he said with a": [65535, 0], "and he said with a disdain": [65535, 0], "he said with a disdain which": [65535, 0], "said with a disdain which he": [65535, 0], "with a disdain which he did": [65535, 0], "a disdain which he did not": [65535, 0], "disdain which he did not feel": [65535, 0], "which he did not feel that": [65535, 0], "he did not feel that it": [65535, 0], "did not feel that it wasn't": [65535, 0], "not feel that it wasn't anything": [65535, 0], "feel that it wasn't anything to": [65535, 0], "that it wasn't anything to spit": [65535, 0], "it wasn't anything to spit like": [65535, 0], "wasn't anything to spit like tom": [65535, 0], "anything to spit like tom sawyer": [65535, 0], "to spit like tom sawyer but": [65535, 0], "spit like tom sawyer but another": [65535, 0], "like tom sawyer but another boy": [65535, 0], "tom sawyer but another boy said": [65535, 0], "sawyer but another boy said sour": [65535, 0], "but another boy said sour grapes": [65535, 0], "another boy said sour grapes and": [65535, 0], "boy said sour grapes and he": [65535, 0], "said sour grapes and he wandered": [65535, 0], "sour grapes and he wandered away": [65535, 0], "grapes and he wandered away a": [65535, 0], "and he wandered away a dismantled": [65535, 0], "he wandered away a dismantled hero": [65535, 0], "wandered away a dismantled hero shortly": [65535, 0], "away a dismantled hero shortly tom": [65535, 0], "a dismantled hero shortly tom came": [65535, 0], "dismantled hero shortly tom came upon": [65535, 0], "hero shortly tom came upon the": [65535, 0], "shortly tom came upon the juvenile": [65535, 0], "tom came upon the juvenile pariah": [65535, 0], "came upon the juvenile pariah of": [65535, 0], "upon the juvenile pariah of the": [65535, 0], "the juvenile pariah of the village": [65535, 0], "juvenile pariah of the village huckleberry": [65535, 0], "pariah of the village huckleberry finn": [65535, 0], "of the village huckleberry finn son": [65535, 0], "the village huckleberry finn son of": [65535, 0], "village huckleberry finn son of the": [65535, 0], "huckleberry finn son of the town": [65535, 0], "finn son of the town drunkard": [65535, 0], "son of the town drunkard huckleberry": [65535, 0], "of the town drunkard huckleberry was": [65535, 0], "the town drunkard huckleberry was cordially": [65535, 0], "town drunkard huckleberry was cordially hated": [65535, 0], "drunkard huckleberry was cordially hated and": [65535, 0], "huckleberry was cordially hated and dreaded": [65535, 0], "was cordially hated and dreaded by": [65535, 0], "cordially hated and dreaded by all": [65535, 0], "hated and dreaded by all the": [65535, 0], "and dreaded by all the mothers": [65535, 0], "dreaded by all the mothers of": [65535, 0], "by all the mothers of the": [65535, 0], "all the mothers of the town": [65535, 0], "the mothers of the town because": [65535, 0], "mothers of the town because he": [65535, 0], "of the town because he was": [65535, 0], "the town because he was idle": [65535, 0], "town because he was idle and": [65535, 0], "because he was idle and lawless": [65535, 0], "he was idle and lawless and": [65535, 0], "was idle and lawless and vulgar": [65535, 0], "idle and lawless and vulgar and": [65535, 0], "and lawless and vulgar and bad": [65535, 0], "lawless and vulgar and bad and": [65535, 0], "and vulgar and bad and because": [65535, 0], "vulgar and bad and because all": [65535, 0], "and bad and because all their": [65535, 0], "bad and because all their children": [65535, 0], "and because all their children admired": [65535, 0], "because all their children admired him": [65535, 0], "all their children admired him so": [65535, 0], "their children admired him so and": [65535, 0], "children admired him so and delighted": [65535, 0], "admired him so and delighted in": [65535, 0], "him so and delighted in his": [65535, 0], "so and delighted in his forbidden": [65535, 0], "and delighted in his forbidden society": [65535, 0], "delighted in his forbidden society and": [65535, 0], "in his forbidden society and wished": [65535, 0], "his forbidden society and wished they": [65535, 0], "forbidden society and wished they dared": [65535, 0], "society and wished they dared to": [65535, 0], "and wished they dared to be": [65535, 0], "wished they dared to be like": [65535, 0], "they dared to be like him": [65535, 0], "dared to be like him tom": [65535, 0], "to be like him tom was": [65535, 0], "be like him tom was like": [65535, 0], "like him tom was like the": [65535, 0], "him tom was like the rest": [65535, 0], "tom was like the rest of": [65535, 0], "was like the rest of the": [65535, 0], "like the rest of the respectable": [65535, 0], "the rest of the respectable boys": [65535, 0], "rest of the respectable boys in": [65535, 0], "of the respectable boys in that": [65535, 0], "the respectable boys in that he": [65535, 0], "respectable boys in that he envied": [65535, 0], "boys in that he envied huckleberry": [65535, 0], "in that he envied huckleberry his": [65535, 0], "that he envied huckleberry his gaudy": [65535, 0], "he envied huckleberry his gaudy outcast": [65535, 0], "envied huckleberry his gaudy outcast condition": [65535, 0], "huckleberry his gaudy outcast condition and": [65535, 0], "his gaudy outcast condition and was": [65535, 0], "gaudy outcast condition and was under": [65535, 0], "outcast condition and was under strict": [65535, 0], "condition and was under strict orders": [65535, 0], "and was under strict orders not": [65535, 0], "was under strict orders not to": [65535, 0], "under strict orders not to play": [65535, 0], "strict orders not to play with": [65535, 0], "orders not to play with him": [65535, 0], "not to play with him so": [65535, 0], "to play with him so he": [65535, 0], "play with him so he played": [65535, 0], "with him so he played with": [65535, 0], "him so he played with him": [65535, 0], "so he played with him every": [65535, 0], "he played with him every time": [65535, 0], "played with him every time he": [65535, 0], "with him every time he got": [65535, 0], "him every time he got a": [65535, 0], "every time he got a chance": [65535, 0], "time he got a chance huckleberry": [65535, 0], "he got a chance huckleberry was": [65535, 0], "got a chance huckleberry was always": [65535, 0], "a chance huckleberry was always dressed": [65535, 0], "chance huckleberry was always dressed in": [65535, 0], "huckleberry was always dressed in the": [65535, 0], "was always dressed in the cast": [65535, 0], "always dressed in the cast off": [65535, 0], "dressed in the cast off clothes": [65535, 0], "in the cast off clothes of": [65535, 0], "the cast off clothes of full": [65535, 0], "cast off clothes of full grown": [65535, 0], "off clothes of full grown men": [65535, 0], "clothes of full grown men and": [65535, 0], "of full grown men and they": [65535, 0], "full grown men and they were": [65535, 0], "grown men and they were in": [65535, 0], "men and they were in perennial": [65535, 0], "and they were in perennial bloom": [65535, 0], "they were in perennial bloom and": [65535, 0], "were in perennial bloom and fluttering": [65535, 0], "in perennial bloom and fluttering with": [65535, 0], "perennial bloom and fluttering with rags": [65535, 0], "bloom and fluttering with rags his": [65535, 0], "and fluttering with rags his hat": [65535, 0], "fluttering with rags his hat was": [65535, 0], "with rags his hat was a": [65535, 0], "rags his hat was a vast": [65535, 0], "his hat was a vast ruin": [65535, 0], "hat was a vast ruin with": [65535, 0], "was a vast ruin with a": [65535, 0], "a vast ruin with a wide": [65535, 0], "vast ruin with a wide crescent": [65535, 0], "ruin with a wide crescent lopped": [65535, 0], "with a wide crescent lopped out": [65535, 0], "a wide crescent lopped out of": [65535, 0], "wide crescent lopped out of its": [65535, 0], "crescent lopped out of its brim": [65535, 0], "lopped out of its brim his": [65535, 0], "out of its brim his coat": [65535, 0], "of its brim his coat when": [65535, 0], "its brim his coat when he": [65535, 0], "brim his coat when he wore": [65535, 0], "his coat when he wore one": [65535, 0], "coat when he wore one hung": [65535, 0], "when he wore one hung nearly": [65535, 0], "he wore one hung nearly to": [65535, 0], "wore one hung nearly to his": [65535, 0], "one hung nearly to his heels": [65535, 0], "hung nearly to his heels and": [65535, 0], "nearly to his heels and had": [65535, 0], "to his heels and had the": [65535, 0], "his heels and had the rearward": [65535, 0], "heels and had the rearward buttons": [65535, 0], "and had the rearward buttons far": [65535, 0], "had the rearward buttons far down": [65535, 0], "the rearward buttons far down the": [65535, 0], "rearward buttons far down the back": [65535, 0], "buttons far down the back but": [65535, 0], "far down the back but one": [65535, 0], "down the back but one suspender": [65535, 0], "the back but one suspender supported": [65535, 0], "back but one suspender supported his": [65535, 0], "but one suspender supported his trousers": [65535, 0], "one suspender supported his trousers the": [65535, 0], "suspender supported his trousers the seat": [65535, 0], "supported his trousers the seat of": [65535, 0], "his trousers the seat of the": [65535, 0], "trousers the seat of the trousers": [65535, 0], "the seat of the trousers bagged": [65535, 0], "seat of the trousers bagged low": [65535, 0], "of the trousers bagged low and": [65535, 0], "the trousers bagged low and contained": [65535, 0], "trousers bagged low and contained nothing": [65535, 0], "bagged low and contained nothing the": [65535, 0], "low and contained nothing the fringed": [65535, 0], "and contained nothing the fringed legs": [65535, 0], "contained nothing the fringed legs dragged": [65535, 0], "nothing the fringed legs dragged in": [65535, 0], "the fringed legs dragged in the": [65535, 0], "fringed legs dragged in the dirt": [65535, 0], "legs dragged in the dirt when": [65535, 0], "dragged in the dirt when not": [65535, 0], "in the dirt when not rolled": [65535, 0], "the dirt when not rolled up": [65535, 0], "dirt when not rolled up huckleberry": [65535, 0], "when not rolled up huckleberry came": [65535, 0], "not rolled up huckleberry came and": [65535, 0], "rolled up huckleberry came and went": [65535, 0], "up huckleberry came and went at": [65535, 0], "huckleberry came and went at his": [65535, 0], "came and went at his own": [65535, 0], "and went at his own free": [65535, 0], "went at his own free will": [65535, 0], "at his own free will he": [65535, 0], "his own free will he slept": [65535, 0], "own free will he slept on": [65535, 0], "free will he slept on doorsteps": [65535, 0], "will he slept on doorsteps in": [65535, 0], "he slept on doorsteps in fine": [65535, 0], "slept on doorsteps in fine weather": [65535, 0], "on doorsteps in fine weather and": [65535, 0], "doorsteps in fine weather and in": [65535, 0], "in fine weather and in empty": [65535, 0], "fine weather and in empty hogsheads": [65535, 0], "weather and in empty hogsheads in": [65535, 0], "and in empty hogsheads in wet": [65535, 0], "in empty hogsheads in wet he": [65535, 0], "empty hogsheads in wet he did": [65535, 0], "hogsheads in wet he did not": [65535, 0], "in wet he did not have": [65535, 0], "wet he did not have to": [65535, 0], "he did not have to go": [65535, 0], "did not have to go to": [65535, 0], "not have to go to school": [65535, 0], "have to go to school or": [65535, 0], "to go to school or to": [65535, 0], "go to school or to church": [65535, 0], "to school or to church or": [65535, 0], "school or to church or call": [65535, 0], "or to church or call any": [65535, 0], "to church or call any being": [65535, 0], "church or call any being master": [65535, 0], "or call any being master or": [65535, 0], "call any being master or obey": [65535, 0], "any being master or obey anybody": [65535, 0], "being master or obey anybody he": [65535, 0], "master or obey anybody he could": [65535, 0], "or obey anybody he could go": [65535, 0], "obey anybody he could go fishing": [65535, 0], "anybody he could go fishing or": [65535, 0], "he could go fishing or swimming": [65535, 0], "could go fishing or swimming when": [65535, 0], "go fishing or swimming when and": [65535, 0], "fishing or swimming when and where": [65535, 0], "or swimming when and where he": [65535, 0], "swimming when and where he chose": [65535, 0], "when and where he chose and": [65535, 0], "and where he chose and stay": [65535, 0], "where he chose and stay as": [65535, 0], "he chose and stay as long": [65535, 0], "chose and stay as long as": [65535, 0], "and stay as long as it": [65535, 0], "stay as long as it suited": [65535, 0], "as long as it suited him": [65535, 0], "long as it suited him nobody": [65535, 0], "as it suited him nobody forbade": [65535, 0], "it suited him nobody forbade him": [65535, 0], "suited him nobody forbade him to": [65535, 0], "him nobody forbade him to fight": [65535, 0], "nobody forbade him to fight he": [65535, 0], "forbade him to fight he could": [65535, 0], "him to fight he could sit": [65535, 0], "to fight he could sit up": [65535, 0], "fight he could sit up as": [65535, 0], "he could sit up as late": [65535, 0], "could sit up as late as": [65535, 0], "sit up as late as he": [65535, 0], "up as late as he pleased": [65535, 0], "as late as he pleased he": [65535, 0], "late as he pleased he was": [65535, 0], "as he pleased he was always": [65535, 0], "he pleased he was always the": [65535, 0], "pleased he was always the first": [65535, 0], "he was always the first boy": [65535, 0], "was always the first boy that": [65535, 0], "always the first boy that went": [65535, 0], "the first boy that went barefoot": [65535, 0], "first boy that went barefoot in": [65535, 0], "boy that went barefoot in the": [65535, 0], "that went barefoot in the spring": [65535, 0], "went barefoot in the spring and": [65535, 0], "barefoot in the spring and the": [65535, 0], "in the spring and the last": [65535, 0], "the spring and the last to": [65535, 0], "spring and the last to resume": [65535, 0], "and the last to resume leather": [65535, 0], "the last to resume leather in": [65535, 0], "last to resume leather in the": [65535, 0], "to resume leather in the fall": [65535, 0], "resume leather in the fall he": [65535, 0], "leather in the fall he never": [65535, 0], "in the fall he never had": [65535, 0], "the fall he never had to": [65535, 0], "fall he never had to wash": [65535, 0], "he never had to wash nor": [65535, 0], "never had to wash nor put": [65535, 0], "had to wash nor put on": [65535, 0], "to wash nor put on clean": [65535, 0], "wash nor put on clean clothes": [65535, 0], "nor put on clean clothes he": [65535, 0], "put on clean clothes he could": [65535, 0], "on clean clothes he could swear": [65535, 0], "clean clothes he could swear wonderfully": [65535, 0], "clothes he could swear wonderfully in": [65535, 0], "he could swear wonderfully in a": [65535, 0], "could swear wonderfully in a word": [65535, 0], "swear wonderfully in a word everything": [65535, 0], "wonderfully in a word everything that": [65535, 0], "in a word everything that goes": [65535, 0], "a word everything that goes to": [65535, 0], "word everything that goes to make": [65535, 0], "everything that goes to make life": [65535, 0], "that goes to make life precious": [65535, 0], "goes to make life precious that": [65535, 0], "to make life precious that boy": [65535, 0], "make life precious that boy had": [65535, 0], "life precious that boy had so": [65535, 0], "precious that boy had so thought": [65535, 0], "that boy had so thought every": [65535, 0], "boy had so thought every harassed": [65535, 0], "had so thought every harassed hampered": [65535, 0], "so thought every harassed hampered respectable": [65535, 0], "thought every harassed hampered respectable boy": [65535, 0], "every harassed hampered respectable boy in": [65535, 0], "harassed hampered respectable boy in st": [65535, 0], "hampered respectable boy in st petersburg": [65535, 0], "respectable boy in st petersburg tom": [65535, 0], "boy in st petersburg tom hailed": [65535, 0], "in st petersburg tom hailed the": [65535, 0], "st petersburg tom hailed the romantic": [65535, 0], "petersburg tom hailed the romantic outcast": [65535, 0], "tom hailed the romantic outcast hello": [65535, 0], "hailed the romantic outcast hello huckleberry": [65535, 0], "the romantic outcast hello huckleberry hello": [65535, 0], "romantic outcast hello huckleberry hello yourself": [65535, 0], "outcast hello huckleberry hello yourself and": [65535, 0], "hello huckleberry hello yourself and see": [65535, 0], "huckleberry hello yourself and see how": [65535, 0], "hello yourself and see how you": [65535, 0], "yourself and see how you like": [65535, 0], "and see how you like it": [65535, 0], "see how you like it what's": [65535, 0], "how you like it what's that": [65535, 0], "you like it what's that you": [65535, 0], "like it what's that you got": [65535, 0], "it what's that you got dead": [65535, 0], "what's that you got dead cat": [65535, 0], "that you got dead cat lemme": [65535, 0], "you got dead cat lemme see": [65535, 0], "got dead cat lemme see him": [65535, 0], "dead cat lemme see him huck": [65535, 0], "cat lemme see him huck my": [65535, 0], "lemme see him huck my he's": [65535, 0], "see him huck my he's pretty": [65535, 0], "him huck my he's pretty stiff": [65535, 0], "huck my he's pretty stiff where'd": [65535, 0], "my he's pretty stiff where'd you": [65535, 0], "he's pretty stiff where'd you get": [65535, 0], "pretty stiff where'd you get him": [65535, 0], "stiff where'd you get him bought": [65535, 0], "where'd you get him bought him": [65535, 0], "you get him bought him off'n": [65535, 0], "get him bought him off'n a": [65535, 0], "him bought him off'n a boy": [65535, 0], "bought him off'n a boy what": [65535, 0], "him off'n a boy what did": [65535, 0], "off'n a boy what did you": [65535, 0], "a boy what did you give": [65535, 0], "boy what did you give i": [65535, 0], "what did you give i give": [65535, 0], "did you give i give a": [65535, 0], "you give i give a blue": [65535, 0], "give i give a blue ticket": [65535, 0], "i give a blue ticket and": [65535, 0], "give a blue ticket and a": [65535, 0], "a blue ticket and a bladder": [65535, 0], "blue ticket and a bladder that": [65535, 0], "ticket and a bladder that i": [65535, 0], "and a bladder that i got": [65535, 0], "a bladder that i got at": [65535, 0], "bladder that i got at the": [65535, 0], "that i got at the slaughter": [65535, 0], "i got at the slaughter house": [65535, 0], "got at the slaughter house where'd": [65535, 0], "at the slaughter house where'd you": [65535, 0], "the slaughter house where'd you get": [65535, 0], "slaughter house where'd you get the": [65535, 0], "house where'd you get the blue": [65535, 0], "where'd you get the blue ticket": [65535, 0], "you get the blue ticket bought": [65535, 0], "get the blue ticket bought it": [65535, 0], "the blue ticket bought it off'n": [65535, 0], "blue ticket bought it off'n ben": [65535, 0], "ticket bought it off'n ben rogers": [65535, 0], "bought it off'n ben rogers two": [65535, 0], "it off'n ben rogers two weeks": [65535, 0], "off'n ben rogers two weeks ago": [65535, 0], "ben rogers two weeks ago for": [65535, 0], "rogers two weeks ago for a": [65535, 0], "two weeks ago for a hoop": [65535, 0], "weeks ago for a hoop stick": [65535, 0], "ago for a hoop stick say": [65535, 0], "for a hoop stick say what": [65535, 0], "a hoop stick say what is": [65535, 0], "hoop stick say what is dead": [65535, 0], "stick say what is dead cats": [65535, 0], "say what is dead cats good": [65535, 0], "what is dead cats good for": [65535, 0], "is dead cats good for huck": [65535, 0], "dead cats good for huck good": [65535, 0], "cats good for huck good for": [65535, 0], "good for huck good for cure": [65535, 0], "for huck good for cure warts": [65535, 0], "huck good for cure warts with": [65535, 0], "good for cure warts with no": [65535, 0], "for cure warts with no is": [65535, 0], "cure warts with no is that": [65535, 0], "warts with no is that so": [65535, 0], "with no is that so i": [65535, 0], "no is that so i know": [65535, 0], "is that so i know something": [65535, 0], "that so i know something that's": [65535, 0], "so i know something that's better": [65535, 0], "i know something that's better i": [65535, 0], "know something that's better i bet": [65535, 0], "something that's better i bet you": [65535, 0], "that's better i bet you don't": [65535, 0], "better i bet you don't what": [65535, 0], "i bet you don't what is": [65535, 0], "bet you don't what is it": [65535, 0], "you don't what is it why": [65535, 0], "don't what is it why spunk": [65535, 0], "what is it why spunk water": [65535, 0], "is it why spunk water spunk": [65535, 0], "it why spunk water spunk water": [65535, 0], "why spunk water spunk water i": [65535, 0], "spunk water spunk water i wouldn't": [65535, 0], "water spunk water i wouldn't give": [65535, 0], "spunk water i wouldn't give a": [65535, 0], "water i wouldn't give a dern": [65535, 0], "i wouldn't give a dern for": [65535, 0], "wouldn't give a dern for spunk": [65535, 0], "give a dern for spunk water": [65535, 0], "a dern for spunk water you": [65535, 0], "dern for spunk water you wouldn't": [65535, 0], "for spunk water you wouldn't wouldn't": [65535, 0], "spunk water you wouldn't wouldn't you": [65535, 0], "water you wouldn't wouldn't you d'you": [65535, 0], "you wouldn't wouldn't you d'you ever": [65535, 0], "wouldn't wouldn't you d'you ever try": [65535, 0], "wouldn't you d'you ever try it": [65535, 0], "you d'you ever try it no": [65535, 0], "d'you ever try it no i": [65535, 0], "ever try it no i hain't": [65535, 0], "try it no i hain't but": [65535, 0], "it no i hain't but bob": [65535, 0], "no i hain't but bob tanner": [65535, 0], "i hain't but bob tanner did": [65535, 0], "hain't but bob tanner did who": [65535, 0], "but bob tanner did who told": [65535, 0], "bob tanner did who told you": [65535, 0], "tanner did who told you so": [65535, 0], "did who told you so why": [65535, 0], "who told you so why he": [65535, 0], "told you so why he told": [65535, 0], "you so why he told jeff": [65535, 0], "so why he told jeff thatcher": [65535, 0], "why he told jeff thatcher and": [65535, 0], "he told jeff thatcher and jeff": [65535, 0], "told jeff thatcher and jeff told": [65535, 0], "jeff thatcher and jeff told johnny": [65535, 0], "thatcher and jeff told johnny baker": [65535, 0], "and jeff told johnny baker and": [65535, 0], "jeff told johnny baker and johnny": [65535, 0], "told johnny baker and johnny told": [65535, 0], "johnny baker and johnny told jim": [65535, 0], "baker and johnny told jim hollis": [65535, 0], "and johnny told jim hollis and": [65535, 0], "johnny told jim hollis and jim": [65535, 0], "told jim hollis and jim told": [65535, 0], "jim hollis and jim told ben": [65535, 0], "hollis and jim told ben rogers": [65535, 0], "and jim told ben rogers and": [65535, 0], "jim told ben rogers and ben": [65535, 0], "told ben rogers and ben told": [65535, 0], "ben rogers and ben told a": [65535, 0], "rogers and ben told a nigger": [65535, 0], "and ben told a nigger and": [65535, 0], "ben told a nigger and the": [65535, 0], "told a nigger and the nigger": [65535, 0], "a nigger and the nigger told": [65535, 0], "nigger and the nigger told me": [65535, 0], "and the nigger told me there": [65535, 0], "the nigger told me there now": [65535, 0], "nigger told me there now well": [65535, 0], "told me there now well what": [65535, 0], "me there now well what of": [65535, 0], "there now well what of it": [65535, 0], "now well what of it they'll": [65535, 0], "well what of it they'll all": [65535, 0], "what of it they'll all lie": [65535, 0], "of it they'll all lie leastways": [65535, 0], "it they'll all lie leastways all": [65535, 0], "they'll all lie leastways all but": [65535, 0], "all lie leastways all but the": [65535, 0], "lie leastways all but the nigger": [65535, 0], "leastways all but the nigger i": [65535, 0], "all but the nigger i don't": [65535, 0], "but the nigger i don't know": [65535, 0], "the nigger i don't know him": [65535, 0], "nigger i don't know him but": [65535, 0], "i don't know him but i": [65535, 0], "don't know him but i never": [65535, 0], "know him but i never see": [65535, 0], "him but i never see a": [65535, 0], "but i never see a nigger": [65535, 0], "i never see a nigger that": [65535, 0], "never see a nigger that wouldn't": [65535, 0], "see a nigger that wouldn't lie": [65535, 0], "a nigger that wouldn't lie shucks": [65535, 0], "nigger that wouldn't lie shucks now": [65535, 0], "that wouldn't lie shucks now you": [65535, 0], "wouldn't lie shucks now you tell": [65535, 0], "lie shucks now you tell me": [65535, 0], "shucks now you tell me how": [65535, 0], "now you tell me how bob": [65535, 0], "you tell me how bob tanner": [65535, 0], "tell me how bob tanner done": [65535, 0], "me how bob tanner done it": [65535, 0], "how bob tanner done it huck": [65535, 0], "bob tanner done it huck why": [65535, 0], "tanner done it huck why he": [65535, 0], "done it huck why he took": [65535, 0], "it huck why he took and": [65535, 0], "huck why he took and dipped": [65535, 0], "why he took and dipped his": [65535, 0], "he took and dipped his hand": [65535, 0], "took and dipped his hand in": [65535, 0], "and dipped his hand in a": [65535, 0], "dipped his hand in a rotten": [65535, 0], "his hand in a rotten stump": [65535, 0], "hand in a rotten stump where": [65535, 0], "in a rotten stump where the": [65535, 0], "a rotten stump where the rain": [65535, 0], "rotten stump where the rain water": [65535, 0], "stump where the rain water was": [65535, 0], "where the rain water was in": [65535, 0], "the rain water was in the": [65535, 0], "rain water was in the daytime": [65535, 0], "water was in the daytime certainly": [65535, 0], "was in the daytime certainly with": [65535, 0], "in the daytime certainly with his": [65535, 0], "the daytime certainly with his face": [65535, 0], "daytime certainly with his face to": [65535, 0], "certainly with his face to the": [65535, 0], "with his face to the stump": [65535, 0], "his face to the stump yes": [65535, 0], "face to the stump yes least": [65535, 0], "to the stump yes least i": [65535, 0], "the stump yes least i reckon": [65535, 0], "stump yes least i reckon so": [65535, 0], "yes least i reckon so did": [65535, 0], "least i reckon so did he": [65535, 0], "i reckon so did he say": [65535, 0], "reckon so did he say anything": [65535, 0], "so did he say anything i": [65535, 0], "did he say anything i don't": [65535, 0], "he say anything i don't reckon": [65535, 0], "say anything i don't reckon he": [65535, 0], "anything i don't reckon he did": [65535, 0], "i don't reckon he did i": [65535, 0], "don't reckon he did i don't": [65535, 0], "reckon he did i don't know": [65535, 0], "he did i don't know aha": [65535, 0], "did i don't know aha talk": [65535, 0], "i don't know aha talk about": [65535, 0], "don't know aha talk about trying": [65535, 0], "know aha talk about trying to": [65535, 0], "aha talk about trying to cure": [65535, 0], "talk about trying to cure warts": [65535, 0], "about trying to cure warts with": [65535, 0], "trying to cure warts with spunk": [65535, 0], "to cure warts with spunk water": [65535, 0], "cure warts with spunk water such": [65535, 0], "warts with spunk water such a": [65535, 0], "with spunk water such a blame": [65535, 0], "spunk water such a blame fool": [65535, 0], "water such a blame fool way": [65535, 0], "such a blame fool way as": [65535, 0], "a blame fool way as that": [65535, 0], "blame fool way as that why": [65535, 0], "fool way as that why that": [65535, 0], "way as that why that ain't": [65535, 0], "as that why that ain't a": [65535, 0], "that why that ain't a going": [65535, 0], "why that ain't a going to": [65535, 0], "that ain't a going to do": [65535, 0], "ain't a going to do any": [65535, 0], "a going to do any good": [65535, 0], "going to do any good you": [65535, 0], "to do any good you got": [65535, 0], "do any good you got to": [65535, 0], "any good you got to go": [65535, 0], "good you got to go all": [65535, 0], "you got to go all by": [65535, 0], "got to go all by yourself": [65535, 0], "to go all by yourself to": [65535, 0], "go all by yourself to the": [65535, 0], "all by yourself to the middle": [65535, 0], "by yourself to the middle of": [65535, 0], "yourself to the middle of the": [65535, 0], "to the middle of the woods": [65535, 0], "the middle of the woods where": [65535, 0], "middle of the woods where you": [65535, 0], "of the woods where you know": [65535, 0], "the woods where you know there's": [65535, 0], "woods where you know there's a": [65535, 0], "where you know there's a spunk": [65535, 0], "you know there's a spunk water": [65535, 0], "know there's a spunk water stump": [65535, 0], "there's a spunk water stump and": [65535, 0], "a spunk water stump and just": [65535, 0], "spunk water stump and just as": [65535, 0], "water stump and just as it's": [65535, 0], "stump and just as it's midnight": [65535, 0], "and just as it's midnight you": [65535, 0], "just as it's midnight you back": [65535, 0], "as it's midnight you back up": [65535, 0], "it's midnight you back up against": [65535, 0], "midnight you back up against the": [65535, 0], "you back up against the stump": [65535, 0], "back up against the stump and": [65535, 0], "up against the stump and jam": [65535, 0], "against the stump and jam your": [65535, 0], "the stump and jam your hand": [65535, 0], "stump and jam your hand in": [65535, 0], "and jam your hand in and": [65535, 0], "jam your hand in and say": [65535, 0], "your hand in and say 'barley": [65535, 0], "hand in and say 'barley corn": [65535, 0], "in and say 'barley corn barley": [65535, 0], "and say 'barley corn barley corn": [65535, 0], "say 'barley corn barley corn injun": [65535, 0], "'barley corn barley corn injun meal": [65535, 0], "corn barley corn injun meal shorts": [65535, 0], "barley corn injun meal shorts spunk": [65535, 0], "corn injun meal shorts spunk water": [65535, 0], "injun meal shorts spunk water spunk": [65535, 0], "meal shorts spunk water spunk water": [65535, 0], "shorts spunk water spunk water swaller": [65535, 0], "spunk water spunk water swaller these": [65535, 0], "water spunk water swaller these warts": [65535, 0], "spunk water swaller these warts '": [65535, 0], "water swaller these warts ' and": [65535, 0], "swaller these warts ' and then": [65535, 0], "these warts ' and then walk": [65535, 0], "warts ' and then walk away": [65535, 0], "' and then walk away quick": [65535, 0], "and then walk away quick eleven": [65535, 0], "then walk away quick eleven steps": [65535, 0], "walk away quick eleven steps with": [65535, 0], "away quick eleven steps with your": [65535, 0], "quick eleven steps with your eyes": [65535, 0], "eleven steps with your eyes shut": [65535, 0], "steps with your eyes shut and": [65535, 0], "with your eyes shut and then": [65535, 0], "your eyes shut and then turn": [65535, 0], "eyes shut and then turn around": [65535, 0], "shut and then turn around three": [65535, 0], "and then turn around three times": [65535, 0], "then turn around three times and": [65535, 0], "turn around three times and walk": [65535, 0], "around three times and walk home": [65535, 0], "three times and walk home without": [65535, 0], "times and walk home without speaking": [65535, 0], "and walk home without speaking to": [65535, 0], "walk home without speaking to anybody": [65535, 0], "home without speaking to anybody because": [65535, 0], "without speaking to anybody because if": [65535, 0], "speaking to anybody because if you": [65535, 0], "to anybody because if you speak": [65535, 0], "anybody because if you speak the": [65535, 0], "because if you speak the charm's": [65535, 0], "if you speak the charm's busted": [65535, 0], "you speak the charm's busted well": [65535, 0], "speak the charm's busted well that": [65535, 0], "the charm's busted well that sounds": [65535, 0], "charm's busted well that sounds like": [65535, 0], "busted well that sounds like a": [65535, 0], "well that sounds like a good": [65535, 0], "that sounds like a good way": [65535, 0], "sounds like a good way but": [65535, 0], "like a good way but that": [65535, 0], "a good way but that ain't": [65535, 0], "good way but that ain't the": [65535, 0], "way but that ain't the way": [65535, 0], "but that ain't the way bob": [65535, 0], "that ain't the way bob tanner": [65535, 0], "ain't the way bob tanner done": [65535, 0], "the way bob tanner done no": [65535, 0], "way bob tanner done no sir": [65535, 0], "bob tanner done no sir you": [65535, 0], "tanner done no sir you can": [65535, 0], "done no sir you can bet": [65535, 0], "no sir you can bet he": [65535, 0], "sir you can bet he didn't": [65535, 0], "you can bet he didn't becuz": [65535, 0], "can bet he didn't becuz he's": [65535, 0], "bet he didn't becuz he's the": [65535, 0], "he didn't becuz he's the wartiest": [65535, 0], "didn't becuz he's the wartiest boy": [65535, 0], "becuz he's the wartiest boy in": [65535, 0], "he's the wartiest boy in this": [65535, 0], "the wartiest boy in this town": [65535, 0], "wartiest boy in this town and": [65535, 0], "boy in this town and he": [65535, 0], "in this town and he wouldn't": [65535, 0], "this town and he wouldn't have": [65535, 0], "town and he wouldn't have a": [65535, 0], "and he wouldn't have a wart": [65535, 0], "he wouldn't have a wart on": [65535, 0], "wouldn't have a wart on him": [65535, 0], "have a wart on him if": [65535, 0], "a wart on him if he'd": [65535, 0], "wart on him if he'd knowed": [65535, 0], "on him if he'd knowed how": [65535, 0], "him if he'd knowed how to": [65535, 0], "if he'd knowed how to work": [65535, 0], "he'd knowed how to work spunk": [65535, 0], "knowed how to work spunk water": [65535, 0], "how to work spunk water i've": [65535, 0], "to work spunk water i've took": [65535, 0], "work spunk water i've took off": [65535, 0], "spunk water i've took off thousands": [65535, 0], "water i've took off thousands of": [65535, 0], "i've took off thousands of warts": [65535, 0], "took off thousands of warts off": [65535, 0], "off thousands of warts off of": [65535, 0], "thousands of warts off of my": [65535, 0], "of warts off of my hands": [65535, 0], "warts off of my hands that": [65535, 0], "off of my hands that way": [65535, 0], "of my hands that way huck": [65535, 0], "my hands that way huck i": [65535, 0], "hands that way huck i play": [65535, 0], "that way huck i play with": [65535, 0], "way huck i play with frogs": [65535, 0], "huck i play with frogs so": [65535, 0], "i play with frogs so much": [65535, 0], "play with frogs so much that": [65535, 0], "with frogs so much that i've": [65535, 0], "frogs so much that i've always": [65535, 0], "so much that i've always got": [65535, 0], "much that i've always got considerable": [65535, 0], "that i've always got considerable many": [65535, 0], "i've always got considerable many warts": [65535, 0], "always got considerable many warts sometimes": [65535, 0], "got considerable many warts sometimes i": [65535, 0], "considerable many warts sometimes i take": [65535, 0], "many warts sometimes i take 'em": [65535, 0], "warts sometimes i take 'em off": [65535, 0], "sometimes i take 'em off with": [65535, 0], "i take 'em off with a": [65535, 0], "take 'em off with a bean": [65535, 0], "'em off with a bean yes": [65535, 0], "off with a bean yes bean's": [65535, 0], "with a bean yes bean's good": [65535, 0], "a bean yes bean's good i've": [65535, 0], "bean yes bean's good i've done": [65535, 0], "yes bean's good i've done that": [65535, 0], "bean's good i've done that have": [65535, 0], "good i've done that have you": [65535, 0], "i've done that have you what's": [65535, 0], "done that have you what's your": [65535, 0], "that have you what's your way": [65535, 0], "have you what's your way you": [65535, 0], "you what's your way you take": [65535, 0], "what's your way you take and": [65535, 0], "your way you take and split": [65535, 0], "way you take and split the": [65535, 0], "you take and split the bean": [65535, 0], "take and split the bean and": [65535, 0], "and split the bean and cut": [65535, 0], "split the bean and cut the": [65535, 0], "the bean and cut the wart": [65535, 0], "bean and cut the wart so": [65535, 0], "and cut the wart so as": [65535, 0], "cut the wart so as to": [65535, 0], "the wart so as to get": [65535, 0], "wart so as to get some": [65535, 0], "so as to get some blood": [65535, 0], "as to get some blood and": [65535, 0], "to get some blood and then": [65535, 0], "get some blood and then you": [65535, 0], "some blood and then you put": [65535, 0], "blood and then you put the": [65535, 0], "and then you put the blood": [65535, 0], "then you put the blood on": [65535, 0], "you put the blood on one": [65535, 0], "put the blood on one piece": [65535, 0], "the blood on one piece of": [65535, 0], "blood on one piece of the": [65535, 0], "on one piece of the bean": [65535, 0], "one piece of the bean and": [65535, 0], "piece of the bean and take": [65535, 0], "of the bean and take and": [65535, 0], "the bean and take and dig": [65535, 0], "bean and take and dig a": [65535, 0], "and take and dig a hole": [65535, 0], "take and dig a hole and": [65535, 0], "and dig a hole and bury": [65535, 0], "dig a hole and bury it": [65535, 0], "a hole and bury it 'bout": [65535, 0], "hole and bury it 'bout midnight": [65535, 0], "and bury it 'bout midnight at": [65535, 0], "bury it 'bout midnight at the": [65535, 0], "it 'bout midnight at the crossroads": [65535, 0], "'bout midnight at the crossroads in": [65535, 0], "midnight at the crossroads in the": [65535, 0], "at the crossroads in the dark": [65535, 0], "the crossroads in the dark of": [65535, 0], "crossroads in the dark of the": [65535, 0], "in the dark of the moon": [65535, 0], "the dark of the moon and": [65535, 0], "dark of the moon and then": [65535, 0], "of the moon and then you": [65535, 0], "the moon and then you burn": [65535, 0], "moon and then you burn up": [65535, 0], "and then you burn up the": [65535, 0], "then you burn up the rest": [65535, 0], "you burn up the rest of": [65535, 0], "burn up the rest of the": [65535, 0], "up the rest of the bean": [65535, 0], "the rest of the bean you": [65535, 0], "rest of the bean you see": [65535, 0], "of the bean you see that": [65535, 0], "the bean you see that piece": [65535, 0], "bean you see that piece that's": [65535, 0], "you see that piece that's got": [65535, 0], "see that piece that's got the": [65535, 0], "that piece that's got the blood": [65535, 0], "piece that's got the blood on": [65535, 0], "that's got the blood on it": [65535, 0], "got the blood on it will": [65535, 0], "the blood on it will keep": [65535, 0], "blood on it will keep drawing": [65535, 0], "on it will keep drawing and": [65535, 0], "it will keep drawing and drawing": [65535, 0], "will keep drawing and drawing trying": [65535, 0], "keep drawing and drawing trying to": [65535, 0], "drawing and drawing trying to fetch": [65535, 0], "and drawing trying to fetch the": [65535, 0], "drawing trying to fetch the other": [65535, 0], "trying to fetch the other piece": [65535, 0], "to fetch the other piece to": [65535, 0], "fetch the other piece to it": [65535, 0], "the other piece to it and": [65535, 0], "other piece to it and so": [65535, 0], "piece to it and so that": [65535, 0], "to it and so that helps": [65535, 0], "it and so that helps the": [65535, 0], "and so that helps the blood": [65535, 0], "so that helps the blood to": [65535, 0], "that helps the blood to draw": [65535, 0], "helps the blood to draw the": [65535, 0], "the blood to draw the wart": [65535, 0], "blood to draw the wart and": [65535, 0], "to draw the wart and pretty": [65535, 0], "draw the wart and pretty soon": [65535, 0], "the wart and pretty soon off": [65535, 0], "wart and pretty soon off she": [65535, 0], "and pretty soon off she comes": [65535, 0], "pretty soon off she comes yes": [65535, 0], "soon off she comes yes that's": [65535, 0], "off she comes yes that's it": [65535, 0], "she comes yes that's it huck": [65535, 0], "comes yes that's it huck that's": [65535, 0], "yes that's it huck that's it": [65535, 0], "that's it huck that's it though": [65535, 0], "it huck that's it though when": [65535, 0], "huck that's it though when you're": [65535, 0], "that's it though when you're burying": [65535, 0], "it though when you're burying it": [65535, 0], "though when you're burying it if": [65535, 0], "when you're burying it if you": [65535, 0], "you're burying it if you say": [65535, 0], "burying it if you say 'down": [65535, 0], "it if you say 'down bean": [65535, 0], "if you say 'down bean off": [65535, 0], "you say 'down bean off wart": [65535, 0], "say 'down bean off wart come": [65535, 0], "'down bean off wart come no": [65535, 0], "bean off wart come no more": [65535, 0], "off wart come no more to": [65535, 0], "wart come no more to bother": [65535, 0], "come no more to bother me": [65535, 0], "no more to bother me '": [65535, 0], "more to bother me ' it's": [65535, 0], "to bother me ' it's better": [65535, 0], "bother me ' it's better that's": [65535, 0], "me ' it's better that's the": [65535, 0], "' it's better that's the way": [65535, 0], "it's better that's the way joe": [65535, 0], "better that's the way joe harper": [65535, 0], "that's the way joe harper does": [65535, 0], "the way joe harper does and": [65535, 0], "way joe harper does and he's": [65535, 0], "joe harper does and he's been": [65535, 0], "harper does and he's been nearly": [65535, 0], "does and he's been nearly to": [65535, 0], "and he's been nearly to coonville": [65535, 0], "he's been nearly to coonville and": [65535, 0], "been nearly to coonville and most": [65535, 0], "nearly to coonville and most everywheres": [65535, 0], "to coonville and most everywheres but": [65535, 0], "coonville and most everywheres but say": [65535, 0], "and most everywheres but say how": [65535, 0], "most everywheres but say how do": [65535, 0], "everywheres but say how do you": [65535, 0], "but say how do you cure": [65535, 0], "say how do you cure 'em": [65535, 0], "how do you cure 'em with": [65535, 0], "do you cure 'em with dead": [65535, 0], "you cure 'em with dead cats": [65535, 0], "cure 'em with dead cats why": [65535, 0], "'em with dead cats why you": [65535, 0], "with dead cats why you take": [65535, 0], "dead cats why you take your": [65535, 0], "cats why you take your cat": [65535, 0], "why you take your cat and": [65535, 0], "you take your cat and go": [65535, 0], "take your cat and go and": [65535, 0], "your cat and go and get": [65535, 0], "cat and go and get in": [65535, 0], "and go and get in the": [65535, 0], "go and get in the graveyard": [65535, 0], "and get in the graveyard 'long": [65535, 0], "get in the graveyard 'long about": [65535, 0], "in the graveyard 'long about midnight": [65535, 0], "the graveyard 'long about midnight when": [65535, 0], "graveyard 'long about midnight when somebody": [65535, 0], "'long about midnight when somebody that": [65535, 0], "about midnight when somebody that was": [65535, 0], "midnight when somebody that was wicked": [65535, 0], "when somebody that was wicked has": [65535, 0], "somebody that was wicked has been": [65535, 0], "that was wicked has been buried": [65535, 0], "was wicked has been buried and": [65535, 0], "wicked has been buried and when": [65535, 0], "has been buried and when it's": [65535, 0], "been buried and when it's midnight": [65535, 0], "buried and when it's midnight a": [65535, 0], "and when it's midnight a devil": [65535, 0], "when it's midnight a devil will": [65535, 0], "it's midnight a devil will come": [65535, 0], "midnight a devil will come or": [65535, 0], "a devil will come or maybe": [65535, 0], "devil will come or maybe two": [65535, 0], "will come or maybe two or": [65535, 0], "come or maybe two or three": [65535, 0], "or maybe two or three but": [65535, 0], "maybe two or three but you": [65535, 0], "two or three but you can't": [65535, 0], "or three but you can't see": [65535, 0], "three but you can't see 'em": [65535, 0], "but you can't see 'em you": [65535, 0], "you can't see 'em you can": [65535, 0], "can't see 'em you can only": [65535, 0], "see 'em you can only hear": [65535, 0], "'em you can only hear something": [65535, 0], "you can only hear something like": [65535, 0], "can only hear something like the": [65535, 0], "only hear something like the wind": [65535, 0], "hear something like the wind or": [65535, 0], "something like the wind or maybe": [65535, 0], "like the wind or maybe hear": [65535, 0], "the wind or maybe hear 'em": [65535, 0], "wind or maybe hear 'em talk": [65535, 0], "or maybe hear 'em talk and": [65535, 0], "maybe hear 'em talk and when": [65535, 0], "hear 'em talk and when they're": [65535, 0], "'em talk and when they're taking": [65535, 0], "talk and when they're taking that": [65535, 0], "and when they're taking that feller": [65535, 0], "when they're taking that feller away": [65535, 0], "they're taking that feller away you": [65535, 0], "taking that feller away you heave": [65535, 0], "that feller away you heave your": [65535, 0], "feller away you heave your cat": [65535, 0], "away you heave your cat after": [65535, 0], "you heave your cat after 'em": [65535, 0], "heave your cat after 'em and": [65535, 0], "your cat after 'em and say": [65535, 0], "cat after 'em and say 'devil": [65535, 0], "after 'em and say 'devil follow": [65535, 0], "'em and say 'devil follow corpse": [65535, 0], "and say 'devil follow corpse cat": [65535, 0], "say 'devil follow corpse cat follow": [65535, 0], "'devil follow corpse cat follow devil": [65535, 0], "follow corpse cat follow devil warts": [65535, 0], "corpse cat follow devil warts follow": [65535, 0], "cat follow devil warts follow cat": [65535, 0], "follow devil warts follow cat i'm": [65535, 0], "devil warts follow cat i'm done": [65535, 0], "warts follow cat i'm done with": [65535, 0], "follow cat i'm done with ye": [65535, 0], "cat i'm done with ye '": [65535, 0], "i'm done with ye ' that'll": [65535, 0], "done with ye ' that'll fetch": [65535, 0], "with ye ' that'll fetch any": [65535, 0], "ye ' that'll fetch any wart": [65535, 0], "' that'll fetch any wart sounds": [65535, 0], "that'll fetch any wart sounds right": [65535, 0], "fetch any wart sounds right d'you": [65535, 0], "any wart sounds right d'you ever": [65535, 0], "wart sounds right d'you ever try": [65535, 0], "sounds right d'you ever try it": [65535, 0], "right d'you ever try it huck": [65535, 0], "d'you ever try it huck no": [65535, 0], "ever try it huck no but": [65535, 0], "try it huck no but old": [65535, 0], "it huck no but old mother": [65535, 0], "huck no but old mother hopkins": [65535, 0], "no but old mother hopkins told": [65535, 0], "but old mother hopkins told me": [65535, 0], "old mother hopkins told me well": [65535, 0], "mother hopkins told me well i": [65535, 0], "hopkins told me well i reckon": [65535, 0], "told me well i reckon it's": [65535, 0], "me well i reckon it's so": [65535, 0], "well i reckon it's so then": [65535, 0], "i reckon it's so then becuz": [65535, 0], "reckon it's so then becuz they": [65535, 0], "it's so then becuz they say": [65535, 0], "so then becuz they say she's": [65535, 0], "then becuz they say she's a": [65535, 0], "becuz they say she's a witch": [65535, 0], "they say she's a witch say": [65535, 0], "say she's a witch say why": [65535, 0], "she's a witch say why tom": [65535, 0], "a witch say why tom i": [65535, 0], "witch say why tom i know": [65535, 0], "say why tom i know she": [65535, 0], "why tom i know she is": [65535, 0], "tom i know she is she": [65535, 0], "i know she is she witched": [65535, 0], "know she is she witched pap": [65535, 0], "she is she witched pap pap": [65535, 0], "is she witched pap pap says": [65535, 0], "she witched pap pap says so": [65535, 0], "witched pap pap says so his": [65535, 0], "pap pap says so his own": [65535, 0], "pap says so his own self": [65535, 0], "says so his own self he": [65535, 0], "so his own self he come": [65535, 0], "his own self he come along": [65535, 0], "own self he come along one": [65535, 0], "self he come along one day": [65535, 0], "he come along one day and": [65535, 0], "come along one day and he": [65535, 0], "along one day and he see": [65535, 0], "one day and he see she": [65535, 0], "day and he see she was": [65535, 0], "and he see she was a": [65535, 0], "he see she was a witching": [65535, 0], "see she was a witching him": [65535, 0], "she was a witching him so": [65535, 0], "was a witching him so he": [65535, 0], "a witching him so he took": [65535, 0], "witching him so he took up": [65535, 0], "him so he took up a": [65535, 0], "so he took up a rock": [65535, 0], "he took up a rock and": [65535, 0], "took up a rock and if": [65535, 0], "up a rock and if she": [65535, 0], "a rock and if she hadn't": [65535, 0], "rock and if she hadn't dodged": [65535, 0], "and if she hadn't dodged he'd": [65535, 0], "if she hadn't dodged he'd a": [65535, 0], "she hadn't dodged he'd a got": [65535, 0], "hadn't dodged he'd a got her": [65535, 0], "dodged he'd a got her well": [65535, 0], "he'd a got her well that": [65535, 0], "a got her well that very": [65535, 0], "got her well that very night": [65535, 0], "her well that very night he": [65535, 0], "well that very night he rolled": [65535, 0], "that very night he rolled off'n": [65535, 0], "very night he rolled off'n a": [65535, 0], "night he rolled off'n a shed": [65535, 0], "he rolled off'n a shed wher'": [65535, 0], "rolled off'n a shed wher' he": [65535, 0], "off'n a shed wher' he was": [65535, 0], "a shed wher' he was a": [65535, 0], "shed wher' he was a layin": [65535, 0], "wher' he was a layin drunk": [65535, 0], "he was a layin drunk and": [65535, 0], "was a layin drunk and broke": [65535, 0], "a layin drunk and broke his": [65535, 0], "layin drunk and broke his arm": [65535, 0], "drunk and broke his arm why": [65535, 0], "and broke his arm why that's": [65535, 0], "broke his arm why that's awful": [65535, 0], "his arm why that's awful how": [65535, 0], "arm why that's awful how did": [65535, 0], "why that's awful how did he": [65535, 0], "that's awful how did he know": [65535, 0], "awful how did he know she": [65535, 0], "how did he know she was": [65535, 0], "did he know she was a": [65535, 0], "he know she was a witching": [65535, 0], "know she was a witching him": [65535, 0], "she was a witching him lord": [65535, 0], "was a witching him lord pap": [65535, 0], "a witching him lord pap can": [65535, 0], "witching him lord pap can tell": [65535, 0], "him lord pap can tell easy": [65535, 0], "lord pap can tell easy pap": [65535, 0], "pap can tell easy pap says": [65535, 0], "can tell easy pap says when": [65535, 0], "tell easy pap says when they": [65535, 0], "easy pap says when they keep": [65535, 0], "pap says when they keep looking": [65535, 0], "says when they keep looking at": [65535, 0], "when they keep looking at you": [65535, 0], "they keep looking at you right": [65535, 0], "keep looking at you right stiddy": [65535, 0], "looking at you right stiddy they're": [65535, 0], "at you right stiddy they're a": [65535, 0], "you right stiddy they're a witching": [65535, 0], "right stiddy they're a witching you": [65535, 0], "stiddy they're a witching you specially": [65535, 0], "they're a witching you specially if": [65535, 0], "a witching you specially if they": [65535, 0], "witching you specially if they mumble": [65535, 0], "you specially if they mumble becuz": [65535, 0], "specially if they mumble becuz when": [65535, 0], "if they mumble becuz when they": [65535, 0], "they mumble becuz when they mumble": [65535, 0], "mumble becuz when they mumble they're": [65535, 0], "becuz when they mumble they're saying": [65535, 0], "when they mumble they're saying the": [65535, 0], "they mumble they're saying the lord's": [65535, 0], "mumble they're saying the lord's prayer": [65535, 0], "they're saying the lord's prayer backards": [65535, 0], "saying the lord's prayer backards say": [65535, 0], "the lord's prayer backards say hucky": [65535, 0], "lord's prayer backards say hucky when": [65535, 0], "prayer backards say hucky when you": [65535, 0], "backards say hucky when you going": [65535, 0], "say hucky when you going to": [65535, 0], "hucky when you going to try": [65535, 0], "when you going to try the": [65535, 0], "you going to try the cat": [65535, 0], "going to try the cat to": [65535, 0], "to try the cat to night": [65535, 0], "try the cat to night i": [65535, 0], "the cat to night i reckon": [65535, 0], "cat to night i reckon they'll": [65535, 0], "to night i reckon they'll come": [65535, 0], "night i reckon they'll come after": [65535, 0], "i reckon they'll come after old": [65535, 0], "reckon they'll come after old hoss": [65535, 0], "they'll come after old hoss williams": [65535, 0], "come after old hoss williams to": [65535, 0], "after old hoss williams to night": [65535, 0], "old hoss williams to night but": [65535, 0], "hoss williams to night but they": [65535, 0], "williams to night but they buried": [65535, 0], "to night but they buried him": [65535, 0], "night but they buried him saturday": [65535, 0], "but they buried him saturday didn't": [65535, 0], "they buried him saturday didn't they": [65535, 0], "buried him saturday didn't they get": [65535, 0], "him saturday didn't they get him": [65535, 0], "saturday didn't they get him saturday": [65535, 0], "didn't they get him saturday night": [65535, 0], "they get him saturday night why": [65535, 0], "get him saturday night why how": [65535, 0], "him saturday night why how you": [65535, 0], "saturday night why how you talk": [65535, 0], "night why how you talk how": [65535, 0], "why how you talk how could": [65535, 0], "how you talk how could their": [65535, 0], "you talk how could their charms": [65535, 0], "talk how could their charms work": [65535, 0], "how could their charms work till": [65535, 0], "could their charms work till midnight": [65535, 0], "their charms work till midnight and": [65535, 0], "charms work till midnight and then": [65535, 0], "work till midnight and then it's": [65535, 0], "till midnight and then it's sunday": [65535, 0], "midnight and then it's sunday devils": [65535, 0], "and then it's sunday devils don't": [65535, 0], "then it's sunday devils don't slosh": [65535, 0], "it's sunday devils don't slosh around": [65535, 0], "sunday devils don't slosh around much": [65535, 0], "devils don't slosh around much of": [65535, 0], "don't slosh around much of a": [65535, 0], "slosh around much of a sunday": [65535, 0], "around much of a sunday i": [65535, 0], "much of a sunday i don't": [65535, 0], "of a sunday i don't reckon": [65535, 0], "a sunday i don't reckon i": [65535, 0], "sunday i don't reckon i never": [65535, 0], "i don't reckon i never thought": [65535, 0], "don't reckon i never thought of": [65535, 0], "reckon i never thought of that": [65535, 0], "i never thought of that that's": [65535, 0], "never thought of that that's so": [65535, 0], "thought of that that's so lemme": [65535, 0], "of that that's so lemme go": [65535, 0], "that that's so lemme go with": [65535, 0], "that's so lemme go with you": [65535, 0], "so lemme go with you of": [65535, 0], "lemme go with you of course": [65535, 0], "go with you of course if": [65535, 0], "with you of course if you": [65535, 0], "you of course if you ain't": [65535, 0], "of course if you ain't afeard": [65535, 0], "course if you ain't afeard afeard": [65535, 0], "if you ain't afeard afeard 'tain't": [65535, 0], "you ain't afeard afeard 'tain't likely": [65535, 0], "ain't afeard afeard 'tain't likely will": [65535, 0], "afeard afeard 'tain't likely will you": [65535, 0], "afeard 'tain't likely will you meow": [65535, 0], "'tain't likely will you meow yes": [65535, 0], "likely will you meow yes and": [65535, 0], "will you meow yes and you": [65535, 0], "you meow yes and you meow": [65535, 0], "meow yes and you meow back": [65535, 0], "yes and you meow back if": [65535, 0], "and you meow back if you": [65535, 0], "you meow back if you get": [65535, 0], "meow back if you get a": [65535, 0], "back if you get a chance": [65535, 0], "if you get a chance last": [65535, 0], "you get a chance last time": [65535, 0], "get a chance last time you": [65535, 0], "a chance last time you kep'": [65535, 0], "chance last time you kep' me": [65535, 0], "last time you kep' me a": [65535, 0], "time you kep' me a meowing": [65535, 0], "you kep' me a meowing around": [65535, 0], "kep' me a meowing around till": [65535, 0], "me a meowing around till old": [65535, 0], "a meowing around till old hays": [65535, 0], "meowing around till old hays went": [65535, 0], "around till old hays went to": [65535, 0], "till old hays went to throwing": [65535, 0], "old hays went to throwing rocks": [65535, 0], "hays went to throwing rocks at": [65535, 0], "went to throwing rocks at me": [65535, 0], "to throwing rocks at me and": [65535, 0], "throwing rocks at me and says": [65535, 0], "rocks at me and says 'dern": [65535, 0], "at me and says 'dern that": [65535, 0], "me and says 'dern that cat": [65535, 0], "and says 'dern that cat '": [65535, 0], "says 'dern that cat ' and": [65535, 0], "'dern that cat ' and so": [65535, 0], "that cat ' and so i": [65535, 0], "cat ' and so i hove": [65535, 0], "' and so i hove a": [65535, 0], "and so i hove a brick": [65535, 0], "so i hove a brick through": [65535, 0], "i hove a brick through his": [65535, 0], "hove a brick through his window": [65535, 0], "a brick through his window but": [65535, 0], "brick through his window but don't": [65535, 0], "through his window but don't you": [65535, 0], "his window but don't you tell": [65535, 0], "window but don't you tell i": [65535, 0], "but don't you tell i won't": [65535, 0], "don't you tell i won't i": [65535, 0], "you tell i won't i couldn't": [65535, 0], "tell i won't i couldn't meow": [65535, 0], "i won't i couldn't meow that": [65535, 0], "won't i couldn't meow that night": [65535, 0], "i couldn't meow that night becuz": [65535, 0], "couldn't meow that night becuz auntie": [65535, 0], "meow that night becuz auntie was": [65535, 0], "that night becuz auntie was watching": [65535, 0], "night becuz auntie was watching me": [65535, 0], "becuz auntie was watching me but": [65535, 0], "auntie was watching me but i'll": [65535, 0], "was watching me but i'll meow": [65535, 0], "watching me but i'll meow this": [65535, 0], "me but i'll meow this time": [65535, 0], "but i'll meow this time say": [65535, 0], "i'll meow this time say what's": [65535, 0], "meow this time say what's that": [65535, 0], "this time say what's that nothing": [65535, 0], "time say what's that nothing but": [65535, 0], "say what's that nothing but a": [65535, 0], "what's that nothing but a tick": [65535, 0], "that nothing but a tick where'd": [65535, 0], "nothing but a tick where'd you": [65535, 0], "but a tick where'd you get": [65535, 0], "a tick where'd you get him": [65535, 0], "tick where'd you get him out": [65535, 0], "where'd you get him out in": [65535, 0], "you get him out in the": [65535, 0], "get him out in the woods": [65535, 0], "him out in the woods what'll": [65535, 0], "out in the woods what'll you": [65535, 0], "in the woods what'll you take": [65535, 0], "the woods what'll you take for": [65535, 0], "woods what'll you take for him": [65535, 0], "what'll you take for him i": [65535, 0], "you take for him i don't": [65535, 0], "take for him i don't know": [65535, 0], "for him i don't know i": [65535, 0], "him i don't know i don't": [65535, 0], "i don't know i don't want": [65535, 0], "don't know i don't want to": [65535, 0], "know i don't want to sell": [65535, 0], "i don't want to sell him": [65535, 0], "don't want to sell him all": [65535, 0], "want to sell him all right": [65535, 0], "to sell him all right it's": [65535, 0], "sell him all right it's a": [65535, 0], "him all right it's a mighty": [65535, 0], "all right it's a mighty small": [65535, 0], "right it's a mighty small tick": [65535, 0], "it's a mighty small tick anyway": [65535, 0], "a mighty small tick anyway oh": [65535, 0], "mighty small tick anyway oh anybody": [65535, 0], "small tick anyway oh anybody can": [65535, 0], "tick anyway oh anybody can run": [65535, 0], "anyway oh anybody can run a": [65535, 0], "oh anybody can run a tick": [65535, 0], "anybody can run a tick down": [65535, 0], "can run a tick down that": [65535, 0], "run a tick down that don't": [65535, 0], "a tick down that don't belong": [65535, 0], "tick down that don't belong to": [65535, 0], "down that don't belong to them": [65535, 0], "that don't belong to them i'm": [65535, 0], "don't belong to them i'm satisfied": [65535, 0], "belong to them i'm satisfied with": [65535, 0], "to them i'm satisfied with it": [65535, 0], "them i'm satisfied with it it's": [65535, 0], "i'm satisfied with it it's a": [65535, 0], "satisfied with it it's a good": [65535, 0], "with it it's a good enough": [65535, 0], "it it's a good enough tick": [65535, 0], "it's a good enough tick for": [65535, 0], "a good enough tick for me": [65535, 0], "good enough tick for me sho": [65535, 0], "enough tick for me sho there's": [65535, 0], "tick for me sho there's ticks": [65535, 0], "for me sho there's ticks a": [65535, 0], "me sho there's ticks a plenty": [65535, 0], "sho there's ticks a plenty i": [65535, 0], "there's ticks a plenty i could": [65535, 0], "ticks a plenty i could have": [65535, 0], "a plenty i could have a": [65535, 0], "plenty i could have a thousand": [65535, 0], "i could have a thousand of": [65535, 0], "could have a thousand of 'em": [65535, 0], "have a thousand of 'em if": [65535, 0], "a thousand of 'em if i": [65535, 0], "thousand of 'em if i wanted": [65535, 0], "of 'em if i wanted to": [65535, 0], "'em if i wanted to well": [65535, 0], "if i wanted to well why": [65535, 0], "i wanted to well why don't": [65535, 0], "wanted to well why don't you": [65535, 0], "to well why don't you becuz": [65535, 0], "well why don't you becuz you": [65535, 0], "why don't you becuz you know": [65535, 0], "don't you becuz you know mighty": [65535, 0], "you becuz you know mighty well": [65535, 0], "becuz you know mighty well you": [65535, 0], "you know mighty well you can't": [65535, 0], "know mighty well you can't this": [65535, 0], "mighty well you can't this is": [65535, 0], "well you can't this is a": [65535, 0], "you can't this is a pretty": [65535, 0], "can't this is a pretty early": [65535, 0], "this is a pretty early tick": [65535, 0], "is a pretty early tick i": [65535, 0], "a pretty early tick i reckon": [65535, 0], "pretty early tick i reckon it's": [65535, 0], "early tick i reckon it's the": [65535, 0], "tick i reckon it's the first": [65535, 0], "i reckon it's the first one": [65535, 0], "reckon it's the first one i've": [65535, 0], "it's the first one i've seen": [65535, 0], "the first one i've seen this": [65535, 0], "first one i've seen this year": [65535, 0], "one i've seen this year say": [65535, 0], "i've seen this year say huck": [65535, 0], "seen this year say huck i'll": [65535, 0], "this year say huck i'll give": [65535, 0], "year say huck i'll give you": [65535, 0], "say huck i'll give you my": [65535, 0], "huck i'll give you my tooth": [65535, 0], "i'll give you my tooth for": [65535, 0], "give you my tooth for him": [65535, 0], "you my tooth for him less": [65535, 0], "my tooth for him less see": [65535, 0], "tooth for him less see it": [65535, 0], "for him less see it tom": [65535, 0], "him less see it tom got": [65535, 0], "less see it tom got out": [65535, 0], "see it tom got out a": [65535, 0], "it tom got out a bit": [65535, 0], "tom got out a bit of": [65535, 0], "got out a bit of paper": [65535, 0], "out a bit of paper and": [65535, 0], "a bit of paper and carefully": [65535, 0], "bit of paper and carefully unrolled": [65535, 0], "of paper and carefully unrolled it": [65535, 0], "paper and carefully unrolled it huckleberry": [65535, 0], "and carefully unrolled it huckleberry viewed": [65535, 0], "carefully unrolled it huckleberry viewed it": [65535, 0], "unrolled it huckleberry viewed it wistfully": [65535, 0], "it huckleberry viewed it wistfully the": [65535, 0], "huckleberry viewed it wistfully the temptation": [65535, 0], "viewed it wistfully the temptation was": [65535, 0], "it wistfully the temptation was very": [65535, 0], "wistfully the temptation was very strong": [65535, 0], "the temptation was very strong at": [65535, 0], "temptation was very strong at last": [65535, 0], "was very strong at last he": [65535, 0], "very strong at last he said": [65535, 0], "strong at last he said is": [65535, 0], "at last he said is it": [65535, 0], "last he said is it genuwyne": [65535, 0], "he said is it genuwyne tom": [65535, 0], "said is it genuwyne tom lifted": [65535, 0], "is it genuwyne tom lifted his": [65535, 0], "it genuwyne tom lifted his lip": [65535, 0], "genuwyne tom lifted his lip and": [65535, 0], "tom lifted his lip and showed": [65535, 0], "lifted his lip and showed the": [65535, 0], "his lip and showed the vacancy": [65535, 0], "lip and showed the vacancy well": [65535, 0], "and showed the vacancy well all": [65535, 0], "showed the vacancy well all right": [65535, 0], "the vacancy well all right said": [65535, 0], "vacancy well all right said huckleberry": [65535, 0], "well all right said huckleberry it's": [65535, 0], "all right said huckleberry it's a": [65535, 0], "right said huckleberry it's a trade": [65535, 0], "said huckleberry it's a trade tom": [65535, 0], "huckleberry it's a trade tom enclosed": [65535, 0], "it's a trade tom enclosed the": [65535, 0], "a trade tom enclosed the tick": [65535, 0], "trade tom enclosed the tick in": [65535, 0], "tom enclosed the tick in the": [65535, 0], "enclosed the tick in the percussion": [65535, 0], "the tick in the percussion cap": [65535, 0], "tick in the percussion cap box": [65535, 0], "in the percussion cap box that": [65535, 0], "the percussion cap box that had": [65535, 0], "percussion cap box that had lately": [65535, 0], "cap box that had lately been": [65535, 0], "box that had lately been the": [65535, 0], "that had lately been the pinchbug's": [65535, 0], "had lately been the pinchbug's prison": [65535, 0], "lately been the pinchbug's prison and": [65535, 0], "been the pinchbug's prison and the": [65535, 0], "the pinchbug's prison and the boys": [65535, 0], "pinchbug's prison and the boys separated": [65535, 0], "prison and the boys separated each": [65535, 0], "and the boys separated each feeling": [65535, 0], "the boys separated each feeling wealthier": [65535, 0], "boys separated each feeling wealthier than": [65535, 0], "separated each feeling wealthier than before": [65535, 0], "each feeling wealthier than before when": [65535, 0], "feeling wealthier than before when tom": [65535, 0], "wealthier than before when tom reached": [65535, 0], "than before when tom reached the": [65535, 0], "before when tom reached the little": [65535, 0], "when tom reached the little isolated": [65535, 0], "tom reached the little isolated frame": [65535, 0], "reached the little isolated frame schoolhouse": [65535, 0], "the little isolated frame schoolhouse he": [65535, 0], "little isolated frame schoolhouse he strode": [65535, 0], "isolated frame schoolhouse he strode in": [65535, 0], "frame schoolhouse he strode in briskly": [65535, 0], "schoolhouse he strode in briskly with": [65535, 0], "he strode in briskly with the": [65535, 0], "strode in briskly with the manner": [65535, 0], "in briskly with the manner of": [65535, 0], "briskly with the manner of one": [65535, 0], "with the manner of one who": [65535, 0], "the manner of one who had": [65535, 0], "manner of one who had come": [65535, 0], "of one who had come with": [65535, 0], "one who had come with all": [65535, 0], "who had come with all honest": [65535, 0], "had come with all honest speed": [65535, 0], "come with all honest speed he": [65535, 0], "with all honest speed he hung": [65535, 0], "all honest speed he hung his": [65535, 0], "honest speed he hung his hat": [65535, 0], "speed he hung his hat on": [65535, 0], "he hung his hat on a": [65535, 0], "hung his hat on a peg": [65535, 0], "his hat on a peg and": [65535, 0], "hat on a peg and flung": [65535, 0], "on a peg and flung himself": [65535, 0], "a peg and flung himself into": [65535, 0], "peg and flung himself into his": [65535, 0], "and flung himself into his seat": [65535, 0], "flung himself into his seat with": [65535, 0], "himself into his seat with business": [65535, 0], "into his seat with business like": [65535, 0], "his seat with business like alacrity": [65535, 0], "seat with business like alacrity the": [65535, 0], "with business like alacrity the master": [65535, 0], "business like alacrity the master throned": [65535, 0], "like alacrity the master throned on": [65535, 0], "alacrity the master throned on high": [65535, 0], "the master throned on high in": [65535, 0], "master throned on high in his": [65535, 0], "throned on high in his great": [65535, 0], "on high in his great splint": [65535, 0], "high in his great splint bottom": [65535, 0], "in his great splint bottom arm": [65535, 0], "his great splint bottom arm chair": [65535, 0], "great splint bottom arm chair was": [65535, 0], "splint bottom arm chair was dozing": [65535, 0], "bottom arm chair was dozing lulled": [65535, 0], "arm chair was dozing lulled by": [65535, 0], "chair was dozing lulled by the": [65535, 0], "was dozing lulled by the drowsy": [65535, 0], "dozing lulled by the drowsy hum": [65535, 0], "lulled by the drowsy hum of": [65535, 0], "by the drowsy hum of study": [65535, 0], "the drowsy hum of study the": [65535, 0], "drowsy hum of study the interruption": [65535, 0], "hum of study the interruption roused": [65535, 0], "of study the interruption roused him": [65535, 0], "study the interruption roused him thomas": [65535, 0], "the interruption roused him thomas sawyer": [65535, 0], "interruption roused him thomas sawyer tom": [65535, 0], "roused him thomas sawyer tom knew": [65535, 0], "him thomas sawyer tom knew that": [65535, 0], "thomas sawyer tom knew that when": [65535, 0], "sawyer tom knew that when his": [65535, 0], "tom knew that when his name": [65535, 0], "knew that when his name was": [65535, 0], "that when his name was pronounced": [65535, 0], "when his name was pronounced in": [65535, 0], "his name was pronounced in full": [65535, 0], "name was pronounced in full it": [65535, 0], "was pronounced in full it meant": [65535, 0], "pronounced in full it meant trouble": [65535, 0], "in full it meant trouble sir": [65535, 0], "full it meant trouble sir come": [65535, 0], "it meant trouble sir come up": [65535, 0], "meant trouble sir come up here": [65535, 0], "trouble sir come up here now": [65535, 0], "sir come up here now sir": [65535, 0], "come up here now sir why": [65535, 0], "up here now sir why are": [65535, 0], "here now sir why are you": [65535, 0], "now sir why are you late": [65535, 0], "sir why are you late again": [65535, 0], "why are you late again as": [65535, 0], "are you late again as usual": [65535, 0], "you late again as usual tom": [65535, 0], "late again as usual tom was": [65535, 0], "again as usual tom was about": [65535, 0], "as usual tom was about to": [65535, 0], "usual tom was about to take": [65535, 0], "tom was about to take refuge": [65535, 0], "was about to take refuge in": [65535, 0], "about to take refuge in a": [65535, 0], "to take refuge in a lie": [65535, 0], "take refuge in a lie when": [65535, 0], "refuge in a lie when he": [65535, 0], "in a lie when he saw": [65535, 0], "a lie when he saw two": [65535, 0], "lie when he saw two long": [65535, 0], "when he saw two long tails": [65535, 0], "he saw two long tails of": [65535, 0], "saw two long tails of yellow": [65535, 0], "two long tails of yellow hair": [65535, 0], "long tails of yellow hair hanging": [65535, 0], "tails of yellow hair hanging down": [65535, 0], "of yellow hair hanging down a": [65535, 0], "yellow hair hanging down a back": [65535, 0], "hair hanging down a back that": [65535, 0], "hanging down a back that he": [65535, 0], "down a back that he recognized": [65535, 0], "a back that he recognized by": [65535, 0], "back that he recognized by the": [65535, 0], "that he recognized by the electric": [65535, 0], "he recognized by the electric sympathy": [65535, 0], "recognized by the electric sympathy of": [65535, 0], "by the electric sympathy of love": [65535, 0], "the electric sympathy of love and": [65535, 0], "electric sympathy of love and by": [65535, 0], "sympathy of love and by that": [65535, 0], "of love and by that form": [65535, 0], "love and by that form was": [65535, 0], "and by that form was the": [65535, 0], "by that form was the only": [65535, 0], "that form was the only vacant": [65535, 0], "form was the only vacant place": [65535, 0], "was the only vacant place on": [65535, 0], "the only vacant place on the": [65535, 0], "only vacant place on the girls'": [65535, 0], "vacant place on the girls' side": [65535, 0], "place on the girls' side of": [65535, 0], "on the girls' side of the": [65535, 0], "the girls' side of the school": [65535, 0], "girls' side of the school house": [65535, 0], "side of the school house he": [65535, 0], "of the school house he instantly": [65535, 0], "the school house he instantly said": [65535, 0], "school house he instantly said i": [65535, 0], "house he instantly said i stopped": [65535, 0], "he instantly said i stopped to": [65535, 0], "instantly said i stopped to talk": [65535, 0], "said i stopped to talk with": [65535, 0], "i stopped to talk with huckleberry": [65535, 0], "stopped to talk with huckleberry finn": [65535, 0], "to talk with huckleberry finn the": [65535, 0], "talk with huckleberry finn the master's": [65535, 0], "with huckleberry finn the master's pulse": [65535, 0], "huckleberry finn the master's pulse stood": [65535, 0], "finn the master's pulse stood still": [65535, 0], "the master's pulse stood still and": [65535, 0], "master's pulse stood still and he": [65535, 0], "pulse stood still and he stared": [65535, 0], "stood still and he stared helplessly": [65535, 0], "still and he stared helplessly the": [65535, 0], "and he stared helplessly the buzz": [65535, 0], "he stared helplessly the buzz of": [65535, 0], "stared helplessly the buzz of study": [65535, 0], "helplessly the buzz of study ceased": [65535, 0], "the buzz of study ceased the": [65535, 0], "buzz of study ceased the pupils": [65535, 0], "of study ceased the pupils wondered": [65535, 0], "study ceased the pupils wondered if": [65535, 0], "ceased the pupils wondered if this": [65535, 0], "the pupils wondered if this foolhardy": [65535, 0], "pupils wondered if this foolhardy boy": [65535, 0], "wondered if this foolhardy boy had": [65535, 0], "if this foolhardy boy had lost": [65535, 0], "this foolhardy boy had lost his": [65535, 0], "foolhardy boy had lost his mind": [65535, 0], "boy had lost his mind the": [65535, 0], "had lost his mind the master": [65535, 0], "lost his mind the master said": [65535, 0], "his mind the master said you": [65535, 0], "mind the master said you you": [65535, 0], "the master said you you did": [65535, 0], "master said you you did what": [65535, 0], "said you you did what stopped": [65535, 0], "you you did what stopped to": [65535, 0], "you did what stopped to talk": [65535, 0], "did what stopped to talk with": [65535, 0], "what stopped to talk with huckleberry": [65535, 0], "to talk with huckleberry finn there": [65535, 0], "talk with huckleberry finn there was": [65535, 0], "with huckleberry finn there was no": [65535, 0], "huckleberry finn there was no mistaking": [65535, 0], "finn there was no mistaking the": [65535, 0], "there was no mistaking the words": [65535, 0], "was no mistaking the words thomas": [65535, 0], "no mistaking the words thomas sawyer": [65535, 0], "mistaking the words thomas sawyer this": [65535, 0], "the words thomas sawyer this is": [65535, 0], "words thomas sawyer this is the": [65535, 0], "thomas sawyer this is the most": [65535, 0], "sawyer this is the most astounding": [65535, 0], "this is the most astounding confession": [65535, 0], "is the most astounding confession i": [65535, 0], "the most astounding confession i have": [65535, 0], "most astounding confession i have ever": [65535, 0], "astounding confession i have ever listened": [65535, 0], "confession i have ever listened to": [65535, 0], "i have ever listened to no": [65535, 0], "have ever listened to no mere": [65535, 0], "ever listened to no mere ferule": [65535, 0], "listened to no mere ferule will": [65535, 0], "to no mere ferule will answer": [65535, 0], "no mere ferule will answer for": [65535, 0], "mere ferule will answer for this": [65535, 0], "ferule will answer for this offence": [65535, 0], "will answer for this offence take": [65535, 0], "answer for this offence take off": [65535, 0], "for this offence take off your": [65535, 0], "this offence take off your jacket": [65535, 0], "offence take off your jacket the": [65535, 0], "take off your jacket the master's": [65535, 0], "off your jacket the master's arm": [65535, 0], "your jacket the master's arm performed": [65535, 0], "jacket the master's arm performed until": [65535, 0], "the master's arm performed until it": [65535, 0], "master's arm performed until it was": [65535, 0], "arm performed until it was tired": [65535, 0], "performed until it was tired and": [65535, 0], "until it was tired and the": [65535, 0], "it was tired and the stock": [65535, 0], "was tired and the stock of": [65535, 0], "tired and the stock of switches": [65535, 0], "and the stock of switches notably": [65535, 0], "the stock of switches notably diminished": [65535, 0], "stock of switches notably diminished then": [65535, 0], "of switches notably diminished then the": [65535, 0], "switches notably diminished then the order": [65535, 0], "notably diminished then the order followed": [65535, 0], "diminished then the order followed now": [65535, 0], "then the order followed now sir": [65535, 0], "the order followed now sir go": [65535, 0], "order followed now sir go and": [65535, 0], "followed now sir go and sit": [65535, 0], "now sir go and sit with": [65535, 0], "sir go and sit with the": [65535, 0], "go and sit with the girls": [65535, 0], "and sit with the girls and": [65535, 0], "sit with the girls and let": [65535, 0], "with the girls and let this": [65535, 0], "the girls and let this be": [65535, 0], "girls and let this be a": [65535, 0], "and let this be a warning": [65535, 0], "let this be a warning to": [65535, 0], "this be a warning to you": [65535, 0], "be a warning to you the": [65535, 0], "a warning to you the titter": [65535, 0], "warning to you the titter that": [65535, 0], "to you the titter that rippled": [65535, 0], "you the titter that rippled around": [65535, 0], "the titter that rippled around the": [65535, 0], "titter that rippled around the room": [65535, 0], "that rippled around the room appeared": [65535, 0], "rippled around the room appeared to": [65535, 0], "around the room appeared to abash": [65535, 0], "the room appeared to abash the": [65535, 0], "room appeared to abash the boy": [65535, 0], "appeared to abash the boy but": [65535, 0], "to abash the boy but in": [65535, 0], "abash the boy but in reality": [65535, 0], "the boy but in reality that": [65535, 0], "boy but in reality that result": [65535, 0], "but in reality that result was": [65535, 0], "in reality that result was caused": [65535, 0], "reality that result was caused rather": [65535, 0], "that result was caused rather more": [65535, 0], "result was caused rather more by": [65535, 0], "was caused rather more by his": [65535, 0], "caused rather more by his worshipful": [65535, 0], "rather more by his worshipful awe": [65535, 0], "more by his worshipful awe of": [65535, 0], "by his worshipful awe of his": [65535, 0], "his worshipful awe of his unknown": [65535, 0], "worshipful awe of his unknown idol": [65535, 0], "awe of his unknown idol and": [65535, 0], "of his unknown idol and the": [65535, 0], "his unknown idol and the dread": [65535, 0], "unknown idol and the dread pleasure": [65535, 0], "idol and the dread pleasure that": [65535, 0], "and the dread pleasure that lay": [65535, 0], "the dread pleasure that lay in": [65535, 0], "dread pleasure that lay in his": [65535, 0], "pleasure that lay in his high": [65535, 0], "that lay in his high good": [65535, 0], "lay in his high good fortune": [65535, 0], "in his high good fortune he": [65535, 0], "his high good fortune he sat": [65535, 0], "high good fortune he sat down": [65535, 0], "good fortune he sat down upon": [65535, 0], "fortune he sat down upon the": [65535, 0], "he sat down upon the end": [65535, 0], "sat down upon the end of": [65535, 0], "down upon the end of the": [65535, 0], "upon the end of the pine": [65535, 0], "the end of the pine bench": [65535, 0], "end of the pine bench and": [65535, 0], "of the pine bench and the": [65535, 0], "the pine bench and the girl": [65535, 0], "pine bench and the girl hitched": [65535, 0], "bench and the girl hitched herself": [65535, 0], "and the girl hitched herself away": [65535, 0], "the girl hitched herself away from": [65535, 0], "girl hitched herself away from him": [65535, 0], "hitched herself away from him with": [65535, 0], "herself away from him with a": [65535, 0], "away from him with a toss": [65535, 0], "from him with a toss of": [65535, 0], "him with a toss of her": [65535, 0], "with a toss of her head": [65535, 0], "a toss of her head nudges": [65535, 0], "toss of her head nudges and": [65535, 0], "of her head nudges and winks": [65535, 0], "her head nudges and winks and": [65535, 0], "head nudges and winks and whispers": [65535, 0], "nudges and winks and whispers traversed": [65535, 0], "and winks and whispers traversed the": [65535, 0], "winks and whispers traversed the room": [65535, 0], "and whispers traversed the room but": [65535, 0], "whispers traversed the room but tom": [65535, 0], "traversed the room but tom sat": [65535, 0], "the room but tom sat still": [65535, 0], "room but tom sat still with": [65535, 0], "but tom sat still with his": [65535, 0], "tom sat still with his arms": [65535, 0], "sat still with his arms upon": [65535, 0], "still with his arms upon the": [65535, 0], "with his arms upon the long": [65535, 0], "his arms upon the long low": [65535, 0], "arms upon the long low desk": [65535, 0], "upon the long low desk before": [65535, 0], "the long low desk before him": [65535, 0], "long low desk before him and": [65535, 0], "low desk before him and seemed": [65535, 0], "desk before him and seemed to": [65535, 0], "before him and seemed to study": [65535, 0], "him and seemed to study his": [65535, 0], "and seemed to study his book": [65535, 0], "seemed to study his book by": [65535, 0], "to study his book by and": [65535, 0], "study his book by and by": [65535, 0], "his book by and by attention": [65535, 0], "book by and by attention ceased": [65535, 0], "by and by attention ceased from": [65535, 0], "and by attention ceased from him": [65535, 0], "by attention ceased from him and": [65535, 0], "attention ceased from him and the": [65535, 0], "ceased from him and the accustomed": [65535, 0], "from him and the accustomed school": [65535, 0], "him and the accustomed school murmur": [65535, 0], "and the accustomed school murmur rose": [65535, 0], "the accustomed school murmur rose upon": [65535, 0], "accustomed school murmur rose upon the": [65535, 0], "school murmur rose upon the dull": [65535, 0], "murmur rose upon the dull air": [65535, 0], "rose upon the dull air once": [65535, 0], "upon the dull air once more": [65535, 0], "the dull air once more presently": [65535, 0], "dull air once more presently the": [65535, 0], "air once more presently the boy": [65535, 0], "once more presently the boy began": [65535, 0], "more presently the boy began to": [65535, 0], "presently the boy began to steal": [65535, 0], "the boy began to steal furtive": [65535, 0], "boy began to steal furtive glances": [65535, 0], "began to steal furtive glances at": [65535, 0], "to steal furtive glances at the": [65535, 0], "steal furtive glances at the girl": [65535, 0], "furtive glances at the girl she": [65535, 0], "glances at the girl she observed": [65535, 0], "at the girl she observed it": [65535, 0], "the girl she observed it made": [65535, 0], "girl she observed it made a": [65535, 0], "she observed it made a mouth": [65535, 0], "observed it made a mouth at": [65535, 0], "it made a mouth at him": [65535, 0], "made a mouth at him and": [65535, 0], "a mouth at him and gave": [65535, 0], "mouth at him and gave him": [65535, 0], "at him and gave him the": [65535, 0], "him and gave him the back": [65535, 0], "and gave him the back of": [65535, 0], "gave him the back of her": [65535, 0], "him the back of her head": [65535, 0], "the back of her head for": [65535, 0], "back of her head for the": [65535, 0], "of her head for the space": [65535, 0], "her head for the space of": [65535, 0], "head for the space of a": [65535, 0], "for the space of a minute": [65535, 0], "the space of a minute when": [65535, 0], "space of a minute when she": [65535, 0], "of a minute when she cautiously": [65535, 0], "a minute when she cautiously faced": [65535, 0], "minute when she cautiously faced around": [65535, 0], "when she cautiously faced around again": [65535, 0], "she cautiously faced around again a": [65535, 0], "cautiously faced around again a peach": [65535, 0], "faced around again a peach lay": [65535, 0], "around again a peach lay before": [65535, 0], "again a peach lay before her": [65535, 0], "a peach lay before her she": [65535, 0], "peach lay before her she thrust": [65535, 0], "lay before her she thrust it": [65535, 0], "before her she thrust it away": [65535, 0], "her she thrust it away tom": [65535, 0], "she thrust it away tom gently": [65535, 0], "thrust it away tom gently put": [65535, 0], "it away tom gently put it": [65535, 0], "away tom gently put it back": [65535, 0], "tom gently put it back she": [65535, 0], "gently put it back she thrust": [65535, 0], "put it back she thrust it": [65535, 0], "it back she thrust it away": [65535, 0], "back she thrust it away again": [65535, 0], "she thrust it away again but": [65535, 0], "thrust it away again but with": [65535, 0], "it away again but with less": [65535, 0], "away again but with less animosity": [65535, 0], "again but with less animosity tom": [65535, 0], "but with less animosity tom patiently": [65535, 0], "with less animosity tom patiently returned": [65535, 0], "less animosity tom patiently returned it": [65535, 0], "animosity tom patiently returned it to": [65535, 0], "tom patiently returned it to its": [65535, 0], "patiently returned it to its place": [65535, 0], "returned it to its place then": [65535, 0], "it to its place then she": [65535, 0], "to its place then she let": [65535, 0], "its place then she let it": [65535, 0], "place then she let it remain": [65535, 0], "then she let it remain tom": [65535, 0], "she let it remain tom scrawled": [65535, 0], "let it remain tom scrawled on": [65535, 0], "it remain tom scrawled on his": [65535, 0], "remain tom scrawled on his slate": [65535, 0], "tom scrawled on his slate please": [65535, 0], "scrawled on his slate please take": [65535, 0], "on his slate please take it": [65535, 0], "his slate please take it i": [65535, 0], "slate please take it i got": [65535, 0], "please take it i got more": [65535, 0], "take it i got more the": [65535, 0], "it i got more the girl": [65535, 0], "i got more the girl glanced": [65535, 0], "got more the girl glanced at": [65535, 0], "more the girl glanced at the": [65535, 0], "the girl glanced at the words": [65535, 0], "girl glanced at the words but": [65535, 0], "glanced at the words but made": [65535, 0], "at the words but made no": [65535, 0], "the words but made no sign": [65535, 0], "words but made no sign now": [65535, 0], "but made no sign now the": [65535, 0], "made no sign now the boy": [65535, 0], "no sign now the boy began": [65535, 0], "sign now the boy began to": [65535, 0], "now the boy began to draw": [65535, 0], "the boy began to draw something": [65535, 0], "boy began to draw something on": [65535, 0], "began to draw something on the": [65535, 0], "to draw something on the slate": [65535, 0], "draw something on the slate hiding": [65535, 0], "something on the slate hiding his": [65535, 0], "on the slate hiding his work": [65535, 0], "the slate hiding his work with": [65535, 0], "slate hiding his work with his": [65535, 0], "hiding his work with his left": [65535, 0], "his work with his left hand": [65535, 0], "work with his left hand for": [65535, 0], "with his left hand for a": [65535, 0], "his left hand for a time": [65535, 0], "left hand for a time the": [65535, 0], "hand for a time the girl": [65535, 0], "for a time the girl refused": [65535, 0], "a time the girl refused to": [65535, 0], "time the girl refused to notice": [65535, 0], "the girl refused to notice but": [65535, 0], "girl refused to notice but her": [65535, 0], "refused to notice but her human": [65535, 0], "to notice but her human curiosity": [65535, 0], "notice but her human curiosity presently": [65535, 0], "but her human curiosity presently began": [65535, 0], "her human curiosity presently began to": [65535, 0], "human curiosity presently began to manifest": [65535, 0], "curiosity presently began to manifest itself": [65535, 0], "presently began to manifest itself by": [65535, 0], "began to manifest itself by hardly": [65535, 0], "to manifest itself by hardly perceptible": [65535, 0], "manifest itself by hardly perceptible signs": [65535, 0], "itself by hardly perceptible signs the": [65535, 0], "by hardly perceptible signs the boy": [65535, 0], "hardly perceptible signs the boy worked": [65535, 0], "perceptible signs the boy worked on": [65535, 0], "signs the boy worked on apparently": [65535, 0], "the boy worked on apparently unconscious": [65535, 0], "boy worked on apparently unconscious the": [65535, 0], "worked on apparently unconscious the girl": [65535, 0], "on apparently unconscious the girl made": [65535, 0], "apparently unconscious the girl made a": [65535, 0], "unconscious the girl made a sort": [65535, 0], "the girl made a sort of": [65535, 0], "girl made a sort of noncommittal": [65535, 0], "made a sort of noncommittal attempt": [65535, 0], "a sort of noncommittal attempt to": [65535, 0], "sort of noncommittal attempt to see": [65535, 0], "of noncommittal attempt to see but": [65535, 0], "noncommittal attempt to see but the": [65535, 0], "attempt to see but the boy": [65535, 0], "to see but the boy did": [65535, 0], "see but the boy did not": [65535, 0], "but the boy did not betray": [65535, 0], "the boy did not betray that": [65535, 0], "boy did not betray that he": [65535, 0], "did not betray that he was": [65535, 0], "not betray that he was aware": [65535, 0], "betray that he was aware of": [65535, 0], "that he was aware of it": [65535, 0], "he was aware of it at": [65535, 0], "was aware of it at last": [65535, 0], "aware of it at last she": [65535, 0], "of it at last she gave": [65535, 0], "it at last she gave in": [65535, 0], "at last she gave in and": [65535, 0], "last she gave in and hesitatingly": [65535, 0], "she gave in and hesitatingly whispered": [65535, 0], "gave in and hesitatingly whispered let": [65535, 0], "in and hesitatingly whispered let me": [65535, 0], "and hesitatingly whispered let me see": [65535, 0], "hesitatingly whispered let me see it": [65535, 0], "whispered let me see it tom": [65535, 0], "let me see it tom partly": [65535, 0], "me see it tom partly uncovered": [65535, 0], "see it tom partly uncovered a": [65535, 0], "it tom partly uncovered a dismal": [65535, 0], "tom partly uncovered a dismal caricature": [65535, 0], "partly uncovered a dismal caricature of": [65535, 0], "uncovered a dismal caricature of a": [65535, 0], "a dismal caricature of a house": [65535, 0], "dismal caricature of a house with": [65535, 0], "caricature of a house with two": [65535, 0], "of a house with two gable": [65535, 0], "a house with two gable ends": [65535, 0], "house with two gable ends to": [65535, 0], "with two gable ends to it": [65535, 0], "two gable ends to it and": [65535, 0], "gable ends to it and a": [65535, 0], "ends to it and a corkscrew": [65535, 0], "to it and a corkscrew of": [65535, 0], "it and a corkscrew of smoke": [65535, 0], "and a corkscrew of smoke issuing": [65535, 0], "a corkscrew of smoke issuing from": [65535, 0], "corkscrew of smoke issuing from the": [65535, 0], "of smoke issuing from the chimney": [65535, 0], "smoke issuing from the chimney then": [65535, 0], "issuing from the chimney then the": [65535, 0], "from the chimney then the girl's": [65535, 0], "the chimney then the girl's interest": [65535, 0], "chimney then the girl's interest began": [65535, 0], "then the girl's interest began to": [65535, 0], "the girl's interest began to fasten": [65535, 0], "girl's interest began to fasten itself": [65535, 0], "interest began to fasten itself upon": [65535, 0], "began to fasten itself upon the": [65535, 0], "to fasten itself upon the work": [65535, 0], "fasten itself upon the work and": [65535, 0], "itself upon the work and she": [65535, 0], "upon the work and she forgot": [65535, 0], "the work and she forgot everything": [65535, 0], "work and she forgot everything else": [65535, 0], "and she forgot everything else when": [65535, 0], "she forgot everything else when it": [65535, 0], "forgot everything else when it was": [65535, 0], "everything else when it was finished": [65535, 0], "else when it was finished she": [65535, 0], "when it was finished she gazed": [65535, 0], "it was finished she gazed a": [65535, 0], "was finished she gazed a moment": [65535, 0], "finished she gazed a moment then": [65535, 0], "she gazed a moment then whispered": [65535, 0], "gazed a moment then whispered it's": [65535, 0], "a moment then whispered it's nice": [65535, 0], "moment then whispered it's nice make": [65535, 0], "then whispered it's nice make a": [65535, 0], "whispered it's nice make a man": [65535, 0], "it's nice make a man the": [65535, 0], "nice make a man the artist": [65535, 0], "make a man the artist erected": [65535, 0], "a man the artist erected a": [65535, 0], "man the artist erected a man": [65535, 0], "the artist erected a man in": [65535, 0], "artist erected a man in the": [65535, 0], "erected a man in the front": [65535, 0], "a man in the front yard": [65535, 0], "man in the front yard that": [65535, 0], "in the front yard that resembled": [65535, 0], "the front yard that resembled a": [65535, 0], "front yard that resembled a derrick": [65535, 0], "yard that resembled a derrick he": [65535, 0], "that resembled a derrick he could": [65535, 0], "resembled a derrick he could have": [65535, 0], "a derrick he could have stepped": [65535, 0], "derrick he could have stepped over": [65535, 0], "he could have stepped over the": [65535, 0], "could have stepped over the house": [65535, 0], "have stepped over the house but": [65535, 0], "stepped over the house but the": [65535, 0], "over the house but the girl": [65535, 0], "the house but the girl was": [65535, 0], "house but the girl was not": [65535, 0], "but the girl was not hypercritical": [65535, 0], "the girl was not hypercritical she": [65535, 0], "girl was not hypercritical she was": [65535, 0], "was not hypercritical she was satisfied": [65535, 0], "not hypercritical she was satisfied with": [65535, 0], "hypercritical she was satisfied with the": [65535, 0], "she was satisfied with the monster": [65535, 0], "was satisfied with the monster and": [65535, 0], "satisfied with the monster and whispered": [65535, 0], "with the monster and whispered it's": [65535, 0], "the monster and whispered it's a": [65535, 0], "monster and whispered it's a beautiful": [65535, 0], "and whispered it's a beautiful man": [65535, 0], "whispered it's a beautiful man now": [65535, 0], "it's a beautiful man now make": [65535, 0], "a beautiful man now make me": [65535, 0], "beautiful man now make me coming": [65535, 0], "man now make me coming along": [65535, 0], "now make me coming along tom": [65535, 0], "make me coming along tom drew": [65535, 0], "me coming along tom drew an": [65535, 0], "coming along tom drew an hour": [65535, 0], "along tom drew an hour glass": [65535, 0], "tom drew an hour glass with": [65535, 0], "drew an hour glass with a": [65535, 0], "an hour glass with a full": [65535, 0], "hour glass with a full moon": [65535, 0], "glass with a full moon and": [65535, 0], "with a full moon and straw": [65535, 0], "a full moon and straw limbs": [65535, 0], "full moon and straw limbs to": [65535, 0], "moon and straw limbs to it": [65535, 0], "and straw limbs to it and": [65535, 0], "straw limbs to it and armed": [65535, 0], "limbs to it and armed the": [65535, 0], "to it and armed the spreading": [65535, 0], "it and armed the spreading fingers": [65535, 0], "and armed the spreading fingers with": [65535, 0], "armed the spreading fingers with a": [65535, 0], "the spreading fingers with a portentous": [65535, 0], "spreading fingers with a portentous fan": [65535, 0], "fingers with a portentous fan the": [65535, 0], "with a portentous fan the girl": [65535, 0], "a portentous fan the girl said": [65535, 0], "portentous fan the girl said it's": [65535, 0], "fan the girl said it's ever": [65535, 0], "the girl said it's ever so": [65535, 0], "girl said it's ever so nice": [65535, 0], "said it's ever so nice i": [65535, 0], "it's ever so nice i wish": [65535, 0], "ever so nice i wish i": [65535, 0], "so nice i wish i could": [65535, 0], "nice i wish i could draw": [65535, 0], "i wish i could draw it's": [65535, 0], "wish i could draw it's easy": [65535, 0], "i could draw it's easy whispered": [65535, 0], "could draw it's easy whispered tom": [65535, 0], "draw it's easy whispered tom i'll": [65535, 0], "it's easy whispered tom i'll learn": [65535, 0], "easy whispered tom i'll learn you": [65535, 0], "whispered tom i'll learn you oh": [65535, 0], "tom i'll learn you oh will": [65535, 0], "i'll learn you oh will you": [65535, 0], "learn you oh will you when": [65535, 0], "you oh will you when at": [65535, 0], "oh will you when at noon": [65535, 0], "will you when at noon do": [65535, 0], "you when at noon do you": [65535, 0], "when at noon do you go": [65535, 0], "at noon do you go home": [65535, 0], "noon do you go home to": [65535, 0], "do you go home to dinner": [65535, 0], "you go home to dinner i'll": [65535, 0], "go home to dinner i'll stay": [65535, 0], "home to dinner i'll stay if": [65535, 0], "to dinner i'll stay if you": [65535, 0], "dinner i'll stay if you will": [65535, 0], "i'll stay if you will good": [65535, 0], "stay if you will good that's": [65535, 0], "if you will good that's a": [65535, 0], "you will good that's a whack": [65535, 0], "will good that's a whack what's": [65535, 0], "good that's a whack what's your": [65535, 0], "that's a whack what's your name": [65535, 0], "a whack what's your name becky": [65535, 0], "whack what's your name becky thatcher": [65535, 0], "what's your name becky thatcher what's": [65535, 0], "your name becky thatcher what's yours": [65535, 0], "name becky thatcher what's yours oh": [65535, 0], "becky thatcher what's yours oh i": [65535, 0], "thatcher what's yours oh i know": [65535, 0], "what's yours oh i know it's": [65535, 0], "yours oh i know it's thomas": [65535, 0], "oh i know it's thomas sawyer": [65535, 0], "i know it's thomas sawyer that's": [65535, 0], "know it's thomas sawyer that's the": [65535, 0], "it's thomas sawyer that's the name": [65535, 0], "thomas sawyer that's the name they": [65535, 0], "sawyer that's the name they lick": [65535, 0], "that's the name they lick me": [65535, 0], "the name they lick me by": [65535, 0], "name they lick me by i'm": [65535, 0], "they lick me by i'm tom": [65535, 0], "lick me by i'm tom when": [65535, 0], "me by i'm tom when i'm": [65535, 0], "by i'm tom when i'm good": [65535, 0], "i'm tom when i'm good you": [65535, 0], "tom when i'm good you call": [65535, 0], "when i'm good you call me": [65535, 0], "i'm good you call me tom": [65535, 0], "good you call me tom will": [65535, 0], "you call me tom will you": [65535, 0], "call me tom will you yes": [65535, 0], "me tom will you yes now": [65535, 0], "tom will you yes now tom": [65535, 0], "will you yes now tom began": [65535, 0], "you yes now tom began to": [65535, 0], "yes now tom began to scrawl": [65535, 0], "now tom began to scrawl something": [65535, 0], "tom began to scrawl something on": [65535, 0], "began to scrawl something on the": [65535, 0], "to scrawl something on the slate": [65535, 0], "scrawl something on the slate hiding": [65535, 0], "something on the slate hiding the": [65535, 0], "on the slate hiding the words": [65535, 0], "the slate hiding the words from": [65535, 0], "slate hiding the words from the": [65535, 0], "hiding the words from the girl": [65535, 0], "the words from the girl but": [65535, 0], "words from the girl but she": [65535, 0], "from the girl but she was": [65535, 0], "the girl but she was not": [65535, 0], "girl but she was not backward": [65535, 0], "but she was not backward this": [65535, 0], "she was not backward this time": [65535, 0], "was not backward this time she": [65535, 0], "not backward this time she begged": [65535, 0], "backward this time she begged to": [65535, 0], "this time she begged to see": [65535, 0], "time she begged to see tom": [65535, 0], "she begged to see tom said": [65535, 0], "begged to see tom said oh": [65535, 0], "to see tom said oh it": [65535, 0], "see tom said oh it ain't": [65535, 0], "tom said oh it ain't anything": [65535, 0], "said oh it ain't anything yes": [65535, 0], "oh it ain't anything yes it": [65535, 0], "it ain't anything yes it is": [65535, 0], "ain't anything yes it is no": [65535, 0], "anything yes it is no it": [65535, 0], "yes it is no it ain't": [65535, 0], "it is no it ain't you": [65535, 0], "is no it ain't you don't": [65535, 0], "no it ain't you don't want": [65535, 0], "it ain't you don't want to": [65535, 0], "ain't you don't want to see": [65535, 0], "you don't want to see yes": [65535, 0], "don't want to see yes i": [65535, 0], "want to see yes i do": [65535, 0], "to see yes i do indeed": [65535, 0], "see yes i do indeed i": [65535, 0], "yes i do indeed i do": [65535, 0], "i do indeed i do please": [65535, 0], "do indeed i do please let": [65535, 0], "indeed i do please let me": [65535, 0], "i do please let me you'll": [65535, 0], "do please let me you'll tell": [65535, 0], "please let me you'll tell no": [65535, 0], "let me you'll tell no i": [65535, 0], "me you'll tell no i won't": [65535, 0], "you'll tell no i won't deed": [65535, 0], "tell no i won't deed and": [65535, 0], "no i won't deed and deed": [65535, 0], "i won't deed and deed and": [65535, 0], "won't deed and deed and double": [65535, 0], "deed and deed and double deed": [65535, 0], "and deed and double deed won't": [65535, 0], "deed and double deed won't you": [65535, 0], "and double deed won't you won't": [65535, 0], "double deed won't you won't tell": [65535, 0], "deed won't you won't tell anybody": [65535, 0], "won't you won't tell anybody at": [65535, 0], "you won't tell anybody at all": [65535, 0], "won't tell anybody at all ever": [65535, 0], "tell anybody at all ever as": [65535, 0], "anybody at all ever as long": [65535, 0], "at all ever as long as": [65535, 0], "all ever as long as you": [65535, 0], "ever as long as you live": [65535, 0], "as long as you live no": [65535, 0], "long as you live no i": [65535, 0], "as you live no i won't": [65535, 0], "you live no i won't ever": [65535, 0], "live no i won't ever tell": [65535, 0], "no i won't ever tell anybody": [65535, 0], "i won't ever tell anybody now": [65535, 0], "won't ever tell anybody now let": [65535, 0], "ever tell anybody now let me": [65535, 0], "tell anybody now let me oh": [65535, 0], "anybody now let me oh you": [65535, 0], "now let me oh you don't": [65535, 0], "let me oh you don't want": [65535, 0], "me oh you don't want to": [65535, 0], "oh you don't want to see": [65535, 0], "you don't want to see now": [65535, 0], "don't want to see now that": [65535, 0], "want to see now that you": [65535, 0], "to see now that you treat": [65535, 0], "see now that you treat me": [65535, 0], "now that you treat me so": [65535, 0], "that you treat me so i": [65535, 0], "you treat me so i will": [65535, 0], "treat me so i will see": [65535, 0], "me so i will see and": [65535, 0], "so i will see and she": [65535, 0], "i will see and she put": [65535, 0], "will see and she put her": [65535, 0], "see and she put her small": [65535, 0], "and she put her small hand": [65535, 0], "she put her small hand upon": [65535, 0], "put her small hand upon his": [65535, 0], "her small hand upon his and": [65535, 0], "small hand upon his and a": [65535, 0], "hand upon his and a little": [65535, 0], "upon his and a little scuffle": [65535, 0], "his and a little scuffle ensued": [65535, 0], "and a little scuffle ensued tom": [65535, 0], "a little scuffle ensued tom pretending": [65535, 0], "little scuffle ensued tom pretending to": [65535, 0], "scuffle ensued tom pretending to resist": [65535, 0], "ensued tom pretending to resist in": [65535, 0], "tom pretending to resist in earnest": [65535, 0], "pretending to resist in earnest but": [65535, 0], "to resist in earnest but letting": [65535, 0], "resist in earnest but letting his": [65535, 0], "in earnest but letting his hand": [65535, 0], "earnest but letting his hand slip": [65535, 0], "but letting his hand slip by": [65535, 0], "letting his hand slip by degrees": [65535, 0], "his hand slip by degrees till": [65535, 0], "hand slip by degrees till these": [65535, 0], "slip by degrees till these words": [65535, 0], "by degrees till these words were": [65535, 0], "degrees till these words were revealed": [65535, 0], "till these words were revealed i": [65535, 0], "these words were revealed i love": [65535, 0], "words were revealed i love you": [65535, 0], "were revealed i love you oh": [65535, 0], "revealed i love you oh you": [65535, 0], "i love you oh you bad": [65535, 0], "love you oh you bad thing": [65535, 0], "you oh you bad thing and": [65535, 0], "oh you bad thing and she": [65535, 0], "you bad thing and she hit": [65535, 0], "bad thing and she hit his": [65535, 0], "thing and she hit his hand": [65535, 0], "and she hit his hand a": [65535, 0], "she hit his hand a smart": [65535, 0], "hit his hand a smart rap": [65535, 0], "his hand a smart rap but": [65535, 0], "hand a smart rap but reddened": [65535, 0], "a smart rap but reddened and": [65535, 0], "smart rap but reddened and looked": [65535, 0], "rap but reddened and looked pleased": [65535, 0], "but reddened and looked pleased nevertheless": [65535, 0], "reddened and looked pleased nevertheless just": [65535, 0], "and looked pleased nevertheless just at": [65535, 0], "looked pleased nevertheless just at this": [65535, 0], "pleased nevertheless just at this juncture": [65535, 0], "nevertheless just at this juncture the": [65535, 0], "just at this juncture the boy": [65535, 0], "at this juncture the boy felt": [65535, 0], "this juncture the boy felt a": [65535, 0], "juncture the boy felt a slow": [65535, 0], "the boy felt a slow fateful": [65535, 0], "boy felt a slow fateful grip": [65535, 0], "felt a slow fateful grip closing": [65535, 0], "a slow fateful grip closing on": [65535, 0], "slow fateful grip closing on his": [65535, 0], "fateful grip closing on his ear": [65535, 0], "grip closing on his ear and": [65535, 0], "closing on his ear and a": [65535, 0], "on his ear and a steady": [65535, 0], "his ear and a steady lifting": [65535, 0], "ear and a steady lifting impulse": [65535, 0], "and a steady lifting impulse in": [65535, 0], "a steady lifting impulse in that": [65535, 0], "steady lifting impulse in that vise": [65535, 0], "lifting impulse in that vise he": [65535, 0], "impulse in that vise he was": [65535, 0], "in that vise he was borne": [65535, 0], "that vise he was borne across": [65535, 0], "vise he was borne across the": [65535, 0], "he was borne across the house": [65535, 0], "was borne across the house and": [65535, 0], "borne across the house and deposited": [65535, 0], "across the house and deposited in": [65535, 0], "the house and deposited in his": [65535, 0], "house and deposited in his own": [65535, 0], "and deposited in his own seat": [65535, 0], "deposited in his own seat under": [65535, 0], "in his own seat under a": [65535, 0], "his own seat under a peppering": [65535, 0], "own seat under a peppering fire": [65535, 0], "seat under a peppering fire of": [65535, 0], "under a peppering fire of giggles": [65535, 0], "a peppering fire of giggles from": [65535, 0], "peppering fire of giggles from the": [65535, 0], "fire of giggles from the whole": [65535, 0], "of giggles from the whole school": [65535, 0], "giggles from the whole school then": [65535, 0], "from the whole school then the": [65535, 0], "the whole school then the master": [65535, 0], "whole school then the master stood": [65535, 0], "school then the master stood over": [65535, 0], "then the master stood over him": [65535, 0], "the master stood over him during": [65535, 0], "master stood over him during a": [65535, 0], "stood over him during a few": [65535, 0], "over him during a few awful": [65535, 0], "him during a few awful moments": [65535, 0], "during a few awful moments and": [65535, 0], "a few awful moments and finally": [65535, 0], "few awful moments and finally moved": [65535, 0], "awful moments and finally moved away": [65535, 0], "moments and finally moved away to": [65535, 0], "and finally moved away to his": [65535, 0], "finally moved away to his throne": [65535, 0], "moved away to his throne without": [65535, 0], "away to his throne without saying": [65535, 0], "to his throne without saying a": [65535, 0], "his throne without saying a word": [65535, 0], "throne without saying a word but": [65535, 0], "without saying a word but although": [65535, 0], "saying a word but although tom's": [65535, 0], "a word but although tom's ear": [65535, 0], "word but although tom's ear tingled": [65535, 0], "but although tom's ear tingled his": [65535, 0], "although tom's ear tingled his heart": [65535, 0], "tom's ear tingled his heart was": [65535, 0], "ear tingled his heart was jubilant": [65535, 0], "tingled his heart was jubilant as": [65535, 0], "his heart was jubilant as the": [65535, 0], "heart was jubilant as the school": [65535, 0], "was jubilant as the school quieted": [65535, 0], "jubilant as the school quieted down": [65535, 0], "as the school quieted down tom": [65535, 0], "the school quieted down tom made": [65535, 0], "school quieted down tom made an": [65535, 0], "quieted down tom made an honest": [65535, 0], "down tom made an honest effort": [65535, 0], "tom made an honest effort to": [65535, 0], "made an honest effort to study": [65535, 0], "an honest effort to study but": [65535, 0], "honest effort to study but the": [65535, 0], "effort to study but the turmoil": [65535, 0], "to study but the turmoil within": [65535, 0], "study but the turmoil within him": [65535, 0], "but the turmoil within him was": [65535, 0], "the turmoil within him was too": [65535, 0], "turmoil within him was too great": [65535, 0], "within him was too great in": [65535, 0], "him was too great in turn": [65535, 0], "was too great in turn he": [65535, 0], "too great in turn he took": [65535, 0], "great in turn he took his": [65535, 0], "in turn he took his place": [65535, 0], "turn he took his place in": [65535, 0], "he took his place in the": [65535, 0], "took his place in the reading": [65535, 0], "his place in the reading class": [65535, 0], "place in the reading class and": [65535, 0], "in the reading class and made": [65535, 0], "the reading class and made a": [65535, 0], "reading class and made a botch": [65535, 0], "class and made a botch of": [65535, 0], "and made a botch of it": [65535, 0], "made a botch of it then": [65535, 0], "a botch of it then in": [65535, 0], "botch of it then in the": [65535, 0], "of it then in the geography": [65535, 0], "it then in the geography class": [65535, 0], "then in the geography class and": [65535, 0], "in the geography class and turned": [65535, 0], "the geography class and turned lakes": [65535, 0], "geography class and turned lakes into": [65535, 0], "class and turned lakes into mountains": [65535, 0], "and turned lakes into mountains mountains": [65535, 0], "turned lakes into mountains mountains into": [65535, 0], "lakes into mountains mountains into rivers": [65535, 0], "into mountains mountains into rivers and": [65535, 0], "mountains mountains into rivers and rivers": [65535, 0], "mountains into rivers and rivers into": [65535, 0], "into rivers and rivers into continents": [65535, 0], "rivers and rivers into continents till": [65535, 0], "and rivers into continents till chaos": [65535, 0], "rivers into continents till chaos was": [65535, 0], "into continents till chaos was come": [65535, 0], "continents till chaos was come again": [65535, 0], "till chaos was come again then": [65535, 0], "chaos was come again then in": [65535, 0], "was come again then in the": [65535, 0], "come again then in the spelling": [65535, 0], "again then in the spelling class": [65535, 0], "then in the spelling class and": [65535, 0], "in the spelling class and got": [65535, 0], "the spelling class and got turned": [65535, 0], "spelling class and got turned down": [65535, 0], "class and got turned down by": [65535, 0], "and got turned down by a": [65535, 0], "got turned down by a succession": [65535, 0], "turned down by a succession of": [65535, 0], "down by a succession of mere": [65535, 0], "by a succession of mere baby": [65535, 0], "a succession of mere baby words": [65535, 0], "succession of mere baby words till": [65535, 0], "of mere baby words till he": [65535, 0], "mere baby words till he brought": [65535, 0], "baby words till he brought up": [65535, 0], "words till he brought up at": [65535, 0], "till he brought up at the": [65535, 0], "he brought up at the foot": [65535, 0], "brought up at the foot and": [65535, 0], "up at the foot and yielded": [65535, 0], "at the foot and yielded up": [65535, 0], "the foot and yielded up the": [65535, 0], "foot and yielded up the pewter": [65535, 0], "and yielded up the pewter medal": [65535, 0], "yielded up the pewter medal which": [65535, 0], "up the pewter medal which he": [65535, 0], "the pewter medal which he had": [65535, 0], "pewter medal which he had worn": [65535, 0], "medal which he had worn with": [65535, 0], "which he had worn with ostentation": [65535, 0], "he had worn with ostentation for": [65535, 0], "had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday": [65535, 0], "morning found tom sawyer miserable monday morning": [65535, 0], "found tom sawyer miserable monday morning always": [65535, 0], "tom sawyer miserable monday morning always found": [65535, 0], "sawyer miserable monday morning always found him": [65535, 0], "miserable monday morning always found him so": [65535, 0], "monday morning always found him so because": [65535, 0], "morning always found him so because it": [65535, 0], "always found him so because it began": [65535, 0], "found him so because it began another": [65535, 0], "him so because it began another week's": [65535, 0], "so because it began another week's slow": [65535, 0], "because it began another week's slow suffering": [65535, 0], "it began another week's slow suffering in": [65535, 0], "began another week's slow suffering in school": [65535, 0], "another week's slow suffering in school he": [65535, 0], "week's slow suffering in school he generally": [65535, 0], "slow suffering in school he generally began": [65535, 0], "suffering in school he generally began that": [65535, 0], "in school he generally began that day": [65535, 0], "school he generally began that day with": [65535, 0], "he generally began that day with wishing": [65535, 0], "generally began that day with wishing he": [65535, 0], "began that day with wishing he had": [65535, 0], "that day with wishing he had had": [65535, 0], "day with wishing he had had no": [65535, 0], "with wishing he had had no intervening": [65535, 0], "wishing he had had no intervening holiday": [65535, 0], "he had had no intervening holiday it": [65535, 0], "had had no intervening holiday it made": [65535, 0], "had no intervening holiday it made the": [65535, 0], "no intervening holiday it made the going": [65535, 0], "intervening holiday it made the going into": [65535, 0], "holiday it made the going into captivity": [65535, 0], "it made the going into captivity and": [65535, 0], "made the going into captivity and fetters": [65535, 0], "the going into captivity and fetters again": [65535, 0], "going into captivity and fetters again so": [65535, 0], "into captivity and fetters again so much": [65535, 0], "captivity and fetters again so much more": [65535, 0], "and fetters again so much more odious": [65535, 0], "fetters again so much more odious tom": [65535, 0], "again so much more odious tom lay": [65535, 0], "so much more odious tom lay thinking": [65535, 0], "much more odious tom lay thinking presently": [65535, 0], "more odious tom lay thinking presently it": [65535, 0], "odious tom lay thinking presently it occurred": [65535, 0], "tom lay thinking presently it occurred to": [65535, 0], "lay thinking presently it occurred to him": [65535, 0], "thinking presently it occurred to him that": [65535, 0], "presently it occurred to him that he": [65535, 0], "it occurred to him that he wished": [65535, 0], "occurred to him that he wished he": [65535, 0], "to him that he wished he was": [65535, 0], "him that he wished he was sick": [65535, 0], "that he wished he was sick then": [65535, 0], "he wished he was sick then he": [65535, 0], "wished he was sick then he could": [65535, 0], "he was sick then he could stay": [65535, 0], "was sick then he could stay home": [65535, 0], "sick then he could stay home from": [65535, 0], "then he could stay home from school": [65535, 0], "he could stay home from school here": [65535, 0], "could stay home from school here was": [65535, 0], "stay home from school here was a": [65535, 0], "home from school here was a vague": [65535, 0], "from school here was a vague possibility": [65535, 0], "school here was a vague possibility he": [65535, 0], "here was a vague possibility he canvassed": [65535, 0], "was a vague possibility he canvassed his": [65535, 0], "a vague possibility he canvassed his system": [65535, 0], "vague possibility he canvassed his system no": [65535, 0], "possibility he canvassed his system no ailment": [65535, 0], "he canvassed his system no ailment was": [65535, 0], "canvassed his system no ailment was found": [65535, 0], "his system no ailment was found and": [65535, 0], "system no ailment was found and he": [65535, 0], "no ailment was found and he investigated": [65535, 0], "ailment was found and he investigated again": [65535, 0], "was found and he investigated again this": [65535, 0], "found and he investigated again this time": [65535, 0], "and he investigated again this time he": [65535, 0], "he investigated again this time he thought": [65535, 0], "investigated again this time he thought he": [65535, 0], "again this time he thought he could": [65535, 0], "this time he thought he could detect": [65535, 0], "time he thought he could detect colicky": [65535, 0], "he thought he could detect colicky symptoms": [65535, 0], "thought he could detect colicky symptoms and": [65535, 0], "he could detect colicky symptoms and he": [65535, 0], "could detect colicky symptoms and he began": [65535, 0], "detect colicky symptoms and he began to": [65535, 0], "colicky symptoms and he began to encourage": [65535, 0], "symptoms and he began to encourage them": [65535, 0], "and he began to encourage them with": [65535, 0], "he began to encourage them with considerable": [65535, 0], "began to encourage them with considerable hope": [65535, 0], "to encourage them with considerable hope but": [65535, 0], "encourage them with considerable hope but they": [65535, 0], "them with considerable hope but they soon": [65535, 0], "with considerable hope but they soon grew": [65535, 0], "considerable hope but they soon grew feeble": [65535, 0], "hope but they soon grew feeble and": [65535, 0], "but they soon grew feeble and presently": [65535, 0], "they soon grew feeble and presently died": [65535, 0], "soon grew feeble and presently died wholly": [65535, 0], "grew feeble and presently died wholly away": [65535, 0], "feeble and presently died wholly away he": [65535, 0], "and presently died wholly away he reflected": [65535, 0], "presently died wholly away he reflected further": [65535, 0], "died wholly away he reflected further suddenly": [65535, 0], "wholly away he reflected further suddenly he": [65535, 0], "away he reflected further suddenly he discovered": [65535, 0], "he reflected further suddenly he discovered something": [65535, 0], "reflected further suddenly he discovered something one": [65535, 0], "further suddenly he discovered something one of": [65535, 0], "suddenly he discovered something one of his": [65535, 0], "he discovered something one of his upper": [65535, 0], "discovered something one of his upper front": [65535, 0], "something one of his upper front teeth": [65535, 0], "one of his upper front teeth was": [65535, 0], "of his upper front teeth was loose": [65535, 0], "his upper front teeth was loose this": [65535, 0], "upper front teeth was loose this was": [65535, 0], "front teeth was loose this was lucky": [65535, 0], "teeth was loose this was lucky he": [65535, 0], "was loose this was lucky he was": [65535, 0], "loose this was lucky he was about": [65535, 0], "this was lucky he was about to": [65535, 0], "was lucky he was about to begin": [65535, 0], "lucky he was about to begin to": [65535, 0], "he was about to begin to groan": [65535, 0], "was about to begin to groan as": [65535, 0], "about to begin to groan as a": [65535, 0], "to begin to groan as a starter": [65535, 0], "begin to groan as a starter as": [65535, 0], "to groan as a starter as he": [65535, 0], "groan as a starter as he called": [65535, 0], "as a starter as he called it": [65535, 0], "a starter as he called it when": [65535, 0], "starter as he called it when it": [65535, 0], "as he called it when it occurred": [65535, 0], "he called it when it occurred to": [65535, 0], "called it when it occurred to him": [65535, 0], "it when it occurred to him that": [65535, 0], "when it occurred to him that if": [65535, 0], "it occurred to him that if he": [65535, 0], "occurred to him that if he came": [65535, 0], "to him that if he came into": [65535, 0], "him that if he came into court": [65535, 0], "that if he came into court with": [65535, 0], "if he came into court with that": [65535, 0], "he came into court with that argument": [65535, 0], "came into court with that argument his": [65535, 0], "into court with that argument his aunt": [65535, 0], "court with that argument his aunt would": [65535, 0], "with that argument his aunt would pull": [65535, 0], "that argument his aunt would pull it": [65535, 0], "argument his aunt would pull it out": [65535, 0], "his aunt would pull it out and": [65535, 0], "aunt would pull it out and that": [65535, 0], "would pull it out and that would": [65535, 0], "pull it out and that would hurt": [65535, 0], "it out and that would hurt so": [65535, 0], "out and that would hurt so he": [65535, 0], "and that would hurt so he thought": [65535, 0], "that would hurt so he thought he": [65535, 0], "would hurt so he thought he would": [65535, 0], "hurt so he thought he would hold": [65535, 0], "so he thought he would hold the": [65535, 0], "he thought he would hold the tooth": [65535, 0], "thought he would hold the tooth in": [65535, 0], "he would hold the tooth in reserve": [65535, 0], "would hold the tooth in reserve for": [65535, 0], "hold the tooth in reserve for the": [65535, 0], "the tooth in reserve for the present": [65535, 0], "tooth in reserve for the present and": [65535, 0], "in reserve for the present and seek": [65535, 0], "reserve for the present and seek further": [65535, 0], "for the present and seek further nothing": [65535, 0], "the present and seek further nothing offered": [65535, 0], "present and seek further nothing offered for": [65535, 0], "and seek further nothing offered for some": [65535, 0], "seek further nothing offered for some little": [65535, 0], "further nothing offered for some little time": [65535, 0], "nothing offered for some little time and": [65535, 0], "offered for some little time and then": [65535, 0], "for some little time and then he": [65535, 0], "some little time and then he remembered": [65535, 0], "little time and then he remembered hearing": [65535, 0], "time and then he remembered hearing the": [65535, 0], "and then he remembered hearing the doctor": [65535, 0], "then he remembered hearing the doctor tell": [65535, 0], "he remembered hearing the doctor tell about": [65535, 0], "remembered hearing the doctor tell about a": [65535, 0], "hearing the doctor tell about a certain": [65535, 0], "the doctor tell about a certain thing": [65535, 0], "doctor tell about a certain thing that": [65535, 0], "tell about a certain thing that laid": [65535, 0], "about a certain thing that laid up": [65535, 0], "a certain thing that laid up a": [65535, 0], "certain thing that laid up a patient": [65535, 0], "thing that laid up a patient for": [65535, 0], "that laid up a patient for two": [65535, 0], "laid up a patient for two or": [65535, 0], "up a patient for two or three": [65535, 0], "a patient for two or three weeks": [65535, 0], "patient for two or three weeks and": [65535, 0], "for two or three weeks and threatened": [65535, 0], "two or three weeks and threatened to": [65535, 0], "or three weeks and threatened to make": [65535, 0], "three weeks and threatened to make him": [65535, 0], "weeks and threatened to make him lose": [65535, 0], "and threatened to make him lose a": [65535, 0], "threatened to make him lose a finger": [65535, 0], "to make him lose a finger so": [65535, 0], "make him lose a finger so the": [65535, 0], "him lose a finger so the boy": [65535, 0], "lose a finger so the boy eagerly": [65535, 0], "a finger so the boy eagerly drew": [65535, 0], "finger so the boy eagerly drew his": [65535, 0], "so the boy eagerly drew his sore": [65535, 0], "the boy eagerly drew his sore toe": [65535, 0], "boy eagerly drew his sore toe from": [65535, 0], "eagerly drew his sore toe from under": [65535, 0], "drew his sore toe from under the": [65535, 0], "his sore toe from under the sheet": [65535, 0], "sore toe from under the sheet and": [65535, 0], "toe from under the sheet and held": [65535, 0], "from under the sheet and held it": [65535, 0], "under the sheet and held it up": [65535, 0], "the sheet and held it up for": [65535, 0], "sheet and held it up for inspection": [65535, 0], "and held it up for inspection but": [65535, 0], "held it up for inspection but now": [65535, 0], "it up for inspection but now he": [65535, 0], "up for inspection but now he did": [65535, 0], "for inspection but now he did not": [65535, 0], "inspection but now he did not know": [65535, 0], "but now he did not know the": [65535, 0], "now he did not know the necessary": [65535, 0], "he did not know the necessary symptoms": [65535, 0], "did not know the necessary symptoms however": [65535, 0], "not know the necessary symptoms however it": [65535, 0], "know the necessary symptoms however it seemed": [65535, 0], "the necessary symptoms however it seemed well": [65535, 0], "necessary symptoms however it seemed well worth": [65535, 0], "symptoms however it seemed well worth while": [65535, 0], "however it seemed well worth while to": [65535, 0], "it seemed well worth while to chance": [65535, 0], "seemed well worth while to chance it": [65535, 0], "well worth while to chance it so": [65535, 0], "worth while to chance it so he": [65535, 0], "while to chance it so he fell": [65535, 0], "to chance it so he fell to": [65535, 0], "chance it so he fell to groaning": [65535, 0], "it so he fell to groaning with": [65535, 0], "so he fell to groaning with considerable": [65535, 0], "he fell to groaning with considerable spirit": [65535, 0], "fell to groaning with considerable spirit but": [65535, 0], "to groaning with considerable spirit but sid": [65535, 0], "groaning with considerable spirit but sid slept": [65535, 0], "with considerable spirit but sid slept on": [65535, 0], "considerable spirit but sid slept on unconscious": [65535, 0], "spirit but sid slept on unconscious tom": [65535, 0], "but sid slept on unconscious tom groaned": [65535, 0], "sid slept on unconscious tom groaned louder": [65535, 0], "slept on unconscious tom groaned louder and": [65535, 0], "on unconscious tom groaned louder and fancied": [65535, 0], "unconscious tom groaned louder and fancied that": [65535, 0], "tom groaned louder and fancied that he": [65535, 0], "groaned louder and fancied that he began": [65535, 0], "louder and fancied that he began to": [65535, 0], "and fancied that he began to feel": [65535, 0], "fancied that he began to feel pain": [65535, 0], "that he began to feel pain in": [65535, 0], "he began to feel pain in the": [65535, 0], "began to feel pain in the toe": [65535, 0], "to feel pain in the toe no": [65535, 0], "feel pain in the toe no result": [65535, 0], "pain in the toe no result from": [65535, 0], "in the toe no result from sid": [65535, 0], "the toe no result from sid tom": [65535, 0], "toe no result from sid tom was": [65535, 0], "no result from sid tom was panting": [65535, 0], "result from sid tom was panting with": [65535, 0], "from sid tom was panting with his": [65535, 0], "sid tom was panting with his exertions": [65535, 0], "tom was panting with his exertions by": [65535, 0], "was panting with his exertions by this": [65535, 0], "panting with his exertions by this time": [65535, 0], "with his exertions by this time he": [65535, 0], "his exertions by this time he took": [65535, 0], "exertions by this time he took a": [65535, 0], "by this time he took a rest": [65535, 0], "this time he took a rest and": [65535, 0], "time he took a rest and then": [65535, 0], "he took a rest and then swelled": [65535, 0], "took a rest and then swelled himself": [65535, 0], "a rest and then swelled himself up": [65535, 0], "rest and then swelled himself up and": [65535, 0], "and then swelled himself up and fetched": [65535, 0], "then swelled himself up and fetched a": [65535, 0], "swelled himself up and fetched a succession": [65535, 0], "himself up and fetched a succession of": [65535, 0], "up and fetched a succession of admirable": [65535, 0], "and fetched a succession of admirable groans": [65535, 0], "fetched a succession of admirable groans sid": [65535, 0], "a succession of admirable groans sid snored": [65535, 0], "succession of admirable groans sid snored on": [65535, 0], "of admirable groans sid snored on tom": [65535, 0], "admirable groans sid snored on tom was": [65535, 0], "groans sid snored on tom was aggravated": [65535, 0], "sid snored on tom was aggravated he": [65535, 0], "snored on tom was aggravated he said": [65535, 0], "on tom was aggravated he said sid": [65535, 0], "tom was aggravated he said sid sid": [65535, 0], "was aggravated he said sid sid and": [65535, 0], "aggravated he said sid sid and shook": [65535, 0], "he said sid sid and shook him": [65535, 0], "said sid sid and shook him this": [65535, 0], "sid sid and shook him this course": [65535, 0], "sid and shook him this course worked": [65535, 0], "and shook him this course worked well": [65535, 0], "shook him this course worked well and": [65535, 0], "him this course worked well and tom": [65535, 0], "this course worked well and tom began": [65535, 0], "course worked well and tom began to": [65535, 0], "worked well and tom began to groan": [65535, 0], "well and tom began to groan again": [65535, 0], "and tom began to groan again sid": [65535, 0], "tom began to groan again sid yawned": [65535, 0], "began to groan again sid yawned stretched": [65535, 0], "to groan again sid yawned stretched then": [65535, 0], "groan again sid yawned stretched then brought": [65535, 0], "again sid yawned stretched then brought himself": [65535, 0], "sid yawned stretched then brought himself up": [65535, 0], "yawned stretched then brought himself up on": [65535, 0], "stretched then brought himself up on his": [65535, 0], "then brought himself up on his elbow": [65535, 0], "brought himself up on his elbow with": [65535, 0], "himself up on his elbow with a": [65535, 0], "up on his elbow with a snort": [65535, 0], "on his elbow with a snort and": [65535, 0], "his elbow with a snort and began": [65535, 0], "elbow with a snort and began to": [65535, 0], "with a snort and began to stare": [65535, 0], "a snort and began to stare at": [65535, 0], "snort and began to stare at tom": [65535, 0], "and began to stare at tom tom": [65535, 0], "began to stare at tom tom went": [65535, 0], "to stare at tom tom went on": [65535, 0], "stare at tom tom went on groaning": [65535, 0], "at tom tom went on groaning sid": [65535, 0], "tom tom went on groaning sid said": [65535, 0], "tom went on groaning sid said tom": [65535, 0], "went on groaning sid said tom say": [65535, 0], "on groaning sid said tom say tom": [65535, 0], "groaning sid said tom say tom no": [65535, 0], "sid said tom say tom no response": [65535, 0], "said tom say tom no response here": [65535, 0], "tom say tom no response here tom": [65535, 0], "say tom no response here tom tom": [65535, 0], "tom no response here tom tom what": [65535, 0], "no response here tom tom what is": [65535, 0], "response here tom tom what is the": [65535, 0], "here tom tom what is the matter": [65535, 0], "tom tom what is the matter tom": [65535, 0], "tom what is the matter tom and": [65535, 0], "what is the matter tom and he": [65535, 0], "is the matter tom and he shook": [65535, 0], "the matter tom and he shook him": [65535, 0], "matter tom and he shook him and": [65535, 0], "tom and he shook him and looked": [65535, 0], "and he shook him and looked in": [65535, 0], "he shook him and looked in his": [65535, 0], "shook him and looked in his face": [65535, 0], "him and looked in his face anxiously": [65535, 0], "and looked in his face anxiously tom": [65535, 0], "looked in his face anxiously tom moaned": [65535, 0], "in his face anxiously tom moaned out": [65535, 0], "his face anxiously tom moaned out oh": [65535, 0], "face anxiously tom moaned out oh don't": [65535, 0], "anxiously tom moaned out oh don't sid": [65535, 0], "tom moaned out oh don't sid don't": [65535, 0], "moaned out oh don't sid don't joggle": [65535, 0], "out oh don't sid don't joggle me": [65535, 0], "oh don't sid don't joggle me why": [65535, 0], "don't sid don't joggle me why what's": [65535, 0], "sid don't joggle me why what's the": [65535, 0], "don't joggle me why what's the matter": [65535, 0], "joggle me why what's the matter tom": [65535, 0], "me why what's the matter tom i": [65535, 0], "why what's the matter tom i must": [65535, 0], "what's the matter tom i must call": [65535, 0], "the matter tom i must call auntie": [65535, 0], "matter tom i must call auntie no": [65535, 0], "tom i must call auntie no never": [65535, 0], "i must call auntie no never mind": [65535, 0], "must call auntie no never mind it'll": [65535, 0], "call auntie no never mind it'll be": [65535, 0], "auntie no never mind it'll be over": [65535, 0], "no never mind it'll be over by": [65535, 0], "never mind it'll be over by and": [65535, 0], "mind it'll be over by and by": [65535, 0], "it'll be over by and by maybe": [65535, 0], "be over by and by maybe don't": [65535, 0], "over by and by maybe don't call": [65535, 0], "by and by maybe don't call anybody": [65535, 0], "and by maybe don't call anybody but": [65535, 0], "by maybe don't call anybody but i": [65535, 0], "maybe don't call anybody but i must": [65535, 0], "don't call anybody but i must don't": [65535, 0], "call anybody but i must don't groan": [65535, 0], "anybody but i must don't groan so": [65535, 0], "but i must don't groan so tom": [65535, 0], "i must don't groan so tom it's": [65535, 0], "must don't groan so tom it's awful": [65535, 0], "don't groan so tom it's awful how": [65535, 0], "groan so tom it's awful how long": [65535, 0], "so tom it's awful how long you": [65535, 0], "tom it's awful how long you been": [65535, 0], "it's awful how long you been this": [65535, 0], "awful how long you been this way": [65535, 0], "how long you been this way hours": [65535, 0], "long you been this way hours ouch": [65535, 0], "you been this way hours ouch oh": [65535, 0], "been this way hours ouch oh don't": [65535, 0], "this way hours ouch oh don't stir": [65535, 0], "way hours ouch oh don't stir so": [65535, 0], "hours ouch oh don't stir so sid": [65535, 0], "ouch oh don't stir so sid you'll": [65535, 0], "oh don't stir so sid you'll kill": [65535, 0], "don't stir so sid you'll kill me": [65535, 0], "stir so sid you'll kill me tom": [65535, 0], "so sid you'll kill me tom why": [65535, 0], "sid you'll kill me tom why didn't": [65535, 0], "you'll kill me tom why didn't you": [65535, 0], "kill me tom why didn't you wake": [65535, 0], "me tom why didn't you wake me": [65535, 0], "tom why didn't you wake me sooner": [65535, 0], "why didn't you wake me sooner oh": [65535, 0], "didn't you wake me sooner oh tom": [65535, 0], "you wake me sooner oh tom don't": [65535, 0], "wake me sooner oh tom don't it": [65535, 0], "me sooner oh tom don't it makes": [65535, 0], "sooner oh tom don't it makes my": [65535, 0], "oh tom don't it makes my flesh": [65535, 0], "tom don't it makes my flesh crawl": [65535, 0], "don't it makes my flesh crawl to": [65535, 0], "it makes my flesh crawl to hear": [65535, 0], "makes my flesh crawl to hear you": [65535, 0], "my flesh crawl to hear you tom": [65535, 0], "flesh crawl to hear you tom what": [65535, 0], "crawl to hear you tom what is": [65535, 0], "to hear you tom what is the": [65535, 0], "hear you tom what is the matter": [65535, 0], "you tom what is the matter i": [65535, 0], "tom what is the matter i forgive": [65535, 0], "what is the matter i forgive you": [65535, 0], "is the matter i forgive you everything": [65535, 0], "the matter i forgive you everything sid": [65535, 0], "matter i forgive you everything sid groan": [65535, 0], "i forgive you everything sid groan everything": [65535, 0], "forgive you everything sid groan everything you've": [65535, 0], "you everything sid groan everything you've ever": [65535, 0], "everything sid groan everything you've ever done": [65535, 0], "sid groan everything you've ever done to": [65535, 0], "groan everything you've ever done to me": [65535, 0], "everything you've ever done to me when": [65535, 0], "you've ever done to me when i'm": [65535, 0], "ever done to me when i'm gone": [65535, 0], "done to me when i'm gone oh": [65535, 0], "to me when i'm gone oh tom": [65535, 0], "me when i'm gone oh tom you": [65535, 0], "when i'm gone oh tom you ain't": [65535, 0], "i'm gone oh tom you ain't dying": [65535, 0], "gone oh tom you ain't dying are": [65535, 0], "oh tom you ain't dying are you": [65535, 0], "tom you ain't dying are you don't": [65535, 0], "you ain't dying are you don't tom": [65535, 0], "ain't dying are you don't tom oh": [65535, 0], "dying are you don't tom oh don't": [65535, 0], "are you don't tom oh don't maybe": [65535, 0], "you don't tom oh don't maybe i": [65535, 0], "don't tom oh don't maybe i forgive": [65535, 0], "tom oh don't maybe i forgive everybody": [65535, 0], "oh don't maybe i forgive everybody sid": [65535, 0], "don't maybe i forgive everybody sid groan": [65535, 0], "maybe i forgive everybody sid groan tell": [65535, 0], "i forgive everybody sid groan tell 'em": [65535, 0], "forgive everybody sid groan tell 'em so": [65535, 0], "everybody sid groan tell 'em so sid": [65535, 0], "sid groan tell 'em so sid and": [65535, 0], "groan tell 'em so sid and sid": [65535, 0], "tell 'em so sid and sid you": [65535, 0], "'em so sid and sid you give": [65535, 0], "so sid and sid you give my": [65535, 0], "sid and sid you give my window": [65535, 0], "and sid you give my window sash": [65535, 0], "sid you give my window sash and": [65535, 0], "you give my window sash and my": [65535, 0], "give my window sash and my cat": [65535, 0], "my window sash and my cat with": [65535, 0], "window sash and my cat with one": [65535, 0], "sash and my cat with one eye": [65535, 0], "and my cat with one eye to": [65535, 0], "my cat with one eye to that": [65535, 0], "cat with one eye to that new": [65535, 0], "with one eye to that new girl": [65535, 0], "one eye to that new girl that's": [65535, 0], "eye to that new girl that's come": [65535, 0], "to that new girl that's come to": [65535, 0], "that new girl that's come to town": [65535, 0], "new girl that's come to town and": [65535, 0], "girl that's come to town and tell": [65535, 0], "that's come to town and tell her": [65535, 0], "come to town and tell her but": [65535, 0], "to town and tell her but sid": [65535, 0], "town and tell her but sid had": [65535, 0], "and tell her but sid had snatched": [65535, 0], "tell her but sid had snatched his": [65535, 0], "her but sid had snatched his clothes": [65535, 0], "but sid had snatched his clothes and": [65535, 0], "sid had snatched his clothes and gone": [65535, 0], "had snatched his clothes and gone tom": [65535, 0], "snatched his clothes and gone tom was": [65535, 0], "his clothes and gone tom was suffering": [65535, 0], "clothes and gone tom was suffering in": [65535, 0], "and gone tom was suffering in reality": [65535, 0], "gone tom was suffering in reality now": [65535, 0], "tom was suffering in reality now so": [65535, 0], "was suffering in reality now so handsomely": [65535, 0], "suffering in reality now so handsomely was": [65535, 0], "in reality now so handsomely was his": [65535, 0], "reality now so handsomely was his imagination": [65535, 0], "now so handsomely was his imagination working": [65535, 0], "so handsomely was his imagination working and": [65535, 0], "handsomely was his imagination working and so": [65535, 0], "was his imagination working and so his": [65535, 0], "his imagination working and so his groans": [65535, 0], "imagination working and so his groans had": [65535, 0], "working and so his groans had gathered": [65535, 0], "and so his groans had gathered quite": [65535, 0], "so his groans had gathered quite a": [65535, 0], "his groans had gathered quite a genuine": [65535, 0], "groans had gathered quite a genuine tone": [65535, 0], "had gathered quite a genuine tone sid": [65535, 0], "gathered quite a genuine tone sid flew": [65535, 0], "quite a genuine tone sid flew down": [65535, 0], "a genuine tone sid flew down stairs": [65535, 0], "genuine tone sid flew down stairs and": [65535, 0], "tone sid flew down stairs and said": [65535, 0], "sid flew down stairs and said oh": [65535, 0], "flew down stairs and said oh aunt": [65535, 0], "down stairs and said oh aunt polly": [65535, 0], "stairs and said oh aunt polly come": [65535, 0], "and said oh aunt polly come tom's": [65535, 0], "said oh aunt polly come tom's dying": [65535, 0], "oh aunt polly come tom's dying dying": [65535, 0], "aunt polly come tom's dying dying yes'm": [65535, 0], "polly come tom's dying dying yes'm don't": [65535, 0], "come tom's dying dying yes'm don't wait": [65535, 0], "tom's dying dying yes'm don't wait come": [65535, 0], "dying dying yes'm don't wait come quick": [65535, 0], "dying yes'm don't wait come quick rubbage": [65535, 0], "yes'm don't wait come quick rubbage i": [65535, 0], "don't wait come quick rubbage i don't": [65535, 0], "wait come quick rubbage i don't believe": [65535, 0], "come quick rubbage i don't believe it": [65535, 0], "quick rubbage i don't believe it but": [65535, 0], "rubbage i don't believe it but she": [65535, 0], "i don't believe it but she fled": [65535, 0], "don't believe it but she fled up": [65535, 0], "believe it but she fled up stairs": [65535, 0], "it but she fled up stairs nevertheless": [65535, 0], "but she fled up stairs nevertheless with": [65535, 0], "she fled up stairs nevertheless with sid": [65535, 0], "fled up stairs nevertheless with sid and": [65535, 0], "up stairs nevertheless with sid and mary": [65535, 0], "stairs nevertheless with sid and mary at": [65535, 0], "nevertheless with sid and mary at her": [65535, 0], "with sid and mary at her heels": [65535, 0], "sid and mary at her heels and": [65535, 0], "and mary at her heels and her": [65535, 0], "mary at her heels and her face": [65535, 0], "at her heels and her face grew": [65535, 0], "her heels and her face grew white": [65535, 0], "heels and her face grew white too": [65535, 0], "and her face grew white too and": [65535, 0], "her face grew white too and her": [65535, 0], "face grew white too and her lip": [65535, 0], "grew white too and her lip trembled": [65535, 0], "white too and her lip trembled when": [65535, 0], "too and her lip trembled when she": [65535, 0], "and her lip trembled when she reached": [65535, 0], "her lip trembled when she reached the": [65535, 0], "lip trembled when she reached the bedside": [65535, 0], "trembled when she reached the bedside she": [65535, 0], "when she reached the bedside she gasped": [65535, 0], "she reached the bedside she gasped out": [65535, 0], "reached the bedside she gasped out you": [65535, 0], "the bedside she gasped out you tom": [65535, 0], "bedside she gasped out you tom tom": [65535, 0], "she gasped out you tom tom what's": [65535, 0], "gasped out you tom tom what's the": [65535, 0], "out you tom tom what's the matter": [65535, 0], "you tom tom what's the matter with": [65535, 0], "tom tom what's the matter with you": [65535, 0], "tom what's the matter with you oh": [65535, 0], "what's the matter with you oh auntie": [65535, 0], "the matter with you oh auntie i'm": [65535, 0], "matter with you oh auntie i'm what's": [65535, 0], "with you oh auntie i'm what's the": [65535, 0], "you oh auntie i'm what's the matter": [65535, 0], "oh auntie i'm what's the matter with": [65535, 0], "auntie i'm what's the matter with you": [65535, 0], "i'm what's the matter with you what": [65535, 0], "what's the matter with you what is": [65535, 0], "the matter with you what is the": [65535, 0], "matter with you what is the matter": [65535, 0], "with you what is the matter with": [65535, 0], "you what is the matter with you": [65535, 0], "what is the matter with you child": [65535, 0], "is the matter with you child oh": [65535, 0], "the matter with you child oh auntie": [65535, 0], "matter with you child oh auntie my": [65535, 0], "with you child oh auntie my sore": [65535, 0], "you child oh auntie my sore toe's": [65535, 0], "child oh auntie my sore toe's mortified": [65535, 0], "oh auntie my sore toe's mortified the": [65535, 0], "auntie my sore toe's mortified the old": [65535, 0], "my sore toe's mortified the old lady": [65535, 0], "sore toe's mortified the old lady sank": [65535, 0], "toe's mortified the old lady sank down": [65535, 0], "mortified the old lady sank down into": [65535, 0], "the old lady sank down into a": [65535, 0], "old lady sank down into a chair": [65535, 0], "lady sank down into a chair and": [65535, 0], "sank down into a chair and laughed": [65535, 0], "down into a chair and laughed a": [65535, 0], "into a chair and laughed a little": [65535, 0], "a chair and laughed a little then": [65535, 0], "chair and laughed a little then cried": [65535, 0], "and laughed a little then cried a": [65535, 0], "laughed a little then cried a little": [65535, 0], "a little then cried a little then": [65535, 0], "little then cried a little then did": [65535, 0], "then cried a little then did both": [65535, 0], "cried a little then did both together": [65535, 0], "a little then did both together this": [65535, 0], "little then did both together this restored": [65535, 0], "then did both together this restored her": [65535, 0], "did both together this restored her and": [65535, 0], "both together this restored her and she": [65535, 0], "together this restored her and she said": [65535, 0], "this restored her and she said tom": [65535, 0], "restored her and she said tom what": [65535, 0], "her and she said tom what a": [65535, 0], "and she said tom what a turn": [65535, 0], "she said tom what a turn you": [65535, 0], "said tom what a turn you did": [65535, 0], "tom what a turn you did give": [65535, 0], "what a turn you did give me": [65535, 0], "a turn you did give me now": [65535, 0], "turn you did give me now you": [65535, 0], "you did give me now you shut": [65535, 0], "did give me now you shut up": [65535, 0], "give me now you shut up that": [65535, 0], "me now you shut up that nonsense": [65535, 0], "now you shut up that nonsense and": [65535, 0], "you shut up that nonsense and climb": [65535, 0], "shut up that nonsense and climb out": [65535, 0], "up that nonsense and climb out of": [65535, 0], "that nonsense and climb out of this": [65535, 0], "nonsense and climb out of this the": [65535, 0], "and climb out of this the groans": [65535, 0], "climb out of this the groans ceased": [65535, 0], "out of this the groans ceased and": [65535, 0], "of this the groans ceased and the": [65535, 0], "this the groans ceased and the pain": [65535, 0], "the groans ceased and the pain vanished": [65535, 0], "groans ceased and the pain vanished from": [65535, 0], "ceased and the pain vanished from the": [65535, 0], "and the pain vanished from the toe": [65535, 0], "the pain vanished from the toe the": [65535, 0], "pain vanished from the toe the boy": [65535, 0], "vanished from the toe the boy felt": [65535, 0], "from the toe the boy felt a": [65535, 0], "the toe the boy felt a little": [65535, 0], "toe the boy felt a little foolish": [65535, 0], "the boy felt a little foolish and": [65535, 0], "boy felt a little foolish and he": [65535, 0], "felt a little foolish and he said": [65535, 0], "a little foolish and he said aunt": [65535, 0], "little foolish and he said aunt polly": [65535, 0], "foolish and he said aunt polly it": [65535, 0], "and he said aunt polly it seemed": [65535, 0], "he said aunt polly it seemed mortified": [65535, 0], "said aunt polly it seemed mortified and": [65535, 0], "aunt polly it seemed mortified and it": [65535, 0], "polly it seemed mortified and it hurt": [65535, 0], "it seemed mortified and it hurt so": [65535, 0], "seemed mortified and it hurt so i": [65535, 0], "mortified and it hurt so i never": [65535, 0], "and it hurt so i never minded": [65535, 0], "it hurt so i never minded my": [65535, 0], "hurt so i never minded my tooth": [65535, 0], "so i never minded my tooth at": [65535, 0], "i never minded my tooth at all": [65535, 0], "never minded my tooth at all your": [65535, 0], "minded my tooth at all your tooth": [65535, 0], "my tooth at all your tooth indeed": [65535, 0], "tooth at all your tooth indeed what's": [65535, 0], "at all your tooth indeed what's the": [65535, 0], "all your tooth indeed what's the matter": [65535, 0], "your tooth indeed what's the matter with": [65535, 0], "tooth indeed what's the matter with your": [65535, 0], "indeed what's the matter with your tooth": [65535, 0], "what's the matter with your tooth one": [65535, 0], "the matter with your tooth one of": [65535, 0], "matter with your tooth one of them's": [65535, 0], "with your tooth one of them's loose": [65535, 0], "your tooth one of them's loose and": [65535, 0], "tooth one of them's loose and it": [65535, 0], "one of them's loose and it aches": [65535, 0], "of them's loose and it aches perfectly": [65535, 0], "them's loose and it aches perfectly awful": [65535, 0], "loose and it aches perfectly awful there": [65535, 0], "and it aches perfectly awful there there": [65535, 0], "it aches perfectly awful there there now": [65535, 0], "aches perfectly awful there there now don't": [65535, 0], "perfectly awful there there now don't begin": [65535, 0], "awful there there now don't begin that": [65535, 0], "there there now don't begin that groaning": [65535, 0], "there now don't begin that groaning again": [65535, 0], "now don't begin that groaning again open": [65535, 0], "don't begin that groaning again open your": [65535, 0], "begin that groaning again open your mouth": [65535, 0], "that groaning again open your mouth well": [65535, 0], "groaning again open your mouth well your": [65535, 0], "again open your mouth well your tooth": [65535, 0], "open your mouth well your tooth is": [65535, 0], "your mouth well your tooth is loose": [65535, 0], "mouth well your tooth is loose but": [65535, 0], "well your tooth is loose but you're": [65535, 0], "your tooth is loose but you're not": [65535, 0], "tooth is loose but you're not going": [65535, 0], "is loose but you're not going to": [65535, 0], "loose but you're not going to die": [65535, 0], "but you're not going to die about": [65535, 0], "you're not going to die about that": [65535, 0], "not going to die about that mary": [65535, 0], "going to die about that mary get": [65535, 0], "to die about that mary get me": [65535, 0], "die about that mary get me a": [65535, 0], "about that mary get me a silk": [65535, 0], "that mary get me a silk thread": [65535, 0], "mary get me a silk thread and": [65535, 0], "get me a silk thread and a": [65535, 0], "me a silk thread and a chunk": [65535, 0], "a silk thread and a chunk of": [65535, 0], "silk thread and a chunk of fire": [65535, 0], "thread and a chunk of fire out": [65535, 0], "and a chunk of fire out of": [65535, 0], "a chunk of fire out of the": [65535, 0], "chunk of fire out of the kitchen": [65535, 0], "of fire out of the kitchen tom": [65535, 0], "fire out of the kitchen tom said": [65535, 0], "out of the kitchen tom said oh": [65535, 0], "of the kitchen tom said oh please": [65535, 0], "the kitchen tom said oh please auntie": [65535, 0], "kitchen tom said oh please auntie don't": [65535, 0], "tom said oh please auntie don't pull": [65535, 0], "said oh please auntie don't pull it": [65535, 0], "oh please auntie don't pull it out": [65535, 0], "please auntie don't pull it out it": [65535, 0], "auntie don't pull it out it don't": [65535, 0], "don't pull it out it don't hurt": [65535, 0], "pull it out it don't hurt any": [65535, 0], "it out it don't hurt any more": [65535, 0], "out it don't hurt any more i": [65535, 0], "it don't hurt any more i wish": [65535, 0], "don't hurt any more i wish i": [65535, 0], "hurt any more i wish i may": [65535, 0], "any more i wish i may never": [65535, 0], "more i wish i may never stir": [65535, 0], "i wish i may never stir if": [65535, 0], "wish i may never stir if it": [65535, 0], "i may never stir if it does": [65535, 0], "may never stir if it does please": [65535, 0], "never stir if it does please don't": [65535, 0], "stir if it does please don't auntie": [65535, 0], "if it does please don't auntie i": [65535, 0], "it does please don't auntie i don't": [65535, 0], "does please don't auntie i don't want": [65535, 0], "please don't auntie i don't want to": [65535, 0], "don't auntie i don't want to stay": [65535, 0], "auntie i don't want to stay home": [65535, 0], "i don't want to stay home from": [65535, 0], "don't want to stay home from school": [65535, 0], "want to stay home from school oh": [65535, 0], "to stay home from school oh you": [65535, 0], "stay home from school oh you don't": [65535, 0], "home from school oh you don't don't": [65535, 0], "from school oh you don't don't you": [65535, 0], "school oh you don't don't you so": [65535, 0], "oh you don't don't you so all": [65535, 0], "you don't don't you so all this": [65535, 0], "don't don't you so all this row": [65535, 0], "don't you so all this row was": [65535, 0], "you so all this row was because": [65535, 0], "so all this row was because you": [65535, 0], "all this row was because you thought": [65535, 0], "this row was because you thought you'd": [65535, 0], "row was because you thought you'd get": [65535, 0], "was because you thought you'd get to": [65535, 0], "because you thought you'd get to stay": [65535, 0], "you thought you'd get to stay home": [65535, 0], "thought you'd get to stay home from": [65535, 0], "you'd get to stay home from school": [65535, 0], "get to stay home from school and": [65535, 0], "to stay home from school and go": [65535, 0], "stay home from school and go a": [65535, 0], "home from school and go a fishing": [65535, 0], "from school and go a fishing tom": [65535, 0], "school and go a fishing tom tom": [65535, 0], "and go a fishing tom tom i": [65535, 0], "go a fishing tom tom i love": [65535, 0], "a fishing tom tom i love you": [65535, 0], "fishing tom tom i love you so": [65535, 0], "tom tom i love you so and": [65535, 0], "tom i love you so and you": [65535, 0], "i love you so and you seem": [65535, 0], "love you so and you seem to": [65535, 0], "you so and you seem to try": [65535, 0], "so and you seem to try every": [65535, 0], "and you seem to try every way": [65535, 0], "you seem to try every way you": [65535, 0], "seem to try every way you can": [65535, 0], "to try every way you can to": [65535, 0], "try every way you can to break": [65535, 0], "every way you can to break my": [65535, 0], "way you can to break my old": [65535, 0], "you can to break my old heart": [65535, 0], "can to break my old heart with": [65535, 0], "to break my old heart with your": [65535, 0], "break my old heart with your outrageousness": [65535, 0], "my old heart with your outrageousness by": [65535, 0], "old heart with your outrageousness by this": [65535, 0], "heart with your outrageousness by this time": [65535, 0], "with your outrageousness by this time the": [65535, 0], "your outrageousness by this time the dental": [65535, 0], "outrageousness by this time the dental instruments": [65535, 0], "by this time the dental instruments were": [65535, 0], "this time the dental instruments were ready": [65535, 0], "time the dental instruments were ready the": [65535, 0], "the dental instruments were ready the old": [65535, 0], "dental instruments were ready the old lady": [65535, 0], "instruments were ready the old lady made": [65535, 0], "were ready the old lady made one": [65535, 0], "ready the old lady made one end": [65535, 0], "the old lady made one end of": [65535, 0], "old lady made one end of the": [65535, 0], "lady made one end of the silk": [65535, 0], "made one end of the silk thread": [65535, 0], "one end of the silk thread fast": [65535, 0], "end of the silk thread fast to": [65535, 0], "of the silk thread fast to tom's": [65535, 0], "the silk thread fast to tom's tooth": [65535, 0], "silk thread fast to tom's tooth with": [65535, 0], "thread fast to tom's tooth with a": [65535, 0], "fast to tom's tooth with a loop": [65535, 0], "to tom's tooth with a loop and": [65535, 0], "tom's tooth with a loop and tied": [65535, 0], "tooth with a loop and tied the": [65535, 0], "with a loop and tied the other": [65535, 0], "a loop and tied the other to": [65535, 0], "loop and tied the other to the": [65535, 0], "and tied the other to the bedpost": [65535, 0], "tied the other to the bedpost then": [65535, 0], "the other to the bedpost then she": [65535, 0], "other to the bedpost then she seized": [65535, 0], "to the bedpost then she seized the": [65535, 0], "the bedpost then she seized the chunk": [65535, 0], "bedpost then she seized the chunk of": [65535, 0], "then she seized the chunk of fire": [65535, 0], "she seized the chunk of fire and": [65535, 0], "seized the chunk of fire and suddenly": [65535, 0], "the chunk of fire and suddenly thrust": [65535, 0], "chunk of fire and suddenly thrust it": [65535, 0], "of fire and suddenly thrust it almost": [65535, 0], "fire and suddenly thrust it almost into": [65535, 0], "and suddenly thrust it almost into the": [65535, 0], "suddenly thrust it almost into the boy's": [65535, 0], "thrust it almost into the boy's face": [65535, 0], "it almost into the boy's face the": [65535, 0], "almost into the boy's face the tooth": [65535, 0], "into the boy's face the tooth hung": [65535, 0], "the boy's face the tooth hung dangling": [65535, 0], "boy's face the tooth hung dangling by": [65535, 0], "face the tooth hung dangling by the": [65535, 0], "the tooth hung dangling by the bedpost": [65535, 0], "tooth hung dangling by the bedpost now": [65535, 0], "hung dangling by the bedpost now but": [65535, 0], "dangling by the bedpost now but all": [65535, 0], "by the bedpost now but all trials": [65535, 0], "the bedpost now but all trials bring": [65535, 0], "bedpost now but all trials bring their": [65535, 0], "now but all trials bring their compensations": [65535, 0], "but all trials bring their compensations as": [65535, 0], "all trials bring their compensations as tom": [65535, 0], "trials bring their compensations as tom wended": [65535, 0], "bring their compensations as tom wended to": [65535, 0], "their compensations as tom wended to school": [65535, 0], "compensations as tom wended to school after": [65535, 0], "as tom wended to school after breakfast": [65535, 0], "tom wended to school after breakfast he": [65535, 0], "wended to school after breakfast he was": [65535, 0], "to school after breakfast he was the": [65535, 0], "school after breakfast he was the envy": [65535, 0], "after breakfast he was the envy of": [65535, 0], "breakfast he was the envy of every": [65535, 0], "he was the envy of every boy": [65535, 0], "was the envy of every boy he": [65535, 0], "the envy of every boy he met": [65535, 0], "envy of every boy he met because": [65535, 0], "of every boy he met because the": [65535, 0], "every boy he met because the gap": [65535, 0], "boy he met because the gap in": [65535, 0], "he met because the gap in his": [65535, 0], "met because the gap in his upper": [65535, 0], "because the gap in his upper row": [65535, 0], "the gap in his upper row of": [65535, 0], "gap in his upper row of teeth": [65535, 0], "in his upper row of teeth enabled": [65535, 0], "his upper row of teeth enabled him": [65535, 0], "upper row of teeth enabled him to": [65535, 0], "row of teeth enabled him to expectorate": [65535, 0], "of teeth enabled him to expectorate in": [65535, 0], "teeth enabled him to expectorate in a": [65535, 0], "enabled him to expectorate in a new": [65535, 0], "him to expectorate in a new and": [65535, 0], "to expectorate in a new and admirable": [65535, 0], "expectorate in a new and admirable way": [65535, 0], "in a new and admirable way he": [65535, 0], "a new and admirable way he gathered": [65535, 0], "new and admirable way he gathered quite": [65535, 0], "and admirable way he gathered quite a": [65535, 0], "admirable way he gathered quite a following": [65535, 0], "way he gathered quite a following of": [65535, 0], "he gathered quite a following of lads": [65535, 0], "gathered quite a following of lads interested": [65535, 0], "quite a following of lads interested in": [65535, 0], "a following of lads interested in the": [65535, 0], "following of lads interested in the exhibition": [65535, 0], "of lads interested in the exhibition and": [65535, 0], "lads interested in the exhibition and one": [65535, 0], "interested in the exhibition and one that": [65535, 0], "in the exhibition and one that had": [65535, 0], "the exhibition and one that had cut": [65535, 0], "exhibition and one that had cut his": [65535, 0], "and one that had cut his finger": [65535, 0], "one that had cut his finger and": [65535, 0], "that had cut his finger and had": [65535, 0], "had cut his finger and had been": [65535, 0], "cut his finger and had been a": [65535, 0], "his finger and had been a centre": [65535, 0], "finger and had been a centre of": [65535, 0], "and had been a centre of fascination": [65535, 0], "had been a centre of fascination and": [65535, 0], "been a centre of fascination and homage": [65535, 0], "a centre of fascination and homage up": [65535, 0], "centre of fascination and homage up to": [65535, 0], "of fascination and homage up to this": [65535, 0], "fascination and homage up to this time": [65535, 0], "and homage up to this time now": [65535, 0], "homage up to this time now found": [65535, 0], "up to this time now found himself": [65535, 0], "to this time now found himself suddenly": [65535, 0], "this time now found himself suddenly without": [65535, 0], "time now found himself suddenly without an": [65535, 0], "now found himself suddenly without an adherent": [65535, 0], "found himself suddenly without an adherent and": [65535, 0], "himself suddenly without an adherent and shorn": [65535, 0], "suddenly without an adherent and shorn of": [65535, 0], "without an adherent and shorn of his": [65535, 0], "an adherent and shorn of his glory": [65535, 0], "adherent and shorn of his glory his": [65535, 0], "and shorn of his glory his heart": [65535, 0], "shorn of his glory his heart was": [65535, 0], "of his glory his heart was heavy": [65535, 0], "his glory his heart was heavy and": [65535, 0], "glory his heart was heavy and he": [65535, 0], "his heart was heavy and he said": [65535, 0], "heart was heavy and he said with": [65535, 0], "was heavy and he said with a": [65535, 0], "heavy and he said with a disdain": [65535, 0], "and he said with a disdain which": [65535, 0], "he said with a disdain which he": [65535, 0], "said with a disdain which he did": [65535, 0], "with a disdain which he did not": [65535, 0], "a disdain which he did not feel": [65535, 0], "disdain which he did not feel that": [65535, 0], "which he did not feel that it": [65535, 0], "he did not feel that it wasn't": [65535, 0], "did not feel that it wasn't anything": [65535, 0], "not feel that it wasn't anything to": [65535, 0], "feel that it wasn't anything to spit": [65535, 0], "that it wasn't anything to spit like": [65535, 0], "it wasn't anything to spit like tom": [65535, 0], "wasn't anything to spit like tom sawyer": [65535, 0], "anything to spit like tom sawyer but": [65535, 0], "to spit like tom sawyer but another": [65535, 0], "spit like tom sawyer but another boy": [65535, 0], "like tom sawyer but another boy said": [65535, 0], "tom sawyer but another boy said sour": [65535, 0], "sawyer but another boy said sour grapes": [65535, 0], "but another boy said sour grapes and": [65535, 0], "another boy said sour grapes and he": [65535, 0], "boy said sour grapes and he wandered": [65535, 0], "said sour grapes and he wandered away": [65535, 0], "sour grapes and he wandered away a": [65535, 0], "grapes and he wandered away a dismantled": [65535, 0], "and he wandered away a dismantled hero": [65535, 0], "he wandered away a dismantled hero shortly": [65535, 0], "wandered away a dismantled hero shortly tom": [65535, 0], "away a dismantled hero shortly tom came": [65535, 0], "a dismantled hero shortly tom came upon": [65535, 0], "dismantled hero shortly tom came upon the": [65535, 0], "hero shortly tom came upon the juvenile": [65535, 0], "shortly tom came upon the juvenile pariah": [65535, 0], "tom came upon the juvenile pariah of": [65535, 0], "came upon the juvenile pariah of the": [65535, 0], "upon the juvenile pariah of the village": [65535, 0], "the juvenile pariah of the village huckleberry": [65535, 0], "juvenile pariah of the village huckleberry finn": [65535, 0], "pariah of the village huckleberry finn son": [65535, 0], "of the village huckleberry finn son of": [65535, 0], "the village huckleberry finn son of the": [65535, 0], "village huckleberry finn son of the town": [65535, 0], "huckleberry finn son of the town drunkard": [65535, 0], "finn son of the town drunkard huckleberry": [65535, 0], "son of the town drunkard huckleberry was": [65535, 0], "of the town drunkard huckleberry was cordially": [65535, 0], "the town drunkard huckleberry was cordially hated": [65535, 0], "town drunkard huckleberry was cordially hated and": [65535, 0], "drunkard huckleberry was cordially hated and dreaded": [65535, 0], "huckleberry was cordially hated and dreaded by": [65535, 0], "was cordially hated and dreaded by all": [65535, 0], "cordially hated and dreaded by all the": [65535, 0], "hated and dreaded by all the mothers": [65535, 0], "and dreaded by all the mothers of": [65535, 0], "dreaded by all the mothers of the": [65535, 0], "by all the mothers of the town": [65535, 0], "all the mothers of the town because": [65535, 0], "the mothers of the town because he": [65535, 0], "mothers of the town because he was": [65535, 0], "of the town because he was idle": [65535, 0], "the town because he was idle and": [65535, 0], "town because he was idle and lawless": [65535, 0], "because he was idle and lawless and": [65535, 0], "he was idle and lawless and vulgar": [65535, 0], "was idle and lawless and vulgar and": [65535, 0], "idle and lawless and vulgar and bad": [65535, 0], "and lawless and vulgar and bad and": [65535, 0], "lawless and vulgar and bad and because": [65535, 0], "and vulgar and bad and because all": [65535, 0], "vulgar and bad and because all their": [65535, 0], "and bad and because all their children": [65535, 0], "bad and because all their children admired": [65535, 0], "and because all their children admired him": [65535, 0], "because all their children admired him so": [65535, 0], "all their children admired him so and": [65535, 0], "their children admired him so and delighted": [65535, 0], "children admired him so and delighted in": [65535, 0], "admired him so and delighted in his": [65535, 0], "him so and delighted in his forbidden": [65535, 0], "so and delighted in his forbidden society": [65535, 0], "and delighted in his forbidden society and": [65535, 0], "delighted in his forbidden society and wished": [65535, 0], "in his forbidden society and wished they": [65535, 0], "his forbidden society and wished they dared": [65535, 0], "forbidden society and wished they dared to": [65535, 0], "society and wished they dared to be": [65535, 0], "and wished they dared to be like": [65535, 0], "wished they dared to be like him": [65535, 0], "they dared to be like him tom": [65535, 0], "dared to be like him tom was": [65535, 0], "to be like him tom was like": [65535, 0], "be like him tom was like the": [65535, 0], "like him tom was like the rest": [65535, 0], "him tom was like the rest of": [65535, 0], "tom was like the rest of the": [65535, 0], "was like the rest of the respectable": [65535, 0], "like the rest of the respectable boys": [65535, 0], "the rest of the respectable boys in": [65535, 0], "rest of the respectable boys in that": [65535, 0], "of the respectable boys in that he": [65535, 0], "the respectable boys in that he envied": [65535, 0], "respectable boys in that he envied huckleberry": [65535, 0], "boys in that he envied huckleberry his": [65535, 0], "in that he envied huckleberry his gaudy": [65535, 0], "that he envied huckleberry his gaudy outcast": [65535, 0], "he envied huckleberry his gaudy outcast condition": [65535, 0], "envied huckleberry his gaudy outcast condition and": [65535, 0], "huckleberry his gaudy outcast condition and was": [65535, 0], "his gaudy outcast condition and was under": [65535, 0], "gaudy outcast condition and was under strict": [65535, 0], "outcast condition and was under strict orders": [65535, 0], "condition and was under strict orders not": [65535, 0], "and was under strict orders not to": [65535, 0], "was under strict orders not to play": [65535, 0], "under strict orders not to play with": [65535, 0], "strict orders not to play with him": [65535, 0], "orders not to play with him so": [65535, 0], "not to play with him so he": [65535, 0], "to play with him so he played": [65535, 0], "play with him so he played with": [65535, 0], "with him so he played with him": [65535, 0], "him so he played with him every": [65535, 0], "so he played with him every time": [65535, 0], "he played with him every time he": [65535, 0], "played with him every time he got": [65535, 0], "with him every time he got a": [65535, 0], "him every time he got a chance": [65535, 0], "every time he got a chance huckleberry": [65535, 0], "time he got a chance huckleberry was": [65535, 0], "he got a chance huckleberry was always": [65535, 0], "got a chance huckleberry was always dressed": [65535, 0], "a chance huckleberry was always dressed in": [65535, 0], "chance huckleberry was always dressed in the": [65535, 0], "huckleberry was always dressed in the cast": [65535, 0], "was always dressed in the cast off": [65535, 0], "always dressed in the cast off clothes": [65535, 0], "dressed in the cast off clothes of": [65535, 0], "in the cast off clothes of full": [65535, 0], "the cast off clothes of full grown": [65535, 0], "cast off clothes of full grown men": [65535, 0], "off clothes of full grown men and": [65535, 0], "clothes of full grown men and they": [65535, 0], "of full grown men and they were": [65535, 0], "full grown men and they were in": [65535, 0], "grown men and they were in perennial": [65535, 0], "men and they were in perennial bloom": [65535, 0], "and they were in perennial bloom and": [65535, 0], "they were in perennial bloom and fluttering": [65535, 0], "were in perennial bloom and fluttering with": [65535, 0], "in perennial bloom and fluttering with rags": [65535, 0], "perennial bloom and fluttering with rags his": [65535, 0], "bloom and fluttering with rags his hat": [65535, 0], "and fluttering with rags his hat was": [65535, 0], "fluttering with rags his hat was a": [65535, 0], "with rags his hat was a vast": [65535, 0], "rags his hat was a vast ruin": [65535, 0], "his hat was a vast ruin with": [65535, 0], "hat was a vast ruin with a": [65535, 0], "was a vast ruin with a wide": [65535, 0], "a vast ruin with a wide crescent": [65535, 0], "vast ruin with a wide crescent lopped": [65535, 0], "ruin with a wide crescent lopped out": [65535, 0], "with a wide crescent lopped out of": [65535, 0], "a wide crescent lopped out of its": [65535, 0], "wide crescent lopped out of its brim": [65535, 0], "crescent lopped out of its brim his": [65535, 0], "lopped out of its brim his coat": [65535, 0], "out of its brim his coat when": [65535, 0], "of its brim his coat when he": [65535, 0], "its brim his coat when he wore": [65535, 0], "brim his coat when he wore one": [65535, 0], "his coat when he wore one hung": [65535, 0], "coat when he wore one hung nearly": [65535, 0], "when he wore one hung nearly to": [65535, 0], "he wore one hung nearly to his": [65535, 0], "wore one hung nearly to his heels": [65535, 0], "one hung nearly to his heels and": [65535, 0], "hung nearly to his heels and had": [65535, 0], "nearly to his heels and had the": [65535, 0], "to his heels and had the rearward": [65535, 0], "his heels and had the rearward buttons": [65535, 0], "heels and had the rearward buttons far": [65535, 0], "and had the rearward buttons far down": [65535, 0], "had the rearward buttons far down the": [65535, 0], "the rearward buttons far down the back": [65535, 0], "rearward buttons far down the back but": [65535, 0], "buttons far down the back but one": [65535, 0], "far down the back but one suspender": [65535, 0], "down the back but one suspender supported": [65535, 0], "the back but one suspender supported his": [65535, 0], "back but one suspender supported his trousers": [65535, 0], "but one suspender supported his trousers the": [65535, 0], "one suspender supported his trousers the seat": [65535, 0], "suspender supported his trousers the seat of": [65535, 0], "supported his trousers the seat of the": [65535, 0], "his trousers the seat of the trousers": [65535, 0], "trousers the seat of the trousers bagged": [65535, 0], "the seat of the trousers bagged low": [65535, 0], "seat of the trousers bagged low and": [65535, 0], "of the trousers bagged low and contained": [65535, 0], "the trousers bagged low and contained nothing": [65535, 0], "trousers bagged low and contained nothing the": [65535, 0], "bagged low and contained nothing the fringed": [65535, 0], "low and contained nothing the fringed legs": [65535, 0], "and contained nothing the fringed legs dragged": [65535, 0], "contained nothing the fringed legs dragged in": [65535, 0], "nothing the fringed legs dragged in the": [65535, 0], "the fringed legs dragged in the dirt": [65535, 0], "fringed legs dragged in the dirt when": [65535, 0], "legs dragged in the dirt when not": [65535, 0], "dragged in the dirt when not rolled": [65535, 0], "in the dirt when not rolled up": [65535, 0], "the dirt when not rolled up huckleberry": [65535, 0], "dirt when not rolled up huckleberry came": [65535, 0], "when not rolled up huckleberry came and": [65535, 0], "not rolled up huckleberry came and went": [65535, 0], "rolled up huckleberry came and went at": [65535, 0], "up huckleberry came and went at his": [65535, 0], "huckleberry came and went at his own": [65535, 0], "came and went at his own free": [65535, 0], "and went at his own free will": [65535, 0], "went at his own free will he": [65535, 0], "at his own free will he slept": [65535, 0], "his own free will he slept on": [65535, 0], "own free will he slept on doorsteps": [65535, 0], "free will he slept on doorsteps in": [65535, 0], "will he slept on doorsteps in fine": [65535, 0], "he slept on doorsteps in fine weather": [65535, 0], "slept on doorsteps in fine weather and": [65535, 0], "on doorsteps in fine weather and in": [65535, 0], "doorsteps in fine weather and in empty": [65535, 0], "in fine weather and in empty hogsheads": [65535, 0], "fine weather and in empty hogsheads in": [65535, 0], "weather and in empty hogsheads in wet": [65535, 0], "and in empty hogsheads in wet he": [65535, 0], "in empty hogsheads in wet he did": [65535, 0], "empty hogsheads in wet he did not": [65535, 0], "hogsheads in wet he did not have": [65535, 0], "in wet he did not have to": [65535, 0], "wet he did not have to go": [65535, 0], "he did not have to go to": [65535, 0], "did not have to go to school": [65535, 0], "not have to go to school or": [65535, 0], "have to go to school or to": [65535, 0], "to go to school or to church": [65535, 0], "go to school or to church or": [65535, 0], "to school or to church or call": [65535, 0], "school or to church or call any": [65535, 0], "or to church or call any being": [65535, 0], "to church or call any being master": [65535, 0], "church or call any being master or": [65535, 0], "or call any being master or obey": [65535, 0], "call any being master or obey anybody": [65535, 0], "any being master or obey anybody he": [65535, 0], "being master or obey anybody he could": [65535, 0], "master or obey anybody he could go": [65535, 0], "or obey anybody he could go fishing": [65535, 0], "obey anybody he could go fishing or": [65535, 0], "anybody he could go fishing or swimming": [65535, 0], "he could go fishing or swimming when": [65535, 0], "could go fishing or swimming when and": [65535, 0], "go fishing or swimming when and where": [65535, 0], "fishing or swimming when and where he": [65535, 0], "or swimming when and where he chose": [65535, 0], "swimming when and where he chose and": [65535, 0], "when and where he chose and stay": [65535, 0], "and where he chose and stay as": [65535, 0], "where he chose and stay as long": [65535, 0], "he chose and stay as long as": [65535, 0], "chose and stay as long as it": [65535, 0], "and stay as long as it suited": [65535, 0], "stay as long as it suited him": [65535, 0], "as long as it suited him nobody": [65535, 0], "long as it suited him nobody forbade": [65535, 0], "as it suited him nobody forbade him": [65535, 0], "it suited him nobody forbade him to": [65535, 0], "suited him nobody forbade him to fight": [65535, 0], "him nobody forbade him to fight he": [65535, 0], "nobody forbade him to fight he could": [65535, 0], "forbade him to fight he could sit": [65535, 0], "him to fight he could sit up": [65535, 0], "to fight he could sit up as": [65535, 0], "fight he could sit up as late": [65535, 0], "he could sit up as late as": [65535, 0], "could sit up as late as he": [65535, 0], "sit up as late as he pleased": [65535, 0], "up as late as he pleased he": [65535, 0], "as late as he pleased he was": [65535, 0], "late as he pleased he was always": [65535, 0], "as he pleased he was always the": [65535, 0], "he pleased he was always the first": [65535, 0], "pleased he was always the first boy": [65535, 0], "he was always the first boy that": [65535, 0], "was always the first boy that went": [65535, 0], "always the first boy that went barefoot": [65535, 0], "the first boy that went barefoot in": [65535, 0], "first boy that went barefoot in the": [65535, 0], "boy that went barefoot in the spring": [65535, 0], "that went barefoot in the spring and": [65535, 0], "went barefoot in the spring and the": [65535, 0], "barefoot in the spring and the last": [65535, 0], "in the spring and the last to": [65535, 0], "the spring and the last to resume": [65535, 0], "spring and the last to resume leather": [65535, 0], "and the last to resume leather in": [65535, 0], "the last to resume leather in the": [65535, 0], "last to resume leather in the fall": [65535, 0], "to resume leather in the fall he": [65535, 0], "resume leather in the fall he never": [65535, 0], "leather in the fall he never had": [65535, 0], "in the fall he never had to": [65535, 0], "the fall he never had to wash": [65535, 0], "fall he never had to wash nor": [65535, 0], "he never had to wash nor put": [65535, 0], "never had to wash nor put on": [65535, 0], "had to wash nor put on clean": [65535, 0], "to wash nor put on clean clothes": [65535, 0], "wash nor put on clean clothes he": [65535, 0], "nor put on clean clothes he could": [65535, 0], "put on clean clothes he could swear": [65535, 0], "on clean clothes he could swear wonderfully": [65535, 0], "clean clothes he could swear wonderfully in": [65535, 0], "clothes he could swear wonderfully in a": [65535, 0], "he could swear wonderfully in a word": [65535, 0], "could swear wonderfully in a word everything": [65535, 0], "swear wonderfully in a word everything that": [65535, 0], "wonderfully in a word everything that goes": [65535, 0], "in a word everything that goes to": [65535, 0], "a word everything that goes to make": [65535, 0], "word everything that goes to make life": [65535, 0], "everything that goes to make life precious": [65535, 0], "that goes to make life precious that": [65535, 0], "goes to make life precious that boy": [65535, 0], "to make life precious that boy had": [65535, 0], "make life precious that boy had so": [65535, 0], "life precious that boy had so thought": [65535, 0], "precious that boy had so thought every": [65535, 0], "that boy had so thought every harassed": [65535, 0], "boy had so thought every harassed hampered": [65535, 0], "had so thought every harassed hampered respectable": [65535, 0], "so thought every harassed hampered respectable boy": [65535, 0], "thought every harassed hampered respectable boy in": [65535, 0], "every harassed hampered respectable boy in st": [65535, 0], "harassed hampered respectable boy in st petersburg": [65535, 0], "hampered respectable boy in st petersburg tom": [65535, 0], "respectable boy in st petersburg tom hailed": [65535, 0], "boy in st petersburg tom hailed the": [65535, 0], "in st petersburg tom hailed the romantic": [65535, 0], "st petersburg tom hailed the romantic outcast": [65535, 0], "petersburg tom hailed the romantic outcast hello": [65535, 0], "tom hailed the romantic outcast hello huckleberry": [65535, 0], "hailed the romantic outcast hello huckleberry hello": [65535, 0], "the romantic outcast hello huckleberry hello yourself": [65535, 0], "romantic outcast hello huckleberry hello yourself and": [65535, 0], "outcast hello huckleberry hello yourself and see": [65535, 0], "hello huckleberry hello yourself and see how": [65535, 0], "huckleberry hello yourself and see how you": [65535, 0], "hello yourself and see how you like": [65535, 0], "yourself and see how you like it": [65535, 0], "and see how you like it what's": [65535, 0], "see how you like it what's that": [65535, 0], "how you like it what's that you": [65535, 0], "you like it what's that you got": [65535, 0], "like it what's that you got dead": [65535, 0], "it what's that you got dead cat": [65535, 0], "what's that you got dead cat lemme": [65535, 0], "that you got dead cat lemme see": [65535, 0], "you got dead cat lemme see him": [65535, 0], "got dead cat lemme see him huck": [65535, 0], "dead cat lemme see him huck my": [65535, 0], "cat lemme see him huck my he's": [65535, 0], "lemme see him huck my he's pretty": [65535, 0], "see him huck my he's pretty stiff": [65535, 0], "him huck my he's pretty stiff where'd": [65535, 0], "huck my he's pretty stiff where'd you": [65535, 0], "my he's pretty stiff where'd you get": [65535, 0], "he's pretty stiff where'd you get him": [65535, 0], "pretty stiff where'd you get him bought": [65535, 0], "stiff where'd you get him bought him": [65535, 0], "where'd you get him bought him off'n": [65535, 0], "you get him bought him off'n a": [65535, 0], "get him bought him off'n a boy": [65535, 0], "him bought him off'n a boy what": [65535, 0], "bought him off'n a boy what did": [65535, 0], "him off'n a boy what did you": [65535, 0], "off'n a boy what did you give": [65535, 0], "a boy what did you give i": [65535, 0], "boy what did you give i give": [65535, 0], "what did you give i give a": [65535, 0], "did you give i give a blue": [65535, 0], "you give i give a blue ticket": [65535, 0], "give i give a blue ticket and": [65535, 0], "i give a blue ticket and a": [65535, 0], "give a blue ticket and a bladder": [65535, 0], "a blue ticket and a bladder that": [65535, 0], "blue ticket and a bladder that i": [65535, 0], "ticket and a bladder that i got": [65535, 0], "and a bladder that i got at": [65535, 0], "a bladder that i got at the": [65535, 0], "bladder that i got at the slaughter": [65535, 0], "that i got at the slaughter house": [65535, 0], "i got at the slaughter house where'd": [65535, 0], "got at the slaughter house where'd you": [65535, 0], "at the slaughter house where'd you get": [65535, 0], "the slaughter house where'd you get the": [65535, 0], "slaughter house where'd you get the blue": [65535, 0], "house where'd you get the blue ticket": [65535, 0], "where'd you get the blue ticket bought": [65535, 0], "you get the blue ticket bought it": [65535, 0], "get the blue ticket bought it off'n": [65535, 0], "the blue ticket bought it off'n ben": [65535, 0], "blue ticket bought it off'n ben rogers": [65535, 0], "ticket bought it off'n ben rogers two": [65535, 0], "bought it off'n ben rogers two weeks": [65535, 0], "it off'n ben rogers two weeks ago": [65535, 0], "off'n ben rogers two weeks ago for": [65535, 0], "ben rogers two weeks ago for a": [65535, 0], "rogers two weeks ago for a hoop": [65535, 0], "two weeks ago for a hoop stick": [65535, 0], "weeks ago for a hoop stick say": [65535, 0], "ago for a hoop stick say what": [65535, 0], "for a hoop stick say what is": [65535, 0], "a hoop stick say what is dead": [65535, 0], "hoop stick say what is dead cats": [65535, 0], "stick say what is dead cats good": [65535, 0], "say what is dead cats good for": [65535, 0], "what is dead cats good for huck": [65535, 0], "is dead cats good for huck good": [65535, 0], "dead cats good for huck good for": [65535, 0], "cats good for huck good for cure": [65535, 0], "good for huck good for cure warts": [65535, 0], "for huck good for cure warts with": [65535, 0], "huck good for cure warts with no": [65535, 0], "good for cure warts with no is": [65535, 0], "for cure warts with no is that": [65535, 0], "cure warts with no is that so": [65535, 0], "warts with no is that so i": [65535, 0], "with no is that so i know": [65535, 0], "no is that so i know something": [65535, 0], "is that so i know something that's": [65535, 0], "that so i know something that's better": [65535, 0], "so i know something that's better i": [65535, 0], "i know something that's better i bet": [65535, 0], "know something that's better i bet you": [65535, 0], "something that's better i bet you don't": [65535, 0], "that's better i bet you don't what": [65535, 0], "better i bet you don't what is": [65535, 0], "i bet you don't what is it": [65535, 0], "bet you don't what is it why": [65535, 0], "you don't what is it why spunk": [65535, 0], "don't what is it why spunk water": [65535, 0], "what is it why spunk water spunk": [65535, 0], "is it why spunk water spunk water": [65535, 0], "it why spunk water spunk water i": [65535, 0], "why spunk water spunk water i wouldn't": [65535, 0], "spunk water spunk water i wouldn't give": [65535, 0], "water spunk water i wouldn't give a": [65535, 0], "spunk water i wouldn't give a dern": [65535, 0], "water i wouldn't give a dern for": [65535, 0], "i wouldn't give a dern for spunk": [65535, 0], "wouldn't give a dern for spunk water": [65535, 0], "give a dern for spunk water you": [65535, 0], "a dern for spunk water you wouldn't": [65535, 0], "dern for spunk water you wouldn't wouldn't": [65535, 0], "for spunk water you wouldn't wouldn't you": [65535, 0], "spunk water you wouldn't wouldn't you d'you": [65535, 0], "water you wouldn't wouldn't you d'you ever": [65535, 0], "you wouldn't wouldn't you d'you ever try": [65535, 0], "wouldn't wouldn't you d'you ever try it": [65535, 0], "wouldn't you d'you ever try it no": [65535, 0], "you d'you ever try it no i": [65535, 0], "d'you ever try it no i hain't": [65535, 0], "ever try it no i hain't but": [65535, 0], "try it no i hain't but bob": [65535, 0], "it no i hain't but bob tanner": [65535, 0], "no i hain't but bob tanner did": [65535, 0], "i hain't but bob tanner did who": [65535, 0], "hain't but bob tanner did who told": [65535, 0], "but bob tanner did who told you": [65535, 0], "bob tanner did who told you so": [65535, 0], "tanner did who told you so why": [65535, 0], "did who told you so why he": [65535, 0], "who told you so why he told": [65535, 0], "told you so why he told jeff": [65535, 0], "you so why he told jeff thatcher": [65535, 0], "so why he told jeff thatcher and": [65535, 0], "why he told jeff thatcher and jeff": [65535, 0], "he told jeff thatcher and jeff told": [65535, 0], "told jeff thatcher and jeff told johnny": [65535, 0], "jeff thatcher and jeff told johnny baker": [65535, 0], "thatcher and jeff told johnny baker and": [65535, 0], "and jeff told johnny baker and johnny": [65535, 0], "jeff told johnny baker and johnny told": [65535, 0], "told johnny baker and johnny told jim": [65535, 0], "johnny baker and johnny told jim hollis": [65535, 0], "baker and johnny told jim hollis and": [65535, 0], "and johnny told jim hollis and jim": [65535, 0], "johnny told jim hollis and jim told": [65535, 0], "told jim hollis and jim told ben": [65535, 0], "jim hollis and jim told ben rogers": [65535, 0], "hollis and jim told ben rogers and": [65535, 0], "and jim told ben rogers and ben": [65535, 0], "jim told ben rogers and ben told": [65535, 0], "told ben rogers and ben told a": [65535, 0], "ben rogers and ben told a nigger": [65535, 0], "rogers and ben told a nigger and": [65535, 0], "and ben told a nigger and the": [65535, 0], "ben told a nigger and the nigger": [65535, 0], "told a nigger and the nigger told": [65535, 0], "a nigger and the nigger told me": [65535, 0], "nigger and the nigger told me there": [65535, 0], "and the nigger told me there now": [65535, 0], "the nigger told me there now well": [65535, 0], "nigger told me there now well what": [65535, 0], "told me there now well what of": [65535, 0], "me there now well what of it": [65535, 0], "there now well what of it they'll": [65535, 0], "now well what of it they'll all": [65535, 0], "well what of it they'll all lie": [65535, 0], "what of it they'll all lie leastways": [65535, 0], "of it they'll all lie leastways all": [65535, 0], "it they'll all lie leastways all but": [65535, 0], "they'll all lie leastways all but the": [65535, 0], "all lie leastways all but the nigger": [65535, 0], "lie leastways all but the nigger i": [65535, 0], "leastways all but the nigger i don't": [65535, 0], "all but the nigger i don't know": [65535, 0], "but the nigger i don't know him": [65535, 0], "the nigger i don't know him but": [65535, 0], "nigger i don't know him but i": [65535, 0], "i don't know him but i never": [65535, 0], "don't know him but i never see": [65535, 0], "know him but i never see a": [65535, 0], "him but i never see a nigger": [65535, 0], "but i never see a nigger that": [65535, 0], "i never see a nigger that wouldn't": [65535, 0], "never see a nigger that wouldn't lie": [65535, 0], "see a nigger that wouldn't lie shucks": [65535, 0], "a nigger that wouldn't lie shucks now": [65535, 0], "nigger that wouldn't lie shucks now you": [65535, 0], "that wouldn't lie shucks now you tell": [65535, 0], "wouldn't lie shucks now you tell me": [65535, 0], "lie shucks now you tell me how": [65535, 0], "shucks now you tell me how bob": [65535, 0], "now you tell me how bob tanner": [65535, 0], "you tell me how bob tanner done": [65535, 0], "tell me how bob tanner done it": [65535, 0], "me how bob tanner done it huck": [65535, 0], "how bob tanner done it huck why": [65535, 0], "bob tanner done it huck why he": [65535, 0], "tanner done it huck why he took": [65535, 0], "done it huck why he took and": [65535, 0], "it huck why he took and dipped": [65535, 0], "huck why he took and dipped his": [65535, 0], "why he took and dipped his hand": [65535, 0], "he took and dipped his hand in": [65535, 0], "took and dipped his hand in a": [65535, 0], "and dipped his hand in a rotten": [65535, 0], "dipped his hand in a rotten stump": [65535, 0], "his hand in a rotten stump where": [65535, 0], "hand in a rotten stump where the": [65535, 0], "in a rotten stump where the rain": [65535, 0], "a rotten stump where the rain water": [65535, 0], "rotten stump where the rain water was": [65535, 0], "stump where the rain water was in": [65535, 0], "where the rain water was in the": [65535, 0], "the rain water was in the daytime": [65535, 0], "rain water was in the daytime certainly": [65535, 0], "water was in the daytime certainly with": [65535, 0], "was in the daytime certainly with his": [65535, 0], "in the daytime certainly with his face": [65535, 0], "the daytime certainly with his face to": [65535, 0], "daytime certainly with his face to the": [65535, 0], "certainly with his face to the stump": [65535, 0], "with his face to the stump yes": [65535, 0], "his face to the stump yes least": [65535, 0], "face to the stump yes least i": [65535, 0], "to the stump yes least i reckon": [65535, 0], "the stump yes least i reckon so": [65535, 0], "stump yes least i reckon so did": [65535, 0], "yes least i reckon so did he": [65535, 0], "least i reckon so did he say": [65535, 0], "i reckon so did he say anything": [65535, 0], "reckon so did he say anything i": [65535, 0], "so did he say anything i don't": [65535, 0], "did he say anything i don't reckon": [65535, 0], "he say anything i don't reckon he": [65535, 0], "say anything i don't reckon he did": [65535, 0], "anything i don't reckon he did i": [65535, 0], "i don't reckon he did i don't": [65535, 0], "don't reckon he did i don't know": [65535, 0], "reckon he did i don't know aha": [65535, 0], "he did i don't know aha talk": [65535, 0], "did i don't know aha talk about": [65535, 0], "i don't know aha talk about trying": [65535, 0], "don't know aha talk about trying to": [65535, 0], "know aha talk about trying to cure": [65535, 0], "aha talk about trying to cure warts": [65535, 0], "talk about trying to cure warts with": [65535, 0], "about trying to cure warts with spunk": [65535, 0], "trying to cure warts with spunk water": [65535, 0], "to cure warts with spunk water such": [65535, 0], "cure warts with spunk water such a": [65535, 0], "warts with spunk water such a blame": [65535, 0], "with spunk water such a blame fool": [65535, 0], "spunk water such a blame fool way": [65535, 0], "water such a blame fool way as": [65535, 0], "such a blame fool way as that": [65535, 0], "a blame fool way as that why": [65535, 0], "blame fool way as that why that": [65535, 0], "fool way as that why that ain't": [65535, 0], "way as that why that ain't a": [65535, 0], "as that why that ain't a going": [65535, 0], "that why that ain't a going to": [65535, 0], "why that ain't a going to do": [65535, 0], "that ain't a going to do any": [65535, 0], "ain't a going to do any good": [65535, 0], "a going to do any good you": [65535, 0], "going to do any good you got": [65535, 0], "to do any good you got to": [65535, 0], "do any good you got to go": [65535, 0], "any good you got to go all": [65535, 0], "good you got to go all by": [65535, 0], "you got to go all by yourself": [65535, 0], "got to go all by yourself to": [65535, 0], "to go all by yourself to the": [65535, 0], "go all by yourself to the middle": [65535, 0], "all by yourself to the middle of": [65535, 0], "by yourself to the middle of the": [65535, 0], "yourself to the middle of the woods": [65535, 0], "to the middle of the woods where": [65535, 0], "the middle of the woods where you": [65535, 0], "middle of the woods where you know": [65535, 0], "of the woods where you know there's": [65535, 0], "the woods where you know there's a": [65535, 0], "woods where you know there's a spunk": [65535, 0], "where you know there's a spunk water": [65535, 0], "you know there's a spunk water stump": [65535, 0], "know there's a spunk water stump and": [65535, 0], "there's a spunk water stump and just": [65535, 0], "a spunk water stump and just as": [65535, 0], "spunk water stump and just as it's": [65535, 0], "water stump and just as it's midnight": [65535, 0], "stump and just as it's midnight you": [65535, 0], "and just as it's midnight you back": [65535, 0], "just as it's midnight you back up": [65535, 0], "as it's midnight you back up against": [65535, 0], "it's midnight you back up against the": [65535, 0], "midnight you back up against the stump": [65535, 0], "you back up against the stump and": [65535, 0], "back up against the stump and jam": [65535, 0], "up against the stump and jam your": [65535, 0], "against the stump and jam your hand": [65535, 0], "the stump and jam your hand in": [65535, 0], "stump and jam your hand in and": [65535, 0], "and jam your hand in and say": [65535, 0], "jam your hand in and say 'barley": [65535, 0], "your hand in and say 'barley corn": [65535, 0], "hand in and say 'barley corn barley": [65535, 0], "in and say 'barley corn barley corn": [65535, 0], "and say 'barley corn barley corn injun": [65535, 0], "say 'barley corn barley corn injun meal": [65535, 0], "'barley corn barley corn injun meal shorts": [65535, 0], "corn barley corn injun meal shorts spunk": [65535, 0], "barley corn injun meal shorts spunk water": [65535, 0], "corn injun meal shorts spunk water spunk": [65535, 0], "injun meal shorts spunk water spunk water": [65535, 0], "meal shorts spunk water spunk water swaller": [65535, 0], "shorts spunk water spunk water swaller these": [65535, 0], "spunk water spunk water swaller these warts": [65535, 0], "water spunk water swaller these warts '": [65535, 0], "spunk water swaller these warts ' and": [65535, 0], "water swaller these warts ' and then": [65535, 0], "swaller these warts ' and then walk": [65535, 0], "these warts ' and then walk away": [65535, 0], "warts ' and then walk away quick": [65535, 0], "' and then walk away quick eleven": [65535, 0], "and then walk away quick eleven steps": [65535, 0], "then walk away quick eleven steps with": [65535, 0], "walk away quick eleven steps with your": [65535, 0], "away quick eleven steps with your eyes": [65535, 0], "quick eleven steps with your eyes shut": [65535, 0], "eleven steps with your eyes shut and": [65535, 0], "steps with your eyes shut and then": [65535, 0], "with your eyes shut and then turn": [65535, 0], "your eyes shut and then turn around": [65535, 0], "eyes shut and then turn around three": [65535, 0], "shut and then turn around three times": [65535, 0], "and then turn around three times and": [65535, 0], "then turn around three times and walk": [65535, 0], "turn around three times and walk home": [65535, 0], "around three times and walk home without": [65535, 0], "three times and walk home without speaking": [65535, 0], "times and walk home without speaking to": [65535, 0], "and walk home without speaking to anybody": [65535, 0], "walk home without speaking to anybody because": [65535, 0], "home without speaking to anybody because if": [65535, 0], "without speaking to anybody because if you": [65535, 0], "speaking to anybody because if you speak": [65535, 0], "to anybody because if you speak the": [65535, 0], "anybody because if you speak the charm's": [65535, 0], "because if you speak the charm's busted": [65535, 0], "if you speak the charm's busted well": [65535, 0], "you speak the charm's busted well that": [65535, 0], "speak the charm's busted well that sounds": [65535, 0], "the charm's busted well that sounds like": [65535, 0], "charm's busted well that sounds like a": [65535, 0], "busted well that sounds like a good": [65535, 0], "well that sounds like a good way": [65535, 0], "that sounds like a good way but": [65535, 0], "sounds like a good way but that": [65535, 0], "like a good way but that ain't": [65535, 0], "a good way but that ain't the": [65535, 0], "good way but that ain't the way": [65535, 0], "way but that ain't the way bob": [65535, 0], "but that ain't the way bob tanner": [65535, 0], "that ain't the way bob tanner done": [65535, 0], "ain't the way bob tanner done no": [65535, 0], "the way bob tanner done no sir": [65535, 0], "way bob tanner done no sir you": [65535, 0], "bob tanner done no sir you can": [65535, 0], "tanner done no sir you can bet": [65535, 0], "done no sir you can bet he": [65535, 0], "no sir you can bet he didn't": [65535, 0], "sir you can bet he didn't becuz": [65535, 0], "you can bet he didn't becuz he's": [65535, 0], "can bet he didn't becuz he's the": [65535, 0], "bet he didn't becuz he's the wartiest": [65535, 0], "he didn't becuz he's the wartiest boy": [65535, 0], "didn't becuz he's the wartiest boy in": [65535, 0], "becuz he's the wartiest boy in this": [65535, 0], "he's the wartiest boy in this town": [65535, 0], "the wartiest boy in this town and": [65535, 0], "wartiest boy in this town and he": [65535, 0], "boy in this town and he wouldn't": [65535, 0], "in this town and he wouldn't have": [65535, 0], "this town and he wouldn't have a": [65535, 0], "town and he wouldn't have a wart": [65535, 0], "and he wouldn't have a wart on": [65535, 0], "he wouldn't have a wart on him": [65535, 0], "wouldn't have a wart on him if": [65535, 0], "have a wart on him if he'd": [65535, 0], "a wart on him if he'd knowed": [65535, 0], "wart on him if he'd knowed how": [65535, 0], "on him if he'd knowed how to": [65535, 0], "him if he'd knowed how to work": [65535, 0], "if he'd knowed how to work spunk": [65535, 0], "he'd knowed how to work spunk water": [65535, 0], "knowed how to work spunk water i've": [65535, 0], "how to work spunk water i've took": [65535, 0], "to work spunk water i've took off": [65535, 0], "work spunk water i've took off thousands": [65535, 0], "spunk water i've took off thousands of": [65535, 0], "water i've took off thousands of warts": [65535, 0], "i've took off thousands of warts off": [65535, 0], "took off thousands of warts off of": [65535, 0], "off thousands of warts off of my": [65535, 0], "thousands of warts off of my hands": [65535, 0], "of warts off of my hands that": [65535, 0], "warts off of my hands that way": [65535, 0], "off of my hands that way huck": [65535, 0], "of my hands that way huck i": [65535, 0], "my hands that way huck i play": [65535, 0], "hands that way huck i play with": [65535, 0], "that way huck i play with frogs": [65535, 0], "way huck i play with frogs so": [65535, 0], "huck i play with frogs so much": [65535, 0], "i play with frogs so much that": [65535, 0], "play with frogs so much that i've": [65535, 0], "with frogs so much that i've always": [65535, 0], "frogs so much that i've always got": [65535, 0], "so much that i've always got considerable": [65535, 0], "much that i've always got considerable many": [65535, 0], "that i've always got considerable many warts": [65535, 0], "i've always got considerable many warts sometimes": [65535, 0], "always got considerable many warts sometimes i": [65535, 0], "got considerable many warts sometimes i take": [65535, 0], "considerable many warts sometimes i take 'em": [65535, 0], "many warts sometimes i take 'em off": [65535, 0], "warts sometimes i take 'em off with": [65535, 0], "sometimes i take 'em off with a": [65535, 0], "i take 'em off with a bean": [65535, 0], "take 'em off with a bean yes": [65535, 0], "'em off with a bean yes bean's": [65535, 0], "off with a bean yes bean's good": [65535, 0], "with a bean yes bean's good i've": [65535, 0], "a bean yes bean's good i've done": [65535, 0], "bean yes bean's good i've done that": [65535, 0], "yes bean's good i've done that have": [65535, 0], "bean's good i've done that have you": [65535, 0], "good i've done that have you what's": [65535, 0], "i've done that have you what's your": [65535, 0], "done that have you what's your way": [65535, 0], "that have you what's your way you": [65535, 0], "have you what's your way you take": [65535, 0], "you what's your way you take and": [65535, 0], "what's your way you take and split": [65535, 0], "your way you take and split the": [65535, 0], "way you take and split the bean": [65535, 0], "you take and split the bean and": [65535, 0], "take and split the bean and cut": [65535, 0], "and split the bean and cut the": [65535, 0], "split the bean and cut the wart": [65535, 0], "the bean and cut the wart so": [65535, 0], "bean and cut the wart so as": [65535, 0], "and cut the wart so as to": [65535, 0], "cut the wart so as to get": [65535, 0], "the wart so as to get some": [65535, 0], "wart so as to get some blood": [65535, 0], "so as to get some blood and": [65535, 0], "as to get some blood and then": [65535, 0], "to get some blood and then you": [65535, 0], "get some blood and then you put": [65535, 0], "some blood and then you put the": [65535, 0], "blood and then you put the blood": [65535, 0], "and then you put the blood on": [65535, 0], "then you put the blood on one": [65535, 0], "you put the blood on one piece": [65535, 0], "put the blood on one piece of": [65535, 0], "the blood on one piece of the": [65535, 0], "blood on one piece of the bean": [65535, 0], "on one piece of the bean and": [65535, 0], "one piece of the bean and take": [65535, 0], "piece of the bean and take and": [65535, 0], "of the bean and take and dig": [65535, 0], "the bean and take and dig a": [65535, 0], "bean and take and dig a hole": [65535, 0], "and take and dig a hole and": [65535, 0], "take and dig a hole and bury": [65535, 0], "and dig a hole and bury it": [65535, 0], "dig a hole and bury it 'bout": [65535, 0], "a hole and bury it 'bout midnight": [65535, 0], "hole and bury it 'bout midnight at": [65535, 0], "and bury it 'bout midnight at the": [65535, 0], "bury it 'bout midnight at the crossroads": [65535, 0], "it 'bout midnight at the crossroads in": [65535, 0], "'bout midnight at the crossroads in the": [65535, 0], "midnight at the crossroads in the dark": [65535, 0], "at the crossroads in the dark of": [65535, 0], "the crossroads in the dark of the": [65535, 0], "crossroads in the dark of the moon": [65535, 0], "in the dark of the moon and": [65535, 0], "the dark of the moon and then": [65535, 0], "dark of the moon and then you": [65535, 0], "of the moon and then you burn": [65535, 0], "the moon and then you burn up": [65535, 0], "moon and then you burn up the": [65535, 0], "and then you burn up the rest": [65535, 0], "then you burn up the rest of": [65535, 0], "you burn up the rest of the": [65535, 0], "burn up the rest of the bean": [65535, 0], "up the rest of the bean you": [65535, 0], "the rest of the bean you see": [65535, 0], "rest of the bean you see that": [65535, 0], "of the bean you see that piece": [65535, 0], "the bean you see that piece that's": [65535, 0], "bean you see that piece that's got": [65535, 0], "you see that piece that's got the": [65535, 0], "see that piece that's got the blood": [65535, 0], "that piece that's got the blood on": [65535, 0], "piece that's got the blood on it": [65535, 0], "that's got the blood on it will": [65535, 0], "got the blood on it will keep": [65535, 0], "the blood on it will keep drawing": [65535, 0], "blood on it will keep drawing and": [65535, 0], "on it will keep drawing and drawing": [65535, 0], "it will keep drawing and drawing trying": [65535, 0], "will keep drawing and drawing trying to": [65535, 0], "keep drawing and drawing trying to fetch": [65535, 0], "drawing and drawing trying to fetch the": [65535, 0], "and drawing trying to fetch the other": [65535, 0], "drawing trying to fetch the other piece": [65535, 0], "trying to fetch the other piece to": [65535, 0], "to fetch the other piece to it": [65535, 0], "fetch the other piece to it and": [65535, 0], "the other piece to it and so": [65535, 0], "other piece to it and so that": [65535, 0], "piece to it and so that helps": [65535, 0], "to it and so that helps the": [65535, 0], "it and so that helps the blood": [65535, 0], "and so that helps the blood to": [65535, 0], "so that helps the blood to draw": [65535, 0], "that helps the blood to draw the": [65535, 0], "helps the blood to draw the wart": [65535, 0], "the blood to draw the wart and": [65535, 0], "blood to draw the wart and pretty": [65535, 0], "to draw the wart and pretty soon": [65535, 0], "draw the wart and pretty soon off": [65535, 0], "the wart and pretty soon off she": [65535, 0], "wart and pretty soon off she comes": [65535, 0], "and pretty soon off she comes yes": [65535, 0], "pretty soon off she comes yes that's": [65535, 0], "soon off she comes yes that's it": [65535, 0], "off she comes yes that's it huck": [65535, 0], "she comes yes that's it huck that's": [65535, 0], "comes yes that's it huck that's it": [65535, 0], "yes that's it huck that's it though": [65535, 0], "that's it huck that's it though when": [65535, 0], "it huck that's it though when you're": [65535, 0], "huck that's it though when you're burying": [65535, 0], "that's it though when you're burying it": [65535, 0], "it though when you're burying it if": [65535, 0], "though when you're burying it if you": [65535, 0], "when you're burying it if you say": [65535, 0], "you're burying it if you say 'down": [65535, 0], "burying it if you say 'down bean": [65535, 0], "it if you say 'down bean off": [65535, 0], "if you say 'down bean off wart": [65535, 0], "you say 'down bean off wart come": [65535, 0], "say 'down bean off wart come no": [65535, 0], "'down bean off wart come no more": [65535, 0], "bean off wart come no more to": [65535, 0], "off wart come no more to bother": [65535, 0], "wart come no more to bother me": [65535, 0], "come no more to bother me '": [65535, 0], "no more to bother me ' it's": [65535, 0], "more to bother me ' it's better": [65535, 0], "to bother me ' it's better that's": [65535, 0], "bother me ' it's better that's the": [65535, 0], "me ' it's better that's the way": [65535, 0], "' it's better that's the way joe": [65535, 0], "it's better that's the way joe harper": [65535, 0], "better that's the way joe harper does": [65535, 0], "that's the way joe harper does and": [65535, 0], "the way joe harper does and he's": [65535, 0], "way joe harper does and he's been": [65535, 0], "joe harper does and he's been nearly": [65535, 0], "harper does and he's been nearly to": [65535, 0], "does and he's been nearly to coonville": [65535, 0], "and he's been nearly to coonville and": [65535, 0], "he's been nearly to coonville and most": [65535, 0], "been nearly to coonville and most everywheres": [65535, 0], "nearly to coonville and most everywheres but": [65535, 0], "to coonville and most everywheres but say": [65535, 0], "coonville and most everywheres but say how": [65535, 0], "and most everywheres but say how do": [65535, 0], "most everywheres but say how do you": [65535, 0], "everywheres but say how do you cure": [65535, 0], "but say how do you cure 'em": [65535, 0], "say how do you cure 'em with": [65535, 0], "how do you cure 'em with dead": [65535, 0], "do you cure 'em with dead cats": [65535, 0], "you cure 'em with dead cats why": [65535, 0], "cure 'em with dead cats why you": [65535, 0], "'em with dead cats why you take": [65535, 0], "with dead cats why you take your": [65535, 0], "dead cats why you take your cat": [65535, 0], "cats why you take your cat and": [65535, 0], "why you take your cat and go": [65535, 0], "you take your cat and go and": [65535, 0], "take your cat and go and get": [65535, 0], "your cat and go and get in": [65535, 0], "cat and go and get in the": [65535, 0], "and go and get in the graveyard": [65535, 0], "go and get in the graveyard 'long": [65535, 0], "and get in the graveyard 'long about": [65535, 0], "get in the graveyard 'long about midnight": [65535, 0], "in the graveyard 'long about midnight when": [65535, 0], "the graveyard 'long about midnight when somebody": [65535, 0], "graveyard 'long about midnight when somebody that": [65535, 0], "'long about midnight when somebody that was": [65535, 0], "about midnight when somebody that was wicked": [65535, 0], "midnight when somebody that was wicked has": [65535, 0], "when somebody that was wicked has been": [65535, 0], "somebody that was wicked has been buried": [65535, 0], "that was wicked has been buried and": [65535, 0], "was wicked has been buried and when": [65535, 0], "wicked has been buried and when it's": [65535, 0], "has been buried and when it's midnight": [65535, 0], "been buried and when it's midnight a": [65535, 0], "buried and when it's midnight a devil": [65535, 0], "and when it's midnight a devil will": [65535, 0], "when it's midnight a devil will come": [65535, 0], "it's midnight a devil will come or": [65535, 0], "midnight a devil will come or maybe": [65535, 0], "a devil will come or maybe two": [65535, 0], "devil will come or maybe two or": [65535, 0], "will come or maybe two or three": [65535, 0], "come or maybe two or three but": [65535, 0], "or maybe two or three but you": [65535, 0], "maybe two or three but you can't": [65535, 0], "two or three but you can't see": [65535, 0], "or three but you can't see 'em": [65535, 0], "three but you can't see 'em you": [65535, 0], "but you can't see 'em you can": [65535, 0], "you can't see 'em you can only": [65535, 0], "can't see 'em you can only hear": [65535, 0], "see 'em you can only hear something": [65535, 0], "'em you can only hear something like": [65535, 0], "you can only hear something like the": [65535, 0], "can only hear something like the wind": [65535, 0], "only hear something like the wind or": [65535, 0], "hear something like the wind or maybe": [65535, 0], "something like the wind or maybe hear": [65535, 0], "like the wind or maybe hear 'em": [65535, 0], "the wind or maybe hear 'em talk": [65535, 0], "wind or maybe hear 'em talk and": [65535, 0], "or maybe hear 'em talk and when": [65535, 0], "maybe hear 'em talk and when they're": [65535, 0], "hear 'em talk and when they're taking": [65535, 0], "'em talk and when they're taking that": [65535, 0], "talk and when they're taking that feller": [65535, 0], "and when they're taking that feller away": [65535, 0], "when they're taking that feller away you": [65535, 0], "they're taking that feller away you heave": [65535, 0], "taking that feller away you heave your": [65535, 0], "that feller away you heave your cat": [65535, 0], "feller away you heave your cat after": [65535, 0], "away you heave your cat after 'em": [65535, 0], "you heave your cat after 'em and": [65535, 0], "heave your cat after 'em and say": [65535, 0], "your cat after 'em and say 'devil": [65535, 0], "cat after 'em and say 'devil follow": [65535, 0], "after 'em and say 'devil follow corpse": [65535, 0], "'em and say 'devil follow corpse cat": [65535, 0], "and say 'devil follow corpse cat follow": [65535, 0], "say 'devil follow corpse cat follow devil": [65535, 0], "'devil follow corpse cat follow devil warts": [65535, 0], "follow corpse cat follow devil warts follow": [65535, 0], "corpse cat follow devil warts follow cat": [65535, 0], "cat follow devil warts follow cat i'm": [65535, 0], "follow devil warts follow cat i'm done": [65535, 0], "devil warts follow cat i'm done with": [65535, 0], "warts follow cat i'm done with ye": [65535, 0], "follow cat i'm done with ye '": [65535, 0], "cat i'm done with ye ' that'll": [65535, 0], "i'm done with ye ' that'll fetch": [65535, 0], "done with ye ' that'll fetch any": [65535, 0], "with ye ' that'll fetch any wart": [65535, 0], "ye ' that'll fetch any wart sounds": [65535, 0], "' that'll fetch any wart sounds right": [65535, 0], "that'll fetch any wart sounds right d'you": [65535, 0], "fetch any wart sounds right d'you ever": [65535, 0], "any wart sounds right d'you ever try": [65535, 0], "wart sounds right d'you ever try it": [65535, 0], "sounds right d'you ever try it huck": [65535, 0], "right d'you ever try it huck no": [65535, 0], "d'you ever try it huck no but": [65535, 0], "ever try it huck no but old": [65535, 0], "try it huck no but old mother": [65535, 0], "it huck no but old mother hopkins": [65535, 0], "huck no but old mother hopkins told": [65535, 0], "no but old mother hopkins told me": [65535, 0], "but old mother hopkins told me well": [65535, 0], "old mother hopkins told me well i": [65535, 0], "mother hopkins told me well i reckon": [65535, 0], "hopkins told me well i reckon it's": [65535, 0], "told me well i reckon it's so": [65535, 0], "me well i reckon it's so then": [65535, 0], "well i reckon it's so then becuz": [65535, 0], "i reckon it's so then becuz they": [65535, 0], "reckon it's so then becuz they say": [65535, 0], "it's so then becuz they say she's": [65535, 0], "so then becuz they say she's a": [65535, 0], "then becuz they say she's a witch": [65535, 0], "becuz they say she's a witch say": [65535, 0], "they say she's a witch say why": [65535, 0], "say she's a witch say why tom": [65535, 0], "she's a witch say why tom i": [65535, 0], "a witch say why tom i know": [65535, 0], "witch say why tom i know she": [65535, 0], "say why tom i know she is": [65535, 0], "why tom i know she is she": [65535, 0], "tom i know she is she witched": [65535, 0], "i know she is she witched pap": [65535, 0], "know she is she witched pap pap": [65535, 0], "she is she witched pap pap says": [65535, 0], "is she witched pap pap says so": [65535, 0], "she witched pap pap says so his": [65535, 0], "witched pap pap says so his own": [65535, 0], "pap pap says so his own self": [65535, 0], "pap says so his own self he": [65535, 0], "says so his own self he come": [65535, 0], "so his own self he come along": [65535, 0], "his own self he come along one": [65535, 0], "own self he come along one day": [65535, 0], "self he come along one day and": [65535, 0], "he come along one day and he": [65535, 0], "come along one day and he see": [65535, 0], "along one day and he see she": [65535, 0], "one day and he see she was": [65535, 0], "day and he see she was a": [65535, 0], "and he see she was a witching": [65535, 0], "he see she was a witching him": [65535, 0], "see she was a witching him so": [65535, 0], "she was a witching him so he": [65535, 0], "was a witching him so he took": [65535, 0], "a witching him so he took up": [65535, 0], "witching him so he took up a": [65535, 0], "him so he took up a rock": [65535, 0], "so he took up a rock and": [65535, 0], "he took up a rock and if": [65535, 0], "took up a rock and if she": [65535, 0], "up a rock and if she hadn't": [65535, 0], "a rock and if she hadn't dodged": [65535, 0], "rock and if she hadn't dodged he'd": [65535, 0], "and if she hadn't dodged he'd a": [65535, 0], "if she hadn't dodged he'd a got": [65535, 0], "she hadn't dodged he'd a got her": [65535, 0], "hadn't dodged he'd a got her well": [65535, 0], "dodged he'd a got her well that": [65535, 0], "he'd a got her well that very": [65535, 0], "a got her well that very night": [65535, 0], "got her well that very night he": [65535, 0], "her well that very night he rolled": [65535, 0], "well that very night he rolled off'n": [65535, 0], "that very night he rolled off'n a": [65535, 0], "very night he rolled off'n a shed": [65535, 0], "night he rolled off'n a shed wher'": [65535, 0], "he rolled off'n a shed wher' he": [65535, 0], "rolled off'n a shed wher' he was": [65535, 0], "off'n a shed wher' he was a": [65535, 0], "a shed wher' he was a layin": [65535, 0], "shed wher' he was a layin drunk": [65535, 0], "wher' he was a layin drunk and": [65535, 0], "he was a layin drunk and broke": [65535, 0], "was a layin drunk and broke his": [65535, 0], "a layin drunk and broke his arm": [65535, 0], "layin drunk and broke his arm why": [65535, 0], "drunk and broke his arm why that's": [65535, 0], "and broke his arm why that's awful": [65535, 0], "broke his arm why that's awful how": [65535, 0], "his arm why that's awful how did": [65535, 0], "arm why that's awful how did he": [65535, 0], "why that's awful how did he know": [65535, 0], "that's awful how did he know she": [65535, 0], "awful how did he know she was": [65535, 0], "how did he know she was a": [65535, 0], "did he know she was a witching": [65535, 0], "he know she was a witching him": [65535, 0], "know she was a witching him lord": [65535, 0], "she was a witching him lord pap": [65535, 0], "was a witching him lord pap can": [65535, 0], "a witching him lord pap can tell": [65535, 0], "witching him lord pap can tell easy": [65535, 0], "him lord pap can tell easy pap": [65535, 0], "lord pap can tell easy pap says": [65535, 0], "pap can tell easy pap says when": [65535, 0], "can tell easy pap says when they": [65535, 0], "tell easy pap says when they keep": [65535, 0], "easy pap says when they keep looking": [65535, 0], "pap says when they keep looking at": [65535, 0], "says when they keep looking at you": [65535, 0], "when they keep looking at you right": [65535, 0], "they keep looking at you right stiddy": [65535, 0], "keep looking at you right stiddy they're": [65535, 0], "looking at you right stiddy they're a": [65535, 0], "at you right stiddy they're a witching": [65535, 0], "you right stiddy they're a witching you": [65535, 0], "right stiddy they're a witching you specially": [65535, 0], "stiddy they're a witching you specially if": [65535, 0], "they're a witching you specially if they": [65535, 0], "a witching you specially if they mumble": [65535, 0], "witching you specially if they mumble becuz": [65535, 0], "you specially if they mumble becuz when": [65535, 0], "specially if they mumble becuz when they": [65535, 0], "if they mumble becuz when they mumble": [65535, 0], "they mumble becuz when they mumble they're": [65535, 0], "mumble becuz when they mumble they're saying": [65535, 0], "becuz when they mumble they're saying the": [65535, 0], "when they mumble they're saying the lord's": [65535, 0], "they mumble they're saying the lord's prayer": [65535, 0], "mumble they're saying the lord's prayer backards": [65535, 0], "they're saying the lord's prayer backards say": [65535, 0], "saying the lord's prayer backards say hucky": [65535, 0], "the lord's prayer backards say hucky when": [65535, 0], "lord's prayer backards say hucky when you": [65535, 0], "prayer backards say hucky when you going": [65535, 0], "backards say hucky when you going to": [65535, 0], "say hucky when you going to try": [65535, 0], "hucky when you going to try the": [65535, 0], "when you going to try the cat": [65535, 0], "you going to try the cat to": [65535, 0], "going to try the cat to night": [65535, 0], "to try the cat to night i": [65535, 0], "try the cat to night i reckon": [65535, 0], "the cat to night i reckon they'll": [65535, 0], "cat to night i reckon they'll come": [65535, 0], "to night i reckon they'll come after": [65535, 0], "night i reckon they'll come after old": [65535, 0], "i reckon they'll come after old hoss": [65535, 0], "reckon they'll come after old hoss williams": [65535, 0], "they'll come after old hoss williams to": [65535, 0], "come after old hoss williams to night": [65535, 0], "after old hoss williams to night but": [65535, 0], "old hoss williams to night but they": [65535, 0], "hoss williams to night but they buried": [65535, 0], "williams to night but they buried him": [65535, 0], "to night but they buried him saturday": [65535, 0], "night but they buried him saturday didn't": [65535, 0], "but they buried him saturday didn't they": [65535, 0], "they buried him saturday didn't they get": [65535, 0], "buried him saturday didn't they get him": [65535, 0], "him saturday didn't they get him saturday": [65535, 0], "saturday didn't they get him saturday night": [65535, 0], "didn't they get him saturday night why": [65535, 0], "they get him saturday night why how": [65535, 0], "get him saturday night why how you": [65535, 0], "him saturday night why how you talk": [65535, 0], "saturday night why how you talk how": [65535, 0], "night why how you talk how could": [65535, 0], "why how you talk how could their": [65535, 0], "how you talk how could their charms": [65535, 0], "you talk how could their charms work": [65535, 0], "talk how could their charms work till": [65535, 0], "how could their charms work till midnight": [65535, 0], "could their charms work till midnight and": [65535, 0], "their charms work till midnight and then": [65535, 0], "charms work till midnight and then it's": [65535, 0], "work till midnight and then it's sunday": [65535, 0], "till midnight and then it's sunday devils": [65535, 0], "midnight and then it's sunday devils don't": [65535, 0], "and then it's sunday devils don't slosh": [65535, 0], "then it's sunday devils don't slosh around": [65535, 0], "it's sunday devils don't slosh around much": [65535, 0], "sunday devils don't slosh around much of": [65535, 0], "devils don't slosh around much of a": [65535, 0], "don't slosh around much of a sunday": [65535, 0], "slosh around much of a sunday i": [65535, 0], "around much of a sunday i don't": [65535, 0], "much of a sunday i don't reckon": [65535, 0], "of a sunday i don't reckon i": [65535, 0], "a sunday i don't reckon i never": [65535, 0], "sunday i don't reckon i never thought": [65535, 0], "i don't reckon i never thought of": [65535, 0], "don't reckon i never thought of that": [65535, 0], "reckon i never thought of that that's": [65535, 0], "i never thought of that that's so": [65535, 0], "never thought of that that's so lemme": [65535, 0], "thought of that that's so lemme go": [65535, 0], "of that that's so lemme go with": [65535, 0], "that that's so lemme go with you": [65535, 0], "that's so lemme go with you of": [65535, 0], "so lemme go with you of course": [65535, 0], "lemme go with you of course if": [65535, 0], "go with you of course if you": [65535, 0], "with you of course if you ain't": [65535, 0], "you of course if you ain't afeard": [65535, 0], "of course if you ain't afeard afeard": [65535, 0], "course if you ain't afeard afeard 'tain't": [65535, 0], "if you ain't afeard afeard 'tain't likely": [65535, 0], "you ain't afeard afeard 'tain't likely will": [65535, 0], "ain't afeard afeard 'tain't likely will you": [65535, 0], "afeard afeard 'tain't likely will you meow": [65535, 0], "afeard 'tain't likely will you meow yes": [65535, 0], "'tain't likely will you meow yes and": [65535, 0], "likely will you meow yes and you": [65535, 0], "will you meow yes and you meow": [65535, 0], "you meow yes and you meow back": [65535, 0], "meow yes and you meow back if": [65535, 0], "yes and you meow back if you": [65535, 0], "and you meow back if you get": [65535, 0], "you meow back if you get a": [65535, 0], "meow back if you get a chance": [65535, 0], "back if you get a chance last": [65535, 0], "if you get a chance last time": [65535, 0], "you get a chance last time you": [65535, 0], "get a chance last time you kep'": [65535, 0], "a chance last time you kep' me": [65535, 0], "chance last time you kep' me a": [65535, 0], "last time you kep' me a meowing": [65535, 0], "time you kep' me a meowing around": [65535, 0], "you kep' me a meowing around till": [65535, 0], "kep' me a meowing around till old": [65535, 0], "me a meowing around till old hays": [65535, 0], "a meowing around till old hays went": [65535, 0], "meowing around till old hays went to": [65535, 0], "around till old hays went to throwing": [65535, 0], "till old hays went to throwing rocks": [65535, 0], "old hays went to throwing rocks at": [65535, 0], "hays went to throwing rocks at me": [65535, 0], "went to throwing rocks at me and": [65535, 0], "to throwing rocks at me and says": [65535, 0], "throwing rocks at me and says 'dern": [65535, 0], "rocks at me and says 'dern that": [65535, 0], "at me and says 'dern that cat": [65535, 0], "me and says 'dern that cat '": [65535, 0], "and says 'dern that cat ' and": [65535, 0], "says 'dern that cat ' and so": [65535, 0], "'dern that cat ' and so i": [65535, 0], "that cat ' and so i hove": [65535, 0], "cat ' and so i hove a": [65535, 0], "' and so i hove a brick": [65535, 0], "and so i hove a brick through": [65535, 0], "so i hove a brick through his": [65535, 0], "i hove a brick through his window": [65535, 0], "hove a brick through his window but": [65535, 0], "a brick through his window but don't": [65535, 0], "brick through his window but don't you": [65535, 0], "through his window but don't you tell": [65535, 0], "his window but don't you tell i": [65535, 0], "window but don't you tell i won't": [65535, 0], "but don't you tell i won't i": [65535, 0], "don't you tell i won't i couldn't": [65535, 0], "you tell i won't i couldn't meow": [65535, 0], "tell i won't i couldn't meow that": [65535, 0], "i won't i couldn't meow that night": [65535, 0], "won't i couldn't meow that night becuz": [65535, 0], "i couldn't meow that night becuz auntie": [65535, 0], "couldn't meow that night becuz auntie was": [65535, 0], "meow that night becuz auntie was watching": [65535, 0], "that night becuz auntie was watching me": [65535, 0], "night becuz auntie was watching me but": [65535, 0], "becuz auntie was watching me but i'll": [65535, 0], "auntie was watching me but i'll meow": [65535, 0], "was watching me but i'll meow this": [65535, 0], "watching me but i'll meow this time": [65535, 0], "me but i'll meow this time say": [65535, 0], "but i'll meow this time say what's": [65535, 0], "i'll meow this time say what's that": [65535, 0], "meow this time say what's that nothing": [65535, 0], "this time say what's that nothing but": [65535, 0], "time say what's that nothing but a": [65535, 0], "say what's that nothing but a tick": [65535, 0], "what's that nothing but a tick where'd": [65535, 0], "that nothing but a tick where'd you": [65535, 0], "nothing but a tick where'd you get": [65535, 0], "but a tick where'd you get him": [65535, 0], "a tick where'd you get him out": [65535, 0], "tick where'd you get him out in": [65535, 0], "where'd you get him out in the": [65535, 0], "you get him out in the woods": [65535, 0], "get him out in the woods what'll": [65535, 0], "him out in the woods what'll you": [65535, 0], "out in the woods what'll you take": [65535, 0], "in the woods what'll you take for": [65535, 0], "the woods what'll you take for him": [65535, 0], "woods what'll you take for him i": [65535, 0], "what'll you take for him i don't": [65535, 0], "you take for him i don't know": [65535, 0], "take for him i don't know i": [65535, 0], "for him i don't know i don't": [65535, 0], "him i don't know i don't want": [65535, 0], "i don't know i don't want to": [65535, 0], "don't know i don't want to sell": [65535, 0], "know i don't want to sell him": [65535, 0], "i don't want to sell him all": [65535, 0], "don't want to sell him all right": [65535, 0], "want to sell him all right it's": [65535, 0], "to sell him all right it's a": [65535, 0], "sell him all right it's a mighty": [65535, 0], "him all right it's a mighty small": [65535, 0], "all right it's a mighty small tick": [65535, 0], "right it's a mighty small tick anyway": [65535, 0], "it's a mighty small tick anyway oh": [65535, 0], "a mighty small tick anyway oh anybody": [65535, 0], "mighty small tick anyway oh anybody can": [65535, 0], "small tick anyway oh anybody can run": [65535, 0], "tick anyway oh anybody can run a": [65535, 0], "anyway oh anybody can run a tick": [65535, 0], "oh anybody can run a tick down": [65535, 0], "anybody can run a tick down that": [65535, 0], "can run a tick down that don't": [65535, 0], "run a tick down that don't belong": [65535, 0], "a tick down that don't belong to": [65535, 0], "tick down that don't belong to them": [65535, 0], "down that don't belong to them i'm": [65535, 0], "that don't belong to them i'm satisfied": [65535, 0], "don't belong to them i'm satisfied with": [65535, 0], "belong to them i'm satisfied with it": [65535, 0], "to them i'm satisfied with it it's": [65535, 0], "them i'm satisfied with it it's a": [65535, 0], "i'm satisfied with it it's a good": [65535, 0], "satisfied with it it's a good enough": [65535, 0], "with it it's a good enough tick": [65535, 0], "it it's a good enough tick for": [65535, 0], "it's a good enough tick for me": [65535, 0], "a good enough tick for me sho": [65535, 0], "good enough tick for me sho there's": [65535, 0], "enough tick for me sho there's ticks": [65535, 0], "tick for me sho there's ticks a": [65535, 0], "for me sho there's ticks a plenty": [65535, 0], "me sho there's ticks a plenty i": [65535, 0], "sho there's ticks a plenty i could": [65535, 0], "there's ticks a plenty i could have": [65535, 0], "ticks a plenty i could have a": [65535, 0], "a plenty i could have a thousand": [65535, 0], "plenty i could have a thousand of": [65535, 0], "i could have a thousand of 'em": [65535, 0], "could have a thousand of 'em if": [65535, 0], "have a thousand of 'em if i": [65535, 0], "a thousand of 'em if i wanted": [65535, 0], "thousand of 'em if i wanted to": [65535, 0], "of 'em if i wanted to well": [65535, 0], "'em if i wanted to well why": [65535, 0], "if i wanted to well why don't": [65535, 0], "i wanted to well why don't you": [65535, 0], "wanted to well why don't you becuz": [65535, 0], "to well why don't you becuz you": [65535, 0], "well why don't you becuz you know": [65535, 0], "why don't you becuz you know mighty": [65535, 0], "don't you becuz you know mighty well": [65535, 0], "you becuz you know mighty well you": [65535, 0], "becuz you know mighty well you can't": [65535, 0], "you know mighty well you can't this": [65535, 0], "know mighty well you can't this is": [65535, 0], "mighty well you can't this is a": [65535, 0], "well you can't this is a pretty": [65535, 0], "you can't this is a pretty early": [65535, 0], "can't this is a pretty early tick": [65535, 0], "this is a pretty early tick i": [65535, 0], "is a pretty early tick i reckon": [65535, 0], "a pretty early tick i reckon it's": [65535, 0], "pretty early tick i reckon it's the": [65535, 0], "early tick i reckon it's the first": [65535, 0], "tick i reckon it's the first one": [65535, 0], "i reckon it's the first one i've": [65535, 0], "reckon it's the first one i've seen": [65535, 0], "it's the first one i've seen this": [65535, 0], "the first one i've seen this year": [65535, 0], "first one i've seen this year say": [65535, 0], "one i've seen this year say huck": [65535, 0], "i've seen this year say huck i'll": [65535, 0], "seen this year say huck i'll give": [65535, 0], "this year say huck i'll give you": [65535, 0], "year say huck i'll give you my": [65535, 0], "say huck i'll give you my tooth": [65535, 0], "huck i'll give you my tooth for": [65535, 0], "i'll give you my tooth for him": [65535, 0], "give you my tooth for him less": [65535, 0], "you my tooth for him less see": [65535, 0], "my tooth for him less see it": [65535, 0], "tooth for him less see it tom": [65535, 0], "for him less see it tom got": [65535, 0], "him less see it tom got out": [65535, 0], "less see it tom got out a": [65535, 0], "see it tom got out a bit": [65535, 0], "it tom got out a bit of": [65535, 0], "tom got out a bit of paper": [65535, 0], "got out a bit of paper and": [65535, 0], "out a bit of paper and carefully": [65535, 0], "a bit of paper and carefully unrolled": [65535, 0], "bit of paper and carefully unrolled it": [65535, 0], "of paper and carefully unrolled it huckleberry": [65535, 0], "paper and carefully unrolled it huckleberry viewed": [65535, 0], "and carefully unrolled it huckleberry viewed it": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "unrolled it huckleberry viewed it wistfully the": [65535, 0], "it huckleberry viewed it wistfully the temptation": [65535, 0], "huckleberry viewed it wistfully the temptation was": [65535, 0], "viewed it wistfully the temptation was very": [65535, 0], "it wistfully the temptation was very strong": [65535, 0], "wistfully the temptation was very strong at": [65535, 0], "the temptation was very strong at last": [65535, 0], "temptation was very strong at last he": [65535, 0], "was very strong at last he said": [65535, 0], "very strong at last he said is": [65535, 0], "strong at last he said is it": [65535, 0], "at last he said is it genuwyne": [65535, 0], "last he said is it genuwyne tom": [65535, 0], "he said is it genuwyne tom lifted": [65535, 0], "said is it genuwyne tom lifted his": [65535, 0], "is it genuwyne tom lifted his lip": [65535, 0], "it genuwyne tom lifted his lip and": [65535, 0], "genuwyne tom lifted his lip and showed": [65535, 0], "tom lifted his lip and showed the": [65535, 0], "lifted his lip and showed the vacancy": [65535, 0], "his lip and showed the vacancy well": [65535, 0], "lip and showed the vacancy well all": [65535, 0], "and showed the vacancy well all right": [65535, 0], "showed the vacancy well all right said": [65535, 0], "the vacancy well all right said huckleberry": [65535, 0], "vacancy well all right said huckleberry it's": [65535, 0], "well all right said huckleberry it's a": [65535, 0], "all right said huckleberry it's a trade": [65535, 0], "right said huckleberry it's a trade tom": [65535, 0], "said huckleberry it's a trade tom enclosed": [65535, 0], "huckleberry it's a trade tom enclosed the": [65535, 0], "it's a trade tom enclosed the tick": [65535, 0], "a trade tom enclosed the tick in": [65535, 0], "trade tom enclosed the tick in the": [65535, 0], "tom enclosed the tick in the percussion": [65535, 0], "enclosed the tick in the percussion cap": [65535, 0], "the tick in the percussion cap box": [65535, 0], "tick in the percussion cap box that": [65535, 0], "in the percussion cap box that had": [65535, 0], "the percussion cap box that had lately": [65535, 0], "percussion cap box that had lately been": [65535, 0], "cap box that had lately been the": [65535, 0], "box that had lately been the pinchbug's": [65535, 0], "that had lately been the pinchbug's prison": [65535, 0], "had lately been the pinchbug's prison and": [65535, 0], "lately been the pinchbug's prison and the": [65535, 0], "been the pinchbug's prison and the boys": [65535, 0], "the pinchbug's prison and the boys separated": [65535, 0], "pinchbug's prison and the boys separated each": [65535, 0], "prison and the boys separated each feeling": [65535, 0], "and the boys separated each feeling wealthier": [65535, 0], "the boys separated each feeling wealthier than": [65535, 0], "boys separated each feeling wealthier than before": [65535, 0], "separated each feeling wealthier than before when": [65535, 0], "each feeling wealthier than before when tom": [65535, 0], "feeling wealthier than before when tom reached": [65535, 0], "wealthier than before when tom reached the": [65535, 0], "than before when tom reached the little": [65535, 0], "before when tom reached the little isolated": [65535, 0], "when tom reached the little isolated frame": [65535, 0], "tom reached the little isolated frame schoolhouse": [65535, 0], "reached the little isolated frame schoolhouse he": [65535, 0], "the little isolated frame schoolhouse he strode": [65535, 0], "little isolated frame schoolhouse he strode in": [65535, 0], "isolated frame schoolhouse he strode in briskly": [65535, 0], "frame schoolhouse he strode in briskly with": [65535, 0], "schoolhouse he strode in briskly with the": [65535, 0], "he strode in briskly with the manner": [65535, 0], "strode in briskly with the manner of": [65535, 0], "in briskly with the manner of one": [65535, 0], "briskly with the manner of one who": [65535, 0], "with the manner of one who had": [65535, 0], "the manner of one who had come": [65535, 0], "manner of one who had come with": [65535, 0], "of one who had come with all": [65535, 0], "one who had come with all honest": [65535, 0], "who had come with all honest speed": [65535, 0], "had come with all honest speed he": [65535, 0], "come with all honest speed he hung": [65535, 0], "with all honest speed he hung his": [65535, 0], "all honest speed he hung his hat": [65535, 0], "honest speed he hung his hat on": [65535, 0], "speed he hung his hat on a": [65535, 0], "he hung his hat on a peg": [65535, 0], "hung his hat on a peg and": [65535, 0], "his hat on a peg and flung": [65535, 0], "hat on a peg and flung himself": [65535, 0], "on a peg and flung himself into": [65535, 0], "a peg and flung himself into his": [65535, 0], "peg and flung himself into his seat": [65535, 0], "and flung himself into his seat with": [65535, 0], "flung himself into his seat with business": [65535, 0], "himself into his seat with business like": [65535, 0], "into his seat with business like alacrity": [65535, 0], "his seat with business like alacrity the": [65535, 0], "seat with business like alacrity the master": [65535, 0], "with business like alacrity the master throned": [65535, 0], "business like alacrity the master throned on": [65535, 0], "like alacrity the master throned on high": [65535, 0], "alacrity the master throned on high in": [65535, 0], "the master throned on high in his": [65535, 0], "master throned on high in his great": [65535, 0], "throned on high in his great splint": [65535, 0], "on high in his great splint bottom": [65535, 0], "high in his great splint bottom arm": [65535, 0], "in his great splint bottom arm chair": [65535, 0], "his great splint bottom arm chair was": [65535, 0], "great splint bottom arm chair was dozing": [65535, 0], "splint bottom arm chair was dozing lulled": [65535, 0], "bottom arm chair was dozing lulled by": [65535, 0], "arm chair was dozing lulled by the": [65535, 0], "chair was dozing lulled by the drowsy": [65535, 0], "was dozing lulled by the drowsy hum": [65535, 0], "dozing lulled by the drowsy hum of": [65535, 0], "lulled by the drowsy hum of study": [65535, 0], "by the drowsy hum of study the": [65535, 0], "the drowsy hum of study the interruption": [65535, 0], "drowsy hum of study the interruption roused": [65535, 0], "hum of study the interruption roused him": [65535, 0], "of study the interruption roused him thomas": [65535, 0], "study the interruption roused him thomas sawyer": [65535, 0], "the interruption roused him thomas sawyer tom": [65535, 0], "interruption roused him thomas sawyer tom knew": [65535, 0], "roused him thomas sawyer tom knew that": [65535, 0], "him thomas sawyer tom knew that when": [65535, 0], "thomas sawyer tom knew that when his": [65535, 0], "sawyer tom knew that when his name": [65535, 0], "tom knew that when his name was": [65535, 0], "knew that when his name was pronounced": [65535, 0], "that when his name was pronounced in": [65535, 0], "when his name was pronounced in full": [65535, 0], "his name was pronounced in full it": [65535, 0], "name was pronounced in full it meant": [65535, 0], "was pronounced in full it meant trouble": [65535, 0], "pronounced in full it meant trouble sir": [65535, 0], "in full it meant trouble sir come": [65535, 0], "full it meant trouble sir come up": [65535, 0], "it meant trouble sir come up here": [65535, 0], "meant trouble sir come up here now": [65535, 0], "trouble sir come up here now sir": [65535, 0], "sir come up here now sir why": [65535, 0], "come up here now sir why are": [65535, 0], "up here now sir why are you": [65535, 0], "here now sir why are you late": [65535, 0], "now sir why are you late again": [65535, 0], "sir why are you late again as": [65535, 0], "why are you late again as usual": [65535, 0], "are you late again as usual tom": [65535, 0], "you late again as usual tom was": [65535, 0], "late again as usual tom was about": [65535, 0], "again as usual tom was about to": [65535, 0], "as usual tom was about to take": [65535, 0], "usual tom was about to take refuge": [65535, 0], "tom was about to take refuge in": [65535, 0], "was about to take refuge in a": [65535, 0], "about to take refuge in a lie": [65535, 0], "to take refuge in a lie when": [65535, 0], "take refuge in a lie when he": [65535, 0], "refuge in a lie when he saw": [65535, 0], "in a lie when he saw two": [65535, 0], "a lie when he saw two long": [65535, 0], "lie when he saw two long tails": [65535, 0], "when he saw two long tails of": [65535, 0], "he saw two long tails of yellow": [65535, 0], "saw two long tails of yellow hair": [65535, 0], "two long tails of yellow hair hanging": [65535, 0], "long tails of yellow hair hanging down": [65535, 0], "tails of yellow hair hanging down a": [65535, 0], "of yellow hair hanging down a back": [65535, 0], "yellow hair hanging down a back that": [65535, 0], "hair hanging down a back that he": [65535, 0], "hanging down a back that he recognized": [65535, 0], "down a back that he recognized by": [65535, 0], "a back that he recognized by the": [65535, 0], "back that he recognized by the electric": [65535, 0], "that he recognized by the electric sympathy": [65535, 0], "he recognized by the electric sympathy of": [65535, 0], "recognized by the electric sympathy of love": [65535, 0], "by the electric sympathy of love and": [65535, 0], "the electric sympathy of love and by": [65535, 0], "electric sympathy of love and by that": [65535, 0], "sympathy of love and by that form": [65535, 0], "of love and by that form was": [65535, 0], "love and by that form was the": [65535, 0], "and by that form was the only": [65535, 0], "by that form was the only vacant": [65535, 0], "that form was the only vacant place": [65535, 0], "form was the only vacant place on": [65535, 0], "was the only vacant place on the": [65535, 0], "the only vacant place on the girls'": [65535, 0], "only vacant place on the girls' side": [65535, 0], "vacant place on the girls' side of": [65535, 0], "place on the girls' side of the": [65535, 0], "on the girls' side of the school": [65535, 0], "the girls' side of the school house": [65535, 0], "girls' side of the school house he": [65535, 0], "side of the school house he instantly": [65535, 0], "of the school house he instantly said": [65535, 0], "the school house he instantly said i": [65535, 0], "school house he instantly said i stopped": [65535, 0], "house he instantly said i stopped to": [65535, 0], "he instantly said i stopped to talk": [65535, 0], "instantly said i stopped to talk with": [65535, 0], "said i stopped to talk with huckleberry": [65535, 0], "i stopped to talk with huckleberry finn": [65535, 0], "stopped to talk with huckleberry finn the": [65535, 0], "to talk with huckleberry finn the master's": [65535, 0], "talk with huckleberry finn the master's pulse": [65535, 0], "with huckleberry finn the master's pulse stood": [65535, 0], "huckleberry finn the master's pulse stood still": [65535, 0], "finn the master's pulse stood still and": [65535, 0], "the master's pulse stood still and he": [65535, 0], "master's pulse stood still and he stared": [65535, 0], "pulse stood still and he stared helplessly": [65535, 0], "stood still and he stared helplessly the": [65535, 0], "still and he stared helplessly the buzz": [65535, 0], "and he stared helplessly the buzz of": [65535, 0], "he stared helplessly the buzz of study": [65535, 0], "stared helplessly the buzz of study ceased": [65535, 0], "helplessly the buzz of study ceased the": [65535, 0], "the buzz of study ceased the pupils": [65535, 0], "buzz of study ceased the pupils wondered": [65535, 0], "of study ceased the pupils wondered if": [65535, 0], "study ceased the pupils wondered if this": [65535, 0], "ceased the pupils wondered if this foolhardy": [65535, 0], "the pupils wondered if this foolhardy boy": [65535, 0], "pupils wondered if this foolhardy boy had": [65535, 0], "wondered if this foolhardy boy had lost": [65535, 0], "if this foolhardy boy had lost his": [65535, 0], "this foolhardy boy had lost his mind": [65535, 0], "foolhardy boy had lost his mind the": [65535, 0], "boy had lost his mind the master": [65535, 0], "had lost his mind the master said": [65535, 0], "lost his mind the master said you": [65535, 0], "his mind the master said you you": [65535, 0], "mind the master said you you did": [65535, 0], "the master said you you did what": [65535, 0], "master said you you did what stopped": [65535, 0], "said you you did what stopped to": [65535, 0], "you you did what stopped to talk": [65535, 0], "you did what stopped to talk with": [65535, 0], "did what stopped to talk with huckleberry": [65535, 0], "what stopped to talk with huckleberry finn": [65535, 0], "stopped to talk with huckleberry finn there": [65535, 0], "to talk with huckleberry finn there was": [65535, 0], "talk with huckleberry finn there was no": [65535, 0], "with huckleberry finn there was no mistaking": [65535, 0], "huckleberry finn there was no mistaking the": [65535, 0], "finn there was no mistaking the words": [65535, 0], "there was no mistaking the words thomas": [65535, 0], "was no mistaking the words thomas sawyer": [65535, 0], "no mistaking the words thomas sawyer this": [65535, 0], "mistaking the words thomas sawyer this is": [65535, 0], "the words thomas sawyer this is the": [65535, 0], "words thomas sawyer this is the most": [65535, 0], "thomas sawyer this is the most astounding": [65535, 0], "sawyer this is the most astounding confession": [65535, 0], "this is the most astounding confession i": [65535, 0], "is the most astounding confession i have": [65535, 0], "the most astounding confession i have ever": [65535, 0], "most astounding confession i have ever listened": [65535, 0], "astounding confession i have ever listened to": [65535, 0], "confession i have ever listened to no": [65535, 0], "i have ever listened to no mere": [65535, 0], "have ever listened to no mere ferule": [65535, 0], "ever listened to no mere ferule will": [65535, 0], "listened to no mere ferule will answer": [65535, 0], "to no mere ferule will answer for": [65535, 0], "no mere ferule will answer for this": [65535, 0], "mere ferule will answer for this offence": [65535, 0], "ferule will answer for this offence take": [65535, 0], "will answer for this offence take off": [65535, 0], "answer for this offence take off your": [65535, 0], "for this offence take off your jacket": [65535, 0], "this offence take off your jacket the": [65535, 0], "offence take off your jacket the master's": [65535, 0], "take off your jacket the master's arm": [65535, 0], "off your jacket the master's arm performed": [65535, 0], "your jacket the master's arm performed until": [65535, 0], "jacket the master's arm performed until it": [65535, 0], "the master's arm performed until it was": [65535, 0], "master's arm performed until it was tired": [65535, 0], "arm performed until it was tired and": [65535, 0], "performed until it was tired and the": [65535, 0], "until it was tired and the stock": [65535, 0], "it was tired and the stock of": [65535, 0], "was tired and the stock of switches": [65535, 0], "tired and the stock of switches notably": [65535, 0], "and the stock of switches notably diminished": [65535, 0], "the stock of switches notably diminished then": [65535, 0], "stock of switches notably diminished then the": [65535, 0], "of switches notably diminished then the order": [65535, 0], "switches notably diminished then the order followed": [65535, 0], "notably diminished then the order followed now": [65535, 0], "diminished then the order followed now sir": [65535, 0], "then the order followed now sir go": [65535, 0], "the order followed now sir go and": [65535, 0], "order followed now sir go and sit": [65535, 0], "followed now sir go and sit with": [65535, 0], "now sir go and sit with the": [65535, 0], "sir go and sit with the girls": [65535, 0], "go and sit with the girls and": [65535, 0], "and sit with the girls and let": [65535, 0], "sit with the girls and let this": [65535, 0], "with the girls and let this be": [65535, 0], "the girls and let this be a": [65535, 0], "girls and let this be a warning": [65535, 0], "and let this be a warning to": [65535, 0], "let this be a warning to you": [65535, 0], "this be a warning to you the": [65535, 0], "be a warning to you the titter": [65535, 0], "a warning to you the titter that": [65535, 0], "warning to you the titter that rippled": [65535, 0], "to you the titter that rippled around": [65535, 0], "you the titter that rippled around the": [65535, 0], "the titter that rippled around the room": [65535, 0], "titter that rippled around the room appeared": [65535, 0], "that rippled around the room appeared to": [65535, 0], "rippled around the room appeared to abash": [65535, 0], "around the room appeared to abash the": [65535, 0], "the room appeared to abash the boy": [65535, 0], "room appeared to abash the boy but": [65535, 0], "appeared to abash the boy but in": [65535, 0], "to abash the boy but in reality": [65535, 0], "abash the boy but in reality that": [65535, 0], "the boy but in reality that result": [65535, 0], "boy but in reality that result was": [65535, 0], "but in reality that result was caused": [65535, 0], "in reality that result was caused rather": [65535, 0], "reality that result was caused rather more": [65535, 0], "that result was caused rather more by": [65535, 0], "result was caused rather more by his": [65535, 0], "was caused rather more by his worshipful": [65535, 0], "caused rather more by his worshipful awe": [65535, 0], "rather more by his worshipful awe of": [65535, 0], "more by his worshipful awe of his": [65535, 0], "by his worshipful awe of his unknown": [65535, 0], "his worshipful awe of his unknown idol": [65535, 0], "worshipful awe of his unknown idol and": [65535, 0], "awe of his unknown idol and the": [65535, 0], "of his unknown idol and the dread": [65535, 0], "his unknown idol and the dread pleasure": [65535, 0], "unknown idol and the dread pleasure that": [65535, 0], "idol and the dread pleasure that lay": [65535, 0], "and the dread pleasure that lay in": [65535, 0], "the dread pleasure that lay in his": [65535, 0], "dread pleasure that lay in his high": [65535, 0], "pleasure that lay in his high good": [65535, 0], "that lay in his high good fortune": [65535, 0], "lay in his high good fortune he": [65535, 0], "in his high good fortune he sat": [65535, 0], "his high good fortune he sat down": [65535, 0], "high good fortune he sat down upon": [65535, 0], "good fortune he sat down upon the": [65535, 0], "fortune he sat down upon the end": [65535, 0], "he sat down upon the end of": [65535, 0], "sat down upon the end of the": [65535, 0], "down upon the end of the pine": [65535, 0], "upon the end of the pine bench": [65535, 0], "the end of the pine bench and": [65535, 0], "end of the pine bench and the": [65535, 0], "of the pine bench and the girl": [65535, 0], "the pine bench and the girl hitched": [65535, 0], "pine bench and the girl hitched herself": [65535, 0], "bench and the girl hitched herself away": [65535, 0], "and the girl hitched herself away from": [65535, 0], "the girl hitched herself away from him": [65535, 0], "girl hitched herself away from him with": [65535, 0], "hitched herself away from him with a": [65535, 0], "herself away from him with a toss": [65535, 0], "away from him with a toss of": [65535, 0], "from him with a toss of her": [65535, 0], "him with a toss of her head": [65535, 0], "with a toss of her head nudges": [65535, 0], "a toss of her head nudges and": [65535, 0], "toss of her head nudges and winks": [65535, 0], "of her head nudges and winks and": [65535, 0], "her head nudges and winks and whispers": [65535, 0], "head nudges and winks and whispers traversed": [65535, 0], "nudges and winks and whispers traversed the": [65535, 0], "and winks and whispers traversed the room": [65535, 0], "winks and whispers traversed the room but": [65535, 0], "and whispers traversed the room but tom": [65535, 0], "whispers traversed the room but tom sat": [65535, 0], "traversed the room but tom sat still": [65535, 0], "the room but tom sat still with": [65535, 0], "room but tom sat still with his": [65535, 0], "but tom sat still with his arms": [65535, 0], "tom sat still with his arms upon": [65535, 0], "sat still with his arms upon the": [65535, 0], "still with his arms upon the long": [65535, 0], "with his arms upon the long low": [65535, 0], "his arms upon the long low desk": [65535, 0], "arms upon the long low desk before": [65535, 0], "upon the long low desk before him": [65535, 0], "the long low desk before him and": [65535, 0], "long low desk before him and seemed": [65535, 0], "low desk before him and seemed to": [65535, 0], "desk before him and seemed to study": [65535, 0], "before him and seemed to study his": [65535, 0], "him and seemed to study his book": [65535, 0], "and seemed to study his book by": [65535, 0], "seemed to study his book by and": [65535, 0], "to study his book by and by": [65535, 0], "study his book by and by attention": [65535, 0], "his book by and by attention ceased": [65535, 0], "book by and by attention ceased from": [65535, 0], "by and by attention ceased from him": [65535, 0], "and by attention ceased from him and": [65535, 0], "by attention ceased from him and the": [65535, 0], "attention ceased from him and the accustomed": [65535, 0], "ceased from him and the accustomed school": [65535, 0], "from him and the accustomed school murmur": [65535, 0], "him and the accustomed school murmur rose": [65535, 0], "and the accustomed school murmur rose upon": [65535, 0], "the accustomed school murmur rose upon the": [65535, 0], "accustomed school murmur rose upon the dull": [65535, 0], "school murmur rose upon the dull air": [65535, 0], "murmur rose upon the dull air once": [65535, 0], "rose upon the dull air once more": [65535, 0], "upon the dull air once more presently": [65535, 0], "the dull air once more presently the": [65535, 0], "dull air once more presently the boy": [65535, 0], "air once more presently the boy began": [65535, 0], "once more presently the boy began to": [65535, 0], "more presently the boy began to steal": [65535, 0], "presently the boy began to steal furtive": [65535, 0], "the boy began to steal furtive glances": [65535, 0], "boy began to steal furtive glances at": [65535, 0], "began to steal furtive glances at the": [65535, 0], "to steal furtive glances at the girl": [65535, 0], "steal furtive glances at the girl she": [65535, 0], "furtive glances at the girl she observed": [65535, 0], "glances at the girl she observed it": [65535, 0], "at the girl she observed it made": [65535, 0], "the girl she observed it made a": [65535, 0], "girl she observed it made a mouth": [65535, 0], "she observed it made a mouth at": [65535, 0], "observed it made a mouth at him": [65535, 0], "it made a mouth at him and": [65535, 0], "made a mouth at him and gave": [65535, 0], "a mouth at him and gave him": [65535, 0], "mouth at him and gave him the": [65535, 0], "at him and gave him the back": [65535, 0], "him and gave him the back of": [65535, 0], "and gave him the back of her": [65535, 0], "gave him the back of her head": [65535, 0], "him the back of her head for": [65535, 0], "the back of her head for the": [65535, 0], "back of her head for the space": [65535, 0], "of her head for the space of": [65535, 0], "her head for the space of a": [65535, 0], "head for the space of a minute": [65535, 0], "for the space of a minute when": [65535, 0], "the space of a minute when she": [65535, 0], "space of a minute when she cautiously": [65535, 0], "of a minute when she cautiously faced": [65535, 0], "a minute when she cautiously faced around": [65535, 0], "minute when she cautiously faced around again": [65535, 0], "when she cautiously faced around again a": [65535, 0], "she cautiously faced around again a peach": [65535, 0], "cautiously faced around again a peach lay": [65535, 0], "faced around again a peach lay before": [65535, 0], "around again a peach lay before her": [65535, 0], "again a peach lay before her she": [65535, 0], "a peach lay before her she thrust": [65535, 0], "peach lay before her she thrust it": [65535, 0], "lay before her she thrust it away": [65535, 0], "before her she thrust it away tom": [65535, 0], "her she thrust it away tom gently": [65535, 0], "she thrust it away tom gently put": [65535, 0], "thrust it away tom gently put it": [65535, 0], "it away tom gently put it back": [65535, 0], "away tom gently put it back she": [65535, 0], "tom gently put it back she thrust": [65535, 0], "gently put it back she thrust it": [65535, 0], "put it back she thrust it away": [65535, 0], "it back she thrust it away again": [65535, 0], "back she thrust it away again but": [65535, 0], "she thrust it away again but with": [65535, 0], "thrust it away again but with less": [65535, 0], "it away again but with less animosity": [65535, 0], "away again but with less animosity tom": [65535, 0], "again but with less animosity tom patiently": [65535, 0], "but with less animosity tom patiently returned": [65535, 0], "with less animosity tom patiently returned it": [65535, 0], "less animosity tom patiently returned it to": [65535, 0], "animosity tom patiently returned it to its": [65535, 0], "tom patiently returned it to its place": [65535, 0], "patiently returned it to its place then": [65535, 0], "returned it to its place then she": [65535, 0], "it to its place then she let": [65535, 0], "to its place then she let it": [65535, 0], "its place then she let it remain": [65535, 0], "place then she let it remain tom": [65535, 0], "then she let it remain tom scrawled": [65535, 0], "she let it remain tom scrawled on": [65535, 0], "let it remain tom scrawled on his": [65535, 0], "it remain tom scrawled on his slate": [65535, 0], "remain tom scrawled on his slate please": [65535, 0], "tom scrawled on his slate please take": [65535, 0], "scrawled on his slate please take it": [65535, 0], "on his slate please take it i": [65535, 0], "his slate please take it i got": [65535, 0], "slate please take it i got more": [65535, 0], "please take it i got more the": [65535, 0], "take it i got more the girl": [65535, 0], "it i got more the girl glanced": [65535, 0], "i got more the girl glanced at": [65535, 0], "got more the girl glanced at the": [65535, 0], "more the girl glanced at the words": [65535, 0], "the girl glanced at the words but": [65535, 0], "girl glanced at the words but made": [65535, 0], "glanced at the words but made no": [65535, 0], "at the words but made no sign": [65535, 0], "the words but made no sign now": [65535, 0], "words but made no sign now the": [65535, 0], "but made no sign now the boy": [65535, 0], "made no sign now the boy began": [65535, 0], "no sign now the boy began to": [65535, 0], "sign now the boy began to draw": [65535, 0], "now the boy began to draw something": [65535, 0], "the boy began to draw something on": [65535, 0], "boy began to draw something on the": [65535, 0], "began to draw something on the slate": [65535, 0], "to draw something on the slate hiding": [65535, 0], "draw something on the slate hiding his": [65535, 0], "something on the slate hiding his work": [65535, 0], "on the slate hiding his work with": [65535, 0], "the slate hiding his work with his": [65535, 0], "slate hiding his work with his left": [65535, 0], "hiding his work with his left hand": [65535, 0], "his work with his left hand for": [65535, 0], "work with his left hand for a": [65535, 0], "with his left hand for a time": [65535, 0], "his left hand for a time the": [65535, 0], "left hand for a time the girl": [65535, 0], "hand for a time the girl refused": [65535, 0], "for a time the girl refused to": [65535, 0], "a time the girl refused to notice": [65535, 0], "time the girl refused to notice but": [65535, 0], "the girl refused to notice but her": [65535, 0], "girl refused to notice but her human": [65535, 0], "refused to notice but her human curiosity": [65535, 0], "to notice but her human curiosity presently": [65535, 0], "notice but her human curiosity presently began": [65535, 0], "but her human curiosity presently began to": [65535, 0], "her human curiosity presently began to manifest": [65535, 0], "human curiosity presently began to manifest itself": [65535, 0], "curiosity presently began to manifest itself by": [65535, 0], "presently began to manifest itself by hardly": [65535, 0], "began to manifest itself by hardly perceptible": [65535, 0], "to manifest itself by hardly perceptible signs": [65535, 0], "manifest itself by hardly perceptible signs the": [65535, 0], "itself by hardly perceptible signs the boy": [65535, 0], "by hardly perceptible signs the boy worked": [65535, 0], "hardly perceptible signs the boy worked on": [65535, 0], "perceptible signs the boy worked on apparently": [65535, 0], "signs the boy worked on apparently unconscious": [65535, 0], "the boy worked on apparently unconscious the": [65535, 0], "boy worked on apparently unconscious the girl": [65535, 0], "worked on apparently unconscious the girl made": [65535, 0], "on apparently unconscious the girl made a": [65535, 0], "apparently unconscious the girl made a sort": [65535, 0], "unconscious the girl made a sort of": [65535, 0], "the girl made a sort of noncommittal": [65535, 0], "girl made a sort of noncommittal attempt": [65535, 0], "made a sort of noncommittal attempt to": [65535, 0], "a sort of noncommittal attempt to see": [65535, 0], "sort of noncommittal attempt to see but": [65535, 0], "of noncommittal attempt to see but the": [65535, 0], "noncommittal attempt to see but the boy": [65535, 0], "attempt to see but the boy did": [65535, 0], "to see but the boy did not": [65535, 0], "see but the boy did not betray": [65535, 0], "but the boy did not betray that": [65535, 0], "the boy did not betray that he": [65535, 0], "boy did not betray that he was": [65535, 0], "did not betray that he was aware": [65535, 0], "not betray that he was aware of": [65535, 0], "betray that he was aware of it": [65535, 0], "that he was aware of it at": [65535, 0], "he was aware of it at last": [65535, 0], "was aware of it at last she": [65535, 0], "aware of it at last she gave": [65535, 0], "of it at last she gave in": [65535, 0], "it at last she gave in and": [65535, 0], "at last she gave in and hesitatingly": [65535, 0], "last she gave in and hesitatingly whispered": [65535, 0], "she gave in and hesitatingly whispered let": [65535, 0], "gave in and hesitatingly whispered let me": [65535, 0], "in and hesitatingly whispered let me see": [65535, 0], "and hesitatingly whispered let me see it": [65535, 0], "hesitatingly whispered let me see it tom": [65535, 0], "whispered let me see it tom partly": [65535, 0], "let me see it tom partly uncovered": [65535, 0], "me see it tom partly uncovered a": [65535, 0], "see it tom partly uncovered a dismal": [65535, 0], "it tom partly uncovered a dismal caricature": [65535, 0], "tom partly uncovered a dismal caricature of": [65535, 0], "partly uncovered a dismal caricature of a": [65535, 0], "uncovered a dismal caricature of a house": [65535, 0], "a dismal caricature of a house with": [65535, 0], "dismal caricature of a house with two": [65535, 0], "caricature of a house with two gable": [65535, 0], "of a house with two gable ends": [65535, 0], "a house with two gable ends to": [65535, 0], "house with two gable ends to it": [65535, 0], "with two gable ends to it and": [65535, 0], "two gable ends to it and a": [65535, 0], "gable ends to it and a corkscrew": [65535, 0], "ends to it and a corkscrew of": [65535, 0], "to it and a corkscrew of smoke": [65535, 0], "it and a corkscrew of smoke issuing": [65535, 0], "and a corkscrew of smoke issuing from": [65535, 0], "a corkscrew of smoke issuing from the": [65535, 0], "corkscrew of smoke issuing from the chimney": [65535, 0], "of smoke issuing from the chimney then": [65535, 0], "smoke issuing from the chimney then the": [65535, 0], "issuing from the chimney then the girl's": [65535, 0], "from the chimney then the girl's interest": [65535, 0], "the chimney then the girl's interest began": [65535, 0], "chimney then the girl's interest began to": [65535, 0], "then the girl's interest began to fasten": [65535, 0], "the girl's interest began to fasten itself": [65535, 0], "girl's interest began to fasten itself upon": [65535, 0], "interest began to fasten itself upon the": [65535, 0], "began to fasten itself upon the work": [65535, 0], "to fasten itself upon the work and": [65535, 0], "fasten itself upon the work and she": [65535, 0], "itself upon the work and she forgot": [65535, 0], "upon the work and she forgot everything": [65535, 0], "the work and she forgot everything else": [65535, 0], "work and she forgot everything else when": [65535, 0], "and she forgot everything else when it": [65535, 0], "she forgot everything else when it was": [65535, 0], "forgot everything else when it was finished": [65535, 0], "everything else when it was finished she": [65535, 0], "else when it was finished she gazed": [65535, 0], "when it was finished she gazed a": [65535, 0], "it was finished she gazed a moment": [65535, 0], "was finished she gazed a moment then": [65535, 0], "finished she gazed a moment then whispered": [65535, 0], "she gazed a moment then whispered it's": [65535, 0], "gazed a moment then whispered it's nice": [65535, 0], "a moment then whispered it's nice make": [65535, 0], "moment then whispered it's nice make a": [65535, 0], "then whispered it's nice make a man": [65535, 0], "whispered it's nice make a man the": [65535, 0], "it's nice make a man the artist": [65535, 0], "nice make a man the artist erected": [65535, 0], "make a man the artist erected a": [65535, 0], "a man the artist erected a man": [65535, 0], "man the artist erected a man in": [65535, 0], "the artist erected a man in the": [65535, 0], "artist erected a man in the front": [65535, 0], "erected a man in the front yard": [65535, 0], "a man in the front yard that": [65535, 0], "man in the front yard that resembled": [65535, 0], "in the front yard that resembled a": [65535, 0], "the front yard that resembled a derrick": [65535, 0], "front yard that resembled a derrick he": [65535, 0], "yard that resembled a derrick he could": [65535, 0], "that resembled a derrick he could have": [65535, 0], "resembled a derrick he could have stepped": [65535, 0], "a derrick he could have stepped over": [65535, 0], "derrick he could have stepped over the": [65535, 0], "he could have stepped over the house": [65535, 0], "could have stepped over the house but": [65535, 0], "have stepped over the house but the": [65535, 0], "stepped over the house but the girl": [65535, 0], "over the house but the girl was": [65535, 0], "the house but the girl was not": [65535, 0], "house but the girl was not hypercritical": [65535, 0], "but the girl was not hypercritical she": [65535, 0], "the girl was not hypercritical she was": [65535, 0], "girl was not hypercritical she was satisfied": [65535, 0], "was not hypercritical she was satisfied with": [65535, 0], "not hypercritical she was satisfied with the": [65535, 0], "hypercritical she was satisfied with the monster": [65535, 0], "she was satisfied with the monster and": [65535, 0], "was satisfied with the monster and whispered": [65535, 0], "satisfied with the monster and whispered it's": [65535, 0], "with the monster and whispered it's a": [65535, 0], "the monster and whispered it's a beautiful": [65535, 0], "monster and whispered it's a beautiful man": [65535, 0], "and whispered it's a beautiful man now": [65535, 0], "whispered it's a beautiful man now make": [65535, 0], "it's a beautiful man now make me": [65535, 0], "a beautiful man now make me coming": [65535, 0], "beautiful man now make me coming along": [65535, 0], "man now make me coming along tom": [65535, 0], "now make me coming along tom drew": [65535, 0], "make me coming along tom drew an": [65535, 0], "me coming along tom drew an hour": [65535, 0], "coming along tom drew an hour glass": [65535, 0], "along tom drew an hour glass with": [65535, 0], "tom drew an hour glass with a": [65535, 0], "drew an hour glass with a full": [65535, 0], "an hour glass with a full moon": [65535, 0], "hour glass with a full moon and": [65535, 0], "glass with a full moon and straw": [65535, 0], "with a full moon and straw limbs": [65535, 0], "a full moon and straw limbs to": [65535, 0], "full moon and straw limbs to it": [65535, 0], "moon and straw limbs to it and": [65535, 0], "and straw limbs to it and armed": [65535, 0], "straw limbs to it and armed the": [65535, 0], "limbs to it and armed the spreading": [65535, 0], "to it and armed the spreading fingers": [65535, 0], "it and armed the spreading fingers with": [65535, 0], "and armed the spreading fingers with a": [65535, 0], "armed the spreading fingers with a portentous": [65535, 0], "the spreading fingers with a portentous fan": [65535, 0], "spreading fingers with a portentous fan the": [65535, 0], "fingers with a portentous fan the girl": [65535, 0], "with a portentous fan the girl said": [65535, 0], "a portentous fan the girl said it's": [65535, 0], "portentous fan the girl said it's ever": [65535, 0], "fan the girl said it's ever so": [65535, 0], "the girl said it's ever so nice": [65535, 0], "girl said it's ever so nice i": [65535, 0], "said it's ever so nice i wish": [65535, 0], "it's ever so nice i wish i": [65535, 0], "ever so nice i wish i could": [65535, 0], "so nice i wish i could draw": [65535, 0], "nice i wish i could draw it's": [65535, 0], "i wish i could draw it's easy": [65535, 0], "wish i could draw it's easy whispered": [65535, 0], "i could draw it's easy whispered tom": [65535, 0], "could draw it's easy whispered tom i'll": [65535, 0], "draw it's easy whispered tom i'll learn": [65535, 0], "it's easy whispered tom i'll learn you": [65535, 0], "easy whispered tom i'll learn you oh": [65535, 0], "whispered tom i'll learn you oh will": [65535, 0], "tom i'll learn you oh will you": [65535, 0], "i'll learn you oh will you when": [65535, 0], "learn you oh will you when at": [65535, 0], "you oh will you when at noon": [65535, 0], "oh will you when at noon do": [65535, 0], "will you when at noon do you": [65535, 0], "you when at noon do you go": [65535, 0], "when at noon do you go home": [65535, 0], "at noon do you go home to": [65535, 0], "noon do you go home to dinner": [65535, 0], "do you go home to dinner i'll": [65535, 0], "you go home to dinner i'll stay": [65535, 0], "go home to dinner i'll stay if": [65535, 0], "home to dinner i'll stay if you": [65535, 0], "to dinner i'll stay if you will": [65535, 0], "dinner i'll stay if you will good": [65535, 0], "i'll stay if you will good that's": [65535, 0], "stay if you will good that's a": [65535, 0], "if you will good that's a whack": [65535, 0], "you will good that's a whack what's": [65535, 0], "will good that's a whack what's your": [65535, 0], "good that's a whack what's your name": [65535, 0], "that's a whack what's your name becky": [65535, 0], "a whack what's your name becky thatcher": [65535, 0], "whack what's your name becky thatcher what's": [65535, 0], "what's your name becky thatcher what's yours": [65535, 0], "your name becky thatcher what's yours oh": [65535, 0], "name becky thatcher what's yours oh i": [65535, 0], "becky thatcher what's yours oh i know": [65535, 0], "thatcher what's yours oh i know it's": [65535, 0], "what's yours oh i know it's thomas": [65535, 0], "yours oh i know it's thomas sawyer": [65535, 0], "oh i know it's thomas sawyer that's": [65535, 0], "i know it's thomas sawyer that's the": [65535, 0], "know it's thomas sawyer that's the name": [65535, 0], "it's thomas sawyer that's the name they": [65535, 0], "thomas sawyer that's the name they lick": [65535, 0], "sawyer that's the name they lick me": [65535, 0], "that's the name they lick me by": [65535, 0], "the name they lick me by i'm": [65535, 0], "name they lick me by i'm tom": [65535, 0], "they lick me by i'm tom when": [65535, 0], "lick me by i'm tom when i'm": [65535, 0], "me by i'm tom when i'm good": [65535, 0], "by i'm tom when i'm good you": [65535, 0], "i'm tom when i'm good you call": [65535, 0], "tom when i'm good you call me": [65535, 0], "when i'm good you call me tom": [65535, 0], "i'm good you call me tom will": [65535, 0], "good you call me tom will you": [65535, 0], "you call me tom will you yes": [65535, 0], "call me tom will you yes now": [65535, 0], "me tom will you yes now tom": [65535, 0], "tom will you yes now tom began": [65535, 0], "will you yes now tom began to": [65535, 0], "you yes now tom began to scrawl": [65535, 0], "yes now tom began to scrawl something": [65535, 0], "now tom began to scrawl something on": [65535, 0], "tom began to scrawl something on the": [65535, 0], "began to scrawl something on the slate": [65535, 0], "to scrawl something on the slate hiding": [65535, 0], "scrawl something on the slate hiding the": [65535, 0], "something on the slate hiding the words": [65535, 0], "on the slate hiding the words from": [65535, 0], "the slate hiding the words from the": [65535, 0], "slate hiding the words from the girl": [65535, 0], "hiding the words from the girl but": [65535, 0], "the words from the girl but she": [65535, 0], "words from the girl but she was": [65535, 0], "from the girl but she was not": [65535, 0], "the girl but she was not backward": [65535, 0], "girl but she was not backward this": [65535, 0], "but she was not backward this time": [65535, 0], "she was not backward this time she": [65535, 0], "was not backward this time she begged": [65535, 0], "not backward this time she begged to": [65535, 0], "backward this time she begged to see": [65535, 0], "this time she begged to see tom": [65535, 0], "time she begged to see tom said": [65535, 0], "she begged to see tom said oh": [65535, 0], "begged to see tom said oh it": [65535, 0], "to see tom said oh it ain't": [65535, 0], "see tom said oh it ain't anything": [65535, 0], "tom said oh it ain't anything yes": [65535, 0], "said oh it ain't anything yes it": [65535, 0], "oh it ain't anything yes it is": [65535, 0], "it ain't anything yes it is no": [65535, 0], "ain't anything yes it is no it": [65535, 0], "anything yes it is no it ain't": [65535, 0], "yes it is no it ain't you": [65535, 0], "it is no it ain't you don't": [65535, 0], "is no it ain't you don't want": [65535, 0], "no it ain't you don't want to": [65535, 0], "it ain't you don't want to see": [65535, 0], "ain't you don't want to see yes": [65535, 0], "you don't want to see yes i": [65535, 0], "don't want to see yes i do": [65535, 0], "want to see yes i do indeed": [65535, 0], "to see yes i do indeed i": [65535, 0], "see yes i do indeed i do": [65535, 0], "yes i do indeed i do please": [65535, 0], "i do indeed i do please let": [65535, 0], "do indeed i do please let me": [65535, 0], "indeed i do please let me you'll": [65535, 0], "i do please let me you'll tell": [65535, 0], "do please let me you'll tell no": [65535, 0], "please let me you'll tell no i": [65535, 0], "let me you'll tell no i won't": [65535, 0], "me you'll tell no i won't deed": [65535, 0], "you'll tell no i won't deed and": [65535, 0], "tell no i won't deed and deed": [65535, 0], "no i won't deed and deed and": [65535, 0], "i won't deed and deed and double": [65535, 0], "won't deed and deed and double deed": [65535, 0], "deed and deed and double deed won't": [65535, 0], "and deed and double deed won't you": [65535, 0], "deed and double deed won't you won't": [65535, 0], "and double deed won't you won't tell": [65535, 0], "double deed won't you won't tell anybody": [65535, 0], "deed won't you won't tell anybody at": [65535, 0], "won't you won't tell anybody at all": [65535, 0], "you won't tell anybody at all ever": [65535, 0], "won't tell anybody at all ever as": [65535, 0], "tell anybody at all ever as long": [65535, 0], "anybody at all ever as long as": [65535, 0], "at all ever as long as you": [65535, 0], "all ever as long as you live": [65535, 0], "ever as long as you live no": [65535, 0], "as long as you live no i": [65535, 0], "long as you live no i won't": [65535, 0], "as you live no i won't ever": [65535, 0], "you live no i won't ever tell": [65535, 0], "live no i won't ever tell anybody": [65535, 0], "no i won't ever tell anybody now": [65535, 0], "i won't ever tell anybody now let": [65535, 0], "won't ever tell anybody now let me": [65535, 0], "ever tell anybody now let me oh": [65535, 0], "tell anybody now let me oh you": [65535, 0], "anybody now let me oh you don't": [65535, 0], "now let me oh you don't want": [65535, 0], "let me oh you don't want to": [65535, 0], "me oh you don't want to see": [65535, 0], "oh you don't want to see now": [65535, 0], "you don't want to see now that": [65535, 0], "don't want to see now that you": [65535, 0], "want to see now that you treat": [65535, 0], "to see now that you treat me": [65535, 0], "see now that you treat me so": [65535, 0], "now that you treat me so i": [65535, 0], "that you treat me so i will": [65535, 0], "you treat me so i will see": [65535, 0], "treat me so i will see and": [65535, 0], "me so i will see and she": [65535, 0], "so i will see and she put": [65535, 0], "i will see and she put her": [65535, 0], "will see and she put her small": [65535, 0], "see and she put her small hand": [65535, 0], "and she put her small hand upon": [65535, 0], "she put her small hand upon his": [65535, 0], "put her small hand upon his and": [65535, 0], "her small hand upon his and a": [65535, 0], "small hand upon his and a little": [65535, 0], "hand upon his and a little scuffle": [65535, 0], "upon his and a little scuffle ensued": [65535, 0], "his and a little scuffle ensued tom": [65535, 0], "and a little scuffle ensued tom pretending": [65535, 0], "a little scuffle ensued tom pretending to": [65535, 0], "little scuffle ensued tom pretending to resist": [65535, 0], "scuffle ensued tom pretending to resist in": [65535, 0], "ensued tom pretending to resist in earnest": [65535, 0], "tom pretending to resist in earnest but": [65535, 0], "pretending to resist in earnest but letting": [65535, 0], "to resist in earnest but letting his": [65535, 0], "resist in earnest but letting his hand": [65535, 0], "in earnest but letting his hand slip": [65535, 0], "earnest but letting his hand slip by": [65535, 0], "but letting his hand slip by degrees": [65535, 0], "letting his hand slip by degrees till": [65535, 0], "his hand slip by degrees till these": [65535, 0], "hand slip by degrees till these words": [65535, 0], "slip by degrees till these words were": [65535, 0], "by degrees till these words were revealed": [65535, 0], "degrees till these words were revealed i": [65535, 0], "till these words were revealed i love": [65535, 0], "these words were revealed i love you": [65535, 0], "words were revealed i love you oh": [65535, 0], "were revealed i love you oh you": [65535, 0], "revealed i love you oh you bad": [65535, 0], "i love you oh you bad thing": [65535, 0], "love you oh you bad thing and": [65535, 0], "you oh you bad thing and she": [65535, 0], "oh you bad thing and she hit": [65535, 0], "you bad thing and she hit his": [65535, 0], "bad thing and she hit his hand": [65535, 0], "thing and she hit his hand a": [65535, 0], "and she hit his hand a smart": [65535, 0], "she hit his hand a smart rap": [65535, 0], "hit his hand a smart rap but": [65535, 0], "his hand a smart rap but reddened": [65535, 0], "hand a smart rap but reddened and": [65535, 0], "a smart rap but reddened and looked": [65535, 0], "smart rap but reddened and looked pleased": [65535, 0], "rap but reddened and looked pleased nevertheless": [65535, 0], "but reddened and looked pleased nevertheless just": [65535, 0], "reddened and looked pleased nevertheless just at": [65535, 0], "and looked pleased nevertheless just at this": [65535, 0], "looked pleased nevertheless just at this juncture": [65535, 0], "pleased nevertheless just at this juncture the": [65535, 0], "nevertheless just at this juncture the boy": [65535, 0], "just at this juncture the boy felt": [65535, 0], "at this juncture the boy felt a": [65535, 0], "this juncture the boy felt a slow": [65535, 0], "juncture the boy felt a slow fateful": [65535, 0], "the boy felt a slow fateful grip": [65535, 0], "boy felt a slow fateful grip closing": [65535, 0], "felt a slow fateful grip closing on": [65535, 0], "a slow fateful grip closing on his": [65535, 0], "slow fateful grip closing on his ear": [65535, 0], "fateful grip closing on his ear and": [65535, 0], "grip closing on his ear and a": [65535, 0], "closing on his ear and a steady": [65535, 0], "on his ear and a steady lifting": [65535, 0], "his ear and a steady lifting impulse": [65535, 0], "ear and a steady lifting impulse in": [65535, 0], "and a steady lifting impulse in that": [65535, 0], "a steady lifting impulse in that vise": [65535, 0], "steady lifting impulse in that vise he": [65535, 0], "lifting impulse in that vise he was": [65535, 0], "impulse in that vise he was borne": [65535, 0], "in that vise he was borne across": [65535, 0], "that vise he was borne across the": [65535, 0], "vise he was borne across the house": [65535, 0], "he was borne across the house and": [65535, 0], "was borne across the house and deposited": [65535, 0], "borne across the house and deposited in": [65535, 0], "across the house and deposited in his": [65535, 0], "the house and deposited in his own": [65535, 0], "house and deposited in his own seat": [65535, 0], "and deposited in his own seat under": [65535, 0], "deposited in his own seat under a": [65535, 0], "in his own seat under a peppering": [65535, 0], "his own seat under a peppering fire": [65535, 0], "own seat under a peppering fire of": [65535, 0], "seat under a peppering fire of giggles": [65535, 0], "under a peppering fire of giggles from": [65535, 0], "a peppering fire of giggles from the": [65535, 0], "peppering fire of giggles from the whole": [65535, 0], "fire of giggles from the whole school": [65535, 0], "of giggles from the whole school then": [65535, 0], "giggles from the whole school then the": [65535, 0], "from the whole school then the master": [65535, 0], "the whole school then the master stood": [65535, 0], "whole school then the master stood over": [65535, 0], "school then the master stood over him": [65535, 0], "then the master stood over him during": [65535, 0], "the master stood over him during a": [65535, 0], "master stood over him during a few": [65535, 0], "stood over him during a few awful": [65535, 0], "over him during a few awful moments": [65535, 0], "him during a few awful moments and": [65535, 0], "during a few awful moments and finally": [65535, 0], "a few awful moments and finally moved": [65535, 0], "few awful moments and finally moved away": [65535, 0], "awful moments and finally moved away to": [65535, 0], "moments and finally moved away to his": [65535, 0], "and finally moved away to his throne": [65535, 0], "finally moved away to his throne without": [65535, 0], "moved away to his throne without saying": [65535, 0], "away to his throne without saying a": [65535, 0], "to his throne without saying a word": [65535, 0], "his throne without saying a word but": [65535, 0], "throne without saying a word but although": [65535, 0], "without saying a word but although tom's": [65535, 0], "saying a word but although tom's ear": [65535, 0], "a word but although tom's ear tingled": [65535, 0], "word but although tom's ear tingled his": [65535, 0], "but although tom's ear tingled his heart": [65535, 0], "although tom's ear tingled his heart was": [65535, 0], "tom's ear tingled his heart was jubilant": [65535, 0], "ear tingled his heart was jubilant as": [65535, 0], "tingled his heart was jubilant as the": [65535, 0], "his heart was jubilant as the school": [65535, 0], "heart was jubilant as the school quieted": [65535, 0], "was jubilant as the school quieted down": [65535, 0], "jubilant as the school quieted down tom": [65535, 0], "as the school quieted down tom made": [65535, 0], "the school quieted down tom made an": [65535, 0], "school quieted down tom made an honest": [65535, 0], "quieted down tom made an honest effort": [65535, 0], "down tom made an honest effort to": [65535, 0], "tom made an honest effort to study": [65535, 0], "made an honest effort to study but": [65535, 0], "an honest effort to study but the": [65535, 0], "honest effort to study but the turmoil": [65535, 0], "effort to study but the turmoil within": [65535, 0], "to study but the turmoil within him": [65535, 0], "study but the turmoil within him was": [65535, 0], "but the turmoil within him was too": [65535, 0], "the turmoil within him was too great": [65535, 0], "turmoil within him was too great in": [65535, 0], "within him was too great in turn": [65535, 0], "him was too great in turn he": [65535, 0], "was too great in turn he took": [65535, 0], "too great in turn he took his": [65535, 0], "great in turn he took his place": [65535, 0], "in turn he took his place in": [65535, 0], "turn he took his place in the": [65535, 0], "he took his place in the reading": [65535, 0], "took his place in the reading class": [65535, 0], "his place in the reading class and": [65535, 0], "place in the reading class and made": [65535, 0], "in the reading class and made a": [65535, 0], "the reading class and made a botch": [65535, 0], "reading class and made a botch of": [65535, 0], "class and made a botch of it": [65535, 0], "and made a botch of it then": [65535, 0], "made a botch of it then in": [65535, 0], "a botch of it then in the": [65535, 0], "botch of it then in the geography": [65535, 0], "of it then in the geography class": [65535, 0], "it then in the geography class and": [65535, 0], "then in the geography class and turned": [65535, 0], "in the geography class and turned lakes": [65535, 0], "the geography class and turned lakes into": [65535, 0], "geography class and turned lakes into mountains": [65535, 0], "class and turned lakes into mountains mountains": [65535, 0], "and turned lakes into mountains mountains into": [65535, 0], "turned lakes into mountains mountains into rivers": [65535, 0], "lakes into mountains mountains into rivers and": [65535, 0], "into mountains mountains into rivers and rivers": [65535, 0], "mountains mountains into rivers and rivers into": [65535, 0], "mountains into rivers and rivers into continents": [65535, 0], "into rivers and rivers into continents till": [65535, 0], "rivers and rivers into continents till chaos": [65535, 0], "and rivers into continents till chaos was": [65535, 0], "rivers into continents till chaos was come": [65535, 0], "into continents till chaos was come again": [65535, 0], "continents till chaos was come again then": [65535, 0], "till chaos was come again then in": [65535, 0], "chaos was come again then in the": [65535, 0], "was come again then in the spelling": [65535, 0], "come again then in the spelling class": [65535, 0], "again then in the spelling class and": [65535, 0], "then in the spelling class and got": [65535, 0], "in the spelling class and got turned": [65535, 0], "the spelling class and got turned down": [65535, 0], "spelling class and got turned down by": [65535, 0], "class and got turned down by a": [65535, 0], "and got turned down by a succession": [65535, 0], "got turned down by a succession of": [65535, 0], "turned down by a succession of mere": [65535, 0], "down by a succession of mere baby": [65535, 0], "by a succession of mere baby words": [65535, 0], "a succession of mere baby words till": [65535, 0], "succession of mere baby words till he": [65535, 0], "of mere baby words till he brought": [65535, 0], "mere baby words till he brought up": [65535, 0], "baby words till he brought up at": [65535, 0], "words till he brought up at the": [65535, 0], "till he brought up at the foot": [65535, 0], "he brought up at the foot and": [65535, 0], "brought up at the foot and yielded": [65535, 0], "up at the foot and yielded up": [65535, 0], "at the foot and yielded up the": [65535, 0], "the foot and yielded up the pewter": [65535, 0], "foot and yielded up the pewter medal": [65535, 0], "and yielded up the pewter medal which": [65535, 0], "yielded up the pewter medal which he": [65535, 0], "up the pewter medal which he had": [65535, 0], "the pewter medal which he had worn": [65535, 0], "pewter medal which he had worn with": [65535, 0], "medal which he had worn with ostentation": [65535, 0], "which he had worn with ostentation for": [65535, 0], "he had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday morning": [65535, 0], "morning found tom sawyer miserable monday morning always": [65535, 0], "found tom sawyer miserable monday morning always found": [65535, 0], "tom sawyer miserable monday morning always found him": [65535, 0], "sawyer miserable monday morning always found him so": [65535, 0], "miserable monday morning always found him so because": [65535, 0], "monday morning always found him so because it": [65535, 0], "morning always found him so because it began": [65535, 0], "always found him so because it began another": [65535, 0], "found him so because it began another week's": [65535, 0], "him so because it began another week's slow": [65535, 0], "so because it began another week's slow suffering": [65535, 0], "because it began another week's slow suffering in": [65535, 0], "it began another week's slow suffering in school": [65535, 0], "began another week's slow suffering in school he": [65535, 0], "another week's slow suffering in school he generally": [65535, 0], "week's slow suffering in school he generally began": [65535, 0], "slow suffering in school he generally began that": [65535, 0], "suffering in school he generally began that day": [65535, 0], "in school he generally began that day with": [65535, 0], "school he generally began that day with wishing": [65535, 0], "he generally began that day with wishing he": [65535, 0], "generally began that day with wishing he had": [65535, 0], "began that day with wishing he had had": [65535, 0], "that day with wishing he had had no": [65535, 0], "day with wishing he had had no intervening": [65535, 0], "with wishing he had had no intervening holiday": [65535, 0], "wishing he had had no intervening holiday it": [65535, 0], "he had had no intervening holiday it made": [65535, 0], "had had no intervening holiday it made the": [65535, 0], "had no intervening holiday it made the going": [65535, 0], "no intervening holiday it made the going into": [65535, 0], "intervening holiday it made the going into captivity": [65535, 0], "holiday it made the going into captivity and": [65535, 0], "it made the going into captivity and fetters": [65535, 0], "made the going into captivity and fetters again": [65535, 0], "the going into captivity and fetters again so": [65535, 0], "going into captivity and fetters again so much": [65535, 0], "into captivity and fetters again so much more": [65535, 0], "captivity and fetters again so much more odious": [65535, 0], "and fetters again so much more odious tom": [65535, 0], "fetters again so much more odious tom lay": [65535, 0], "again so much more odious tom lay thinking": [65535, 0], "so much more odious tom lay thinking presently": [65535, 0], "much more odious tom lay thinking presently it": [65535, 0], "more odious tom lay thinking presently it occurred": [65535, 0], "odious tom lay thinking presently it occurred to": [65535, 0], "tom lay thinking presently it occurred to him": [65535, 0], "lay thinking presently it occurred to him that": [65535, 0], "thinking presently it occurred to him that he": [65535, 0], "presently it occurred to him that he wished": [65535, 0], "it occurred to him that he wished he": [65535, 0], "occurred to him that he wished he was": [65535, 0], "to him that he wished he was sick": [65535, 0], "him that he wished he was sick then": [65535, 0], "that he wished he was sick then he": [65535, 0], "he wished he was sick then he could": [65535, 0], "wished he was sick then he could stay": [65535, 0], "he was sick then he could stay home": [65535, 0], "was sick then he could stay home from": [65535, 0], "sick then he could stay home from school": [65535, 0], "then he could stay home from school here": [65535, 0], "he could stay home from school here was": [65535, 0], "could stay home from school here was a": [65535, 0], "stay home from school here was a vague": [65535, 0], "home from school here was a vague possibility": [65535, 0], "from school here was a vague possibility he": [65535, 0], "school here was a vague possibility he canvassed": [65535, 0], "here was a vague possibility he canvassed his": [65535, 0], "was a vague possibility he canvassed his system": [65535, 0], "a vague possibility he canvassed his system no": [65535, 0], "vague possibility he canvassed his system no ailment": [65535, 0], "possibility he canvassed his system no ailment was": [65535, 0], "he canvassed his system no ailment was found": [65535, 0], "canvassed his system no ailment was found and": [65535, 0], "his system no ailment was found and he": [65535, 0], "system no ailment was found and he investigated": [65535, 0], "no ailment was found and he investigated again": [65535, 0], "ailment was found and he investigated again this": [65535, 0], "was found and he investigated again this time": [65535, 0], "found and he investigated again this time he": [65535, 0], "and he investigated again this time he thought": [65535, 0], "he investigated again this time he thought he": [65535, 0], "investigated again this time he thought he could": [65535, 0], "again this time he thought he could detect": [65535, 0], "this time he thought he could detect colicky": [65535, 0], "time he thought he could detect colicky symptoms": [65535, 0], "he thought he could detect colicky symptoms and": [65535, 0], "thought he could detect colicky symptoms and he": [65535, 0], "he could detect colicky symptoms and he began": [65535, 0], "could detect colicky symptoms and he began to": [65535, 0], "detect colicky symptoms and he began to encourage": [65535, 0], "colicky symptoms and he began to encourage them": [65535, 0], "symptoms and he began to encourage them with": [65535, 0], "and he began to encourage them with considerable": [65535, 0], "he began to encourage them with considerable hope": [65535, 0], "began to encourage them with considerable hope but": [65535, 0], "to encourage them with considerable hope but they": [65535, 0], "encourage them with considerable hope but they soon": [65535, 0], "them with considerable hope but they soon grew": [65535, 0], "with considerable hope but they soon grew feeble": [65535, 0], "considerable hope but they soon grew feeble and": [65535, 0], "hope but they soon grew feeble and presently": [65535, 0], "but they soon grew feeble and presently died": [65535, 0], "they soon grew feeble and presently died wholly": [65535, 0], "soon grew feeble and presently died wholly away": [65535, 0], "grew feeble and presently died wholly away he": [65535, 0], "feeble and presently died wholly away he reflected": [65535, 0], "and presently died wholly away he reflected further": [65535, 0], "presently died wholly away he reflected further suddenly": [65535, 0], "died wholly away he reflected further suddenly he": [65535, 0], "wholly away he reflected further suddenly he discovered": [65535, 0], "away he reflected further suddenly he discovered something": [65535, 0], "he reflected further suddenly he discovered something one": [65535, 0], "reflected further suddenly he discovered something one of": [65535, 0], "further suddenly he discovered something one of his": [65535, 0], "suddenly he discovered something one of his upper": [65535, 0], "he discovered something one of his upper front": [65535, 0], "discovered something one of his upper front teeth": [65535, 0], "something one of his upper front teeth was": [65535, 0], "one of his upper front teeth was loose": [65535, 0], "of his upper front teeth was loose this": [65535, 0], "his upper front teeth was loose this was": [65535, 0], "upper front teeth was loose this was lucky": [65535, 0], "front teeth was loose this was lucky he": [65535, 0], "teeth was loose this was lucky he was": [65535, 0], "was loose this was lucky he was about": [65535, 0], "loose this was lucky he was about to": [65535, 0], "this was lucky he was about to begin": [65535, 0], "was lucky he was about to begin to": [65535, 0], "lucky he was about to begin to groan": [65535, 0], "he was about to begin to groan as": [65535, 0], "was about to begin to groan as a": [65535, 0], "about to begin to groan as a starter": [65535, 0], "to begin to groan as a starter as": [65535, 0], "begin to groan as a starter as he": [65535, 0], "to groan as a starter as he called": [65535, 0], "groan as a starter as he called it": [65535, 0], "as a starter as he called it when": [65535, 0], "a starter as he called it when it": [65535, 0], "starter as he called it when it occurred": [65535, 0], "as he called it when it occurred to": [65535, 0], "he called it when it occurred to him": [65535, 0], "called it when it occurred to him that": [65535, 0], "it when it occurred to him that if": [65535, 0], "when it occurred to him that if he": [65535, 0], "it occurred to him that if he came": [65535, 0], "occurred to him that if he came into": [65535, 0], "to him that if he came into court": [65535, 0], "him that if he came into court with": [65535, 0], "that if he came into court with that": [65535, 0], "if he came into court with that argument": [65535, 0], "he came into court with that argument his": [65535, 0], "came into court with that argument his aunt": [65535, 0], "into court with that argument his aunt would": [65535, 0], "court with that argument his aunt would pull": [65535, 0], "with that argument his aunt would pull it": [65535, 0], "that argument his aunt would pull it out": [65535, 0], "argument his aunt would pull it out and": [65535, 0], "his aunt would pull it out and that": [65535, 0], "aunt would pull it out and that would": [65535, 0], "would pull it out and that would hurt": [65535, 0], "pull it out and that would hurt so": [65535, 0], "it out and that would hurt so he": [65535, 0], "out and that would hurt so he thought": [65535, 0], "and that would hurt so he thought he": [65535, 0], "that would hurt so he thought he would": [65535, 0], "would hurt so he thought he would hold": [65535, 0], "hurt so he thought he would hold the": [65535, 0], "so he thought he would hold the tooth": [65535, 0], "he thought he would hold the tooth in": [65535, 0], "thought he would hold the tooth in reserve": [65535, 0], "he would hold the tooth in reserve for": [65535, 0], "would hold the tooth in reserve for the": [65535, 0], "hold the tooth in reserve for the present": [65535, 0], "the tooth in reserve for the present and": [65535, 0], "tooth in reserve for the present and seek": [65535, 0], "in reserve for the present and seek further": [65535, 0], "reserve for the present and seek further nothing": [65535, 0], "for the present and seek further nothing offered": [65535, 0], "the present and seek further nothing offered for": [65535, 0], "present and seek further nothing offered for some": [65535, 0], "and seek further nothing offered for some little": [65535, 0], "seek further nothing offered for some little time": [65535, 0], "further nothing offered for some little time and": [65535, 0], "nothing offered for some little time and then": [65535, 0], "offered for some little time and then he": [65535, 0], "for some little time and then he remembered": [65535, 0], "some little time and then he remembered hearing": [65535, 0], "little time and then he remembered hearing the": [65535, 0], "time and then he remembered hearing the doctor": [65535, 0], "and then he remembered hearing the doctor tell": [65535, 0], "then he remembered hearing the doctor tell about": [65535, 0], "he remembered hearing the doctor tell about a": [65535, 0], "remembered hearing the doctor tell about a certain": [65535, 0], "hearing the doctor tell about a certain thing": [65535, 0], "the doctor tell about a certain thing that": [65535, 0], "doctor tell about a certain thing that laid": [65535, 0], "tell about a certain thing that laid up": [65535, 0], "about a certain thing that laid up a": [65535, 0], "a certain thing that laid up a patient": [65535, 0], "certain thing that laid up a patient for": [65535, 0], "thing that laid up a patient for two": [65535, 0], "that laid up a patient for two or": [65535, 0], "laid up a patient for two or three": [65535, 0], "up a patient for two or three weeks": [65535, 0], "a patient for two or three weeks and": [65535, 0], "patient for two or three weeks and threatened": [65535, 0], "for two or three weeks and threatened to": [65535, 0], "two or three weeks and threatened to make": [65535, 0], "or three weeks and threatened to make him": [65535, 0], "three weeks and threatened to make him lose": [65535, 0], "weeks and threatened to make him lose a": [65535, 0], "and threatened to make him lose a finger": [65535, 0], "threatened to make him lose a finger so": [65535, 0], "to make him lose a finger so the": [65535, 0], "make him lose a finger so the boy": [65535, 0], "him lose a finger so the boy eagerly": [65535, 0], "lose a finger so the boy eagerly drew": [65535, 0], "a finger so the boy eagerly drew his": [65535, 0], "finger so the boy eagerly drew his sore": [65535, 0], "so the boy eagerly drew his sore toe": [65535, 0], "the boy eagerly drew his sore toe from": [65535, 0], "boy eagerly drew his sore toe from under": [65535, 0], "eagerly drew his sore toe from under the": [65535, 0], "drew his sore toe from under the sheet": [65535, 0], "his sore toe from under the sheet and": [65535, 0], "sore toe from under the sheet and held": [65535, 0], "toe from under the sheet and held it": [65535, 0], "from under the sheet and held it up": [65535, 0], "under the sheet and held it up for": [65535, 0], "the sheet and held it up for inspection": [65535, 0], "sheet and held it up for inspection but": [65535, 0], "and held it up for inspection but now": [65535, 0], "held it up for inspection but now he": [65535, 0], "it up for inspection but now he did": [65535, 0], "up for inspection but now he did not": [65535, 0], "for inspection but now he did not know": [65535, 0], "inspection but now he did not know the": [65535, 0], "but now he did not know the necessary": [65535, 0], "now he did not know the necessary symptoms": [65535, 0], "he did not know the necessary symptoms however": [65535, 0], "did not know the necessary symptoms however it": [65535, 0], "not know the necessary symptoms however it seemed": [65535, 0], "know the necessary symptoms however it seemed well": [65535, 0], "the necessary symptoms however it seemed well worth": [65535, 0], "necessary symptoms however it seemed well worth while": [65535, 0], "symptoms however it seemed well worth while to": [65535, 0], "however it seemed well worth while to chance": [65535, 0], "it seemed well worth while to chance it": [65535, 0], "seemed well worth while to chance it so": [65535, 0], "well worth while to chance it so he": [65535, 0], "worth while to chance it so he fell": [65535, 0], "while to chance it so he fell to": [65535, 0], "to chance it so he fell to groaning": [65535, 0], "chance it so he fell to groaning with": [65535, 0], "it so he fell to groaning with considerable": [65535, 0], "so he fell to groaning with considerable spirit": [65535, 0], "he fell to groaning with considerable spirit but": [65535, 0], "fell to groaning with considerable spirit but sid": [65535, 0], "to groaning with considerable spirit but sid slept": [65535, 0], "groaning with considerable spirit but sid slept on": [65535, 0], "with considerable spirit but sid slept on unconscious": [65535, 0], "considerable spirit but sid slept on unconscious tom": [65535, 0], "spirit but sid slept on unconscious tom groaned": [65535, 0], "but sid slept on unconscious tom groaned louder": [65535, 0], "sid slept on unconscious tom groaned louder and": [65535, 0], "slept on unconscious tom groaned louder and fancied": [65535, 0], "on unconscious tom groaned louder and fancied that": [65535, 0], "unconscious tom groaned louder and fancied that he": [65535, 0], "tom groaned louder and fancied that he began": [65535, 0], "groaned louder and fancied that he began to": [65535, 0], "louder and fancied that he began to feel": [65535, 0], "and fancied that he began to feel pain": [65535, 0], "fancied that he began to feel pain in": [65535, 0], "that he began to feel pain in the": [65535, 0], "he began to feel pain in the toe": [65535, 0], "began to feel pain in the toe no": [65535, 0], "to feel pain in the toe no result": [65535, 0], "feel pain in the toe no result from": [65535, 0], "pain in the toe no result from sid": [65535, 0], "in the toe no result from sid tom": [65535, 0], "the toe no result from sid tom was": [65535, 0], "toe no result from sid tom was panting": [65535, 0], "no result from sid tom was panting with": [65535, 0], "result from sid tom was panting with his": [65535, 0], "from sid tom was panting with his exertions": [65535, 0], "sid tom was panting with his exertions by": [65535, 0], "tom was panting with his exertions by this": [65535, 0], "was panting with his exertions by this time": [65535, 0], "panting with his exertions by this time he": [65535, 0], "with his exertions by this time he took": [65535, 0], "his exertions by this time he took a": [65535, 0], "exertions by this time he took a rest": [65535, 0], "by this time he took a rest and": [65535, 0], "this time he took a rest and then": [65535, 0], "time he took a rest and then swelled": [65535, 0], "he took a rest and then swelled himself": [65535, 0], "took a rest and then swelled himself up": [65535, 0], "a rest and then swelled himself up and": [65535, 0], "rest and then swelled himself up and fetched": [65535, 0], "and then swelled himself up and fetched a": [65535, 0], "then swelled himself up and fetched a succession": [65535, 0], "swelled himself up and fetched a succession of": [65535, 0], "himself up and fetched a succession of admirable": [65535, 0], "up and fetched a succession of admirable groans": [65535, 0], "and fetched a succession of admirable groans sid": [65535, 0], "fetched a succession of admirable groans sid snored": [65535, 0], "a succession of admirable groans sid snored on": [65535, 0], "succession of admirable groans sid snored on tom": [65535, 0], "of admirable groans sid snored on tom was": [65535, 0], "admirable groans sid snored on tom was aggravated": [65535, 0], "groans sid snored on tom was aggravated he": [65535, 0], "sid snored on tom was aggravated he said": [65535, 0], "snored on tom was aggravated he said sid": [65535, 0], "on tom was aggravated he said sid sid": [65535, 0], "tom was aggravated he said sid sid and": [65535, 0], "was aggravated he said sid sid and shook": [65535, 0], "aggravated he said sid sid and shook him": [65535, 0], "he said sid sid and shook him this": [65535, 0], "said sid sid and shook him this course": [65535, 0], "sid sid and shook him this course worked": [65535, 0], "sid and shook him this course worked well": [65535, 0], "and shook him this course worked well and": [65535, 0], "shook him this course worked well and tom": [65535, 0], "him this course worked well and tom began": [65535, 0], "this course worked well and tom began to": [65535, 0], "course worked well and tom began to groan": [65535, 0], "worked well and tom began to groan again": [65535, 0], "well and tom began to groan again sid": [65535, 0], "and tom began to groan again sid yawned": [65535, 0], "tom began to groan again sid yawned stretched": [65535, 0], "began to groan again sid yawned stretched then": [65535, 0], "to groan again sid yawned stretched then brought": [65535, 0], "groan again sid yawned stretched then brought himself": [65535, 0], "again sid yawned stretched then brought himself up": [65535, 0], "sid yawned stretched then brought himself up on": [65535, 0], "yawned stretched then brought himself up on his": [65535, 0], "stretched then brought himself up on his elbow": [65535, 0], "then brought himself up on his elbow with": [65535, 0], "brought himself up on his elbow with a": [65535, 0], "himself up on his elbow with a snort": [65535, 0], "up on his elbow with a snort and": [65535, 0], "on his elbow with a snort and began": [65535, 0], "his elbow with a snort and began to": [65535, 0], "elbow with a snort and began to stare": [65535, 0], "with a snort and began to stare at": [65535, 0], "a snort and began to stare at tom": [65535, 0], "snort and began to stare at tom tom": [65535, 0], "and began to stare at tom tom went": [65535, 0], "began to stare at tom tom went on": [65535, 0], "to stare at tom tom went on groaning": [65535, 0], "stare at tom tom went on groaning sid": [65535, 0], "at tom tom went on groaning sid said": [65535, 0], "tom tom went on groaning sid said tom": [65535, 0], "tom went on groaning sid said tom say": [65535, 0], "went on groaning sid said tom say tom": [65535, 0], "on groaning sid said tom say tom no": [65535, 0], "groaning sid said tom say tom no response": [65535, 0], "sid said tom say tom no response here": [65535, 0], "said tom say tom no response here tom": [65535, 0], "tom say tom no response here tom tom": [65535, 0], "say tom no response here tom tom what": [65535, 0], "tom no response here tom tom what is": [65535, 0], "no response here tom tom what is the": [65535, 0], "response here tom tom what is the matter": [65535, 0], "here tom tom what is the matter tom": [65535, 0], "tom tom what is the matter tom and": [65535, 0], "tom what is the matter tom and he": [65535, 0], "what is the matter tom and he shook": [65535, 0], "is the matter tom and he shook him": [65535, 0], "the matter tom and he shook him and": [65535, 0], "matter tom and he shook him and looked": [65535, 0], "tom and he shook him and looked in": [65535, 0], "and he shook him and looked in his": [65535, 0], "he shook him and looked in his face": [65535, 0], "shook him and looked in his face anxiously": [65535, 0], "him and looked in his face anxiously tom": [65535, 0], "and looked in his face anxiously tom moaned": [65535, 0], "looked in his face anxiously tom moaned out": [65535, 0], "in his face anxiously tom moaned out oh": [65535, 0], "his face anxiously tom moaned out oh don't": [65535, 0], "face anxiously tom moaned out oh don't sid": [65535, 0], "anxiously tom moaned out oh don't sid don't": [65535, 0], "tom moaned out oh don't sid don't joggle": [65535, 0], "moaned out oh don't sid don't joggle me": [65535, 0], "out oh don't sid don't joggle me why": [65535, 0], "oh don't sid don't joggle me why what's": [65535, 0], "don't sid don't joggle me why what's the": [65535, 0], "sid don't joggle me why what's the matter": [65535, 0], "don't joggle me why what's the matter tom": [65535, 0], "joggle me why what's the matter tom i": [65535, 0], "me why what's the matter tom i must": [65535, 0], "why what's the matter tom i must call": [65535, 0], "what's the matter tom i must call auntie": [65535, 0], "the matter tom i must call auntie no": [65535, 0], "matter tom i must call auntie no never": [65535, 0], "tom i must call auntie no never mind": [65535, 0], "i must call auntie no never mind it'll": [65535, 0], "must call auntie no never mind it'll be": [65535, 0], "call auntie no never mind it'll be over": [65535, 0], "auntie no never mind it'll be over by": [65535, 0], "no never mind it'll be over by and": [65535, 0], "never mind it'll be over by and by": [65535, 0], "mind it'll be over by and by maybe": [65535, 0], "it'll be over by and by maybe don't": [65535, 0], "be over by and by maybe don't call": [65535, 0], "over by and by maybe don't call anybody": [65535, 0], "by and by maybe don't call anybody but": [65535, 0], "and by maybe don't call anybody but i": [65535, 0], "by maybe don't call anybody but i must": [65535, 0], "maybe don't call anybody but i must don't": [65535, 0], "don't call anybody but i must don't groan": [65535, 0], "call anybody but i must don't groan so": [65535, 0], "anybody but i must don't groan so tom": [65535, 0], "but i must don't groan so tom it's": [65535, 0], "i must don't groan so tom it's awful": [65535, 0], "must don't groan so tom it's awful how": [65535, 0], "don't groan so tom it's awful how long": [65535, 0], "groan so tom it's awful how long you": [65535, 0], "so tom it's awful how long you been": [65535, 0], "tom it's awful how long you been this": [65535, 0], "it's awful how long you been this way": [65535, 0], "awful how long you been this way hours": [65535, 0], "how long you been this way hours ouch": [65535, 0], "long you been this way hours ouch oh": [65535, 0], "you been this way hours ouch oh don't": [65535, 0], "been this way hours ouch oh don't stir": [65535, 0], "this way hours ouch oh don't stir so": [65535, 0], "way hours ouch oh don't stir so sid": [65535, 0], "hours ouch oh don't stir so sid you'll": [65535, 0], "ouch oh don't stir so sid you'll kill": [65535, 0], "oh don't stir so sid you'll kill me": [65535, 0], "don't stir so sid you'll kill me tom": [65535, 0], "stir so sid you'll kill me tom why": [65535, 0], "so sid you'll kill me tom why didn't": [65535, 0], "sid you'll kill me tom why didn't you": [65535, 0], "you'll kill me tom why didn't you wake": [65535, 0], "kill me tom why didn't you wake me": [65535, 0], "me tom why didn't you wake me sooner": [65535, 0], "tom why didn't you wake me sooner oh": [65535, 0], "why didn't you wake me sooner oh tom": [65535, 0], "didn't you wake me sooner oh tom don't": [65535, 0], "you wake me sooner oh tom don't it": [65535, 0], "wake me sooner oh tom don't it makes": [65535, 0], "me sooner oh tom don't it makes my": [65535, 0], "sooner oh tom don't it makes my flesh": [65535, 0], "oh tom don't it makes my flesh crawl": [65535, 0], "tom don't it makes my flesh crawl to": [65535, 0], "don't it makes my flesh crawl to hear": [65535, 0], "it makes my flesh crawl to hear you": [65535, 0], "makes my flesh crawl to hear you tom": [65535, 0], "my flesh crawl to hear you tom what": [65535, 0], "flesh crawl to hear you tom what is": [65535, 0], "crawl to hear you tom what is the": [65535, 0], "to hear you tom what is the matter": [65535, 0], "hear you tom what is the matter i": [65535, 0], "you tom what is the matter i forgive": [65535, 0], "tom what is the matter i forgive you": [65535, 0], "what is the matter i forgive you everything": [65535, 0], "is the matter i forgive you everything sid": [65535, 0], "the matter i forgive you everything sid groan": [65535, 0], "matter i forgive you everything sid groan everything": [65535, 0], "i forgive you everything sid groan everything you've": [65535, 0], "forgive you everything sid groan everything you've ever": [65535, 0], "you everything sid groan everything you've ever done": [65535, 0], "everything sid groan everything you've ever done to": [65535, 0], "sid groan everything you've ever done to me": [65535, 0], "groan everything you've ever done to me when": [65535, 0], "everything you've ever done to me when i'm": [65535, 0], "you've ever done to me when i'm gone": [65535, 0], "ever done to me when i'm gone oh": [65535, 0], "done to me when i'm gone oh tom": [65535, 0], "to me when i'm gone oh tom you": [65535, 0], "me when i'm gone oh tom you ain't": [65535, 0], "when i'm gone oh tom you ain't dying": [65535, 0], "i'm gone oh tom you ain't dying are": [65535, 0], "gone oh tom you ain't dying are you": [65535, 0], "oh tom you ain't dying are you don't": [65535, 0], "tom you ain't dying are you don't tom": [65535, 0], "you ain't dying are you don't tom oh": [65535, 0], "ain't dying are you don't tom oh don't": [65535, 0], "dying are you don't tom oh don't maybe": [65535, 0], "are you don't tom oh don't maybe i": [65535, 0], "you don't tom oh don't maybe i forgive": [65535, 0], "don't tom oh don't maybe i forgive everybody": [65535, 0], "tom oh don't maybe i forgive everybody sid": [65535, 0], "oh don't maybe i forgive everybody sid groan": [65535, 0], "don't maybe i forgive everybody sid groan tell": [65535, 0], "maybe i forgive everybody sid groan tell 'em": [65535, 0], "i forgive everybody sid groan tell 'em so": [65535, 0], "forgive everybody sid groan tell 'em so sid": [65535, 0], "everybody sid groan tell 'em so sid and": [65535, 0], "sid groan tell 'em so sid and sid": [65535, 0], "groan tell 'em so sid and sid you": [65535, 0], "tell 'em so sid and sid you give": [65535, 0], "'em so sid and sid you give my": [65535, 0], "so sid and sid you give my window": [65535, 0], "sid and sid you give my window sash": [65535, 0], "and sid you give my window sash and": [65535, 0], "sid you give my window sash and my": [65535, 0], "you give my window sash and my cat": [65535, 0], "give my window sash and my cat with": [65535, 0], "my window sash and my cat with one": [65535, 0], "window sash and my cat with one eye": [65535, 0], "sash and my cat with one eye to": [65535, 0], "and my cat with one eye to that": [65535, 0], "my cat with one eye to that new": [65535, 0], "cat with one eye to that new girl": [65535, 0], "with one eye to that new girl that's": [65535, 0], "one eye to that new girl that's come": [65535, 0], "eye to that new girl that's come to": [65535, 0], "to that new girl that's come to town": [65535, 0], "that new girl that's come to town and": [65535, 0], "new girl that's come to town and tell": [65535, 0], "girl that's come to town and tell her": [65535, 0], "that's come to town and tell her but": [65535, 0], "come to town and tell her but sid": [65535, 0], "to town and tell her but sid had": [65535, 0], "town and tell her but sid had snatched": [65535, 0], "and tell her but sid had snatched his": [65535, 0], "tell her but sid had snatched his clothes": [65535, 0], "her but sid had snatched his clothes and": [65535, 0], "but sid had snatched his clothes and gone": [65535, 0], "sid had snatched his clothes and gone tom": [65535, 0], "had snatched his clothes and gone tom was": [65535, 0], "snatched his clothes and gone tom was suffering": [65535, 0], "his clothes and gone tom was suffering in": [65535, 0], "clothes and gone tom was suffering in reality": [65535, 0], "and gone tom was suffering in reality now": [65535, 0], "gone tom was suffering in reality now so": [65535, 0], "tom was suffering in reality now so handsomely": [65535, 0], "was suffering in reality now so handsomely was": [65535, 0], "suffering in reality now so handsomely was his": [65535, 0], "in reality now so handsomely was his imagination": [65535, 0], "reality now so handsomely was his imagination working": [65535, 0], "now so handsomely was his imagination working and": [65535, 0], "so handsomely was his imagination working and so": [65535, 0], "handsomely was his imagination working and so his": [65535, 0], "was his imagination working and so his groans": [65535, 0], "his imagination working and so his groans had": [65535, 0], "imagination working and so his groans had gathered": [65535, 0], "working and so his groans had gathered quite": [65535, 0], "and so his groans had gathered quite a": [65535, 0], "so his groans had gathered quite a genuine": [65535, 0], "his groans had gathered quite a genuine tone": [65535, 0], "groans had gathered quite a genuine tone sid": [65535, 0], "had gathered quite a genuine tone sid flew": [65535, 0], "gathered quite a genuine tone sid flew down": [65535, 0], "quite a genuine tone sid flew down stairs": [65535, 0], "a genuine tone sid flew down stairs and": [65535, 0], "genuine tone sid flew down stairs and said": [65535, 0], "tone sid flew down stairs and said oh": [65535, 0], "sid flew down stairs and said oh aunt": [65535, 0], "flew down stairs and said oh aunt polly": [65535, 0], "down stairs and said oh aunt polly come": [65535, 0], "stairs and said oh aunt polly come tom's": [65535, 0], "and said oh aunt polly come tom's dying": [65535, 0], "said oh aunt polly come tom's dying dying": [65535, 0], "oh aunt polly come tom's dying dying yes'm": [65535, 0], "aunt polly come tom's dying dying yes'm don't": [65535, 0], "polly come tom's dying dying yes'm don't wait": [65535, 0], "come tom's dying dying yes'm don't wait come": [65535, 0], "tom's dying dying yes'm don't wait come quick": [65535, 0], "dying dying yes'm don't wait come quick rubbage": [65535, 0], "dying yes'm don't wait come quick rubbage i": [65535, 0], "yes'm don't wait come quick rubbage i don't": [65535, 0], "don't wait come quick rubbage i don't believe": [65535, 0], "wait come quick rubbage i don't believe it": [65535, 0], "come quick rubbage i don't believe it but": [65535, 0], "quick rubbage i don't believe it but she": [65535, 0], "rubbage i don't believe it but she fled": [65535, 0], "i don't believe it but she fled up": [65535, 0], "don't believe it but she fled up stairs": [65535, 0], "believe it but she fled up stairs nevertheless": [65535, 0], "it but she fled up stairs nevertheless with": [65535, 0], "but she fled up stairs nevertheless with sid": [65535, 0], "she fled up stairs nevertheless with sid and": [65535, 0], "fled up stairs nevertheless with sid and mary": [65535, 0], "up stairs nevertheless with sid and mary at": [65535, 0], "stairs nevertheless with sid and mary at her": [65535, 0], "nevertheless with sid and mary at her heels": [65535, 0], "with sid and mary at her heels and": [65535, 0], "sid and mary at her heels and her": [65535, 0], "and mary at her heels and her face": [65535, 0], "mary at her heels and her face grew": [65535, 0], "at her heels and her face grew white": [65535, 0], "her heels and her face grew white too": [65535, 0], "heels and her face grew white too and": [65535, 0], "and her face grew white too and her": [65535, 0], "her face grew white too and her lip": [65535, 0], "face grew white too and her lip trembled": [65535, 0], "grew white too and her lip trembled when": [65535, 0], "white too and her lip trembled when she": [65535, 0], "too and her lip trembled when she reached": [65535, 0], "and her lip trembled when she reached the": [65535, 0], "her lip trembled when she reached the bedside": [65535, 0], "lip trembled when she reached the bedside she": [65535, 0], "trembled when she reached the bedside she gasped": [65535, 0], "when she reached the bedside she gasped out": [65535, 0], "she reached the bedside she gasped out you": [65535, 0], "reached the bedside she gasped out you tom": [65535, 0], "the bedside she gasped out you tom tom": [65535, 0], "bedside she gasped out you tom tom what's": [65535, 0], "she gasped out you tom tom what's the": [65535, 0], "gasped out you tom tom what's the matter": [65535, 0], "out you tom tom what's the matter with": [65535, 0], "you tom tom what's the matter with you": [65535, 0], "tom tom what's the matter with you oh": [65535, 0], "tom what's the matter with you oh auntie": [65535, 0], "what's the matter with you oh auntie i'm": [65535, 0], "the matter with you oh auntie i'm what's": [65535, 0], "matter with you oh auntie i'm what's the": [65535, 0], "with you oh auntie i'm what's the matter": [65535, 0], "you oh auntie i'm what's the matter with": [65535, 0], "oh auntie i'm what's the matter with you": [65535, 0], "auntie i'm what's the matter with you what": [65535, 0], "i'm what's the matter with you what is": [65535, 0], "what's the matter with you what is the": [65535, 0], "the matter with you what is the matter": [65535, 0], "matter with you what is the matter with": [65535, 0], "with you what is the matter with you": [65535, 0], "you what is the matter with you child": [65535, 0], "what is the matter with you child oh": [65535, 0], "is the matter with you child oh auntie": [65535, 0], "the matter with you child oh auntie my": [65535, 0], "matter with you child oh auntie my sore": [65535, 0], "with you child oh auntie my sore toe's": [65535, 0], "you child oh auntie my sore toe's mortified": [65535, 0], "child oh auntie my sore toe's mortified the": [65535, 0], "oh auntie my sore toe's mortified the old": [65535, 0], "auntie my sore toe's mortified the old lady": [65535, 0], "my sore toe's mortified the old lady sank": [65535, 0], "sore toe's mortified the old lady sank down": [65535, 0], "toe's mortified the old lady sank down into": [65535, 0], "mortified the old lady sank down into a": [65535, 0], "the old lady sank down into a chair": [65535, 0], "old lady sank down into a chair and": [65535, 0], "lady sank down into a chair and laughed": [65535, 0], "sank down into a chair and laughed a": [65535, 0], "down into a chair and laughed a little": [65535, 0], "into a chair and laughed a little then": [65535, 0], "a chair and laughed a little then cried": [65535, 0], "chair and laughed a little then cried a": [65535, 0], "and laughed a little then cried a little": [65535, 0], "laughed a little then cried a little then": [65535, 0], "a little then cried a little then did": [65535, 0], "little then cried a little then did both": [65535, 0], "then cried a little then did both together": [65535, 0], "cried a little then did both together this": [65535, 0], "a little then did both together this restored": [65535, 0], "little then did both together this restored her": [65535, 0], "then did both together this restored her and": [65535, 0], "did both together this restored her and she": [65535, 0], "both together this restored her and she said": [65535, 0], "together this restored her and she said tom": [65535, 0], "this restored her and she said tom what": [65535, 0], "restored her and she said tom what a": [65535, 0], "her and she said tom what a turn": [65535, 0], "and she said tom what a turn you": [65535, 0], "she said tom what a turn you did": [65535, 0], "said tom what a turn you did give": [65535, 0], "tom what a turn you did give me": [65535, 0], "what a turn you did give me now": [65535, 0], "a turn you did give me now you": [65535, 0], "turn you did give me now you shut": [65535, 0], "you did give me now you shut up": [65535, 0], "did give me now you shut up that": [65535, 0], "give me now you shut up that nonsense": [65535, 0], "me now you shut up that nonsense and": [65535, 0], "now you shut up that nonsense and climb": [65535, 0], "you shut up that nonsense and climb out": [65535, 0], "shut up that nonsense and climb out of": [65535, 0], "up that nonsense and climb out of this": [65535, 0], "that nonsense and climb out of this the": [65535, 0], "nonsense and climb out of this the groans": [65535, 0], "and climb out of this the groans ceased": [65535, 0], "climb out of this the groans ceased and": [65535, 0], "out of this the groans ceased and the": [65535, 0], "of this the groans ceased and the pain": [65535, 0], "this the groans ceased and the pain vanished": [65535, 0], "the groans ceased and the pain vanished from": [65535, 0], "groans ceased and the pain vanished from the": [65535, 0], "ceased and the pain vanished from the toe": [65535, 0], "and the pain vanished from the toe the": [65535, 0], "the pain vanished from the toe the boy": [65535, 0], "pain vanished from the toe the boy felt": [65535, 0], "vanished from the toe the boy felt a": [65535, 0], "from the toe the boy felt a little": [65535, 0], "the toe the boy felt a little foolish": [65535, 0], "toe the boy felt a little foolish and": [65535, 0], "the boy felt a little foolish and he": [65535, 0], "boy felt a little foolish and he said": [65535, 0], "felt a little foolish and he said aunt": [65535, 0], "a little foolish and he said aunt polly": [65535, 0], "little foolish and he said aunt polly it": [65535, 0], "foolish and he said aunt polly it seemed": [65535, 0], "and he said aunt polly it seemed mortified": [65535, 0], "he said aunt polly it seemed mortified and": [65535, 0], "said aunt polly it seemed mortified and it": [65535, 0], "aunt polly it seemed mortified and it hurt": [65535, 0], "polly it seemed mortified and it hurt so": [65535, 0], "it seemed mortified and it hurt so i": [65535, 0], "seemed mortified and it hurt so i never": [65535, 0], "mortified and it hurt so i never minded": [65535, 0], "and it hurt so i never minded my": [65535, 0], "it hurt so i never minded my tooth": [65535, 0], "hurt so i never minded my tooth at": [65535, 0], "so i never minded my tooth at all": [65535, 0], "i never minded my tooth at all your": [65535, 0], "never minded my tooth at all your tooth": [65535, 0], "minded my tooth at all your tooth indeed": [65535, 0], "my tooth at all your tooth indeed what's": [65535, 0], "tooth at all your tooth indeed what's the": [65535, 0], "at all your tooth indeed what's the matter": [65535, 0], "all your tooth indeed what's the matter with": [65535, 0], "your tooth indeed what's the matter with your": [65535, 0], "tooth indeed what's the matter with your tooth": [65535, 0], "indeed what's the matter with your tooth one": [65535, 0], "what's the matter with your tooth one of": [65535, 0], "the matter with your tooth one of them's": [65535, 0], "matter with your tooth one of them's loose": [65535, 0], "with your tooth one of them's loose and": [65535, 0], "your tooth one of them's loose and it": [65535, 0], "tooth one of them's loose and it aches": [65535, 0], "one of them's loose and it aches perfectly": [65535, 0], "of them's loose and it aches perfectly awful": [65535, 0], "them's loose and it aches perfectly awful there": [65535, 0], "loose and it aches perfectly awful there there": [65535, 0], "and it aches perfectly awful there there now": [65535, 0], "it aches perfectly awful there there now don't": [65535, 0], "aches perfectly awful there there now don't begin": [65535, 0], "perfectly awful there there now don't begin that": [65535, 0], "awful there there now don't begin that groaning": [65535, 0], "there there now don't begin that groaning again": [65535, 0], "there now don't begin that groaning again open": [65535, 0], "now don't begin that groaning again open your": [65535, 0], "don't begin that groaning again open your mouth": [65535, 0], "begin that groaning again open your mouth well": [65535, 0], "that groaning again open your mouth well your": [65535, 0], "groaning again open your mouth well your tooth": [65535, 0], "again open your mouth well your tooth is": [65535, 0], "open your mouth well your tooth is loose": [65535, 0], "your mouth well your tooth is loose but": [65535, 0], "mouth well your tooth is loose but you're": [65535, 0], "well your tooth is loose but you're not": [65535, 0], "your tooth is loose but you're not going": [65535, 0], "tooth is loose but you're not going to": [65535, 0], "is loose but you're not going to die": [65535, 0], "loose but you're not going to die about": [65535, 0], "but you're not going to die about that": [65535, 0], "you're not going to die about that mary": [65535, 0], "not going to die about that mary get": [65535, 0], "going to die about that mary get me": [65535, 0], "to die about that mary get me a": [65535, 0], "die about that mary get me a silk": [65535, 0], "about that mary get me a silk thread": [65535, 0], "that mary get me a silk thread and": [65535, 0], "mary get me a silk thread and a": [65535, 0], "get me a silk thread and a chunk": [65535, 0], "me a silk thread and a chunk of": [65535, 0], "a silk thread and a chunk of fire": [65535, 0], "silk thread and a chunk of fire out": [65535, 0], "thread and a chunk of fire out of": [65535, 0], "and a chunk of fire out of the": [65535, 0], "a chunk of fire out of the kitchen": [65535, 0], "chunk of fire out of the kitchen tom": [65535, 0], "of fire out of the kitchen tom said": [65535, 0], "fire out of the kitchen tom said oh": [65535, 0], "out of the kitchen tom said oh please": [65535, 0], "of the kitchen tom said oh please auntie": [65535, 0], "the kitchen tom said oh please auntie don't": [65535, 0], "kitchen tom said oh please auntie don't pull": [65535, 0], "tom said oh please auntie don't pull it": [65535, 0], "said oh please auntie don't pull it out": [65535, 0], "oh please auntie don't pull it out it": [65535, 0], "please auntie don't pull it out it don't": [65535, 0], "auntie don't pull it out it don't hurt": [65535, 0], "don't pull it out it don't hurt any": [65535, 0], "pull it out it don't hurt any more": [65535, 0], "it out it don't hurt any more i": [65535, 0], "out it don't hurt any more i wish": [65535, 0], "it don't hurt any more i wish i": [65535, 0], "don't hurt any more i wish i may": [65535, 0], "hurt any more i wish i may never": [65535, 0], "any more i wish i may never stir": [65535, 0], "more i wish i may never stir if": [65535, 0], "i wish i may never stir if it": [65535, 0], "wish i may never stir if it does": [65535, 0], "i may never stir if it does please": [65535, 0], "may never stir if it does please don't": [65535, 0], "never stir if it does please don't auntie": [65535, 0], "stir if it does please don't auntie i": [65535, 0], "if it does please don't auntie i don't": [65535, 0], "it does please don't auntie i don't want": [65535, 0], "does please don't auntie i don't want to": [65535, 0], "please don't auntie i don't want to stay": [65535, 0], "don't auntie i don't want to stay home": [65535, 0], "auntie i don't want to stay home from": [65535, 0], "i don't want to stay home from school": [65535, 0], "don't want to stay home from school oh": [65535, 0], "want to stay home from school oh you": [65535, 0], "to stay home from school oh you don't": [65535, 0], "stay home from school oh you don't don't": [65535, 0], "home from school oh you don't don't you": [65535, 0], "from school oh you don't don't you so": [65535, 0], "school oh you don't don't you so all": [65535, 0], "oh you don't don't you so all this": [65535, 0], "you don't don't you so all this row": [65535, 0], "don't don't you so all this row was": [65535, 0], "don't you so all this row was because": [65535, 0], "you so all this row was because you": [65535, 0], "so all this row was because you thought": [65535, 0], "all this row was because you thought you'd": [65535, 0], "this row was because you thought you'd get": [65535, 0], "row was because you thought you'd get to": [65535, 0], "was because you thought you'd get to stay": [65535, 0], "because you thought you'd get to stay home": [65535, 0], "you thought you'd get to stay home from": [65535, 0], "thought you'd get to stay home from school": [65535, 0], "you'd get to stay home from school and": [65535, 0], "get to stay home from school and go": [65535, 0], "to stay home from school and go a": [65535, 0], "stay home from school and go a fishing": [65535, 0], "home from school and go a fishing tom": [65535, 0], "from school and go a fishing tom tom": [65535, 0], "school and go a fishing tom tom i": [65535, 0], "and go a fishing tom tom i love": [65535, 0], "go a fishing tom tom i love you": [65535, 0], "a fishing tom tom i love you so": [65535, 0], "fishing tom tom i love you so and": [65535, 0], "tom tom i love you so and you": [65535, 0], "tom i love you so and you seem": [65535, 0], "i love you so and you seem to": [65535, 0], "love you so and you seem to try": [65535, 0], "you so and you seem to try every": [65535, 0], "so and you seem to try every way": [65535, 0], "and you seem to try every way you": [65535, 0], "you seem to try every way you can": [65535, 0], "seem to try every way you can to": [65535, 0], "to try every way you can to break": [65535, 0], "try every way you can to break my": [65535, 0], "every way you can to break my old": [65535, 0], "way you can to break my old heart": [65535, 0], "you can to break my old heart with": [65535, 0], "can to break my old heart with your": [65535, 0], "to break my old heart with your outrageousness": [65535, 0], "break my old heart with your outrageousness by": [65535, 0], "my old heart with your outrageousness by this": [65535, 0], "old heart with your outrageousness by this time": [65535, 0], "heart with your outrageousness by this time the": [65535, 0], "with your outrageousness by this time the dental": [65535, 0], "your outrageousness by this time the dental instruments": [65535, 0], "outrageousness by this time the dental instruments were": [65535, 0], "by this time the dental instruments were ready": [65535, 0], "this time the dental instruments were ready the": [65535, 0], "time the dental instruments were ready the old": [65535, 0], "the dental instruments were ready the old lady": [65535, 0], "dental instruments were ready the old lady made": [65535, 0], "instruments were ready the old lady made one": [65535, 0], "were ready the old lady made one end": [65535, 0], "ready the old lady made one end of": [65535, 0], "the old lady made one end of the": [65535, 0], "old lady made one end of the silk": [65535, 0], "lady made one end of the silk thread": [65535, 0], "made one end of the silk thread fast": [65535, 0], "one end of the silk thread fast to": [65535, 0], "end of the silk thread fast to tom's": [65535, 0], "of the silk thread fast to tom's tooth": [65535, 0], "the silk thread fast to tom's tooth with": [65535, 0], "silk thread fast to tom's tooth with a": [65535, 0], "thread fast to tom's tooth with a loop": [65535, 0], "fast to tom's tooth with a loop and": [65535, 0], "to tom's tooth with a loop and tied": [65535, 0], "tom's tooth with a loop and tied the": [65535, 0], "tooth with a loop and tied the other": [65535, 0], "with a loop and tied the other to": [65535, 0], "a loop and tied the other to the": [65535, 0], "loop and tied the other to the bedpost": [65535, 0], "and tied the other to the bedpost then": [65535, 0], "tied the other to the bedpost then she": [65535, 0], "the other to the bedpost then she seized": [65535, 0], "other to the bedpost then she seized the": [65535, 0], "to the bedpost then she seized the chunk": [65535, 0], "the bedpost then she seized the chunk of": [65535, 0], "bedpost then she seized the chunk of fire": [65535, 0], "then she seized the chunk of fire and": [65535, 0], "she seized the chunk of fire and suddenly": [65535, 0], "seized the chunk of fire and suddenly thrust": [65535, 0], "the chunk of fire and suddenly thrust it": [65535, 0], "chunk of fire and suddenly thrust it almost": [65535, 0], "of fire and suddenly thrust it almost into": [65535, 0], "fire and suddenly thrust it almost into the": [65535, 0], "and suddenly thrust it almost into the boy's": [65535, 0], "suddenly thrust it almost into the boy's face": [65535, 0], "thrust it almost into the boy's face the": [65535, 0], "it almost into the boy's face the tooth": [65535, 0], "almost into the boy's face the tooth hung": [65535, 0], "into the boy's face the tooth hung dangling": [65535, 0], "the boy's face the tooth hung dangling by": [65535, 0], "boy's face the tooth hung dangling by the": [65535, 0], "face the tooth hung dangling by the bedpost": [65535, 0], "the tooth hung dangling by the bedpost now": [65535, 0], "tooth hung dangling by the bedpost now but": [65535, 0], "hung dangling by the bedpost now but all": [65535, 0], "dangling by the bedpost now but all trials": [65535, 0], "by the bedpost now but all trials bring": [65535, 0], "the bedpost now but all trials bring their": [65535, 0], "bedpost now but all trials bring their compensations": [65535, 0], "now but all trials bring their compensations as": [65535, 0], "but all trials bring their compensations as tom": [65535, 0], "all trials bring their compensations as tom wended": [65535, 0], "trials bring their compensations as tom wended to": [65535, 0], "bring their compensations as tom wended to school": [65535, 0], "their compensations as tom wended to school after": [65535, 0], "compensations as tom wended to school after breakfast": [65535, 0], "as tom wended to school after breakfast he": [65535, 0], "tom wended to school after breakfast he was": [65535, 0], "wended to school after breakfast he was the": [65535, 0], "to school after breakfast he was the envy": [65535, 0], "school after breakfast he was the envy of": [65535, 0], "after breakfast he was the envy of every": [65535, 0], "breakfast he was the envy of every boy": [65535, 0], "he was the envy of every boy he": [65535, 0], "was the envy of every boy he met": [65535, 0], "the envy of every boy he met because": [65535, 0], "envy of every boy he met because the": [65535, 0], "of every boy he met because the gap": [65535, 0], "every boy he met because the gap in": [65535, 0], "boy he met because the gap in his": [65535, 0], "he met because the gap in his upper": [65535, 0], "met because the gap in his upper row": [65535, 0], "because the gap in his upper row of": [65535, 0], "the gap in his upper row of teeth": [65535, 0], "gap in his upper row of teeth enabled": [65535, 0], "in his upper row of teeth enabled him": [65535, 0], "his upper row of teeth enabled him to": [65535, 0], "upper row of teeth enabled him to expectorate": [65535, 0], "row of teeth enabled him to expectorate in": [65535, 0], "of teeth enabled him to expectorate in a": [65535, 0], "teeth enabled him to expectorate in a new": [65535, 0], "enabled him to expectorate in a new and": [65535, 0], "him to expectorate in a new and admirable": [65535, 0], "to expectorate in a new and admirable way": [65535, 0], "expectorate in a new and admirable way he": [65535, 0], "in a new and admirable way he gathered": [65535, 0], "a new and admirable way he gathered quite": [65535, 0], "new and admirable way he gathered quite a": [65535, 0], "and admirable way he gathered quite a following": [65535, 0], "admirable way he gathered quite a following of": [65535, 0], "way he gathered quite a following of lads": [65535, 0], "he gathered quite a following of lads interested": [65535, 0], "gathered quite a following of lads interested in": [65535, 0], "quite a following of lads interested in the": [65535, 0], "a following of lads interested in the exhibition": [65535, 0], "following of lads interested in the exhibition and": [65535, 0], "of lads interested in the exhibition and one": [65535, 0], "lads interested in the exhibition and one that": [65535, 0], "interested in the exhibition and one that had": [65535, 0], "in the exhibition and one that had cut": [65535, 0], "the exhibition and one that had cut his": [65535, 0], "exhibition and one that had cut his finger": [65535, 0], "and one that had cut his finger and": [65535, 0], "one that had cut his finger and had": [65535, 0], "that had cut his finger and had been": [65535, 0], "had cut his finger and had been a": [65535, 0], "cut his finger and had been a centre": [65535, 0], "his finger and had been a centre of": [65535, 0], "finger and had been a centre of fascination": [65535, 0], "and had been a centre of fascination and": [65535, 0], "had been a centre of fascination and homage": [65535, 0], "been a centre of fascination and homage up": [65535, 0], "a centre of fascination and homage up to": [65535, 0], "centre of fascination and homage up to this": [65535, 0], "of fascination and homage up to this time": [65535, 0], "fascination and homage up to this time now": [65535, 0], "and homage up to this time now found": [65535, 0], "homage up to this time now found himself": [65535, 0], "up to this time now found himself suddenly": [65535, 0], "to this time now found himself suddenly without": [65535, 0], "this time now found himself suddenly without an": [65535, 0], "time now found himself suddenly without an adherent": [65535, 0], "now found himself suddenly without an adherent and": [65535, 0], "found himself suddenly without an adherent and shorn": [65535, 0], "himself suddenly without an adherent and shorn of": [65535, 0], "suddenly without an adherent and shorn of his": [65535, 0], "without an adherent and shorn of his glory": [65535, 0], "an adherent and shorn of his glory his": [65535, 0], "adherent and shorn of his glory his heart": [65535, 0], "and shorn of his glory his heart was": [65535, 0], "shorn of his glory his heart was heavy": [65535, 0], "of his glory his heart was heavy and": [65535, 0], "his glory his heart was heavy and he": [65535, 0], "glory his heart was heavy and he said": [65535, 0], "his heart was heavy and he said with": [65535, 0], "heart was heavy and he said with a": [65535, 0], "was heavy and he said with a disdain": [65535, 0], "heavy and he said with a disdain which": [65535, 0], "and he said with a disdain which he": [65535, 0], "he said with a disdain which he did": [65535, 0], "said with a disdain which he did not": [65535, 0], "with a disdain which he did not feel": [65535, 0], "a disdain which he did not feel that": [65535, 0], "disdain which he did not feel that it": [65535, 0], "which he did not feel that it wasn't": [65535, 0], "he did not feel that it wasn't anything": [65535, 0], "did not feel that it wasn't anything to": [65535, 0], "not feel that it wasn't anything to spit": [65535, 0], "feel that it wasn't anything to spit like": [65535, 0], "that it wasn't anything to spit like tom": [65535, 0], "it wasn't anything to spit like tom sawyer": [65535, 0], "wasn't anything to spit like tom sawyer but": [65535, 0], "anything to spit like tom sawyer but another": [65535, 0], "to spit like tom sawyer but another boy": [65535, 0], "spit like tom sawyer but another boy said": [65535, 0], "like tom sawyer but another boy said sour": [65535, 0], "tom sawyer but another boy said sour grapes": [65535, 0], "sawyer but another boy said sour grapes and": [65535, 0], "but another boy said sour grapes and he": [65535, 0], "another boy said sour grapes and he wandered": [65535, 0], "boy said sour grapes and he wandered away": [65535, 0], "said sour grapes and he wandered away a": [65535, 0], "sour grapes and he wandered away a dismantled": [65535, 0], "grapes and he wandered away a dismantled hero": [65535, 0], "and he wandered away a dismantled hero shortly": [65535, 0], "he wandered away a dismantled hero shortly tom": [65535, 0], "wandered away a dismantled hero shortly tom came": [65535, 0], "away a dismantled hero shortly tom came upon": [65535, 0], "a dismantled hero shortly tom came upon the": [65535, 0], "dismantled hero shortly tom came upon the juvenile": [65535, 0], "hero shortly tom came upon the juvenile pariah": [65535, 0], "shortly tom came upon the juvenile pariah of": [65535, 0], "tom came upon the juvenile pariah of the": [65535, 0], "came upon the juvenile pariah of the village": [65535, 0], "upon the juvenile pariah of the village huckleberry": [65535, 0], "the juvenile pariah of the village huckleberry finn": [65535, 0], "juvenile pariah of the village huckleberry finn son": [65535, 0], "pariah of the village huckleberry finn son of": [65535, 0], "of the village huckleberry finn son of the": [65535, 0], "the village huckleberry finn son of the town": [65535, 0], "village huckleberry finn son of the town drunkard": [65535, 0], "huckleberry finn son of the town drunkard huckleberry": [65535, 0], "finn son of the town drunkard huckleberry was": [65535, 0], "son of the town drunkard huckleberry was cordially": [65535, 0], "of the town drunkard huckleberry was cordially hated": [65535, 0], "the town drunkard huckleberry was cordially hated and": [65535, 0], "town drunkard huckleberry was cordially hated and dreaded": [65535, 0], "drunkard huckleberry was cordially hated and dreaded by": [65535, 0], "huckleberry was cordially hated and dreaded by all": [65535, 0], "was cordially hated and dreaded by all the": [65535, 0], "cordially hated and dreaded by all the mothers": [65535, 0], "hated and dreaded by all the mothers of": [65535, 0], "and dreaded by all the mothers of the": [65535, 0], "dreaded by all the mothers of the town": [65535, 0], "by all the mothers of the town because": [65535, 0], "all the mothers of the town because he": [65535, 0], "the mothers of the town because he was": [65535, 0], "mothers of the town because he was idle": [65535, 0], "of the town because he was idle and": [65535, 0], "the town because he was idle and lawless": [65535, 0], "town because he was idle and lawless and": [65535, 0], "because he was idle and lawless and vulgar": [65535, 0], "he was idle and lawless and vulgar and": [65535, 0], "was idle and lawless and vulgar and bad": [65535, 0], "idle and lawless and vulgar and bad and": [65535, 0], "and lawless and vulgar and bad and because": [65535, 0], "lawless and vulgar and bad and because all": [65535, 0], "and vulgar and bad and because all their": [65535, 0], "vulgar and bad and because all their children": [65535, 0], "and bad and because all their children admired": [65535, 0], "bad and because all their children admired him": [65535, 0], "and because all their children admired him so": [65535, 0], "because all their children admired him so and": [65535, 0], "all their children admired him so and delighted": [65535, 0], "their children admired him so and delighted in": [65535, 0], "children admired him so and delighted in his": [65535, 0], "admired him so and delighted in his forbidden": [65535, 0], "him so and delighted in his forbidden society": [65535, 0], "so and delighted in his forbidden society and": [65535, 0], "and delighted in his forbidden society and wished": [65535, 0], "delighted in his forbidden society and wished they": [65535, 0], "in his forbidden society and wished they dared": [65535, 0], "his forbidden society and wished they dared to": [65535, 0], "forbidden society and wished they dared to be": [65535, 0], "society and wished they dared to be like": [65535, 0], "and wished they dared to be like him": [65535, 0], "wished they dared to be like him tom": [65535, 0], "they dared to be like him tom was": [65535, 0], "dared to be like him tom was like": [65535, 0], "to be like him tom was like the": [65535, 0], "be like him tom was like the rest": [65535, 0], "like him tom was like the rest of": [65535, 0], "him tom was like the rest of the": [65535, 0], "tom was like the rest of the respectable": [65535, 0], "was like the rest of the respectable boys": [65535, 0], "like the rest of the respectable boys in": [65535, 0], "the rest of the respectable boys in that": [65535, 0], "rest of the respectable boys in that he": [65535, 0], "of the respectable boys in that he envied": [65535, 0], "the respectable boys in that he envied huckleberry": [65535, 0], "respectable boys in that he envied huckleberry his": [65535, 0], "boys in that he envied huckleberry his gaudy": [65535, 0], "in that he envied huckleberry his gaudy outcast": [65535, 0], "that he envied huckleberry his gaudy outcast condition": [65535, 0], "he envied huckleberry his gaudy outcast condition and": [65535, 0], "envied huckleberry his gaudy outcast condition and was": [65535, 0], "huckleberry his gaudy outcast condition and was under": [65535, 0], "his gaudy outcast condition and was under strict": [65535, 0], "gaudy outcast condition and was under strict orders": [65535, 0], "outcast condition and was under strict orders not": [65535, 0], "condition and was under strict orders not to": [65535, 0], "and was under strict orders not to play": [65535, 0], "was under strict orders not to play with": [65535, 0], "under strict orders not to play with him": [65535, 0], "strict orders not to play with him so": [65535, 0], "orders not to play with him so he": [65535, 0], "not to play with him so he played": [65535, 0], "to play with him so he played with": [65535, 0], "play with him so he played with him": [65535, 0], "with him so he played with him every": [65535, 0], "him so he played with him every time": [65535, 0], "so he played with him every time he": [65535, 0], "he played with him every time he got": [65535, 0], "played with him every time he got a": [65535, 0], "with him every time he got a chance": [65535, 0], "him every time he got a chance huckleberry": [65535, 0], "every time he got a chance huckleberry was": [65535, 0], "time he got a chance huckleberry was always": [65535, 0], "he got a chance huckleberry was always dressed": [65535, 0], "got a chance huckleberry was always dressed in": [65535, 0], "a chance huckleberry was always dressed in the": [65535, 0], "chance huckleberry was always dressed in the cast": [65535, 0], "huckleberry was always dressed in the cast off": [65535, 0], "was always dressed in the cast off clothes": [65535, 0], "always dressed in the cast off clothes of": [65535, 0], "dressed in the cast off clothes of full": [65535, 0], "in the cast off clothes of full grown": [65535, 0], "the cast off clothes of full grown men": [65535, 0], "cast off clothes of full grown men and": [65535, 0], "off clothes of full grown men and they": [65535, 0], "clothes of full grown men and they were": [65535, 0], "of full grown men and they were in": [65535, 0], "full grown men and they were in perennial": [65535, 0], "grown men and they were in perennial bloom": [65535, 0], "men and they were in perennial bloom and": [65535, 0], "and they were in perennial bloom and fluttering": [65535, 0], "they were in perennial bloom and fluttering with": [65535, 0], "were in perennial bloom and fluttering with rags": [65535, 0], "in perennial bloom and fluttering with rags his": [65535, 0], "perennial bloom and fluttering with rags his hat": [65535, 0], "bloom and fluttering with rags his hat was": [65535, 0], "and fluttering with rags his hat was a": [65535, 0], "fluttering with rags his hat was a vast": [65535, 0], "with rags his hat was a vast ruin": [65535, 0], "rags his hat was a vast ruin with": [65535, 0], "his hat was a vast ruin with a": [65535, 0], "hat was a vast ruin with a wide": [65535, 0], "was a vast ruin with a wide crescent": [65535, 0], "a vast ruin with a wide crescent lopped": [65535, 0], "vast ruin with a wide crescent lopped out": [65535, 0], "ruin with a wide crescent lopped out of": [65535, 0], "with a wide crescent lopped out of its": [65535, 0], "a wide crescent lopped out of its brim": [65535, 0], "wide crescent lopped out of its brim his": [65535, 0], "crescent lopped out of its brim his coat": [65535, 0], "lopped out of its brim his coat when": [65535, 0], "out of its brim his coat when he": [65535, 0], "of its brim his coat when he wore": [65535, 0], "its brim his coat when he wore one": [65535, 0], "brim his coat when he wore one hung": [65535, 0], "his coat when he wore one hung nearly": [65535, 0], "coat when he wore one hung nearly to": [65535, 0], "when he wore one hung nearly to his": [65535, 0], "he wore one hung nearly to his heels": [65535, 0], "wore one hung nearly to his heels and": [65535, 0], "one hung nearly to his heels and had": [65535, 0], "hung nearly to his heels and had the": [65535, 0], "nearly to his heels and had the rearward": [65535, 0], "to his heels and had the rearward buttons": [65535, 0], "his heels and had the rearward buttons far": [65535, 0], "heels and had the rearward buttons far down": [65535, 0], "and had the rearward buttons far down the": [65535, 0], "had the rearward buttons far down the back": [65535, 0], "the rearward buttons far down the back but": [65535, 0], "rearward buttons far down the back but one": [65535, 0], "buttons far down the back but one suspender": [65535, 0], "far down the back but one suspender supported": [65535, 0], "down the back but one suspender supported his": [65535, 0], "the back but one suspender supported his trousers": [65535, 0], "back but one suspender supported his trousers the": [65535, 0], "but one suspender supported his trousers the seat": [65535, 0], "one suspender supported his trousers the seat of": [65535, 0], "suspender supported his trousers the seat of the": [65535, 0], "supported his trousers the seat of the trousers": [65535, 0], "his trousers the seat of the trousers bagged": [65535, 0], "trousers the seat of the trousers bagged low": [65535, 0], "the seat of the trousers bagged low and": [65535, 0], "seat of the trousers bagged low and contained": [65535, 0], "of the trousers bagged low and contained nothing": [65535, 0], "the trousers bagged low and contained nothing the": [65535, 0], "trousers bagged low and contained nothing the fringed": [65535, 0], "bagged low and contained nothing the fringed legs": [65535, 0], "low and contained nothing the fringed legs dragged": [65535, 0], "and contained nothing the fringed legs dragged in": [65535, 0], "contained nothing the fringed legs dragged in the": [65535, 0], "nothing the fringed legs dragged in the dirt": [65535, 0], "the fringed legs dragged in the dirt when": [65535, 0], "fringed legs dragged in the dirt when not": [65535, 0], "legs dragged in the dirt when not rolled": [65535, 0], "dragged in the dirt when not rolled up": [65535, 0], "in the dirt when not rolled up huckleberry": [65535, 0], "the dirt when not rolled up huckleberry came": [65535, 0], "dirt when not rolled up huckleberry came and": [65535, 0], "when not rolled up huckleberry came and went": [65535, 0], "not rolled up huckleberry came and went at": [65535, 0], "rolled up huckleberry came and went at his": [65535, 0], "up huckleberry came and went at his own": [65535, 0], "huckleberry came and went at his own free": [65535, 0], "came and went at his own free will": [65535, 0], "and went at his own free will he": [65535, 0], "went at his own free will he slept": [65535, 0], "at his own free will he slept on": [65535, 0], "his own free will he slept on doorsteps": [65535, 0], "own free will he slept on doorsteps in": [65535, 0], "free will he slept on doorsteps in fine": [65535, 0], "will he slept on doorsteps in fine weather": [65535, 0], "he slept on doorsteps in fine weather and": [65535, 0], "slept on doorsteps in fine weather and in": [65535, 0], "on doorsteps in fine weather and in empty": [65535, 0], "doorsteps in fine weather and in empty hogsheads": [65535, 0], "in fine weather and in empty hogsheads in": [65535, 0], "fine weather and in empty hogsheads in wet": [65535, 0], "weather and in empty hogsheads in wet he": [65535, 0], "and in empty hogsheads in wet he did": [65535, 0], "in empty hogsheads in wet he did not": [65535, 0], "empty hogsheads in wet he did not have": [65535, 0], "hogsheads in wet he did not have to": [65535, 0], "in wet he did not have to go": [65535, 0], "wet he did not have to go to": [65535, 0], "he did not have to go to school": [65535, 0], "did not have to go to school or": [65535, 0], "not have to go to school or to": [65535, 0], "have to go to school or to church": [65535, 0], "to go to school or to church or": [65535, 0], "go to school or to church or call": [65535, 0], "to school or to church or call any": [65535, 0], "school or to church or call any being": [65535, 0], "or to church or call any being master": [65535, 0], "to church or call any being master or": [65535, 0], "church or call any being master or obey": [65535, 0], "or call any being master or obey anybody": [65535, 0], "call any being master or obey anybody he": [65535, 0], "any being master or obey anybody he could": [65535, 0], "being master or obey anybody he could go": [65535, 0], "master or obey anybody he could go fishing": [65535, 0], "or obey anybody he could go fishing or": [65535, 0], "obey anybody he could go fishing or swimming": [65535, 0], "anybody he could go fishing or swimming when": [65535, 0], "he could go fishing or swimming when and": [65535, 0], "could go fishing or swimming when and where": [65535, 0], "go fishing or swimming when and where he": [65535, 0], "fishing or swimming when and where he chose": [65535, 0], "or swimming when and where he chose and": [65535, 0], "swimming when and where he chose and stay": [65535, 0], "when and where he chose and stay as": [65535, 0], "and where he chose and stay as long": [65535, 0], "where he chose and stay as long as": [65535, 0], "he chose and stay as long as it": [65535, 0], "chose and stay as long as it suited": [65535, 0], "and stay as long as it suited him": [65535, 0], "stay as long as it suited him nobody": [65535, 0], "as long as it suited him nobody forbade": [65535, 0], "long as it suited him nobody forbade him": [65535, 0], "as it suited him nobody forbade him to": [65535, 0], "it suited him nobody forbade him to fight": [65535, 0], "suited him nobody forbade him to fight he": [65535, 0], "him nobody forbade him to fight he could": [65535, 0], "nobody forbade him to fight he could sit": [65535, 0], "forbade him to fight he could sit up": [65535, 0], "him to fight he could sit up as": [65535, 0], "to fight he could sit up as late": [65535, 0], "fight he could sit up as late as": [65535, 0], "he could sit up as late as he": [65535, 0], "could sit up as late as he pleased": [65535, 0], "sit up as late as he pleased he": [65535, 0], "up as late as he pleased he was": [65535, 0], "as late as he pleased he was always": [65535, 0], "late as he pleased he was always the": [65535, 0], "as he pleased he was always the first": [65535, 0], "he pleased he was always the first boy": [65535, 0], "pleased he was always the first boy that": [65535, 0], "he was always the first boy that went": [65535, 0], "was always the first boy that went barefoot": [65535, 0], "always the first boy that went barefoot in": [65535, 0], "the first boy that went barefoot in the": [65535, 0], "first boy that went barefoot in the spring": [65535, 0], "boy that went barefoot in the spring and": [65535, 0], "that went barefoot in the spring and the": [65535, 0], "went barefoot in the spring and the last": [65535, 0], "barefoot in the spring and the last to": [65535, 0], "in the spring and the last to resume": [65535, 0], "the spring and the last to resume leather": [65535, 0], "spring and the last to resume leather in": [65535, 0], "and the last to resume leather in the": [65535, 0], "the last to resume leather in the fall": [65535, 0], "last to resume leather in the fall he": [65535, 0], "to resume leather in the fall he never": [65535, 0], "resume leather in the fall he never had": [65535, 0], "leather in the fall he never had to": [65535, 0], "in the fall he never had to wash": [65535, 0], "the fall he never had to wash nor": [65535, 0], "fall he never had to wash nor put": [65535, 0], "he never had to wash nor put on": [65535, 0], "never had to wash nor put on clean": [65535, 0], "had to wash nor put on clean clothes": [65535, 0], "to wash nor put on clean clothes he": [65535, 0], "wash nor put on clean clothes he could": [65535, 0], "nor put on clean clothes he could swear": [65535, 0], "put on clean clothes he could swear wonderfully": [65535, 0], "on clean clothes he could swear wonderfully in": [65535, 0], "clean clothes he could swear wonderfully in a": [65535, 0], "clothes he could swear wonderfully in a word": [65535, 0], "he could swear wonderfully in a word everything": [65535, 0], "could swear wonderfully in a word everything that": [65535, 0], "swear wonderfully in a word everything that goes": [65535, 0], "wonderfully in a word everything that goes to": [65535, 0], "in a word everything that goes to make": [65535, 0], "a word everything that goes to make life": [65535, 0], "word everything that goes to make life precious": [65535, 0], "everything that goes to make life precious that": [65535, 0], "that goes to make life precious that boy": [65535, 0], "goes to make life precious that boy had": [65535, 0], "to make life precious that boy had so": [65535, 0], "make life precious that boy had so thought": [65535, 0], "life precious that boy had so thought every": [65535, 0], "precious that boy had so thought every harassed": [65535, 0], "that boy had so thought every harassed hampered": [65535, 0], "boy had so thought every harassed hampered respectable": [65535, 0], "had so thought every harassed hampered respectable boy": [65535, 0], "so thought every harassed hampered respectable boy in": [65535, 0], "thought every harassed hampered respectable boy in st": [65535, 0], "every harassed hampered respectable boy in st petersburg": [65535, 0], "harassed hampered respectable boy in st petersburg tom": [65535, 0], "hampered respectable boy in st petersburg tom hailed": [65535, 0], "respectable boy in st petersburg tom hailed the": [65535, 0], "boy in st petersburg tom hailed the romantic": [65535, 0], "in st petersburg tom hailed the romantic outcast": [65535, 0], "st petersburg tom hailed the romantic outcast hello": [65535, 0], "petersburg tom hailed the romantic outcast hello huckleberry": [65535, 0], "tom hailed the romantic outcast hello huckleberry hello": [65535, 0], "hailed the romantic outcast hello huckleberry hello yourself": [65535, 0], "the romantic outcast hello huckleberry hello yourself and": [65535, 0], "romantic outcast hello huckleberry hello yourself and see": [65535, 0], "outcast hello huckleberry hello yourself and see how": [65535, 0], "hello huckleberry hello yourself and see how you": [65535, 0], "huckleberry hello yourself and see how you like": [65535, 0], "hello yourself and see how you like it": [65535, 0], "yourself and see how you like it what's": [65535, 0], "and see how you like it what's that": [65535, 0], "see how you like it what's that you": [65535, 0], "how you like it what's that you got": [65535, 0], "you like it what's that you got dead": [65535, 0], "like it what's that you got dead cat": [65535, 0], "it what's that you got dead cat lemme": [65535, 0], "what's that you got dead cat lemme see": [65535, 0], "that you got dead cat lemme see him": [65535, 0], "you got dead cat lemme see him huck": [65535, 0], "got dead cat lemme see him huck my": [65535, 0], "dead cat lemme see him huck my he's": [65535, 0], "cat lemme see him huck my he's pretty": [65535, 0], "lemme see him huck my he's pretty stiff": [65535, 0], "see him huck my he's pretty stiff where'd": [65535, 0], "him huck my he's pretty stiff where'd you": [65535, 0], "huck my he's pretty stiff where'd you get": [65535, 0], "my he's pretty stiff where'd you get him": [65535, 0], "he's pretty stiff where'd you get him bought": [65535, 0], "pretty stiff where'd you get him bought him": [65535, 0], "stiff where'd you get him bought him off'n": [65535, 0], "where'd you get him bought him off'n a": [65535, 0], "you get him bought him off'n a boy": [65535, 0], "get him bought him off'n a boy what": [65535, 0], "him bought him off'n a boy what did": [65535, 0], "bought him off'n a boy what did you": [65535, 0], "him off'n a boy what did you give": [65535, 0], "off'n a boy what did you give i": [65535, 0], "a boy what did you give i give": [65535, 0], "boy what did you give i give a": [65535, 0], "what did you give i give a blue": [65535, 0], "did you give i give a blue ticket": [65535, 0], "you give i give a blue ticket and": [65535, 0], "give i give a blue ticket and a": [65535, 0], "i give a blue ticket and a bladder": [65535, 0], "give a blue ticket and a bladder that": [65535, 0], "a blue ticket and a bladder that i": [65535, 0], "blue ticket and a bladder that i got": [65535, 0], "ticket and a bladder that i got at": [65535, 0], "and a bladder that i got at the": [65535, 0], "a bladder that i got at the slaughter": [65535, 0], "bladder that i got at the slaughter house": [65535, 0], "that i got at the slaughter house where'd": [65535, 0], "i got at the slaughter house where'd you": [65535, 0], "got at the slaughter house where'd you get": [65535, 0], "at the slaughter house where'd you get the": [65535, 0], "the slaughter house where'd you get the blue": [65535, 0], "slaughter house where'd you get the blue ticket": [65535, 0], "house where'd you get the blue ticket bought": [65535, 0], "where'd you get the blue ticket bought it": [65535, 0], "you get the blue ticket bought it off'n": [65535, 0], "get the blue ticket bought it off'n ben": [65535, 0], "the blue ticket bought it off'n ben rogers": [65535, 0], "blue ticket bought it off'n ben rogers two": [65535, 0], "ticket bought it off'n ben rogers two weeks": [65535, 0], "bought it off'n ben rogers two weeks ago": [65535, 0], "it off'n ben rogers two weeks ago for": [65535, 0], "off'n ben rogers two weeks ago for a": [65535, 0], "ben rogers two weeks ago for a hoop": [65535, 0], "rogers two weeks ago for a hoop stick": [65535, 0], "two weeks ago for a hoop stick say": [65535, 0], "weeks ago for a hoop stick say what": [65535, 0], "ago for a hoop stick say what is": [65535, 0], "for a hoop stick say what is dead": [65535, 0], "a hoop stick say what is dead cats": [65535, 0], "hoop stick say what is dead cats good": [65535, 0], "stick say what is dead cats good for": [65535, 0], "say what is dead cats good for huck": [65535, 0], "what is dead cats good for huck good": [65535, 0], "is dead cats good for huck good for": [65535, 0], "dead cats good for huck good for cure": [65535, 0], "cats good for huck good for cure warts": [65535, 0], "good for huck good for cure warts with": [65535, 0], "for huck good for cure warts with no": [65535, 0], "huck good for cure warts with no is": [65535, 0], "good for cure warts with no is that": [65535, 0], "for cure warts with no is that so": [65535, 0], "cure warts with no is that so i": [65535, 0], "warts with no is that so i know": [65535, 0], "with no is that so i know something": [65535, 0], "no is that so i know something that's": [65535, 0], "is that so i know something that's better": [65535, 0], "that so i know something that's better i": [65535, 0], "so i know something that's better i bet": [65535, 0], "i know something that's better i bet you": [65535, 0], "know something that's better i bet you don't": [65535, 0], "something that's better i bet you don't what": [65535, 0], "that's better i bet you don't what is": [65535, 0], "better i bet you don't what is it": [65535, 0], "i bet you don't what is it why": [65535, 0], "bet you don't what is it why spunk": [65535, 0], "you don't what is it why spunk water": [65535, 0], "don't what is it why spunk water spunk": [65535, 0], "what is it why spunk water spunk water": [65535, 0], "is it why spunk water spunk water i": [65535, 0], "it why spunk water spunk water i wouldn't": [65535, 0], "why spunk water spunk water i wouldn't give": [65535, 0], "spunk water spunk water i wouldn't give a": [65535, 0], "water spunk water i wouldn't give a dern": [65535, 0], "spunk water i wouldn't give a dern for": [65535, 0], "water i wouldn't give a dern for spunk": [65535, 0], "i wouldn't give a dern for spunk water": [65535, 0], "wouldn't give a dern for spunk water you": [65535, 0], "give a dern for spunk water you wouldn't": [65535, 0], "a dern for spunk water you wouldn't wouldn't": [65535, 0], "dern for spunk water you wouldn't wouldn't you": [65535, 0], "for spunk water you wouldn't wouldn't you d'you": [65535, 0], "spunk water you wouldn't wouldn't you d'you ever": [65535, 0], "water you wouldn't wouldn't you d'you ever try": [65535, 0], "you wouldn't wouldn't you d'you ever try it": [65535, 0], "wouldn't wouldn't you d'you ever try it no": [65535, 0], "wouldn't you d'you ever try it no i": [65535, 0], "you d'you ever try it no i hain't": [65535, 0], "d'you ever try it no i hain't but": [65535, 0], "ever try it no i hain't but bob": [65535, 0], "try it no i hain't but bob tanner": [65535, 0], "it no i hain't but bob tanner did": [65535, 0], "no i hain't but bob tanner did who": [65535, 0], "i hain't but bob tanner did who told": [65535, 0], "hain't but bob tanner did who told you": [65535, 0], "but bob tanner did who told you so": [65535, 0], "bob tanner did who told you so why": [65535, 0], "tanner did who told you so why he": [65535, 0], "did who told you so why he told": [65535, 0], "who told you so why he told jeff": [65535, 0], "told you so why he told jeff thatcher": [65535, 0], "you so why he told jeff thatcher and": [65535, 0], "so why he told jeff thatcher and jeff": [65535, 0], "why he told jeff thatcher and jeff told": [65535, 0], "he told jeff thatcher and jeff told johnny": [65535, 0], "told jeff thatcher and jeff told johnny baker": [65535, 0], "jeff thatcher and jeff told johnny baker and": [65535, 0], "thatcher and jeff told johnny baker and johnny": [65535, 0], "and jeff told johnny baker and johnny told": [65535, 0], "jeff told johnny baker and johnny told jim": [65535, 0], "told johnny baker and johnny told jim hollis": [65535, 0], "johnny baker and johnny told jim hollis and": [65535, 0], "baker and johnny told jim hollis and jim": [65535, 0], "and johnny told jim hollis and jim told": [65535, 0], "johnny told jim hollis and jim told ben": [65535, 0], "told jim hollis and jim told ben rogers": [65535, 0], "jim hollis and jim told ben rogers and": [65535, 0], "hollis and jim told ben rogers and ben": [65535, 0], "and jim told ben rogers and ben told": [65535, 0], "jim told ben rogers and ben told a": [65535, 0], "told ben rogers and ben told a nigger": [65535, 0], "ben rogers and ben told a nigger and": [65535, 0], "rogers and ben told a nigger and the": [65535, 0], "and ben told a nigger and the nigger": [65535, 0], "ben told a nigger and the nigger told": [65535, 0], "told a nigger and the nigger told me": [65535, 0], "a nigger and the nigger told me there": [65535, 0], "nigger and the nigger told me there now": [65535, 0], "and the nigger told me there now well": [65535, 0], "the nigger told me there now well what": [65535, 0], "nigger told me there now well what of": [65535, 0], "told me there now well what of it": [65535, 0], "me there now well what of it they'll": [65535, 0], "there now well what of it they'll all": [65535, 0], "now well what of it they'll all lie": [65535, 0], "well what of it they'll all lie leastways": [65535, 0], "what of it they'll all lie leastways all": [65535, 0], "of it they'll all lie leastways all but": [65535, 0], "it they'll all lie leastways all but the": [65535, 0], "they'll all lie leastways all but the nigger": [65535, 0], "all lie leastways all but the nigger i": [65535, 0], "lie leastways all but the nigger i don't": [65535, 0], "leastways all but the nigger i don't know": [65535, 0], "all but the nigger i don't know him": [65535, 0], "but the nigger i don't know him but": [65535, 0], "the nigger i don't know him but i": [65535, 0], "nigger i don't know him but i never": [65535, 0], "i don't know him but i never see": [65535, 0], "don't know him but i never see a": [65535, 0], "know him but i never see a nigger": [65535, 0], "him but i never see a nigger that": [65535, 0], "but i never see a nigger that wouldn't": [65535, 0], "i never see a nigger that wouldn't lie": [65535, 0], "never see a nigger that wouldn't lie shucks": [65535, 0], "see a nigger that wouldn't lie shucks now": [65535, 0], "a nigger that wouldn't lie shucks now you": [65535, 0], "nigger that wouldn't lie shucks now you tell": [65535, 0], "that wouldn't lie shucks now you tell me": [65535, 0], "wouldn't lie shucks now you tell me how": [65535, 0], "lie shucks now you tell me how bob": [65535, 0], "shucks now you tell me how bob tanner": [65535, 0], "now you tell me how bob tanner done": [65535, 0], "you tell me how bob tanner done it": [65535, 0], "tell me how bob tanner done it huck": [65535, 0], "me how bob tanner done it huck why": [65535, 0], "how bob tanner done it huck why he": [65535, 0], "bob tanner done it huck why he took": [65535, 0], "tanner done it huck why he took and": [65535, 0], "done it huck why he took and dipped": [65535, 0], "it huck why he took and dipped his": [65535, 0], "huck why he took and dipped his hand": [65535, 0], "why he took and dipped his hand in": [65535, 0], "he took and dipped his hand in a": [65535, 0], "took and dipped his hand in a rotten": [65535, 0], "and dipped his hand in a rotten stump": [65535, 0], "dipped his hand in a rotten stump where": [65535, 0], "his hand in a rotten stump where the": [65535, 0], "hand in a rotten stump where the rain": [65535, 0], "in a rotten stump where the rain water": [65535, 0], "a rotten stump where the rain water was": [65535, 0], "rotten stump where the rain water was in": [65535, 0], "stump where the rain water was in the": [65535, 0], "where the rain water was in the daytime": [65535, 0], "the rain water was in the daytime certainly": [65535, 0], "rain water was in the daytime certainly with": [65535, 0], "water was in the daytime certainly with his": [65535, 0], "was in the daytime certainly with his face": [65535, 0], "in the daytime certainly with his face to": [65535, 0], "the daytime certainly with his face to the": [65535, 0], "daytime certainly with his face to the stump": [65535, 0], "certainly with his face to the stump yes": [65535, 0], "with his face to the stump yes least": [65535, 0], "his face to the stump yes least i": [65535, 0], "face to the stump yes least i reckon": [65535, 0], "to the stump yes least i reckon so": [65535, 0], "the stump yes least i reckon so did": [65535, 0], "stump yes least i reckon so did he": [65535, 0], "yes least i reckon so did he say": [65535, 0], "least i reckon so did he say anything": [65535, 0], "i reckon so did he say anything i": [65535, 0], "reckon so did he say anything i don't": [65535, 0], "so did he say anything i don't reckon": [65535, 0], "did he say anything i don't reckon he": [65535, 0], "he say anything i don't reckon he did": [65535, 0], "say anything i don't reckon he did i": [65535, 0], "anything i don't reckon he did i don't": [65535, 0], "i don't reckon he did i don't know": [65535, 0], "don't reckon he did i don't know aha": [65535, 0], "reckon he did i don't know aha talk": [65535, 0], "he did i don't know aha talk about": [65535, 0], "did i don't know aha talk about trying": [65535, 0], "i don't know aha talk about trying to": [65535, 0], "don't know aha talk about trying to cure": [65535, 0], "know aha talk about trying to cure warts": [65535, 0], "aha talk about trying to cure warts with": [65535, 0], "talk about trying to cure warts with spunk": [65535, 0], "about trying to cure warts with spunk water": [65535, 0], "trying to cure warts with spunk water such": [65535, 0], "to cure warts with spunk water such a": [65535, 0], "cure warts with spunk water such a blame": [65535, 0], "warts with spunk water such a blame fool": [65535, 0], "with spunk water such a blame fool way": [65535, 0], "spunk water such a blame fool way as": [65535, 0], "water such a blame fool way as that": [65535, 0], "such a blame fool way as that why": [65535, 0], "a blame fool way as that why that": [65535, 0], "blame fool way as that why that ain't": [65535, 0], "fool way as that why that ain't a": [65535, 0], "way as that why that ain't a going": [65535, 0], "as that why that ain't a going to": [65535, 0], "that why that ain't a going to do": [65535, 0], "why that ain't a going to do any": [65535, 0], "that ain't a going to do any good": [65535, 0], "ain't a going to do any good you": [65535, 0], "a going to do any good you got": [65535, 0], "going to do any good you got to": [65535, 0], "to do any good you got to go": [65535, 0], "do any good you got to go all": [65535, 0], "any good you got to go all by": [65535, 0], "good you got to go all by yourself": [65535, 0], "you got to go all by yourself to": [65535, 0], "got to go all by yourself to the": [65535, 0], "to go all by yourself to the middle": [65535, 0], "go all by yourself to the middle of": [65535, 0], "all by yourself to the middle of the": [65535, 0], "by yourself to the middle of the woods": [65535, 0], "yourself to the middle of the woods where": [65535, 0], "to the middle of the woods where you": [65535, 0], "the middle of the woods where you know": [65535, 0], "middle of the woods where you know there's": [65535, 0], "of the woods where you know there's a": [65535, 0], "the woods where you know there's a spunk": [65535, 0], "woods where you know there's a spunk water": [65535, 0], "where you know there's a spunk water stump": [65535, 0], "you know there's a spunk water stump and": [65535, 0], "know there's a spunk water stump and just": [65535, 0], "there's a spunk water stump and just as": [65535, 0], "a spunk water stump and just as it's": [65535, 0], "spunk water stump and just as it's midnight": [65535, 0], "water stump and just as it's midnight you": [65535, 0], "stump and just as it's midnight you back": [65535, 0], "and just as it's midnight you back up": [65535, 0], "just as it's midnight you back up against": [65535, 0], "as it's midnight you back up against the": [65535, 0], "it's midnight you back up against the stump": [65535, 0], "midnight you back up against the stump and": [65535, 0], "you back up against the stump and jam": [65535, 0], "back up against the stump and jam your": [65535, 0], "up against the stump and jam your hand": [65535, 0], "against the stump and jam your hand in": [65535, 0], "the stump and jam your hand in and": [65535, 0], "stump and jam your hand in and say": [65535, 0], "and jam your hand in and say 'barley": [65535, 0], "jam your hand in and say 'barley corn": [65535, 0], "your hand in and say 'barley corn barley": [65535, 0], "hand in and say 'barley corn barley corn": [65535, 0], "in and say 'barley corn barley corn injun": [65535, 0], "and say 'barley corn barley corn injun meal": [65535, 0], "say 'barley corn barley corn injun meal shorts": [65535, 0], "'barley corn barley corn injun meal shorts spunk": [65535, 0], "corn barley corn injun meal shorts spunk water": [65535, 0], "barley corn injun meal shorts spunk water spunk": [65535, 0], "corn injun meal shorts spunk water spunk water": [65535, 0], "injun meal shorts spunk water spunk water swaller": [65535, 0], "meal shorts spunk water spunk water swaller these": [65535, 0], "shorts spunk water spunk water swaller these warts": [65535, 0], "spunk water spunk water swaller these warts '": [65535, 0], "water spunk water swaller these warts ' and": [65535, 0], "spunk water swaller these warts ' and then": [65535, 0], "water swaller these warts ' and then walk": [65535, 0], "swaller these warts ' and then walk away": [65535, 0], "these warts ' and then walk away quick": [65535, 0], "warts ' and then walk away quick eleven": [65535, 0], "' and then walk away quick eleven steps": [65535, 0], "and then walk away quick eleven steps with": [65535, 0], "then walk away quick eleven steps with your": [65535, 0], "walk away quick eleven steps with your eyes": [65535, 0], "away quick eleven steps with your eyes shut": [65535, 0], "quick eleven steps with your eyes shut and": [65535, 0], "eleven steps with your eyes shut and then": [65535, 0], "steps with your eyes shut and then turn": [65535, 0], "with your eyes shut and then turn around": [65535, 0], "your eyes shut and then turn around three": [65535, 0], "eyes shut and then turn around three times": [65535, 0], "shut and then turn around three times and": [65535, 0], "and then turn around three times and walk": [65535, 0], "then turn around three times and walk home": [65535, 0], "turn around three times and walk home without": [65535, 0], "around three times and walk home without speaking": [65535, 0], "three times and walk home without speaking to": [65535, 0], "times and walk home without speaking to anybody": [65535, 0], "and walk home without speaking to anybody because": [65535, 0], "walk home without speaking to anybody because if": [65535, 0], "home without speaking to anybody because if you": [65535, 0], "without speaking to anybody because if you speak": [65535, 0], "speaking to anybody because if you speak the": [65535, 0], "to anybody because if you speak the charm's": [65535, 0], "anybody because if you speak the charm's busted": [65535, 0], "because if you speak the charm's busted well": [65535, 0], "if you speak the charm's busted well that": [65535, 0], "you speak the charm's busted well that sounds": [65535, 0], "speak the charm's busted well that sounds like": [65535, 0], "the charm's busted well that sounds like a": [65535, 0], "charm's busted well that sounds like a good": [65535, 0], "busted well that sounds like a good way": [65535, 0], "well that sounds like a good way but": [65535, 0], "that sounds like a good way but that": [65535, 0], "sounds like a good way but that ain't": [65535, 0], "like a good way but that ain't the": [65535, 0], "a good way but that ain't the way": [65535, 0], "good way but that ain't the way bob": [65535, 0], "way but that ain't the way bob tanner": [65535, 0], "but that ain't the way bob tanner done": [65535, 0], "that ain't the way bob tanner done no": [65535, 0], "ain't the way bob tanner done no sir": [65535, 0], "the way bob tanner done no sir you": [65535, 0], "way bob tanner done no sir you can": [65535, 0], "bob tanner done no sir you can bet": [65535, 0], "tanner done no sir you can bet he": [65535, 0], "done no sir you can bet he didn't": [65535, 0], "no sir you can bet he didn't becuz": [65535, 0], "sir you can bet he didn't becuz he's": [65535, 0], "you can bet he didn't becuz he's the": [65535, 0], "can bet he didn't becuz he's the wartiest": [65535, 0], "bet he didn't becuz he's the wartiest boy": [65535, 0], "he didn't becuz he's the wartiest boy in": [65535, 0], "didn't becuz he's the wartiest boy in this": [65535, 0], "becuz he's the wartiest boy in this town": [65535, 0], "he's the wartiest boy in this town and": [65535, 0], "the wartiest boy in this town and he": [65535, 0], "wartiest boy in this town and he wouldn't": [65535, 0], "boy in this town and he wouldn't have": [65535, 0], "in this town and he wouldn't have a": [65535, 0], "this town and he wouldn't have a wart": [65535, 0], "town and he wouldn't have a wart on": [65535, 0], "and he wouldn't have a wart on him": [65535, 0], "he wouldn't have a wart on him if": [65535, 0], "wouldn't have a wart on him if he'd": [65535, 0], "have a wart on him if he'd knowed": [65535, 0], "a wart on him if he'd knowed how": [65535, 0], "wart on him if he'd knowed how to": [65535, 0], "on him if he'd knowed how to work": [65535, 0], "him if he'd knowed how to work spunk": [65535, 0], "if he'd knowed how to work spunk water": [65535, 0], "he'd knowed how to work spunk water i've": [65535, 0], "knowed how to work spunk water i've took": [65535, 0], "how to work spunk water i've took off": [65535, 0], "to work spunk water i've took off thousands": [65535, 0], "work spunk water i've took off thousands of": [65535, 0], "spunk water i've took off thousands of warts": [65535, 0], "water i've took off thousands of warts off": [65535, 0], "i've took off thousands of warts off of": [65535, 0], "took off thousands of warts off of my": [65535, 0], "off thousands of warts off of my hands": [65535, 0], "thousands of warts off of my hands that": [65535, 0], "of warts off of my hands that way": [65535, 0], "warts off of my hands that way huck": [65535, 0], "off of my hands that way huck i": [65535, 0], "of my hands that way huck i play": [65535, 0], "my hands that way huck i play with": [65535, 0], "hands that way huck i play with frogs": [65535, 0], "that way huck i play with frogs so": [65535, 0], "way huck i play with frogs so much": [65535, 0], "huck i play with frogs so much that": [65535, 0], "i play with frogs so much that i've": [65535, 0], "play with frogs so much that i've always": [65535, 0], "with frogs so much that i've always got": [65535, 0], "frogs so much that i've always got considerable": [65535, 0], "so much that i've always got considerable many": [65535, 0], "much that i've always got considerable many warts": [65535, 0], "that i've always got considerable many warts sometimes": [65535, 0], "i've always got considerable many warts sometimes i": [65535, 0], "always got considerable many warts sometimes i take": [65535, 0], "got considerable many warts sometimes i take 'em": [65535, 0], "considerable many warts sometimes i take 'em off": [65535, 0], "many warts sometimes i take 'em off with": [65535, 0], "warts sometimes i take 'em off with a": [65535, 0], "sometimes i take 'em off with a bean": [65535, 0], "i take 'em off with a bean yes": [65535, 0], "take 'em off with a bean yes bean's": [65535, 0], "'em off with a bean yes bean's good": [65535, 0], "off with a bean yes bean's good i've": [65535, 0], "with a bean yes bean's good i've done": [65535, 0], "a bean yes bean's good i've done that": [65535, 0], "bean yes bean's good i've done that have": [65535, 0], "yes bean's good i've done that have you": [65535, 0], "bean's good i've done that have you what's": [65535, 0], "good i've done that have you what's your": [65535, 0], "i've done that have you what's your way": [65535, 0], "done that have you what's your way you": [65535, 0], "that have you what's your way you take": [65535, 0], "have you what's your way you take and": [65535, 0], "you what's your way you take and split": [65535, 0], "what's your way you take and split the": [65535, 0], "your way you take and split the bean": [65535, 0], "way you take and split the bean and": [65535, 0], "you take and split the bean and cut": [65535, 0], "take and split the bean and cut the": [65535, 0], "and split the bean and cut the wart": [65535, 0], "split the bean and cut the wart so": [65535, 0], "the bean and cut the wart so as": [65535, 0], "bean and cut the wart so as to": [65535, 0], "and cut the wart so as to get": [65535, 0], "cut the wart so as to get some": [65535, 0], "the wart so as to get some blood": [65535, 0], "wart so as to get some blood and": [65535, 0], "so as to get some blood and then": [65535, 0], "as to get some blood and then you": [65535, 0], "to get some blood and then you put": [65535, 0], "get some blood and then you put the": [65535, 0], "some blood and then you put the blood": [65535, 0], "blood and then you put the blood on": [65535, 0], "and then you put the blood on one": [65535, 0], "then you put the blood on one piece": [65535, 0], "you put the blood on one piece of": [65535, 0], "put the blood on one piece of the": [65535, 0], "the blood on one piece of the bean": [65535, 0], "blood on one piece of the bean and": [65535, 0], "on one piece of the bean and take": [65535, 0], "one piece of the bean and take and": [65535, 0], "piece of the bean and take and dig": [65535, 0], "of the bean and take and dig a": [65535, 0], "the bean and take and dig a hole": [65535, 0], "bean and take and dig a hole and": [65535, 0], "and take and dig a hole and bury": [65535, 0], "take and dig a hole and bury it": [65535, 0], "and dig a hole and bury it 'bout": [65535, 0], "dig a hole and bury it 'bout midnight": [65535, 0], "a hole and bury it 'bout midnight at": [65535, 0], "hole and bury it 'bout midnight at the": [65535, 0], "and bury it 'bout midnight at the crossroads": [65535, 0], "bury it 'bout midnight at the crossroads in": [65535, 0], "it 'bout midnight at the crossroads in the": [65535, 0], "'bout midnight at the crossroads in the dark": [65535, 0], "midnight at the crossroads in the dark of": [65535, 0], "at the crossroads in the dark of the": [65535, 0], "the crossroads in the dark of the moon": [65535, 0], "crossroads in the dark of the moon and": [65535, 0], "in the dark of the moon and then": [65535, 0], "the dark of the moon and then you": [65535, 0], "dark of the moon and then you burn": [65535, 0], "of the moon and then you burn up": [65535, 0], "the moon and then you burn up the": [65535, 0], "moon and then you burn up the rest": [65535, 0], "and then you burn up the rest of": [65535, 0], "then you burn up the rest of the": [65535, 0], "you burn up the rest of the bean": [65535, 0], "burn up the rest of the bean you": [65535, 0], "up the rest of the bean you see": [65535, 0], "the rest of the bean you see that": [65535, 0], "rest of the bean you see that piece": [65535, 0], "of the bean you see that piece that's": [65535, 0], "the bean you see that piece that's got": [65535, 0], "bean you see that piece that's got the": [65535, 0], "you see that piece that's got the blood": [65535, 0], "see that piece that's got the blood on": [65535, 0], "that piece that's got the blood on it": [65535, 0], "piece that's got the blood on it will": [65535, 0], "that's got the blood on it will keep": [65535, 0], "got the blood on it will keep drawing": [65535, 0], "the blood on it will keep drawing and": [65535, 0], "blood on it will keep drawing and drawing": [65535, 0], "on it will keep drawing and drawing trying": [65535, 0], "it will keep drawing and drawing trying to": [65535, 0], "will keep drawing and drawing trying to fetch": [65535, 0], "keep drawing and drawing trying to fetch the": [65535, 0], "drawing and drawing trying to fetch the other": [65535, 0], "and drawing trying to fetch the other piece": [65535, 0], "drawing trying to fetch the other piece to": [65535, 0], "trying to fetch the other piece to it": [65535, 0], "to fetch the other piece to it and": [65535, 0], "fetch the other piece to it and so": [65535, 0], "the other piece to it and so that": [65535, 0], "other piece to it and so that helps": [65535, 0], "piece to it and so that helps the": [65535, 0], "to it and so that helps the blood": [65535, 0], "it and so that helps the blood to": [65535, 0], "and so that helps the blood to draw": [65535, 0], "so that helps the blood to draw the": [65535, 0], "that helps the blood to draw the wart": [65535, 0], "helps the blood to draw the wart and": [65535, 0], "the blood to draw the wart and pretty": [65535, 0], "blood to draw the wart and pretty soon": [65535, 0], "to draw the wart and pretty soon off": [65535, 0], "draw the wart and pretty soon off she": [65535, 0], "the wart and pretty soon off she comes": [65535, 0], "wart and pretty soon off she comes yes": [65535, 0], "and pretty soon off she comes yes that's": [65535, 0], "pretty soon off she comes yes that's it": [65535, 0], "soon off she comes yes that's it huck": [65535, 0], "off she comes yes that's it huck that's": [65535, 0], "she comes yes that's it huck that's it": [65535, 0], "comes yes that's it huck that's it though": [65535, 0], "yes that's it huck that's it though when": [65535, 0], "that's it huck that's it though when you're": [65535, 0], "it huck that's it though when you're burying": [65535, 0], "huck that's it though when you're burying it": [65535, 0], "that's it though when you're burying it if": [65535, 0], "it though when you're burying it if you": [65535, 0], "though when you're burying it if you say": [65535, 0], "when you're burying it if you say 'down": [65535, 0], "you're burying it if you say 'down bean": [65535, 0], "burying it if you say 'down bean off": [65535, 0], "it if you say 'down bean off wart": [65535, 0], "if you say 'down bean off wart come": [65535, 0], "you say 'down bean off wart come no": [65535, 0], "say 'down bean off wart come no more": [65535, 0], "'down bean off wart come no more to": [65535, 0], "bean off wart come no more to bother": [65535, 0], "off wart come no more to bother me": [65535, 0], "wart come no more to bother me '": [65535, 0], "come no more to bother me ' it's": [65535, 0], "no more to bother me ' it's better": [65535, 0], "more to bother me ' it's better that's": [65535, 0], "to bother me ' it's better that's the": [65535, 0], "bother me ' it's better that's the way": [65535, 0], "me ' it's better that's the way joe": [65535, 0], "' it's better that's the way joe harper": [65535, 0], "it's better that's the way joe harper does": [65535, 0], "better that's the way joe harper does and": [65535, 0], "that's the way joe harper does and he's": [65535, 0], "the way joe harper does and he's been": [65535, 0], "way joe harper does and he's been nearly": [65535, 0], "joe harper does and he's been nearly to": [65535, 0], "harper does and he's been nearly to coonville": [65535, 0], "does and he's been nearly to coonville and": [65535, 0], "and he's been nearly to coonville and most": [65535, 0], "he's been nearly to coonville and most everywheres": [65535, 0], "been nearly to coonville and most everywheres but": [65535, 0], "nearly to coonville and most everywheres but say": [65535, 0], "to coonville and most everywheres but say how": [65535, 0], "coonville and most everywheres but say how do": [65535, 0], "and most everywheres but say how do you": [65535, 0], "most everywheres but say how do you cure": [65535, 0], "everywheres but say how do you cure 'em": [65535, 0], "but say how do you cure 'em with": [65535, 0], "say how do you cure 'em with dead": [65535, 0], "how do you cure 'em with dead cats": [65535, 0], "do you cure 'em with dead cats why": [65535, 0], "you cure 'em with dead cats why you": [65535, 0], "cure 'em with dead cats why you take": [65535, 0], "'em with dead cats why you take your": [65535, 0], "with dead cats why you take your cat": [65535, 0], "dead cats why you take your cat and": [65535, 0], "cats why you take your cat and go": [65535, 0], "why you take your cat and go and": [65535, 0], "you take your cat and go and get": [65535, 0], "take your cat and go and get in": [65535, 0], "your cat and go and get in the": [65535, 0], "cat and go and get in the graveyard": [65535, 0], "and go and get in the graveyard 'long": [65535, 0], "go and get in the graveyard 'long about": [65535, 0], "and get in the graveyard 'long about midnight": [65535, 0], "get in the graveyard 'long about midnight when": [65535, 0], "in the graveyard 'long about midnight when somebody": [65535, 0], "the graveyard 'long about midnight when somebody that": [65535, 0], "graveyard 'long about midnight when somebody that was": [65535, 0], "'long about midnight when somebody that was wicked": [65535, 0], "about midnight when somebody that was wicked has": [65535, 0], "midnight when somebody that was wicked has been": [65535, 0], "when somebody that was wicked has been buried": [65535, 0], "somebody that was wicked has been buried and": [65535, 0], "that was wicked has been buried and when": [65535, 0], "was wicked has been buried and when it's": [65535, 0], "wicked has been buried and when it's midnight": [65535, 0], "has been buried and when it's midnight a": [65535, 0], "been buried and when it's midnight a devil": [65535, 0], "buried and when it's midnight a devil will": [65535, 0], "and when it's midnight a devil will come": [65535, 0], "when it's midnight a devil will come or": [65535, 0], "it's midnight a devil will come or maybe": [65535, 0], "midnight a devil will come or maybe two": [65535, 0], "a devil will come or maybe two or": [65535, 0], "devil will come or maybe two or three": [65535, 0], "will come or maybe two or three but": [65535, 0], "come or maybe two or three but you": [65535, 0], "or maybe two or three but you can't": [65535, 0], "maybe two or three but you can't see": [65535, 0], "two or three but you can't see 'em": [65535, 0], "or three but you can't see 'em you": [65535, 0], "three but you can't see 'em you can": [65535, 0], "but you can't see 'em you can only": [65535, 0], "you can't see 'em you can only hear": [65535, 0], "can't see 'em you can only hear something": [65535, 0], "see 'em you can only hear something like": [65535, 0], "'em you can only hear something like the": [65535, 0], "you can only hear something like the wind": [65535, 0], "can only hear something like the wind or": [65535, 0], "only hear something like the wind or maybe": [65535, 0], "hear something like the wind or maybe hear": [65535, 0], "something like the wind or maybe hear 'em": [65535, 0], "like the wind or maybe hear 'em talk": [65535, 0], "the wind or maybe hear 'em talk and": [65535, 0], "wind or maybe hear 'em talk and when": [65535, 0], "or maybe hear 'em talk and when they're": [65535, 0], "maybe hear 'em talk and when they're taking": [65535, 0], "hear 'em talk and when they're taking that": [65535, 0], "'em talk and when they're taking that feller": [65535, 0], "talk and when they're taking that feller away": [65535, 0], "and when they're taking that feller away you": [65535, 0], "when they're taking that feller away you heave": [65535, 0], "they're taking that feller away you heave your": [65535, 0], "taking that feller away you heave your cat": [65535, 0], "that feller away you heave your cat after": [65535, 0], "feller away you heave your cat after 'em": [65535, 0], "away you heave your cat after 'em and": [65535, 0], "you heave your cat after 'em and say": [65535, 0], "heave your cat after 'em and say 'devil": [65535, 0], "your cat after 'em and say 'devil follow": [65535, 0], "cat after 'em and say 'devil follow corpse": [65535, 0], "after 'em and say 'devil follow corpse cat": [65535, 0], "'em and say 'devil follow corpse cat follow": [65535, 0], "and say 'devil follow corpse cat follow devil": [65535, 0], "say 'devil follow corpse cat follow devil warts": [65535, 0], "'devil follow corpse cat follow devil warts follow": [65535, 0], "follow corpse cat follow devil warts follow cat": [65535, 0], "corpse cat follow devil warts follow cat i'm": [65535, 0], "cat follow devil warts follow cat i'm done": [65535, 0], "follow devil warts follow cat i'm done with": [65535, 0], "devil warts follow cat i'm done with ye": [65535, 0], "warts follow cat i'm done with ye '": [65535, 0], "follow cat i'm done with ye ' that'll": [65535, 0], "cat i'm done with ye ' that'll fetch": [65535, 0], "i'm done with ye ' that'll fetch any": [65535, 0], "done with ye ' that'll fetch any wart": [65535, 0], "with ye ' that'll fetch any wart sounds": [65535, 0], "ye ' that'll fetch any wart sounds right": [65535, 0], "' that'll fetch any wart sounds right d'you": [65535, 0], "that'll fetch any wart sounds right d'you ever": [65535, 0], "fetch any wart sounds right d'you ever try": [65535, 0], "any wart sounds right d'you ever try it": [65535, 0], "wart sounds right d'you ever try it huck": [65535, 0], "sounds right d'you ever try it huck no": [65535, 0], "right d'you ever try it huck no but": [65535, 0], "d'you ever try it huck no but old": [65535, 0], "ever try it huck no but old mother": [65535, 0], "try it huck no but old mother hopkins": [65535, 0], "it huck no but old mother hopkins told": [65535, 0], "huck no but old mother hopkins told me": [65535, 0], "no but old mother hopkins told me well": [65535, 0], "but old mother hopkins told me well i": [65535, 0], "old mother hopkins told me well i reckon": [65535, 0], "mother hopkins told me well i reckon it's": [65535, 0], "hopkins told me well i reckon it's so": [65535, 0], "told me well i reckon it's so then": [65535, 0], "me well i reckon it's so then becuz": [65535, 0], "well i reckon it's so then becuz they": [65535, 0], "i reckon it's so then becuz they say": [65535, 0], "reckon it's so then becuz they say she's": [65535, 0], "it's so then becuz they say she's a": [65535, 0], "so then becuz they say she's a witch": [65535, 0], "then becuz they say she's a witch say": [65535, 0], "becuz they say she's a witch say why": [65535, 0], "they say she's a witch say why tom": [65535, 0], "say she's a witch say why tom i": [65535, 0], "she's a witch say why tom i know": [65535, 0], "a witch say why tom i know she": [65535, 0], "witch say why tom i know she is": [65535, 0], "say why tom i know she is she": [65535, 0], "why tom i know she is she witched": [65535, 0], "tom i know she is she witched pap": [65535, 0], "i know she is she witched pap pap": [65535, 0], "know she is she witched pap pap says": [65535, 0], "she is she witched pap pap says so": [65535, 0], "is she witched pap pap says so his": [65535, 0], "she witched pap pap says so his own": [65535, 0], "witched pap pap says so his own self": [65535, 0], "pap pap says so his own self he": [65535, 0], "pap says so his own self he come": [65535, 0], "says so his own self he come along": [65535, 0], "so his own self he come along one": [65535, 0], "his own self he come along one day": [65535, 0], "own self he come along one day and": [65535, 0], "self he come along one day and he": [65535, 0], "he come along one day and he see": [65535, 0], "come along one day and he see she": [65535, 0], "along one day and he see she was": [65535, 0], "one day and he see she was a": [65535, 0], "day and he see she was a witching": [65535, 0], "and he see she was a witching him": [65535, 0], "he see she was a witching him so": [65535, 0], "see she was a witching him so he": [65535, 0], "she was a witching him so he took": [65535, 0], "was a witching him so he took up": [65535, 0], "a witching him so he took up a": [65535, 0], "witching him so he took up a rock": [65535, 0], "him so he took up a rock and": [65535, 0], "so he took up a rock and if": [65535, 0], "he took up a rock and if she": [65535, 0], "took up a rock and if she hadn't": [65535, 0], "up a rock and if she hadn't dodged": [65535, 0], "a rock and if she hadn't dodged he'd": [65535, 0], "rock and if she hadn't dodged he'd a": [65535, 0], "and if she hadn't dodged he'd a got": [65535, 0], "if she hadn't dodged he'd a got her": [65535, 0], "she hadn't dodged he'd a got her well": [65535, 0], "hadn't dodged he'd a got her well that": [65535, 0], "dodged he'd a got her well that very": [65535, 0], "he'd a got her well that very night": [65535, 0], "a got her well that very night he": [65535, 0], "got her well that very night he rolled": [65535, 0], "her well that very night he rolled off'n": [65535, 0], "well that very night he rolled off'n a": [65535, 0], "that very night he rolled off'n a shed": [65535, 0], "very night he rolled off'n a shed wher'": [65535, 0], "night he rolled off'n a shed wher' he": [65535, 0], "he rolled off'n a shed wher' he was": [65535, 0], "rolled off'n a shed wher' he was a": [65535, 0], "off'n a shed wher' he was a layin": [65535, 0], "a shed wher' he was a layin drunk": [65535, 0], "shed wher' he was a layin drunk and": [65535, 0], "wher' he was a layin drunk and broke": [65535, 0], "he was a layin drunk and broke his": [65535, 0], "was a layin drunk and broke his arm": [65535, 0], "a layin drunk and broke his arm why": [65535, 0], "layin drunk and broke his arm why that's": [65535, 0], "drunk and broke his arm why that's awful": [65535, 0], "and broke his arm why that's awful how": [65535, 0], "broke his arm why that's awful how did": [65535, 0], "his arm why that's awful how did he": [65535, 0], "arm why that's awful how did he know": [65535, 0], "why that's awful how did he know she": [65535, 0], "that's awful how did he know she was": [65535, 0], "awful how did he know she was a": [65535, 0], "how did he know she was a witching": [65535, 0], "did he know she was a witching him": [65535, 0], "he know she was a witching him lord": [65535, 0], "know she was a witching him lord pap": [65535, 0], "she was a witching him lord pap can": [65535, 0], "was a witching him lord pap can tell": [65535, 0], "a witching him lord pap can tell easy": [65535, 0], "witching him lord pap can tell easy pap": [65535, 0], "him lord pap can tell easy pap says": [65535, 0], "lord pap can tell easy pap says when": [65535, 0], "pap can tell easy pap says when they": [65535, 0], "can tell easy pap says when they keep": [65535, 0], "tell easy pap says when they keep looking": [65535, 0], "easy pap says when they keep looking at": [65535, 0], "pap says when they keep looking at you": [65535, 0], "says when they keep looking at you right": [65535, 0], "when they keep looking at you right stiddy": [65535, 0], "they keep looking at you right stiddy they're": [65535, 0], "keep looking at you right stiddy they're a": [65535, 0], "looking at you right stiddy they're a witching": [65535, 0], "at you right stiddy they're a witching you": [65535, 0], "you right stiddy they're a witching you specially": [65535, 0], "right stiddy they're a witching you specially if": [65535, 0], "stiddy they're a witching you specially if they": [65535, 0], "they're a witching you specially if they mumble": [65535, 0], "a witching you specially if they mumble becuz": [65535, 0], "witching you specially if they mumble becuz when": [65535, 0], "you specially if they mumble becuz when they": [65535, 0], "specially if they mumble becuz when they mumble": [65535, 0], "if they mumble becuz when they mumble they're": [65535, 0], "they mumble becuz when they mumble they're saying": [65535, 0], "mumble becuz when they mumble they're saying the": [65535, 0], "becuz when they mumble they're saying the lord's": [65535, 0], "when they mumble they're saying the lord's prayer": [65535, 0], "they mumble they're saying the lord's prayer backards": [65535, 0], "mumble they're saying the lord's prayer backards say": [65535, 0], "they're saying the lord's prayer backards say hucky": [65535, 0], "saying the lord's prayer backards say hucky when": [65535, 0], "the lord's prayer backards say hucky when you": [65535, 0], "lord's prayer backards say hucky when you going": [65535, 0], "prayer backards say hucky when you going to": [65535, 0], "backards say hucky when you going to try": [65535, 0], "say hucky when you going to try the": [65535, 0], "hucky when you going to try the cat": [65535, 0], "when you going to try the cat to": [65535, 0], "you going to try the cat to night": [65535, 0], "going to try the cat to night i": [65535, 0], "to try the cat to night i reckon": [65535, 0], "try the cat to night i reckon they'll": [65535, 0], "the cat to night i reckon they'll come": [65535, 0], "cat to night i reckon they'll come after": [65535, 0], "to night i reckon they'll come after old": [65535, 0], "night i reckon they'll come after old hoss": [65535, 0], "i reckon they'll come after old hoss williams": [65535, 0], "reckon they'll come after old hoss williams to": [65535, 0], "they'll come after old hoss williams to night": [65535, 0], "come after old hoss williams to night but": [65535, 0], "after old hoss williams to night but they": [65535, 0], "old hoss williams to night but they buried": [65535, 0], "hoss williams to night but they buried him": [65535, 0], "williams to night but they buried him saturday": [65535, 0], "to night but they buried him saturday didn't": [65535, 0], "night but they buried him saturday didn't they": [65535, 0], "but they buried him saturday didn't they get": [65535, 0], "they buried him saturday didn't they get him": [65535, 0], "buried him saturday didn't they get him saturday": [65535, 0], "him saturday didn't they get him saturday night": [65535, 0], "saturday didn't they get him saturday night why": [65535, 0], "didn't they get him saturday night why how": [65535, 0], "they get him saturday night why how you": [65535, 0], "get him saturday night why how you talk": [65535, 0], "him saturday night why how you talk how": [65535, 0], "saturday night why how you talk how could": [65535, 0], "night why how you talk how could their": [65535, 0], "why how you talk how could their charms": [65535, 0], "how you talk how could their charms work": [65535, 0], "you talk how could their charms work till": [65535, 0], "talk how could their charms work till midnight": [65535, 0], "how could their charms work till midnight and": [65535, 0], "could their charms work till midnight and then": [65535, 0], "their charms work till midnight and then it's": [65535, 0], "charms work till midnight and then it's sunday": [65535, 0], "work till midnight and then it's sunday devils": [65535, 0], "till midnight and then it's sunday devils don't": [65535, 0], "midnight and then it's sunday devils don't slosh": [65535, 0], "and then it's sunday devils don't slosh around": [65535, 0], "then it's sunday devils don't slosh around much": [65535, 0], "it's sunday devils don't slosh around much of": [65535, 0], "sunday devils don't slosh around much of a": [65535, 0], "devils don't slosh around much of a sunday": [65535, 0], "don't slosh around much of a sunday i": [65535, 0], "slosh around much of a sunday i don't": [65535, 0], "around much of a sunday i don't reckon": [65535, 0], "much of a sunday i don't reckon i": [65535, 0], "of a sunday i don't reckon i never": [65535, 0], "a sunday i don't reckon i never thought": [65535, 0], "sunday i don't reckon i never thought of": [65535, 0], "i don't reckon i never thought of that": [65535, 0], "don't reckon i never thought of that that's": [65535, 0], "reckon i never thought of that that's so": [65535, 0], "i never thought of that that's so lemme": [65535, 0], "never thought of that that's so lemme go": [65535, 0], "thought of that that's so lemme go with": [65535, 0], "of that that's so lemme go with you": [65535, 0], "that that's so lemme go with you of": [65535, 0], "that's so lemme go with you of course": [65535, 0], "so lemme go with you of course if": [65535, 0], "lemme go with you of course if you": [65535, 0], "go with you of course if you ain't": [65535, 0], "with you of course if you ain't afeard": [65535, 0], "you of course if you ain't afeard afeard": [65535, 0], "of course if you ain't afeard afeard 'tain't": [65535, 0], "course if you ain't afeard afeard 'tain't likely": [65535, 0], "if you ain't afeard afeard 'tain't likely will": [65535, 0], "you ain't afeard afeard 'tain't likely will you": [65535, 0], "ain't afeard afeard 'tain't likely will you meow": [65535, 0], "afeard afeard 'tain't likely will you meow yes": [65535, 0], "afeard 'tain't likely will you meow yes and": [65535, 0], "'tain't likely will you meow yes and you": [65535, 0], "likely will you meow yes and you meow": [65535, 0], "will you meow yes and you meow back": [65535, 0], "you meow yes and you meow back if": [65535, 0], "meow yes and you meow back if you": [65535, 0], "yes and you meow back if you get": [65535, 0], "and you meow back if you get a": [65535, 0], "you meow back if you get a chance": [65535, 0], "meow back if you get a chance last": [65535, 0], "back if you get a chance last time": [65535, 0], "if you get a chance last time you": [65535, 0], "you get a chance last time you kep'": [65535, 0], "get a chance last time you kep' me": [65535, 0], "a chance last time you kep' me a": [65535, 0], "chance last time you kep' me a meowing": [65535, 0], "last time you kep' me a meowing around": [65535, 0], "time you kep' me a meowing around till": [65535, 0], "you kep' me a meowing around till old": [65535, 0], "kep' me a meowing around till old hays": [65535, 0], "me a meowing around till old hays went": [65535, 0], "a meowing around till old hays went to": [65535, 0], "meowing around till old hays went to throwing": [65535, 0], "around till old hays went to throwing rocks": [65535, 0], "till old hays went to throwing rocks at": [65535, 0], "old hays went to throwing rocks at me": [65535, 0], "hays went to throwing rocks at me and": [65535, 0], "went to throwing rocks at me and says": [65535, 0], "to throwing rocks at me and says 'dern": [65535, 0], "throwing rocks at me and says 'dern that": [65535, 0], "rocks at me and says 'dern that cat": [65535, 0], "at me and says 'dern that cat '": [65535, 0], "me and says 'dern that cat ' and": [65535, 0], "and says 'dern that cat ' and so": [65535, 0], "says 'dern that cat ' and so i": [65535, 0], "'dern that cat ' and so i hove": [65535, 0], "that cat ' and so i hove a": [65535, 0], "cat ' and so i hove a brick": [65535, 0], "' and so i hove a brick through": [65535, 0], "and so i hove a brick through his": [65535, 0], "so i hove a brick through his window": [65535, 0], "i hove a brick through his window but": [65535, 0], "hove a brick through his window but don't": [65535, 0], "a brick through his window but don't you": [65535, 0], "brick through his window but don't you tell": [65535, 0], "through his window but don't you tell i": [65535, 0], "his window but don't you tell i won't": [65535, 0], "window but don't you tell i won't i": [65535, 0], "but don't you tell i won't i couldn't": [65535, 0], "don't you tell i won't i couldn't meow": [65535, 0], "you tell i won't i couldn't meow that": [65535, 0], "tell i won't i couldn't meow that night": [65535, 0], "i won't i couldn't meow that night becuz": [65535, 0], "won't i couldn't meow that night becuz auntie": [65535, 0], "i couldn't meow that night becuz auntie was": [65535, 0], "couldn't meow that night becuz auntie was watching": [65535, 0], "meow that night becuz auntie was watching me": [65535, 0], "that night becuz auntie was watching me but": [65535, 0], "night becuz auntie was watching me but i'll": [65535, 0], "becuz auntie was watching me but i'll meow": [65535, 0], "auntie was watching me but i'll meow this": [65535, 0], "was watching me but i'll meow this time": [65535, 0], "watching me but i'll meow this time say": [65535, 0], "me but i'll meow this time say what's": [65535, 0], "but i'll meow this time say what's that": [65535, 0], "i'll meow this time say what's that nothing": [65535, 0], "meow this time say what's that nothing but": [65535, 0], "this time say what's that nothing but a": [65535, 0], "time say what's that nothing but a tick": [65535, 0], "say what's that nothing but a tick where'd": [65535, 0], "what's that nothing but a tick where'd you": [65535, 0], "that nothing but a tick where'd you get": [65535, 0], "nothing but a tick where'd you get him": [65535, 0], "but a tick where'd you get him out": [65535, 0], "a tick where'd you get him out in": [65535, 0], "tick where'd you get him out in the": [65535, 0], "where'd you get him out in the woods": [65535, 0], "you get him out in the woods what'll": [65535, 0], "get him out in the woods what'll you": [65535, 0], "him out in the woods what'll you take": [65535, 0], "out in the woods what'll you take for": [65535, 0], "in the woods what'll you take for him": [65535, 0], "the woods what'll you take for him i": [65535, 0], "woods what'll you take for him i don't": [65535, 0], "what'll you take for him i don't know": [65535, 0], "you take for him i don't know i": [65535, 0], "take for him i don't know i don't": [65535, 0], "for him i don't know i don't want": [65535, 0], "him i don't know i don't want to": [65535, 0], "i don't know i don't want to sell": [65535, 0], "don't know i don't want to sell him": [65535, 0], "know i don't want to sell him all": [65535, 0], "i don't want to sell him all right": [65535, 0], "don't want to sell him all right it's": [65535, 0], "want to sell him all right it's a": [65535, 0], "to sell him all right it's a mighty": [65535, 0], "sell him all right it's a mighty small": [65535, 0], "him all right it's a mighty small tick": [65535, 0], "all right it's a mighty small tick anyway": [65535, 0], "right it's a mighty small tick anyway oh": [65535, 0], "it's a mighty small tick anyway oh anybody": [65535, 0], "a mighty small tick anyway oh anybody can": [65535, 0], "mighty small tick anyway oh anybody can run": [65535, 0], "small tick anyway oh anybody can run a": [65535, 0], "tick anyway oh anybody can run a tick": [65535, 0], "anyway oh anybody can run a tick down": [65535, 0], "oh anybody can run a tick down that": [65535, 0], "anybody can run a tick down that don't": [65535, 0], "can run a tick down that don't belong": [65535, 0], "run a tick down that don't belong to": [65535, 0], "a tick down that don't belong to them": [65535, 0], "tick down that don't belong to them i'm": [65535, 0], "down that don't belong to them i'm satisfied": [65535, 0], "that don't belong to them i'm satisfied with": [65535, 0], "don't belong to them i'm satisfied with it": [65535, 0], "belong to them i'm satisfied with it it's": [65535, 0], "to them i'm satisfied with it it's a": [65535, 0], "them i'm satisfied with it it's a good": [65535, 0], "i'm satisfied with it it's a good enough": [65535, 0], "satisfied with it it's a good enough tick": [65535, 0], "with it it's a good enough tick for": [65535, 0], "it it's a good enough tick for me": [65535, 0], "it's a good enough tick for me sho": [65535, 0], "a good enough tick for me sho there's": [65535, 0], "good enough tick for me sho there's ticks": [65535, 0], "enough tick for me sho there's ticks a": [65535, 0], "tick for me sho there's ticks a plenty": [65535, 0], "for me sho there's ticks a plenty i": [65535, 0], "me sho there's ticks a plenty i could": [65535, 0], "sho there's ticks a plenty i could have": [65535, 0], "there's ticks a plenty i could have a": [65535, 0], "ticks a plenty i could have a thousand": [65535, 0], "a plenty i could have a thousand of": [65535, 0], "plenty i could have a thousand of 'em": [65535, 0], "i could have a thousand of 'em if": [65535, 0], "could have a thousand of 'em if i": [65535, 0], "have a thousand of 'em if i wanted": [65535, 0], "a thousand of 'em if i wanted to": [65535, 0], "thousand of 'em if i wanted to well": [65535, 0], "of 'em if i wanted to well why": [65535, 0], "'em if i wanted to well why don't": [65535, 0], "if i wanted to well why don't you": [65535, 0], "i wanted to well why don't you becuz": [65535, 0], "wanted to well why don't you becuz you": [65535, 0], "to well why don't you becuz you know": [65535, 0], "well why don't you becuz you know mighty": [65535, 0], "why don't you becuz you know mighty well": [65535, 0], "don't you becuz you know mighty well you": [65535, 0], "you becuz you know mighty well you can't": [65535, 0], "becuz you know mighty well you can't this": [65535, 0], "you know mighty well you can't this is": [65535, 0], "know mighty well you can't this is a": [65535, 0], "mighty well you can't this is a pretty": [65535, 0], "well you can't this is a pretty early": [65535, 0], "you can't this is a pretty early tick": [65535, 0], "can't this is a pretty early tick i": [65535, 0], "this is a pretty early tick i reckon": [65535, 0], "is a pretty early tick i reckon it's": [65535, 0], "a pretty early tick i reckon it's the": [65535, 0], "pretty early tick i reckon it's the first": [65535, 0], "early tick i reckon it's the first one": [65535, 0], "tick i reckon it's the first one i've": [65535, 0], "i reckon it's the first one i've seen": [65535, 0], "reckon it's the first one i've seen this": [65535, 0], "it's the first one i've seen this year": [65535, 0], "the first one i've seen this year say": [65535, 0], "first one i've seen this year say huck": [65535, 0], "one i've seen this year say huck i'll": [65535, 0], "i've seen this year say huck i'll give": [65535, 0], "seen this year say huck i'll give you": [65535, 0], "this year say huck i'll give you my": [65535, 0], "year say huck i'll give you my tooth": [65535, 0], "say huck i'll give you my tooth for": [65535, 0], "huck i'll give you my tooth for him": [65535, 0], "i'll give you my tooth for him less": [65535, 0], "give you my tooth for him less see": [65535, 0], "you my tooth for him less see it": [65535, 0], "my tooth for him less see it tom": [65535, 0], "tooth for him less see it tom got": [65535, 0], "for him less see it tom got out": [65535, 0], "him less see it tom got out a": [65535, 0], "less see it tom got out a bit": [65535, 0], "see it tom got out a bit of": [65535, 0], "it tom got out a bit of paper": [65535, 0], "tom got out a bit of paper and": [65535, 0], "got out a bit of paper and carefully": [65535, 0], "out a bit of paper and carefully unrolled": [65535, 0], "a bit of paper and carefully unrolled it": [65535, 0], "bit of paper and carefully unrolled it huckleberry": [65535, 0], "of paper and carefully unrolled it huckleberry viewed": [65535, 0], "paper and carefully unrolled it huckleberry viewed it": [65535, 0], "and carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully the": [65535, 0], "unrolled it huckleberry viewed it wistfully the temptation": [65535, 0], "it huckleberry viewed it wistfully the temptation was": [65535, 0], "huckleberry viewed it wistfully the temptation was very": [65535, 0], "viewed it wistfully the temptation was very strong": [65535, 0], "it wistfully the temptation was very strong at": [65535, 0], "wistfully the temptation was very strong at last": [65535, 0], "the temptation was very strong at last he": [65535, 0], "temptation was very strong at last he said": [65535, 0], "was very strong at last he said is": [65535, 0], "very strong at last he said is it": [65535, 0], "strong at last he said is it genuwyne": [65535, 0], "at last he said is it genuwyne tom": [65535, 0], "last he said is it genuwyne tom lifted": [65535, 0], "he said is it genuwyne tom lifted his": [65535, 0], "said is it genuwyne tom lifted his lip": [65535, 0], "is it genuwyne tom lifted his lip and": [65535, 0], "it genuwyne tom lifted his lip and showed": [65535, 0], "genuwyne tom lifted his lip and showed the": [65535, 0], "tom lifted his lip and showed the vacancy": [65535, 0], "lifted his lip and showed the vacancy well": [65535, 0], "his lip and showed the vacancy well all": [65535, 0], "lip and showed the vacancy well all right": [65535, 0], "and showed the vacancy well all right said": [65535, 0], "showed the vacancy well all right said huckleberry": [65535, 0], "the vacancy well all right said huckleberry it's": [65535, 0], "vacancy well all right said huckleberry it's a": [65535, 0], "well all right said huckleberry it's a trade": [65535, 0], "all right said huckleberry it's a trade tom": [65535, 0], "right said huckleberry it's a trade tom enclosed": [65535, 0], "said huckleberry it's a trade tom enclosed the": [65535, 0], "huckleberry it's a trade tom enclosed the tick": [65535, 0], "it's a trade tom enclosed the tick in": [65535, 0], "a trade tom enclosed the tick in the": [65535, 0], "trade tom enclosed the tick in the percussion": [65535, 0], "tom enclosed the tick in the percussion cap": [65535, 0], "enclosed the tick in the percussion cap box": [65535, 0], "the tick in the percussion cap box that": [65535, 0], "tick in the percussion cap box that had": [65535, 0], "in the percussion cap box that had lately": [65535, 0], "the percussion cap box that had lately been": [65535, 0], "percussion cap box that had lately been the": [65535, 0], "cap box that had lately been the pinchbug's": [65535, 0], "box that had lately been the pinchbug's prison": [65535, 0], "that had lately been the pinchbug's prison and": [65535, 0], "had lately been the pinchbug's prison and the": [65535, 0], "lately been the pinchbug's prison and the boys": [65535, 0], "been the pinchbug's prison and the boys separated": [65535, 0], "the pinchbug's prison and the boys separated each": [65535, 0], "pinchbug's prison and the boys separated each feeling": [65535, 0], "prison and the boys separated each feeling wealthier": [65535, 0], "and the boys separated each feeling wealthier than": [65535, 0], "the boys separated each feeling wealthier than before": [65535, 0], "boys separated each feeling wealthier than before when": [65535, 0], "separated each feeling wealthier than before when tom": [65535, 0], "each feeling wealthier than before when tom reached": [65535, 0], "feeling wealthier than before when tom reached the": [65535, 0], "wealthier than before when tom reached the little": [65535, 0], "than before when tom reached the little isolated": [65535, 0], "before when tom reached the little isolated frame": [65535, 0], "when tom reached the little isolated frame schoolhouse": [65535, 0], "tom reached the little isolated frame schoolhouse he": [65535, 0], "reached the little isolated frame schoolhouse he strode": [65535, 0], "the little isolated frame schoolhouse he strode in": [65535, 0], "little isolated frame schoolhouse he strode in briskly": [65535, 0], "isolated frame schoolhouse he strode in briskly with": [65535, 0], "frame schoolhouse he strode in briskly with the": [65535, 0], "schoolhouse he strode in briskly with the manner": [65535, 0], "he strode in briskly with the manner of": [65535, 0], "strode in briskly with the manner of one": [65535, 0], "in briskly with the manner of one who": [65535, 0], "briskly with the manner of one who had": [65535, 0], "with the manner of one who had come": [65535, 0], "the manner of one who had come with": [65535, 0], "manner of one who had come with all": [65535, 0], "of one who had come with all honest": [65535, 0], "one who had come with all honest speed": [65535, 0], "who had come with all honest speed he": [65535, 0], "had come with all honest speed he hung": [65535, 0], "come with all honest speed he hung his": [65535, 0], "with all honest speed he hung his hat": [65535, 0], "all honest speed he hung his hat on": [65535, 0], "honest speed he hung his hat on a": [65535, 0], "speed he hung his hat on a peg": [65535, 0], "he hung his hat on a peg and": [65535, 0], "hung his hat on a peg and flung": [65535, 0], "his hat on a peg and flung himself": [65535, 0], "hat on a peg and flung himself into": [65535, 0], "on a peg and flung himself into his": [65535, 0], "a peg and flung himself into his seat": [65535, 0], "peg and flung himself into his seat with": [65535, 0], "and flung himself into his seat with business": [65535, 0], "flung himself into his seat with business like": [65535, 0], "himself into his seat with business like alacrity": [65535, 0], "into his seat with business like alacrity the": [65535, 0], "his seat with business like alacrity the master": [65535, 0], "seat with business like alacrity the master throned": [65535, 0], "with business like alacrity the master throned on": [65535, 0], "business like alacrity the master throned on high": [65535, 0], "like alacrity the master throned on high in": [65535, 0], "alacrity the master throned on high in his": [65535, 0], "the master throned on high in his great": [65535, 0], "master throned on high in his great splint": [65535, 0], "throned on high in his great splint bottom": [65535, 0], "on high in his great splint bottom arm": [65535, 0], "high in his great splint bottom arm chair": [65535, 0], "in his great splint bottom arm chair was": [65535, 0], "his great splint bottom arm chair was dozing": [65535, 0], "great splint bottom arm chair was dozing lulled": [65535, 0], "splint bottom arm chair was dozing lulled by": [65535, 0], "bottom arm chair was dozing lulled by the": [65535, 0], "arm chair was dozing lulled by the drowsy": [65535, 0], "chair was dozing lulled by the drowsy hum": [65535, 0], "was dozing lulled by the drowsy hum of": [65535, 0], "dozing lulled by the drowsy hum of study": [65535, 0], "lulled by the drowsy hum of study the": [65535, 0], "by the drowsy hum of study the interruption": [65535, 0], "the drowsy hum of study the interruption roused": [65535, 0], "drowsy hum of study the interruption roused him": [65535, 0], "hum of study the interruption roused him thomas": [65535, 0], "of study the interruption roused him thomas sawyer": [65535, 0], "study the interruption roused him thomas sawyer tom": [65535, 0], "the interruption roused him thomas sawyer tom knew": [65535, 0], "interruption roused him thomas sawyer tom knew that": [65535, 0], "roused him thomas sawyer tom knew that when": [65535, 0], "him thomas sawyer tom knew that when his": [65535, 0], "thomas sawyer tom knew that when his name": [65535, 0], "sawyer tom knew that when his name was": [65535, 0], "tom knew that when his name was pronounced": [65535, 0], "knew that when his name was pronounced in": [65535, 0], "that when his name was pronounced in full": [65535, 0], "when his name was pronounced in full it": [65535, 0], "his name was pronounced in full it meant": [65535, 0], "name was pronounced in full it meant trouble": [65535, 0], "was pronounced in full it meant trouble sir": [65535, 0], "pronounced in full it meant trouble sir come": [65535, 0], "in full it meant trouble sir come up": [65535, 0], "full it meant trouble sir come up here": [65535, 0], "it meant trouble sir come up here now": [65535, 0], "meant trouble sir come up here now sir": [65535, 0], "trouble sir come up here now sir why": [65535, 0], "sir come up here now sir why are": [65535, 0], "come up here now sir why are you": [65535, 0], "up here now sir why are you late": [65535, 0], "here now sir why are you late again": [65535, 0], "now sir why are you late again as": [65535, 0], "sir why are you late again as usual": [65535, 0], "why are you late again as usual tom": [65535, 0], "are you late again as usual tom was": [65535, 0], "you late again as usual tom was about": [65535, 0], "late again as usual tom was about to": [65535, 0], "again as usual tom was about to take": [65535, 0], "as usual tom was about to take refuge": [65535, 0], "usual tom was about to take refuge in": [65535, 0], "tom was about to take refuge in a": [65535, 0], "was about to take refuge in a lie": [65535, 0], "about to take refuge in a lie when": [65535, 0], "to take refuge in a lie when he": [65535, 0], "take refuge in a lie when he saw": [65535, 0], "refuge in a lie when he saw two": [65535, 0], "in a lie when he saw two long": [65535, 0], "a lie when he saw two long tails": [65535, 0], "lie when he saw two long tails of": [65535, 0], "when he saw two long tails of yellow": [65535, 0], "he saw two long tails of yellow hair": [65535, 0], "saw two long tails of yellow hair hanging": [65535, 0], "two long tails of yellow hair hanging down": [65535, 0], "long tails of yellow hair hanging down a": [65535, 0], "tails of yellow hair hanging down a back": [65535, 0], "of yellow hair hanging down a back that": [65535, 0], "yellow hair hanging down a back that he": [65535, 0], "hair hanging down a back that he recognized": [65535, 0], "hanging down a back that he recognized by": [65535, 0], "down a back that he recognized by the": [65535, 0], "a back that he recognized by the electric": [65535, 0], "back that he recognized by the electric sympathy": [65535, 0], "that he recognized by the electric sympathy of": [65535, 0], "he recognized by the electric sympathy of love": [65535, 0], "recognized by the electric sympathy of love and": [65535, 0], "by the electric sympathy of love and by": [65535, 0], "the electric sympathy of love and by that": [65535, 0], "electric sympathy of love and by that form": [65535, 0], "sympathy of love and by that form was": [65535, 0], "of love and by that form was the": [65535, 0], "love and by that form was the only": [65535, 0], "and by that form was the only vacant": [65535, 0], "by that form was the only vacant place": [65535, 0], "that form was the only vacant place on": [65535, 0], "form was the only vacant place on the": [65535, 0], "was the only vacant place on the girls'": [65535, 0], "the only vacant place on the girls' side": [65535, 0], "only vacant place on the girls' side of": [65535, 0], "vacant place on the girls' side of the": [65535, 0], "place on the girls' side of the school": [65535, 0], "on the girls' side of the school house": [65535, 0], "the girls' side of the school house he": [65535, 0], "girls' side of the school house he instantly": [65535, 0], "side of the school house he instantly said": [65535, 0], "of the school house he instantly said i": [65535, 0], "the school house he instantly said i stopped": [65535, 0], "school house he instantly said i stopped to": [65535, 0], "house he instantly said i stopped to talk": [65535, 0], "he instantly said i stopped to talk with": [65535, 0], "instantly said i stopped to talk with huckleberry": [65535, 0], "said i stopped to talk with huckleberry finn": [65535, 0], "i stopped to talk with huckleberry finn the": [65535, 0], "stopped to talk with huckleberry finn the master's": [65535, 0], "to talk with huckleberry finn the master's pulse": [65535, 0], "talk with huckleberry finn the master's pulse stood": [65535, 0], "with huckleberry finn the master's pulse stood still": [65535, 0], "huckleberry finn the master's pulse stood still and": [65535, 0], "finn the master's pulse stood still and he": [65535, 0], "the master's pulse stood still and he stared": [65535, 0], "master's pulse stood still and he stared helplessly": [65535, 0], "pulse stood still and he stared helplessly the": [65535, 0], "stood still and he stared helplessly the buzz": [65535, 0], "still and he stared helplessly the buzz of": [65535, 0], "and he stared helplessly the buzz of study": [65535, 0], "he stared helplessly the buzz of study ceased": [65535, 0], "stared helplessly the buzz of study ceased the": [65535, 0], "helplessly the buzz of study ceased the pupils": [65535, 0], "the buzz of study ceased the pupils wondered": [65535, 0], "buzz of study ceased the pupils wondered if": [65535, 0], "of study ceased the pupils wondered if this": [65535, 0], "study ceased the pupils wondered if this foolhardy": [65535, 0], "ceased the pupils wondered if this foolhardy boy": [65535, 0], "the pupils wondered if this foolhardy boy had": [65535, 0], "pupils wondered if this foolhardy boy had lost": [65535, 0], "wondered if this foolhardy boy had lost his": [65535, 0], "if this foolhardy boy had lost his mind": [65535, 0], "this foolhardy boy had lost his mind the": [65535, 0], "foolhardy boy had lost his mind the master": [65535, 0], "boy had lost his mind the master said": [65535, 0], "had lost his mind the master said you": [65535, 0], "lost his mind the master said you you": [65535, 0], "his mind the master said you you did": [65535, 0], "mind the master said you you did what": [65535, 0], "the master said you you did what stopped": [65535, 0], "master said you you did what stopped to": [65535, 0], "said you you did what stopped to talk": [65535, 0], "you you did what stopped to talk with": [65535, 0], "you did what stopped to talk with huckleberry": [65535, 0], "did what stopped to talk with huckleberry finn": [65535, 0], "what stopped to talk with huckleberry finn there": [65535, 0], "stopped to talk with huckleberry finn there was": [65535, 0], "to talk with huckleberry finn there was no": [65535, 0], "talk with huckleberry finn there was no mistaking": [65535, 0], "with huckleberry finn there was no mistaking the": [65535, 0], "huckleberry finn there was no mistaking the words": [65535, 0], "finn there was no mistaking the words thomas": [65535, 0], "there was no mistaking the words thomas sawyer": [65535, 0], "was no mistaking the words thomas sawyer this": [65535, 0], "no mistaking the words thomas sawyer this is": [65535, 0], "mistaking the words thomas sawyer this is the": [65535, 0], "the words thomas sawyer this is the most": [65535, 0], "words thomas sawyer this is the most astounding": [65535, 0], "thomas sawyer this is the most astounding confession": [65535, 0], "sawyer this is the most astounding confession i": [65535, 0], "this is the most astounding confession i have": [65535, 0], "is the most astounding confession i have ever": [65535, 0], "the most astounding confession i have ever listened": [65535, 0], "most astounding confession i have ever listened to": [65535, 0], "astounding confession i have ever listened to no": [65535, 0], "confession i have ever listened to no mere": [65535, 0], "i have ever listened to no mere ferule": [65535, 0], "have ever listened to no mere ferule will": [65535, 0], "ever listened to no mere ferule will answer": [65535, 0], "listened to no mere ferule will answer for": [65535, 0], "to no mere ferule will answer for this": [65535, 0], "no mere ferule will answer for this offence": [65535, 0], "mere ferule will answer for this offence take": [65535, 0], "ferule will answer for this offence take off": [65535, 0], "will answer for this offence take off your": [65535, 0], "answer for this offence take off your jacket": [65535, 0], "for this offence take off your jacket the": [65535, 0], "this offence take off your jacket the master's": [65535, 0], "offence take off your jacket the master's arm": [65535, 0], "take off your jacket the master's arm performed": [65535, 0], "off your jacket the master's arm performed until": [65535, 0], "your jacket the master's arm performed until it": [65535, 0], "jacket the master's arm performed until it was": [65535, 0], "the master's arm performed until it was tired": [65535, 0], "master's arm performed until it was tired and": [65535, 0], "arm performed until it was tired and the": [65535, 0], "performed until it was tired and the stock": [65535, 0], "until it was tired and the stock of": [65535, 0], "it was tired and the stock of switches": [65535, 0], "was tired and the stock of switches notably": [65535, 0], "tired and the stock of switches notably diminished": [65535, 0], "and the stock of switches notably diminished then": [65535, 0], "the stock of switches notably diminished then the": [65535, 0], "stock of switches notably diminished then the order": [65535, 0], "of switches notably diminished then the order followed": [65535, 0], "switches notably diminished then the order followed now": [65535, 0], "notably diminished then the order followed now sir": [65535, 0], "diminished then the order followed now sir go": [65535, 0], "then the order followed now sir go and": [65535, 0], "the order followed now sir go and sit": [65535, 0], "order followed now sir go and sit with": [65535, 0], "followed now sir go and sit with the": [65535, 0], "now sir go and sit with the girls": [65535, 0], "sir go and sit with the girls and": [65535, 0], "go and sit with the girls and let": [65535, 0], "and sit with the girls and let this": [65535, 0], "sit with the girls and let this be": [65535, 0], "with the girls and let this be a": [65535, 0], "the girls and let this be a warning": [65535, 0], "girls and let this be a warning to": [65535, 0], "and let this be a warning to you": [65535, 0], "let this be a warning to you the": [65535, 0], "this be a warning to you the titter": [65535, 0], "be a warning to you the titter that": [65535, 0], "a warning to you the titter that rippled": [65535, 0], "warning to you the titter that rippled around": [65535, 0], "to you the titter that rippled around the": [65535, 0], "you the titter that rippled around the room": [65535, 0], "the titter that rippled around the room appeared": [65535, 0], "titter that rippled around the room appeared to": [65535, 0], "that rippled around the room appeared to abash": [65535, 0], "rippled around the room appeared to abash the": [65535, 0], "around the room appeared to abash the boy": [65535, 0], "the room appeared to abash the boy but": [65535, 0], "room appeared to abash the boy but in": [65535, 0], "appeared to abash the boy but in reality": [65535, 0], "to abash the boy but in reality that": [65535, 0], "abash the boy but in reality that result": [65535, 0], "the boy but in reality that result was": [65535, 0], "boy but in reality that result was caused": [65535, 0], "but in reality that result was caused rather": [65535, 0], "in reality that result was caused rather more": [65535, 0], "reality that result was caused rather more by": [65535, 0], "that result was caused rather more by his": [65535, 0], "result was caused rather more by his worshipful": [65535, 0], "was caused rather more by his worshipful awe": [65535, 0], "caused rather more by his worshipful awe of": [65535, 0], "rather more by his worshipful awe of his": [65535, 0], "more by his worshipful awe of his unknown": [65535, 0], "by his worshipful awe of his unknown idol": [65535, 0], "his worshipful awe of his unknown idol and": [65535, 0], "worshipful awe of his unknown idol and the": [65535, 0], "awe of his unknown idol and the dread": [65535, 0], "of his unknown idol and the dread pleasure": [65535, 0], "his unknown idol and the dread pleasure that": [65535, 0], "unknown idol and the dread pleasure that lay": [65535, 0], "idol and the dread pleasure that lay in": [65535, 0], "and the dread pleasure that lay in his": [65535, 0], "the dread pleasure that lay in his high": [65535, 0], "dread pleasure that lay in his high good": [65535, 0], "pleasure that lay in his high good fortune": [65535, 0], "that lay in his high good fortune he": [65535, 0], "lay in his high good fortune he sat": [65535, 0], "in his high good fortune he sat down": [65535, 0], "his high good fortune he sat down upon": [65535, 0], "high good fortune he sat down upon the": [65535, 0], "good fortune he sat down upon the end": [65535, 0], "fortune he sat down upon the end of": [65535, 0], "he sat down upon the end of the": [65535, 0], "sat down upon the end of the pine": [65535, 0], "down upon the end of the pine bench": [65535, 0], "upon the end of the pine bench and": [65535, 0], "the end of the pine bench and the": [65535, 0], "end of the pine bench and the girl": [65535, 0], "of the pine bench and the girl hitched": [65535, 0], "the pine bench and the girl hitched herself": [65535, 0], "pine bench and the girl hitched herself away": [65535, 0], "bench and the girl hitched herself away from": [65535, 0], "and the girl hitched herself away from him": [65535, 0], "the girl hitched herself away from him with": [65535, 0], "girl hitched herself away from him with a": [65535, 0], "hitched herself away from him with a toss": [65535, 0], "herself away from him with a toss of": [65535, 0], "away from him with a toss of her": [65535, 0], "from him with a toss of her head": [65535, 0], "him with a toss of her head nudges": [65535, 0], "with a toss of her head nudges and": [65535, 0], "a toss of her head nudges and winks": [65535, 0], "toss of her head nudges and winks and": [65535, 0], "of her head nudges and winks and whispers": [65535, 0], "her head nudges and winks and whispers traversed": [65535, 0], "head nudges and winks and whispers traversed the": [65535, 0], "nudges and winks and whispers traversed the room": [65535, 0], "and winks and whispers traversed the room but": [65535, 0], "winks and whispers traversed the room but tom": [65535, 0], "and whispers traversed the room but tom sat": [65535, 0], "whispers traversed the room but tom sat still": [65535, 0], "traversed the room but tom sat still with": [65535, 0], "the room but tom sat still with his": [65535, 0], "room but tom sat still with his arms": [65535, 0], "but tom sat still with his arms upon": [65535, 0], "tom sat still with his arms upon the": [65535, 0], "sat still with his arms upon the long": [65535, 0], "still with his arms upon the long low": [65535, 0], "with his arms upon the long low desk": [65535, 0], "his arms upon the long low desk before": [65535, 0], "arms upon the long low desk before him": [65535, 0], "upon the long low desk before him and": [65535, 0], "the long low desk before him and seemed": [65535, 0], "long low desk before him and seemed to": [65535, 0], "low desk before him and seemed to study": [65535, 0], "desk before him and seemed to study his": [65535, 0], "before him and seemed to study his book": [65535, 0], "him and seemed to study his book by": [65535, 0], "and seemed to study his book by and": [65535, 0], "seemed to study his book by and by": [65535, 0], "to study his book by and by attention": [65535, 0], "study his book by and by attention ceased": [65535, 0], "his book by and by attention ceased from": [65535, 0], "book by and by attention ceased from him": [65535, 0], "by and by attention ceased from him and": [65535, 0], "and by attention ceased from him and the": [65535, 0], "by attention ceased from him and the accustomed": [65535, 0], "attention ceased from him and the accustomed school": [65535, 0], "ceased from him and the accustomed school murmur": [65535, 0], "from him and the accustomed school murmur rose": [65535, 0], "him and the accustomed school murmur rose upon": [65535, 0], "and the accustomed school murmur rose upon the": [65535, 0], "the accustomed school murmur rose upon the dull": [65535, 0], "accustomed school murmur rose upon the dull air": [65535, 0], "school murmur rose upon the dull air once": [65535, 0], "murmur rose upon the dull air once more": [65535, 0], "rose upon the dull air once more presently": [65535, 0], "upon the dull air once more presently the": [65535, 0], "the dull air once more presently the boy": [65535, 0], "dull air once more presently the boy began": [65535, 0], "air once more presently the boy began to": [65535, 0], "once more presently the boy began to steal": [65535, 0], "more presently the boy began to steal furtive": [65535, 0], "presently the boy began to steal furtive glances": [65535, 0], "the boy began to steal furtive glances at": [65535, 0], "boy began to steal furtive glances at the": [65535, 0], "began to steal furtive glances at the girl": [65535, 0], "to steal furtive glances at the girl she": [65535, 0], "steal furtive glances at the girl she observed": [65535, 0], "furtive glances at the girl she observed it": [65535, 0], "glances at the girl she observed it made": [65535, 0], "at the girl she observed it made a": [65535, 0], "the girl she observed it made a mouth": [65535, 0], "girl she observed it made a mouth at": [65535, 0], "she observed it made a mouth at him": [65535, 0], "observed it made a mouth at him and": [65535, 0], "it made a mouth at him and gave": [65535, 0], "made a mouth at him and gave him": [65535, 0], "a mouth at him and gave him the": [65535, 0], "mouth at him and gave him the back": [65535, 0], "at him and gave him the back of": [65535, 0], "him and gave him the back of her": [65535, 0], "and gave him the back of her head": [65535, 0], "gave him the back of her head for": [65535, 0], "him the back of her head for the": [65535, 0], "the back of her head for the space": [65535, 0], "back of her head for the space of": [65535, 0], "of her head for the space of a": [65535, 0], "her head for the space of a minute": [65535, 0], "head for the space of a minute when": [65535, 0], "for the space of a minute when she": [65535, 0], "the space of a minute when she cautiously": [65535, 0], "space of a minute when she cautiously faced": [65535, 0], "of a minute when she cautiously faced around": [65535, 0], "a minute when she cautiously faced around again": [65535, 0], "minute when she cautiously faced around again a": [65535, 0], "when she cautiously faced around again a peach": [65535, 0], "she cautiously faced around again a peach lay": [65535, 0], "cautiously faced around again a peach lay before": [65535, 0], "faced around again a peach lay before her": [65535, 0], "around again a peach lay before her she": [65535, 0], "again a peach lay before her she thrust": [65535, 0], "a peach lay before her she thrust it": [65535, 0], "peach lay before her she thrust it away": [65535, 0], "lay before her she thrust it away tom": [65535, 0], "before her she thrust it away tom gently": [65535, 0], "her she thrust it away tom gently put": [65535, 0], "she thrust it away tom gently put it": [65535, 0], "thrust it away tom gently put it back": [65535, 0], "it away tom gently put it back she": [65535, 0], "away tom gently put it back she thrust": [65535, 0], "tom gently put it back she thrust it": [65535, 0], "gently put it back she thrust it away": [65535, 0], "put it back she thrust it away again": [65535, 0], "it back she thrust it away again but": [65535, 0], "back she thrust it away again but with": [65535, 0], "she thrust it away again but with less": [65535, 0], "thrust it away again but with less animosity": [65535, 0], "it away again but with less animosity tom": [65535, 0], "away again but with less animosity tom patiently": [65535, 0], "again but with less animosity tom patiently returned": [65535, 0], "but with less animosity tom patiently returned it": [65535, 0], "with less animosity tom patiently returned it to": [65535, 0], "less animosity tom patiently returned it to its": [65535, 0], "animosity tom patiently returned it to its place": [65535, 0], "tom patiently returned it to its place then": [65535, 0], "patiently returned it to its place then she": [65535, 0], "returned it to its place then she let": [65535, 0], "it to its place then she let it": [65535, 0], "to its place then she let it remain": [65535, 0], "its place then she let it remain tom": [65535, 0], "place then she let it remain tom scrawled": [65535, 0], "then she let it remain tom scrawled on": [65535, 0], "she let it remain tom scrawled on his": [65535, 0], "let it remain tom scrawled on his slate": [65535, 0], "it remain tom scrawled on his slate please": [65535, 0], "remain tom scrawled on his slate please take": [65535, 0], "tom scrawled on his slate please take it": [65535, 0], "scrawled on his slate please take it i": [65535, 0], "on his slate please take it i got": [65535, 0], "his slate please take it i got more": [65535, 0], "slate please take it i got more the": [65535, 0], "please take it i got more the girl": [65535, 0], "take it i got more the girl glanced": [65535, 0], "it i got more the girl glanced at": [65535, 0], "i got more the girl glanced at the": [65535, 0], "got more the girl glanced at the words": [65535, 0], "more the girl glanced at the words but": [65535, 0], "the girl glanced at the words but made": [65535, 0], "girl glanced at the words but made no": [65535, 0], "glanced at the words but made no sign": [65535, 0], "at the words but made no sign now": [65535, 0], "the words but made no sign now the": [65535, 0], "words but made no sign now the boy": [65535, 0], "but made no sign now the boy began": [65535, 0], "made no sign now the boy began to": [65535, 0], "no sign now the boy began to draw": [65535, 0], "sign now the boy began to draw something": [65535, 0], "now the boy began to draw something on": [65535, 0], "the boy began to draw something on the": [65535, 0], "boy began to draw something on the slate": [65535, 0], "began to draw something on the slate hiding": [65535, 0], "to draw something on the slate hiding his": [65535, 0], "draw something on the slate hiding his work": [65535, 0], "something on the slate hiding his work with": [65535, 0], "on the slate hiding his work with his": [65535, 0], "the slate hiding his work with his left": [65535, 0], "slate hiding his work with his left hand": [65535, 0], "hiding his work with his left hand for": [65535, 0], "his work with his left hand for a": [65535, 0], "work with his left hand for a time": [65535, 0], "with his left hand for a time the": [65535, 0], "his left hand for a time the girl": [65535, 0], "left hand for a time the girl refused": [65535, 0], "hand for a time the girl refused to": [65535, 0], "for a time the girl refused to notice": [65535, 0], "a time the girl refused to notice but": [65535, 0], "time the girl refused to notice but her": [65535, 0], "the girl refused to notice but her human": [65535, 0], "girl refused to notice but her human curiosity": [65535, 0], "refused to notice but her human curiosity presently": [65535, 0], "to notice but her human curiosity presently began": [65535, 0], "notice but her human curiosity presently began to": [65535, 0], "but her human curiosity presently began to manifest": [65535, 0], "her human curiosity presently began to manifest itself": [65535, 0], "human curiosity presently began to manifest itself by": [65535, 0], "curiosity presently began to manifest itself by hardly": [65535, 0], "presently began to manifest itself by hardly perceptible": [65535, 0], "began to manifest itself by hardly perceptible signs": [65535, 0], "to manifest itself by hardly perceptible signs the": [65535, 0], "manifest itself by hardly perceptible signs the boy": [65535, 0], "itself by hardly perceptible signs the boy worked": [65535, 0], "by hardly perceptible signs the boy worked on": [65535, 0], "hardly perceptible signs the boy worked on apparently": [65535, 0], "perceptible signs the boy worked on apparently unconscious": [65535, 0], "signs the boy worked on apparently unconscious the": [65535, 0], "the boy worked on apparently unconscious the girl": [65535, 0], "boy worked on apparently unconscious the girl made": [65535, 0], "worked on apparently unconscious the girl made a": [65535, 0], "on apparently unconscious the girl made a sort": [65535, 0], "apparently unconscious the girl made a sort of": [65535, 0], "unconscious the girl made a sort of noncommittal": [65535, 0], "the girl made a sort of noncommittal attempt": [65535, 0], "girl made a sort of noncommittal attempt to": [65535, 0], "made a sort of noncommittal attempt to see": [65535, 0], "a sort of noncommittal attempt to see but": [65535, 0], "sort of noncommittal attempt to see but the": [65535, 0], "of noncommittal attempt to see but the boy": [65535, 0], "noncommittal attempt to see but the boy did": [65535, 0], "attempt to see but the boy did not": [65535, 0], "to see but the boy did not betray": [65535, 0], "see but the boy did not betray that": [65535, 0], "but the boy did not betray that he": [65535, 0], "the boy did not betray that he was": [65535, 0], "boy did not betray that he was aware": [65535, 0], "did not betray that he was aware of": [65535, 0], "not betray that he was aware of it": [65535, 0], "betray that he was aware of it at": [65535, 0], "that he was aware of it at last": [65535, 0], "he was aware of it at last she": [65535, 0], "was aware of it at last she gave": [65535, 0], "aware of it at last she gave in": [65535, 0], "of it at last she gave in and": [65535, 0], "it at last she gave in and hesitatingly": [65535, 0], "at last she gave in and hesitatingly whispered": [65535, 0], "last she gave in and hesitatingly whispered let": [65535, 0], "she gave in and hesitatingly whispered let me": [65535, 0], "gave in and hesitatingly whispered let me see": [65535, 0], "in and hesitatingly whispered let me see it": [65535, 0], "and hesitatingly whispered let me see it tom": [65535, 0], "hesitatingly whispered let me see it tom partly": [65535, 0], "whispered let me see it tom partly uncovered": [65535, 0], "let me see it tom partly uncovered a": [65535, 0], "me see it tom partly uncovered a dismal": [65535, 0], "see it tom partly uncovered a dismal caricature": [65535, 0], "it tom partly uncovered a dismal caricature of": [65535, 0], "tom partly uncovered a dismal caricature of a": [65535, 0], "partly uncovered a dismal caricature of a house": [65535, 0], "uncovered a dismal caricature of a house with": [65535, 0], "a dismal caricature of a house with two": [65535, 0], "dismal caricature of a house with two gable": [65535, 0], "caricature of a house with two gable ends": [65535, 0], "of a house with two gable ends to": [65535, 0], "a house with two gable ends to it": [65535, 0], "house with two gable ends to it and": [65535, 0], "with two gable ends to it and a": [65535, 0], "two gable ends to it and a corkscrew": [65535, 0], "gable ends to it and a corkscrew of": [65535, 0], "ends to it and a corkscrew of smoke": [65535, 0], "to it and a corkscrew of smoke issuing": [65535, 0], "it and a corkscrew of smoke issuing from": [65535, 0], "and a corkscrew of smoke issuing from the": [65535, 0], "a corkscrew of smoke issuing from the chimney": [65535, 0], "corkscrew of smoke issuing from the chimney then": [65535, 0], "of smoke issuing from the chimney then the": [65535, 0], "smoke issuing from the chimney then the girl's": [65535, 0], "issuing from the chimney then the girl's interest": [65535, 0], "from the chimney then the girl's interest began": [65535, 0], "the chimney then the girl's interest began to": [65535, 0], "chimney then the girl's interest began to fasten": [65535, 0], "then the girl's interest began to fasten itself": [65535, 0], "the girl's interest began to fasten itself upon": [65535, 0], "girl's interest began to fasten itself upon the": [65535, 0], "interest began to fasten itself upon the work": [65535, 0], "began to fasten itself upon the work and": [65535, 0], "to fasten itself upon the work and she": [65535, 0], "fasten itself upon the work and she forgot": [65535, 0], "itself upon the work and she forgot everything": [65535, 0], "upon the work and she forgot everything else": [65535, 0], "the work and she forgot everything else when": [65535, 0], "work and she forgot everything else when it": [65535, 0], "and she forgot everything else when it was": [65535, 0], "she forgot everything else when it was finished": [65535, 0], "forgot everything else when it was finished she": [65535, 0], "everything else when it was finished she gazed": [65535, 0], "else when it was finished she gazed a": [65535, 0], "when it was finished she gazed a moment": [65535, 0], "it was finished she gazed a moment then": [65535, 0], "was finished she gazed a moment then whispered": [65535, 0], "finished she gazed a moment then whispered it's": [65535, 0], "she gazed a moment then whispered it's nice": [65535, 0], "gazed a moment then whispered it's nice make": [65535, 0], "a moment then whispered it's nice make a": [65535, 0], "moment then whispered it's nice make a man": [65535, 0], "then whispered it's nice make a man the": [65535, 0], "whispered it's nice make a man the artist": [65535, 0], "it's nice make a man the artist erected": [65535, 0], "nice make a man the artist erected a": [65535, 0], "make a man the artist erected a man": [65535, 0], "a man the artist erected a man in": [65535, 0], "man the artist erected a man in the": [65535, 0], "the artist erected a man in the front": [65535, 0], "artist erected a man in the front yard": [65535, 0], "erected a man in the front yard that": [65535, 0], "a man in the front yard that resembled": [65535, 0], "man in the front yard that resembled a": [65535, 0], "in the front yard that resembled a derrick": [65535, 0], "the front yard that resembled a derrick he": [65535, 0], "front yard that resembled a derrick he could": [65535, 0], "yard that resembled a derrick he could have": [65535, 0], "that resembled a derrick he could have stepped": [65535, 0], "resembled a derrick he could have stepped over": [65535, 0], "a derrick he could have stepped over the": [65535, 0], "derrick he could have stepped over the house": [65535, 0], "he could have stepped over the house but": [65535, 0], "could have stepped over the house but the": [65535, 0], "have stepped over the house but the girl": [65535, 0], "stepped over the house but the girl was": [65535, 0], "over the house but the girl was not": [65535, 0], "the house but the girl was not hypercritical": [65535, 0], "house but the girl was not hypercritical she": [65535, 0], "but the girl was not hypercritical she was": [65535, 0], "the girl was not hypercritical she was satisfied": [65535, 0], "girl was not hypercritical she was satisfied with": [65535, 0], "was not hypercritical she was satisfied with the": [65535, 0], "not hypercritical she was satisfied with the monster": [65535, 0], "hypercritical she was satisfied with the monster and": [65535, 0], "she was satisfied with the monster and whispered": [65535, 0], "was satisfied with the monster and whispered it's": [65535, 0], "satisfied with the monster and whispered it's a": [65535, 0], "with the monster and whispered it's a beautiful": [65535, 0], "the monster and whispered it's a beautiful man": [65535, 0], "monster and whispered it's a beautiful man now": [65535, 0], "and whispered it's a beautiful man now make": [65535, 0], "whispered it's a beautiful man now make me": [65535, 0], "it's a beautiful man now make me coming": [65535, 0], "a beautiful man now make me coming along": [65535, 0], "beautiful man now make me coming along tom": [65535, 0], "man now make me coming along tom drew": [65535, 0], "now make me coming along tom drew an": [65535, 0], "make me coming along tom drew an hour": [65535, 0], "me coming along tom drew an hour glass": [65535, 0], "coming along tom drew an hour glass with": [65535, 0], "along tom drew an hour glass with a": [65535, 0], "tom drew an hour glass with a full": [65535, 0], "drew an hour glass with a full moon": [65535, 0], "an hour glass with a full moon and": [65535, 0], "hour glass with a full moon and straw": [65535, 0], "glass with a full moon and straw limbs": [65535, 0], "with a full moon and straw limbs to": [65535, 0], "a full moon and straw limbs to it": [65535, 0], "full moon and straw limbs to it and": [65535, 0], "moon and straw limbs to it and armed": [65535, 0], "and straw limbs to it and armed the": [65535, 0], "straw limbs to it and armed the spreading": [65535, 0], "limbs to it and armed the spreading fingers": [65535, 0], "to it and armed the spreading fingers with": [65535, 0], "it and armed the spreading fingers with a": [65535, 0], "and armed the spreading fingers with a portentous": [65535, 0], "armed the spreading fingers with a portentous fan": [65535, 0], "the spreading fingers with a portentous fan the": [65535, 0], "spreading fingers with a portentous fan the girl": [65535, 0], "fingers with a portentous fan the girl said": [65535, 0], "with a portentous fan the girl said it's": [65535, 0], "a portentous fan the girl said it's ever": [65535, 0], "portentous fan the girl said it's ever so": [65535, 0], "fan the girl said it's ever so nice": [65535, 0], "the girl said it's ever so nice i": [65535, 0], "girl said it's ever so nice i wish": [65535, 0], "said it's ever so nice i wish i": [65535, 0], "it's ever so nice i wish i could": [65535, 0], "ever so nice i wish i could draw": [65535, 0], "so nice i wish i could draw it's": [65535, 0], "nice i wish i could draw it's easy": [65535, 0], "i wish i could draw it's easy whispered": [65535, 0], "wish i could draw it's easy whispered tom": [65535, 0], "i could draw it's easy whispered tom i'll": [65535, 0], "could draw it's easy whispered tom i'll learn": [65535, 0], "draw it's easy whispered tom i'll learn you": [65535, 0], "it's easy whispered tom i'll learn you oh": [65535, 0], "easy whispered tom i'll learn you oh will": [65535, 0], "whispered tom i'll learn you oh will you": [65535, 0], "tom i'll learn you oh will you when": [65535, 0], "i'll learn you oh will you when at": [65535, 0], "learn you oh will you when at noon": [65535, 0], "you oh will you when at noon do": [65535, 0], "oh will you when at noon do you": [65535, 0], "will you when at noon do you go": [65535, 0], "you when at noon do you go home": [65535, 0], "when at noon do you go home to": [65535, 0], "at noon do you go home to dinner": [65535, 0], "noon do you go home to dinner i'll": [65535, 0], "do you go home to dinner i'll stay": [65535, 0], "you go home to dinner i'll stay if": [65535, 0], "go home to dinner i'll stay if you": [65535, 0], "home to dinner i'll stay if you will": [65535, 0], "to dinner i'll stay if you will good": [65535, 0], "dinner i'll stay if you will good that's": [65535, 0], "i'll stay if you will good that's a": [65535, 0], "stay if you will good that's a whack": [65535, 0], "if you will good that's a whack what's": [65535, 0], "you will good that's a whack what's your": [65535, 0], "will good that's a whack what's your name": [65535, 0], "good that's a whack what's your name becky": [65535, 0], "that's a whack what's your name becky thatcher": [65535, 0], "a whack what's your name becky thatcher what's": [65535, 0], "whack what's your name becky thatcher what's yours": [65535, 0], "what's your name becky thatcher what's yours oh": [65535, 0], "your name becky thatcher what's yours oh i": [65535, 0], "name becky thatcher what's yours oh i know": [65535, 0], "becky thatcher what's yours oh i know it's": [65535, 0], "thatcher what's yours oh i know it's thomas": [65535, 0], "what's yours oh i know it's thomas sawyer": [65535, 0], "yours oh i know it's thomas sawyer that's": [65535, 0], "oh i know it's thomas sawyer that's the": [65535, 0], "i know it's thomas sawyer that's the name": [65535, 0], "know it's thomas sawyer that's the name they": [65535, 0], "it's thomas sawyer that's the name they lick": [65535, 0], "thomas sawyer that's the name they lick me": [65535, 0], "sawyer that's the name they lick me by": [65535, 0], "that's the name they lick me by i'm": [65535, 0], "the name they lick me by i'm tom": [65535, 0], "name they lick me by i'm tom when": [65535, 0], "they lick me by i'm tom when i'm": [65535, 0], "lick me by i'm tom when i'm good": [65535, 0], "me by i'm tom when i'm good you": [65535, 0], "by i'm tom when i'm good you call": [65535, 0], "i'm tom when i'm good you call me": [65535, 0], "tom when i'm good you call me tom": [65535, 0], "when i'm good you call me tom will": [65535, 0], "i'm good you call me tom will you": [65535, 0], "good you call me tom will you yes": [65535, 0], "you call me tom will you yes now": [65535, 0], "call me tom will you yes now tom": [65535, 0], "me tom will you yes now tom began": [65535, 0], "tom will you yes now tom began to": [65535, 0], "will you yes now tom began to scrawl": [65535, 0], "you yes now tom began to scrawl something": [65535, 0], "yes now tom began to scrawl something on": [65535, 0], "now tom began to scrawl something on the": [65535, 0], "tom began to scrawl something on the slate": [65535, 0], "began to scrawl something on the slate hiding": [65535, 0], "to scrawl something on the slate hiding the": [65535, 0], "scrawl something on the slate hiding the words": [65535, 0], "something on the slate hiding the words from": [65535, 0], "on the slate hiding the words from the": [65535, 0], "the slate hiding the words from the girl": [65535, 0], "slate hiding the words from the girl but": [65535, 0], "hiding the words from the girl but she": [65535, 0], "the words from the girl but she was": [65535, 0], "words from the girl but she was not": [65535, 0], "from the girl but she was not backward": [65535, 0], "the girl but she was not backward this": [65535, 0], "girl but she was not backward this time": [65535, 0], "but she was not backward this time she": [65535, 0], "she was not backward this time she begged": [65535, 0], "was not backward this time she begged to": [65535, 0], "not backward this time she begged to see": [65535, 0], "backward this time she begged to see tom": [65535, 0], "this time she begged to see tom said": [65535, 0], "time she begged to see tom said oh": [65535, 0], "she begged to see tom said oh it": [65535, 0], "begged to see tom said oh it ain't": [65535, 0], "to see tom said oh it ain't anything": [65535, 0], "see tom said oh it ain't anything yes": [65535, 0], "tom said oh it ain't anything yes it": [65535, 0], "said oh it ain't anything yes it is": [65535, 0], "oh it ain't anything yes it is no": [65535, 0], "it ain't anything yes it is no it": [65535, 0], "ain't anything yes it is no it ain't": [65535, 0], "anything yes it is no it ain't you": [65535, 0], "yes it is no it ain't you don't": [65535, 0], "it is no it ain't you don't want": [65535, 0], "is no it ain't you don't want to": [65535, 0], "no it ain't you don't want to see": [65535, 0], "it ain't you don't want to see yes": [65535, 0], "ain't you don't want to see yes i": [65535, 0], "you don't want to see yes i do": [65535, 0], "don't want to see yes i do indeed": [65535, 0], "want to see yes i do indeed i": [65535, 0], "to see yes i do indeed i do": [65535, 0], "see yes i do indeed i do please": [65535, 0], "yes i do indeed i do please let": [65535, 0], "i do indeed i do please let me": [65535, 0], "do indeed i do please let me you'll": [65535, 0], "indeed i do please let me you'll tell": [65535, 0], "i do please let me you'll tell no": [65535, 0], "do please let me you'll tell no i": [65535, 0], "please let me you'll tell no i won't": [65535, 0], "let me you'll tell no i won't deed": [65535, 0], "me you'll tell no i won't deed and": [65535, 0], "you'll tell no i won't deed and deed": [65535, 0], "tell no i won't deed and deed and": [65535, 0], "no i won't deed and deed and double": [65535, 0], "i won't deed and deed and double deed": [65535, 0], "won't deed and deed and double deed won't": [65535, 0], "deed and deed and double deed won't you": [65535, 0], "and deed and double deed won't you won't": [65535, 0], "deed and double deed won't you won't tell": [65535, 0], "and double deed won't you won't tell anybody": [65535, 0], "double deed won't you won't tell anybody at": [65535, 0], "deed won't you won't tell anybody at all": [65535, 0], "won't you won't tell anybody at all ever": [65535, 0], "you won't tell anybody at all ever as": [65535, 0], "won't tell anybody at all ever as long": [65535, 0], "tell anybody at all ever as long as": [65535, 0], "anybody at all ever as long as you": [65535, 0], "at all ever as long as you live": [65535, 0], "all ever as long as you live no": [65535, 0], "ever as long as you live no i": [65535, 0], "as long as you live no i won't": [65535, 0], "long as you live no i won't ever": [65535, 0], "as you live no i won't ever tell": [65535, 0], "you live no i won't ever tell anybody": [65535, 0], "live no i won't ever tell anybody now": [65535, 0], "no i won't ever tell anybody now let": [65535, 0], "i won't ever tell anybody now let me": [65535, 0], "won't ever tell anybody now let me oh": [65535, 0], "ever tell anybody now let me oh you": [65535, 0], "tell anybody now let me oh you don't": [65535, 0], "anybody now let me oh you don't want": [65535, 0], "now let me oh you don't want to": [65535, 0], "let me oh you don't want to see": [65535, 0], "me oh you don't want to see now": [65535, 0], "oh you don't want to see now that": [65535, 0], "you don't want to see now that you": [65535, 0], "don't want to see now that you treat": [65535, 0], "want to see now that you treat me": [65535, 0], "to see now that you treat me so": [65535, 0], "see now that you treat me so i": [65535, 0], "now that you treat me so i will": [65535, 0], "that you treat me so i will see": [65535, 0], "you treat me so i will see and": [65535, 0], "treat me so i will see and she": [65535, 0], "me so i will see and she put": [65535, 0], "so i will see and she put her": [65535, 0], "i will see and she put her small": [65535, 0], "will see and she put her small hand": [65535, 0], "see and she put her small hand upon": [65535, 0], "and she put her small hand upon his": [65535, 0], "she put her small hand upon his and": [65535, 0], "put her small hand upon his and a": [65535, 0], "her small hand upon his and a little": [65535, 0], "small hand upon his and a little scuffle": [65535, 0], "hand upon his and a little scuffle ensued": [65535, 0], "upon his and a little scuffle ensued tom": [65535, 0], "his and a little scuffle ensued tom pretending": [65535, 0], "and a little scuffle ensued tom pretending to": [65535, 0], "a little scuffle ensued tom pretending to resist": [65535, 0], "little scuffle ensued tom pretending to resist in": [65535, 0], "scuffle ensued tom pretending to resist in earnest": [65535, 0], "ensued tom pretending to resist in earnest but": [65535, 0], "tom pretending to resist in earnest but letting": [65535, 0], "pretending to resist in earnest but letting his": [65535, 0], "to resist in earnest but letting his hand": [65535, 0], "resist in earnest but letting his hand slip": [65535, 0], "in earnest but letting his hand slip by": [65535, 0], "earnest but letting his hand slip by degrees": [65535, 0], "but letting his hand slip by degrees till": [65535, 0], "letting his hand slip by degrees till these": [65535, 0], "his hand slip by degrees till these words": [65535, 0], "hand slip by degrees till these words were": [65535, 0], "slip by degrees till these words were revealed": [65535, 0], "by degrees till these words were revealed i": [65535, 0], "degrees till these words were revealed i love": [65535, 0], "till these words were revealed i love you": [65535, 0], "these words were revealed i love you oh": [65535, 0], "words were revealed i love you oh you": [65535, 0], "were revealed i love you oh you bad": [65535, 0], "revealed i love you oh you bad thing": [65535, 0], "i love you oh you bad thing and": [65535, 0], "love you oh you bad thing and she": [65535, 0], "you oh you bad thing and she hit": [65535, 0], "oh you bad thing and she hit his": [65535, 0], "you bad thing and she hit his hand": [65535, 0], "bad thing and she hit his hand a": [65535, 0], "thing and she hit his hand a smart": [65535, 0], "and she hit his hand a smart rap": [65535, 0], "she hit his hand a smart rap but": [65535, 0], "hit his hand a smart rap but reddened": [65535, 0], "his hand a smart rap but reddened and": [65535, 0], "hand a smart rap but reddened and looked": [65535, 0], "a smart rap but reddened and looked pleased": [65535, 0], "smart rap but reddened and looked pleased nevertheless": [65535, 0], "rap but reddened and looked pleased nevertheless just": [65535, 0], "but reddened and looked pleased nevertheless just at": [65535, 0], "reddened and looked pleased nevertheless just at this": [65535, 0], "and looked pleased nevertheless just at this juncture": [65535, 0], "looked pleased nevertheless just at this juncture the": [65535, 0], "pleased nevertheless just at this juncture the boy": [65535, 0], "nevertheless just at this juncture the boy felt": [65535, 0], "just at this juncture the boy felt a": [65535, 0], "at this juncture the boy felt a slow": [65535, 0], "this juncture the boy felt a slow fateful": [65535, 0], "juncture the boy felt a slow fateful grip": [65535, 0], "the boy felt a slow fateful grip closing": [65535, 0], "boy felt a slow fateful grip closing on": [65535, 0], "felt a slow fateful grip closing on his": [65535, 0], "a slow fateful grip closing on his ear": [65535, 0], "slow fateful grip closing on his ear and": [65535, 0], "fateful grip closing on his ear and a": [65535, 0], "grip closing on his ear and a steady": [65535, 0], "closing on his ear and a steady lifting": [65535, 0], "on his ear and a steady lifting impulse": [65535, 0], "his ear and a steady lifting impulse in": [65535, 0], "ear and a steady lifting impulse in that": [65535, 0], "and a steady lifting impulse in that vise": [65535, 0], "a steady lifting impulse in that vise he": [65535, 0], "steady lifting impulse in that vise he was": [65535, 0], "lifting impulse in that vise he was borne": [65535, 0], "impulse in that vise he was borne across": [65535, 0], "in that vise he was borne across the": [65535, 0], "that vise he was borne across the house": [65535, 0], "vise he was borne across the house and": [65535, 0], "he was borne across the house and deposited": [65535, 0], "was borne across the house and deposited in": [65535, 0], "borne across the house and deposited in his": [65535, 0], "across the house and deposited in his own": [65535, 0], "the house and deposited in his own seat": [65535, 0], "house and deposited in his own seat under": [65535, 0], "and deposited in his own seat under a": [65535, 0], "deposited in his own seat under a peppering": [65535, 0], "in his own seat under a peppering fire": [65535, 0], "his own seat under a peppering fire of": [65535, 0], "own seat under a peppering fire of giggles": [65535, 0], "seat under a peppering fire of giggles from": [65535, 0], "under a peppering fire of giggles from the": [65535, 0], "a peppering fire of giggles from the whole": [65535, 0], "peppering fire of giggles from the whole school": [65535, 0], "fire of giggles from the whole school then": [65535, 0], "of giggles from the whole school then the": [65535, 0], "giggles from the whole school then the master": [65535, 0], "from the whole school then the master stood": [65535, 0], "the whole school then the master stood over": [65535, 0], "whole school then the master stood over him": [65535, 0], "school then the master stood over him during": [65535, 0], "then the master stood over him during a": [65535, 0], "the master stood over him during a few": [65535, 0], "master stood over him during a few awful": [65535, 0], "stood over him during a few awful moments": [65535, 0], "over him during a few awful moments and": [65535, 0], "him during a few awful moments and finally": [65535, 0], "during a few awful moments and finally moved": [65535, 0], "a few awful moments and finally moved away": [65535, 0], "few awful moments and finally moved away to": [65535, 0], "awful moments and finally moved away to his": [65535, 0], "moments and finally moved away to his throne": [65535, 0], "and finally moved away to his throne without": [65535, 0], "finally moved away to his throne without saying": [65535, 0], "moved away to his throne without saying a": [65535, 0], "away to his throne without saying a word": [65535, 0], "to his throne without saying a word but": [65535, 0], "his throne without saying a word but although": [65535, 0], "throne without saying a word but although tom's": [65535, 0], "without saying a word but although tom's ear": [65535, 0], "saying a word but although tom's ear tingled": [65535, 0], "a word but although tom's ear tingled his": [65535, 0], "word but although tom's ear tingled his heart": [65535, 0], "but although tom's ear tingled his heart was": [65535, 0], "although tom's ear tingled his heart was jubilant": [65535, 0], "tom's ear tingled his heart was jubilant as": [65535, 0], "ear tingled his heart was jubilant as the": [65535, 0], "tingled his heart was jubilant as the school": [65535, 0], "his heart was jubilant as the school quieted": [65535, 0], "heart was jubilant as the school quieted down": [65535, 0], "was jubilant as the school quieted down tom": [65535, 0], "jubilant as the school quieted down tom made": [65535, 0], "as the school quieted down tom made an": [65535, 0], "the school quieted down tom made an honest": [65535, 0], "school quieted down tom made an honest effort": [65535, 0], "quieted down tom made an honest effort to": [65535, 0], "down tom made an honest effort to study": [65535, 0], "tom made an honest effort to study but": [65535, 0], "made an honest effort to study but the": [65535, 0], "an honest effort to study but the turmoil": [65535, 0], "honest effort to study but the turmoil within": [65535, 0], "effort to study but the turmoil within him": [65535, 0], "to study but the turmoil within him was": [65535, 0], "study but the turmoil within him was too": [65535, 0], "but the turmoil within him was too great": [65535, 0], "the turmoil within him was too great in": [65535, 0], "turmoil within him was too great in turn": [65535, 0], "within him was too great in turn he": [65535, 0], "him was too great in turn he took": [65535, 0], "was too great in turn he took his": [65535, 0], "too great in turn he took his place": [65535, 0], "great in turn he took his place in": [65535, 0], "in turn he took his place in the": [65535, 0], "turn he took his place in the reading": [65535, 0], "he took his place in the reading class": [65535, 0], "took his place in the reading class and": [65535, 0], "his place in the reading class and made": [65535, 0], "place in the reading class and made a": [65535, 0], "in the reading class and made a botch": [65535, 0], "the reading class and made a botch of": [65535, 0], "reading class and made a botch of it": [65535, 0], "class and made a botch of it then": [65535, 0], "and made a botch of it then in": [65535, 0], "made a botch of it then in the": [65535, 0], "a botch of it then in the geography": [65535, 0], "botch of it then in the geography class": [65535, 0], "of it then in the geography class and": [65535, 0], "it then in the geography class and turned": [65535, 0], "then in the geography class and turned lakes": [65535, 0], "in the geography class and turned lakes into": [65535, 0], "the geography class and turned lakes into mountains": [65535, 0], "geography class and turned lakes into mountains mountains": [65535, 0], "class and turned lakes into mountains mountains into": [65535, 0], "and turned lakes into mountains mountains into rivers": [65535, 0], "turned lakes into mountains mountains into rivers and": [65535, 0], "lakes into mountains mountains into rivers and rivers": [65535, 0], "into mountains mountains into rivers and rivers into": [65535, 0], "mountains mountains into rivers and rivers into continents": [65535, 0], "mountains into rivers and rivers into continents till": [65535, 0], "into rivers and rivers into continents till chaos": [65535, 0], "rivers and rivers into continents till chaos was": [65535, 0], "and rivers into continents till chaos was come": [65535, 0], "rivers into continents till chaos was come again": [65535, 0], "into continents till chaos was come again then": [65535, 0], "continents till chaos was come again then in": [65535, 0], "till chaos was come again then in the": [65535, 0], "chaos was come again then in the spelling": [65535, 0], "was come again then in the spelling class": [65535, 0], "come again then in the spelling class and": [65535, 0], "again then in the spelling class and got": [65535, 0], "then in the spelling class and got turned": [65535, 0], "in the spelling class and got turned down": [65535, 0], "the spelling class and got turned down by": [65535, 0], "spelling class and got turned down by a": [65535, 0], "class and got turned down by a succession": [65535, 0], "and got turned down by a succession of": [65535, 0], "got turned down by a succession of mere": [65535, 0], "turned down by a succession of mere baby": [65535, 0], "down by a succession of mere baby words": [65535, 0], "by a succession of mere baby words till": [65535, 0], "a succession of mere baby words till he": [65535, 0], "succession of mere baby words till he brought": [65535, 0], "of mere baby words till he brought up": [65535, 0], "mere baby words till he brought up at": [65535, 0], "baby words till he brought up at the": [65535, 0], "words till he brought up at the foot": [65535, 0], "till he brought up at the foot and": [65535, 0], "he brought up at the foot and yielded": [65535, 0], "brought up at the foot and yielded up": [65535, 0], "up at the foot and yielded up the": [65535, 0], "at the foot and yielded up the pewter": [65535, 0], "the foot and yielded up the pewter medal": [65535, 0], "foot and yielded up the pewter medal which": [65535, 0], "and yielded up the pewter medal which he": [65535, 0], "yielded up the pewter medal which he had": [65535, 0], "up the pewter medal which he had worn": [65535, 0], "the pewter medal which he had worn with": [65535, 0], "pewter medal which he had worn with ostentation": [65535, 0], "medal which he had worn with ostentation for": [65535, 0], "which he had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday morning always": [65535, 0], "morning found tom sawyer miserable monday morning always found": [65535, 0], "found tom sawyer miserable monday morning always found him": [65535, 0], "tom sawyer miserable monday morning always found him so": [65535, 0], "sawyer miserable monday morning always found him so because": [65535, 0], "miserable monday morning always found him so because it": [65535, 0], "monday morning always found him so because it began": [65535, 0], "morning always found him so because it began another": [65535, 0], "always found him so because it began another week's": [65535, 0], "found him so because it began another week's slow": [65535, 0], "him so because it began another week's slow suffering": [65535, 0], "so because it began another week's slow suffering in": [65535, 0], "because it began another week's slow suffering in school": [65535, 0], "it began another week's slow suffering in school he": [65535, 0], "began another week's slow suffering in school he generally": [65535, 0], "another week's slow suffering in school he generally began": [65535, 0], "week's slow suffering in school he generally began that": [65535, 0], "slow suffering in school he generally began that day": [65535, 0], "suffering in school he generally began that day with": [65535, 0], "in school he generally began that day with wishing": [65535, 0], "school he generally began that day with wishing he": [65535, 0], "he generally began that day with wishing he had": [65535, 0], "generally began that day with wishing he had had": [65535, 0], "began that day with wishing he had had no": [65535, 0], "that day with wishing he had had no intervening": [65535, 0], "day with wishing he had had no intervening holiday": [65535, 0], "with wishing he had had no intervening holiday it": [65535, 0], "wishing he had had no intervening holiday it made": [65535, 0], "he had had no intervening holiday it made the": [65535, 0], "had had no intervening holiday it made the going": [65535, 0], "had no intervening holiday it made the going into": [65535, 0], "no intervening holiday it made the going into captivity": [65535, 0], "intervening holiday it made the going into captivity and": [65535, 0], "holiday it made the going into captivity and fetters": [65535, 0], "it made the going into captivity and fetters again": [65535, 0], "made the going into captivity and fetters again so": [65535, 0], "the going into captivity and fetters again so much": [65535, 0], "going into captivity and fetters again so much more": [65535, 0], "into captivity and fetters again so much more odious": [65535, 0], "captivity and fetters again so much more odious tom": [65535, 0], "and fetters again so much more odious tom lay": [65535, 0], "fetters again so much more odious tom lay thinking": [65535, 0], "again so much more odious tom lay thinking presently": [65535, 0], "so much more odious tom lay thinking presently it": [65535, 0], "much more odious tom lay thinking presently it occurred": [65535, 0], "more odious tom lay thinking presently it occurred to": [65535, 0], "odious tom lay thinking presently it occurred to him": [65535, 0], "tom lay thinking presently it occurred to him that": [65535, 0], "lay thinking presently it occurred to him that he": [65535, 0], "thinking presently it occurred to him that he wished": [65535, 0], "presently it occurred to him that he wished he": [65535, 0], "it occurred to him that he wished he was": [65535, 0], "occurred to him that he wished he was sick": [65535, 0], "to him that he wished he was sick then": [65535, 0], "him that he wished he was sick then he": [65535, 0], "that he wished he was sick then he could": [65535, 0], "he wished he was sick then he could stay": [65535, 0], "wished he was sick then he could stay home": [65535, 0], "he was sick then he could stay home from": [65535, 0], "was sick then he could stay home from school": [65535, 0], "sick then he could stay home from school here": [65535, 0], "then he could stay home from school here was": [65535, 0], "he could stay home from school here was a": [65535, 0], "could stay home from school here was a vague": [65535, 0], "stay home from school here was a vague possibility": [65535, 0], "home from school here was a vague possibility he": [65535, 0], "from school here was a vague possibility he canvassed": [65535, 0], "school here was a vague possibility he canvassed his": [65535, 0], "here was a vague possibility he canvassed his system": [65535, 0], "was a vague possibility he canvassed his system no": [65535, 0], "a vague possibility he canvassed his system no ailment": [65535, 0], "vague possibility he canvassed his system no ailment was": [65535, 0], "possibility he canvassed his system no ailment was found": [65535, 0], "he canvassed his system no ailment was found and": [65535, 0], "canvassed his system no ailment was found and he": [65535, 0], "his system no ailment was found and he investigated": [65535, 0], "system no ailment was found and he investigated again": [65535, 0], "no ailment was found and he investigated again this": [65535, 0], "ailment was found and he investigated again this time": [65535, 0], "was found and he investigated again this time he": [65535, 0], "found and he investigated again this time he thought": [65535, 0], "and he investigated again this time he thought he": [65535, 0], "he investigated again this time he thought he could": [65535, 0], "investigated again this time he thought he could detect": [65535, 0], "again this time he thought he could detect colicky": [65535, 0], "this time he thought he could detect colicky symptoms": [65535, 0], "time he thought he could detect colicky symptoms and": [65535, 0], "he thought he could detect colicky symptoms and he": [65535, 0], "thought he could detect colicky symptoms and he began": [65535, 0], "he could detect colicky symptoms and he began to": [65535, 0], "could detect colicky symptoms and he began to encourage": [65535, 0], "detect colicky symptoms and he began to encourage them": [65535, 0], "colicky symptoms and he began to encourage them with": [65535, 0], "symptoms and he began to encourage them with considerable": [65535, 0], "and he began to encourage them with considerable hope": [65535, 0], "he began to encourage them with considerable hope but": [65535, 0], "began to encourage them with considerable hope but they": [65535, 0], "to encourage them with considerable hope but they soon": [65535, 0], "encourage them with considerable hope but they soon grew": [65535, 0], "them with considerable hope but they soon grew feeble": [65535, 0], "with considerable hope but they soon grew feeble and": [65535, 0], "considerable hope but they soon grew feeble and presently": [65535, 0], "hope but they soon grew feeble and presently died": [65535, 0], "but they soon grew feeble and presently died wholly": [65535, 0], "they soon grew feeble and presently died wholly away": [65535, 0], "soon grew feeble and presently died wholly away he": [65535, 0], "grew feeble and presently died wholly away he reflected": [65535, 0], "feeble and presently died wholly away he reflected further": [65535, 0], "and presently died wholly away he reflected further suddenly": [65535, 0], "presently died wholly away he reflected further suddenly he": [65535, 0], "died wholly away he reflected further suddenly he discovered": [65535, 0], "wholly away he reflected further suddenly he discovered something": [65535, 0], "away he reflected further suddenly he discovered something one": [65535, 0], "he reflected further suddenly he discovered something one of": [65535, 0], "reflected further suddenly he discovered something one of his": [65535, 0], "further suddenly he discovered something one of his upper": [65535, 0], "suddenly he discovered something one of his upper front": [65535, 0], "he discovered something one of his upper front teeth": [65535, 0], "discovered something one of his upper front teeth was": [65535, 0], "something one of his upper front teeth was loose": [65535, 0], "one of his upper front teeth was loose this": [65535, 0], "of his upper front teeth was loose this was": [65535, 0], "his upper front teeth was loose this was lucky": [65535, 0], "upper front teeth was loose this was lucky he": [65535, 0], "front teeth was loose this was lucky he was": [65535, 0], "teeth was loose this was lucky he was about": [65535, 0], "was loose this was lucky he was about to": [65535, 0], "loose this was lucky he was about to begin": [65535, 0], "this was lucky he was about to begin to": [65535, 0], "was lucky he was about to begin to groan": [65535, 0], "lucky he was about to begin to groan as": [65535, 0], "he was about to begin to groan as a": [65535, 0], "was about to begin to groan as a starter": [65535, 0], "about to begin to groan as a starter as": [65535, 0], "to begin to groan as a starter as he": [65535, 0], "begin to groan as a starter as he called": [65535, 0], "to groan as a starter as he called it": [65535, 0], "groan as a starter as he called it when": [65535, 0], "as a starter as he called it when it": [65535, 0], "a starter as he called it when it occurred": [65535, 0], "starter as he called it when it occurred to": [65535, 0], "as he called it when it occurred to him": [65535, 0], "he called it when it occurred to him that": [65535, 0], "called it when it occurred to him that if": [65535, 0], "it when it occurred to him that if he": [65535, 0], "when it occurred to him that if he came": [65535, 0], "it occurred to him that if he came into": [65535, 0], "occurred to him that if he came into court": [65535, 0], "to him that if he came into court with": [65535, 0], "him that if he came into court with that": [65535, 0], "that if he came into court with that argument": [65535, 0], "if he came into court with that argument his": [65535, 0], "he came into court with that argument his aunt": [65535, 0], "came into court with that argument his aunt would": [65535, 0], "into court with that argument his aunt would pull": [65535, 0], "court with that argument his aunt would pull it": [65535, 0], "with that argument his aunt would pull it out": [65535, 0], "that argument his aunt would pull it out and": [65535, 0], "argument his aunt would pull it out and that": [65535, 0], "his aunt would pull it out and that would": [65535, 0], "aunt would pull it out and that would hurt": [65535, 0], "would pull it out and that would hurt so": [65535, 0], "pull it out and that would hurt so he": [65535, 0], "it out and that would hurt so he thought": [65535, 0], "out and that would hurt so he thought he": [65535, 0], "and that would hurt so he thought he would": [65535, 0], "that would hurt so he thought he would hold": [65535, 0], "would hurt so he thought he would hold the": [65535, 0], "hurt so he thought he would hold the tooth": [65535, 0], "so he thought he would hold the tooth in": [65535, 0], "he thought he would hold the tooth in reserve": [65535, 0], "thought he would hold the tooth in reserve for": [65535, 0], "he would hold the tooth in reserve for the": [65535, 0], "would hold the tooth in reserve for the present": [65535, 0], "hold the tooth in reserve for the present and": [65535, 0], "the tooth in reserve for the present and seek": [65535, 0], "tooth in reserve for the present and seek further": [65535, 0], "in reserve for the present and seek further nothing": [65535, 0], "reserve for the present and seek further nothing offered": [65535, 0], "for the present and seek further nothing offered for": [65535, 0], "the present and seek further nothing offered for some": [65535, 0], "present and seek further nothing offered for some little": [65535, 0], "and seek further nothing offered for some little time": [65535, 0], "seek further nothing offered for some little time and": [65535, 0], "further nothing offered for some little time and then": [65535, 0], "nothing offered for some little time and then he": [65535, 0], "offered for some little time and then he remembered": [65535, 0], "for some little time and then he remembered hearing": [65535, 0], "some little time and then he remembered hearing the": [65535, 0], "little time and then he remembered hearing the doctor": [65535, 0], "time and then he remembered hearing the doctor tell": [65535, 0], "and then he remembered hearing the doctor tell about": [65535, 0], "then he remembered hearing the doctor tell about a": [65535, 0], "he remembered hearing the doctor tell about a certain": [65535, 0], "remembered hearing the doctor tell about a certain thing": [65535, 0], "hearing the doctor tell about a certain thing that": [65535, 0], "the doctor tell about a certain thing that laid": [65535, 0], "doctor tell about a certain thing that laid up": [65535, 0], "tell about a certain thing that laid up a": [65535, 0], "about a certain thing that laid up a patient": [65535, 0], "a certain thing that laid up a patient for": [65535, 0], "certain thing that laid up a patient for two": [65535, 0], "thing that laid up a patient for two or": [65535, 0], "that laid up a patient for two or three": [65535, 0], "laid up a patient for two or three weeks": [65535, 0], "up a patient for two or three weeks and": [65535, 0], "a patient for two or three weeks and threatened": [65535, 0], "patient for two or three weeks and threatened to": [65535, 0], "for two or three weeks and threatened to make": [65535, 0], "two or three weeks and threatened to make him": [65535, 0], "or three weeks and threatened to make him lose": [65535, 0], "three weeks and threatened to make him lose a": [65535, 0], "weeks and threatened to make him lose a finger": [65535, 0], "and threatened to make him lose a finger so": [65535, 0], "threatened to make him lose a finger so the": [65535, 0], "to make him lose a finger so the boy": [65535, 0], "make him lose a finger so the boy eagerly": [65535, 0], "him lose a finger so the boy eagerly drew": [65535, 0], "lose a finger so the boy eagerly drew his": [65535, 0], "a finger so the boy eagerly drew his sore": [65535, 0], "finger so the boy eagerly drew his sore toe": [65535, 0], "so the boy eagerly drew his sore toe from": [65535, 0], "the boy eagerly drew his sore toe from under": [65535, 0], "boy eagerly drew his sore toe from under the": [65535, 0], "eagerly drew his sore toe from under the sheet": [65535, 0], "drew his sore toe from under the sheet and": [65535, 0], "his sore toe from under the sheet and held": [65535, 0], "sore toe from under the sheet and held it": [65535, 0], "toe from under the sheet and held it up": [65535, 0], "from under the sheet and held it up for": [65535, 0], "under the sheet and held it up for inspection": [65535, 0], "the sheet and held it up for inspection but": [65535, 0], "sheet and held it up for inspection but now": [65535, 0], "and held it up for inspection but now he": [65535, 0], "held it up for inspection but now he did": [65535, 0], "it up for inspection but now he did not": [65535, 0], "up for inspection but now he did not know": [65535, 0], "for inspection but now he did not know the": [65535, 0], "inspection but now he did not know the necessary": [65535, 0], "but now he did not know the necessary symptoms": [65535, 0], "now he did not know the necessary symptoms however": [65535, 0], "he did not know the necessary symptoms however it": [65535, 0], "did not know the necessary symptoms however it seemed": [65535, 0], "not know the necessary symptoms however it seemed well": [65535, 0], "know the necessary symptoms however it seemed well worth": [65535, 0], "the necessary symptoms however it seemed well worth while": [65535, 0], "necessary symptoms however it seemed well worth while to": [65535, 0], "symptoms however it seemed well worth while to chance": [65535, 0], "however it seemed well worth while to chance it": [65535, 0], "it seemed well worth while to chance it so": [65535, 0], "seemed well worth while to chance it so he": [65535, 0], "well worth while to chance it so he fell": [65535, 0], "worth while to chance it so he fell to": [65535, 0], "while to chance it so he fell to groaning": [65535, 0], "to chance it so he fell to groaning with": [65535, 0], "chance it so he fell to groaning with considerable": [65535, 0], "it so he fell to groaning with considerable spirit": [65535, 0], "so he fell to groaning with considerable spirit but": [65535, 0], "he fell to groaning with considerable spirit but sid": [65535, 0], "fell to groaning with considerable spirit but sid slept": [65535, 0], "to groaning with considerable spirit but sid slept on": [65535, 0], "groaning with considerable spirit but sid slept on unconscious": [65535, 0], "with considerable spirit but sid slept on unconscious tom": [65535, 0], "considerable spirit but sid slept on unconscious tom groaned": [65535, 0], "spirit but sid slept on unconscious tom groaned louder": [65535, 0], "but sid slept on unconscious tom groaned louder and": [65535, 0], "sid slept on unconscious tom groaned louder and fancied": [65535, 0], "slept on unconscious tom groaned louder and fancied that": [65535, 0], "on unconscious tom groaned louder and fancied that he": [65535, 0], "unconscious tom groaned louder and fancied that he began": [65535, 0], "tom groaned louder and fancied that he began to": [65535, 0], "groaned louder and fancied that he began to feel": [65535, 0], "louder and fancied that he began to feel pain": [65535, 0], "and fancied that he began to feel pain in": [65535, 0], "fancied that he began to feel pain in the": [65535, 0], "that he began to feel pain in the toe": [65535, 0], "he began to feel pain in the toe no": [65535, 0], "began to feel pain in the toe no result": [65535, 0], "to feel pain in the toe no result from": [65535, 0], "feel pain in the toe no result from sid": [65535, 0], "pain in the toe no result from sid tom": [65535, 0], "in the toe no result from sid tom was": [65535, 0], "the toe no result from sid tom was panting": [65535, 0], "toe no result from sid tom was panting with": [65535, 0], "no result from sid tom was panting with his": [65535, 0], "result from sid tom was panting with his exertions": [65535, 0], "from sid tom was panting with his exertions by": [65535, 0], "sid tom was panting with his exertions by this": [65535, 0], "tom was panting with his exertions by this time": [65535, 0], "was panting with his exertions by this time he": [65535, 0], "panting with his exertions by this time he took": [65535, 0], "with his exertions by this time he took a": [65535, 0], "his exertions by this time he took a rest": [65535, 0], "exertions by this time he took a rest and": [65535, 0], "by this time he took a rest and then": [65535, 0], "this time he took a rest and then swelled": [65535, 0], "time he took a rest and then swelled himself": [65535, 0], "he took a rest and then swelled himself up": [65535, 0], "took a rest and then swelled himself up and": [65535, 0], "a rest and then swelled himself up and fetched": [65535, 0], "rest and then swelled himself up and fetched a": [65535, 0], "and then swelled himself up and fetched a succession": [65535, 0], "then swelled himself up and fetched a succession of": [65535, 0], "swelled himself up and fetched a succession of admirable": [65535, 0], "himself up and fetched a succession of admirable groans": [65535, 0], "up and fetched a succession of admirable groans sid": [65535, 0], "and fetched a succession of admirable groans sid snored": [65535, 0], "fetched a succession of admirable groans sid snored on": [65535, 0], "a succession of admirable groans sid snored on tom": [65535, 0], "succession of admirable groans sid snored on tom was": [65535, 0], "of admirable groans sid snored on tom was aggravated": [65535, 0], "admirable groans sid snored on tom was aggravated he": [65535, 0], "groans sid snored on tom was aggravated he said": [65535, 0], "sid snored on tom was aggravated he said sid": [65535, 0], "snored on tom was aggravated he said sid sid": [65535, 0], "on tom was aggravated he said sid sid and": [65535, 0], "tom was aggravated he said sid sid and shook": [65535, 0], "was aggravated he said sid sid and shook him": [65535, 0], "aggravated he said sid sid and shook him this": [65535, 0], "he said sid sid and shook him this course": [65535, 0], "said sid sid and shook him this course worked": [65535, 0], "sid sid and shook him this course worked well": [65535, 0], "sid and shook him this course worked well and": [65535, 0], "and shook him this course worked well and tom": [65535, 0], "shook him this course worked well and tom began": [65535, 0], "him this course worked well and tom began to": [65535, 0], "this course worked well and tom began to groan": [65535, 0], "course worked well and tom began to groan again": [65535, 0], "worked well and tom began to groan again sid": [65535, 0], "well and tom began to groan again sid yawned": [65535, 0], "and tom began to groan again sid yawned stretched": [65535, 0], "tom began to groan again sid yawned stretched then": [65535, 0], "began to groan again sid yawned stretched then brought": [65535, 0], "to groan again sid yawned stretched then brought himself": [65535, 0], "groan again sid yawned stretched then brought himself up": [65535, 0], "again sid yawned stretched then brought himself up on": [65535, 0], "sid yawned stretched then brought himself up on his": [65535, 0], "yawned stretched then brought himself up on his elbow": [65535, 0], "stretched then brought himself up on his elbow with": [65535, 0], "then brought himself up on his elbow with a": [65535, 0], "brought himself up on his elbow with a snort": [65535, 0], "himself up on his elbow with a snort and": [65535, 0], "up on his elbow with a snort and began": [65535, 0], "on his elbow with a snort and began to": [65535, 0], "his elbow with a snort and began to stare": [65535, 0], "elbow with a snort and began to stare at": [65535, 0], "with a snort and began to stare at tom": [65535, 0], "a snort and began to stare at tom tom": [65535, 0], "snort and began to stare at tom tom went": [65535, 0], "and began to stare at tom tom went on": [65535, 0], "began to stare at tom tom went on groaning": [65535, 0], "to stare at tom tom went on groaning sid": [65535, 0], "stare at tom tom went on groaning sid said": [65535, 0], "at tom tom went on groaning sid said tom": [65535, 0], "tom tom went on groaning sid said tom say": [65535, 0], "tom went on groaning sid said tom say tom": [65535, 0], "went on groaning sid said tom say tom no": [65535, 0], "on groaning sid said tom say tom no response": [65535, 0], "groaning sid said tom say tom no response here": [65535, 0], "sid said tom say tom no response here tom": [65535, 0], "said tom say tom no response here tom tom": [65535, 0], "tom say tom no response here tom tom what": [65535, 0], "say tom no response here tom tom what is": [65535, 0], "tom no response here tom tom what is the": [65535, 0], "no response here tom tom what is the matter": [65535, 0], "response here tom tom what is the matter tom": [65535, 0], "here tom tom what is the matter tom and": [65535, 0], "tom tom what is the matter tom and he": [65535, 0], "tom what is the matter tom and he shook": [65535, 0], "what is the matter tom and he shook him": [65535, 0], "is the matter tom and he shook him and": [65535, 0], "the matter tom and he shook him and looked": [65535, 0], "matter tom and he shook him and looked in": [65535, 0], "tom and he shook him and looked in his": [65535, 0], "and he shook him and looked in his face": [65535, 0], "he shook him and looked in his face anxiously": [65535, 0], "shook him and looked in his face anxiously tom": [65535, 0], "him and looked in his face anxiously tom moaned": [65535, 0], "and looked in his face anxiously tom moaned out": [65535, 0], "looked in his face anxiously tom moaned out oh": [65535, 0], "in his face anxiously tom moaned out oh don't": [65535, 0], "his face anxiously tom moaned out oh don't sid": [65535, 0], "face anxiously tom moaned out oh don't sid don't": [65535, 0], "anxiously tom moaned out oh don't sid don't joggle": [65535, 0], "tom moaned out oh don't sid don't joggle me": [65535, 0], "moaned out oh don't sid don't joggle me why": [65535, 0], "out oh don't sid don't joggle me why what's": [65535, 0], "oh don't sid don't joggle me why what's the": [65535, 0], "don't sid don't joggle me why what's the matter": [65535, 0], "sid don't joggle me why what's the matter tom": [65535, 0], "don't joggle me why what's the matter tom i": [65535, 0], "joggle me why what's the matter tom i must": [65535, 0], "me why what's the matter tom i must call": [65535, 0], "why what's the matter tom i must call auntie": [65535, 0], "what's the matter tom i must call auntie no": [65535, 0], "the matter tom i must call auntie no never": [65535, 0], "matter tom i must call auntie no never mind": [65535, 0], "tom i must call auntie no never mind it'll": [65535, 0], "i must call auntie no never mind it'll be": [65535, 0], "must call auntie no never mind it'll be over": [65535, 0], "call auntie no never mind it'll be over by": [65535, 0], "auntie no never mind it'll be over by and": [65535, 0], "no never mind it'll be over by and by": [65535, 0], "never mind it'll be over by and by maybe": [65535, 0], "mind it'll be over by and by maybe don't": [65535, 0], "it'll be over by and by maybe don't call": [65535, 0], "be over by and by maybe don't call anybody": [65535, 0], "over by and by maybe don't call anybody but": [65535, 0], "by and by maybe don't call anybody but i": [65535, 0], "and by maybe don't call anybody but i must": [65535, 0], "by maybe don't call anybody but i must don't": [65535, 0], "maybe don't call anybody but i must don't groan": [65535, 0], "don't call anybody but i must don't groan so": [65535, 0], "call anybody but i must don't groan so tom": [65535, 0], "anybody but i must don't groan so tom it's": [65535, 0], "but i must don't groan so tom it's awful": [65535, 0], "i must don't groan so tom it's awful how": [65535, 0], "must don't groan so tom it's awful how long": [65535, 0], "don't groan so tom it's awful how long you": [65535, 0], "groan so tom it's awful how long you been": [65535, 0], "so tom it's awful how long you been this": [65535, 0], "tom it's awful how long you been this way": [65535, 0], "it's awful how long you been this way hours": [65535, 0], "awful how long you been this way hours ouch": [65535, 0], "how long you been this way hours ouch oh": [65535, 0], "long you been this way hours ouch oh don't": [65535, 0], "you been this way hours ouch oh don't stir": [65535, 0], "been this way hours ouch oh don't stir so": [65535, 0], "this way hours ouch oh don't stir so sid": [65535, 0], "way hours ouch oh don't stir so sid you'll": [65535, 0], "hours ouch oh don't stir so sid you'll kill": [65535, 0], "ouch oh don't stir so sid you'll kill me": [65535, 0], "oh don't stir so sid you'll kill me tom": [65535, 0], "don't stir so sid you'll kill me tom why": [65535, 0], "stir so sid you'll kill me tom why didn't": [65535, 0], "so sid you'll kill me tom why didn't you": [65535, 0], "sid you'll kill me tom why didn't you wake": [65535, 0], "you'll kill me tom why didn't you wake me": [65535, 0], "kill me tom why didn't you wake me sooner": [65535, 0], "me tom why didn't you wake me sooner oh": [65535, 0], "tom why didn't you wake me sooner oh tom": [65535, 0], "why didn't you wake me sooner oh tom don't": [65535, 0], "didn't you wake me sooner oh tom don't it": [65535, 0], "you wake me sooner oh tom don't it makes": [65535, 0], "wake me sooner oh tom don't it makes my": [65535, 0], "me sooner oh tom don't it makes my flesh": [65535, 0], "sooner oh tom don't it makes my flesh crawl": [65535, 0], "oh tom don't it makes my flesh crawl to": [65535, 0], "tom don't it makes my flesh crawl to hear": [65535, 0], "don't it makes my flesh crawl to hear you": [65535, 0], "it makes my flesh crawl to hear you tom": [65535, 0], "makes my flesh crawl to hear you tom what": [65535, 0], "my flesh crawl to hear you tom what is": [65535, 0], "flesh crawl to hear you tom what is the": [65535, 0], "crawl to hear you tom what is the matter": [65535, 0], "to hear you tom what is the matter i": [65535, 0], "hear you tom what is the matter i forgive": [65535, 0], "you tom what is the matter i forgive you": [65535, 0], "tom what is the matter i forgive you everything": [65535, 0], "what is the matter i forgive you everything sid": [65535, 0], "is the matter i forgive you everything sid groan": [65535, 0], "the matter i forgive you everything sid groan everything": [65535, 0], "matter i forgive you everything sid groan everything you've": [65535, 0], "i forgive you everything sid groan everything you've ever": [65535, 0], "forgive you everything sid groan everything you've ever done": [65535, 0], "you everything sid groan everything you've ever done to": [65535, 0], "everything sid groan everything you've ever done to me": [65535, 0], "sid groan everything you've ever done to me when": [65535, 0], "groan everything you've ever done to me when i'm": [65535, 0], "everything you've ever done to me when i'm gone": [65535, 0], "you've ever done to me when i'm gone oh": [65535, 0], "ever done to me when i'm gone oh tom": [65535, 0], "done to me when i'm gone oh tom you": [65535, 0], "to me when i'm gone oh tom you ain't": [65535, 0], "me when i'm gone oh tom you ain't dying": [65535, 0], "when i'm gone oh tom you ain't dying are": [65535, 0], "i'm gone oh tom you ain't dying are you": [65535, 0], "gone oh tom you ain't dying are you don't": [65535, 0], "oh tom you ain't dying are you don't tom": [65535, 0], "tom you ain't dying are you don't tom oh": [65535, 0], "you ain't dying are you don't tom oh don't": [65535, 0], "ain't dying are you don't tom oh don't maybe": [65535, 0], "dying are you don't tom oh don't maybe i": [65535, 0], "are you don't tom oh don't maybe i forgive": [65535, 0], "you don't tom oh don't maybe i forgive everybody": [65535, 0], "don't tom oh don't maybe i forgive everybody sid": [65535, 0], "tom oh don't maybe i forgive everybody sid groan": [65535, 0], "oh don't maybe i forgive everybody sid groan tell": [65535, 0], "don't maybe i forgive everybody sid groan tell 'em": [65535, 0], "maybe i forgive everybody sid groan tell 'em so": [65535, 0], "i forgive everybody sid groan tell 'em so sid": [65535, 0], "forgive everybody sid groan tell 'em so sid and": [65535, 0], "everybody sid groan tell 'em so sid and sid": [65535, 0], "sid groan tell 'em so sid and sid you": [65535, 0], "groan tell 'em so sid and sid you give": [65535, 0], "tell 'em so sid and sid you give my": [65535, 0], "'em so sid and sid you give my window": [65535, 0], "so sid and sid you give my window sash": [65535, 0], "sid and sid you give my window sash and": [65535, 0], "and sid you give my window sash and my": [65535, 0], "sid you give my window sash and my cat": [65535, 0], "you give my window sash and my cat with": [65535, 0], "give my window sash and my cat with one": [65535, 0], "my window sash and my cat with one eye": [65535, 0], "window sash and my cat with one eye to": [65535, 0], "sash and my cat with one eye to that": [65535, 0], "and my cat with one eye to that new": [65535, 0], "my cat with one eye to that new girl": [65535, 0], "cat with one eye to that new girl that's": [65535, 0], "with one eye to that new girl that's come": [65535, 0], "one eye to that new girl that's come to": [65535, 0], "eye to that new girl that's come to town": [65535, 0], "to that new girl that's come to town and": [65535, 0], "that new girl that's come to town and tell": [65535, 0], "new girl that's come to town and tell her": [65535, 0], "girl that's come to town and tell her but": [65535, 0], "that's come to town and tell her but sid": [65535, 0], "come to town and tell her but sid had": [65535, 0], "to town and tell her but sid had snatched": [65535, 0], "town and tell her but sid had snatched his": [65535, 0], "and tell her but sid had snatched his clothes": [65535, 0], "tell her but sid had snatched his clothes and": [65535, 0], "her but sid had snatched his clothes and gone": [65535, 0], "but sid had snatched his clothes and gone tom": [65535, 0], "sid had snatched his clothes and gone tom was": [65535, 0], "had snatched his clothes and gone tom was suffering": [65535, 0], "snatched his clothes and gone tom was suffering in": [65535, 0], "his clothes and gone tom was suffering in reality": [65535, 0], "clothes and gone tom was suffering in reality now": [65535, 0], "and gone tom was suffering in reality now so": [65535, 0], "gone tom was suffering in reality now so handsomely": [65535, 0], "tom was suffering in reality now so handsomely was": [65535, 0], "was suffering in reality now so handsomely was his": [65535, 0], "suffering in reality now so handsomely was his imagination": [65535, 0], "in reality now so handsomely was his imagination working": [65535, 0], "reality now so handsomely was his imagination working and": [65535, 0], "now so handsomely was his imagination working and so": [65535, 0], "so handsomely was his imagination working and so his": [65535, 0], "handsomely was his imagination working and so his groans": [65535, 0], "was his imagination working and so his groans had": [65535, 0], "his imagination working and so his groans had gathered": [65535, 0], "imagination working and so his groans had gathered quite": [65535, 0], "working and so his groans had gathered quite a": [65535, 0], "and so his groans had gathered quite a genuine": [65535, 0], "so his groans had gathered quite a genuine tone": [65535, 0], "his groans had gathered quite a genuine tone sid": [65535, 0], "groans had gathered quite a genuine tone sid flew": [65535, 0], "had gathered quite a genuine tone sid flew down": [65535, 0], "gathered quite a genuine tone sid flew down stairs": [65535, 0], "quite a genuine tone sid flew down stairs and": [65535, 0], "a genuine tone sid flew down stairs and said": [65535, 0], "genuine tone sid flew down stairs and said oh": [65535, 0], "tone sid flew down stairs and said oh aunt": [65535, 0], "sid flew down stairs and said oh aunt polly": [65535, 0], "flew down stairs and said oh aunt polly come": [65535, 0], "down stairs and said oh aunt polly come tom's": [65535, 0], "stairs and said oh aunt polly come tom's dying": [65535, 0], "and said oh aunt polly come tom's dying dying": [65535, 0], "said oh aunt polly come tom's dying dying yes'm": [65535, 0], "oh aunt polly come tom's dying dying yes'm don't": [65535, 0], "aunt polly come tom's dying dying yes'm don't wait": [65535, 0], "polly come tom's dying dying yes'm don't wait come": [65535, 0], "come tom's dying dying yes'm don't wait come quick": [65535, 0], "tom's dying dying yes'm don't wait come quick rubbage": [65535, 0], "dying dying yes'm don't wait come quick rubbage i": [65535, 0], "dying yes'm don't wait come quick rubbage i don't": [65535, 0], "yes'm don't wait come quick rubbage i don't believe": [65535, 0], "don't wait come quick rubbage i don't believe it": [65535, 0], "wait come quick rubbage i don't believe it but": [65535, 0], "come quick rubbage i don't believe it but she": [65535, 0], "quick rubbage i don't believe it but she fled": [65535, 0], "rubbage i don't believe it but she fled up": [65535, 0], "i don't believe it but she fled up stairs": [65535, 0], "don't believe it but she fled up stairs nevertheless": [65535, 0], "believe it but she fled up stairs nevertheless with": [65535, 0], "it but she fled up stairs nevertheless with sid": [65535, 0], "but she fled up stairs nevertheless with sid and": [65535, 0], "she fled up stairs nevertheless with sid and mary": [65535, 0], "fled up stairs nevertheless with sid and mary at": [65535, 0], "up stairs nevertheless with sid and mary at her": [65535, 0], "stairs nevertheless with sid and mary at her heels": [65535, 0], "nevertheless with sid and mary at her heels and": [65535, 0], "with sid and mary at her heels and her": [65535, 0], "sid and mary at her heels and her face": [65535, 0], "and mary at her heels and her face grew": [65535, 0], "mary at her heels and her face grew white": [65535, 0], "at her heels and her face grew white too": [65535, 0], "her heels and her face grew white too and": [65535, 0], "heels and her face grew white too and her": [65535, 0], "and her face grew white too and her lip": [65535, 0], "her face grew white too and her lip trembled": [65535, 0], "face grew white too and her lip trembled when": [65535, 0], "grew white too and her lip trembled when she": [65535, 0], "white too and her lip trembled when she reached": [65535, 0], "too and her lip trembled when she reached the": [65535, 0], "and her lip trembled when she reached the bedside": [65535, 0], "her lip trembled when she reached the bedside she": [65535, 0], "lip trembled when she reached the bedside she gasped": [65535, 0], "trembled when she reached the bedside she gasped out": [65535, 0], "when she reached the bedside she gasped out you": [65535, 0], "she reached the bedside she gasped out you tom": [65535, 0], "reached the bedside she gasped out you tom tom": [65535, 0], "the bedside she gasped out you tom tom what's": [65535, 0], "bedside she gasped out you tom tom what's the": [65535, 0], "she gasped out you tom tom what's the matter": [65535, 0], "gasped out you tom tom what's the matter with": [65535, 0], "out you tom tom what's the matter with you": [65535, 0], "you tom tom what's the matter with you oh": [65535, 0], "tom tom what's the matter with you oh auntie": [65535, 0], "tom what's the matter with you oh auntie i'm": [65535, 0], "what's the matter with you oh auntie i'm what's": [65535, 0], "the matter with you oh auntie i'm what's the": [65535, 0], "matter with you oh auntie i'm what's the matter": [65535, 0], "with you oh auntie i'm what's the matter with": [65535, 0], "you oh auntie i'm what's the matter with you": [65535, 0], "oh auntie i'm what's the matter with you what": [65535, 0], "auntie i'm what's the matter with you what is": [65535, 0], "i'm what's the matter with you what is the": [65535, 0], "what's the matter with you what is the matter": [65535, 0], "the matter with you what is the matter with": [65535, 0], "matter with you what is the matter with you": [65535, 0], "with you what is the matter with you child": [65535, 0], "you what is the matter with you child oh": [65535, 0], "what is the matter with you child oh auntie": [65535, 0], "is the matter with you child oh auntie my": [65535, 0], "the matter with you child oh auntie my sore": [65535, 0], "matter with you child oh auntie my sore toe's": [65535, 0], "with you child oh auntie my sore toe's mortified": [65535, 0], "you child oh auntie my sore toe's mortified the": [65535, 0], "child oh auntie my sore toe's mortified the old": [65535, 0], "oh auntie my sore toe's mortified the old lady": [65535, 0], "auntie my sore toe's mortified the old lady sank": [65535, 0], "my sore toe's mortified the old lady sank down": [65535, 0], "sore toe's mortified the old lady sank down into": [65535, 0], "toe's mortified the old lady sank down into a": [65535, 0], "mortified the old lady sank down into a chair": [65535, 0], "the old lady sank down into a chair and": [65535, 0], "old lady sank down into a chair and laughed": [65535, 0], "lady sank down into a chair and laughed a": [65535, 0], "sank down into a chair and laughed a little": [65535, 0], "down into a chair and laughed a little then": [65535, 0], "into a chair and laughed a little then cried": [65535, 0], "a chair and laughed a little then cried a": [65535, 0], "chair and laughed a little then cried a little": [65535, 0], "and laughed a little then cried a little then": [65535, 0], "laughed a little then cried a little then did": [65535, 0], "a little then cried a little then did both": [65535, 0], "little then cried a little then did both together": [65535, 0], "then cried a little then did both together this": [65535, 0], "cried a little then did both together this restored": [65535, 0], "a little then did both together this restored her": [65535, 0], "little then did both together this restored her and": [65535, 0], "then did both together this restored her and she": [65535, 0], "did both together this restored her and she said": [65535, 0], "both together this restored her and she said tom": [65535, 0], "together this restored her and she said tom what": [65535, 0], "this restored her and she said tom what a": [65535, 0], "restored her and she said tom what a turn": [65535, 0], "her and she said tom what a turn you": [65535, 0], "and she said tom what a turn you did": [65535, 0], "she said tom what a turn you did give": [65535, 0], "said tom what a turn you did give me": [65535, 0], "tom what a turn you did give me now": [65535, 0], "what a turn you did give me now you": [65535, 0], "a turn you did give me now you shut": [65535, 0], "turn you did give me now you shut up": [65535, 0], "you did give me now you shut up that": [65535, 0], "did give me now you shut up that nonsense": [65535, 0], "give me now you shut up that nonsense and": [65535, 0], "me now you shut up that nonsense and climb": [65535, 0], "now you shut up that nonsense and climb out": [65535, 0], "you shut up that nonsense and climb out of": [65535, 0], "shut up that nonsense and climb out of this": [65535, 0], "up that nonsense and climb out of this the": [65535, 0], "that nonsense and climb out of this the groans": [65535, 0], "nonsense and climb out of this the groans ceased": [65535, 0], "and climb out of this the groans ceased and": [65535, 0], "climb out of this the groans ceased and the": [65535, 0], "out of this the groans ceased and the pain": [65535, 0], "of this the groans ceased and the pain vanished": [65535, 0], "this the groans ceased and the pain vanished from": [65535, 0], "the groans ceased and the pain vanished from the": [65535, 0], "groans ceased and the pain vanished from the toe": [65535, 0], "ceased and the pain vanished from the toe the": [65535, 0], "and the pain vanished from the toe the boy": [65535, 0], "the pain vanished from the toe the boy felt": [65535, 0], "pain vanished from the toe the boy felt a": [65535, 0], "vanished from the toe the boy felt a little": [65535, 0], "from the toe the boy felt a little foolish": [65535, 0], "the toe the boy felt a little foolish and": [65535, 0], "toe the boy felt a little foolish and he": [65535, 0], "the boy felt a little foolish and he said": [65535, 0], "boy felt a little foolish and he said aunt": [65535, 0], "felt a little foolish and he said aunt polly": [65535, 0], "a little foolish and he said aunt polly it": [65535, 0], "little foolish and he said aunt polly it seemed": [65535, 0], "foolish and he said aunt polly it seemed mortified": [65535, 0], "and he said aunt polly it seemed mortified and": [65535, 0], "he said aunt polly it seemed mortified and it": [65535, 0], "said aunt polly it seemed mortified and it hurt": [65535, 0], "aunt polly it seemed mortified and it hurt so": [65535, 0], "polly it seemed mortified and it hurt so i": [65535, 0], "it seemed mortified and it hurt so i never": [65535, 0], "seemed mortified and it hurt so i never minded": [65535, 0], "mortified and it hurt so i never minded my": [65535, 0], "and it hurt so i never minded my tooth": [65535, 0], "it hurt so i never minded my tooth at": [65535, 0], "hurt so i never minded my tooth at all": [65535, 0], "so i never minded my tooth at all your": [65535, 0], "i never minded my tooth at all your tooth": [65535, 0], "never minded my tooth at all your tooth indeed": [65535, 0], "minded my tooth at all your tooth indeed what's": [65535, 0], "my tooth at all your tooth indeed what's the": [65535, 0], "tooth at all your tooth indeed what's the matter": [65535, 0], "at all your tooth indeed what's the matter with": [65535, 0], "all your tooth indeed what's the matter with your": [65535, 0], "your tooth indeed what's the matter with your tooth": [65535, 0], "tooth indeed what's the matter with your tooth one": [65535, 0], "indeed what's the matter with your tooth one of": [65535, 0], "what's the matter with your tooth one of them's": [65535, 0], "the matter with your tooth one of them's loose": [65535, 0], "matter with your tooth one of them's loose and": [65535, 0], "with your tooth one of them's loose and it": [65535, 0], "your tooth one of them's loose and it aches": [65535, 0], "tooth one of them's loose and it aches perfectly": [65535, 0], "one of them's loose and it aches perfectly awful": [65535, 0], "of them's loose and it aches perfectly awful there": [65535, 0], "them's loose and it aches perfectly awful there there": [65535, 0], "loose and it aches perfectly awful there there now": [65535, 0], "and it aches perfectly awful there there now don't": [65535, 0], "it aches perfectly awful there there now don't begin": [65535, 0], "aches perfectly awful there there now don't begin that": [65535, 0], "perfectly awful there there now don't begin that groaning": [65535, 0], "awful there there now don't begin that groaning again": [65535, 0], "there there now don't begin that groaning again open": [65535, 0], "there now don't begin that groaning again open your": [65535, 0], "now don't begin that groaning again open your mouth": [65535, 0], "don't begin that groaning again open your mouth well": [65535, 0], "begin that groaning again open your mouth well your": [65535, 0], "that groaning again open your mouth well your tooth": [65535, 0], "groaning again open your mouth well your tooth is": [65535, 0], "again open your mouth well your tooth is loose": [65535, 0], "open your mouth well your tooth is loose but": [65535, 0], "your mouth well your tooth is loose but you're": [65535, 0], "mouth well your tooth is loose but you're not": [65535, 0], "well your tooth is loose but you're not going": [65535, 0], "your tooth is loose but you're not going to": [65535, 0], "tooth is loose but you're not going to die": [65535, 0], "is loose but you're not going to die about": [65535, 0], "loose but you're not going to die about that": [65535, 0], "but you're not going to die about that mary": [65535, 0], "you're not going to die about that mary get": [65535, 0], "not going to die about that mary get me": [65535, 0], "going to die about that mary get me a": [65535, 0], "to die about that mary get me a silk": [65535, 0], "die about that mary get me a silk thread": [65535, 0], "about that mary get me a silk thread and": [65535, 0], "that mary get me a silk thread and a": [65535, 0], "mary get me a silk thread and a chunk": [65535, 0], "get me a silk thread and a chunk of": [65535, 0], "me a silk thread and a chunk of fire": [65535, 0], "a silk thread and a chunk of fire out": [65535, 0], "silk thread and a chunk of fire out of": [65535, 0], "thread and a chunk of fire out of the": [65535, 0], "and a chunk of fire out of the kitchen": [65535, 0], "a chunk of fire out of the kitchen tom": [65535, 0], "chunk of fire out of the kitchen tom said": [65535, 0], "of fire out of the kitchen tom said oh": [65535, 0], "fire out of the kitchen tom said oh please": [65535, 0], "out of the kitchen tom said oh please auntie": [65535, 0], "of the kitchen tom said oh please auntie don't": [65535, 0], "the kitchen tom said oh please auntie don't pull": [65535, 0], "kitchen tom said oh please auntie don't pull it": [65535, 0], "tom said oh please auntie don't pull it out": [65535, 0], "said oh please auntie don't pull it out it": [65535, 0], "oh please auntie don't pull it out it don't": [65535, 0], "please auntie don't pull it out it don't hurt": [65535, 0], "auntie don't pull it out it don't hurt any": [65535, 0], "don't pull it out it don't hurt any more": [65535, 0], "pull it out it don't hurt any more i": [65535, 0], "it out it don't hurt any more i wish": [65535, 0], "out it don't hurt any more i wish i": [65535, 0], "it don't hurt any more i wish i may": [65535, 0], "don't hurt any more i wish i may never": [65535, 0], "hurt any more i wish i may never stir": [65535, 0], "any more i wish i may never stir if": [65535, 0], "more i wish i may never stir if it": [65535, 0], "i wish i may never stir if it does": [65535, 0], "wish i may never stir if it does please": [65535, 0], "i may never stir if it does please don't": [65535, 0], "may never stir if it does please don't auntie": [65535, 0], "never stir if it does please don't auntie i": [65535, 0], "stir if it does please don't auntie i don't": [65535, 0], "if it does please don't auntie i don't want": [65535, 0], "it does please don't auntie i don't want to": [65535, 0], "does please don't auntie i don't want to stay": [65535, 0], "please don't auntie i don't want to stay home": [65535, 0], "don't auntie i don't want to stay home from": [65535, 0], "auntie i don't want to stay home from school": [65535, 0], "i don't want to stay home from school oh": [65535, 0], "don't want to stay home from school oh you": [65535, 0], "want to stay home from school oh you don't": [65535, 0], "to stay home from school oh you don't don't": [65535, 0], "stay home from school oh you don't don't you": [65535, 0], "home from school oh you don't don't you so": [65535, 0], "from school oh you don't don't you so all": [65535, 0], "school oh you don't don't you so all this": [65535, 0], "oh you don't don't you so all this row": [65535, 0], "you don't don't you so all this row was": [65535, 0], "don't don't you so all this row was because": [65535, 0], "don't you so all this row was because you": [65535, 0], "you so all this row was because you thought": [65535, 0], "so all this row was because you thought you'd": [65535, 0], "all this row was because you thought you'd get": [65535, 0], "this row was because you thought you'd get to": [65535, 0], "row was because you thought you'd get to stay": [65535, 0], "was because you thought you'd get to stay home": [65535, 0], "because you thought you'd get to stay home from": [65535, 0], "you thought you'd get to stay home from school": [65535, 0], "thought you'd get to stay home from school and": [65535, 0], "you'd get to stay home from school and go": [65535, 0], "get to stay home from school and go a": [65535, 0], "to stay home from school and go a fishing": [65535, 0], "stay home from school and go a fishing tom": [65535, 0], "home from school and go a fishing tom tom": [65535, 0], "from school and go a fishing tom tom i": [65535, 0], "school and go a fishing tom tom i love": [65535, 0], "and go a fishing tom tom i love you": [65535, 0], "go a fishing tom tom i love you so": [65535, 0], "a fishing tom tom i love you so and": [65535, 0], "fishing tom tom i love you so and you": [65535, 0], "tom tom i love you so and you seem": [65535, 0], "tom i love you so and you seem to": [65535, 0], "i love you so and you seem to try": [65535, 0], "love you so and you seem to try every": [65535, 0], "you so and you seem to try every way": [65535, 0], "so and you seem to try every way you": [65535, 0], "and you seem to try every way you can": [65535, 0], "you seem to try every way you can to": [65535, 0], "seem to try every way you can to break": [65535, 0], "to try every way you can to break my": [65535, 0], "try every way you can to break my old": [65535, 0], "every way you can to break my old heart": [65535, 0], "way you can to break my old heart with": [65535, 0], "you can to break my old heart with your": [65535, 0], "can to break my old heart with your outrageousness": [65535, 0], "to break my old heart with your outrageousness by": [65535, 0], "break my old heart with your outrageousness by this": [65535, 0], "my old heart with your outrageousness by this time": [65535, 0], "old heart with your outrageousness by this time the": [65535, 0], "heart with your outrageousness by this time the dental": [65535, 0], "with your outrageousness by this time the dental instruments": [65535, 0], "your outrageousness by this time the dental instruments were": [65535, 0], "outrageousness by this time the dental instruments were ready": [65535, 0], "by this time the dental instruments were ready the": [65535, 0], "this time the dental instruments were ready the old": [65535, 0], "time the dental instruments were ready the old lady": [65535, 0], "the dental instruments were ready the old lady made": [65535, 0], "dental instruments were ready the old lady made one": [65535, 0], "instruments were ready the old lady made one end": [65535, 0], "were ready the old lady made one end of": [65535, 0], "ready the old lady made one end of the": [65535, 0], "the old lady made one end of the silk": [65535, 0], "old lady made one end of the silk thread": [65535, 0], "lady made one end of the silk thread fast": [65535, 0], "made one end of the silk thread fast to": [65535, 0], "one end of the silk thread fast to tom's": [65535, 0], "end of the silk thread fast to tom's tooth": [65535, 0], "of the silk thread fast to tom's tooth with": [65535, 0], "the silk thread fast to tom's tooth with a": [65535, 0], "silk thread fast to tom's tooth with a loop": [65535, 0], "thread fast to tom's tooth with a loop and": [65535, 0], "fast to tom's tooth with a loop and tied": [65535, 0], "to tom's tooth with a loop and tied the": [65535, 0], "tom's tooth with a loop and tied the other": [65535, 0], "tooth with a loop and tied the other to": [65535, 0], "with a loop and tied the other to the": [65535, 0], "a loop and tied the other to the bedpost": [65535, 0], "loop and tied the other to the bedpost then": [65535, 0], "and tied the other to the bedpost then she": [65535, 0], "tied the other to the bedpost then she seized": [65535, 0], "the other to the bedpost then she seized the": [65535, 0], "other to the bedpost then she seized the chunk": [65535, 0], "to the bedpost then she seized the chunk of": [65535, 0], "the bedpost then she seized the chunk of fire": [65535, 0], "bedpost then she seized the chunk of fire and": [65535, 0], "then she seized the chunk of fire and suddenly": [65535, 0], "she seized the chunk of fire and suddenly thrust": [65535, 0], "seized the chunk of fire and suddenly thrust it": [65535, 0], "the chunk of fire and suddenly thrust it almost": [65535, 0], "chunk of fire and suddenly thrust it almost into": [65535, 0], "of fire and suddenly thrust it almost into the": [65535, 0], "fire and suddenly thrust it almost into the boy's": [65535, 0], "and suddenly thrust it almost into the boy's face": [65535, 0], "suddenly thrust it almost into the boy's face the": [65535, 0], "thrust it almost into the boy's face the tooth": [65535, 0], "it almost into the boy's face the tooth hung": [65535, 0], "almost into the boy's face the tooth hung dangling": [65535, 0], "into the boy's face the tooth hung dangling by": [65535, 0], "the boy's face the tooth hung dangling by the": [65535, 0], "boy's face the tooth hung dangling by the bedpost": [65535, 0], "face the tooth hung dangling by the bedpost now": [65535, 0], "the tooth hung dangling by the bedpost now but": [65535, 0], "tooth hung dangling by the bedpost now but all": [65535, 0], "hung dangling by the bedpost now but all trials": [65535, 0], "dangling by the bedpost now but all trials bring": [65535, 0], "by the bedpost now but all trials bring their": [65535, 0], "the bedpost now but all trials bring their compensations": [65535, 0], "bedpost now but all trials bring their compensations as": [65535, 0], "now but all trials bring their compensations as tom": [65535, 0], "but all trials bring their compensations as tom wended": [65535, 0], "all trials bring their compensations as tom wended to": [65535, 0], "trials bring their compensations as tom wended to school": [65535, 0], "bring their compensations as tom wended to school after": [65535, 0], "their compensations as tom wended to school after breakfast": [65535, 0], "compensations as tom wended to school after breakfast he": [65535, 0], "as tom wended to school after breakfast he was": [65535, 0], "tom wended to school after breakfast he was the": [65535, 0], "wended to school after breakfast he was the envy": [65535, 0], "to school after breakfast he was the envy of": [65535, 0], "school after breakfast he was the envy of every": [65535, 0], "after breakfast he was the envy of every boy": [65535, 0], "breakfast he was the envy of every boy he": [65535, 0], "he was the envy of every boy he met": [65535, 0], "was the envy of every boy he met because": [65535, 0], "the envy of every boy he met because the": [65535, 0], "envy of every boy he met because the gap": [65535, 0], "of every boy he met because the gap in": [65535, 0], "every boy he met because the gap in his": [65535, 0], "boy he met because the gap in his upper": [65535, 0], "he met because the gap in his upper row": [65535, 0], "met because the gap in his upper row of": [65535, 0], "because the gap in his upper row of teeth": [65535, 0], "the gap in his upper row of teeth enabled": [65535, 0], "gap in his upper row of teeth enabled him": [65535, 0], "in his upper row of teeth enabled him to": [65535, 0], "his upper row of teeth enabled him to expectorate": [65535, 0], "upper row of teeth enabled him to expectorate in": [65535, 0], "row of teeth enabled him to expectorate in a": [65535, 0], "of teeth enabled him to expectorate in a new": [65535, 0], "teeth enabled him to expectorate in a new and": [65535, 0], "enabled him to expectorate in a new and admirable": [65535, 0], "him to expectorate in a new and admirable way": [65535, 0], "to expectorate in a new and admirable way he": [65535, 0], "expectorate in a new and admirable way he gathered": [65535, 0], "in a new and admirable way he gathered quite": [65535, 0], "a new and admirable way he gathered quite a": [65535, 0], "new and admirable way he gathered quite a following": [65535, 0], "and admirable way he gathered quite a following of": [65535, 0], "admirable way he gathered quite a following of lads": [65535, 0], "way he gathered quite a following of lads interested": [65535, 0], "he gathered quite a following of lads interested in": [65535, 0], "gathered quite a following of lads interested in the": [65535, 0], "quite a following of lads interested in the exhibition": [65535, 0], "a following of lads interested in the exhibition and": [65535, 0], "following of lads interested in the exhibition and one": [65535, 0], "of lads interested in the exhibition and one that": [65535, 0], "lads interested in the exhibition and one that had": [65535, 0], "interested in the exhibition and one that had cut": [65535, 0], "in the exhibition and one that had cut his": [65535, 0], "the exhibition and one that had cut his finger": [65535, 0], "exhibition and one that had cut his finger and": [65535, 0], "and one that had cut his finger and had": [65535, 0], "one that had cut his finger and had been": [65535, 0], "that had cut his finger and had been a": [65535, 0], "had cut his finger and had been a centre": [65535, 0], "cut his finger and had been a centre of": [65535, 0], "his finger and had been a centre of fascination": [65535, 0], "finger and had been a centre of fascination and": [65535, 0], "and had been a centre of fascination and homage": [65535, 0], "had been a centre of fascination and homage up": [65535, 0], "been a centre of fascination and homage up to": [65535, 0], "a centre of fascination and homage up to this": [65535, 0], "centre of fascination and homage up to this time": [65535, 0], "of fascination and homage up to this time now": [65535, 0], "fascination and homage up to this time now found": [65535, 0], "and homage up to this time now found himself": [65535, 0], "homage up to this time now found himself suddenly": [65535, 0], "up to this time now found himself suddenly without": [65535, 0], "to this time now found himself suddenly without an": [65535, 0], "this time now found himself suddenly without an adherent": [65535, 0], "time now found himself suddenly without an adherent and": [65535, 0], "now found himself suddenly without an adherent and shorn": [65535, 0], "found himself suddenly without an adherent and shorn of": [65535, 0], "himself suddenly without an adherent and shorn of his": [65535, 0], "suddenly without an adherent and shorn of his glory": [65535, 0], "without an adherent and shorn of his glory his": [65535, 0], "an adherent and shorn of his glory his heart": [65535, 0], "adherent and shorn of his glory his heart was": [65535, 0], "and shorn of his glory his heart was heavy": [65535, 0], "shorn of his glory his heart was heavy and": [65535, 0], "of his glory his heart was heavy and he": [65535, 0], "his glory his heart was heavy and he said": [65535, 0], "glory his heart was heavy and he said with": [65535, 0], "his heart was heavy and he said with a": [65535, 0], "heart was heavy and he said with a disdain": [65535, 0], "was heavy and he said with a disdain which": [65535, 0], "heavy and he said with a disdain which he": [65535, 0], "and he said with a disdain which he did": [65535, 0], "he said with a disdain which he did not": [65535, 0], "said with a disdain which he did not feel": [65535, 0], "with a disdain which he did not feel that": [65535, 0], "a disdain which he did not feel that it": [65535, 0], "disdain which he did not feel that it wasn't": [65535, 0], "which he did not feel that it wasn't anything": [65535, 0], "he did not feel that it wasn't anything to": [65535, 0], "did not feel that it wasn't anything to spit": [65535, 0], "not feel that it wasn't anything to spit like": [65535, 0], "feel that it wasn't anything to spit like tom": [65535, 0], "that it wasn't anything to spit like tom sawyer": [65535, 0], "it wasn't anything to spit like tom sawyer but": [65535, 0], "wasn't anything to spit like tom sawyer but another": [65535, 0], "anything to spit like tom sawyer but another boy": [65535, 0], "to spit like tom sawyer but another boy said": [65535, 0], "spit like tom sawyer but another boy said sour": [65535, 0], "like tom sawyer but another boy said sour grapes": [65535, 0], "tom sawyer but another boy said sour grapes and": [65535, 0], "sawyer but another boy said sour grapes and he": [65535, 0], "but another boy said sour grapes and he wandered": [65535, 0], "another boy said sour grapes and he wandered away": [65535, 0], "boy said sour grapes and he wandered away a": [65535, 0], "said sour grapes and he wandered away a dismantled": [65535, 0], "sour grapes and he wandered away a dismantled hero": [65535, 0], "grapes and he wandered away a dismantled hero shortly": [65535, 0], "and he wandered away a dismantled hero shortly tom": [65535, 0], "he wandered away a dismantled hero shortly tom came": [65535, 0], "wandered away a dismantled hero shortly tom came upon": [65535, 0], "away a dismantled hero shortly tom came upon the": [65535, 0], "a dismantled hero shortly tom came upon the juvenile": [65535, 0], "dismantled hero shortly tom came upon the juvenile pariah": [65535, 0], "hero shortly tom came upon the juvenile pariah of": [65535, 0], "shortly tom came upon the juvenile pariah of the": [65535, 0], "tom came upon the juvenile pariah of the village": [65535, 0], "came upon the juvenile pariah of the village huckleberry": [65535, 0], "upon the juvenile pariah of the village huckleberry finn": [65535, 0], "the juvenile pariah of the village huckleberry finn son": [65535, 0], "juvenile pariah of the village huckleberry finn son of": [65535, 0], "pariah of the village huckleberry finn son of the": [65535, 0], "of the village huckleberry finn son of the town": [65535, 0], "the village huckleberry finn son of the town drunkard": [65535, 0], "village huckleberry finn son of the town drunkard huckleberry": [65535, 0], "huckleberry finn son of the town drunkard huckleberry was": [65535, 0], "finn son of the town drunkard huckleberry was cordially": [65535, 0], "son of the town drunkard huckleberry was cordially hated": [65535, 0], "of the town drunkard huckleberry was cordially hated and": [65535, 0], "the town drunkard huckleberry was cordially hated and dreaded": [65535, 0], "town drunkard huckleberry was cordially hated and dreaded by": [65535, 0], "drunkard huckleberry was cordially hated and dreaded by all": [65535, 0], "huckleberry was cordially hated and dreaded by all the": [65535, 0], "was cordially hated and dreaded by all the mothers": [65535, 0], "cordially hated and dreaded by all the mothers of": [65535, 0], "hated and dreaded by all the mothers of the": [65535, 0], "and dreaded by all the mothers of the town": [65535, 0], "dreaded by all the mothers of the town because": [65535, 0], "by all the mothers of the town because he": [65535, 0], "all the mothers of the town because he was": [65535, 0], "the mothers of the town because he was idle": [65535, 0], "mothers of the town because he was idle and": [65535, 0], "of the town because he was idle and lawless": [65535, 0], "the town because he was idle and lawless and": [65535, 0], "town because he was idle and lawless and vulgar": [65535, 0], "because he was idle and lawless and vulgar and": [65535, 0], "he was idle and lawless and vulgar and bad": [65535, 0], "was idle and lawless and vulgar and bad and": [65535, 0], "idle and lawless and vulgar and bad and because": [65535, 0], "and lawless and vulgar and bad and because all": [65535, 0], "lawless and vulgar and bad and because all their": [65535, 0], "and vulgar and bad and because all their children": [65535, 0], "vulgar and bad and because all their children admired": [65535, 0], "and bad and because all their children admired him": [65535, 0], "bad and because all their children admired him so": [65535, 0], "and because all their children admired him so and": [65535, 0], "because all their children admired him so and delighted": [65535, 0], "all their children admired him so and delighted in": [65535, 0], "their children admired him so and delighted in his": [65535, 0], "children admired him so and delighted in his forbidden": [65535, 0], "admired him so and delighted in his forbidden society": [65535, 0], "him so and delighted in his forbidden society and": [65535, 0], "so and delighted in his forbidden society and wished": [65535, 0], "and delighted in his forbidden society and wished they": [65535, 0], "delighted in his forbidden society and wished they dared": [65535, 0], "in his forbidden society and wished they dared to": [65535, 0], "his forbidden society and wished they dared to be": [65535, 0], "forbidden society and wished they dared to be like": [65535, 0], "society and wished they dared to be like him": [65535, 0], "and wished they dared to be like him tom": [65535, 0], "wished they dared to be like him tom was": [65535, 0], "they dared to be like him tom was like": [65535, 0], "dared to be like him tom was like the": [65535, 0], "to be like him tom was like the rest": [65535, 0], "be like him tom was like the rest of": [65535, 0], "like him tom was like the rest of the": [65535, 0], "him tom was like the rest of the respectable": [65535, 0], "tom was like the rest of the respectable boys": [65535, 0], "was like the rest of the respectable boys in": [65535, 0], "like the rest of the respectable boys in that": [65535, 0], "the rest of the respectable boys in that he": [65535, 0], "rest of the respectable boys in that he envied": [65535, 0], "of the respectable boys in that he envied huckleberry": [65535, 0], "the respectable boys in that he envied huckleberry his": [65535, 0], "respectable boys in that he envied huckleberry his gaudy": [65535, 0], "boys in that he envied huckleberry his gaudy outcast": [65535, 0], "in that he envied huckleberry his gaudy outcast condition": [65535, 0], "that he envied huckleberry his gaudy outcast condition and": [65535, 0], "he envied huckleberry his gaudy outcast condition and was": [65535, 0], "envied huckleberry his gaudy outcast condition and was under": [65535, 0], "huckleberry his gaudy outcast condition and was under strict": [65535, 0], "his gaudy outcast condition and was under strict orders": [65535, 0], "gaudy outcast condition and was under strict orders not": [65535, 0], "outcast condition and was under strict orders not to": [65535, 0], "condition and was under strict orders not to play": [65535, 0], "and was under strict orders not to play with": [65535, 0], "was under strict orders not to play with him": [65535, 0], "under strict orders not to play with him so": [65535, 0], "strict orders not to play with him so he": [65535, 0], "orders not to play with him so he played": [65535, 0], "not to play with him so he played with": [65535, 0], "to play with him so he played with him": [65535, 0], "play with him so he played with him every": [65535, 0], "with him so he played with him every time": [65535, 0], "him so he played with him every time he": [65535, 0], "so he played with him every time he got": [65535, 0], "he played with him every time he got a": [65535, 0], "played with him every time he got a chance": [65535, 0], "with him every time he got a chance huckleberry": [65535, 0], "him every time he got a chance huckleberry was": [65535, 0], "every time he got a chance huckleberry was always": [65535, 0], "time he got a chance huckleberry was always dressed": [65535, 0], "he got a chance huckleberry was always dressed in": [65535, 0], "got a chance huckleberry was always dressed in the": [65535, 0], "a chance huckleberry was always dressed in the cast": [65535, 0], "chance huckleberry was always dressed in the cast off": [65535, 0], "huckleberry was always dressed in the cast off clothes": [65535, 0], "was always dressed in the cast off clothes of": [65535, 0], "always dressed in the cast off clothes of full": [65535, 0], "dressed in the cast off clothes of full grown": [65535, 0], "in the cast off clothes of full grown men": [65535, 0], "the cast off clothes of full grown men and": [65535, 0], "cast off clothes of full grown men and they": [65535, 0], "off clothes of full grown men and they were": [65535, 0], "clothes of full grown men and they were in": [65535, 0], "of full grown men and they were in perennial": [65535, 0], "full grown men and they were in perennial bloom": [65535, 0], "grown men and they were in perennial bloom and": [65535, 0], "men and they were in perennial bloom and fluttering": [65535, 0], "and they were in perennial bloom and fluttering with": [65535, 0], "they were in perennial bloom and fluttering with rags": [65535, 0], "were in perennial bloom and fluttering with rags his": [65535, 0], "in perennial bloom and fluttering with rags his hat": [65535, 0], "perennial bloom and fluttering with rags his hat was": [65535, 0], "bloom and fluttering with rags his hat was a": [65535, 0], "and fluttering with rags his hat was a vast": [65535, 0], "fluttering with rags his hat was a vast ruin": [65535, 0], "with rags his hat was a vast ruin with": [65535, 0], "rags his hat was a vast ruin with a": [65535, 0], "his hat was a vast ruin with a wide": [65535, 0], "hat was a vast ruin with a wide crescent": [65535, 0], "was a vast ruin with a wide crescent lopped": [65535, 0], "a vast ruin with a wide crescent lopped out": [65535, 0], "vast ruin with a wide crescent lopped out of": [65535, 0], "ruin with a wide crescent lopped out of its": [65535, 0], "with a wide crescent lopped out of its brim": [65535, 0], "a wide crescent lopped out of its brim his": [65535, 0], "wide crescent lopped out of its brim his coat": [65535, 0], "crescent lopped out of its brim his coat when": [65535, 0], "lopped out of its brim his coat when he": [65535, 0], "out of its brim his coat when he wore": [65535, 0], "of its brim his coat when he wore one": [65535, 0], "its brim his coat when he wore one hung": [65535, 0], "brim his coat when he wore one hung nearly": [65535, 0], "his coat when he wore one hung nearly to": [65535, 0], "coat when he wore one hung nearly to his": [65535, 0], "when he wore one hung nearly to his heels": [65535, 0], "he wore one hung nearly to his heels and": [65535, 0], "wore one hung nearly to his heels and had": [65535, 0], "one hung nearly to his heels and had the": [65535, 0], "hung nearly to his heels and had the rearward": [65535, 0], "nearly to his heels and had the rearward buttons": [65535, 0], "to his heels and had the rearward buttons far": [65535, 0], "his heels and had the rearward buttons far down": [65535, 0], "heels and had the rearward buttons far down the": [65535, 0], "and had the rearward buttons far down the back": [65535, 0], "had the rearward buttons far down the back but": [65535, 0], "the rearward buttons far down the back but one": [65535, 0], "rearward buttons far down the back but one suspender": [65535, 0], "buttons far down the back but one suspender supported": [65535, 0], "far down the back but one suspender supported his": [65535, 0], "down the back but one suspender supported his trousers": [65535, 0], "the back but one suspender supported his trousers the": [65535, 0], "back but one suspender supported his trousers the seat": [65535, 0], "but one suspender supported his trousers the seat of": [65535, 0], "one suspender supported his trousers the seat of the": [65535, 0], "suspender supported his trousers the seat of the trousers": [65535, 0], "supported his trousers the seat of the trousers bagged": [65535, 0], "his trousers the seat of the trousers bagged low": [65535, 0], "trousers the seat of the trousers bagged low and": [65535, 0], "the seat of the trousers bagged low and contained": [65535, 0], "seat of the trousers bagged low and contained nothing": [65535, 0], "of the trousers bagged low and contained nothing the": [65535, 0], "the trousers bagged low and contained nothing the fringed": [65535, 0], "trousers bagged low and contained nothing the fringed legs": [65535, 0], "bagged low and contained nothing the fringed legs dragged": [65535, 0], "low and contained nothing the fringed legs dragged in": [65535, 0], "and contained nothing the fringed legs dragged in the": [65535, 0], "contained nothing the fringed legs dragged in the dirt": [65535, 0], "nothing the fringed legs dragged in the dirt when": [65535, 0], "the fringed legs dragged in the dirt when not": [65535, 0], "fringed legs dragged in the dirt when not rolled": [65535, 0], "legs dragged in the dirt when not rolled up": [65535, 0], "dragged in the dirt when not rolled up huckleberry": [65535, 0], "in the dirt when not rolled up huckleberry came": [65535, 0], "the dirt when not rolled up huckleberry came and": [65535, 0], "dirt when not rolled up huckleberry came and went": [65535, 0], "when not rolled up huckleberry came and went at": [65535, 0], "not rolled up huckleberry came and went at his": [65535, 0], "rolled up huckleberry came and went at his own": [65535, 0], "up huckleberry came and went at his own free": [65535, 0], "huckleberry came and went at his own free will": [65535, 0], "came and went at his own free will he": [65535, 0], "and went at his own free will he slept": [65535, 0], "went at his own free will he slept on": [65535, 0], "at his own free will he slept on doorsteps": [65535, 0], "his own free will he slept on doorsteps in": [65535, 0], "own free will he slept on doorsteps in fine": [65535, 0], "free will he slept on doorsteps in fine weather": [65535, 0], "will he slept on doorsteps in fine weather and": [65535, 0], "he slept on doorsteps in fine weather and in": [65535, 0], "slept on doorsteps in fine weather and in empty": [65535, 0], "on doorsteps in fine weather and in empty hogsheads": [65535, 0], "doorsteps in fine weather and in empty hogsheads in": [65535, 0], "in fine weather and in empty hogsheads in wet": [65535, 0], "fine weather and in empty hogsheads in wet he": [65535, 0], "weather and in empty hogsheads in wet he did": [65535, 0], "and in empty hogsheads in wet he did not": [65535, 0], "in empty hogsheads in wet he did not have": [65535, 0], "empty hogsheads in wet he did not have to": [65535, 0], "hogsheads in wet he did not have to go": [65535, 0], "in wet he did not have to go to": [65535, 0], "wet he did not have to go to school": [65535, 0], "he did not have to go to school or": [65535, 0], "did not have to go to school or to": [65535, 0], "not have to go to school or to church": [65535, 0], "have to go to school or to church or": [65535, 0], "to go to school or to church or call": [65535, 0], "go to school or to church or call any": [65535, 0], "to school or to church or call any being": [65535, 0], "school or to church or call any being master": [65535, 0], "or to church or call any being master or": [65535, 0], "to church or call any being master or obey": [65535, 0], "church or call any being master or obey anybody": [65535, 0], "or call any being master or obey anybody he": [65535, 0], "call any being master or obey anybody he could": [65535, 0], "any being master or obey anybody he could go": [65535, 0], "being master or obey anybody he could go fishing": [65535, 0], "master or obey anybody he could go fishing or": [65535, 0], "or obey anybody he could go fishing or swimming": [65535, 0], "obey anybody he could go fishing or swimming when": [65535, 0], "anybody he could go fishing or swimming when and": [65535, 0], "he could go fishing or swimming when and where": [65535, 0], "could go fishing or swimming when and where he": [65535, 0], "go fishing or swimming when and where he chose": [65535, 0], "fishing or swimming when and where he chose and": [65535, 0], "or swimming when and where he chose and stay": [65535, 0], "swimming when and where he chose and stay as": [65535, 0], "when and where he chose and stay as long": [65535, 0], "and where he chose and stay as long as": [65535, 0], "where he chose and stay as long as it": [65535, 0], "he chose and stay as long as it suited": [65535, 0], "chose and stay as long as it suited him": [65535, 0], "and stay as long as it suited him nobody": [65535, 0], "stay as long as it suited him nobody forbade": [65535, 0], "as long as it suited him nobody forbade him": [65535, 0], "long as it suited him nobody forbade him to": [65535, 0], "as it suited him nobody forbade him to fight": [65535, 0], "it suited him nobody forbade him to fight he": [65535, 0], "suited him nobody forbade him to fight he could": [65535, 0], "him nobody forbade him to fight he could sit": [65535, 0], "nobody forbade him to fight he could sit up": [65535, 0], "forbade him to fight he could sit up as": [65535, 0], "him to fight he could sit up as late": [65535, 0], "to fight he could sit up as late as": [65535, 0], "fight he could sit up as late as he": [65535, 0], "he could sit up as late as he pleased": [65535, 0], "could sit up as late as he pleased he": [65535, 0], "sit up as late as he pleased he was": [65535, 0], "up as late as he pleased he was always": [65535, 0], "as late as he pleased he was always the": [65535, 0], "late as he pleased he was always the first": [65535, 0], "as he pleased he was always the first boy": [65535, 0], "he pleased he was always the first boy that": [65535, 0], "pleased he was always the first boy that went": [65535, 0], "he was always the first boy that went barefoot": [65535, 0], "was always the first boy that went barefoot in": [65535, 0], "always the first boy that went barefoot in the": [65535, 0], "the first boy that went barefoot in the spring": [65535, 0], "first boy that went barefoot in the spring and": [65535, 0], "boy that went barefoot in the spring and the": [65535, 0], "that went barefoot in the spring and the last": [65535, 0], "went barefoot in the spring and the last to": [65535, 0], "barefoot in the spring and the last to resume": [65535, 0], "in the spring and the last to resume leather": [65535, 0], "the spring and the last to resume leather in": [65535, 0], "spring and the last to resume leather in the": [65535, 0], "and the last to resume leather in the fall": [65535, 0], "the last to resume leather in the fall he": [65535, 0], "last to resume leather in the fall he never": [65535, 0], "to resume leather in the fall he never had": [65535, 0], "resume leather in the fall he never had to": [65535, 0], "leather in the fall he never had to wash": [65535, 0], "in the fall he never had to wash nor": [65535, 0], "the fall he never had to wash nor put": [65535, 0], "fall he never had to wash nor put on": [65535, 0], "he never had to wash nor put on clean": [65535, 0], "never had to wash nor put on clean clothes": [65535, 0], "had to wash nor put on clean clothes he": [65535, 0], "to wash nor put on clean clothes he could": [65535, 0], "wash nor put on clean clothes he could swear": [65535, 0], "nor put on clean clothes he could swear wonderfully": [65535, 0], "put on clean clothes he could swear wonderfully in": [65535, 0], "on clean clothes he could swear wonderfully in a": [65535, 0], "clean clothes he could swear wonderfully in a word": [65535, 0], "clothes he could swear wonderfully in a word everything": [65535, 0], "he could swear wonderfully in a word everything that": [65535, 0], "could swear wonderfully in a word everything that goes": [65535, 0], "swear wonderfully in a word everything that goes to": [65535, 0], "wonderfully in a word everything that goes to make": [65535, 0], "in a word everything that goes to make life": [65535, 0], "a word everything that goes to make life precious": [65535, 0], "word everything that goes to make life precious that": [65535, 0], "everything that goes to make life precious that boy": [65535, 0], "that goes to make life precious that boy had": [65535, 0], "goes to make life precious that boy had so": [65535, 0], "to make life precious that boy had so thought": [65535, 0], "make life precious that boy had so thought every": [65535, 0], "life precious that boy had so thought every harassed": [65535, 0], "precious that boy had so thought every harassed hampered": [65535, 0], "that boy had so thought every harassed hampered respectable": [65535, 0], "boy had so thought every harassed hampered respectable boy": [65535, 0], "had so thought every harassed hampered respectable boy in": [65535, 0], "so thought every harassed hampered respectable boy in st": [65535, 0], "thought every harassed hampered respectable boy in st petersburg": [65535, 0], "every harassed hampered respectable boy in st petersburg tom": [65535, 0], "harassed hampered respectable boy in st petersburg tom hailed": [65535, 0], "hampered respectable boy in st petersburg tom hailed the": [65535, 0], "respectable boy in st petersburg tom hailed the romantic": [65535, 0], "boy in st petersburg tom hailed the romantic outcast": [65535, 0], "in st petersburg tom hailed the romantic outcast hello": [65535, 0], "st petersburg tom hailed the romantic outcast hello huckleberry": [65535, 0], "petersburg tom hailed the romantic outcast hello huckleberry hello": [65535, 0], "tom hailed the romantic outcast hello huckleberry hello yourself": [65535, 0], "hailed the romantic outcast hello huckleberry hello yourself and": [65535, 0], "the romantic outcast hello huckleberry hello yourself and see": [65535, 0], "romantic outcast hello huckleberry hello yourself and see how": [65535, 0], "outcast hello huckleberry hello yourself and see how you": [65535, 0], "hello huckleberry hello yourself and see how you like": [65535, 0], "huckleberry hello yourself and see how you like it": [65535, 0], "hello yourself and see how you like it what's": [65535, 0], "yourself and see how you like it what's that": [65535, 0], "and see how you like it what's that you": [65535, 0], "see how you like it what's that you got": [65535, 0], "how you like it what's that you got dead": [65535, 0], "you like it what's that you got dead cat": [65535, 0], "like it what's that you got dead cat lemme": [65535, 0], "it what's that you got dead cat lemme see": [65535, 0], "what's that you got dead cat lemme see him": [65535, 0], "that you got dead cat lemme see him huck": [65535, 0], "you got dead cat lemme see him huck my": [65535, 0], "got dead cat lemme see him huck my he's": [65535, 0], "dead cat lemme see him huck my he's pretty": [65535, 0], "cat lemme see him huck my he's pretty stiff": [65535, 0], "lemme see him huck my he's pretty stiff where'd": [65535, 0], "see him huck my he's pretty stiff where'd you": [65535, 0], "him huck my he's pretty stiff where'd you get": [65535, 0], "huck my he's pretty stiff where'd you get him": [65535, 0], "my he's pretty stiff where'd you get him bought": [65535, 0], "he's pretty stiff where'd you get him bought him": [65535, 0], "pretty stiff where'd you get him bought him off'n": [65535, 0], "stiff where'd you get him bought him off'n a": [65535, 0], "where'd you get him bought him off'n a boy": [65535, 0], "you get him bought him off'n a boy what": [65535, 0], "get him bought him off'n a boy what did": [65535, 0], "him bought him off'n a boy what did you": [65535, 0], "bought him off'n a boy what did you give": [65535, 0], "him off'n a boy what did you give i": [65535, 0], "off'n a boy what did you give i give": [65535, 0], "a boy what did you give i give a": [65535, 0], "boy what did you give i give a blue": [65535, 0], "what did you give i give a blue ticket": [65535, 0], "did you give i give a blue ticket and": [65535, 0], "you give i give a blue ticket and a": [65535, 0], "give i give a blue ticket and a bladder": [65535, 0], "i give a blue ticket and a bladder that": [65535, 0], "give a blue ticket and a bladder that i": [65535, 0], "a blue ticket and a bladder that i got": [65535, 0], "blue ticket and a bladder that i got at": [65535, 0], "ticket and a bladder that i got at the": [65535, 0], "and a bladder that i got at the slaughter": [65535, 0], "a bladder that i got at the slaughter house": [65535, 0], "bladder that i got at the slaughter house where'd": [65535, 0], "that i got at the slaughter house where'd you": [65535, 0], "i got at the slaughter house where'd you get": [65535, 0], "got at the slaughter house where'd you get the": [65535, 0], "at the slaughter house where'd you get the blue": [65535, 0], "the slaughter house where'd you get the blue ticket": [65535, 0], "slaughter house where'd you get the blue ticket bought": [65535, 0], "house where'd you get the blue ticket bought it": [65535, 0], "where'd you get the blue ticket bought it off'n": [65535, 0], "you get the blue ticket bought it off'n ben": [65535, 0], "get the blue ticket bought it off'n ben rogers": [65535, 0], "the blue ticket bought it off'n ben rogers two": [65535, 0], "blue ticket bought it off'n ben rogers two weeks": [65535, 0], "ticket bought it off'n ben rogers two weeks ago": [65535, 0], "bought it off'n ben rogers two weeks ago for": [65535, 0], "it off'n ben rogers two weeks ago for a": [65535, 0], "off'n ben rogers two weeks ago for a hoop": [65535, 0], "ben rogers two weeks ago for a hoop stick": [65535, 0], "rogers two weeks ago for a hoop stick say": [65535, 0], "two weeks ago for a hoop stick say what": [65535, 0], "weeks ago for a hoop stick say what is": [65535, 0], "ago for a hoop stick say what is dead": [65535, 0], "for a hoop stick say what is dead cats": [65535, 0], "a hoop stick say what is dead cats good": [65535, 0], "hoop stick say what is dead cats good for": [65535, 0], "stick say what is dead cats good for huck": [65535, 0], "say what is dead cats good for huck good": [65535, 0], "what is dead cats good for huck good for": [65535, 0], "is dead cats good for huck good for cure": [65535, 0], "dead cats good for huck good for cure warts": [65535, 0], "cats good for huck good for cure warts with": [65535, 0], "good for huck good for cure warts with no": [65535, 0], "for huck good for cure warts with no is": [65535, 0], "huck good for cure warts with no is that": [65535, 0], "good for cure warts with no is that so": [65535, 0], "for cure warts with no is that so i": [65535, 0], "cure warts with no is that so i know": [65535, 0], "warts with no is that so i know something": [65535, 0], "with no is that so i know something that's": [65535, 0], "no is that so i know something that's better": [65535, 0], "is that so i know something that's better i": [65535, 0], "that so i know something that's better i bet": [65535, 0], "so i know something that's better i bet you": [65535, 0], "i know something that's better i bet you don't": [65535, 0], "know something that's better i bet you don't what": [65535, 0], "something that's better i bet you don't what is": [65535, 0], "that's better i bet you don't what is it": [65535, 0], "better i bet you don't what is it why": [65535, 0], "i bet you don't what is it why spunk": [65535, 0], "bet you don't what is it why spunk water": [65535, 0], "you don't what is it why spunk water spunk": [65535, 0], "don't what is it why spunk water spunk water": [65535, 0], "what is it why spunk water spunk water i": [65535, 0], "is it why spunk water spunk water i wouldn't": [65535, 0], "it why spunk water spunk water i wouldn't give": [65535, 0], "why spunk water spunk water i wouldn't give a": [65535, 0], "spunk water spunk water i wouldn't give a dern": [65535, 0], "water spunk water i wouldn't give a dern for": [65535, 0], "spunk water i wouldn't give a dern for spunk": [65535, 0], "water i wouldn't give a dern for spunk water": [65535, 0], "i wouldn't give a dern for spunk water you": [65535, 0], "wouldn't give a dern for spunk water you wouldn't": [65535, 0], "give a dern for spunk water you wouldn't wouldn't": [65535, 0], "a dern for spunk water you wouldn't wouldn't you": [65535, 0], "dern for spunk water you wouldn't wouldn't you d'you": [65535, 0], "for spunk water you wouldn't wouldn't you d'you ever": [65535, 0], "spunk water you wouldn't wouldn't you d'you ever try": [65535, 0], "water you wouldn't wouldn't you d'you ever try it": [65535, 0], "you wouldn't wouldn't you d'you ever try it no": [65535, 0], "wouldn't wouldn't you d'you ever try it no i": [65535, 0], "wouldn't you d'you ever try it no i hain't": [65535, 0], "you d'you ever try it no i hain't but": [65535, 0], "d'you ever try it no i hain't but bob": [65535, 0], "ever try it no i hain't but bob tanner": [65535, 0], "try it no i hain't but bob tanner did": [65535, 0], "it no i hain't but bob tanner did who": [65535, 0], "no i hain't but bob tanner did who told": [65535, 0], "i hain't but bob tanner did who told you": [65535, 0], "hain't but bob tanner did who told you so": [65535, 0], "but bob tanner did who told you so why": [65535, 0], "bob tanner did who told you so why he": [65535, 0], "tanner did who told you so why he told": [65535, 0], "did who told you so why he told jeff": [65535, 0], "who told you so why he told jeff thatcher": [65535, 0], "told you so why he told jeff thatcher and": [65535, 0], "you so why he told jeff thatcher and jeff": [65535, 0], "so why he told jeff thatcher and jeff told": [65535, 0], "why he told jeff thatcher and jeff told johnny": [65535, 0], "he told jeff thatcher and jeff told johnny baker": [65535, 0], "told jeff thatcher and jeff told johnny baker and": [65535, 0], "jeff thatcher and jeff told johnny baker and johnny": [65535, 0], "thatcher and jeff told johnny baker and johnny told": [65535, 0], "and jeff told johnny baker and johnny told jim": [65535, 0], "jeff told johnny baker and johnny told jim hollis": [65535, 0], "told johnny baker and johnny told jim hollis and": [65535, 0], "johnny baker and johnny told jim hollis and jim": [65535, 0], "baker and johnny told jim hollis and jim told": [65535, 0], "and johnny told jim hollis and jim told ben": [65535, 0], "johnny told jim hollis and jim told ben rogers": [65535, 0], "told jim hollis and jim told ben rogers and": [65535, 0], "jim hollis and jim told ben rogers and ben": [65535, 0], "hollis and jim told ben rogers and ben told": [65535, 0], "and jim told ben rogers and ben told a": [65535, 0], "jim told ben rogers and ben told a nigger": [65535, 0], "told ben rogers and ben told a nigger and": [65535, 0], "ben rogers and ben told a nigger and the": [65535, 0], "rogers and ben told a nigger and the nigger": [65535, 0], "and ben told a nigger and the nigger told": [65535, 0], "ben told a nigger and the nigger told me": [65535, 0], "told a nigger and the nigger told me there": [65535, 0], "a nigger and the nigger told me there now": [65535, 0], "nigger and the nigger told me there now well": [65535, 0], "and the nigger told me there now well what": [65535, 0], "the nigger told me there now well what of": [65535, 0], "nigger told me there now well what of it": [65535, 0], "told me there now well what of it they'll": [65535, 0], "me there now well what of it they'll all": [65535, 0], "there now well what of it they'll all lie": [65535, 0], "now well what of it they'll all lie leastways": [65535, 0], "well what of it they'll all lie leastways all": [65535, 0], "what of it they'll all lie leastways all but": [65535, 0], "of it they'll all lie leastways all but the": [65535, 0], "it they'll all lie leastways all but the nigger": [65535, 0], "they'll all lie leastways all but the nigger i": [65535, 0], "all lie leastways all but the nigger i don't": [65535, 0], "lie leastways all but the nigger i don't know": [65535, 0], "leastways all but the nigger i don't know him": [65535, 0], "all but the nigger i don't know him but": [65535, 0], "but the nigger i don't know him but i": [65535, 0], "the nigger i don't know him but i never": [65535, 0], "nigger i don't know him but i never see": [65535, 0], "i don't know him but i never see a": [65535, 0], "don't know him but i never see a nigger": [65535, 0], "know him but i never see a nigger that": [65535, 0], "him but i never see a nigger that wouldn't": [65535, 0], "but i never see a nigger that wouldn't lie": [65535, 0], "i never see a nigger that wouldn't lie shucks": [65535, 0], "never see a nigger that wouldn't lie shucks now": [65535, 0], "see a nigger that wouldn't lie shucks now you": [65535, 0], "a nigger that wouldn't lie shucks now you tell": [65535, 0], "nigger that wouldn't lie shucks now you tell me": [65535, 0], "that wouldn't lie shucks now you tell me how": [65535, 0], "wouldn't lie shucks now you tell me how bob": [65535, 0], "lie shucks now you tell me how bob tanner": [65535, 0], "shucks now you tell me how bob tanner done": [65535, 0], "now you tell me how bob tanner done it": [65535, 0], "you tell me how bob tanner done it huck": [65535, 0], "tell me how bob tanner done it huck why": [65535, 0], "me how bob tanner done it huck why he": [65535, 0], "how bob tanner done it huck why he took": [65535, 0], "bob tanner done it huck why he took and": [65535, 0], "tanner done it huck why he took and dipped": [65535, 0], "done it huck why he took and dipped his": [65535, 0], "it huck why he took and dipped his hand": [65535, 0], "huck why he took and dipped his hand in": [65535, 0], "why he took and dipped his hand in a": [65535, 0], "he took and dipped his hand in a rotten": [65535, 0], "took and dipped his hand in a rotten stump": [65535, 0], "and dipped his hand in a rotten stump where": [65535, 0], "dipped his hand in a rotten stump where the": [65535, 0], "his hand in a rotten stump where the rain": [65535, 0], "hand in a rotten stump where the rain water": [65535, 0], "in a rotten stump where the rain water was": [65535, 0], "a rotten stump where the rain water was in": [65535, 0], "rotten stump where the rain water was in the": [65535, 0], "stump where the rain water was in the daytime": [65535, 0], "where the rain water was in the daytime certainly": [65535, 0], "the rain water was in the daytime certainly with": [65535, 0], "rain water was in the daytime certainly with his": [65535, 0], "water was in the daytime certainly with his face": [65535, 0], "was in the daytime certainly with his face to": [65535, 0], "in the daytime certainly with his face to the": [65535, 0], "the daytime certainly with his face to the stump": [65535, 0], "daytime certainly with his face to the stump yes": [65535, 0], "certainly with his face to the stump yes least": [65535, 0], "with his face to the stump yes least i": [65535, 0], "his face to the stump yes least i reckon": [65535, 0], "face to the stump yes least i reckon so": [65535, 0], "to the stump yes least i reckon so did": [65535, 0], "the stump yes least i reckon so did he": [65535, 0], "stump yes least i reckon so did he say": [65535, 0], "yes least i reckon so did he say anything": [65535, 0], "least i reckon so did he say anything i": [65535, 0], "i reckon so did he say anything i don't": [65535, 0], "reckon so did he say anything i don't reckon": [65535, 0], "so did he say anything i don't reckon he": [65535, 0], "did he say anything i don't reckon he did": [65535, 0], "he say anything i don't reckon he did i": [65535, 0], "say anything i don't reckon he did i don't": [65535, 0], "anything i don't reckon he did i don't know": [65535, 0], "i don't reckon he did i don't know aha": [65535, 0], "don't reckon he did i don't know aha talk": [65535, 0], "reckon he did i don't know aha talk about": [65535, 0], "he did i don't know aha talk about trying": [65535, 0], "did i don't know aha talk about trying to": [65535, 0], "i don't know aha talk about trying to cure": [65535, 0], "don't know aha talk about trying to cure warts": [65535, 0], "know aha talk about trying to cure warts with": [65535, 0], "aha talk about trying to cure warts with spunk": [65535, 0], "talk about trying to cure warts with spunk water": [65535, 0], "about trying to cure warts with spunk water such": [65535, 0], "trying to cure warts with spunk water such a": [65535, 0], "to cure warts with spunk water such a blame": [65535, 0], "cure warts with spunk water such a blame fool": [65535, 0], "warts with spunk water such a blame fool way": [65535, 0], "with spunk water such a blame fool way as": [65535, 0], "spunk water such a blame fool way as that": [65535, 0], "water such a blame fool way as that why": [65535, 0], "such a blame fool way as that why that": [65535, 0], "a blame fool way as that why that ain't": [65535, 0], "blame fool way as that why that ain't a": [65535, 0], "fool way as that why that ain't a going": [65535, 0], "way as that why that ain't a going to": [65535, 0], "as that why that ain't a going to do": [65535, 0], "that why that ain't a going to do any": [65535, 0], "why that ain't a going to do any good": [65535, 0], "that ain't a going to do any good you": [65535, 0], "ain't a going to do any good you got": [65535, 0], "a going to do any good you got to": [65535, 0], "going to do any good you got to go": [65535, 0], "to do any good you got to go all": [65535, 0], "do any good you got to go all by": [65535, 0], "any good you got to go all by yourself": [65535, 0], "good you got to go all by yourself to": [65535, 0], "you got to go all by yourself to the": [65535, 0], "got to go all by yourself to the middle": [65535, 0], "to go all by yourself to the middle of": [65535, 0], "go all by yourself to the middle of the": [65535, 0], "all by yourself to the middle of the woods": [65535, 0], "by yourself to the middle of the woods where": [65535, 0], "yourself to the middle of the woods where you": [65535, 0], "to the middle of the woods where you know": [65535, 0], "the middle of the woods where you know there's": [65535, 0], "middle of the woods where you know there's a": [65535, 0], "of the woods where you know there's a spunk": [65535, 0], "the woods where you know there's a spunk water": [65535, 0], "woods where you know there's a spunk water stump": [65535, 0], "where you know there's a spunk water stump and": [65535, 0], "you know there's a spunk water stump and just": [65535, 0], "know there's a spunk water stump and just as": [65535, 0], "there's a spunk water stump and just as it's": [65535, 0], "a spunk water stump and just as it's midnight": [65535, 0], "spunk water stump and just as it's midnight you": [65535, 0], "water stump and just as it's midnight you back": [65535, 0], "stump and just as it's midnight you back up": [65535, 0], "and just as it's midnight you back up against": [65535, 0], "just as it's midnight you back up against the": [65535, 0], "as it's midnight you back up against the stump": [65535, 0], "it's midnight you back up against the stump and": [65535, 0], "midnight you back up against the stump and jam": [65535, 0], "you back up against the stump and jam your": [65535, 0], "back up against the stump and jam your hand": [65535, 0], "up against the stump and jam your hand in": [65535, 0], "against the stump and jam your hand in and": [65535, 0], "the stump and jam your hand in and say": [65535, 0], "stump and jam your hand in and say 'barley": [65535, 0], "and jam your hand in and say 'barley corn": [65535, 0], "jam your hand in and say 'barley corn barley": [65535, 0], "your hand in and say 'barley corn barley corn": [65535, 0], "hand in and say 'barley corn barley corn injun": [65535, 0], "in and say 'barley corn barley corn injun meal": [65535, 0], "and say 'barley corn barley corn injun meal shorts": [65535, 0], "say 'barley corn barley corn injun meal shorts spunk": [65535, 0], "'barley corn barley corn injun meal shorts spunk water": [65535, 0], "corn barley corn injun meal shorts spunk water spunk": [65535, 0], "barley corn injun meal shorts spunk water spunk water": [65535, 0], "corn injun meal shorts spunk water spunk water swaller": [65535, 0], "injun meal shorts spunk water spunk water swaller these": [65535, 0], "meal shorts spunk water spunk water swaller these warts": [65535, 0], "shorts spunk water spunk water swaller these warts '": [65535, 0], "spunk water spunk water swaller these warts ' and": [65535, 0], "water spunk water swaller these warts ' and then": [65535, 0], "spunk water swaller these warts ' and then walk": [65535, 0], "water swaller these warts ' and then walk away": [65535, 0], "swaller these warts ' and then walk away quick": [65535, 0], "these warts ' and then walk away quick eleven": [65535, 0], "warts ' and then walk away quick eleven steps": [65535, 0], "' and then walk away quick eleven steps with": [65535, 0], "and then walk away quick eleven steps with your": [65535, 0], "then walk away quick eleven steps with your eyes": [65535, 0], "walk away quick eleven steps with your eyes shut": [65535, 0], "away quick eleven steps with your eyes shut and": [65535, 0], "quick eleven steps with your eyes shut and then": [65535, 0], "eleven steps with your eyes shut and then turn": [65535, 0], "steps with your eyes shut and then turn around": [65535, 0], "with your eyes shut and then turn around three": [65535, 0], "your eyes shut and then turn around three times": [65535, 0], "eyes shut and then turn around three times and": [65535, 0], "shut and then turn around three times and walk": [65535, 0], "and then turn around three times and walk home": [65535, 0], "then turn around three times and walk home without": [65535, 0], "turn around three times and walk home without speaking": [65535, 0], "around three times and walk home without speaking to": [65535, 0], "three times and walk home without speaking to anybody": [65535, 0], "times and walk home without speaking to anybody because": [65535, 0], "and walk home without speaking to anybody because if": [65535, 0], "walk home without speaking to anybody because if you": [65535, 0], "home without speaking to anybody because if you speak": [65535, 0], "without speaking to anybody because if you speak the": [65535, 0], "speaking to anybody because if you speak the charm's": [65535, 0], "to anybody because if you speak the charm's busted": [65535, 0], "anybody because if you speak the charm's busted well": [65535, 0], "because if you speak the charm's busted well that": [65535, 0], "if you speak the charm's busted well that sounds": [65535, 0], "you speak the charm's busted well that sounds like": [65535, 0], "speak the charm's busted well that sounds like a": [65535, 0], "the charm's busted well that sounds like a good": [65535, 0], "charm's busted well that sounds like a good way": [65535, 0], "busted well that sounds like a good way but": [65535, 0], "well that sounds like a good way but that": [65535, 0], "that sounds like a good way but that ain't": [65535, 0], "sounds like a good way but that ain't the": [65535, 0], "like a good way but that ain't the way": [65535, 0], "a good way but that ain't the way bob": [65535, 0], "good way but that ain't the way bob tanner": [65535, 0], "way but that ain't the way bob tanner done": [65535, 0], "but that ain't the way bob tanner done no": [65535, 0], "that ain't the way bob tanner done no sir": [65535, 0], "ain't the way bob tanner done no sir you": [65535, 0], "the way bob tanner done no sir you can": [65535, 0], "way bob tanner done no sir you can bet": [65535, 0], "bob tanner done no sir you can bet he": [65535, 0], "tanner done no sir you can bet he didn't": [65535, 0], "done no sir you can bet he didn't becuz": [65535, 0], "no sir you can bet he didn't becuz he's": [65535, 0], "sir you can bet he didn't becuz he's the": [65535, 0], "you can bet he didn't becuz he's the wartiest": [65535, 0], "can bet he didn't becuz he's the wartiest boy": [65535, 0], "bet he didn't becuz he's the wartiest boy in": [65535, 0], "he didn't becuz he's the wartiest boy in this": [65535, 0], "didn't becuz he's the wartiest boy in this town": [65535, 0], "becuz he's the wartiest boy in this town and": [65535, 0], "he's the wartiest boy in this town and he": [65535, 0], "the wartiest boy in this town and he wouldn't": [65535, 0], "wartiest boy in this town and he wouldn't have": [65535, 0], "boy in this town and he wouldn't have a": [65535, 0], "in this town and he wouldn't have a wart": [65535, 0], "this town and he wouldn't have a wart on": [65535, 0], "town and he wouldn't have a wart on him": [65535, 0], "and he wouldn't have a wart on him if": [65535, 0], "he wouldn't have a wart on him if he'd": [65535, 0], "wouldn't have a wart on him if he'd knowed": [65535, 0], "have a wart on him if he'd knowed how": [65535, 0], "a wart on him if he'd knowed how to": [65535, 0], "wart on him if he'd knowed how to work": [65535, 0], "on him if he'd knowed how to work spunk": [65535, 0], "him if he'd knowed how to work spunk water": [65535, 0], "if he'd knowed how to work spunk water i've": [65535, 0], "he'd knowed how to work spunk water i've took": [65535, 0], "knowed how to work spunk water i've took off": [65535, 0], "how to work spunk water i've took off thousands": [65535, 0], "to work spunk water i've took off thousands of": [65535, 0], "work spunk water i've took off thousands of warts": [65535, 0], "spunk water i've took off thousands of warts off": [65535, 0], "water i've took off thousands of warts off of": [65535, 0], "i've took off thousands of warts off of my": [65535, 0], "took off thousands of warts off of my hands": [65535, 0], "off thousands of warts off of my hands that": [65535, 0], "thousands of warts off of my hands that way": [65535, 0], "of warts off of my hands that way huck": [65535, 0], "warts off of my hands that way huck i": [65535, 0], "off of my hands that way huck i play": [65535, 0], "of my hands that way huck i play with": [65535, 0], "my hands that way huck i play with frogs": [65535, 0], "hands that way huck i play with frogs so": [65535, 0], "that way huck i play with frogs so much": [65535, 0], "way huck i play with frogs so much that": [65535, 0], "huck i play with frogs so much that i've": [65535, 0], "i play with frogs so much that i've always": [65535, 0], "play with frogs so much that i've always got": [65535, 0], "with frogs so much that i've always got considerable": [65535, 0], "frogs so much that i've always got considerable many": [65535, 0], "so much that i've always got considerable many warts": [65535, 0], "much that i've always got considerable many warts sometimes": [65535, 0], "that i've always got considerable many warts sometimes i": [65535, 0], "i've always got considerable many warts sometimes i take": [65535, 0], "always got considerable many warts sometimes i take 'em": [65535, 0], "got considerable many warts sometimes i take 'em off": [65535, 0], "considerable many warts sometimes i take 'em off with": [65535, 0], "many warts sometimes i take 'em off with a": [65535, 0], "warts sometimes i take 'em off with a bean": [65535, 0], "sometimes i take 'em off with a bean yes": [65535, 0], "i take 'em off with a bean yes bean's": [65535, 0], "take 'em off with a bean yes bean's good": [65535, 0], "'em off with a bean yes bean's good i've": [65535, 0], "off with a bean yes bean's good i've done": [65535, 0], "with a bean yes bean's good i've done that": [65535, 0], "a bean yes bean's good i've done that have": [65535, 0], "bean yes bean's good i've done that have you": [65535, 0], "yes bean's good i've done that have you what's": [65535, 0], "bean's good i've done that have you what's your": [65535, 0], "good i've done that have you what's your way": [65535, 0], "i've done that have you what's your way you": [65535, 0], "done that have you what's your way you take": [65535, 0], "that have you what's your way you take and": [65535, 0], "have you what's your way you take and split": [65535, 0], "you what's your way you take and split the": [65535, 0], "what's your way you take and split the bean": [65535, 0], "your way you take and split the bean and": [65535, 0], "way you take and split the bean and cut": [65535, 0], "you take and split the bean and cut the": [65535, 0], "take and split the bean and cut the wart": [65535, 0], "and split the bean and cut the wart so": [65535, 0], "split the bean and cut the wart so as": [65535, 0], "the bean and cut the wart so as to": [65535, 0], "bean and cut the wart so as to get": [65535, 0], "and cut the wart so as to get some": [65535, 0], "cut the wart so as to get some blood": [65535, 0], "the wart so as to get some blood and": [65535, 0], "wart so as to get some blood and then": [65535, 0], "so as to get some blood and then you": [65535, 0], "as to get some blood and then you put": [65535, 0], "to get some blood and then you put the": [65535, 0], "get some blood and then you put the blood": [65535, 0], "some blood and then you put the blood on": [65535, 0], "blood and then you put the blood on one": [65535, 0], "and then you put the blood on one piece": [65535, 0], "then you put the blood on one piece of": [65535, 0], "you put the blood on one piece of the": [65535, 0], "put the blood on one piece of the bean": [65535, 0], "the blood on one piece of the bean and": [65535, 0], "blood on one piece of the bean and take": [65535, 0], "on one piece of the bean and take and": [65535, 0], "one piece of the bean and take and dig": [65535, 0], "piece of the bean and take and dig a": [65535, 0], "of the bean and take and dig a hole": [65535, 0], "the bean and take and dig a hole and": [65535, 0], "bean and take and dig a hole and bury": [65535, 0], "and take and dig a hole and bury it": [65535, 0], "take and dig a hole and bury it 'bout": [65535, 0], "and dig a hole and bury it 'bout midnight": [65535, 0], "dig a hole and bury it 'bout midnight at": [65535, 0], "a hole and bury it 'bout midnight at the": [65535, 0], "hole and bury it 'bout midnight at the crossroads": [65535, 0], "and bury it 'bout midnight at the crossroads in": [65535, 0], "bury it 'bout midnight at the crossroads in the": [65535, 0], "it 'bout midnight at the crossroads in the dark": [65535, 0], "'bout midnight at the crossroads in the dark of": [65535, 0], "midnight at the crossroads in the dark of the": [65535, 0], "at the crossroads in the dark of the moon": [65535, 0], "the crossroads in the dark of the moon and": [65535, 0], "crossroads in the dark of the moon and then": [65535, 0], "in the dark of the moon and then you": [65535, 0], "the dark of the moon and then you burn": [65535, 0], "dark of the moon and then you burn up": [65535, 0], "of the moon and then you burn up the": [65535, 0], "the moon and then you burn up the rest": [65535, 0], "moon and then you burn up the rest of": [65535, 0], "and then you burn up the rest of the": [65535, 0], "then you burn up the rest of the bean": [65535, 0], "you burn up the rest of the bean you": [65535, 0], "burn up the rest of the bean you see": [65535, 0], "up the rest of the bean you see that": [65535, 0], "the rest of the bean you see that piece": [65535, 0], "rest of the bean you see that piece that's": [65535, 0], "of the bean you see that piece that's got": [65535, 0], "the bean you see that piece that's got the": [65535, 0], "bean you see that piece that's got the blood": [65535, 0], "you see that piece that's got the blood on": [65535, 0], "see that piece that's got the blood on it": [65535, 0], "that piece that's got the blood on it will": [65535, 0], "piece that's got the blood on it will keep": [65535, 0], "that's got the blood on it will keep drawing": [65535, 0], "got the blood on it will keep drawing and": [65535, 0], "the blood on it will keep drawing and drawing": [65535, 0], "blood on it will keep drawing and drawing trying": [65535, 0], "on it will keep drawing and drawing trying to": [65535, 0], "it will keep drawing and drawing trying to fetch": [65535, 0], "will keep drawing and drawing trying to fetch the": [65535, 0], "keep drawing and drawing trying to fetch the other": [65535, 0], "drawing and drawing trying to fetch the other piece": [65535, 0], "and drawing trying to fetch the other piece to": [65535, 0], "drawing trying to fetch the other piece to it": [65535, 0], "trying to fetch the other piece to it and": [65535, 0], "to fetch the other piece to it and so": [65535, 0], "fetch the other piece to it and so that": [65535, 0], "the other piece to it and so that helps": [65535, 0], "other piece to it and so that helps the": [65535, 0], "piece to it and so that helps the blood": [65535, 0], "to it and so that helps the blood to": [65535, 0], "it and so that helps the blood to draw": [65535, 0], "and so that helps the blood to draw the": [65535, 0], "so that helps the blood to draw the wart": [65535, 0], "that helps the blood to draw the wart and": [65535, 0], "helps the blood to draw the wart and pretty": [65535, 0], "the blood to draw the wart and pretty soon": [65535, 0], "blood to draw the wart and pretty soon off": [65535, 0], "to draw the wart and pretty soon off she": [65535, 0], "draw the wart and pretty soon off she comes": [65535, 0], "the wart and pretty soon off she comes yes": [65535, 0], "wart and pretty soon off she comes yes that's": [65535, 0], "and pretty soon off she comes yes that's it": [65535, 0], "pretty soon off she comes yes that's it huck": [65535, 0], "soon off she comes yes that's it huck that's": [65535, 0], "off she comes yes that's it huck that's it": [65535, 0], "she comes yes that's it huck that's it though": [65535, 0], "comes yes that's it huck that's it though when": [65535, 0], "yes that's it huck that's it though when you're": [65535, 0], "that's it huck that's it though when you're burying": [65535, 0], "it huck that's it though when you're burying it": [65535, 0], "huck that's it though when you're burying it if": [65535, 0], "that's it though when you're burying it if you": [65535, 0], "it though when you're burying it if you say": [65535, 0], "though when you're burying it if you say 'down": [65535, 0], "when you're burying it if you say 'down bean": [65535, 0], "you're burying it if you say 'down bean off": [65535, 0], "burying it if you say 'down bean off wart": [65535, 0], "it if you say 'down bean off wart come": [65535, 0], "if you say 'down bean off wart come no": [65535, 0], "you say 'down bean off wart come no more": [65535, 0], "say 'down bean off wart come no more to": [65535, 0], "'down bean off wart come no more to bother": [65535, 0], "bean off wart come no more to bother me": [65535, 0], "off wart come no more to bother me '": [65535, 0], "wart come no more to bother me ' it's": [65535, 0], "come no more to bother me ' it's better": [65535, 0], "no more to bother me ' it's better that's": [65535, 0], "more to bother me ' it's better that's the": [65535, 0], "to bother me ' it's better that's the way": [65535, 0], "bother me ' it's better that's the way joe": [65535, 0], "me ' it's better that's the way joe harper": [65535, 0], "' it's better that's the way joe harper does": [65535, 0], "it's better that's the way joe harper does and": [65535, 0], "better that's the way joe harper does and he's": [65535, 0], "that's the way joe harper does and he's been": [65535, 0], "the way joe harper does and he's been nearly": [65535, 0], "way joe harper does and he's been nearly to": [65535, 0], "joe harper does and he's been nearly to coonville": [65535, 0], "harper does and he's been nearly to coonville and": [65535, 0], "does and he's been nearly to coonville and most": [65535, 0], "and he's been nearly to coonville and most everywheres": [65535, 0], "he's been nearly to coonville and most everywheres but": [65535, 0], "been nearly to coonville and most everywheres but say": [65535, 0], "nearly to coonville and most everywheres but say how": [65535, 0], "to coonville and most everywheres but say how do": [65535, 0], "coonville and most everywheres but say how do you": [65535, 0], "and most everywheres but say how do you cure": [65535, 0], "most everywheres but say how do you cure 'em": [65535, 0], "everywheres but say how do you cure 'em with": [65535, 0], "but say how do you cure 'em with dead": [65535, 0], "say how do you cure 'em with dead cats": [65535, 0], "how do you cure 'em with dead cats why": [65535, 0], "do you cure 'em with dead cats why you": [65535, 0], "you cure 'em with dead cats why you take": [65535, 0], "cure 'em with dead cats why you take your": [65535, 0], "'em with dead cats why you take your cat": [65535, 0], "with dead cats why you take your cat and": [65535, 0], "dead cats why you take your cat and go": [65535, 0], "cats why you take your cat and go and": [65535, 0], "why you take your cat and go and get": [65535, 0], "you take your cat and go and get in": [65535, 0], "take your cat and go and get in the": [65535, 0], "your cat and go and get in the graveyard": [65535, 0], "cat and go and get in the graveyard 'long": [65535, 0], "and go and get in the graveyard 'long about": [65535, 0], "go and get in the graveyard 'long about midnight": [65535, 0], "and get in the graveyard 'long about midnight when": [65535, 0], "get in the graveyard 'long about midnight when somebody": [65535, 0], "in the graveyard 'long about midnight when somebody that": [65535, 0], "the graveyard 'long about midnight when somebody that was": [65535, 0], "graveyard 'long about midnight when somebody that was wicked": [65535, 0], "'long about midnight when somebody that was wicked has": [65535, 0], "about midnight when somebody that was wicked has been": [65535, 0], "midnight when somebody that was wicked has been buried": [65535, 0], "when somebody that was wicked has been buried and": [65535, 0], "somebody that was wicked has been buried and when": [65535, 0], "that was wicked has been buried and when it's": [65535, 0], "was wicked has been buried and when it's midnight": [65535, 0], "wicked has been buried and when it's midnight a": [65535, 0], "has been buried and when it's midnight a devil": [65535, 0], "been buried and when it's midnight a devil will": [65535, 0], "buried and when it's midnight a devil will come": [65535, 0], "and when it's midnight a devil will come or": [65535, 0], "when it's midnight a devil will come or maybe": [65535, 0], "it's midnight a devil will come or maybe two": [65535, 0], "midnight a devil will come or maybe two or": [65535, 0], "a devil will come or maybe two or three": [65535, 0], "devil will come or maybe two or three but": [65535, 0], "will come or maybe two or three but you": [65535, 0], "come or maybe two or three but you can't": [65535, 0], "or maybe two or three but you can't see": [65535, 0], "maybe two or three but you can't see 'em": [65535, 0], "two or three but you can't see 'em you": [65535, 0], "or three but you can't see 'em you can": [65535, 0], "three but you can't see 'em you can only": [65535, 0], "but you can't see 'em you can only hear": [65535, 0], "you can't see 'em you can only hear something": [65535, 0], "can't see 'em you can only hear something like": [65535, 0], "see 'em you can only hear something like the": [65535, 0], "'em you can only hear something like the wind": [65535, 0], "you can only hear something like the wind or": [65535, 0], "can only hear something like the wind or maybe": [65535, 0], "only hear something like the wind or maybe hear": [65535, 0], "hear something like the wind or maybe hear 'em": [65535, 0], "something like the wind or maybe hear 'em talk": [65535, 0], "like the wind or maybe hear 'em talk and": [65535, 0], "the wind or maybe hear 'em talk and when": [65535, 0], "wind or maybe hear 'em talk and when they're": [65535, 0], "or maybe hear 'em talk and when they're taking": [65535, 0], "maybe hear 'em talk and when they're taking that": [65535, 0], "hear 'em talk and when they're taking that feller": [65535, 0], "'em talk and when they're taking that feller away": [65535, 0], "talk and when they're taking that feller away you": [65535, 0], "and when they're taking that feller away you heave": [65535, 0], "when they're taking that feller away you heave your": [65535, 0], "they're taking that feller away you heave your cat": [65535, 0], "taking that feller away you heave your cat after": [65535, 0], "that feller away you heave your cat after 'em": [65535, 0], "feller away you heave your cat after 'em and": [65535, 0], "away you heave your cat after 'em and say": [65535, 0], "you heave your cat after 'em and say 'devil": [65535, 0], "heave your cat after 'em and say 'devil follow": [65535, 0], "your cat after 'em and say 'devil follow corpse": [65535, 0], "cat after 'em and say 'devil follow corpse cat": [65535, 0], "after 'em and say 'devil follow corpse cat follow": [65535, 0], "'em and say 'devil follow corpse cat follow devil": [65535, 0], "and say 'devil follow corpse cat follow devil warts": [65535, 0], "say 'devil follow corpse cat follow devil warts follow": [65535, 0], "'devil follow corpse cat follow devil warts follow cat": [65535, 0], "follow corpse cat follow devil warts follow cat i'm": [65535, 0], "corpse cat follow devil warts follow cat i'm done": [65535, 0], "cat follow devil warts follow cat i'm done with": [65535, 0], "follow devil warts follow cat i'm done with ye": [65535, 0], "devil warts follow cat i'm done with ye '": [65535, 0], "warts follow cat i'm done with ye ' that'll": [65535, 0], "follow cat i'm done with ye ' that'll fetch": [65535, 0], "cat i'm done with ye ' that'll fetch any": [65535, 0], "i'm done with ye ' that'll fetch any wart": [65535, 0], "done with ye ' that'll fetch any wart sounds": [65535, 0], "with ye ' that'll fetch any wart sounds right": [65535, 0], "ye ' that'll fetch any wart sounds right d'you": [65535, 0], "' that'll fetch any wart sounds right d'you ever": [65535, 0], "that'll fetch any wart sounds right d'you ever try": [65535, 0], "fetch any wart sounds right d'you ever try it": [65535, 0], "any wart sounds right d'you ever try it huck": [65535, 0], "wart sounds right d'you ever try it huck no": [65535, 0], "sounds right d'you ever try it huck no but": [65535, 0], "right d'you ever try it huck no but old": [65535, 0], "d'you ever try it huck no but old mother": [65535, 0], "ever try it huck no but old mother hopkins": [65535, 0], "try it huck no but old mother hopkins told": [65535, 0], "it huck no but old mother hopkins told me": [65535, 0], "huck no but old mother hopkins told me well": [65535, 0], "no but old mother hopkins told me well i": [65535, 0], "but old mother hopkins told me well i reckon": [65535, 0], "old mother hopkins told me well i reckon it's": [65535, 0], "mother hopkins told me well i reckon it's so": [65535, 0], "hopkins told me well i reckon it's so then": [65535, 0], "told me well i reckon it's so then becuz": [65535, 0], "me well i reckon it's so then becuz they": [65535, 0], "well i reckon it's so then becuz they say": [65535, 0], "i reckon it's so then becuz they say she's": [65535, 0], "reckon it's so then becuz they say she's a": [65535, 0], "it's so then becuz they say she's a witch": [65535, 0], "so then becuz they say she's a witch say": [65535, 0], "then becuz they say she's a witch say why": [65535, 0], "becuz they say she's a witch say why tom": [65535, 0], "they say she's a witch say why tom i": [65535, 0], "say she's a witch say why tom i know": [65535, 0], "she's a witch say why tom i know she": [65535, 0], "a witch say why tom i know she is": [65535, 0], "witch say why tom i know she is she": [65535, 0], "say why tom i know she is she witched": [65535, 0], "why tom i know she is she witched pap": [65535, 0], "tom i know she is she witched pap pap": [65535, 0], "i know she is she witched pap pap says": [65535, 0], "know she is she witched pap pap says so": [65535, 0], "she is she witched pap pap says so his": [65535, 0], "is she witched pap pap says so his own": [65535, 0], "she witched pap pap says so his own self": [65535, 0], "witched pap pap says so his own self he": [65535, 0], "pap pap says so his own self he come": [65535, 0], "pap says so his own self he come along": [65535, 0], "says so his own self he come along one": [65535, 0], "so his own self he come along one day": [65535, 0], "his own self he come along one day and": [65535, 0], "own self he come along one day and he": [65535, 0], "self he come along one day and he see": [65535, 0], "he come along one day and he see she": [65535, 0], "come along one day and he see she was": [65535, 0], "along one day and he see she was a": [65535, 0], "one day and he see she was a witching": [65535, 0], "day and he see she was a witching him": [65535, 0], "and he see she was a witching him so": [65535, 0], "he see she was a witching him so he": [65535, 0], "see she was a witching him so he took": [65535, 0], "she was a witching him so he took up": [65535, 0], "was a witching him so he took up a": [65535, 0], "a witching him so he took up a rock": [65535, 0], "witching him so he took up a rock and": [65535, 0], "him so he took up a rock and if": [65535, 0], "so he took up a rock and if she": [65535, 0], "he took up a rock and if she hadn't": [65535, 0], "took up a rock and if she hadn't dodged": [65535, 0], "up a rock and if she hadn't dodged he'd": [65535, 0], "a rock and if she hadn't dodged he'd a": [65535, 0], "rock and if she hadn't dodged he'd a got": [65535, 0], "and if she hadn't dodged he'd a got her": [65535, 0], "if she hadn't dodged he'd a got her well": [65535, 0], "she hadn't dodged he'd a got her well that": [65535, 0], "hadn't dodged he'd a got her well that very": [65535, 0], "dodged he'd a got her well that very night": [65535, 0], "he'd a got her well that very night he": [65535, 0], "a got her well that very night he rolled": [65535, 0], "got her well that very night he rolled off'n": [65535, 0], "her well that very night he rolled off'n a": [65535, 0], "well that very night he rolled off'n a shed": [65535, 0], "that very night he rolled off'n a shed wher'": [65535, 0], "very night he rolled off'n a shed wher' he": [65535, 0], "night he rolled off'n a shed wher' he was": [65535, 0], "he rolled off'n a shed wher' he was a": [65535, 0], "rolled off'n a shed wher' he was a layin": [65535, 0], "off'n a shed wher' he was a layin drunk": [65535, 0], "a shed wher' he was a layin drunk and": [65535, 0], "shed wher' he was a layin drunk and broke": [65535, 0], "wher' he was a layin drunk and broke his": [65535, 0], "he was a layin drunk and broke his arm": [65535, 0], "was a layin drunk and broke his arm why": [65535, 0], "a layin drunk and broke his arm why that's": [65535, 0], "layin drunk and broke his arm why that's awful": [65535, 0], "drunk and broke his arm why that's awful how": [65535, 0], "and broke his arm why that's awful how did": [65535, 0], "broke his arm why that's awful how did he": [65535, 0], "his arm why that's awful how did he know": [65535, 0], "arm why that's awful how did he know she": [65535, 0], "why that's awful how did he know she was": [65535, 0], "that's awful how did he know she was a": [65535, 0], "awful how did he know she was a witching": [65535, 0], "how did he know she was a witching him": [65535, 0], "did he know she was a witching him lord": [65535, 0], "he know she was a witching him lord pap": [65535, 0], "know she was a witching him lord pap can": [65535, 0], "she was a witching him lord pap can tell": [65535, 0], "was a witching him lord pap can tell easy": [65535, 0], "a witching him lord pap can tell easy pap": [65535, 0], "witching him lord pap can tell easy pap says": [65535, 0], "him lord pap can tell easy pap says when": [65535, 0], "lord pap can tell easy pap says when they": [65535, 0], "pap can tell easy pap says when they keep": [65535, 0], "can tell easy pap says when they keep looking": [65535, 0], "tell easy pap says when they keep looking at": [65535, 0], "easy pap says when they keep looking at you": [65535, 0], "pap says when they keep looking at you right": [65535, 0], "says when they keep looking at you right stiddy": [65535, 0], "when they keep looking at you right stiddy they're": [65535, 0], "they keep looking at you right stiddy they're a": [65535, 0], "keep looking at you right stiddy they're a witching": [65535, 0], "looking at you right stiddy they're a witching you": [65535, 0], "at you right stiddy they're a witching you specially": [65535, 0], "you right stiddy they're a witching you specially if": [65535, 0], "right stiddy they're a witching you specially if they": [65535, 0], "stiddy they're a witching you specially if they mumble": [65535, 0], "they're a witching you specially if they mumble becuz": [65535, 0], "a witching you specially if they mumble becuz when": [65535, 0], "witching you specially if they mumble becuz when they": [65535, 0], "you specially if they mumble becuz when they mumble": [65535, 0], "specially if they mumble becuz when they mumble they're": [65535, 0], "if they mumble becuz when they mumble they're saying": [65535, 0], "they mumble becuz when they mumble they're saying the": [65535, 0], "mumble becuz when they mumble they're saying the lord's": [65535, 0], "becuz when they mumble they're saying the lord's prayer": [65535, 0], "when they mumble they're saying the lord's prayer backards": [65535, 0], "they mumble they're saying the lord's prayer backards say": [65535, 0], "mumble they're saying the lord's prayer backards say hucky": [65535, 0], "they're saying the lord's prayer backards say hucky when": [65535, 0], "saying the lord's prayer backards say hucky when you": [65535, 0], "the lord's prayer backards say hucky when you going": [65535, 0], "lord's prayer backards say hucky when you going to": [65535, 0], "prayer backards say hucky when you going to try": [65535, 0], "backards say hucky when you going to try the": [65535, 0], "say hucky when you going to try the cat": [65535, 0], "hucky when you going to try the cat to": [65535, 0], "when you going to try the cat to night": [65535, 0], "you going to try the cat to night i": [65535, 0], "going to try the cat to night i reckon": [65535, 0], "to try the cat to night i reckon they'll": [65535, 0], "try the cat to night i reckon they'll come": [65535, 0], "the cat to night i reckon they'll come after": [65535, 0], "cat to night i reckon they'll come after old": [65535, 0], "to night i reckon they'll come after old hoss": [65535, 0], "night i reckon they'll come after old hoss williams": [65535, 0], "i reckon they'll come after old hoss williams to": [65535, 0], "reckon they'll come after old hoss williams to night": [65535, 0], "they'll come after old hoss williams to night but": [65535, 0], "come after old hoss williams to night but they": [65535, 0], "after old hoss williams to night but they buried": [65535, 0], "old hoss williams to night but they buried him": [65535, 0], "hoss williams to night but they buried him saturday": [65535, 0], "williams to night but they buried him saturday didn't": [65535, 0], "to night but they buried him saturday didn't they": [65535, 0], "night but they buried him saturday didn't they get": [65535, 0], "but they buried him saturday didn't they get him": [65535, 0], "they buried him saturday didn't they get him saturday": [65535, 0], "buried him saturday didn't they get him saturday night": [65535, 0], "him saturday didn't they get him saturday night why": [65535, 0], "saturday didn't they get him saturday night why how": [65535, 0], "didn't they get him saturday night why how you": [65535, 0], "they get him saturday night why how you talk": [65535, 0], "get him saturday night why how you talk how": [65535, 0], "him saturday night why how you talk how could": [65535, 0], "saturday night why how you talk how could their": [65535, 0], "night why how you talk how could their charms": [65535, 0], "why how you talk how could their charms work": [65535, 0], "how you talk how could their charms work till": [65535, 0], "you talk how could their charms work till midnight": [65535, 0], "talk how could their charms work till midnight and": [65535, 0], "how could their charms work till midnight and then": [65535, 0], "could their charms work till midnight and then it's": [65535, 0], "their charms work till midnight and then it's sunday": [65535, 0], "charms work till midnight and then it's sunday devils": [65535, 0], "work till midnight and then it's sunday devils don't": [65535, 0], "till midnight and then it's sunday devils don't slosh": [65535, 0], "midnight and then it's sunday devils don't slosh around": [65535, 0], "and then it's sunday devils don't slosh around much": [65535, 0], "then it's sunday devils don't slosh around much of": [65535, 0], "it's sunday devils don't slosh around much of a": [65535, 0], "sunday devils don't slosh around much of a sunday": [65535, 0], "devils don't slosh around much of a sunday i": [65535, 0], "don't slosh around much of a sunday i don't": [65535, 0], "slosh around much of a sunday i don't reckon": [65535, 0], "around much of a sunday i don't reckon i": [65535, 0], "much of a sunday i don't reckon i never": [65535, 0], "of a sunday i don't reckon i never thought": [65535, 0], "a sunday i don't reckon i never thought of": [65535, 0], "sunday i don't reckon i never thought of that": [65535, 0], "i don't reckon i never thought of that that's": [65535, 0], "don't reckon i never thought of that that's so": [65535, 0], "reckon i never thought of that that's so lemme": [65535, 0], "i never thought of that that's so lemme go": [65535, 0], "never thought of that that's so lemme go with": [65535, 0], "thought of that that's so lemme go with you": [65535, 0], "of that that's so lemme go with you of": [65535, 0], "that that's so lemme go with you of course": [65535, 0], "that's so lemme go with you of course if": [65535, 0], "so lemme go with you of course if you": [65535, 0], "lemme go with you of course if you ain't": [65535, 0], "go with you of course if you ain't afeard": [65535, 0], "with you of course if you ain't afeard afeard": [65535, 0], "you of course if you ain't afeard afeard 'tain't": [65535, 0], "of course if you ain't afeard afeard 'tain't likely": [65535, 0], "course if you ain't afeard afeard 'tain't likely will": [65535, 0], "if you ain't afeard afeard 'tain't likely will you": [65535, 0], "you ain't afeard afeard 'tain't likely will you meow": [65535, 0], "ain't afeard afeard 'tain't likely will you meow yes": [65535, 0], "afeard afeard 'tain't likely will you meow yes and": [65535, 0], "afeard 'tain't likely will you meow yes and you": [65535, 0], "'tain't likely will you meow yes and you meow": [65535, 0], "likely will you meow yes and you meow back": [65535, 0], "will you meow yes and you meow back if": [65535, 0], "you meow yes and you meow back if you": [65535, 0], "meow yes and you meow back if you get": [65535, 0], "yes and you meow back if you get a": [65535, 0], "and you meow back if you get a chance": [65535, 0], "you meow back if you get a chance last": [65535, 0], "meow back if you get a chance last time": [65535, 0], "back if you get a chance last time you": [65535, 0], "if you get a chance last time you kep'": [65535, 0], "you get a chance last time you kep' me": [65535, 0], "get a chance last time you kep' me a": [65535, 0], "a chance last time you kep' me a meowing": [65535, 0], "chance last time you kep' me a meowing around": [65535, 0], "last time you kep' me a meowing around till": [65535, 0], "time you kep' me a meowing around till old": [65535, 0], "you kep' me a meowing around till old hays": [65535, 0], "kep' me a meowing around till old hays went": [65535, 0], "me a meowing around till old hays went to": [65535, 0], "a meowing around till old hays went to throwing": [65535, 0], "meowing around till old hays went to throwing rocks": [65535, 0], "around till old hays went to throwing rocks at": [65535, 0], "till old hays went to throwing rocks at me": [65535, 0], "old hays went to throwing rocks at me and": [65535, 0], "hays went to throwing rocks at me and says": [65535, 0], "went to throwing rocks at me and says 'dern": [65535, 0], "to throwing rocks at me and says 'dern that": [65535, 0], "throwing rocks at me and says 'dern that cat": [65535, 0], "rocks at me and says 'dern that cat '": [65535, 0], "at me and says 'dern that cat ' and": [65535, 0], "me and says 'dern that cat ' and so": [65535, 0], "and says 'dern that cat ' and so i": [65535, 0], "says 'dern that cat ' and so i hove": [65535, 0], "'dern that cat ' and so i hove a": [65535, 0], "that cat ' and so i hove a brick": [65535, 0], "cat ' and so i hove a brick through": [65535, 0], "' and so i hove a brick through his": [65535, 0], "and so i hove a brick through his window": [65535, 0], "so i hove a brick through his window but": [65535, 0], "i hove a brick through his window but don't": [65535, 0], "hove a brick through his window but don't you": [65535, 0], "a brick through his window but don't you tell": [65535, 0], "brick through his window but don't you tell i": [65535, 0], "through his window but don't you tell i won't": [65535, 0], "his window but don't you tell i won't i": [65535, 0], "window but don't you tell i won't i couldn't": [65535, 0], "but don't you tell i won't i couldn't meow": [65535, 0], "don't you tell i won't i couldn't meow that": [65535, 0], "you tell i won't i couldn't meow that night": [65535, 0], "tell i won't i couldn't meow that night becuz": [65535, 0], "i won't i couldn't meow that night becuz auntie": [65535, 0], "won't i couldn't meow that night becuz auntie was": [65535, 0], "i couldn't meow that night becuz auntie was watching": [65535, 0], "couldn't meow that night becuz auntie was watching me": [65535, 0], "meow that night becuz auntie was watching me but": [65535, 0], "that night becuz auntie was watching me but i'll": [65535, 0], "night becuz auntie was watching me but i'll meow": [65535, 0], "becuz auntie was watching me but i'll meow this": [65535, 0], "auntie was watching me but i'll meow this time": [65535, 0], "was watching me but i'll meow this time say": [65535, 0], "watching me but i'll meow this time say what's": [65535, 0], "me but i'll meow this time say what's that": [65535, 0], "but i'll meow this time say what's that nothing": [65535, 0], "i'll meow this time say what's that nothing but": [65535, 0], "meow this time say what's that nothing but a": [65535, 0], "this time say what's that nothing but a tick": [65535, 0], "time say what's that nothing but a tick where'd": [65535, 0], "say what's that nothing but a tick where'd you": [65535, 0], "what's that nothing but a tick where'd you get": [65535, 0], "that nothing but a tick where'd you get him": [65535, 0], "nothing but a tick where'd you get him out": [65535, 0], "but a tick where'd you get him out in": [65535, 0], "a tick where'd you get him out in the": [65535, 0], "tick where'd you get him out in the woods": [65535, 0], "where'd you get him out in the woods what'll": [65535, 0], "you get him out in the woods what'll you": [65535, 0], "get him out in the woods what'll you take": [65535, 0], "him out in the woods what'll you take for": [65535, 0], "out in the woods what'll you take for him": [65535, 0], "in the woods what'll you take for him i": [65535, 0], "the woods what'll you take for him i don't": [65535, 0], "woods what'll you take for him i don't know": [65535, 0], "what'll you take for him i don't know i": [65535, 0], "you take for him i don't know i don't": [65535, 0], "take for him i don't know i don't want": [65535, 0], "for him i don't know i don't want to": [65535, 0], "him i don't know i don't want to sell": [65535, 0], "i don't know i don't want to sell him": [65535, 0], "don't know i don't want to sell him all": [65535, 0], "know i don't want to sell him all right": [65535, 0], "i don't want to sell him all right it's": [65535, 0], "don't want to sell him all right it's a": [65535, 0], "want to sell him all right it's a mighty": [65535, 0], "to sell him all right it's a mighty small": [65535, 0], "sell him all right it's a mighty small tick": [65535, 0], "him all right it's a mighty small tick anyway": [65535, 0], "all right it's a mighty small tick anyway oh": [65535, 0], "right it's a mighty small tick anyway oh anybody": [65535, 0], "it's a mighty small tick anyway oh anybody can": [65535, 0], "a mighty small tick anyway oh anybody can run": [65535, 0], "mighty small tick anyway oh anybody can run a": [65535, 0], "small tick anyway oh anybody can run a tick": [65535, 0], "tick anyway oh anybody can run a tick down": [65535, 0], "anyway oh anybody can run a tick down that": [65535, 0], "oh anybody can run a tick down that don't": [65535, 0], "anybody can run a tick down that don't belong": [65535, 0], "can run a tick down that don't belong to": [65535, 0], "run a tick down that don't belong to them": [65535, 0], "a tick down that don't belong to them i'm": [65535, 0], "tick down that don't belong to them i'm satisfied": [65535, 0], "down that don't belong to them i'm satisfied with": [65535, 0], "that don't belong to them i'm satisfied with it": [65535, 0], "don't belong to them i'm satisfied with it it's": [65535, 0], "belong to them i'm satisfied with it it's a": [65535, 0], "to them i'm satisfied with it it's a good": [65535, 0], "them i'm satisfied with it it's a good enough": [65535, 0], "i'm satisfied with it it's a good enough tick": [65535, 0], "satisfied with it it's a good enough tick for": [65535, 0], "with it it's a good enough tick for me": [65535, 0], "it it's a good enough tick for me sho": [65535, 0], "it's a good enough tick for me sho there's": [65535, 0], "a good enough tick for me sho there's ticks": [65535, 0], "good enough tick for me sho there's ticks a": [65535, 0], "enough tick for me sho there's ticks a plenty": [65535, 0], "tick for me sho there's ticks a plenty i": [65535, 0], "for me sho there's ticks a plenty i could": [65535, 0], "me sho there's ticks a plenty i could have": [65535, 0], "sho there's ticks a plenty i could have a": [65535, 0], "there's ticks a plenty i could have a thousand": [65535, 0], "ticks a plenty i could have a thousand of": [65535, 0], "a plenty i could have a thousand of 'em": [65535, 0], "plenty i could have a thousand of 'em if": [65535, 0], "i could have a thousand of 'em if i": [65535, 0], "could have a thousand of 'em if i wanted": [65535, 0], "have a thousand of 'em if i wanted to": [65535, 0], "a thousand of 'em if i wanted to well": [65535, 0], "thousand of 'em if i wanted to well why": [65535, 0], "of 'em if i wanted to well why don't": [65535, 0], "'em if i wanted to well why don't you": [65535, 0], "if i wanted to well why don't you becuz": [65535, 0], "i wanted to well why don't you becuz you": [65535, 0], "wanted to well why don't you becuz you know": [65535, 0], "to well why don't you becuz you know mighty": [65535, 0], "well why don't you becuz you know mighty well": [65535, 0], "why don't you becuz you know mighty well you": [65535, 0], "don't you becuz you know mighty well you can't": [65535, 0], "you becuz you know mighty well you can't this": [65535, 0], "becuz you know mighty well you can't this is": [65535, 0], "you know mighty well you can't this is a": [65535, 0], "know mighty well you can't this is a pretty": [65535, 0], "mighty well you can't this is a pretty early": [65535, 0], "well you can't this is a pretty early tick": [65535, 0], "you can't this is a pretty early tick i": [65535, 0], "can't this is a pretty early tick i reckon": [65535, 0], "this is a pretty early tick i reckon it's": [65535, 0], "is a pretty early tick i reckon it's the": [65535, 0], "a pretty early tick i reckon it's the first": [65535, 0], "pretty early tick i reckon it's the first one": [65535, 0], "early tick i reckon it's the first one i've": [65535, 0], "tick i reckon it's the first one i've seen": [65535, 0], "i reckon it's the first one i've seen this": [65535, 0], "reckon it's the first one i've seen this year": [65535, 0], "it's the first one i've seen this year say": [65535, 0], "the first one i've seen this year say huck": [65535, 0], "first one i've seen this year say huck i'll": [65535, 0], "one i've seen this year say huck i'll give": [65535, 0], "i've seen this year say huck i'll give you": [65535, 0], "seen this year say huck i'll give you my": [65535, 0], "this year say huck i'll give you my tooth": [65535, 0], "year say huck i'll give you my tooth for": [65535, 0], "say huck i'll give you my tooth for him": [65535, 0], "huck i'll give you my tooth for him less": [65535, 0], "i'll give you my tooth for him less see": [65535, 0], "give you my tooth for him less see it": [65535, 0], "you my tooth for him less see it tom": [65535, 0], "my tooth for him less see it tom got": [65535, 0], "tooth for him less see it tom got out": [65535, 0], "for him less see it tom got out a": [65535, 0], "him less see it tom got out a bit": [65535, 0], "less see it tom got out a bit of": [65535, 0], "see it tom got out a bit of paper": [65535, 0], "it tom got out a bit of paper and": [65535, 0], "tom got out a bit of paper and carefully": [65535, 0], "got out a bit of paper and carefully unrolled": [65535, 0], "out a bit of paper and carefully unrolled it": [65535, 0], "a bit of paper and carefully unrolled it huckleberry": [65535, 0], "bit of paper and carefully unrolled it huckleberry viewed": [65535, 0], "of paper and carefully unrolled it huckleberry viewed it": [65535, 0], "paper and carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "and carefully unrolled it huckleberry viewed it wistfully the": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully the temptation": [65535, 0], "unrolled it huckleberry viewed it wistfully the temptation was": [65535, 0], "it huckleberry viewed it wistfully the temptation was very": [65535, 0], "huckleberry viewed it wistfully the temptation was very strong": [65535, 0], "viewed it wistfully the temptation was very strong at": [65535, 0], "it wistfully the temptation was very strong at last": [65535, 0], "wistfully the temptation was very strong at last he": [65535, 0], "the temptation was very strong at last he said": [65535, 0], "temptation was very strong at last he said is": [65535, 0], "was very strong at last he said is it": [65535, 0], "very strong at last he said is it genuwyne": [65535, 0], "strong at last he said is it genuwyne tom": [65535, 0], "at last he said is it genuwyne tom lifted": [65535, 0], "last he said is it genuwyne tom lifted his": [65535, 0], "he said is it genuwyne tom lifted his lip": [65535, 0], "said is it genuwyne tom lifted his lip and": [65535, 0], "is it genuwyne tom lifted his lip and showed": [65535, 0], "it genuwyne tom lifted his lip and showed the": [65535, 0], "genuwyne tom lifted his lip and showed the vacancy": [65535, 0], "tom lifted his lip and showed the vacancy well": [65535, 0], "lifted his lip and showed the vacancy well all": [65535, 0], "his lip and showed the vacancy well all right": [65535, 0], "lip and showed the vacancy well all right said": [65535, 0], "and showed the vacancy well all right said huckleberry": [65535, 0], "showed the vacancy well all right said huckleberry it's": [65535, 0], "the vacancy well all right said huckleberry it's a": [65535, 0], "vacancy well all right said huckleberry it's a trade": [65535, 0], "well all right said huckleberry it's a trade tom": [65535, 0], "all right said huckleberry it's a trade tom enclosed": [65535, 0], "right said huckleberry it's a trade tom enclosed the": [65535, 0], "said huckleberry it's a trade tom enclosed the tick": [65535, 0], "huckleberry it's a trade tom enclosed the tick in": [65535, 0], "it's a trade tom enclosed the tick in the": [65535, 0], "a trade tom enclosed the tick in the percussion": [65535, 0], "trade tom enclosed the tick in the percussion cap": [65535, 0], "tom enclosed the tick in the percussion cap box": [65535, 0], "enclosed the tick in the percussion cap box that": [65535, 0], "the tick in the percussion cap box that had": [65535, 0], "tick in the percussion cap box that had lately": [65535, 0], "in the percussion cap box that had lately been": [65535, 0], "the percussion cap box that had lately been the": [65535, 0], "percussion cap box that had lately been the pinchbug's": [65535, 0], "cap box that had lately been the pinchbug's prison": [65535, 0], "box that had lately been the pinchbug's prison and": [65535, 0], "that had lately been the pinchbug's prison and the": [65535, 0], "had lately been the pinchbug's prison and the boys": [65535, 0], "lately been the pinchbug's prison and the boys separated": [65535, 0], "been the pinchbug's prison and the boys separated each": [65535, 0], "the pinchbug's prison and the boys separated each feeling": [65535, 0], "pinchbug's prison and the boys separated each feeling wealthier": [65535, 0], "prison and the boys separated each feeling wealthier than": [65535, 0], "and the boys separated each feeling wealthier than before": [65535, 0], "the boys separated each feeling wealthier than before when": [65535, 0], "boys separated each feeling wealthier than before when tom": [65535, 0], "separated each feeling wealthier than before when tom reached": [65535, 0], "each feeling wealthier than before when tom reached the": [65535, 0], "feeling wealthier than before when tom reached the little": [65535, 0], "wealthier than before when tom reached the little isolated": [65535, 0], "than before when tom reached the little isolated frame": [65535, 0], "before when tom reached the little isolated frame schoolhouse": [65535, 0], "when tom reached the little isolated frame schoolhouse he": [65535, 0], "tom reached the little isolated frame schoolhouse he strode": [65535, 0], "reached the little isolated frame schoolhouse he strode in": [65535, 0], "the little isolated frame schoolhouse he strode in briskly": [65535, 0], "little isolated frame schoolhouse he strode in briskly with": [65535, 0], "isolated frame schoolhouse he strode in briskly with the": [65535, 0], "frame schoolhouse he strode in briskly with the manner": [65535, 0], "schoolhouse he strode in briskly with the manner of": [65535, 0], "he strode in briskly with the manner of one": [65535, 0], "strode in briskly with the manner of one who": [65535, 0], "in briskly with the manner of one who had": [65535, 0], "briskly with the manner of one who had come": [65535, 0], "with the manner of one who had come with": [65535, 0], "the manner of one who had come with all": [65535, 0], "manner of one who had come with all honest": [65535, 0], "of one who had come with all honest speed": [65535, 0], "one who had come with all honest speed he": [65535, 0], "who had come with all honest speed he hung": [65535, 0], "had come with all honest speed he hung his": [65535, 0], "come with all honest speed he hung his hat": [65535, 0], "with all honest speed he hung his hat on": [65535, 0], "all honest speed he hung his hat on a": [65535, 0], "honest speed he hung his hat on a peg": [65535, 0], "speed he hung his hat on a peg and": [65535, 0], "he hung his hat on a peg and flung": [65535, 0], "hung his hat on a peg and flung himself": [65535, 0], "his hat on a peg and flung himself into": [65535, 0], "hat on a peg and flung himself into his": [65535, 0], "on a peg and flung himself into his seat": [65535, 0], "a peg and flung himself into his seat with": [65535, 0], "peg and flung himself into his seat with business": [65535, 0], "and flung himself into his seat with business like": [65535, 0], "flung himself into his seat with business like alacrity": [65535, 0], "himself into his seat with business like alacrity the": [65535, 0], "into his seat with business like alacrity the master": [65535, 0], "his seat with business like alacrity the master throned": [65535, 0], "seat with business like alacrity the master throned on": [65535, 0], "with business like alacrity the master throned on high": [65535, 0], "business like alacrity the master throned on high in": [65535, 0], "like alacrity the master throned on high in his": [65535, 0], "alacrity the master throned on high in his great": [65535, 0], "the master throned on high in his great splint": [65535, 0], "master throned on high in his great splint bottom": [65535, 0], "throned on high in his great splint bottom arm": [65535, 0], "on high in his great splint bottom arm chair": [65535, 0], "high in his great splint bottom arm chair was": [65535, 0], "in his great splint bottom arm chair was dozing": [65535, 0], "his great splint bottom arm chair was dozing lulled": [65535, 0], "great splint bottom arm chair was dozing lulled by": [65535, 0], "splint bottom arm chair was dozing lulled by the": [65535, 0], "bottom arm chair was dozing lulled by the drowsy": [65535, 0], "arm chair was dozing lulled by the drowsy hum": [65535, 0], "chair was dozing lulled by the drowsy hum of": [65535, 0], "was dozing lulled by the drowsy hum of study": [65535, 0], "dozing lulled by the drowsy hum of study the": [65535, 0], "lulled by the drowsy hum of study the interruption": [65535, 0], "by the drowsy hum of study the interruption roused": [65535, 0], "the drowsy hum of study the interruption roused him": [65535, 0], "drowsy hum of study the interruption roused him thomas": [65535, 0], "hum of study the interruption roused him thomas sawyer": [65535, 0], "of study the interruption roused him thomas sawyer tom": [65535, 0], "study the interruption roused him thomas sawyer tom knew": [65535, 0], "the interruption roused him thomas sawyer tom knew that": [65535, 0], "interruption roused him thomas sawyer tom knew that when": [65535, 0], "roused him thomas sawyer tom knew that when his": [65535, 0], "him thomas sawyer tom knew that when his name": [65535, 0], "thomas sawyer tom knew that when his name was": [65535, 0], "sawyer tom knew that when his name was pronounced": [65535, 0], "tom knew that when his name was pronounced in": [65535, 0], "knew that when his name was pronounced in full": [65535, 0], "that when his name was pronounced in full it": [65535, 0], "when his name was pronounced in full it meant": [65535, 0], "his name was pronounced in full it meant trouble": [65535, 0], "name was pronounced in full it meant trouble sir": [65535, 0], "was pronounced in full it meant trouble sir come": [65535, 0], "pronounced in full it meant trouble sir come up": [65535, 0], "in full it meant trouble sir come up here": [65535, 0], "full it meant trouble sir come up here now": [65535, 0], "it meant trouble sir come up here now sir": [65535, 0], "meant trouble sir come up here now sir why": [65535, 0], "trouble sir come up here now sir why are": [65535, 0], "sir come up here now sir why are you": [65535, 0], "come up here now sir why are you late": [65535, 0], "up here now sir why are you late again": [65535, 0], "here now sir why are you late again as": [65535, 0], "now sir why are you late again as usual": [65535, 0], "sir why are you late again as usual tom": [65535, 0], "why are you late again as usual tom was": [65535, 0], "are you late again as usual tom was about": [65535, 0], "you late again as usual tom was about to": [65535, 0], "late again as usual tom was about to take": [65535, 0], "again as usual tom was about to take refuge": [65535, 0], "as usual tom was about to take refuge in": [65535, 0], "usual tom was about to take refuge in a": [65535, 0], "tom was about to take refuge in a lie": [65535, 0], "was about to take refuge in a lie when": [65535, 0], "about to take refuge in a lie when he": [65535, 0], "to take refuge in a lie when he saw": [65535, 0], "take refuge in a lie when he saw two": [65535, 0], "refuge in a lie when he saw two long": [65535, 0], "in a lie when he saw two long tails": [65535, 0], "a lie when he saw two long tails of": [65535, 0], "lie when he saw two long tails of yellow": [65535, 0], "when he saw two long tails of yellow hair": [65535, 0], "he saw two long tails of yellow hair hanging": [65535, 0], "saw two long tails of yellow hair hanging down": [65535, 0], "two long tails of yellow hair hanging down a": [65535, 0], "long tails of yellow hair hanging down a back": [65535, 0], "tails of yellow hair hanging down a back that": [65535, 0], "of yellow hair hanging down a back that he": [65535, 0], "yellow hair hanging down a back that he recognized": [65535, 0], "hair hanging down a back that he recognized by": [65535, 0], "hanging down a back that he recognized by the": [65535, 0], "down a back that he recognized by the electric": [65535, 0], "a back that he recognized by the electric sympathy": [65535, 0], "back that he recognized by the electric sympathy of": [65535, 0], "that he recognized by the electric sympathy of love": [65535, 0], "he recognized by the electric sympathy of love and": [65535, 0], "recognized by the electric sympathy of love and by": [65535, 0], "by the electric sympathy of love and by that": [65535, 0], "the electric sympathy of love and by that form": [65535, 0], "electric sympathy of love and by that form was": [65535, 0], "sympathy of love and by that form was the": [65535, 0], "of love and by that form was the only": [65535, 0], "love and by that form was the only vacant": [65535, 0], "and by that form was the only vacant place": [65535, 0], "by that form was the only vacant place on": [65535, 0], "that form was the only vacant place on the": [65535, 0], "form was the only vacant place on the girls'": [65535, 0], "was the only vacant place on the girls' side": [65535, 0], "the only vacant place on the girls' side of": [65535, 0], "only vacant place on the girls' side of the": [65535, 0], "vacant place on the girls' side of the school": [65535, 0], "place on the girls' side of the school house": [65535, 0], "on the girls' side of the school house he": [65535, 0], "the girls' side of the school house he instantly": [65535, 0], "girls' side of the school house he instantly said": [65535, 0], "side of the school house he instantly said i": [65535, 0], "of the school house he instantly said i stopped": [65535, 0], "the school house he instantly said i stopped to": [65535, 0], "school house he instantly said i stopped to talk": [65535, 0], "house he instantly said i stopped to talk with": [65535, 0], "he instantly said i stopped to talk with huckleberry": [65535, 0], "instantly said i stopped to talk with huckleberry finn": [65535, 0], "said i stopped to talk with huckleberry finn the": [65535, 0], "i stopped to talk with huckleberry finn the master's": [65535, 0], "stopped to talk with huckleberry finn the master's pulse": [65535, 0], "to talk with huckleberry finn the master's pulse stood": [65535, 0], "talk with huckleberry finn the master's pulse stood still": [65535, 0], "with huckleberry finn the master's pulse stood still and": [65535, 0], "huckleberry finn the master's pulse stood still and he": [65535, 0], "finn the master's pulse stood still and he stared": [65535, 0], "the master's pulse stood still and he stared helplessly": [65535, 0], "master's pulse stood still and he stared helplessly the": [65535, 0], "pulse stood still and he stared helplessly the buzz": [65535, 0], "stood still and he stared helplessly the buzz of": [65535, 0], "still and he stared helplessly the buzz of study": [65535, 0], "and he stared helplessly the buzz of study ceased": [65535, 0], "he stared helplessly the buzz of study ceased the": [65535, 0], "stared helplessly the buzz of study ceased the pupils": [65535, 0], "helplessly the buzz of study ceased the pupils wondered": [65535, 0], "the buzz of study ceased the pupils wondered if": [65535, 0], "buzz of study ceased the pupils wondered if this": [65535, 0], "of study ceased the pupils wondered if this foolhardy": [65535, 0], "study ceased the pupils wondered if this foolhardy boy": [65535, 0], "ceased the pupils wondered if this foolhardy boy had": [65535, 0], "the pupils wondered if this foolhardy boy had lost": [65535, 0], "pupils wondered if this foolhardy boy had lost his": [65535, 0], "wondered if this foolhardy boy had lost his mind": [65535, 0], "if this foolhardy boy had lost his mind the": [65535, 0], "this foolhardy boy had lost his mind the master": [65535, 0], "foolhardy boy had lost his mind the master said": [65535, 0], "boy had lost his mind the master said you": [65535, 0], "had lost his mind the master said you you": [65535, 0], "lost his mind the master said you you did": [65535, 0], "his mind the master said you you did what": [65535, 0], "mind the master said you you did what stopped": [65535, 0], "the master said you you did what stopped to": [65535, 0], "master said you you did what stopped to talk": [65535, 0], "said you you did what stopped to talk with": [65535, 0], "you you did what stopped to talk with huckleberry": [65535, 0], "you did what stopped to talk with huckleberry finn": [65535, 0], "did what stopped to talk with huckleberry finn there": [65535, 0], "what stopped to talk with huckleberry finn there was": [65535, 0], "stopped to talk with huckleberry finn there was no": [65535, 0], "to talk with huckleberry finn there was no mistaking": [65535, 0], "talk with huckleberry finn there was no mistaking the": [65535, 0], "with huckleberry finn there was no mistaking the words": [65535, 0], "huckleberry finn there was no mistaking the words thomas": [65535, 0], "finn there was no mistaking the words thomas sawyer": [65535, 0], "there was no mistaking the words thomas sawyer this": [65535, 0], "was no mistaking the words thomas sawyer this is": [65535, 0], "no mistaking the words thomas sawyer this is the": [65535, 0], "mistaking the words thomas sawyer this is the most": [65535, 0], "the words thomas sawyer this is the most astounding": [65535, 0], "words thomas sawyer this is the most astounding confession": [65535, 0], "thomas sawyer this is the most astounding confession i": [65535, 0], "sawyer this is the most astounding confession i have": [65535, 0], "this is the most astounding confession i have ever": [65535, 0], "is the most astounding confession i have ever listened": [65535, 0], "the most astounding confession i have ever listened to": [65535, 0], "most astounding confession i have ever listened to no": [65535, 0], "astounding confession i have ever listened to no mere": [65535, 0], "confession i have ever listened to no mere ferule": [65535, 0], "i have ever listened to no mere ferule will": [65535, 0], "have ever listened to no mere ferule will answer": [65535, 0], "ever listened to no mere ferule will answer for": [65535, 0], "listened to no mere ferule will answer for this": [65535, 0], "to no mere ferule will answer for this offence": [65535, 0], "no mere ferule will answer for this offence take": [65535, 0], "mere ferule will answer for this offence take off": [65535, 0], "ferule will answer for this offence take off your": [65535, 0], "will answer for this offence take off your jacket": [65535, 0], "answer for this offence take off your jacket the": [65535, 0], "for this offence take off your jacket the master's": [65535, 0], "this offence take off your jacket the master's arm": [65535, 0], "offence take off your jacket the master's arm performed": [65535, 0], "take off your jacket the master's arm performed until": [65535, 0], "off your jacket the master's arm performed until it": [65535, 0], "your jacket the master's arm performed until it was": [65535, 0], "jacket the master's arm performed until it was tired": [65535, 0], "the master's arm performed until it was tired and": [65535, 0], "master's arm performed until it was tired and the": [65535, 0], "arm performed until it was tired and the stock": [65535, 0], "performed until it was tired and the stock of": [65535, 0], "until it was tired and the stock of switches": [65535, 0], "it was tired and the stock of switches notably": [65535, 0], "was tired and the stock of switches notably diminished": [65535, 0], "tired and the stock of switches notably diminished then": [65535, 0], "and the stock of switches notably diminished then the": [65535, 0], "the stock of switches notably diminished then the order": [65535, 0], "stock of switches notably diminished then the order followed": [65535, 0], "of switches notably diminished then the order followed now": [65535, 0], "switches notably diminished then the order followed now sir": [65535, 0], "notably diminished then the order followed now sir go": [65535, 0], "diminished then the order followed now sir go and": [65535, 0], "then the order followed now sir go and sit": [65535, 0], "the order followed now sir go and sit with": [65535, 0], "order followed now sir go and sit with the": [65535, 0], "followed now sir go and sit with the girls": [65535, 0], "now sir go and sit with the girls and": [65535, 0], "sir go and sit with the girls and let": [65535, 0], "go and sit with the girls and let this": [65535, 0], "and sit with the girls and let this be": [65535, 0], "sit with the girls and let this be a": [65535, 0], "with the girls and let this be a warning": [65535, 0], "the girls and let this be a warning to": [65535, 0], "girls and let this be a warning to you": [65535, 0], "and let this be a warning to you the": [65535, 0], "let this be a warning to you the titter": [65535, 0], "this be a warning to you the titter that": [65535, 0], "be a warning to you the titter that rippled": [65535, 0], "a warning to you the titter that rippled around": [65535, 0], "warning to you the titter that rippled around the": [65535, 0], "to you the titter that rippled around the room": [65535, 0], "you the titter that rippled around the room appeared": [65535, 0], "the titter that rippled around the room appeared to": [65535, 0], "titter that rippled around the room appeared to abash": [65535, 0], "that rippled around the room appeared to abash the": [65535, 0], "rippled around the room appeared to abash the boy": [65535, 0], "around the room appeared to abash the boy but": [65535, 0], "the room appeared to abash the boy but in": [65535, 0], "room appeared to abash the boy but in reality": [65535, 0], "appeared to abash the boy but in reality that": [65535, 0], "to abash the boy but in reality that result": [65535, 0], "abash the boy but in reality that result was": [65535, 0], "the boy but in reality that result was caused": [65535, 0], "boy but in reality that result was caused rather": [65535, 0], "but in reality that result was caused rather more": [65535, 0], "in reality that result was caused rather more by": [65535, 0], "reality that result was caused rather more by his": [65535, 0], "that result was caused rather more by his worshipful": [65535, 0], "result was caused rather more by his worshipful awe": [65535, 0], "was caused rather more by his worshipful awe of": [65535, 0], "caused rather more by his worshipful awe of his": [65535, 0], "rather more by his worshipful awe of his unknown": [65535, 0], "more by his worshipful awe of his unknown idol": [65535, 0], "by his worshipful awe of his unknown idol and": [65535, 0], "his worshipful awe of his unknown idol and the": [65535, 0], "worshipful awe of his unknown idol and the dread": [65535, 0], "awe of his unknown idol and the dread pleasure": [65535, 0], "of his unknown idol and the dread pleasure that": [65535, 0], "his unknown idol and the dread pleasure that lay": [65535, 0], "unknown idol and the dread pleasure that lay in": [65535, 0], "idol and the dread pleasure that lay in his": [65535, 0], "and the dread pleasure that lay in his high": [65535, 0], "the dread pleasure that lay in his high good": [65535, 0], "dread pleasure that lay in his high good fortune": [65535, 0], "pleasure that lay in his high good fortune he": [65535, 0], "that lay in his high good fortune he sat": [65535, 0], "lay in his high good fortune he sat down": [65535, 0], "in his high good fortune he sat down upon": [65535, 0], "his high good fortune he sat down upon the": [65535, 0], "high good fortune he sat down upon the end": [65535, 0], "good fortune he sat down upon the end of": [65535, 0], "fortune he sat down upon the end of the": [65535, 0], "he sat down upon the end of the pine": [65535, 0], "sat down upon the end of the pine bench": [65535, 0], "down upon the end of the pine bench and": [65535, 0], "upon the end of the pine bench and the": [65535, 0], "the end of the pine bench and the girl": [65535, 0], "end of the pine bench and the girl hitched": [65535, 0], "of the pine bench and the girl hitched herself": [65535, 0], "the pine bench and the girl hitched herself away": [65535, 0], "pine bench and the girl hitched herself away from": [65535, 0], "bench and the girl hitched herself away from him": [65535, 0], "and the girl hitched herself away from him with": [65535, 0], "the girl hitched herself away from him with a": [65535, 0], "girl hitched herself away from him with a toss": [65535, 0], "hitched herself away from him with a toss of": [65535, 0], "herself away from him with a toss of her": [65535, 0], "away from him with a toss of her head": [65535, 0], "from him with a toss of her head nudges": [65535, 0], "him with a toss of her head nudges and": [65535, 0], "with a toss of her head nudges and winks": [65535, 0], "a toss of her head nudges and winks and": [65535, 0], "toss of her head nudges and winks and whispers": [65535, 0], "of her head nudges and winks and whispers traversed": [65535, 0], "her head nudges and winks and whispers traversed the": [65535, 0], "head nudges and winks and whispers traversed the room": [65535, 0], "nudges and winks and whispers traversed the room but": [65535, 0], "and winks and whispers traversed the room but tom": [65535, 0], "winks and whispers traversed the room but tom sat": [65535, 0], "and whispers traversed the room but tom sat still": [65535, 0], "whispers traversed the room but tom sat still with": [65535, 0], "traversed the room but tom sat still with his": [65535, 0], "the room but tom sat still with his arms": [65535, 0], "room but tom sat still with his arms upon": [65535, 0], "but tom sat still with his arms upon the": [65535, 0], "tom sat still with his arms upon the long": [65535, 0], "sat still with his arms upon the long low": [65535, 0], "still with his arms upon the long low desk": [65535, 0], "with his arms upon the long low desk before": [65535, 0], "his arms upon the long low desk before him": [65535, 0], "arms upon the long low desk before him and": [65535, 0], "upon the long low desk before him and seemed": [65535, 0], "the long low desk before him and seemed to": [65535, 0], "long low desk before him and seemed to study": [65535, 0], "low desk before him and seemed to study his": [65535, 0], "desk before him and seemed to study his book": [65535, 0], "before him and seemed to study his book by": [65535, 0], "him and seemed to study his book by and": [65535, 0], "and seemed to study his book by and by": [65535, 0], "seemed to study his book by and by attention": [65535, 0], "to study his book by and by attention ceased": [65535, 0], "study his book by and by attention ceased from": [65535, 0], "his book by and by attention ceased from him": [65535, 0], "book by and by attention ceased from him and": [65535, 0], "by and by attention ceased from him and the": [65535, 0], "and by attention ceased from him and the accustomed": [65535, 0], "by attention ceased from him and the accustomed school": [65535, 0], "attention ceased from him and the accustomed school murmur": [65535, 0], "ceased from him and the accustomed school murmur rose": [65535, 0], "from him and the accustomed school murmur rose upon": [65535, 0], "him and the accustomed school murmur rose upon the": [65535, 0], "and the accustomed school murmur rose upon the dull": [65535, 0], "the accustomed school murmur rose upon the dull air": [65535, 0], "accustomed school murmur rose upon the dull air once": [65535, 0], "school murmur rose upon the dull air once more": [65535, 0], "murmur rose upon the dull air once more presently": [65535, 0], "rose upon the dull air once more presently the": [65535, 0], "upon the dull air once more presently the boy": [65535, 0], "the dull air once more presently the boy began": [65535, 0], "dull air once more presently the boy began to": [65535, 0], "air once more presently the boy began to steal": [65535, 0], "once more presently the boy began to steal furtive": [65535, 0], "more presently the boy began to steal furtive glances": [65535, 0], "presently the boy began to steal furtive glances at": [65535, 0], "the boy began to steal furtive glances at the": [65535, 0], "boy began to steal furtive glances at the girl": [65535, 0], "began to steal furtive glances at the girl she": [65535, 0], "to steal furtive glances at the girl she observed": [65535, 0], "steal furtive glances at the girl she observed it": [65535, 0], "furtive glances at the girl she observed it made": [65535, 0], "glances at the girl she observed it made a": [65535, 0], "at the girl she observed it made a mouth": [65535, 0], "the girl she observed it made a mouth at": [65535, 0], "girl she observed it made a mouth at him": [65535, 0], "she observed it made a mouth at him and": [65535, 0], "observed it made a mouth at him and gave": [65535, 0], "it made a mouth at him and gave him": [65535, 0], "made a mouth at him and gave him the": [65535, 0], "a mouth at him and gave him the back": [65535, 0], "mouth at him and gave him the back of": [65535, 0], "at him and gave him the back of her": [65535, 0], "him and gave him the back of her head": [65535, 0], "and gave him the back of her head for": [65535, 0], "gave him the back of her head for the": [65535, 0], "him the back of her head for the space": [65535, 0], "the back of her head for the space of": [65535, 0], "back of her head for the space of a": [65535, 0], "of her head for the space of a minute": [65535, 0], "her head for the space of a minute when": [65535, 0], "head for the space of a minute when she": [65535, 0], "for the space of a minute when she cautiously": [65535, 0], "the space of a minute when she cautiously faced": [65535, 0], "space of a minute when she cautiously faced around": [65535, 0], "of a minute when she cautiously faced around again": [65535, 0], "a minute when she cautiously faced around again a": [65535, 0], "minute when she cautiously faced around again a peach": [65535, 0], "when she cautiously faced around again a peach lay": [65535, 0], "she cautiously faced around again a peach lay before": [65535, 0], "cautiously faced around again a peach lay before her": [65535, 0], "faced around again a peach lay before her she": [65535, 0], "around again a peach lay before her she thrust": [65535, 0], "again a peach lay before her she thrust it": [65535, 0], "a peach lay before her she thrust it away": [65535, 0], "peach lay before her she thrust it away tom": [65535, 0], "lay before her she thrust it away tom gently": [65535, 0], "before her she thrust it away tom gently put": [65535, 0], "her she thrust it away tom gently put it": [65535, 0], "she thrust it away tom gently put it back": [65535, 0], "thrust it away tom gently put it back she": [65535, 0], "it away tom gently put it back she thrust": [65535, 0], "away tom gently put it back she thrust it": [65535, 0], "tom gently put it back she thrust it away": [65535, 0], "gently put it back she thrust it away again": [65535, 0], "put it back she thrust it away again but": [65535, 0], "it back she thrust it away again but with": [65535, 0], "back she thrust it away again but with less": [65535, 0], "she thrust it away again but with less animosity": [65535, 0], "thrust it away again but with less animosity tom": [65535, 0], "it away again but with less animosity tom patiently": [65535, 0], "away again but with less animosity tom patiently returned": [65535, 0], "again but with less animosity tom patiently returned it": [65535, 0], "but with less animosity tom patiently returned it to": [65535, 0], "with less animosity tom patiently returned it to its": [65535, 0], "less animosity tom patiently returned it to its place": [65535, 0], "animosity tom patiently returned it to its place then": [65535, 0], "tom patiently returned it to its place then she": [65535, 0], "patiently returned it to its place then she let": [65535, 0], "returned it to its place then she let it": [65535, 0], "it to its place then she let it remain": [65535, 0], "to its place then she let it remain tom": [65535, 0], "its place then she let it remain tom scrawled": [65535, 0], "place then she let it remain tom scrawled on": [65535, 0], "then she let it remain tom scrawled on his": [65535, 0], "she let it remain tom scrawled on his slate": [65535, 0], "let it remain tom scrawled on his slate please": [65535, 0], "it remain tom scrawled on his slate please take": [65535, 0], "remain tom scrawled on his slate please take it": [65535, 0], "tom scrawled on his slate please take it i": [65535, 0], "scrawled on his slate please take it i got": [65535, 0], "on his slate please take it i got more": [65535, 0], "his slate please take it i got more the": [65535, 0], "slate please take it i got more the girl": [65535, 0], "please take it i got more the girl glanced": [65535, 0], "take it i got more the girl glanced at": [65535, 0], "it i got more the girl glanced at the": [65535, 0], "i got more the girl glanced at the words": [65535, 0], "got more the girl glanced at the words but": [65535, 0], "more the girl glanced at the words but made": [65535, 0], "the girl glanced at the words but made no": [65535, 0], "girl glanced at the words but made no sign": [65535, 0], "glanced at the words but made no sign now": [65535, 0], "at the words but made no sign now the": [65535, 0], "the words but made no sign now the boy": [65535, 0], "words but made no sign now the boy began": [65535, 0], "but made no sign now the boy began to": [65535, 0], "made no sign now the boy began to draw": [65535, 0], "no sign now the boy began to draw something": [65535, 0], "sign now the boy began to draw something on": [65535, 0], "now the boy began to draw something on the": [65535, 0], "the boy began to draw something on the slate": [65535, 0], "boy began to draw something on the slate hiding": [65535, 0], "began to draw something on the slate hiding his": [65535, 0], "to draw something on the slate hiding his work": [65535, 0], "draw something on the slate hiding his work with": [65535, 0], "something on the slate hiding his work with his": [65535, 0], "on the slate hiding his work with his left": [65535, 0], "the slate hiding his work with his left hand": [65535, 0], "slate hiding his work with his left hand for": [65535, 0], "hiding his work with his left hand for a": [65535, 0], "his work with his left hand for a time": [65535, 0], "work with his left hand for a time the": [65535, 0], "with his left hand for a time the girl": [65535, 0], "his left hand for a time the girl refused": [65535, 0], "left hand for a time the girl refused to": [65535, 0], "hand for a time the girl refused to notice": [65535, 0], "for a time the girl refused to notice but": [65535, 0], "a time the girl refused to notice but her": [65535, 0], "time the girl refused to notice but her human": [65535, 0], "the girl refused to notice but her human curiosity": [65535, 0], "girl refused to notice but her human curiosity presently": [65535, 0], "refused to notice but her human curiosity presently began": [65535, 0], "to notice but her human curiosity presently began to": [65535, 0], "notice but her human curiosity presently began to manifest": [65535, 0], "but her human curiosity presently began to manifest itself": [65535, 0], "her human curiosity presently began to manifest itself by": [65535, 0], "human curiosity presently began to manifest itself by hardly": [65535, 0], "curiosity presently began to manifest itself by hardly perceptible": [65535, 0], "presently began to manifest itself by hardly perceptible signs": [65535, 0], "began to manifest itself by hardly perceptible signs the": [65535, 0], "to manifest itself by hardly perceptible signs the boy": [65535, 0], "manifest itself by hardly perceptible signs the boy worked": [65535, 0], "itself by hardly perceptible signs the boy worked on": [65535, 0], "by hardly perceptible signs the boy worked on apparently": [65535, 0], "hardly perceptible signs the boy worked on apparently unconscious": [65535, 0], "perceptible signs the boy worked on apparently unconscious the": [65535, 0], "signs the boy worked on apparently unconscious the girl": [65535, 0], "the boy worked on apparently unconscious the girl made": [65535, 0], "boy worked on apparently unconscious the girl made a": [65535, 0], "worked on apparently unconscious the girl made a sort": [65535, 0], "on apparently unconscious the girl made a sort of": [65535, 0], "apparently unconscious the girl made a sort of noncommittal": [65535, 0], "unconscious the girl made a sort of noncommittal attempt": [65535, 0], "the girl made a sort of noncommittal attempt to": [65535, 0], "girl made a sort of noncommittal attempt to see": [65535, 0], "made a sort of noncommittal attempt to see but": [65535, 0], "a sort of noncommittal attempt to see but the": [65535, 0], "sort of noncommittal attempt to see but the boy": [65535, 0], "of noncommittal attempt to see but the boy did": [65535, 0], "noncommittal attempt to see but the boy did not": [65535, 0], "attempt to see but the boy did not betray": [65535, 0], "to see but the boy did not betray that": [65535, 0], "see but the boy did not betray that he": [65535, 0], "but the boy did not betray that he was": [65535, 0], "the boy did not betray that he was aware": [65535, 0], "boy did not betray that he was aware of": [65535, 0], "did not betray that he was aware of it": [65535, 0], "not betray that he was aware of it at": [65535, 0], "betray that he was aware of it at last": [65535, 0], "that he was aware of it at last she": [65535, 0], "he was aware of it at last she gave": [65535, 0], "was aware of it at last she gave in": [65535, 0], "aware of it at last she gave in and": [65535, 0], "of it at last she gave in and hesitatingly": [65535, 0], "it at last she gave in and hesitatingly whispered": [65535, 0], "at last she gave in and hesitatingly whispered let": [65535, 0], "last she gave in and hesitatingly whispered let me": [65535, 0], "she gave in and hesitatingly whispered let me see": [65535, 0], "gave in and hesitatingly whispered let me see it": [65535, 0], "in and hesitatingly whispered let me see it tom": [65535, 0], "and hesitatingly whispered let me see it tom partly": [65535, 0], "hesitatingly whispered let me see it tom partly uncovered": [65535, 0], "whispered let me see it tom partly uncovered a": [65535, 0], "let me see it tom partly uncovered a dismal": [65535, 0], "me see it tom partly uncovered a dismal caricature": [65535, 0], "see it tom partly uncovered a dismal caricature of": [65535, 0], "it tom partly uncovered a dismal caricature of a": [65535, 0], "tom partly uncovered a dismal caricature of a house": [65535, 0], "partly uncovered a dismal caricature of a house with": [65535, 0], "uncovered a dismal caricature of a house with two": [65535, 0], "a dismal caricature of a house with two gable": [65535, 0], "dismal caricature of a house with two gable ends": [65535, 0], "caricature of a house with two gable ends to": [65535, 0], "of a house with two gable ends to it": [65535, 0], "a house with two gable ends to it and": [65535, 0], "house with two gable ends to it and a": [65535, 0], "with two gable ends to it and a corkscrew": [65535, 0], "two gable ends to it and a corkscrew of": [65535, 0], "gable ends to it and a corkscrew of smoke": [65535, 0], "ends to it and a corkscrew of smoke issuing": [65535, 0], "to it and a corkscrew of smoke issuing from": [65535, 0], "it and a corkscrew of smoke issuing from the": [65535, 0], "and a corkscrew of smoke issuing from the chimney": [65535, 0], "a corkscrew of smoke issuing from the chimney then": [65535, 0], "corkscrew of smoke issuing from the chimney then the": [65535, 0], "of smoke issuing from the chimney then the girl's": [65535, 0], "smoke issuing from the chimney then the girl's interest": [65535, 0], "issuing from the chimney then the girl's interest began": [65535, 0], "from the chimney then the girl's interest began to": [65535, 0], "the chimney then the girl's interest began to fasten": [65535, 0], "chimney then the girl's interest began to fasten itself": [65535, 0], "then the girl's interest began to fasten itself upon": [65535, 0], "the girl's interest began to fasten itself upon the": [65535, 0], "girl's interest began to fasten itself upon the work": [65535, 0], "interest began to fasten itself upon the work and": [65535, 0], "began to fasten itself upon the work and she": [65535, 0], "to fasten itself upon the work and she forgot": [65535, 0], "fasten itself upon the work and she forgot everything": [65535, 0], "itself upon the work and she forgot everything else": [65535, 0], "upon the work and she forgot everything else when": [65535, 0], "the work and she forgot everything else when it": [65535, 0], "work and she forgot everything else when it was": [65535, 0], "and she forgot everything else when it was finished": [65535, 0], "she forgot everything else when it was finished she": [65535, 0], "forgot everything else when it was finished she gazed": [65535, 0], "everything else when it was finished she gazed a": [65535, 0], "else when it was finished she gazed a moment": [65535, 0], "when it was finished she gazed a moment then": [65535, 0], "it was finished she gazed a moment then whispered": [65535, 0], "was finished she gazed a moment then whispered it's": [65535, 0], "finished she gazed a moment then whispered it's nice": [65535, 0], "she gazed a moment then whispered it's nice make": [65535, 0], "gazed a moment then whispered it's nice make a": [65535, 0], "a moment then whispered it's nice make a man": [65535, 0], "moment then whispered it's nice make a man the": [65535, 0], "then whispered it's nice make a man the artist": [65535, 0], "whispered it's nice make a man the artist erected": [65535, 0], "it's nice make a man the artist erected a": [65535, 0], "nice make a man the artist erected a man": [65535, 0], "make a man the artist erected a man in": [65535, 0], "a man the artist erected a man in the": [65535, 0], "man the artist erected a man in the front": [65535, 0], "the artist erected a man in the front yard": [65535, 0], "artist erected a man in the front yard that": [65535, 0], "erected a man in the front yard that resembled": [65535, 0], "a man in the front yard that resembled a": [65535, 0], "man in the front yard that resembled a derrick": [65535, 0], "in the front yard that resembled a derrick he": [65535, 0], "the front yard that resembled a derrick he could": [65535, 0], "front yard that resembled a derrick he could have": [65535, 0], "yard that resembled a derrick he could have stepped": [65535, 0], "that resembled a derrick he could have stepped over": [65535, 0], "resembled a derrick he could have stepped over the": [65535, 0], "a derrick he could have stepped over the house": [65535, 0], "derrick he could have stepped over the house but": [65535, 0], "he could have stepped over the house but the": [65535, 0], "could have stepped over the house but the girl": [65535, 0], "have stepped over the house but the girl was": [65535, 0], "stepped over the house but the girl was not": [65535, 0], "over the house but the girl was not hypercritical": [65535, 0], "the house but the girl was not hypercritical she": [65535, 0], "house but the girl was not hypercritical she was": [65535, 0], "but the girl was not hypercritical she was satisfied": [65535, 0], "the girl was not hypercritical she was satisfied with": [65535, 0], "girl was not hypercritical she was satisfied with the": [65535, 0], "was not hypercritical she was satisfied with the monster": [65535, 0], "not hypercritical she was satisfied with the monster and": [65535, 0], "hypercritical she was satisfied with the monster and whispered": [65535, 0], "she was satisfied with the monster and whispered it's": [65535, 0], "was satisfied with the monster and whispered it's a": [65535, 0], "satisfied with the monster and whispered it's a beautiful": [65535, 0], "with the monster and whispered it's a beautiful man": [65535, 0], "the monster and whispered it's a beautiful man now": [65535, 0], "monster and whispered it's a beautiful man now make": [65535, 0], "and whispered it's a beautiful man now make me": [65535, 0], "whispered it's a beautiful man now make me coming": [65535, 0], "it's a beautiful man now make me coming along": [65535, 0], "a beautiful man now make me coming along tom": [65535, 0], "beautiful man now make me coming along tom drew": [65535, 0], "man now make me coming along tom drew an": [65535, 0], "now make me coming along tom drew an hour": [65535, 0], "make me coming along tom drew an hour glass": [65535, 0], "me coming along tom drew an hour glass with": [65535, 0], "coming along tom drew an hour glass with a": [65535, 0], "along tom drew an hour glass with a full": [65535, 0], "tom drew an hour glass with a full moon": [65535, 0], "drew an hour glass with a full moon and": [65535, 0], "an hour glass with a full moon and straw": [65535, 0], "hour glass with a full moon and straw limbs": [65535, 0], "glass with a full moon and straw limbs to": [65535, 0], "with a full moon and straw limbs to it": [65535, 0], "a full moon and straw limbs to it and": [65535, 0], "full moon and straw limbs to it and armed": [65535, 0], "moon and straw limbs to it and armed the": [65535, 0], "and straw limbs to it and armed the spreading": [65535, 0], "straw limbs to it and armed the spreading fingers": [65535, 0], "limbs to it and armed the spreading fingers with": [65535, 0], "to it and armed the spreading fingers with a": [65535, 0], "it and armed the spreading fingers with a portentous": [65535, 0], "and armed the spreading fingers with a portentous fan": [65535, 0], "armed the spreading fingers with a portentous fan the": [65535, 0], "the spreading fingers with a portentous fan the girl": [65535, 0], "spreading fingers with a portentous fan the girl said": [65535, 0], "fingers with a portentous fan the girl said it's": [65535, 0], "with a portentous fan the girl said it's ever": [65535, 0], "a portentous fan the girl said it's ever so": [65535, 0], "portentous fan the girl said it's ever so nice": [65535, 0], "fan the girl said it's ever so nice i": [65535, 0], "the girl said it's ever so nice i wish": [65535, 0], "girl said it's ever so nice i wish i": [65535, 0], "said it's ever so nice i wish i could": [65535, 0], "it's ever so nice i wish i could draw": [65535, 0], "ever so nice i wish i could draw it's": [65535, 0], "so nice i wish i could draw it's easy": [65535, 0], "nice i wish i could draw it's easy whispered": [65535, 0], "i wish i could draw it's easy whispered tom": [65535, 0], "wish i could draw it's easy whispered tom i'll": [65535, 0], "i could draw it's easy whispered tom i'll learn": [65535, 0], "could draw it's easy whispered tom i'll learn you": [65535, 0], "draw it's easy whispered tom i'll learn you oh": [65535, 0], "it's easy whispered tom i'll learn you oh will": [65535, 0], "easy whispered tom i'll learn you oh will you": [65535, 0], "whispered tom i'll learn you oh will you when": [65535, 0], "tom i'll learn you oh will you when at": [65535, 0], "i'll learn you oh will you when at noon": [65535, 0], "learn you oh will you when at noon do": [65535, 0], "you oh will you when at noon do you": [65535, 0], "oh will you when at noon do you go": [65535, 0], "will you when at noon do you go home": [65535, 0], "you when at noon do you go home to": [65535, 0], "when at noon do you go home to dinner": [65535, 0], "at noon do you go home to dinner i'll": [65535, 0], "noon do you go home to dinner i'll stay": [65535, 0], "do you go home to dinner i'll stay if": [65535, 0], "you go home to dinner i'll stay if you": [65535, 0], "go home to dinner i'll stay if you will": [65535, 0], "home to dinner i'll stay if you will good": [65535, 0], "to dinner i'll stay if you will good that's": [65535, 0], "dinner i'll stay if you will good that's a": [65535, 0], "i'll stay if you will good that's a whack": [65535, 0], "stay if you will good that's a whack what's": [65535, 0], "if you will good that's a whack what's your": [65535, 0], "you will good that's a whack what's your name": [65535, 0], "will good that's a whack what's your name becky": [65535, 0], "good that's a whack what's your name becky thatcher": [65535, 0], "that's a whack what's your name becky thatcher what's": [65535, 0], "a whack what's your name becky thatcher what's yours": [65535, 0], "whack what's your name becky thatcher what's yours oh": [65535, 0], "what's your name becky thatcher what's yours oh i": [65535, 0], "your name becky thatcher what's yours oh i know": [65535, 0], "name becky thatcher what's yours oh i know it's": [65535, 0], "becky thatcher what's yours oh i know it's thomas": [65535, 0], "thatcher what's yours oh i know it's thomas sawyer": [65535, 0], "what's yours oh i know it's thomas sawyer that's": [65535, 0], "yours oh i know it's thomas sawyer that's the": [65535, 0], "oh i know it's thomas sawyer that's the name": [65535, 0], "i know it's thomas sawyer that's the name they": [65535, 0], "know it's thomas sawyer that's the name they lick": [65535, 0], "it's thomas sawyer that's the name they lick me": [65535, 0], "thomas sawyer that's the name they lick me by": [65535, 0], "sawyer that's the name they lick me by i'm": [65535, 0], "that's the name they lick me by i'm tom": [65535, 0], "the name they lick me by i'm tom when": [65535, 0], "name they lick me by i'm tom when i'm": [65535, 0], "they lick me by i'm tom when i'm good": [65535, 0], "lick me by i'm tom when i'm good you": [65535, 0], "me by i'm tom when i'm good you call": [65535, 0], "by i'm tom when i'm good you call me": [65535, 0], "i'm tom when i'm good you call me tom": [65535, 0], "tom when i'm good you call me tom will": [65535, 0], "when i'm good you call me tom will you": [65535, 0], "i'm good you call me tom will you yes": [65535, 0], "good you call me tom will you yes now": [65535, 0], "you call me tom will you yes now tom": [65535, 0], "call me tom will you yes now tom began": [65535, 0], "me tom will you yes now tom began to": [65535, 0], "tom will you yes now tom began to scrawl": [65535, 0], "will you yes now tom began to scrawl something": [65535, 0], "you yes now tom began to scrawl something on": [65535, 0], "yes now tom began to scrawl something on the": [65535, 0], "now tom began to scrawl something on the slate": [65535, 0], "tom began to scrawl something on the slate hiding": [65535, 0], "began to scrawl something on the slate hiding the": [65535, 0], "to scrawl something on the slate hiding the words": [65535, 0], "scrawl something on the slate hiding the words from": [65535, 0], "something on the slate hiding the words from the": [65535, 0], "on the slate hiding the words from the girl": [65535, 0], "the slate hiding the words from the girl but": [65535, 0], "slate hiding the words from the girl but she": [65535, 0], "hiding the words from the girl but she was": [65535, 0], "the words from the girl but she was not": [65535, 0], "words from the girl but she was not backward": [65535, 0], "from the girl but she was not backward this": [65535, 0], "the girl but she was not backward this time": [65535, 0], "girl but she was not backward this time she": [65535, 0], "but she was not backward this time she begged": [65535, 0], "she was not backward this time she begged to": [65535, 0], "was not backward this time she begged to see": [65535, 0], "not backward this time she begged to see tom": [65535, 0], "backward this time she begged to see tom said": [65535, 0], "this time she begged to see tom said oh": [65535, 0], "time she begged to see tom said oh it": [65535, 0], "she begged to see tom said oh it ain't": [65535, 0], "begged to see tom said oh it ain't anything": [65535, 0], "to see tom said oh it ain't anything yes": [65535, 0], "see tom said oh it ain't anything yes it": [65535, 0], "tom said oh it ain't anything yes it is": [65535, 0], "said oh it ain't anything yes it is no": [65535, 0], "oh it ain't anything yes it is no it": [65535, 0], "it ain't anything yes it is no it ain't": [65535, 0], "ain't anything yes it is no it ain't you": [65535, 0], "anything yes it is no it ain't you don't": [65535, 0], "yes it is no it ain't you don't want": [65535, 0], "it is no it ain't you don't want to": [65535, 0], "is no it ain't you don't want to see": [65535, 0], "no it ain't you don't want to see yes": [65535, 0], "it ain't you don't want to see yes i": [65535, 0], "ain't you don't want to see yes i do": [65535, 0], "you don't want to see yes i do indeed": [65535, 0], "don't want to see yes i do indeed i": [65535, 0], "want to see yes i do indeed i do": [65535, 0], "to see yes i do indeed i do please": [65535, 0], "see yes i do indeed i do please let": [65535, 0], "yes i do indeed i do please let me": [65535, 0], "i do indeed i do please let me you'll": [65535, 0], "do indeed i do please let me you'll tell": [65535, 0], "indeed i do please let me you'll tell no": [65535, 0], "i do please let me you'll tell no i": [65535, 0], "do please let me you'll tell no i won't": [65535, 0], "please let me you'll tell no i won't deed": [65535, 0], "let me you'll tell no i won't deed and": [65535, 0], "me you'll tell no i won't deed and deed": [65535, 0], "you'll tell no i won't deed and deed and": [65535, 0], "tell no i won't deed and deed and double": [65535, 0], "no i won't deed and deed and double deed": [65535, 0], "i won't deed and deed and double deed won't": [65535, 0], "won't deed and deed and double deed won't you": [65535, 0], "deed and deed and double deed won't you won't": [65535, 0], "and deed and double deed won't you won't tell": [65535, 0], "deed and double deed won't you won't tell anybody": [65535, 0], "and double deed won't you won't tell anybody at": [65535, 0], "double deed won't you won't tell anybody at all": [65535, 0], "deed won't you won't tell anybody at all ever": [65535, 0], "won't you won't tell anybody at all ever as": [65535, 0], "you won't tell anybody at all ever as long": [65535, 0], "won't tell anybody at all ever as long as": [65535, 0], "tell anybody at all ever as long as you": [65535, 0], "anybody at all ever as long as you live": [65535, 0], "at all ever as long as you live no": [65535, 0], "all ever as long as you live no i": [65535, 0], "ever as long as you live no i won't": [65535, 0], "as long as you live no i won't ever": [65535, 0], "long as you live no i won't ever tell": [65535, 0], "as you live no i won't ever tell anybody": [65535, 0], "you live no i won't ever tell anybody now": [65535, 0], "live no i won't ever tell anybody now let": [65535, 0], "no i won't ever tell anybody now let me": [65535, 0], "i won't ever tell anybody now let me oh": [65535, 0], "won't ever tell anybody now let me oh you": [65535, 0], "ever tell anybody now let me oh you don't": [65535, 0], "tell anybody now let me oh you don't want": [65535, 0], "anybody now let me oh you don't want to": [65535, 0], "now let me oh you don't want to see": [65535, 0], "let me oh you don't want to see now": [65535, 0], "me oh you don't want to see now that": [65535, 0], "oh you don't want to see now that you": [65535, 0], "you don't want to see now that you treat": [65535, 0], "don't want to see now that you treat me": [65535, 0], "want to see now that you treat me so": [65535, 0], "to see now that you treat me so i": [65535, 0], "see now that you treat me so i will": [65535, 0], "now that you treat me so i will see": [65535, 0], "that you treat me so i will see and": [65535, 0], "you treat me so i will see and she": [65535, 0], "treat me so i will see and she put": [65535, 0], "me so i will see and she put her": [65535, 0], "so i will see and she put her small": [65535, 0], "i will see and she put her small hand": [65535, 0], "will see and she put her small hand upon": [65535, 0], "see and she put her small hand upon his": [65535, 0], "and she put her small hand upon his and": [65535, 0], "she put her small hand upon his and a": [65535, 0], "put her small hand upon his and a little": [65535, 0], "her small hand upon his and a little scuffle": [65535, 0], "small hand upon his and a little scuffle ensued": [65535, 0], "hand upon his and a little scuffle ensued tom": [65535, 0], "upon his and a little scuffle ensued tom pretending": [65535, 0], "his and a little scuffle ensued tom pretending to": [65535, 0], "and a little scuffle ensued tom pretending to resist": [65535, 0], "a little scuffle ensued tom pretending to resist in": [65535, 0], "little scuffle ensued tom pretending to resist in earnest": [65535, 0], "scuffle ensued tom pretending to resist in earnest but": [65535, 0], "ensued tom pretending to resist in earnest but letting": [65535, 0], "tom pretending to resist in earnest but letting his": [65535, 0], "pretending to resist in earnest but letting his hand": [65535, 0], "to resist in earnest but letting his hand slip": [65535, 0], "resist in earnest but letting his hand slip by": [65535, 0], "in earnest but letting his hand slip by degrees": [65535, 0], "earnest but letting his hand slip by degrees till": [65535, 0], "but letting his hand slip by degrees till these": [65535, 0], "letting his hand slip by degrees till these words": [65535, 0], "his hand slip by degrees till these words were": [65535, 0], "hand slip by degrees till these words were revealed": [65535, 0], "slip by degrees till these words were revealed i": [65535, 0], "by degrees till these words were revealed i love": [65535, 0], "degrees till these words were revealed i love you": [65535, 0], "till these words were revealed i love you oh": [65535, 0], "these words were revealed i love you oh you": [65535, 0], "words were revealed i love you oh you bad": [65535, 0], "were revealed i love you oh you bad thing": [65535, 0], "revealed i love you oh you bad thing and": [65535, 0], "i love you oh you bad thing and she": [65535, 0], "love you oh you bad thing and she hit": [65535, 0], "you oh you bad thing and she hit his": [65535, 0], "oh you bad thing and she hit his hand": [65535, 0], "you bad thing and she hit his hand a": [65535, 0], "bad thing and she hit his hand a smart": [65535, 0], "thing and she hit his hand a smart rap": [65535, 0], "and she hit his hand a smart rap but": [65535, 0], "she hit his hand a smart rap but reddened": [65535, 0], "hit his hand a smart rap but reddened and": [65535, 0], "his hand a smart rap but reddened and looked": [65535, 0], "hand a smart rap but reddened and looked pleased": [65535, 0], "a smart rap but reddened and looked pleased nevertheless": [65535, 0], "smart rap but reddened and looked pleased nevertheless just": [65535, 0], "rap but reddened and looked pleased nevertheless just at": [65535, 0], "but reddened and looked pleased nevertheless just at this": [65535, 0], "reddened and looked pleased nevertheless just at this juncture": [65535, 0], "and looked pleased nevertheless just at this juncture the": [65535, 0], "looked pleased nevertheless just at this juncture the boy": [65535, 0], "pleased nevertheless just at this juncture the boy felt": [65535, 0], "nevertheless just at this juncture the boy felt a": [65535, 0], "just at this juncture the boy felt a slow": [65535, 0], "at this juncture the boy felt a slow fateful": [65535, 0], "this juncture the boy felt a slow fateful grip": [65535, 0], "juncture the boy felt a slow fateful grip closing": [65535, 0], "the boy felt a slow fateful grip closing on": [65535, 0], "boy felt a slow fateful grip closing on his": [65535, 0], "felt a slow fateful grip closing on his ear": [65535, 0], "a slow fateful grip closing on his ear and": [65535, 0], "slow fateful grip closing on his ear and a": [65535, 0], "fateful grip closing on his ear and a steady": [65535, 0], "grip closing on his ear and a steady lifting": [65535, 0], "closing on his ear and a steady lifting impulse": [65535, 0], "on his ear and a steady lifting impulse in": [65535, 0], "his ear and a steady lifting impulse in that": [65535, 0], "ear and a steady lifting impulse in that vise": [65535, 0], "and a steady lifting impulse in that vise he": [65535, 0], "a steady lifting impulse in that vise he was": [65535, 0], "steady lifting impulse in that vise he was borne": [65535, 0], "lifting impulse in that vise he was borne across": [65535, 0], "impulse in that vise he was borne across the": [65535, 0], "in that vise he was borne across the house": [65535, 0], "that vise he was borne across the house and": [65535, 0], "vise he was borne across the house and deposited": [65535, 0], "he was borne across the house and deposited in": [65535, 0], "was borne across the house and deposited in his": [65535, 0], "borne across the house and deposited in his own": [65535, 0], "across the house and deposited in his own seat": [65535, 0], "the house and deposited in his own seat under": [65535, 0], "house and deposited in his own seat under a": [65535, 0], "and deposited in his own seat under a peppering": [65535, 0], "deposited in his own seat under a peppering fire": [65535, 0], "in his own seat under a peppering fire of": [65535, 0], "his own seat under a peppering fire of giggles": [65535, 0], "own seat under a peppering fire of giggles from": [65535, 0], "seat under a peppering fire of giggles from the": [65535, 0], "under a peppering fire of giggles from the whole": [65535, 0], "a peppering fire of giggles from the whole school": [65535, 0], "peppering fire of giggles from the whole school then": [65535, 0], "fire of giggles from the whole school then the": [65535, 0], "of giggles from the whole school then the master": [65535, 0], "giggles from the whole school then the master stood": [65535, 0], "from the whole school then the master stood over": [65535, 0], "the whole school then the master stood over him": [65535, 0], "whole school then the master stood over him during": [65535, 0], "school then the master stood over him during a": [65535, 0], "then the master stood over him during a few": [65535, 0], "the master stood over him during a few awful": [65535, 0], "master stood over him during a few awful moments": [65535, 0], "stood over him during a few awful moments and": [65535, 0], "over him during a few awful moments and finally": [65535, 0], "him during a few awful moments and finally moved": [65535, 0], "during a few awful moments and finally moved away": [65535, 0], "a few awful moments and finally moved away to": [65535, 0], "few awful moments and finally moved away to his": [65535, 0], "awful moments and finally moved away to his throne": [65535, 0], "moments and finally moved away to his throne without": [65535, 0], "and finally moved away to his throne without saying": [65535, 0], "finally moved away to his throne without saying a": [65535, 0], "moved away to his throne without saying a word": [65535, 0], "away to his throne without saying a word but": [65535, 0], "to his throne without saying a word but although": [65535, 0], "his throne without saying a word but although tom's": [65535, 0], "throne without saying a word but although tom's ear": [65535, 0], "without saying a word but although tom's ear tingled": [65535, 0], "saying a word but although tom's ear tingled his": [65535, 0], "a word but although tom's ear tingled his heart": [65535, 0], "word but although tom's ear tingled his heart was": [65535, 0], "but although tom's ear tingled his heart was jubilant": [65535, 0], "although tom's ear tingled his heart was jubilant as": [65535, 0], "tom's ear tingled his heart was jubilant as the": [65535, 0], "ear tingled his heart was jubilant as the school": [65535, 0], "tingled his heart was jubilant as the school quieted": [65535, 0], "his heart was jubilant as the school quieted down": [65535, 0], "heart was jubilant as the school quieted down tom": [65535, 0], "was jubilant as the school quieted down tom made": [65535, 0], "jubilant as the school quieted down tom made an": [65535, 0], "as the school quieted down tom made an honest": [65535, 0], "the school quieted down tom made an honest effort": [65535, 0], "school quieted down tom made an honest effort to": [65535, 0], "quieted down tom made an honest effort to study": [65535, 0], "down tom made an honest effort to study but": [65535, 0], "tom made an honest effort to study but the": [65535, 0], "made an honest effort to study but the turmoil": [65535, 0], "an honest effort to study but the turmoil within": [65535, 0], "honest effort to study but the turmoil within him": [65535, 0], "effort to study but the turmoil within him was": [65535, 0], "to study but the turmoil within him was too": [65535, 0], "study but the turmoil within him was too great": [65535, 0], "but the turmoil within him was too great in": [65535, 0], "the turmoil within him was too great in turn": [65535, 0], "turmoil within him was too great in turn he": [65535, 0], "within him was too great in turn he took": [65535, 0], "him was too great in turn he took his": [65535, 0], "was too great in turn he took his place": [65535, 0], "too great in turn he took his place in": [65535, 0], "great in turn he took his place in the": [65535, 0], "in turn he took his place in the reading": [65535, 0], "turn he took his place in the reading class": [65535, 0], "he took his place in the reading class and": [65535, 0], "took his place in the reading class and made": [65535, 0], "his place in the reading class and made a": [65535, 0], "place in the reading class and made a botch": [65535, 0], "in the reading class and made a botch of": [65535, 0], "the reading class and made a botch of it": [65535, 0], "reading class and made a botch of it then": [65535, 0], "class and made a botch of it then in": [65535, 0], "and made a botch of it then in the": [65535, 0], "made a botch of it then in the geography": [65535, 0], "a botch of it then in the geography class": [65535, 0], "botch of it then in the geography class and": [65535, 0], "of it then in the geography class and turned": [65535, 0], "it then in the geography class and turned lakes": [65535, 0], "then in the geography class and turned lakes into": [65535, 0], "in the geography class and turned lakes into mountains": [65535, 0], "the geography class and turned lakes into mountains mountains": [65535, 0], "geography class and turned lakes into mountains mountains into": [65535, 0], "class and turned lakes into mountains mountains into rivers": [65535, 0], "and turned lakes into mountains mountains into rivers and": [65535, 0], "turned lakes into mountains mountains into rivers and rivers": [65535, 0], "lakes into mountains mountains into rivers and rivers into": [65535, 0], "into mountains mountains into rivers and rivers into continents": [65535, 0], "mountains mountains into rivers and rivers into continents till": [65535, 0], "mountains into rivers and rivers into continents till chaos": [65535, 0], "into rivers and rivers into continents till chaos was": [65535, 0], "rivers and rivers into continents till chaos was come": [65535, 0], "and rivers into continents till chaos was come again": [65535, 0], "rivers into continents till chaos was come again then": [65535, 0], "into continents till chaos was come again then in": [65535, 0], "continents till chaos was come again then in the": [65535, 0], "till chaos was come again then in the spelling": [65535, 0], "chaos was come again then in the spelling class": [65535, 0], "was come again then in the spelling class and": [65535, 0], "come again then in the spelling class and got": [65535, 0], "again then in the spelling class and got turned": [65535, 0], "then in the spelling class and got turned down": [65535, 0], "in the spelling class and got turned down by": [65535, 0], "the spelling class and got turned down by a": [65535, 0], "spelling class and got turned down by a succession": [65535, 0], "class and got turned down by a succession of": [65535, 0], "and got turned down by a succession of mere": [65535, 0], "got turned down by a succession of mere baby": [65535, 0], "turned down by a succession of mere baby words": [65535, 0], "down by a succession of mere baby words till": [65535, 0], "by a succession of mere baby words till he": [65535, 0], "a succession of mere baby words till he brought": [65535, 0], "succession of mere baby words till he brought up": [65535, 0], "of mere baby words till he brought up at": [65535, 0], "mere baby words till he brought up at the": [65535, 0], "baby words till he brought up at the foot": [65535, 0], "words till he brought up at the foot and": [65535, 0], "till he brought up at the foot and yielded": [65535, 0], "he brought up at the foot and yielded up": [65535, 0], "brought up at the foot and yielded up the": [65535, 0], "up at the foot and yielded up the pewter": [65535, 0], "at the foot and yielded up the pewter medal": [65535, 0], "the foot and yielded up the pewter medal which": [65535, 0], "foot and yielded up the pewter medal which he": [65535, 0], "and yielded up the pewter medal which he had": [65535, 0], "yielded up the pewter medal which he had worn": [65535, 0], "up the pewter medal which he had worn with": [65535, 0], "the pewter medal which he had worn with ostentation": [65535, 0], "pewter medal which he had worn with ostentation for": [65535, 0], "medal which he had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday morning always found": [65535, 0], "morning found tom sawyer miserable monday morning always found him": [65535, 0], "found tom sawyer miserable monday morning always found him so": [65535, 0], "tom sawyer miserable monday morning always found him so because": [65535, 0], "sawyer miserable monday morning always found him so because it": [65535, 0], "miserable monday morning always found him so because it began": [65535, 0], "monday morning always found him so because it began another": [65535, 0], "morning always found him so because it began another week's": [65535, 0], "always found him so because it began another week's slow": [65535, 0], "found him so because it began another week's slow suffering": [65535, 0], "him so because it began another week's slow suffering in": [65535, 0], "so because it began another week's slow suffering in school": [65535, 0], "because it began another week's slow suffering in school he": [65535, 0], "it began another week's slow suffering in school he generally": [65535, 0], "began another week's slow suffering in school he generally began": [65535, 0], "another week's slow suffering in school he generally began that": [65535, 0], "week's slow suffering in school he generally began that day": [65535, 0], "slow suffering in school he generally began that day with": [65535, 0], "suffering in school he generally began that day with wishing": [65535, 0], "in school he generally began that day with wishing he": [65535, 0], "school he generally began that day with wishing he had": [65535, 0], "he generally began that day with wishing he had had": [65535, 0], "generally began that day with wishing he had had no": [65535, 0], "began that day with wishing he had had no intervening": [65535, 0], "that day with wishing he had had no intervening holiday": [65535, 0], "day with wishing he had had no intervening holiday it": [65535, 0], "with wishing he had had no intervening holiday it made": [65535, 0], "wishing he had had no intervening holiday it made the": [65535, 0], "he had had no intervening holiday it made the going": [65535, 0], "had had no intervening holiday it made the going into": [65535, 0], "had no intervening holiday it made the going into captivity": [65535, 0], "no intervening holiday it made the going into captivity and": [65535, 0], "intervening holiday it made the going into captivity and fetters": [65535, 0], "holiday it made the going into captivity and fetters again": [65535, 0], "it made the going into captivity and fetters again so": [65535, 0], "made the going into captivity and fetters again so much": [65535, 0], "the going into captivity and fetters again so much more": [65535, 0], "going into captivity and fetters again so much more odious": [65535, 0], "into captivity and fetters again so much more odious tom": [65535, 0], "captivity and fetters again so much more odious tom lay": [65535, 0], "and fetters again so much more odious tom lay thinking": [65535, 0], "fetters again so much more odious tom lay thinking presently": [65535, 0], "again so much more odious tom lay thinking presently it": [65535, 0], "so much more odious tom lay thinking presently it occurred": [65535, 0], "much more odious tom lay thinking presently it occurred to": [65535, 0], "more odious tom lay thinking presently it occurred to him": [65535, 0], "odious tom lay thinking presently it occurred to him that": [65535, 0], "tom lay thinking presently it occurred to him that he": [65535, 0], "lay thinking presently it occurred to him that he wished": [65535, 0], "thinking presently it occurred to him that he wished he": [65535, 0], "presently it occurred to him that he wished he was": [65535, 0], "it occurred to him that he wished he was sick": [65535, 0], "occurred to him that he wished he was sick then": [65535, 0], "to him that he wished he was sick then he": [65535, 0], "him that he wished he was sick then he could": [65535, 0], "that he wished he was sick then he could stay": [65535, 0], "he wished he was sick then he could stay home": [65535, 0], "wished he was sick then he could stay home from": [65535, 0], "he was sick then he could stay home from school": [65535, 0], "was sick then he could stay home from school here": [65535, 0], "sick then he could stay home from school here was": [65535, 0], "then he could stay home from school here was a": [65535, 0], "he could stay home from school here was a vague": [65535, 0], "could stay home from school here was a vague possibility": [65535, 0], "stay home from school here was a vague possibility he": [65535, 0], "home from school here was a vague possibility he canvassed": [65535, 0], "from school here was a vague possibility he canvassed his": [65535, 0], "school here was a vague possibility he canvassed his system": [65535, 0], "here was a vague possibility he canvassed his system no": [65535, 0], "was a vague possibility he canvassed his system no ailment": [65535, 0], "a vague possibility he canvassed his system no ailment was": [65535, 0], "vague possibility he canvassed his system no ailment was found": [65535, 0], "possibility he canvassed his system no ailment was found and": [65535, 0], "he canvassed his system no ailment was found and he": [65535, 0], "canvassed his system no ailment was found and he investigated": [65535, 0], "his system no ailment was found and he investigated again": [65535, 0], "system no ailment was found and he investigated again this": [65535, 0], "no ailment was found and he investigated again this time": [65535, 0], "ailment was found and he investigated again this time he": [65535, 0], "was found and he investigated again this time he thought": [65535, 0], "found and he investigated again this time he thought he": [65535, 0], "and he investigated again this time he thought he could": [65535, 0], "he investigated again this time he thought he could detect": [65535, 0], "investigated again this time he thought he could detect colicky": [65535, 0], "again this time he thought he could detect colicky symptoms": [65535, 0], "this time he thought he could detect colicky symptoms and": [65535, 0], "time he thought he could detect colicky symptoms and he": [65535, 0], "he thought he could detect colicky symptoms and he began": [65535, 0], "thought he could detect colicky symptoms and he began to": [65535, 0], "he could detect colicky symptoms and he began to encourage": [65535, 0], "could detect colicky symptoms and he began to encourage them": [65535, 0], "detect colicky symptoms and he began to encourage them with": [65535, 0], "colicky symptoms and he began to encourage them with considerable": [65535, 0], "symptoms and he began to encourage them with considerable hope": [65535, 0], "and he began to encourage them with considerable hope but": [65535, 0], "he began to encourage them with considerable hope but they": [65535, 0], "began to encourage them with considerable hope but they soon": [65535, 0], "to encourage them with considerable hope but they soon grew": [65535, 0], "encourage them with considerable hope but they soon grew feeble": [65535, 0], "them with considerable hope but they soon grew feeble and": [65535, 0], "with considerable hope but they soon grew feeble and presently": [65535, 0], "considerable hope but they soon grew feeble and presently died": [65535, 0], "hope but they soon grew feeble and presently died wholly": [65535, 0], "but they soon grew feeble and presently died wholly away": [65535, 0], "they soon grew feeble and presently died wholly away he": [65535, 0], "soon grew feeble and presently died wholly away he reflected": [65535, 0], "grew feeble and presently died wholly away he reflected further": [65535, 0], "feeble and presently died wholly away he reflected further suddenly": [65535, 0], "and presently died wholly away he reflected further suddenly he": [65535, 0], "presently died wholly away he reflected further suddenly he discovered": [65535, 0], "died wholly away he reflected further suddenly he discovered something": [65535, 0], "wholly away he reflected further suddenly he discovered something one": [65535, 0], "away he reflected further suddenly he discovered something one of": [65535, 0], "he reflected further suddenly he discovered something one of his": [65535, 0], "reflected further suddenly he discovered something one of his upper": [65535, 0], "further suddenly he discovered something one of his upper front": [65535, 0], "suddenly he discovered something one of his upper front teeth": [65535, 0], "he discovered something one of his upper front teeth was": [65535, 0], "discovered something one of his upper front teeth was loose": [65535, 0], "something one of his upper front teeth was loose this": [65535, 0], "one of his upper front teeth was loose this was": [65535, 0], "of his upper front teeth was loose this was lucky": [65535, 0], "his upper front teeth was loose this was lucky he": [65535, 0], "upper front teeth was loose this was lucky he was": [65535, 0], "front teeth was loose this was lucky he was about": [65535, 0], "teeth was loose this was lucky he was about to": [65535, 0], "was loose this was lucky he was about to begin": [65535, 0], "loose this was lucky he was about to begin to": [65535, 0], "this was lucky he was about to begin to groan": [65535, 0], "was lucky he was about to begin to groan as": [65535, 0], "lucky he was about to begin to groan as a": [65535, 0], "he was about to begin to groan as a starter": [65535, 0], "was about to begin to groan as a starter as": [65535, 0], "about to begin to groan as a starter as he": [65535, 0], "to begin to groan as a starter as he called": [65535, 0], "begin to groan as a starter as he called it": [65535, 0], "to groan as a starter as he called it when": [65535, 0], "groan as a starter as he called it when it": [65535, 0], "as a starter as he called it when it occurred": [65535, 0], "a starter as he called it when it occurred to": [65535, 0], "starter as he called it when it occurred to him": [65535, 0], "as he called it when it occurred to him that": [65535, 0], "he called it when it occurred to him that if": [65535, 0], "called it when it occurred to him that if he": [65535, 0], "it when it occurred to him that if he came": [65535, 0], "when it occurred to him that if he came into": [65535, 0], "it occurred to him that if he came into court": [65535, 0], "occurred to him that if he came into court with": [65535, 0], "to him that if he came into court with that": [65535, 0], "him that if he came into court with that argument": [65535, 0], "that if he came into court with that argument his": [65535, 0], "if he came into court with that argument his aunt": [65535, 0], "he came into court with that argument his aunt would": [65535, 0], "came into court with that argument his aunt would pull": [65535, 0], "into court with that argument his aunt would pull it": [65535, 0], "court with that argument his aunt would pull it out": [65535, 0], "with that argument his aunt would pull it out and": [65535, 0], "that argument his aunt would pull it out and that": [65535, 0], "argument his aunt would pull it out and that would": [65535, 0], "his aunt would pull it out and that would hurt": [65535, 0], "aunt would pull it out and that would hurt so": [65535, 0], "would pull it out and that would hurt so he": [65535, 0], "pull it out and that would hurt so he thought": [65535, 0], "it out and that would hurt so he thought he": [65535, 0], "out and that would hurt so he thought he would": [65535, 0], "and that would hurt so he thought he would hold": [65535, 0], "that would hurt so he thought he would hold the": [65535, 0], "would hurt so he thought he would hold the tooth": [65535, 0], "hurt so he thought he would hold the tooth in": [65535, 0], "so he thought he would hold the tooth in reserve": [65535, 0], "he thought he would hold the tooth in reserve for": [65535, 0], "thought he would hold the tooth in reserve for the": [65535, 0], "he would hold the tooth in reserve for the present": [65535, 0], "would hold the tooth in reserve for the present and": [65535, 0], "hold the tooth in reserve for the present and seek": [65535, 0], "the tooth in reserve for the present and seek further": [65535, 0], "tooth in reserve for the present and seek further nothing": [65535, 0], "in reserve for the present and seek further nothing offered": [65535, 0], "reserve for the present and seek further nothing offered for": [65535, 0], "for the present and seek further nothing offered for some": [65535, 0], "the present and seek further nothing offered for some little": [65535, 0], "present and seek further nothing offered for some little time": [65535, 0], "and seek further nothing offered for some little time and": [65535, 0], "seek further nothing offered for some little time and then": [65535, 0], "further nothing offered for some little time and then he": [65535, 0], "nothing offered for some little time and then he remembered": [65535, 0], "offered for some little time and then he remembered hearing": [65535, 0], "for some little time and then he remembered hearing the": [65535, 0], "some little time and then he remembered hearing the doctor": [65535, 0], "little time and then he remembered hearing the doctor tell": [65535, 0], "time and then he remembered hearing the doctor tell about": [65535, 0], "and then he remembered hearing the doctor tell about a": [65535, 0], "then he remembered hearing the doctor tell about a certain": [65535, 0], "he remembered hearing the doctor tell about a certain thing": [65535, 0], "remembered hearing the doctor tell about a certain thing that": [65535, 0], "hearing the doctor tell about a certain thing that laid": [65535, 0], "the doctor tell about a certain thing that laid up": [65535, 0], "doctor tell about a certain thing that laid up a": [65535, 0], "tell about a certain thing that laid up a patient": [65535, 0], "about a certain thing that laid up a patient for": [65535, 0], "a certain thing that laid up a patient for two": [65535, 0], "certain thing that laid up a patient for two or": [65535, 0], "thing that laid up a patient for two or three": [65535, 0], "that laid up a patient for two or three weeks": [65535, 0], "laid up a patient for two or three weeks and": [65535, 0], "up a patient for two or three weeks and threatened": [65535, 0], "a patient for two or three weeks and threatened to": [65535, 0], "patient for two or three weeks and threatened to make": [65535, 0], "for two or three weeks and threatened to make him": [65535, 0], "two or three weeks and threatened to make him lose": [65535, 0], "or three weeks and threatened to make him lose a": [65535, 0], "three weeks and threatened to make him lose a finger": [65535, 0], "weeks and threatened to make him lose a finger so": [65535, 0], "and threatened to make him lose a finger so the": [65535, 0], "threatened to make him lose a finger so the boy": [65535, 0], "to make him lose a finger so the boy eagerly": [65535, 0], "make him lose a finger so the boy eagerly drew": [65535, 0], "him lose a finger so the boy eagerly drew his": [65535, 0], "lose a finger so the boy eagerly drew his sore": [65535, 0], "a finger so the boy eagerly drew his sore toe": [65535, 0], "finger so the boy eagerly drew his sore toe from": [65535, 0], "so the boy eagerly drew his sore toe from under": [65535, 0], "the boy eagerly drew his sore toe from under the": [65535, 0], "boy eagerly drew his sore toe from under the sheet": [65535, 0], "eagerly drew his sore toe from under the sheet and": [65535, 0], "drew his sore toe from under the sheet and held": [65535, 0], "his sore toe from under the sheet and held it": [65535, 0], "sore toe from under the sheet and held it up": [65535, 0], "toe from under the sheet and held it up for": [65535, 0], "from under the sheet and held it up for inspection": [65535, 0], "under the sheet and held it up for inspection but": [65535, 0], "the sheet and held it up for inspection but now": [65535, 0], "sheet and held it up for inspection but now he": [65535, 0], "and held it up for inspection but now he did": [65535, 0], "held it up for inspection but now he did not": [65535, 0], "it up for inspection but now he did not know": [65535, 0], "up for inspection but now he did not know the": [65535, 0], "for inspection but now he did not know the necessary": [65535, 0], "inspection but now he did not know the necessary symptoms": [65535, 0], "but now he did not know the necessary symptoms however": [65535, 0], "now he did not know the necessary symptoms however it": [65535, 0], "he did not know the necessary symptoms however it seemed": [65535, 0], "did not know the necessary symptoms however it seemed well": [65535, 0], "not know the necessary symptoms however it seemed well worth": [65535, 0], "know the necessary symptoms however it seemed well worth while": [65535, 0], "the necessary symptoms however it seemed well worth while to": [65535, 0], "necessary symptoms however it seemed well worth while to chance": [65535, 0], "symptoms however it seemed well worth while to chance it": [65535, 0], "however it seemed well worth while to chance it so": [65535, 0], "it seemed well worth while to chance it so he": [65535, 0], "seemed well worth while to chance it so he fell": [65535, 0], "well worth while to chance it so he fell to": [65535, 0], "worth while to chance it so he fell to groaning": [65535, 0], "while to chance it so he fell to groaning with": [65535, 0], "to chance it so he fell to groaning with considerable": [65535, 0], "chance it so he fell to groaning with considerable spirit": [65535, 0], "it so he fell to groaning with considerable spirit but": [65535, 0], "so he fell to groaning with considerable spirit but sid": [65535, 0], "he fell to groaning with considerable spirit but sid slept": [65535, 0], "fell to groaning with considerable spirit but sid slept on": [65535, 0], "to groaning with considerable spirit but sid slept on unconscious": [65535, 0], "groaning with considerable spirit but sid slept on unconscious tom": [65535, 0], "with considerable spirit but sid slept on unconscious tom groaned": [65535, 0], "considerable spirit but sid slept on unconscious tom groaned louder": [65535, 0], "spirit but sid slept on unconscious tom groaned louder and": [65535, 0], "but sid slept on unconscious tom groaned louder and fancied": [65535, 0], "sid slept on unconscious tom groaned louder and fancied that": [65535, 0], "slept on unconscious tom groaned louder and fancied that he": [65535, 0], "on unconscious tom groaned louder and fancied that he began": [65535, 0], "unconscious tom groaned louder and fancied that he began to": [65535, 0], "tom groaned louder and fancied that he began to feel": [65535, 0], "groaned louder and fancied that he began to feel pain": [65535, 0], "louder and fancied that he began to feel pain in": [65535, 0], "and fancied that he began to feel pain in the": [65535, 0], "fancied that he began to feel pain in the toe": [65535, 0], "that he began to feel pain in the toe no": [65535, 0], "he began to feel pain in the toe no result": [65535, 0], "began to feel pain in the toe no result from": [65535, 0], "to feel pain in the toe no result from sid": [65535, 0], "feel pain in the toe no result from sid tom": [65535, 0], "pain in the toe no result from sid tom was": [65535, 0], "in the toe no result from sid tom was panting": [65535, 0], "the toe no result from sid tom was panting with": [65535, 0], "toe no result from sid tom was panting with his": [65535, 0], "no result from sid tom was panting with his exertions": [65535, 0], "result from sid tom was panting with his exertions by": [65535, 0], "from sid tom was panting with his exertions by this": [65535, 0], "sid tom was panting with his exertions by this time": [65535, 0], "tom was panting with his exertions by this time he": [65535, 0], "was panting with his exertions by this time he took": [65535, 0], "panting with his exertions by this time he took a": [65535, 0], "with his exertions by this time he took a rest": [65535, 0], "his exertions by this time he took a rest and": [65535, 0], "exertions by this time he took a rest and then": [65535, 0], "by this time he took a rest and then swelled": [65535, 0], "this time he took a rest and then swelled himself": [65535, 0], "time he took a rest and then swelled himself up": [65535, 0], "he took a rest and then swelled himself up and": [65535, 0], "took a rest and then swelled himself up and fetched": [65535, 0], "a rest and then swelled himself up and fetched a": [65535, 0], "rest and then swelled himself up and fetched a succession": [65535, 0], "and then swelled himself up and fetched a succession of": [65535, 0], "then swelled himself up and fetched a succession of admirable": [65535, 0], "swelled himself up and fetched a succession of admirable groans": [65535, 0], "himself up and fetched a succession of admirable groans sid": [65535, 0], "up and fetched a succession of admirable groans sid snored": [65535, 0], "and fetched a succession of admirable groans sid snored on": [65535, 0], "fetched a succession of admirable groans sid snored on tom": [65535, 0], "a succession of admirable groans sid snored on tom was": [65535, 0], "succession of admirable groans sid snored on tom was aggravated": [65535, 0], "of admirable groans sid snored on tom was aggravated he": [65535, 0], "admirable groans sid snored on tom was aggravated he said": [65535, 0], "groans sid snored on tom was aggravated he said sid": [65535, 0], "sid snored on tom was aggravated he said sid sid": [65535, 0], "snored on tom was aggravated he said sid sid and": [65535, 0], "on tom was aggravated he said sid sid and shook": [65535, 0], "tom was aggravated he said sid sid and shook him": [65535, 0], "was aggravated he said sid sid and shook him this": [65535, 0], "aggravated he said sid sid and shook him this course": [65535, 0], "he said sid sid and shook him this course worked": [65535, 0], "said sid sid and shook him this course worked well": [65535, 0], "sid sid and shook him this course worked well and": [65535, 0], "sid and shook him this course worked well and tom": [65535, 0], "and shook him this course worked well and tom began": [65535, 0], "shook him this course worked well and tom began to": [65535, 0], "him this course worked well and tom began to groan": [65535, 0], "this course worked well and tom began to groan again": [65535, 0], "course worked well and tom began to groan again sid": [65535, 0], "worked well and tom began to groan again sid yawned": [65535, 0], "well and tom began to groan again sid yawned stretched": [65535, 0], "and tom began to groan again sid yawned stretched then": [65535, 0], "tom began to groan again sid yawned stretched then brought": [65535, 0], "began to groan again sid yawned stretched then brought himself": [65535, 0], "to groan again sid yawned stretched then brought himself up": [65535, 0], "groan again sid yawned stretched then brought himself up on": [65535, 0], "again sid yawned stretched then brought himself up on his": [65535, 0], "sid yawned stretched then brought himself up on his elbow": [65535, 0], "yawned stretched then brought himself up on his elbow with": [65535, 0], "stretched then brought himself up on his elbow with a": [65535, 0], "then brought himself up on his elbow with a snort": [65535, 0], "brought himself up on his elbow with a snort and": [65535, 0], "himself up on his elbow with a snort and began": [65535, 0], "up on his elbow with a snort and began to": [65535, 0], "on his elbow with a snort and began to stare": [65535, 0], "his elbow with a snort and began to stare at": [65535, 0], "elbow with a snort and began to stare at tom": [65535, 0], "with a snort and began to stare at tom tom": [65535, 0], "a snort and began to stare at tom tom went": [65535, 0], "snort and began to stare at tom tom went on": [65535, 0], "and began to stare at tom tom went on groaning": [65535, 0], "began to stare at tom tom went on groaning sid": [65535, 0], "to stare at tom tom went on groaning sid said": [65535, 0], "stare at tom tom went on groaning sid said tom": [65535, 0], "at tom tom went on groaning sid said tom say": [65535, 0], "tom tom went on groaning sid said tom say tom": [65535, 0], "tom went on groaning sid said tom say tom no": [65535, 0], "went on groaning sid said tom say tom no response": [65535, 0], "on groaning sid said tom say tom no response here": [65535, 0], "groaning sid said tom say tom no response here tom": [65535, 0], "sid said tom say tom no response here tom tom": [65535, 0], "said tom say tom no response here tom tom what": [65535, 0], "tom say tom no response here tom tom what is": [65535, 0], "say tom no response here tom tom what is the": [65535, 0], "tom no response here tom tom what is the matter": [65535, 0], "no response here tom tom what is the matter tom": [65535, 0], "response here tom tom what is the matter tom and": [65535, 0], "here tom tom what is the matter tom and he": [65535, 0], "tom tom what is the matter tom and he shook": [65535, 0], "tom what is the matter tom and he shook him": [65535, 0], "what is the matter tom and he shook him and": [65535, 0], "is the matter tom and he shook him and looked": [65535, 0], "the matter tom and he shook him and looked in": [65535, 0], "matter tom and he shook him and looked in his": [65535, 0], "tom and he shook him and looked in his face": [65535, 0], "and he shook him and looked in his face anxiously": [65535, 0], "he shook him and looked in his face anxiously tom": [65535, 0], "shook him and looked in his face anxiously tom moaned": [65535, 0], "him and looked in his face anxiously tom moaned out": [65535, 0], "and looked in his face anxiously tom moaned out oh": [65535, 0], "looked in his face anxiously tom moaned out oh don't": [65535, 0], "in his face anxiously tom moaned out oh don't sid": [65535, 0], "his face anxiously tom moaned out oh don't sid don't": [65535, 0], "face anxiously tom moaned out oh don't sid don't joggle": [65535, 0], "anxiously tom moaned out oh don't sid don't joggle me": [65535, 0], "tom moaned out oh don't sid don't joggle me why": [65535, 0], "moaned out oh don't sid don't joggle me why what's": [65535, 0], "out oh don't sid don't joggle me why what's the": [65535, 0], "oh don't sid don't joggle me why what's the matter": [65535, 0], "don't sid don't joggle me why what's the matter tom": [65535, 0], "sid don't joggle me why what's the matter tom i": [65535, 0], "don't joggle me why what's the matter tom i must": [65535, 0], "joggle me why what's the matter tom i must call": [65535, 0], "me why what's the matter tom i must call auntie": [65535, 0], "why what's the matter tom i must call auntie no": [65535, 0], "what's the matter tom i must call auntie no never": [65535, 0], "the matter tom i must call auntie no never mind": [65535, 0], "matter tom i must call auntie no never mind it'll": [65535, 0], "tom i must call auntie no never mind it'll be": [65535, 0], "i must call auntie no never mind it'll be over": [65535, 0], "must call auntie no never mind it'll be over by": [65535, 0], "call auntie no never mind it'll be over by and": [65535, 0], "auntie no never mind it'll be over by and by": [65535, 0], "no never mind it'll be over by and by maybe": [65535, 0], "never mind it'll be over by and by maybe don't": [65535, 0], "mind it'll be over by and by maybe don't call": [65535, 0], "it'll be over by and by maybe don't call anybody": [65535, 0], "be over by and by maybe don't call anybody but": [65535, 0], "over by and by maybe don't call anybody but i": [65535, 0], "by and by maybe don't call anybody but i must": [65535, 0], "and by maybe don't call anybody but i must don't": [65535, 0], "by maybe don't call anybody but i must don't groan": [65535, 0], "maybe don't call anybody but i must don't groan so": [65535, 0], "don't call anybody but i must don't groan so tom": [65535, 0], "call anybody but i must don't groan so tom it's": [65535, 0], "anybody but i must don't groan so tom it's awful": [65535, 0], "but i must don't groan so tom it's awful how": [65535, 0], "i must don't groan so tom it's awful how long": [65535, 0], "must don't groan so tom it's awful how long you": [65535, 0], "don't groan so tom it's awful how long you been": [65535, 0], "groan so tom it's awful how long you been this": [65535, 0], "so tom it's awful how long you been this way": [65535, 0], "tom it's awful how long you been this way hours": [65535, 0], "it's awful how long you been this way hours ouch": [65535, 0], "awful how long you been this way hours ouch oh": [65535, 0], "how long you been this way hours ouch oh don't": [65535, 0], "long you been this way hours ouch oh don't stir": [65535, 0], "you been this way hours ouch oh don't stir so": [65535, 0], "been this way hours ouch oh don't stir so sid": [65535, 0], "this way hours ouch oh don't stir so sid you'll": [65535, 0], "way hours ouch oh don't stir so sid you'll kill": [65535, 0], "hours ouch oh don't stir so sid you'll kill me": [65535, 0], "ouch oh don't stir so sid you'll kill me tom": [65535, 0], "oh don't stir so sid you'll kill me tom why": [65535, 0], "don't stir so sid you'll kill me tom why didn't": [65535, 0], "stir so sid you'll kill me tom why didn't you": [65535, 0], "so sid you'll kill me tom why didn't you wake": [65535, 0], "sid you'll kill me tom why didn't you wake me": [65535, 0], "you'll kill me tom why didn't you wake me sooner": [65535, 0], "kill me tom why didn't you wake me sooner oh": [65535, 0], "me tom why didn't you wake me sooner oh tom": [65535, 0], "tom why didn't you wake me sooner oh tom don't": [65535, 0], "why didn't you wake me sooner oh tom don't it": [65535, 0], "didn't you wake me sooner oh tom don't it makes": [65535, 0], "you wake me sooner oh tom don't it makes my": [65535, 0], "wake me sooner oh tom don't it makes my flesh": [65535, 0], "me sooner oh tom don't it makes my flesh crawl": [65535, 0], "sooner oh tom don't it makes my flesh crawl to": [65535, 0], "oh tom don't it makes my flesh crawl to hear": [65535, 0], "tom don't it makes my flesh crawl to hear you": [65535, 0], "don't it makes my flesh crawl to hear you tom": [65535, 0], "it makes my flesh crawl to hear you tom what": [65535, 0], "makes my flesh crawl to hear you tom what is": [65535, 0], "my flesh crawl to hear you tom what is the": [65535, 0], "flesh crawl to hear you tom what is the matter": [65535, 0], "crawl to hear you tom what is the matter i": [65535, 0], "to hear you tom what is the matter i forgive": [65535, 0], "hear you tom what is the matter i forgive you": [65535, 0], "you tom what is the matter i forgive you everything": [65535, 0], "tom what is the matter i forgive you everything sid": [65535, 0], "what is the matter i forgive you everything sid groan": [65535, 0], "is the matter i forgive you everything sid groan everything": [65535, 0], "the matter i forgive you everything sid groan everything you've": [65535, 0], "matter i forgive you everything sid groan everything you've ever": [65535, 0], "i forgive you everything sid groan everything you've ever done": [65535, 0], "forgive you everything sid groan everything you've ever done to": [65535, 0], "you everything sid groan everything you've ever done to me": [65535, 0], "everything sid groan everything you've ever done to me when": [65535, 0], "sid groan everything you've ever done to me when i'm": [65535, 0], "groan everything you've ever done to me when i'm gone": [65535, 0], "everything you've ever done to me when i'm gone oh": [65535, 0], "you've ever done to me when i'm gone oh tom": [65535, 0], "ever done to me when i'm gone oh tom you": [65535, 0], "done to me when i'm gone oh tom you ain't": [65535, 0], "to me when i'm gone oh tom you ain't dying": [65535, 0], "me when i'm gone oh tom you ain't dying are": [65535, 0], "when i'm gone oh tom you ain't dying are you": [65535, 0], "i'm gone oh tom you ain't dying are you don't": [65535, 0], "gone oh tom you ain't dying are you don't tom": [65535, 0], "oh tom you ain't dying are you don't tom oh": [65535, 0], "tom you ain't dying are you don't tom oh don't": [65535, 0], "you ain't dying are you don't tom oh don't maybe": [65535, 0], "ain't dying are you don't tom oh don't maybe i": [65535, 0], "dying are you don't tom oh don't maybe i forgive": [65535, 0], "are you don't tom oh don't maybe i forgive everybody": [65535, 0], "you don't tom oh don't maybe i forgive everybody sid": [65535, 0], "don't tom oh don't maybe i forgive everybody sid groan": [65535, 0], "tom oh don't maybe i forgive everybody sid groan tell": [65535, 0], "oh don't maybe i forgive everybody sid groan tell 'em": [65535, 0], "don't maybe i forgive everybody sid groan tell 'em so": [65535, 0], "maybe i forgive everybody sid groan tell 'em so sid": [65535, 0], "i forgive everybody sid groan tell 'em so sid and": [65535, 0], "forgive everybody sid groan tell 'em so sid and sid": [65535, 0], "everybody sid groan tell 'em so sid and sid you": [65535, 0], "sid groan tell 'em so sid and sid you give": [65535, 0], "groan tell 'em so sid and sid you give my": [65535, 0], "tell 'em so sid and sid you give my window": [65535, 0], "'em so sid and sid you give my window sash": [65535, 0], "so sid and sid you give my window sash and": [65535, 0], "sid and sid you give my window sash and my": [65535, 0], "and sid you give my window sash and my cat": [65535, 0], "sid you give my window sash and my cat with": [65535, 0], "you give my window sash and my cat with one": [65535, 0], "give my window sash and my cat with one eye": [65535, 0], "my window sash and my cat with one eye to": [65535, 0], "window sash and my cat with one eye to that": [65535, 0], "sash and my cat with one eye to that new": [65535, 0], "and my cat with one eye to that new girl": [65535, 0], "my cat with one eye to that new girl that's": [65535, 0], "cat with one eye to that new girl that's come": [65535, 0], "with one eye to that new girl that's come to": [65535, 0], "one eye to that new girl that's come to town": [65535, 0], "eye to that new girl that's come to town and": [65535, 0], "to that new girl that's come to town and tell": [65535, 0], "that new girl that's come to town and tell her": [65535, 0], "new girl that's come to town and tell her but": [65535, 0], "girl that's come to town and tell her but sid": [65535, 0], "that's come to town and tell her but sid had": [65535, 0], "come to town and tell her but sid had snatched": [65535, 0], "to town and tell her but sid had snatched his": [65535, 0], "town and tell her but sid had snatched his clothes": [65535, 0], "and tell her but sid had snatched his clothes and": [65535, 0], "tell her but sid had snatched his clothes and gone": [65535, 0], "her but sid had snatched his clothes and gone tom": [65535, 0], "but sid had snatched his clothes and gone tom was": [65535, 0], "sid had snatched his clothes and gone tom was suffering": [65535, 0], "had snatched his clothes and gone tom was suffering in": [65535, 0], "snatched his clothes and gone tom was suffering in reality": [65535, 0], "his clothes and gone tom was suffering in reality now": [65535, 0], "clothes and gone tom was suffering in reality now so": [65535, 0], "and gone tom was suffering in reality now so handsomely": [65535, 0], "gone tom was suffering in reality now so handsomely was": [65535, 0], "tom was suffering in reality now so handsomely was his": [65535, 0], "was suffering in reality now so handsomely was his imagination": [65535, 0], "suffering in reality now so handsomely was his imagination working": [65535, 0], "in reality now so handsomely was his imagination working and": [65535, 0], "reality now so handsomely was his imagination working and so": [65535, 0], "now so handsomely was his imagination working and so his": [65535, 0], "so handsomely was his imagination working and so his groans": [65535, 0], "handsomely was his imagination working and so his groans had": [65535, 0], "was his imagination working and so his groans had gathered": [65535, 0], "his imagination working and so his groans had gathered quite": [65535, 0], "imagination working and so his groans had gathered quite a": [65535, 0], "working and so his groans had gathered quite a genuine": [65535, 0], "and so his groans had gathered quite a genuine tone": [65535, 0], "so his groans had gathered quite a genuine tone sid": [65535, 0], "his groans had gathered quite a genuine tone sid flew": [65535, 0], "groans had gathered quite a genuine tone sid flew down": [65535, 0], "had gathered quite a genuine tone sid flew down stairs": [65535, 0], "gathered quite a genuine tone sid flew down stairs and": [65535, 0], "quite a genuine tone sid flew down stairs and said": [65535, 0], "a genuine tone sid flew down stairs and said oh": [65535, 0], "genuine tone sid flew down stairs and said oh aunt": [65535, 0], "tone sid flew down stairs and said oh aunt polly": [65535, 0], "sid flew down stairs and said oh aunt polly come": [65535, 0], "flew down stairs and said oh aunt polly come tom's": [65535, 0], "down stairs and said oh aunt polly come tom's dying": [65535, 0], "stairs and said oh aunt polly come tom's dying dying": [65535, 0], "and said oh aunt polly come tom's dying dying yes'm": [65535, 0], "said oh aunt polly come tom's dying dying yes'm don't": [65535, 0], "oh aunt polly come tom's dying dying yes'm don't wait": [65535, 0], "aunt polly come tom's dying dying yes'm don't wait come": [65535, 0], "polly come tom's dying dying yes'm don't wait come quick": [65535, 0], "come tom's dying dying yes'm don't wait come quick rubbage": [65535, 0], "tom's dying dying yes'm don't wait come quick rubbage i": [65535, 0], "dying dying yes'm don't wait come quick rubbage i don't": [65535, 0], "dying yes'm don't wait come quick rubbage i don't believe": [65535, 0], "yes'm don't wait come quick rubbage i don't believe it": [65535, 0], "don't wait come quick rubbage i don't believe it but": [65535, 0], "wait come quick rubbage i don't believe it but she": [65535, 0], "come quick rubbage i don't believe it but she fled": [65535, 0], "quick rubbage i don't believe it but she fled up": [65535, 0], "rubbage i don't believe it but she fled up stairs": [65535, 0], "i don't believe it but she fled up stairs nevertheless": [65535, 0], "don't believe it but she fled up stairs nevertheless with": [65535, 0], "believe it but she fled up stairs nevertheless with sid": [65535, 0], "it but she fled up stairs nevertheless with sid and": [65535, 0], "but she fled up stairs nevertheless with sid and mary": [65535, 0], "she fled up stairs nevertheless with sid and mary at": [65535, 0], "fled up stairs nevertheless with sid and mary at her": [65535, 0], "up stairs nevertheless with sid and mary at her heels": [65535, 0], "stairs nevertheless with sid and mary at her heels and": [65535, 0], "nevertheless with sid and mary at her heels and her": [65535, 0], "with sid and mary at her heels and her face": [65535, 0], "sid and mary at her heels and her face grew": [65535, 0], "and mary at her heels and her face grew white": [65535, 0], "mary at her heels and her face grew white too": [65535, 0], "at her heels and her face grew white too and": [65535, 0], "her heels and her face grew white too and her": [65535, 0], "heels and her face grew white too and her lip": [65535, 0], "and her face grew white too and her lip trembled": [65535, 0], "her face grew white too and her lip trembled when": [65535, 0], "face grew white too and her lip trembled when she": [65535, 0], "grew white too and her lip trembled when she reached": [65535, 0], "white too and her lip trembled when she reached the": [65535, 0], "too and her lip trembled when she reached the bedside": [65535, 0], "and her lip trembled when she reached the bedside she": [65535, 0], "her lip trembled when she reached the bedside she gasped": [65535, 0], "lip trembled when she reached the bedside she gasped out": [65535, 0], "trembled when she reached the bedside she gasped out you": [65535, 0], "when she reached the bedside she gasped out you tom": [65535, 0], "she reached the bedside she gasped out you tom tom": [65535, 0], "reached the bedside she gasped out you tom tom what's": [65535, 0], "the bedside she gasped out you tom tom what's the": [65535, 0], "bedside she gasped out you tom tom what's the matter": [65535, 0], "she gasped out you tom tom what's the matter with": [65535, 0], "gasped out you tom tom what's the matter with you": [65535, 0], "out you tom tom what's the matter with you oh": [65535, 0], "you tom tom what's the matter with you oh auntie": [65535, 0], "tom tom what's the matter with you oh auntie i'm": [65535, 0], "tom what's the matter with you oh auntie i'm what's": [65535, 0], "what's the matter with you oh auntie i'm what's the": [65535, 0], "the matter with you oh auntie i'm what's the matter": [65535, 0], "matter with you oh auntie i'm what's the matter with": [65535, 0], "with you oh auntie i'm what's the matter with you": [65535, 0], "you oh auntie i'm what's the matter with you what": [65535, 0], "oh auntie i'm what's the matter with you what is": [65535, 0], "auntie i'm what's the matter with you what is the": [65535, 0], "i'm what's the matter with you what is the matter": [65535, 0], "what's the matter with you what is the matter with": [65535, 0], "the matter with you what is the matter with you": [65535, 0], "matter with you what is the matter with you child": [65535, 0], "with you what is the matter with you child oh": [65535, 0], "you what is the matter with you child oh auntie": [65535, 0], "what is the matter with you child oh auntie my": [65535, 0], "is the matter with you child oh auntie my sore": [65535, 0], "the matter with you child oh auntie my sore toe's": [65535, 0], "matter with you child oh auntie my sore toe's mortified": [65535, 0], "with you child oh auntie my sore toe's mortified the": [65535, 0], "you child oh auntie my sore toe's mortified the old": [65535, 0], "child oh auntie my sore toe's mortified the old lady": [65535, 0], "oh auntie my sore toe's mortified the old lady sank": [65535, 0], "auntie my sore toe's mortified the old lady sank down": [65535, 0], "my sore toe's mortified the old lady sank down into": [65535, 0], "sore toe's mortified the old lady sank down into a": [65535, 0], "toe's mortified the old lady sank down into a chair": [65535, 0], "mortified the old lady sank down into a chair and": [65535, 0], "the old lady sank down into a chair and laughed": [65535, 0], "old lady sank down into a chair and laughed a": [65535, 0], "lady sank down into a chair and laughed a little": [65535, 0], "sank down into a chair and laughed a little then": [65535, 0], "down into a chair and laughed a little then cried": [65535, 0], "into a chair and laughed a little then cried a": [65535, 0], "a chair and laughed a little then cried a little": [65535, 0], "chair and laughed a little then cried a little then": [65535, 0], "and laughed a little then cried a little then did": [65535, 0], "laughed a little then cried a little then did both": [65535, 0], "a little then cried a little then did both together": [65535, 0], "little then cried a little then did both together this": [65535, 0], "then cried a little then did both together this restored": [65535, 0], "cried a little then did both together this restored her": [65535, 0], "a little then did both together this restored her and": [65535, 0], "little then did both together this restored her and she": [65535, 0], "then did both together this restored her and she said": [65535, 0], "did both together this restored her and she said tom": [65535, 0], "both together this restored her and she said tom what": [65535, 0], "together this restored her and she said tom what a": [65535, 0], "this restored her and she said tom what a turn": [65535, 0], "restored her and she said tom what a turn you": [65535, 0], "her and she said tom what a turn you did": [65535, 0], "and she said tom what a turn you did give": [65535, 0], "she said tom what a turn you did give me": [65535, 0], "said tom what a turn you did give me now": [65535, 0], "tom what a turn you did give me now you": [65535, 0], "what a turn you did give me now you shut": [65535, 0], "a turn you did give me now you shut up": [65535, 0], "turn you did give me now you shut up that": [65535, 0], "you did give me now you shut up that nonsense": [65535, 0], "did give me now you shut up that nonsense and": [65535, 0], "give me now you shut up that nonsense and climb": [65535, 0], "me now you shut up that nonsense and climb out": [65535, 0], "now you shut up that nonsense and climb out of": [65535, 0], "you shut up that nonsense and climb out of this": [65535, 0], "shut up that nonsense and climb out of this the": [65535, 0], "up that nonsense and climb out of this the groans": [65535, 0], "that nonsense and climb out of this the groans ceased": [65535, 0], "nonsense and climb out of this the groans ceased and": [65535, 0], "and climb out of this the groans ceased and the": [65535, 0], "climb out of this the groans ceased and the pain": [65535, 0], "out of this the groans ceased and the pain vanished": [65535, 0], "of this the groans ceased and the pain vanished from": [65535, 0], "this the groans ceased and the pain vanished from the": [65535, 0], "the groans ceased and the pain vanished from the toe": [65535, 0], "groans ceased and the pain vanished from the toe the": [65535, 0], "ceased and the pain vanished from the toe the boy": [65535, 0], "and the pain vanished from the toe the boy felt": [65535, 0], "the pain vanished from the toe the boy felt a": [65535, 0], "pain vanished from the toe the boy felt a little": [65535, 0], "vanished from the toe the boy felt a little foolish": [65535, 0], "from the toe the boy felt a little foolish and": [65535, 0], "the toe the boy felt a little foolish and he": [65535, 0], "toe the boy felt a little foolish and he said": [65535, 0], "the boy felt a little foolish and he said aunt": [65535, 0], "boy felt a little foolish and he said aunt polly": [65535, 0], "felt a little foolish and he said aunt polly it": [65535, 0], "a little foolish and he said aunt polly it seemed": [65535, 0], "little foolish and he said aunt polly it seemed mortified": [65535, 0], "foolish and he said aunt polly it seemed mortified and": [65535, 0], "and he said aunt polly it seemed mortified and it": [65535, 0], "he said aunt polly it seemed mortified and it hurt": [65535, 0], "said aunt polly it seemed mortified and it hurt so": [65535, 0], "aunt polly it seemed mortified and it hurt so i": [65535, 0], "polly it seemed mortified and it hurt so i never": [65535, 0], "it seemed mortified and it hurt so i never minded": [65535, 0], "seemed mortified and it hurt so i never minded my": [65535, 0], "mortified and it hurt so i never minded my tooth": [65535, 0], "and it hurt so i never minded my tooth at": [65535, 0], "it hurt so i never minded my tooth at all": [65535, 0], "hurt so i never minded my tooth at all your": [65535, 0], "so i never minded my tooth at all your tooth": [65535, 0], "i never minded my tooth at all your tooth indeed": [65535, 0], "never minded my tooth at all your tooth indeed what's": [65535, 0], "minded my tooth at all your tooth indeed what's the": [65535, 0], "my tooth at all your tooth indeed what's the matter": [65535, 0], "tooth at all your tooth indeed what's the matter with": [65535, 0], "at all your tooth indeed what's the matter with your": [65535, 0], "all your tooth indeed what's the matter with your tooth": [65535, 0], "your tooth indeed what's the matter with your tooth one": [65535, 0], "tooth indeed what's the matter with your tooth one of": [65535, 0], "indeed what's the matter with your tooth one of them's": [65535, 0], "what's the matter with your tooth one of them's loose": [65535, 0], "the matter with your tooth one of them's loose and": [65535, 0], "matter with your tooth one of them's loose and it": [65535, 0], "with your tooth one of them's loose and it aches": [65535, 0], "your tooth one of them's loose and it aches perfectly": [65535, 0], "tooth one of them's loose and it aches perfectly awful": [65535, 0], "one of them's loose and it aches perfectly awful there": [65535, 0], "of them's loose and it aches perfectly awful there there": [65535, 0], "them's loose and it aches perfectly awful there there now": [65535, 0], "loose and it aches perfectly awful there there now don't": [65535, 0], "and it aches perfectly awful there there now don't begin": [65535, 0], "it aches perfectly awful there there now don't begin that": [65535, 0], "aches perfectly awful there there now don't begin that groaning": [65535, 0], "perfectly awful there there now don't begin that groaning again": [65535, 0], "awful there there now don't begin that groaning again open": [65535, 0], "there there now don't begin that groaning again open your": [65535, 0], "there now don't begin that groaning again open your mouth": [65535, 0], "now don't begin that groaning again open your mouth well": [65535, 0], "don't begin that groaning again open your mouth well your": [65535, 0], "begin that groaning again open your mouth well your tooth": [65535, 0], "that groaning again open your mouth well your tooth is": [65535, 0], "groaning again open your mouth well your tooth is loose": [65535, 0], "again open your mouth well your tooth is loose but": [65535, 0], "open your mouth well your tooth is loose but you're": [65535, 0], "your mouth well your tooth is loose but you're not": [65535, 0], "mouth well your tooth is loose but you're not going": [65535, 0], "well your tooth is loose but you're not going to": [65535, 0], "your tooth is loose but you're not going to die": [65535, 0], "tooth is loose but you're not going to die about": [65535, 0], "is loose but you're not going to die about that": [65535, 0], "loose but you're not going to die about that mary": [65535, 0], "but you're not going to die about that mary get": [65535, 0], "you're not going to die about that mary get me": [65535, 0], "not going to die about that mary get me a": [65535, 0], "going to die about that mary get me a silk": [65535, 0], "to die about that mary get me a silk thread": [65535, 0], "die about that mary get me a silk thread and": [65535, 0], "about that mary get me a silk thread and a": [65535, 0], "that mary get me a silk thread and a chunk": [65535, 0], "mary get me a silk thread and a chunk of": [65535, 0], "get me a silk thread and a chunk of fire": [65535, 0], "me a silk thread and a chunk of fire out": [65535, 0], "a silk thread and a chunk of fire out of": [65535, 0], "silk thread and a chunk of fire out of the": [65535, 0], "thread and a chunk of fire out of the kitchen": [65535, 0], "and a chunk of fire out of the kitchen tom": [65535, 0], "a chunk of fire out of the kitchen tom said": [65535, 0], "chunk of fire out of the kitchen tom said oh": [65535, 0], "of fire out of the kitchen tom said oh please": [65535, 0], "fire out of the kitchen tom said oh please auntie": [65535, 0], "out of the kitchen tom said oh please auntie don't": [65535, 0], "of the kitchen tom said oh please auntie don't pull": [65535, 0], "the kitchen tom said oh please auntie don't pull it": [65535, 0], "kitchen tom said oh please auntie don't pull it out": [65535, 0], "tom said oh please auntie don't pull it out it": [65535, 0], "said oh please auntie don't pull it out it don't": [65535, 0], "oh please auntie don't pull it out it don't hurt": [65535, 0], "please auntie don't pull it out it don't hurt any": [65535, 0], "auntie don't pull it out it don't hurt any more": [65535, 0], "don't pull it out it don't hurt any more i": [65535, 0], "pull it out it don't hurt any more i wish": [65535, 0], "it out it don't hurt any more i wish i": [65535, 0], "out it don't hurt any more i wish i may": [65535, 0], "it don't hurt any more i wish i may never": [65535, 0], "don't hurt any more i wish i may never stir": [65535, 0], "hurt any more i wish i may never stir if": [65535, 0], "any more i wish i may never stir if it": [65535, 0], "more i wish i may never stir if it does": [65535, 0], "i wish i may never stir if it does please": [65535, 0], "wish i may never stir if it does please don't": [65535, 0], "i may never stir if it does please don't auntie": [65535, 0], "may never stir if it does please don't auntie i": [65535, 0], "never stir if it does please don't auntie i don't": [65535, 0], "stir if it does please don't auntie i don't want": [65535, 0], "if it does please don't auntie i don't want to": [65535, 0], "it does please don't auntie i don't want to stay": [65535, 0], "does please don't auntie i don't want to stay home": [65535, 0], "please don't auntie i don't want to stay home from": [65535, 0], "don't auntie i don't want to stay home from school": [65535, 0], "auntie i don't want to stay home from school oh": [65535, 0], "i don't want to stay home from school oh you": [65535, 0], "don't want to stay home from school oh you don't": [65535, 0], "want to stay home from school oh you don't don't": [65535, 0], "to stay home from school oh you don't don't you": [65535, 0], "stay home from school oh you don't don't you so": [65535, 0], "home from school oh you don't don't you so all": [65535, 0], "from school oh you don't don't you so all this": [65535, 0], "school oh you don't don't you so all this row": [65535, 0], "oh you don't don't you so all this row was": [65535, 0], "you don't don't you so all this row was because": [65535, 0], "don't don't you so all this row was because you": [65535, 0], "don't you so all this row was because you thought": [65535, 0], "you so all this row was because you thought you'd": [65535, 0], "so all this row was because you thought you'd get": [65535, 0], "all this row was because you thought you'd get to": [65535, 0], "this row was because you thought you'd get to stay": [65535, 0], "row was because you thought you'd get to stay home": [65535, 0], "was because you thought you'd get to stay home from": [65535, 0], "because you thought you'd get to stay home from school": [65535, 0], "you thought you'd get to stay home from school and": [65535, 0], "thought you'd get to stay home from school and go": [65535, 0], "you'd get to stay home from school and go a": [65535, 0], "get to stay home from school and go a fishing": [65535, 0], "to stay home from school and go a fishing tom": [65535, 0], "stay home from school and go a fishing tom tom": [65535, 0], "home from school and go a fishing tom tom i": [65535, 0], "from school and go a fishing tom tom i love": [65535, 0], "school and go a fishing tom tom i love you": [65535, 0], "and go a fishing tom tom i love you so": [65535, 0], "go a fishing tom tom i love you so and": [65535, 0], "a fishing tom tom i love you so and you": [65535, 0], "fishing tom tom i love you so and you seem": [65535, 0], "tom tom i love you so and you seem to": [65535, 0], "tom i love you so and you seem to try": [65535, 0], "i love you so and you seem to try every": [65535, 0], "love you so and you seem to try every way": [65535, 0], "you so and you seem to try every way you": [65535, 0], "so and you seem to try every way you can": [65535, 0], "and you seem to try every way you can to": [65535, 0], "you seem to try every way you can to break": [65535, 0], "seem to try every way you can to break my": [65535, 0], "to try every way you can to break my old": [65535, 0], "try every way you can to break my old heart": [65535, 0], "every way you can to break my old heart with": [65535, 0], "way you can to break my old heart with your": [65535, 0], "you can to break my old heart with your outrageousness": [65535, 0], "can to break my old heart with your outrageousness by": [65535, 0], "to break my old heart with your outrageousness by this": [65535, 0], "break my old heart with your outrageousness by this time": [65535, 0], "my old heart with your outrageousness by this time the": [65535, 0], "old heart with your outrageousness by this time the dental": [65535, 0], "heart with your outrageousness by this time the dental instruments": [65535, 0], "with your outrageousness by this time the dental instruments were": [65535, 0], "your outrageousness by this time the dental instruments were ready": [65535, 0], "outrageousness by this time the dental instruments were ready the": [65535, 0], "by this time the dental instruments were ready the old": [65535, 0], "this time the dental instruments were ready the old lady": [65535, 0], "time the dental instruments were ready the old lady made": [65535, 0], "the dental instruments were ready the old lady made one": [65535, 0], "dental instruments were ready the old lady made one end": [65535, 0], "instruments were ready the old lady made one end of": [65535, 0], "were ready the old lady made one end of the": [65535, 0], "ready the old lady made one end of the silk": [65535, 0], "the old lady made one end of the silk thread": [65535, 0], "old lady made one end of the silk thread fast": [65535, 0], "lady made one end of the silk thread fast to": [65535, 0], "made one end of the silk thread fast to tom's": [65535, 0], "one end of the silk thread fast to tom's tooth": [65535, 0], "end of the silk thread fast to tom's tooth with": [65535, 0], "of the silk thread fast to tom's tooth with a": [65535, 0], "the silk thread fast to tom's tooth with a loop": [65535, 0], "silk thread fast to tom's tooth with a loop and": [65535, 0], "thread fast to tom's tooth with a loop and tied": [65535, 0], "fast to tom's tooth with a loop and tied the": [65535, 0], "to tom's tooth with a loop and tied the other": [65535, 0], "tom's tooth with a loop and tied the other to": [65535, 0], "tooth with a loop and tied the other to the": [65535, 0], "with a loop and tied the other to the bedpost": [65535, 0], "a loop and tied the other to the bedpost then": [65535, 0], "loop and tied the other to the bedpost then she": [65535, 0], "and tied the other to the bedpost then she seized": [65535, 0], "tied the other to the bedpost then she seized the": [65535, 0], "the other to the bedpost then she seized the chunk": [65535, 0], "other to the bedpost then she seized the chunk of": [65535, 0], "to the bedpost then she seized the chunk of fire": [65535, 0], "the bedpost then she seized the chunk of fire and": [65535, 0], "bedpost then she seized the chunk of fire and suddenly": [65535, 0], "then she seized the chunk of fire and suddenly thrust": [65535, 0], "she seized the chunk of fire and suddenly thrust it": [65535, 0], "seized the chunk of fire and suddenly thrust it almost": [65535, 0], "the chunk of fire and suddenly thrust it almost into": [65535, 0], "chunk of fire and suddenly thrust it almost into the": [65535, 0], "of fire and suddenly thrust it almost into the boy's": [65535, 0], "fire and suddenly thrust it almost into the boy's face": [65535, 0], "and suddenly thrust it almost into the boy's face the": [65535, 0], "suddenly thrust it almost into the boy's face the tooth": [65535, 0], "thrust it almost into the boy's face the tooth hung": [65535, 0], "it almost into the boy's face the tooth hung dangling": [65535, 0], "almost into the boy's face the tooth hung dangling by": [65535, 0], "into the boy's face the tooth hung dangling by the": [65535, 0], "the boy's face the tooth hung dangling by the bedpost": [65535, 0], "boy's face the tooth hung dangling by the bedpost now": [65535, 0], "face the tooth hung dangling by the bedpost now but": [65535, 0], "the tooth hung dangling by the bedpost now but all": [65535, 0], "tooth hung dangling by the bedpost now but all trials": [65535, 0], "hung dangling by the bedpost now but all trials bring": [65535, 0], "dangling by the bedpost now but all trials bring their": [65535, 0], "by the bedpost now but all trials bring their compensations": [65535, 0], "the bedpost now but all trials bring their compensations as": [65535, 0], "bedpost now but all trials bring their compensations as tom": [65535, 0], "now but all trials bring their compensations as tom wended": [65535, 0], "but all trials bring their compensations as tom wended to": [65535, 0], "all trials bring their compensations as tom wended to school": [65535, 0], "trials bring their compensations as tom wended to school after": [65535, 0], "bring their compensations as tom wended to school after breakfast": [65535, 0], "their compensations as tom wended to school after breakfast he": [65535, 0], "compensations as tom wended to school after breakfast he was": [65535, 0], "as tom wended to school after breakfast he was the": [65535, 0], "tom wended to school after breakfast he was the envy": [65535, 0], "wended to school after breakfast he was the envy of": [65535, 0], "to school after breakfast he was the envy of every": [65535, 0], "school after breakfast he was the envy of every boy": [65535, 0], "after breakfast he was the envy of every boy he": [65535, 0], "breakfast he was the envy of every boy he met": [65535, 0], "he was the envy of every boy he met because": [65535, 0], "was the envy of every boy he met because the": [65535, 0], "the envy of every boy he met because the gap": [65535, 0], "envy of every boy he met because the gap in": [65535, 0], "of every boy he met because the gap in his": [65535, 0], "every boy he met because the gap in his upper": [65535, 0], "boy he met because the gap in his upper row": [65535, 0], "he met because the gap in his upper row of": [65535, 0], "met because the gap in his upper row of teeth": [65535, 0], "because the gap in his upper row of teeth enabled": [65535, 0], "the gap in his upper row of teeth enabled him": [65535, 0], "gap in his upper row of teeth enabled him to": [65535, 0], "in his upper row of teeth enabled him to expectorate": [65535, 0], "his upper row of teeth enabled him to expectorate in": [65535, 0], "upper row of teeth enabled him to expectorate in a": [65535, 0], "row of teeth enabled him to expectorate in a new": [65535, 0], "of teeth enabled him to expectorate in a new and": [65535, 0], "teeth enabled him to expectorate in a new and admirable": [65535, 0], "enabled him to expectorate in a new and admirable way": [65535, 0], "him to expectorate in a new and admirable way he": [65535, 0], "to expectorate in a new and admirable way he gathered": [65535, 0], "expectorate in a new and admirable way he gathered quite": [65535, 0], "in a new and admirable way he gathered quite a": [65535, 0], "a new and admirable way he gathered quite a following": [65535, 0], "new and admirable way he gathered quite a following of": [65535, 0], "and admirable way he gathered quite a following of lads": [65535, 0], "admirable way he gathered quite a following of lads interested": [65535, 0], "way he gathered quite a following of lads interested in": [65535, 0], "he gathered quite a following of lads interested in the": [65535, 0], "gathered quite a following of lads interested in the exhibition": [65535, 0], "quite a following of lads interested in the exhibition and": [65535, 0], "a following of lads interested in the exhibition and one": [65535, 0], "following of lads interested in the exhibition and one that": [65535, 0], "of lads interested in the exhibition and one that had": [65535, 0], "lads interested in the exhibition and one that had cut": [65535, 0], "interested in the exhibition and one that had cut his": [65535, 0], "in the exhibition and one that had cut his finger": [65535, 0], "the exhibition and one that had cut his finger and": [65535, 0], "exhibition and one that had cut his finger and had": [65535, 0], "and one that had cut his finger and had been": [65535, 0], "one that had cut his finger and had been a": [65535, 0], "that had cut his finger and had been a centre": [65535, 0], "had cut his finger and had been a centre of": [65535, 0], "cut his finger and had been a centre of fascination": [65535, 0], "his finger and had been a centre of fascination and": [65535, 0], "finger and had been a centre of fascination and homage": [65535, 0], "and had been a centre of fascination and homage up": [65535, 0], "had been a centre of fascination and homage up to": [65535, 0], "been a centre of fascination and homage up to this": [65535, 0], "a centre of fascination and homage up to this time": [65535, 0], "centre of fascination and homage up to this time now": [65535, 0], "of fascination and homage up to this time now found": [65535, 0], "fascination and homage up to this time now found himself": [65535, 0], "and homage up to this time now found himself suddenly": [65535, 0], "homage up to this time now found himself suddenly without": [65535, 0], "up to this time now found himself suddenly without an": [65535, 0], "to this time now found himself suddenly without an adherent": [65535, 0], "this time now found himself suddenly without an adherent and": [65535, 0], "time now found himself suddenly without an adherent and shorn": [65535, 0], "now found himself suddenly without an adherent and shorn of": [65535, 0], "found himself suddenly without an adherent and shorn of his": [65535, 0], "himself suddenly without an adherent and shorn of his glory": [65535, 0], "suddenly without an adherent and shorn of his glory his": [65535, 0], "without an adherent and shorn of his glory his heart": [65535, 0], "an adherent and shorn of his glory his heart was": [65535, 0], "adherent and shorn of his glory his heart was heavy": [65535, 0], "and shorn of his glory his heart was heavy and": [65535, 0], "shorn of his glory his heart was heavy and he": [65535, 0], "of his glory his heart was heavy and he said": [65535, 0], "his glory his heart was heavy and he said with": [65535, 0], "glory his heart was heavy and he said with a": [65535, 0], "his heart was heavy and he said with a disdain": [65535, 0], "heart was heavy and he said with a disdain which": [65535, 0], "was heavy and he said with a disdain which he": [65535, 0], "heavy and he said with a disdain which he did": [65535, 0], "and he said with a disdain which he did not": [65535, 0], "he said with a disdain which he did not feel": [65535, 0], "said with a disdain which he did not feel that": [65535, 0], "with a disdain which he did not feel that it": [65535, 0], "a disdain which he did not feel that it wasn't": [65535, 0], "disdain which he did not feel that it wasn't anything": [65535, 0], "which he did not feel that it wasn't anything to": [65535, 0], "he did not feel that it wasn't anything to spit": [65535, 0], "did not feel that it wasn't anything to spit like": [65535, 0], "not feel that it wasn't anything to spit like tom": [65535, 0], "feel that it wasn't anything to spit like tom sawyer": [65535, 0], "that it wasn't anything to spit like tom sawyer but": [65535, 0], "it wasn't anything to spit like tom sawyer but another": [65535, 0], "wasn't anything to spit like tom sawyer but another boy": [65535, 0], "anything to spit like tom sawyer but another boy said": [65535, 0], "to spit like tom sawyer but another boy said sour": [65535, 0], "spit like tom sawyer but another boy said sour grapes": [65535, 0], "like tom sawyer but another boy said sour grapes and": [65535, 0], "tom sawyer but another boy said sour grapes and he": [65535, 0], "sawyer but another boy said sour grapes and he wandered": [65535, 0], "but another boy said sour grapes and he wandered away": [65535, 0], "another boy said sour grapes and he wandered away a": [65535, 0], "boy said sour grapes and he wandered away a dismantled": [65535, 0], "said sour grapes and he wandered away a dismantled hero": [65535, 0], "sour grapes and he wandered away a dismantled hero shortly": [65535, 0], "grapes and he wandered away a dismantled hero shortly tom": [65535, 0], "and he wandered away a dismantled hero shortly tom came": [65535, 0], "he wandered away a dismantled hero shortly tom came upon": [65535, 0], "wandered away a dismantled hero shortly tom came upon the": [65535, 0], "away a dismantled hero shortly tom came upon the juvenile": [65535, 0], "a dismantled hero shortly tom came upon the juvenile pariah": [65535, 0], "dismantled hero shortly tom came upon the juvenile pariah of": [65535, 0], "hero shortly tom came upon the juvenile pariah of the": [65535, 0], "shortly tom came upon the juvenile pariah of the village": [65535, 0], "tom came upon the juvenile pariah of the village huckleberry": [65535, 0], "came upon the juvenile pariah of the village huckleberry finn": [65535, 0], "upon the juvenile pariah of the village huckleberry finn son": [65535, 0], "the juvenile pariah of the village huckleberry finn son of": [65535, 0], "juvenile pariah of the village huckleberry finn son of the": [65535, 0], "pariah of the village huckleberry finn son of the town": [65535, 0], "of the village huckleberry finn son of the town drunkard": [65535, 0], "the village huckleberry finn son of the town drunkard huckleberry": [65535, 0], "village huckleberry finn son of the town drunkard huckleberry was": [65535, 0], "huckleberry finn son of the town drunkard huckleberry was cordially": [65535, 0], "finn son of the town drunkard huckleberry was cordially hated": [65535, 0], "son of the town drunkard huckleberry was cordially hated and": [65535, 0], "of the town drunkard huckleberry was cordially hated and dreaded": [65535, 0], "the town drunkard huckleberry was cordially hated and dreaded by": [65535, 0], "town drunkard huckleberry was cordially hated and dreaded by all": [65535, 0], "drunkard huckleberry was cordially hated and dreaded by all the": [65535, 0], "huckleberry was cordially hated and dreaded by all the mothers": [65535, 0], "was cordially hated and dreaded by all the mothers of": [65535, 0], "cordially hated and dreaded by all the mothers of the": [65535, 0], "hated and dreaded by all the mothers of the town": [65535, 0], "and dreaded by all the mothers of the town because": [65535, 0], "dreaded by all the mothers of the town because he": [65535, 0], "by all the mothers of the town because he was": [65535, 0], "all the mothers of the town because he was idle": [65535, 0], "the mothers of the town because he was idle and": [65535, 0], "mothers of the town because he was idle and lawless": [65535, 0], "of the town because he was idle and lawless and": [65535, 0], "the town because he was idle and lawless and vulgar": [65535, 0], "town because he was idle and lawless and vulgar and": [65535, 0], "because he was idle and lawless and vulgar and bad": [65535, 0], "he was idle and lawless and vulgar and bad and": [65535, 0], "was idle and lawless and vulgar and bad and because": [65535, 0], "idle and lawless and vulgar and bad and because all": [65535, 0], "and lawless and vulgar and bad and because all their": [65535, 0], "lawless and vulgar and bad and because all their children": [65535, 0], "and vulgar and bad and because all their children admired": [65535, 0], "vulgar and bad and because all their children admired him": [65535, 0], "and bad and because all their children admired him so": [65535, 0], "bad and because all their children admired him so and": [65535, 0], "and because all their children admired him so and delighted": [65535, 0], "because all their children admired him so and delighted in": [65535, 0], "all their children admired him so and delighted in his": [65535, 0], "their children admired him so and delighted in his forbidden": [65535, 0], "children admired him so and delighted in his forbidden society": [65535, 0], "admired him so and delighted in his forbidden society and": [65535, 0], "him so and delighted in his forbidden society and wished": [65535, 0], "so and delighted in his forbidden society and wished they": [65535, 0], "and delighted in his forbidden society and wished they dared": [65535, 0], "delighted in his forbidden society and wished they dared to": [65535, 0], "in his forbidden society and wished they dared to be": [65535, 0], "his forbidden society and wished they dared to be like": [65535, 0], "forbidden society and wished they dared to be like him": [65535, 0], "society and wished they dared to be like him tom": [65535, 0], "and wished they dared to be like him tom was": [65535, 0], "wished they dared to be like him tom was like": [65535, 0], "they dared to be like him tom was like the": [65535, 0], "dared to be like him tom was like the rest": [65535, 0], "to be like him tom was like the rest of": [65535, 0], "be like him tom was like the rest of the": [65535, 0], "like him tom was like the rest of the respectable": [65535, 0], "him tom was like the rest of the respectable boys": [65535, 0], "tom was like the rest of the respectable boys in": [65535, 0], "was like the rest of the respectable boys in that": [65535, 0], "like the rest of the respectable boys in that he": [65535, 0], "the rest of the respectable boys in that he envied": [65535, 0], "rest of the respectable boys in that he envied huckleberry": [65535, 0], "of the respectable boys in that he envied huckleberry his": [65535, 0], "the respectable boys in that he envied huckleberry his gaudy": [65535, 0], "respectable boys in that he envied huckleberry his gaudy outcast": [65535, 0], "boys in that he envied huckleberry his gaudy outcast condition": [65535, 0], "in that he envied huckleberry his gaudy outcast condition and": [65535, 0], "that he envied huckleberry his gaudy outcast condition and was": [65535, 0], "he envied huckleberry his gaudy outcast condition and was under": [65535, 0], "envied huckleberry his gaudy outcast condition and was under strict": [65535, 0], "huckleberry his gaudy outcast condition and was under strict orders": [65535, 0], "his gaudy outcast condition and was under strict orders not": [65535, 0], "gaudy outcast condition and was under strict orders not to": [65535, 0], "outcast condition and was under strict orders not to play": [65535, 0], "condition and was under strict orders not to play with": [65535, 0], "and was under strict orders not to play with him": [65535, 0], "was under strict orders not to play with him so": [65535, 0], "under strict orders not to play with him so he": [65535, 0], "strict orders not to play with him so he played": [65535, 0], "orders not to play with him so he played with": [65535, 0], "not to play with him so he played with him": [65535, 0], "to play with him so he played with him every": [65535, 0], "play with him so he played with him every time": [65535, 0], "with him so he played with him every time he": [65535, 0], "him so he played with him every time he got": [65535, 0], "so he played with him every time he got a": [65535, 0], "he played with him every time he got a chance": [65535, 0], "played with him every time he got a chance huckleberry": [65535, 0], "with him every time he got a chance huckleberry was": [65535, 0], "him every time he got a chance huckleberry was always": [65535, 0], "every time he got a chance huckleberry was always dressed": [65535, 0], "time he got a chance huckleberry was always dressed in": [65535, 0], "he got a chance huckleberry was always dressed in the": [65535, 0], "got a chance huckleberry was always dressed in the cast": [65535, 0], "a chance huckleberry was always dressed in the cast off": [65535, 0], "chance huckleberry was always dressed in the cast off clothes": [65535, 0], "huckleberry was always dressed in the cast off clothes of": [65535, 0], "was always dressed in the cast off clothes of full": [65535, 0], "always dressed in the cast off clothes of full grown": [65535, 0], "dressed in the cast off clothes of full grown men": [65535, 0], "in the cast off clothes of full grown men and": [65535, 0], "the cast off clothes of full grown men and they": [65535, 0], "cast off clothes of full grown men and they were": [65535, 0], "off clothes of full grown men and they were in": [65535, 0], "clothes of full grown men and they were in perennial": [65535, 0], "of full grown men and they were in perennial bloom": [65535, 0], "full grown men and they were in perennial bloom and": [65535, 0], "grown men and they were in perennial bloom and fluttering": [65535, 0], "men and they were in perennial bloom and fluttering with": [65535, 0], "and they were in perennial bloom and fluttering with rags": [65535, 0], "they were in perennial bloom and fluttering with rags his": [65535, 0], "were in perennial bloom and fluttering with rags his hat": [65535, 0], "in perennial bloom and fluttering with rags his hat was": [65535, 0], "perennial bloom and fluttering with rags his hat was a": [65535, 0], "bloom and fluttering with rags his hat was a vast": [65535, 0], "and fluttering with rags his hat was a vast ruin": [65535, 0], "fluttering with rags his hat was a vast ruin with": [65535, 0], "with rags his hat was a vast ruin with a": [65535, 0], "rags his hat was a vast ruin with a wide": [65535, 0], "his hat was a vast ruin with a wide crescent": [65535, 0], "hat was a vast ruin with a wide crescent lopped": [65535, 0], "was a vast ruin with a wide crescent lopped out": [65535, 0], "a vast ruin with a wide crescent lopped out of": [65535, 0], "vast ruin with a wide crescent lopped out of its": [65535, 0], "ruin with a wide crescent lopped out of its brim": [65535, 0], "with a wide crescent lopped out of its brim his": [65535, 0], "a wide crescent lopped out of its brim his coat": [65535, 0], "wide crescent lopped out of its brim his coat when": [65535, 0], "crescent lopped out of its brim his coat when he": [65535, 0], "lopped out of its brim his coat when he wore": [65535, 0], "out of its brim his coat when he wore one": [65535, 0], "of its brim his coat when he wore one hung": [65535, 0], "its brim his coat when he wore one hung nearly": [65535, 0], "brim his coat when he wore one hung nearly to": [65535, 0], "his coat when he wore one hung nearly to his": [65535, 0], "coat when he wore one hung nearly to his heels": [65535, 0], "when he wore one hung nearly to his heels and": [65535, 0], "he wore one hung nearly to his heels and had": [65535, 0], "wore one hung nearly to his heels and had the": [65535, 0], "one hung nearly to his heels and had the rearward": [65535, 0], "hung nearly to his heels and had the rearward buttons": [65535, 0], "nearly to his heels and had the rearward buttons far": [65535, 0], "to his heels and had the rearward buttons far down": [65535, 0], "his heels and had the rearward buttons far down the": [65535, 0], "heels and had the rearward buttons far down the back": [65535, 0], "and had the rearward buttons far down the back but": [65535, 0], "had the rearward buttons far down the back but one": [65535, 0], "the rearward buttons far down the back but one suspender": [65535, 0], "rearward buttons far down the back but one suspender supported": [65535, 0], "buttons far down the back but one suspender supported his": [65535, 0], "far down the back but one suspender supported his trousers": [65535, 0], "down the back but one suspender supported his trousers the": [65535, 0], "the back but one suspender supported his trousers the seat": [65535, 0], "back but one suspender supported his trousers the seat of": [65535, 0], "but one suspender supported his trousers the seat of the": [65535, 0], "one suspender supported his trousers the seat of the trousers": [65535, 0], "suspender supported his trousers the seat of the trousers bagged": [65535, 0], "supported his trousers the seat of the trousers bagged low": [65535, 0], "his trousers the seat of the trousers bagged low and": [65535, 0], "trousers the seat of the trousers bagged low and contained": [65535, 0], "the seat of the trousers bagged low and contained nothing": [65535, 0], "seat of the trousers bagged low and contained nothing the": [65535, 0], "of the trousers bagged low and contained nothing the fringed": [65535, 0], "the trousers bagged low and contained nothing the fringed legs": [65535, 0], "trousers bagged low and contained nothing the fringed legs dragged": [65535, 0], "bagged low and contained nothing the fringed legs dragged in": [65535, 0], "low and contained nothing the fringed legs dragged in the": [65535, 0], "and contained nothing the fringed legs dragged in the dirt": [65535, 0], "contained nothing the fringed legs dragged in the dirt when": [65535, 0], "nothing the fringed legs dragged in the dirt when not": [65535, 0], "the fringed legs dragged in the dirt when not rolled": [65535, 0], "fringed legs dragged in the dirt when not rolled up": [65535, 0], "legs dragged in the dirt when not rolled up huckleberry": [65535, 0], "dragged in the dirt when not rolled up huckleberry came": [65535, 0], "in the dirt when not rolled up huckleberry came and": [65535, 0], "the dirt when not rolled up huckleberry came and went": [65535, 0], "dirt when not rolled up huckleberry came and went at": [65535, 0], "when not rolled up huckleberry came and went at his": [65535, 0], "not rolled up huckleberry came and went at his own": [65535, 0], "rolled up huckleberry came and went at his own free": [65535, 0], "up huckleberry came and went at his own free will": [65535, 0], "huckleberry came and went at his own free will he": [65535, 0], "came and went at his own free will he slept": [65535, 0], "and went at his own free will he slept on": [65535, 0], "went at his own free will he slept on doorsteps": [65535, 0], "at his own free will he slept on doorsteps in": [65535, 0], "his own free will he slept on doorsteps in fine": [65535, 0], "own free will he slept on doorsteps in fine weather": [65535, 0], "free will he slept on doorsteps in fine weather and": [65535, 0], "will he slept on doorsteps in fine weather and in": [65535, 0], "he slept on doorsteps in fine weather and in empty": [65535, 0], "slept on doorsteps in fine weather and in empty hogsheads": [65535, 0], "on doorsteps in fine weather and in empty hogsheads in": [65535, 0], "doorsteps in fine weather and in empty hogsheads in wet": [65535, 0], "in fine weather and in empty hogsheads in wet he": [65535, 0], "fine weather and in empty hogsheads in wet he did": [65535, 0], "weather and in empty hogsheads in wet he did not": [65535, 0], "and in empty hogsheads in wet he did not have": [65535, 0], "in empty hogsheads in wet he did not have to": [65535, 0], "empty hogsheads in wet he did not have to go": [65535, 0], "hogsheads in wet he did not have to go to": [65535, 0], "in wet he did not have to go to school": [65535, 0], "wet he did not have to go to school or": [65535, 0], "he did not have to go to school or to": [65535, 0], "did not have to go to school or to church": [65535, 0], "not have to go to school or to church or": [65535, 0], "have to go to school or to church or call": [65535, 0], "to go to school or to church or call any": [65535, 0], "go to school or to church or call any being": [65535, 0], "to school or to church or call any being master": [65535, 0], "school or to church or call any being master or": [65535, 0], "or to church or call any being master or obey": [65535, 0], "to church or call any being master or obey anybody": [65535, 0], "church or call any being master or obey anybody he": [65535, 0], "or call any being master or obey anybody he could": [65535, 0], "call any being master or obey anybody he could go": [65535, 0], "any being master or obey anybody he could go fishing": [65535, 0], "being master or obey anybody he could go fishing or": [65535, 0], "master or obey anybody he could go fishing or swimming": [65535, 0], "or obey anybody he could go fishing or swimming when": [65535, 0], "obey anybody he could go fishing or swimming when and": [65535, 0], "anybody he could go fishing or swimming when and where": [65535, 0], "he could go fishing or swimming when and where he": [65535, 0], "could go fishing or swimming when and where he chose": [65535, 0], "go fishing or swimming when and where he chose and": [65535, 0], "fishing or swimming when and where he chose and stay": [65535, 0], "or swimming when and where he chose and stay as": [65535, 0], "swimming when and where he chose and stay as long": [65535, 0], "when and where he chose and stay as long as": [65535, 0], "and where he chose and stay as long as it": [65535, 0], "where he chose and stay as long as it suited": [65535, 0], "he chose and stay as long as it suited him": [65535, 0], "chose and stay as long as it suited him nobody": [65535, 0], "and stay as long as it suited him nobody forbade": [65535, 0], "stay as long as it suited him nobody forbade him": [65535, 0], "as long as it suited him nobody forbade him to": [65535, 0], "long as it suited him nobody forbade him to fight": [65535, 0], "as it suited him nobody forbade him to fight he": [65535, 0], "it suited him nobody forbade him to fight he could": [65535, 0], "suited him nobody forbade him to fight he could sit": [65535, 0], "him nobody forbade him to fight he could sit up": [65535, 0], "nobody forbade him to fight he could sit up as": [65535, 0], "forbade him to fight he could sit up as late": [65535, 0], "him to fight he could sit up as late as": [65535, 0], "to fight he could sit up as late as he": [65535, 0], "fight he could sit up as late as he pleased": [65535, 0], "he could sit up as late as he pleased he": [65535, 0], "could sit up as late as he pleased he was": [65535, 0], "sit up as late as he pleased he was always": [65535, 0], "up as late as he pleased he was always the": [65535, 0], "as late as he pleased he was always the first": [65535, 0], "late as he pleased he was always the first boy": [65535, 0], "as he pleased he was always the first boy that": [65535, 0], "he pleased he was always the first boy that went": [65535, 0], "pleased he was always the first boy that went barefoot": [65535, 0], "he was always the first boy that went barefoot in": [65535, 0], "was always the first boy that went barefoot in the": [65535, 0], "always the first boy that went barefoot in the spring": [65535, 0], "the first boy that went barefoot in the spring and": [65535, 0], "first boy that went barefoot in the spring and the": [65535, 0], "boy that went barefoot in the spring and the last": [65535, 0], "that went barefoot in the spring and the last to": [65535, 0], "went barefoot in the spring and the last to resume": [65535, 0], "barefoot in the spring and the last to resume leather": [65535, 0], "in the spring and the last to resume leather in": [65535, 0], "the spring and the last to resume leather in the": [65535, 0], "spring and the last to resume leather in the fall": [65535, 0], "and the last to resume leather in the fall he": [65535, 0], "the last to resume leather in the fall he never": [65535, 0], "last to resume leather in the fall he never had": [65535, 0], "to resume leather in the fall he never had to": [65535, 0], "resume leather in the fall he never had to wash": [65535, 0], "leather in the fall he never had to wash nor": [65535, 0], "in the fall he never had to wash nor put": [65535, 0], "the fall he never had to wash nor put on": [65535, 0], "fall he never had to wash nor put on clean": [65535, 0], "he never had to wash nor put on clean clothes": [65535, 0], "never had to wash nor put on clean clothes he": [65535, 0], "had to wash nor put on clean clothes he could": [65535, 0], "to wash nor put on clean clothes he could swear": [65535, 0], "wash nor put on clean clothes he could swear wonderfully": [65535, 0], "nor put on clean clothes he could swear wonderfully in": [65535, 0], "put on clean clothes he could swear wonderfully in a": [65535, 0], "on clean clothes he could swear wonderfully in a word": [65535, 0], "clean clothes he could swear wonderfully in a word everything": [65535, 0], "clothes he could swear wonderfully in a word everything that": [65535, 0], "he could swear wonderfully in a word everything that goes": [65535, 0], "could swear wonderfully in a word everything that goes to": [65535, 0], "swear wonderfully in a word everything that goes to make": [65535, 0], "wonderfully in a word everything that goes to make life": [65535, 0], "in a word everything that goes to make life precious": [65535, 0], "a word everything that goes to make life precious that": [65535, 0], "word everything that goes to make life precious that boy": [65535, 0], "everything that goes to make life precious that boy had": [65535, 0], "that goes to make life precious that boy had so": [65535, 0], "goes to make life precious that boy had so thought": [65535, 0], "to make life precious that boy had so thought every": [65535, 0], "make life precious that boy had so thought every harassed": [65535, 0], "life precious that boy had so thought every harassed hampered": [65535, 0], "precious that boy had so thought every harassed hampered respectable": [65535, 0], "that boy had so thought every harassed hampered respectable boy": [65535, 0], "boy had so thought every harassed hampered respectable boy in": [65535, 0], "had so thought every harassed hampered respectable boy in st": [65535, 0], "so thought every harassed hampered respectable boy in st petersburg": [65535, 0], "thought every harassed hampered respectable boy in st petersburg tom": [65535, 0], "every harassed hampered respectable boy in st petersburg tom hailed": [65535, 0], "harassed hampered respectable boy in st petersburg tom hailed the": [65535, 0], "hampered respectable boy in st petersburg tom hailed the romantic": [65535, 0], "respectable boy in st petersburg tom hailed the romantic outcast": [65535, 0], "boy in st petersburg tom hailed the romantic outcast hello": [65535, 0], "in st petersburg tom hailed the romantic outcast hello huckleberry": [65535, 0], "st petersburg tom hailed the romantic outcast hello huckleberry hello": [65535, 0], "petersburg tom hailed the romantic outcast hello huckleberry hello yourself": [65535, 0], "tom hailed the romantic outcast hello huckleberry hello yourself and": [65535, 0], "hailed the romantic outcast hello huckleberry hello yourself and see": [65535, 0], "the romantic outcast hello huckleberry hello yourself and see how": [65535, 0], "romantic outcast hello huckleberry hello yourself and see how you": [65535, 0], "outcast hello huckleberry hello yourself and see how you like": [65535, 0], "hello huckleberry hello yourself and see how you like it": [65535, 0], "huckleberry hello yourself and see how you like it what's": [65535, 0], "hello yourself and see how you like it what's that": [65535, 0], "yourself and see how you like it what's that you": [65535, 0], "and see how you like it what's that you got": [65535, 0], "see how you like it what's that you got dead": [65535, 0], "how you like it what's that you got dead cat": [65535, 0], "you like it what's that you got dead cat lemme": [65535, 0], "like it what's that you got dead cat lemme see": [65535, 0], "it what's that you got dead cat lemme see him": [65535, 0], "what's that you got dead cat lemme see him huck": [65535, 0], "that you got dead cat lemme see him huck my": [65535, 0], "you got dead cat lemme see him huck my he's": [65535, 0], "got dead cat lemme see him huck my he's pretty": [65535, 0], "dead cat lemme see him huck my he's pretty stiff": [65535, 0], "cat lemme see him huck my he's pretty stiff where'd": [65535, 0], "lemme see him huck my he's pretty stiff where'd you": [65535, 0], "see him huck my he's pretty stiff where'd you get": [65535, 0], "him huck my he's pretty stiff where'd you get him": [65535, 0], "huck my he's pretty stiff where'd you get him bought": [65535, 0], "my he's pretty stiff where'd you get him bought him": [65535, 0], "he's pretty stiff where'd you get him bought him off'n": [65535, 0], "pretty stiff where'd you get him bought him off'n a": [65535, 0], "stiff where'd you get him bought him off'n a boy": [65535, 0], "where'd you get him bought him off'n a boy what": [65535, 0], "you get him bought him off'n a boy what did": [65535, 0], "get him bought him off'n a boy what did you": [65535, 0], "him bought him off'n a boy what did you give": [65535, 0], "bought him off'n a boy what did you give i": [65535, 0], "him off'n a boy what did you give i give": [65535, 0], "off'n a boy what did you give i give a": [65535, 0], "a boy what did you give i give a blue": [65535, 0], "boy what did you give i give a blue ticket": [65535, 0], "what did you give i give a blue ticket and": [65535, 0], "did you give i give a blue ticket and a": [65535, 0], "you give i give a blue ticket and a bladder": [65535, 0], "give i give a blue ticket and a bladder that": [65535, 0], "i give a blue ticket and a bladder that i": [65535, 0], "give a blue ticket and a bladder that i got": [65535, 0], "a blue ticket and a bladder that i got at": [65535, 0], "blue ticket and a bladder that i got at the": [65535, 0], "ticket and a bladder that i got at the slaughter": [65535, 0], "and a bladder that i got at the slaughter house": [65535, 0], "a bladder that i got at the slaughter house where'd": [65535, 0], "bladder that i got at the slaughter house where'd you": [65535, 0], "that i got at the slaughter house where'd you get": [65535, 0], "i got at the slaughter house where'd you get the": [65535, 0], "got at the slaughter house where'd you get the blue": [65535, 0], "at the slaughter house where'd you get the blue ticket": [65535, 0], "the slaughter house where'd you get the blue ticket bought": [65535, 0], "slaughter house where'd you get the blue ticket bought it": [65535, 0], "house where'd you get the blue ticket bought it off'n": [65535, 0], "where'd you get the blue ticket bought it off'n ben": [65535, 0], "you get the blue ticket bought it off'n ben rogers": [65535, 0], "get the blue ticket bought it off'n ben rogers two": [65535, 0], "the blue ticket bought it off'n ben rogers two weeks": [65535, 0], "blue ticket bought it off'n ben rogers two weeks ago": [65535, 0], "ticket bought it off'n ben rogers two weeks ago for": [65535, 0], "bought it off'n ben rogers two weeks ago for a": [65535, 0], "it off'n ben rogers two weeks ago for a hoop": [65535, 0], "off'n ben rogers two weeks ago for a hoop stick": [65535, 0], "ben rogers two weeks ago for a hoop stick say": [65535, 0], "rogers two weeks ago for a hoop stick say what": [65535, 0], "two weeks ago for a hoop stick say what is": [65535, 0], "weeks ago for a hoop stick say what is dead": [65535, 0], "ago for a hoop stick say what is dead cats": [65535, 0], "for a hoop stick say what is dead cats good": [65535, 0], "a hoop stick say what is dead cats good for": [65535, 0], "hoop stick say what is dead cats good for huck": [65535, 0], "stick say what is dead cats good for huck good": [65535, 0], "say what is dead cats good for huck good for": [65535, 0], "what is dead cats good for huck good for cure": [65535, 0], "is dead cats good for huck good for cure warts": [65535, 0], "dead cats good for huck good for cure warts with": [65535, 0], "cats good for huck good for cure warts with no": [65535, 0], "good for huck good for cure warts with no is": [65535, 0], "for huck good for cure warts with no is that": [65535, 0], "huck good for cure warts with no is that so": [65535, 0], "good for cure warts with no is that so i": [65535, 0], "for cure warts with no is that so i know": [65535, 0], "cure warts with no is that so i know something": [65535, 0], "warts with no is that so i know something that's": [65535, 0], "with no is that so i know something that's better": [65535, 0], "no is that so i know something that's better i": [65535, 0], "is that so i know something that's better i bet": [65535, 0], "that so i know something that's better i bet you": [65535, 0], "so i know something that's better i bet you don't": [65535, 0], "i know something that's better i bet you don't what": [65535, 0], "know something that's better i bet you don't what is": [65535, 0], "something that's better i bet you don't what is it": [65535, 0], "that's better i bet you don't what is it why": [65535, 0], "better i bet you don't what is it why spunk": [65535, 0], "i bet you don't what is it why spunk water": [65535, 0], "bet you don't what is it why spunk water spunk": [65535, 0], "you don't what is it why spunk water spunk water": [65535, 0], "don't what is it why spunk water spunk water i": [65535, 0], "what is it why spunk water spunk water i wouldn't": [65535, 0], "is it why spunk water spunk water i wouldn't give": [65535, 0], "it why spunk water spunk water i wouldn't give a": [65535, 0], "why spunk water spunk water i wouldn't give a dern": [65535, 0], "spunk water spunk water i wouldn't give a dern for": [65535, 0], "water spunk water i wouldn't give a dern for spunk": [65535, 0], "spunk water i wouldn't give a dern for spunk water": [65535, 0], "water i wouldn't give a dern for spunk water you": [65535, 0], "i wouldn't give a dern for spunk water you wouldn't": [65535, 0], "wouldn't give a dern for spunk water you wouldn't wouldn't": [65535, 0], "give a dern for spunk water you wouldn't wouldn't you": [65535, 0], "a dern for spunk water you wouldn't wouldn't you d'you": [65535, 0], "dern for spunk water you wouldn't wouldn't you d'you ever": [65535, 0], "for spunk water you wouldn't wouldn't you d'you ever try": [65535, 0], "spunk water you wouldn't wouldn't you d'you ever try it": [65535, 0], "water you wouldn't wouldn't you d'you ever try it no": [65535, 0], "you wouldn't wouldn't you d'you ever try it no i": [65535, 0], "wouldn't wouldn't you d'you ever try it no i hain't": [65535, 0], "wouldn't you d'you ever try it no i hain't but": [65535, 0], "you d'you ever try it no i hain't but bob": [65535, 0], "d'you ever try it no i hain't but bob tanner": [65535, 0], "ever try it no i hain't but bob tanner did": [65535, 0], "try it no i hain't but bob tanner did who": [65535, 0], "it no i hain't but bob tanner did who told": [65535, 0], "no i hain't but bob tanner did who told you": [65535, 0], "i hain't but bob tanner did who told you so": [65535, 0], "hain't but bob tanner did who told you so why": [65535, 0], "but bob tanner did who told you so why he": [65535, 0], "bob tanner did who told you so why he told": [65535, 0], "tanner did who told you so why he told jeff": [65535, 0], "did who told you so why he told jeff thatcher": [65535, 0], "who told you so why he told jeff thatcher and": [65535, 0], "told you so why he told jeff thatcher and jeff": [65535, 0], "you so why he told jeff thatcher and jeff told": [65535, 0], "so why he told jeff thatcher and jeff told johnny": [65535, 0], "why he told jeff thatcher and jeff told johnny baker": [65535, 0], "he told jeff thatcher and jeff told johnny baker and": [65535, 0], "told jeff thatcher and jeff told johnny baker and johnny": [65535, 0], "jeff thatcher and jeff told johnny baker and johnny told": [65535, 0], "thatcher and jeff told johnny baker and johnny told jim": [65535, 0], "and jeff told johnny baker and johnny told jim hollis": [65535, 0], "jeff told johnny baker and johnny told jim hollis and": [65535, 0], "told johnny baker and johnny told jim hollis and jim": [65535, 0], "johnny baker and johnny told jim hollis and jim told": [65535, 0], "baker and johnny told jim hollis and jim told ben": [65535, 0], "and johnny told jim hollis and jim told ben rogers": [65535, 0], "johnny told jim hollis and jim told ben rogers and": [65535, 0], "told jim hollis and jim told ben rogers and ben": [65535, 0], "jim hollis and jim told ben rogers and ben told": [65535, 0], "hollis and jim told ben rogers and ben told a": [65535, 0], "and jim told ben rogers and ben told a nigger": [65535, 0], "jim told ben rogers and ben told a nigger and": [65535, 0], "told ben rogers and ben told a nigger and the": [65535, 0], "ben rogers and ben told a nigger and the nigger": [65535, 0], "rogers and ben told a nigger and the nigger told": [65535, 0], "and ben told a nigger and the nigger told me": [65535, 0], "ben told a nigger and the nigger told me there": [65535, 0], "told a nigger and the nigger told me there now": [65535, 0], "a nigger and the nigger told me there now well": [65535, 0], "nigger and the nigger told me there now well what": [65535, 0], "and the nigger told me there now well what of": [65535, 0], "the nigger told me there now well what of it": [65535, 0], "nigger told me there now well what of it they'll": [65535, 0], "told me there now well what of it they'll all": [65535, 0], "me there now well what of it they'll all lie": [65535, 0], "there now well what of it they'll all lie leastways": [65535, 0], "now well what of it they'll all lie leastways all": [65535, 0], "well what of it they'll all lie leastways all but": [65535, 0], "what of it they'll all lie leastways all but the": [65535, 0], "of it they'll all lie leastways all but the nigger": [65535, 0], "it they'll all lie leastways all but the nigger i": [65535, 0], "they'll all lie leastways all but the nigger i don't": [65535, 0], "all lie leastways all but the nigger i don't know": [65535, 0], "lie leastways all but the nigger i don't know him": [65535, 0], "leastways all but the nigger i don't know him but": [65535, 0], "all but the nigger i don't know him but i": [65535, 0], "but the nigger i don't know him but i never": [65535, 0], "the nigger i don't know him but i never see": [65535, 0], "nigger i don't know him but i never see a": [65535, 0], "i don't know him but i never see a nigger": [65535, 0], "don't know him but i never see a nigger that": [65535, 0], "know him but i never see a nigger that wouldn't": [65535, 0], "him but i never see a nigger that wouldn't lie": [65535, 0], "but i never see a nigger that wouldn't lie shucks": [65535, 0], "i never see a nigger that wouldn't lie shucks now": [65535, 0], "never see a nigger that wouldn't lie shucks now you": [65535, 0], "see a nigger that wouldn't lie shucks now you tell": [65535, 0], "a nigger that wouldn't lie shucks now you tell me": [65535, 0], "nigger that wouldn't lie shucks now you tell me how": [65535, 0], "that wouldn't lie shucks now you tell me how bob": [65535, 0], "wouldn't lie shucks now you tell me how bob tanner": [65535, 0], "lie shucks now you tell me how bob tanner done": [65535, 0], "shucks now you tell me how bob tanner done it": [65535, 0], "now you tell me how bob tanner done it huck": [65535, 0], "you tell me how bob tanner done it huck why": [65535, 0], "tell me how bob tanner done it huck why he": [65535, 0], "me how bob tanner done it huck why he took": [65535, 0], "how bob tanner done it huck why he took and": [65535, 0], "bob tanner done it huck why he took and dipped": [65535, 0], "tanner done it huck why he took and dipped his": [65535, 0], "done it huck why he took and dipped his hand": [65535, 0], "it huck why he took and dipped his hand in": [65535, 0], "huck why he took and dipped his hand in a": [65535, 0], "why he took and dipped his hand in a rotten": [65535, 0], "he took and dipped his hand in a rotten stump": [65535, 0], "took and dipped his hand in a rotten stump where": [65535, 0], "and dipped his hand in a rotten stump where the": [65535, 0], "dipped his hand in a rotten stump where the rain": [65535, 0], "his hand in a rotten stump where the rain water": [65535, 0], "hand in a rotten stump where the rain water was": [65535, 0], "in a rotten stump where the rain water was in": [65535, 0], "a rotten stump where the rain water was in the": [65535, 0], "rotten stump where the rain water was in the daytime": [65535, 0], "stump where the rain water was in the daytime certainly": [65535, 0], "where the rain water was in the daytime certainly with": [65535, 0], "the rain water was in the daytime certainly with his": [65535, 0], "rain water was in the daytime certainly with his face": [65535, 0], "water was in the daytime certainly with his face to": [65535, 0], "was in the daytime certainly with his face to the": [65535, 0], "in the daytime certainly with his face to the stump": [65535, 0], "the daytime certainly with his face to the stump yes": [65535, 0], "daytime certainly with his face to the stump yes least": [65535, 0], "certainly with his face to the stump yes least i": [65535, 0], "with his face to the stump yes least i reckon": [65535, 0], "his face to the stump yes least i reckon so": [65535, 0], "face to the stump yes least i reckon so did": [65535, 0], "to the stump yes least i reckon so did he": [65535, 0], "the stump yes least i reckon so did he say": [65535, 0], "stump yes least i reckon so did he say anything": [65535, 0], "yes least i reckon so did he say anything i": [65535, 0], "least i reckon so did he say anything i don't": [65535, 0], "i reckon so did he say anything i don't reckon": [65535, 0], "reckon so did he say anything i don't reckon he": [65535, 0], "so did he say anything i don't reckon he did": [65535, 0], "did he say anything i don't reckon he did i": [65535, 0], "he say anything i don't reckon he did i don't": [65535, 0], "say anything i don't reckon he did i don't know": [65535, 0], "anything i don't reckon he did i don't know aha": [65535, 0], "i don't reckon he did i don't know aha talk": [65535, 0], "don't reckon he did i don't know aha talk about": [65535, 0], "reckon he did i don't know aha talk about trying": [65535, 0], "he did i don't know aha talk about trying to": [65535, 0], "did i don't know aha talk about trying to cure": [65535, 0], "i don't know aha talk about trying to cure warts": [65535, 0], "don't know aha talk about trying to cure warts with": [65535, 0], "know aha talk about trying to cure warts with spunk": [65535, 0], "aha talk about trying to cure warts with spunk water": [65535, 0], "talk about trying to cure warts with spunk water such": [65535, 0], "about trying to cure warts with spunk water such a": [65535, 0], "trying to cure warts with spunk water such a blame": [65535, 0], "to cure warts with spunk water such a blame fool": [65535, 0], "cure warts with spunk water such a blame fool way": [65535, 0], "warts with spunk water such a blame fool way as": [65535, 0], "with spunk water such a blame fool way as that": [65535, 0], "spunk water such a blame fool way as that why": [65535, 0], "water such a blame fool way as that why that": [65535, 0], "such a blame fool way as that why that ain't": [65535, 0], "a blame fool way as that why that ain't a": [65535, 0], "blame fool way as that why that ain't a going": [65535, 0], "fool way as that why that ain't a going to": [65535, 0], "way as that why that ain't a going to do": [65535, 0], "as that why that ain't a going to do any": [65535, 0], "that why that ain't a going to do any good": [65535, 0], "why that ain't a going to do any good you": [65535, 0], "that ain't a going to do any good you got": [65535, 0], "ain't a going to do any good you got to": [65535, 0], "a going to do any good you got to go": [65535, 0], "going to do any good you got to go all": [65535, 0], "to do any good you got to go all by": [65535, 0], "do any good you got to go all by yourself": [65535, 0], "any good you got to go all by yourself to": [65535, 0], "good you got to go all by yourself to the": [65535, 0], "you got to go all by yourself to the middle": [65535, 0], "got to go all by yourself to the middle of": [65535, 0], "to go all by yourself to the middle of the": [65535, 0], "go all by yourself to the middle of the woods": [65535, 0], "all by yourself to the middle of the woods where": [65535, 0], "by yourself to the middle of the woods where you": [65535, 0], "yourself to the middle of the woods where you know": [65535, 0], "to the middle of the woods where you know there's": [65535, 0], "the middle of the woods where you know there's a": [65535, 0], "middle of the woods where you know there's a spunk": [65535, 0], "of the woods where you know there's a spunk water": [65535, 0], "the woods where you know there's a spunk water stump": [65535, 0], "woods where you know there's a spunk water stump and": [65535, 0], "where you know there's a spunk water stump and just": [65535, 0], "you know there's a spunk water stump and just as": [65535, 0], "know there's a spunk water stump and just as it's": [65535, 0], "there's a spunk water stump and just as it's midnight": [65535, 0], "a spunk water stump and just as it's midnight you": [65535, 0], "spunk water stump and just as it's midnight you back": [65535, 0], "water stump and just as it's midnight you back up": [65535, 0], "stump and just as it's midnight you back up against": [65535, 0], "and just as it's midnight you back up against the": [65535, 0], "just as it's midnight you back up against the stump": [65535, 0], "as it's midnight you back up against the stump and": [65535, 0], "it's midnight you back up against the stump and jam": [65535, 0], "midnight you back up against the stump and jam your": [65535, 0], "you back up against the stump and jam your hand": [65535, 0], "back up against the stump and jam your hand in": [65535, 0], "up against the stump and jam your hand in and": [65535, 0], "against the stump and jam your hand in and say": [65535, 0], "the stump and jam your hand in and say 'barley": [65535, 0], "stump and jam your hand in and say 'barley corn": [65535, 0], "and jam your hand in and say 'barley corn barley": [65535, 0], "jam your hand in and say 'barley corn barley corn": [65535, 0], "your hand in and say 'barley corn barley corn injun": [65535, 0], "hand in and say 'barley corn barley corn injun meal": [65535, 0], "in and say 'barley corn barley corn injun meal shorts": [65535, 0], "and say 'barley corn barley corn injun meal shorts spunk": [65535, 0], "say 'barley corn barley corn injun meal shorts spunk water": [65535, 0], "'barley corn barley corn injun meal shorts spunk water spunk": [65535, 0], "corn barley corn injun meal shorts spunk water spunk water": [65535, 0], "barley corn injun meal shorts spunk water spunk water swaller": [65535, 0], "corn injun meal shorts spunk water spunk water swaller these": [65535, 0], "injun meal shorts spunk water spunk water swaller these warts": [65535, 0], "meal shorts spunk water spunk water swaller these warts '": [65535, 0], "shorts spunk water spunk water swaller these warts ' and": [65535, 0], "spunk water spunk water swaller these warts ' and then": [65535, 0], "water spunk water swaller these warts ' and then walk": [65535, 0], "spunk water swaller these warts ' and then walk away": [65535, 0], "water swaller these warts ' and then walk away quick": [65535, 0], "swaller these warts ' and then walk away quick eleven": [65535, 0], "these warts ' and then walk away quick eleven steps": [65535, 0], "warts ' and then walk away quick eleven steps with": [65535, 0], "' and then walk away quick eleven steps with your": [65535, 0], "and then walk away quick eleven steps with your eyes": [65535, 0], "then walk away quick eleven steps with your eyes shut": [65535, 0], "walk away quick eleven steps with your eyes shut and": [65535, 0], "away quick eleven steps with your eyes shut and then": [65535, 0], "quick eleven steps with your eyes shut and then turn": [65535, 0], "eleven steps with your eyes shut and then turn around": [65535, 0], "steps with your eyes shut and then turn around three": [65535, 0], "with your eyes shut and then turn around three times": [65535, 0], "your eyes shut and then turn around three times and": [65535, 0], "eyes shut and then turn around three times and walk": [65535, 0], "shut and then turn around three times and walk home": [65535, 0], "and then turn around three times and walk home without": [65535, 0], "then turn around three times and walk home without speaking": [65535, 0], "turn around three times and walk home without speaking to": [65535, 0], "around three times and walk home without speaking to anybody": [65535, 0], "three times and walk home without speaking to anybody because": [65535, 0], "times and walk home without speaking to anybody because if": [65535, 0], "and walk home without speaking to anybody because if you": [65535, 0], "walk home without speaking to anybody because if you speak": [65535, 0], "home without speaking to anybody because if you speak the": [65535, 0], "without speaking to anybody because if you speak the charm's": [65535, 0], "speaking to anybody because if you speak the charm's busted": [65535, 0], "to anybody because if you speak the charm's busted well": [65535, 0], "anybody because if you speak the charm's busted well that": [65535, 0], "because if you speak the charm's busted well that sounds": [65535, 0], "if you speak the charm's busted well that sounds like": [65535, 0], "you speak the charm's busted well that sounds like a": [65535, 0], "speak the charm's busted well that sounds like a good": [65535, 0], "the charm's busted well that sounds like a good way": [65535, 0], "charm's busted well that sounds like a good way but": [65535, 0], "busted well that sounds like a good way but that": [65535, 0], "well that sounds like a good way but that ain't": [65535, 0], "that sounds like a good way but that ain't the": [65535, 0], "sounds like a good way but that ain't the way": [65535, 0], "like a good way but that ain't the way bob": [65535, 0], "a good way but that ain't the way bob tanner": [65535, 0], "good way but that ain't the way bob tanner done": [65535, 0], "way but that ain't the way bob tanner done no": [65535, 0], "but that ain't the way bob tanner done no sir": [65535, 0], "that ain't the way bob tanner done no sir you": [65535, 0], "ain't the way bob tanner done no sir you can": [65535, 0], "the way bob tanner done no sir you can bet": [65535, 0], "way bob tanner done no sir you can bet he": [65535, 0], "bob tanner done no sir you can bet he didn't": [65535, 0], "tanner done no sir you can bet he didn't becuz": [65535, 0], "done no sir you can bet he didn't becuz he's": [65535, 0], "no sir you can bet he didn't becuz he's the": [65535, 0], "sir you can bet he didn't becuz he's the wartiest": [65535, 0], "you can bet he didn't becuz he's the wartiest boy": [65535, 0], "can bet he didn't becuz he's the wartiest boy in": [65535, 0], "bet he didn't becuz he's the wartiest boy in this": [65535, 0], "he didn't becuz he's the wartiest boy in this town": [65535, 0], "didn't becuz he's the wartiest boy in this town and": [65535, 0], "becuz he's the wartiest boy in this town and he": [65535, 0], "he's the wartiest boy in this town and he wouldn't": [65535, 0], "the wartiest boy in this town and he wouldn't have": [65535, 0], "wartiest boy in this town and he wouldn't have a": [65535, 0], "boy in this town and he wouldn't have a wart": [65535, 0], "in this town and he wouldn't have a wart on": [65535, 0], "this town and he wouldn't have a wart on him": [65535, 0], "town and he wouldn't have a wart on him if": [65535, 0], "and he wouldn't have a wart on him if he'd": [65535, 0], "he wouldn't have a wart on him if he'd knowed": [65535, 0], "wouldn't have a wart on him if he'd knowed how": [65535, 0], "have a wart on him if he'd knowed how to": [65535, 0], "a wart on him if he'd knowed how to work": [65535, 0], "wart on him if he'd knowed how to work spunk": [65535, 0], "on him if he'd knowed how to work spunk water": [65535, 0], "him if he'd knowed how to work spunk water i've": [65535, 0], "if he'd knowed how to work spunk water i've took": [65535, 0], "he'd knowed how to work spunk water i've took off": [65535, 0], "knowed how to work spunk water i've took off thousands": [65535, 0], "how to work spunk water i've took off thousands of": [65535, 0], "to work spunk water i've took off thousands of warts": [65535, 0], "work spunk water i've took off thousands of warts off": [65535, 0], "spunk water i've took off thousands of warts off of": [65535, 0], "water i've took off thousands of warts off of my": [65535, 0], "i've took off thousands of warts off of my hands": [65535, 0], "took off thousands of warts off of my hands that": [65535, 0], "off thousands of warts off of my hands that way": [65535, 0], "thousands of warts off of my hands that way huck": [65535, 0], "of warts off of my hands that way huck i": [65535, 0], "warts off of my hands that way huck i play": [65535, 0], "off of my hands that way huck i play with": [65535, 0], "of my hands that way huck i play with frogs": [65535, 0], "my hands that way huck i play with frogs so": [65535, 0], "hands that way huck i play with frogs so much": [65535, 0], "that way huck i play with frogs so much that": [65535, 0], "way huck i play with frogs so much that i've": [65535, 0], "huck i play with frogs so much that i've always": [65535, 0], "i play with frogs so much that i've always got": [65535, 0], "play with frogs so much that i've always got considerable": [65535, 0], "with frogs so much that i've always got considerable many": [65535, 0], "frogs so much that i've always got considerable many warts": [65535, 0], "so much that i've always got considerable many warts sometimes": [65535, 0], "much that i've always got considerable many warts sometimes i": [65535, 0], "that i've always got considerable many warts sometimes i take": [65535, 0], "i've always got considerable many warts sometimes i take 'em": [65535, 0], "always got considerable many warts sometimes i take 'em off": [65535, 0], "got considerable many warts sometimes i take 'em off with": [65535, 0], "considerable many warts sometimes i take 'em off with a": [65535, 0], "many warts sometimes i take 'em off with a bean": [65535, 0], "warts sometimes i take 'em off with a bean yes": [65535, 0], "sometimes i take 'em off with a bean yes bean's": [65535, 0], "i take 'em off with a bean yes bean's good": [65535, 0], "take 'em off with a bean yes bean's good i've": [65535, 0], "'em off with a bean yes bean's good i've done": [65535, 0], "off with a bean yes bean's good i've done that": [65535, 0], "with a bean yes bean's good i've done that have": [65535, 0], "a bean yes bean's good i've done that have you": [65535, 0], "bean yes bean's good i've done that have you what's": [65535, 0], "yes bean's good i've done that have you what's your": [65535, 0], "bean's good i've done that have you what's your way": [65535, 0], "good i've done that have you what's your way you": [65535, 0], "i've done that have you what's your way you take": [65535, 0], "done that have you what's your way you take and": [65535, 0], "that have you what's your way you take and split": [65535, 0], "have you what's your way you take and split the": [65535, 0], "you what's your way you take and split the bean": [65535, 0], "what's your way you take and split the bean and": [65535, 0], "your way you take and split the bean and cut": [65535, 0], "way you take and split the bean and cut the": [65535, 0], "you take and split the bean and cut the wart": [65535, 0], "take and split the bean and cut the wart so": [65535, 0], "and split the bean and cut the wart so as": [65535, 0], "split the bean and cut the wart so as to": [65535, 0], "the bean and cut the wart so as to get": [65535, 0], "bean and cut the wart so as to get some": [65535, 0], "and cut the wart so as to get some blood": [65535, 0], "cut the wart so as to get some blood and": [65535, 0], "the wart so as to get some blood and then": [65535, 0], "wart so as to get some blood and then you": [65535, 0], "so as to get some blood and then you put": [65535, 0], "as to get some blood and then you put the": [65535, 0], "to get some blood and then you put the blood": [65535, 0], "get some blood and then you put the blood on": [65535, 0], "some blood and then you put the blood on one": [65535, 0], "blood and then you put the blood on one piece": [65535, 0], "and then you put the blood on one piece of": [65535, 0], "then you put the blood on one piece of the": [65535, 0], "you put the blood on one piece of the bean": [65535, 0], "put the blood on one piece of the bean and": [65535, 0], "the blood on one piece of the bean and take": [65535, 0], "blood on one piece of the bean and take and": [65535, 0], "on one piece of the bean and take and dig": [65535, 0], "one piece of the bean and take and dig a": [65535, 0], "piece of the bean and take and dig a hole": [65535, 0], "of the bean and take and dig a hole and": [65535, 0], "the bean and take and dig a hole and bury": [65535, 0], "bean and take and dig a hole and bury it": [65535, 0], "and take and dig a hole and bury it 'bout": [65535, 0], "take and dig a hole and bury it 'bout midnight": [65535, 0], "and dig a hole and bury it 'bout midnight at": [65535, 0], "dig a hole and bury it 'bout midnight at the": [65535, 0], "a hole and bury it 'bout midnight at the crossroads": [65535, 0], "hole and bury it 'bout midnight at the crossroads in": [65535, 0], "and bury it 'bout midnight at the crossroads in the": [65535, 0], "bury it 'bout midnight at the crossroads in the dark": [65535, 0], "it 'bout midnight at the crossroads in the dark of": [65535, 0], "'bout midnight at the crossroads in the dark of the": [65535, 0], "midnight at the crossroads in the dark of the moon": [65535, 0], "at the crossroads in the dark of the moon and": [65535, 0], "the crossroads in the dark of the moon and then": [65535, 0], "crossroads in the dark of the moon and then you": [65535, 0], "in the dark of the moon and then you burn": [65535, 0], "the dark of the moon and then you burn up": [65535, 0], "dark of the moon and then you burn up the": [65535, 0], "of the moon and then you burn up the rest": [65535, 0], "the moon and then you burn up the rest of": [65535, 0], "moon and then you burn up the rest of the": [65535, 0], "and then you burn up the rest of the bean": [65535, 0], "then you burn up the rest of the bean you": [65535, 0], "you burn up the rest of the bean you see": [65535, 0], "burn up the rest of the bean you see that": [65535, 0], "up the rest of the bean you see that piece": [65535, 0], "the rest of the bean you see that piece that's": [65535, 0], "rest of the bean you see that piece that's got": [65535, 0], "of the bean you see that piece that's got the": [65535, 0], "the bean you see that piece that's got the blood": [65535, 0], "bean you see that piece that's got the blood on": [65535, 0], "you see that piece that's got the blood on it": [65535, 0], "see that piece that's got the blood on it will": [65535, 0], "that piece that's got the blood on it will keep": [65535, 0], "piece that's got the blood on it will keep drawing": [65535, 0], "that's got the blood on it will keep drawing and": [65535, 0], "got the blood on it will keep drawing and drawing": [65535, 0], "the blood on it will keep drawing and drawing trying": [65535, 0], "blood on it will keep drawing and drawing trying to": [65535, 0], "on it will keep drawing and drawing trying to fetch": [65535, 0], "it will keep drawing and drawing trying to fetch the": [65535, 0], "will keep drawing and drawing trying to fetch the other": [65535, 0], "keep drawing and drawing trying to fetch the other piece": [65535, 0], "drawing and drawing trying to fetch the other piece to": [65535, 0], "and drawing trying to fetch the other piece to it": [65535, 0], "drawing trying to fetch the other piece to it and": [65535, 0], "trying to fetch the other piece to it and so": [65535, 0], "to fetch the other piece to it and so that": [65535, 0], "fetch the other piece to it and so that helps": [65535, 0], "the other piece to it and so that helps the": [65535, 0], "other piece to it and so that helps the blood": [65535, 0], "piece to it and so that helps the blood to": [65535, 0], "to it and so that helps the blood to draw": [65535, 0], "it and so that helps the blood to draw the": [65535, 0], "and so that helps the blood to draw the wart": [65535, 0], "so that helps the blood to draw the wart and": [65535, 0], "that helps the blood to draw the wart and pretty": [65535, 0], "helps the blood to draw the wart and pretty soon": [65535, 0], "the blood to draw the wart and pretty soon off": [65535, 0], "blood to draw the wart and pretty soon off she": [65535, 0], "to draw the wart and pretty soon off she comes": [65535, 0], "draw the wart and pretty soon off she comes yes": [65535, 0], "the wart and pretty soon off she comes yes that's": [65535, 0], "wart and pretty soon off she comes yes that's it": [65535, 0], "and pretty soon off she comes yes that's it huck": [65535, 0], "pretty soon off she comes yes that's it huck that's": [65535, 0], "soon off she comes yes that's it huck that's it": [65535, 0], "off she comes yes that's it huck that's it though": [65535, 0], "she comes yes that's it huck that's it though when": [65535, 0], "comes yes that's it huck that's it though when you're": [65535, 0], "yes that's it huck that's it though when you're burying": [65535, 0], "that's it huck that's it though when you're burying it": [65535, 0], "it huck that's it though when you're burying it if": [65535, 0], "huck that's it though when you're burying it if you": [65535, 0], "that's it though when you're burying it if you say": [65535, 0], "it though when you're burying it if you say 'down": [65535, 0], "though when you're burying it if you say 'down bean": [65535, 0], "when you're burying it if you say 'down bean off": [65535, 0], "you're burying it if you say 'down bean off wart": [65535, 0], "burying it if you say 'down bean off wart come": [65535, 0], "it if you say 'down bean off wart come no": [65535, 0], "if you say 'down bean off wart come no more": [65535, 0], "you say 'down bean off wart come no more to": [65535, 0], "say 'down bean off wart come no more to bother": [65535, 0], "'down bean off wart come no more to bother me": [65535, 0], "bean off wart come no more to bother me '": [65535, 0], "off wart come no more to bother me ' it's": [65535, 0], "wart come no more to bother me ' it's better": [65535, 0], "come no more to bother me ' it's better that's": [65535, 0], "no more to bother me ' it's better that's the": [65535, 0], "more to bother me ' it's better that's the way": [65535, 0], "to bother me ' it's better that's the way joe": [65535, 0], "bother me ' it's better that's the way joe harper": [65535, 0], "me ' it's better that's the way joe harper does": [65535, 0], "' it's better that's the way joe harper does and": [65535, 0], "it's better that's the way joe harper does and he's": [65535, 0], "better that's the way joe harper does and he's been": [65535, 0], "that's the way joe harper does and he's been nearly": [65535, 0], "the way joe harper does and he's been nearly to": [65535, 0], "way joe harper does and he's been nearly to coonville": [65535, 0], "joe harper does and he's been nearly to coonville and": [65535, 0], "harper does and he's been nearly to coonville and most": [65535, 0], "does and he's been nearly to coonville and most everywheres": [65535, 0], "and he's been nearly to coonville and most everywheres but": [65535, 0], "he's been nearly to coonville and most everywheres but say": [65535, 0], "been nearly to coonville and most everywheres but say how": [65535, 0], "nearly to coonville and most everywheres but say how do": [65535, 0], "to coonville and most everywheres but say how do you": [65535, 0], "coonville and most everywheres but say how do you cure": [65535, 0], "and most everywheres but say how do you cure 'em": [65535, 0], "most everywheres but say how do you cure 'em with": [65535, 0], "everywheres but say how do you cure 'em with dead": [65535, 0], "but say how do you cure 'em with dead cats": [65535, 0], "say how do you cure 'em with dead cats why": [65535, 0], "how do you cure 'em with dead cats why you": [65535, 0], "do you cure 'em with dead cats why you take": [65535, 0], "you cure 'em with dead cats why you take your": [65535, 0], "cure 'em with dead cats why you take your cat": [65535, 0], "'em with dead cats why you take your cat and": [65535, 0], "with dead cats why you take your cat and go": [65535, 0], "dead cats why you take your cat and go and": [65535, 0], "cats why you take your cat and go and get": [65535, 0], "why you take your cat and go and get in": [65535, 0], "you take your cat and go and get in the": [65535, 0], "take your cat and go and get in the graveyard": [65535, 0], "your cat and go and get in the graveyard 'long": [65535, 0], "cat and go and get in the graveyard 'long about": [65535, 0], "and go and get in the graveyard 'long about midnight": [65535, 0], "go and get in the graveyard 'long about midnight when": [65535, 0], "and get in the graveyard 'long about midnight when somebody": [65535, 0], "get in the graveyard 'long about midnight when somebody that": [65535, 0], "in the graveyard 'long about midnight when somebody that was": [65535, 0], "the graveyard 'long about midnight when somebody that was wicked": [65535, 0], "graveyard 'long about midnight when somebody that was wicked has": [65535, 0], "'long about midnight when somebody that was wicked has been": [65535, 0], "about midnight when somebody that was wicked has been buried": [65535, 0], "midnight when somebody that was wicked has been buried and": [65535, 0], "when somebody that was wicked has been buried and when": [65535, 0], "somebody that was wicked has been buried and when it's": [65535, 0], "that was wicked has been buried and when it's midnight": [65535, 0], "was wicked has been buried and when it's midnight a": [65535, 0], "wicked has been buried and when it's midnight a devil": [65535, 0], "has been buried and when it's midnight a devil will": [65535, 0], "been buried and when it's midnight a devil will come": [65535, 0], "buried and when it's midnight a devil will come or": [65535, 0], "and when it's midnight a devil will come or maybe": [65535, 0], "when it's midnight a devil will come or maybe two": [65535, 0], "it's midnight a devil will come or maybe two or": [65535, 0], "midnight a devil will come or maybe two or three": [65535, 0], "a devil will come or maybe two or three but": [65535, 0], "devil will come or maybe two or three but you": [65535, 0], "will come or maybe two or three but you can't": [65535, 0], "come or maybe two or three but you can't see": [65535, 0], "or maybe two or three but you can't see 'em": [65535, 0], "maybe two or three but you can't see 'em you": [65535, 0], "two or three but you can't see 'em you can": [65535, 0], "or three but you can't see 'em you can only": [65535, 0], "three but you can't see 'em you can only hear": [65535, 0], "but you can't see 'em you can only hear something": [65535, 0], "you can't see 'em you can only hear something like": [65535, 0], "can't see 'em you can only hear something like the": [65535, 0], "see 'em you can only hear something like the wind": [65535, 0], "'em you can only hear something like the wind or": [65535, 0], "you can only hear something like the wind or maybe": [65535, 0], "can only hear something like the wind or maybe hear": [65535, 0], "only hear something like the wind or maybe hear 'em": [65535, 0], "hear something like the wind or maybe hear 'em talk": [65535, 0], "something like the wind or maybe hear 'em talk and": [65535, 0], "like the wind or maybe hear 'em talk and when": [65535, 0], "the wind or maybe hear 'em talk and when they're": [65535, 0], "wind or maybe hear 'em talk and when they're taking": [65535, 0], "or maybe hear 'em talk and when they're taking that": [65535, 0], "maybe hear 'em talk and when they're taking that feller": [65535, 0], "hear 'em talk and when they're taking that feller away": [65535, 0], "'em talk and when they're taking that feller away you": [65535, 0], "talk and when they're taking that feller away you heave": [65535, 0], "and when they're taking that feller away you heave your": [65535, 0], "when they're taking that feller away you heave your cat": [65535, 0], "they're taking that feller away you heave your cat after": [65535, 0], "taking that feller away you heave your cat after 'em": [65535, 0], "that feller away you heave your cat after 'em and": [65535, 0], "feller away you heave your cat after 'em and say": [65535, 0], "away you heave your cat after 'em and say 'devil": [65535, 0], "you heave your cat after 'em and say 'devil follow": [65535, 0], "heave your cat after 'em and say 'devil follow corpse": [65535, 0], "your cat after 'em and say 'devil follow corpse cat": [65535, 0], "cat after 'em and say 'devil follow corpse cat follow": [65535, 0], "after 'em and say 'devil follow corpse cat follow devil": [65535, 0], "'em and say 'devil follow corpse cat follow devil warts": [65535, 0], "and say 'devil follow corpse cat follow devil warts follow": [65535, 0], "say 'devil follow corpse cat follow devil warts follow cat": [65535, 0], "'devil follow corpse cat follow devil warts follow cat i'm": [65535, 0], "follow corpse cat follow devil warts follow cat i'm done": [65535, 0], "corpse cat follow devil warts follow cat i'm done with": [65535, 0], "cat follow devil warts follow cat i'm done with ye": [65535, 0], "follow devil warts follow cat i'm done with ye '": [65535, 0], "devil warts follow cat i'm done with ye ' that'll": [65535, 0], "warts follow cat i'm done with ye ' that'll fetch": [65535, 0], "follow cat i'm done with ye ' that'll fetch any": [65535, 0], "cat i'm done with ye ' that'll fetch any wart": [65535, 0], "i'm done with ye ' that'll fetch any wart sounds": [65535, 0], "done with ye ' that'll fetch any wart sounds right": [65535, 0], "with ye ' that'll fetch any wart sounds right d'you": [65535, 0], "ye ' that'll fetch any wart sounds right d'you ever": [65535, 0], "' that'll fetch any wart sounds right d'you ever try": [65535, 0], "that'll fetch any wart sounds right d'you ever try it": [65535, 0], "fetch any wart sounds right d'you ever try it huck": [65535, 0], "any wart sounds right d'you ever try it huck no": [65535, 0], "wart sounds right d'you ever try it huck no but": [65535, 0], "sounds right d'you ever try it huck no but old": [65535, 0], "right d'you ever try it huck no but old mother": [65535, 0], "d'you ever try it huck no but old mother hopkins": [65535, 0], "ever try it huck no but old mother hopkins told": [65535, 0], "try it huck no but old mother hopkins told me": [65535, 0], "it huck no but old mother hopkins told me well": [65535, 0], "huck no but old mother hopkins told me well i": [65535, 0], "no but old mother hopkins told me well i reckon": [65535, 0], "but old mother hopkins told me well i reckon it's": [65535, 0], "old mother hopkins told me well i reckon it's so": [65535, 0], "mother hopkins told me well i reckon it's so then": [65535, 0], "hopkins told me well i reckon it's so then becuz": [65535, 0], "told me well i reckon it's so then becuz they": [65535, 0], "me well i reckon it's so then becuz they say": [65535, 0], "well i reckon it's so then becuz they say she's": [65535, 0], "i reckon it's so then becuz they say she's a": [65535, 0], "reckon it's so then becuz they say she's a witch": [65535, 0], "it's so then becuz they say she's a witch say": [65535, 0], "so then becuz they say she's a witch say why": [65535, 0], "then becuz they say she's a witch say why tom": [65535, 0], "becuz they say she's a witch say why tom i": [65535, 0], "they say she's a witch say why tom i know": [65535, 0], "say she's a witch say why tom i know she": [65535, 0], "she's a witch say why tom i know she is": [65535, 0], "a witch say why tom i know she is she": [65535, 0], "witch say why tom i know she is she witched": [65535, 0], "say why tom i know she is she witched pap": [65535, 0], "why tom i know she is she witched pap pap": [65535, 0], "tom i know she is she witched pap pap says": [65535, 0], "i know she is she witched pap pap says so": [65535, 0], "know she is she witched pap pap says so his": [65535, 0], "she is she witched pap pap says so his own": [65535, 0], "is she witched pap pap says so his own self": [65535, 0], "she witched pap pap says so his own self he": [65535, 0], "witched pap pap says so his own self he come": [65535, 0], "pap pap says so his own self he come along": [65535, 0], "pap says so his own self he come along one": [65535, 0], "says so his own self he come along one day": [65535, 0], "so his own self he come along one day and": [65535, 0], "his own self he come along one day and he": [65535, 0], "own self he come along one day and he see": [65535, 0], "self he come along one day and he see she": [65535, 0], "he come along one day and he see she was": [65535, 0], "come along one day and he see she was a": [65535, 0], "along one day and he see she was a witching": [65535, 0], "one day and he see she was a witching him": [65535, 0], "day and he see she was a witching him so": [65535, 0], "and he see she was a witching him so he": [65535, 0], "he see she was a witching him so he took": [65535, 0], "see she was a witching him so he took up": [65535, 0], "she was a witching him so he took up a": [65535, 0], "was a witching him so he took up a rock": [65535, 0], "a witching him so he took up a rock and": [65535, 0], "witching him so he took up a rock and if": [65535, 0], "him so he took up a rock and if she": [65535, 0], "so he took up a rock and if she hadn't": [65535, 0], "he took up a rock and if she hadn't dodged": [65535, 0], "took up a rock and if she hadn't dodged he'd": [65535, 0], "up a rock and if she hadn't dodged he'd a": [65535, 0], "a rock and if she hadn't dodged he'd a got": [65535, 0], "rock and if she hadn't dodged he'd a got her": [65535, 0], "and if she hadn't dodged he'd a got her well": [65535, 0], "if she hadn't dodged he'd a got her well that": [65535, 0], "she hadn't dodged he'd a got her well that very": [65535, 0], "hadn't dodged he'd a got her well that very night": [65535, 0], "dodged he'd a got her well that very night he": [65535, 0], "he'd a got her well that very night he rolled": [65535, 0], "a got her well that very night he rolled off'n": [65535, 0], "got her well that very night he rolled off'n a": [65535, 0], "her well that very night he rolled off'n a shed": [65535, 0], "well that very night he rolled off'n a shed wher'": [65535, 0], "that very night he rolled off'n a shed wher' he": [65535, 0], "very night he rolled off'n a shed wher' he was": [65535, 0], "night he rolled off'n a shed wher' he was a": [65535, 0], "he rolled off'n a shed wher' he was a layin": [65535, 0], "rolled off'n a shed wher' he was a layin drunk": [65535, 0], "off'n a shed wher' he was a layin drunk and": [65535, 0], "a shed wher' he was a layin drunk and broke": [65535, 0], "shed wher' he was a layin drunk and broke his": [65535, 0], "wher' he was a layin drunk and broke his arm": [65535, 0], "he was a layin drunk and broke his arm why": [65535, 0], "was a layin drunk and broke his arm why that's": [65535, 0], "a layin drunk and broke his arm why that's awful": [65535, 0], "layin drunk and broke his arm why that's awful how": [65535, 0], "drunk and broke his arm why that's awful how did": [65535, 0], "and broke his arm why that's awful how did he": [65535, 0], "broke his arm why that's awful how did he know": [65535, 0], "his arm why that's awful how did he know she": [65535, 0], "arm why that's awful how did he know she was": [65535, 0], "why that's awful how did he know she was a": [65535, 0], "that's awful how did he know she was a witching": [65535, 0], "awful how did he know she was a witching him": [65535, 0], "how did he know she was a witching him lord": [65535, 0], "did he know she was a witching him lord pap": [65535, 0], "he know she was a witching him lord pap can": [65535, 0], "know she was a witching him lord pap can tell": [65535, 0], "she was a witching him lord pap can tell easy": [65535, 0], "was a witching him lord pap can tell easy pap": [65535, 0], "a witching him lord pap can tell easy pap says": [65535, 0], "witching him lord pap can tell easy pap says when": [65535, 0], "him lord pap can tell easy pap says when they": [65535, 0], "lord pap can tell easy pap says when they keep": [65535, 0], "pap can tell easy pap says when they keep looking": [65535, 0], "can tell easy pap says when they keep looking at": [65535, 0], "tell easy pap says when they keep looking at you": [65535, 0], "easy pap says when they keep looking at you right": [65535, 0], "pap says when they keep looking at you right stiddy": [65535, 0], "says when they keep looking at you right stiddy they're": [65535, 0], "when they keep looking at you right stiddy they're a": [65535, 0], "they keep looking at you right stiddy they're a witching": [65535, 0], "keep looking at you right stiddy they're a witching you": [65535, 0], "looking at you right stiddy they're a witching you specially": [65535, 0], "at you right stiddy they're a witching you specially if": [65535, 0], "you right stiddy they're a witching you specially if they": [65535, 0], "right stiddy they're a witching you specially if they mumble": [65535, 0], "stiddy they're a witching you specially if they mumble becuz": [65535, 0], "they're a witching you specially if they mumble becuz when": [65535, 0], "a witching you specially if they mumble becuz when they": [65535, 0], "witching you specially if they mumble becuz when they mumble": [65535, 0], "you specially if they mumble becuz when they mumble they're": [65535, 0], "specially if they mumble becuz when they mumble they're saying": [65535, 0], "if they mumble becuz when they mumble they're saying the": [65535, 0], "they mumble becuz when they mumble they're saying the lord's": [65535, 0], "mumble becuz when they mumble they're saying the lord's prayer": [65535, 0], "becuz when they mumble they're saying the lord's prayer backards": [65535, 0], "when they mumble they're saying the lord's prayer backards say": [65535, 0], "they mumble they're saying the lord's prayer backards say hucky": [65535, 0], "mumble they're saying the lord's prayer backards say hucky when": [65535, 0], "they're saying the lord's prayer backards say hucky when you": [65535, 0], "saying the lord's prayer backards say hucky when you going": [65535, 0], "the lord's prayer backards say hucky when you going to": [65535, 0], "lord's prayer backards say hucky when you going to try": [65535, 0], "prayer backards say hucky when you going to try the": [65535, 0], "backards say hucky when you going to try the cat": [65535, 0], "say hucky when you going to try the cat to": [65535, 0], "hucky when you going to try the cat to night": [65535, 0], "when you going to try the cat to night i": [65535, 0], "you going to try the cat to night i reckon": [65535, 0], "going to try the cat to night i reckon they'll": [65535, 0], "to try the cat to night i reckon they'll come": [65535, 0], "try the cat to night i reckon they'll come after": [65535, 0], "the cat to night i reckon they'll come after old": [65535, 0], "cat to night i reckon they'll come after old hoss": [65535, 0], "to night i reckon they'll come after old hoss williams": [65535, 0], "night i reckon they'll come after old hoss williams to": [65535, 0], "i reckon they'll come after old hoss williams to night": [65535, 0], "reckon they'll come after old hoss williams to night but": [65535, 0], "they'll come after old hoss williams to night but they": [65535, 0], "come after old hoss williams to night but they buried": [65535, 0], "after old hoss williams to night but they buried him": [65535, 0], "old hoss williams to night but they buried him saturday": [65535, 0], "hoss williams to night but they buried him saturday didn't": [65535, 0], "williams to night but they buried him saturday didn't they": [65535, 0], "to night but they buried him saturday didn't they get": [65535, 0], "night but they buried him saturday didn't they get him": [65535, 0], "but they buried him saturday didn't they get him saturday": [65535, 0], "they buried him saturday didn't they get him saturday night": [65535, 0], "buried him saturday didn't they get him saturday night why": [65535, 0], "him saturday didn't they get him saturday night why how": [65535, 0], "saturday didn't they get him saturday night why how you": [65535, 0], "didn't they get him saturday night why how you talk": [65535, 0], "they get him saturday night why how you talk how": [65535, 0], "get him saturday night why how you talk how could": [65535, 0], "him saturday night why how you talk how could their": [65535, 0], "saturday night why how you talk how could their charms": [65535, 0], "night why how you talk how could their charms work": [65535, 0], "why how you talk how could their charms work till": [65535, 0], "how you talk how could their charms work till midnight": [65535, 0], "you talk how could their charms work till midnight and": [65535, 0], "talk how could their charms work till midnight and then": [65535, 0], "how could their charms work till midnight and then it's": [65535, 0], "could their charms work till midnight and then it's sunday": [65535, 0], "their charms work till midnight and then it's sunday devils": [65535, 0], "charms work till midnight and then it's sunday devils don't": [65535, 0], "work till midnight and then it's sunday devils don't slosh": [65535, 0], "till midnight and then it's sunday devils don't slosh around": [65535, 0], "midnight and then it's sunday devils don't slosh around much": [65535, 0], "and then it's sunday devils don't slosh around much of": [65535, 0], "then it's sunday devils don't slosh around much of a": [65535, 0], "it's sunday devils don't slosh around much of a sunday": [65535, 0], "sunday devils don't slosh around much of a sunday i": [65535, 0], "devils don't slosh around much of a sunday i don't": [65535, 0], "don't slosh around much of a sunday i don't reckon": [65535, 0], "slosh around much of a sunday i don't reckon i": [65535, 0], "around much of a sunday i don't reckon i never": [65535, 0], "much of a sunday i don't reckon i never thought": [65535, 0], "of a sunday i don't reckon i never thought of": [65535, 0], "a sunday i don't reckon i never thought of that": [65535, 0], "sunday i don't reckon i never thought of that that's": [65535, 0], "i don't reckon i never thought of that that's so": [65535, 0], "don't reckon i never thought of that that's so lemme": [65535, 0], "reckon i never thought of that that's so lemme go": [65535, 0], "i never thought of that that's so lemme go with": [65535, 0], "never thought of that that's so lemme go with you": [65535, 0], "thought of that that's so lemme go with you of": [65535, 0], "of that that's so lemme go with you of course": [65535, 0], "that that's so lemme go with you of course if": [65535, 0], "that's so lemme go with you of course if you": [65535, 0], "so lemme go with you of course if you ain't": [65535, 0], "lemme go with you of course if you ain't afeard": [65535, 0], "go with you of course if you ain't afeard afeard": [65535, 0], "with you of course if you ain't afeard afeard 'tain't": [65535, 0], "you of course if you ain't afeard afeard 'tain't likely": [65535, 0], "of course if you ain't afeard afeard 'tain't likely will": [65535, 0], "course if you ain't afeard afeard 'tain't likely will you": [65535, 0], "if you ain't afeard afeard 'tain't likely will you meow": [65535, 0], "you ain't afeard afeard 'tain't likely will you meow yes": [65535, 0], "ain't afeard afeard 'tain't likely will you meow yes and": [65535, 0], "afeard afeard 'tain't likely will you meow yes and you": [65535, 0], "afeard 'tain't likely will you meow yes and you meow": [65535, 0], "'tain't likely will you meow yes and you meow back": [65535, 0], "likely will you meow yes and you meow back if": [65535, 0], "will you meow yes and you meow back if you": [65535, 0], "you meow yes and you meow back if you get": [65535, 0], "meow yes and you meow back if you get a": [65535, 0], "yes and you meow back if you get a chance": [65535, 0], "and you meow back if you get a chance last": [65535, 0], "you meow back if you get a chance last time": [65535, 0], "meow back if you get a chance last time you": [65535, 0], "back if you get a chance last time you kep'": [65535, 0], "if you get a chance last time you kep' me": [65535, 0], "you get a chance last time you kep' me a": [65535, 0], "get a chance last time you kep' me a meowing": [65535, 0], "a chance last time you kep' me a meowing around": [65535, 0], "chance last time you kep' me a meowing around till": [65535, 0], "last time you kep' me a meowing around till old": [65535, 0], "time you kep' me a meowing around till old hays": [65535, 0], "you kep' me a meowing around till old hays went": [65535, 0], "kep' me a meowing around till old hays went to": [65535, 0], "me a meowing around till old hays went to throwing": [65535, 0], "a meowing around till old hays went to throwing rocks": [65535, 0], "meowing around till old hays went to throwing rocks at": [65535, 0], "around till old hays went to throwing rocks at me": [65535, 0], "till old hays went to throwing rocks at me and": [65535, 0], "old hays went to throwing rocks at me and says": [65535, 0], "hays went to throwing rocks at me and says 'dern": [65535, 0], "went to throwing rocks at me and says 'dern that": [65535, 0], "to throwing rocks at me and says 'dern that cat": [65535, 0], "throwing rocks at me and says 'dern that cat '": [65535, 0], "rocks at me and says 'dern that cat ' and": [65535, 0], "at me and says 'dern that cat ' and so": [65535, 0], "me and says 'dern that cat ' and so i": [65535, 0], "and says 'dern that cat ' and so i hove": [65535, 0], "says 'dern that cat ' and so i hove a": [65535, 0], "'dern that cat ' and so i hove a brick": [65535, 0], "that cat ' and so i hove a brick through": [65535, 0], "cat ' and so i hove a brick through his": [65535, 0], "' and so i hove a brick through his window": [65535, 0], "and so i hove a brick through his window but": [65535, 0], "so i hove a brick through his window but don't": [65535, 0], "i hove a brick through his window but don't you": [65535, 0], "hove a brick through his window but don't you tell": [65535, 0], "a brick through his window but don't you tell i": [65535, 0], "brick through his window but don't you tell i won't": [65535, 0], "through his window but don't you tell i won't i": [65535, 0], "his window but don't you tell i won't i couldn't": [65535, 0], "window but don't you tell i won't i couldn't meow": [65535, 0], "but don't you tell i won't i couldn't meow that": [65535, 0], "don't you tell i won't i couldn't meow that night": [65535, 0], "you tell i won't i couldn't meow that night becuz": [65535, 0], "tell i won't i couldn't meow that night becuz auntie": [65535, 0], "i won't i couldn't meow that night becuz auntie was": [65535, 0], "won't i couldn't meow that night becuz auntie was watching": [65535, 0], "i couldn't meow that night becuz auntie was watching me": [65535, 0], "couldn't meow that night becuz auntie was watching me but": [65535, 0], "meow that night becuz auntie was watching me but i'll": [65535, 0], "that night becuz auntie was watching me but i'll meow": [65535, 0], "night becuz auntie was watching me but i'll meow this": [65535, 0], "becuz auntie was watching me but i'll meow this time": [65535, 0], "auntie was watching me but i'll meow this time say": [65535, 0], "was watching me but i'll meow this time say what's": [65535, 0], "watching me but i'll meow this time say what's that": [65535, 0], "me but i'll meow this time say what's that nothing": [65535, 0], "but i'll meow this time say what's that nothing but": [65535, 0], "i'll meow this time say what's that nothing but a": [65535, 0], "meow this time say what's that nothing but a tick": [65535, 0], "this time say what's that nothing but a tick where'd": [65535, 0], "time say what's that nothing but a tick where'd you": [65535, 0], "say what's that nothing but a tick where'd you get": [65535, 0], "what's that nothing but a tick where'd you get him": [65535, 0], "that nothing but a tick where'd you get him out": [65535, 0], "nothing but a tick where'd you get him out in": [65535, 0], "but a tick where'd you get him out in the": [65535, 0], "a tick where'd you get him out in the woods": [65535, 0], "tick where'd you get him out in the woods what'll": [65535, 0], "where'd you get him out in the woods what'll you": [65535, 0], "you get him out in the woods what'll you take": [65535, 0], "get him out in the woods what'll you take for": [65535, 0], "him out in the woods what'll you take for him": [65535, 0], "out in the woods what'll you take for him i": [65535, 0], "in the woods what'll you take for him i don't": [65535, 0], "the woods what'll you take for him i don't know": [65535, 0], "woods what'll you take for him i don't know i": [65535, 0], "what'll you take for him i don't know i don't": [65535, 0], "you take for him i don't know i don't want": [65535, 0], "take for him i don't know i don't want to": [65535, 0], "for him i don't know i don't want to sell": [65535, 0], "him i don't know i don't want to sell him": [65535, 0], "i don't know i don't want to sell him all": [65535, 0], "don't know i don't want to sell him all right": [65535, 0], "know i don't want to sell him all right it's": [65535, 0], "i don't want to sell him all right it's a": [65535, 0], "don't want to sell him all right it's a mighty": [65535, 0], "want to sell him all right it's a mighty small": [65535, 0], "to sell him all right it's a mighty small tick": [65535, 0], "sell him all right it's a mighty small tick anyway": [65535, 0], "him all right it's a mighty small tick anyway oh": [65535, 0], "all right it's a mighty small tick anyway oh anybody": [65535, 0], "right it's a mighty small tick anyway oh anybody can": [65535, 0], "it's a mighty small tick anyway oh anybody can run": [65535, 0], "a mighty small tick anyway oh anybody can run a": [65535, 0], "mighty small tick anyway oh anybody can run a tick": [65535, 0], "small tick anyway oh anybody can run a tick down": [65535, 0], "tick anyway oh anybody can run a tick down that": [65535, 0], "anyway oh anybody can run a tick down that don't": [65535, 0], "oh anybody can run a tick down that don't belong": [65535, 0], "anybody can run a tick down that don't belong to": [65535, 0], "can run a tick down that don't belong to them": [65535, 0], "run a tick down that don't belong to them i'm": [65535, 0], "a tick down that don't belong to them i'm satisfied": [65535, 0], "tick down that don't belong to them i'm satisfied with": [65535, 0], "down that don't belong to them i'm satisfied with it": [65535, 0], "that don't belong to them i'm satisfied with it it's": [65535, 0], "don't belong to them i'm satisfied with it it's a": [65535, 0], "belong to them i'm satisfied with it it's a good": [65535, 0], "to them i'm satisfied with it it's a good enough": [65535, 0], "them i'm satisfied with it it's a good enough tick": [65535, 0], "i'm satisfied with it it's a good enough tick for": [65535, 0], "satisfied with it it's a good enough tick for me": [65535, 0], "with it it's a good enough tick for me sho": [65535, 0], "it it's a good enough tick for me sho there's": [65535, 0], "it's a good enough tick for me sho there's ticks": [65535, 0], "a good enough tick for me sho there's ticks a": [65535, 0], "good enough tick for me sho there's ticks a plenty": [65535, 0], "enough tick for me sho there's ticks a plenty i": [65535, 0], "tick for me sho there's ticks a plenty i could": [65535, 0], "for me sho there's ticks a plenty i could have": [65535, 0], "me sho there's ticks a plenty i could have a": [65535, 0], "sho there's ticks a plenty i could have a thousand": [65535, 0], "there's ticks a plenty i could have a thousand of": [65535, 0], "ticks a plenty i could have a thousand of 'em": [65535, 0], "a plenty i could have a thousand of 'em if": [65535, 0], "plenty i could have a thousand of 'em if i": [65535, 0], "i could have a thousand of 'em if i wanted": [65535, 0], "could have a thousand of 'em if i wanted to": [65535, 0], "have a thousand of 'em if i wanted to well": [65535, 0], "a thousand of 'em if i wanted to well why": [65535, 0], "thousand of 'em if i wanted to well why don't": [65535, 0], "of 'em if i wanted to well why don't you": [65535, 0], "'em if i wanted to well why don't you becuz": [65535, 0], "if i wanted to well why don't you becuz you": [65535, 0], "i wanted to well why don't you becuz you know": [65535, 0], "wanted to well why don't you becuz you know mighty": [65535, 0], "to well why don't you becuz you know mighty well": [65535, 0], "well why don't you becuz you know mighty well you": [65535, 0], "why don't you becuz you know mighty well you can't": [65535, 0], "don't you becuz you know mighty well you can't this": [65535, 0], "you becuz you know mighty well you can't this is": [65535, 0], "becuz you know mighty well you can't this is a": [65535, 0], "you know mighty well you can't this is a pretty": [65535, 0], "know mighty well you can't this is a pretty early": [65535, 0], "mighty well you can't this is a pretty early tick": [65535, 0], "well you can't this is a pretty early tick i": [65535, 0], "you can't this is a pretty early tick i reckon": [65535, 0], "can't this is a pretty early tick i reckon it's": [65535, 0], "this is a pretty early tick i reckon it's the": [65535, 0], "is a pretty early tick i reckon it's the first": [65535, 0], "a pretty early tick i reckon it's the first one": [65535, 0], "pretty early tick i reckon it's the first one i've": [65535, 0], "early tick i reckon it's the first one i've seen": [65535, 0], "tick i reckon it's the first one i've seen this": [65535, 0], "i reckon it's the first one i've seen this year": [65535, 0], "reckon it's the first one i've seen this year say": [65535, 0], "it's the first one i've seen this year say huck": [65535, 0], "the first one i've seen this year say huck i'll": [65535, 0], "first one i've seen this year say huck i'll give": [65535, 0], "one i've seen this year say huck i'll give you": [65535, 0], "i've seen this year say huck i'll give you my": [65535, 0], "seen this year say huck i'll give you my tooth": [65535, 0], "this year say huck i'll give you my tooth for": [65535, 0], "year say huck i'll give you my tooth for him": [65535, 0], "say huck i'll give you my tooth for him less": [65535, 0], "huck i'll give you my tooth for him less see": [65535, 0], "i'll give you my tooth for him less see it": [65535, 0], "give you my tooth for him less see it tom": [65535, 0], "you my tooth for him less see it tom got": [65535, 0], "my tooth for him less see it tom got out": [65535, 0], "tooth for him less see it tom got out a": [65535, 0], "for him less see it tom got out a bit": [65535, 0], "him less see it tom got out a bit of": [65535, 0], "less see it tom got out a bit of paper": [65535, 0], "see it tom got out a bit of paper and": [65535, 0], "it tom got out a bit of paper and carefully": [65535, 0], "tom got out a bit of paper and carefully unrolled": [65535, 0], "got out a bit of paper and carefully unrolled it": [65535, 0], "out a bit of paper and carefully unrolled it huckleberry": [65535, 0], "a bit of paper and carefully unrolled it huckleberry viewed": [65535, 0], "bit of paper and carefully unrolled it huckleberry viewed it": [65535, 0], "of paper and carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "paper and carefully unrolled it huckleberry viewed it wistfully the": [65535, 0], "and carefully unrolled it huckleberry viewed it wistfully the temptation": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully the temptation was": [65535, 0], "unrolled it huckleberry viewed it wistfully the temptation was very": [65535, 0], "it huckleberry viewed it wistfully the temptation was very strong": [65535, 0], "huckleberry viewed it wistfully the temptation was very strong at": [65535, 0], "viewed it wistfully the temptation was very strong at last": [65535, 0], "it wistfully the temptation was very strong at last he": [65535, 0], "wistfully the temptation was very strong at last he said": [65535, 0], "the temptation was very strong at last he said is": [65535, 0], "temptation was very strong at last he said is it": [65535, 0], "was very strong at last he said is it genuwyne": [65535, 0], "very strong at last he said is it genuwyne tom": [65535, 0], "strong at last he said is it genuwyne tom lifted": [65535, 0], "at last he said is it genuwyne tom lifted his": [65535, 0], "last he said is it genuwyne tom lifted his lip": [65535, 0], "he said is it genuwyne tom lifted his lip and": [65535, 0], "said is it genuwyne tom lifted his lip and showed": [65535, 0], "is it genuwyne tom lifted his lip and showed the": [65535, 0], "it genuwyne tom lifted his lip and showed the vacancy": [65535, 0], "genuwyne tom lifted his lip and showed the vacancy well": [65535, 0], "tom lifted his lip and showed the vacancy well all": [65535, 0], "lifted his lip and showed the vacancy well all right": [65535, 0], "his lip and showed the vacancy well all right said": [65535, 0], "lip and showed the vacancy well all right said huckleberry": [65535, 0], "and showed the vacancy well all right said huckleberry it's": [65535, 0], "showed the vacancy well all right said huckleberry it's a": [65535, 0], "the vacancy well all right said huckleberry it's a trade": [65535, 0], "vacancy well all right said huckleberry it's a trade tom": [65535, 0], "well all right said huckleberry it's a trade tom enclosed": [65535, 0], "all right said huckleberry it's a trade tom enclosed the": [65535, 0], "right said huckleberry it's a trade tom enclosed the tick": [65535, 0], "said huckleberry it's a trade tom enclosed the tick in": [65535, 0], "huckleberry it's a trade tom enclosed the tick in the": [65535, 0], "it's a trade tom enclosed the tick in the percussion": [65535, 0], "a trade tom enclosed the tick in the percussion cap": [65535, 0], "trade tom enclosed the tick in the percussion cap box": [65535, 0], "tom enclosed the tick in the percussion cap box that": [65535, 0], "enclosed the tick in the percussion cap box that had": [65535, 0], "the tick in the percussion cap box that had lately": [65535, 0], "tick in the percussion cap box that had lately been": [65535, 0], "in the percussion cap box that had lately been the": [65535, 0], "the percussion cap box that had lately been the pinchbug's": [65535, 0], "percussion cap box that had lately been the pinchbug's prison": [65535, 0], "cap box that had lately been the pinchbug's prison and": [65535, 0], "box that had lately been the pinchbug's prison and the": [65535, 0], "that had lately been the pinchbug's prison and the boys": [65535, 0], "had lately been the pinchbug's prison and the boys separated": [65535, 0], "lately been the pinchbug's prison and the boys separated each": [65535, 0], "been the pinchbug's prison and the boys separated each feeling": [65535, 0], "the pinchbug's prison and the boys separated each feeling wealthier": [65535, 0], "pinchbug's prison and the boys separated each feeling wealthier than": [65535, 0], "prison and the boys separated each feeling wealthier than before": [65535, 0], "and the boys separated each feeling wealthier than before when": [65535, 0], "the boys separated each feeling wealthier than before when tom": [65535, 0], "boys separated each feeling wealthier than before when tom reached": [65535, 0], "separated each feeling wealthier than before when tom reached the": [65535, 0], "each feeling wealthier than before when tom reached the little": [65535, 0], "feeling wealthier than before when tom reached the little isolated": [65535, 0], "wealthier than before when tom reached the little isolated frame": [65535, 0], "than before when tom reached the little isolated frame schoolhouse": [65535, 0], "before when tom reached the little isolated frame schoolhouse he": [65535, 0], "when tom reached the little isolated frame schoolhouse he strode": [65535, 0], "tom reached the little isolated frame schoolhouse he strode in": [65535, 0], "reached the little isolated frame schoolhouse he strode in briskly": [65535, 0], "the little isolated frame schoolhouse he strode in briskly with": [65535, 0], "little isolated frame schoolhouse he strode in briskly with the": [65535, 0], "isolated frame schoolhouse he strode in briskly with the manner": [65535, 0], "frame schoolhouse he strode in briskly with the manner of": [65535, 0], "schoolhouse he strode in briskly with the manner of one": [65535, 0], "he strode in briskly with the manner of one who": [65535, 0], "strode in briskly with the manner of one who had": [65535, 0], "in briskly with the manner of one who had come": [65535, 0], "briskly with the manner of one who had come with": [65535, 0], "with the manner of one who had come with all": [65535, 0], "the manner of one who had come with all honest": [65535, 0], "manner of one who had come with all honest speed": [65535, 0], "of one who had come with all honest speed he": [65535, 0], "one who had come with all honest speed he hung": [65535, 0], "who had come with all honest speed he hung his": [65535, 0], "had come with all honest speed he hung his hat": [65535, 0], "come with all honest speed he hung his hat on": [65535, 0], "with all honest speed he hung his hat on a": [65535, 0], "all honest speed he hung his hat on a peg": [65535, 0], "honest speed he hung his hat on a peg and": [65535, 0], "speed he hung his hat on a peg and flung": [65535, 0], "he hung his hat on a peg and flung himself": [65535, 0], "hung his hat on a peg and flung himself into": [65535, 0], "his hat on a peg and flung himself into his": [65535, 0], "hat on a peg and flung himself into his seat": [65535, 0], "on a peg and flung himself into his seat with": [65535, 0], "a peg and flung himself into his seat with business": [65535, 0], "peg and flung himself into his seat with business like": [65535, 0], "and flung himself into his seat with business like alacrity": [65535, 0], "flung himself into his seat with business like alacrity the": [65535, 0], "himself into his seat with business like alacrity the master": [65535, 0], "into his seat with business like alacrity the master throned": [65535, 0], "his seat with business like alacrity the master throned on": [65535, 0], "seat with business like alacrity the master throned on high": [65535, 0], "with business like alacrity the master throned on high in": [65535, 0], "business like alacrity the master throned on high in his": [65535, 0], "like alacrity the master throned on high in his great": [65535, 0], "alacrity the master throned on high in his great splint": [65535, 0], "the master throned on high in his great splint bottom": [65535, 0], "master throned on high in his great splint bottom arm": [65535, 0], "throned on high in his great splint bottom arm chair": [65535, 0], "on high in his great splint bottom arm chair was": [65535, 0], "high in his great splint bottom arm chair was dozing": [65535, 0], "in his great splint bottom arm chair was dozing lulled": [65535, 0], "his great splint bottom arm chair was dozing lulled by": [65535, 0], "great splint bottom arm chair was dozing lulled by the": [65535, 0], "splint bottom arm chair was dozing lulled by the drowsy": [65535, 0], "bottom arm chair was dozing lulled by the drowsy hum": [65535, 0], "arm chair was dozing lulled by the drowsy hum of": [65535, 0], "chair was dozing lulled by the drowsy hum of study": [65535, 0], "was dozing lulled by the drowsy hum of study the": [65535, 0], "dozing lulled by the drowsy hum of study the interruption": [65535, 0], "lulled by the drowsy hum of study the interruption roused": [65535, 0], "by the drowsy hum of study the interruption roused him": [65535, 0], "the drowsy hum of study the interruption roused him thomas": [65535, 0], "drowsy hum of study the interruption roused him thomas sawyer": [65535, 0], "hum of study the interruption roused him thomas sawyer tom": [65535, 0], "of study the interruption roused him thomas sawyer tom knew": [65535, 0], "study the interruption roused him thomas sawyer tom knew that": [65535, 0], "the interruption roused him thomas sawyer tom knew that when": [65535, 0], "interruption roused him thomas sawyer tom knew that when his": [65535, 0], "roused him thomas sawyer tom knew that when his name": [65535, 0], "him thomas sawyer tom knew that when his name was": [65535, 0], "thomas sawyer tom knew that when his name was pronounced": [65535, 0], "sawyer tom knew that when his name was pronounced in": [65535, 0], "tom knew that when his name was pronounced in full": [65535, 0], "knew that when his name was pronounced in full it": [65535, 0], "that when his name was pronounced in full it meant": [65535, 0], "when his name was pronounced in full it meant trouble": [65535, 0], "his name was pronounced in full it meant trouble sir": [65535, 0], "name was pronounced in full it meant trouble sir come": [65535, 0], "was pronounced in full it meant trouble sir come up": [65535, 0], "pronounced in full it meant trouble sir come up here": [65535, 0], "in full it meant trouble sir come up here now": [65535, 0], "full it meant trouble sir come up here now sir": [65535, 0], "it meant trouble sir come up here now sir why": [65535, 0], "meant trouble sir come up here now sir why are": [65535, 0], "trouble sir come up here now sir why are you": [65535, 0], "sir come up here now sir why are you late": [65535, 0], "come up here now sir why are you late again": [65535, 0], "up here now sir why are you late again as": [65535, 0], "here now sir why are you late again as usual": [65535, 0], "now sir why are you late again as usual tom": [65535, 0], "sir why are you late again as usual tom was": [65535, 0], "why are you late again as usual tom was about": [65535, 0], "are you late again as usual tom was about to": [65535, 0], "you late again as usual tom was about to take": [65535, 0], "late again as usual tom was about to take refuge": [65535, 0], "again as usual tom was about to take refuge in": [65535, 0], "as usual tom was about to take refuge in a": [65535, 0], "usual tom was about to take refuge in a lie": [65535, 0], "tom was about to take refuge in a lie when": [65535, 0], "was about to take refuge in a lie when he": [65535, 0], "about to take refuge in a lie when he saw": [65535, 0], "to take refuge in a lie when he saw two": [65535, 0], "take refuge in a lie when he saw two long": [65535, 0], "refuge in a lie when he saw two long tails": [65535, 0], "in a lie when he saw two long tails of": [65535, 0], "a lie when he saw two long tails of yellow": [65535, 0], "lie when he saw two long tails of yellow hair": [65535, 0], "when he saw two long tails of yellow hair hanging": [65535, 0], "he saw two long tails of yellow hair hanging down": [65535, 0], "saw two long tails of yellow hair hanging down a": [65535, 0], "two long tails of yellow hair hanging down a back": [65535, 0], "long tails of yellow hair hanging down a back that": [65535, 0], "tails of yellow hair hanging down a back that he": [65535, 0], "of yellow hair hanging down a back that he recognized": [65535, 0], "yellow hair hanging down a back that he recognized by": [65535, 0], "hair hanging down a back that he recognized by the": [65535, 0], "hanging down a back that he recognized by the electric": [65535, 0], "down a back that he recognized by the electric sympathy": [65535, 0], "a back that he recognized by the electric sympathy of": [65535, 0], "back that he recognized by the electric sympathy of love": [65535, 0], "that he recognized by the electric sympathy of love and": [65535, 0], "he recognized by the electric sympathy of love and by": [65535, 0], "recognized by the electric sympathy of love and by that": [65535, 0], "by the electric sympathy of love and by that form": [65535, 0], "the electric sympathy of love and by that form was": [65535, 0], "electric sympathy of love and by that form was the": [65535, 0], "sympathy of love and by that form was the only": [65535, 0], "of love and by that form was the only vacant": [65535, 0], "love and by that form was the only vacant place": [65535, 0], "and by that form was the only vacant place on": [65535, 0], "by that form was the only vacant place on the": [65535, 0], "that form was the only vacant place on the girls'": [65535, 0], "form was the only vacant place on the girls' side": [65535, 0], "was the only vacant place on the girls' side of": [65535, 0], "the only vacant place on the girls' side of the": [65535, 0], "only vacant place on the girls' side of the school": [65535, 0], "vacant place on the girls' side of the school house": [65535, 0], "place on the girls' side of the school house he": [65535, 0], "on the girls' side of the school house he instantly": [65535, 0], "the girls' side of the school house he instantly said": [65535, 0], "girls' side of the school house he instantly said i": [65535, 0], "side of the school house he instantly said i stopped": [65535, 0], "of the school house he instantly said i stopped to": [65535, 0], "the school house he instantly said i stopped to talk": [65535, 0], "school house he instantly said i stopped to talk with": [65535, 0], "house he instantly said i stopped to talk with huckleberry": [65535, 0], "he instantly said i stopped to talk with huckleberry finn": [65535, 0], "instantly said i stopped to talk with huckleberry finn the": [65535, 0], "said i stopped to talk with huckleberry finn the master's": [65535, 0], "i stopped to talk with huckleberry finn the master's pulse": [65535, 0], "stopped to talk with huckleberry finn the master's pulse stood": [65535, 0], "to talk with huckleberry finn the master's pulse stood still": [65535, 0], "talk with huckleberry finn the master's pulse stood still and": [65535, 0], "with huckleberry finn the master's pulse stood still and he": [65535, 0], "huckleberry finn the master's pulse stood still and he stared": [65535, 0], "finn the master's pulse stood still and he stared helplessly": [65535, 0], "the master's pulse stood still and he stared helplessly the": [65535, 0], "master's pulse stood still and he stared helplessly the buzz": [65535, 0], "pulse stood still and he stared helplessly the buzz of": [65535, 0], "stood still and he stared helplessly the buzz of study": [65535, 0], "still and he stared helplessly the buzz of study ceased": [65535, 0], "and he stared helplessly the buzz of study ceased the": [65535, 0], "he stared helplessly the buzz of study ceased the pupils": [65535, 0], "stared helplessly the buzz of study ceased the pupils wondered": [65535, 0], "helplessly the buzz of study ceased the pupils wondered if": [65535, 0], "the buzz of study ceased the pupils wondered if this": [65535, 0], "buzz of study ceased the pupils wondered if this foolhardy": [65535, 0], "of study ceased the pupils wondered if this foolhardy boy": [65535, 0], "study ceased the pupils wondered if this foolhardy boy had": [65535, 0], "ceased the pupils wondered if this foolhardy boy had lost": [65535, 0], "the pupils wondered if this foolhardy boy had lost his": [65535, 0], "pupils wondered if this foolhardy boy had lost his mind": [65535, 0], "wondered if this foolhardy boy had lost his mind the": [65535, 0], "if this foolhardy boy had lost his mind the master": [65535, 0], "this foolhardy boy had lost his mind the master said": [65535, 0], "foolhardy boy had lost his mind the master said you": [65535, 0], "boy had lost his mind the master said you you": [65535, 0], "had lost his mind the master said you you did": [65535, 0], "lost his mind the master said you you did what": [65535, 0], "his mind the master said you you did what stopped": [65535, 0], "mind the master said you you did what stopped to": [65535, 0], "the master said you you did what stopped to talk": [65535, 0], "master said you you did what stopped to talk with": [65535, 0], "said you you did what stopped to talk with huckleberry": [65535, 0], "you you did what stopped to talk with huckleberry finn": [65535, 0], "you did what stopped to talk with huckleberry finn there": [65535, 0], "did what stopped to talk with huckleberry finn there was": [65535, 0], "what stopped to talk with huckleberry finn there was no": [65535, 0], "stopped to talk with huckleberry finn there was no mistaking": [65535, 0], "to talk with huckleberry finn there was no mistaking the": [65535, 0], "talk with huckleberry finn there was no mistaking the words": [65535, 0], "with huckleberry finn there was no mistaking the words thomas": [65535, 0], "huckleberry finn there was no mistaking the words thomas sawyer": [65535, 0], "finn there was no mistaking the words thomas sawyer this": [65535, 0], "there was no mistaking the words thomas sawyer this is": [65535, 0], "was no mistaking the words thomas sawyer this is the": [65535, 0], "no mistaking the words thomas sawyer this is the most": [65535, 0], "mistaking the words thomas sawyer this is the most astounding": [65535, 0], "the words thomas sawyer this is the most astounding confession": [65535, 0], "words thomas sawyer this is the most astounding confession i": [65535, 0], "thomas sawyer this is the most astounding confession i have": [65535, 0], "sawyer this is the most astounding confession i have ever": [65535, 0], "this is the most astounding confession i have ever listened": [65535, 0], "is the most astounding confession i have ever listened to": [65535, 0], "the most astounding confession i have ever listened to no": [65535, 0], "most astounding confession i have ever listened to no mere": [65535, 0], "astounding confession i have ever listened to no mere ferule": [65535, 0], "confession i have ever listened to no mere ferule will": [65535, 0], "i have ever listened to no mere ferule will answer": [65535, 0], "have ever listened to no mere ferule will answer for": [65535, 0], "ever listened to no mere ferule will answer for this": [65535, 0], "listened to no mere ferule will answer for this offence": [65535, 0], "to no mere ferule will answer for this offence take": [65535, 0], "no mere ferule will answer for this offence take off": [65535, 0], "mere ferule will answer for this offence take off your": [65535, 0], "ferule will answer for this offence take off your jacket": [65535, 0], "will answer for this offence take off your jacket the": [65535, 0], "answer for this offence take off your jacket the master's": [65535, 0], "for this offence take off your jacket the master's arm": [65535, 0], "this offence take off your jacket the master's arm performed": [65535, 0], "offence take off your jacket the master's arm performed until": [65535, 0], "take off your jacket the master's arm performed until it": [65535, 0], "off your jacket the master's arm performed until it was": [65535, 0], "your jacket the master's arm performed until it was tired": [65535, 0], "jacket the master's arm performed until it was tired and": [65535, 0], "the master's arm performed until it was tired and the": [65535, 0], "master's arm performed until it was tired and the stock": [65535, 0], "arm performed until it was tired and the stock of": [65535, 0], "performed until it was tired and the stock of switches": [65535, 0], "until it was tired and the stock of switches notably": [65535, 0], "it was tired and the stock of switches notably diminished": [65535, 0], "was tired and the stock of switches notably diminished then": [65535, 0], "tired and the stock of switches notably diminished then the": [65535, 0], "and the stock of switches notably diminished then the order": [65535, 0], "the stock of switches notably diminished then the order followed": [65535, 0], "stock of switches notably diminished then the order followed now": [65535, 0], "of switches notably diminished then the order followed now sir": [65535, 0], "switches notably diminished then the order followed now sir go": [65535, 0], "notably diminished then the order followed now sir go and": [65535, 0], "diminished then the order followed now sir go and sit": [65535, 0], "then the order followed now sir go and sit with": [65535, 0], "the order followed now sir go and sit with the": [65535, 0], "order followed now sir go and sit with the girls": [65535, 0], "followed now sir go and sit with the girls and": [65535, 0], "now sir go and sit with the girls and let": [65535, 0], "sir go and sit with the girls and let this": [65535, 0], "go and sit with the girls and let this be": [65535, 0], "and sit with the girls and let this be a": [65535, 0], "sit with the girls and let this be a warning": [65535, 0], "with the girls and let this be a warning to": [65535, 0], "the girls and let this be a warning to you": [65535, 0], "girls and let this be a warning to you the": [65535, 0], "and let this be a warning to you the titter": [65535, 0], "let this be a warning to you the titter that": [65535, 0], "this be a warning to you the titter that rippled": [65535, 0], "be a warning to you the titter that rippled around": [65535, 0], "a warning to you the titter that rippled around the": [65535, 0], "warning to you the titter that rippled around the room": [65535, 0], "to you the titter that rippled around the room appeared": [65535, 0], "you the titter that rippled around the room appeared to": [65535, 0], "the titter that rippled around the room appeared to abash": [65535, 0], "titter that rippled around the room appeared to abash the": [65535, 0], "that rippled around the room appeared to abash the boy": [65535, 0], "rippled around the room appeared to abash the boy but": [65535, 0], "around the room appeared to abash the boy but in": [65535, 0], "the room appeared to abash the boy but in reality": [65535, 0], "room appeared to abash the boy but in reality that": [65535, 0], "appeared to abash the boy but in reality that result": [65535, 0], "to abash the boy but in reality that result was": [65535, 0], "abash the boy but in reality that result was caused": [65535, 0], "the boy but in reality that result was caused rather": [65535, 0], "boy but in reality that result was caused rather more": [65535, 0], "but in reality that result was caused rather more by": [65535, 0], "in reality that result was caused rather more by his": [65535, 0], "reality that result was caused rather more by his worshipful": [65535, 0], "that result was caused rather more by his worshipful awe": [65535, 0], "result was caused rather more by his worshipful awe of": [65535, 0], "was caused rather more by his worshipful awe of his": [65535, 0], "caused rather more by his worshipful awe of his unknown": [65535, 0], "rather more by his worshipful awe of his unknown idol": [65535, 0], "more by his worshipful awe of his unknown idol and": [65535, 0], "by his worshipful awe of his unknown idol and the": [65535, 0], "his worshipful awe of his unknown idol and the dread": [65535, 0], "worshipful awe of his unknown idol and the dread pleasure": [65535, 0], "awe of his unknown idol and the dread pleasure that": [65535, 0], "of his unknown idol and the dread pleasure that lay": [65535, 0], "his unknown idol and the dread pleasure that lay in": [65535, 0], "unknown idol and the dread pleasure that lay in his": [65535, 0], "idol and the dread pleasure that lay in his high": [65535, 0], "and the dread pleasure that lay in his high good": [65535, 0], "the dread pleasure that lay in his high good fortune": [65535, 0], "dread pleasure that lay in his high good fortune he": [65535, 0], "pleasure that lay in his high good fortune he sat": [65535, 0], "that lay in his high good fortune he sat down": [65535, 0], "lay in his high good fortune he sat down upon": [65535, 0], "in his high good fortune he sat down upon the": [65535, 0], "his high good fortune he sat down upon the end": [65535, 0], "high good fortune he sat down upon the end of": [65535, 0], "good fortune he sat down upon the end of the": [65535, 0], "fortune he sat down upon the end of the pine": [65535, 0], "he sat down upon the end of the pine bench": [65535, 0], "sat down upon the end of the pine bench and": [65535, 0], "down upon the end of the pine bench and the": [65535, 0], "upon the end of the pine bench and the girl": [65535, 0], "the end of the pine bench and the girl hitched": [65535, 0], "end of the pine bench and the girl hitched herself": [65535, 0], "of the pine bench and the girl hitched herself away": [65535, 0], "the pine bench and the girl hitched herself away from": [65535, 0], "pine bench and the girl hitched herself away from him": [65535, 0], "bench and the girl hitched herself away from him with": [65535, 0], "and the girl hitched herself away from him with a": [65535, 0], "the girl hitched herself away from him with a toss": [65535, 0], "girl hitched herself away from him with a toss of": [65535, 0], "hitched herself away from him with a toss of her": [65535, 0], "herself away from him with a toss of her head": [65535, 0], "away from him with a toss of her head nudges": [65535, 0], "from him with a toss of her head nudges and": [65535, 0], "him with a toss of her head nudges and winks": [65535, 0], "with a toss of her head nudges and winks and": [65535, 0], "a toss of her head nudges and winks and whispers": [65535, 0], "toss of her head nudges and winks and whispers traversed": [65535, 0], "of her head nudges and winks and whispers traversed the": [65535, 0], "her head nudges and winks and whispers traversed the room": [65535, 0], "head nudges and winks and whispers traversed the room but": [65535, 0], "nudges and winks and whispers traversed the room but tom": [65535, 0], "and winks and whispers traversed the room but tom sat": [65535, 0], "winks and whispers traversed the room but tom sat still": [65535, 0], "and whispers traversed the room but tom sat still with": [65535, 0], "whispers traversed the room but tom sat still with his": [65535, 0], "traversed the room but tom sat still with his arms": [65535, 0], "the room but tom sat still with his arms upon": [65535, 0], "room but tom sat still with his arms upon the": [65535, 0], "but tom sat still with his arms upon the long": [65535, 0], "tom sat still with his arms upon the long low": [65535, 0], "sat still with his arms upon the long low desk": [65535, 0], "still with his arms upon the long low desk before": [65535, 0], "with his arms upon the long low desk before him": [65535, 0], "his arms upon the long low desk before him and": [65535, 0], "arms upon the long low desk before him and seemed": [65535, 0], "upon the long low desk before him and seemed to": [65535, 0], "the long low desk before him and seemed to study": [65535, 0], "long low desk before him and seemed to study his": [65535, 0], "low desk before him and seemed to study his book": [65535, 0], "desk before him and seemed to study his book by": [65535, 0], "before him and seemed to study his book by and": [65535, 0], "him and seemed to study his book by and by": [65535, 0], "and seemed to study his book by and by attention": [65535, 0], "seemed to study his book by and by attention ceased": [65535, 0], "to study his book by and by attention ceased from": [65535, 0], "study his book by and by attention ceased from him": [65535, 0], "his book by and by attention ceased from him and": [65535, 0], "book by and by attention ceased from him and the": [65535, 0], "by and by attention ceased from him and the accustomed": [65535, 0], "and by attention ceased from him and the accustomed school": [65535, 0], "by attention ceased from him and the accustomed school murmur": [65535, 0], "attention ceased from him and the accustomed school murmur rose": [65535, 0], "ceased from him and the accustomed school murmur rose upon": [65535, 0], "from him and the accustomed school murmur rose upon the": [65535, 0], "him and the accustomed school murmur rose upon the dull": [65535, 0], "and the accustomed school murmur rose upon the dull air": [65535, 0], "the accustomed school murmur rose upon the dull air once": [65535, 0], "accustomed school murmur rose upon the dull air once more": [65535, 0], "school murmur rose upon the dull air once more presently": [65535, 0], "murmur rose upon the dull air once more presently the": [65535, 0], "rose upon the dull air once more presently the boy": [65535, 0], "upon the dull air once more presently the boy began": [65535, 0], "the dull air once more presently the boy began to": [65535, 0], "dull air once more presently the boy began to steal": [65535, 0], "air once more presently the boy began to steal furtive": [65535, 0], "once more presently the boy began to steal furtive glances": [65535, 0], "more presently the boy began to steal furtive glances at": [65535, 0], "presently the boy began to steal furtive glances at the": [65535, 0], "the boy began to steal furtive glances at the girl": [65535, 0], "boy began to steal furtive glances at the girl she": [65535, 0], "began to steal furtive glances at the girl she observed": [65535, 0], "to steal furtive glances at the girl she observed it": [65535, 0], "steal furtive glances at the girl she observed it made": [65535, 0], "furtive glances at the girl she observed it made a": [65535, 0], "glances at the girl she observed it made a mouth": [65535, 0], "at the girl she observed it made a mouth at": [65535, 0], "the girl she observed it made a mouth at him": [65535, 0], "girl she observed it made a mouth at him and": [65535, 0], "she observed it made a mouth at him and gave": [65535, 0], "observed it made a mouth at him and gave him": [65535, 0], "it made a mouth at him and gave him the": [65535, 0], "made a mouth at him and gave him the back": [65535, 0], "a mouth at him and gave him the back of": [65535, 0], "mouth at him and gave him the back of her": [65535, 0], "at him and gave him the back of her head": [65535, 0], "him and gave him the back of her head for": [65535, 0], "and gave him the back of her head for the": [65535, 0], "gave him the back of her head for the space": [65535, 0], "him the back of her head for the space of": [65535, 0], "the back of her head for the space of a": [65535, 0], "back of her head for the space of a minute": [65535, 0], "of her head for the space of a minute when": [65535, 0], "her head for the space of a minute when she": [65535, 0], "head for the space of a minute when she cautiously": [65535, 0], "for the space of a minute when she cautiously faced": [65535, 0], "the space of a minute when she cautiously faced around": [65535, 0], "space of a minute when she cautiously faced around again": [65535, 0], "of a minute when she cautiously faced around again a": [65535, 0], "a minute when she cautiously faced around again a peach": [65535, 0], "minute when she cautiously faced around again a peach lay": [65535, 0], "when she cautiously faced around again a peach lay before": [65535, 0], "she cautiously faced around again a peach lay before her": [65535, 0], "cautiously faced around again a peach lay before her she": [65535, 0], "faced around again a peach lay before her she thrust": [65535, 0], "around again a peach lay before her she thrust it": [65535, 0], "again a peach lay before her she thrust it away": [65535, 0], "a peach lay before her she thrust it away tom": [65535, 0], "peach lay before her she thrust it away tom gently": [65535, 0], "lay before her she thrust it away tom gently put": [65535, 0], "before her she thrust it away tom gently put it": [65535, 0], "her she thrust it away tom gently put it back": [65535, 0], "she thrust it away tom gently put it back she": [65535, 0], "thrust it away tom gently put it back she thrust": [65535, 0], "it away tom gently put it back she thrust it": [65535, 0], "away tom gently put it back she thrust it away": [65535, 0], "tom gently put it back she thrust it away again": [65535, 0], "gently put it back she thrust it away again but": [65535, 0], "put it back she thrust it away again but with": [65535, 0], "it back she thrust it away again but with less": [65535, 0], "back she thrust it away again but with less animosity": [65535, 0], "she thrust it away again but with less animosity tom": [65535, 0], "thrust it away again but with less animosity tom patiently": [65535, 0], "it away again but with less animosity tom patiently returned": [65535, 0], "away again but with less animosity tom patiently returned it": [65535, 0], "again but with less animosity tom patiently returned it to": [65535, 0], "but with less animosity tom patiently returned it to its": [65535, 0], "with less animosity tom patiently returned it to its place": [65535, 0], "less animosity tom patiently returned it to its place then": [65535, 0], "animosity tom patiently returned it to its place then she": [65535, 0], "tom patiently returned it to its place then she let": [65535, 0], "patiently returned it to its place then she let it": [65535, 0], "returned it to its place then she let it remain": [65535, 0], "it to its place then she let it remain tom": [65535, 0], "to its place then she let it remain tom scrawled": [65535, 0], "its place then she let it remain tom scrawled on": [65535, 0], "place then she let it remain tom scrawled on his": [65535, 0], "then she let it remain tom scrawled on his slate": [65535, 0], "she let it remain tom scrawled on his slate please": [65535, 0], "let it remain tom scrawled on his slate please take": [65535, 0], "it remain tom scrawled on his slate please take it": [65535, 0], "remain tom scrawled on his slate please take it i": [65535, 0], "tom scrawled on his slate please take it i got": [65535, 0], "scrawled on his slate please take it i got more": [65535, 0], "on his slate please take it i got more the": [65535, 0], "his slate please take it i got more the girl": [65535, 0], "slate please take it i got more the girl glanced": [65535, 0], "please take it i got more the girl glanced at": [65535, 0], "take it i got more the girl glanced at the": [65535, 0], "it i got more the girl glanced at the words": [65535, 0], "i got more the girl glanced at the words but": [65535, 0], "got more the girl glanced at the words but made": [65535, 0], "more the girl glanced at the words but made no": [65535, 0], "the girl glanced at the words but made no sign": [65535, 0], "girl glanced at the words but made no sign now": [65535, 0], "glanced at the words but made no sign now the": [65535, 0], "at the words but made no sign now the boy": [65535, 0], "the words but made no sign now the boy began": [65535, 0], "words but made no sign now the boy began to": [65535, 0], "but made no sign now the boy began to draw": [65535, 0], "made no sign now the boy began to draw something": [65535, 0], "no sign now the boy began to draw something on": [65535, 0], "sign now the boy began to draw something on the": [65535, 0], "now the boy began to draw something on the slate": [65535, 0], "the boy began to draw something on the slate hiding": [65535, 0], "boy began to draw something on the slate hiding his": [65535, 0], "began to draw something on the slate hiding his work": [65535, 0], "to draw something on the slate hiding his work with": [65535, 0], "draw something on the slate hiding his work with his": [65535, 0], "something on the slate hiding his work with his left": [65535, 0], "on the slate hiding his work with his left hand": [65535, 0], "the slate hiding his work with his left hand for": [65535, 0], "slate hiding his work with his left hand for a": [65535, 0], "hiding his work with his left hand for a time": [65535, 0], "his work with his left hand for a time the": [65535, 0], "work with his left hand for a time the girl": [65535, 0], "with his left hand for a time the girl refused": [65535, 0], "his left hand for a time the girl refused to": [65535, 0], "left hand for a time the girl refused to notice": [65535, 0], "hand for a time the girl refused to notice but": [65535, 0], "for a time the girl refused to notice but her": [65535, 0], "a time the girl refused to notice but her human": [65535, 0], "time the girl refused to notice but her human curiosity": [65535, 0], "the girl refused to notice but her human curiosity presently": [65535, 0], "girl refused to notice but her human curiosity presently began": [65535, 0], "refused to notice but her human curiosity presently began to": [65535, 0], "to notice but her human curiosity presently began to manifest": [65535, 0], "notice but her human curiosity presently began to manifest itself": [65535, 0], "but her human curiosity presently began to manifest itself by": [65535, 0], "her human curiosity presently began to manifest itself by hardly": [65535, 0], "human curiosity presently began to manifest itself by hardly perceptible": [65535, 0], "curiosity presently began to manifest itself by hardly perceptible signs": [65535, 0], "presently began to manifest itself by hardly perceptible signs the": [65535, 0], "began to manifest itself by hardly perceptible signs the boy": [65535, 0], "to manifest itself by hardly perceptible signs the boy worked": [65535, 0], "manifest itself by hardly perceptible signs the boy worked on": [65535, 0], "itself by hardly perceptible signs the boy worked on apparently": [65535, 0], "by hardly perceptible signs the boy worked on apparently unconscious": [65535, 0], "hardly perceptible signs the boy worked on apparently unconscious the": [65535, 0], "perceptible signs the boy worked on apparently unconscious the girl": [65535, 0], "signs the boy worked on apparently unconscious the girl made": [65535, 0], "the boy worked on apparently unconscious the girl made a": [65535, 0], "boy worked on apparently unconscious the girl made a sort": [65535, 0], "worked on apparently unconscious the girl made a sort of": [65535, 0], "on apparently unconscious the girl made a sort of noncommittal": [65535, 0], "apparently unconscious the girl made a sort of noncommittal attempt": [65535, 0], "unconscious the girl made a sort of noncommittal attempt to": [65535, 0], "the girl made a sort of noncommittal attempt to see": [65535, 0], "girl made a sort of noncommittal attempt to see but": [65535, 0], "made a sort of noncommittal attempt to see but the": [65535, 0], "a sort of noncommittal attempt to see but the boy": [65535, 0], "sort of noncommittal attempt to see but the boy did": [65535, 0], "of noncommittal attempt to see but the boy did not": [65535, 0], "noncommittal attempt to see but the boy did not betray": [65535, 0], "attempt to see but the boy did not betray that": [65535, 0], "to see but the boy did not betray that he": [65535, 0], "see but the boy did not betray that he was": [65535, 0], "but the boy did not betray that he was aware": [65535, 0], "the boy did not betray that he was aware of": [65535, 0], "boy did not betray that he was aware of it": [65535, 0], "did not betray that he was aware of it at": [65535, 0], "not betray that he was aware of it at last": [65535, 0], "betray that he was aware of it at last she": [65535, 0], "that he was aware of it at last she gave": [65535, 0], "he was aware of it at last she gave in": [65535, 0], "was aware of it at last she gave in and": [65535, 0], "aware of it at last she gave in and hesitatingly": [65535, 0], "of it at last she gave in and hesitatingly whispered": [65535, 0], "it at last she gave in and hesitatingly whispered let": [65535, 0], "at last she gave in and hesitatingly whispered let me": [65535, 0], "last she gave in and hesitatingly whispered let me see": [65535, 0], "she gave in and hesitatingly whispered let me see it": [65535, 0], "gave in and hesitatingly whispered let me see it tom": [65535, 0], "in and hesitatingly whispered let me see it tom partly": [65535, 0], "and hesitatingly whispered let me see it tom partly uncovered": [65535, 0], "hesitatingly whispered let me see it tom partly uncovered a": [65535, 0], "whispered let me see it tom partly uncovered a dismal": [65535, 0], "let me see it tom partly uncovered a dismal caricature": [65535, 0], "me see it tom partly uncovered a dismal caricature of": [65535, 0], "see it tom partly uncovered a dismal caricature of a": [65535, 0], "it tom partly uncovered a dismal caricature of a house": [65535, 0], "tom partly uncovered a dismal caricature of a house with": [65535, 0], "partly uncovered a dismal caricature of a house with two": [65535, 0], "uncovered a dismal caricature of a house with two gable": [65535, 0], "a dismal caricature of a house with two gable ends": [65535, 0], "dismal caricature of a house with two gable ends to": [65535, 0], "caricature of a house with two gable ends to it": [65535, 0], "of a house with two gable ends to it and": [65535, 0], "a house with two gable ends to it and a": [65535, 0], "house with two gable ends to it and a corkscrew": [65535, 0], "with two gable ends to it and a corkscrew of": [65535, 0], "two gable ends to it and a corkscrew of smoke": [65535, 0], "gable ends to it and a corkscrew of smoke issuing": [65535, 0], "ends to it and a corkscrew of smoke issuing from": [65535, 0], "to it and a corkscrew of smoke issuing from the": [65535, 0], "it and a corkscrew of smoke issuing from the chimney": [65535, 0], "and a corkscrew of smoke issuing from the chimney then": [65535, 0], "a corkscrew of smoke issuing from the chimney then the": [65535, 0], "corkscrew of smoke issuing from the chimney then the girl's": [65535, 0], "of smoke issuing from the chimney then the girl's interest": [65535, 0], "smoke issuing from the chimney then the girl's interest began": [65535, 0], "issuing from the chimney then the girl's interest began to": [65535, 0], "from the chimney then the girl's interest began to fasten": [65535, 0], "the chimney then the girl's interest began to fasten itself": [65535, 0], "chimney then the girl's interest began to fasten itself upon": [65535, 0], "then the girl's interest began to fasten itself upon the": [65535, 0], "the girl's interest began to fasten itself upon the work": [65535, 0], "girl's interest began to fasten itself upon the work and": [65535, 0], "interest began to fasten itself upon the work and she": [65535, 0], "began to fasten itself upon the work and she forgot": [65535, 0], "to fasten itself upon the work and she forgot everything": [65535, 0], "fasten itself upon the work and she forgot everything else": [65535, 0], "itself upon the work and she forgot everything else when": [65535, 0], "upon the work and she forgot everything else when it": [65535, 0], "the work and she forgot everything else when it was": [65535, 0], "work and she forgot everything else when it was finished": [65535, 0], "and she forgot everything else when it was finished she": [65535, 0], "she forgot everything else when it was finished she gazed": [65535, 0], "forgot everything else when it was finished she gazed a": [65535, 0], "everything else when it was finished she gazed a moment": [65535, 0], "else when it was finished she gazed a moment then": [65535, 0], "when it was finished she gazed a moment then whispered": [65535, 0], "it was finished she gazed a moment then whispered it's": [65535, 0], "was finished she gazed a moment then whispered it's nice": [65535, 0], "finished she gazed a moment then whispered it's nice make": [65535, 0], "she gazed a moment then whispered it's nice make a": [65535, 0], "gazed a moment then whispered it's nice make a man": [65535, 0], "a moment then whispered it's nice make a man the": [65535, 0], "moment then whispered it's nice make a man the artist": [65535, 0], "then whispered it's nice make a man the artist erected": [65535, 0], "whispered it's nice make a man the artist erected a": [65535, 0], "it's nice make a man the artist erected a man": [65535, 0], "nice make a man the artist erected a man in": [65535, 0], "make a man the artist erected a man in the": [65535, 0], "a man the artist erected a man in the front": [65535, 0], "man the artist erected a man in the front yard": [65535, 0], "the artist erected a man in the front yard that": [65535, 0], "artist erected a man in the front yard that resembled": [65535, 0], "erected a man in the front yard that resembled a": [65535, 0], "a man in the front yard that resembled a derrick": [65535, 0], "man in the front yard that resembled a derrick he": [65535, 0], "in the front yard that resembled a derrick he could": [65535, 0], "the front yard that resembled a derrick he could have": [65535, 0], "front yard that resembled a derrick he could have stepped": [65535, 0], "yard that resembled a derrick he could have stepped over": [65535, 0], "that resembled a derrick he could have stepped over the": [65535, 0], "resembled a derrick he could have stepped over the house": [65535, 0], "a derrick he could have stepped over the house but": [65535, 0], "derrick he could have stepped over the house but the": [65535, 0], "he could have stepped over the house but the girl": [65535, 0], "could have stepped over the house but the girl was": [65535, 0], "have stepped over the house but the girl was not": [65535, 0], "stepped over the house but the girl was not hypercritical": [65535, 0], "over the house but the girl was not hypercritical she": [65535, 0], "the house but the girl was not hypercritical she was": [65535, 0], "house but the girl was not hypercritical she was satisfied": [65535, 0], "but the girl was not hypercritical she was satisfied with": [65535, 0], "the girl was not hypercritical she was satisfied with the": [65535, 0], "girl was not hypercritical she was satisfied with the monster": [65535, 0], "was not hypercritical she was satisfied with the monster and": [65535, 0], "not hypercritical she was satisfied with the monster and whispered": [65535, 0], "hypercritical she was satisfied with the monster and whispered it's": [65535, 0], "she was satisfied with the monster and whispered it's a": [65535, 0], "was satisfied with the monster and whispered it's a beautiful": [65535, 0], "satisfied with the monster and whispered it's a beautiful man": [65535, 0], "with the monster and whispered it's a beautiful man now": [65535, 0], "the monster and whispered it's a beautiful man now make": [65535, 0], "monster and whispered it's a beautiful man now make me": [65535, 0], "and whispered it's a beautiful man now make me coming": [65535, 0], "whispered it's a beautiful man now make me coming along": [65535, 0], "it's a beautiful man now make me coming along tom": [65535, 0], "a beautiful man now make me coming along tom drew": [65535, 0], "beautiful man now make me coming along tom drew an": [65535, 0], "man now make me coming along tom drew an hour": [65535, 0], "now make me coming along tom drew an hour glass": [65535, 0], "make me coming along tom drew an hour glass with": [65535, 0], "me coming along tom drew an hour glass with a": [65535, 0], "coming along tom drew an hour glass with a full": [65535, 0], "along tom drew an hour glass with a full moon": [65535, 0], "tom drew an hour glass with a full moon and": [65535, 0], "drew an hour glass with a full moon and straw": [65535, 0], "an hour glass with a full moon and straw limbs": [65535, 0], "hour glass with a full moon and straw limbs to": [65535, 0], "glass with a full moon and straw limbs to it": [65535, 0], "with a full moon and straw limbs to it and": [65535, 0], "a full moon and straw limbs to it and armed": [65535, 0], "full moon and straw limbs to it and armed the": [65535, 0], "moon and straw limbs to it and armed the spreading": [65535, 0], "and straw limbs to it and armed the spreading fingers": [65535, 0], "straw limbs to it and armed the spreading fingers with": [65535, 0], "limbs to it and armed the spreading fingers with a": [65535, 0], "to it and armed the spreading fingers with a portentous": [65535, 0], "it and armed the spreading fingers with a portentous fan": [65535, 0], "and armed the spreading fingers with a portentous fan the": [65535, 0], "armed the spreading fingers with a portentous fan the girl": [65535, 0], "the spreading fingers with a portentous fan the girl said": [65535, 0], "spreading fingers with a portentous fan the girl said it's": [65535, 0], "fingers with a portentous fan the girl said it's ever": [65535, 0], "with a portentous fan the girl said it's ever so": [65535, 0], "a portentous fan the girl said it's ever so nice": [65535, 0], "portentous fan the girl said it's ever so nice i": [65535, 0], "fan the girl said it's ever so nice i wish": [65535, 0], "the girl said it's ever so nice i wish i": [65535, 0], "girl said it's ever so nice i wish i could": [65535, 0], "said it's ever so nice i wish i could draw": [65535, 0], "it's ever so nice i wish i could draw it's": [65535, 0], "ever so nice i wish i could draw it's easy": [65535, 0], "so nice i wish i could draw it's easy whispered": [65535, 0], "nice i wish i could draw it's easy whispered tom": [65535, 0], "i wish i could draw it's easy whispered tom i'll": [65535, 0], "wish i could draw it's easy whispered tom i'll learn": [65535, 0], "i could draw it's easy whispered tom i'll learn you": [65535, 0], "could draw it's easy whispered tom i'll learn you oh": [65535, 0], "draw it's easy whispered tom i'll learn you oh will": [65535, 0], "it's easy whispered tom i'll learn you oh will you": [65535, 0], "easy whispered tom i'll learn you oh will you when": [65535, 0], "whispered tom i'll learn you oh will you when at": [65535, 0], "tom i'll learn you oh will you when at noon": [65535, 0], "i'll learn you oh will you when at noon do": [65535, 0], "learn you oh will you when at noon do you": [65535, 0], "you oh will you when at noon do you go": [65535, 0], "oh will you when at noon do you go home": [65535, 0], "will you when at noon do you go home to": [65535, 0], "you when at noon do you go home to dinner": [65535, 0], "when at noon do you go home to dinner i'll": [65535, 0], "at noon do you go home to dinner i'll stay": [65535, 0], "noon do you go home to dinner i'll stay if": [65535, 0], "do you go home to dinner i'll stay if you": [65535, 0], "you go home to dinner i'll stay if you will": [65535, 0], "go home to dinner i'll stay if you will good": [65535, 0], "home to dinner i'll stay if you will good that's": [65535, 0], "to dinner i'll stay if you will good that's a": [65535, 0], "dinner i'll stay if you will good that's a whack": [65535, 0], "i'll stay if you will good that's a whack what's": [65535, 0], "stay if you will good that's a whack what's your": [65535, 0], "if you will good that's a whack what's your name": [65535, 0], "you will good that's a whack what's your name becky": [65535, 0], "will good that's a whack what's your name becky thatcher": [65535, 0], "good that's a whack what's your name becky thatcher what's": [65535, 0], "that's a whack what's your name becky thatcher what's yours": [65535, 0], "a whack what's your name becky thatcher what's yours oh": [65535, 0], "whack what's your name becky thatcher what's yours oh i": [65535, 0], "what's your name becky thatcher what's yours oh i know": [65535, 0], "your name becky thatcher what's yours oh i know it's": [65535, 0], "name becky thatcher what's yours oh i know it's thomas": [65535, 0], "becky thatcher what's yours oh i know it's thomas sawyer": [65535, 0], "thatcher what's yours oh i know it's thomas sawyer that's": [65535, 0], "what's yours oh i know it's thomas sawyer that's the": [65535, 0], "yours oh i know it's thomas sawyer that's the name": [65535, 0], "oh i know it's thomas sawyer that's the name they": [65535, 0], "i know it's thomas sawyer that's the name they lick": [65535, 0], "know it's thomas sawyer that's the name they lick me": [65535, 0], "it's thomas sawyer that's the name they lick me by": [65535, 0], "thomas sawyer that's the name they lick me by i'm": [65535, 0], "sawyer that's the name they lick me by i'm tom": [65535, 0], "that's the name they lick me by i'm tom when": [65535, 0], "the name they lick me by i'm tom when i'm": [65535, 0], "name they lick me by i'm tom when i'm good": [65535, 0], "they lick me by i'm tom when i'm good you": [65535, 0], "lick me by i'm tom when i'm good you call": [65535, 0], "me by i'm tom when i'm good you call me": [65535, 0], "by i'm tom when i'm good you call me tom": [65535, 0], "i'm tom when i'm good you call me tom will": [65535, 0], "tom when i'm good you call me tom will you": [65535, 0], "when i'm good you call me tom will you yes": [65535, 0], "i'm good you call me tom will you yes now": [65535, 0], "good you call me tom will you yes now tom": [65535, 0], "you call me tom will you yes now tom began": [65535, 0], "call me tom will you yes now tom began to": [65535, 0], "me tom will you yes now tom began to scrawl": [65535, 0], "tom will you yes now tom began to scrawl something": [65535, 0], "will you yes now tom began to scrawl something on": [65535, 0], "you yes now tom began to scrawl something on the": [65535, 0], "yes now tom began to scrawl something on the slate": [65535, 0], "now tom began to scrawl something on the slate hiding": [65535, 0], "tom began to scrawl something on the slate hiding the": [65535, 0], "began to scrawl something on the slate hiding the words": [65535, 0], "to scrawl something on the slate hiding the words from": [65535, 0], "scrawl something on the slate hiding the words from the": [65535, 0], "something on the slate hiding the words from the girl": [65535, 0], "on the slate hiding the words from the girl but": [65535, 0], "the slate hiding the words from the girl but she": [65535, 0], "slate hiding the words from the girl but she was": [65535, 0], "hiding the words from the girl but she was not": [65535, 0], "the words from the girl but she was not backward": [65535, 0], "words from the girl but she was not backward this": [65535, 0], "from the girl but she was not backward this time": [65535, 0], "the girl but she was not backward this time she": [65535, 0], "girl but she was not backward this time she begged": [65535, 0], "but she was not backward this time she begged to": [65535, 0], "she was not backward this time she begged to see": [65535, 0], "was not backward this time she begged to see tom": [65535, 0], "not backward this time she begged to see tom said": [65535, 0], "backward this time she begged to see tom said oh": [65535, 0], "this time she begged to see tom said oh it": [65535, 0], "time she begged to see tom said oh it ain't": [65535, 0], "she begged to see tom said oh it ain't anything": [65535, 0], "begged to see tom said oh it ain't anything yes": [65535, 0], "to see tom said oh it ain't anything yes it": [65535, 0], "see tom said oh it ain't anything yes it is": [65535, 0], "tom said oh it ain't anything yes it is no": [65535, 0], "said oh it ain't anything yes it is no it": [65535, 0], "oh it ain't anything yes it is no it ain't": [65535, 0], "it ain't anything yes it is no it ain't you": [65535, 0], "ain't anything yes it is no it ain't you don't": [65535, 0], "anything yes it is no it ain't you don't want": [65535, 0], "yes it is no it ain't you don't want to": [65535, 0], "it is no it ain't you don't want to see": [65535, 0], "is no it ain't you don't want to see yes": [65535, 0], "no it ain't you don't want to see yes i": [65535, 0], "it ain't you don't want to see yes i do": [65535, 0], "ain't you don't want to see yes i do indeed": [65535, 0], "you don't want to see yes i do indeed i": [65535, 0], "don't want to see yes i do indeed i do": [65535, 0], "want to see yes i do indeed i do please": [65535, 0], "to see yes i do indeed i do please let": [65535, 0], "see yes i do indeed i do please let me": [65535, 0], "yes i do indeed i do please let me you'll": [65535, 0], "i do indeed i do please let me you'll tell": [65535, 0], "do indeed i do please let me you'll tell no": [65535, 0], "indeed i do please let me you'll tell no i": [65535, 0], "i do please let me you'll tell no i won't": [65535, 0], "do please let me you'll tell no i won't deed": [65535, 0], "please let me you'll tell no i won't deed and": [65535, 0], "let me you'll tell no i won't deed and deed": [65535, 0], "me you'll tell no i won't deed and deed and": [65535, 0], "you'll tell no i won't deed and deed and double": [65535, 0], "tell no i won't deed and deed and double deed": [65535, 0], "no i won't deed and deed and double deed won't": [65535, 0], "i won't deed and deed and double deed won't you": [65535, 0], "won't deed and deed and double deed won't you won't": [65535, 0], "deed and deed and double deed won't you won't tell": [65535, 0], "and deed and double deed won't you won't tell anybody": [65535, 0], "deed and double deed won't you won't tell anybody at": [65535, 0], "and double deed won't you won't tell anybody at all": [65535, 0], "double deed won't you won't tell anybody at all ever": [65535, 0], "deed won't you won't tell anybody at all ever as": [65535, 0], "won't you won't tell anybody at all ever as long": [65535, 0], "you won't tell anybody at all ever as long as": [65535, 0], "won't tell anybody at all ever as long as you": [65535, 0], "tell anybody at all ever as long as you live": [65535, 0], "anybody at all ever as long as you live no": [65535, 0], "at all ever as long as you live no i": [65535, 0], "all ever as long as you live no i won't": [65535, 0], "ever as long as you live no i won't ever": [65535, 0], "as long as you live no i won't ever tell": [65535, 0], "long as you live no i won't ever tell anybody": [65535, 0], "as you live no i won't ever tell anybody now": [65535, 0], "you live no i won't ever tell anybody now let": [65535, 0], "live no i won't ever tell anybody now let me": [65535, 0], "no i won't ever tell anybody now let me oh": [65535, 0], "i won't ever tell anybody now let me oh you": [65535, 0], "won't ever tell anybody now let me oh you don't": [65535, 0], "ever tell anybody now let me oh you don't want": [65535, 0], "tell anybody now let me oh you don't want to": [65535, 0], "anybody now let me oh you don't want to see": [65535, 0], "now let me oh you don't want to see now": [65535, 0], "let me oh you don't want to see now that": [65535, 0], "me oh you don't want to see now that you": [65535, 0], "oh you don't want to see now that you treat": [65535, 0], "you don't want to see now that you treat me": [65535, 0], "don't want to see now that you treat me so": [65535, 0], "want to see now that you treat me so i": [65535, 0], "to see now that you treat me so i will": [65535, 0], "see now that you treat me so i will see": [65535, 0], "now that you treat me so i will see and": [65535, 0], "that you treat me so i will see and she": [65535, 0], "you treat me so i will see and she put": [65535, 0], "treat me so i will see and she put her": [65535, 0], "me so i will see and she put her small": [65535, 0], "so i will see and she put her small hand": [65535, 0], "i will see and she put her small hand upon": [65535, 0], "will see and she put her small hand upon his": [65535, 0], "see and she put her small hand upon his and": [65535, 0], "and she put her small hand upon his and a": [65535, 0], "she put her small hand upon his and a little": [65535, 0], "put her small hand upon his and a little scuffle": [65535, 0], "her small hand upon his and a little scuffle ensued": [65535, 0], "small hand upon his and a little scuffle ensued tom": [65535, 0], "hand upon his and a little scuffle ensued tom pretending": [65535, 0], "upon his and a little scuffle ensued tom pretending to": [65535, 0], "his and a little scuffle ensued tom pretending to resist": [65535, 0], "and a little scuffle ensued tom pretending to resist in": [65535, 0], "a little scuffle ensued tom pretending to resist in earnest": [65535, 0], "little scuffle ensued tom pretending to resist in earnest but": [65535, 0], "scuffle ensued tom pretending to resist in earnest but letting": [65535, 0], "ensued tom pretending to resist in earnest but letting his": [65535, 0], "tom pretending to resist in earnest but letting his hand": [65535, 0], "pretending to resist in earnest but letting his hand slip": [65535, 0], "to resist in earnest but letting his hand slip by": [65535, 0], "resist in earnest but letting his hand slip by degrees": [65535, 0], "in earnest but letting his hand slip by degrees till": [65535, 0], "earnest but letting his hand slip by degrees till these": [65535, 0], "but letting his hand slip by degrees till these words": [65535, 0], "letting his hand slip by degrees till these words were": [65535, 0], "his hand slip by degrees till these words were revealed": [65535, 0], "hand slip by degrees till these words were revealed i": [65535, 0], "slip by degrees till these words were revealed i love": [65535, 0], "by degrees till these words were revealed i love you": [65535, 0], "degrees till these words were revealed i love you oh": [65535, 0], "till these words were revealed i love you oh you": [65535, 0], "these words were revealed i love you oh you bad": [65535, 0], "words were revealed i love you oh you bad thing": [65535, 0], "were revealed i love you oh you bad thing and": [65535, 0], "revealed i love you oh you bad thing and she": [65535, 0], "i love you oh you bad thing and she hit": [65535, 0], "love you oh you bad thing and she hit his": [65535, 0], "you oh you bad thing and she hit his hand": [65535, 0], "oh you bad thing and she hit his hand a": [65535, 0], "you bad thing and she hit his hand a smart": [65535, 0], "bad thing and she hit his hand a smart rap": [65535, 0], "thing and she hit his hand a smart rap but": [65535, 0], "and she hit his hand a smart rap but reddened": [65535, 0], "she hit his hand a smart rap but reddened and": [65535, 0], "hit his hand a smart rap but reddened and looked": [65535, 0], "his hand a smart rap but reddened and looked pleased": [65535, 0], "hand a smart rap but reddened and looked pleased nevertheless": [65535, 0], "a smart rap but reddened and looked pleased nevertheless just": [65535, 0], "smart rap but reddened and looked pleased nevertheless just at": [65535, 0], "rap but reddened and looked pleased nevertheless just at this": [65535, 0], "but reddened and looked pleased nevertheless just at this juncture": [65535, 0], "reddened and looked pleased nevertheless just at this juncture the": [65535, 0], "and looked pleased nevertheless just at this juncture the boy": [65535, 0], "looked pleased nevertheless just at this juncture the boy felt": [65535, 0], "pleased nevertheless just at this juncture the boy felt a": [65535, 0], "nevertheless just at this juncture the boy felt a slow": [65535, 0], "just at this juncture the boy felt a slow fateful": [65535, 0], "at this juncture the boy felt a slow fateful grip": [65535, 0], "this juncture the boy felt a slow fateful grip closing": [65535, 0], "juncture the boy felt a slow fateful grip closing on": [65535, 0], "the boy felt a slow fateful grip closing on his": [65535, 0], "boy felt a slow fateful grip closing on his ear": [65535, 0], "felt a slow fateful grip closing on his ear and": [65535, 0], "a slow fateful grip closing on his ear and a": [65535, 0], "slow fateful grip closing on his ear and a steady": [65535, 0], "fateful grip closing on his ear and a steady lifting": [65535, 0], "grip closing on his ear and a steady lifting impulse": [65535, 0], "closing on his ear and a steady lifting impulse in": [65535, 0], "on his ear and a steady lifting impulse in that": [65535, 0], "his ear and a steady lifting impulse in that vise": [65535, 0], "ear and a steady lifting impulse in that vise he": [65535, 0], "and a steady lifting impulse in that vise he was": [65535, 0], "a steady lifting impulse in that vise he was borne": [65535, 0], "steady lifting impulse in that vise he was borne across": [65535, 0], "lifting impulse in that vise he was borne across the": [65535, 0], "impulse in that vise he was borne across the house": [65535, 0], "in that vise he was borne across the house and": [65535, 0], "that vise he was borne across the house and deposited": [65535, 0], "vise he was borne across the house and deposited in": [65535, 0], "he was borne across the house and deposited in his": [65535, 0], "was borne across the house and deposited in his own": [65535, 0], "borne across the house and deposited in his own seat": [65535, 0], "across the house and deposited in his own seat under": [65535, 0], "the house and deposited in his own seat under a": [65535, 0], "house and deposited in his own seat under a peppering": [65535, 0], "and deposited in his own seat under a peppering fire": [65535, 0], "deposited in his own seat under a peppering fire of": [65535, 0], "in his own seat under a peppering fire of giggles": [65535, 0], "his own seat under a peppering fire of giggles from": [65535, 0], "own seat under a peppering fire of giggles from the": [65535, 0], "seat under a peppering fire of giggles from the whole": [65535, 0], "under a peppering fire of giggles from the whole school": [65535, 0], "a peppering fire of giggles from the whole school then": [65535, 0], "peppering fire of giggles from the whole school then the": [65535, 0], "fire of giggles from the whole school then the master": [65535, 0], "of giggles from the whole school then the master stood": [65535, 0], "giggles from the whole school then the master stood over": [65535, 0], "from the whole school then the master stood over him": [65535, 0], "the whole school then the master stood over him during": [65535, 0], "whole school then the master stood over him during a": [65535, 0], "school then the master stood over him during a few": [65535, 0], "then the master stood over him during a few awful": [65535, 0], "the master stood over him during a few awful moments": [65535, 0], "master stood over him during a few awful moments and": [65535, 0], "stood over him during a few awful moments and finally": [65535, 0], "over him during a few awful moments and finally moved": [65535, 0], "him during a few awful moments and finally moved away": [65535, 0], "during a few awful moments and finally moved away to": [65535, 0], "a few awful moments and finally moved away to his": [65535, 0], "few awful moments and finally moved away to his throne": [65535, 0], "awful moments and finally moved away to his throne without": [65535, 0], "moments and finally moved away to his throne without saying": [65535, 0], "and finally moved away to his throne without saying a": [65535, 0], "finally moved away to his throne without saying a word": [65535, 0], "moved away to his throne without saying a word but": [65535, 0], "away to his throne without saying a word but although": [65535, 0], "to his throne without saying a word but although tom's": [65535, 0], "his throne without saying a word but although tom's ear": [65535, 0], "throne without saying a word but although tom's ear tingled": [65535, 0], "without saying a word but although tom's ear tingled his": [65535, 0], "saying a word but although tom's ear tingled his heart": [65535, 0], "a word but although tom's ear tingled his heart was": [65535, 0], "word but although tom's ear tingled his heart was jubilant": [65535, 0], "but although tom's ear tingled his heart was jubilant as": [65535, 0], "although tom's ear tingled his heart was jubilant as the": [65535, 0], "tom's ear tingled his heart was jubilant as the school": [65535, 0], "ear tingled his heart was jubilant as the school quieted": [65535, 0], "tingled his heart was jubilant as the school quieted down": [65535, 0], "his heart was jubilant as the school quieted down tom": [65535, 0], "heart was jubilant as the school quieted down tom made": [65535, 0], "was jubilant as the school quieted down tom made an": [65535, 0], "jubilant as the school quieted down tom made an honest": [65535, 0], "as the school quieted down tom made an honest effort": [65535, 0], "the school quieted down tom made an honest effort to": [65535, 0], "school quieted down tom made an honest effort to study": [65535, 0], "quieted down tom made an honest effort to study but": [65535, 0], "down tom made an honest effort to study but the": [65535, 0], "tom made an honest effort to study but the turmoil": [65535, 0], "made an honest effort to study but the turmoil within": [65535, 0], "an honest effort to study but the turmoil within him": [65535, 0], "honest effort to study but the turmoil within him was": [65535, 0], "effort to study but the turmoil within him was too": [65535, 0], "to study but the turmoil within him was too great": [65535, 0], "study but the turmoil within him was too great in": [65535, 0], "but the turmoil within him was too great in turn": [65535, 0], "the turmoil within him was too great in turn he": [65535, 0], "turmoil within him was too great in turn he took": [65535, 0], "within him was too great in turn he took his": [65535, 0], "him was too great in turn he took his place": [65535, 0], "was too great in turn he took his place in": [65535, 0], "too great in turn he took his place in the": [65535, 0], "great in turn he took his place in the reading": [65535, 0], "in turn he took his place in the reading class": [65535, 0], "turn he took his place in the reading class and": [65535, 0], "he took his place in the reading class and made": [65535, 0], "took his place in the reading class and made a": [65535, 0], "his place in the reading class and made a botch": [65535, 0], "place in the reading class and made a botch of": [65535, 0], "in the reading class and made a botch of it": [65535, 0], "the reading class and made a botch of it then": [65535, 0], "reading class and made a botch of it then in": [65535, 0], "class and made a botch of it then in the": [65535, 0], "and made a botch of it then in the geography": [65535, 0], "made a botch of it then in the geography class": [65535, 0], "a botch of it then in the geography class and": [65535, 0], "botch of it then in the geography class and turned": [65535, 0], "of it then in the geography class and turned lakes": [65535, 0], "it then in the geography class and turned lakes into": [65535, 0], "then in the geography class and turned lakes into mountains": [65535, 0], "in the geography class and turned lakes into mountains mountains": [65535, 0], "the geography class and turned lakes into mountains mountains into": [65535, 0], "geography class and turned lakes into mountains mountains into rivers": [65535, 0], "class and turned lakes into mountains mountains into rivers and": [65535, 0], "and turned lakes into mountains mountains into rivers and rivers": [65535, 0], "turned lakes into mountains mountains into rivers and rivers into": [65535, 0], "lakes into mountains mountains into rivers and rivers into continents": [65535, 0], "into mountains mountains into rivers and rivers into continents till": [65535, 0], "mountains mountains into rivers and rivers into continents till chaos": [65535, 0], "mountains into rivers and rivers into continents till chaos was": [65535, 0], "into rivers and rivers into continents till chaos was come": [65535, 0], "rivers and rivers into continents till chaos was come again": [65535, 0], "and rivers into continents till chaos was come again then": [65535, 0], "rivers into continents till chaos was come again then in": [65535, 0], "into continents till chaos was come again then in the": [65535, 0], "continents till chaos was come again then in the spelling": [65535, 0], "till chaos was come again then in the spelling class": [65535, 0], "chaos was come again then in the spelling class and": [65535, 0], "was come again then in the spelling class and got": [65535, 0], "come again then in the spelling class and got turned": [65535, 0], "again then in the spelling class and got turned down": [65535, 0], "then in the spelling class and got turned down by": [65535, 0], "in the spelling class and got turned down by a": [65535, 0], "the spelling class and got turned down by a succession": [65535, 0], "spelling class and got turned down by a succession of": [65535, 0], "class and got turned down by a succession of mere": [65535, 0], "and got turned down by a succession of mere baby": [65535, 0], "got turned down by a succession of mere baby words": [65535, 0], "turned down by a succession of mere baby words till": [65535, 0], "down by a succession of mere baby words till he": [65535, 0], "by a succession of mere baby words till he brought": [65535, 0], "a succession of mere baby words till he brought up": [65535, 0], "succession of mere baby words till he brought up at": [65535, 0], "of mere baby words till he brought up at the": [65535, 0], "mere baby words till he brought up at the foot": [65535, 0], "baby words till he brought up at the foot and": [65535, 0], "words till he brought up at the foot and yielded": [65535, 0], "till he brought up at the foot and yielded up": [65535, 0], "he brought up at the foot and yielded up the": [65535, 0], "brought up at the foot and yielded up the pewter": [65535, 0], "up at the foot and yielded up the pewter medal": [65535, 0], "at the foot and yielded up the pewter medal which": [65535, 0], "the foot and yielded up the pewter medal which he": [65535, 0], "foot and yielded up the pewter medal which he had": [65535, 0], "and yielded up the pewter medal which he had worn": [65535, 0], "yielded up the pewter medal which he had worn with": [65535, 0], "up the pewter medal which he had worn with ostentation": [65535, 0], "the pewter medal which he had worn with ostentation for": [65535, 0], "pewter medal which he had worn with ostentation for months": [65535, 0], "world": [40902, 24633], "bright": [65535, 0], "fresh": [65535, 0], "brimming": [65535, 0], "song": [43635, 21900], "music": [65535, 0], "issued": [65535, 0], "lips": [65535, 0], "cheer": [32706, 32829], "step": [65535, 0], "locust": [65535, 0], "trees": [65535, 0], "fragrance": [65535, 0], "blossoms": [65535, 0], "filled": [65535, 0], "cardiff": [65535, 0], "beyond": [49105, 16430], "above": [65535, 0], "green": [65535, 0], "vegetation": [65535, 0], "delectable": [65535, 0], "land": [21790, 43745], "dreamy": [65535, 0], "reposeful": [65535, 0], "inviting": [65535, 0], "sidewalk": [65535, 0], "bucket": [65535, 0], "whitewash": [65535, 0], "handled": [65535, 0], "brush": [65535, 0], "fence": [65535, 0], "gladness": [65535, 0], "deep": [65535, 0], "melancholy": [65535, 0], "settled": [65535, 0], "thirty": [65535, 0], "nine": [65535, 0], "feet": [43635, 21900], "hollow": [49105, 16430], "existence": [65535, 0], "burden": [65535, 0], "passed": [32706, 32829], "plank": [65535, 0], "repeated": [65535, 0], "operation": [65535, 0], "compared": [65535, 0], "insignificant": [65535, 0], "whitewashed": [65535, 0], "streak": [65535, 0], "reaching": [65535, 0], "continent": [65535, 0], "unwhitewashed": [65535, 0], "tree": [65535, 0], "discouraged": [65535, 0], "skipping": [65535, 0], "gate": [24518, 41017], "tin": [65535, 0], "pail": [65535, 0], "singing": [65535, 0], "buffalo": [65535, 0], "gals": [65535, 0], "bringing": [43635, 21900], "pump": [65535, 0], "hateful": [65535, 0], "strike": [43635, 21900], "mulatto": [65535, 0], "negro": [65535, 0], "waiting": [65535, 0], "turns": [65535, 0], "resting": [65535, 0], "trading": [65535, 0], "playthings": [65535, 0], "quarrelling": [65535, 0], "fighting": [65535, 0], "skylarking": [65535, 0], "hundred": [18674, 46861], "fifty": [65535, 0], "mars": [65535, 0], "ole": [65535, 0], "missis": [65535, 0], "tole": [65535, 0], "an'": [65535, 0], "git": [65535, 0], "dis": [65535, 0], "stop": [46760, 18775], "foolin'": [65535, 0], "roun'": [65535, 0], "wid": [65535, 0], "spec'": [65535, 0], "gwine": [65535, 0], "ax": [65535, 0], "'tend": [65535, 0], "'lowed": [65535, 0], "she'd": [65535, 0], "de": [65535, 0], "whitewashin'": [65535, 0], "talks": [43635, 21900], "gimme": [65535, 0], "dasn't": [65535, 0], "tar": [65535, 0], "'deed": [65535, 0], "licks": [65535, 0], "whacks": [65535, 0], "thimble": [65535, 0], "cares": [32706, 32829], "i'd": [65535, 0], "anyways": [65535, 0], "cry": [32706, 32829], "marvel": [65535, 0], "alley": [65535, 0], "waver": [65535, 0], "bully": [65535, 0], "taw": [65535, 0], "dat's": [65535, 0], "gay": [32706, 32829], "i's": [65535, 0], "powerful": [65535, 0], "'fraid": [65535, 0], "show": [32706, 32829], "attraction": [65535, 0], "absorbing": [65535, 0], "bandage": [65535, 0], "unwound": [65535, 0], "flying": [65535, 0], "street": [49105, 16430], "tingling": [65535, 0], "rear": [65535, 0], "whitewashing": [65535, 0], "vigor": [32706, 32829], "retiring": [65535, 0], "field": [49105, 16430], "slipper": [65535, 0], "triumph": [65535, 0], "energy": [65535, 0], "fun": [65535, 0], "planned": [65535, 0], "sorrows": [65535, 0], "multiplied": [65535, 0], "tripping": [65535, 0], "sorts": [65535, 0], "delicious": [65535, 0], "expeditions": [65535, 0], "having": [65535, 0], "burnt": [65535, 0], "worldly": [65535, 0], "wealth": [28026, 37509], "examined": [65535, 0], "bits": [65535, 0], "toys": [65535, 0], "marbles": [65535, 0], "trash": [65535, 0], "buy": [19609, 45926], "exchange": [65535, 0], "pure": [32706, 32829], "freedom": [65535, 0], "straitened": [65535, 0], "means": [65535, 0], "idea": [65535, 0], "hopeless": [65535, 0], "inspiration": [49105, 16430], "magnificent": [65535, 0], "sight": [21790, 43745], "ridicule": [65535, 0], "dreading": [65535, 0], "ben's": [65535, 0], "gait": [65535, 0], "hop": [65535, 0], "skip": [65535, 0], "jump": [65535, 0], "proof": [65535, 0], "anticipations": [65535, 0], "eating": [65535, 0], "apple": [65535, 0], "giving": [65535, 0], "melodious": [65535, 0], "whoop": [65535, 0], "intervals": [65535, 0], "toned": [65535, 0], "ding": [65535, 0], "dong": [65535, 0], "personating": [65535, 0], "steamboat": [65535, 0], "near": [65535, 0], "slackened": [65535, 0], "leaned": [65535, 0], "starboard": [65535, 0], "rounded": [65535, 0], "ponderously": [65535, 0], "laborious": [65535, 0], "pomp": [65535, 0], "circumstance": [43635, 21900], "big": [65535, 0], "missouri": [65535, 0], "boat": [65535, 0], "captain": [65535, 0], "engine": [65535, 0], "bells": [65535, 0], "combined": [65535, 0], "imagine": [65535, 0], "hurricane": [65535, 0], "deck": [65535, 0], "executing": [65535, 0], "ting": [65535, 0], "ling": [65535, 0], "headway": [65535, 0], "ran": [37388, 28147], "slowly": [65535, 0], "toward": [65535, 0], "ship": [7257, 58278], "straightened": [65535, 0], "stiffened": [65535, 0], "sides": [65535, 0], "set": [46760, 18775], "stabboard": [65535, 0], "chow": [65535, 0], "ch": [65535, 0], "wow": [65535, 0], "meantime": [65535, 0], "describing": [65535, 0], "stately": [65535, 0], "circles": [65535, 0], "representing": [65535, 0], "wheel": [65535, 0], "labboard": [65535, 0], "describe": [65535, 0], "ahead": [65535, 0], "ow": [65535, 0], "line": [65535, 0], "lively": [65535, 0], "what're": [65535, 0], "round": [54578, 10957], "bight": [65535, 0], "stand": [16338, 49197], "stage": [65535, 0], "engines": [65535, 0], "sh't": [65535, 0], "s'h't": [65535, 0], "gauge": [65535, 0], "cocks": [65535, 0], "paid": [65535, 0], "hi": [65535, 0], "yi": [65535, 0], "touch": [32706, 32829], "sweep": [65535, 0], "ranged": [65535, 0], "alongside": [65535, 0], "watered": [65535, 0], "stuck": [65535, 0], "chap": [65535, 0], "hey": [65535, 0], "wheeled": [65535, 0], "warn't": [65535, 0], "noticing": [65535, 0], "am": [3212, 62323], "druther": [65535, 0], "contemplated": [65535, 0], "answered": [65535, 0], "carelessly": [65535, 0], "suits": [65535, 0], "mean": [65535, 0], "move": [65535, 0], "oughtn't": [65535, 0], "nibbling": [65535, 0], "swept": [65535, 0], "daintily": [65535, 0], "forth": [14002, 51533], "note": [39262, 26273], "effect": [49105, 16430], "added": [65535, 0], "criticised": [65535, 0], "getting": [65535, 0], "absorbed": [65535, 0], "consent": [21790, 43745], "altered": [65535, 0], "polly's": [65535, 0], "particular": [65535, 0], "careful": [65535, 0], "fixed": [65535, 0], "tackle": [65535, 0], "happen": [65535, 0], "core": [65535, 0], "reluctance": [65535, 0], "steamer": [65535, 0], "sweated": [65535, 0], "sun": [49105, 16430], "retired": [65535, 0], "barrel": [65535, 0], "shade": [65535, 0], "dangled": [65535, 0], "munched": [65535, 0], "innocents": [65535, 0], "lack": [65535, 0], "material": [65535, 0], "happened": [65535, 0], "jeer": [65535, 0], "remained": [65535, 0], "fagged": [65535, 0], "traded": [65535, 0], "billy": [65535, 0], "fisher": [65535, 0], "kite": [65535, 0], "repair": [65535, 0], "miller": [65535, 0], "rat": [65535, 0], "string": [65535, 0], "swing": [65535, 0], "afternoon": [65535, 0], "poverty": [65535, 0], "stricken": [65535, 0], "literally": [65535, 0], "rolling": [65535, 0], "mentioned": [65535, 0], "twelve": [65535, 0], "jews": [65535, 0], "harp": [65535, 0], "bottle": [65535, 0], "look": [65535, 0], "spool": [65535, 0], "cannon": [65535, 0], "unlock": [65535, 0], "fragment": [65535, 0], "chalk": [65535, 0], "stopper": [65535, 0], "decanter": [65535, 0], "soldier": [65535, 0], "tadpoles": [65535, 0], "six": [65535, 0], "crackers": [65535, 0], "kitten": [65535, 0], "brass": [65535, 0], "doorknob": [65535, 0], "collar": [65535, 0], "handle": [65535, 0], "knife": [65535, 0], "four": [65535, 0], "pieces": [65535, 0], "orange": [65535, 0], "peel": [65535, 0], "dilapidated": [65535, 0], "coats": [65535, 0], "bankrupted": [65535, 0], "law": [32706, 32829], "action": [65535, 0], "knowing": [32706, 32829], "namely": [21790, 43745], "covet": [65535, 0], "difficult": [65535, 0], "attain": [65535, 0], "wise": [21790, 43745], "philosopher": [65535, 0], "writer": [65535, 0], "comprehended": [65535, 0], "consists": [65535, 0], "whatever": [65535, 0], "obliged": [65535, 0], "help": [43635, 21900], "understand": [65535, 0], "constructing": [65535, 0], "artificial": [65535, 0], "flowers": [65535, 0], "performing": [65535, 0], "tread": [65535, 0], "mill": [65535, 0], "pins": [65535, 0], "climbing": [65535, 0], "mont": [65535, 0], "blanc": [65535, 0], "amusement": [65535, 0], "wealthy": [65535, 0], "gentlemen": [43635, 21900], "england": [32706, 32829], "drive": [65535, 0], "horse": [32706, 32829], "passenger": [65535, 0], "coaches": [65535, 0], "twenty": [65535, 0], "miles": [65535, 0], "daily": [32706, 32829], "privilege": [65535, 0], "costs": [65535, 0], "money": [14521, 51014], "wages": [65535, 0], "resign": [65535, 0], "mused": [65535, 0], "awhile": [65535, 0], "substantial": [65535, 0], "taken": [32706, 32829], "circumstances": [65535, 0], "headquarters": [65535, 0], "report": [21790, 43745], "saturday morning": [65535, 0], "morning was": [65535, 0], "come and": [32706, 32829], "and all": [18674, 46861], "summer world": [65535, 0], "world was": [65535, 0], "was bright": [65535, 0], "bright and": [65535, 0], "and fresh": [65535, 0], "fresh and": [65535, 0], "and brimming": [65535, 0], "brimming with": [65535, 0], "with life": [65535, 0], "life there": [65535, 0], "a song": [65535, 0], "song in": [65535, 0], "in every": [65535, 0], "every heart": [65535, 0], "heart and": [54578, 10957], "the heart": [65535, 0], "was young": [65535, 0], "young the": [65535, 0], "the music": [65535, 0], "music issued": [65535, 0], "issued at": [65535, 0], "the lips": [65535, 0], "lips there": [65535, 0], "was cheer": [65535, 0], "cheer in": [65535, 0], "every face": [65535, 0], "face and": [32706, 32829], "spring in": [65535, 0], "every step": [65535, 0], "step the": [65535, 0], "the locust": [65535, 0], "locust trees": [65535, 0], "trees were": [65535, 0], "in bloom": [65535, 0], "the fragrance": [65535, 0], "fragrance of": [65535, 0], "the blossoms": [65535, 0], "blossoms filled": [65535, 0], "filled the": [65535, 0], "the air": [65535, 0], "air cardiff": [65535, 0], "cardiff hill": [65535, 0], "hill beyond": [65535, 0], "beyond the": [65535, 0], "village and": [65535, 0], "and above": [65535, 0], "above it": [65535, 0], "was green": [65535, 0], "green with": [65535, 0], "with vegetation": [65535, 0], "vegetation and": [65535, 0], "it lay": [65535, 0], "lay just": [65535, 0], "just far": [65535, 0], "far enough": [65535, 0], "enough away": [65535, 0], "to seem": [65535, 0], "seem a": [65535, 0], "a delectable": [65535, 0], "delectable land": [65535, 0], "land dreamy": [65535, 0], "dreamy reposeful": [65535, 0], "reposeful and": [65535, 0], "and inviting": [65535, 0], "inviting tom": [65535, 0], "tom appeared": [65535, 0], "appeared on": [65535, 0], "the sidewalk": [65535, 0], "sidewalk with": [65535, 0], "a bucket": [65535, 0], "bucket of": [65535, 0], "of whitewash": [65535, 0], "whitewash and": [65535, 0], "a long": [39262, 26273], "long handled": [65535, 0], "handled brush": [65535, 0], "brush he": [65535, 0], "the fence": [65535, 0], "fence and": [65535, 0], "all gladness": [65535, 0], "gladness left": [65535, 0], "left him": [32706, 32829], "a deep": [65535, 0], "deep melancholy": [65535, 0], "melancholy settled": [65535, 0], "settled down": [65535, 0], "spirit thirty": [65535, 0], "thirty yards": [65535, 0], "yards of": [65535, 0], "of board": [65535, 0], "board fence": [65535, 0], "fence nine": [65535, 0], "nine feet": [65535, 0], "feet high": [65535, 0], "high life": [65535, 0], "life to": [65535, 0], "him seemed": [65535, 0], "seemed hollow": [65535, 0], "hollow and": [65535, 0], "and existence": [65535, 0], "existence but": [65535, 0], "a burden": [65535, 0], "burden sighing": [65535, 0], "sighing he": [65535, 0], "he dipped": [65535, 0], "his brush": [65535, 0], "brush and": [65535, 0], "and passed": [32706, 32829], "passed it": [65535, 0], "it along": [65535, 0], "along the": [65535, 0], "topmost plank": [65535, 0], "plank repeated": [65535, 0], "repeated the": [65535, 0], "the operation": [65535, 0], "operation did": [65535, 0], "did it": [65535, 0], "again compared": [65535, 0], "compared the": [65535, 0], "the insignificant": [65535, 0], "insignificant whitewashed": [65535, 0], "whitewashed streak": [65535, 0], "streak with": [65535, 0], "far reaching": [65535, 0], "reaching continent": [65535, 0], "continent of": [65535, 0], "of unwhitewashed": [65535, 0], "unwhitewashed fence": [65535, 0], "a tree": [65535, 0], "tree box": [65535, 0], "box discouraged": [65535, 0], "discouraged jim": [65535, 0], "jim came": [65535, 0], "came skipping": [65535, 0], "skipping out": [65535, 0], "out at": [65535, 0], "the gate": [21790, 43745], "gate with": [65535, 0], "a tin": [65535, 0], "tin pail": [65535, 0], "pail and": [65535, 0], "and singing": [65535, 0], "singing buffalo": [65535, 0], "buffalo gals": [65535, 0], "gals bringing": [65535, 0], "bringing water": [65535, 0], "water from": [65535, 0], "town pump": [65535, 0], "pump had": [65535, 0], "had always": [65535, 0], "always been": [65535, 0], "been hateful": [65535, 0], "hateful work": [65535, 0], "work in": [65535, 0], "in tom's": [65535, 0], "tom's eyes": [65535, 0], "eyes before": [65535, 0], "before but": [65535, 0], "it did": [65535, 0], "not strike": [65535, 0], "strike him": [65535, 0], "remembered that": [65535, 0], "was company": [65535, 0], "company at": [65535, 0], "the pump": [65535, 0], "pump white": [65535, 0], "white mulatto": [65535, 0], "mulatto and": [65535, 0], "and negro": [65535, 0], "negro boys": [65535, 0], "boys and": [65535, 0], "and girls": [65535, 0], "girls were": [65535, 0], "were always": [65535, 0], "always there": [65535, 0], "there waiting": [65535, 0], "waiting their": [65535, 0], "their turns": [65535, 0], "turns resting": [65535, 0], "resting trading": [65535, 0], "trading playthings": [65535, 0], "playthings quarrelling": [65535, 0], "quarrelling fighting": [65535, 0], "fighting skylarking": [65535, 0], "skylarking and": [65535, 0], "that although": [65535, 0], "although the": [65535, 0], "pump was": [65535, 0], "only a": [65535, 0], "a hundred": [21790, 43745], "hundred and": [65535, 0], "and fifty": [65535, 0], "fifty yards": [65535, 0], "yards off": [65535, 0], "off jim": [65535, 0], "jim never": [65535, 0], "never got": [65535, 0], "got back": [65535, 0], "back with": [65535, 0], "of water": [46760, 18775], "water under": [65535, 0], "under an": [65535, 0], "hour and": [65535, 0], "and even": [65535, 0], "even then": [65535, 0], "then somebody": [65535, 0], "somebody generally": [65535, 0], "generally had": [65535, 0], "go after": [65535, 0], "after him": [65535, 0], "said say": [65535, 0], "say jim": [65535, 0], "jim i'll": [65535, 0], "i'll fetch": [65535, 0], "the water": [65535, 0], "water if": [65535, 0], "if you'll": [65535, 0], "you'll whitewash": [65535, 0], "whitewash some": [65535, 0], "some jim": [65535, 0], "jim shook": [65535, 0], "shook his": [65535, 0], "said can't": [65535, 0], "can't mars": [65535, 0], "mars tom": [65535, 0], "tom ole": [65535, 0], "ole missis": [65535, 0], "missis she": [65535, 0], "she tole": [65535, 0], "tole me": [65535, 0], "me i": [16338, 49197], "go an'": [65535, 0], "an' git": [65535, 0], "git dis": [65535, 0], "dis water": [65535, 0], "water an'": [65535, 0], "an' not": [65535, 0], "not stop": [65535, 0], "stop foolin'": [65535, 0], "foolin' roun'": [65535, 0], "roun' wid": [65535, 0], "wid anybody": [65535, 0], "anybody she": [65535, 0], "she say": [65535, 0], "say she": [65535, 0], "she spec'": [65535, 0], "spec' mars": [65535, 0], "tom gwine": [65535, 0], "gwine to": [65535, 0], "to ax": [65535, 0], "ax me": [65535, 0], "me to": [10888, 54647], "to whitewash": [65535, 0], "whitewash an'": [65535, 0], "an' so": [65535, 0], "so she": [65535, 0], "me go": [65535, 0], "go 'long": [65535, 0], "'long an'": [65535, 0], "an' 'tend": [65535, 0], "'tend to": [65535, 0], "to my": [8710, 56825], "my own": [65535, 0], "own business": [65535, 0], "business she": [65535, 0], "she 'lowed": [65535, 0], "'lowed she'd": [65535, 0], "she'd 'tend": [65535, 0], "to de": [65535, 0], "de whitewashin'": [65535, 0], "whitewashin' oh": [65535, 0], "oh never": [65535, 0], "never you": [65535, 0], "you mind": [65535, 0], "mind what": [65535, 0], "what she": [43635, 21900], "said jim": [65535, 0], "jim that's": [65535, 0], "way she": [65535, 0], "she always": [65535, 0], "always talks": [65535, 0], "talks gimme": [65535, 0], "gimme the": [65535, 0], "the bucket": [65535, 0], "bucket i": [65535, 0], "won't be": [65535, 0], "be gone": [9332, 56203], "gone only": [65535, 0], "minute she": [65535, 0], "she won't": [65535, 0], "ever know": [65535, 0], "know oh": [65535, 0], "i dasn't": [65535, 0], "dasn't mars": [65535, 0], "missis she'd": [65535, 0], "she'd take": [65535, 0], "take an'": [65535, 0], "an' tar": [65535, 0], "tar de": [65535, 0], "de head": [65535, 0], "head off'n": [65535, 0], "off'n me": [65535, 0], "me 'deed": [65535, 0], "'deed she": [65535, 0], "she would": [50929, 14606], "would she": [65535, 0], "she she": [65535, 0], "she never": [65535, 0], "never licks": [65535, 0], "licks anybody": [65535, 0], "anybody whacks": [65535, 0], "whacks 'em": [65535, 0], "'em over": [65535, 0], "the head": [65535, 0], "her thimble": [65535, 0], "thimble and": [65535, 0], "and who": [65535, 0], "who cares": [65535, 0], "cares for": [65535, 0], "for that": [54578, 10957], "that i'd": [65535, 0], "i'd like": [65535, 0], "like to": [65535, 0], "to know": [39262, 26273], "she talks": [65535, 0], "talks awful": [65535, 0], "awful but": [65535, 0], "but talk": [65535, 0], "talk don't": [65535, 0], "hurt anyways": [65535, 0], "anyways it": [65535, 0], "don't if": [65535, 0], "she don't": [65535, 0], "don't cry": [65535, 0], "cry jim": [65535, 0], "you a": [43635, 21900], "a marvel": [65535, 0], "marvel i'll": [65535, 0], "a white": [65535, 0], "white alley": [65535, 0], "alley jim": [65535, 0], "jim began": [65535, 0], "to waver": [65535, 0], "waver white": [65535, 0], "jim and": [65535, 0], "and it's": [65535, 0], "a bully": [65535, 0], "bully taw": [65535, 0], "taw my": [65535, 0], "my dat's": [65535, 0], "dat's a": [65535, 0], "mighty gay": [65535, 0], "gay marvel": [65535, 0], "marvel i": [65535, 0], "i tell": [10888, 54647], "tell you": [21790, 43745], "you but": [32706, 32829], "but mars": [65535, 0], "tom i's": [65535, 0], "i's powerful": [65535, 0], "powerful 'fraid": [65535, 0], "'fraid ole": [65535, 0], "missis and": [65535, 0], "besides if": [65535, 0], "will i'll": [65535, 0], "i'll show": [65535, 0], "show you": [65535, 0], "toe jim": [65535, 0], "jim was": [65535, 0], "only human": [65535, 0], "human this": [65535, 0], "this attraction": [65535, 0], "attraction was": [65535, 0], "too much": [21790, 43745], "much for": [65535, 0], "he put": [65535, 0], "put down": [65535, 0], "down his": [65535, 0], "his pail": [65535, 0], "pail took": [65535, 0], "took the": [65535, 0], "the white": [65535, 0], "alley and": [65535, 0], "and bent": [65535, 0], "bent over": [65535, 0], "toe with": [65535, 0], "with absorbing": [65535, 0], "absorbing interest": [65535, 0], "interest while": [65535, 0], "the bandage": [65535, 0], "bandage was": [65535, 0], "was being": [65535, 0], "being unwound": [65535, 0], "unwound in": [65535, 0], "in another": [65535, 0], "another moment": [65535, 0], "moment he": [65535, 0], "was flying": [65535, 0], "flying down": [65535, 0], "the street": [43635, 21900], "street with": [65535, 0], "a tingling": [65535, 0], "tingling rear": [65535, 0], "rear tom": [65535, 0], "was whitewashing": [65535, 0], "whitewashing with": [65535, 0], "with vigor": [65535, 0], "vigor and": [65535, 0], "and aunt": [65535, 0], "polly was": [65535, 0], "was retiring": [65535, 0], "retiring from": [65535, 0], "the field": [65535, 0], "field with": [65535, 0], "a slipper": [65535, 0], "slipper in": [65535, 0], "in her": [34891, 30644], "her hand": [65535, 0], "hand and": [46760, 18775], "and triumph": [65535, 0], "triumph in": [65535, 0], "her eye": [65535, 0], "eye but": [32706, 32829], "but tom's": [65535, 0], "tom's energy": [65535, 0], "energy did": [65535, 0], "not last": [65535, 0], "to think": [65535, 0], "think of": [65535, 0], "the fun": [65535, 0], "fun he": [65535, 0], "had planned": [65535, 0], "planned for": [65535, 0], "this day": [10888, 54647], "his sorrows": [65535, 0], "sorrows multiplied": [65535, 0], "multiplied soon": [65535, 0], "soon the": [65535, 0], "the free": [65535, 0], "free boys": [65535, 0], "boys would": [65535, 0], "would come": [65535, 0], "come tripping": [65535, 0], "tripping along": [65535, 0], "along on": [65535, 0], "on all": [65535, 0], "all sorts": [65535, 0], "sorts of": [65535, 0], "of delicious": [65535, 0], "delicious expeditions": [65535, 0], "expeditions and": [65535, 0], "they would": [65535, 0], "would make": [32706, 32829], "a world": [65535, 0], "world of": [65535, 0], "of fun": [65535, 0], "fun of": [65535, 0], "him for": [65535, 0], "for having": [65535, 0], "having to": [65535, 0], "work the": [65535, 0], "the very": [65535, 0], "very thought": [65535, 0], "it burnt": [65535, 0], "burnt him": [65535, 0], "him like": [32706, 32829], "like fire": [65535, 0], "fire he": [65535, 0], "his worldly": [65535, 0], "worldly wealth": [65535, 0], "wealth and": [65535, 0], "and examined": [65535, 0], "examined it": [65535, 0], "it bits": [65535, 0], "bits of": [65535, 0], "of toys": [65535, 0], "toys marbles": [65535, 0], "marbles and": [65535, 0], "and trash": [65535, 0], "trash enough": [65535, 0], "enough to": [65535, 0], "to buy": [39262, 26273], "buy an": [65535, 0], "an exchange": [65535, 0], "exchange of": [65535, 0], "of work": [65535, 0], "work maybe": [65535, 0], "maybe but": [65535, 0], "but not": [10888, 54647], "not half": [65535, 0], "half enough": [65535, 0], "buy so": [65535, 0], "as half": [65535, 0], "half an": [65535, 0], "hour of": [65535, 0], "of pure": [65535, 0], "pure freedom": [65535, 0], "freedom so": [65535, 0], "he returned": [65535, 0], "returned his": [65535, 0], "his straitened": [65535, 0], "straitened means": [65535, 0], "means to": [65535, 0], "pocket and": [65535, 0], "gave up": [65535, 0], "the idea": [65535, 0], "idea of": [65535, 0], "of trying": [65535, 0], "buy the": [65535, 0], "boys at": [65535, 0], "this dark": [65535, 0], "dark and": [65535, 0], "and hopeless": [65535, 0], "hopeless moment": [65535, 0], "moment an": [65535, 0], "an inspiration": [65535, 0], "inspiration burst": [65535, 0], "burst upon": [65535, 0], "upon him": [65535, 0], "him nothing": [65535, 0], "nothing less": [65535, 0], "less than": [65535, 0], "than a": [65535, 0], "great magnificent": [65535, 0], "magnificent inspiration": [65535, 0], "inspiration he": [65535, 0], "up his": [65535, 0], "went tranquilly": [65535, 0], "tranquilly to": [65535, 0], "work ben": [65535, 0], "rogers hove": [65535, 0], "hove in": [65535, 0], "in sight": [65535, 0], "sight presently": [65535, 0], "very boy": [65535, 0], "boy of": [65535, 0], "all boys": [65535, 0], "boys whose": [65535, 0], "whose ridicule": [65535, 0], "ridicule he": [65535, 0], "been dreading": [65535, 0], "dreading ben's": [65535, 0], "ben's gait": [65535, 0], "gait was": [65535, 0], "the hop": [65535, 0], "hop skip": [65535, 0], "skip and": [65535, 0], "and jump": [65535, 0], "jump proof": [65535, 0], "proof enough": [65535, 0], "enough that": [65535, 0], "that his": [32706, 32829], "was light": [65535, 0], "his anticipations": [65535, 0], "anticipations high": [65535, 0], "high he": [65535, 0], "was eating": [65535, 0], "eating an": [65535, 0], "an apple": [65535, 0], "apple and": [65535, 0], "and giving": [65535, 0], "giving a": [65535, 0], "long melodious": [65535, 0], "melodious whoop": [65535, 0], "whoop at": [65535, 0], "at intervals": [65535, 0], "intervals followed": [65535, 0], "deep toned": [65535, 0], "toned ding": [65535, 0], "ding dong": [65535, 0], "dong dong": [65535, 0], "dong ding": [65535, 0], "dong for": [65535, 0], "was personating": [65535, 0], "personating a": [65535, 0], "a steamboat": [65535, 0], "steamboat as": [65535, 0], "he drew": [65535, 0], "drew near": [65535, 0], "near he": [65535, 0], "he slackened": [65535, 0], "slackened speed": [65535, 0], "speed took": [65535, 0], "street leaned": [65535, 0], "leaned far": [65535, 0], "far over": [65535, 0], "over to": [65535, 0], "to starboard": [65535, 0], "starboard and": [65535, 0], "and rounded": [65535, 0], "rounded to": [65535, 0], "to ponderously": [65535, 0], "ponderously and": [65535, 0], "and with": [21790, 43745], "with laborious": [65535, 0], "laborious pomp": [65535, 0], "pomp and": [65535, 0], "and circumstance": [65535, 0], "circumstance for": [65535, 0], "personating the": [65535, 0], "the big": [65535, 0], "big missouri": [65535, 0], "missouri and": [65535, 0], "and considered": [65535, 0], "considered himself": [65535, 0], "himself to": [65535, 0], "be drawing": [65535, 0], "drawing nine": [65535, 0], "feet of": [65535, 0], "water he": [65535, 0], "was boat": [65535, 0], "boat and": [65535, 0], "and captain": [65535, 0], "captain and": [65535, 0], "and engine": [65535, 0], "engine bells": [65535, 0], "bells combined": [65535, 0], "combined so": [65535, 0], "to imagine": [65535, 0], "imagine himself": [65535, 0], "himself standing": [65535, 0], "standing on": [65535, 0], "own hurricane": [65535, 0], "hurricane deck": [65535, 0], "deck giving": [65535, 0], "giving the": [65535, 0], "the orders": [65535, 0], "orders and": [65535, 0], "and executing": [65535, 0], "executing them": [65535, 0], "them stop": [65535, 0], "stop her": [65535, 0], "her sir": [65535, 0], "sir ting": [65535, 0], "ting a": [65535, 0], "a ling": [65535, 0], "ling ling": [65535, 0], "ling the": [65535, 0], "the headway": [65535, 0], "headway ran": [65535, 0], "ran almost": [65535, 0], "almost out": [65535, 0], "drew up": [65535, 0], "up slowly": [65535, 0], "slowly toward": [65535, 0], "toward the": [65535, 0], "sidewalk ship": [65535, 0], "ship up": [65535, 0], "to back": [65535, 0], "back ting": [65535, 0], "ling his": [65535, 0], "arms straightened": [65535, 0], "straightened and": [65535, 0], "and stiffened": [65535, 0], "stiffened down": [65535, 0], "his sides": [65535, 0], "sides set": [65535, 0], "set her": [65535, 0], "her back": [65535, 0], "back on": [65535, 0], "the stabboard": [65535, 0], "stabboard ting": [65535, 0], "ling chow": [65535, 0], "chow ch": [65535, 0], "ch chow": [65535, 0], "chow wow": [65535, 0], "wow chow": [65535, 0], "chow his": [65535, 0], "his right": [65535, 0], "right hand": [65535, 0], "hand meantime": [65535, 0], "meantime describing": [65535, 0], "describing stately": [65535, 0], "stately circles": [65535, 0], "circles for": [65535, 0], "was representing": [65535, 0], "representing a": [65535, 0], "a forty": [65535, 0], "forty foot": [65535, 0], "foot wheel": [65535, 0], "wheel let": [65535, 0], "let her": [32706, 32829], "her go": [65535, 0], "go back": [32706, 32829], "the labboard": [65535, 0], "labboard ting": [65535, 0], "chow chow": [65535, 0], "chow the": [65535, 0], "the left": [65535, 0], "to describe": [65535, 0], "describe circles": [65535, 0], "circles stop": [65535, 0], "stop the": [65535, 0], "ling stop": [65535, 0], "labboard come": [65535, 0], "come ahead": [65535, 0], "ahead on": [65535, 0], "stabboard stop": [65535, 0], "her let": [65535, 0], "let your": [21790, 43745], "your outside": [65535, 0], "outside turn": [65535, 0], "over slow": [65535, 0], "slow ting": [65535, 0], "chow ow": [65535, 0], "ow ow": [65535, 0], "ow get": [65535, 0], "get out": [65535, 0], "out that": [65535, 0], "that head": [65535, 0], "head line": [65535, 0], "line lively": [65535, 0], "lively now": [65535, 0], "now come": [65535, 0], "come out": [65535, 0], "out with": [65535, 0], "your spring": [65535, 0], "spring line": [65535, 0], "line what're": [65535, 0], "what're you": [65535, 0], "you about": [65535, 0], "about there": [65535, 0], "there take": [21790, 43745], "take a": [52389, 13146], "turn round": [65535, 0], "round that": [65535, 0], "that stump": [65535, 0], "stump with": [65535, 0], "the bight": [65535, 0], "bight of": [65535, 0], "it stand": [65535, 0], "stand by": [32706, 32829], "that stage": [65535, 0], "stage now": [65535, 0], "go done": [65535, 0], "the engines": [65535, 0], "engines sir": [65535, 0], "ling sh't": [65535, 0], "sh't s'h't": [65535, 0], "s'h't sh't": [65535, 0], "sh't trying": [65535, 0], "trying the": [32706, 32829], "the gauge": [65535, 0], "gauge cocks": [65535, 0], "cocks tom": [65535, 0], "on whitewashing": [65535, 0], "whitewashing paid": [65535, 0], "paid no": [65535, 0], "no attention": [65535, 0], "attention to": [65535, 0], "the steamboat": [65535, 0], "steamboat ben": [65535, 0], "ben stared": [65535, 0], "stared a": [65535, 0], "moment and": [65535, 0], "then said": [65535, 0], "said hi": [65535, 0], "hi yi": [65535, 0], "yi you're": [65535, 0], "you're up": [65535, 0], "a stump": [65535, 0], "stump ain't": [65535, 0], "you no": [65535, 0], "no answer": [65535, 0], "answer tom": [65535, 0], "tom surveyed": [65535, 0], "surveyed his": [65535, 0], "his last": [65535, 0], "last touch": [65535, 0], "touch with": [65535, 0], "the eye": [65535, 0], "eye of": [65535, 0], "of an": [32706, 32829], "an artist": [65535, 0], "artist then": [65535, 0], "he gave": [65535, 0], "gave his": [65535, 0], "brush another": [65535, 0], "another gentle": [65535, 0], "gentle sweep": [65535, 0], "sweep and": [65535, 0], "and surveyed": [65535, 0], "the result": [65535, 0], "result as": [65535, 0], "as before": [65535, 0], "before ben": [65535, 0], "ben ranged": [65535, 0], "ranged up": [65535, 0], "up alongside": [65535, 0], "alongside of": [65535, 0], "him tom's": [65535, 0], "tom's mouth": [65535, 0], "mouth watered": [65535, 0], "watered for": [65535, 0], "the apple": [65535, 0], "apple but": [65535, 0], "he stuck": [65535, 0], "stuck to": [65535, 0], "ben said": [65535, 0], "said hello": [65535, 0], "hello old": [65535, 0], "old chap": [65535, 0], "chap you": [65535, 0], "work hey": [65535, 0], "hey tom": [65535, 0], "tom wheeled": [65535, 0], "wheeled suddenly": [65535, 0], "suddenly and": [65535, 0], "said why": [65535, 0], "why it's": [65535, 0], "it's you": [65535, 0], "you ben": [65535, 0], "ben i": [65535, 0], "i warn't": [65535, 0], "warn't noticing": [65535, 0], "noticing say": [65535, 0], "say i'm": [65535, 0], "i'm going": [65535, 0], "going in": [65535, 0], "a swimming": [65535, 0], "swimming i": [65535, 0], "i am": [4259, 61276], "am don't": [65535, 0], "you wish": [65535, 0], "wish you": [65535, 0], "you could": [65535, 0], "could but": [65535, 0], "but of": [65535, 0], "course you'd": [65535, 0], "you'd druther": [65535, 0], "druther work": [65535, 0], "work wouldn't": [65535, 0], "you course": [65535, 0], "course you": [65535, 0], "you would": [9332, 56203], "would tom": [65535, 0], "tom contemplated": [65535, 0], "contemplated the": [65535, 0], "boy a": [65535, 0], "bit and": [65535, 0], "said what": [65535, 0], "what do": [65535, 0], "call work": [65535, 0], "work why": [65535, 0], "why ain't": [65535, 0], "ain't that": [65535, 0], "that work": [65535, 0], "work tom": [65535, 0], "tom resumed": [65535, 0], "resumed his": [65535, 0], "his whitewashing": [65535, 0], "whitewashing and": [65535, 0], "and answered": [65535, 0], "answered carelessly": [65535, 0], "carelessly well": [65535, 0], "well maybe": [65535, 0], "maybe it": [65535, 0], "is and": [65535, 0], "and maybe": [65535, 0], "ain't all": [65535, 0], "all i": [32706, 32829], "know is": [65535, 0], "it suits": [65535, 0], "suits tom": [65535, 0], "sawyer oh": [65535, 0], "oh come": [65535, 0], "come now": [65535, 0], "don't mean": [65535, 0], "mean to": [65535, 0], "to let": [65535, 0], "let on": [65535, 0], "on that": [65535, 0], "it the": [49105, 16430], "the brush": [65535, 0], "brush continued": [65535, 0], "continued to": [65535, 0], "to move": [65535, 0], "move like": [65535, 0], "it well": [52389, 13146], "don't see": [65535, 0], "see why": [65535, 0], "why i": [65535, 0], "i oughtn't": [65535, 0], "oughtn't to": [65535, 0], "to like": [65535, 0], "does a": [65535, 0], "boy get": [65535, 0], "chance to": [65535, 0], "whitewash a": [65535, 0], "a fence": [65535, 0], "fence every": [65535, 0], "every day": [65535, 0], "day that": [65535, 0], "that put": [65535, 0], "the thing": [43635, 21900], "thing in": [65535, 0], "new light": [65535, 0], "light ben": [65535, 0], "ben stopped": [65535, 0], "stopped nibbling": [65535, 0], "nibbling his": [65535, 0], "his apple": [65535, 0], "apple tom": [65535, 0], "tom swept": [65535, 0], "swept his": [65535, 0], "brush daintily": [65535, 0], "daintily back": [65535, 0], "and forth": [65535, 0], "forth stepped": [65535, 0], "stepped back": [65535, 0], "back to": [65535, 0], "to note": [65535, 0], "note the": [65535, 0], "the effect": [43635, 21900], "effect added": [65535, 0], "added a": [65535, 0], "a touch": [65535, 0], "touch here": [65535, 0], "here and": [16338, 49197], "and there": [32706, 32829], "there criticised": [65535, 0], "criticised the": [65535, 0], "effect again": [65535, 0], "again ben": [65535, 0], "ben watching": [65535, 0], "watching every": [65535, 0], "every move": [65535, 0], "move and": [65535, 0], "and getting": [65535, 0], "getting more": [65535, 0], "more and": [65535, 0], "and more": [49105, 16430], "more interested": [65535, 0], "interested more": [65535, 0], "more absorbed": [65535, 0], "absorbed presently": [65535, 0], "tom let": [65535, 0], "me whitewash": [65535, 0], "little tom": [65535, 0], "tom considered": [65535, 0], "considered was": [65535, 0], "to consent": [65535, 0], "consent but": [65535, 0], "he altered": [65535, 0], "altered his": [65535, 0], "mind no": [65535, 0], "no no": [32706, 32829], "reckon it": [65535, 0], "it wouldn't": [65535, 0], "wouldn't hardly": [65535, 0], "hardly do": [65535, 0], "do ben": [65535, 0], "ben you": [65535, 0], "see aunt": [65535, 0], "aunt polly's": [65535, 0], "polly's awful": [65535, 0], "awful particular": [65535, 0], "particular about": [65535, 0], "about this": [65535, 0], "this fence": [65535, 0], "fence right": [65535, 0], "right here": [65535, 0], "here on": [65535, 0], "street you": [65535, 0], "know but": [65535, 0], "but if": [39262, 26273], "back fence": [65535, 0], "fence i": [65535, 0], "wouldn't mind": [65535, 0], "mind and": [65535, 0], "she wouldn't": [65535, 0], "wouldn't yes": [65535, 0], "yes she's": [65535, 0], "she's awful": [65535, 0], "fence it's": [65535, 0], "it's got": [65535, 0], "be done": [65535, 0], "done very": [65535, 0], "very careful": [65535, 0], "careful i": [65535, 0], "reckon there": [65535, 0], "there ain't": [65535, 0], "ain't one": [65535, 0], "one boy": [65535, 0], "thousand maybe": [65535, 0], "two thousand": [65535, 0], "thousand that": [65535, 0], "that can": [21790, 43745], "can do": [65535, 0], "do it": [61425, 4110], "way it's": [65535, 0], "so oh": [65535, 0], "now lemme": [65535, 0], "lemme just": [65535, 0], "just try": [65535, 0], "try only": [65535, 0], "only just": [65535, 0], "just a": [65535, 0], "little i'd": [65535, 0], "i'd let": [65535, 0], "let you": [65535, 0], "you if": [65535, 0], "you was": [65535, 0], "was me": [65535, 0], "tom ben": [65535, 0], "ben i'd": [65535, 0], "to honest": [65535, 0], "honest injun": [65535, 0], "injun but": [65535, 0], "but aunt": [65535, 0], "polly well": [65535, 0], "well jim": [65535, 0], "jim wanted": [65535, 0], "wouldn't let": [65535, 0], "let him": [19609, 45926], "him sid": [65535, 0], "sid wanted": [65535, 0], "let sid": [65535, 0], "sid now": [65535, 0], "how i'm": [65535, 0], "i'm fixed": [65535, 0], "fixed if": [65535, 0], "to tackle": [65535, 0], "tackle this": [65535, 0], "and anything": [65535, 0], "anything was": [65535, 0], "to happen": [65535, 0], "happen to": [65535, 0], "it oh": [65535, 0], "oh shucks": [65535, 0], "shucks i'll": [65535, 0], "i'll be": [65535, 0], "be just": [65535, 0], "as careful": [65535, 0], "careful now": [65535, 0], "lemme try": [65535, 0], "try say": [65535, 0], "say i'll": [65535, 0], "the core": [65535, 0], "core of": [65535, 0], "my apple": [65535, 0], "apple well": [65535, 0], "well here": [65535, 0], "here no": [65535, 0], "no ben": [65535, 0], "ben now": [65535, 0], "don't i'm": [65535, 0], "i'm afeard": [65535, 0], "afeard i'll": [65535, 0], "you all": [43635, 21900], "all of": [65535, 0], "tom gave": [65535, 0], "brush with": [65535, 0], "with reluctance": [65535, 0], "reluctance in": [65535, 0], "face but": [52389, 13146], "but alacrity": [65535, 0], "alacrity in": [65535, 0], "and while": [65535, 0], "the late": [65535, 0], "late steamer": [65535, 0], "steamer big": [65535, 0], "missouri worked": [65535, 0], "worked and": [65535, 0], "and sweated": [65535, 0], "sweated in": [65535, 0], "the sun": [65535, 0], "sun the": [65535, 0], "the retired": [65535, 0], "retired artist": [65535, 0], "artist sat": [65535, 0], "sat on": [65535, 0], "a barrel": [65535, 0], "barrel in": [65535, 0], "the shade": [65535, 0], "shade close": [65535, 0], "close by": [65535, 0], "by dangled": [65535, 0], "dangled his": [65535, 0], "his legs": [65535, 0], "legs munched": [65535, 0], "munched his": [65535, 0], "and planned": [65535, 0], "planned the": [65535, 0], "slaughter of": [65535, 0], "of more": [21790, 43745], "more innocents": [65535, 0], "innocents there": [65535, 0], "no lack": [65535, 0], "lack of": [65535, 0], "of material": [65535, 0], "material boys": [65535, 0], "boys happened": [65535, 0], "happened along": [65535, 0], "along every": [65535, 0], "every little": [65535, 0], "while they": [65535, 0], "they came": [49105, 16430], "came to": [21790, 43745], "to jeer": [65535, 0], "jeer but": [65535, 0], "but remained": [65535, 0], "remained to": [65535, 0], "whitewash by": [65535, 0], "the time": [49105, 16430], "time ben": [65535, 0], "ben was": [65535, 0], "was fagged": [65535, 0], "fagged out": [65535, 0], "out tom": [65535, 0], "had traded": [65535, 0], "traded the": [65535, 0], "the next": [65535, 0], "next chance": [65535, 0], "to billy": [65535, 0], "billy fisher": [65535, 0], "fisher for": [65535, 0], "a kite": [65535, 0], "kite in": [65535, 0], "in good": [16338, 49197], "good repair": [65535, 0], "repair and": [65535, 0], "played out": [65535, 0], "out johnny": [65535, 0], "johnny miller": [65535, 0], "miller bought": [65535, 0], "bought in": [65535, 0], "in for": [65535, 0], "dead rat": [65535, 0], "rat and": [65535, 0], "a string": [65535, 0], "string to": [65535, 0], "to swing": [65535, 0], "swing it": [65535, 0], "with and": [65535, 0], "so on": [65535, 0], "on and": [65535, 0], "on hour": [65535, 0], "hour after": [65535, 0], "after hour": [65535, 0], "the afternoon": [65535, 0], "afternoon came": [65535, 0], "came from": [21790, 43745], "from being": [65535, 0], "being a": [32706, 32829], "a poor": [65535, 0], "poor poverty": [65535, 0], "poverty stricken": [65535, 0], "stricken boy": [65535, 0], "morning tom": [65535, 0], "was literally": [65535, 0], "literally rolling": [65535, 0], "rolling in": [65535, 0], "in wealth": [65535, 0], "wealth he": [65535, 0], "had besides": [65535, 0], "besides the": [65535, 0], "the things": [65535, 0], "things before": [65535, 0], "before mentioned": [65535, 0], "mentioned twelve": [65535, 0], "twelve marbles": [65535, 0], "marbles part": [65535, 0], "a jews": [65535, 0], "jews harp": [65535, 0], "harp a": [65535, 0], "a piece": [65535, 0], "of blue": [65535, 0], "blue bottle": [65535, 0], "bottle glass": [65535, 0], "glass to": [65535, 0], "to look": [65535, 0], "look through": [65535, 0], "through a": [65535, 0], "a spool": [65535, 0], "spool cannon": [65535, 0], "cannon a": [65535, 0], "a key": [65535, 0], "key that": [65535, 0], "wouldn't unlock": [65535, 0], "unlock anything": [65535, 0], "anything a": [65535, 0], "a fragment": [65535, 0], "fragment of": [65535, 0], "of chalk": [65535, 0], "chalk a": [65535, 0], "a glass": [65535, 0], "glass stopper": [65535, 0], "stopper of": [65535, 0], "a decanter": [65535, 0], "decanter a": [65535, 0], "tin soldier": [65535, 0], "soldier a": [65535, 0], "of tadpoles": [65535, 0], "tadpoles six": [65535, 0], "six fire": [65535, 0], "fire crackers": [65535, 0], "crackers a": [65535, 0], "a kitten": [65535, 0], "kitten with": [65535, 0], "with only": [65535, 0], "only one": [65535, 0], "eye a": [65535, 0], "a brass": [65535, 0], "brass doorknob": [65535, 0], "doorknob a": [65535, 0], "a dog": [65535, 0], "dog collar": [65535, 0], "collar but": [65535, 0], "but no": [65535, 0], "no dog": [65535, 0], "dog the": [65535, 0], "the handle": [65535, 0], "handle of": [65535, 0], "a knife": [65535, 0], "knife four": [65535, 0], "four pieces": [65535, 0], "pieces of": [65535, 0], "of orange": [65535, 0], "orange peel": [65535, 0], "peel and": [65535, 0], "a dilapidated": [65535, 0], "dilapidated old": [65535, 0], "old window": [65535, 0], "sash he": [65535, 0], "a nice": [65535, 0], "nice good": [65535, 0], "good idle": [65535, 0], "idle time": [65535, 0], "time all": [65535, 0], "the while": [43635, 21900], "while plenty": [65535, 0], "plenty of": [65535, 0], "of company": [65535, 0], "company and": [65535, 0], "fence had": [65535, 0], "had three": [65535, 0], "three coats": [65535, 0], "coats of": [65535, 0], "whitewash on": [65535, 0], "he hadn't": [65535, 0], "hadn't run": [65535, 0], "run out": [65535, 0], "whitewash he": [65535, 0], "would have": [65535, 0], "have bankrupted": [65535, 0], "bankrupted every": [65535, 0], "village tom": [65535, 0], "not such": [65535, 0], "a hollow": [65535, 0], "hollow world": [65535, 0], "world after": [65535, 0], "after all": [65535, 0], "all he": [65535, 0], "had discovered": [65535, 0], "discovered a": [65535, 0], "great law": [65535, 0], "law of": [65535, 0], "of human": [65535, 0], "human action": [65535, 0], "action without": [65535, 0], "without knowing": [65535, 0], "knowing it": [65535, 0], "it namely": [65535, 0], "namely that": [65535, 0], "that in": [28026, 37509], "order to": [65535, 0], "man or": [32706, 32829], "or a": [65535, 0], "boy covet": [65535, 0], "covet a": [65535, 0], "is only": [65535, 0], "only necessary": [65535, 0], "necessary to": [65535, 0], "make the": [65535, 0], "thing difficult": [65535, 0], "difficult to": [65535, 0], "to attain": [65535, 0], "attain if": [65535, 0], "great and": [65535, 0], "and wise": [65535, 0], "wise philosopher": [65535, 0], "philosopher like": [65535, 0], "the writer": [65535, 0], "writer of": [65535, 0], "book he": [65535, 0], "would now": [65535, 0], "now have": [65535, 0], "have comprehended": [65535, 0], "comprehended that": [65535, 0], "work consists": [65535, 0], "consists of": [65535, 0], "of whatever": [65535, 0], "whatever a": [65535, 0], "body is": [65535, 0], "is obliged": [65535, 0], "obliged to": [65535, 0], "do and": [43635, 21900], "that play": [65535, 0], "play consists": [65535, 0], "is not": [24518, 41017], "not obliged": [65535, 0], "and this": [24518, 41017], "this would": [65535, 0], "would help": [65535, 0], "help him": [65535, 0], "to understand": [65535, 0], "understand why": [65535, 0], "why constructing": [65535, 0], "constructing artificial": [65535, 0], "artificial flowers": [65535, 0], "flowers or": [65535, 0], "or performing": [65535, 0], "performing on": [65535, 0], "a tread": [65535, 0], "tread mill": [65535, 0], "mill is": [65535, 0], "is work": [65535, 0], "work while": [65535, 0], "while rolling": [65535, 0], "rolling ten": [65535, 0], "ten pins": [65535, 0], "pins or": [65535, 0], "or climbing": [65535, 0], "climbing mont": [65535, 0], "mont blanc": [65535, 0], "blanc is": [65535, 0], "only amusement": [65535, 0], "amusement there": [65535, 0], "there are": [65535, 0], "are wealthy": [65535, 0], "wealthy gentlemen": [65535, 0], "gentlemen in": [65535, 0], "in england": [65535, 0], "england who": [65535, 0], "who drive": [65535, 0], "drive four": [65535, 0], "four horse": [65535, 0], "horse passenger": [65535, 0], "passenger coaches": [65535, 0], "coaches twenty": [65535, 0], "twenty or": [65535, 0], "or thirty": [65535, 0], "thirty miles": [65535, 0], "miles on": [65535, 0], "a daily": [65535, 0], "daily line": [65535, 0], "line in": [65535, 0], "summer because": [65535, 0], "the privilege": [65535, 0], "privilege costs": [65535, 0], "costs them": [65535, 0], "them considerable": [65535, 0], "considerable money": [65535, 0], "money but": [65535, 0], "were offered": [65535, 0], "offered wages": [65535, 0], "wages for": [65535, 0], "the service": [65535, 0], "service that": [65535, 0], "would turn": [65535, 0], "turn it": [65535, 0], "it into": [65535, 0], "into work": [65535, 0], "then they": [32706, 32829], "would resign": [65535, 0], "resign the": [65535, 0], "boy mused": [65535, 0], "mused awhile": [65535, 0], "awhile over": [65535, 0], "the substantial": [65535, 0], "substantial change": [65535, 0], "change which": [65535, 0], "which had": [65535, 0], "had taken": [65535, 0], "taken place": [65535, 0], "worldly circumstances": [65535, 0], "circumstances and": [65535, 0], "then wended": [65535, 0], "wended toward": [65535, 0], "toward headquarters": [65535, 0], "headquarters to": [65535, 0], "to report": [65535, 0], "saturday morning was": [65535, 0], "morning was come": [65535, 0], "was come and": [65535, 0], "come and all": [65535, 0], "and all the": [32706, 32829], "all the summer": [65535, 0], "the summer world": [65535, 0], "summer world was": [65535, 0], "world was bright": [65535, 0], "was bright and": [65535, 0], "bright and fresh": [65535, 0], "and fresh and": [65535, 0], "fresh and brimming": [65535, 0], "and brimming with": [65535, 0], "brimming with life": [65535, 0], "with life there": [65535, 0], "life there was": [65535, 0], "was a song": [65535, 0], "a song in": [65535, 0], "song in every": [65535, 0], "in every heart": [65535, 0], "every heart and": [65535, 0], "heart and if": [65535, 0], "and if the": [32706, 32829], "if the heart": [65535, 0], "the heart was": [65535, 0], "heart was young": [65535, 0], "was young the": [65535, 0], "young the music": [65535, 0], "the music issued": [65535, 0], "music issued at": [65535, 0], "issued at the": [65535, 0], "at the lips": [65535, 0], "the lips there": [65535, 0], "lips there was": [65535, 0], "there was cheer": [65535, 0], "was cheer in": [65535, 0], "cheer in every": [65535, 0], "in every face": [65535, 0], "every face and": [65535, 0], "face and a": [65535, 0], "and a spring": [65535, 0], "a spring in": [65535, 0], "spring in every": [65535, 0], "in every step": [65535, 0], "every step the": [65535, 0], "step the locust": [65535, 0], "the locust trees": [65535, 0], "locust trees were": [65535, 0], "trees were in": [65535, 0], "were in bloom": [65535, 0], "in bloom and": [65535, 0], "bloom and the": [65535, 0], "and the fragrance": [65535, 0], "the fragrance of": [65535, 0], "fragrance of the": [65535, 0], "of the blossoms": [65535, 0], "the blossoms filled": [65535, 0], "blossoms filled the": [65535, 0], "filled the air": [65535, 0], "the air cardiff": [65535, 0], "air cardiff hill": [65535, 0], "cardiff hill beyond": [65535, 0], "hill beyond the": [65535, 0], "beyond the village": [65535, 0], "the village and": [65535, 0], "village and above": [65535, 0], "and above it": [65535, 0], "above it was": [65535, 0], "it was green": [65535, 0], "was green with": [65535, 0], "green with vegetation": [65535, 0], "with vegetation and": [65535, 0], "vegetation and it": [65535, 0], "and it lay": [65535, 0], "it lay just": [65535, 0], "lay just far": [65535, 0], "just far enough": [65535, 0], "far enough away": [65535, 0], "enough away to": [65535, 0], "away to seem": [65535, 0], "to seem a": [65535, 0], "seem a delectable": [65535, 0], "a delectable land": [65535, 0], "delectable land dreamy": [65535, 0], "land dreamy reposeful": [65535, 0], "dreamy reposeful and": [65535, 0], "reposeful and inviting": [65535, 0], "and inviting tom": [65535, 0], "inviting tom appeared": [65535, 0], "tom appeared on": [65535, 0], "appeared on the": [65535, 0], "on the sidewalk": [65535, 0], "the sidewalk with": [65535, 0], "sidewalk with a": [65535, 0], "with a bucket": [65535, 0], "a bucket of": [65535, 0], "bucket of whitewash": [65535, 0], "of whitewash and": [65535, 0], "whitewash and a": [65535, 0], "and a long": [65535, 0], "a long handled": [65535, 0], "long handled brush": [65535, 0], "handled brush he": [65535, 0], "brush he surveyed": [65535, 0], "surveyed the fence": [65535, 0], "the fence and": [65535, 0], "fence and all": [65535, 0], "and all gladness": [65535, 0], "all gladness left": [65535, 0], "gladness left him": [65535, 0], "left him and": [32706, 32829], "him and a": [65535, 0], "and a deep": [65535, 0], "a deep melancholy": [65535, 0], "deep melancholy settled": [65535, 0], "melancholy settled down": [65535, 0], "settled down upon": [65535, 0], "down upon his": [65535, 0], "upon his spirit": [65535, 0], "his spirit thirty": [65535, 0], "spirit thirty yards": [65535, 0], "thirty yards of": [65535, 0], "yards of board": [65535, 0], "of board fence": [65535, 0], "board fence nine": [65535, 0], "fence nine feet": [65535, 0], "nine feet high": [65535, 0], "feet high life": [65535, 0], "high life to": [65535, 0], "life to him": [65535, 0], "to him seemed": [65535, 0], "him seemed hollow": [65535, 0], "seemed hollow and": [65535, 0], "hollow and existence": [65535, 0], "and existence but": [65535, 0], "existence but a": [65535, 0], "but a burden": [65535, 0], "a burden sighing": [65535, 0], "burden sighing he": [65535, 0], "sighing he dipped": [65535, 0], "he dipped his": [65535, 0], "dipped his brush": [65535, 0], "his brush and": [65535, 0], "brush and passed": [65535, 0], "and passed it": [65535, 0], "passed it along": [65535, 0], "it along the": [65535, 0], "along the topmost": [65535, 0], "the topmost plank": [65535, 0], "topmost plank repeated": [65535, 0], "plank repeated the": [65535, 0], "repeated the operation": [65535, 0], "the operation did": [65535, 0], "operation did it": [65535, 0], "did it again": [65535, 0], "it again compared": [65535, 0], "again compared the": [65535, 0], "compared the insignificant": [65535, 0], "the insignificant whitewashed": [65535, 0], "insignificant whitewashed streak": [65535, 0], "whitewashed streak with": [65535, 0], "streak with the": [65535, 0], "with the far": [65535, 0], "the far reaching": [65535, 0], "far reaching continent": [65535, 0], "reaching continent of": [65535, 0], "continent of unwhitewashed": [65535, 0], "of unwhitewashed fence": [65535, 0], "unwhitewashed fence and": [65535, 0], "fence and sat": [65535, 0], "down on a": [65535, 0], "on a tree": [65535, 0], "a tree box": [65535, 0], "tree box discouraged": [65535, 0], "box discouraged jim": [65535, 0], "discouraged jim came": [65535, 0], "jim came skipping": [65535, 0], "came skipping out": [65535, 0], "skipping out at": [65535, 0], "out at the": [65535, 0], "at the gate": [32706, 32829], "the gate with": [65535, 0], "gate with a": [65535, 0], "with a tin": [65535, 0], "a tin pail": [65535, 0], "tin pail and": [65535, 0], "pail and singing": [65535, 0], "and singing buffalo": [65535, 0], "singing buffalo gals": [65535, 0], "buffalo gals bringing": [65535, 0], "gals bringing water": [65535, 0], "bringing water from": [65535, 0], "water from the": [65535, 0], "from the town": [65535, 0], "the town pump": [65535, 0], "town pump had": [65535, 0], "pump had always": [65535, 0], "had always been": [65535, 0], "always been hateful": [65535, 0], "been hateful work": [65535, 0], "hateful work in": [65535, 0], "work in tom's": [65535, 0], "in tom's eyes": [65535, 0], "tom's eyes before": [65535, 0], "eyes before but": [65535, 0], "before but now": [65535, 0], "but now it": [65535, 0], "now it did": [65535, 0], "it did not": [65535, 0], "did not strike": [65535, 0], "not strike him": [65535, 0], "strike him so": [65535, 0], "so he remembered": [65535, 0], "he remembered that": [65535, 0], "remembered that there": [65535, 0], "there was company": [65535, 0], "was company at": [65535, 0], "company at the": [65535, 0], "at the pump": [65535, 0], "the pump white": [65535, 0], "pump white mulatto": [65535, 0], "white mulatto and": [65535, 0], "mulatto and negro": [65535, 0], "and negro boys": [65535, 0], "negro boys and": [65535, 0], "boys and girls": [65535, 0], "and girls were": [65535, 0], "girls were always": [65535, 0], "were always there": [65535, 0], "always there waiting": [65535, 0], "there waiting their": [65535, 0], "waiting their turns": [65535, 0], "their turns resting": [65535, 0], "turns resting trading": [65535, 0], "resting trading playthings": [65535, 0], "trading playthings quarrelling": [65535, 0], "playthings quarrelling fighting": [65535, 0], "quarrelling fighting skylarking": [65535, 0], "fighting skylarking and": [65535, 0], "skylarking and he": [65535, 0], "and he remembered": [65535, 0], "remembered that although": [65535, 0], "that although the": [65535, 0], "although the pump": [65535, 0], "the pump was": [65535, 0], "pump was only": [65535, 0], "was only a": [65535, 0], "only a hundred": [65535, 0], "a hundred and": [65535, 0], "hundred and fifty": [65535, 0], "and fifty yards": [65535, 0], "fifty yards off": [65535, 0], "yards off jim": [65535, 0], "off jim never": [65535, 0], "jim never got": [65535, 0], "never got back": [65535, 0], "got back with": [65535, 0], "back with a": [65535, 0], "bucket of water": [65535, 0], "of water under": [65535, 0], "water under an": [65535, 0], "under an hour": [65535, 0], "an hour and": [65535, 0], "hour and even": [65535, 0], "and even then": [65535, 0], "even then somebody": [65535, 0], "then somebody generally": [65535, 0], "somebody generally had": [65535, 0], "generally had to": [65535, 0], "had to go": [65535, 0], "to go after": [65535, 0], "go after him": [65535, 0], "after him tom": [65535, 0], "him tom said": [65535, 0], "tom said say": [65535, 0], "said say jim": [65535, 0], "say jim i'll": [65535, 0], "jim i'll fetch": [65535, 0], "i'll fetch the": [65535, 0], "fetch the water": [65535, 0], "the water if": [65535, 0], "water if you'll": [65535, 0], "if you'll whitewash": [65535, 0], "you'll whitewash some": [65535, 0], "whitewash some jim": [65535, 0], "some jim shook": [65535, 0], "jim shook his": [65535, 0], "shook his head": [65535, 0], "his head and": [65535, 0], "head and said": [65535, 0], "and said can't": [65535, 0], "said can't mars": [65535, 0], "can't mars tom": [65535, 0], "mars tom ole": [65535, 0], "tom ole missis": [65535, 0], "ole missis she": [65535, 0], "missis she tole": [65535, 0], "she tole me": [65535, 0], "tole me i": [65535, 0], "me i got": [65535, 0], "i got to": [65535, 0], "to go an'": [65535, 0], "go an' git": [65535, 0], "an' git dis": [65535, 0], "git dis water": [65535, 0], "dis water an'": [65535, 0], "water an' not": [65535, 0], "an' not stop": [65535, 0], "not stop foolin'": [65535, 0], "stop foolin' roun'": [65535, 0], "foolin' roun' wid": [65535, 0], "roun' wid anybody": [65535, 0], "wid anybody she": [65535, 0], "anybody she say": [65535, 0], "she say she": [65535, 0], "say she spec'": [65535, 0], "she spec' mars": [65535, 0], "spec' mars tom": [65535, 0], "mars tom gwine": [65535, 0], "tom gwine to": [65535, 0], "gwine to ax": [65535, 0], "to ax me": [65535, 0], "ax me to": [65535, 0], "me to whitewash": [65535, 0], "to whitewash an'": [65535, 0], "whitewash an' so": [65535, 0], "an' so she": [65535, 0], "so she tole": [65535, 0], "tole me go": [65535, 0], "me go 'long": [65535, 0], "go 'long an'": [65535, 0], "'long an' 'tend": [65535, 0], "an' 'tend to": [65535, 0], "'tend to my": [65535, 0], "to my own": [65535, 0], "my own business": [65535, 0], "own business she": [65535, 0], "business she 'lowed": [65535, 0], "she 'lowed she'd": [65535, 0], "'lowed she'd 'tend": [65535, 0], "she'd 'tend to": [65535, 0], "'tend to de": [65535, 0], "to de whitewashin'": [65535, 0], "de whitewashin' oh": [65535, 0], "whitewashin' oh never": [65535, 0], "oh never you": [65535, 0], "never you mind": [65535, 0], "you mind what": [65535, 0], "mind what she": [65535, 0], "what she said": [65535, 0], "she said jim": [65535, 0], "said jim that's": [65535, 0], "jim that's the": [65535, 0], "the way she": [65535, 0], "way she always": [65535, 0], "she always talks": [65535, 0], "always talks gimme": [65535, 0], "talks gimme the": [65535, 0], "gimme the bucket": [65535, 0], "the bucket i": [65535, 0], "bucket i won't": [65535, 0], "i won't be": [65535, 0], "won't be gone": [65535, 0], "be gone only": [65535, 0], "gone only a": [65535, 0], "only a minute": [65535, 0], "a minute she": [65535, 0], "minute she won't": [65535, 0], "she won't ever": [65535, 0], "won't ever know": [65535, 0], "ever know oh": [65535, 0], "know oh i": [65535, 0], "oh i dasn't": [65535, 0], "i dasn't mars": [65535, 0], "dasn't mars tom": [65535, 0], "ole missis she'd": [65535, 0], "missis she'd take": [65535, 0], "she'd take an'": [65535, 0], "take an' tar": [65535, 0], "an' tar de": [65535, 0], "tar de head": [65535, 0], "de head off'n": [65535, 0], "head off'n me": [65535, 0], "off'n me 'deed": [65535, 0], "me 'deed she": [65535, 0], "'deed she would": [65535, 0], "she would she": [65535, 0], "would she she": [65535, 0], "she she never": [65535, 0], "she never licks": [65535, 0], "never licks anybody": [65535, 0], "licks anybody whacks": [65535, 0], "anybody whacks 'em": [65535, 0], "whacks 'em over": [65535, 0], "'em over the": [65535, 0], "over the head": [65535, 0], "the head with": [65535, 0], "head with her": [65535, 0], "with her thimble": [65535, 0], "her thimble and": [65535, 0], "thimble and who": [65535, 0], "and who cares": [65535, 0], "who cares for": [65535, 0], "cares for that": [65535, 0], "for that i'd": [65535, 0], "that i'd like": [65535, 0], "i'd like to": [65535, 0], "like to know": [65535, 0], "to know she": [65535, 0], "know she talks": [65535, 0], "she talks awful": [65535, 0], "talks awful but": [65535, 0], "awful but talk": [65535, 0], "but talk don't": [65535, 0], "talk don't hurt": [65535, 0], "don't hurt anyways": [65535, 0], "hurt anyways it": [65535, 0], "anyways it don't": [65535, 0], "it don't if": [65535, 0], "don't if she": [65535, 0], "if she don't": [65535, 0], "she don't cry": [65535, 0], "don't cry jim": [65535, 0], "cry jim i'll": [65535, 0], "jim i'll give": [65535, 0], "give you a": [65535, 0], "you a marvel": [65535, 0], "a marvel i'll": [65535, 0], "marvel i'll give": [65535, 0], "you a white": [65535, 0], "a white alley": [65535, 0], "white alley jim": [65535, 0], "alley jim began": [65535, 0], "jim began to": [65535, 0], "began to waver": [65535, 0], "to waver white": [65535, 0], "waver white alley": [65535, 0], "alley jim and": [65535, 0], "jim and it's": [65535, 0], "and it's a": [65535, 0], "it's a bully": [65535, 0], "a bully taw": [65535, 0], "bully taw my": [65535, 0], "taw my dat's": [65535, 0], "my dat's a": [65535, 0], "dat's a mighty": [65535, 0], "a mighty gay": [65535, 0], "mighty gay marvel": [65535, 0], "gay marvel i": [65535, 0], "marvel i tell": [65535, 0], "i tell you": [21790, 43745], "tell you but": [65535, 0], "you but mars": [65535, 0], "but mars tom": [65535, 0], "mars tom i's": [65535, 0], "tom i's powerful": [65535, 0], "i's powerful 'fraid": [65535, 0], "powerful 'fraid ole": [65535, 0], "'fraid ole missis": [65535, 0], "ole missis and": [65535, 0], "missis and besides": [65535, 0], "and besides if": [65535, 0], "besides if you": [65535, 0], "you will i'll": [65535, 0], "will i'll show": [65535, 0], "i'll show you": [65535, 0], "show you my": [65535, 0], "you my sore": [65535, 0], "my sore toe": [65535, 0], "sore toe jim": [65535, 0], "toe jim was": [65535, 0], "jim was only": [65535, 0], "was only human": [65535, 0], "only human this": [65535, 0], "human this attraction": [65535, 0], "this attraction was": [65535, 0], "attraction was too": [65535, 0], "was too much": [65535, 0], "too much for": [65535, 0], "much for him": [65535, 0], "for him he": [32706, 32829], "him he put": [65535, 0], "he put down": [65535, 0], "put down his": [65535, 0], "down his pail": [65535, 0], "his pail took": [65535, 0], "pail took the": [65535, 0], "took the white": [65535, 0], "the white alley": [65535, 0], "white alley and": [65535, 0], "alley and bent": [65535, 0], "and bent over": [65535, 0], "bent over the": [65535, 0], "over the toe": [65535, 0], "the toe with": [65535, 0], "toe with absorbing": [65535, 0], "with absorbing interest": [65535, 0], "absorbing interest while": [65535, 0], "interest while the": [65535, 0], "while the bandage": [65535, 0], "the bandage was": [65535, 0], "bandage was being": [65535, 0], "was being unwound": [65535, 0], "being unwound in": [65535, 0], "unwound in another": [65535, 0], "in another moment": [65535, 0], "another moment he": [65535, 0], "moment he was": [65535, 0], "he was flying": [65535, 0], "was flying down": [65535, 0], "flying down the": [65535, 0], "down the street": [65535, 0], "the street with": [65535, 0], "street with his": [65535, 0], "with his pail": [65535, 0], "his pail and": [65535, 0], "pail and a": [65535, 0], "and a tingling": [65535, 0], "a tingling rear": [65535, 0], "tingling rear tom": [65535, 0], "rear tom was": [65535, 0], "tom was whitewashing": [65535, 0], "was whitewashing with": [65535, 0], "whitewashing with vigor": [65535, 0], "with vigor and": [65535, 0], "vigor and aunt": [65535, 0], "and aunt polly": [65535, 0], "aunt polly was": [65535, 0], "polly was retiring": [65535, 0], "was retiring from": [65535, 0], "retiring from the": [65535, 0], "from the field": [65535, 0], "the field with": [65535, 0], "field with a": [65535, 0], "with a slipper": [65535, 0], "a slipper in": [65535, 0], "slipper in her": [65535, 0], "in her hand": [65535, 0], "her hand and": [65535, 0], "hand and triumph": [65535, 0], "and triumph in": [65535, 0], "triumph in her": [65535, 0], "in her eye": [65535, 0], "her eye but": [65535, 0], "eye but tom's": [65535, 0], "but tom's energy": [65535, 0], "tom's energy did": [65535, 0], "energy did not": [65535, 0], "did not last": [65535, 0], "not last he": [65535, 0], "last he began": [65535, 0], "began to think": [65535, 0], "to think of": [65535, 0], "think of the": [65535, 0], "of the fun": [65535, 0], "the fun he": [65535, 0], "fun he had": [65535, 0], "he had planned": [65535, 0], "had planned for": [65535, 0], "planned for this": [65535, 0], "for this day": [65535, 0], "this day and": [65535, 0], "day and his": [65535, 0], "and his sorrows": [65535, 0], "his sorrows multiplied": [65535, 0], "sorrows multiplied soon": [65535, 0], "multiplied soon the": [65535, 0], "soon the free": [65535, 0], "the free boys": [65535, 0], "free boys would": [65535, 0], "boys would come": [65535, 0], "would come tripping": [65535, 0], "come tripping along": [65535, 0], "tripping along on": [65535, 0], "along on all": [65535, 0], "on all sorts": [65535, 0], "all sorts of": [65535, 0], "sorts of delicious": [65535, 0], "of delicious expeditions": [65535, 0], "delicious expeditions and": [65535, 0], "expeditions and they": [65535, 0], "and they would": [65535, 0], "they would make": [65535, 0], "would make a": [32706, 32829], "make a world": [65535, 0], "a world of": [65535, 0], "world of fun": [65535, 0], "of fun of": [65535, 0], "fun of him": [65535, 0], "of him for": [65535, 0], "him for having": [65535, 0], "for having to": [65535, 0], "having to work": [65535, 0], "to work the": [65535, 0], "work the very": [65535, 0], "the very thought": [65535, 0], "very thought of": [65535, 0], "thought of it": [65535, 0], "of it burnt": [65535, 0], "it burnt him": [65535, 0], "burnt him like": [65535, 0], "him like fire": [65535, 0], "like fire he": [65535, 0], "fire he got": [65535, 0], "he got out": [65535, 0], "got out his": [65535, 0], "out his worldly": [65535, 0], "his worldly wealth": [65535, 0], "worldly wealth and": [65535, 0], "wealth and examined": [65535, 0], "and examined it": [65535, 0], "examined it bits": [65535, 0], "it bits of": [65535, 0], "bits of toys": [65535, 0], "of toys marbles": [65535, 0], "toys marbles and": [65535, 0], "marbles and trash": [65535, 0], "and trash enough": [65535, 0], "trash enough to": [65535, 0], "enough to buy": [65535, 0], "to buy an": [65535, 0], "buy an exchange": [65535, 0], "an exchange of": [65535, 0], "exchange of work": [65535, 0], "of work maybe": [65535, 0], "work maybe but": [65535, 0], "maybe but not": [65535, 0], "but not half": [65535, 0], "not half enough": [65535, 0], "half enough to": [65535, 0], "to buy so": [65535, 0], "buy so much": [65535, 0], "so much as": [65535, 0], "much as half": [65535, 0], "as half an": [65535, 0], "half an hour": [65535, 0], "an hour of": [65535, 0], "hour of pure": [65535, 0], "of pure freedom": [65535, 0], "pure freedom so": [65535, 0], "freedom so he": [65535, 0], "so he returned": [65535, 0], "he returned his": [65535, 0], "returned his straitened": [65535, 0], "his straitened means": [65535, 0], "straitened means to": [65535, 0], "means to his": [65535, 0], "to his pocket": [65535, 0], "his pocket and": [65535, 0], "pocket and gave": [65535, 0], "and gave up": [65535, 0], "gave up the": [65535, 0], "up the idea": [65535, 0], "the idea of": [65535, 0], "idea of trying": [65535, 0], "of trying to": [65535, 0], "trying to buy": [65535, 0], "to buy the": [65535, 0], "buy the boys": [65535, 0], "the boys at": [65535, 0], "boys at this": [65535, 0], "at this dark": [65535, 0], "this dark and": [65535, 0], "dark and hopeless": [65535, 0], "and hopeless moment": [65535, 0], "hopeless moment an": [65535, 0], "moment an inspiration": [65535, 0], "an inspiration burst": [65535, 0], "inspiration burst upon": [65535, 0], "burst upon him": [65535, 0], "upon him nothing": [65535, 0], "him nothing less": [65535, 0], "nothing less than": [65535, 0], "less than a": [65535, 0], "than a great": [65535, 0], "a great magnificent": [65535, 0], "great magnificent inspiration": [65535, 0], "magnificent inspiration he": [65535, 0], "inspiration he took": [65535, 0], "took up his": [65535, 0], "up his brush": [65535, 0], "brush and went": [65535, 0], "and went tranquilly": [65535, 0], "went tranquilly to": [65535, 0], "tranquilly to work": [65535, 0], "to work ben": [65535, 0], "work ben rogers": [65535, 0], "ben rogers hove": [65535, 0], "rogers hove in": [65535, 0], "hove in sight": [65535, 0], "in sight presently": [65535, 0], "sight presently the": [65535, 0], "presently the very": [65535, 0], "the very boy": [65535, 0], "very boy of": [65535, 0], "boy of all": [65535, 0], "of all boys": [65535, 0], "all boys whose": [65535, 0], "boys whose ridicule": [65535, 0], "whose ridicule he": [65535, 0], "ridicule he had": [65535, 0], "had been dreading": [65535, 0], "been dreading ben's": [65535, 0], "dreading ben's gait": [65535, 0], "ben's gait was": [65535, 0], "gait was the": [65535, 0], "was the hop": [65535, 0], "the hop skip": [65535, 0], "hop skip and": [65535, 0], "skip and jump": [65535, 0], "and jump proof": [65535, 0], "jump proof enough": [65535, 0], "proof enough that": [65535, 0], "enough that his": [65535, 0], "that his heart": [65535, 0], "heart was light": [65535, 0], "was light and": [65535, 0], "light and his": [65535, 0], "and his anticipations": [65535, 0], "his anticipations high": [65535, 0], "anticipations high he": [65535, 0], "high he was": [65535, 0], "he was eating": [65535, 0], "was eating an": [65535, 0], "eating an apple": [65535, 0], "an apple and": [65535, 0], "apple and giving": [65535, 0], "and giving a": [65535, 0], "giving a long": [65535, 0], "a long melodious": [65535, 0], "long melodious whoop": [65535, 0], "melodious whoop at": [65535, 0], "whoop at intervals": [65535, 0], "at intervals followed": [65535, 0], "intervals followed by": [65535, 0], "by a deep": [65535, 0], "a deep toned": [65535, 0], "deep toned ding": [65535, 0], "toned ding dong": [65535, 0], "ding dong dong": [65535, 0], "dong dong ding": [65535, 0], "dong ding dong": [65535, 0], "dong dong for": [65535, 0], "dong for he": [65535, 0], "he was personating": [65535, 0], "was personating a": [65535, 0], "personating a steamboat": [65535, 0], "a steamboat as": [65535, 0], "steamboat as he": [65535, 0], "as he drew": [65535, 0], "he drew near": [65535, 0], "drew near he": [65535, 0], "near he slackened": [65535, 0], "he slackened speed": [65535, 0], "slackened speed took": [65535, 0], "speed took the": [65535, 0], "took the middle": [65535, 0], "of the street": [65535, 0], "the street leaned": [65535, 0], "street leaned far": [65535, 0], "leaned far over": [65535, 0], "far over to": [65535, 0], "over to starboard": [65535, 0], "to starboard and": [65535, 0], "starboard and rounded": [65535, 0], "and rounded to": [65535, 0], "rounded to ponderously": [65535, 0], "to ponderously and": [65535, 0], "ponderously and with": [65535, 0], "and with laborious": [65535, 0], "with laborious pomp": [65535, 0], "laborious pomp and": [65535, 0], "pomp and circumstance": [65535, 0], "and circumstance for": [65535, 0], "circumstance for he": [65535, 0], "was personating the": [65535, 0], "personating the big": [65535, 0], "the big missouri": [65535, 0], "big missouri and": [65535, 0], "missouri and considered": [65535, 0], "and considered himself": [65535, 0], "considered himself to": [65535, 0], "himself to be": [65535, 0], "to be drawing": [65535, 0], "be drawing nine": [65535, 0], "drawing nine feet": [65535, 0], "nine feet of": [65535, 0], "feet of water": [65535, 0], "of water he": [65535, 0], "water he was": [65535, 0], "he was boat": [65535, 0], "was boat and": [65535, 0], "boat and captain": [65535, 0], "and captain and": [65535, 0], "captain and engine": [65535, 0], "and engine bells": [65535, 0], "engine bells combined": [65535, 0], "bells combined so": [65535, 0], "combined so he": [65535, 0], "so he had": [65535, 0], "he had to": [65535, 0], "had to imagine": [65535, 0], "to imagine himself": [65535, 0], "imagine himself standing": [65535, 0], "himself standing on": [65535, 0], "standing on his": [65535, 0], "on his own": [65535, 0], "his own hurricane": [65535, 0], "own hurricane deck": [65535, 0], "hurricane deck giving": [65535, 0], "deck giving the": [65535, 0], "giving the orders": [65535, 0], "the orders and": [65535, 0], "orders and executing": [65535, 0], "and executing them": [65535, 0], "executing them stop": [65535, 0], "them stop her": [65535, 0], "stop her sir": [65535, 0], "her sir ting": [65535, 0], "sir ting a": [65535, 0], "ting a ling": [65535, 0], "a ling ling": [65535, 0], "ling ling the": [65535, 0], "ling the headway": [65535, 0], "the headway ran": [65535, 0], "headway ran almost": [65535, 0], "ran almost out": [65535, 0], "almost out and": [65535, 0], "out and he": [65535, 0], "and he drew": [65535, 0], "he drew up": [65535, 0], "drew up slowly": [65535, 0], "up slowly toward": [65535, 0], "slowly toward the": [65535, 0], "toward the sidewalk": [65535, 0], "the sidewalk ship": [65535, 0], "sidewalk ship up": [65535, 0], "ship up to": [65535, 0], "up to back": [65535, 0], "to back ting": [65535, 0], "back ting a": [65535, 0], "ling ling his": [65535, 0], "ling his arms": [65535, 0], "his arms straightened": [65535, 0], "arms straightened and": [65535, 0], "straightened and stiffened": [65535, 0], "and stiffened down": [65535, 0], "stiffened down his": [65535, 0], "down his sides": [65535, 0], "his sides set": [65535, 0], "sides set her": [65535, 0], "set her back": [65535, 0], "her back on": [65535, 0], "back on the": [65535, 0], "on the stabboard": [65535, 0], "the stabboard ting": [65535, 0], "stabboard ting a": [65535, 0], "ling ling chow": [65535, 0], "ling chow ch": [65535, 0], "chow ch chow": [65535, 0], "ch chow wow": [65535, 0], "chow wow chow": [65535, 0], "wow chow his": [65535, 0], "chow his right": [65535, 0], "his right hand": [65535, 0], "right hand meantime": [65535, 0], "hand meantime describing": [65535, 0], "meantime describing stately": [65535, 0], "describing stately circles": [65535, 0], "stately circles for": [65535, 0], "circles for it": [65535, 0], "for it was": [65535, 0], "it was representing": [65535, 0], "was representing a": [65535, 0], "representing a forty": [65535, 0], "a forty foot": [65535, 0], "forty foot wheel": [65535, 0], "foot wheel let": [65535, 0], "wheel let her": [65535, 0], "let her go": [65535, 0], "her go back": [65535, 0], "go back on": [65535, 0], "on the labboard": [65535, 0], "the labboard ting": [65535, 0], "labboard ting a": [65535, 0], "ch chow chow": [65535, 0], "chow chow the": [65535, 0], "chow the left": [65535, 0], "the left hand": [65535, 0], "left hand began": [65535, 0], "began to describe": [65535, 0], "to describe circles": [65535, 0], "describe circles stop": [65535, 0], "circles stop the": [65535, 0], "stop the stabboard": [65535, 0], "ling ling stop": [65535, 0], "ling stop the": [65535, 0], "stop the labboard": [65535, 0], "the labboard come": [65535, 0], "labboard come ahead": [65535, 0], "come ahead on": [65535, 0], "ahead on the": [65535, 0], "the stabboard stop": [65535, 0], "stabboard stop her": [65535, 0], "stop her let": [65535, 0], "her let your": [65535, 0], "let your outside": [65535, 0], "your outside turn": [65535, 0], "outside turn over": [65535, 0], "turn over slow": [65535, 0], "over slow ting": [65535, 0], "slow ting a": [65535, 0], "ling chow ow": [65535, 0], "chow ow ow": [65535, 0], "ow ow get": [65535, 0], "ow get out": [65535, 0], "get out that": [65535, 0], "out that head": [65535, 0], "that head line": [65535, 0], "head line lively": [65535, 0], "line lively now": [65535, 0], "lively now come": [65535, 0], "now come out": [65535, 0], "come out with": [65535, 0], "out with your": [65535, 0], "with your spring": [65535, 0], "your spring line": [65535, 0], "spring line what're": [65535, 0], "line what're you": [65535, 0], "what're you about": [65535, 0], "you about there": [65535, 0], "about there take": [65535, 0], "there take a": [65535, 0], "take a turn": [65535, 0], "a turn round": [65535, 0], "turn round that": [65535, 0], "round that stump": [65535, 0], "that stump with": [65535, 0], "stump with the": [65535, 0], "with the bight": [65535, 0], "the bight of": [65535, 0], "bight of it": [65535, 0], "of it stand": [65535, 0], "it stand by": [65535, 0], "stand by that": [65535, 0], "by that stage": [65535, 0], "that stage now": [65535, 0], "stage now let": [65535, 0], "now let her": [65535, 0], "her go done": [65535, 0], "go done with": [65535, 0], "done with the": [65535, 0], "with the engines": [65535, 0], "the engines sir": [65535, 0], "engines sir ting": [65535, 0], "ling ling sh't": [65535, 0], "ling sh't s'h't": [65535, 0], "sh't s'h't sh't": [65535, 0], "s'h't sh't trying": [65535, 0], "sh't trying the": [65535, 0], "trying the gauge": [65535, 0], "the gauge cocks": [65535, 0], "gauge cocks tom": [65535, 0], "cocks tom went": [65535, 0], "went on whitewashing": [65535, 0], "on whitewashing paid": [65535, 0], "whitewashing paid no": [65535, 0], "paid no attention": [65535, 0], "no attention to": [65535, 0], "attention to the": [65535, 0], "to the steamboat": [65535, 0], "the steamboat ben": [65535, 0], "steamboat ben stared": [65535, 0], "ben stared a": [65535, 0], "stared a moment": [65535, 0], "a moment and": [65535, 0], "moment and then": [65535, 0], "and then said": [65535, 0], "then said hi": [65535, 0], "said hi yi": [65535, 0], "hi yi you're": [65535, 0], "yi you're up": [65535, 0], "you're up a": [65535, 0], "up a stump": [65535, 0], "a stump ain't": [65535, 0], "stump ain't you": [65535, 0], "ain't you no": [65535, 0], "you no answer": [65535, 0], "no answer tom": [65535, 0], "answer tom surveyed": [65535, 0], "tom surveyed his": [65535, 0], "surveyed his last": [65535, 0], "his last touch": [65535, 0], "last touch with": [65535, 0], "touch with the": [65535, 0], "with the eye": [65535, 0], "the eye of": [65535, 0], "eye of an": [65535, 0], "of an artist": [65535, 0], "an artist then": [65535, 0], "artist then he": [65535, 0], "then he gave": [65535, 0], "he gave his": [65535, 0], "gave his brush": [65535, 0], "his brush another": [65535, 0], "brush another gentle": [65535, 0], "another gentle sweep": [65535, 0], "gentle sweep and": [65535, 0], "sweep and surveyed": [65535, 0], "and surveyed the": [65535, 0], "surveyed the result": [65535, 0], "the result as": [65535, 0], "result as before": [65535, 0], "as before ben": [65535, 0], "before ben ranged": [65535, 0], "ben ranged up": [65535, 0], "ranged up alongside": [65535, 0], "up alongside of": [65535, 0], "alongside of him": [65535, 0], "of him tom's": [65535, 0], "him tom's mouth": [65535, 0], "tom's mouth watered": [65535, 0], "mouth watered for": [65535, 0], "watered for the": [65535, 0], "for the apple": [65535, 0], "the apple but": [65535, 0], "apple but he": [65535, 0], "but he stuck": [65535, 0], "he stuck to": [65535, 0], "stuck to his": [65535, 0], "to his work": [65535, 0], "his work ben": [65535, 0], "work ben said": [65535, 0], "ben said hello": [65535, 0], "said hello old": [65535, 0], "hello old chap": [65535, 0], "old chap you": [65535, 0], "chap you got": [65535, 0], "got to work": [65535, 0], "to work hey": [65535, 0], "work hey tom": [65535, 0], "hey tom wheeled": [65535, 0], "tom wheeled suddenly": [65535, 0], "wheeled suddenly and": [65535, 0], "suddenly and said": [65535, 0], "and said why": [65535, 0], "said why it's": [65535, 0], "why it's you": [65535, 0], "it's you ben": [65535, 0], "you ben i": [65535, 0], "ben i warn't": [65535, 0], "i warn't noticing": [65535, 0], "warn't noticing say": [65535, 0], "noticing say i'm": [65535, 0], "say i'm going": [65535, 0], "i'm going in": [65535, 0], "going in a": [65535, 0], "in a swimming": [65535, 0], "a swimming i": [65535, 0], "swimming i am": [65535, 0], "i am don't": [65535, 0], "am don't you": [65535, 0], "don't you wish": [65535, 0], "you wish you": [65535, 0], "wish you could": [65535, 0], "you could but": [65535, 0], "could but of": [65535, 0], "but of course": [65535, 0], "of course you'd": [65535, 0], "course you'd druther": [65535, 0], "you'd druther work": [65535, 0], "druther work wouldn't": [65535, 0], "work wouldn't you": [65535, 0], "wouldn't you course": [65535, 0], "you course you": [65535, 0], "course you would": [65535, 0], "you would tom": [65535, 0], "would tom contemplated": [65535, 0], "tom contemplated the": [65535, 0], "contemplated the boy": [65535, 0], "the boy a": [65535, 0], "boy a bit": [65535, 0], "a bit and": [65535, 0], "bit and said": [65535, 0], "and said what": [65535, 0], "said what do": [65535, 0], "what do you": [65535, 0], "do you call": [65535, 0], "you call work": [65535, 0], "call work why": [65535, 0], "work why ain't": [65535, 0], "why ain't that": [65535, 0], "ain't that work": [65535, 0], "that work tom": [65535, 0], "work tom resumed": [65535, 0], "tom resumed his": [65535, 0], "resumed his whitewashing": [65535, 0], "his whitewashing and": [65535, 0], "whitewashing and answered": [65535, 0], "and answered carelessly": [65535, 0], "answered carelessly well": [65535, 0], "carelessly well maybe": [65535, 0], "well maybe it": [65535, 0], "maybe it is": [65535, 0], "it is and": [65535, 0], "is and maybe": [65535, 0], "and maybe it": [65535, 0], "maybe it ain't": [65535, 0], "it ain't all": [65535, 0], "ain't all i": [65535, 0], "all i know": [65535, 0], "i know is": [65535, 0], "know is it": [65535, 0], "is it suits": [65535, 0], "it suits tom": [65535, 0], "suits tom sawyer": [65535, 0], "tom sawyer oh": [65535, 0], "sawyer oh come": [65535, 0], "oh come now": [65535, 0], "come now you": [65535, 0], "now you don't": [65535, 0], "you don't mean": [65535, 0], "don't mean to": [65535, 0], "mean to let": [65535, 0], "to let on": [65535, 0], "let on that": [65535, 0], "on that you": [65535, 0], "that you like": [65535, 0], "like it the": [65535, 0], "it the brush": [65535, 0], "the brush continued": [65535, 0], "brush continued to": [65535, 0], "continued to move": [65535, 0], "to move like": [65535, 0], "move like it": [65535, 0], "like it well": [65535, 0], "it well i": [65535, 0], "well i don't": [65535, 0], "i don't see": [65535, 0], "don't see why": [65535, 0], "see why i": [65535, 0], "why i oughtn't": [65535, 0], "i oughtn't to": [65535, 0], "oughtn't to like": [65535, 0], "to like it": [65535, 0], "like it does": [65535, 0], "it does a": [65535, 0], "does a boy": [65535, 0], "a boy get": [65535, 0], "boy get a": [65535, 0], "a chance to": [65535, 0], "chance to whitewash": [65535, 0], "to whitewash a": [65535, 0], "whitewash a fence": [65535, 0], "a fence every": [65535, 0], "fence every day": [65535, 0], "every day that": [65535, 0], "day that put": [65535, 0], "that put the": [65535, 0], "put the thing": [65535, 0], "the thing in": [65535, 0], "thing in a": [65535, 0], "a new light": [65535, 0], "new light ben": [65535, 0], "light ben stopped": [65535, 0], "ben stopped nibbling": [65535, 0], "stopped nibbling his": [65535, 0], "nibbling his apple": [65535, 0], "his apple tom": [65535, 0], "apple tom swept": [65535, 0], "tom swept his": [65535, 0], "swept his brush": [65535, 0], "his brush daintily": [65535, 0], "brush daintily back": [65535, 0], "daintily back and": [65535, 0], "back and forth": [65535, 0], "and forth stepped": [65535, 0], "forth stepped back": [65535, 0], "stepped back to": [65535, 0], "back to note": [65535, 0], "to note the": [65535, 0], "note the effect": [65535, 0], "the effect added": [65535, 0], "effect added a": [65535, 0], "added a touch": [65535, 0], "a touch here": [65535, 0], "touch here and": [65535, 0], "here and there": [65535, 0], "and there criticised": [65535, 0], "there criticised the": [65535, 0], "criticised the effect": [65535, 0], "the effect again": [65535, 0], "effect again ben": [65535, 0], "again ben watching": [65535, 0], "ben watching every": [65535, 0], "watching every move": [65535, 0], "every move and": [65535, 0], "move and getting": [65535, 0], "and getting more": [65535, 0], "getting more and": [65535, 0], "more and more": [65535, 0], "and more interested": [65535, 0], "more interested more": [65535, 0], "interested more and": [65535, 0], "and more absorbed": [65535, 0], "more absorbed presently": [65535, 0], "absorbed presently he": [65535, 0], "presently he said": [65535, 0], "he said say": [65535, 0], "said say tom": [65535, 0], "say tom let": [65535, 0], "tom let me": [65535, 0], "let me whitewash": [65535, 0], "me whitewash a": [65535, 0], "whitewash a little": [65535, 0], "a little tom": [65535, 0], "little tom considered": [65535, 0], "tom considered was": [65535, 0], "considered was about": [65535, 0], "about to consent": [65535, 0], "to consent but": [65535, 0], "consent but he": [65535, 0], "but he altered": [65535, 0], "he altered his": [65535, 0], "altered his mind": [65535, 0], "his mind no": [65535, 0], "mind no no": [65535, 0], "no no i": [65535, 0], "no i reckon": [65535, 0], "i reckon it": [65535, 0], "reckon it wouldn't": [65535, 0], "it wouldn't hardly": [65535, 0], "wouldn't hardly do": [65535, 0], "hardly do ben": [65535, 0], "do ben you": [65535, 0], "ben you see": [65535, 0], "you see aunt": [65535, 0], "see aunt polly's": [65535, 0], "aunt polly's awful": [65535, 0], "polly's awful particular": [65535, 0], "awful particular about": [65535, 0], "particular about this": [65535, 0], "about this fence": [65535, 0], "this fence right": [65535, 0], "fence right here": [65535, 0], "right here on": [65535, 0], "here on the": [65535, 0], "on the street": [65535, 0], "the street you": [65535, 0], "street you know": [65535, 0], "you know but": [65535, 0], "know but if": [65535, 0], "but if it": [65535, 0], "it was the": [39262, 26273], "was the back": [65535, 0], "the back fence": [65535, 0], "back fence i": [65535, 0], "fence i wouldn't": [65535, 0], "i wouldn't mind": [65535, 0], "wouldn't mind and": [65535, 0], "mind and she": [65535, 0], "and she wouldn't": [65535, 0], "she wouldn't yes": [65535, 0], "wouldn't yes she's": [65535, 0], "yes she's awful": [65535, 0], "she's awful particular": [65535, 0], "this fence it's": [65535, 0], "fence it's got": [65535, 0], "it's got to": [65535, 0], "got to be": [65535, 0], "to be done": [65535, 0], "be done very": [65535, 0], "done very careful": [65535, 0], "very careful i": [65535, 0], "careful i reckon": [65535, 0], "i reckon there": [65535, 0], "reckon there ain't": [65535, 0], "there ain't one": [65535, 0], "ain't one boy": [65535, 0], "one boy in": [65535, 0], "boy in a": [65535, 0], "in a thousand": [65535, 0], "a thousand maybe": [65535, 0], "thousand maybe two": [65535, 0], "maybe two thousand": [65535, 0], "two thousand that": [65535, 0], "thousand that can": [65535, 0], "that can do": [65535, 0], "can do it": [65535, 0], "do it the": [65535, 0], "it the way": [65535, 0], "the way it's": [65535, 0], "way it's got": [65535, 0], "be done no": [65535, 0], "done no is": [65535, 0], "that so oh": [65535, 0], "so oh come": [65535, 0], "come now lemme": [65535, 0], "now lemme just": [65535, 0], "lemme just try": [65535, 0], "just try only": [65535, 0], "try only just": [65535, 0], "only just a": [65535, 0], "just a little": [65535, 0], "a little i'd": [65535, 0], "little i'd let": [65535, 0], "i'd let you": [65535, 0], "let you if": [65535, 0], "you if you": [65535, 0], "if you was": [65535, 0], "you was me": [65535, 0], "was me tom": [65535, 0], "me tom ben": [65535, 0], "tom ben i'd": [65535, 0], "ben i'd like": [65535, 0], "like to honest": [65535, 0], "to honest injun": [65535, 0], "honest injun but": [65535, 0], "injun but aunt": [65535, 0], "but aunt polly": [65535, 0], "aunt polly well": [65535, 0], "polly well jim": [65535, 0], "well jim wanted": [65535, 0], "jim wanted to": [65535, 0], "wanted to do": [65535, 0], "to do it": [65535, 0], "do it but": [65535, 0], "but she wouldn't": [65535, 0], "she wouldn't let": [65535, 0], "wouldn't let him": [65535, 0], "let him sid": [65535, 0], "him sid wanted": [65535, 0], "sid wanted to": [65535, 0], "do it and": [65535, 0], "it and she": [65535, 0], "wouldn't let sid": [65535, 0], "let sid now": [65535, 0], "sid now don't": [65535, 0], "now don't you": [65535, 0], "don't you see": [65535, 0], "you see how": [65535, 0], "see how i'm": [65535, 0], "how i'm fixed": [65535, 0], "i'm fixed if": [65535, 0], "fixed if you": [65535, 0], "you was to": [65535, 0], "was to tackle": [65535, 0], "to tackle this": [65535, 0], "tackle this fence": [65535, 0], "this fence and": [65535, 0], "fence and anything": [65535, 0], "and anything was": [65535, 0], "anything was to": [65535, 0], "was to happen": [65535, 0], "to happen to": [65535, 0], "happen to it": [65535, 0], "to it oh": [65535, 0], "it oh shucks": [65535, 0], "oh shucks i'll": [65535, 0], "shucks i'll be": [65535, 0], "i'll be just": [65535, 0], "be just as": [65535, 0], "just as careful": [65535, 0], "as careful now": [65535, 0], "careful now lemme": [65535, 0], "now lemme try": [65535, 0], "lemme try say": [65535, 0], "try say i'll": [65535, 0], "say i'll give": [65535, 0], "give you the": [65535, 0], "you the core": [65535, 0], "the core of": [65535, 0], "core of my": [65535, 0], "of my apple": [65535, 0], "my apple well": [65535, 0], "apple well here": [65535, 0], "well here no": [65535, 0], "here no ben": [65535, 0], "no ben now": [65535, 0], "ben now don't": [65535, 0], "now don't i'm": [65535, 0], "don't i'm afeard": [65535, 0], "i'm afeard i'll": [65535, 0], "afeard i'll give": [65535, 0], "give you all": [65535, 0], "you all of": [65535, 0], "all of it": [65535, 0], "of it tom": [65535, 0], "it tom gave": [65535, 0], "tom gave up": [65535, 0], "up the brush": [65535, 0], "the brush with": [65535, 0], "brush with reluctance": [65535, 0], "with reluctance in": [65535, 0], "reluctance in his": [65535, 0], "his face but": [65535, 0], "face but alacrity": [65535, 0], "but alacrity in": [65535, 0], "alacrity in his": [65535, 0], "his heart and": [65535, 0], "heart and while": [65535, 0], "and while the": [65535, 0], "while the late": [65535, 0], "the late steamer": [65535, 0], "late steamer big": [65535, 0], "steamer big missouri": [65535, 0], "big missouri worked": [65535, 0], "missouri worked and": [65535, 0], "worked and sweated": [65535, 0], "and sweated in": [65535, 0], "sweated in the": [65535, 0], "in the sun": [65535, 0], "the sun the": [65535, 0], "sun the retired": [65535, 0], "the retired artist": [65535, 0], "retired artist sat": [65535, 0], "artist sat on": [65535, 0], "sat on a": [65535, 0], "on a barrel": [65535, 0], "a barrel in": [65535, 0], "barrel in the": [65535, 0], "in the shade": [65535, 0], "the shade close": [65535, 0], "shade close by": [65535, 0], "close by dangled": [65535, 0], "by dangled his": [65535, 0], "dangled his legs": [65535, 0], "his legs munched": [65535, 0], "legs munched his": [65535, 0], "munched his apple": [65535, 0], "his apple and": [65535, 0], "apple and planned": [65535, 0], "and planned the": [65535, 0], "planned the slaughter": [65535, 0], "the slaughter of": [65535, 0], "slaughter of more": [65535, 0], "of more innocents": [65535, 0], "more innocents there": [65535, 0], "innocents there was": [65535, 0], "was no lack": [65535, 0], "no lack of": [65535, 0], "lack of material": [65535, 0], "of material boys": [65535, 0], "material boys happened": [65535, 0], "boys happened along": [65535, 0], "happened along every": [65535, 0], "along every little": [65535, 0], "every little while": [65535, 0], "little while they": [65535, 0], "while they came": [65535, 0], "they came to": [65535, 0], "came to jeer": [65535, 0], "to jeer but": [65535, 0], "jeer but remained": [65535, 0], "but remained to": [65535, 0], "remained to whitewash": [65535, 0], "to whitewash by": [65535, 0], "whitewash by the": [65535, 0], "by the time": [65535, 0], "the time ben": [65535, 0], "time ben was": [65535, 0], "ben was fagged": [65535, 0], "was fagged out": [65535, 0], "fagged out tom": [65535, 0], "out tom had": [65535, 0], "tom had traded": [65535, 0], "had traded the": [65535, 0], "traded the next": [65535, 0], "the next chance": [65535, 0], "next chance to": [65535, 0], "chance to billy": [65535, 0], "to billy fisher": [65535, 0], "billy fisher for": [65535, 0], "fisher for a": [65535, 0], "for a kite": [65535, 0], "a kite in": [65535, 0], "kite in good": [65535, 0], "in good repair": [65535, 0], "good repair and": [65535, 0], "repair and when": [65535, 0], "when he played": [65535, 0], "he played out": [65535, 0], "played out johnny": [65535, 0], "out johnny miller": [65535, 0], "johnny miller bought": [65535, 0], "miller bought in": [65535, 0], "bought in for": [65535, 0], "in for a": [65535, 0], "for a dead": [65535, 0], "a dead rat": [65535, 0], "dead rat and": [65535, 0], "rat and a": [65535, 0], "and a string": [65535, 0], "a string to": [65535, 0], "string to swing": [65535, 0], "to swing it": [65535, 0], "swing it with": [65535, 0], "it with and": [65535, 0], "with and so": [65535, 0], "and so on": [65535, 0], "so on and": [65535, 0], "on and so": [65535, 0], "so on hour": [65535, 0], "on hour after": [65535, 0], "hour after hour": [65535, 0], "after hour and": [65535, 0], "hour and when": [65535, 0], "and when the": [65535, 0], "when the middle": [65535, 0], "of the afternoon": [65535, 0], "the afternoon came": [65535, 0], "afternoon came from": [65535, 0], "came from being": [65535, 0], "from being a": [65535, 0], "being a poor": [65535, 0], "a poor poverty": [65535, 0], "poor poverty stricken": [65535, 0], "poverty stricken boy": [65535, 0], "stricken boy in": [65535, 0], "boy in the": [65535, 0], "in the morning": [65535, 0], "the morning tom": [65535, 0], "morning tom was": [65535, 0], "tom was literally": [65535, 0], "was literally rolling": [65535, 0], "literally rolling in": [65535, 0], "rolling in wealth": [65535, 0], "in wealth he": [65535, 0], "wealth he had": [65535, 0], "he had besides": [65535, 0], "had besides the": [65535, 0], "besides the things": [65535, 0], "the things before": [65535, 0], "things before mentioned": [65535, 0], "before mentioned twelve": [65535, 0], "mentioned twelve marbles": [65535, 0], "twelve marbles part": [65535, 0], "marbles part of": [65535, 0], "part of a": [65535, 0], "of a jews": [65535, 0], "a jews harp": [65535, 0], "jews harp a": [65535, 0], "harp a piece": [65535, 0], "a piece of": [65535, 0], "piece of blue": [65535, 0], "of blue bottle": [65535, 0], "blue bottle glass": [65535, 0], "bottle glass to": [65535, 0], "glass to look": [65535, 0], "to look through": [65535, 0], "look through a": [65535, 0], "through a spool": [65535, 0], "a spool cannon": [65535, 0], "spool cannon a": [65535, 0], "cannon a key": [65535, 0], "a key that": [65535, 0], "key that wouldn't": [65535, 0], "that wouldn't unlock": [65535, 0], "wouldn't unlock anything": [65535, 0], "unlock anything a": [65535, 0], "anything a fragment": [65535, 0], "a fragment of": [65535, 0], "fragment of chalk": [65535, 0], "of chalk a": [65535, 0], "chalk a glass": [65535, 0], "a glass stopper": [65535, 0], "glass stopper of": [65535, 0], "stopper of a": [65535, 0], "of a decanter": [65535, 0], "a decanter a": [65535, 0], "decanter a tin": [65535, 0], "a tin soldier": [65535, 0], "tin soldier a": [65535, 0], "soldier a couple": [65535, 0], "couple of tadpoles": [65535, 0], "of tadpoles six": [65535, 0], "tadpoles six fire": [65535, 0], "six fire crackers": [65535, 0], "fire crackers a": [65535, 0], "crackers a kitten": [65535, 0], "a kitten with": [65535, 0], "kitten with only": [65535, 0], "with only one": [65535, 0], "only one eye": [65535, 0], "one eye a": [65535, 0], "eye a brass": [65535, 0], "a brass doorknob": [65535, 0], "brass doorknob a": [65535, 0], "doorknob a dog": [65535, 0], "a dog collar": [65535, 0], "dog collar but": [65535, 0], "collar but no": [65535, 0], "but no dog": [65535, 0], "no dog the": [65535, 0], "dog the handle": [65535, 0], "the handle of": [65535, 0], "handle of a": [65535, 0], "of a knife": [65535, 0], "a knife four": [65535, 0], "knife four pieces": [65535, 0], "four pieces of": [65535, 0], "pieces of orange": [65535, 0], "of orange peel": [65535, 0], "orange peel and": [65535, 0], "peel and a": [65535, 0], "and a dilapidated": [65535, 0], "a dilapidated old": [65535, 0], "dilapidated old window": [65535, 0], "old window sash": [65535, 0], "window sash he": [65535, 0], "sash he had": [65535, 0], "had had a": [65535, 0], "had a nice": [65535, 0], "a nice good": [65535, 0], "nice good idle": [65535, 0], "good idle time": [65535, 0], "idle time all": [65535, 0], "time all the": [65535, 0], "all the while": [65535, 0], "the while plenty": [65535, 0], "while plenty of": [65535, 0], "plenty of company": [65535, 0], "of company and": [65535, 0], "company and the": [65535, 0], "and the fence": [65535, 0], "the fence had": [65535, 0], "fence had three": [65535, 0], "had three coats": [65535, 0], "three coats of": [65535, 0], "coats of whitewash": [65535, 0], "of whitewash on": [65535, 0], "whitewash on it": [65535, 0], "on it if": [65535, 0], "if he hadn't": [65535, 0], "he hadn't run": [65535, 0], "hadn't run out": [65535, 0], "run out of": [65535, 0], "out of whitewash": [65535, 0], "of whitewash he": [65535, 0], "whitewash he would": [65535, 0], "he would have": [65535, 0], "would have bankrupted": [65535, 0], "have bankrupted every": [65535, 0], "bankrupted every boy": [65535, 0], "every boy in": [65535, 0], "in the village": [65535, 0], "the village tom": [65535, 0], "village tom said": [65535, 0], "tom said to": [65535, 0], "himself that it": [65535, 0], "that it was": [65535, 0], "it was not": [65535, 0], "was not such": [65535, 0], "not such a": [65535, 0], "such a hollow": [65535, 0], "a hollow world": [65535, 0], "hollow world after": [65535, 0], "world after all": [65535, 0], "after all he": [65535, 0], "all he had": [65535, 0], "he had discovered": [65535, 0], "had discovered a": [65535, 0], "discovered a great": [65535, 0], "a great law": [65535, 0], "great law of": [65535, 0], "law of human": [65535, 0], "of human action": [65535, 0], "human action without": [65535, 0], "action without knowing": [65535, 0], "without knowing it": [65535, 0], "knowing it namely": [65535, 0], "it namely that": [65535, 0], "namely that in": [65535, 0], "that in order": [65535, 0], "in order to": [65535, 0], "order to make": [65535, 0], "to make a": [16338, 49197], "a man or": [65535, 0], "man or a": [65535, 0], "or a boy": [65535, 0], "a boy covet": [65535, 0], "boy covet a": [65535, 0], "covet a thing": [65535, 0], "a thing it": [65535, 0], "thing it is": [65535, 0], "it is only": [65535, 0], "is only necessary": [65535, 0], "only necessary to": [65535, 0], "necessary to make": [65535, 0], "to make the": [65535, 0], "make the thing": [65535, 0], "the thing difficult": [65535, 0], "thing difficult to": [65535, 0], "difficult to attain": [65535, 0], "to attain if": [65535, 0], "attain if he": [65535, 0], "if he had": [65535, 0], "been a great": [65535, 0], "a great and": [65535, 0], "great and wise": [65535, 0], "and wise philosopher": [65535, 0], "wise philosopher like": [65535, 0], "philosopher like the": [65535, 0], "like the writer": [65535, 0], "the writer of": [65535, 0], "writer of this": [65535, 0], "of this book": [65535, 0], "this book he": [65535, 0], "book he would": [65535, 0], "he would now": [65535, 0], "would now have": [65535, 0], "now have comprehended": [65535, 0], "have comprehended that": [65535, 0], "comprehended that work": [65535, 0], "that work consists": [65535, 0], "work consists of": [65535, 0], "consists of whatever": [65535, 0], "of whatever a": [65535, 0], "whatever a body": [65535, 0], "a body is": [65535, 0], "body is obliged": [65535, 0], "is obliged to": [65535, 0], "obliged to do": [65535, 0], "to do and": [65535, 0], "do and that": [65535, 0], "and that play": [65535, 0], "that play consists": [65535, 0], "play consists of": [65535, 0], "body is not": [65535, 0], "is not obliged": [65535, 0], "not obliged to": [65535, 0], "do and this": [65535, 0], "and this would": [65535, 0], "this would help": [65535, 0], "would help him": [65535, 0], "help him to": [65535, 0], "him to understand": [65535, 0], "to understand why": [65535, 0], "understand why constructing": [65535, 0], "why constructing artificial": [65535, 0], "constructing artificial flowers": [65535, 0], "artificial flowers or": [65535, 0], "flowers or performing": [65535, 0], "or performing on": [65535, 0], "performing on a": [65535, 0], "on a tread": [65535, 0], "a tread mill": [65535, 0], "tread mill is": [65535, 0], "mill is work": [65535, 0], "is work while": [65535, 0], "work while rolling": [65535, 0], "while rolling ten": [65535, 0], "rolling ten pins": [65535, 0], "ten pins or": [65535, 0], "pins or climbing": [65535, 0], "or climbing mont": [65535, 0], "climbing mont blanc": [65535, 0], "mont blanc is": [65535, 0], "blanc is only": [65535, 0], "is only amusement": [65535, 0], "only amusement there": [65535, 0], "amusement there are": [65535, 0], "there are wealthy": [65535, 0], "are wealthy gentlemen": [65535, 0], "wealthy gentlemen in": [65535, 0], "gentlemen in england": [65535, 0], "in england who": [65535, 0], "england who drive": [65535, 0], "who drive four": [65535, 0], "drive four horse": [65535, 0], "four horse passenger": [65535, 0], "horse passenger coaches": [65535, 0], "passenger coaches twenty": [65535, 0], "coaches twenty or": [65535, 0], "twenty or thirty": [65535, 0], "or thirty miles": [65535, 0], "thirty miles on": [65535, 0], "miles on a": [65535, 0], "on a daily": [65535, 0], "a daily line": [65535, 0], "daily line in": [65535, 0], "line in the": [65535, 0], "in the summer": [65535, 0], "the summer because": [65535, 0], "summer because the": [65535, 0], "because the privilege": [65535, 0], "the privilege costs": [65535, 0], "privilege costs them": [65535, 0], "costs them considerable": [65535, 0], "them considerable money": [65535, 0], "considerable money but": [65535, 0], "money but if": [65535, 0], "but if they": [65535, 0], "if they were": [65535, 0], "they were offered": [65535, 0], "were offered wages": [65535, 0], "offered wages for": [65535, 0], "wages for the": [65535, 0], "for the service": [65535, 0], "the service that": [65535, 0], "service that would": [65535, 0], "that would turn": [65535, 0], "would turn it": [65535, 0], "turn it into": [65535, 0], "it into work": [65535, 0], "into work and": [65535, 0], "work and then": [65535, 0], "and then they": [65535, 0], "then they would": [65535, 0], "they would resign": [65535, 0], "would resign the": [65535, 0], "resign the boy": [65535, 0], "the boy mused": [65535, 0], "boy mused awhile": [65535, 0], "mused awhile over": [65535, 0], "awhile over the": [65535, 0], "over the substantial": [65535, 0], "the substantial change": [65535, 0], "substantial change which": [65535, 0], "change which had": [65535, 0], "which had taken": [65535, 0], "had taken place": [65535, 0], "taken place in": [65535, 0], "place in his": [65535, 0], "in his worldly": [65535, 0], "his worldly circumstances": [65535, 0], "worldly circumstances and": [65535, 0], "circumstances and then": [65535, 0], "and then wended": [65535, 0], "then wended toward": [65535, 0], "wended toward headquarters": [65535, 0], "toward headquarters to": [65535, 0], "headquarters to report": [65535, 0], "saturday morning was come": [65535, 0], "morning was come and": [65535, 0], "was come and all": [65535, 0], "come and all the": [65535, 0], "and all the summer": [65535, 0], "all the summer world": [65535, 0], "the summer world was": [65535, 0], "summer world was bright": [65535, 0], "world was bright and": [65535, 0], "was bright and fresh": [65535, 0], "bright and fresh and": [65535, 0], "and fresh and brimming": [65535, 0], "fresh and brimming with": [65535, 0], "and brimming with life": [65535, 0], "brimming with life there": [65535, 0], "with life there was": [65535, 0], "life there was a": [65535, 0], "there was a song": [65535, 0], "was a song in": [65535, 0], "a song in every": [65535, 0], "song in every heart": [65535, 0], "in every heart and": [65535, 0], "every heart and if": [65535, 0], "heart and if the": [65535, 0], "and if the heart": [65535, 0], "if the heart was": [65535, 0], "the heart was young": [65535, 0], "heart was young the": [65535, 0], "was young the music": [65535, 0], "young the music issued": [65535, 0], "the music issued at": [65535, 0], "music issued at the": [65535, 0], "issued at the lips": [65535, 0], "at the lips there": [65535, 0], "the lips there was": [65535, 0], "lips there was cheer": [65535, 0], "there was cheer in": [65535, 0], "was cheer in every": [65535, 0], "cheer in every face": [65535, 0], "in every face and": [65535, 0], "every face and a": [65535, 0], "face and a spring": [65535, 0], "and a spring in": [65535, 0], "a spring in every": [65535, 0], "spring in every step": [65535, 0], "in every step the": [65535, 0], "every step the locust": [65535, 0], "step the locust trees": [65535, 0], "the locust trees were": [65535, 0], "locust trees were in": [65535, 0], "trees were in bloom": [65535, 0], "were in bloom and": [65535, 0], "in bloom and the": [65535, 0], "bloom and the fragrance": [65535, 0], "and the fragrance of": [65535, 0], "the fragrance of the": [65535, 0], "fragrance of the blossoms": [65535, 0], "of the blossoms filled": [65535, 0], "the blossoms filled the": [65535, 0], "blossoms filled the air": [65535, 0], "filled the air cardiff": [65535, 0], "the air cardiff hill": [65535, 0], "air cardiff hill beyond": [65535, 0], "cardiff hill beyond the": [65535, 0], "hill beyond the village": [65535, 0], "beyond the village and": [65535, 0], "the village and above": [65535, 0], "village and above it": [65535, 0], "and above it was": [65535, 0], "above it was green": [65535, 0], "it was green with": [65535, 0], "was green with vegetation": [65535, 0], "green with vegetation and": [65535, 0], "with vegetation and it": [65535, 0], "vegetation and it lay": [65535, 0], "and it lay just": [65535, 0], "it lay just far": [65535, 0], "lay just far enough": [65535, 0], "just far enough away": [65535, 0], "far enough away to": [65535, 0], "enough away to seem": [65535, 0], "away to seem a": [65535, 0], "to seem a delectable": [65535, 0], "seem a delectable land": [65535, 0], "a delectable land dreamy": [65535, 0], "delectable land dreamy reposeful": [65535, 0], "land dreamy reposeful and": [65535, 0], "dreamy reposeful and inviting": [65535, 0], "reposeful and inviting tom": [65535, 0], "and inviting tom appeared": [65535, 0], "inviting tom appeared on": [65535, 0], "tom appeared on the": [65535, 0], "appeared on the sidewalk": [65535, 0], "on the sidewalk with": [65535, 0], "the sidewalk with a": [65535, 0], "sidewalk with a bucket": [65535, 0], "with a bucket of": [65535, 0], "a bucket of whitewash": [65535, 0], "bucket of whitewash and": [65535, 0], "of whitewash and a": [65535, 0], "whitewash and a long": [65535, 0], "and a long handled": [65535, 0], "a long handled brush": [65535, 0], "long handled brush he": [65535, 0], "handled brush he surveyed": [65535, 0], "brush he surveyed the": [65535, 0], "he surveyed the fence": [65535, 0], "surveyed the fence and": [65535, 0], "the fence and all": [65535, 0], "fence and all gladness": [65535, 0], "and all gladness left": [65535, 0], "all gladness left him": [65535, 0], "gladness left him and": [65535, 0], "left him and a": [65535, 0], "him and a deep": [65535, 0], "and a deep melancholy": [65535, 0], "a deep melancholy settled": [65535, 0], "deep melancholy settled down": [65535, 0], "melancholy settled down upon": [65535, 0], "settled down upon his": [65535, 0], "down upon his spirit": [65535, 0], "upon his spirit thirty": [65535, 0], "his spirit thirty yards": [65535, 0], "spirit thirty yards of": [65535, 0], "thirty yards of board": [65535, 0], "yards of board fence": [65535, 0], "of board fence nine": [65535, 0], "board fence nine feet": [65535, 0], "fence nine feet high": [65535, 0], "nine feet high life": [65535, 0], "feet high life to": [65535, 0], "high life to him": [65535, 0], "life to him seemed": [65535, 0], "to him seemed hollow": [65535, 0], "him seemed hollow and": [65535, 0], "seemed hollow and existence": [65535, 0], "hollow and existence but": [65535, 0], "and existence but a": [65535, 0], "existence but a burden": [65535, 0], "but a burden sighing": [65535, 0], "a burden sighing he": [65535, 0], "burden sighing he dipped": [65535, 0], "sighing he dipped his": [65535, 0], "he dipped his brush": [65535, 0], "dipped his brush and": [65535, 0], "his brush and passed": [65535, 0], "brush and passed it": [65535, 0], "and passed it along": [65535, 0], "passed it along the": [65535, 0], "it along the topmost": [65535, 0], "along the topmost plank": [65535, 0], "the topmost plank repeated": [65535, 0], "topmost plank repeated the": [65535, 0], "plank repeated the operation": [65535, 0], "repeated the operation did": [65535, 0], "the operation did it": [65535, 0], "operation did it again": [65535, 0], "did it again compared": [65535, 0], "it again compared the": [65535, 0], "again compared the insignificant": [65535, 0], "compared the insignificant whitewashed": [65535, 0], "the insignificant whitewashed streak": [65535, 0], "insignificant whitewashed streak with": [65535, 0], "whitewashed streak with the": [65535, 0], "streak with the far": [65535, 0], "with the far reaching": [65535, 0], "the far reaching continent": [65535, 0], "far reaching continent of": [65535, 0], "reaching continent of unwhitewashed": [65535, 0], "continent of unwhitewashed fence": [65535, 0], "of unwhitewashed fence and": [65535, 0], "unwhitewashed fence and sat": [65535, 0], "fence and sat down": [65535, 0], "sat down on a": [65535, 0], "down on a tree": [65535, 0], "on a tree box": [65535, 0], "a tree box discouraged": [65535, 0], "tree box discouraged jim": [65535, 0], "box discouraged jim came": [65535, 0], "discouraged jim came skipping": [65535, 0], "jim came skipping out": [65535, 0], "came skipping out at": [65535, 0], "skipping out at the": [65535, 0], "out at the gate": [65535, 0], "at the gate with": [65535, 0], "the gate with a": [65535, 0], "gate with a tin": [65535, 0], "with a tin pail": [65535, 0], "a tin pail and": [65535, 0], "tin pail and singing": [65535, 0], "pail and singing buffalo": [65535, 0], "and singing buffalo gals": [65535, 0], "singing buffalo gals bringing": [65535, 0], "buffalo gals bringing water": [65535, 0], "gals bringing water from": [65535, 0], "bringing water from the": [65535, 0], "water from the town": [65535, 0], "from the town pump": [65535, 0], "the town pump had": [65535, 0], "town pump had always": [65535, 0], "pump had always been": [65535, 0], "had always been hateful": [65535, 0], "always been hateful work": [65535, 0], "been hateful work in": [65535, 0], "hateful work in tom's": [65535, 0], "work in tom's eyes": [65535, 0], "in tom's eyes before": [65535, 0], "tom's eyes before but": [65535, 0], "eyes before but now": [65535, 0], "before but now it": [65535, 0], "but now it did": [65535, 0], "now it did not": [65535, 0], "it did not strike": [65535, 0], "did not strike him": [65535, 0], "not strike him so": [65535, 0], "strike him so he": [65535, 0], "him so he remembered": [65535, 0], "so he remembered that": [65535, 0], "he remembered that there": [65535, 0], "remembered that there was": [65535, 0], "that there was company": [65535, 0], "there was company at": [65535, 0], "was company at the": [65535, 0], "company at the pump": [65535, 0], "at the pump white": [65535, 0], "the pump white mulatto": [65535, 0], "pump white mulatto and": [65535, 0], "white mulatto and negro": [65535, 0], "mulatto and negro boys": [65535, 0], "and negro boys and": [65535, 0], "negro boys and girls": [65535, 0], "boys and girls were": [65535, 0], "and girls were always": [65535, 0], "girls were always there": [65535, 0], "were always there waiting": [65535, 0], "always there waiting their": [65535, 0], "there waiting their turns": [65535, 0], "waiting their turns resting": [65535, 0], "their turns resting trading": [65535, 0], "turns resting trading playthings": [65535, 0], "resting trading playthings quarrelling": [65535, 0], "trading playthings quarrelling fighting": [65535, 0], "playthings quarrelling fighting skylarking": [65535, 0], "quarrelling fighting skylarking and": [65535, 0], "fighting skylarking and he": [65535, 0], "skylarking and he remembered": [65535, 0], "and he remembered that": [65535, 0], "he remembered that although": [65535, 0], "remembered that although the": [65535, 0], "that although the pump": [65535, 0], "although the pump was": [65535, 0], "the pump was only": [65535, 0], "pump was only a": [65535, 0], "was only a hundred": [65535, 0], "only a hundred and": [65535, 0], "a hundred and fifty": [65535, 0], "hundred and fifty yards": [65535, 0], "and fifty yards off": [65535, 0], "fifty yards off jim": [65535, 0], "yards off jim never": [65535, 0], "off jim never got": [65535, 0], "jim never got back": [65535, 0], "never got back with": [65535, 0], "got back with a": [65535, 0], "back with a bucket": [65535, 0], "a bucket of water": [65535, 0], "bucket of water under": [65535, 0], "of water under an": [65535, 0], "water under an hour": [65535, 0], "under an hour and": [65535, 0], "an hour and even": [65535, 0], "hour and even then": [65535, 0], "and even then somebody": [65535, 0], "even then somebody generally": [65535, 0], "then somebody generally had": [65535, 0], "somebody generally had to": [65535, 0], "generally had to go": [65535, 0], "had to go after": [65535, 0], "to go after him": [65535, 0], "go after him tom": [65535, 0], "after him tom said": [65535, 0], "him tom said say": [65535, 0], "tom said say jim": [65535, 0], "said say jim i'll": [65535, 0], "say jim i'll fetch": [65535, 0], "jim i'll fetch the": [65535, 0], "i'll fetch the water": [65535, 0], "fetch the water if": [65535, 0], "the water if you'll": [65535, 0], "water if you'll whitewash": [65535, 0], "if you'll whitewash some": [65535, 0], "you'll whitewash some jim": [65535, 0], "whitewash some jim shook": [65535, 0], "some jim shook his": [65535, 0], "jim shook his head": [65535, 0], "shook his head and": [65535, 0], "his head and said": [65535, 0], "head and said can't": [65535, 0], "and said can't mars": [65535, 0], "said can't mars tom": [65535, 0], "can't mars tom ole": [65535, 0], "mars tom ole missis": [65535, 0], "tom ole missis she": [65535, 0], "ole missis she tole": [65535, 0], "missis she tole me": [65535, 0], "she tole me i": [65535, 0], "tole me i got": [65535, 0], "me i got to": [65535, 0], "i got to go": [65535, 0], "got to go an'": [65535, 0], "to go an' git": [65535, 0], "go an' git dis": [65535, 0], "an' git dis water": [65535, 0], "git dis water an'": [65535, 0], "dis water an' not": [65535, 0], "water an' not stop": [65535, 0], "an' not stop foolin'": [65535, 0], "not stop foolin' roun'": [65535, 0], "stop foolin' roun' wid": [65535, 0], "foolin' roun' wid anybody": [65535, 0], "roun' wid anybody she": [65535, 0], "wid anybody she say": [65535, 0], "anybody she say she": [65535, 0], "she say she spec'": [65535, 0], "say she spec' mars": [65535, 0], "she spec' mars tom": [65535, 0], "spec' mars tom gwine": [65535, 0], "mars tom gwine to": [65535, 0], "tom gwine to ax": [65535, 0], "gwine to ax me": [65535, 0], "to ax me to": [65535, 0], "ax me to whitewash": [65535, 0], "me to whitewash an'": [65535, 0], "to whitewash an' so": [65535, 0], "whitewash an' so she": [65535, 0], "an' so she tole": [65535, 0], "so she tole me": [65535, 0], "she tole me go": [65535, 0], "tole me go 'long": [65535, 0], "me go 'long an'": [65535, 0], "go 'long an' 'tend": [65535, 0], "'long an' 'tend to": [65535, 0], "an' 'tend to my": [65535, 0], "'tend to my own": [65535, 0], "to my own business": [65535, 0], "my own business she": [65535, 0], "own business she 'lowed": [65535, 0], "business she 'lowed she'd": [65535, 0], "she 'lowed she'd 'tend": [65535, 0], "'lowed she'd 'tend to": [65535, 0], "she'd 'tend to de": [65535, 0], "'tend to de whitewashin'": [65535, 0], "to de whitewashin' oh": [65535, 0], "de whitewashin' oh never": [65535, 0], "whitewashin' oh never you": [65535, 0], "oh never you mind": [65535, 0], "never you mind what": [65535, 0], "you mind what she": [65535, 0], "mind what she said": [65535, 0], "what she said jim": [65535, 0], "she said jim that's": [65535, 0], "said jim that's the": [65535, 0], "jim that's the way": [65535, 0], "that's the way she": [65535, 0], "the way she always": [65535, 0], "way she always talks": [65535, 0], "she always talks gimme": [65535, 0], "always talks gimme the": [65535, 0], "talks gimme the bucket": [65535, 0], "gimme the bucket i": [65535, 0], "the bucket i won't": [65535, 0], "bucket i won't be": [65535, 0], "i won't be gone": [65535, 0], "won't be gone only": [65535, 0], "be gone only a": [65535, 0], "gone only a minute": [65535, 0], "only a minute she": [65535, 0], "a minute she won't": [65535, 0], "minute she won't ever": [65535, 0], "she won't ever know": [65535, 0], "won't ever know oh": [65535, 0], "ever know oh i": [65535, 0], "know oh i dasn't": [65535, 0], "oh i dasn't mars": [65535, 0], "i dasn't mars tom": [65535, 0], "dasn't mars tom ole": [65535, 0], "tom ole missis she'd": [65535, 0], "ole missis she'd take": [65535, 0], "missis she'd take an'": [65535, 0], "she'd take an' tar": [65535, 0], "take an' tar de": [65535, 0], "an' tar de head": [65535, 0], "tar de head off'n": [65535, 0], "de head off'n me": [65535, 0], "head off'n me 'deed": [65535, 0], "off'n me 'deed she": [65535, 0], "me 'deed she would": [65535, 0], "'deed she would she": [65535, 0], "she would she she": [65535, 0], "would she she never": [65535, 0], "she she never licks": [65535, 0], "she never licks anybody": [65535, 0], "never licks anybody whacks": [65535, 0], "licks anybody whacks 'em": [65535, 0], "anybody whacks 'em over": [65535, 0], "whacks 'em over the": [65535, 0], "'em over the head": [65535, 0], "over the head with": [65535, 0], "the head with her": [65535, 0], "head with her thimble": [65535, 0], "with her thimble and": [65535, 0], "her thimble and who": [65535, 0], "thimble and who cares": [65535, 0], "and who cares for": [65535, 0], "who cares for that": [65535, 0], "cares for that i'd": [65535, 0], "for that i'd like": [65535, 0], "that i'd like to": [65535, 0], "i'd like to know": [65535, 0], "like to know she": [65535, 0], "to know she talks": [65535, 0], "know she talks awful": [65535, 0], "she talks awful but": [65535, 0], "talks awful but talk": [65535, 0], "awful but talk don't": [65535, 0], "but talk don't hurt": [65535, 0], "talk don't hurt anyways": [65535, 0], "don't hurt anyways it": [65535, 0], "hurt anyways it don't": [65535, 0], "anyways it don't if": [65535, 0], "it don't if she": [65535, 0], "don't if she don't": [65535, 0], "if she don't cry": [65535, 0], "she don't cry jim": [65535, 0], "don't cry jim i'll": [65535, 0], "cry jim i'll give": [65535, 0], "jim i'll give you": [65535, 0], "i'll give you a": [65535, 0], "give you a marvel": [65535, 0], "you a marvel i'll": [65535, 0], "a marvel i'll give": [65535, 0], "marvel i'll give you": [65535, 0], "give you a white": [65535, 0], "you a white alley": [65535, 0], "a white alley jim": [65535, 0], "white alley jim began": [65535, 0], "alley jim began to": [65535, 0], "jim began to waver": [65535, 0], "began to waver white": [65535, 0], "to waver white alley": [65535, 0], "waver white alley jim": [65535, 0], "white alley jim and": [65535, 0], "alley jim and it's": [65535, 0], "jim and it's a": [65535, 0], "and it's a bully": [65535, 0], "it's a bully taw": [65535, 0], "a bully taw my": [65535, 0], "bully taw my dat's": [65535, 0], "taw my dat's a": [65535, 0], "my dat's a mighty": [65535, 0], "dat's a mighty gay": [65535, 0], "a mighty gay marvel": [65535, 0], "mighty gay marvel i": [65535, 0], "gay marvel i tell": [65535, 0], "marvel i tell you": [65535, 0], "i tell you but": [65535, 0], "tell you but mars": [65535, 0], "you but mars tom": [65535, 0], "but mars tom i's": [65535, 0], "mars tom i's powerful": [65535, 0], "tom i's powerful 'fraid": [65535, 0], "i's powerful 'fraid ole": [65535, 0], "powerful 'fraid ole missis": [65535, 0], "'fraid ole missis and": [65535, 0], "ole missis and besides": [65535, 0], "missis and besides if": [65535, 0], "and besides if you": [65535, 0], "besides if you will": [65535, 0], "if you will i'll": [65535, 0], "you will i'll show": [65535, 0], "will i'll show you": [65535, 0], "i'll show you my": [65535, 0], "show you my sore": [65535, 0], "you my sore toe": [65535, 0], "my sore toe jim": [65535, 0], "sore toe jim was": [65535, 0], "toe jim was only": [65535, 0], "jim was only human": [65535, 0], "was only human this": [65535, 0], "only human this attraction": [65535, 0], "human this attraction was": [65535, 0], "this attraction was too": [65535, 0], "attraction was too much": [65535, 0], "was too much for": [65535, 0], "too much for him": [65535, 0], "much for him he": [65535, 0], "for him he put": [65535, 0], "him he put down": [65535, 0], "he put down his": [65535, 0], "put down his pail": [65535, 0], "down his pail took": [65535, 0], "his pail took the": [65535, 0], "pail took the white": [65535, 0], "took the white alley": [65535, 0], "the white alley and": [65535, 0], "white alley and bent": [65535, 0], "alley and bent over": [65535, 0], "and bent over the": [65535, 0], "bent over the toe": [65535, 0], "over the toe with": [65535, 0], "the toe with absorbing": [65535, 0], "toe with absorbing interest": [65535, 0], "with absorbing interest while": [65535, 0], "absorbing interest while the": [65535, 0], "interest while the bandage": [65535, 0], "while the bandage was": [65535, 0], "the bandage was being": [65535, 0], "bandage was being unwound": [65535, 0], "was being unwound in": [65535, 0], "being unwound in another": [65535, 0], "unwound in another moment": [65535, 0], "in another moment he": [65535, 0], "another moment he was": [65535, 0], "moment he was flying": [65535, 0], "he was flying down": [65535, 0], "was flying down the": [65535, 0], "flying down the street": [65535, 0], "down the street with": [65535, 0], "the street with his": [65535, 0], "street with his pail": [65535, 0], "with his pail and": [65535, 0], "his pail and a": [65535, 0], "pail and a tingling": [65535, 0], "and a tingling rear": [65535, 0], "a tingling rear tom": [65535, 0], "tingling rear tom was": [65535, 0], "rear tom was whitewashing": [65535, 0], "tom was whitewashing with": [65535, 0], "was whitewashing with vigor": [65535, 0], "whitewashing with vigor and": [65535, 0], "with vigor and aunt": [65535, 0], "vigor and aunt polly": [65535, 0], "and aunt polly was": [65535, 0], "aunt polly was retiring": [65535, 0], "polly was retiring from": [65535, 0], "was retiring from the": [65535, 0], "retiring from the field": [65535, 0], "from the field with": [65535, 0], "the field with a": [65535, 0], "field with a slipper": [65535, 0], "with a slipper in": [65535, 0], "a slipper in her": [65535, 0], "slipper in her hand": [65535, 0], "in her hand and": [65535, 0], "her hand and triumph": [65535, 0], "hand and triumph in": [65535, 0], "and triumph in her": [65535, 0], "triumph in her eye": [65535, 0], "in her eye but": [65535, 0], "her eye but tom's": [65535, 0], "eye but tom's energy": [65535, 0], "but tom's energy did": [65535, 0], "tom's energy did not": [65535, 0], "energy did not last": [65535, 0], "did not last he": [65535, 0], "not last he began": [65535, 0], "last he began to": [65535, 0], "he began to think": [65535, 0], "began to think of": [65535, 0], "to think of the": [65535, 0], "think of the fun": [65535, 0], "of the fun he": [65535, 0], "the fun he had": [65535, 0], "fun he had planned": [65535, 0], "he had planned for": [65535, 0], "had planned for this": [65535, 0], "planned for this day": [65535, 0], "for this day and": [65535, 0], "this day and his": [65535, 0], "day and his sorrows": [65535, 0], "and his sorrows multiplied": [65535, 0], "his sorrows multiplied soon": [65535, 0], "sorrows multiplied soon the": [65535, 0], "multiplied soon the free": [65535, 0], "soon the free boys": [65535, 0], "the free boys would": [65535, 0], "free boys would come": [65535, 0], "boys would come tripping": [65535, 0], "would come tripping along": [65535, 0], "come tripping along on": [65535, 0], "tripping along on all": [65535, 0], "along on all sorts": [65535, 0], "on all sorts of": [65535, 0], "all sorts of delicious": [65535, 0], "sorts of delicious expeditions": [65535, 0], "of delicious expeditions and": [65535, 0], "delicious expeditions and they": [65535, 0], "expeditions and they would": [65535, 0], "and they would make": [65535, 0], "they would make a": [65535, 0], "would make a world": [65535, 0], "make a world of": [65535, 0], "a world of fun": [65535, 0], "world of fun of": [65535, 0], "of fun of him": [65535, 0], "fun of him for": [65535, 0], "of him for having": [65535, 0], "him for having to": [65535, 0], "for having to work": [65535, 0], "having to work the": [65535, 0], "to work the very": [65535, 0], "work the very thought": [65535, 0], "the very thought of": [65535, 0], "very thought of it": [65535, 0], "thought of it burnt": [65535, 0], "of it burnt him": [65535, 0], "it burnt him like": [65535, 0], "burnt him like fire": [65535, 0], "him like fire he": [65535, 0], "like fire he got": [65535, 0], "fire he got out": [65535, 0], "he got out his": [65535, 0], "got out his worldly": [65535, 0], "out his worldly wealth": [65535, 0], "his worldly wealth and": [65535, 0], "worldly wealth and examined": [65535, 0], "wealth and examined it": [65535, 0], "and examined it bits": [65535, 0], "examined it bits of": [65535, 0], "it bits of toys": [65535, 0], "bits of toys marbles": [65535, 0], "of toys marbles and": [65535, 0], "toys marbles and trash": [65535, 0], "marbles and trash enough": [65535, 0], "and trash enough to": [65535, 0], "trash enough to buy": [65535, 0], "enough to buy an": [65535, 0], "to buy an exchange": [65535, 0], "buy an exchange of": [65535, 0], "an exchange of work": [65535, 0], "exchange of work maybe": [65535, 0], "of work maybe but": [65535, 0], "work maybe but not": [65535, 0], "maybe but not half": [65535, 0], "but not half enough": [65535, 0], "not half enough to": [65535, 0], "half enough to buy": [65535, 0], "enough to buy so": [65535, 0], "to buy so much": [65535, 0], "buy so much as": [65535, 0], "so much as half": [65535, 0], "much as half an": [65535, 0], "as half an hour": [65535, 0], "half an hour of": [65535, 0], "an hour of pure": [65535, 0], "hour of pure freedom": [65535, 0], "of pure freedom so": [65535, 0], "pure freedom so he": [65535, 0], "freedom so he returned": [65535, 0], "so he returned his": [65535, 0], "he returned his straitened": [65535, 0], "returned his straitened means": [65535, 0], "his straitened means to": [65535, 0], "straitened means to his": [65535, 0], "means to his pocket": [65535, 0], "to his pocket and": [65535, 0], "his pocket and gave": [65535, 0], "pocket and gave up": [65535, 0], "and gave up the": [65535, 0], "gave up the idea": [65535, 0], "up the idea of": [65535, 0], "the idea of trying": [65535, 0], "idea of trying to": [65535, 0], "of trying to buy": [65535, 0], "trying to buy the": [65535, 0], "to buy the boys": [65535, 0], "buy the boys at": [65535, 0], "the boys at this": [65535, 0], "boys at this dark": [65535, 0], "at this dark and": [65535, 0], "this dark and hopeless": [65535, 0], "dark and hopeless moment": [65535, 0], "and hopeless moment an": [65535, 0], "hopeless moment an inspiration": [65535, 0], "moment an inspiration burst": [65535, 0], "an inspiration burst upon": [65535, 0], "inspiration burst upon him": [65535, 0], "burst upon him nothing": [65535, 0], "upon him nothing less": [65535, 0], "him nothing less than": [65535, 0], "nothing less than a": [65535, 0], "less than a great": [65535, 0], "than a great magnificent": [65535, 0], "a great magnificent inspiration": [65535, 0], "great magnificent inspiration he": [65535, 0], "magnificent inspiration he took": [65535, 0], "inspiration he took up": [65535, 0], "he took up his": [65535, 0], "took up his brush": [65535, 0], "up his brush and": [65535, 0], "his brush and went": [65535, 0], "brush and went tranquilly": [65535, 0], "and went tranquilly to": [65535, 0], "went tranquilly to work": [65535, 0], "tranquilly to work ben": [65535, 0], "to work ben rogers": [65535, 0], "work ben rogers hove": [65535, 0], "ben rogers hove in": [65535, 0], "rogers hove in sight": [65535, 0], "hove in sight presently": [65535, 0], "in sight presently the": [65535, 0], "sight presently the very": [65535, 0], "presently the very boy": [65535, 0], "the very boy of": [65535, 0], "very boy of all": [65535, 0], "boy of all boys": [65535, 0], "of all boys whose": [65535, 0], "all boys whose ridicule": [65535, 0], "boys whose ridicule he": [65535, 0], "whose ridicule he had": [65535, 0], "ridicule he had been": [65535, 0], "he had been dreading": [65535, 0], "had been dreading ben's": [65535, 0], "been dreading ben's gait": [65535, 0], "dreading ben's gait was": [65535, 0], "ben's gait was the": [65535, 0], "gait was the hop": [65535, 0], "was the hop skip": [65535, 0], "the hop skip and": [65535, 0], "hop skip and jump": [65535, 0], "skip and jump proof": [65535, 0], "and jump proof enough": [65535, 0], "jump proof enough that": [65535, 0], "proof enough that his": [65535, 0], "enough that his heart": [65535, 0], "that his heart was": [65535, 0], "his heart was light": [65535, 0], "heart was light and": [65535, 0], "was light and his": [65535, 0], "light and his anticipations": [65535, 0], "and his anticipations high": [65535, 0], "his anticipations high he": [65535, 0], "anticipations high he was": [65535, 0], "high he was eating": [65535, 0], "he was eating an": [65535, 0], "was eating an apple": [65535, 0], "eating an apple and": [65535, 0], "an apple and giving": [65535, 0], "apple and giving a": [65535, 0], "and giving a long": [65535, 0], "giving a long melodious": [65535, 0], "a long melodious whoop": [65535, 0], "long melodious whoop at": [65535, 0], "melodious whoop at intervals": [65535, 0], "whoop at intervals followed": [65535, 0], "at intervals followed by": [65535, 0], "intervals followed by a": [65535, 0], "followed by a deep": [65535, 0], "by a deep toned": [65535, 0], "a deep toned ding": [65535, 0], "deep toned ding dong": [65535, 0], "toned ding dong dong": [65535, 0], "ding dong dong ding": [65535, 0], "dong dong ding dong": [65535, 0], "dong ding dong dong": [65535, 0], "ding dong dong for": [65535, 0], "dong dong for he": [65535, 0], "dong for he was": [65535, 0], "for he was personating": [65535, 0], "he was personating a": [65535, 0], "was personating a steamboat": [65535, 0], "personating a steamboat as": [65535, 0], "a steamboat as he": [65535, 0], "steamboat as he drew": [65535, 0], "as he drew near": [65535, 0], "he drew near he": [65535, 0], "drew near he slackened": [65535, 0], "near he slackened speed": [65535, 0], "he slackened speed took": [65535, 0], "slackened speed took the": [65535, 0], "speed took the middle": [65535, 0], "took the middle of": [65535, 0], "middle of the street": [65535, 0], "of the street leaned": [65535, 0], "the street leaned far": [65535, 0], "street leaned far over": [65535, 0], "leaned far over to": [65535, 0], "far over to starboard": [65535, 0], "over to starboard and": [65535, 0], "to starboard and rounded": [65535, 0], "starboard and rounded to": [65535, 0], "and rounded to ponderously": [65535, 0], "rounded to ponderously and": [65535, 0], "to ponderously and with": [65535, 0], "ponderously and with laborious": [65535, 0], "and with laborious pomp": [65535, 0], "with laborious pomp and": [65535, 0], "laborious pomp and circumstance": [65535, 0], "pomp and circumstance for": [65535, 0], "and circumstance for he": [65535, 0], "circumstance for he was": [65535, 0], "he was personating the": [65535, 0], "was personating the big": [65535, 0], "personating the big missouri": [65535, 0], "the big missouri and": [65535, 0], "big missouri and considered": [65535, 0], "missouri and considered himself": [65535, 0], "and considered himself to": [65535, 0], "considered himself to be": [65535, 0], "himself to be drawing": [65535, 0], "to be drawing nine": [65535, 0], "be drawing nine feet": [65535, 0], "drawing nine feet of": [65535, 0], "nine feet of water": [65535, 0], "feet of water he": [65535, 0], "of water he was": [65535, 0], "water he was boat": [65535, 0], "he was boat and": [65535, 0], "was boat and captain": [65535, 0], "boat and captain and": [65535, 0], "and captain and engine": [65535, 0], "captain and engine bells": [65535, 0], "and engine bells combined": [65535, 0], "engine bells combined so": [65535, 0], "bells combined so he": [65535, 0], "combined so he had": [65535, 0], "so he had to": [65535, 0], "he had to imagine": [65535, 0], "had to imagine himself": [65535, 0], "to imagine himself standing": [65535, 0], "imagine himself standing on": [65535, 0], "himself standing on his": [65535, 0], "standing on his own": [65535, 0], "on his own hurricane": [65535, 0], "his own hurricane deck": [65535, 0], "own hurricane deck giving": [65535, 0], "hurricane deck giving the": [65535, 0], "deck giving the orders": [65535, 0], "giving the orders and": [65535, 0], "the orders and executing": [65535, 0], "orders and executing them": [65535, 0], "and executing them stop": [65535, 0], "executing them stop her": [65535, 0], "them stop her sir": [65535, 0], "stop her sir ting": [65535, 0], "her sir ting a": [65535, 0], "sir ting a ling": [65535, 0], "ting a ling ling": [65535, 0], "a ling ling the": [65535, 0], "ling ling the headway": [65535, 0], "ling the headway ran": [65535, 0], "the headway ran almost": [65535, 0], "headway ran almost out": [65535, 0], "ran almost out and": [65535, 0], "almost out and he": [65535, 0], "out and he drew": [65535, 0], "and he drew up": [65535, 0], "he drew up slowly": [65535, 0], "drew up slowly toward": [65535, 0], "up slowly toward the": [65535, 0], "slowly toward the sidewalk": [65535, 0], "toward the sidewalk ship": [65535, 0], "the sidewalk ship up": [65535, 0], "sidewalk ship up to": [65535, 0], "ship up to back": [65535, 0], "up to back ting": [65535, 0], "to back ting a": [65535, 0], "back ting a ling": [65535, 0], "a ling ling his": [65535, 0], "ling ling his arms": [65535, 0], "ling his arms straightened": [65535, 0], "his arms straightened and": [65535, 0], "arms straightened and stiffened": [65535, 0], "straightened and stiffened down": [65535, 0], "and stiffened down his": [65535, 0], "stiffened down his sides": [65535, 0], "down his sides set": [65535, 0], "his sides set her": [65535, 0], "sides set her back": [65535, 0], "set her back on": [65535, 0], "her back on the": [65535, 0], "back on the stabboard": [65535, 0], "on the stabboard ting": [65535, 0], "the stabboard ting a": [65535, 0], "stabboard ting a ling": [65535, 0], "a ling ling chow": [65535, 0], "ling ling chow ch": [65535, 0], "ling chow ch chow": [65535, 0], "chow ch chow wow": [65535, 0], "ch chow wow chow": [65535, 0], "chow wow chow his": [65535, 0], "wow chow his right": [65535, 0], "chow his right hand": [65535, 0], "his right hand meantime": [65535, 0], "right hand meantime describing": [65535, 0], "hand meantime describing stately": [65535, 0], "meantime describing stately circles": [65535, 0], "describing stately circles for": [65535, 0], "stately circles for it": [65535, 0], "circles for it was": [65535, 0], "for it was representing": [65535, 0], "it was representing a": [65535, 0], "was representing a forty": [65535, 0], "representing a forty foot": [65535, 0], "a forty foot wheel": [65535, 0], "forty foot wheel let": [65535, 0], "foot wheel let her": [65535, 0], "wheel let her go": [65535, 0], "let her go back": [65535, 0], "her go back on": [65535, 0], "go back on the": [65535, 0], "back on the labboard": [65535, 0], "on the labboard ting": [65535, 0], "the labboard ting a": [65535, 0], "labboard ting a ling": [65535, 0], "chow ch chow chow": [65535, 0], "ch chow chow the": [65535, 0], "chow chow the left": [65535, 0], "chow the left hand": [65535, 0], "the left hand began": [65535, 0], "left hand began to": [65535, 0], "hand began to describe": [65535, 0], "began to describe circles": [65535, 0], "to describe circles stop": [65535, 0], "describe circles stop the": [65535, 0], "circles stop the stabboard": [65535, 0], "stop the stabboard ting": [65535, 0], "a ling ling stop": [65535, 0], "ling ling stop the": [65535, 0], "ling stop the labboard": [65535, 0], "stop the labboard come": [65535, 0], "the labboard come ahead": [65535, 0], "labboard come ahead on": [65535, 0], "come ahead on the": [65535, 0], "ahead on the stabboard": [65535, 0], "on the stabboard stop": [65535, 0], "the stabboard stop her": [65535, 0], "stabboard stop her let": [65535, 0], "stop her let your": [65535, 0], "her let your outside": [65535, 0], "let your outside turn": [65535, 0], "your outside turn over": [65535, 0], "outside turn over slow": [65535, 0], "turn over slow ting": [65535, 0], "over slow ting a": [65535, 0], "slow ting a ling": [65535, 0], "ling ling chow ow": [65535, 0], "ling chow ow ow": [65535, 0], "chow ow ow get": [65535, 0], "ow ow get out": [65535, 0], "ow get out that": [65535, 0], "get out that head": [65535, 0], "out that head line": [65535, 0], "that head line lively": [65535, 0], "head line lively now": [65535, 0], "line lively now come": [65535, 0], "lively now come out": [65535, 0], "now come out with": [65535, 0], "come out with your": [65535, 0], "out with your spring": [65535, 0], "with your spring line": [65535, 0], "your spring line what're": [65535, 0], "spring line what're you": [65535, 0], "line what're you about": [65535, 0], "what're you about there": [65535, 0], "you about there take": [65535, 0], "about there take a": [65535, 0], "there take a turn": [65535, 0], "take a turn round": [65535, 0], "a turn round that": [65535, 0], "turn round that stump": [65535, 0], "round that stump with": [65535, 0], "that stump with the": [65535, 0], "stump with the bight": [65535, 0], "with the bight of": [65535, 0], "the bight of it": [65535, 0], "bight of it stand": [65535, 0], "of it stand by": [65535, 0], "it stand by that": [65535, 0], "stand by that stage": [65535, 0], "by that stage now": [65535, 0], "that stage now let": [65535, 0], "stage now let her": [65535, 0], "now let her go": [65535, 0], "let her go done": [65535, 0], "her go done with": [65535, 0], "go done with the": [65535, 0], "done with the engines": [65535, 0], "with the engines sir": [65535, 0], "the engines sir ting": [65535, 0], "engines sir ting a": [65535, 0], "a ling ling sh't": [65535, 0], "ling ling sh't s'h't": [65535, 0], "ling sh't s'h't sh't": [65535, 0], "sh't s'h't sh't trying": [65535, 0], "s'h't sh't trying the": [65535, 0], "sh't trying the gauge": [65535, 0], "trying the gauge cocks": [65535, 0], "the gauge cocks tom": [65535, 0], "gauge cocks tom went": [65535, 0], "cocks tom went on": [65535, 0], "tom went on whitewashing": [65535, 0], "went on whitewashing paid": [65535, 0], "on whitewashing paid no": [65535, 0], "whitewashing paid no attention": [65535, 0], "paid no attention to": [65535, 0], "no attention to the": [65535, 0], "attention to the steamboat": [65535, 0], "to the steamboat ben": [65535, 0], "the steamboat ben stared": [65535, 0], "steamboat ben stared a": [65535, 0], "ben stared a moment": [65535, 0], "stared a moment and": [65535, 0], "a moment and then": [65535, 0], "moment and then said": [65535, 0], "and then said hi": [65535, 0], "then said hi yi": [65535, 0], "said hi yi you're": [65535, 0], "hi yi you're up": [65535, 0], "yi you're up a": [65535, 0], "you're up a stump": [65535, 0], "up a stump ain't": [65535, 0], "a stump ain't you": [65535, 0], "stump ain't you no": [65535, 0], "ain't you no answer": [65535, 0], "you no answer tom": [65535, 0], "no answer tom surveyed": [65535, 0], "answer tom surveyed his": [65535, 0], "tom surveyed his last": [65535, 0], "surveyed his last touch": [65535, 0], "his last touch with": [65535, 0], "last touch with the": [65535, 0], "touch with the eye": [65535, 0], "with the eye of": [65535, 0], "the eye of an": [65535, 0], "eye of an artist": [65535, 0], "of an artist then": [65535, 0], "an artist then he": [65535, 0], "artist then he gave": [65535, 0], "then he gave his": [65535, 0], "he gave his brush": [65535, 0], "gave his brush another": [65535, 0], "his brush another gentle": [65535, 0], "brush another gentle sweep": [65535, 0], "another gentle sweep and": [65535, 0], "gentle sweep and surveyed": [65535, 0], "sweep and surveyed the": [65535, 0], "and surveyed the result": [65535, 0], "surveyed the result as": [65535, 0], "the result as before": [65535, 0], "result as before ben": [65535, 0], "as before ben ranged": [65535, 0], "before ben ranged up": [65535, 0], "ben ranged up alongside": [65535, 0], "ranged up alongside of": [65535, 0], "up alongside of him": [65535, 0], "alongside of him tom's": [65535, 0], "of him tom's mouth": [65535, 0], "him tom's mouth watered": [65535, 0], "tom's mouth watered for": [65535, 0], "mouth watered for the": [65535, 0], "watered for the apple": [65535, 0], "for the apple but": [65535, 0], "the apple but he": [65535, 0], "apple but he stuck": [65535, 0], "but he stuck to": [65535, 0], "he stuck to his": [65535, 0], "stuck to his work": [65535, 0], "to his work ben": [65535, 0], "his work ben said": [65535, 0], "work ben said hello": [65535, 0], "ben said hello old": [65535, 0], "said hello old chap": [65535, 0], "hello old chap you": [65535, 0], "old chap you got": [65535, 0], "chap you got to": [65535, 0], "you got to work": [65535, 0], "got to work hey": [65535, 0], "to work hey tom": [65535, 0], "work hey tom wheeled": [65535, 0], "hey tom wheeled suddenly": [65535, 0], "tom wheeled suddenly and": [65535, 0], "wheeled suddenly and said": [65535, 0], "suddenly and said why": [65535, 0], "and said why it's": [65535, 0], "said why it's you": [65535, 0], "why it's you ben": [65535, 0], "it's you ben i": [65535, 0], "you ben i warn't": [65535, 0], "ben i warn't noticing": [65535, 0], "i warn't noticing say": [65535, 0], "warn't noticing say i'm": [65535, 0], "noticing say i'm going": [65535, 0], "say i'm going in": [65535, 0], "i'm going in a": [65535, 0], "going in a swimming": [65535, 0], "in a swimming i": [65535, 0], "a swimming i am": [65535, 0], "swimming i am don't": [65535, 0], "i am don't you": [65535, 0], "am don't you wish": [65535, 0], "don't you wish you": [65535, 0], "you wish you could": [65535, 0], "wish you could but": [65535, 0], "you could but of": [65535, 0], "could but of course": [65535, 0], "but of course you'd": [65535, 0], "of course you'd druther": [65535, 0], "course you'd druther work": [65535, 0], "you'd druther work wouldn't": [65535, 0], "druther work wouldn't you": [65535, 0], "work wouldn't you course": [65535, 0], "wouldn't you course you": [65535, 0], "you course you would": [65535, 0], "course you would tom": [65535, 0], "you would tom contemplated": [65535, 0], "would tom contemplated the": [65535, 0], "tom contemplated the boy": [65535, 0], "contemplated the boy a": [65535, 0], "the boy a bit": [65535, 0], "boy a bit and": [65535, 0], "a bit and said": [65535, 0], "bit and said what": [65535, 0], "and said what do": [65535, 0], "said what do you": [65535, 0], "what do you call": [65535, 0], "do you call work": [65535, 0], "you call work why": [65535, 0], "call work why ain't": [65535, 0], "work why ain't that": [65535, 0], "why ain't that work": [65535, 0], "ain't that work tom": [65535, 0], "that work tom resumed": [65535, 0], "work tom resumed his": [65535, 0], "tom resumed his whitewashing": [65535, 0], "resumed his whitewashing and": [65535, 0], "his whitewashing and answered": [65535, 0], "whitewashing and answered carelessly": [65535, 0], "and answered carelessly well": [65535, 0], "answered carelessly well maybe": [65535, 0], "carelessly well maybe it": [65535, 0], "well maybe it is": [65535, 0], "maybe it is and": [65535, 0], "it is and maybe": [65535, 0], "is and maybe it": [65535, 0], "and maybe it ain't": [65535, 0], "maybe it ain't all": [65535, 0], "it ain't all i": [65535, 0], "ain't all i know": [65535, 0], "all i know is": [65535, 0], "i know is it": [65535, 0], "know is it suits": [65535, 0], "is it suits tom": [65535, 0], "it suits tom sawyer": [65535, 0], "suits tom sawyer oh": [65535, 0], "tom sawyer oh come": [65535, 0], "sawyer oh come now": [65535, 0], "oh come now you": [65535, 0], "come now you don't": [65535, 0], "now you don't mean": [65535, 0], "you don't mean to": [65535, 0], "don't mean to let": [65535, 0], "mean to let on": [65535, 0], "to let on that": [65535, 0], "let on that you": [65535, 0], "on that you like": [65535, 0], "that you like it": [65535, 0], "you like it the": [65535, 0], "like it the brush": [65535, 0], "it the brush continued": [65535, 0], "the brush continued to": [65535, 0], "brush continued to move": [65535, 0], "continued to move like": [65535, 0], "to move like it": [65535, 0], "move like it well": [65535, 0], "like it well i": [65535, 0], "it well i don't": [65535, 0], "well i don't see": [65535, 0], "i don't see why": [65535, 0], "don't see why i": [65535, 0], "see why i oughtn't": [65535, 0], "why i oughtn't to": [65535, 0], "i oughtn't to like": [65535, 0], "oughtn't to like it": [65535, 0], "to like it does": [65535, 0], "like it does a": [65535, 0], "it does a boy": [65535, 0], "does a boy get": [65535, 0], "a boy get a": [65535, 0], "boy get a chance": [65535, 0], "get a chance to": [65535, 0], "a chance to whitewash": [65535, 0], "chance to whitewash a": [65535, 0], "to whitewash a fence": [65535, 0], "whitewash a fence every": [65535, 0], "a fence every day": [65535, 0], "fence every day that": [65535, 0], "every day that put": [65535, 0], "day that put the": [65535, 0], "that put the thing": [65535, 0], "put the thing in": [65535, 0], "the thing in a": [65535, 0], "thing in a new": [65535, 0], "in a new light": [65535, 0], "a new light ben": [65535, 0], "new light ben stopped": [65535, 0], "light ben stopped nibbling": [65535, 0], "ben stopped nibbling his": [65535, 0], "stopped nibbling his apple": [65535, 0], "nibbling his apple tom": [65535, 0], "his apple tom swept": [65535, 0], "apple tom swept his": [65535, 0], "tom swept his brush": [65535, 0], "swept his brush daintily": [65535, 0], "his brush daintily back": [65535, 0], "brush daintily back and": [65535, 0], "daintily back and forth": [65535, 0], "back and forth stepped": [65535, 0], "and forth stepped back": [65535, 0], "forth stepped back to": [65535, 0], "stepped back to note": [65535, 0], "back to note the": [65535, 0], "to note the effect": [65535, 0], "note the effect added": [65535, 0], "the effect added a": [65535, 0], "effect added a touch": [65535, 0], "added a touch here": [65535, 0], "a touch here and": [65535, 0], "touch here and there": [65535, 0], "here and there criticised": [65535, 0], "and there criticised the": [65535, 0], "there criticised the effect": [65535, 0], "criticised the effect again": [65535, 0], "the effect again ben": [65535, 0], "effect again ben watching": [65535, 0], "again ben watching every": [65535, 0], "ben watching every move": [65535, 0], "watching every move and": [65535, 0], "every move and getting": [65535, 0], "move and getting more": [65535, 0], "and getting more and": [65535, 0], "getting more and more": [65535, 0], "more and more interested": [65535, 0], "and more interested more": [65535, 0], "more interested more and": [65535, 0], "interested more and more": [65535, 0], "more and more absorbed": [65535, 0], "and more absorbed presently": [65535, 0], "more absorbed presently he": [65535, 0], "absorbed presently he said": [65535, 0], "presently he said say": [65535, 0], "he said say tom": [65535, 0], "said say tom let": [65535, 0], "say tom let me": [65535, 0], "tom let me whitewash": [65535, 0], "let me whitewash a": [65535, 0], "me whitewash a little": [65535, 0], "whitewash a little tom": [65535, 0], "a little tom considered": [65535, 0], "little tom considered was": [65535, 0], "tom considered was about": [65535, 0], "considered was about to": [65535, 0], "was about to consent": [65535, 0], "about to consent but": [65535, 0], "to consent but he": [65535, 0], "consent but he altered": [65535, 0], "but he altered his": [65535, 0], "he altered his mind": [65535, 0], "altered his mind no": [65535, 0], "his mind no no": [65535, 0], "mind no no i": [65535, 0], "no no i reckon": [65535, 0], "no i reckon it": [65535, 0], "i reckon it wouldn't": [65535, 0], "reckon it wouldn't hardly": [65535, 0], "it wouldn't hardly do": [65535, 0], "wouldn't hardly do ben": [65535, 0], "hardly do ben you": [65535, 0], "do ben you see": [65535, 0], "ben you see aunt": [65535, 0], "you see aunt polly's": [65535, 0], "see aunt polly's awful": [65535, 0], "aunt polly's awful particular": [65535, 0], "polly's awful particular about": [65535, 0], "awful particular about this": [65535, 0], "particular about this fence": [65535, 0], "about this fence right": [65535, 0], "this fence right here": [65535, 0], "fence right here on": [65535, 0], "right here on the": [65535, 0], "here on the street": [65535, 0], "on the street you": [65535, 0], "the street you know": [65535, 0], "street you know but": [65535, 0], "you know but if": [65535, 0], "know but if it": [65535, 0], "but if it was": [65535, 0], "if it was the": [65535, 0], "it was the back": [65535, 0], "was the back fence": [65535, 0], "the back fence i": [65535, 0], "back fence i wouldn't": [65535, 0], "fence i wouldn't mind": [65535, 0], "i wouldn't mind and": [65535, 0], "wouldn't mind and she": [65535, 0], "mind and she wouldn't": [65535, 0], "and she wouldn't yes": [65535, 0], "she wouldn't yes she's": [65535, 0], "wouldn't yes she's awful": [65535, 0], "yes she's awful particular": [65535, 0], "she's awful particular about": [65535, 0], "about this fence it's": [65535, 0], "this fence it's got": [65535, 0], "fence it's got to": [65535, 0], "it's got to be": [65535, 0], "got to be done": [65535, 0], "to be done very": [65535, 0], "be done very careful": [65535, 0], "done very careful i": [65535, 0], "very careful i reckon": [65535, 0], "careful i reckon there": [65535, 0], "i reckon there ain't": [65535, 0], "reckon there ain't one": [65535, 0], "there ain't one boy": [65535, 0], "ain't one boy in": [65535, 0], "one boy in a": [65535, 0], "boy in a thousand": [65535, 0], "in a thousand maybe": [65535, 0], "a thousand maybe two": [65535, 0], "thousand maybe two thousand": [65535, 0], "maybe two thousand that": [65535, 0], "two thousand that can": [65535, 0], "thousand that can do": [65535, 0], "that can do it": [65535, 0], "can do it the": [65535, 0], "do it the way": [65535, 0], "it the way it's": [65535, 0], "the way it's got": [65535, 0], "way it's got to": [65535, 0], "to be done no": [65535, 0], "be done no is": [65535, 0], "done no is that": [65535, 0], "is that so oh": [65535, 0], "that so oh come": [65535, 0], "so oh come now": [65535, 0], "oh come now lemme": [65535, 0], "come now lemme just": [65535, 0], "now lemme just try": [65535, 0], "lemme just try only": [65535, 0], "just try only just": [65535, 0], "try only just a": [65535, 0], "only just a little": [65535, 0], "just a little i'd": [65535, 0], "a little i'd let": [65535, 0], "little i'd let you": [65535, 0], "i'd let you if": [65535, 0], "let you if you": [65535, 0], "you if you was": [65535, 0], "if you was me": [65535, 0], "you was me tom": [65535, 0], "was me tom ben": [65535, 0], "me tom ben i'd": [65535, 0], "tom ben i'd like": [65535, 0], "ben i'd like to": [65535, 0], "i'd like to honest": [65535, 0], "like to honest injun": [65535, 0], "to honest injun but": [65535, 0], "honest injun but aunt": [65535, 0], "injun but aunt polly": [65535, 0], "but aunt polly well": [65535, 0], "aunt polly well jim": [65535, 0], "polly well jim wanted": [65535, 0], "well jim wanted to": [65535, 0], "jim wanted to do": [65535, 0], "wanted to do it": [65535, 0], "to do it but": [65535, 0], "do it but she": [65535, 0], "it but she wouldn't": [65535, 0], "but she wouldn't let": [65535, 0], "she wouldn't let him": [65535, 0], "wouldn't let him sid": [65535, 0], "let him sid wanted": [65535, 0], "him sid wanted to": [65535, 0], "sid wanted to do": [65535, 0], "to do it and": [65535, 0], "do it and she": [65535, 0], "it and she wouldn't": [65535, 0], "and she wouldn't let": [65535, 0], "she wouldn't let sid": [65535, 0], "wouldn't let sid now": [65535, 0], "let sid now don't": [65535, 0], "sid now don't you": [65535, 0], "now don't you see": [65535, 0], "don't you see how": [65535, 0], "you see how i'm": [65535, 0], "see how i'm fixed": [65535, 0], "how i'm fixed if": [65535, 0], "i'm fixed if you": [65535, 0], "fixed if you was": [65535, 0], "if you was to": [65535, 0], "you was to tackle": [65535, 0], "was to tackle this": [65535, 0], "to tackle this fence": [65535, 0], "tackle this fence and": [65535, 0], "this fence and anything": [65535, 0], "fence and anything was": [65535, 0], "and anything was to": [65535, 0], "anything was to happen": [65535, 0], "was to happen to": [65535, 0], "to happen to it": [65535, 0], "happen to it oh": [65535, 0], "to it oh shucks": [65535, 0], "it oh shucks i'll": [65535, 0], "oh shucks i'll be": [65535, 0], "shucks i'll be just": [65535, 0], "i'll be just as": [65535, 0], "be just as careful": [65535, 0], "just as careful now": [65535, 0], "as careful now lemme": [65535, 0], "careful now lemme try": [65535, 0], "now lemme try say": [65535, 0], "lemme try say i'll": [65535, 0], "try say i'll give": [65535, 0], "say i'll give you": [65535, 0], "i'll give you the": [65535, 0], "give you the core": [65535, 0], "you the core of": [65535, 0], "the core of my": [65535, 0], "core of my apple": [65535, 0], "of my apple well": [65535, 0], "my apple well here": [65535, 0], "apple well here no": [65535, 0], "well here no ben": [65535, 0], "here no ben now": [65535, 0], "no ben now don't": [65535, 0], "ben now don't i'm": [65535, 0], "now don't i'm afeard": [65535, 0], "don't i'm afeard i'll": [65535, 0], "i'm afeard i'll give": [65535, 0], "afeard i'll give you": [65535, 0], "i'll give you all": [65535, 0], "give you all of": [65535, 0], "you all of it": [65535, 0], "all of it tom": [65535, 0], "of it tom gave": [65535, 0], "it tom gave up": [65535, 0], "tom gave up the": [65535, 0], "gave up the brush": [65535, 0], "up the brush with": [65535, 0], "the brush with reluctance": [65535, 0], "brush with reluctance in": [65535, 0], "with reluctance in his": [65535, 0], "reluctance in his face": [65535, 0], "in his face but": [65535, 0], "his face but alacrity": [65535, 0], "face but alacrity in": [65535, 0], "but alacrity in his": [65535, 0], "alacrity in his heart": [65535, 0], "in his heart and": [65535, 0], "his heart and while": [65535, 0], "heart and while the": [65535, 0], "and while the late": [65535, 0], "while the late steamer": [65535, 0], "the late steamer big": [65535, 0], "late steamer big missouri": [65535, 0], "steamer big missouri worked": [65535, 0], "big missouri worked and": [65535, 0], "missouri worked and sweated": [65535, 0], "worked and sweated in": [65535, 0], "and sweated in the": [65535, 0], "sweated in the sun": [65535, 0], "in the sun the": [65535, 0], "the sun the retired": [65535, 0], "sun the retired artist": [65535, 0], "the retired artist sat": [65535, 0], "retired artist sat on": [65535, 0], "artist sat on a": [65535, 0], "sat on a barrel": [65535, 0], "on a barrel in": [65535, 0], "a barrel in the": [65535, 0], "barrel in the shade": [65535, 0], "in the shade close": [65535, 0], "the shade close by": [65535, 0], "shade close by dangled": [65535, 0], "close by dangled his": [65535, 0], "by dangled his legs": [65535, 0], "dangled his legs munched": [65535, 0], "his legs munched his": [65535, 0], "legs munched his apple": [65535, 0], "munched his apple and": [65535, 0], "his apple and planned": [65535, 0], "apple and planned the": [65535, 0], "and planned the slaughter": [65535, 0], "planned the slaughter of": [65535, 0], "the slaughter of more": [65535, 0], "slaughter of more innocents": [65535, 0], "of more innocents there": [65535, 0], "more innocents there was": [65535, 0], "innocents there was no": [65535, 0], "there was no lack": [65535, 0], "was no lack of": [65535, 0], "no lack of material": [65535, 0], "lack of material boys": [65535, 0], "of material boys happened": [65535, 0], "material boys happened along": [65535, 0], "boys happened along every": [65535, 0], "happened along every little": [65535, 0], "along every little while": [65535, 0], "every little while they": [65535, 0], "little while they came": [65535, 0], "while they came to": [65535, 0], "they came to jeer": [65535, 0], "came to jeer but": [65535, 0], "to jeer but remained": [65535, 0], "jeer but remained to": [65535, 0], "but remained to whitewash": [65535, 0], "remained to whitewash by": [65535, 0], "to whitewash by the": [65535, 0], "whitewash by the time": [65535, 0], "by the time ben": [65535, 0], "the time ben was": [65535, 0], "time ben was fagged": [65535, 0], "ben was fagged out": [65535, 0], "was fagged out tom": [65535, 0], "fagged out tom had": [65535, 0], "out tom had traded": [65535, 0], "tom had traded the": [65535, 0], "had traded the next": [65535, 0], "traded the next chance": [65535, 0], "the next chance to": [65535, 0], "next chance to billy": [65535, 0], "chance to billy fisher": [65535, 0], "to billy fisher for": [65535, 0], "billy fisher for a": [65535, 0], "fisher for a kite": [65535, 0], "for a kite in": [65535, 0], "a kite in good": [65535, 0], "kite in good repair": [65535, 0], "in good repair and": [65535, 0], "good repair and when": [65535, 0], "repair and when he": [65535, 0], "and when he played": [65535, 0], "when he played out": [65535, 0], "he played out johnny": [65535, 0], "played out johnny miller": [65535, 0], "out johnny miller bought": [65535, 0], "johnny miller bought in": [65535, 0], "miller bought in for": [65535, 0], "bought in for a": [65535, 0], "in for a dead": [65535, 0], "for a dead rat": [65535, 0], "a dead rat and": [65535, 0], "dead rat and a": [65535, 0], "rat and a string": [65535, 0], "and a string to": [65535, 0], "a string to swing": [65535, 0], "string to swing it": [65535, 0], "to swing it with": [65535, 0], "swing it with and": [65535, 0], "it with and so": [65535, 0], "with and so on": [65535, 0], "and so on and": [65535, 0], "so on and so": [65535, 0], "on and so on": [65535, 0], "and so on hour": [65535, 0], "so on hour after": [65535, 0], "on hour after hour": [65535, 0], "hour after hour and": [65535, 0], "after hour and when": [65535, 0], "hour and when the": [65535, 0], "and when the middle": [65535, 0], "when the middle of": [65535, 0], "middle of the afternoon": [65535, 0], "of the afternoon came": [65535, 0], "the afternoon came from": [65535, 0], "afternoon came from being": [65535, 0], "came from being a": [65535, 0], "from being a poor": [65535, 0], "being a poor poverty": [65535, 0], "a poor poverty stricken": [65535, 0], "poor poverty stricken boy": [65535, 0], "poverty stricken boy in": [65535, 0], "stricken boy in the": [65535, 0], "boy in the morning": [65535, 0], "in the morning tom": [65535, 0], "the morning tom was": [65535, 0], "morning tom was literally": [65535, 0], "tom was literally rolling": [65535, 0], "was literally rolling in": [65535, 0], "literally rolling in wealth": [65535, 0], "rolling in wealth he": [65535, 0], "in wealth he had": [65535, 0], "wealth he had besides": [65535, 0], "he had besides the": [65535, 0], "had besides the things": [65535, 0], "besides the things before": [65535, 0], "the things before mentioned": [65535, 0], "things before mentioned twelve": [65535, 0], "before mentioned twelve marbles": [65535, 0], "mentioned twelve marbles part": [65535, 0], "twelve marbles part of": [65535, 0], "marbles part of a": [65535, 0], "part of a jews": [65535, 0], "of a jews harp": [65535, 0], "a jews harp a": [65535, 0], "jews harp a piece": [65535, 0], "harp a piece of": [65535, 0], "a piece of blue": [65535, 0], "piece of blue bottle": [65535, 0], "of blue bottle glass": [65535, 0], "blue bottle glass to": [65535, 0], "bottle glass to look": [65535, 0], "glass to look through": [65535, 0], "to look through a": [65535, 0], "look through a spool": [65535, 0], "through a spool cannon": [65535, 0], "a spool cannon a": [65535, 0], "spool cannon a key": [65535, 0], "cannon a key that": [65535, 0], "a key that wouldn't": [65535, 0], "key that wouldn't unlock": [65535, 0], "that wouldn't unlock anything": [65535, 0], "wouldn't unlock anything a": [65535, 0], "unlock anything a fragment": [65535, 0], "anything a fragment of": [65535, 0], "a fragment of chalk": [65535, 0], "fragment of chalk a": [65535, 0], "of chalk a glass": [65535, 0], "chalk a glass stopper": [65535, 0], "a glass stopper of": [65535, 0], "glass stopper of a": [65535, 0], "stopper of a decanter": [65535, 0], "of a decanter a": [65535, 0], "a decanter a tin": [65535, 0], "decanter a tin soldier": [65535, 0], "a tin soldier a": [65535, 0], "tin soldier a couple": [65535, 0], "soldier a couple of": [65535, 0], "a couple of tadpoles": [65535, 0], "couple of tadpoles six": [65535, 0], "of tadpoles six fire": [65535, 0], "tadpoles six fire crackers": [65535, 0], "six fire crackers a": [65535, 0], "fire crackers a kitten": [65535, 0], "crackers a kitten with": [65535, 0], "a kitten with only": [65535, 0], "kitten with only one": [65535, 0], "with only one eye": [65535, 0], "only one eye a": [65535, 0], "one eye a brass": [65535, 0], "eye a brass doorknob": [65535, 0], "a brass doorknob a": [65535, 0], "brass doorknob a dog": [65535, 0], "doorknob a dog collar": [65535, 0], "a dog collar but": [65535, 0], "dog collar but no": [65535, 0], "collar but no dog": [65535, 0], "but no dog the": [65535, 0], "no dog the handle": [65535, 0], "dog the handle of": [65535, 0], "the handle of a": [65535, 0], "handle of a knife": [65535, 0], "of a knife four": [65535, 0], "a knife four pieces": [65535, 0], "knife four pieces of": [65535, 0], "four pieces of orange": [65535, 0], "pieces of orange peel": [65535, 0], "of orange peel and": [65535, 0], "orange peel and a": [65535, 0], "peel and a dilapidated": [65535, 0], "and a dilapidated old": [65535, 0], "a dilapidated old window": [65535, 0], "dilapidated old window sash": [65535, 0], "old window sash he": [65535, 0], "window sash he had": [65535, 0], "sash he had had": [65535, 0], "he had had a": [65535, 0], "had had a nice": [65535, 0], "had a nice good": [65535, 0], "a nice good idle": [65535, 0], "nice good idle time": [65535, 0], "good idle time all": [65535, 0], "idle time all the": [65535, 0], "time all the while": [65535, 0], "all the while plenty": [65535, 0], "the while plenty of": [65535, 0], "while plenty of company": [65535, 0], "plenty of company and": [65535, 0], "of company and the": [65535, 0], "company and the fence": [65535, 0], "and the fence had": [65535, 0], "the fence had three": [65535, 0], "fence had three coats": [65535, 0], "had three coats of": [65535, 0], "three coats of whitewash": [65535, 0], "coats of whitewash on": [65535, 0], "of whitewash on it": [65535, 0], "whitewash on it if": [65535, 0], "on it if he": [65535, 0], "it if he hadn't": [65535, 0], "if he hadn't run": [65535, 0], "he hadn't run out": [65535, 0], "hadn't run out of": [65535, 0], "run out of whitewash": [65535, 0], "out of whitewash he": [65535, 0], "of whitewash he would": [65535, 0], "whitewash he would have": [65535, 0], "he would have bankrupted": [65535, 0], "would have bankrupted every": [65535, 0], "have bankrupted every boy": [65535, 0], "bankrupted every boy in": [65535, 0], "every boy in the": [65535, 0], "boy in the village": [65535, 0], "in the village tom": [65535, 0], "the village tom said": [65535, 0], "village tom said to": [65535, 0], "tom said to himself": [65535, 0], "to himself that it": [65535, 0], "himself that it was": [65535, 0], "that it was not": [65535, 0], "it was not such": [65535, 0], "was not such a": [65535, 0], "not such a hollow": [65535, 0], "such a hollow world": [65535, 0], "a hollow world after": [65535, 0], "hollow world after all": [65535, 0], "world after all he": [65535, 0], "after all he had": [65535, 0], "all he had discovered": [65535, 0], "he had discovered a": [65535, 0], "had discovered a great": [65535, 0], "discovered a great law": [65535, 0], "a great law of": [65535, 0], "great law of human": [65535, 0], "law of human action": [65535, 0], "of human action without": [65535, 0], "human action without knowing": [65535, 0], "action without knowing it": [65535, 0], "without knowing it namely": [65535, 0], "knowing it namely that": [65535, 0], "it namely that in": [65535, 0], "namely that in order": [65535, 0], "that in order to": [65535, 0], "in order to make": [65535, 0], "order to make a": [65535, 0], "to make a man": [65535, 0], "make a man or": [65535, 0], "a man or a": [65535, 0], "man or a boy": [65535, 0], "or a boy covet": [65535, 0], "a boy covet a": [65535, 0], "boy covet a thing": [65535, 0], "covet a thing it": [65535, 0], "a thing it is": [65535, 0], "thing it is only": [65535, 0], "it is only necessary": [65535, 0], "is only necessary to": [65535, 0], "only necessary to make": [65535, 0], "necessary to make the": [65535, 0], "to make the thing": [65535, 0], "make the thing difficult": [65535, 0], "the thing difficult to": [65535, 0], "thing difficult to attain": [65535, 0], "difficult to attain if": [65535, 0], "to attain if he": [65535, 0], "attain if he had": [65535, 0], "if he had been": [65535, 0], "he had been a": [65535, 0], "had been a great": [65535, 0], "been a great and": [65535, 0], "a great and wise": [65535, 0], "great and wise philosopher": [65535, 0], "and wise philosopher like": [65535, 0], "wise philosopher like the": [65535, 0], "philosopher like the writer": [65535, 0], "like the writer of": [65535, 0], "the writer of this": [65535, 0], "writer of this book": [65535, 0], "of this book he": [65535, 0], "this book he would": [65535, 0], "book he would now": [65535, 0], "he would now have": [65535, 0], "would now have comprehended": [65535, 0], "now have comprehended that": [65535, 0], "have comprehended that work": [65535, 0], "comprehended that work consists": [65535, 0], "that work consists of": [65535, 0], "work consists of whatever": [65535, 0], "consists of whatever a": [65535, 0], "of whatever a body": [65535, 0], "whatever a body is": [65535, 0], "a body is obliged": [65535, 0], "body is obliged to": [65535, 0], "is obliged to do": [65535, 0], "obliged to do and": [65535, 0], "to do and that": [65535, 0], "do and that play": [65535, 0], "and that play consists": [65535, 0], "that play consists of": [65535, 0], "play consists of whatever": [65535, 0], "a body is not": [65535, 0], "body is not obliged": [65535, 0], "is not obliged to": [65535, 0], "not obliged to do": [65535, 0], "to do and this": [65535, 0], "do and this would": [65535, 0], "and this would help": [65535, 0], "this would help him": [65535, 0], "would help him to": [65535, 0], "help him to understand": [65535, 0], "him to understand why": [65535, 0], "to understand why constructing": [65535, 0], "understand why constructing artificial": [65535, 0], "why constructing artificial flowers": [65535, 0], "constructing artificial flowers or": [65535, 0], "artificial flowers or performing": [65535, 0], "flowers or performing on": [65535, 0], "or performing on a": [65535, 0], "performing on a tread": [65535, 0], "on a tread mill": [65535, 0], "a tread mill is": [65535, 0], "tread mill is work": [65535, 0], "mill is work while": [65535, 0], "is work while rolling": [65535, 0], "work while rolling ten": [65535, 0], "while rolling ten pins": [65535, 0], "rolling ten pins or": [65535, 0], "ten pins or climbing": [65535, 0], "pins or climbing mont": [65535, 0], "or climbing mont blanc": [65535, 0], "climbing mont blanc is": [65535, 0], "mont blanc is only": [65535, 0], "blanc is only amusement": [65535, 0], "is only amusement there": [65535, 0], "only amusement there are": [65535, 0], "amusement there are wealthy": [65535, 0], "there are wealthy gentlemen": [65535, 0], "are wealthy gentlemen in": [65535, 0], "wealthy gentlemen in england": [65535, 0], "gentlemen in england who": [65535, 0], "in england who drive": [65535, 0], "england who drive four": [65535, 0], "who drive four horse": [65535, 0], "drive four horse passenger": [65535, 0], "four horse passenger coaches": [65535, 0], "horse passenger coaches twenty": [65535, 0], "passenger coaches twenty or": [65535, 0], "coaches twenty or thirty": [65535, 0], "twenty or thirty miles": [65535, 0], "or thirty miles on": [65535, 0], "thirty miles on a": [65535, 0], "miles on a daily": [65535, 0], "on a daily line": [65535, 0], "a daily line in": [65535, 0], "daily line in the": [65535, 0], "line in the summer": [65535, 0], "in the summer because": [65535, 0], "the summer because the": [65535, 0], "summer because the privilege": [65535, 0], "because the privilege costs": [65535, 0], "the privilege costs them": [65535, 0], "privilege costs them considerable": [65535, 0], "costs them considerable money": [65535, 0], "them considerable money but": [65535, 0], "considerable money but if": [65535, 0], "money but if they": [65535, 0], "but if they were": [65535, 0], "if they were offered": [65535, 0], "they were offered wages": [65535, 0], "were offered wages for": [65535, 0], "offered wages for the": [65535, 0], "wages for the service": [65535, 0], "for the service that": [65535, 0], "the service that would": [65535, 0], "service that would turn": [65535, 0], "that would turn it": [65535, 0], "would turn it into": [65535, 0], "turn it into work": [65535, 0], "it into work and": [65535, 0], "into work and then": [65535, 0], "work and then they": [65535, 0], "and then they would": [65535, 0], "then they would resign": [65535, 0], "they would resign the": [65535, 0], "would resign the boy": [65535, 0], "resign the boy mused": [65535, 0], "the boy mused awhile": [65535, 0], "boy mused awhile over": [65535, 0], "mused awhile over the": [65535, 0], "awhile over the substantial": [65535, 0], "over the substantial change": [65535, 0], "the substantial change which": [65535, 0], "substantial change which had": [65535, 0], "change which had taken": [65535, 0], "which had taken place": [65535, 0], "had taken place in": [65535, 0], "taken place in his": [65535, 0], "place in his worldly": [65535, 0], "in his worldly circumstances": [65535, 0], "his worldly circumstances and": [65535, 0], "worldly circumstances and then": [65535, 0], "circumstances and then wended": [65535, 0], "and then wended toward": [65535, 0], "then wended toward headquarters": [65535, 0], "wended toward headquarters to": [65535, 0], "toward headquarters to report": [65535, 0], "saturday morning was come and": [65535, 0], "morning was come and all": [65535, 0], "was come and all the": [65535, 0], "come and all the summer": [65535, 0], "and all the summer world": [65535, 0], "all the summer world was": [65535, 0], "the summer world was bright": [65535, 0], "summer world was bright and": [65535, 0], "world was bright and fresh": [65535, 0], "was bright and fresh and": [65535, 0], "bright and fresh and brimming": [65535, 0], "and fresh and brimming with": [65535, 0], "fresh and brimming with life": [65535, 0], "and brimming with life there": [65535, 0], "brimming with life there was": [65535, 0], "with life there was a": [65535, 0], "life there was a song": [65535, 0], "there was a song in": [65535, 0], "was a song in every": [65535, 0], "a song in every heart": [65535, 0], "song in every heart and": [65535, 0], "in every heart and if": [65535, 0], "every heart and if the": [65535, 0], "heart and if the heart": [65535, 0], "and if the heart was": [65535, 0], "if the heart was young": [65535, 0], "the heart was young the": [65535, 0], "heart was young the music": [65535, 0], "was young the music issued": [65535, 0], "young the music issued at": [65535, 0], "the music issued at the": [65535, 0], "music issued at the lips": [65535, 0], "issued at the lips there": [65535, 0], "at the lips there was": [65535, 0], "the lips there was cheer": [65535, 0], "lips there was cheer in": [65535, 0], "there was cheer in every": [65535, 0], "was cheer in every face": [65535, 0], "cheer in every face and": [65535, 0], "in every face and a": [65535, 0], "every face and a spring": [65535, 0], "face and a spring in": [65535, 0], "and a spring in every": [65535, 0], "a spring in every step": [65535, 0], "spring in every step the": [65535, 0], "in every step the locust": [65535, 0], "every step the locust trees": [65535, 0], "step the locust trees were": [65535, 0], "the locust trees were in": [65535, 0], "locust trees were in bloom": [65535, 0], "trees were in bloom and": [65535, 0], "were in bloom and the": [65535, 0], "in bloom and the fragrance": [65535, 0], "bloom and the fragrance of": [65535, 0], "and the fragrance of the": [65535, 0], "the fragrance of the blossoms": [65535, 0], "fragrance of the blossoms filled": [65535, 0], "of the blossoms filled the": [65535, 0], "the blossoms filled the air": [65535, 0], "blossoms filled the air cardiff": [65535, 0], "filled the air cardiff hill": [65535, 0], "the air cardiff hill beyond": [65535, 0], "air cardiff hill beyond the": [65535, 0], "cardiff hill beyond the village": [65535, 0], "hill beyond the village and": [65535, 0], "beyond the village and above": [65535, 0], "the village and above it": [65535, 0], "village and above it was": [65535, 0], "and above it was green": [65535, 0], "above it was green with": [65535, 0], "it was green with vegetation": [65535, 0], "was green with vegetation and": [65535, 0], "green with vegetation and it": [65535, 0], "with vegetation and it lay": [65535, 0], "vegetation and it lay just": [65535, 0], "and it lay just far": [65535, 0], "it lay just far enough": [65535, 0], "lay just far enough away": [65535, 0], "just far enough away to": [65535, 0], "far enough away to seem": [65535, 0], "enough away to seem a": [65535, 0], "away to seem a delectable": [65535, 0], "to seem a delectable land": [65535, 0], "seem a delectable land dreamy": [65535, 0], "a delectable land dreamy reposeful": [65535, 0], "delectable land dreamy reposeful and": [65535, 0], "land dreamy reposeful and inviting": [65535, 0], "dreamy reposeful and inviting tom": [65535, 0], "reposeful and inviting tom appeared": [65535, 0], "and inviting tom appeared on": [65535, 0], "inviting tom appeared on the": [65535, 0], "tom appeared on the sidewalk": [65535, 0], "appeared on the sidewalk with": [65535, 0], "on the sidewalk with a": [65535, 0], "the sidewalk with a bucket": [65535, 0], "sidewalk with a bucket of": [65535, 0], "with a bucket of whitewash": [65535, 0], "a bucket of whitewash and": [65535, 0], "bucket of whitewash and a": [65535, 0], "of whitewash and a long": [65535, 0], "whitewash and a long handled": [65535, 0], "and a long handled brush": [65535, 0], "a long handled brush he": [65535, 0], "long handled brush he surveyed": [65535, 0], "handled brush he surveyed the": [65535, 0], "brush he surveyed the fence": [65535, 0], "he surveyed the fence and": [65535, 0], "surveyed the fence and all": [65535, 0], "the fence and all gladness": [65535, 0], "fence and all gladness left": [65535, 0], "and all gladness left him": [65535, 0], "all gladness left him and": [65535, 0], "gladness left him and a": [65535, 0], "left him and a deep": [65535, 0], "him and a deep melancholy": [65535, 0], "and a deep melancholy settled": [65535, 0], "a deep melancholy settled down": [65535, 0], "deep melancholy settled down upon": [65535, 0], "melancholy settled down upon his": [65535, 0], "settled down upon his spirit": [65535, 0], "down upon his spirit thirty": [65535, 0], "upon his spirit thirty yards": [65535, 0], "his spirit thirty yards of": [65535, 0], "spirit thirty yards of board": [65535, 0], "thirty yards of board fence": [65535, 0], "yards of board fence nine": [65535, 0], "of board fence nine feet": [65535, 0], "board fence nine feet high": [65535, 0], "fence nine feet high life": [65535, 0], "nine feet high life to": [65535, 0], "feet high life to him": [65535, 0], "high life to him seemed": [65535, 0], "life to him seemed hollow": [65535, 0], "to him seemed hollow and": [65535, 0], "him seemed hollow and existence": [65535, 0], "seemed hollow and existence but": [65535, 0], "hollow and existence but a": [65535, 0], "and existence but a burden": [65535, 0], "existence but a burden sighing": [65535, 0], "but a burden sighing he": [65535, 0], "a burden sighing he dipped": [65535, 0], "burden sighing he dipped his": [65535, 0], "sighing he dipped his brush": [65535, 0], "he dipped his brush and": [65535, 0], "dipped his brush and passed": [65535, 0], "his brush and passed it": [65535, 0], "brush and passed it along": [65535, 0], "and passed it along the": [65535, 0], "passed it along the topmost": [65535, 0], "it along the topmost plank": [65535, 0], "along the topmost plank repeated": [65535, 0], "the topmost plank repeated the": [65535, 0], "topmost plank repeated the operation": [65535, 0], "plank repeated the operation did": [65535, 0], "repeated the operation did it": [65535, 0], "the operation did it again": [65535, 0], "operation did it again compared": [65535, 0], "did it again compared the": [65535, 0], "it again compared the insignificant": [65535, 0], "again compared the insignificant whitewashed": [65535, 0], "compared the insignificant whitewashed streak": [65535, 0], "the insignificant whitewashed streak with": [65535, 0], "insignificant whitewashed streak with the": [65535, 0], "whitewashed streak with the far": [65535, 0], "streak with the far reaching": [65535, 0], "with the far reaching continent": [65535, 0], "the far reaching continent of": [65535, 0], "far reaching continent of unwhitewashed": [65535, 0], "reaching continent of unwhitewashed fence": [65535, 0], "continent of unwhitewashed fence and": [65535, 0], "of unwhitewashed fence and sat": [65535, 0], "unwhitewashed fence and sat down": [65535, 0], "fence and sat down on": [65535, 0], "and sat down on a": [65535, 0], "sat down on a tree": [65535, 0], "down on a tree box": [65535, 0], "on a tree box discouraged": [65535, 0], "a tree box discouraged jim": [65535, 0], "tree box discouraged jim came": [65535, 0], "box discouraged jim came skipping": [65535, 0], "discouraged jim came skipping out": [65535, 0], "jim came skipping out at": [65535, 0], "came skipping out at the": [65535, 0], "skipping out at the gate": [65535, 0], "out at the gate with": [65535, 0], "at the gate with a": [65535, 0], "the gate with a tin": [65535, 0], "gate with a tin pail": [65535, 0], "with a tin pail and": [65535, 0], "a tin pail and singing": [65535, 0], "tin pail and singing buffalo": [65535, 0], "pail and singing buffalo gals": [65535, 0], "and singing buffalo gals bringing": [65535, 0], "singing buffalo gals bringing water": [65535, 0], "buffalo gals bringing water from": [65535, 0], "gals bringing water from the": [65535, 0], "bringing water from the town": [65535, 0], "water from the town pump": [65535, 0], "from the town pump had": [65535, 0], "the town pump had always": [65535, 0], "town pump had always been": [65535, 0], "pump had always been hateful": [65535, 0], "had always been hateful work": [65535, 0], "always been hateful work in": [65535, 0], "been hateful work in tom's": [65535, 0], "hateful work in tom's eyes": [65535, 0], "work in tom's eyes before": [65535, 0], "in tom's eyes before but": [65535, 0], "tom's eyes before but now": [65535, 0], "eyes before but now it": [65535, 0], "before but now it did": [65535, 0], "but now it did not": [65535, 0], "now it did not strike": [65535, 0], "it did not strike him": [65535, 0], "did not strike him so": [65535, 0], "not strike him so he": [65535, 0], "strike him so he remembered": [65535, 0], "him so he remembered that": [65535, 0], "so he remembered that there": [65535, 0], "he remembered that there was": [65535, 0], "remembered that there was company": [65535, 0], "that there was company at": [65535, 0], "there was company at the": [65535, 0], "was company at the pump": [65535, 0], "company at the pump white": [65535, 0], "at the pump white mulatto": [65535, 0], "the pump white mulatto and": [65535, 0], "pump white mulatto and negro": [65535, 0], "white mulatto and negro boys": [65535, 0], "mulatto and negro boys and": [65535, 0], "and negro boys and girls": [65535, 0], "negro boys and girls were": [65535, 0], "boys and girls were always": [65535, 0], "and girls were always there": [65535, 0], "girls were always there waiting": [65535, 0], "were always there waiting their": [65535, 0], "always there waiting their turns": [65535, 0], "there waiting their turns resting": [65535, 0], "waiting their turns resting trading": [65535, 0], "their turns resting trading playthings": [65535, 0], "turns resting trading playthings quarrelling": [65535, 0], "resting trading playthings quarrelling fighting": [65535, 0], "trading playthings quarrelling fighting skylarking": [65535, 0], "playthings quarrelling fighting skylarking and": [65535, 0], "quarrelling fighting skylarking and he": [65535, 0], "fighting skylarking and he remembered": [65535, 0], "skylarking and he remembered that": [65535, 0], "and he remembered that although": [65535, 0], "he remembered that although the": [65535, 0], "remembered that although the pump": [65535, 0], "that although the pump was": [65535, 0], "although the pump was only": [65535, 0], "the pump was only a": [65535, 0], "pump was only a hundred": [65535, 0], "was only a hundred and": [65535, 0], "only a hundred and fifty": [65535, 0], "a hundred and fifty yards": [65535, 0], "hundred and fifty yards off": [65535, 0], "and fifty yards off jim": [65535, 0], "fifty yards off jim never": [65535, 0], "yards off jim never got": [65535, 0], "off jim never got back": [65535, 0], "jim never got back with": [65535, 0], "never got back with a": [65535, 0], "got back with a bucket": [65535, 0], "back with a bucket of": [65535, 0], "with a bucket of water": [65535, 0], "a bucket of water under": [65535, 0], "bucket of water under an": [65535, 0], "of water under an hour": [65535, 0], "water under an hour and": [65535, 0], "under an hour and even": [65535, 0], "an hour and even then": [65535, 0], "hour and even then somebody": [65535, 0], "and even then somebody generally": [65535, 0], "even then somebody generally had": [65535, 0], "then somebody generally had to": [65535, 0], "somebody generally had to go": [65535, 0], "generally had to go after": [65535, 0], "had to go after him": [65535, 0], "to go after him tom": [65535, 0], "go after him tom said": [65535, 0], "after him tom said say": [65535, 0], "him tom said say jim": [65535, 0], "tom said say jim i'll": [65535, 0], "said say jim i'll fetch": [65535, 0], "say jim i'll fetch the": [65535, 0], "jim i'll fetch the water": [65535, 0], "i'll fetch the water if": [65535, 0], "fetch the water if you'll": [65535, 0], "the water if you'll whitewash": [65535, 0], "water if you'll whitewash some": [65535, 0], "if you'll whitewash some jim": [65535, 0], "you'll whitewash some jim shook": [65535, 0], "whitewash some jim shook his": [65535, 0], "some jim shook his head": [65535, 0], "jim shook his head and": [65535, 0], "shook his head and said": [65535, 0], "his head and said can't": [65535, 0], "head and said can't mars": [65535, 0], "and said can't mars tom": [65535, 0], "said can't mars tom ole": [65535, 0], "can't mars tom ole missis": [65535, 0], "mars tom ole missis she": [65535, 0], "tom ole missis she tole": [65535, 0], "ole missis she tole me": [65535, 0], "missis she tole me i": [65535, 0], "she tole me i got": [65535, 0], "tole me i got to": [65535, 0], "me i got to go": [65535, 0], "i got to go an'": [65535, 0], "got to go an' git": [65535, 0], "to go an' git dis": [65535, 0], "go an' git dis water": [65535, 0], "an' git dis water an'": [65535, 0], "git dis water an' not": [65535, 0], "dis water an' not stop": [65535, 0], "water an' not stop foolin'": [65535, 0], "an' not stop foolin' roun'": [65535, 0], "not stop foolin' roun' wid": [65535, 0], "stop foolin' roun' wid anybody": [65535, 0], "foolin' roun' wid anybody she": [65535, 0], "roun' wid anybody she say": [65535, 0], "wid anybody she say she": [65535, 0], "anybody she say she spec'": [65535, 0], "she say she spec' mars": [65535, 0], "say she spec' mars tom": [65535, 0], "she spec' mars tom gwine": [65535, 0], "spec' mars tom gwine to": [65535, 0], "mars tom gwine to ax": [65535, 0], "tom gwine to ax me": [65535, 0], "gwine to ax me to": [65535, 0], "to ax me to whitewash": [65535, 0], "ax me to whitewash an'": [65535, 0], "me to whitewash an' so": [65535, 0], "to whitewash an' so she": [65535, 0], "whitewash an' so she tole": [65535, 0], "an' so she tole me": [65535, 0], "so she tole me go": [65535, 0], "she tole me go 'long": [65535, 0], "tole me go 'long an'": [65535, 0], "me go 'long an' 'tend": [65535, 0], "go 'long an' 'tend to": [65535, 0], "'long an' 'tend to my": [65535, 0], "an' 'tend to my own": [65535, 0], "'tend to my own business": [65535, 0], "to my own business she": [65535, 0], "my own business she 'lowed": [65535, 0], "own business she 'lowed she'd": [65535, 0], "business she 'lowed she'd 'tend": [65535, 0], "she 'lowed she'd 'tend to": [65535, 0], "'lowed she'd 'tend to de": [65535, 0], "she'd 'tend to de whitewashin'": [65535, 0], "'tend to de whitewashin' oh": [65535, 0], "to de whitewashin' oh never": [65535, 0], "de whitewashin' oh never you": [65535, 0], "whitewashin' oh never you mind": [65535, 0], "oh never you mind what": [65535, 0], "never you mind what she": [65535, 0], "you mind what she said": [65535, 0], "mind what she said jim": [65535, 0], "what she said jim that's": [65535, 0], "she said jim that's the": [65535, 0], "said jim that's the way": [65535, 0], "jim that's the way she": [65535, 0], "that's the way she always": [65535, 0], "the way she always talks": [65535, 0], "way she always talks gimme": [65535, 0], "she always talks gimme the": [65535, 0], "always talks gimme the bucket": [65535, 0], "talks gimme the bucket i": [65535, 0], "gimme the bucket i won't": [65535, 0], "the bucket i won't be": [65535, 0], "bucket i won't be gone": [65535, 0], "i won't be gone only": [65535, 0], "won't be gone only a": [65535, 0], "be gone only a minute": [65535, 0], "gone only a minute she": [65535, 0], "only a minute she won't": [65535, 0], "a minute she won't ever": [65535, 0], "minute she won't ever know": [65535, 0], "she won't ever know oh": [65535, 0], "won't ever know oh i": [65535, 0], "ever know oh i dasn't": [65535, 0], "know oh i dasn't mars": [65535, 0], "oh i dasn't mars tom": [65535, 0], "i dasn't mars tom ole": [65535, 0], "dasn't mars tom ole missis": [65535, 0], "mars tom ole missis she'd": [65535, 0], "tom ole missis she'd take": [65535, 0], "ole missis she'd take an'": [65535, 0], "missis she'd take an' tar": [65535, 0], "she'd take an' tar de": [65535, 0], "take an' tar de head": [65535, 0], "an' tar de head off'n": [65535, 0], "tar de head off'n me": [65535, 0], "de head off'n me 'deed": [65535, 0], "head off'n me 'deed she": [65535, 0], "off'n me 'deed she would": [65535, 0], "me 'deed she would she": [65535, 0], "'deed she would she she": [65535, 0], "she would she she never": [65535, 0], "would she she never licks": [65535, 0], "she she never licks anybody": [65535, 0], "she never licks anybody whacks": [65535, 0], "never licks anybody whacks 'em": [65535, 0], "licks anybody whacks 'em over": [65535, 0], "anybody whacks 'em over the": [65535, 0], "whacks 'em over the head": [65535, 0], "'em over the head with": [65535, 0], "over the head with her": [65535, 0], "the head with her thimble": [65535, 0], "head with her thimble and": [65535, 0], "with her thimble and who": [65535, 0], "her thimble and who cares": [65535, 0], "thimble and who cares for": [65535, 0], "and who cares for that": [65535, 0], "who cares for that i'd": [65535, 0], "cares for that i'd like": [65535, 0], "for that i'd like to": [65535, 0], "that i'd like to know": [65535, 0], "i'd like to know she": [65535, 0], "like to know she talks": [65535, 0], "to know she talks awful": [65535, 0], "know she talks awful but": [65535, 0], "she talks awful but talk": [65535, 0], "talks awful but talk don't": [65535, 0], "awful but talk don't hurt": [65535, 0], "but talk don't hurt anyways": [65535, 0], "talk don't hurt anyways it": [65535, 0], "don't hurt anyways it don't": [65535, 0], "hurt anyways it don't if": [65535, 0], "anyways it don't if she": [65535, 0], "it don't if she don't": [65535, 0], "don't if she don't cry": [65535, 0], "if she don't cry jim": [65535, 0], "she don't cry jim i'll": [65535, 0], "don't cry jim i'll give": [65535, 0], "cry jim i'll give you": [65535, 0], "jim i'll give you a": [65535, 0], "i'll give you a marvel": [65535, 0], "give you a marvel i'll": [65535, 0], "you a marvel i'll give": [65535, 0], "a marvel i'll give you": [65535, 0], "marvel i'll give you a": [65535, 0], "i'll give you a white": [65535, 0], "give you a white alley": [65535, 0], "you a white alley jim": [65535, 0], "a white alley jim began": [65535, 0], "white alley jim began to": [65535, 0], "alley jim began to waver": [65535, 0], "jim began to waver white": [65535, 0], "began to waver white alley": [65535, 0], "to waver white alley jim": [65535, 0], "waver white alley jim and": [65535, 0], "white alley jim and it's": [65535, 0], "alley jim and it's a": [65535, 0], "jim and it's a bully": [65535, 0], "and it's a bully taw": [65535, 0], "it's a bully taw my": [65535, 0], "a bully taw my dat's": [65535, 0], "bully taw my dat's a": [65535, 0], "taw my dat's a mighty": [65535, 0], "my dat's a mighty gay": [65535, 0], "dat's a mighty gay marvel": [65535, 0], "a mighty gay marvel i": [65535, 0], "mighty gay marvel i tell": [65535, 0], "gay marvel i tell you": [65535, 0], "marvel i tell you but": [65535, 0], "i tell you but mars": [65535, 0], "tell you but mars tom": [65535, 0], "you but mars tom i's": [65535, 0], "but mars tom i's powerful": [65535, 0], "mars tom i's powerful 'fraid": [65535, 0], "tom i's powerful 'fraid ole": [65535, 0], "i's powerful 'fraid ole missis": [65535, 0], "powerful 'fraid ole missis and": [65535, 0], "'fraid ole missis and besides": [65535, 0], "ole missis and besides if": [65535, 0], "missis and besides if you": [65535, 0], "and besides if you will": [65535, 0], "besides if you will i'll": [65535, 0], "if you will i'll show": [65535, 0], "you will i'll show you": [65535, 0], "will i'll show you my": [65535, 0], "i'll show you my sore": [65535, 0], "show you my sore toe": [65535, 0], "you my sore toe jim": [65535, 0], "my sore toe jim was": [65535, 0], "sore toe jim was only": [65535, 0], "toe jim was only human": [65535, 0], "jim was only human this": [65535, 0], "was only human this attraction": [65535, 0], "only human this attraction was": [65535, 0], "human this attraction was too": [65535, 0], "this attraction was too much": [65535, 0], "attraction was too much for": [65535, 0], "was too much for him": [65535, 0], "too much for him he": [65535, 0], "much for him he put": [65535, 0], "for him he put down": [65535, 0], "him he put down his": [65535, 0], "he put down his pail": [65535, 0], "put down his pail took": [65535, 0], "down his pail took the": [65535, 0], "his pail took the white": [65535, 0], "pail took the white alley": [65535, 0], "took the white alley and": [65535, 0], "the white alley and bent": [65535, 0], "white alley and bent over": [65535, 0], "alley and bent over the": [65535, 0], "and bent over the toe": [65535, 0], "bent over the toe with": [65535, 0], "over the toe with absorbing": [65535, 0], "the toe with absorbing interest": [65535, 0], "toe with absorbing interest while": [65535, 0], "with absorbing interest while the": [65535, 0], "absorbing interest while the bandage": [65535, 0], "interest while the bandage was": [65535, 0], "while the bandage was being": [65535, 0], "the bandage was being unwound": [65535, 0], "bandage was being unwound in": [65535, 0], "was being unwound in another": [65535, 0], "being unwound in another moment": [65535, 0], "unwound in another moment he": [65535, 0], "in another moment he was": [65535, 0], "another moment he was flying": [65535, 0], "moment he was flying down": [65535, 0], "he was flying down the": [65535, 0], "was flying down the street": [65535, 0], "flying down the street with": [65535, 0], "down the street with his": [65535, 0], "the street with his pail": [65535, 0], "street with his pail and": [65535, 0], "with his pail and a": [65535, 0], "his pail and a tingling": [65535, 0], "pail and a tingling rear": [65535, 0], "and a tingling rear tom": [65535, 0], "a tingling rear tom was": [65535, 0], "tingling rear tom was whitewashing": [65535, 0], "rear tom was whitewashing with": [65535, 0], "tom was whitewashing with vigor": [65535, 0], "was whitewashing with vigor and": [65535, 0], "whitewashing with vigor and aunt": [65535, 0], "with vigor and aunt polly": [65535, 0], "vigor and aunt polly was": [65535, 0], "and aunt polly was retiring": [65535, 0], "aunt polly was retiring from": [65535, 0], "polly was retiring from the": [65535, 0], "was retiring from the field": [65535, 0], "retiring from the field with": [65535, 0], "from the field with a": [65535, 0], "the field with a slipper": [65535, 0], "field with a slipper in": [65535, 0], "with a slipper in her": [65535, 0], "a slipper in her hand": [65535, 0], "slipper in her hand and": [65535, 0], "in her hand and triumph": [65535, 0], "her hand and triumph in": [65535, 0], "hand and triumph in her": [65535, 0], "and triumph in her eye": [65535, 0], "triumph in her eye but": [65535, 0], "in her eye but tom's": [65535, 0], "her eye but tom's energy": [65535, 0], "eye but tom's energy did": [65535, 0], "but tom's energy did not": [65535, 0], "tom's energy did not last": [65535, 0], "energy did not last he": [65535, 0], "did not last he began": [65535, 0], "not last he began to": [65535, 0], "last he began to think": [65535, 0], "he began to think of": [65535, 0], "began to think of the": [65535, 0], "to think of the fun": [65535, 0], "think of the fun he": [65535, 0], "of the fun he had": [65535, 0], "the fun he had planned": [65535, 0], "fun he had planned for": [65535, 0], "he had planned for this": [65535, 0], "had planned for this day": [65535, 0], "planned for this day and": [65535, 0], "for this day and his": [65535, 0], "this day and his sorrows": [65535, 0], "day and his sorrows multiplied": [65535, 0], "and his sorrows multiplied soon": [65535, 0], "his sorrows multiplied soon the": [65535, 0], "sorrows multiplied soon the free": [65535, 0], "multiplied soon the free boys": [65535, 0], "soon the free boys would": [65535, 0], "the free boys would come": [65535, 0], "free boys would come tripping": [65535, 0], "boys would come tripping along": [65535, 0], "would come tripping along on": [65535, 0], "come tripping along on all": [65535, 0], "tripping along on all sorts": [65535, 0], "along on all sorts of": [65535, 0], "on all sorts of delicious": [65535, 0], "all sorts of delicious expeditions": [65535, 0], "sorts of delicious expeditions and": [65535, 0], "of delicious expeditions and they": [65535, 0], "delicious expeditions and they would": [65535, 0], "expeditions and they would make": [65535, 0], "and they would make a": [65535, 0], "they would make a world": [65535, 0], "would make a world of": [65535, 0], "make a world of fun": [65535, 0], "a world of fun of": [65535, 0], "world of fun of him": [65535, 0], "of fun of him for": [65535, 0], "fun of him for having": [65535, 0], "of him for having to": [65535, 0], "him for having to work": [65535, 0], "for having to work the": [65535, 0], "having to work the very": [65535, 0], "to work the very thought": [65535, 0], "work the very thought of": [65535, 0], "the very thought of it": [65535, 0], "very thought of it burnt": [65535, 0], "thought of it burnt him": [65535, 0], "of it burnt him like": [65535, 0], "it burnt him like fire": [65535, 0], "burnt him like fire he": [65535, 0], "him like fire he got": [65535, 0], "like fire he got out": [65535, 0], "fire he got out his": [65535, 0], "he got out his worldly": [65535, 0], "got out his worldly wealth": [65535, 0], "out his worldly wealth and": [65535, 0], "his worldly wealth and examined": [65535, 0], "worldly wealth and examined it": [65535, 0], "wealth and examined it bits": [65535, 0], "and examined it bits of": [65535, 0], "examined it bits of toys": [65535, 0], "it bits of toys marbles": [65535, 0], "bits of toys marbles and": [65535, 0], "of toys marbles and trash": [65535, 0], "toys marbles and trash enough": [65535, 0], "marbles and trash enough to": [65535, 0], "and trash enough to buy": [65535, 0], "trash enough to buy an": [65535, 0], "enough to buy an exchange": [65535, 0], "to buy an exchange of": [65535, 0], "buy an exchange of work": [65535, 0], "an exchange of work maybe": [65535, 0], "exchange of work maybe but": [65535, 0], "of work maybe but not": [65535, 0], "work maybe but not half": [65535, 0], "maybe but not half enough": [65535, 0], "but not half enough to": [65535, 0], "not half enough to buy": [65535, 0], "half enough to buy so": [65535, 0], "enough to buy so much": [65535, 0], "to buy so much as": [65535, 0], "buy so much as half": [65535, 0], "so much as half an": [65535, 0], "much as half an hour": [65535, 0], "as half an hour of": [65535, 0], "half an hour of pure": [65535, 0], "an hour of pure freedom": [65535, 0], "hour of pure freedom so": [65535, 0], "of pure freedom so he": [65535, 0], "pure freedom so he returned": [65535, 0], "freedom so he returned his": [65535, 0], "so he returned his straitened": [65535, 0], "he returned his straitened means": [65535, 0], "returned his straitened means to": [65535, 0], "his straitened means to his": [65535, 0], "straitened means to his pocket": [65535, 0], "means to his pocket and": [65535, 0], "to his pocket and gave": [65535, 0], "his pocket and gave up": [65535, 0], "pocket and gave up the": [65535, 0], "and gave up the idea": [65535, 0], "gave up the idea of": [65535, 0], "up the idea of trying": [65535, 0], "the idea of trying to": [65535, 0], "idea of trying to buy": [65535, 0], "of trying to buy the": [65535, 0], "trying to buy the boys": [65535, 0], "to buy the boys at": [65535, 0], "buy the boys at this": [65535, 0], "the boys at this dark": [65535, 0], "boys at this dark and": [65535, 0], "at this dark and hopeless": [65535, 0], "this dark and hopeless moment": [65535, 0], "dark and hopeless moment an": [65535, 0], "and hopeless moment an inspiration": [65535, 0], "hopeless moment an inspiration burst": [65535, 0], "moment an inspiration burst upon": [65535, 0], "an inspiration burst upon him": [65535, 0], "inspiration burst upon him nothing": [65535, 0], "burst upon him nothing less": [65535, 0], "upon him nothing less than": [65535, 0], "him nothing less than a": [65535, 0], "nothing less than a great": [65535, 0], "less than a great magnificent": [65535, 0], "than a great magnificent inspiration": [65535, 0], "a great magnificent inspiration he": [65535, 0], "great magnificent inspiration he took": [65535, 0], "magnificent inspiration he took up": [65535, 0], "inspiration he took up his": [65535, 0], "he took up his brush": [65535, 0], "took up his brush and": [65535, 0], "up his brush and went": [65535, 0], "his brush and went tranquilly": [65535, 0], "brush and went tranquilly to": [65535, 0], "and went tranquilly to work": [65535, 0], "went tranquilly to work ben": [65535, 0], "tranquilly to work ben rogers": [65535, 0], "to work ben rogers hove": [65535, 0], "work ben rogers hove in": [65535, 0], "ben rogers hove in sight": [65535, 0], "rogers hove in sight presently": [65535, 0], "hove in sight presently the": [65535, 0], "in sight presently the very": [65535, 0], "sight presently the very boy": [65535, 0], "presently the very boy of": [65535, 0], "the very boy of all": [65535, 0], "very boy of all boys": [65535, 0], "boy of all boys whose": [65535, 0], "of all boys whose ridicule": [65535, 0], "all boys whose ridicule he": [65535, 0], "boys whose ridicule he had": [65535, 0], "whose ridicule he had been": [65535, 0], "ridicule he had been dreading": [65535, 0], "he had been dreading ben's": [65535, 0], "had been dreading ben's gait": [65535, 0], "been dreading ben's gait was": [65535, 0], "dreading ben's gait was the": [65535, 0], "ben's gait was the hop": [65535, 0], "gait was the hop skip": [65535, 0], "was the hop skip and": [65535, 0], "the hop skip and jump": [65535, 0], "hop skip and jump proof": [65535, 0], "skip and jump proof enough": [65535, 0], "and jump proof enough that": [65535, 0], "jump proof enough that his": [65535, 0], "proof enough that his heart": [65535, 0], "enough that his heart was": [65535, 0], "that his heart was light": [65535, 0], "his heart was light and": [65535, 0], "heart was light and his": [65535, 0], "was light and his anticipations": [65535, 0], "light and his anticipations high": [65535, 0], "and his anticipations high he": [65535, 0], "his anticipations high he was": [65535, 0], "anticipations high he was eating": [65535, 0], "high he was eating an": [65535, 0], "he was eating an apple": [65535, 0], "was eating an apple and": [65535, 0], "eating an apple and giving": [65535, 0], "an apple and giving a": [65535, 0], "apple and giving a long": [65535, 0], "and giving a long melodious": [65535, 0], "giving a long melodious whoop": [65535, 0], "a long melodious whoop at": [65535, 0], "long melodious whoop at intervals": [65535, 0], "melodious whoop at intervals followed": [65535, 0], "whoop at intervals followed by": [65535, 0], "at intervals followed by a": [65535, 0], "intervals followed by a deep": [65535, 0], "followed by a deep toned": [65535, 0], "by a deep toned ding": [65535, 0], "a deep toned ding dong": [65535, 0], "deep toned ding dong dong": [65535, 0], "toned ding dong dong ding": [65535, 0], "ding dong dong ding dong": [65535, 0], "dong dong ding dong dong": [65535, 0], "dong ding dong dong for": [65535, 0], "ding dong dong for he": [65535, 0], "dong dong for he was": [65535, 0], "dong for he was personating": [65535, 0], "for he was personating a": [65535, 0], "he was personating a steamboat": [65535, 0], "was personating a steamboat as": [65535, 0], "personating a steamboat as he": [65535, 0], "a steamboat as he drew": [65535, 0], "steamboat as he drew near": [65535, 0], "as he drew near he": [65535, 0], "he drew near he slackened": [65535, 0], "drew near he slackened speed": [65535, 0], "near he slackened speed took": [65535, 0], "he slackened speed took the": [65535, 0], "slackened speed took the middle": [65535, 0], "speed took the middle of": [65535, 0], "took the middle of the": [65535, 0], "the middle of the street": [65535, 0], "middle of the street leaned": [65535, 0], "of the street leaned far": [65535, 0], "the street leaned far over": [65535, 0], "street leaned far over to": [65535, 0], "leaned far over to starboard": [65535, 0], "far over to starboard and": [65535, 0], "over to starboard and rounded": [65535, 0], "to starboard and rounded to": [65535, 0], "starboard and rounded to ponderously": [65535, 0], "and rounded to ponderously and": [65535, 0], "rounded to ponderously and with": [65535, 0], "to ponderously and with laborious": [65535, 0], "ponderously and with laborious pomp": [65535, 0], "and with laborious pomp and": [65535, 0], "with laborious pomp and circumstance": [65535, 0], "laborious pomp and circumstance for": [65535, 0], "pomp and circumstance for he": [65535, 0], "and circumstance for he was": [65535, 0], "circumstance for he was personating": [65535, 0], "for he was personating the": [65535, 0], "he was personating the big": [65535, 0], "was personating the big missouri": [65535, 0], "personating the big missouri and": [65535, 0], "the big missouri and considered": [65535, 0], "big missouri and considered himself": [65535, 0], "missouri and considered himself to": [65535, 0], "and considered himself to be": [65535, 0], "considered himself to be drawing": [65535, 0], "himself to be drawing nine": [65535, 0], "to be drawing nine feet": [65535, 0], "be drawing nine feet of": [65535, 0], "drawing nine feet of water": [65535, 0], "nine feet of water he": [65535, 0], "feet of water he was": [65535, 0], "of water he was boat": [65535, 0], "water he was boat and": [65535, 0], "he was boat and captain": [65535, 0], "was boat and captain and": [65535, 0], "boat and captain and engine": [65535, 0], "and captain and engine bells": [65535, 0], "captain and engine bells combined": [65535, 0], "and engine bells combined so": [65535, 0], "engine bells combined so he": [65535, 0], "bells combined so he had": [65535, 0], "combined so he had to": [65535, 0], "so he had to imagine": [65535, 0], "he had to imagine himself": [65535, 0], "had to imagine himself standing": [65535, 0], "to imagine himself standing on": [65535, 0], "imagine himself standing on his": [65535, 0], "himself standing on his own": [65535, 0], "standing on his own hurricane": [65535, 0], "on his own hurricane deck": [65535, 0], "his own hurricane deck giving": [65535, 0], "own hurricane deck giving the": [65535, 0], "hurricane deck giving the orders": [65535, 0], "deck giving the orders and": [65535, 0], "giving the orders and executing": [65535, 0], "the orders and executing them": [65535, 0], "orders and executing them stop": [65535, 0], "and executing them stop her": [65535, 0], "executing them stop her sir": [65535, 0], "them stop her sir ting": [65535, 0], "stop her sir ting a": [65535, 0], "her sir ting a ling": [65535, 0], "sir ting a ling ling": [65535, 0], "ting a ling ling the": [65535, 0], "a ling ling the headway": [65535, 0], "ling ling the headway ran": [65535, 0], "ling the headway ran almost": [65535, 0], "the headway ran almost out": [65535, 0], "headway ran almost out and": [65535, 0], "ran almost out and he": [65535, 0], "almost out and he drew": [65535, 0], "out and he drew up": [65535, 0], "and he drew up slowly": [65535, 0], "he drew up slowly toward": [65535, 0], "drew up slowly toward the": [65535, 0], "up slowly toward the sidewalk": [65535, 0], "slowly toward the sidewalk ship": [65535, 0], "toward the sidewalk ship up": [65535, 0], "the sidewalk ship up to": [65535, 0], "sidewalk ship up to back": [65535, 0], "ship up to back ting": [65535, 0], "up to back ting a": [65535, 0], "to back ting a ling": [65535, 0], "back ting a ling ling": [65535, 0], "ting a ling ling his": [65535, 0], "a ling ling his arms": [65535, 0], "ling ling his arms straightened": [65535, 0], "ling his arms straightened and": [65535, 0], "his arms straightened and stiffened": [65535, 0], "arms straightened and stiffened down": [65535, 0], "straightened and stiffened down his": [65535, 0], "and stiffened down his sides": [65535, 0], "stiffened down his sides set": [65535, 0], "down his sides set her": [65535, 0], "his sides set her back": [65535, 0], "sides set her back on": [65535, 0], "set her back on the": [65535, 0], "her back on the stabboard": [65535, 0], "back on the stabboard ting": [65535, 0], "on the stabboard ting a": [65535, 0], "the stabboard ting a ling": [65535, 0], "stabboard ting a ling ling": [65535, 0], "ting a ling ling chow": [65535, 0], "a ling ling chow ch": [65535, 0], "ling ling chow ch chow": [65535, 0], "ling chow ch chow wow": [65535, 0], "chow ch chow wow chow": [65535, 0], "ch chow wow chow his": [65535, 0], "chow wow chow his right": [65535, 0], "wow chow his right hand": [65535, 0], "chow his right hand meantime": [65535, 0], "his right hand meantime describing": [65535, 0], "right hand meantime describing stately": [65535, 0], "hand meantime describing stately circles": [65535, 0], "meantime describing stately circles for": [65535, 0], "describing stately circles for it": [65535, 0], "stately circles for it was": [65535, 0], "circles for it was representing": [65535, 0], "for it was representing a": [65535, 0], "it was representing a forty": [65535, 0], "was representing a forty foot": [65535, 0], "representing a forty foot wheel": [65535, 0], "a forty foot wheel let": [65535, 0], "forty foot wheel let her": [65535, 0], "foot wheel let her go": [65535, 0], "wheel let her go back": [65535, 0], "let her go back on": [65535, 0], "her go back on the": [65535, 0], "go back on the labboard": [65535, 0], "back on the labboard ting": [65535, 0], "on the labboard ting a": [65535, 0], "the labboard ting a ling": [65535, 0], "labboard ting a ling ling": [65535, 0], "ling chow ch chow chow": [65535, 0], "chow ch chow chow the": [65535, 0], "ch chow chow the left": [65535, 0], "chow chow the left hand": [65535, 0], "chow the left hand began": [65535, 0], "the left hand began to": [65535, 0], "left hand began to describe": [65535, 0], "hand began to describe circles": [65535, 0], "began to describe circles stop": [65535, 0], "to describe circles stop the": [65535, 0], "describe circles stop the stabboard": [65535, 0], "circles stop the stabboard ting": [65535, 0], "stop the stabboard ting a": [65535, 0], "ting a ling ling stop": [65535, 0], "a ling ling stop the": [65535, 0], "ling ling stop the labboard": [65535, 0], "ling stop the labboard come": [65535, 0], "stop the labboard come ahead": [65535, 0], "the labboard come ahead on": [65535, 0], "labboard come ahead on the": [65535, 0], "come ahead on the stabboard": [65535, 0], "ahead on the stabboard stop": [65535, 0], "on the stabboard stop her": [65535, 0], "the stabboard stop her let": [65535, 0], "stabboard stop her let your": [65535, 0], "stop her let your outside": [65535, 0], "her let your outside turn": [65535, 0], "let your outside turn over": [65535, 0], "your outside turn over slow": [65535, 0], "outside turn over slow ting": [65535, 0], "turn over slow ting a": [65535, 0], "over slow ting a ling": [65535, 0], "slow ting a ling ling": [65535, 0], "a ling ling chow ow": [65535, 0], "ling ling chow ow ow": [65535, 0], "ling chow ow ow get": [65535, 0], "chow ow ow get out": [65535, 0], "ow ow get out that": [65535, 0], "ow get out that head": [65535, 0], "get out that head line": [65535, 0], "out that head line lively": [65535, 0], "that head line lively now": [65535, 0], "head line lively now come": [65535, 0], "line lively now come out": [65535, 0], "lively now come out with": [65535, 0], "now come out with your": [65535, 0], "come out with your spring": [65535, 0], "out with your spring line": [65535, 0], "with your spring line what're": [65535, 0], "your spring line what're you": [65535, 0], "spring line what're you about": [65535, 0], "line what're you about there": [65535, 0], "what're you about there take": [65535, 0], "you about there take a": [65535, 0], "about there take a turn": [65535, 0], "there take a turn round": [65535, 0], "take a turn round that": [65535, 0], "a turn round that stump": [65535, 0], "turn round that stump with": [65535, 0], "round that stump with the": [65535, 0], "that stump with the bight": [65535, 0], "stump with the bight of": [65535, 0], "with the bight of it": [65535, 0], "the bight of it stand": [65535, 0], "bight of it stand by": [65535, 0], "of it stand by that": [65535, 0], "it stand by that stage": [65535, 0], "stand by that stage now": [65535, 0], "by that stage now let": [65535, 0], "that stage now let her": [65535, 0], "stage now let her go": [65535, 0], "now let her go done": [65535, 0], "let her go done with": [65535, 0], "her go done with the": [65535, 0], "go done with the engines": [65535, 0], "done with the engines sir": [65535, 0], "with the engines sir ting": [65535, 0], "the engines sir ting a": [65535, 0], "engines sir ting a ling": [65535, 0], "ting a ling ling sh't": [65535, 0], "a ling ling sh't s'h't": [65535, 0], "ling ling sh't s'h't sh't": [65535, 0], "ling sh't s'h't sh't trying": [65535, 0], "sh't s'h't sh't trying the": [65535, 0], "s'h't sh't trying the gauge": [65535, 0], "sh't trying the gauge cocks": [65535, 0], "trying the gauge cocks tom": [65535, 0], "the gauge cocks tom went": [65535, 0], "gauge cocks tom went on": [65535, 0], "cocks tom went on whitewashing": [65535, 0], "tom went on whitewashing paid": [65535, 0], "went on whitewashing paid no": [65535, 0], "on whitewashing paid no attention": [65535, 0], "whitewashing paid no attention to": [65535, 0], "paid no attention to the": [65535, 0], "no attention to the steamboat": [65535, 0], "attention to the steamboat ben": [65535, 0], "to the steamboat ben stared": [65535, 0], "the steamboat ben stared a": [65535, 0], "steamboat ben stared a moment": [65535, 0], "ben stared a moment and": [65535, 0], "stared a moment and then": [65535, 0], "a moment and then said": [65535, 0], "moment and then said hi": [65535, 0], "and then said hi yi": [65535, 0], "then said hi yi you're": [65535, 0], "said hi yi you're up": [65535, 0], "hi yi you're up a": [65535, 0], "yi you're up a stump": [65535, 0], "you're up a stump ain't": [65535, 0], "up a stump ain't you": [65535, 0], "a stump ain't you no": [65535, 0], "stump ain't you no answer": [65535, 0], "ain't you no answer tom": [65535, 0], "you no answer tom surveyed": [65535, 0], "no answer tom surveyed his": [65535, 0], "answer tom surveyed his last": [65535, 0], "tom surveyed his last touch": [65535, 0], "surveyed his last touch with": [65535, 0], "his last touch with the": [65535, 0], "last touch with the eye": [65535, 0], "touch with the eye of": [65535, 0], "with the eye of an": [65535, 0], "the eye of an artist": [65535, 0], "eye of an artist then": [65535, 0], "of an artist then he": [65535, 0], "an artist then he gave": [65535, 0], "artist then he gave his": [65535, 0], "then he gave his brush": [65535, 0], "he gave his brush another": [65535, 0], "gave his brush another gentle": [65535, 0], "his brush another gentle sweep": [65535, 0], "brush another gentle sweep and": [65535, 0], "another gentle sweep and surveyed": [65535, 0], "gentle sweep and surveyed the": [65535, 0], "sweep and surveyed the result": [65535, 0], "and surveyed the result as": [65535, 0], "surveyed the result as before": [65535, 0], "the result as before ben": [65535, 0], "result as before ben ranged": [65535, 0], "as before ben ranged up": [65535, 0], "before ben ranged up alongside": [65535, 0], "ben ranged up alongside of": [65535, 0], "ranged up alongside of him": [65535, 0], "up alongside of him tom's": [65535, 0], "alongside of him tom's mouth": [65535, 0], "of him tom's mouth watered": [65535, 0], "him tom's mouth watered for": [65535, 0], "tom's mouth watered for the": [65535, 0], "mouth watered for the apple": [65535, 0], "watered for the apple but": [65535, 0], "for the apple but he": [65535, 0], "the apple but he stuck": [65535, 0], "apple but he stuck to": [65535, 0], "but he stuck to his": [65535, 0], "he stuck to his work": [65535, 0], "stuck to his work ben": [65535, 0], "to his work ben said": [65535, 0], "his work ben said hello": [65535, 0], "work ben said hello old": [65535, 0], "ben said hello old chap": [65535, 0], "said hello old chap you": [65535, 0], "hello old chap you got": [65535, 0], "old chap you got to": [65535, 0], "chap you got to work": [65535, 0], "you got to work hey": [65535, 0], "got to work hey tom": [65535, 0], "to work hey tom wheeled": [65535, 0], "work hey tom wheeled suddenly": [65535, 0], "hey tom wheeled suddenly and": [65535, 0], "tom wheeled suddenly and said": [65535, 0], "wheeled suddenly and said why": [65535, 0], "suddenly and said why it's": [65535, 0], "and said why it's you": [65535, 0], "said why it's you ben": [65535, 0], "why it's you ben i": [65535, 0], "it's you ben i warn't": [65535, 0], "you ben i warn't noticing": [65535, 0], "ben i warn't noticing say": [65535, 0], "i warn't noticing say i'm": [65535, 0], "warn't noticing say i'm going": [65535, 0], "noticing say i'm going in": [65535, 0], "say i'm going in a": [65535, 0], "i'm going in a swimming": [65535, 0], "going in a swimming i": [65535, 0], "in a swimming i am": [65535, 0], "a swimming i am don't": [65535, 0], "swimming i am don't you": [65535, 0], "i am don't you wish": [65535, 0], "am don't you wish you": [65535, 0], "don't you wish you could": [65535, 0], "you wish you could but": [65535, 0], "wish you could but of": [65535, 0], "you could but of course": [65535, 0], "could but of course you'd": [65535, 0], "but of course you'd druther": [65535, 0], "of course you'd druther work": [65535, 0], "course you'd druther work wouldn't": [65535, 0], "you'd druther work wouldn't you": [65535, 0], "druther work wouldn't you course": [65535, 0], "work wouldn't you course you": [65535, 0], "wouldn't you course you would": [65535, 0], "you course you would tom": [65535, 0], "course you would tom contemplated": [65535, 0], "you would tom contemplated the": [65535, 0], "would tom contemplated the boy": [65535, 0], "tom contemplated the boy a": [65535, 0], "contemplated the boy a bit": [65535, 0], "the boy a bit and": [65535, 0], "boy a bit and said": [65535, 0], "a bit and said what": [65535, 0], "bit and said what do": [65535, 0], "and said what do you": [65535, 0], "said what do you call": [65535, 0], "what do you call work": [65535, 0], "do you call work why": [65535, 0], "you call work why ain't": [65535, 0], "call work why ain't that": [65535, 0], "work why ain't that work": [65535, 0], "why ain't that work tom": [65535, 0], "ain't that work tom resumed": [65535, 0], "that work tom resumed his": [65535, 0], "work tom resumed his whitewashing": [65535, 0], "tom resumed his whitewashing and": [65535, 0], "resumed his whitewashing and answered": [65535, 0], "his whitewashing and answered carelessly": [65535, 0], "whitewashing and answered carelessly well": [65535, 0], "and answered carelessly well maybe": [65535, 0], "answered carelessly well maybe it": [65535, 0], "carelessly well maybe it is": [65535, 0], "well maybe it is and": [65535, 0], "maybe it is and maybe": [65535, 0], "it is and maybe it": [65535, 0], "is and maybe it ain't": [65535, 0], "and maybe it ain't all": [65535, 0], "maybe it ain't all i": [65535, 0], "it ain't all i know": [65535, 0], "ain't all i know is": [65535, 0], "all i know is it": [65535, 0], "i know is it suits": [65535, 0], "know is it suits tom": [65535, 0], "is it suits tom sawyer": [65535, 0], "it suits tom sawyer oh": [65535, 0], "suits tom sawyer oh come": [65535, 0], "tom sawyer oh come now": [65535, 0], "sawyer oh come now you": [65535, 0], "oh come now you don't": [65535, 0], "come now you don't mean": [65535, 0], "now you don't mean to": [65535, 0], "you don't mean to let": [65535, 0], "don't mean to let on": [65535, 0], "mean to let on that": [65535, 0], "to let on that you": [65535, 0], "let on that you like": [65535, 0], "on that you like it": [65535, 0], "that you like it the": [65535, 0], "you like it the brush": [65535, 0], "like it the brush continued": [65535, 0], "it the brush continued to": [65535, 0], "the brush continued to move": [65535, 0], "brush continued to move like": [65535, 0], "continued to move like it": [65535, 0], "to move like it well": [65535, 0], "move like it well i": [65535, 0], "like it well i don't": [65535, 0], "it well i don't see": [65535, 0], "well i don't see why": [65535, 0], "i don't see why i": [65535, 0], "don't see why i oughtn't": [65535, 0], "see why i oughtn't to": [65535, 0], "why i oughtn't to like": [65535, 0], "i oughtn't to like it": [65535, 0], "oughtn't to like it does": [65535, 0], "to like it does a": [65535, 0], "like it does a boy": [65535, 0], "it does a boy get": [65535, 0], "does a boy get a": [65535, 0], "a boy get a chance": [65535, 0], "boy get a chance to": [65535, 0], "get a chance to whitewash": [65535, 0], "a chance to whitewash a": [65535, 0], "chance to whitewash a fence": [65535, 0], "to whitewash a fence every": [65535, 0], "whitewash a fence every day": [65535, 0], "a fence every day that": [65535, 0], "fence every day that put": [65535, 0], "every day that put the": [65535, 0], "day that put the thing": [65535, 0], "that put the thing in": [65535, 0], "put the thing in a": [65535, 0], "the thing in a new": [65535, 0], "thing in a new light": [65535, 0], "in a new light ben": [65535, 0], "a new light ben stopped": [65535, 0], "new light ben stopped nibbling": [65535, 0], "light ben stopped nibbling his": [65535, 0], "ben stopped nibbling his apple": [65535, 0], "stopped nibbling his apple tom": [65535, 0], "nibbling his apple tom swept": [65535, 0], "his apple tom swept his": [65535, 0], "apple tom swept his brush": [65535, 0], "tom swept his brush daintily": [65535, 0], "swept his brush daintily back": [65535, 0], "his brush daintily back and": [65535, 0], "brush daintily back and forth": [65535, 0], "daintily back and forth stepped": [65535, 0], "back and forth stepped back": [65535, 0], "and forth stepped back to": [65535, 0], "forth stepped back to note": [65535, 0], "stepped back to note the": [65535, 0], "back to note the effect": [65535, 0], "to note the effect added": [65535, 0], "note the effect added a": [65535, 0], "the effect added a touch": [65535, 0], "effect added a touch here": [65535, 0], "added a touch here and": [65535, 0], "a touch here and there": [65535, 0], "touch here and there criticised": [65535, 0], "here and there criticised the": [65535, 0], "and there criticised the effect": [65535, 0], "there criticised the effect again": [65535, 0], "criticised the effect again ben": [65535, 0], "the effect again ben watching": [65535, 0], "effect again ben watching every": [65535, 0], "again ben watching every move": [65535, 0], "ben watching every move and": [65535, 0], "watching every move and getting": [65535, 0], "every move and getting more": [65535, 0], "move and getting more and": [65535, 0], "and getting more and more": [65535, 0], "getting more and more interested": [65535, 0], "more and more interested more": [65535, 0], "and more interested more and": [65535, 0], "more interested more and more": [65535, 0], "interested more and more absorbed": [65535, 0], "more and more absorbed presently": [65535, 0], "and more absorbed presently he": [65535, 0], "more absorbed presently he said": [65535, 0], "absorbed presently he said say": [65535, 0], "presently he said say tom": [65535, 0], "he said say tom let": [65535, 0], "said say tom let me": [65535, 0], "say tom let me whitewash": [65535, 0], "tom let me whitewash a": [65535, 0], "let me whitewash a little": [65535, 0], "me whitewash a little tom": [65535, 0], "whitewash a little tom considered": [65535, 0], "a little tom considered was": [65535, 0], "little tom considered was about": [65535, 0], "tom considered was about to": [65535, 0], "considered was about to consent": [65535, 0], "was about to consent but": [65535, 0], "about to consent but he": [65535, 0], "to consent but he altered": [65535, 0], "consent but he altered his": [65535, 0], "but he altered his mind": [65535, 0], "he altered his mind no": [65535, 0], "altered his mind no no": [65535, 0], "his mind no no i": [65535, 0], "mind no no i reckon": [65535, 0], "no no i reckon it": [65535, 0], "no i reckon it wouldn't": [65535, 0], "i reckon it wouldn't hardly": [65535, 0], "reckon it wouldn't hardly do": [65535, 0], "it wouldn't hardly do ben": [65535, 0], "wouldn't hardly do ben you": [65535, 0], "hardly do ben you see": [65535, 0], "do ben you see aunt": [65535, 0], "ben you see aunt polly's": [65535, 0], "you see aunt polly's awful": [65535, 0], "see aunt polly's awful particular": [65535, 0], "aunt polly's awful particular about": [65535, 0], "polly's awful particular about this": [65535, 0], "awful particular about this fence": [65535, 0], "particular about this fence right": [65535, 0], "about this fence right here": [65535, 0], "this fence right here on": [65535, 0], "fence right here on the": [65535, 0], "right here on the street": [65535, 0], "here on the street you": [65535, 0], "on the street you know": [65535, 0], "the street you know but": [65535, 0], "street you know but if": [65535, 0], "you know but if it": [65535, 0], "know but if it was": [65535, 0], "but if it was the": [65535, 0], "if it was the back": [65535, 0], "it was the back fence": [65535, 0], "was the back fence i": [65535, 0], "the back fence i wouldn't": [65535, 0], "back fence i wouldn't mind": [65535, 0], "fence i wouldn't mind and": [65535, 0], "i wouldn't mind and she": [65535, 0], "wouldn't mind and she wouldn't": [65535, 0], "mind and she wouldn't yes": [65535, 0], "and she wouldn't yes she's": [65535, 0], "she wouldn't yes she's awful": [65535, 0], "wouldn't yes she's awful particular": [65535, 0], "yes she's awful particular about": [65535, 0], "she's awful particular about this": [65535, 0], "particular about this fence it's": [65535, 0], "about this fence it's got": [65535, 0], "this fence it's got to": [65535, 0], "fence it's got to be": [65535, 0], "it's got to be done": [65535, 0], "got to be done very": [65535, 0], "to be done very careful": [65535, 0], "be done very careful i": [65535, 0], "done very careful i reckon": [65535, 0], "very careful i reckon there": [65535, 0], "careful i reckon there ain't": [65535, 0], "i reckon there ain't one": [65535, 0], "reckon there ain't one boy": [65535, 0], "there ain't one boy in": [65535, 0], "ain't one boy in a": [65535, 0], "one boy in a thousand": [65535, 0], "boy in a thousand maybe": [65535, 0], "in a thousand maybe two": [65535, 0], "a thousand maybe two thousand": [65535, 0], "thousand maybe two thousand that": [65535, 0], "maybe two thousand that can": [65535, 0], "two thousand that can do": [65535, 0], "thousand that can do it": [65535, 0], "that can do it the": [65535, 0], "can do it the way": [65535, 0], "do it the way it's": [65535, 0], "it the way it's got": [65535, 0], "the way it's got to": [65535, 0], "way it's got to be": [65535, 0], "got to be done no": [65535, 0], "to be done no is": [65535, 0], "be done no is that": [65535, 0], "done no is that so": [65535, 0], "no is that so oh": [65535, 0], "is that so oh come": [65535, 0], "that so oh come now": [65535, 0], "so oh come now lemme": [65535, 0], "oh come now lemme just": [65535, 0], "come now lemme just try": [65535, 0], "now lemme just try only": [65535, 0], "lemme just try only just": [65535, 0], "just try only just a": [65535, 0], "try only just a little": [65535, 0], "only just a little i'd": [65535, 0], "just a little i'd let": [65535, 0], "a little i'd let you": [65535, 0], "little i'd let you if": [65535, 0], "i'd let you if you": [65535, 0], "let you if you was": [65535, 0], "you if you was me": [65535, 0], "if you was me tom": [65535, 0], "you was me tom ben": [65535, 0], "was me tom ben i'd": [65535, 0], "me tom ben i'd like": [65535, 0], "tom ben i'd like to": [65535, 0], "ben i'd like to honest": [65535, 0], "i'd like to honest injun": [65535, 0], "like to honest injun but": [65535, 0], "to honest injun but aunt": [65535, 0], "honest injun but aunt polly": [65535, 0], "injun but aunt polly well": [65535, 0], "but aunt polly well jim": [65535, 0], "aunt polly well jim wanted": [65535, 0], "polly well jim wanted to": [65535, 0], "well jim wanted to do": [65535, 0], "jim wanted to do it": [65535, 0], "wanted to do it but": [65535, 0], "to do it but she": [65535, 0], "do it but she wouldn't": [65535, 0], "it but she wouldn't let": [65535, 0], "but she wouldn't let him": [65535, 0], "she wouldn't let him sid": [65535, 0], "wouldn't let him sid wanted": [65535, 0], "let him sid wanted to": [65535, 0], "him sid wanted to do": [65535, 0], "sid wanted to do it": [65535, 0], "wanted to do it and": [65535, 0], "to do it and she": [65535, 0], "do it and she wouldn't": [65535, 0], "it and she wouldn't let": [65535, 0], "and she wouldn't let sid": [65535, 0], "she wouldn't let sid now": [65535, 0], "wouldn't let sid now don't": [65535, 0], "let sid now don't you": [65535, 0], "sid now don't you see": [65535, 0], "now don't you see how": [65535, 0], "don't you see how i'm": [65535, 0], "you see how i'm fixed": [65535, 0], "see how i'm fixed if": [65535, 0], "how i'm fixed if you": [65535, 0], "i'm fixed if you was": [65535, 0], "fixed if you was to": [65535, 0], "if you was to tackle": [65535, 0], "you was to tackle this": [65535, 0], "was to tackle this fence": [65535, 0], "to tackle this fence and": [65535, 0], "tackle this fence and anything": [65535, 0], "this fence and anything was": [65535, 0], "fence and anything was to": [65535, 0], "and anything was to happen": [65535, 0], "anything was to happen to": [65535, 0], "was to happen to it": [65535, 0], "to happen to it oh": [65535, 0], "happen to it oh shucks": [65535, 0], "to it oh shucks i'll": [65535, 0], "it oh shucks i'll be": [65535, 0], "oh shucks i'll be just": [65535, 0], "shucks i'll be just as": [65535, 0], "i'll be just as careful": [65535, 0], "be just as careful now": [65535, 0], "just as careful now lemme": [65535, 0], "as careful now lemme try": [65535, 0], "careful now lemme try say": [65535, 0], "now lemme try say i'll": [65535, 0], "lemme try say i'll give": [65535, 0], "try say i'll give you": [65535, 0], "say i'll give you the": [65535, 0], "i'll give you the core": [65535, 0], "give you the core of": [65535, 0], "you the core of my": [65535, 0], "the core of my apple": [65535, 0], "core of my apple well": [65535, 0], "of my apple well here": [65535, 0], "my apple well here no": [65535, 0], "apple well here no ben": [65535, 0], "well here no ben now": [65535, 0], "here no ben now don't": [65535, 0], "no ben now don't i'm": [65535, 0], "ben now don't i'm afeard": [65535, 0], "now don't i'm afeard i'll": [65535, 0], "don't i'm afeard i'll give": [65535, 0], "i'm afeard i'll give you": [65535, 0], "afeard i'll give you all": [65535, 0], "i'll give you all of": [65535, 0], "give you all of it": [65535, 0], "you all of it tom": [65535, 0], "all of it tom gave": [65535, 0], "of it tom gave up": [65535, 0], "it tom gave up the": [65535, 0], "tom gave up the brush": [65535, 0], "gave up the brush with": [65535, 0], "up the brush with reluctance": [65535, 0], "the brush with reluctance in": [65535, 0], "brush with reluctance in his": [65535, 0], "with reluctance in his face": [65535, 0], "reluctance in his face but": [65535, 0], "in his face but alacrity": [65535, 0], "his face but alacrity in": [65535, 0], "face but alacrity in his": [65535, 0], "but alacrity in his heart": [65535, 0], "alacrity in his heart and": [65535, 0], "in his heart and while": [65535, 0], "his heart and while the": [65535, 0], "heart and while the late": [65535, 0], "and while the late steamer": [65535, 0], "while the late steamer big": [65535, 0], "the late steamer big missouri": [65535, 0], "late steamer big missouri worked": [65535, 0], "steamer big missouri worked and": [65535, 0], "big missouri worked and sweated": [65535, 0], "missouri worked and sweated in": [65535, 0], "worked and sweated in the": [65535, 0], "and sweated in the sun": [65535, 0], "sweated in the sun the": [65535, 0], "in the sun the retired": [65535, 0], "the sun the retired artist": [65535, 0], "sun the retired artist sat": [65535, 0], "the retired artist sat on": [65535, 0], "retired artist sat on a": [65535, 0], "artist sat on a barrel": [65535, 0], "sat on a barrel in": [65535, 0], "on a barrel in the": [65535, 0], "a barrel in the shade": [65535, 0], "barrel in the shade close": [65535, 0], "in the shade close by": [65535, 0], "the shade close by dangled": [65535, 0], "shade close by dangled his": [65535, 0], "close by dangled his legs": [65535, 0], "by dangled his legs munched": [65535, 0], "dangled his legs munched his": [65535, 0], "his legs munched his apple": [65535, 0], "legs munched his apple and": [65535, 0], "munched his apple and planned": [65535, 0], "his apple and planned the": [65535, 0], "apple and planned the slaughter": [65535, 0], "and planned the slaughter of": [65535, 0], "planned the slaughter of more": [65535, 0], "the slaughter of more innocents": [65535, 0], "slaughter of more innocents there": [65535, 0], "of more innocents there was": [65535, 0], "more innocents there was no": [65535, 0], "innocents there was no lack": [65535, 0], "there was no lack of": [65535, 0], "was no lack of material": [65535, 0], "no lack of material boys": [65535, 0], "lack of material boys happened": [65535, 0], "of material boys happened along": [65535, 0], "material boys happened along every": [65535, 0], "boys happened along every little": [65535, 0], "happened along every little while": [65535, 0], "along every little while they": [65535, 0], "every little while they came": [65535, 0], "little while they came to": [65535, 0], "while they came to jeer": [65535, 0], "they came to jeer but": [65535, 0], "came to jeer but remained": [65535, 0], "to jeer but remained to": [65535, 0], "jeer but remained to whitewash": [65535, 0], "but remained to whitewash by": [65535, 0], "remained to whitewash by the": [65535, 0], "to whitewash by the time": [65535, 0], "whitewash by the time ben": [65535, 0], "by the time ben was": [65535, 0], "the time ben was fagged": [65535, 0], "time ben was fagged out": [65535, 0], "ben was fagged out tom": [65535, 0], "was fagged out tom had": [65535, 0], "fagged out tom had traded": [65535, 0], "out tom had traded the": [65535, 0], "tom had traded the next": [65535, 0], "had traded the next chance": [65535, 0], "traded the next chance to": [65535, 0], "the next chance to billy": [65535, 0], "next chance to billy fisher": [65535, 0], "chance to billy fisher for": [65535, 0], "to billy fisher for a": [65535, 0], "billy fisher for a kite": [65535, 0], "fisher for a kite in": [65535, 0], "for a kite in good": [65535, 0], "a kite in good repair": [65535, 0], "kite in good repair and": [65535, 0], "in good repair and when": [65535, 0], "good repair and when he": [65535, 0], "repair and when he played": [65535, 0], "and when he played out": [65535, 0], "when he played out johnny": [65535, 0], "he played out johnny miller": [65535, 0], "played out johnny miller bought": [65535, 0], "out johnny miller bought in": [65535, 0], "johnny miller bought in for": [65535, 0], "miller bought in for a": [65535, 0], "bought in for a dead": [65535, 0], "in for a dead rat": [65535, 0], "for a dead rat and": [65535, 0], "a dead rat and a": [65535, 0], "dead rat and a string": [65535, 0], "rat and a string to": [65535, 0], "and a string to swing": [65535, 0], "a string to swing it": [65535, 0], "string to swing it with": [65535, 0], "to swing it with and": [65535, 0], "swing it with and so": [65535, 0], "it with and so on": [65535, 0], "with and so on and": [65535, 0], "and so on and so": [65535, 0], "so on and so on": [65535, 0], "on and so on hour": [65535, 0], "and so on hour after": [65535, 0], "so on hour after hour": [65535, 0], "on hour after hour and": [65535, 0], "hour after hour and when": [65535, 0], "after hour and when the": [65535, 0], "hour and when the middle": [65535, 0], "and when the middle of": [65535, 0], "when the middle of the": [65535, 0], "the middle of the afternoon": [65535, 0], "middle of the afternoon came": [65535, 0], "of the afternoon came from": [65535, 0], "the afternoon came from being": [65535, 0], "afternoon came from being a": [65535, 0], "came from being a poor": [65535, 0], "from being a poor poverty": [65535, 0], "being a poor poverty stricken": [65535, 0], "a poor poverty stricken boy": [65535, 0], "poor poverty stricken boy in": [65535, 0], "poverty stricken boy in the": [65535, 0], "stricken boy in the morning": [65535, 0], "boy in the morning tom": [65535, 0], "in the morning tom was": [65535, 0], "the morning tom was literally": [65535, 0], "morning tom was literally rolling": [65535, 0], "tom was literally rolling in": [65535, 0], "was literally rolling in wealth": [65535, 0], "literally rolling in wealth he": [65535, 0], "rolling in wealth he had": [65535, 0], "in wealth he had besides": [65535, 0], "wealth he had besides the": [65535, 0], "he had besides the things": [65535, 0], "had besides the things before": [65535, 0], "besides the things before mentioned": [65535, 0], "the things before mentioned twelve": [65535, 0], "things before mentioned twelve marbles": [65535, 0], "before mentioned twelve marbles part": [65535, 0], "mentioned twelve marbles part of": [65535, 0], "twelve marbles part of a": [65535, 0], "marbles part of a jews": [65535, 0], "part of a jews harp": [65535, 0], "of a jews harp a": [65535, 0], "a jews harp a piece": [65535, 0], "jews harp a piece of": [65535, 0], "harp a piece of blue": [65535, 0], "a piece of blue bottle": [65535, 0], "piece of blue bottle glass": [65535, 0], "of blue bottle glass to": [65535, 0], "blue bottle glass to look": [65535, 0], "bottle glass to look through": [65535, 0], "glass to look through a": [65535, 0], "to look through a spool": [65535, 0], "look through a spool cannon": [65535, 0], "through a spool cannon a": [65535, 0], "a spool cannon a key": [65535, 0], "spool cannon a key that": [65535, 0], "cannon a key that wouldn't": [65535, 0], "a key that wouldn't unlock": [65535, 0], "key that wouldn't unlock anything": [65535, 0], "that wouldn't unlock anything a": [65535, 0], "wouldn't unlock anything a fragment": [65535, 0], "unlock anything a fragment of": [65535, 0], "anything a fragment of chalk": [65535, 0], "a fragment of chalk a": [65535, 0], "fragment of chalk a glass": [65535, 0], "of chalk a glass stopper": [65535, 0], "chalk a glass stopper of": [65535, 0], "a glass stopper of a": [65535, 0], "glass stopper of a decanter": [65535, 0], "stopper of a decanter a": [65535, 0], "of a decanter a tin": [65535, 0], "a decanter a tin soldier": [65535, 0], "decanter a tin soldier a": [65535, 0], "a tin soldier a couple": [65535, 0], "tin soldier a couple of": [65535, 0], "soldier a couple of tadpoles": [65535, 0], "a couple of tadpoles six": [65535, 0], "couple of tadpoles six fire": [65535, 0], "of tadpoles six fire crackers": [65535, 0], "tadpoles six fire crackers a": [65535, 0], "six fire crackers a kitten": [65535, 0], "fire crackers a kitten with": [65535, 0], "crackers a kitten with only": [65535, 0], "a kitten with only one": [65535, 0], "kitten with only one eye": [65535, 0], "with only one eye a": [65535, 0], "only one eye a brass": [65535, 0], "one eye a brass doorknob": [65535, 0], "eye a brass doorknob a": [65535, 0], "a brass doorknob a dog": [65535, 0], "brass doorknob a dog collar": [65535, 0], "doorknob a dog collar but": [65535, 0], "a dog collar but no": [65535, 0], "dog collar but no dog": [65535, 0], "collar but no dog the": [65535, 0], "but no dog the handle": [65535, 0], "no dog the handle of": [65535, 0], "dog the handle of a": [65535, 0], "the handle of a knife": [65535, 0], "handle of a knife four": [65535, 0], "of a knife four pieces": [65535, 0], "a knife four pieces of": [65535, 0], "knife four pieces of orange": [65535, 0], "four pieces of orange peel": [65535, 0], "pieces of orange peel and": [65535, 0], "of orange peel and a": [65535, 0], "orange peel and a dilapidated": [65535, 0], "peel and a dilapidated old": [65535, 0], "and a dilapidated old window": [65535, 0], "a dilapidated old window sash": [65535, 0], "dilapidated old window sash he": [65535, 0], "old window sash he had": [65535, 0], "window sash he had had": [65535, 0], "sash he had had a": [65535, 0], "he had had a nice": [65535, 0], "had had a nice good": [65535, 0], "had a nice good idle": [65535, 0], "a nice good idle time": [65535, 0], "nice good idle time all": [65535, 0], "good idle time all the": [65535, 0], "idle time all the while": [65535, 0], "time all the while plenty": [65535, 0], "all the while plenty of": [65535, 0], "the while plenty of company": [65535, 0], "while plenty of company and": [65535, 0], "plenty of company and the": [65535, 0], "of company and the fence": [65535, 0], "company and the fence had": [65535, 0], "and the fence had three": [65535, 0], "the fence had three coats": [65535, 0], "fence had three coats of": [65535, 0], "had three coats of whitewash": [65535, 0], "three coats of whitewash on": [65535, 0], "coats of whitewash on it": [65535, 0], "of whitewash on it if": [65535, 0], "whitewash on it if he": [65535, 0], "on it if he hadn't": [65535, 0], "it if he hadn't run": [65535, 0], "if he hadn't run out": [65535, 0], "he hadn't run out of": [65535, 0], "hadn't run out of whitewash": [65535, 0], "run out of whitewash he": [65535, 0], "out of whitewash he would": [65535, 0], "of whitewash he would have": [65535, 0], "whitewash he would have bankrupted": [65535, 0], "he would have bankrupted every": [65535, 0], "would have bankrupted every boy": [65535, 0], "have bankrupted every boy in": [65535, 0], "bankrupted every boy in the": [65535, 0], "every boy in the village": [65535, 0], "boy in the village tom": [65535, 0], "in the village tom said": [65535, 0], "the village tom said to": [65535, 0], "village tom said to himself": [65535, 0], "tom said to himself that": [65535, 0], "said to himself that it": [65535, 0], "to himself that it was": [65535, 0], "himself that it was not": [65535, 0], "that it was not such": [65535, 0], "it was not such a": [65535, 0], "was not such a hollow": [65535, 0], "not such a hollow world": [65535, 0], "such a hollow world after": [65535, 0], "a hollow world after all": [65535, 0], "hollow world after all he": [65535, 0], "world after all he had": [65535, 0], "after all he had discovered": [65535, 0], "all he had discovered a": [65535, 0], "he had discovered a great": [65535, 0], "had discovered a great law": [65535, 0], "discovered a great law of": [65535, 0], "a great law of human": [65535, 0], "great law of human action": [65535, 0], "law of human action without": [65535, 0], "of human action without knowing": [65535, 0], "human action without knowing it": [65535, 0], "action without knowing it namely": [65535, 0], "without knowing it namely that": [65535, 0], "knowing it namely that in": [65535, 0], "it namely that in order": [65535, 0], "namely that in order to": [65535, 0], "that in order to make": [65535, 0], "in order to make a": [65535, 0], "order to make a man": [65535, 0], "to make a man or": [65535, 0], "make a man or a": [65535, 0], "a man or a boy": [65535, 0], "man or a boy covet": [65535, 0], "or a boy covet a": [65535, 0], "a boy covet a thing": [65535, 0], "boy covet a thing it": [65535, 0], "covet a thing it is": [65535, 0], "a thing it is only": [65535, 0], "thing it is only necessary": [65535, 0], "it is only necessary to": [65535, 0], "is only necessary to make": [65535, 0], "only necessary to make the": [65535, 0], "necessary to make the thing": [65535, 0], "to make the thing difficult": [65535, 0], "make the thing difficult to": [65535, 0], "the thing difficult to attain": [65535, 0], "thing difficult to attain if": [65535, 0], "difficult to attain if he": [65535, 0], "to attain if he had": [65535, 0], "attain if he had been": [65535, 0], "if he had been a": [65535, 0], "he had been a great": [65535, 0], "had been a great and": [65535, 0], "been a great and wise": [65535, 0], "a great and wise philosopher": [65535, 0], "great and wise philosopher like": [65535, 0], "and wise philosopher like the": [65535, 0], "wise philosopher like the writer": [65535, 0], "philosopher like the writer of": [65535, 0], "like the writer of this": [65535, 0], "the writer of this book": [65535, 0], "writer of this book he": [65535, 0], "of this book he would": [65535, 0], "this book he would now": [65535, 0], "book he would now have": [65535, 0], "he would now have comprehended": [65535, 0], "would now have comprehended that": [65535, 0], "now have comprehended that work": [65535, 0], "have comprehended that work consists": [65535, 0], "comprehended that work consists of": [65535, 0], "that work consists of whatever": [65535, 0], "work consists of whatever a": [65535, 0], "consists of whatever a body": [65535, 0], "of whatever a body is": [65535, 0], "whatever a body is obliged": [65535, 0], "a body is obliged to": [65535, 0], "body is obliged to do": [65535, 0], "is obliged to do and": [65535, 0], "obliged to do and that": [65535, 0], "to do and that play": [65535, 0], "do and that play consists": [65535, 0], "and that play consists of": [65535, 0], "that play consists of whatever": [65535, 0], "play consists of whatever a": [65535, 0], "whatever a body is not": [65535, 0], "a body is not obliged": [65535, 0], "body is not obliged to": [65535, 0], "is not obliged to do": [65535, 0], "not obliged to do and": [65535, 0], "obliged to do and this": [65535, 0], "to do and this would": [65535, 0], "do and this would help": [65535, 0], "and this would help him": [65535, 0], "this would help him to": [65535, 0], "would help him to understand": [65535, 0], "help him to understand why": [65535, 0], "him to understand why constructing": [65535, 0], "to understand why constructing artificial": [65535, 0], "understand why constructing artificial flowers": [65535, 0], "why constructing artificial flowers or": [65535, 0], "constructing artificial flowers or performing": [65535, 0], "artificial flowers or performing on": [65535, 0], "flowers or performing on a": [65535, 0], "or performing on a tread": [65535, 0], "performing on a tread mill": [65535, 0], "on a tread mill is": [65535, 0], "a tread mill is work": [65535, 0], "tread mill is work while": [65535, 0], "mill is work while rolling": [65535, 0], "is work while rolling ten": [65535, 0], "work while rolling ten pins": [65535, 0], "while rolling ten pins or": [65535, 0], "rolling ten pins or climbing": [65535, 0], "ten pins or climbing mont": [65535, 0], "pins or climbing mont blanc": [65535, 0], "or climbing mont blanc is": [65535, 0], "climbing mont blanc is only": [65535, 0], "mont blanc is only amusement": [65535, 0], "blanc is only amusement there": [65535, 0], "is only amusement there are": [65535, 0], "only amusement there are wealthy": [65535, 0], "amusement there are wealthy gentlemen": [65535, 0], "there are wealthy gentlemen in": [65535, 0], "are wealthy gentlemen in england": [65535, 0], "wealthy gentlemen in england who": [65535, 0], "gentlemen in england who drive": [65535, 0], "in england who drive four": [65535, 0], "england who drive four horse": [65535, 0], "who drive four horse passenger": [65535, 0], "drive four horse passenger coaches": [65535, 0], "four horse passenger coaches twenty": [65535, 0], "horse passenger coaches twenty or": [65535, 0], "passenger coaches twenty or thirty": [65535, 0], "coaches twenty or thirty miles": [65535, 0], "twenty or thirty miles on": [65535, 0], "or thirty miles on a": [65535, 0], "thirty miles on a daily": [65535, 0], "miles on a daily line": [65535, 0], "on a daily line in": [65535, 0], "a daily line in the": [65535, 0], "daily line in the summer": [65535, 0], "line in the summer because": [65535, 0], "in the summer because the": [65535, 0], "the summer because the privilege": [65535, 0], "summer because the privilege costs": [65535, 0], "because the privilege costs them": [65535, 0], "the privilege costs them considerable": [65535, 0], "privilege costs them considerable money": [65535, 0], "costs them considerable money but": [65535, 0], "them considerable money but if": [65535, 0], "considerable money but if they": [65535, 0], "money but if they were": [65535, 0], "but if they were offered": [65535, 0], "if they were offered wages": [65535, 0], "they were offered wages for": [65535, 0], "were offered wages for the": [65535, 0], "offered wages for the service": [65535, 0], "wages for the service that": [65535, 0], "for the service that would": [65535, 0], "the service that would turn": [65535, 0], "service that would turn it": [65535, 0], "that would turn it into": [65535, 0], "would turn it into work": [65535, 0], "turn it into work and": [65535, 0], "it into work and then": [65535, 0], "into work and then they": [65535, 0], "work and then they would": [65535, 0], "and then they would resign": [65535, 0], "then they would resign the": [65535, 0], "they would resign the boy": [65535, 0], "would resign the boy mused": [65535, 0], "resign the boy mused awhile": [65535, 0], "the boy mused awhile over": [65535, 0], "boy mused awhile over the": [65535, 0], "mused awhile over the substantial": [65535, 0], "awhile over the substantial change": [65535, 0], "over the substantial change which": [65535, 0], "the substantial change which had": [65535, 0], "substantial change which had taken": [65535, 0], "change which had taken place": [65535, 0], "which had taken place in": [65535, 0], "had taken place in his": [65535, 0], "taken place in his worldly": [65535, 0], "place in his worldly circumstances": [65535, 0], "in his worldly circumstances and": [65535, 0], "his worldly circumstances and then": [65535, 0], "worldly circumstances and then wended": [65535, 0], "circumstances and then wended toward": [65535, 0], "and then wended toward headquarters": [65535, 0], "then wended toward headquarters to": [65535, 0], "wended toward headquarters to report": [65535, 0], "saturday morning was come and all": [65535, 0], "morning was come and all the": [65535, 0], "was come and all the summer": [65535, 0], "come and all the summer world": [65535, 0], "and all the summer world was": [65535, 0], "all the summer world was bright": [65535, 0], "the summer world was bright and": [65535, 0], "summer world was bright and fresh": [65535, 0], "world was bright and fresh and": [65535, 0], "was bright and fresh and brimming": [65535, 0], "bright and fresh and brimming with": [65535, 0], "and fresh and brimming with life": [65535, 0], "fresh and brimming with life there": [65535, 0], "and brimming with life there was": [65535, 0], "brimming with life there was a": [65535, 0], "with life there was a song": [65535, 0], "life there was a song in": [65535, 0], "there was a song in every": [65535, 0], "was a song in every heart": [65535, 0], "a song in every heart and": [65535, 0], "song in every heart and if": [65535, 0], "in every heart and if the": [65535, 0], "every heart and if the heart": [65535, 0], "heart and if the heart was": [65535, 0], "and if the heart was young": [65535, 0], "if the heart was young the": [65535, 0], "the heart was young the music": [65535, 0], "heart was young the music issued": [65535, 0], "was young the music issued at": [65535, 0], "young the music issued at the": [65535, 0], "the music issued at the lips": [65535, 0], "music issued at the lips there": [65535, 0], "issued at the lips there was": [65535, 0], "at the lips there was cheer": [65535, 0], "the lips there was cheer in": [65535, 0], "lips there was cheer in every": [65535, 0], "there was cheer in every face": [65535, 0], "was cheer in every face and": [65535, 0], "cheer in every face and a": [65535, 0], "in every face and a spring": [65535, 0], "every face and a spring in": [65535, 0], "face and a spring in every": [65535, 0], "and a spring in every step": [65535, 0], "a spring in every step the": [65535, 0], "spring in every step the locust": [65535, 0], "in every step the locust trees": [65535, 0], "every step the locust trees were": [65535, 0], "step the locust trees were in": [65535, 0], "the locust trees were in bloom": [65535, 0], "locust trees were in bloom and": [65535, 0], "trees were in bloom and the": [65535, 0], "were in bloom and the fragrance": [65535, 0], "in bloom and the fragrance of": [65535, 0], "bloom and the fragrance of the": [65535, 0], "and the fragrance of the blossoms": [65535, 0], "the fragrance of the blossoms filled": [65535, 0], "fragrance of the blossoms filled the": [65535, 0], "of the blossoms filled the air": [65535, 0], "the blossoms filled the air cardiff": [65535, 0], "blossoms filled the air cardiff hill": [65535, 0], "filled the air cardiff hill beyond": [65535, 0], "the air cardiff hill beyond the": [65535, 0], "air cardiff hill beyond the village": [65535, 0], "cardiff hill beyond the village and": [65535, 0], "hill beyond the village and above": [65535, 0], "beyond the village and above it": [65535, 0], "the village and above it was": [65535, 0], "village and above it was green": [65535, 0], "and above it was green with": [65535, 0], "above it was green with vegetation": [65535, 0], "it was green with vegetation and": [65535, 0], "was green with vegetation and it": [65535, 0], "green with vegetation and it lay": [65535, 0], "with vegetation and it lay just": [65535, 0], "vegetation and it lay just far": [65535, 0], "and it lay just far enough": [65535, 0], "it lay just far enough away": [65535, 0], "lay just far enough away to": [65535, 0], "just far enough away to seem": [65535, 0], "far enough away to seem a": [65535, 0], "enough away to seem a delectable": [65535, 0], "away to seem a delectable land": [65535, 0], "to seem a delectable land dreamy": [65535, 0], "seem a delectable land dreamy reposeful": [65535, 0], "a delectable land dreamy reposeful and": [65535, 0], "delectable land dreamy reposeful and inviting": [65535, 0], "land dreamy reposeful and inviting tom": [65535, 0], "dreamy reposeful and inviting tom appeared": [65535, 0], "reposeful and inviting tom appeared on": [65535, 0], "and inviting tom appeared on the": [65535, 0], "inviting tom appeared on the sidewalk": [65535, 0], "tom appeared on the sidewalk with": [65535, 0], "appeared on the sidewalk with a": [65535, 0], "on the sidewalk with a bucket": [65535, 0], "the sidewalk with a bucket of": [65535, 0], "sidewalk with a bucket of whitewash": [65535, 0], "with a bucket of whitewash and": [65535, 0], "a bucket of whitewash and a": [65535, 0], "bucket of whitewash and a long": [65535, 0], "of whitewash and a long handled": [65535, 0], "whitewash and a long handled brush": [65535, 0], "and a long handled brush he": [65535, 0], "a long handled brush he surveyed": [65535, 0], "long handled brush he surveyed the": [65535, 0], "handled brush he surveyed the fence": [65535, 0], "brush he surveyed the fence and": [65535, 0], "he surveyed the fence and all": [65535, 0], "surveyed the fence and all gladness": [65535, 0], "the fence and all gladness left": [65535, 0], "fence and all gladness left him": [65535, 0], "and all gladness left him and": [65535, 0], "all gladness left him and a": [65535, 0], "gladness left him and a deep": [65535, 0], "left him and a deep melancholy": [65535, 0], "him and a deep melancholy settled": [65535, 0], "and a deep melancholy settled down": [65535, 0], "a deep melancholy settled down upon": [65535, 0], "deep melancholy settled down upon his": [65535, 0], "melancholy settled down upon his spirit": [65535, 0], "settled down upon his spirit thirty": [65535, 0], "down upon his spirit thirty yards": [65535, 0], "upon his spirit thirty yards of": [65535, 0], "his spirit thirty yards of board": [65535, 0], "spirit thirty yards of board fence": [65535, 0], "thirty yards of board fence nine": [65535, 0], "yards of board fence nine feet": [65535, 0], "of board fence nine feet high": [65535, 0], "board fence nine feet high life": [65535, 0], "fence nine feet high life to": [65535, 0], "nine feet high life to him": [65535, 0], "feet high life to him seemed": [65535, 0], "high life to him seemed hollow": [65535, 0], "life to him seemed hollow and": [65535, 0], "to him seemed hollow and existence": [65535, 0], "him seemed hollow and existence but": [65535, 0], "seemed hollow and existence but a": [65535, 0], "hollow and existence but a burden": [65535, 0], "and existence but a burden sighing": [65535, 0], "existence but a burden sighing he": [65535, 0], "but a burden sighing he dipped": [65535, 0], "a burden sighing he dipped his": [65535, 0], "burden sighing he dipped his brush": [65535, 0], "sighing he dipped his brush and": [65535, 0], "he dipped his brush and passed": [65535, 0], "dipped his brush and passed it": [65535, 0], "his brush and passed it along": [65535, 0], "brush and passed it along the": [65535, 0], "and passed it along the topmost": [65535, 0], "passed it along the topmost plank": [65535, 0], "it along the topmost plank repeated": [65535, 0], "along the topmost plank repeated the": [65535, 0], "the topmost plank repeated the operation": [65535, 0], "topmost plank repeated the operation did": [65535, 0], "plank repeated the operation did it": [65535, 0], "repeated the operation did it again": [65535, 0], "the operation did it again compared": [65535, 0], "operation did it again compared the": [65535, 0], "did it again compared the insignificant": [65535, 0], "it again compared the insignificant whitewashed": [65535, 0], "again compared the insignificant whitewashed streak": [65535, 0], "compared the insignificant whitewashed streak with": [65535, 0], "the insignificant whitewashed streak with the": [65535, 0], "insignificant whitewashed streak with the far": [65535, 0], "whitewashed streak with the far reaching": [65535, 0], "streak with the far reaching continent": [65535, 0], "with the far reaching continent of": [65535, 0], "the far reaching continent of unwhitewashed": [65535, 0], "far reaching continent of unwhitewashed fence": [65535, 0], "reaching continent of unwhitewashed fence and": [65535, 0], "continent of unwhitewashed fence and sat": [65535, 0], "of unwhitewashed fence and sat down": [65535, 0], "unwhitewashed fence and sat down on": [65535, 0], "fence and sat down on a": [65535, 0], "and sat down on a tree": [65535, 0], "sat down on a tree box": [65535, 0], "down on a tree box discouraged": [65535, 0], "on a tree box discouraged jim": [65535, 0], "a tree box discouraged jim came": [65535, 0], "tree box discouraged jim came skipping": [65535, 0], "box discouraged jim came skipping out": [65535, 0], "discouraged jim came skipping out at": [65535, 0], "jim came skipping out at the": [65535, 0], "came skipping out at the gate": [65535, 0], "skipping out at the gate with": [65535, 0], "out at the gate with a": [65535, 0], "at the gate with a tin": [65535, 0], "the gate with a tin pail": [65535, 0], "gate with a tin pail and": [65535, 0], "with a tin pail and singing": [65535, 0], "a tin pail and singing buffalo": [65535, 0], "tin pail and singing buffalo gals": [65535, 0], "pail and singing buffalo gals bringing": [65535, 0], "and singing buffalo gals bringing water": [65535, 0], "singing buffalo gals bringing water from": [65535, 0], "buffalo gals bringing water from the": [65535, 0], "gals bringing water from the town": [65535, 0], "bringing water from the town pump": [65535, 0], "water from the town pump had": [65535, 0], "from the town pump had always": [65535, 0], "the town pump had always been": [65535, 0], "town pump had always been hateful": [65535, 0], "pump had always been hateful work": [65535, 0], "had always been hateful work in": [65535, 0], "always been hateful work in tom's": [65535, 0], "been hateful work in tom's eyes": [65535, 0], "hateful work in tom's eyes before": [65535, 0], "work in tom's eyes before but": [65535, 0], "in tom's eyes before but now": [65535, 0], "tom's eyes before but now it": [65535, 0], "eyes before but now it did": [65535, 0], "before but now it did not": [65535, 0], "but now it did not strike": [65535, 0], "now it did not strike him": [65535, 0], "it did not strike him so": [65535, 0], "did not strike him so he": [65535, 0], "not strike him so he remembered": [65535, 0], "strike him so he remembered that": [65535, 0], "him so he remembered that there": [65535, 0], "so he remembered that there was": [65535, 0], "he remembered that there was company": [65535, 0], "remembered that there was company at": [65535, 0], "that there was company at the": [65535, 0], "there was company at the pump": [65535, 0], "was company at the pump white": [65535, 0], "company at the pump white mulatto": [65535, 0], "at the pump white mulatto and": [65535, 0], "the pump white mulatto and negro": [65535, 0], "pump white mulatto and negro boys": [65535, 0], "white mulatto and negro boys and": [65535, 0], "mulatto and negro boys and girls": [65535, 0], "and negro boys and girls were": [65535, 0], "negro boys and girls were always": [65535, 0], "boys and girls were always there": [65535, 0], "and girls were always there waiting": [65535, 0], "girls were always there waiting their": [65535, 0], "were always there waiting their turns": [65535, 0], "always there waiting their turns resting": [65535, 0], "there waiting their turns resting trading": [65535, 0], "waiting their turns resting trading playthings": [65535, 0], "their turns resting trading playthings quarrelling": [65535, 0], "turns resting trading playthings quarrelling fighting": [65535, 0], "resting trading playthings quarrelling fighting skylarking": [65535, 0], "trading playthings quarrelling fighting skylarking and": [65535, 0], "playthings quarrelling fighting skylarking and he": [65535, 0], "quarrelling fighting skylarking and he remembered": [65535, 0], "fighting skylarking and he remembered that": [65535, 0], "skylarking and he remembered that although": [65535, 0], "and he remembered that although the": [65535, 0], "he remembered that although the pump": [65535, 0], "remembered that although the pump was": [65535, 0], "that although the pump was only": [65535, 0], "although the pump was only a": [65535, 0], "the pump was only a hundred": [65535, 0], "pump was only a hundred and": [65535, 0], "was only a hundred and fifty": [65535, 0], "only a hundred and fifty yards": [65535, 0], "a hundred and fifty yards off": [65535, 0], "hundred and fifty yards off jim": [65535, 0], "and fifty yards off jim never": [65535, 0], "fifty yards off jim never got": [65535, 0], "yards off jim never got back": [65535, 0], "off jim never got back with": [65535, 0], "jim never got back with a": [65535, 0], "never got back with a bucket": [65535, 0], "got back with a bucket of": [65535, 0], "back with a bucket of water": [65535, 0], "with a bucket of water under": [65535, 0], "a bucket of water under an": [65535, 0], "bucket of water under an hour": [65535, 0], "of water under an hour and": [65535, 0], "water under an hour and even": [65535, 0], "under an hour and even then": [65535, 0], "an hour and even then somebody": [65535, 0], "hour and even then somebody generally": [65535, 0], "and even then somebody generally had": [65535, 0], "even then somebody generally had to": [65535, 0], "then somebody generally had to go": [65535, 0], "somebody generally had to go after": [65535, 0], "generally had to go after him": [65535, 0], "had to go after him tom": [65535, 0], "to go after him tom said": [65535, 0], "go after him tom said say": [65535, 0], "after him tom said say jim": [65535, 0], "him tom said say jim i'll": [65535, 0], "tom said say jim i'll fetch": [65535, 0], "said say jim i'll fetch the": [65535, 0], "say jim i'll fetch the water": [65535, 0], "jim i'll fetch the water if": [65535, 0], "i'll fetch the water if you'll": [65535, 0], "fetch the water if you'll whitewash": [65535, 0], "the water if you'll whitewash some": [65535, 0], "water if you'll whitewash some jim": [65535, 0], "if you'll whitewash some jim shook": [65535, 0], "you'll whitewash some jim shook his": [65535, 0], "whitewash some jim shook his head": [65535, 0], "some jim shook his head and": [65535, 0], "jim shook his head and said": [65535, 0], "shook his head and said can't": [65535, 0], "his head and said can't mars": [65535, 0], "head and said can't mars tom": [65535, 0], "and said can't mars tom ole": [65535, 0], "said can't mars tom ole missis": [65535, 0], "can't mars tom ole missis she": [65535, 0], "mars tom ole missis she tole": [65535, 0], "tom ole missis she tole me": [65535, 0], "ole missis she tole me i": [65535, 0], "missis she tole me i got": [65535, 0], "she tole me i got to": [65535, 0], "tole me i got to go": [65535, 0], "me i got to go an'": [65535, 0], "i got to go an' git": [65535, 0], "got to go an' git dis": [65535, 0], "to go an' git dis water": [65535, 0], "go an' git dis water an'": [65535, 0], "an' git dis water an' not": [65535, 0], "git dis water an' not stop": [65535, 0], "dis water an' not stop foolin'": [65535, 0], "water an' not stop foolin' roun'": [65535, 0], "an' not stop foolin' roun' wid": [65535, 0], "not stop foolin' roun' wid anybody": [65535, 0], "stop foolin' roun' wid anybody she": [65535, 0], "foolin' roun' wid anybody she say": [65535, 0], "roun' wid anybody she say she": [65535, 0], "wid anybody she say she spec'": [65535, 0], "anybody she say she spec' mars": [65535, 0], "she say she spec' mars tom": [65535, 0], "say she spec' mars tom gwine": [65535, 0], "she spec' mars tom gwine to": [65535, 0], "spec' mars tom gwine to ax": [65535, 0], "mars tom gwine to ax me": [65535, 0], "tom gwine to ax me to": [65535, 0], "gwine to ax me to whitewash": [65535, 0], "to ax me to whitewash an'": [65535, 0], "ax me to whitewash an' so": [65535, 0], "me to whitewash an' so she": [65535, 0], "to whitewash an' so she tole": [65535, 0], "whitewash an' so she tole me": [65535, 0], "an' so she tole me go": [65535, 0], "so she tole me go 'long": [65535, 0], "she tole me go 'long an'": [65535, 0], "tole me go 'long an' 'tend": [65535, 0], "me go 'long an' 'tend to": [65535, 0], "go 'long an' 'tend to my": [65535, 0], "'long an' 'tend to my own": [65535, 0], "an' 'tend to my own business": [65535, 0], "'tend to my own business she": [65535, 0], "to my own business she 'lowed": [65535, 0], "my own business she 'lowed she'd": [65535, 0], "own business she 'lowed she'd 'tend": [65535, 0], "business she 'lowed she'd 'tend to": [65535, 0], "she 'lowed she'd 'tend to de": [65535, 0], "'lowed she'd 'tend to de whitewashin'": [65535, 0], "she'd 'tend to de whitewashin' oh": [65535, 0], "'tend to de whitewashin' oh never": [65535, 0], "to de whitewashin' oh never you": [65535, 0], "de whitewashin' oh never you mind": [65535, 0], "whitewashin' oh never you mind what": [65535, 0], "oh never you mind what she": [65535, 0], "never you mind what she said": [65535, 0], "you mind what she said jim": [65535, 0], "mind what she said jim that's": [65535, 0], "what she said jim that's the": [65535, 0], "she said jim that's the way": [65535, 0], "said jim that's the way she": [65535, 0], "jim that's the way she always": [65535, 0], "that's the way she always talks": [65535, 0], "the way she always talks gimme": [65535, 0], "way she always talks gimme the": [65535, 0], "she always talks gimme the bucket": [65535, 0], "always talks gimme the bucket i": [65535, 0], "talks gimme the bucket i won't": [65535, 0], "gimme the bucket i won't be": [65535, 0], "the bucket i won't be gone": [65535, 0], "bucket i won't be gone only": [65535, 0], "i won't be gone only a": [65535, 0], "won't be gone only a minute": [65535, 0], "be gone only a minute she": [65535, 0], "gone only a minute she won't": [65535, 0], "only a minute she won't ever": [65535, 0], "a minute she won't ever know": [65535, 0], "minute she won't ever know oh": [65535, 0], "she won't ever know oh i": [65535, 0], "won't ever know oh i dasn't": [65535, 0], "ever know oh i dasn't mars": [65535, 0], "know oh i dasn't mars tom": [65535, 0], "oh i dasn't mars tom ole": [65535, 0], "i dasn't mars tom ole missis": [65535, 0], "dasn't mars tom ole missis she'd": [65535, 0], "mars tom ole missis she'd take": [65535, 0], "tom ole missis she'd take an'": [65535, 0], "ole missis she'd take an' tar": [65535, 0], "missis she'd take an' tar de": [65535, 0], "she'd take an' tar de head": [65535, 0], "take an' tar de head off'n": [65535, 0], "an' tar de head off'n me": [65535, 0], "tar de head off'n me 'deed": [65535, 0], "de head off'n me 'deed she": [65535, 0], "head off'n me 'deed she would": [65535, 0], "off'n me 'deed she would she": [65535, 0], "me 'deed she would she she": [65535, 0], "'deed she would she she never": [65535, 0], "she would she she never licks": [65535, 0], "would she she never licks anybody": [65535, 0], "she she never licks anybody whacks": [65535, 0], "she never licks anybody whacks 'em": [65535, 0], "never licks anybody whacks 'em over": [65535, 0], "licks anybody whacks 'em over the": [65535, 0], "anybody whacks 'em over the head": [65535, 0], "whacks 'em over the head with": [65535, 0], "'em over the head with her": [65535, 0], "over the head with her thimble": [65535, 0], "the head with her thimble and": [65535, 0], "head with her thimble and who": [65535, 0], "with her thimble and who cares": [65535, 0], "her thimble and who cares for": [65535, 0], "thimble and who cares for that": [65535, 0], "and who cares for that i'd": [65535, 0], "who cares for that i'd like": [65535, 0], "cares for that i'd like to": [65535, 0], "for that i'd like to know": [65535, 0], "that i'd like to know she": [65535, 0], "i'd like to know she talks": [65535, 0], "like to know she talks awful": [65535, 0], "to know she talks awful but": [65535, 0], "know she talks awful but talk": [65535, 0], "she talks awful but talk don't": [65535, 0], "talks awful but talk don't hurt": [65535, 0], "awful but talk don't hurt anyways": [65535, 0], "but talk don't hurt anyways it": [65535, 0], "talk don't hurt anyways it don't": [65535, 0], "don't hurt anyways it don't if": [65535, 0], "hurt anyways it don't if she": [65535, 0], "anyways it don't if she don't": [65535, 0], "it don't if she don't cry": [65535, 0], "don't if she don't cry jim": [65535, 0], "if she don't cry jim i'll": [65535, 0], "she don't cry jim i'll give": [65535, 0], "don't cry jim i'll give you": [65535, 0], "cry jim i'll give you a": [65535, 0], "jim i'll give you a marvel": [65535, 0], "i'll give you a marvel i'll": [65535, 0], "give you a marvel i'll give": [65535, 0], "you a marvel i'll give you": [65535, 0], "a marvel i'll give you a": [65535, 0], "marvel i'll give you a white": [65535, 0], "i'll give you a white alley": [65535, 0], "give you a white alley jim": [65535, 0], "you a white alley jim began": [65535, 0], "a white alley jim began to": [65535, 0], "white alley jim began to waver": [65535, 0], "alley jim began to waver white": [65535, 0], "jim began to waver white alley": [65535, 0], "began to waver white alley jim": [65535, 0], "to waver white alley jim and": [65535, 0], "waver white alley jim and it's": [65535, 0], "white alley jim and it's a": [65535, 0], "alley jim and it's a bully": [65535, 0], "jim and it's a bully taw": [65535, 0], "and it's a bully taw my": [65535, 0], "it's a bully taw my dat's": [65535, 0], "a bully taw my dat's a": [65535, 0], "bully taw my dat's a mighty": [65535, 0], "taw my dat's a mighty gay": [65535, 0], "my dat's a mighty gay marvel": [65535, 0], "dat's a mighty gay marvel i": [65535, 0], "a mighty gay marvel i tell": [65535, 0], "mighty gay marvel i tell you": [65535, 0], "gay marvel i tell you but": [65535, 0], "marvel i tell you but mars": [65535, 0], "i tell you but mars tom": [65535, 0], "tell you but mars tom i's": [65535, 0], "you but mars tom i's powerful": [65535, 0], "but mars tom i's powerful 'fraid": [65535, 0], "mars tom i's powerful 'fraid ole": [65535, 0], "tom i's powerful 'fraid ole missis": [65535, 0], "i's powerful 'fraid ole missis and": [65535, 0], "powerful 'fraid ole missis and besides": [65535, 0], "'fraid ole missis and besides if": [65535, 0], "ole missis and besides if you": [65535, 0], "missis and besides if you will": [65535, 0], "and besides if you will i'll": [65535, 0], "besides if you will i'll show": [65535, 0], "if you will i'll show you": [65535, 0], "you will i'll show you my": [65535, 0], "will i'll show you my sore": [65535, 0], "i'll show you my sore toe": [65535, 0], "show you my sore toe jim": [65535, 0], "you my sore toe jim was": [65535, 0], "my sore toe jim was only": [65535, 0], "sore toe jim was only human": [65535, 0], "toe jim was only human this": [65535, 0], "jim was only human this attraction": [65535, 0], "was only human this attraction was": [65535, 0], "only human this attraction was too": [65535, 0], "human this attraction was too much": [65535, 0], "this attraction was too much for": [65535, 0], "attraction was too much for him": [65535, 0], "was too much for him he": [65535, 0], "too much for him he put": [65535, 0], "much for him he put down": [65535, 0], "for him he put down his": [65535, 0], "him he put down his pail": [65535, 0], "he put down his pail took": [65535, 0], "put down his pail took the": [65535, 0], "down his pail took the white": [65535, 0], "his pail took the white alley": [65535, 0], "pail took the white alley and": [65535, 0], "took the white alley and bent": [65535, 0], "the white alley and bent over": [65535, 0], "white alley and bent over the": [65535, 0], "alley and bent over the toe": [65535, 0], "and bent over the toe with": [65535, 0], "bent over the toe with absorbing": [65535, 0], "over the toe with absorbing interest": [65535, 0], "the toe with absorbing interest while": [65535, 0], "toe with absorbing interest while the": [65535, 0], "with absorbing interest while the bandage": [65535, 0], "absorbing interest while the bandage was": [65535, 0], "interest while the bandage was being": [65535, 0], "while the bandage was being unwound": [65535, 0], "the bandage was being unwound in": [65535, 0], "bandage was being unwound in another": [65535, 0], "was being unwound in another moment": [65535, 0], "being unwound in another moment he": [65535, 0], "unwound in another moment he was": [65535, 0], "in another moment he was flying": [65535, 0], "another moment he was flying down": [65535, 0], "moment he was flying down the": [65535, 0], "he was flying down the street": [65535, 0], "was flying down the street with": [65535, 0], "flying down the street with his": [65535, 0], "down the street with his pail": [65535, 0], "the street with his pail and": [65535, 0], "street with his pail and a": [65535, 0], "with his pail and a tingling": [65535, 0], "his pail and a tingling rear": [65535, 0], "pail and a tingling rear tom": [65535, 0], "and a tingling rear tom was": [65535, 0], "a tingling rear tom was whitewashing": [65535, 0], "tingling rear tom was whitewashing with": [65535, 0], "rear tom was whitewashing with vigor": [65535, 0], "tom was whitewashing with vigor and": [65535, 0], "was whitewashing with vigor and aunt": [65535, 0], "whitewashing with vigor and aunt polly": [65535, 0], "with vigor and aunt polly was": [65535, 0], "vigor and aunt polly was retiring": [65535, 0], "and aunt polly was retiring from": [65535, 0], "aunt polly was retiring from the": [65535, 0], "polly was retiring from the field": [65535, 0], "was retiring from the field with": [65535, 0], "retiring from the field with a": [65535, 0], "from the field with a slipper": [65535, 0], "the field with a slipper in": [65535, 0], "field with a slipper in her": [65535, 0], "with a slipper in her hand": [65535, 0], "a slipper in her hand and": [65535, 0], "slipper in her hand and triumph": [65535, 0], "in her hand and triumph in": [65535, 0], "her hand and triumph in her": [65535, 0], "hand and triumph in her eye": [65535, 0], "and triumph in her eye but": [65535, 0], "triumph in her eye but tom's": [65535, 0], "in her eye but tom's energy": [65535, 0], "her eye but tom's energy did": [65535, 0], "eye but tom's energy did not": [65535, 0], "but tom's energy did not last": [65535, 0], "tom's energy did not last he": [65535, 0], "energy did not last he began": [65535, 0], "did not last he began to": [65535, 0], "not last he began to think": [65535, 0], "last he began to think of": [65535, 0], "he began to think of the": [65535, 0], "began to think of the fun": [65535, 0], "to think of the fun he": [65535, 0], "think of the fun he had": [65535, 0], "of the fun he had planned": [65535, 0], "the fun he had planned for": [65535, 0], "fun he had planned for this": [65535, 0], "he had planned for this day": [65535, 0], "had planned for this day and": [65535, 0], "planned for this day and his": [65535, 0], "for this day and his sorrows": [65535, 0], "this day and his sorrows multiplied": [65535, 0], "day and his sorrows multiplied soon": [65535, 0], "and his sorrows multiplied soon the": [65535, 0], "his sorrows multiplied soon the free": [65535, 0], "sorrows multiplied soon the free boys": [65535, 0], "multiplied soon the free boys would": [65535, 0], "soon the free boys would come": [65535, 0], "the free boys would come tripping": [65535, 0], "free boys would come tripping along": [65535, 0], "boys would come tripping along on": [65535, 0], "would come tripping along on all": [65535, 0], "come tripping along on all sorts": [65535, 0], "tripping along on all sorts of": [65535, 0], "along on all sorts of delicious": [65535, 0], "on all sorts of delicious expeditions": [65535, 0], "all sorts of delicious expeditions and": [65535, 0], "sorts of delicious expeditions and they": [65535, 0], "of delicious expeditions and they would": [65535, 0], "delicious expeditions and they would make": [65535, 0], "expeditions and they would make a": [65535, 0], "and they would make a world": [65535, 0], "they would make a world of": [65535, 0], "would make a world of fun": [65535, 0], "make a world of fun of": [65535, 0], "a world of fun of him": [65535, 0], "world of fun of him for": [65535, 0], "of fun of him for having": [65535, 0], "fun of him for having to": [65535, 0], "of him for having to work": [65535, 0], "him for having to work the": [65535, 0], "for having to work the very": [65535, 0], "having to work the very thought": [65535, 0], "to work the very thought of": [65535, 0], "work the very thought of it": [65535, 0], "the very thought of it burnt": [65535, 0], "very thought of it burnt him": [65535, 0], "thought of it burnt him like": [65535, 0], "of it burnt him like fire": [65535, 0], "it burnt him like fire he": [65535, 0], "burnt him like fire he got": [65535, 0], "him like fire he got out": [65535, 0], "like fire he got out his": [65535, 0], "fire he got out his worldly": [65535, 0], "he got out his worldly wealth": [65535, 0], "got out his worldly wealth and": [65535, 0], "out his worldly wealth and examined": [65535, 0], "his worldly wealth and examined it": [65535, 0], "worldly wealth and examined it bits": [65535, 0], "wealth and examined it bits of": [65535, 0], "and examined it bits of toys": [65535, 0], "examined it bits of toys marbles": [65535, 0], "it bits of toys marbles and": [65535, 0], "bits of toys marbles and trash": [65535, 0], "of toys marbles and trash enough": [65535, 0], "toys marbles and trash enough to": [65535, 0], "marbles and trash enough to buy": [65535, 0], "and trash enough to buy an": [65535, 0], "trash enough to buy an exchange": [65535, 0], "enough to buy an exchange of": [65535, 0], "to buy an exchange of work": [65535, 0], "buy an exchange of work maybe": [65535, 0], "an exchange of work maybe but": [65535, 0], "exchange of work maybe but not": [65535, 0], "of work maybe but not half": [65535, 0], "work maybe but not half enough": [65535, 0], "maybe but not half enough to": [65535, 0], "but not half enough to buy": [65535, 0], "not half enough to buy so": [65535, 0], "half enough to buy so much": [65535, 0], "enough to buy so much as": [65535, 0], "to buy so much as half": [65535, 0], "buy so much as half an": [65535, 0], "so much as half an hour": [65535, 0], "much as half an hour of": [65535, 0], "as half an hour of pure": [65535, 0], "half an hour of pure freedom": [65535, 0], "an hour of pure freedom so": [65535, 0], "hour of pure freedom so he": [65535, 0], "of pure freedom so he returned": [65535, 0], "pure freedom so he returned his": [65535, 0], "freedom so he returned his straitened": [65535, 0], "so he returned his straitened means": [65535, 0], "he returned his straitened means to": [65535, 0], "returned his straitened means to his": [65535, 0], "his straitened means to his pocket": [65535, 0], "straitened means to his pocket and": [65535, 0], "means to his pocket and gave": [65535, 0], "to his pocket and gave up": [65535, 0], "his pocket and gave up the": [65535, 0], "pocket and gave up the idea": [65535, 0], "and gave up the idea of": [65535, 0], "gave up the idea of trying": [65535, 0], "up the idea of trying to": [65535, 0], "the idea of trying to buy": [65535, 0], "idea of trying to buy the": [65535, 0], "of trying to buy the boys": [65535, 0], "trying to buy the boys at": [65535, 0], "to buy the boys at this": [65535, 0], "buy the boys at this dark": [65535, 0], "the boys at this dark and": [65535, 0], "boys at this dark and hopeless": [65535, 0], "at this dark and hopeless moment": [65535, 0], "this dark and hopeless moment an": [65535, 0], "dark and hopeless moment an inspiration": [65535, 0], "and hopeless moment an inspiration burst": [65535, 0], "hopeless moment an inspiration burst upon": [65535, 0], "moment an inspiration burst upon him": [65535, 0], "an inspiration burst upon him nothing": [65535, 0], "inspiration burst upon him nothing less": [65535, 0], "burst upon him nothing less than": [65535, 0], "upon him nothing less than a": [65535, 0], "him nothing less than a great": [65535, 0], "nothing less than a great magnificent": [65535, 0], "less than a great magnificent inspiration": [65535, 0], "than a great magnificent inspiration he": [65535, 0], "a great magnificent inspiration he took": [65535, 0], "great magnificent inspiration he took up": [65535, 0], "magnificent inspiration he took up his": [65535, 0], "inspiration he took up his brush": [65535, 0], "he took up his brush and": [65535, 0], "took up his brush and went": [65535, 0], "up his brush and went tranquilly": [65535, 0], "his brush and went tranquilly to": [65535, 0], "brush and went tranquilly to work": [65535, 0], "and went tranquilly to work ben": [65535, 0], "went tranquilly to work ben rogers": [65535, 0], "tranquilly to work ben rogers hove": [65535, 0], "to work ben rogers hove in": [65535, 0], "work ben rogers hove in sight": [65535, 0], "ben rogers hove in sight presently": [65535, 0], "rogers hove in sight presently the": [65535, 0], "hove in sight presently the very": [65535, 0], "in sight presently the very boy": [65535, 0], "sight presently the very boy of": [65535, 0], "presently the very boy of all": [65535, 0], "the very boy of all boys": [65535, 0], "very boy of all boys whose": [65535, 0], "boy of all boys whose ridicule": [65535, 0], "of all boys whose ridicule he": [65535, 0], "all boys whose ridicule he had": [65535, 0], "boys whose ridicule he had been": [65535, 0], "whose ridicule he had been dreading": [65535, 0], "ridicule he had been dreading ben's": [65535, 0], "he had been dreading ben's gait": [65535, 0], "had been dreading ben's gait was": [65535, 0], "been dreading ben's gait was the": [65535, 0], "dreading ben's gait was the hop": [65535, 0], "ben's gait was the hop skip": [65535, 0], "gait was the hop skip and": [65535, 0], "was the hop skip and jump": [65535, 0], "the hop skip and jump proof": [65535, 0], "hop skip and jump proof enough": [65535, 0], "skip and jump proof enough that": [65535, 0], "and jump proof enough that his": [65535, 0], "jump proof enough that his heart": [65535, 0], "proof enough that his heart was": [65535, 0], "enough that his heart was light": [65535, 0], "that his heart was light and": [65535, 0], "his heart was light and his": [65535, 0], "heart was light and his anticipations": [65535, 0], "was light and his anticipations high": [65535, 0], "light and his anticipations high he": [65535, 0], "and his anticipations high he was": [65535, 0], "his anticipations high he was eating": [65535, 0], "anticipations high he was eating an": [65535, 0], "high he was eating an apple": [65535, 0], "he was eating an apple and": [65535, 0], "was eating an apple and giving": [65535, 0], "eating an apple and giving a": [65535, 0], "an apple and giving a long": [65535, 0], "apple and giving a long melodious": [65535, 0], "and giving a long melodious whoop": [65535, 0], "giving a long melodious whoop at": [65535, 0], "a long melodious whoop at intervals": [65535, 0], "long melodious whoop at intervals followed": [65535, 0], "melodious whoop at intervals followed by": [65535, 0], "whoop at intervals followed by a": [65535, 0], "at intervals followed by a deep": [65535, 0], "intervals followed by a deep toned": [65535, 0], "followed by a deep toned ding": [65535, 0], "by a deep toned ding dong": [65535, 0], "a deep toned ding dong dong": [65535, 0], "deep toned ding dong dong ding": [65535, 0], "toned ding dong dong ding dong": [65535, 0], "ding dong dong ding dong dong": [65535, 0], "dong dong ding dong dong for": [65535, 0], "dong ding dong dong for he": [65535, 0], "ding dong dong for he was": [65535, 0], "dong dong for he was personating": [65535, 0], "dong for he was personating a": [65535, 0], "for he was personating a steamboat": [65535, 0], "he was personating a steamboat as": [65535, 0], "was personating a steamboat as he": [65535, 0], "personating a steamboat as he drew": [65535, 0], "a steamboat as he drew near": [65535, 0], "steamboat as he drew near he": [65535, 0], "as he drew near he slackened": [65535, 0], "he drew near he slackened speed": [65535, 0], "drew near he slackened speed took": [65535, 0], "near he slackened speed took the": [65535, 0], "he slackened speed took the middle": [65535, 0], "slackened speed took the middle of": [65535, 0], "speed took the middle of the": [65535, 0], "took the middle of the street": [65535, 0], "the middle of the street leaned": [65535, 0], "middle of the street leaned far": [65535, 0], "of the street leaned far over": [65535, 0], "the street leaned far over to": [65535, 0], "street leaned far over to starboard": [65535, 0], "leaned far over to starboard and": [65535, 0], "far over to starboard and rounded": [65535, 0], "over to starboard and rounded to": [65535, 0], "to starboard and rounded to ponderously": [65535, 0], "starboard and rounded to ponderously and": [65535, 0], "and rounded to ponderously and with": [65535, 0], "rounded to ponderously and with laborious": [65535, 0], "to ponderously and with laborious pomp": [65535, 0], "ponderously and with laborious pomp and": [65535, 0], "and with laborious pomp and circumstance": [65535, 0], "with laborious pomp and circumstance for": [65535, 0], "laborious pomp and circumstance for he": [65535, 0], "pomp and circumstance for he was": [65535, 0], "and circumstance for he was personating": [65535, 0], "circumstance for he was personating the": [65535, 0], "for he was personating the big": [65535, 0], "he was personating the big missouri": [65535, 0], "was personating the big missouri and": [65535, 0], "personating the big missouri and considered": [65535, 0], "the big missouri and considered himself": [65535, 0], "big missouri and considered himself to": [65535, 0], "missouri and considered himself to be": [65535, 0], "and considered himself to be drawing": [65535, 0], "considered himself to be drawing nine": [65535, 0], "himself to be drawing nine feet": [65535, 0], "to be drawing nine feet of": [65535, 0], "be drawing nine feet of water": [65535, 0], "drawing nine feet of water he": [65535, 0], "nine feet of water he was": [65535, 0], "feet of water he was boat": [65535, 0], "of water he was boat and": [65535, 0], "water he was boat and captain": [65535, 0], "he was boat and captain and": [65535, 0], "was boat and captain and engine": [65535, 0], "boat and captain and engine bells": [65535, 0], "and captain and engine bells combined": [65535, 0], "captain and engine bells combined so": [65535, 0], "and engine bells combined so he": [65535, 0], "engine bells combined so he had": [65535, 0], "bells combined so he had to": [65535, 0], "combined so he had to imagine": [65535, 0], "so he had to imagine himself": [65535, 0], "he had to imagine himself standing": [65535, 0], "had to imagine himself standing on": [65535, 0], "to imagine himself standing on his": [65535, 0], "imagine himself standing on his own": [65535, 0], "himself standing on his own hurricane": [65535, 0], "standing on his own hurricane deck": [65535, 0], "on his own hurricane deck giving": [65535, 0], "his own hurricane deck giving the": [65535, 0], "own hurricane deck giving the orders": [65535, 0], "hurricane deck giving the orders and": [65535, 0], "deck giving the orders and executing": [65535, 0], "giving the orders and executing them": [65535, 0], "the orders and executing them stop": [65535, 0], "orders and executing them stop her": [65535, 0], "and executing them stop her sir": [65535, 0], "executing them stop her sir ting": [65535, 0], "them stop her sir ting a": [65535, 0], "stop her sir ting a ling": [65535, 0], "her sir ting a ling ling": [65535, 0], "sir ting a ling ling the": [65535, 0], "ting a ling ling the headway": [65535, 0], "a ling ling the headway ran": [65535, 0], "ling ling the headway ran almost": [65535, 0], "ling the headway ran almost out": [65535, 0], "the headway ran almost out and": [65535, 0], "headway ran almost out and he": [65535, 0], "ran almost out and he drew": [65535, 0], "almost out and he drew up": [65535, 0], "out and he drew up slowly": [65535, 0], "and he drew up slowly toward": [65535, 0], "he drew up slowly toward the": [65535, 0], "drew up slowly toward the sidewalk": [65535, 0], "up slowly toward the sidewalk ship": [65535, 0], "slowly toward the sidewalk ship up": [65535, 0], "toward the sidewalk ship up to": [65535, 0], "the sidewalk ship up to back": [65535, 0], "sidewalk ship up to back ting": [65535, 0], "ship up to back ting a": [65535, 0], "up to back ting a ling": [65535, 0], "to back ting a ling ling": [65535, 0], "back ting a ling ling his": [65535, 0], "ting a ling ling his arms": [65535, 0], "a ling ling his arms straightened": [65535, 0], "ling ling his arms straightened and": [65535, 0], "ling his arms straightened and stiffened": [65535, 0], "his arms straightened and stiffened down": [65535, 0], "arms straightened and stiffened down his": [65535, 0], "straightened and stiffened down his sides": [65535, 0], "and stiffened down his sides set": [65535, 0], "stiffened down his sides set her": [65535, 0], "down his sides set her back": [65535, 0], "his sides set her back on": [65535, 0], "sides set her back on the": [65535, 0], "set her back on the stabboard": [65535, 0], "her back on the stabboard ting": [65535, 0], "back on the stabboard ting a": [65535, 0], "on the stabboard ting a ling": [65535, 0], "the stabboard ting a ling ling": [65535, 0], "stabboard ting a ling ling chow": [65535, 0], "ting a ling ling chow ch": [65535, 0], "a ling ling chow ch chow": [65535, 0], "ling ling chow ch chow wow": [65535, 0], "ling chow ch chow wow chow": [65535, 0], "chow ch chow wow chow his": [65535, 0], "ch chow wow chow his right": [65535, 0], "chow wow chow his right hand": [65535, 0], "wow chow his right hand meantime": [65535, 0], "chow his right hand meantime describing": [65535, 0], "his right hand meantime describing stately": [65535, 0], "right hand meantime describing stately circles": [65535, 0], "hand meantime describing stately circles for": [65535, 0], "meantime describing stately circles for it": [65535, 0], "describing stately circles for it was": [65535, 0], "stately circles for it was representing": [65535, 0], "circles for it was representing a": [65535, 0], "for it was representing a forty": [65535, 0], "it was representing a forty foot": [65535, 0], "was representing a forty foot wheel": [65535, 0], "representing a forty foot wheel let": [65535, 0], "a forty foot wheel let her": [65535, 0], "forty foot wheel let her go": [65535, 0], "foot wheel let her go back": [65535, 0], "wheel let her go back on": [65535, 0], "let her go back on the": [65535, 0], "her go back on the labboard": [65535, 0], "go back on the labboard ting": [65535, 0], "back on the labboard ting a": [65535, 0], "on the labboard ting a ling": [65535, 0], "the labboard ting a ling ling": [65535, 0], "labboard ting a ling ling chow": [65535, 0], "ling ling chow ch chow chow": [65535, 0], "ling chow ch chow chow the": [65535, 0], "chow ch chow chow the left": [65535, 0], "ch chow chow the left hand": [65535, 0], "chow chow the left hand began": [65535, 0], "chow the left hand began to": [65535, 0], "the left hand began to describe": [65535, 0], "left hand began to describe circles": [65535, 0], "hand began to describe circles stop": [65535, 0], "began to describe circles stop the": [65535, 0], "to describe circles stop the stabboard": [65535, 0], "describe circles stop the stabboard ting": [65535, 0], "circles stop the stabboard ting a": [65535, 0], "stop the stabboard ting a ling": [65535, 0], "stabboard ting a ling ling stop": [65535, 0], "ting a ling ling stop the": [65535, 0], "a ling ling stop the labboard": [65535, 0], "ling ling stop the labboard come": [65535, 0], "ling stop the labboard come ahead": [65535, 0], "stop the labboard come ahead on": [65535, 0], "the labboard come ahead on the": [65535, 0], "labboard come ahead on the stabboard": [65535, 0], "come ahead on the stabboard stop": [65535, 0], "ahead on the stabboard stop her": [65535, 0], "on the stabboard stop her let": [65535, 0], "the stabboard stop her let your": [65535, 0], "stabboard stop her let your outside": [65535, 0], "stop her let your outside turn": [65535, 0], "her let your outside turn over": [65535, 0], "let your outside turn over slow": [65535, 0], "your outside turn over slow ting": [65535, 0], "outside turn over slow ting a": [65535, 0], "turn over slow ting a ling": [65535, 0], "over slow ting a ling ling": [65535, 0], "slow ting a ling ling chow": [65535, 0], "ting a ling ling chow ow": [65535, 0], "a ling ling chow ow ow": [65535, 0], "ling ling chow ow ow get": [65535, 0], "ling chow ow ow get out": [65535, 0], "chow ow ow get out that": [65535, 0], "ow ow get out that head": [65535, 0], "ow get out that head line": [65535, 0], "get out that head line lively": [65535, 0], "out that head line lively now": [65535, 0], "that head line lively now come": [65535, 0], "head line lively now come out": [65535, 0], "line lively now come out with": [65535, 0], "lively now come out with your": [65535, 0], "now come out with your spring": [65535, 0], "come out with your spring line": [65535, 0], "out with your spring line what're": [65535, 0], "with your spring line what're you": [65535, 0], "your spring line what're you about": [65535, 0], "spring line what're you about there": [65535, 0], "line what're you about there take": [65535, 0], "what're you about there take a": [65535, 0], "you about there take a turn": [65535, 0], "about there take a turn round": [65535, 0], "there take a turn round that": [65535, 0], "take a turn round that stump": [65535, 0], "a turn round that stump with": [65535, 0], "turn round that stump with the": [65535, 0], "round that stump with the bight": [65535, 0], "that stump with the bight of": [65535, 0], "stump with the bight of it": [65535, 0], "with the bight of it stand": [65535, 0], "the bight of it stand by": [65535, 0], "bight of it stand by that": [65535, 0], "of it stand by that stage": [65535, 0], "it stand by that stage now": [65535, 0], "stand by that stage now let": [65535, 0], "by that stage now let her": [65535, 0], "that stage now let her go": [65535, 0], "stage now let her go done": [65535, 0], "now let her go done with": [65535, 0], "let her go done with the": [65535, 0], "her go done with the engines": [65535, 0], "go done with the engines sir": [65535, 0], "done with the engines sir ting": [65535, 0], "with the engines sir ting a": [65535, 0], "the engines sir ting a ling": [65535, 0], "engines sir ting a ling ling": [65535, 0], "sir ting a ling ling sh't": [65535, 0], "ting a ling ling sh't s'h't": [65535, 0], "a ling ling sh't s'h't sh't": [65535, 0], "ling ling sh't s'h't sh't trying": [65535, 0], "ling sh't s'h't sh't trying the": [65535, 0], "sh't s'h't sh't trying the gauge": [65535, 0], "s'h't sh't trying the gauge cocks": [65535, 0], "sh't trying the gauge cocks tom": [65535, 0], "trying the gauge cocks tom went": [65535, 0], "the gauge cocks tom went on": [65535, 0], "gauge cocks tom went on whitewashing": [65535, 0], "cocks tom went on whitewashing paid": [65535, 0], "tom went on whitewashing paid no": [65535, 0], "went on whitewashing paid no attention": [65535, 0], "on whitewashing paid no attention to": [65535, 0], "whitewashing paid no attention to the": [65535, 0], "paid no attention to the steamboat": [65535, 0], "no attention to the steamboat ben": [65535, 0], "attention to the steamboat ben stared": [65535, 0], "to the steamboat ben stared a": [65535, 0], "the steamboat ben stared a moment": [65535, 0], "steamboat ben stared a moment and": [65535, 0], "ben stared a moment and then": [65535, 0], "stared a moment and then said": [65535, 0], "a moment and then said hi": [65535, 0], "moment and then said hi yi": [65535, 0], "and then said hi yi you're": [65535, 0], "then said hi yi you're up": [65535, 0], "said hi yi you're up a": [65535, 0], "hi yi you're up a stump": [65535, 0], "yi you're up a stump ain't": [65535, 0], "you're up a stump ain't you": [65535, 0], "up a stump ain't you no": [65535, 0], "a stump ain't you no answer": [65535, 0], "stump ain't you no answer tom": [65535, 0], "ain't you no answer tom surveyed": [65535, 0], "you no answer tom surveyed his": [65535, 0], "no answer tom surveyed his last": [65535, 0], "answer tom surveyed his last touch": [65535, 0], "tom surveyed his last touch with": [65535, 0], "surveyed his last touch with the": [65535, 0], "his last touch with the eye": [65535, 0], "last touch with the eye of": [65535, 0], "touch with the eye of an": [65535, 0], "with the eye of an artist": [65535, 0], "the eye of an artist then": [65535, 0], "eye of an artist then he": [65535, 0], "of an artist then he gave": [65535, 0], "an artist then he gave his": [65535, 0], "artist then he gave his brush": [65535, 0], "then he gave his brush another": [65535, 0], "he gave his brush another gentle": [65535, 0], "gave his brush another gentle sweep": [65535, 0], "his brush another gentle sweep and": [65535, 0], "brush another gentle sweep and surveyed": [65535, 0], "another gentle sweep and surveyed the": [65535, 0], "gentle sweep and surveyed the result": [65535, 0], "sweep and surveyed the result as": [65535, 0], "and surveyed the result as before": [65535, 0], "surveyed the result as before ben": [65535, 0], "the result as before ben ranged": [65535, 0], "result as before ben ranged up": [65535, 0], "as before ben ranged up alongside": [65535, 0], "before ben ranged up alongside of": [65535, 0], "ben ranged up alongside of him": [65535, 0], "ranged up alongside of him tom's": [65535, 0], "up alongside of him tom's mouth": [65535, 0], "alongside of him tom's mouth watered": [65535, 0], "of him tom's mouth watered for": [65535, 0], "him tom's mouth watered for the": [65535, 0], "tom's mouth watered for the apple": [65535, 0], "mouth watered for the apple but": [65535, 0], "watered for the apple but he": [65535, 0], "for the apple but he stuck": [65535, 0], "the apple but he stuck to": [65535, 0], "apple but he stuck to his": [65535, 0], "but he stuck to his work": [65535, 0], "he stuck to his work ben": [65535, 0], "stuck to his work ben said": [65535, 0], "to his work ben said hello": [65535, 0], "his work ben said hello old": [65535, 0], "work ben said hello old chap": [65535, 0], "ben said hello old chap you": [65535, 0], "said hello old chap you got": [65535, 0], "hello old chap you got to": [65535, 0], "old chap you got to work": [65535, 0], "chap you got to work hey": [65535, 0], "you got to work hey tom": [65535, 0], "got to work hey tom wheeled": [65535, 0], "to work hey tom wheeled suddenly": [65535, 0], "work hey tom wheeled suddenly and": [65535, 0], "hey tom wheeled suddenly and said": [65535, 0], "tom wheeled suddenly and said why": [65535, 0], "wheeled suddenly and said why it's": [65535, 0], "suddenly and said why it's you": [65535, 0], "and said why it's you ben": [65535, 0], "said why it's you ben i": [65535, 0], "why it's you ben i warn't": [65535, 0], "it's you ben i warn't noticing": [65535, 0], "you ben i warn't noticing say": [65535, 0], "ben i warn't noticing say i'm": [65535, 0], "i warn't noticing say i'm going": [65535, 0], "warn't noticing say i'm going in": [65535, 0], "noticing say i'm going in a": [65535, 0], "say i'm going in a swimming": [65535, 0], "i'm going in a swimming i": [65535, 0], "going in a swimming i am": [65535, 0], "in a swimming i am don't": [65535, 0], "a swimming i am don't you": [65535, 0], "swimming i am don't you wish": [65535, 0], "i am don't you wish you": [65535, 0], "am don't you wish you could": [65535, 0], "don't you wish you could but": [65535, 0], "you wish you could but of": [65535, 0], "wish you could but of course": [65535, 0], "you could but of course you'd": [65535, 0], "could but of course you'd druther": [65535, 0], "but of course you'd druther work": [65535, 0], "of course you'd druther work wouldn't": [65535, 0], "course you'd druther work wouldn't you": [65535, 0], "you'd druther work wouldn't you course": [65535, 0], "druther work wouldn't you course you": [65535, 0], "work wouldn't you course you would": [65535, 0], "wouldn't you course you would tom": [65535, 0], "you course you would tom contemplated": [65535, 0], "course you would tom contemplated the": [65535, 0], "you would tom contemplated the boy": [65535, 0], "would tom contemplated the boy a": [65535, 0], "tom contemplated the boy a bit": [65535, 0], "contemplated the boy a bit and": [65535, 0], "the boy a bit and said": [65535, 0], "boy a bit and said what": [65535, 0], "a bit and said what do": [65535, 0], "bit and said what do you": [65535, 0], "and said what do you call": [65535, 0], "said what do you call work": [65535, 0], "what do you call work why": [65535, 0], "do you call work why ain't": [65535, 0], "you call work why ain't that": [65535, 0], "call work why ain't that work": [65535, 0], "work why ain't that work tom": [65535, 0], "why ain't that work tom resumed": [65535, 0], "ain't that work tom resumed his": [65535, 0], "that work tom resumed his whitewashing": [65535, 0], "work tom resumed his whitewashing and": [65535, 0], "tom resumed his whitewashing and answered": [65535, 0], "resumed his whitewashing and answered carelessly": [65535, 0], "his whitewashing and answered carelessly well": [65535, 0], "whitewashing and answered carelessly well maybe": [65535, 0], "and answered carelessly well maybe it": [65535, 0], "answered carelessly well maybe it is": [65535, 0], "carelessly well maybe it is and": [65535, 0], "well maybe it is and maybe": [65535, 0], "maybe it is and maybe it": [65535, 0], "it is and maybe it ain't": [65535, 0], "is and maybe it ain't all": [65535, 0], "and maybe it ain't all i": [65535, 0], "maybe it ain't all i know": [65535, 0], "it ain't all i know is": [65535, 0], "ain't all i know is it": [65535, 0], "all i know is it suits": [65535, 0], "i know is it suits tom": [65535, 0], "know is it suits tom sawyer": [65535, 0], "is it suits tom sawyer oh": [65535, 0], "it suits tom sawyer oh come": [65535, 0], "suits tom sawyer oh come now": [65535, 0], "tom sawyer oh come now you": [65535, 0], "sawyer oh come now you don't": [65535, 0], "oh come now you don't mean": [65535, 0], "come now you don't mean to": [65535, 0], "now you don't mean to let": [65535, 0], "you don't mean to let on": [65535, 0], "don't mean to let on that": [65535, 0], "mean to let on that you": [65535, 0], "to let on that you like": [65535, 0], "let on that you like it": [65535, 0], "on that you like it the": [65535, 0], "that you like it the brush": [65535, 0], "you like it the brush continued": [65535, 0], "like it the brush continued to": [65535, 0], "it the brush continued to move": [65535, 0], "the brush continued to move like": [65535, 0], "brush continued to move like it": [65535, 0], "continued to move like it well": [65535, 0], "to move like it well i": [65535, 0], "move like it well i don't": [65535, 0], "like it well i don't see": [65535, 0], "it well i don't see why": [65535, 0], "well i don't see why i": [65535, 0], "i don't see why i oughtn't": [65535, 0], "don't see why i oughtn't to": [65535, 0], "see why i oughtn't to like": [65535, 0], "why i oughtn't to like it": [65535, 0], "i oughtn't to like it does": [65535, 0], "oughtn't to like it does a": [65535, 0], "to like it does a boy": [65535, 0], "like it does a boy get": [65535, 0], "it does a boy get a": [65535, 0], "does a boy get a chance": [65535, 0], "a boy get a chance to": [65535, 0], "boy get a chance to whitewash": [65535, 0], "get a chance to whitewash a": [65535, 0], "a chance to whitewash a fence": [65535, 0], "chance to whitewash a fence every": [65535, 0], "to whitewash a fence every day": [65535, 0], "whitewash a fence every day that": [65535, 0], "a fence every day that put": [65535, 0], "fence every day that put the": [65535, 0], "every day that put the thing": [65535, 0], "day that put the thing in": [65535, 0], "that put the thing in a": [65535, 0], "put the thing in a new": [65535, 0], "the thing in a new light": [65535, 0], "thing in a new light ben": [65535, 0], "in a new light ben stopped": [65535, 0], "a new light ben stopped nibbling": [65535, 0], "new light ben stopped nibbling his": [65535, 0], "light ben stopped nibbling his apple": [65535, 0], "ben stopped nibbling his apple tom": [65535, 0], "stopped nibbling his apple tom swept": [65535, 0], "nibbling his apple tom swept his": [65535, 0], "his apple tom swept his brush": [65535, 0], "apple tom swept his brush daintily": [65535, 0], "tom swept his brush daintily back": [65535, 0], "swept his brush daintily back and": [65535, 0], "his brush daintily back and forth": [65535, 0], "brush daintily back and forth stepped": [65535, 0], "daintily back and forth stepped back": [65535, 0], "back and forth stepped back to": [65535, 0], "and forth stepped back to note": [65535, 0], "forth stepped back to note the": [65535, 0], "stepped back to note the effect": [65535, 0], "back to note the effect added": [65535, 0], "to note the effect added a": [65535, 0], "note the effect added a touch": [65535, 0], "the effect added a touch here": [65535, 0], "effect added a touch here and": [65535, 0], "added a touch here and there": [65535, 0], "a touch here and there criticised": [65535, 0], "touch here and there criticised the": [65535, 0], "here and there criticised the effect": [65535, 0], "and there criticised the effect again": [65535, 0], "there criticised the effect again ben": [65535, 0], "criticised the effect again ben watching": [65535, 0], "the effect again ben watching every": [65535, 0], "effect again ben watching every move": [65535, 0], "again ben watching every move and": [65535, 0], "ben watching every move and getting": [65535, 0], "watching every move and getting more": [65535, 0], "every move and getting more and": [65535, 0], "move and getting more and more": [65535, 0], "and getting more and more interested": [65535, 0], "getting more and more interested more": [65535, 0], "more and more interested more and": [65535, 0], "and more interested more and more": [65535, 0], "more interested more and more absorbed": [65535, 0], "interested more and more absorbed presently": [65535, 0], "more and more absorbed presently he": [65535, 0], "and more absorbed presently he said": [65535, 0], "more absorbed presently he said say": [65535, 0], "absorbed presently he said say tom": [65535, 0], "presently he said say tom let": [65535, 0], "he said say tom let me": [65535, 0], "said say tom let me whitewash": [65535, 0], "say tom let me whitewash a": [65535, 0], "tom let me whitewash a little": [65535, 0], "let me whitewash a little tom": [65535, 0], "me whitewash a little tom considered": [65535, 0], "whitewash a little tom considered was": [65535, 0], "a little tom considered was about": [65535, 0], "little tom considered was about to": [65535, 0], "tom considered was about to consent": [65535, 0], "considered was about to consent but": [65535, 0], "was about to consent but he": [65535, 0], "about to consent but he altered": [65535, 0], "to consent but he altered his": [65535, 0], "consent but he altered his mind": [65535, 0], "but he altered his mind no": [65535, 0], "he altered his mind no no": [65535, 0], "altered his mind no no i": [65535, 0], "his mind no no i reckon": [65535, 0], "mind no no i reckon it": [65535, 0], "no no i reckon it wouldn't": [65535, 0], "no i reckon it wouldn't hardly": [65535, 0], "i reckon it wouldn't hardly do": [65535, 0], "reckon it wouldn't hardly do ben": [65535, 0], "it wouldn't hardly do ben you": [65535, 0], "wouldn't hardly do ben you see": [65535, 0], "hardly do ben you see aunt": [65535, 0], "do ben you see aunt polly's": [65535, 0], "ben you see aunt polly's awful": [65535, 0], "you see aunt polly's awful particular": [65535, 0], "see aunt polly's awful particular about": [65535, 0], "aunt polly's awful particular about this": [65535, 0], "polly's awful particular about this fence": [65535, 0], "awful particular about this fence right": [65535, 0], "particular about this fence right here": [65535, 0], "about this fence right here on": [65535, 0], "this fence right here on the": [65535, 0], "fence right here on the street": [65535, 0], "right here on the street you": [65535, 0], "here on the street you know": [65535, 0], "on the street you know but": [65535, 0], "the street you know but if": [65535, 0], "street you know but if it": [65535, 0], "you know but if it was": [65535, 0], "know but if it was the": [65535, 0], "but if it was the back": [65535, 0], "if it was the back fence": [65535, 0], "it was the back fence i": [65535, 0], "was the back fence i wouldn't": [65535, 0], "the back fence i wouldn't mind": [65535, 0], "back fence i wouldn't mind and": [65535, 0], "fence i wouldn't mind and she": [65535, 0], "i wouldn't mind and she wouldn't": [65535, 0], "wouldn't mind and she wouldn't yes": [65535, 0], "mind and she wouldn't yes she's": [65535, 0], "and she wouldn't yes she's awful": [65535, 0], "she wouldn't yes she's awful particular": [65535, 0], "wouldn't yes she's awful particular about": [65535, 0], "yes she's awful particular about this": [65535, 0], "she's awful particular about this fence": [65535, 0], "awful particular about this fence it's": [65535, 0], "particular about this fence it's got": [65535, 0], "about this fence it's got to": [65535, 0], "this fence it's got to be": [65535, 0], "fence it's got to be done": [65535, 0], "it's got to be done very": [65535, 0], "got to be done very careful": [65535, 0], "to be done very careful i": [65535, 0], "be done very careful i reckon": [65535, 0], "done very careful i reckon there": [65535, 0], "very careful i reckon there ain't": [65535, 0], "careful i reckon there ain't one": [65535, 0], "i reckon there ain't one boy": [65535, 0], "reckon there ain't one boy in": [65535, 0], "there ain't one boy in a": [65535, 0], "ain't one boy in a thousand": [65535, 0], "one boy in a thousand maybe": [65535, 0], "boy in a thousand maybe two": [65535, 0], "in a thousand maybe two thousand": [65535, 0], "a thousand maybe two thousand that": [65535, 0], "thousand maybe two thousand that can": [65535, 0], "maybe two thousand that can do": [65535, 0], "two thousand that can do it": [65535, 0], "thousand that can do it the": [65535, 0], "that can do it the way": [65535, 0], "can do it the way it's": [65535, 0], "do it the way it's got": [65535, 0], "it the way it's got to": [65535, 0], "the way it's got to be": [65535, 0], "way it's got to be done": [65535, 0], "it's got to be done no": [65535, 0], "got to be done no is": [65535, 0], "to be done no is that": [65535, 0], "be done no is that so": [65535, 0], "done no is that so oh": [65535, 0], "no is that so oh come": [65535, 0], "is that so oh come now": [65535, 0], "that so oh come now lemme": [65535, 0], "so oh come now lemme just": [65535, 0], "oh come now lemme just try": [65535, 0], "come now lemme just try only": [65535, 0], "now lemme just try only just": [65535, 0], "lemme just try only just a": [65535, 0], "just try only just a little": [65535, 0], "try only just a little i'd": [65535, 0], "only just a little i'd let": [65535, 0], "just a little i'd let you": [65535, 0], "a little i'd let you if": [65535, 0], "little i'd let you if you": [65535, 0], "i'd let you if you was": [65535, 0], "let you if you was me": [65535, 0], "you if you was me tom": [65535, 0], "if you was me tom ben": [65535, 0], "you was me tom ben i'd": [65535, 0], "was me tom ben i'd like": [65535, 0], "me tom ben i'd like to": [65535, 0], "tom ben i'd like to honest": [65535, 0], "ben i'd like to honest injun": [65535, 0], "i'd like to honest injun but": [65535, 0], "like to honest injun but aunt": [65535, 0], "to honest injun but aunt polly": [65535, 0], "honest injun but aunt polly well": [65535, 0], "injun but aunt polly well jim": [65535, 0], "but aunt polly well jim wanted": [65535, 0], "aunt polly well jim wanted to": [65535, 0], "polly well jim wanted to do": [65535, 0], "well jim wanted to do it": [65535, 0], "jim wanted to do it but": [65535, 0], "wanted to do it but she": [65535, 0], "to do it but she wouldn't": [65535, 0], "do it but she wouldn't let": [65535, 0], "it but she wouldn't let him": [65535, 0], "but she wouldn't let him sid": [65535, 0], "she wouldn't let him sid wanted": [65535, 0], "wouldn't let him sid wanted to": [65535, 0], "let him sid wanted to do": [65535, 0], "him sid wanted to do it": [65535, 0], "sid wanted to do it and": [65535, 0], "wanted to do it and she": [65535, 0], "to do it and she wouldn't": [65535, 0], "do it and she wouldn't let": [65535, 0], "it and she wouldn't let sid": [65535, 0], "and she wouldn't let sid now": [65535, 0], "she wouldn't let sid now don't": [65535, 0], "wouldn't let sid now don't you": [65535, 0], "let sid now don't you see": [65535, 0], "sid now don't you see how": [65535, 0], "now don't you see how i'm": [65535, 0], "don't you see how i'm fixed": [65535, 0], "you see how i'm fixed if": [65535, 0], "see how i'm fixed if you": [65535, 0], "how i'm fixed if you was": [65535, 0], "i'm fixed if you was to": [65535, 0], "fixed if you was to tackle": [65535, 0], "if you was to tackle this": [65535, 0], "you was to tackle this fence": [65535, 0], "was to tackle this fence and": [65535, 0], "to tackle this fence and anything": [65535, 0], "tackle this fence and anything was": [65535, 0], "this fence and anything was to": [65535, 0], "fence and anything was to happen": [65535, 0], "and anything was to happen to": [65535, 0], "anything was to happen to it": [65535, 0], "was to happen to it oh": [65535, 0], "to happen to it oh shucks": [65535, 0], "happen to it oh shucks i'll": [65535, 0], "to it oh shucks i'll be": [65535, 0], "it oh shucks i'll be just": [65535, 0], "oh shucks i'll be just as": [65535, 0], "shucks i'll be just as careful": [65535, 0], "i'll be just as careful now": [65535, 0], "be just as careful now lemme": [65535, 0], "just as careful now lemme try": [65535, 0], "as careful now lemme try say": [65535, 0], "careful now lemme try say i'll": [65535, 0], "now lemme try say i'll give": [65535, 0], "lemme try say i'll give you": [65535, 0], "try say i'll give you the": [65535, 0], "say i'll give you the core": [65535, 0], "i'll give you the core of": [65535, 0], "give you the core of my": [65535, 0], "you the core of my apple": [65535, 0], "the core of my apple well": [65535, 0], "core of my apple well here": [65535, 0], "of my apple well here no": [65535, 0], "my apple well here no ben": [65535, 0], "apple well here no ben now": [65535, 0], "well here no ben now don't": [65535, 0], "here no ben now don't i'm": [65535, 0], "no ben now don't i'm afeard": [65535, 0], "ben now don't i'm afeard i'll": [65535, 0], "now don't i'm afeard i'll give": [65535, 0], "don't i'm afeard i'll give you": [65535, 0], "i'm afeard i'll give you all": [65535, 0], "afeard i'll give you all of": [65535, 0], "i'll give you all of it": [65535, 0], "give you all of it tom": [65535, 0], "you all of it tom gave": [65535, 0], "all of it tom gave up": [65535, 0], "of it tom gave up the": [65535, 0], "it tom gave up the brush": [65535, 0], "tom gave up the brush with": [65535, 0], "gave up the brush with reluctance": [65535, 0], "up the brush with reluctance in": [65535, 0], "the brush with reluctance in his": [65535, 0], "brush with reluctance in his face": [65535, 0], "with reluctance in his face but": [65535, 0], "reluctance in his face but alacrity": [65535, 0], "in his face but alacrity in": [65535, 0], "his face but alacrity in his": [65535, 0], "face but alacrity in his heart": [65535, 0], "but alacrity in his heart and": [65535, 0], "alacrity in his heart and while": [65535, 0], "in his heart and while the": [65535, 0], "his heart and while the late": [65535, 0], "heart and while the late steamer": [65535, 0], "and while the late steamer big": [65535, 0], "while the late steamer big missouri": [65535, 0], "the late steamer big missouri worked": [65535, 0], "late steamer big missouri worked and": [65535, 0], "steamer big missouri worked and sweated": [65535, 0], "big missouri worked and sweated in": [65535, 0], "missouri worked and sweated in the": [65535, 0], "worked and sweated in the sun": [65535, 0], "and sweated in the sun the": [65535, 0], "sweated in the sun the retired": [65535, 0], "in the sun the retired artist": [65535, 0], "the sun the retired artist sat": [65535, 0], "sun the retired artist sat on": [65535, 0], "the retired artist sat on a": [65535, 0], "retired artist sat on a barrel": [65535, 0], "artist sat on a barrel in": [65535, 0], "sat on a barrel in the": [65535, 0], "on a barrel in the shade": [65535, 0], "a barrel in the shade close": [65535, 0], "barrel in the shade close by": [65535, 0], "in the shade close by dangled": [65535, 0], "the shade close by dangled his": [65535, 0], "shade close by dangled his legs": [65535, 0], "close by dangled his legs munched": [65535, 0], "by dangled his legs munched his": [65535, 0], "dangled his legs munched his apple": [65535, 0], "his legs munched his apple and": [65535, 0], "legs munched his apple and planned": [65535, 0], "munched his apple and planned the": [65535, 0], "his apple and planned the slaughter": [65535, 0], "apple and planned the slaughter of": [65535, 0], "and planned the slaughter of more": [65535, 0], "planned the slaughter of more innocents": [65535, 0], "the slaughter of more innocents there": [65535, 0], "slaughter of more innocents there was": [65535, 0], "of more innocents there was no": [65535, 0], "more innocents there was no lack": [65535, 0], "innocents there was no lack of": [65535, 0], "there was no lack of material": [65535, 0], "was no lack of material boys": [65535, 0], "no lack of material boys happened": [65535, 0], "lack of material boys happened along": [65535, 0], "of material boys happened along every": [65535, 0], "material boys happened along every little": [65535, 0], "boys happened along every little while": [65535, 0], "happened along every little while they": [65535, 0], "along every little while they came": [65535, 0], "every little while they came to": [65535, 0], "little while they came to jeer": [65535, 0], "while they came to jeer but": [65535, 0], "they came to jeer but remained": [65535, 0], "came to jeer but remained to": [65535, 0], "to jeer but remained to whitewash": [65535, 0], "jeer but remained to whitewash by": [65535, 0], "but remained to whitewash by the": [65535, 0], "remained to whitewash by the time": [65535, 0], "to whitewash by the time ben": [65535, 0], "whitewash by the time ben was": [65535, 0], "by the time ben was fagged": [65535, 0], "the time ben was fagged out": [65535, 0], "time ben was fagged out tom": [65535, 0], "ben was fagged out tom had": [65535, 0], "was fagged out tom had traded": [65535, 0], "fagged out tom had traded the": [65535, 0], "out tom had traded the next": [65535, 0], "tom had traded the next chance": [65535, 0], "had traded the next chance to": [65535, 0], "traded the next chance to billy": [65535, 0], "the next chance to billy fisher": [65535, 0], "next chance to billy fisher for": [65535, 0], "chance to billy fisher for a": [65535, 0], "to billy fisher for a kite": [65535, 0], "billy fisher for a kite in": [65535, 0], "fisher for a kite in good": [65535, 0], "for a kite in good repair": [65535, 0], "a kite in good repair and": [65535, 0], "kite in good repair and when": [65535, 0], "in good repair and when he": [65535, 0], "good repair and when he played": [65535, 0], "repair and when he played out": [65535, 0], "and when he played out johnny": [65535, 0], "when he played out johnny miller": [65535, 0], "he played out johnny miller bought": [65535, 0], "played out johnny miller bought in": [65535, 0], "out johnny miller bought in for": [65535, 0], "johnny miller bought in for a": [65535, 0], "miller bought in for a dead": [65535, 0], "bought in for a dead rat": [65535, 0], "in for a dead rat and": [65535, 0], "for a dead rat and a": [65535, 0], "a dead rat and a string": [65535, 0], "dead rat and a string to": [65535, 0], "rat and a string to swing": [65535, 0], "and a string to swing it": [65535, 0], "a string to swing it with": [65535, 0], "string to swing it with and": [65535, 0], "to swing it with and so": [65535, 0], "swing it with and so on": [65535, 0], "it with and so on and": [65535, 0], "with and so on and so": [65535, 0], "and so on and so on": [65535, 0], "so on and so on hour": [65535, 0], "on and so on hour after": [65535, 0], "and so on hour after hour": [65535, 0], "so on hour after hour and": [65535, 0], "on hour after hour and when": [65535, 0], "hour after hour and when the": [65535, 0], "after hour and when the middle": [65535, 0], "hour and when the middle of": [65535, 0], "and when the middle of the": [65535, 0], "when the middle of the afternoon": [65535, 0], "the middle of the afternoon came": [65535, 0], "middle of the afternoon came from": [65535, 0], "of the afternoon came from being": [65535, 0], "the afternoon came from being a": [65535, 0], "afternoon came from being a poor": [65535, 0], "came from being a poor poverty": [65535, 0], "from being a poor poverty stricken": [65535, 0], "being a poor poverty stricken boy": [65535, 0], "a poor poverty stricken boy in": [65535, 0], "poor poverty stricken boy in the": [65535, 0], "poverty stricken boy in the morning": [65535, 0], "stricken boy in the morning tom": [65535, 0], "boy in the morning tom was": [65535, 0], "in the morning tom was literally": [65535, 0], "the morning tom was literally rolling": [65535, 0], "morning tom was literally rolling in": [65535, 0], "tom was literally rolling in wealth": [65535, 0], "was literally rolling in wealth he": [65535, 0], "literally rolling in wealth he had": [65535, 0], "rolling in wealth he had besides": [65535, 0], "in wealth he had besides the": [65535, 0], "wealth he had besides the things": [65535, 0], "he had besides the things before": [65535, 0], "had besides the things before mentioned": [65535, 0], "besides the things before mentioned twelve": [65535, 0], "the things before mentioned twelve marbles": [65535, 0], "things before mentioned twelve marbles part": [65535, 0], "before mentioned twelve marbles part of": [65535, 0], "mentioned twelve marbles part of a": [65535, 0], "twelve marbles part of a jews": [65535, 0], "marbles part of a jews harp": [65535, 0], "part of a jews harp a": [65535, 0], "of a jews harp a piece": [65535, 0], "a jews harp a piece of": [65535, 0], "jews harp a piece of blue": [65535, 0], "harp a piece of blue bottle": [65535, 0], "a piece of blue bottle glass": [65535, 0], "piece of blue bottle glass to": [65535, 0], "of blue bottle glass to look": [65535, 0], "blue bottle glass to look through": [65535, 0], "bottle glass to look through a": [65535, 0], "glass to look through a spool": [65535, 0], "to look through a spool cannon": [65535, 0], "look through a spool cannon a": [65535, 0], "through a spool cannon a key": [65535, 0], "a spool cannon a key that": [65535, 0], "spool cannon a key that wouldn't": [65535, 0], "cannon a key that wouldn't unlock": [65535, 0], "a key that wouldn't unlock anything": [65535, 0], "key that wouldn't unlock anything a": [65535, 0], "that wouldn't unlock anything a fragment": [65535, 0], "wouldn't unlock anything a fragment of": [65535, 0], "unlock anything a fragment of chalk": [65535, 0], "anything a fragment of chalk a": [65535, 0], "a fragment of chalk a glass": [65535, 0], "fragment of chalk a glass stopper": [65535, 0], "of chalk a glass stopper of": [65535, 0], "chalk a glass stopper of a": [65535, 0], "a glass stopper of a decanter": [65535, 0], "glass stopper of a decanter a": [65535, 0], "stopper of a decanter a tin": [65535, 0], "of a decanter a tin soldier": [65535, 0], "a decanter a tin soldier a": [65535, 0], "decanter a tin soldier a couple": [65535, 0], "a tin soldier a couple of": [65535, 0], "tin soldier a couple of tadpoles": [65535, 0], "soldier a couple of tadpoles six": [65535, 0], "a couple of tadpoles six fire": [65535, 0], "couple of tadpoles six fire crackers": [65535, 0], "of tadpoles six fire crackers a": [65535, 0], "tadpoles six fire crackers a kitten": [65535, 0], "six fire crackers a kitten with": [65535, 0], "fire crackers a kitten with only": [65535, 0], "crackers a kitten with only one": [65535, 0], "a kitten with only one eye": [65535, 0], "kitten with only one eye a": [65535, 0], "with only one eye a brass": [65535, 0], "only one eye a brass doorknob": [65535, 0], "one eye a brass doorknob a": [65535, 0], "eye a brass doorknob a dog": [65535, 0], "a brass doorknob a dog collar": [65535, 0], "brass doorknob a dog collar but": [65535, 0], "doorknob a dog collar but no": [65535, 0], "a dog collar but no dog": [65535, 0], "dog collar but no dog the": [65535, 0], "collar but no dog the handle": [65535, 0], "but no dog the handle of": [65535, 0], "no dog the handle of a": [65535, 0], "dog the handle of a knife": [65535, 0], "the handle of a knife four": [65535, 0], "handle of a knife four pieces": [65535, 0], "of a knife four pieces of": [65535, 0], "a knife four pieces of orange": [65535, 0], "knife four pieces of orange peel": [65535, 0], "four pieces of orange peel and": [65535, 0], "pieces of orange peel and a": [65535, 0], "of orange peel and a dilapidated": [65535, 0], "orange peel and a dilapidated old": [65535, 0], "peel and a dilapidated old window": [65535, 0], "and a dilapidated old window sash": [65535, 0], "a dilapidated old window sash he": [65535, 0], "dilapidated old window sash he had": [65535, 0], "old window sash he had had": [65535, 0], "window sash he had had a": [65535, 0], "sash he had had a nice": [65535, 0], "he had had a nice good": [65535, 0], "had had a nice good idle": [65535, 0], "had a nice good idle time": [65535, 0], "a nice good idle time all": [65535, 0], "nice good idle time all the": [65535, 0], "good idle time all the while": [65535, 0], "idle time all the while plenty": [65535, 0], "time all the while plenty of": [65535, 0], "all the while plenty of company": [65535, 0], "the while plenty of company and": [65535, 0], "while plenty of company and the": [65535, 0], "plenty of company and the fence": [65535, 0], "of company and the fence had": [65535, 0], "company and the fence had three": [65535, 0], "and the fence had three coats": [65535, 0], "the fence had three coats of": [65535, 0], "fence had three coats of whitewash": [65535, 0], "had three coats of whitewash on": [65535, 0], "three coats of whitewash on it": [65535, 0], "coats of whitewash on it if": [65535, 0], "of whitewash on it if he": [65535, 0], "whitewash on it if he hadn't": [65535, 0], "on it if he hadn't run": [65535, 0], "it if he hadn't run out": [65535, 0], "if he hadn't run out of": [65535, 0], "he hadn't run out of whitewash": [65535, 0], "hadn't run out of whitewash he": [65535, 0], "run out of whitewash he would": [65535, 0], "out of whitewash he would have": [65535, 0], "of whitewash he would have bankrupted": [65535, 0], "whitewash he would have bankrupted every": [65535, 0], "he would have bankrupted every boy": [65535, 0], "would have bankrupted every boy in": [65535, 0], "have bankrupted every boy in the": [65535, 0], "bankrupted every boy in the village": [65535, 0], "every boy in the village tom": [65535, 0], "boy in the village tom said": [65535, 0], "in the village tom said to": [65535, 0], "the village tom said to himself": [65535, 0], "village tom said to himself that": [65535, 0], "tom said to himself that it": [65535, 0], "said to himself that it was": [65535, 0], "to himself that it was not": [65535, 0], "himself that it was not such": [65535, 0], "that it was not such a": [65535, 0], "it was not such a hollow": [65535, 0], "was not such a hollow world": [65535, 0], "not such a hollow world after": [65535, 0], "such a hollow world after all": [65535, 0], "a hollow world after all he": [65535, 0], "hollow world after all he had": [65535, 0], "world after all he had discovered": [65535, 0], "after all he had discovered a": [65535, 0], "all he had discovered a great": [65535, 0], "he had discovered a great law": [65535, 0], "had discovered a great law of": [65535, 0], "discovered a great law of human": [65535, 0], "a great law of human action": [65535, 0], "great law of human action without": [65535, 0], "law of human action without knowing": [65535, 0], "of human action without knowing it": [65535, 0], "human action without knowing it namely": [65535, 0], "action without knowing it namely that": [65535, 0], "without knowing it namely that in": [65535, 0], "knowing it namely that in order": [65535, 0], "it namely that in order to": [65535, 0], "namely that in order to make": [65535, 0], "that in order to make a": [65535, 0], "in order to make a man": [65535, 0], "order to make a man or": [65535, 0], "to make a man or a": [65535, 0], "make a man or a boy": [65535, 0], "a man or a boy covet": [65535, 0], "man or a boy covet a": [65535, 0], "or a boy covet a thing": [65535, 0], "a boy covet a thing it": [65535, 0], "boy covet a thing it is": [65535, 0], "covet a thing it is only": [65535, 0], "a thing it is only necessary": [65535, 0], "thing it is only necessary to": [65535, 0], "it is only necessary to make": [65535, 0], "is only necessary to make the": [65535, 0], "only necessary to make the thing": [65535, 0], "necessary to make the thing difficult": [65535, 0], "to make the thing difficult to": [65535, 0], "make the thing difficult to attain": [65535, 0], "the thing difficult to attain if": [65535, 0], "thing difficult to attain if he": [65535, 0], "difficult to attain if he had": [65535, 0], "to attain if he had been": [65535, 0], "attain if he had been a": [65535, 0], "if he had been a great": [65535, 0], "he had been a great and": [65535, 0], "had been a great and wise": [65535, 0], "been a great and wise philosopher": [65535, 0], "a great and wise philosopher like": [65535, 0], "great and wise philosopher like the": [65535, 0], "and wise philosopher like the writer": [65535, 0], "wise philosopher like the writer of": [65535, 0], "philosopher like the writer of this": [65535, 0], "like the writer of this book": [65535, 0], "the writer of this book he": [65535, 0], "writer of this book he would": [65535, 0], "of this book he would now": [65535, 0], "this book he would now have": [65535, 0], "book he would now have comprehended": [65535, 0], "he would now have comprehended that": [65535, 0], "would now have comprehended that work": [65535, 0], "now have comprehended that work consists": [65535, 0], "have comprehended that work consists of": [65535, 0], "comprehended that work consists of whatever": [65535, 0], "that work consists of whatever a": [65535, 0], "work consists of whatever a body": [65535, 0], "consists of whatever a body is": [65535, 0], "of whatever a body is obliged": [65535, 0], "whatever a body is obliged to": [65535, 0], "a body is obliged to do": [65535, 0], "body is obliged to do and": [65535, 0], "is obliged to do and that": [65535, 0], "obliged to do and that play": [65535, 0], "to do and that play consists": [65535, 0], "do and that play consists of": [65535, 0], "and that play consists of whatever": [65535, 0], "that play consists of whatever a": [65535, 0], "play consists of whatever a body": [65535, 0], "of whatever a body is not": [65535, 0], "whatever a body is not obliged": [65535, 0], "a body is not obliged to": [65535, 0], "body is not obliged to do": [65535, 0], "is not obliged to do and": [65535, 0], "not obliged to do and this": [65535, 0], "obliged to do and this would": [65535, 0], "to do and this would help": [65535, 0], "do and this would help him": [65535, 0], "and this would help him to": [65535, 0], "this would help him to understand": [65535, 0], "would help him to understand why": [65535, 0], "help him to understand why constructing": [65535, 0], "him to understand why constructing artificial": [65535, 0], "to understand why constructing artificial flowers": [65535, 0], "understand why constructing artificial flowers or": [65535, 0], "why constructing artificial flowers or performing": [65535, 0], "constructing artificial flowers or performing on": [65535, 0], "artificial flowers or performing on a": [65535, 0], "flowers or performing on a tread": [65535, 0], "or performing on a tread mill": [65535, 0], "performing on a tread mill is": [65535, 0], "on a tread mill is work": [65535, 0], "a tread mill is work while": [65535, 0], "tread mill is work while rolling": [65535, 0], "mill is work while rolling ten": [65535, 0], "is work while rolling ten pins": [65535, 0], "work while rolling ten pins or": [65535, 0], "while rolling ten pins or climbing": [65535, 0], "rolling ten pins or climbing mont": [65535, 0], "ten pins or climbing mont blanc": [65535, 0], "pins or climbing mont blanc is": [65535, 0], "or climbing mont blanc is only": [65535, 0], "climbing mont blanc is only amusement": [65535, 0], "mont blanc is only amusement there": [65535, 0], "blanc is only amusement there are": [65535, 0], "is only amusement there are wealthy": [65535, 0], "only amusement there are wealthy gentlemen": [65535, 0], "amusement there are wealthy gentlemen in": [65535, 0], "there are wealthy gentlemen in england": [65535, 0], "are wealthy gentlemen in england who": [65535, 0], "wealthy gentlemen in england who drive": [65535, 0], "gentlemen in england who drive four": [65535, 0], "in england who drive four horse": [65535, 0], "england who drive four horse passenger": [65535, 0], "who drive four horse passenger coaches": [65535, 0], "drive four horse passenger coaches twenty": [65535, 0], "four horse passenger coaches twenty or": [65535, 0], "horse passenger coaches twenty or thirty": [65535, 0], "passenger coaches twenty or thirty miles": [65535, 0], "coaches twenty or thirty miles on": [65535, 0], "twenty or thirty miles on a": [65535, 0], "or thirty miles on a daily": [65535, 0], "thirty miles on a daily line": [65535, 0], "miles on a daily line in": [65535, 0], "on a daily line in the": [65535, 0], "a daily line in the summer": [65535, 0], "daily line in the summer because": [65535, 0], "line in the summer because the": [65535, 0], "in the summer because the privilege": [65535, 0], "the summer because the privilege costs": [65535, 0], "summer because the privilege costs them": [65535, 0], "because the privilege costs them considerable": [65535, 0], "the privilege costs them considerable money": [65535, 0], "privilege costs them considerable money but": [65535, 0], "costs them considerable money but if": [65535, 0], "them considerable money but if they": [65535, 0], "considerable money but if they were": [65535, 0], "money but if they were offered": [65535, 0], "but if they were offered wages": [65535, 0], "if they were offered wages for": [65535, 0], "they were offered wages for the": [65535, 0], "were offered wages for the service": [65535, 0], "offered wages for the service that": [65535, 0], "wages for the service that would": [65535, 0], "for the service that would turn": [65535, 0], "the service that would turn it": [65535, 0], "service that would turn it into": [65535, 0], "that would turn it into work": [65535, 0], "would turn it into work and": [65535, 0], "turn it into work and then": [65535, 0], "it into work and then they": [65535, 0], "into work and then they would": [65535, 0], "work and then they would resign": [65535, 0], "and then they would resign the": [65535, 0], "then they would resign the boy": [65535, 0], "they would resign the boy mused": [65535, 0], "would resign the boy mused awhile": [65535, 0], "resign the boy mused awhile over": [65535, 0], "the boy mused awhile over the": [65535, 0], "boy mused awhile over the substantial": [65535, 0], "mused awhile over the substantial change": [65535, 0], "awhile over the substantial change which": [65535, 0], "over the substantial change which had": [65535, 0], "the substantial change which had taken": [65535, 0], "substantial change which had taken place": [65535, 0], "change which had taken place in": [65535, 0], "which had taken place in his": [65535, 0], "had taken place in his worldly": [65535, 0], "taken place in his worldly circumstances": [65535, 0], "place in his worldly circumstances and": [65535, 0], "in his worldly circumstances and then": [65535, 0], "his worldly circumstances and then wended": [65535, 0], "worldly circumstances and then wended toward": [65535, 0], "circumstances and then wended toward headquarters": [65535, 0], "and then wended toward headquarters to": [65535, 0], "then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the": [65535, 0], "morning was come and all the summer": [65535, 0], "was come and all the summer world": [65535, 0], "come and all the summer world was": [65535, 0], "and all the summer world was bright": [65535, 0], "all the summer world was bright and": [65535, 0], "the summer world was bright and fresh": [65535, 0], "summer world was bright and fresh and": [65535, 0], "world was bright and fresh and brimming": [65535, 0], "was bright and fresh and brimming with": [65535, 0], "bright and fresh and brimming with life": [65535, 0], "and fresh and brimming with life there": [65535, 0], "fresh and brimming with life there was": [65535, 0], "and brimming with life there was a": [65535, 0], "brimming with life there was a song": [65535, 0], "with life there was a song in": [65535, 0], "life there was a song in every": [65535, 0], "there was a song in every heart": [65535, 0], "was a song in every heart and": [65535, 0], "a song in every heart and if": [65535, 0], "song in every heart and if the": [65535, 0], "in every heart and if the heart": [65535, 0], "every heart and if the heart was": [65535, 0], "heart and if the heart was young": [65535, 0], "and if the heart was young the": [65535, 0], "if the heart was young the music": [65535, 0], "the heart was young the music issued": [65535, 0], "heart was young the music issued at": [65535, 0], "was young the music issued at the": [65535, 0], "young the music issued at the lips": [65535, 0], "the music issued at the lips there": [65535, 0], "music issued at the lips there was": [65535, 0], "issued at the lips there was cheer": [65535, 0], "at the lips there was cheer in": [65535, 0], "the lips there was cheer in every": [65535, 0], "lips there was cheer in every face": [65535, 0], "there was cheer in every face and": [65535, 0], "was cheer in every face and a": [65535, 0], "cheer in every face and a spring": [65535, 0], "in every face and a spring in": [65535, 0], "every face and a spring in every": [65535, 0], "face and a spring in every step": [65535, 0], "and a spring in every step the": [65535, 0], "a spring in every step the locust": [65535, 0], "spring in every step the locust trees": [65535, 0], "in every step the locust trees were": [65535, 0], "every step the locust trees were in": [65535, 0], "step the locust trees were in bloom": [65535, 0], "the locust trees were in bloom and": [65535, 0], "locust trees were in bloom and the": [65535, 0], "trees were in bloom and the fragrance": [65535, 0], "were in bloom and the fragrance of": [65535, 0], "in bloom and the fragrance of the": [65535, 0], "bloom and the fragrance of the blossoms": [65535, 0], "and the fragrance of the blossoms filled": [65535, 0], "the fragrance of the blossoms filled the": [65535, 0], "fragrance of the blossoms filled the air": [65535, 0], "of the blossoms filled the air cardiff": [65535, 0], "the blossoms filled the air cardiff hill": [65535, 0], "blossoms filled the air cardiff hill beyond": [65535, 0], "filled the air cardiff hill beyond the": [65535, 0], "the air cardiff hill beyond the village": [65535, 0], "air cardiff hill beyond the village and": [65535, 0], "cardiff hill beyond the village and above": [65535, 0], "hill beyond the village and above it": [65535, 0], "beyond the village and above it was": [65535, 0], "the village and above it was green": [65535, 0], "village and above it was green with": [65535, 0], "and above it was green with vegetation": [65535, 0], "above it was green with vegetation and": [65535, 0], "it was green with vegetation and it": [65535, 0], "was green with vegetation and it lay": [65535, 0], "green with vegetation and it lay just": [65535, 0], "with vegetation and it lay just far": [65535, 0], "vegetation and it lay just far enough": [65535, 0], "and it lay just far enough away": [65535, 0], "it lay just far enough away to": [65535, 0], "lay just far enough away to seem": [65535, 0], "just far enough away to seem a": [65535, 0], "far enough away to seem a delectable": [65535, 0], "enough away to seem a delectable land": [65535, 0], "away to seem a delectable land dreamy": [65535, 0], "to seem a delectable land dreamy reposeful": [65535, 0], "seem a delectable land dreamy reposeful and": [65535, 0], "a delectable land dreamy reposeful and inviting": [65535, 0], "delectable land dreamy reposeful and inviting tom": [65535, 0], "land dreamy reposeful and inviting tom appeared": [65535, 0], "dreamy reposeful and inviting tom appeared on": [65535, 0], "reposeful and inviting tom appeared on the": [65535, 0], "and inviting tom appeared on the sidewalk": [65535, 0], "inviting tom appeared on the sidewalk with": [65535, 0], "tom appeared on the sidewalk with a": [65535, 0], "appeared on the sidewalk with a bucket": [65535, 0], "on the sidewalk with a bucket of": [65535, 0], "the sidewalk with a bucket of whitewash": [65535, 0], "sidewalk with a bucket of whitewash and": [65535, 0], "with a bucket of whitewash and a": [65535, 0], "a bucket of whitewash and a long": [65535, 0], "bucket of whitewash and a long handled": [65535, 0], "of whitewash and a long handled brush": [65535, 0], "whitewash and a long handled brush he": [65535, 0], "and a long handled brush he surveyed": [65535, 0], "a long handled brush he surveyed the": [65535, 0], "long handled brush he surveyed the fence": [65535, 0], "handled brush he surveyed the fence and": [65535, 0], "brush he surveyed the fence and all": [65535, 0], "he surveyed the fence and all gladness": [65535, 0], "surveyed the fence and all gladness left": [65535, 0], "the fence and all gladness left him": [65535, 0], "fence and all gladness left him and": [65535, 0], "and all gladness left him and a": [65535, 0], "all gladness left him and a deep": [65535, 0], "gladness left him and a deep melancholy": [65535, 0], "left him and a deep melancholy settled": [65535, 0], "him and a deep melancholy settled down": [65535, 0], "and a deep melancholy settled down upon": [65535, 0], "a deep melancholy settled down upon his": [65535, 0], "deep melancholy settled down upon his spirit": [65535, 0], "melancholy settled down upon his spirit thirty": [65535, 0], "settled down upon his spirit thirty yards": [65535, 0], "down upon his spirit thirty yards of": [65535, 0], "upon his spirit thirty yards of board": [65535, 0], "his spirit thirty yards of board fence": [65535, 0], "spirit thirty yards of board fence nine": [65535, 0], "thirty yards of board fence nine feet": [65535, 0], "yards of board fence nine feet high": [65535, 0], "of board fence nine feet high life": [65535, 0], "board fence nine feet high life to": [65535, 0], "fence nine feet high life to him": [65535, 0], "nine feet high life to him seemed": [65535, 0], "feet high life to him seemed hollow": [65535, 0], "high life to him seemed hollow and": [65535, 0], "life to him seemed hollow and existence": [65535, 0], "to him seemed hollow and existence but": [65535, 0], "him seemed hollow and existence but a": [65535, 0], "seemed hollow and existence but a burden": [65535, 0], "hollow and existence but a burden sighing": [65535, 0], "and existence but a burden sighing he": [65535, 0], "existence but a burden sighing he dipped": [65535, 0], "but a burden sighing he dipped his": [65535, 0], "a burden sighing he dipped his brush": [65535, 0], "burden sighing he dipped his brush and": [65535, 0], "sighing he dipped his brush and passed": [65535, 0], "he dipped his brush and passed it": [65535, 0], "dipped his brush and passed it along": [65535, 0], "his brush and passed it along the": [65535, 0], "brush and passed it along the topmost": [65535, 0], "and passed it along the topmost plank": [65535, 0], "passed it along the topmost plank repeated": [65535, 0], "it along the topmost plank repeated the": [65535, 0], "along the topmost plank repeated the operation": [65535, 0], "the topmost plank repeated the operation did": [65535, 0], "topmost plank repeated the operation did it": [65535, 0], "plank repeated the operation did it again": [65535, 0], "repeated the operation did it again compared": [65535, 0], "the operation did it again compared the": [65535, 0], "operation did it again compared the insignificant": [65535, 0], "did it again compared the insignificant whitewashed": [65535, 0], "it again compared the insignificant whitewashed streak": [65535, 0], "again compared the insignificant whitewashed streak with": [65535, 0], "compared the insignificant whitewashed streak with the": [65535, 0], "the insignificant whitewashed streak with the far": [65535, 0], "insignificant whitewashed streak with the far reaching": [65535, 0], "whitewashed streak with the far reaching continent": [65535, 0], "streak with the far reaching continent of": [65535, 0], "with the far reaching continent of unwhitewashed": [65535, 0], "the far reaching continent of unwhitewashed fence": [65535, 0], "far reaching continent of unwhitewashed fence and": [65535, 0], "reaching continent of unwhitewashed fence and sat": [65535, 0], "continent of unwhitewashed fence and sat down": [65535, 0], "of unwhitewashed fence and sat down on": [65535, 0], "unwhitewashed fence and sat down on a": [65535, 0], "fence and sat down on a tree": [65535, 0], "and sat down on a tree box": [65535, 0], "sat down on a tree box discouraged": [65535, 0], "down on a tree box discouraged jim": [65535, 0], "on a tree box discouraged jim came": [65535, 0], "a tree box discouraged jim came skipping": [65535, 0], "tree box discouraged jim came skipping out": [65535, 0], "box discouraged jim came skipping out at": [65535, 0], "discouraged jim came skipping out at the": [65535, 0], "jim came skipping out at the gate": [65535, 0], "came skipping out at the gate with": [65535, 0], "skipping out at the gate with a": [65535, 0], "out at the gate with a tin": [65535, 0], "at the gate with a tin pail": [65535, 0], "the gate with a tin pail and": [65535, 0], "gate with a tin pail and singing": [65535, 0], "with a tin pail and singing buffalo": [65535, 0], "a tin pail and singing buffalo gals": [65535, 0], "tin pail and singing buffalo gals bringing": [65535, 0], "pail and singing buffalo gals bringing water": [65535, 0], "and singing buffalo gals bringing water from": [65535, 0], "singing buffalo gals bringing water from the": [65535, 0], "buffalo gals bringing water from the town": [65535, 0], "gals bringing water from the town pump": [65535, 0], "bringing water from the town pump had": [65535, 0], "water from the town pump had always": [65535, 0], "from the town pump had always been": [65535, 0], "the town pump had always been hateful": [65535, 0], "town pump had always been hateful work": [65535, 0], "pump had always been hateful work in": [65535, 0], "had always been hateful work in tom's": [65535, 0], "always been hateful work in tom's eyes": [65535, 0], "been hateful work in tom's eyes before": [65535, 0], "hateful work in tom's eyes before but": [65535, 0], "work in tom's eyes before but now": [65535, 0], "in tom's eyes before but now it": [65535, 0], "tom's eyes before but now it did": [65535, 0], "eyes before but now it did not": [65535, 0], "before but now it did not strike": [65535, 0], "but now it did not strike him": [65535, 0], "now it did not strike him so": [65535, 0], "it did not strike him so he": [65535, 0], "did not strike him so he remembered": [65535, 0], "not strike him so he remembered that": [65535, 0], "strike him so he remembered that there": [65535, 0], "him so he remembered that there was": [65535, 0], "so he remembered that there was company": [65535, 0], "he remembered that there was company at": [65535, 0], "remembered that there was company at the": [65535, 0], "that there was company at the pump": [65535, 0], "there was company at the pump white": [65535, 0], "was company at the pump white mulatto": [65535, 0], "company at the pump white mulatto and": [65535, 0], "at the pump white mulatto and negro": [65535, 0], "the pump white mulatto and negro boys": [65535, 0], "pump white mulatto and negro boys and": [65535, 0], "white mulatto and negro boys and girls": [65535, 0], "mulatto and negro boys and girls were": [65535, 0], "and negro boys and girls were always": [65535, 0], "negro boys and girls were always there": [65535, 0], "boys and girls were always there waiting": [65535, 0], "and girls were always there waiting their": [65535, 0], "girls were always there waiting their turns": [65535, 0], "were always there waiting their turns resting": [65535, 0], "always there waiting their turns resting trading": [65535, 0], "there waiting their turns resting trading playthings": [65535, 0], "waiting their turns resting trading playthings quarrelling": [65535, 0], "their turns resting trading playthings quarrelling fighting": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "resting trading playthings quarrelling fighting skylarking and": [65535, 0], "trading playthings quarrelling fighting skylarking and he": [65535, 0], "playthings quarrelling fighting skylarking and he remembered": [65535, 0], "quarrelling fighting skylarking and he remembered that": [65535, 0], "fighting skylarking and he remembered that although": [65535, 0], "skylarking and he remembered that although the": [65535, 0], "and he remembered that although the pump": [65535, 0], "he remembered that although the pump was": [65535, 0], "remembered that although the pump was only": [65535, 0], "that although the pump was only a": [65535, 0], "although the pump was only a hundred": [65535, 0], "the pump was only a hundred and": [65535, 0], "pump was only a hundred and fifty": [65535, 0], "was only a hundred and fifty yards": [65535, 0], "only a hundred and fifty yards off": [65535, 0], "a hundred and fifty yards off jim": [65535, 0], "hundred and fifty yards off jim never": [65535, 0], "and fifty yards off jim never got": [65535, 0], "fifty yards off jim never got back": [65535, 0], "yards off jim never got back with": [65535, 0], "off jim never got back with a": [65535, 0], "jim never got back with a bucket": [65535, 0], "never got back with a bucket of": [65535, 0], "got back with a bucket of water": [65535, 0], "back with a bucket of water under": [65535, 0], "with a bucket of water under an": [65535, 0], "a bucket of water under an hour": [65535, 0], "bucket of water under an hour and": [65535, 0], "of water under an hour and even": [65535, 0], "water under an hour and even then": [65535, 0], "under an hour and even then somebody": [65535, 0], "an hour and even then somebody generally": [65535, 0], "hour and even then somebody generally had": [65535, 0], "and even then somebody generally had to": [65535, 0], "even then somebody generally had to go": [65535, 0], "then somebody generally had to go after": [65535, 0], "somebody generally had to go after him": [65535, 0], "generally had to go after him tom": [65535, 0], "had to go after him tom said": [65535, 0], "to go after him tom said say": [65535, 0], "go after him tom said say jim": [65535, 0], "after him tom said say jim i'll": [65535, 0], "him tom said say jim i'll fetch": [65535, 0], "tom said say jim i'll fetch the": [65535, 0], "said say jim i'll fetch the water": [65535, 0], "say jim i'll fetch the water if": [65535, 0], "jim i'll fetch the water if you'll": [65535, 0], "i'll fetch the water if you'll whitewash": [65535, 0], "fetch the water if you'll whitewash some": [65535, 0], "the water if you'll whitewash some jim": [65535, 0], "water if you'll whitewash some jim shook": [65535, 0], "if you'll whitewash some jim shook his": [65535, 0], "you'll whitewash some jim shook his head": [65535, 0], "whitewash some jim shook his head and": [65535, 0], "some jim shook his head and said": [65535, 0], "jim shook his head and said can't": [65535, 0], "shook his head and said can't mars": [65535, 0], "his head and said can't mars tom": [65535, 0], "head and said can't mars tom ole": [65535, 0], "and said can't mars tom ole missis": [65535, 0], "said can't mars tom ole missis she": [65535, 0], "can't mars tom ole missis she tole": [65535, 0], "mars tom ole missis she tole me": [65535, 0], "tom ole missis she tole me i": [65535, 0], "ole missis she tole me i got": [65535, 0], "missis she tole me i got to": [65535, 0], "she tole me i got to go": [65535, 0], "tole me i got to go an'": [65535, 0], "me i got to go an' git": [65535, 0], "i got to go an' git dis": [65535, 0], "got to go an' git dis water": [65535, 0], "to go an' git dis water an'": [65535, 0], "go an' git dis water an' not": [65535, 0], "an' git dis water an' not stop": [65535, 0], "git dis water an' not stop foolin'": [65535, 0], "dis water an' not stop foolin' roun'": [65535, 0], "water an' not stop foolin' roun' wid": [65535, 0], "an' not stop foolin' roun' wid anybody": [65535, 0], "not stop foolin' roun' wid anybody she": [65535, 0], "stop foolin' roun' wid anybody she say": [65535, 0], "foolin' roun' wid anybody she say she": [65535, 0], "roun' wid anybody she say she spec'": [65535, 0], "wid anybody she say she spec' mars": [65535, 0], "anybody she say she spec' mars tom": [65535, 0], "she say she spec' mars tom gwine": [65535, 0], "say she spec' mars tom gwine to": [65535, 0], "she spec' mars tom gwine to ax": [65535, 0], "spec' mars tom gwine to ax me": [65535, 0], "mars tom gwine to ax me to": [65535, 0], "tom gwine to ax me to whitewash": [65535, 0], "gwine to ax me to whitewash an'": [65535, 0], "to ax me to whitewash an' so": [65535, 0], "ax me to whitewash an' so she": [65535, 0], "me to whitewash an' so she tole": [65535, 0], "to whitewash an' so she tole me": [65535, 0], "whitewash an' so she tole me go": [65535, 0], "an' so she tole me go 'long": [65535, 0], "so she tole me go 'long an'": [65535, 0], "she tole me go 'long an' 'tend": [65535, 0], "tole me go 'long an' 'tend to": [65535, 0], "me go 'long an' 'tend to my": [65535, 0], "go 'long an' 'tend to my own": [65535, 0], "'long an' 'tend to my own business": [65535, 0], "an' 'tend to my own business she": [65535, 0], "'tend to my own business she 'lowed": [65535, 0], "to my own business she 'lowed she'd": [65535, 0], "my own business she 'lowed she'd 'tend": [65535, 0], "own business she 'lowed she'd 'tend to": [65535, 0], "business she 'lowed she'd 'tend to de": [65535, 0], "she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "she'd 'tend to de whitewashin' oh never": [65535, 0], "'tend to de whitewashin' oh never you": [65535, 0], "to de whitewashin' oh never you mind": [65535, 0], "de whitewashin' oh never you mind what": [65535, 0], "whitewashin' oh never you mind what she": [65535, 0], "oh never you mind what she said": [65535, 0], "never you mind what she said jim": [65535, 0], "you mind what she said jim that's": [65535, 0], "mind what she said jim that's the": [65535, 0], "what she said jim that's the way": [65535, 0], "she said jim that's the way she": [65535, 0], "said jim that's the way she always": [65535, 0], "jim that's the way she always talks": [65535, 0], "that's the way she always talks gimme": [65535, 0], "the way she always talks gimme the": [65535, 0], "way she always talks gimme the bucket": [65535, 0], "she always talks gimme the bucket i": [65535, 0], "always talks gimme the bucket i won't": [65535, 0], "talks gimme the bucket i won't be": [65535, 0], "gimme the bucket i won't be gone": [65535, 0], "the bucket i won't be gone only": [65535, 0], "bucket i won't be gone only a": [65535, 0], "i won't be gone only a minute": [65535, 0], "won't be gone only a minute she": [65535, 0], "be gone only a minute she won't": [65535, 0], "gone only a minute she won't ever": [65535, 0], "only a minute she won't ever know": [65535, 0], "a minute she won't ever know oh": [65535, 0], "minute she won't ever know oh i": [65535, 0], "she won't ever know oh i dasn't": [65535, 0], "won't ever know oh i dasn't mars": [65535, 0], "ever know oh i dasn't mars tom": [65535, 0], "know oh i dasn't mars tom ole": [65535, 0], "oh i dasn't mars tom ole missis": [65535, 0], "i dasn't mars tom ole missis she'd": [65535, 0], "dasn't mars tom ole missis she'd take": [65535, 0], "mars tom ole missis she'd take an'": [65535, 0], "tom ole missis she'd take an' tar": [65535, 0], "ole missis she'd take an' tar de": [65535, 0], "missis she'd take an' tar de head": [65535, 0], "she'd take an' tar de head off'n": [65535, 0], "take an' tar de head off'n me": [65535, 0], "an' tar de head off'n me 'deed": [65535, 0], "tar de head off'n me 'deed she": [65535, 0], "de head off'n me 'deed she would": [65535, 0], "head off'n me 'deed she would she": [65535, 0], "off'n me 'deed she would she she": [65535, 0], "me 'deed she would she she never": [65535, 0], "'deed she would she she never licks": [65535, 0], "she would she she never licks anybody": [65535, 0], "would she she never licks anybody whacks": [65535, 0], "she she never licks anybody whacks 'em": [65535, 0], "she never licks anybody whacks 'em over": [65535, 0], "never licks anybody whacks 'em over the": [65535, 0], "licks anybody whacks 'em over the head": [65535, 0], "anybody whacks 'em over the head with": [65535, 0], "whacks 'em over the head with her": [65535, 0], "'em over the head with her thimble": [65535, 0], "over the head with her thimble and": [65535, 0], "the head with her thimble and who": [65535, 0], "head with her thimble and who cares": [65535, 0], "with her thimble and who cares for": [65535, 0], "her thimble and who cares for that": [65535, 0], "thimble and who cares for that i'd": [65535, 0], "and who cares for that i'd like": [65535, 0], "who cares for that i'd like to": [65535, 0], "cares for that i'd like to know": [65535, 0], "for that i'd like to know she": [65535, 0], "that i'd like to know she talks": [65535, 0], "i'd like to know she talks awful": [65535, 0], "like to know she talks awful but": [65535, 0], "to know she talks awful but talk": [65535, 0], "know she talks awful but talk don't": [65535, 0], "she talks awful but talk don't hurt": [65535, 0], "talks awful but talk don't hurt anyways": [65535, 0], "awful but talk don't hurt anyways it": [65535, 0], "but talk don't hurt anyways it don't": [65535, 0], "talk don't hurt anyways it don't if": [65535, 0], "don't hurt anyways it don't if she": [65535, 0], "hurt anyways it don't if she don't": [65535, 0], "anyways it don't if she don't cry": [65535, 0], "it don't if she don't cry jim": [65535, 0], "don't if she don't cry jim i'll": [65535, 0], "if she don't cry jim i'll give": [65535, 0], "she don't cry jim i'll give you": [65535, 0], "don't cry jim i'll give you a": [65535, 0], "cry jim i'll give you a marvel": [65535, 0], "jim i'll give you a marvel i'll": [65535, 0], "i'll give you a marvel i'll give": [65535, 0], "give you a marvel i'll give you": [65535, 0], "you a marvel i'll give you a": [65535, 0], "a marvel i'll give you a white": [65535, 0], "marvel i'll give you a white alley": [65535, 0], "i'll give you a white alley jim": [65535, 0], "give you a white alley jim began": [65535, 0], "you a white alley jim began to": [65535, 0], "a white alley jim began to waver": [65535, 0], "white alley jim began to waver white": [65535, 0], "alley jim began to waver white alley": [65535, 0], "jim began to waver white alley jim": [65535, 0], "began to waver white alley jim and": [65535, 0], "to waver white alley jim and it's": [65535, 0], "waver white alley jim and it's a": [65535, 0], "white alley jim and it's a bully": [65535, 0], "alley jim and it's a bully taw": [65535, 0], "jim and it's a bully taw my": [65535, 0], "and it's a bully taw my dat's": [65535, 0], "it's a bully taw my dat's a": [65535, 0], "a bully taw my dat's a mighty": [65535, 0], "bully taw my dat's a mighty gay": [65535, 0], "taw my dat's a mighty gay marvel": [65535, 0], "my dat's a mighty gay marvel i": [65535, 0], "dat's a mighty gay marvel i tell": [65535, 0], "a mighty gay marvel i tell you": [65535, 0], "mighty gay marvel i tell you but": [65535, 0], "gay marvel i tell you but mars": [65535, 0], "marvel i tell you but mars tom": [65535, 0], "i tell you but mars tom i's": [65535, 0], "tell you but mars tom i's powerful": [65535, 0], "you but mars tom i's powerful 'fraid": [65535, 0], "but mars tom i's powerful 'fraid ole": [65535, 0], "mars tom i's powerful 'fraid ole missis": [65535, 0], "tom i's powerful 'fraid ole missis and": [65535, 0], "i's powerful 'fraid ole missis and besides": [65535, 0], "powerful 'fraid ole missis and besides if": [65535, 0], "'fraid ole missis and besides if you": [65535, 0], "ole missis and besides if you will": [65535, 0], "missis and besides if you will i'll": [65535, 0], "and besides if you will i'll show": [65535, 0], "besides if you will i'll show you": [65535, 0], "if you will i'll show you my": [65535, 0], "you will i'll show you my sore": [65535, 0], "will i'll show you my sore toe": [65535, 0], "i'll show you my sore toe jim": [65535, 0], "show you my sore toe jim was": [65535, 0], "you my sore toe jim was only": [65535, 0], "my sore toe jim was only human": [65535, 0], "sore toe jim was only human this": [65535, 0], "toe jim was only human this attraction": [65535, 0], "jim was only human this attraction was": [65535, 0], "was only human this attraction was too": [65535, 0], "only human this attraction was too much": [65535, 0], "human this attraction was too much for": [65535, 0], "this attraction was too much for him": [65535, 0], "attraction was too much for him he": [65535, 0], "was too much for him he put": [65535, 0], "too much for him he put down": [65535, 0], "much for him he put down his": [65535, 0], "for him he put down his pail": [65535, 0], "him he put down his pail took": [65535, 0], "he put down his pail took the": [65535, 0], "put down his pail took the white": [65535, 0], "down his pail took the white alley": [65535, 0], "his pail took the white alley and": [65535, 0], "pail took the white alley and bent": [65535, 0], "took the white alley and bent over": [65535, 0], "the white alley and bent over the": [65535, 0], "white alley and bent over the toe": [65535, 0], "alley and bent over the toe with": [65535, 0], "and bent over the toe with absorbing": [65535, 0], "bent over the toe with absorbing interest": [65535, 0], "over the toe with absorbing interest while": [65535, 0], "the toe with absorbing interest while the": [65535, 0], "toe with absorbing interest while the bandage": [65535, 0], "with absorbing interest while the bandage was": [65535, 0], "absorbing interest while the bandage was being": [65535, 0], "interest while the bandage was being unwound": [65535, 0], "while the bandage was being unwound in": [65535, 0], "the bandage was being unwound in another": [65535, 0], "bandage was being unwound in another moment": [65535, 0], "was being unwound in another moment he": [65535, 0], "being unwound in another moment he was": [65535, 0], "unwound in another moment he was flying": [65535, 0], "in another moment he was flying down": [65535, 0], "another moment he was flying down the": [65535, 0], "moment he was flying down the street": [65535, 0], "he was flying down the street with": [65535, 0], "was flying down the street with his": [65535, 0], "flying down the street with his pail": [65535, 0], "down the street with his pail and": [65535, 0], "the street with his pail and a": [65535, 0], "street with his pail and a tingling": [65535, 0], "with his pail and a tingling rear": [65535, 0], "his pail and a tingling rear tom": [65535, 0], "pail and a tingling rear tom was": [65535, 0], "and a tingling rear tom was whitewashing": [65535, 0], "a tingling rear tom was whitewashing with": [65535, 0], "tingling rear tom was whitewashing with vigor": [65535, 0], "rear tom was whitewashing with vigor and": [65535, 0], "tom was whitewashing with vigor and aunt": [65535, 0], "was whitewashing with vigor and aunt polly": [65535, 0], "whitewashing with vigor and aunt polly was": [65535, 0], "with vigor and aunt polly was retiring": [65535, 0], "vigor and aunt polly was retiring from": [65535, 0], "and aunt polly was retiring from the": [65535, 0], "aunt polly was retiring from the field": [65535, 0], "polly was retiring from the field with": [65535, 0], "was retiring from the field with a": [65535, 0], "retiring from the field with a slipper": [65535, 0], "from the field with a slipper in": [65535, 0], "the field with a slipper in her": [65535, 0], "field with a slipper in her hand": [65535, 0], "with a slipper in her hand and": [65535, 0], "a slipper in her hand and triumph": [65535, 0], "slipper in her hand and triumph in": [65535, 0], "in her hand and triumph in her": [65535, 0], "her hand and triumph in her eye": [65535, 0], "hand and triumph in her eye but": [65535, 0], "and triumph in her eye but tom's": [65535, 0], "triumph in her eye but tom's energy": [65535, 0], "in her eye but tom's energy did": [65535, 0], "her eye but tom's energy did not": [65535, 0], "eye but tom's energy did not last": [65535, 0], "but tom's energy did not last he": [65535, 0], "tom's energy did not last he began": [65535, 0], "energy did not last he began to": [65535, 0], "did not last he began to think": [65535, 0], "not last he began to think of": [65535, 0], "last he began to think of the": [65535, 0], "he began to think of the fun": [65535, 0], "began to think of the fun he": [65535, 0], "to think of the fun he had": [65535, 0], "think of the fun he had planned": [65535, 0], "of the fun he had planned for": [65535, 0], "the fun he had planned for this": [65535, 0], "fun he had planned for this day": [65535, 0], "he had planned for this day and": [65535, 0], "had planned for this day and his": [65535, 0], "planned for this day and his sorrows": [65535, 0], "for this day and his sorrows multiplied": [65535, 0], "this day and his sorrows multiplied soon": [65535, 0], "day and his sorrows multiplied soon the": [65535, 0], "and his sorrows multiplied soon the free": [65535, 0], "his sorrows multiplied soon the free boys": [65535, 0], "sorrows multiplied soon the free boys would": [65535, 0], "multiplied soon the free boys would come": [65535, 0], "soon the free boys would come tripping": [65535, 0], "the free boys would come tripping along": [65535, 0], "free boys would come tripping along on": [65535, 0], "boys would come tripping along on all": [65535, 0], "would come tripping along on all sorts": [65535, 0], "come tripping along on all sorts of": [65535, 0], "tripping along on all sorts of delicious": [65535, 0], "along on all sorts of delicious expeditions": [65535, 0], "on all sorts of delicious expeditions and": [65535, 0], "all sorts of delicious expeditions and they": [65535, 0], "sorts of delicious expeditions and they would": [65535, 0], "of delicious expeditions and they would make": [65535, 0], "delicious expeditions and they would make a": [65535, 0], "expeditions and they would make a world": [65535, 0], "and they would make a world of": [65535, 0], "they would make a world of fun": [65535, 0], "would make a world of fun of": [65535, 0], "make a world of fun of him": [65535, 0], "a world of fun of him for": [65535, 0], "world of fun of him for having": [65535, 0], "of fun of him for having to": [65535, 0], "fun of him for having to work": [65535, 0], "of him for having to work the": [65535, 0], "him for having to work the very": [65535, 0], "for having to work the very thought": [65535, 0], "having to work the very thought of": [65535, 0], "to work the very thought of it": [65535, 0], "work the very thought of it burnt": [65535, 0], "the very thought of it burnt him": [65535, 0], "very thought of it burnt him like": [65535, 0], "thought of it burnt him like fire": [65535, 0], "of it burnt him like fire he": [65535, 0], "it burnt him like fire he got": [65535, 0], "burnt him like fire he got out": [65535, 0], "him like fire he got out his": [65535, 0], "like fire he got out his worldly": [65535, 0], "fire he got out his worldly wealth": [65535, 0], "he got out his worldly wealth and": [65535, 0], "got out his worldly wealth and examined": [65535, 0], "out his worldly wealth and examined it": [65535, 0], "his worldly wealth and examined it bits": [65535, 0], "worldly wealth and examined it bits of": [65535, 0], "wealth and examined it bits of toys": [65535, 0], "and examined it bits of toys marbles": [65535, 0], "examined it bits of toys marbles and": [65535, 0], "it bits of toys marbles and trash": [65535, 0], "bits of toys marbles and trash enough": [65535, 0], "of toys marbles and trash enough to": [65535, 0], "toys marbles and trash enough to buy": [65535, 0], "marbles and trash enough to buy an": [65535, 0], "and trash enough to buy an exchange": [65535, 0], "trash enough to buy an exchange of": [65535, 0], "enough to buy an exchange of work": [65535, 0], "to buy an exchange of work maybe": [65535, 0], "buy an exchange of work maybe but": [65535, 0], "an exchange of work maybe but not": [65535, 0], "exchange of work maybe but not half": [65535, 0], "of work maybe but not half enough": [65535, 0], "work maybe but not half enough to": [65535, 0], "maybe but not half enough to buy": [65535, 0], "but not half enough to buy so": [65535, 0], "not half enough to buy so much": [65535, 0], "half enough to buy so much as": [65535, 0], "enough to buy so much as half": [65535, 0], "to buy so much as half an": [65535, 0], "buy so much as half an hour": [65535, 0], "so much as half an hour of": [65535, 0], "much as half an hour of pure": [65535, 0], "as half an hour of pure freedom": [65535, 0], "half an hour of pure freedom so": [65535, 0], "an hour of pure freedom so he": [65535, 0], "hour of pure freedom so he returned": [65535, 0], "of pure freedom so he returned his": [65535, 0], "pure freedom so he returned his straitened": [65535, 0], "freedom so he returned his straitened means": [65535, 0], "so he returned his straitened means to": [65535, 0], "he returned his straitened means to his": [65535, 0], "returned his straitened means to his pocket": [65535, 0], "his straitened means to his pocket and": [65535, 0], "straitened means to his pocket and gave": [65535, 0], "means to his pocket and gave up": [65535, 0], "to his pocket and gave up the": [65535, 0], "his pocket and gave up the idea": [65535, 0], "pocket and gave up the idea of": [65535, 0], "and gave up the idea of trying": [65535, 0], "gave up the idea of trying to": [65535, 0], "up the idea of trying to buy": [65535, 0], "the idea of trying to buy the": [65535, 0], "idea of trying to buy the boys": [65535, 0], "of trying to buy the boys at": [65535, 0], "trying to buy the boys at this": [65535, 0], "to buy the boys at this dark": [65535, 0], "buy the boys at this dark and": [65535, 0], "the boys at this dark and hopeless": [65535, 0], "boys at this dark and hopeless moment": [65535, 0], "at this dark and hopeless moment an": [65535, 0], "this dark and hopeless moment an inspiration": [65535, 0], "dark and hopeless moment an inspiration burst": [65535, 0], "and hopeless moment an inspiration burst upon": [65535, 0], "hopeless moment an inspiration burst upon him": [65535, 0], "moment an inspiration burst upon him nothing": [65535, 0], "an inspiration burst upon him nothing less": [65535, 0], "inspiration burst upon him nothing less than": [65535, 0], "burst upon him nothing less than a": [65535, 0], "upon him nothing less than a great": [65535, 0], "him nothing less than a great magnificent": [65535, 0], "nothing less than a great magnificent inspiration": [65535, 0], "less than a great magnificent inspiration he": [65535, 0], "than a great magnificent inspiration he took": [65535, 0], "a great magnificent inspiration he took up": [65535, 0], "great magnificent inspiration he took up his": [65535, 0], "magnificent inspiration he took up his brush": [65535, 0], "inspiration he took up his brush and": [65535, 0], "he took up his brush and went": [65535, 0], "took up his brush and went tranquilly": [65535, 0], "up his brush and went tranquilly to": [65535, 0], "his brush and went tranquilly to work": [65535, 0], "brush and went tranquilly to work ben": [65535, 0], "and went tranquilly to work ben rogers": [65535, 0], "went tranquilly to work ben rogers hove": [65535, 0], "tranquilly to work ben rogers hove in": [65535, 0], "to work ben rogers hove in sight": [65535, 0], "work ben rogers hove in sight presently": [65535, 0], "ben rogers hove in sight presently the": [65535, 0], "rogers hove in sight presently the very": [65535, 0], "hove in sight presently the very boy": [65535, 0], "in sight presently the very boy of": [65535, 0], "sight presently the very boy of all": [65535, 0], "presently the very boy of all boys": [65535, 0], "the very boy of all boys whose": [65535, 0], "very boy of all boys whose ridicule": [65535, 0], "boy of all boys whose ridicule he": [65535, 0], "of all boys whose ridicule he had": [65535, 0], "all boys whose ridicule he had been": [65535, 0], "boys whose ridicule he had been dreading": [65535, 0], "whose ridicule he had been dreading ben's": [65535, 0], "ridicule he had been dreading ben's gait": [65535, 0], "he had been dreading ben's gait was": [65535, 0], "had been dreading ben's gait was the": [65535, 0], "been dreading ben's gait was the hop": [65535, 0], "dreading ben's gait was the hop skip": [65535, 0], "ben's gait was the hop skip and": [65535, 0], "gait was the hop skip and jump": [65535, 0], "was the hop skip and jump proof": [65535, 0], "the hop skip and jump proof enough": [65535, 0], "hop skip and jump proof enough that": [65535, 0], "skip and jump proof enough that his": [65535, 0], "and jump proof enough that his heart": [65535, 0], "jump proof enough that his heart was": [65535, 0], "proof enough that his heart was light": [65535, 0], "enough that his heart was light and": [65535, 0], "that his heart was light and his": [65535, 0], "his heart was light and his anticipations": [65535, 0], "heart was light and his anticipations high": [65535, 0], "was light and his anticipations high he": [65535, 0], "light and his anticipations high he was": [65535, 0], "and his anticipations high he was eating": [65535, 0], "his anticipations high he was eating an": [65535, 0], "anticipations high he was eating an apple": [65535, 0], "high he was eating an apple and": [65535, 0], "he was eating an apple and giving": [65535, 0], "was eating an apple and giving a": [65535, 0], "eating an apple and giving a long": [65535, 0], "an apple and giving a long melodious": [65535, 0], "apple and giving a long melodious whoop": [65535, 0], "and giving a long melodious whoop at": [65535, 0], "giving a long melodious whoop at intervals": [65535, 0], "a long melodious whoop at intervals followed": [65535, 0], "long melodious whoop at intervals followed by": [65535, 0], "melodious whoop at intervals followed by a": [65535, 0], "whoop at intervals followed by a deep": [65535, 0], "at intervals followed by a deep toned": [65535, 0], "intervals followed by a deep toned ding": [65535, 0], "followed by a deep toned ding dong": [65535, 0], "by a deep toned ding dong dong": [65535, 0], "a deep toned ding dong dong ding": [65535, 0], "deep toned ding dong dong ding dong": [65535, 0], "toned ding dong dong ding dong dong": [65535, 0], "ding dong dong ding dong dong for": [65535, 0], "dong dong ding dong dong for he": [65535, 0], "dong ding dong dong for he was": [65535, 0], "ding dong dong for he was personating": [65535, 0], "dong dong for he was personating a": [65535, 0], "dong for he was personating a steamboat": [65535, 0], "for he was personating a steamboat as": [65535, 0], "he was personating a steamboat as he": [65535, 0], "was personating a steamboat as he drew": [65535, 0], "personating a steamboat as he drew near": [65535, 0], "a steamboat as he drew near he": [65535, 0], "steamboat as he drew near he slackened": [65535, 0], "as he drew near he slackened speed": [65535, 0], "he drew near he slackened speed took": [65535, 0], "drew near he slackened speed took the": [65535, 0], "near he slackened speed took the middle": [65535, 0], "he slackened speed took the middle of": [65535, 0], "slackened speed took the middle of the": [65535, 0], "speed took the middle of the street": [65535, 0], "took the middle of the street leaned": [65535, 0], "the middle of the street leaned far": [65535, 0], "middle of the street leaned far over": [65535, 0], "of the street leaned far over to": [65535, 0], "the street leaned far over to starboard": [65535, 0], "street leaned far over to starboard and": [65535, 0], "leaned far over to starboard and rounded": [65535, 0], "far over to starboard and rounded to": [65535, 0], "over to starboard and rounded to ponderously": [65535, 0], "to starboard and rounded to ponderously and": [65535, 0], "starboard and rounded to ponderously and with": [65535, 0], "and rounded to ponderously and with laborious": [65535, 0], "rounded to ponderously and with laborious pomp": [65535, 0], "to ponderously and with laborious pomp and": [65535, 0], "ponderously and with laborious pomp and circumstance": [65535, 0], "and with laborious pomp and circumstance for": [65535, 0], "with laborious pomp and circumstance for he": [65535, 0], "laborious pomp and circumstance for he was": [65535, 0], "pomp and circumstance for he was personating": [65535, 0], "and circumstance for he was personating the": [65535, 0], "circumstance for he was personating the big": [65535, 0], "for he was personating the big missouri": [65535, 0], "he was personating the big missouri and": [65535, 0], "was personating the big missouri and considered": [65535, 0], "personating the big missouri and considered himself": [65535, 0], "the big missouri and considered himself to": [65535, 0], "big missouri and considered himself to be": [65535, 0], "missouri and considered himself to be drawing": [65535, 0], "and considered himself to be drawing nine": [65535, 0], "considered himself to be drawing nine feet": [65535, 0], "himself to be drawing nine feet of": [65535, 0], "to be drawing nine feet of water": [65535, 0], "be drawing nine feet of water he": [65535, 0], "drawing nine feet of water he was": [65535, 0], "nine feet of water he was boat": [65535, 0], "feet of water he was boat and": [65535, 0], "of water he was boat and captain": [65535, 0], "water he was boat and captain and": [65535, 0], "he was boat and captain and engine": [65535, 0], "was boat and captain and engine bells": [65535, 0], "boat and captain and engine bells combined": [65535, 0], "and captain and engine bells combined so": [65535, 0], "captain and engine bells combined so he": [65535, 0], "and engine bells combined so he had": [65535, 0], "engine bells combined so he had to": [65535, 0], "bells combined so he had to imagine": [65535, 0], "combined so he had to imagine himself": [65535, 0], "so he had to imagine himself standing": [65535, 0], "he had to imagine himself standing on": [65535, 0], "had to imagine himself standing on his": [65535, 0], "to imagine himself standing on his own": [65535, 0], "imagine himself standing on his own hurricane": [65535, 0], "himself standing on his own hurricane deck": [65535, 0], "standing on his own hurricane deck giving": [65535, 0], "on his own hurricane deck giving the": [65535, 0], "his own hurricane deck giving the orders": [65535, 0], "own hurricane deck giving the orders and": [65535, 0], "hurricane deck giving the orders and executing": [65535, 0], "deck giving the orders and executing them": [65535, 0], "giving the orders and executing them stop": [65535, 0], "the orders and executing them stop her": [65535, 0], "orders and executing them stop her sir": [65535, 0], "and executing them stop her sir ting": [65535, 0], "executing them stop her sir ting a": [65535, 0], "them stop her sir ting a ling": [65535, 0], "stop her sir ting a ling ling": [65535, 0], "her sir ting a ling ling the": [65535, 0], "sir ting a ling ling the headway": [65535, 0], "ting a ling ling the headway ran": [65535, 0], "a ling ling the headway ran almost": [65535, 0], "ling ling the headway ran almost out": [65535, 0], "ling the headway ran almost out and": [65535, 0], "the headway ran almost out and he": [65535, 0], "headway ran almost out and he drew": [65535, 0], "ran almost out and he drew up": [65535, 0], "almost out and he drew up slowly": [65535, 0], "out and he drew up slowly toward": [65535, 0], "and he drew up slowly toward the": [65535, 0], "he drew up slowly toward the sidewalk": [65535, 0], "drew up slowly toward the sidewalk ship": [65535, 0], "up slowly toward the sidewalk ship up": [65535, 0], "slowly toward the sidewalk ship up to": [65535, 0], "toward the sidewalk ship up to back": [65535, 0], "the sidewalk ship up to back ting": [65535, 0], "sidewalk ship up to back ting a": [65535, 0], "ship up to back ting a ling": [65535, 0], "up to back ting a ling ling": [65535, 0], "to back ting a ling ling his": [65535, 0], "back ting a ling ling his arms": [65535, 0], "ting a ling ling his arms straightened": [65535, 0], "a ling ling his arms straightened and": [65535, 0], "ling ling his arms straightened and stiffened": [65535, 0], "ling his arms straightened and stiffened down": [65535, 0], "his arms straightened and stiffened down his": [65535, 0], "arms straightened and stiffened down his sides": [65535, 0], "straightened and stiffened down his sides set": [65535, 0], "and stiffened down his sides set her": [65535, 0], "stiffened down his sides set her back": [65535, 0], "down his sides set her back on": [65535, 0], "his sides set her back on the": [65535, 0], "sides set her back on the stabboard": [65535, 0], "set her back on the stabboard ting": [65535, 0], "her back on the stabboard ting a": [65535, 0], "back on the stabboard ting a ling": [65535, 0], "on the stabboard ting a ling ling": [65535, 0], "the stabboard ting a ling ling chow": [65535, 0], "stabboard ting a ling ling chow ch": [65535, 0], "ting a ling ling chow ch chow": [65535, 0], "a ling ling chow ch chow wow": [65535, 0], "ling ling chow ch chow wow chow": [65535, 0], "ling chow ch chow wow chow his": [65535, 0], "chow ch chow wow chow his right": [65535, 0], "ch chow wow chow his right hand": [65535, 0], "chow wow chow his right hand meantime": [65535, 0], "wow chow his right hand meantime describing": [65535, 0], "chow his right hand meantime describing stately": [65535, 0], "his right hand meantime describing stately circles": [65535, 0], "right hand meantime describing stately circles for": [65535, 0], "hand meantime describing stately circles for it": [65535, 0], "meantime describing stately circles for it was": [65535, 0], "describing stately circles for it was representing": [65535, 0], "stately circles for it was representing a": [65535, 0], "circles for it was representing a forty": [65535, 0], "for it was representing a forty foot": [65535, 0], "it was representing a forty foot wheel": [65535, 0], "was representing a forty foot wheel let": [65535, 0], "representing a forty foot wheel let her": [65535, 0], "a forty foot wheel let her go": [65535, 0], "forty foot wheel let her go back": [65535, 0], "foot wheel let her go back on": [65535, 0], "wheel let her go back on the": [65535, 0], "let her go back on the labboard": [65535, 0], "her go back on the labboard ting": [65535, 0], "go back on the labboard ting a": [65535, 0], "back on the labboard ting a ling": [65535, 0], "on the labboard ting a ling ling": [65535, 0], "the labboard ting a ling ling chow": [65535, 0], "labboard ting a ling ling chow ch": [65535, 0], "a ling ling chow ch chow chow": [65535, 0], "ling ling chow ch chow chow the": [65535, 0], "ling chow ch chow chow the left": [65535, 0], "chow ch chow chow the left hand": [65535, 0], "ch chow chow the left hand began": [65535, 0], "chow chow the left hand began to": [65535, 0], "chow the left hand began to describe": [65535, 0], "the left hand began to describe circles": [65535, 0], "left hand began to describe circles stop": [65535, 0], "hand began to describe circles stop the": [65535, 0], "began to describe circles stop the stabboard": [65535, 0], "to describe circles stop the stabboard ting": [65535, 0], "describe circles stop the stabboard ting a": [65535, 0], "circles stop the stabboard ting a ling": [65535, 0], "stop the stabboard ting a ling ling": [65535, 0], "the stabboard ting a ling ling stop": [65535, 0], "stabboard ting a ling ling stop the": [65535, 0], "ting a ling ling stop the labboard": [65535, 0], "a ling ling stop the labboard come": [65535, 0], "ling ling stop the labboard come ahead": [65535, 0], "ling stop the labboard come ahead on": [65535, 0], "stop the labboard come ahead on the": [65535, 0], "the labboard come ahead on the stabboard": [65535, 0], "labboard come ahead on the stabboard stop": [65535, 0], "come ahead on the stabboard stop her": [65535, 0], "ahead on the stabboard stop her let": [65535, 0], "on the stabboard stop her let your": [65535, 0], "the stabboard stop her let your outside": [65535, 0], "stabboard stop her let your outside turn": [65535, 0], "stop her let your outside turn over": [65535, 0], "her let your outside turn over slow": [65535, 0], "let your outside turn over slow ting": [65535, 0], "your outside turn over slow ting a": [65535, 0], "outside turn over slow ting a ling": [65535, 0], "turn over slow ting a ling ling": [65535, 0], "over slow ting a ling ling chow": [65535, 0], "slow ting a ling ling chow ow": [65535, 0], "ting a ling ling chow ow ow": [65535, 0], "a ling ling chow ow ow get": [65535, 0], "ling ling chow ow ow get out": [65535, 0], "ling chow ow ow get out that": [65535, 0], "chow ow ow get out that head": [65535, 0], "ow ow get out that head line": [65535, 0], "ow get out that head line lively": [65535, 0], "get out that head line lively now": [65535, 0], "out that head line lively now come": [65535, 0], "that head line lively now come out": [65535, 0], "head line lively now come out with": [65535, 0], "line lively now come out with your": [65535, 0], "lively now come out with your spring": [65535, 0], "now come out with your spring line": [65535, 0], "come out with your spring line what're": [65535, 0], "out with your spring line what're you": [65535, 0], "with your spring line what're you about": [65535, 0], "your spring line what're you about there": [65535, 0], "spring line what're you about there take": [65535, 0], "line what're you about there take a": [65535, 0], "what're you about there take a turn": [65535, 0], "you about there take a turn round": [65535, 0], "about there take a turn round that": [65535, 0], "there take a turn round that stump": [65535, 0], "take a turn round that stump with": [65535, 0], "a turn round that stump with the": [65535, 0], "turn round that stump with the bight": [65535, 0], "round that stump with the bight of": [65535, 0], "that stump with the bight of it": [65535, 0], "stump with the bight of it stand": [65535, 0], "with the bight of it stand by": [65535, 0], "the bight of it stand by that": [65535, 0], "bight of it stand by that stage": [65535, 0], "of it stand by that stage now": [65535, 0], "it stand by that stage now let": [65535, 0], "stand by that stage now let her": [65535, 0], "by that stage now let her go": [65535, 0], "that stage now let her go done": [65535, 0], "stage now let her go done with": [65535, 0], "now let her go done with the": [65535, 0], "let her go done with the engines": [65535, 0], "her go done with the engines sir": [65535, 0], "go done with the engines sir ting": [65535, 0], "done with the engines sir ting a": [65535, 0], "with the engines sir ting a ling": [65535, 0], "the engines sir ting a ling ling": [65535, 0], "engines sir ting a ling ling sh't": [65535, 0], "sir ting a ling ling sh't s'h't": [65535, 0], "ting a ling ling sh't s'h't sh't": [65535, 0], "a ling ling sh't s'h't sh't trying": [65535, 0], "ling ling sh't s'h't sh't trying the": [65535, 0], "ling sh't s'h't sh't trying the gauge": [65535, 0], "sh't s'h't sh't trying the gauge cocks": [65535, 0], "s'h't sh't trying the gauge cocks tom": [65535, 0], "sh't trying the gauge cocks tom went": [65535, 0], "trying the gauge cocks tom went on": [65535, 0], "the gauge cocks tom went on whitewashing": [65535, 0], "gauge cocks tom went on whitewashing paid": [65535, 0], "cocks tom went on whitewashing paid no": [65535, 0], "tom went on whitewashing paid no attention": [65535, 0], "went on whitewashing paid no attention to": [65535, 0], "on whitewashing paid no attention to the": [65535, 0], "whitewashing paid no attention to the steamboat": [65535, 0], "paid no attention to the steamboat ben": [65535, 0], "no attention to the steamboat ben stared": [65535, 0], "attention to the steamboat ben stared a": [65535, 0], "to the steamboat ben stared a moment": [65535, 0], "the steamboat ben stared a moment and": [65535, 0], "steamboat ben stared a moment and then": [65535, 0], "ben stared a moment and then said": [65535, 0], "stared a moment and then said hi": [65535, 0], "a moment and then said hi yi": [65535, 0], "moment and then said hi yi you're": [65535, 0], "and then said hi yi you're up": [65535, 0], "then said hi yi you're up a": [65535, 0], "said hi yi you're up a stump": [65535, 0], "hi yi you're up a stump ain't": [65535, 0], "yi you're up a stump ain't you": [65535, 0], "you're up a stump ain't you no": [65535, 0], "up a stump ain't you no answer": [65535, 0], "a stump ain't you no answer tom": [65535, 0], "stump ain't you no answer tom surveyed": [65535, 0], "ain't you no answer tom surveyed his": [65535, 0], "you no answer tom surveyed his last": [65535, 0], "no answer tom surveyed his last touch": [65535, 0], "answer tom surveyed his last touch with": [65535, 0], "tom surveyed his last touch with the": [65535, 0], "surveyed his last touch with the eye": [65535, 0], "his last touch with the eye of": [65535, 0], "last touch with the eye of an": [65535, 0], "touch with the eye of an artist": [65535, 0], "with the eye of an artist then": [65535, 0], "the eye of an artist then he": [65535, 0], "eye of an artist then he gave": [65535, 0], "of an artist then he gave his": [65535, 0], "an artist then he gave his brush": [65535, 0], "artist then he gave his brush another": [65535, 0], "then he gave his brush another gentle": [65535, 0], "he gave his brush another gentle sweep": [65535, 0], "gave his brush another gentle sweep and": [65535, 0], "his brush another gentle sweep and surveyed": [65535, 0], "brush another gentle sweep and surveyed the": [65535, 0], "another gentle sweep and surveyed the result": [65535, 0], "gentle sweep and surveyed the result as": [65535, 0], "sweep and surveyed the result as before": [65535, 0], "and surveyed the result as before ben": [65535, 0], "surveyed the result as before ben ranged": [65535, 0], "the result as before ben ranged up": [65535, 0], "result as before ben ranged up alongside": [65535, 0], "as before ben ranged up alongside of": [65535, 0], "before ben ranged up alongside of him": [65535, 0], "ben ranged up alongside of him tom's": [65535, 0], "ranged up alongside of him tom's mouth": [65535, 0], "up alongside of him tom's mouth watered": [65535, 0], "alongside of him tom's mouth watered for": [65535, 0], "of him tom's mouth watered for the": [65535, 0], "him tom's mouth watered for the apple": [65535, 0], "tom's mouth watered for the apple but": [65535, 0], "mouth watered for the apple but he": [65535, 0], "watered for the apple but he stuck": [65535, 0], "for the apple but he stuck to": [65535, 0], "the apple but he stuck to his": [65535, 0], "apple but he stuck to his work": [65535, 0], "but he stuck to his work ben": [65535, 0], "he stuck to his work ben said": [65535, 0], "stuck to his work ben said hello": [65535, 0], "to his work ben said hello old": [65535, 0], "his work ben said hello old chap": [65535, 0], "work ben said hello old chap you": [65535, 0], "ben said hello old chap you got": [65535, 0], "said hello old chap you got to": [65535, 0], "hello old chap you got to work": [65535, 0], "old chap you got to work hey": [65535, 0], "chap you got to work hey tom": [65535, 0], "you got to work hey tom wheeled": [65535, 0], "got to work hey tom wheeled suddenly": [65535, 0], "to work hey tom wheeled suddenly and": [65535, 0], "work hey tom wheeled suddenly and said": [65535, 0], "hey tom wheeled suddenly and said why": [65535, 0], "tom wheeled suddenly and said why it's": [65535, 0], "wheeled suddenly and said why it's you": [65535, 0], "suddenly and said why it's you ben": [65535, 0], "and said why it's you ben i": [65535, 0], "said why it's you ben i warn't": [65535, 0], "why it's you ben i warn't noticing": [65535, 0], "it's you ben i warn't noticing say": [65535, 0], "you ben i warn't noticing say i'm": [65535, 0], "ben i warn't noticing say i'm going": [65535, 0], "i warn't noticing say i'm going in": [65535, 0], "warn't noticing say i'm going in a": [65535, 0], "noticing say i'm going in a swimming": [65535, 0], "say i'm going in a swimming i": [65535, 0], "i'm going in a swimming i am": [65535, 0], "going in a swimming i am don't": [65535, 0], "in a swimming i am don't you": [65535, 0], "a swimming i am don't you wish": [65535, 0], "swimming i am don't you wish you": [65535, 0], "i am don't you wish you could": [65535, 0], "am don't you wish you could but": [65535, 0], "don't you wish you could but of": [65535, 0], "you wish you could but of course": [65535, 0], "wish you could but of course you'd": [65535, 0], "you could but of course you'd druther": [65535, 0], "could but of course you'd druther work": [65535, 0], "but of course you'd druther work wouldn't": [65535, 0], "of course you'd druther work wouldn't you": [65535, 0], "course you'd druther work wouldn't you course": [65535, 0], "you'd druther work wouldn't you course you": [65535, 0], "druther work wouldn't you course you would": [65535, 0], "work wouldn't you course you would tom": [65535, 0], "wouldn't you course you would tom contemplated": [65535, 0], "you course you would tom contemplated the": [65535, 0], "course you would tom contemplated the boy": [65535, 0], "you would tom contemplated the boy a": [65535, 0], "would tom contemplated the boy a bit": [65535, 0], "tom contemplated the boy a bit and": [65535, 0], "contemplated the boy a bit and said": [65535, 0], "the boy a bit and said what": [65535, 0], "boy a bit and said what do": [65535, 0], "a bit and said what do you": [65535, 0], "bit and said what do you call": [65535, 0], "and said what do you call work": [65535, 0], "said what do you call work why": [65535, 0], "what do you call work why ain't": [65535, 0], "do you call work why ain't that": [65535, 0], "you call work why ain't that work": [65535, 0], "call work why ain't that work tom": [65535, 0], "work why ain't that work tom resumed": [65535, 0], "why ain't that work tom resumed his": [65535, 0], "ain't that work tom resumed his whitewashing": [65535, 0], "that work tom resumed his whitewashing and": [65535, 0], "work tom resumed his whitewashing and answered": [65535, 0], "tom resumed his whitewashing and answered carelessly": [65535, 0], "resumed his whitewashing and answered carelessly well": [65535, 0], "his whitewashing and answered carelessly well maybe": [65535, 0], "whitewashing and answered carelessly well maybe it": [65535, 0], "and answered carelessly well maybe it is": [65535, 0], "answered carelessly well maybe it is and": [65535, 0], "carelessly well maybe it is and maybe": [65535, 0], "well maybe it is and maybe it": [65535, 0], "maybe it is and maybe it ain't": [65535, 0], "it is and maybe it ain't all": [65535, 0], "is and maybe it ain't all i": [65535, 0], "and maybe it ain't all i know": [65535, 0], "maybe it ain't all i know is": [65535, 0], "it ain't all i know is it": [65535, 0], "ain't all i know is it suits": [65535, 0], "all i know is it suits tom": [65535, 0], "i know is it suits tom sawyer": [65535, 0], "know is it suits tom sawyer oh": [65535, 0], "is it suits tom sawyer oh come": [65535, 0], "it suits tom sawyer oh come now": [65535, 0], "suits tom sawyer oh come now you": [65535, 0], "tom sawyer oh come now you don't": [65535, 0], "sawyer oh come now you don't mean": [65535, 0], "oh come now you don't mean to": [65535, 0], "come now you don't mean to let": [65535, 0], "now you don't mean to let on": [65535, 0], "you don't mean to let on that": [65535, 0], "don't mean to let on that you": [65535, 0], "mean to let on that you like": [65535, 0], "to let on that you like it": [65535, 0], "let on that you like it the": [65535, 0], "on that you like it the brush": [65535, 0], "that you like it the brush continued": [65535, 0], "you like it the brush continued to": [65535, 0], "like it the brush continued to move": [65535, 0], "it the brush continued to move like": [65535, 0], "the brush continued to move like it": [65535, 0], "brush continued to move like it well": [65535, 0], "continued to move like it well i": [65535, 0], "to move like it well i don't": [65535, 0], "move like it well i don't see": [65535, 0], "like it well i don't see why": [65535, 0], "it well i don't see why i": [65535, 0], "well i don't see why i oughtn't": [65535, 0], "i don't see why i oughtn't to": [65535, 0], "don't see why i oughtn't to like": [65535, 0], "see why i oughtn't to like it": [65535, 0], "why i oughtn't to like it does": [65535, 0], "i oughtn't to like it does a": [65535, 0], "oughtn't to like it does a boy": [65535, 0], "to like it does a boy get": [65535, 0], "like it does a boy get a": [65535, 0], "it does a boy get a chance": [65535, 0], "does a boy get a chance to": [65535, 0], "a boy get a chance to whitewash": [65535, 0], "boy get a chance to whitewash a": [65535, 0], "get a chance to whitewash a fence": [65535, 0], "a chance to whitewash a fence every": [65535, 0], "chance to whitewash a fence every day": [65535, 0], "to whitewash a fence every day that": [65535, 0], "whitewash a fence every day that put": [65535, 0], "a fence every day that put the": [65535, 0], "fence every day that put the thing": [65535, 0], "every day that put the thing in": [65535, 0], "day that put the thing in a": [65535, 0], "that put the thing in a new": [65535, 0], "put the thing in a new light": [65535, 0], "the thing in a new light ben": [65535, 0], "thing in a new light ben stopped": [65535, 0], "in a new light ben stopped nibbling": [65535, 0], "a new light ben stopped nibbling his": [65535, 0], "new light ben stopped nibbling his apple": [65535, 0], "light ben stopped nibbling his apple tom": [65535, 0], "ben stopped nibbling his apple tom swept": [65535, 0], "stopped nibbling his apple tom swept his": [65535, 0], "nibbling his apple tom swept his brush": [65535, 0], "his apple tom swept his brush daintily": [65535, 0], "apple tom swept his brush daintily back": [65535, 0], "tom swept his brush daintily back and": [65535, 0], "swept his brush daintily back and forth": [65535, 0], "his brush daintily back and forth stepped": [65535, 0], "brush daintily back and forth stepped back": [65535, 0], "daintily back and forth stepped back to": [65535, 0], "back and forth stepped back to note": [65535, 0], "and forth stepped back to note the": [65535, 0], "forth stepped back to note the effect": [65535, 0], "stepped back to note the effect added": [65535, 0], "back to note the effect added a": [65535, 0], "to note the effect added a touch": [65535, 0], "note the effect added a touch here": [65535, 0], "the effect added a touch here and": [65535, 0], "effect added a touch here and there": [65535, 0], "added a touch here and there criticised": [65535, 0], "a touch here and there criticised the": [65535, 0], "touch here and there criticised the effect": [65535, 0], "here and there criticised the effect again": [65535, 0], "and there criticised the effect again ben": [65535, 0], "there criticised the effect again ben watching": [65535, 0], "criticised the effect again ben watching every": [65535, 0], "the effect again ben watching every move": [65535, 0], "effect again ben watching every move and": [65535, 0], "again ben watching every move and getting": [65535, 0], "ben watching every move and getting more": [65535, 0], "watching every move and getting more and": [65535, 0], "every move and getting more and more": [65535, 0], "move and getting more and more interested": [65535, 0], "and getting more and more interested more": [65535, 0], "getting more and more interested more and": [65535, 0], "more and more interested more and more": [65535, 0], "and more interested more and more absorbed": [65535, 0], "more interested more and more absorbed presently": [65535, 0], "interested more and more absorbed presently he": [65535, 0], "more and more absorbed presently he said": [65535, 0], "and more absorbed presently he said say": [65535, 0], "more absorbed presently he said say tom": [65535, 0], "absorbed presently he said say tom let": [65535, 0], "presently he said say tom let me": [65535, 0], "he said say tom let me whitewash": [65535, 0], "said say tom let me whitewash a": [65535, 0], "say tom let me whitewash a little": [65535, 0], "tom let me whitewash a little tom": [65535, 0], "let me whitewash a little tom considered": [65535, 0], "me whitewash a little tom considered was": [65535, 0], "whitewash a little tom considered was about": [65535, 0], "a little tom considered was about to": [65535, 0], "little tom considered was about to consent": [65535, 0], "tom considered was about to consent but": [65535, 0], "considered was about to consent but he": [65535, 0], "was about to consent but he altered": [65535, 0], "about to consent but he altered his": [65535, 0], "to consent but he altered his mind": [65535, 0], "consent but he altered his mind no": [65535, 0], "but he altered his mind no no": [65535, 0], "he altered his mind no no i": [65535, 0], "altered his mind no no i reckon": [65535, 0], "his mind no no i reckon it": [65535, 0], "mind no no i reckon it wouldn't": [65535, 0], "no no i reckon it wouldn't hardly": [65535, 0], "no i reckon it wouldn't hardly do": [65535, 0], "i reckon it wouldn't hardly do ben": [65535, 0], "reckon it wouldn't hardly do ben you": [65535, 0], "it wouldn't hardly do ben you see": [65535, 0], "wouldn't hardly do ben you see aunt": [65535, 0], "hardly do ben you see aunt polly's": [65535, 0], "do ben you see aunt polly's awful": [65535, 0], "ben you see aunt polly's awful particular": [65535, 0], "you see aunt polly's awful particular about": [65535, 0], "see aunt polly's awful particular about this": [65535, 0], "aunt polly's awful particular about this fence": [65535, 0], "polly's awful particular about this fence right": [65535, 0], "awful particular about this fence right here": [65535, 0], "particular about this fence right here on": [65535, 0], "about this fence right here on the": [65535, 0], "this fence right here on the street": [65535, 0], "fence right here on the street you": [65535, 0], "right here on the street you know": [65535, 0], "here on the street you know but": [65535, 0], "on the street you know but if": [65535, 0], "the street you know but if it": [65535, 0], "street you know but if it was": [65535, 0], "you know but if it was the": [65535, 0], "know but if it was the back": [65535, 0], "but if it was the back fence": [65535, 0], "if it was the back fence i": [65535, 0], "it was the back fence i wouldn't": [65535, 0], "was the back fence i wouldn't mind": [65535, 0], "the back fence i wouldn't mind and": [65535, 0], "back fence i wouldn't mind and she": [65535, 0], "fence i wouldn't mind and she wouldn't": [65535, 0], "i wouldn't mind and she wouldn't yes": [65535, 0], "wouldn't mind and she wouldn't yes she's": [65535, 0], "mind and she wouldn't yes she's awful": [65535, 0], "and she wouldn't yes she's awful particular": [65535, 0], "she wouldn't yes she's awful particular about": [65535, 0], "wouldn't yes she's awful particular about this": [65535, 0], "yes she's awful particular about this fence": [65535, 0], "she's awful particular about this fence it's": [65535, 0], "awful particular about this fence it's got": [65535, 0], "particular about this fence it's got to": [65535, 0], "about this fence it's got to be": [65535, 0], "this fence it's got to be done": [65535, 0], "fence it's got to be done very": [65535, 0], "it's got to be done very careful": [65535, 0], "got to be done very careful i": [65535, 0], "to be done very careful i reckon": [65535, 0], "be done very careful i reckon there": [65535, 0], "done very careful i reckon there ain't": [65535, 0], "very careful i reckon there ain't one": [65535, 0], "careful i reckon there ain't one boy": [65535, 0], "i reckon there ain't one boy in": [65535, 0], "reckon there ain't one boy in a": [65535, 0], "there ain't one boy in a thousand": [65535, 0], "ain't one boy in a thousand maybe": [65535, 0], "one boy in a thousand maybe two": [65535, 0], "boy in a thousand maybe two thousand": [65535, 0], "in a thousand maybe two thousand that": [65535, 0], "a thousand maybe two thousand that can": [65535, 0], "thousand maybe two thousand that can do": [65535, 0], "maybe two thousand that can do it": [65535, 0], "two thousand that can do it the": [65535, 0], "thousand that can do it the way": [65535, 0], "that can do it the way it's": [65535, 0], "can do it the way it's got": [65535, 0], "do it the way it's got to": [65535, 0], "it the way it's got to be": [65535, 0], "the way it's got to be done": [65535, 0], "way it's got to be done no": [65535, 0], "it's got to be done no is": [65535, 0], "got to be done no is that": [65535, 0], "to be done no is that so": [65535, 0], "be done no is that so oh": [65535, 0], "done no is that so oh come": [65535, 0], "no is that so oh come now": [65535, 0], "is that so oh come now lemme": [65535, 0], "that so oh come now lemme just": [65535, 0], "so oh come now lemme just try": [65535, 0], "oh come now lemme just try only": [65535, 0], "come now lemme just try only just": [65535, 0], "now lemme just try only just a": [65535, 0], "lemme just try only just a little": [65535, 0], "just try only just a little i'd": [65535, 0], "try only just a little i'd let": [65535, 0], "only just a little i'd let you": [65535, 0], "just a little i'd let you if": [65535, 0], "a little i'd let you if you": [65535, 0], "little i'd let you if you was": [65535, 0], "i'd let you if you was me": [65535, 0], "let you if you was me tom": [65535, 0], "you if you was me tom ben": [65535, 0], "if you was me tom ben i'd": [65535, 0], "you was me tom ben i'd like": [65535, 0], "was me tom ben i'd like to": [65535, 0], "me tom ben i'd like to honest": [65535, 0], "tom ben i'd like to honest injun": [65535, 0], "ben i'd like to honest injun but": [65535, 0], "i'd like to honest injun but aunt": [65535, 0], "like to honest injun but aunt polly": [65535, 0], "to honest injun but aunt polly well": [65535, 0], "honest injun but aunt polly well jim": [65535, 0], "injun but aunt polly well jim wanted": [65535, 0], "but aunt polly well jim wanted to": [65535, 0], "aunt polly well jim wanted to do": [65535, 0], "polly well jim wanted to do it": [65535, 0], "well jim wanted to do it but": [65535, 0], "jim wanted to do it but she": [65535, 0], "wanted to do it but she wouldn't": [65535, 0], "to do it but she wouldn't let": [65535, 0], "do it but she wouldn't let him": [65535, 0], "it but she wouldn't let him sid": [65535, 0], "but she wouldn't let him sid wanted": [65535, 0], "she wouldn't let him sid wanted to": [65535, 0], "wouldn't let him sid wanted to do": [65535, 0], "let him sid wanted to do it": [65535, 0], "him sid wanted to do it and": [65535, 0], "sid wanted to do it and she": [65535, 0], "wanted to do it and she wouldn't": [65535, 0], "to do it and she wouldn't let": [65535, 0], "do it and she wouldn't let sid": [65535, 0], "it and she wouldn't let sid now": [65535, 0], "and she wouldn't let sid now don't": [65535, 0], "she wouldn't let sid now don't you": [65535, 0], "wouldn't let sid now don't you see": [65535, 0], "let sid now don't you see how": [65535, 0], "sid now don't you see how i'm": [65535, 0], "now don't you see how i'm fixed": [65535, 0], "don't you see how i'm fixed if": [65535, 0], "you see how i'm fixed if you": [65535, 0], "see how i'm fixed if you was": [65535, 0], "how i'm fixed if you was to": [65535, 0], "i'm fixed if you was to tackle": [65535, 0], "fixed if you was to tackle this": [65535, 0], "if you was to tackle this fence": [65535, 0], "you was to tackle this fence and": [65535, 0], "was to tackle this fence and anything": [65535, 0], "to tackle this fence and anything was": [65535, 0], "tackle this fence and anything was to": [65535, 0], "this fence and anything was to happen": [65535, 0], "fence and anything was to happen to": [65535, 0], "and anything was to happen to it": [65535, 0], "anything was to happen to it oh": [65535, 0], "was to happen to it oh shucks": [65535, 0], "to happen to it oh shucks i'll": [65535, 0], "happen to it oh shucks i'll be": [65535, 0], "to it oh shucks i'll be just": [65535, 0], "it oh shucks i'll be just as": [65535, 0], "oh shucks i'll be just as careful": [65535, 0], "shucks i'll be just as careful now": [65535, 0], "i'll be just as careful now lemme": [65535, 0], "be just as careful now lemme try": [65535, 0], "just as careful now lemme try say": [65535, 0], "as careful now lemme try say i'll": [65535, 0], "careful now lemme try say i'll give": [65535, 0], "now lemme try say i'll give you": [65535, 0], "lemme try say i'll give you the": [65535, 0], "try say i'll give you the core": [65535, 0], "say i'll give you the core of": [65535, 0], "i'll give you the core of my": [65535, 0], "give you the core of my apple": [65535, 0], "you the core of my apple well": [65535, 0], "the core of my apple well here": [65535, 0], "core of my apple well here no": [65535, 0], "of my apple well here no ben": [65535, 0], "my apple well here no ben now": [65535, 0], "apple well here no ben now don't": [65535, 0], "well here no ben now don't i'm": [65535, 0], "here no ben now don't i'm afeard": [65535, 0], "no ben now don't i'm afeard i'll": [65535, 0], "ben now don't i'm afeard i'll give": [65535, 0], "now don't i'm afeard i'll give you": [65535, 0], "don't i'm afeard i'll give you all": [65535, 0], "i'm afeard i'll give you all of": [65535, 0], "afeard i'll give you all of it": [65535, 0], "i'll give you all of it tom": [65535, 0], "give you all of it tom gave": [65535, 0], "you all of it tom gave up": [65535, 0], "all of it tom gave up the": [65535, 0], "of it tom gave up the brush": [65535, 0], "it tom gave up the brush with": [65535, 0], "tom gave up the brush with reluctance": [65535, 0], "gave up the brush with reluctance in": [65535, 0], "up the brush with reluctance in his": [65535, 0], "the brush with reluctance in his face": [65535, 0], "brush with reluctance in his face but": [65535, 0], "with reluctance in his face but alacrity": [65535, 0], "reluctance in his face but alacrity in": [65535, 0], "in his face but alacrity in his": [65535, 0], "his face but alacrity in his heart": [65535, 0], "face but alacrity in his heart and": [65535, 0], "but alacrity in his heart and while": [65535, 0], "alacrity in his heart and while the": [65535, 0], "in his heart and while the late": [65535, 0], "his heart and while the late steamer": [65535, 0], "heart and while the late steamer big": [65535, 0], "and while the late steamer big missouri": [65535, 0], "while the late steamer big missouri worked": [65535, 0], "the late steamer big missouri worked and": [65535, 0], "late steamer big missouri worked and sweated": [65535, 0], "steamer big missouri worked and sweated in": [65535, 0], "big missouri worked and sweated in the": [65535, 0], "missouri worked and sweated in the sun": [65535, 0], "worked and sweated in the sun the": [65535, 0], "and sweated in the sun the retired": [65535, 0], "sweated in the sun the retired artist": [65535, 0], "in the sun the retired artist sat": [65535, 0], "the sun the retired artist sat on": [65535, 0], "sun the retired artist sat on a": [65535, 0], "the retired artist sat on a barrel": [65535, 0], "retired artist sat on a barrel in": [65535, 0], "artist sat on a barrel in the": [65535, 0], "sat on a barrel in the shade": [65535, 0], "on a barrel in the shade close": [65535, 0], "a barrel in the shade close by": [65535, 0], "barrel in the shade close by dangled": [65535, 0], "in the shade close by dangled his": [65535, 0], "the shade close by dangled his legs": [65535, 0], "shade close by dangled his legs munched": [65535, 0], "close by dangled his legs munched his": [65535, 0], "by dangled his legs munched his apple": [65535, 0], "dangled his legs munched his apple and": [65535, 0], "his legs munched his apple and planned": [65535, 0], "legs munched his apple and planned the": [65535, 0], "munched his apple and planned the slaughter": [65535, 0], "his apple and planned the slaughter of": [65535, 0], "apple and planned the slaughter of more": [65535, 0], "and planned the slaughter of more innocents": [65535, 0], "planned the slaughter of more innocents there": [65535, 0], "the slaughter of more innocents there was": [65535, 0], "slaughter of more innocents there was no": [65535, 0], "of more innocents there was no lack": [65535, 0], "more innocents there was no lack of": [65535, 0], "innocents there was no lack of material": [65535, 0], "there was no lack of material boys": [65535, 0], "was no lack of material boys happened": [65535, 0], "no lack of material boys happened along": [65535, 0], "lack of material boys happened along every": [65535, 0], "of material boys happened along every little": [65535, 0], "material boys happened along every little while": [65535, 0], "boys happened along every little while they": [65535, 0], "happened along every little while they came": [65535, 0], "along every little while they came to": [65535, 0], "every little while they came to jeer": [65535, 0], "little while they came to jeer but": [65535, 0], "while they came to jeer but remained": [65535, 0], "they came to jeer but remained to": [65535, 0], "came to jeer but remained to whitewash": [65535, 0], "to jeer but remained to whitewash by": [65535, 0], "jeer but remained to whitewash by the": [65535, 0], "but remained to whitewash by the time": [65535, 0], "remained to whitewash by the time ben": [65535, 0], "to whitewash by the time ben was": [65535, 0], "whitewash by the time ben was fagged": [65535, 0], "by the time ben was fagged out": [65535, 0], "the time ben was fagged out tom": [65535, 0], "time ben was fagged out tom had": [65535, 0], "ben was fagged out tom had traded": [65535, 0], "was fagged out tom had traded the": [65535, 0], "fagged out tom had traded the next": [65535, 0], "out tom had traded the next chance": [65535, 0], "tom had traded the next chance to": [65535, 0], "had traded the next chance to billy": [65535, 0], "traded the next chance to billy fisher": [65535, 0], "the next chance to billy fisher for": [65535, 0], "next chance to billy fisher for a": [65535, 0], "chance to billy fisher for a kite": [65535, 0], "to billy fisher for a kite in": [65535, 0], "billy fisher for a kite in good": [65535, 0], "fisher for a kite in good repair": [65535, 0], "for a kite in good repair and": [65535, 0], "a kite in good repair and when": [65535, 0], "kite in good repair and when he": [65535, 0], "in good repair and when he played": [65535, 0], "good repair and when he played out": [65535, 0], "repair and when he played out johnny": [65535, 0], "and when he played out johnny miller": [65535, 0], "when he played out johnny miller bought": [65535, 0], "he played out johnny miller bought in": [65535, 0], "played out johnny miller bought in for": [65535, 0], "out johnny miller bought in for a": [65535, 0], "johnny miller bought in for a dead": [65535, 0], "miller bought in for a dead rat": [65535, 0], "bought in for a dead rat and": [65535, 0], "in for a dead rat and a": [65535, 0], "for a dead rat and a string": [65535, 0], "a dead rat and a string to": [65535, 0], "dead rat and a string to swing": [65535, 0], "rat and a string to swing it": [65535, 0], "and a string to swing it with": [65535, 0], "a string to swing it with and": [65535, 0], "string to swing it with and so": [65535, 0], "to swing it with and so on": [65535, 0], "swing it with and so on and": [65535, 0], "it with and so on and so": [65535, 0], "with and so on and so on": [65535, 0], "and so on and so on hour": [65535, 0], "so on and so on hour after": [65535, 0], "on and so on hour after hour": [65535, 0], "and so on hour after hour and": [65535, 0], "so on hour after hour and when": [65535, 0], "on hour after hour and when the": [65535, 0], "hour after hour and when the middle": [65535, 0], "after hour and when the middle of": [65535, 0], "hour and when the middle of the": [65535, 0], "and when the middle of the afternoon": [65535, 0], "when the middle of the afternoon came": [65535, 0], "the middle of the afternoon came from": [65535, 0], "middle of the afternoon came from being": [65535, 0], "of the afternoon came from being a": [65535, 0], "the afternoon came from being a poor": [65535, 0], "afternoon came from being a poor poverty": [65535, 0], "came from being a poor poverty stricken": [65535, 0], "from being a poor poverty stricken boy": [65535, 0], "being a poor poverty stricken boy in": [65535, 0], "a poor poverty stricken boy in the": [65535, 0], "poor poverty stricken boy in the morning": [65535, 0], "poverty stricken boy in the morning tom": [65535, 0], "stricken boy in the morning tom was": [65535, 0], "boy in the morning tom was literally": [65535, 0], "in the morning tom was literally rolling": [65535, 0], "the morning tom was literally rolling in": [65535, 0], "morning tom was literally rolling in wealth": [65535, 0], "tom was literally rolling in wealth he": [65535, 0], "was literally rolling in wealth he had": [65535, 0], "literally rolling in wealth he had besides": [65535, 0], "rolling in wealth he had besides the": [65535, 0], "in wealth he had besides the things": [65535, 0], "wealth he had besides the things before": [65535, 0], "he had besides the things before mentioned": [65535, 0], "had besides the things before mentioned twelve": [65535, 0], "besides the things before mentioned twelve marbles": [65535, 0], "the things before mentioned twelve marbles part": [65535, 0], "things before mentioned twelve marbles part of": [65535, 0], "before mentioned twelve marbles part of a": [65535, 0], "mentioned twelve marbles part of a jews": [65535, 0], "twelve marbles part of a jews harp": [65535, 0], "marbles part of a jews harp a": [65535, 0], "part of a jews harp a piece": [65535, 0], "of a jews harp a piece of": [65535, 0], "a jews harp a piece of blue": [65535, 0], "jews harp a piece of blue bottle": [65535, 0], "harp a piece of blue bottle glass": [65535, 0], "a piece of blue bottle glass to": [65535, 0], "piece of blue bottle glass to look": [65535, 0], "of blue bottle glass to look through": [65535, 0], "blue bottle glass to look through a": [65535, 0], "bottle glass to look through a spool": [65535, 0], "glass to look through a spool cannon": [65535, 0], "to look through a spool cannon a": [65535, 0], "look through a spool cannon a key": [65535, 0], "through a spool cannon a key that": [65535, 0], "a spool cannon a key that wouldn't": [65535, 0], "spool cannon a key that wouldn't unlock": [65535, 0], "cannon a key that wouldn't unlock anything": [65535, 0], "a key that wouldn't unlock anything a": [65535, 0], "key that wouldn't unlock anything a fragment": [65535, 0], "that wouldn't unlock anything a fragment of": [65535, 0], "wouldn't unlock anything a fragment of chalk": [65535, 0], "unlock anything a fragment of chalk a": [65535, 0], "anything a fragment of chalk a glass": [65535, 0], "a fragment of chalk a glass stopper": [65535, 0], "fragment of chalk a glass stopper of": [65535, 0], "of chalk a glass stopper of a": [65535, 0], "chalk a glass stopper of a decanter": [65535, 0], "a glass stopper of a decanter a": [65535, 0], "glass stopper of a decanter a tin": [65535, 0], "stopper of a decanter a tin soldier": [65535, 0], "of a decanter a tin soldier a": [65535, 0], "a decanter a tin soldier a couple": [65535, 0], "decanter a tin soldier a couple of": [65535, 0], "a tin soldier a couple of tadpoles": [65535, 0], "tin soldier a couple of tadpoles six": [65535, 0], "soldier a couple of tadpoles six fire": [65535, 0], "a couple of tadpoles six fire crackers": [65535, 0], "couple of tadpoles six fire crackers a": [65535, 0], "of tadpoles six fire crackers a kitten": [65535, 0], "tadpoles six fire crackers a kitten with": [65535, 0], "six fire crackers a kitten with only": [65535, 0], "fire crackers a kitten with only one": [65535, 0], "crackers a kitten with only one eye": [65535, 0], "a kitten with only one eye a": [65535, 0], "kitten with only one eye a brass": [65535, 0], "with only one eye a brass doorknob": [65535, 0], "only one eye a brass doorknob a": [65535, 0], "one eye a brass doorknob a dog": [65535, 0], "eye a brass doorknob a dog collar": [65535, 0], "a brass doorknob a dog collar but": [65535, 0], "brass doorknob a dog collar but no": [65535, 0], "doorknob a dog collar but no dog": [65535, 0], "a dog collar but no dog the": [65535, 0], "dog collar but no dog the handle": [65535, 0], "collar but no dog the handle of": [65535, 0], "but no dog the handle of a": [65535, 0], "no dog the handle of a knife": [65535, 0], "dog the handle of a knife four": [65535, 0], "the handle of a knife four pieces": [65535, 0], "handle of a knife four pieces of": [65535, 0], "of a knife four pieces of orange": [65535, 0], "a knife four pieces of orange peel": [65535, 0], "knife four pieces of orange peel and": [65535, 0], "four pieces of orange peel and a": [65535, 0], "pieces of orange peel and a dilapidated": [65535, 0], "of orange peel and a dilapidated old": [65535, 0], "orange peel and a dilapidated old window": [65535, 0], "peel and a dilapidated old window sash": [65535, 0], "and a dilapidated old window sash he": [65535, 0], "a dilapidated old window sash he had": [65535, 0], "dilapidated old window sash he had had": [65535, 0], "old window sash he had had a": [65535, 0], "window sash he had had a nice": [65535, 0], "sash he had had a nice good": [65535, 0], "he had had a nice good idle": [65535, 0], "had had a nice good idle time": [65535, 0], "had a nice good idle time all": [65535, 0], "a nice good idle time all the": [65535, 0], "nice good idle time all the while": [65535, 0], "good idle time all the while plenty": [65535, 0], "idle time all the while plenty of": [65535, 0], "time all the while plenty of company": [65535, 0], "all the while plenty of company and": [65535, 0], "the while plenty of company and the": [65535, 0], "while plenty of company and the fence": [65535, 0], "plenty of company and the fence had": [65535, 0], "of company and the fence had three": [65535, 0], "company and the fence had three coats": [65535, 0], "and the fence had three coats of": [65535, 0], "the fence had three coats of whitewash": [65535, 0], "fence had three coats of whitewash on": [65535, 0], "had three coats of whitewash on it": [65535, 0], "three coats of whitewash on it if": [65535, 0], "coats of whitewash on it if he": [65535, 0], "of whitewash on it if he hadn't": [65535, 0], "whitewash on it if he hadn't run": [65535, 0], "on it if he hadn't run out": [65535, 0], "it if he hadn't run out of": [65535, 0], "if he hadn't run out of whitewash": [65535, 0], "he hadn't run out of whitewash he": [65535, 0], "hadn't run out of whitewash he would": [65535, 0], "run out of whitewash he would have": [65535, 0], "out of whitewash he would have bankrupted": [65535, 0], "of whitewash he would have bankrupted every": [65535, 0], "whitewash he would have bankrupted every boy": [65535, 0], "he would have bankrupted every boy in": [65535, 0], "would have bankrupted every boy in the": [65535, 0], "have bankrupted every boy in the village": [65535, 0], "bankrupted every boy in the village tom": [65535, 0], "every boy in the village tom said": [65535, 0], "boy in the village tom said to": [65535, 0], "in the village tom said to himself": [65535, 0], "the village tom said to himself that": [65535, 0], "village tom said to himself that it": [65535, 0], "tom said to himself that it was": [65535, 0], "said to himself that it was not": [65535, 0], "to himself that it was not such": [65535, 0], "himself that it was not such a": [65535, 0], "that it was not such a hollow": [65535, 0], "it was not such a hollow world": [65535, 0], "was not such a hollow world after": [65535, 0], "not such a hollow world after all": [65535, 0], "such a hollow world after all he": [65535, 0], "a hollow world after all he had": [65535, 0], "hollow world after all he had discovered": [65535, 0], "world after all he had discovered a": [65535, 0], "after all he had discovered a great": [65535, 0], "all he had discovered a great law": [65535, 0], "he had discovered a great law of": [65535, 0], "had discovered a great law of human": [65535, 0], "discovered a great law of human action": [65535, 0], "a great law of human action without": [65535, 0], "great law of human action without knowing": [65535, 0], "law of human action without knowing it": [65535, 0], "of human action without knowing it namely": [65535, 0], "human action without knowing it namely that": [65535, 0], "action without knowing it namely that in": [65535, 0], "without knowing it namely that in order": [65535, 0], "knowing it namely that in order to": [65535, 0], "it namely that in order to make": [65535, 0], "namely that in order to make a": [65535, 0], "that in order to make a man": [65535, 0], "in order to make a man or": [65535, 0], "order to make a man or a": [65535, 0], "to make a man or a boy": [65535, 0], "make a man or a boy covet": [65535, 0], "a man or a boy covet a": [65535, 0], "man or a boy covet a thing": [65535, 0], "or a boy covet a thing it": [65535, 0], "a boy covet a thing it is": [65535, 0], "boy covet a thing it is only": [65535, 0], "covet a thing it is only necessary": [65535, 0], "a thing it is only necessary to": [65535, 0], "thing it is only necessary to make": [65535, 0], "it is only necessary to make the": [65535, 0], "is only necessary to make the thing": [65535, 0], "only necessary to make the thing difficult": [65535, 0], "necessary to make the thing difficult to": [65535, 0], "to make the thing difficult to attain": [65535, 0], "make the thing difficult to attain if": [65535, 0], "the thing difficult to attain if he": [65535, 0], "thing difficult to attain if he had": [65535, 0], "difficult to attain if he had been": [65535, 0], "to attain if he had been a": [65535, 0], "attain if he had been a great": [65535, 0], "if he had been a great and": [65535, 0], "he had been a great and wise": [65535, 0], "had been a great and wise philosopher": [65535, 0], "been a great and wise philosopher like": [65535, 0], "a great and wise philosopher like the": [65535, 0], "great and wise philosopher like the writer": [65535, 0], "and wise philosopher like the writer of": [65535, 0], "wise philosopher like the writer of this": [65535, 0], "philosopher like the writer of this book": [65535, 0], "like the writer of this book he": [65535, 0], "the writer of this book he would": [65535, 0], "writer of this book he would now": [65535, 0], "of this book he would now have": [65535, 0], "this book he would now have comprehended": [65535, 0], "book he would now have comprehended that": [65535, 0], "he would now have comprehended that work": [65535, 0], "would now have comprehended that work consists": [65535, 0], "now have comprehended that work consists of": [65535, 0], "have comprehended that work consists of whatever": [65535, 0], "comprehended that work consists of whatever a": [65535, 0], "that work consists of whatever a body": [65535, 0], "work consists of whatever a body is": [65535, 0], "consists of whatever a body is obliged": [65535, 0], "of whatever a body is obliged to": [65535, 0], "whatever a body is obliged to do": [65535, 0], "a body is obliged to do and": [65535, 0], "body is obliged to do and that": [65535, 0], "is obliged to do and that play": [65535, 0], "obliged to do and that play consists": [65535, 0], "to do and that play consists of": [65535, 0], "do and that play consists of whatever": [65535, 0], "and that play consists of whatever a": [65535, 0], "that play consists of whatever a body": [65535, 0], "play consists of whatever a body is": [65535, 0], "consists of whatever a body is not": [65535, 0], "of whatever a body is not obliged": [65535, 0], "whatever a body is not obliged to": [65535, 0], "a body is not obliged to do": [65535, 0], "body is not obliged to do and": [65535, 0], "is not obliged to do and this": [65535, 0], "not obliged to do and this would": [65535, 0], "obliged to do and this would help": [65535, 0], "to do and this would help him": [65535, 0], "do and this would help him to": [65535, 0], "and this would help him to understand": [65535, 0], "this would help him to understand why": [65535, 0], "would help him to understand why constructing": [65535, 0], "help him to understand why constructing artificial": [65535, 0], "him to understand why constructing artificial flowers": [65535, 0], "to understand why constructing artificial flowers or": [65535, 0], "understand why constructing artificial flowers or performing": [65535, 0], "why constructing artificial flowers or performing on": [65535, 0], "constructing artificial flowers or performing on a": [65535, 0], "artificial flowers or performing on a tread": [65535, 0], "flowers or performing on a tread mill": [65535, 0], "or performing on a tread mill is": [65535, 0], "performing on a tread mill is work": [65535, 0], "on a tread mill is work while": [65535, 0], "a tread mill is work while rolling": [65535, 0], "tread mill is work while rolling ten": [65535, 0], "mill is work while rolling ten pins": [65535, 0], "is work while rolling ten pins or": [65535, 0], "work while rolling ten pins or climbing": [65535, 0], "while rolling ten pins or climbing mont": [65535, 0], "rolling ten pins or climbing mont blanc": [65535, 0], "ten pins or climbing mont blanc is": [65535, 0], "pins or climbing mont blanc is only": [65535, 0], "or climbing mont blanc is only amusement": [65535, 0], "climbing mont blanc is only amusement there": [65535, 0], "mont blanc is only amusement there are": [65535, 0], "blanc is only amusement there are wealthy": [65535, 0], "is only amusement there are wealthy gentlemen": [65535, 0], "only amusement there are wealthy gentlemen in": [65535, 0], "amusement there are wealthy gentlemen in england": [65535, 0], "there are wealthy gentlemen in england who": [65535, 0], "are wealthy gentlemen in england who drive": [65535, 0], "wealthy gentlemen in england who drive four": [65535, 0], "gentlemen in england who drive four horse": [65535, 0], "in england who drive four horse passenger": [65535, 0], "england who drive four horse passenger coaches": [65535, 0], "who drive four horse passenger coaches twenty": [65535, 0], "drive four horse passenger coaches twenty or": [65535, 0], "four horse passenger coaches twenty or thirty": [65535, 0], "horse passenger coaches twenty or thirty miles": [65535, 0], "passenger coaches twenty or thirty miles on": [65535, 0], "coaches twenty or thirty miles on a": [65535, 0], "twenty or thirty miles on a daily": [65535, 0], "or thirty miles on a daily line": [65535, 0], "thirty miles on a daily line in": [65535, 0], "miles on a daily line in the": [65535, 0], "on a daily line in the summer": [65535, 0], "a daily line in the summer because": [65535, 0], "daily line in the summer because the": [65535, 0], "line in the summer because the privilege": [65535, 0], "in the summer because the privilege costs": [65535, 0], "the summer because the privilege costs them": [65535, 0], "summer because the privilege costs them considerable": [65535, 0], "because the privilege costs them considerable money": [65535, 0], "the privilege costs them considerable money but": [65535, 0], "privilege costs them considerable money but if": [65535, 0], "costs them considerable money but if they": [65535, 0], "them considerable money but if they were": [65535, 0], "considerable money but if they were offered": [65535, 0], "money but if they were offered wages": [65535, 0], "but if they were offered wages for": [65535, 0], "if they were offered wages for the": [65535, 0], "they were offered wages for the service": [65535, 0], "were offered wages for the service that": [65535, 0], "offered wages for the service that would": [65535, 0], "wages for the service that would turn": [65535, 0], "for the service that would turn it": [65535, 0], "the service that would turn it into": [65535, 0], "service that would turn it into work": [65535, 0], "that would turn it into work and": [65535, 0], "would turn it into work and then": [65535, 0], "turn it into work and then they": [65535, 0], "it into work and then they would": [65535, 0], "into work and then they would resign": [65535, 0], "work and then they would resign the": [65535, 0], "and then they would resign the boy": [65535, 0], "then they would resign the boy mused": [65535, 0], "they would resign the boy mused awhile": [65535, 0], "would resign the boy mused awhile over": [65535, 0], "resign the boy mused awhile over the": [65535, 0], "the boy mused awhile over the substantial": [65535, 0], "boy mused awhile over the substantial change": [65535, 0], "mused awhile over the substantial change which": [65535, 0], "awhile over the substantial change which had": [65535, 0], "over the substantial change which had taken": [65535, 0], "the substantial change which had taken place": [65535, 0], "substantial change which had taken place in": [65535, 0], "change which had taken place in his": [65535, 0], "which had taken place in his worldly": [65535, 0], "had taken place in his worldly circumstances": [65535, 0], "taken place in his worldly circumstances and": [65535, 0], "place in his worldly circumstances and then": [65535, 0], "in his worldly circumstances and then wended": [65535, 0], "his worldly circumstances and then wended toward": [65535, 0], "worldly circumstances and then wended toward headquarters": [65535, 0], "circumstances and then wended toward headquarters to": [65535, 0], "and then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the summer": [65535, 0], "morning was come and all the summer world": [65535, 0], "was come and all the summer world was": [65535, 0], "come and all the summer world was bright": [65535, 0], "and all the summer world was bright and": [65535, 0], "all the summer world was bright and fresh": [65535, 0], "the summer world was bright and fresh and": [65535, 0], "summer world was bright and fresh and brimming": [65535, 0], "world was bright and fresh and brimming with": [65535, 0], "was bright and fresh and brimming with life": [65535, 0], "bright and fresh and brimming with life there": [65535, 0], "and fresh and brimming with life there was": [65535, 0], "fresh and brimming with life there was a": [65535, 0], "and brimming with life there was a song": [65535, 0], "brimming with life there was a song in": [65535, 0], "with life there was a song in every": [65535, 0], "life there was a song in every heart": [65535, 0], "there was a song in every heart and": [65535, 0], "was a song in every heart and if": [65535, 0], "a song in every heart and if the": [65535, 0], "song in every heart and if the heart": [65535, 0], "in every heart and if the heart was": [65535, 0], "every heart and if the heart was young": [65535, 0], "heart and if the heart was young the": [65535, 0], "and if the heart was young the music": [65535, 0], "if the heart was young the music issued": [65535, 0], "the heart was young the music issued at": [65535, 0], "heart was young the music issued at the": [65535, 0], "was young the music issued at the lips": [65535, 0], "young the music issued at the lips there": [65535, 0], "the music issued at the lips there was": [65535, 0], "music issued at the lips there was cheer": [65535, 0], "issued at the lips there was cheer in": [65535, 0], "at the lips there was cheer in every": [65535, 0], "the lips there was cheer in every face": [65535, 0], "lips there was cheer in every face and": [65535, 0], "there was cheer in every face and a": [65535, 0], "was cheer in every face and a spring": [65535, 0], "cheer in every face and a spring in": [65535, 0], "in every face and a spring in every": [65535, 0], "every face and a spring in every step": [65535, 0], "face and a spring in every step the": [65535, 0], "and a spring in every step the locust": [65535, 0], "a spring in every step the locust trees": [65535, 0], "spring in every step the locust trees were": [65535, 0], "in every step the locust trees were in": [65535, 0], "every step the locust trees were in bloom": [65535, 0], "step the locust trees were in bloom and": [65535, 0], "the locust trees were in bloom and the": [65535, 0], "locust trees were in bloom and the fragrance": [65535, 0], "trees were in bloom and the fragrance of": [65535, 0], "were in bloom and the fragrance of the": [65535, 0], "in bloom and the fragrance of the blossoms": [65535, 0], "bloom and the fragrance of the blossoms filled": [65535, 0], "and the fragrance of the blossoms filled the": [65535, 0], "the fragrance of the blossoms filled the air": [65535, 0], "fragrance of the blossoms filled the air cardiff": [65535, 0], "of the blossoms filled the air cardiff hill": [65535, 0], "the blossoms filled the air cardiff hill beyond": [65535, 0], "blossoms filled the air cardiff hill beyond the": [65535, 0], "filled the air cardiff hill beyond the village": [65535, 0], "the air cardiff hill beyond the village and": [65535, 0], "air cardiff hill beyond the village and above": [65535, 0], "cardiff hill beyond the village and above it": [65535, 0], "hill beyond the village and above it was": [65535, 0], "beyond the village and above it was green": [65535, 0], "the village and above it was green with": [65535, 0], "village and above it was green with vegetation": [65535, 0], "and above it was green with vegetation and": [65535, 0], "above it was green with vegetation and it": [65535, 0], "it was green with vegetation and it lay": [65535, 0], "was green with vegetation and it lay just": [65535, 0], "green with vegetation and it lay just far": [65535, 0], "with vegetation and it lay just far enough": [65535, 0], "vegetation and it lay just far enough away": [65535, 0], "and it lay just far enough away to": [65535, 0], "it lay just far enough away to seem": [65535, 0], "lay just far enough away to seem a": [65535, 0], "just far enough away to seem a delectable": [65535, 0], "far enough away to seem a delectable land": [65535, 0], "enough away to seem a delectable land dreamy": [65535, 0], "away to seem a delectable land dreamy reposeful": [65535, 0], "to seem a delectable land dreamy reposeful and": [65535, 0], "seem a delectable land dreamy reposeful and inviting": [65535, 0], "a delectable land dreamy reposeful and inviting tom": [65535, 0], "delectable land dreamy reposeful and inviting tom appeared": [65535, 0], "land dreamy reposeful and inviting tom appeared on": [65535, 0], "dreamy reposeful and inviting tom appeared on the": [65535, 0], "reposeful and inviting tom appeared on the sidewalk": [65535, 0], "and inviting tom appeared on the sidewalk with": [65535, 0], "inviting tom appeared on the sidewalk with a": [65535, 0], "tom appeared on the sidewalk with a bucket": [65535, 0], "appeared on the sidewalk with a bucket of": [65535, 0], "on the sidewalk with a bucket of whitewash": [65535, 0], "the sidewalk with a bucket of whitewash and": [65535, 0], "sidewalk with a bucket of whitewash and a": [65535, 0], "with a bucket of whitewash and a long": [65535, 0], "a bucket of whitewash and a long handled": [65535, 0], "bucket of whitewash and a long handled brush": [65535, 0], "of whitewash and a long handled brush he": [65535, 0], "whitewash and a long handled brush he surveyed": [65535, 0], "and a long handled brush he surveyed the": [65535, 0], "a long handled brush he surveyed the fence": [65535, 0], "long handled brush he surveyed the fence and": [65535, 0], "handled brush he surveyed the fence and all": [65535, 0], "brush he surveyed the fence and all gladness": [65535, 0], "he surveyed the fence and all gladness left": [65535, 0], "surveyed the fence and all gladness left him": [65535, 0], "the fence and all gladness left him and": [65535, 0], "fence and all gladness left him and a": [65535, 0], "and all gladness left him and a deep": [65535, 0], "all gladness left him and a deep melancholy": [65535, 0], "gladness left him and a deep melancholy settled": [65535, 0], "left him and a deep melancholy settled down": [65535, 0], "him and a deep melancholy settled down upon": [65535, 0], "and a deep melancholy settled down upon his": [65535, 0], "a deep melancholy settled down upon his spirit": [65535, 0], "deep melancholy settled down upon his spirit thirty": [65535, 0], "melancholy settled down upon his spirit thirty yards": [65535, 0], "settled down upon his spirit thirty yards of": [65535, 0], "down upon his spirit thirty yards of board": [65535, 0], "upon his spirit thirty yards of board fence": [65535, 0], "his spirit thirty yards of board fence nine": [65535, 0], "spirit thirty yards of board fence nine feet": [65535, 0], "thirty yards of board fence nine feet high": [65535, 0], "yards of board fence nine feet high life": [65535, 0], "of board fence nine feet high life to": [65535, 0], "board fence nine feet high life to him": [65535, 0], "fence nine feet high life to him seemed": [65535, 0], "nine feet high life to him seemed hollow": [65535, 0], "feet high life to him seemed hollow and": [65535, 0], "high life to him seemed hollow and existence": [65535, 0], "life to him seemed hollow and existence but": [65535, 0], "to him seemed hollow and existence but a": [65535, 0], "him seemed hollow and existence but a burden": [65535, 0], "seemed hollow and existence but a burden sighing": [65535, 0], "hollow and existence but a burden sighing he": [65535, 0], "and existence but a burden sighing he dipped": [65535, 0], "existence but a burden sighing he dipped his": [65535, 0], "but a burden sighing he dipped his brush": [65535, 0], "a burden sighing he dipped his brush and": [65535, 0], "burden sighing he dipped his brush and passed": [65535, 0], "sighing he dipped his brush and passed it": [65535, 0], "he dipped his brush and passed it along": [65535, 0], "dipped his brush and passed it along the": [65535, 0], "his brush and passed it along the topmost": [65535, 0], "brush and passed it along the topmost plank": [65535, 0], "and passed it along the topmost plank repeated": [65535, 0], "passed it along the topmost plank repeated the": [65535, 0], "it along the topmost plank repeated the operation": [65535, 0], "along the topmost plank repeated the operation did": [65535, 0], "the topmost plank repeated the operation did it": [65535, 0], "topmost plank repeated the operation did it again": [65535, 0], "plank repeated the operation did it again compared": [65535, 0], "repeated the operation did it again compared the": [65535, 0], "the operation did it again compared the insignificant": [65535, 0], "operation did it again compared the insignificant whitewashed": [65535, 0], "did it again compared the insignificant whitewashed streak": [65535, 0], "it again compared the insignificant whitewashed streak with": [65535, 0], "again compared the insignificant whitewashed streak with the": [65535, 0], "compared the insignificant whitewashed streak with the far": [65535, 0], "the insignificant whitewashed streak with the far reaching": [65535, 0], "insignificant whitewashed streak with the far reaching continent": [65535, 0], "whitewashed streak with the far reaching continent of": [65535, 0], "streak with the far reaching continent of unwhitewashed": [65535, 0], "with the far reaching continent of unwhitewashed fence": [65535, 0], "the far reaching continent of unwhitewashed fence and": [65535, 0], "far reaching continent of unwhitewashed fence and sat": [65535, 0], "reaching continent of unwhitewashed fence and sat down": [65535, 0], "continent of unwhitewashed fence and sat down on": [65535, 0], "of unwhitewashed fence and sat down on a": [65535, 0], "unwhitewashed fence and sat down on a tree": [65535, 0], "fence and sat down on a tree box": [65535, 0], "and sat down on a tree box discouraged": [65535, 0], "sat down on a tree box discouraged jim": [65535, 0], "down on a tree box discouraged jim came": [65535, 0], "on a tree box discouraged jim came skipping": [65535, 0], "a tree box discouraged jim came skipping out": [65535, 0], "tree box discouraged jim came skipping out at": [65535, 0], "box discouraged jim came skipping out at the": [65535, 0], "discouraged jim came skipping out at the gate": [65535, 0], "jim came skipping out at the gate with": [65535, 0], "came skipping out at the gate with a": [65535, 0], "skipping out at the gate with a tin": [65535, 0], "out at the gate with a tin pail": [65535, 0], "at the gate with a tin pail and": [65535, 0], "the gate with a tin pail and singing": [65535, 0], "gate with a tin pail and singing buffalo": [65535, 0], "with a tin pail and singing buffalo gals": [65535, 0], "a tin pail and singing buffalo gals bringing": [65535, 0], "tin pail and singing buffalo gals bringing water": [65535, 0], "pail and singing buffalo gals bringing water from": [65535, 0], "and singing buffalo gals bringing water from the": [65535, 0], "singing buffalo gals bringing water from the town": [65535, 0], "buffalo gals bringing water from the town pump": [65535, 0], "gals bringing water from the town pump had": [65535, 0], "bringing water from the town pump had always": [65535, 0], "water from the town pump had always been": [65535, 0], "from the town pump had always been hateful": [65535, 0], "the town pump had always been hateful work": [65535, 0], "town pump had always been hateful work in": [65535, 0], "pump had always been hateful work in tom's": [65535, 0], "had always been hateful work in tom's eyes": [65535, 0], "always been hateful work in tom's eyes before": [65535, 0], "been hateful work in tom's eyes before but": [65535, 0], "hateful work in tom's eyes before but now": [65535, 0], "work in tom's eyes before but now it": [65535, 0], "in tom's eyes before but now it did": [65535, 0], "tom's eyes before but now it did not": [65535, 0], "eyes before but now it did not strike": [65535, 0], "before but now it did not strike him": [65535, 0], "but now it did not strike him so": [65535, 0], "now it did not strike him so he": [65535, 0], "it did not strike him so he remembered": [65535, 0], "did not strike him so he remembered that": [65535, 0], "not strike him so he remembered that there": [65535, 0], "strike him so he remembered that there was": [65535, 0], "him so he remembered that there was company": [65535, 0], "so he remembered that there was company at": [65535, 0], "he remembered that there was company at the": [65535, 0], "remembered that there was company at the pump": [65535, 0], "that there was company at the pump white": [65535, 0], "there was company at the pump white mulatto": [65535, 0], "was company at the pump white mulatto and": [65535, 0], "company at the pump white mulatto and negro": [65535, 0], "at the pump white mulatto and negro boys": [65535, 0], "the pump white mulatto and negro boys and": [65535, 0], "pump white mulatto and negro boys and girls": [65535, 0], "white mulatto and negro boys and girls were": [65535, 0], "mulatto and negro boys and girls were always": [65535, 0], "and negro boys and girls were always there": [65535, 0], "negro boys and girls were always there waiting": [65535, 0], "boys and girls were always there waiting their": [65535, 0], "and girls were always there waiting their turns": [65535, 0], "girls were always there waiting their turns resting": [65535, 0], "were always there waiting their turns resting trading": [65535, 0], "always there waiting their turns resting trading playthings": [65535, 0], "there waiting their turns resting trading playthings quarrelling": [65535, 0], "waiting their turns resting trading playthings quarrelling fighting": [65535, 0], "their turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking and": [65535, 0], "resting trading playthings quarrelling fighting skylarking and he": [65535, 0], "trading playthings quarrelling fighting skylarking and he remembered": [65535, 0], "playthings quarrelling fighting skylarking and he remembered that": [65535, 0], "quarrelling fighting skylarking and he remembered that although": [65535, 0], "fighting skylarking and he remembered that although the": [65535, 0], "skylarking and he remembered that although the pump": [65535, 0], "and he remembered that although the pump was": [65535, 0], "he remembered that although the pump was only": [65535, 0], "remembered that although the pump was only a": [65535, 0], "that although the pump was only a hundred": [65535, 0], "although the pump was only a hundred and": [65535, 0], "the pump was only a hundred and fifty": [65535, 0], "pump was only a hundred and fifty yards": [65535, 0], "was only a hundred and fifty yards off": [65535, 0], "only a hundred and fifty yards off jim": [65535, 0], "a hundred and fifty yards off jim never": [65535, 0], "hundred and fifty yards off jim never got": [65535, 0], "and fifty yards off jim never got back": [65535, 0], "fifty yards off jim never got back with": [65535, 0], "yards off jim never got back with a": [65535, 0], "off jim never got back with a bucket": [65535, 0], "jim never got back with a bucket of": [65535, 0], "never got back with a bucket of water": [65535, 0], "got back with a bucket of water under": [65535, 0], "back with a bucket of water under an": [65535, 0], "with a bucket of water under an hour": [65535, 0], "a bucket of water under an hour and": [65535, 0], "bucket of water under an hour and even": [65535, 0], "of water under an hour and even then": [65535, 0], "water under an hour and even then somebody": [65535, 0], "under an hour and even then somebody generally": [65535, 0], "an hour and even then somebody generally had": [65535, 0], "hour and even then somebody generally had to": [65535, 0], "and even then somebody generally had to go": [65535, 0], "even then somebody generally had to go after": [65535, 0], "then somebody generally had to go after him": [65535, 0], "somebody generally had to go after him tom": [65535, 0], "generally had to go after him tom said": [65535, 0], "had to go after him tom said say": [65535, 0], "to go after him tom said say jim": [65535, 0], "go after him tom said say jim i'll": [65535, 0], "after him tom said say jim i'll fetch": [65535, 0], "him tom said say jim i'll fetch the": [65535, 0], "tom said say jim i'll fetch the water": [65535, 0], "said say jim i'll fetch the water if": [65535, 0], "say jim i'll fetch the water if you'll": [65535, 0], "jim i'll fetch the water if you'll whitewash": [65535, 0], "i'll fetch the water if you'll whitewash some": [65535, 0], "fetch the water if you'll whitewash some jim": [65535, 0], "the water if you'll whitewash some jim shook": [65535, 0], "water if you'll whitewash some jim shook his": [65535, 0], "if you'll whitewash some jim shook his head": [65535, 0], "you'll whitewash some jim shook his head and": [65535, 0], "whitewash some jim shook his head and said": [65535, 0], "some jim shook his head and said can't": [65535, 0], "jim shook his head and said can't mars": [65535, 0], "shook his head and said can't mars tom": [65535, 0], "his head and said can't mars tom ole": [65535, 0], "head and said can't mars tom ole missis": [65535, 0], "and said can't mars tom ole missis she": [65535, 0], "said can't mars tom ole missis she tole": [65535, 0], "can't mars tom ole missis she tole me": [65535, 0], "mars tom ole missis she tole me i": [65535, 0], "tom ole missis she tole me i got": [65535, 0], "ole missis she tole me i got to": [65535, 0], "missis she tole me i got to go": [65535, 0], "she tole me i got to go an'": [65535, 0], "tole me i got to go an' git": [65535, 0], "me i got to go an' git dis": [65535, 0], "i got to go an' git dis water": [65535, 0], "got to go an' git dis water an'": [65535, 0], "to go an' git dis water an' not": [65535, 0], "go an' git dis water an' not stop": [65535, 0], "an' git dis water an' not stop foolin'": [65535, 0], "git dis water an' not stop foolin' roun'": [65535, 0], "dis water an' not stop foolin' roun' wid": [65535, 0], "water an' not stop foolin' roun' wid anybody": [65535, 0], "an' not stop foolin' roun' wid anybody she": [65535, 0], "not stop foolin' roun' wid anybody she say": [65535, 0], "stop foolin' roun' wid anybody she say she": [65535, 0], "foolin' roun' wid anybody she say she spec'": [65535, 0], "roun' wid anybody she say she spec' mars": [65535, 0], "wid anybody she say she spec' mars tom": [65535, 0], "anybody she say she spec' mars tom gwine": [65535, 0], "she say she spec' mars tom gwine to": [65535, 0], "say she spec' mars tom gwine to ax": [65535, 0], "she spec' mars tom gwine to ax me": [65535, 0], "spec' mars tom gwine to ax me to": [65535, 0], "mars tom gwine to ax me to whitewash": [65535, 0], "tom gwine to ax me to whitewash an'": [65535, 0], "gwine to ax me to whitewash an' so": [65535, 0], "to ax me to whitewash an' so she": [65535, 0], "ax me to whitewash an' so she tole": [65535, 0], "me to whitewash an' so she tole me": [65535, 0], "to whitewash an' so she tole me go": [65535, 0], "whitewash an' so she tole me go 'long": [65535, 0], "an' so she tole me go 'long an'": [65535, 0], "so she tole me go 'long an' 'tend": [65535, 0], "she tole me go 'long an' 'tend to": [65535, 0], "tole me go 'long an' 'tend to my": [65535, 0], "me go 'long an' 'tend to my own": [65535, 0], "go 'long an' 'tend to my own business": [65535, 0], "'long an' 'tend to my own business she": [65535, 0], "an' 'tend to my own business she 'lowed": [65535, 0], "'tend to my own business she 'lowed she'd": [65535, 0], "to my own business she 'lowed she'd 'tend": [65535, 0], "my own business she 'lowed she'd 'tend to": [65535, 0], "own business she 'lowed she'd 'tend to de": [65535, 0], "business she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "she 'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh never": [65535, 0], "she'd 'tend to de whitewashin' oh never you": [65535, 0], "'tend to de whitewashin' oh never you mind": [65535, 0], "to de whitewashin' oh never you mind what": [65535, 0], "de whitewashin' oh never you mind what she": [65535, 0], "whitewashin' oh never you mind what she said": [65535, 0], "oh never you mind what she said jim": [65535, 0], "never you mind what she said jim that's": [65535, 0], "you mind what she said jim that's the": [65535, 0], "mind what she said jim that's the way": [65535, 0], "what she said jim that's the way she": [65535, 0], "she said jim that's the way she always": [65535, 0], "said jim that's the way she always talks": [65535, 0], "jim that's the way she always talks gimme": [65535, 0], "that's the way she always talks gimme the": [65535, 0], "the way she always talks gimme the bucket": [65535, 0], "way she always talks gimme the bucket i": [65535, 0], "she always talks gimme the bucket i won't": [65535, 0], "always talks gimme the bucket i won't be": [65535, 0], "talks gimme the bucket i won't be gone": [65535, 0], "gimme the bucket i won't be gone only": [65535, 0], "the bucket i won't be gone only a": [65535, 0], "bucket i won't be gone only a minute": [65535, 0], "i won't be gone only a minute she": [65535, 0], "won't be gone only a minute she won't": [65535, 0], "be gone only a minute she won't ever": [65535, 0], "gone only a minute she won't ever know": [65535, 0], "only a minute she won't ever know oh": [65535, 0], "a minute she won't ever know oh i": [65535, 0], "minute she won't ever know oh i dasn't": [65535, 0], "she won't ever know oh i dasn't mars": [65535, 0], "won't ever know oh i dasn't mars tom": [65535, 0], "ever know oh i dasn't mars tom ole": [65535, 0], "know oh i dasn't mars tom ole missis": [65535, 0], "oh i dasn't mars tom ole missis she'd": [65535, 0], "i dasn't mars tom ole missis she'd take": [65535, 0], "dasn't mars tom ole missis she'd take an'": [65535, 0], "mars tom ole missis she'd take an' tar": [65535, 0], "tom ole missis she'd take an' tar de": [65535, 0], "ole missis she'd take an' tar de head": [65535, 0], "missis she'd take an' tar de head off'n": [65535, 0], "she'd take an' tar de head off'n me": [65535, 0], "take an' tar de head off'n me 'deed": [65535, 0], "an' tar de head off'n me 'deed she": [65535, 0], "tar de head off'n me 'deed she would": [65535, 0], "de head off'n me 'deed she would she": [65535, 0], "head off'n me 'deed she would she she": [65535, 0], "off'n me 'deed she would she she never": [65535, 0], "me 'deed she would she she never licks": [65535, 0], "'deed she would she she never licks anybody": [65535, 0], "she would she she never licks anybody whacks": [65535, 0], "would she she never licks anybody whacks 'em": [65535, 0], "she she never licks anybody whacks 'em over": [65535, 0], "she never licks anybody whacks 'em over the": [65535, 0], "never licks anybody whacks 'em over the head": [65535, 0], "licks anybody whacks 'em over the head with": [65535, 0], "anybody whacks 'em over the head with her": [65535, 0], "whacks 'em over the head with her thimble": [65535, 0], "'em over the head with her thimble and": [65535, 0], "over the head with her thimble and who": [65535, 0], "the head with her thimble and who cares": [65535, 0], "head with her thimble and who cares for": [65535, 0], "with her thimble and who cares for that": [65535, 0], "her thimble and who cares for that i'd": [65535, 0], "thimble and who cares for that i'd like": [65535, 0], "and who cares for that i'd like to": [65535, 0], "who cares for that i'd like to know": [65535, 0], "cares for that i'd like to know she": [65535, 0], "for that i'd like to know she talks": [65535, 0], "that i'd like to know she talks awful": [65535, 0], "i'd like to know she talks awful but": [65535, 0], "like to know she talks awful but talk": [65535, 0], "to know she talks awful but talk don't": [65535, 0], "know she talks awful but talk don't hurt": [65535, 0], "she talks awful but talk don't hurt anyways": [65535, 0], "talks awful but talk don't hurt anyways it": [65535, 0], "awful but talk don't hurt anyways it don't": [65535, 0], "but talk don't hurt anyways it don't if": [65535, 0], "talk don't hurt anyways it don't if she": [65535, 0], "don't hurt anyways it don't if she don't": [65535, 0], "hurt anyways it don't if she don't cry": [65535, 0], "anyways it don't if she don't cry jim": [65535, 0], "it don't if she don't cry jim i'll": [65535, 0], "don't if she don't cry jim i'll give": [65535, 0], "if she don't cry jim i'll give you": [65535, 0], "she don't cry jim i'll give you a": [65535, 0], "don't cry jim i'll give you a marvel": [65535, 0], "cry jim i'll give you a marvel i'll": [65535, 0], "jim i'll give you a marvel i'll give": [65535, 0], "i'll give you a marvel i'll give you": [65535, 0], "give you a marvel i'll give you a": [65535, 0], "you a marvel i'll give you a white": [65535, 0], "a marvel i'll give you a white alley": [65535, 0], "marvel i'll give you a white alley jim": [65535, 0], "i'll give you a white alley jim began": [65535, 0], "give you a white alley jim began to": [65535, 0], "you a white alley jim began to waver": [65535, 0], "a white alley jim began to waver white": [65535, 0], "white alley jim began to waver white alley": [65535, 0], "alley jim began to waver white alley jim": [65535, 0], "jim began to waver white alley jim and": [65535, 0], "began to waver white alley jim and it's": [65535, 0], "to waver white alley jim and it's a": [65535, 0], "waver white alley jim and it's a bully": [65535, 0], "white alley jim and it's a bully taw": [65535, 0], "alley jim and it's a bully taw my": [65535, 0], "jim and it's a bully taw my dat's": [65535, 0], "and it's a bully taw my dat's a": [65535, 0], "it's a bully taw my dat's a mighty": [65535, 0], "a bully taw my dat's a mighty gay": [65535, 0], "bully taw my dat's a mighty gay marvel": [65535, 0], "taw my dat's a mighty gay marvel i": [65535, 0], "my dat's a mighty gay marvel i tell": [65535, 0], "dat's a mighty gay marvel i tell you": [65535, 0], "a mighty gay marvel i tell you but": [65535, 0], "mighty gay marvel i tell you but mars": [65535, 0], "gay marvel i tell you but mars tom": [65535, 0], "marvel i tell you but mars tom i's": [65535, 0], "i tell you but mars tom i's powerful": [65535, 0], "tell you but mars tom i's powerful 'fraid": [65535, 0], "you but mars tom i's powerful 'fraid ole": [65535, 0], "but mars tom i's powerful 'fraid ole missis": [65535, 0], "mars tom i's powerful 'fraid ole missis and": [65535, 0], "tom i's powerful 'fraid ole missis and besides": [65535, 0], "i's powerful 'fraid ole missis and besides if": [65535, 0], "powerful 'fraid ole missis and besides if you": [65535, 0], "'fraid ole missis and besides if you will": [65535, 0], "ole missis and besides if you will i'll": [65535, 0], "missis and besides if you will i'll show": [65535, 0], "and besides if you will i'll show you": [65535, 0], "besides if you will i'll show you my": [65535, 0], "if you will i'll show you my sore": [65535, 0], "you will i'll show you my sore toe": [65535, 0], "will i'll show you my sore toe jim": [65535, 0], "i'll show you my sore toe jim was": [65535, 0], "show you my sore toe jim was only": [65535, 0], "you my sore toe jim was only human": [65535, 0], "my sore toe jim was only human this": [65535, 0], "sore toe jim was only human this attraction": [65535, 0], "toe jim was only human this attraction was": [65535, 0], "jim was only human this attraction was too": [65535, 0], "was only human this attraction was too much": [65535, 0], "only human this attraction was too much for": [65535, 0], "human this attraction was too much for him": [65535, 0], "this attraction was too much for him he": [65535, 0], "attraction was too much for him he put": [65535, 0], "was too much for him he put down": [65535, 0], "too much for him he put down his": [65535, 0], "much for him he put down his pail": [65535, 0], "for him he put down his pail took": [65535, 0], "him he put down his pail took the": [65535, 0], "he put down his pail took the white": [65535, 0], "put down his pail took the white alley": [65535, 0], "down his pail took the white alley and": [65535, 0], "his pail took the white alley and bent": [65535, 0], "pail took the white alley and bent over": [65535, 0], "took the white alley and bent over the": [65535, 0], "the white alley and bent over the toe": [65535, 0], "white alley and bent over the toe with": [65535, 0], "alley and bent over the toe with absorbing": [65535, 0], "and bent over the toe with absorbing interest": [65535, 0], "bent over the toe with absorbing interest while": [65535, 0], "over the toe with absorbing interest while the": [65535, 0], "the toe with absorbing interest while the bandage": [65535, 0], "toe with absorbing interest while the bandage was": [65535, 0], "with absorbing interest while the bandage was being": [65535, 0], "absorbing interest while the bandage was being unwound": [65535, 0], "interest while the bandage was being unwound in": [65535, 0], "while the bandage was being unwound in another": [65535, 0], "the bandage was being unwound in another moment": [65535, 0], "bandage was being unwound in another moment he": [65535, 0], "was being unwound in another moment he was": [65535, 0], "being unwound in another moment he was flying": [65535, 0], "unwound in another moment he was flying down": [65535, 0], "in another moment he was flying down the": [65535, 0], "another moment he was flying down the street": [65535, 0], "moment he was flying down the street with": [65535, 0], "he was flying down the street with his": [65535, 0], "was flying down the street with his pail": [65535, 0], "flying down the street with his pail and": [65535, 0], "down the street with his pail and a": [65535, 0], "the street with his pail and a tingling": [65535, 0], "street with his pail and a tingling rear": [65535, 0], "with his pail and a tingling rear tom": [65535, 0], "his pail and a tingling rear tom was": [65535, 0], "pail and a tingling rear tom was whitewashing": [65535, 0], "and a tingling rear tom was whitewashing with": [65535, 0], "a tingling rear tom was whitewashing with vigor": [65535, 0], "tingling rear tom was whitewashing with vigor and": [65535, 0], "rear tom was whitewashing with vigor and aunt": [65535, 0], "tom was whitewashing with vigor and aunt polly": [65535, 0], "was whitewashing with vigor and aunt polly was": [65535, 0], "whitewashing with vigor and aunt polly was retiring": [65535, 0], "with vigor and aunt polly was retiring from": [65535, 0], "vigor and aunt polly was retiring from the": [65535, 0], "and aunt polly was retiring from the field": [65535, 0], "aunt polly was retiring from the field with": [65535, 0], "polly was retiring from the field with a": [65535, 0], "was retiring from the field with a slipper": [65535, 0], "retiring from the field with a slipper in": [65535, 0], "from the field with a slipper in her": [65535, 0], "the field with a slipper in her hand": [65535, 0], "field with a slipper in her hand and": [65535, 0], "with a slipper in her hand and triumph": [65535, 0], "a slipper in her hand and triumph in": [65535, 0], "slipper in her hand and triumph in her": [65535, 0], "in her hand and triumph in her eye": [65535, 0], "her hand and triumph in her eye but": [65535, 0], "hand and triumph in her eye but tom's": [65535, 0], "and triumph in her eye but tom's energy": [65535, 0], "triumph in her eye but tom's energy did": [65535, 0], "in her eye but tom's energy did not": [65535, 0], "her eye but tom's energy did not last": [65535, 0], "eye but tom's energy did not last he": [65535, 0], "but tom's energy did not last he began": [65535, 0], "tom's energy did not last he began to": [65535, 0], "energy did not last he began to think": [65535, 0], "did not last he began to think of": [65535, 0], "not last he began to think of the": [65535, 0], "last he began to think of the fun": [65535, 0], "he began to think of the fun he": [65535, 0], "began to think of the fun he had": [65535, 0], "to think of the fun he had planned": [65535, 0], "think of the fun he had planned for": [65535, 0], "of the fun he had planned for this": [65535, 0], "the fun he had planned for this day": [65535, 0], "fun he had planned for this day and": [65535, 0], "he had planned for this day and his": [65535, 0], "had planned for this day and his sorrows": [65535, 0], "planned for this day and his sorrows multiplied": [65535, 0], "for this day and his sorrows multiplied soon": [65535, 0], "this day and his sorrows multiplied soon the": [65535, 0], "day and his sorrows multiplied soon the free": [65535, 0], "and his sorrows multiplied soon the free boys": [65535, 0], "his sorrows multiplied soon the free boys would": [65535, 0], "sorrows multiplied soon the free boys would come": [65535, 0], "multiplied soon the free boys would come tripping": [65535, 0], "soon the free boys would come tripping along": [65535, 0], "the free boys would come tripping along on": [65535, 0], "free boys would come tripping along on all": [65535, 0], "boys would come tripping along on all sorts": [65535, 0], "would come tripping along on all sorts of": [65535, 0], "come tripping along on all sorts of delicious": [65535, 0], "tripping along on all sorts of delicious expeditions": [65535, 0], "along on all sorts of delicious expeditions and": [65535, 0], "on all sorts of delicious expeditions and they": [65535, 0], "all sorts of delicious expeditions and they would": [65535, 0], "sorts of delicious expeditions and they would make": [65535, 0], "of delicious expeditions and they would make a": [65535, 0], "delicious expeditions and they would make a world": [65535, 0], "expeditions and they would make a world of": [65535, 0], "and they would make a world of fun": [65535, 0], "they would make a world of fun of": [65535, 0], "would make a world of fun of him": [65535, 0], "make a world of fun of him for": [65535, 0], "a world of fun of him for having": [65535, 0], "world of fun of him for having to": [65535, 0], "of fun of him for having to work": [65535, 0], "fun of him for having to work the": [65535, 0], "of him for having to work the very": [65535, 0], "him for having to work the very thought": [65535, 0], "for having to work the very thought of": [65535, 0], "having to work the very thought of it": [65535, 0], "to work the very thought of it burnt": [65535, 0], "work the very thought of it burnt him": [65535, 0], "the very thought of it burnt him like": [65535, 0], "very thought of it burnt him like fire": [65535, 0], "thought of it burnt him like fire he": [65535, 0], "of it burnt him like fire he got": [65535, 0], "it burnt him like fire he got out": [65535, 0], "burnt him like fire he got out his": [65535, 0], "him like fire he got out his worldly": [65535, 0], "like fire he got out his worldly wealth": [65535, 0], "fire he got out his worldly wealth and": [65535, 0], "he got out his worldly wealth and examined": [65535, 0], "got out his worldly wealth and examined it": [65535, 0], "out his worldly wealth and examined it bits": [65535, 0], "his worldly wealth and examined it bits of": [65535, 0], "worldly wealth and examined it bits of toys": [65535, 0], "wealth and examined it bits of toys marbles": [65535, 0], "and examined it bits of toys marbles and": [65535, 0], "examined it bits of toys marbles and trash": [65535, 0], "it bits of toys marbles and trash enough": [65535, 0], "bits of toys marbles and trash enough to": [65535, 0], "of toys marbles and trash enough to buy": [65535, 0], "toys marbles and trash enough to buy an": [65535, 0], "marbles and trash enough to buy an exchange": [65535, 0], "and trash enough to buy an exchange of": [65535, 0], "trash enough to buy an exchange of work": [65535, 0], "enough to buy an exchange of work maybe": [65535, 0], "to buy an exchange of work maybe but": [65535, 0], "buy an exchange of work maybe but not": [65535, 0], "an exchange of work maybe but not half": [65535, 0], "exchange of work maybe but not half enough": [65535, 0], "of work maybe but not half enough to": [65535, 0], "work maybe but not half enough to buy": [65535, 0], "maybe but not half enough to buy so": [65535, 0], "but not half enough to buy so much": [65535, 0], "not half enough to buy so much as": [65535, 0], "half enough to buy so much as half": [65535, 0], "enough to buy so much as half an": [65535, 0], "to buy so much as half an hour": [65535, 0], "buy so much as half an hour of": [65535, 0], "so much as half an hour of pure": [65535, 0], "much as half an hour of pure freedom": [65535, 0], "as half an hour of pure freedom so": [65535, 0], "half an hour of pure freedom so he": [65535, 0], "an hour of pure freedom so he returned": [65535, 0], "hour of pure freedom so he returned his": [65535, 0], "of pure freedom so he returned his straitened": [65535, 0], "pure freedom so he returned his straitened means": [65535, 0], "freedom so he returned his straitened means to": [65535, 0], "so he returned his straitened means to his": [65535, 0], "he returned his straitened means to his pocket": [65535, 0], "returned his straitened means to his pocket and": [65535, 0], "his straitened means to his pocket and gave": [65535, 0], "straitened means to his pocket and gave up": [65535, 0], "means to his pocket and gave up the": [65535, 0], "to his pocket and gave up the idea": [65535, 0], "his pocket and gave up the idea of": [65535, 0], "pocket and gave up the idea of trying": [65535, 0], "and gave up the idea of trying to": [65535, 0], "gave up the idea of trying to buy": [65535, 0], "up the idea of trying to buy the": [65535, 0], "the idea of trying to buy the boys": [65535, 0], "idea of trying to buy the boys at": [65535, 0], "of trying to buy the boys at this": [65535, 0], "trying to buy the boys at this dark": [65535, 0], "to buy the boys at this dark and": [65535, 0], "buy the boys at this dark and hopeless": [65535, 0], "the boys at this dark and hopeless moment": [65535, 0], "boys at this dark and hopeless moment an": [65535, 0], "at this dark and hopeless moment an inspiration": [65535, 0], "this dark and hopeless moment an inspiration burst": [65535, 0], "dark and hopeless moment an inspiration burst upon": [65535, 0], "and hopeless moment an inspiration burst upon him": [65535, 0], "hopeless moment an inspiration burst upon him nothing": [65535, 0], "moment an inspiration burst upon him nothing less": [65535, 0], "an inspiration burst upon him nothing less than": [65535, 0], "inspiration burst upon him nothing less than a": [65535, 0], "burst upon him nothing less than a great": [65535, 0], "upon him nothing less than a great magnificent": [65535, 0], "him nothing less than a great magnificent inspiration": [65535, 0], "nothing less than a great magnificent inspiration he": [65535, 0], "less than a great magnificent inspiration he took": [65535, 0], "than a great magnificent inspiration he took up": [65535, 0], "a great magnificent inspiration he took up his": [65535, 0], "great magnificent inspiration he took up his brush": [65535, 0], "magnificent inspiration he took up his brush and": [65535, 0], "inspiration he took up his brush and went": [65535, 0], "he took up his brush and went tranquilly": [65535, 0], "took up his brush and went tranquilly to": [65535, 0], "up his brush and went tranquilly to work": [65535, 0], "his brush and went tranquilly to work ben": [65535, 0], "brush and went tranquilly to work ben rogers": [65535, 0], "and went tranquilly to work ben rogers hove": [65535, 0], "went tranquilly to work ben rogers hove in": [65535, 0], "tranquilly to work ben rogers hove in sight": [65535, 0], "to work ben rogers hove in sight presently": [65535, 0], "work ben rogers hove in sight presently the": [65535, 0], "ben rogers hove in sight presently the very": [65535, 0], "rogers hove in sight presently the very boy": [65535, 0], "hove in sight presently the very boy of": [65535, 0], "in sight presently the very boy of all": [65535, 0], "sight presently the very boy of all boys": [65535, 0], "presently the very boy of all boys whose": [65535, 0], "the very boy of all boys whose ridicule": [65535, 0], "very boy of all boys whose ridicule he": [65535, 0], "boy of all boys whose ridicule he had": [65535, 0], "of all boys whose ridicule he had been": [65535, 0], "all boys whose ridicule he had been dreading": [65535, 0], "boys whose ridicule he had been dreading ben's": [65535, 0], "whose ridicule he had been dreading ben's gait": [65535, 0], "ridicule he had been dreading ben's gait was": [65535, 0], "he had been dreading ben's gait was the": [65535, 0], "had been dreading ben's gait was the hop": [65535, 0], "been dreading ben's gait was the hop skip": [65535, 0], "dreading ben's gait was the hop skip and": [65535, 0], "ben's gait was the hop skip and jump": [65535, 0], "gait was the hop skip and jump proof": [65535, 0], "was the hop skip and jump proof enough": [65535, 0], "the hop skip and jump proof enough that": [65535, 0], "hop skip and jump proof enough that his": [65535, 0], "skip and jump proof enough that his heart": [65535, 0], "and jump proof enough that his heart was": [65535, 0], "jump proof enough that his heart was light": [65535, 0], "proof enough that his heart was light and": [65535, 0], "enough that his heart was light and his": [65535, 0], "that his heart was light and his anticipations": [65535, 0], "his heart was light and his anticipations high": [65535, 0], "heart was light and his anticipations high he": [65535, 0], "was light and his anticipations high he was": [65535, 0], "light and his anticipations high he was eating": [65535, 0], "and his anticipations high he was eating an": [65535, 0], "his anticipations high he was eating an apple": [65535, 0], "anticipations high he was eating an apple and": [65535, 0], "high he was eating an apple and giving": [65535, 0], "he was eating an apple and giving a": [65535, 0], "was eating an apple and giving a long": [65535, 0], "eating an apple and giving a long melodious": [65535, 0], "an apple and giving a long melodious whoop": [65535, 0], "apple and giving a long melodious whoop at": [65535, 0], "and giving a long melodious whoop at intervals": [65535, 0], "giving a long melodious whoop at intervals followed": [65535, 0], "a long melodious whoop at intervals followed by": [65535, 0], "long melodious whoop at intervals followed by a": [65535, 0], "melodious whoop at intervals followed by a deep": [65535, 0], "whoop at intervals followed by a deep toned": [65535, 0], "at intervals followed by a deep toned ding": [65535, 0], "intervals followed by a deep toned ding dong": [65535, 0], "followed by a deep toned ding dong dong": [65535, 0], "by a deep toned ding dong dong ding": [65535, 0], "a deep toned ding dong dong ding dong": [65535, 0], "deep toned ding dong dong ding dong dong": [65535, 0], "toned ding dong dong ding dong dong for": [65535, 0], "ding dong dong ding dong dong for he": [65535, 0], "dong dong ding dong dong for he was": [65535, 0], "dong ding dong dong for he was personating": [65535, 0], "ding dong dong for he was personating a": [65535, 0], "dong dong for he was personating a steamboat": [65535, 0], "dong for he was personating a steamboat as": [65535, 0], "for he was personating a steamboat as he": [65535, 0], "he was personating a steamboat as he drew": [65535, 0], "was personating a steamboat as he drew near": [65535, 0], "personating a steamboat as he drew near he": [65535, 0], "a steamboat as he drew near he slackened": [65535, 0], "steamboat as he drew near he slackened speed": [65535, 0], "as he drew near he slackened speed took": [65535, 0], "he drew near he slackened speed took the": [65535, 0], "drew near he slackened speed took the middle": [65535, 0], "near he slackened speed took the middle of": [65535, 0], "he slackened speed took the middle of the": [65535, 0], "slackened speed took the middle of the street": [65535, 0], "speed took the middle of the street leaned": [65535, 0], "took the middle of the street leaned far": [65535, 0], "the middle of the street leaned far over": [65535, 0], "middle of the street leaned far over to": [65535, 0], "of the street leaned far over to starboard": [65535, 0], "the street leaned far over to starboard and": [65535, 0], "street leaned far over to starboard and rounded": [65535, 0], "leaned far over to starboard and rounded to": [65535, 0], "far over to starboard and rounded to ponderously": [65535, 0], "over to starboard and rounded to ponderously and": [65535, 0], "to starboard and rounded to ponderously and with": [65535, 0], "starboard and rounded to ponderously and with laborious": [65535, 0], "and rounded to ponderously and with laborious pomp": [65535, 0], "rounded to ponderously and with laborious pomp and": [65535, 0], "to ponderously and with laborious pomp and circumstance": [65535, 0], "ponderously and with laborious pomp and circumstance for": [65535, 0], "and with laborious pomp and circumstance for he": [65535, 0], "with laborious pomp and circumstance for he was": [65535, 0], "laborious pomp and circumstance for he was personating": [65535, 0], "pomp and circumstance for he was personating the": [65535, 0], "and circumstance for he was personating the big": [65535, 0], "circumstance for he was personating the big missouri": [65535, 0], "for he was personating the big missouri and": [65535, 0], "he was personating the big missouri and considered": [65535, 0], "was personating the big missouri and considered himself": [65535, 0], "personating the big missouri and considered himself to": [65535, 0], "the big missouri and considered himself to be": [65535, 0], "big missouri and considered himself to be drawing": [65535, 0], "missouri and considered himself to be drawing nine": [65535, 0], "and considered himself to be drawing nine feet": [65535, 0], "considered himself to be drawing nine feet of": [65535, 0], "himself to be drawing nine feet of water": [65535, 0], "to be drawing nine feet of water he": [65535, 0], "be drawing nine feet of water he was": [65535, 0], "drawing nine feet of water he was boat": [65535, 0], "nine feet of water he was boat and": [65535, 0], "feet of water he was boat and captain": [65535, 0], "of water he was boat and captain and": [65535, 0], "water he was boat and captain and engine": [65535, 0], "he was boat and captain and engine bells": [65535, 0], "was boat and captain and engine bells combined": [65535, 0], "boat and captain and engine bells combined so": [65535, 0], "and captain and engine bells combined so he": [65535, 0], "captain and engine bells combined so he had": [65535, 0], "and engine bells combined so he had to": [65535, 0], "engine bells combined so he had to imagine": [65535, 0], "bells combined so he had to imagine himself": [65535, 0], "combined so he had to imagine himself standing": [65535, 0], "so he had to imagine himself standing on": [65535, 0], "he had to imagine himself standing on his": [65535, 0], "had to imagine himself standing on his own": [65535, 0], "to imagine himself standing on his own hurricane": [65535, 0], "imagine himself standing on his own hurricane deck": [65535, 0], "himself standing on his own hurricane deck giving": [65535, 0], "standing on his own hurricane deck giving the": [65535, 0], "on his own hurricane deck giving the orders": [65535, 0], "his own hurricane deck giving the orders and": [65535, 0], "own hurricane deck giving the orders and executing": [65535, 0], "hurricane deck giving the orders and executing them": [65535, 0], "deck giving the orders and executing them stop": [65535, 0], "giving the orders and executing them stop her": [65535, 0], "the orders and executing them stop her sir": [65535, 0], "orders and executing them stop her sir ting": [65535, 0], "and executing them stop her sir ting a": [65535, 0], "executing them stop her sir ting a ling": [65535, 0], "them stop her sir ting a ling ling": [65535, 0], "stop her sir ting a ling ling the": [65535, 0], "her sir ting a ling ling the headway": [65535, 0], "sir ting a ling ling the headway ran": [65535, 0], "ting a ling ling the headway ran almost": [65535, 0], "a ling ling the headway ran almost out": [65535, 0], "ling ling the headway ran almost out and": [65535, 0], "ling the headway ran almost out and he": [65535, 0], "the headway ran almost out and he drew": [65535, 0], "headway ran almost out and he drew up": [65535, 0], "ran almost out and he drew up slowly": [65535, 0], "almost out and he drew up slowly toward": [65535, 0], "out and he drew up slowly toward the": [65535, 0], "and he drew up slowly toward the sidewalk": [65535, 0], "he drew up slowly toward the sidewalk ship": [65535, 0], "drew up slowly toward the sidewalk ship up": [65535, 0], "up slowly toward the sidewalk ship up to": [65535, 0], "slowly toward the sidewalk ship up to back": [65535, 0], "toward the sidewalk ship up to back ting": [65535, 0], "the sidewalk ship up to back ting a": [65535, 0], "sidewalk ship up to back ting a ling": [65535, 0], "ship up to back ting a ling ling": [65535, 0], "up to back ting a ling ling his": [65535, 0], "to back ting a ling ling his arms": [65535, 0], "back ting a ling ling his arms straightened": [65535, 0], "ting a ling ling his arms straightened and": [65535, 0], "a ling ling his arms straightened and stiffened": [65535, 0], "ling ling his arms straightened and stiffened down": [65535, 0], "ling his arms straightened and stiffened down his": [65535, 0], "his arms straightened and stiffened down his sides": [65535, 0], "arms straightened and stiffened down his sides set": [65535, 0], "straightened and stiffened down his sides set her": [65535, 0], "and stiffened down his sides set her back": [65535, 0], "stiffened down his sides set her back on": [65535, 0], "down his sides set her back on the": [65535, 0], "his sides set her back on the stabboard": [65535, 0], "sides set her back on the stabboard ting": [65535, 0], "set her back on the stabboard ting a": [65535, 0], "her back on the stabboard ting a ling": [65535, 0], "back on the stabboard ting a ling ling": [65535, 0], "on the stabboard ting a ling ling chow": [65535, 0], "the stabboard ting a ling ling chow ch": [65535, 0], "stabboard ting a ling ling chow ch chow": [65535, 0], "ting a ling ling chow ch chow wow": [65535, 0], "a ling ling chow ch chow wow chow": [65535, 0], "ling ling chow ch chow wow chow his": [65535, 0], "ling chow ch chow wow chow his right": [65535, 0], "chow ch chow wow chow his right hand": [65535, 0], "ch chow wow chow his right hand meantime": [65535, 0], "chow wow chow his right hand meantime describing": [65535, 0], "wow chow his right hand meantime describing stately": [65535, 0], "chow his right hand meantime describing stately circles": [65535, 0], "his right hand meantime describing stately circles for": [65535, 0], "right hand meantime describing stately circles for it": [65535, 0], "hand meantime describing stately circles for it was": [65535, 0], "meantime describing stately circles for it was representing": [65535, 0], "describing stately circles for it was representing a": [65535, 0], "stately circles for it was representing a forty": [65535, 0], "circles for it was representing a forty foot": [65535, 0], "for it was representing a forty foot wheel": [65535, 0], "it was representing a forty foot wheel let": [65535, 0], "was representing a forty foot wheel let her": [65535, 0], "representing a forty foot wheel let her go": [65535, 0], "a forty foot wheel let her go back": [65535, 0], "forty foot wheel let her go back on": [65535, 0], "foot wheel let her go back on the": [65535, 0], "wheel let her go back on the labboard": [65535, 0], "let her go back on the labboard ting": [65535, 0], "her go back on the labboard ting a": [65535, 0], "go back on the labboard ting a ling": [65535, 0], "back on the labboard ting a ling ling": [65535, 0], "on the labboard ting a ling ling chow": [65535, 0], "the labboard ting a ling ling chow ch": [65535, 0], "labboard ting a ling ling chow ch chow": [65535, 0], "ting a ling ling chow ch chow chow": [65535, 0], "a ling ling chow ch chow chow the": [65535, 0], "ling ling chow ch chow chow the left": [65535, 0], "ling chow ch chow chow the left hand": [65535, 0], "chow ch chow chow the left hand began": [65535, 0], "ch chow chow the left hand began to": [65535, 0], "chow chow the left hand began to describe": [65535, 0], "chow the left hand began to describe circles": [65535, 0], "the left hand began to describe circles stop": [65535, 0], "left hand began to describe circles stop the": [65535, 0], "hand began to describe circles stop the stabboard": [65535, 0], "began to describe circles stop the stabboard ting": [65535, 0], "to describe circles stop the stabboard ting a": [65535, 0], "describe circles stop the stabboard ting a ling": [65535, 0], "circles stop the stabboard ting a ling ling": [65535, 0], "stop the stabboard ting a ling ling stop": [65535, 0], "the stabboard ting a ling ling stop the": [65535, 0], "stabboard ting a ling ling stop the labboard": [65535, 0], "ting a ling ling stop the labboard come": [65535, 0], "a ling ling stop the labboard come ahead": [65535, 0], "ling ling stop the labboard come ahead on": [65535, 0], "ling stop the labboard come ahead on the": [65535, 0], "stop the labboard come ahead on the stabboard": [65535, 0], "the labboard come ahead on the stabboard stop": [65535, 0], "labboard come ahead on the stabboard stop her": [65535, 0], "come ahead on the stabboard stop her let": [65535, 0], "ahead on the stabboard stop her let your": [65535, 0], "on the stabboard stop her let your outside": [65535, 0], "the stabboard stop her let your outside turn": [65535, 0], "stabboard stop her let your outside turn over": [65535, 0], "stop her let your outside turn over slow": [65535, 0], "her let your outside turn over slow ting": [65535, 0], "let your outside turn over slow ting a": [65535, 0], "your outside turn over slow ting a ling": [65535, 0], "outside turn over slow ting a ling ling": [65535, 0], "turn over slow ting a ling ling chow": [65535, 0], "over slow ting a ling ling chow ow": [65535, 0], "slow ting a ling ling chow ow ow": [65535, 0], "ting a ling ling chow ow ow get": [65535, 0], "a ling ling chow ow ow get out": [65535, 0], "ling ling chow ow ow get out that": [65535, 0], "ling chow ow ow get out that head": [65535, 0], "chow ow ow get out that head line": [65535, 0], "ow ow get out that head line lively": [65535, 0], "ow get out that head line lively now": [65535, 0], "get out that head line lively now come": [65535, 0], "out that head line lively now come out": [65535, 0], "that head line lively now come out with": [65535, 0], "head line lively now come out with your": [65535, 0], "line lively now come out with your spring": [65535, 0], "lively now come out with your spring line": [65535, 0], "now come out with your spring line what're": [65535, 0], "come out with your spring line what're you": [65535, 0], "out with your spring line what're you about": [65535, 0], "with your spring line what're you about there": [65535, 0], "your spring line what're you about there take": [65535, 0], "spring line what're you about there take a": [65535, 0], "line what're you about there take a turn": [65535, 0], "what're you about there take a turn round": [65535, 0], "you about there take a turn round that": [65535, 0], "about there take a turn round that stump": [65535, 0], "there take a turn round that stump with": [65535, 0], "take a turn round that stump with the": [65535, 0], "a turn round that stump with the bight": [65535, 0], "turn round that stump with the bight of": [65535, 0], "round that stump with the bight of it": [65535, 0], "that stump with the bight of it stand": [65535, 0], "stump with the bight of it stand by": [65535, 0], "with the bight of it stand by that": [65535, 0], "the bight of it stand by that stage": [65535, 0], "bight of it stand by that stage now": [65535, 0], "of it stand by that stage now let": [65535, 0], "it stand by that stage now let her": [65535, 0], "stand by that stage now let her go": [65535, 0], "by that stage now let her go done": [65535, 0], "that stage now let her go done with": [65535, 0], "stage now let her go done with the": [65535, 0], "now let her go done with the engines": [65535, 0], "let her go done with the engines sir": [65535, 0], "her go done with the engines sir ting": [65535, 0], "go done with the engines sir ting a": [65535, 0], "done with the engines sir ting a ling": [65535, 0], "with the engines sir ting a ling ling": [65535, 0], "the engines sir ting a ling ling sh't": [65535, 0], "engines sir ting a ling ling sh't s'h't": [65535, 0], "sir ting a ling ling sh't s'h't sh't": [65535, 0], "ting a ling ling sh't s'h't sh't trying": [65535, 0], "a ling ling sh't s'h't sh't trying the": [65535, 0], "ling ling sh't s'h't sh't trying the gauge": [65535, 0], "ling sh't s'h't sh't trying the gauge cocks": [65535, 0], "sh't s'h't sh't trying the gauge cocks tom": [65535, 0], "s'h't sh't trying the gauge cocks tom went": [65535, 0], "sh't trying the gauge cocks tom went on": [65535, 0], "trying the gauge cocks tom went on whitewashing": [65535, 0], "the gauge cocks tom went on whitewashing paid": [65535, 0], "gauge cocks tom went on whitewashing paid no": [65535, 0], "cocks tom went on whitewashing paid no attention": [65535, 0], "tom went on whitewashing paid no attention to": [65535, 0], "went on whitewashing paid no attention to the": [65535, 0], "on whitewashing paid no attention to the steamboat": [65535, 0], "whitewashing paid no attention to the steamboat ben": [65535, 0], "paid no attention to the steamboat ben stared": [65535, 0], "no attention to the steamboat ben stared a": [65535, 0], "attention to the steamboat ben stared a moment": [65535, 0], "to the steamboat ben stared a moment and": [65535, 0], "the steamboat ben stared a moment and then": [65535, 0], "steamboat ben stared a moment and then said": [65535, 0], "ben stared a moment and then said hi": [65535, 0], "stared a moment and then said hi yi": [65535, 0], "a moment and then said hi yi you're": [65535, 0], "moment and then said hi yi you're up": [65535, 0], "and then said hi yi you're up a": [65535, 0], "then said hi yi you're up a stump": [65535, 0], "said hi yi you're up a stump ain't": [65535, 0], "hi yi you're up a stump ain't you": [65535, 0], "yi you're up a stump ain't you no": [65535, 0], "you're up a stump ain't you no answer": [65535, 0], "up a stump ain't you no answer tom": [65535, 0], "a stump ain't you no answer tom surveyed": [65535, 0], "stump ain't you no answer tom surveyed his": [65535, 0], "ain't you no answer tom surveyed his last": [65535, 0], "you no answer tom surveyed his last touch": [65535, 0], "no answer tom surveyed his last touch with": [65535, 0], "answer tom surveyed his last touch with the": [65535, 0], "tom surveyed his last touch with the eye": [65535, 0], "surveyed his last touch with the eye of": [65535, 0], "his last touch with the eye of an": [65535, 0], "last touch with the eye of an artist": [65535, 0], "touch with the eye of an artist then": [65535, 0], "with the eye of an artist then he": [65535, 0], "the eye of an artist then he gave": [65535, 0], "eye of an artist then he gave his": [65535, 0], "of an artist then he gave his brush": [65535, 0], "an artist then he gave his brush another": [65535, 0], "artist then he gave his brush another gentle": [65535, 0], "then he gave his brush another gentle sweep": [65535, 0], "he gave his brush another gentle sweep and": [65535, 0], "gave his brush another gentle sweep and surveyed": [65535, 0], "his brush another gentle sweep and surveyed the": [65535, 0], "brush another gentle sweep and surveyed the result": [65535, 0], "another gentle sweep and surveyed the result as": [65535, 0], "gentle sweep and surveyed the result as before": [65535, 0], "sweep and surveyed the result as before ben": [65535, 0], "and surveyed the result as before ben ranged": [65535, 0], "surveyed the result as before ben ranged up": [65535, 0], "the result as before ben ranged up alongside": [65535, 0], "result as before ben ranged up alongside of": [65535, 0], "as before ben ranged up alongside of him": [65535, 0], "before ben ranged up alongside of him tom's": [65535, 0], "ben ranged up alongside of him tom's mouth": [65535, 0], "ranged up alongside of him tom's mouth watered": [65535, 0], "up alongside of him tom's mouth watered for": [65535, 0], "alongside of him tom's mouth watered for the": [65535, 0], "of him tom's mouth watered for the apple": [65535, 0], "him tom's mouth watered for the apple but": [65535, 0], "tom's mouth watered for the apple but he": [65535, 0], "mouth watered for the apple but he stuck": [65535, 0], "watered for the apple but he stuck to": [65535, 0], "for the apple but he stuck to his": [65535, 0], "the apple but he stuck to his work": [65535, 0], "apple but he stuck to his work ben": [65535, 0], "but he stuck to his work ben said": [65535, 0], "he stuck to his work ben said hello": [65535, 0], "stuck to his work ben said hello old": [65535, 0], "to his work ben said hello old chap": [65535, 0], "his work ben said hello old chap you": [65535, 0], "work ben said hello old chap you got": [65535, 0], "ben said hello old chap you got to": [65535, 0], "said hello old chap you got to work": [65535, 0], "hello old chap you got to work hey": [65535, 0], "old chap you got to work hey tom": [65535, 0], "chap you got to work hey tom wheeled": [65535, 0], "you got to work hey tom wheeled suddenly": [65535, 0], "got to work hey tom wheeled suddenly and": [65535, 0], "to work hey tom wheeled suddenly and said": [65535, 0], "work hey tom wheeled suddenly and said why": [65535, 0], "hey tom wheeled suddenly and said why it's": [65535, 0], "tom wheeled suddenly and said why it's you": [65535, 0], "wheeled suddenly and said why it's you ben": [65535, 0], "suddenly and said why it's you ben i": [65535, 0], "and said why it's you ben i warn't": [65535, 0], "said why it's you ben i warn't noticing": [65535, 0], "why it's you ben i warn't noticing say": [65535, 0], "it's you ben i warn't noticing say i'm": [65535, 0], "you ben i warn't noticing say i'm going": [65535, 0], "ben i warn't noticing say i'm going in": [65535, 0], "i warn't noticing say i'm going in a": [65535, 0], "warn't noticing say i'm going in a swimming": [65535, 0], "noticing say i'm going in a swimming i": [65535, 0], "say i'm going in a swimming i am": [65535, 0], "i'm going in a swimming i am don't": [65535, 0], "going in a swimming i am don't you": [65535, 0], "in a swimming i am don't you wish": [65535, 0], "a swimming i am don't you wish you": [65535, 0], "swimming i am don't you wish you could": [65535, 0], "i am don't you wish you could but": [65535, 0], "am don't you wish you could but of": [65535, 0], "don't you wish you could but of course": [65535, 0], "you wish you could but of course you'd": [65535, 0], "wish you could but of course you'd druther": [65535, 0], "you could but of course you'd druther work": [65535, 0], "could but of course you'd druther work wouldn't": [65535, 0], "but of course you'd druther work wouldn't you": [65535, 0], "of course you'd druther work wouldn't you course": [65535, 0], "course you'd druther work wouldn't you course you": [65535, 0], "you'd druther work wouldn't you course you would": [65535, 0], "druther work wouldn't you course you would tom": [65535, 0], "work wouldn't you course you would tom contemplated": [65535, 0], "wouldn't you course you would tom contemplated the": [65535, 0], "you course you would tom contemplated the boy": [65535, 0], "course you would tom contemplated the boy a": [65535, 0], "you would tom contemplated the boy a bit": [65535, 0], "would tom contemplated the boy a bit and": [65535, 0], "tom contemplated the boy a bit and said": [65535, 0], "contemplated the boy a bit and said what": [65535, 0], "the boy a bit and said what do": [65535, 0], "boy a bit and said what do you": [65535, 0], "a bit and said what do you call": [65535, 0], "bit and said what do you call work": [65535, 0], "and said what do you call work why": [65535, 0], "said what do you call work why ain't": [65535, 0], "what do you call work why ain't that": [65535, 0], "do you call work why ain't that work": [65535, 0], "you call work why ain't that work tom": [65535, 0], "call work why ain't that work tom resumed": [65535, 0], "work why ain't that work tom resumed his": [65535, 0], "why ain't that work tom resumed his whitewashing": [65535, 0], "ain't that work tom resumed his whitewashing and": [65535, 0], "that work tom resumed his whitewashing and answered": [65535, 0], "work tom resumed his whitewashing and answered carelessly": [65535, 0], "tom resumed his whitewashing and answered carelessly well": [65535, 0], "resumed his whitewashing and answered carelessly well maybe": [65535, 0], "his whitewashing and answered carelessly well maybe it": [65535, 0], "whitewashing and answered carelessly well maybe it is": [65535, 0], "and answered carelessly well maybe it is and": [65535, 0], "answered carelessly well maybe it is and maybe": [65535, 0], "carelessly well maybe it is and maybe it": [65535, 0], "well maybe it is and maybe it ain't": [65535, 0], "maybe it is and maybe it ain't all": [65535, 0], "it is and maybe it ain't all i": [65535, 0], "is and maybe it ain't all i know": [65535, 0], "and maybe it ain't all i know is": [65535, 0], "maybe it ain't all i know is it": [65535, 0], "it ain't all i know is it suits": [65535, 0], "ain't all i know is it suits tom": [65535, 0], "all i know is it suits tom sawyer": [65535, 0], "i know is it suits tom sawyer oh": [65535, 0], "know is it suits tom sawyer oh come": [65535, 0], "is it suits tom sawyer oh come now": [65535, 0], "it suits tom sawyer oh come now you": [65535, 0], "suits tom sawyer oh come now you don't": [65535, 0], "tom sawyer oh come now you don't mean": [65535, 0], "sawyer oh come now you don't mean to": [65535, 0], "oh come now you don't mean to let": [65535, 0], "come now you don't mean to let on": [65535, 0], "now you don't mean to let on that": [65535, 0], "you don't mean to let on that you": [65535, 0], "don't mean to let on that you like": [65535, 0], "mean to let on that you like it": [65535, 0], "to let on that you like it the": [65535, 0], "let on that you like it the brush": [65535, 0], "on that you like it the brush continued": [65535, 0], "that you like it the brush continued to": [65535, 0], "you like it the brush continued to move": [65535, 0], "like it the brush continued to move like": [65535, 0], "it the brush continued to move like it": [65535, 0], "the brush continued to move like it well": [65535, 0], "brush continued to move like it well i": [65535, 0], "continued to move like it well i don't": [65535, 0], "to move like it well i don't see": [65535, 0], "move like it well i don't see why": [65535, 0], "like it well i don't see why i": [65535, 0], "it well i don't see why i oughtn't": [65535, 0], "well i don't see why i oughtn't to": [65535, 0], "i don't see why i oughtn't to like": [65535, 0], "don't see why i oughtn't to like it": [65535, 0], "see why i oughtn't to like it does": [65535, 0], "why i oughtn't to like it does a": [65535, 0], "i oughtn't to like it does a boy": [65535, 0], "oughtn't to like it does a boy get": [65535, 0], "to like it does a boy get a": [65535, 0], "like it does a boy get a chance": [65535, 0], "it does a boy get a chance to": [65535, 0], "does a boy get a chance to whitewash": [65535, 0], "a boy get a chance to whitewash a": [65535, 0], "boy get a chance to whitewash a fence": [65535, 0], "get a chance to whitewash a fence every": [65535, 0], "a chance to whitewash a fence every day": [65535, 0], "chance to whitewash a fence every day that": [65535, 0], "to whitewash a fence every day that put": [65535, 0], "whitewash a fence every day that put the": [65535, 0], "a fence every day that put the thing": [65535, 0], "fence every day that put the thing in": [65535, 0], "every day that put the thing in a": [65535, 0], "day that put the thing in a new": [65535, 0], "that put the thing in a new light": [65535, 0], "put the thing in a new light ben": [65535, 0], "the thing in a new light ben stopped": [65535, 0], "thing in a new light ben stopped nibbling": [65535, 0], "in a new light ben stopped nibbling his": [65535, 0], "a new light ben stopped nibbling his apple": [65535, 0], "new light ben stopped nibbling his apple tom": [65535, 0], "light ben stopped nibbling his apple tom swept": [65535, 0], "ben stopped nibbling his apple tom swept his": [65535, 0], "stopped nibbling his apple tom swept his brush": [65535, 0], "nibbling his apple tom swept his brush daintily": [65535, 0], "his apple tom swept his brush daintily back": [65535, 0], "apple tom swept his brush daintily back and": [65535, 0], "tom swept his brush daintily back and forth": [65535, 0], "swept his brush daintily back and forth stepped": [65535, 0], "his brush daintily back and forth stepped back": [65535, 0], "brush daintily back and forth stepped back to": [65535, 0], "daintily back and forth stepped back to note": [65535, 0], "back and forth stepped back to note the": [65535, 0], "and forth stepped back to note the effect": [65535, 0], "forth stepped back to note the effect added": [65535, 0], "stepped back to note the effect added a": [65535, 0], "back to note the effect added a touch": [65535, 0], "to note the effect added a touch here": [65535, 0], "note the effect added a touch here and": [65535, 0], "the effect added a touch here and there": [65535, 0], "effect added a touch here and there criticised": [65535, 0], "added a touch here and there criticised the": [65535, 0], "a touch here and there criticised the effect": [65535, 0], "touch here and there criticised the effect again": [65535, 0], "here and there criticised the effect again ben": [65535, 0], "and there criticised the effect again ben watching": [65535, 0], "there criticised the effect again ben watching every": [65535, 0], "criticised the effect again ben watching every move": [65535, 0], "the effect again ben watching every move and": [65535, 0], "effect again ben watching every move and getting": [65535, 0], "again ben watching every move and getting more": [65535, 0], "ben watching every move and getting more and": [65535, 0], "watching every move and getting more and more": [65535, 0], "every move and getting more and more interested": [65535, 0], "move and getting more and more interested more": [65535, 0], "and getting more and more interested more and": [65535, 0], "getting more and more interested more and more": [65535, 0], "more and more interested more and more absorbed": [65535, 0], "and more interested more and more absorbed presently": [65535, 0], "more interested more and more absorbed presently he": [65535, 0], "interested more and more absorbed presently he said": [65535, 0], "more and more absorbed presently he said say": [65535, 0], "and more absorbed presently he said say tom": [65535, 0], "more absorbed presently he said say tom let": [65535, 0], "absorbed presently he said say tom let me": [65535, 0], "presently he said say tom let me whitewash": [65535, 0], "he said say tom let me whitewash a": [65535, 0], "said say tom let me whitewash a little": [65535, 0], "say tom let me whitewash a little tom": [65535, 0], "tom let me whitewash a little tom considered": [65535, 0], "let me whitewash a little tom considered was": [65535, 0], "me whitewash a little tom considered was about": [65535, 0], "whitewash a little tom considered was about to": [65535, 0], "a little tom considered was about to consent": [65535, 0], "little tom considered was about to consent but": [65535, 0], "tom considered was about to consent but he": [65535, 0], "considered was about to consent but he altered": [65535, 0], "was about to consent but he altered his": [65535, 0], "about to consent but he altered his mind": [65535, 0], "to consent but he altered his mind no": [65535, 0], "consent but he altered his mind no no": [65535, 0], "but he altered his mind no no i": [65535, 0], "he altered his mind no no i reckon": [65535, 0], "altered his mind no no i reckon it": [65535, 0], "his mind no no i reckon it wouldn't": [65535, 0], "mind no no i reckon it wouldn't hardly": [65535, 0], "no no i reckon it wouldn't hardly do": [65535, 0], "no i reckon it wouldn't hardly do ben": [65535, 0], "i reckon it wouldn't hardly do ben you": [65535, 0], "reckon it wouldn't hardly do ben you see": [65535, 0], "it wouldn't hardly do ben you see aunt": [65535, 0], "wouldn't hardly do ben you see aunt polly's": [65535, 0], "hardly do ben you see aunt polly's awful": [65535, 0], "do ben you see aunt polly's awful particular": [65535, 0], "ben you see aunt polly's awful particular about": [65535, 0], "you see aunt polly's awful particular about this": [65535, 0], "see aunt polly's awful particular about this fence": [65535, 0], "aunt polly's awful particular about this fence right": [65535, 0], "polly's awful particular about this fence right here": [65535, 0], "awful particular about this fence right here on": [65535, 0], "particular about this fence right here on the": [65535, 0], "about this fence right here on the street": [65535, 0], "this fence right here on the street you": [65535, 0], "fence right here on the street you know": [65535, 0], "right here on the street you know but": [65535, 0], "here on the street you know but if": [65535, 0], "on the street you know but if it": [65535, 0], "the street you know but if it was": [65535, 0], "street you know but if it was the": [65535, 0], "you know but if it was the back": [65535, 0], "know but if it was the back fence": [65535, 0], "but if it was the back fence i": [65535, 0], "if it was the back fence i wouldn't": [65535, 0], "it was the back fence i wouldn't mind": [65535, 0], "was the back fence i wouldn't mind and": [65535, 0], "the back fence i wouldn't mind and she": [65535, 0], "back fence i wouldn't mind and she wouldn't": [65535, 0], "fence i wouldn't mind and she wouldn't yes": [65535, 0], "i wouldn't mind and she wouldn't yes she's": [65535, 0], "wouldn't mind and she wouldn't yes she's awful": [65535, 0], "mind and she wouldn't yes she's awful particular": [65535, 0], "and she wouldn't yes she's awful particular about": [65535, 0], "she wouldn't yes she's awful particular about this": [65535, 0], "wouldn't yes she's awful particular about this fence": [65535, 0], "yes she's awful particular about this fence it's": [65535, 0], "she's awful particular about this fence it's got": [65535, 0], "awful particular about this fence it's got to": [65535, 0], "particular about this fence it's got to be": [65535, 0], "about this fence it's got to be done": [65535, 0], "this fence it's got to be done very": [65535, 0], "fence it's got to be done very careful": [65535, 0], "it's got to be done very careful i": [65535, 0], "got to be done very careful i reckon": [65535, 0], "to be done very careful i reckon there": [65535, 0], "be done very careful i reckon there ain't": [65535, 0], "done very careful i reckon there ain't one": [65535, 0], "very careful i reckon there ain't one boy": [65535, 0], "careful i reckon there ain't one boy in": [65535, 0], "i reckon there ain't one boy in a": [65535, 0], "reckon there ain't one boy in a thousand": [65535, 0], "there ain't one boy in a thousand maybe": [65535, 0], "ain't one boy in a thousand maybe two": [65535, 0], "one boy in a thousand maybe two thousand": [65535, 0], "boy in a thousand maybe two thousand that": [65535, 0], "in a thousand maybe two thousand that can": [65535, 0], "a thousand maybe two thousand that can do": [65535, 0], "thousand maybe two thousand that can do it": [65535, 0], "maybe two thousand that can do it the": [65535, 0], "two thousand that can do it the way": [65535, 0], "thousand that can do it the way it's": [65535, 0], "that can do it the way it's got": [65535, 0], "can do it the way it's got to": [65535, 0], "do it the way it's got to be": [65535, 0], "it the way it's got to be done": [65535, 0], "the way it's got to be done no": [65535, 0], "way it's got to be done no is": [65535, 0], "it's got to be done no is that": [65535, 0], "got to be done no is that so": [65535, 0], "to be done no is that so oh": [65535, 0], "be done no is that so oh come": [65535, 0], "done no is that so oh come now": [65535, 0], "no is that so oh come now lemme": [65535, 0], "is that so oh come now lemme just": [65535, 0], "that so oh come now lemme just try": [65535, 0], "so oh come now lemme just try only": [65535, 0], "oh come now lemme just try only just": [65535, 0], "come now lemme just try only just a": [65535, 0], "now lemme just try only just a little": [65535, 0], "lemme just try only just a little i'd": [65535, 0], "just try only just a little i'd let": [65535, 0], "try only just a little i'd let you": [65535, 0], "only just a little i'd let you if": [65535, 0], "just a little i'd let you if you": [65535, 0], "a little i'd let you if you was": [65535, 0], "little i'd let you if you was me": [65535, 0], "i'd let you if you was me tom": [65535, 0], "let you if you was me tom ben": [65535, 0], "you if you was me tom ben i'd": [65535, 0], "if you was me tom ben i'd like": [65535, 0], "you was me tom ben i'd like to": [65535, 0], "was me tom ben i'd like to honest": [65535, 0], "me tom ben i'd like to honest injun": [65535, 0], "tom ben i'd like to honest injun but": [65535, 0], "ben i'd like to honest injun but aunt": [65535, 0], "i'd like to honest injun but aunt polly": [65535, 0], "like to honest injun but aunt polly well": [65535, 0], "to honest injun but aunt polly well jim": [65535, 0], "honest injun but aunt polly well jim wanted": [65535, 0], "injun but aunt polly well jim wanted to": [65535, 0], "but aunt polly well jim wanted to do": [65535, 0], "aunt polly well jim wanted to do it": [65535, 0], "polly well jim wanted to do it but": [65535, 0], "well jim wanted to do it but she": [65535, 0], "jim wanted to do it but she wouldn't": [65535, 0], "wanted to do it but she wouldn't let": [65535, 0], "to do it but she wouldn't let him": [65535, 0], "do it but she wouldn't let him sid": [65535, 0], "it but she wouldn't let him sid wanted": [65535, 0], "but she wouldn't let him sid wanted to": [65535, 0], "she wouldn't let him sid wanted to do": [65535, 0], "wouldn't let him sid wanted to do it": [65535, 0], "let him sid wanted to do it and": [65535, 0], "him sid wanted to do it and she": [65535, 0], "sid wanted to do it and she wouldn't": [65535, 0], "wanted to do it and she wouldn't let": [65535, 0], "to do it and she wouldn't let sid": [65535, 0], "do it and she wouldn't let sid now": [65535, 0], "it and she wouldn't let sid now don't": [65535, 0], "and she wouldn't let sid now don't you": [65535, 0], "she wouldn't let sid now don't you see": [65535, 0], "wouldn't let sid now don't you see how": [65535, 0], "let sid now don't you see how i'm": [65535, 0], "sid now don't you see how i'm fixed": [65535, 0], "now don't you see how i'm fixed if": [65535, 0], "don't you see how i'm fixed if you": [65535, 0], "you see how i'm fixed if you was": [65535, 0], "see how i'm fixed if you was to": [65535, 0], "how i'm fixed if you was to tackle": [65535, 0], "i'm fixed if you was to tackle this": [65535, 0], "fixed if you was to tackle this fence": [65535, 0], "if you was to tackle this fence and": [65535, 0], "you was to tackle this fence and anything": [65535, 0], "was to tackle this fence and anything was": [65535, 0], "to tackle this fence and anything was to": [65535, 0], "tackle this fence and anything was to happen": [65535, 0], "this fence and anything was to happen to": [65535, 0], "fence and anything was to happen to it": [65535, 0], "and anything was to happen to it oh": [65535, 0], "anything was to happen to it oh shucks": [65535, 0], "was to happen to it oh shucks i'll": [65535, 0], "to happen to it oh shucks i'll be": [65535, 0], "happen to it oh shucks i'll be just": [65535, 0], "to it oh shucks i'll be just as": [65535, 0], "it oh shucks i'll be just as careful": [65535, 0], "oh shucks i'll be just as careful now": [65535, 0], "shucks i'll be just as careful now lemme": [65535, 0], "i'll be just as careful now lemme try": [65535, 0], "be just as careful now lemme try say": [65535, 0], "just as careful now lemme try say i'll": [65535, 0], "as careful now lemme try say i'll give": [65535, 0], "careful now lemme try say i'll give you": [65535, 0], "now lemme try say i'll give you the": [65535, 0], "lemme try say i'll give you the core": [65535, 0], "try say i'll give you the core of": [65535, 0], "say i'll give you the core of my": [65535, 0], "i'll give you the core of my apple": [65535, 0], "give you the core of my apple well": [65535, 0], "you the core of my apple well here": [65535, 0], "the core of my apple well here no": [65535, 0], "core of my apple well here no ben": [65535, 0], "of my apple well here no ben now": [65535, 0], "my apple well here no ben now don't": [65535, 0], "apple well here no ben now don't i'm": [65535, 0], "well here no ben now don't i'm afeard": [65535, 0], "here no ben now don't i'm afeard i'll": [65535, 0], "no ben now don't i'm afeard i'll give": [65535, 0], "ben now don't i'm afeard i'll give you": [65535, 0], "now don't i'm afeard i'll give you all": [65535, 0], "don't i'm afeard i'll give you all of": [65535, 0], "i'm afeard i'll give you all of it": [65535, 0], "afeard i'll give you all of it tom": [65535, 0], "i'll give you all of it tom gave": [65535, 0], "give you all of it tom gave up": [65535, 0], "you all of it tom gave up the": [65535, 0], "all of it tom gave up the brush": [65535, 0], "of it tom gave up the brush with": [65535, 0], "it tom gave up the brush with reluctance": [65535, 0], "tom gave up the brush with reluctance in": [65535, 0], "gave up the brush with reluctance in his": [65535, 0], "up the brush with reluctance in his face": [65535, 0], "the brush with reluctance in his face but": [65535, 0], "brush with reluctance in his face but alacrity": [65535, 0], "with reluctance in his face but alacrity in": [65535, 0], "reluctance in his face but alacrity in his": [65535, 0], "in his face but alacrity in his heart": [65535, 0], "his face but alacrity in his heart and": [65535, 0], "face but alacrity in his heart and while": [65535, 0], "but alacrity in his heart and while the": [65535, 0], "alacrity in his heart and while the late": [65535, 0], "in his heart and while the late steamer": [65535, 0], "his heart and while the late steamer big": [65535, 0], "heart and while the late steamer big missouri": [65535, 0], "and while the late steamer big missouri worked": [65535, 0], "while the late steamer big missouri worked and": [65535, 0], "the late steamer big missouri worked and sweated": [65535, 0], "late steamer big missouri worked and sweated in": [65535, 0], "steamer big missouri worked and sweated in the": [65535, 0], "big missouri worked and sweated in the sun": [65535, 0], "missouri worked and sweated in the sun the": [65535, 0], "worked and sweated in the sun the retired": [65535, 0], "and sweated in the sun the retired artist": [65535, 0], "sweated in the sun the retired artist sat": [65535, 0], "in the sun the retired artist sat on": [65535, 0], "the sun the retired artist sat on a": [65535, 0], "sun the retired artist sat on a barrel": [65535, 0], "the retired artist sat on a barrel in": [65535, 0], "retired artist sat on a barrel in the": [65535, 0], "artist sat on a barrel in the shade": [65535, 0], "sat on a barrel in the shade close": [65535, 0], "on a barrel in the shade close by": [65535, 0], "a barrel in the shade close by dangled": [65535, 0], "barrel in the shade close by dangled his": [65535, 0], "in the shade close by dangled his legs": [65535, 0], "the shade close by dangled his legs munched": [65535, 0], "shade close by dangled his legs munched his": [65535, 0], "close by dangled his legs munched his apple": [65535, 0], "by dangled his legs munched his apple and": [65535, 0], "dangled his legs munched his apple and planned": [65535, 0], "his legs munched his apple and planned the": [65535, 0], "legs munched his apple and planned the slaughter": [65535, 0], "munched his apple and planned the slaughter of": [65535, 0], "his apple and planned the slaughter of more": [65535, 0], "apple and planned the slaughter of more innocents": [65535, 0], "and planned the slaughter of more innocents there": [65535, 0], "planned the slaughter of more innocents there was": [65535, 0], "the slaughter of more innocents there was no": [65535, 0], "slaughter of more innocents there was no lack": [65535, 0], "of more innocents there was no lack of": [65535, 0], "more innocents there was no lack of material": [65535, 0], "innocents there was no lack of material boys": [65535, 0], "there was no lack of material boys happened": [65535, 0], "was no lack of material boys happened along": [65535, 0], "no lack of material boys happened along every": [65535, 0], "lack of material boys happened along every little": [65535, 0], "of material boys happened along every little while": [65535, 0], "material boys happened along every little while they": [65535, 0], "boys happened along every little while they came": [65535, 0], "happened along every little while they came to": [65535, 0], "along every little while they came to jeer": [65535, 0], "every little while they came to jeer but": [65535, 0], "little while they came to jeer but remained": [65535, 0], "while they came to jeer but remained to": [65535, 0], "they came to jeer but remained to whitewash": [65535, 0], "came to jeer but remained to whitewash by": [65535, 0], "to jeer but remained to whitewash by the": [65535, 0], "jeer but remained to whitewash by the time": [65535, 0], "but remained to whitewash by the time ben": [65535, 0], "remained to whitewash by the time ben was": [65535, 0], "to whitewash by the time ben was fagged": [65535, 0], "whitewash by the time ben was fagged out": [65535, 0], "by the time ben was fagged out tom": [65535, 0], "the time ben was fagged out tom had": [65535, 0], "time ben was fagged out tom had traded": [65535, 0], "ben was fagged out tom had traded the": [65535, 0], "was fagged out tom had traded the next": [65535, 0], "fagged out tom had traded the next chance": [65535, 0], "out tom had traded the next chance to": [65535, 0], "tom had traded the next chance to billy": [65535, 0], "had traded the next chance to billy fisher": [65535, 0], "traded the next chance to billy fisher for": [65535, 0], "the next chance to billy fisher for a": [65535, 0], "next chance to billy fisher for a kite": [65535, 0], "chance to billy fisher for a kite in": [65535, 0], "to billy fisher for a kite in good": [65535, 0], "billy fisher for a kite in good repair": [65535, 0], "fisher for a kite in good repair and": [65535, 0], "for a kite in good repair and when": [65535, 0], "a kite in good repair and when he": [65535, 0], "kite in good repair and when he played": [65535, 0], "in good repair and when he played out": [65535, 0], "good repair and when he played out johnny": [65535, 0], "repair and when he played out johnny miller": [65535, 0], "and when he played out johnny miller bought": [65535, 0], "when he played out johnny miller bought in": [65535, 0], "he played out johnny miller bought in for": [65535, 0], "played out johnny miller bought in for a": [65535, 0], "out johnny miller bought in for a dead": [65535, 0], "johnny miller bought in for a dead rat": [65535, 0], "miller bought in for a dead rat and": [65535, 0], "bought in for a dead rat and a": [65535, 0], "in for a dead rat and a string": [65535, 0], "for a dead rat and a string to": [65535, 0], "a dead rat and a string to swing": [65535, 0], "dead rat and a string to swing it": [65535, 0], "rat and a string to swing it with": [65535, 0], "and a string to swing it with and": [65535, 0], "a string to swing it with and so": [65535, 0], "string to swing it with and so on": [65535, 0], "to swing it with and so on and": [65535, 0], "swing it with and so on and so": [65535, 0], "it with and so on and so on": [65535, 0], "with and so on and so on hour": [65535, 0], "and so on and so on hour after": [65535, 0], "so on and so on hour after hour": [65535, 0], "on and so on hour after hour and": [65535, 0], "and so on hour after hour and when": [65535, 0], "so on hour after hour and when the": [65535, 0], "on hour after hour and when the middle": [65535, 0], "hour after hour and when the middle of": [65535, 0], "after hour and when the middle of the": [65535, 0], "hour and when the middle of the afternoon": [65535, 0], "and when the middle of the afternoon came": [65535, 0], "when the middle of the afternoon came from": [65535, 0], "the middle of the afternoon came from being": [65535, 0], "middle of the afternoon came from being a": [65535, 0], "of the afternoon came from being a poor": [65535, 0], "the afternoon came from being a poor poverty": [65535, 0], "afternoon came from being a poor poverty stricken": [65535, 0], "came from being a poor poverty stricken boy": [65535, 0], "from being a poor poverty stricken boy in": [65535, 0], "being a poor poverty stricken boy in the": [65535, 0], "a poor poverty stricken boy in the morning": [65535, 0], "poor poverty stricken boy in the morning tom": [65535, 0], "poverty stricken boy in the morning tom was": [65535, 0], "stricken boy in the morning tom was literally": [65535, 0], "boy in the morning tom was literally rolling": [65535, 0], "in the morning tom was literally rolling in": [65535, 0], "the morning tom was literally rolling in wealth": [65535, 0], "morning tom was literally rolling in wealth he": [65535, 0], "tom was literally rolling in wealth he had": [65535, 0], "was literally rolling in wealth he had besides": [65535, 0], "literally rolling in wealth he had besides the": [65535, 0], "rolling in wealth he had besides the things": [65535, 0], "in wealth he had besides the things before": [65535, 0], "wealth he had besides the things before mentioned": [65535, 0], "he had besides the things before mentioned twelve": [65535, 0], "had besides the things before mentioned twelve marbles": [65535, 0], "besides the things before mentioned twelve marbles part": [65535, 0], "the things before mentioned twelve marbles part of": [65535, 0], "things before mentioned twelve marbles part of a": [65535, 0], "before mentioned twelve marbles part of a jews": [65535, 0], "mentioned twelve marbles part of a jews harp": [65535, 0], "twelve marbles part of a jews harp a": [65535, 0], "marbles part of a jews harp a piece": [65535, 0], "part of a jews harp a piece of": [65535, 0], "of a jews harp a piece of blue": [65535, 0], "a jews harp a piece of blue bottle": [65535, 0], "jews harp a piece of blue bottle glass": [65535, 0], "harp a piece of blue bottle glass to": [65535, 0], "a piece of blue bottle glass to look": [65535, 0], "piece of blue bottle glass to look through": [65535, 0], "of blue bottle glass to look through a": [65535, 0], "blue bottle glass to look through a spool": [65535, 0], "bottle glass to look through a spool cannon": [65535, 0], "glass to look through a spool cannon a": [65535, 0], "to look through a spool cannon a key": [65535, 0], "look through a spool cannon a key that": [65535, 0], "through a spool cannon a key that wouldn't": [65535, 0], "a spool cannon a key that wouldn't unlock": [65535, 0], "spool cannon a key that wouldn't unlock anything": [65535, 0], "cannon a key that wouldn't unlock anything a": [65535, 0], "a key that wouldn't unlock anything a fragment": [65535, 0], "key that wouldn't unlock anything a fragment of": [65535, 0], "that wouldn't unlock anything a fragment of chalk": [65535, 0], "wouldn't unlock anything a fragment of chalk a": [65535, 0], "unlock anything a fragment of chalk a glass": [65535, 0], "anything a fragment of chalk a glass stopper": [65535, 0], "a fragment of chalk a glass stopper of": [65535, 0], "fragment of chalk a glass stopper of a": [65535, 0], "of chalk a glass stopper of a decanter": [65535, 0], "chalk a glass stopper of a decanter a": [65535, 0], "a glass stopper of a decanter a tin": [65535, 0], "glass stopper of a decanter a tin soldier": [65535, 0], "stopper of a decanter a tin soldier a": [65535, 0], "of a decanter a tin soldier a couple": [65535, 0], "a decanter a tin soldier a couple of": [65535, 0], "decanter a tin soldier a couple of tadpoles": [65535, 0], "a tin soldier a couple of tadpoles six": [65535, 0], "tin soldier a couple of tadpoles six fire": [65535, 0], "soldier a couple of tadpoles six fire crackers": [65535, 0], "a couple of tadpoles six fire crackers a": [65535, 0], "couple of tadpoles six fire crackers a kitten": [65535, 0], "of tadpoles six fire crackers a kitten with": [65535, 0], "tadpoles six fire crackers a kitten with only": [65535, 0], "six fire crackers a kitten with only one": [65535, 0], "fire crackers a kitten with only one eye": [65535, 0], "crackers a kitten with only one eye a": [65535, 0], "a kitten with only one eye a brass": [65535, 0], "kitten with only one eye a brass doorknob": [65535, 0], "with only one eye a brass doorknob a": [65535, 0], "only one eye a brass doorknob a dog": [65535, 0], "one eye a brass doorknob a dog collar": [65535, 0], "eye a brass doorknob a dog collar but": [65535, 0], "a brass doorknob a dog collar but no": [65535, 0], "brass doorknob a dog collar but no dog": [65535, 0], "doorknob a dog collar but no dog the": [65535, 0], "a dog collar but no dog the handle": [65535, 0], "dog collar but no dog the handle of": [65535, 0], "collar but no dog the handle of a": [65535, 0], "but no dog the handle of a knife": [65535, 0], "no dog the handle of a knife four": [65535, 0], "dog the handle of a knife four pieces": [65535, 0], "the handle of a knife four pieces of": [65535, 0], "handle of a knife four pieces of orange": [65535, 0], "of a knife four pieces of orange peel": [65535, 0], "a knife four pieces of orange peel and": [65535, 0], "knife four pieces of orange peel and a": [65535, 0], "four pieces of orange peel and a dilapidated": [65535, 0], "pieces of orange peel and a dilapidated old": [65535, 0], "of orange peel and a dilapidated old window": [65535, 0], "orange peel and a dilapidated old window sash": [65535, 0], "peel and a dilapidated old window sash he": [65535, 0], "and a dilapidated old window sash he had": [65535, 0], "a dilapidated old window sash he had had": [65535, 0], "dilapidated old window sash he had had a": [65535, 0], "old window sash he had had a nice": [65535, 0], "window sash he had had a nice good": [65535, 0], "sash he had had a nice good idle": [65535, 0], "he had had a nice good idle time": [65535, 0], "had had a nice good idle time all": [65535, 0], "had a nice good idle time all the": [65535, 0], "a nice good idle time all the while": [65535, 0], "nice good idle time all the while plenty": [65535, 0], "good idle time all the while plenty of": [65535, 0], "idle time all the while plenty of company": [65535, 0], "time all the while plenty of company and": [65535, 0], "all the while plenty of company and the": [65535, 0], "the while plenty of company and the fence": [65535, 0], "while plenty of company and the fence had": [65535, 0], "plenty of company and the fence had three": [65535, 0], "of company and the fence had three coats": [65535, 0], "company and the fence had three coats of": [65535, 0], "and the fence had three coats of whitewash": [65535, 0], "the fence had three coats of whitewash on": [65535, 0], "fence had three coats of whitewash on it": [65535, 0], "had three coats of whitewash on it if": [65535, 0], "three coats of whitewash on it if he": [65535, 0], "coats of whitewash on it if he hadn't": [65535, 0], "of whitewash on it if he hadn't run": [65535, 0], "whitewash on it if he hadn't run out": [65535, 0], "on it if he hadn't run out of": [65535, 0], "it if he hadn't run out of whitewash": [65535, 0], "if he hadn't run out of whitewash he": [65535, 0], "he hadn't run out of whitewash he would": [65535, 0], "hadn't run out of whitewash he would have": [65535, 0], "run out of whitewash he would have bankrupted": [65535, 0], "out of whitewash he would have bankrupted every": [65535, 0], "of whitewash he would have bankrupted every boy": [65535, 0], "whitewash he would have bankrupted every boy in": [65535, 0], "he would have bankrupted every boy in the": [65535, 0], "would have bankrupted every boy in the village": [65535, 0], "have bankrupted every boy in the village tom": [65535, 0], "bankrupted every boy in the village tom said": [65535, 0], "every boy in the village tom said to": [65535, 0], "boy in the village tom said to himself": [65535, 0], "in the village tom said to himself that": [65535, 0], "the village tom said to himself that it": [65535, 0], "village tom said to himself that it was": [65535, 0], "tom said to himself that it was not": [65535, 0], "said to himself that it was not such": [65535, 0], "to himself that it was not such a": [65535, 0], "himself that it was not such a hollow": [65535, 0], "that it was not such a hollow world": [65535, 0], "it was not such a hollow world after": [65535, 0], "was not such a hollow world after all": [65535, 0], "not such a hollow world after all he": [65535, 0], "such a hollow world after all he had": [65535, 0], "a hollow world after all he had discovered": [65535, 0], "hollow world after all he had discovered a": [65535, 0], "world after all he had discovered a great": [65535, 0], "after all he had discovered a great law": [65535, 0], "all he had discovered a great law of": [65535, 0], "he had discovered a great law of human": [65535, 0], "had discovered a great law of human action": [65535, 0], "discovered a great law of human action without": [65535, 0], "a great law of human action without knowing": [65535, 0], "great law of human action without knowing it": [65535, 0], "law of human action without knowing it namely": [65535, 0], "of human action without knowing it namely that": [65535, 0], "human action without knowing it namely that in": [65535, 0], "action without knowing it namely that in order": [65535, 0], "without knowing it namely that in order to": [65535, 0], "knowing it namely that in order to make": [65535, 0], "it namely that in order to make a": [65535, 0], "namely that in order to make a man": [65535, 0], "that in order to make a man or": [65535, 0], "in order to make a man or a": [65535, 0], "order to make a man or a boy": [65535, 0], "to make a man or a boy covet": [65535, 0], "make a man or a boy covet a": [65535, 0], "a man or a boy covet a thing": [65535, 0], "man or a boy covet a thing it": [65535, 0], "or a boy covet a thing it is": [65535, 0], "a boy covet a thing it is only": [65535, 0], "boy covet a thing it is only necessary": [65535, 0], "covet a thing it is only necessary to": [65535, 0], "a thing it is only necessary to make": [65535, 0], "thing it is only necessary to make the": [65535, 0], "it is only necessary to make the thing": [65535, 0], "is only necessary to make the thing difficult": [65535, 0], "only necessary to make the thing difficult to": [65535, 0], "necessary to make the thing difficult to attain": [65535, 0], "to make the thing difficult to attain if": [65535, 0], "make the thing difficult to attain if he": [65535, 0], "the thing difficult to attain if he had": [65535, 0], "thing difficult to attain if he had been": [65535, 0], "difficult to attain if he had been a": [65535, 0], "to attain if he had been a great": [65535, 0], "attain if he had been a great and": [65535, 0], "if he had been a great and wise": [65535, 0], "he had been a great and wise philosopher": [65535, 0], "had been a great and wise philosopher like": [65535, 0], "been a great and wise philosopher like the": [65535, 0], "a great and wise philosopher like the writer": [65535, 0], "great and wise philosopher like the writer of": [65535, 0], "and wise philosopher like the writer of this": [65535, 0], "wise philosopher like the writer of this book": [65535, 0], "philosopher like the writer of this book he": [65535, 0], "like the writer of this book he would": [65535, 0], "the writer of this book he would now": [65535, 0], "writer of this book he would now have": [65535, 0], "of this book he would now have comprehended": [65535, 0], "this book he would now have comprehended that": [65535, 0], "book he would now have comprehended that work": [65535, 0], "he would now have comprehended that work consists": [65535, 0], "would now have comprehended that work consists of": [65535, 0], "now have comprehended that work consists of whatever": [65535, 0], "have comprehended that work consists of whatever a": [65535, 0], "comprehended that work consists of whatever a body": [65535, 0], "that work consists of whatever a body is": [65535, 0], "work consists of whatever a body is obliged": [65535, 0], "consists of whatever a body is obliged to": [65535, 0], "of whatever a body is obliged to do": [65535, 0], "whatever a body is obliged to do and": [65535, 0], "a body is obliged to do and that": [65535, 0], "body is obliged to do and that play": [65535, 0], "is obliged to do and that play consists": [65535, 0], "obliged to do and that play consists of": [65535, 0], "to do and that play consists of whatever": [65535, 0], "do and that play consists of whatever a": [65535, 0], "and that play consists of whatever a body": [65535, 0], "that play consists of whatever a body is": [65535, 0], "play consists of whatever a body is not": [65535, 0], "consists of whatever a body is not obliged": [65535, 0], "of whatever a body is not obliged to": [65535, 0], "whatever a body is not obliged to do": [65535, 0], "a body is not obliged to do and": [65535, 0], "body is not obliged to do and this": [65535, 0], "is not obliged to do and this would": [65535, 0], "not obliged to do and this would help": [65535, 0], "obliged to do and this would help him": [65535, 0], "to do and this would help him to": [65535, 0], "do and this would help him to understand": [65535, 0], "and this would help him to understand why": [65535, 0], "this would help him to understand why constructing": [65535, 0], "would help him to understand why constructing artificial": [65535, 0], "help him to understand why constructing artificial flowers": [65535, 0], "him to understand why constructing artificial flowers or": [65535, 0], "to understand why constructing artificial flowers or performing": [65535, 0], "understand why constructing artificial flowers or performing on": [65535, 0], "why constructing artificial flowers or performing on a": [65535, 0], "constructing artificial flowers or performing on a tread": [65535, 0], "artificial flowers or performing on a tread mill": [65535, 0], "flowers or performing on a tread mill is": [65535, 0], "or performing on a tread mill is work": [65535, 0], "performing on a tread mill is work while": [65535, 0], "on a tread mill is work while rolling": [65535, 0], "a tread mill is work while rolling ten": [65535, 0], "tread mill is work while rolling ten pins": [65535, 0], "mill is work while rolling ten pins or": [65535, 0], "is work while rolling ten pins or climbing": [65535, 0], "work while rolling ten pins or climbing mont": [65535, 0], "while rolling ten pins or climbing mont blanc": [65535, 0], "rolling ten pins or climbing mont blanc is": [65535, 0], "ten pins or climbing mont blanc is only": [65535, 0], "pins or climbing mont blanc is only amusement": [65535, 0], "or climbing mont blanc is only amusement there": [65535, 0], "climbing mont blanc is only amusement there are": [65535, 0], "mont blanc is only amusement there are wealthy": [65535, 0], "blanc is only amusement there are wealthy gentlemen": [65535, 0], "is only amusement there are wealthy gentlemen in": [65535, 0], "only amusement there are wealthy gentlemen in england": [65535, 0], "amusement there are wealthy gentlemen in england who": [65535, 0], "there are wealthy gentlemen in england who drive": [65535, 0], "are wealthy gentlemen in england who drive four": [65535, 0], "wealthy gentlemen in england who drive four horse": [65535, 0], "gentlemen in england who drive four horse passenger": [65535, 0], "in england who drive four horse passenger coaches": [65535, 0], "england who drive four horse passenger coaches twenty": [65535, 0], "who drive four horse passenger coaches twenty or": [65535, 0], "drive four horse passenger coaches twenty or thirty": [65535, 0], "four horse passenger coaches twenty or thirty miles": [65535, 0], "horse passenger coaches twenty or thirty miles on": [65535, 0], "passenger coaches twenty or thirty miles on a": [65535, 0], "coaches twenty or thirty miles on a daily": [65535, 0], "twenty or thirty miles on a daily line": [65535, 0], "or thirty miles on a daily line in": [65535, 0], "thirty miles on a daily line in the": [65535, 0], "miles on a daily line in the summer": [65535, 0], "on a daily line in the summer because": [65535, 0], "a daily line in the summer because the": [65535, 0], "daily line in the summer because the privilege": [65535, 0], "line in the summer because the privilege costs": [65535, 0], "in the summer because the privilege costs them": [65535, 0], "the summer because the privilege costs them considerable": [65535, 0], "summer because the privilege costs them considerable money": [65535, 0], "because the privilege costs them considerable money but": [65535, 0], "the privilege costs them considerable money but if": [65535, 0], "privilege costs them considerable money but if they": [65535, 0], "costs them considerable money but if they were": [65535, 0], "them considerable money but if they were offered": [65535, 0], "considerable money but if they were offered wages": [65535, 0], "money but if they were offered wages for": [65535, 0], "but if they were offered wages for the": [65535, 0], "if they were offered wages for the service": [65535, 0], "they were offered wages for the service that": [65535, 0], "were offered wages for the service that would": [65535, 0], "offered wages for the service that would turn": [65535, 0], "wages for the service that would turn it": [65535, 0], "for the service that would turn it into": [65535, 0], "the service that would turn it into work": [65535, 0], "service that would turn it into work and": [65535, 0], "that would turn it into work and then": [65535, 0], "would turn it into work and then they": [65535, 0], "turn it into work and then they would": [65535, 0], "it into work and then they would resign": [65535, 0], "into work and then they would resign the": [65535, 0], "work and then they would resign the boy": [65535, 0], "and then they would resign the boy mused": [65535, 0], "then they would resign the boy mused awhile": [65535, 0], "they would resign the boy mused awhile over": [65535, 0], "would resign the boy mused awhile over the": [65535, 0], "resign the boy mused awhile over the substantial": [65535, 0], "the boy mused awhile over the substantial change": [65535, 0], "boy mused awhile over the substantial change which": [65535, 0], "mused awhile over the substantial change which had": [65535, 0], "awhile over the substantial change which had taken": [65535, 0], "over the substantial change which had taken place": [65535, 0], "the substantial change which had taken place in": [65535, 0], "substantial change which had taken place in his": [65535, 0], "change which had taken place in his worldly": [65535, 0], "which had taken place in his worldly circumstances": [65535, 0], "had taken place in his worldly circumstances and": [65535, 0], "taken place in his worldly circumstances and then": [65535, 0], "place in his worldly circumstances and then wended": [65535, 0], "in his worldly circumstances and then wended toward": [65535, 0], "his worldly circumstances and then wended toward headquarters": [65535, 0], "worldly circumstances and then wended toward headquarters to": [65535, 0], "circumstances and then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the summer world": [65535, 0], "morning was come and all the summer world was": [65535, 0], "was come and all the summer world was bright": [65535, 0], "come and all the summer world was bright and": [65535, 0], "and all the summer world was bright and fresh": [65535, 0], "all the summer world was bright and fresh and": [65535, 0], "the summer world was bright and fresh and brimming": [65535, 0], "summer world was bright and fresh and brimming with": [65535, 0], "world was bright and fresh and brimming with life": [65535, 0], "was bright and fresh and brimming with life there": [65535, 0], "bright and fresh and brimming with life there was": [65535, 0], "and fresh and brimming with life there was a": [65535, 0], "fresh and brimming with life there was a song": [65535, 0], "and brimming with life there was a song in": [65535, 0], "brimming with life there was a song in every": [65535, 0], "with life there was a song in every heart": [65535, 0], "life there was a song in every heart and": [65535, 0], "there was a song in every heart and if": [65535, 0], "was a song in every heart and if the": [65535, 0], "a song in every heart and if the heart": [65535, 0], "song in every heart and if the heart was": [65535, 0], "in every heart and if the heart was young": [65535, 0], "every heart and if the heart was young the": [65535, 0], "heart and if the heart was young the music": [65535, 0], "and if the heart was young the music issued": [65535, 0], "if the heart was young the music issued at": [65535, 0], "the heart was young the music issued at the": [65535, 0], "heart was young the music issued at the lips": [65535, 0], "was young the music issued at the lips there": [65535, 0], "young the music issued at the lips there was": [65535, 0], "the music issued at the lips there was cheer": [65535, 0], "music issued at the lips there was cheer in": [65535, 0], "issued at the lips there was cheer in every": [65535, 0], "at the lips there was cheer in every face": [65535, 0], "the lips there was cheer in every face and": [65535, 0], "lips there was cheer in every face and a": [65535, 0], "there was cheer in every face and a spring": [65535, 0], "was cheer in every face and a spring in": [65535, 0], "cheer in every face and a spring in every": [65535, 0], "in every face and a spring in every step": [65535, 0], "every face and a spring in every step the": [65535, 0], "face and a spring in every step the locust": [65535, 0], "and a spring in every step the locust trees": [65535, 0], "a spring in every step the locust trees were": [65535, 0], "spring in every step the locust trees were in": [65535, 0], "in every step the locust trees were in bloom": [65535, 0], "every step the locust trees were in bloom and": [65535, 0], "step the locust trees were in bloom and the": [65535, 0], "the locust trees were in bloom and the fragrance": [65535, 0], "locust trees were in bloom and the fragrance of": [65535, 0], "trees were in bloom and the fragrance of the": [65535, 0], "were in bloom and the fragrance of the blossoms": [65535, 0], "in bloom and the fragrance of the blossoms filled": [65535, 0], "bloom and the fragrance of the blossoms filled the": [65535, 0], "and the fragrance of the blossoms filled the air": [65535, 0], "the fragrance of the blossoms filled the air cardiff": [65535, 0], "fragrance of the blossoms filled the air cardiff hill": [65535, 0], "of the blossoms filled the air cardiff hill beyond": [65535, 0], "the blossoms filled the air cardiff hill beyond the": [65535, 0], "blossoms filled the air cardiff hill beyond the village": [65535, 0], "filled the air cardiff hill beyond the village and": [65535, 0], "the air cardiff hill beyond the village and above": [65535, 0], "air cardiff hill beyond the village and above it": [65535, 0], "cardiff hill beyond the village and above it was": [65535, 0], "hill beyond the village and above it was green": [65535, 0], "beyond the village and above it was green with": [65535, 0], "the village and above it was green with vegetation": [65535, 0], "village and above it was green with vegetation and": [65535, 0], "and above it was green with vegetation and it": [65535, 0], "above it was green with vegetation and it lay": [65535, 0], "it was green with vegetation and it lay just": [65535, 0], "was green with vegetation and it lay just far": [65535, 0], "green with vegetation and it lay just far enough": [65535, 0], "with vegetation and it lay just far enough away": [65535, 0], "vegetation and it lay just far enough away to": [65535, 0], "and it lay just far enough away to seem": [65535, 0], "it lay just far enough away to seem a": [65535, 0], "lay just far enough away to seem a delectable": [65535, 0], "just far enough away to seem a delectable land": [65535, 0], "far enough away to seem a delectable land dreamy": [65535, 0], "enough away to seem a delectable land dreamy reposeful": [65535, 0], "away to seem a delectable land dreamy reposeful and": [65535, 0], "to seem a delectable land dreamy reposeful and inviting": [65535, 0], "seem a delectable land dreamy reposeful and inviting tom": [65535, 0], "a delectable land dreamy reposeful and inviting tom appeared": [65535, 0], "delectable land dreamy reposeful and inviting tom appeared on": [65535, 0], "land dreamy reposeful and inviting tom appeared on the": [65535, 0], "dreamy reposeful and inviting tom appeared on the sidewalk": [65535, 0], "reposeful and inviting tom appeared on the sidewalk with": [65535, 0], "and inviting tom appeared on the sidewalk with a": [65535, 0], "inviting tom appeared on the sidewalk with a bucket": [65535, 0], "tom appeared on the sidewalk with a bucket of": [65535, 0], "appeared on the sidewalk with a bucket of whitewash": [65535, 0], "on the sidewalk with a bucket of whitewash and": [65535, 0], "the sidewalk with a bucket of whitewash and a": [65535, 0], "sidewalk with a bucket of whitewash and a long": [65535, 0], "with a bucket of whitewash and a long handled": [65535, 0], "a bucket of whitewash and a long handled brush": [65535, 0], "bucket of whitewash and a long handled brush he": [65535, 0], "of whitewash and a long handled brush he surveyed": [65535, 0], "whitewash and a long handled brush he surveyed the": [65535, 0], "and a long handled brush he surveyed the fence": [65535, 0], "a long handled brush he surveyed the fence and": [65535, 0], "long handled brush he surveyed the fence and all": [65535, 0], "handled brush he surveyed the fence and all gladness": [65535, 0], "brush he surveyed the fence and all gladness left": [65535, 0], "he surveyed the fence and all gladness left him": [65535, 0], "surveyed the fence and all gladness left him and": [65535, 0], "the fence and all gladness left him and a": [65535, 0], "fence and all gladness left him and a deep": [65535, 0], "and all gladness left him and a deep melancholy": [65535, 0], "all gladness left him and a deep melancholy settled": [65535, 0], "gladness left him and a deep melancholy settled down": [65535, 0], "left him and a deep melancholy settled down upon": [65535, 0], "him and a deep melancholy settled down upon his": [65535, 0], "and a deep melancholy settled down upon his spirit": [65535, 0], "a deep melancholy settled down upon his spirit thirty": [65535, 0], "deep melancholy settled down upon his spirit thirty yards": [65535, 0], "melancholy settled down upon his spirit thirty yards of": [65535, 0], "settled down upon his spirit thirty yards of board": [65535, 0], "down upon his spirit thirty yards of board fence": [65535, 0], "upon his spirit thirty yards of board fence nine": [65535, 0], "his spirit thirty yards of board fence nine feet": [65535, 0], "spirit thirty yards of board fence nine feet high": [65535, 0], "thirty yards of board fence nine feet high life": [65535, 0], "yards of board fence nine feet high life to": [65535, 0], "of board fence nine feet high life to him": [65535, 0], "board fence nine feet high life to him seemed": [65535, 0], "fence nine feet high life to him seemed hollow": [65535, 0], "nine feet high life to him seemed hollow and": [65535, 0], "feet high life to him seemed hollow and existence": [65535, 0], "high life to him seemed hollow and existence but": [65535, 0], "life to him seemed hollow and existence but a": [65535, 0], "to him seemed hollow and existence but a burden": [65535, 0], "him seemed hollow and existence but a burden sighing": [65535, 0], "seemed hollow and existence but a burden sighing he": [65535, 0], "hollow and existence but a burden sighing he dipped": [65535, 0], "and existence but a burden sighing he dipped his": [65535, 0], "existence but a burden sighing he dipped his brush": [65535, 0], "but a burden sighing he dipped his brush and": [65535, 0], "a burden sighing he dipped his brush and passed": [65535, 0], "burden sighing he dipped his brush and passed it": [65535, 0], "sighing he dipped his brush and passed it along": [65535, 0], "he dipped his brush and passed it along the": [65535, 0], "dipped his brush and passed it along the topmost": [65535, 0], "his brush and passed it along the topmost plank": [65535, 0], "brush and passed it along the topmost plank repeated": [65535, 0], "and passed it along the topmost plank repeated the": [65535, 0], "passed it along the topmost plank repeated the operation": [65535, 0], "it along the topmost plank repeated the operation did": [65535, 0], "along the topmost plank repeated the operation did it": [65535, 0], "the topmost plank repeated the operation did it again": [65535, 0], "topmost plank repeated the operation did it again compared": [65535, 0], "plank repeated the operation did it again compared the": [65535, 0], "repeated the operation did it again compared the insignificant": [65535, 0], "the operation did it again compared the insignificant whitewashed": [65535, 0], "operation did it again compared the insignificant whitewashed streak": [65535, 0], "did it again compared the insignificant whitewashed streak with": [65535, 0], "it again compared the insignificant whitewashed streak with the": [65535, 0], "again compared the insignificant whitewashed streak with the far": [65535, 0], "compared the insignificant whitewashed streak with the far reaching": [65535, 0], "the insignificant whitewashed streak with the far reaching continent": [65535, 0], "insignificant whitewashed streak with the far reaching continent of": [65535, 0], "whitewashed streak with the far reaching continent of unwhitewashed": [65535, 0], "streak with the far reaching continent of unwhitewashed fence": [65535, 0], "with the far reaching continent of unwhitewashed fence and": [65535, 0], "the far reaching continent of unwhitewashed fence and sat": [65535, 0], "far reaching continent of unwhitewashed fence and sat down": [65535, 0], "reaching continent of unwhitewashed fence and sat down on": [65535, 0], "continent of unwhitewashed fence and sat down on a": [65535, 0], "of unwhitewashed fence and sat down on a tree": [65535, 0], "unwhitewashed fence and sat down on a tree box": [65535, 0], "fence and sat down on a tree box discouraged": [65535, 0], "and sat down on a tree box discouraged jim": [65535, 0], "sat down on a tree box discouraged jim came": [65535, 0], "down on a tree box discouraged jim came skipping": [65535, 0], "on a tree box discouraged jim came skipping out": [65535, 0], "a tree box discouraged jim came skipping out at": [65535, 0], "tree box discouraged jim came skipping out at the": [65535, 0], "box discouraged jim came skipping out at the gate": [65535, 0], "discouraged jim came skipping out at the gate with": [65535, 0], "jim came skipping out at the gate with a": [65535, 0], "came skipping out at the gate with a tin": [65535, 0], "skipping out at the gate with a tin pail": [65535, 0], "out at the gate with a tin pail and": [65535, 0], "at the gate with a tin pail and singing": [65535, 0], "the gate with a tin pail and singing buffalo": [65535, 0], "gate with a tin pail and singing buffalo gals": [65535, 0], "with a tin pail and singing buffalo gals bringing": [65535, 0], "a tin pail and singing buffalo gals bringing water": [65535, 0], "tin pail and singing buffalo gals bringing water from": [65535, 0], "pail and singing buffalo gals bringing water from the": [65535, 0], "and singing buffalo gals bringing water from the town": [65535, 0], "singing buffalo gals bringing water from the town pump": [65535, 0], "buffalo gals bringing water from the town pump had": [65535, 0], "gals bringing water from the town pump had always": [65535, 0], "bringing water from the town pump had always been": [65535, 0], "water from the town pump had always been hateful": [65535, 0], "from the town pump had always been hateful work": [65535, 0], "the town pump had always been hateful work in": [65535, 0], "town pump had always been hateful work in tom's": [65535, 0], "pump had always been hateful work in tom's eyes": [65535, 0], "had always been hateful work in tom's eyes before": [65535, 0], "always been hateful work in tom's eyes before but": [65535, 0], "been hateful work in tom's eyes before but now": [65535, 0], "hateful work in tom's eyes before but now it": [65535, 0], "work in tom's eyes before but now it did": [65535, 0], "in tom's eyes before but now it did not": [65535, 0], "tom's eyes before but now it did not strike": [65535, 0], "eyes before but now it did not strike him": [65535, 0], "before but now it did not strike him so": [65535, 0], "but now it did not strike him so he": [65535, 0], "now it did not strike him so he remembered": [65535, 0], "it did not strike him so he remembered that": [65535, 0], "did not strike him so he remembered that there": [65535, 0], "not strike him so he remembered that there was": [65535, 0], "strike him so he remembered that there was company": [65535, 0], "him so he remembered that there was company at": [65535, 0], "so he remembered that there was company at the": [65535, 0], "he remembered that there was company at the pump": [65535, 0], "remembered that there was company at the pump white": [65535, 0], "that there was company at the pump white mulatto": [65535, 0], "there was company at the pump white mulatto and": [65535, 0], "was company at the pump white mulatto and negro": [65535, 0], "company at the pump white mulatto and negro boys": [65535, 0], "at the pump white mulatto and negro boys and": [65535, 0], "the pump white mulatto and negro boys and girls": [65535, 0], "pump white mulatto and negro boys and girls were": [65535, 0], "white mulatto and negro boys and girls were always": [65535, 0], "mulatto and negro boys and girls were always there": [65535, 0], "and negro boys and girls were always there waiting": [65535, 0], "negro boys and girls were always there waiting their": [65535, 0], "boys and girls were always there waiting their turns": [65535, 0], "and girls were always there waiting their turns resting": [65535, 0], "girls were always there waiting their turns resting trading": [65535, 0], "were always there waiting their turns resting trading playthings": [65535, 0], "always there waiting their turns resting trading playthings quarrelling": [65535, 0], "there waiting their turns resting trading playthings quarrelling fighting": [65535, 0], "waiting their turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "their turns resting trading playthings quarrelling fighting skylarking and": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking and he": [65535, 0], "resting trading playthings quarrelling fighting skylarking and he remembered": [65535, 0], "trading playthings quarrelling fighting skylarking and he remembered that": [65535, 0], "playthings quarrelling fighting skylarking and he remembered that although": [65535, 0], "quarrelling fighting skylarking and he remembered that although the": [65535, 0], "fighting skylarking and he remembered that although the pump": [65535, 0], "skylarking and he remembered that although the pump was": [65535, 0], "and he remembered that although the pump was only": [65535, 0], "he remembered that although the pump was only a": [65535, 0], "remembered that although the pump was only a hundred": [65535, 0], "that although the pump was only a hundred and": [65535, 0], "although the pump was only a hundred and fifty": [65535, 0], "the pump was only a hundred and fifty yards": [65535, 0], "pump was only a hundred and fifty yards off": [65535, 0], "was only a hundred and fifty yards off jim": [65535, 0], "only a hundred and fifty yards off jim never": [65535, 0], "a hundred and fifty yards off jim never got": [65535, 0], "hundred and fifty yards off jim never got back": [65535, 0], "and fifty yards off jim never got back with": [65535, 0], "fifty yards off jim never got back with a": [65535, 0], "yards off jim never got back with a bucket": [65535, 0], "off jim never got back with a bucket of": [65535, 0], "jim never got back with a bucket of water": [65535, 0], "never got back with a bucket of water under": [65535, 0], "got back with a bucket of water under an": [65535, 0], "back with a bucket of water under an hour": [65535, 0], "with a bucket of water under an hour and": [65535, 0], "a bucket of water under an hour and even": [65535, 0], "bucket of water under an hour and even then": [65535, 0], "of water under an hour and even then somebody": [65535, 0], "water under an hour and even then somebody generally": [65535, 0], "under an hour and even then somebody generally had": [65535, 0], "an hour and even then somebody generally had to": [65535, 0], "hour and even then somebody generally had to go": [65535, 0], "and even then somebody generally had to go after": [65535, 0], "even then somebody generally had to go after him": [65535, 0], "then somebody generally had to go after him tom": [65535, 0], "somebody generally had to go after him tom said": [65535, 0], "generally had to go after him tom said say": [65535, 0], "had to go after him tom said say jim": [65535, 0], "to go after him tom said say jim i'll": [65535, 0], "go after him tom said say jim i'll fetch": [65535, 0], "after him tom said say jim i'll fetch the": [65535, 0], "him tom said say jim i'll fetch the water": [65535, 0], "tom said say jim i'll fetch the water if": [65535, 0], "said say jim i'll fetch the water if you'll": [65535, 0], "say jim i'll fetch the water if you'll whitewash": [65535, 0], "jim i'll fetch the water if you'll whitewash some": [65535, 0], "i'll fetch the water if you'll whitewash some jim": [65535, 0], "fetch the water if you'll whitewash some jim shook": [65535, 0], "the water if you'll whitewash some jim shook his": [65535, 0], "water if you'll whitewash some jim shook his head": [65535, 0], "if you'll whitewash some jim shook his head and": [65535, 0], "you'll whitewash some jim shook his head and said": [65535, 0], "whitewash some jim shook his head and said can't": [65535, 0], "some jim shook his head and said can't mars": [65535, 0], "jim shook his head and said can't mars tom": [65535, 0], "shook his head and said can't mars tom ole": [65535, 0], "his head and said can't mars tom ole missis": [65535, 0], "head and said can't mars tom ole missis she": [65535, 0], "and said can't mars tom ole missis she tole": [65535, 0], "said can't mars tom ole missis she tole me": [65535, 0], "can't mars tom ole missis she tole me i": [65535, 0], "mars tom ole missis she tole me i got": [65535, 0], "tom ole missis she tole me i got to": [65535, 0], "ole missis she tole me i got to go": [65535, 0], "missis she tole me i got to go an'": [65535, 0], "she tole me i got to go an' git": [65535, 0], "tole me i got to go an' git dis": [65535, 0], "me i got to go an' git dis water": [65535, 0], "i got to go an' git dis water an'": [65535, 0], "got to go an' git dis water an' not": [65535, 0], "to go an' git dis water an' not stop": [65535, 0], "go an' git dis water an' not stop foolin'": [65535, 0], "an' git dis water an' not stop foolin' roun'": [65535, 0], "git dis water an' not stop foolin' roun' wid": [65535, 0], "dis water an' not stop foolin' roun' wid anybody": [65535, 0], "water an' not stop foolin' roun' wid anybody she": [65535, 0], "an' not stop foolin' roun' wid anybody she say": [65535, 0], "not stop foolin' roun' wid anybody she say she": [65535, 0], "stop foolin' roun' wid anybody she say she spec'": [65535, 0], "foolin' roun' wid anybody she say she spec' mars": [65535, 0], "roun' wid anybody she say she spec' mars tom": [65535, 0], "wid anybody she say she spec' mars tom gwine": [65535, 0], "anybody she say she spec' mars tom gwine to": [65535, 0], "she say she spec' mars tom gwine to ax": [65535, 0], "say she spec' mars tom gwine to ax me": [65535, 0], "she spec' mars tom gwine to ax me to": [65535, 0], "spec' mars tom gwine to ax me to whitewash": [65535, 0], "mars tom gwine to ax me to whitewash an'": [65535, 0], "tom gwine to ax me to whitewash an' so": [65535, 0], "gwine to ax me to whitewash an' so she": [65535, 0], "to ax me to whitewash an' so she tole": [65535, 0], "ax me to whitewash an' so she tole me": [65535, 0], "me to whitewash an' so she tole me go": [65535, 0], "to whitewash an' so she tole me go 'long": [65535, 0], "whitewash an' so she tole me go 'long an'": [65535, 0], "an' so she tole me go 'long an' 'tend": [65535, 0], "so she tole me go 'long an' 'tend to": [65535, 0], "she tole me go 'long an' 'tend to my": [65535, 0], "tole me go 'long an' 'tend to my own": [65535, 0], "me go 'long an' 'tend to my own business": [65535, 0], "go 'long an' 'tend to my own business she": [65535, 0], "'long an' 'tend to my own business she 'lowed": [65535, 0], "an' 'tend to my own business she 'lowed she'd": [65535, 0], "'tend to my own business she 'lowed she'd 'tend": [65535, 0], "to my own business she 'lowed she'd 'tend to": [65535, 0], "my own business she 'lowed she'd 'tend to de": [65535, 0], "own business she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "business she 'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "she 'lowed she'd 'tend to de whitewashin' oh never": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh never you": [65535, 0], "she'd 'tend to de whitewashin' oh never you mind": [65535, 0], "'tend to de whitewashin' oh never you mind what": [65535, 0], "to de whitewashin' oh never you mind what she": [65535, 0], "de whitewashin' oh never you mind what she said": [65535, 0], "whitewashin' oh never you mind what she said jim": [65535, 0], "oh never you mind what she said jim that's": [65535, 0], "never you mind what she said jim that's the": [65535, 0], "you mind what she said jim that's the way": [65535, 0], "mind what she said jim that's the way she": [65535, 0], "what she said jim that's the way she always": [65535, 0], "she said jim that's the way she always talks": [65535, 0], "said jim that's the way she always talks gimme": [65535, 0], "jim that's the way she always talks gimme the": [65535, 0], "that's the way she always talks gimme the bucket": [65535, 0], "the way she always talks gimme the bucket i": [65535, 0], "way she always talks gimme the bucket i won't": [65535, 0], "she always talks gimme the bucket i won't be": [65535, 0], "always talks gimme the bucket i won't be gone": [65535, 0], "talks gimme the bucket i won't be gone only": [65535, 0], "gimme the bucket i won't be gone only a": [65535, 0], "the bucket i won't be gone only a minute": [65535, 0], "bucket i won't be gone only a minute she": [65535, 0], "i won't be gone only a minute she won't": [65535, 0], "won't be gone only a minute she won't ever": [65535, 0], "be gone only a minute she won't ever know": [65535, 0], "gone only a minute she won't ever know oh": [65535, 0], "only a minute she won't ever know oh i": [65535, 0], "a minute she won't ever know oh i dasn't": [65535, 0], "minute she won't ever know oh i dasn't mars": [65535, 0], "she won't ever know oh i dasn't mars tom": [65535, 0], "won't ever know oh i dasn't mars tom ole": [65535, 0], "ever know oh i dasn't mars tom ole missis": [65535, 0], "know oh i dasn't mars tom ole missis she'd": [65535, 0], "oh i dasn't mars tom ole missis she'd take": [65535, 0], "i dasn't mars tom ole missis she'd take an'": [65535, 0], "dasn't mars tom ole missis she'd take an' tar": [65535, 0], "mars tom ole missis she'd take an' tar de": [65535, 0], "tom ole missis she'd take an' tar de head": [65535, 0], "ole missis she'd take an' tar de head off'n": [65535, 0], "missis she'd take an' tar de head off'n me": [65535, 0], "she'd take an' tar de head off'n me 'deed": [65535, 0], "take an' tar de head off'n me 'deed she": [65535, 0], "an' tar de head off'n me 'deed she would": [65535, 0], "tar de head off'n me 'deed she would she": [65535, 0], "de head off'n me 'deed she would she she": [65535, 0], "head off'n me 'deed she would she she never": [65535, 0], "off'n me 'deed she would she she never licks": [65535, 0], "me 'deed she would she she never licks anybody": [65535, 0], "'deed she would she she never licks anybody whacks": [65535, 0], "she would she she never licks anybody whacks 'em": [65535, 0], "would she she never licks anybody whacks 'em over": [65535, 0], "she she never licks anybody whacks 'em over the": [65535, 0], "she never licks anybody whacks 'em over the head": [65535, 0], "never licks anybody whacks 'em over the head with": [65535, 0], "licks anybody whacks 'em over the head with her": [65535, 0], "anybody whacks 'em over the head with her thimble": [65535, 0], "whacks 'em over the head with her thimble and": [65535, 0], "'em over the head with her thimble and who": [65535, 0], "over the head with her thimble and who cares": [65535, 0], "the head with her thimble and who cares for": [65535, 0], "head with her thimble and who cares for that": [65535, 0], "with her thimble and who cares for that i'd": [65535, 0], "her thimble and who cares for that i'd like": [65535, 0], "thimble and who cares for that i'd like to": [65535, 0], "and who cares for that i'd like to know": [65535, 0], "who cares for that i'd like to know she": [65535, 0], "cares for that i'd like to know she talks": [65535, 0], "for that i'd like to know she talks awful": [65535, 0], "that i'd like to know she talks awful but": [65535, 0], "i'd like to know she talks awful but talk": [65535, 0], "like to know she talks awful but talk don't": [65535, 0], "to know she talks awful but talk don't hurt": [65535, 0], "know she talks awful but talk don't hurt anyways": [65535, 0], "she talks awful but talk don't hurt anyways it": [65535, 0], "talks awful but talk don't hurt anyways it don't": [65535, 0], "awful but talk don't hurt anyways it don't if": [65535, 0], "but talk don't hurt anyways it don't if she": [65535, 0], "talk don't hurt anyways it don't if she don't": [65535, 0], "don't hurt anyways it don't if she don't cry": [65535, 0], "hurt anyways it don't if she don't cry jim": [65535, 0], "anyways it don't if she don't cry jim i'll": [65535, 0], "it don't if she don't cry jim i'll give": [65535, 0], "don't if she don't cry jim i'll give you": [65535, 0], "if she don't cry jim i'll give you a": [65535, 0], "she don't cry jim i'll give you a marvel": [65535, 0], "don't cry jim i'll give you a marvel i'll": [65535, 0], "cry jim i'll give you a marvel i'll give": [65535, 0], "jim i'll give you a marvel i'll give you": [65535, 0], "i'll give you a marvel i'll give you a": [65535, 0], "give you a marvel i'll give you a white": [65535, 0], "you a marvel i'll give you a white alley": [65535, 0], "a marvel i'll give you a white alley jim": [65535, 0], "marvel i'll give you a white alley jim began": [65535, 0], "i'll give you a white alley jim began to": [65535, 0], "give you a white alley jim began to waver": [65535, 0], "you a white alley jim began to waver white": [65535, 0], "a white alley jim began to waver white alley": [65535, 0], "white alley jim began to waver white alley jim": [65535, 0], "alley jim began to waver white alley jim and": [65535, 0], "jim began to waver white alley jim and it's": [65535, 0], "began to waver white alley jim and it's a": [65535, 0], "to waver white alley jim and it's a bully": [65535, 0], "waver white alley jim and it's a bully taw": [65535, 0], "white alley jim and it's a bully taw my": [65535, 0], "alley jim and it's a bully taw my dat's": [65535, 0], "jim and it's a bully taw my dat's a": [65535, 0], "and it's a bully taw my dat's a mighty": [65535, 0], "it's a bully taw my dat's a mighty gay": [65535, 0], "a bully taw my dat's a mighty gay marvel": [65535, 0], "bully taw my dat's a mighty gay marvel i": [65535, 0], "taw my dat's a mighty gay marvel i tell": [65535, 0], "my dat's a mighty gay marvel i tell you": [65535, 0], "dat's a mighty gay marvel i tell you but": [65535, 0], "a mighty gay marvel i tell you but mars": [65535, 0], "mighty gay marvel i tell you but mars tom": [65535, 0], "gay marvel i tell you but mars tom i's": [65535, 0], "marvel i tell you but mars tom i's powerful": [65535, 0], "i tell you but mars tom i's powerful 'fraid": [65535, 0], "tell you but mars tom i's powerful 'fraid ole": [65535, 0], "you but mars tom i's powerful 'fraid ole missis": [65535, 0], "but mars tom i's powerful 'fraid ole missis and": [65535, 0], "mars tom i's powerful 'fraid ole missis and besides": [65535, 0], "tom i's powerful 'fraid ole missis and besides if": [65535, 0], "i's powerful 'fraid ole missis and besides if you": [65535, 0], "powerful 'fraid ole missis and besides if you will": [65535, 0], "'fraid ole missis and besides if you will i'll": [65535, 0], "ole missis and besides if you will i'll show": [65535, 0], "missis and besides if you will i'll show you": [65535, 0], "and besides if you will i'll show you my": [65535, 0], "besides if you will i'll show you my sore": [65535, 0], "if you will i'll show you my sore toe": [65535, 0], "you will i'll show you my sore toe jim": [65535, 0], "will i'll show you my sore toe jim was": [65535, 0], "i'll show you my sore toe jim was only": [65535, 0], "show you my sore toe jim was only human": [65535, 0], "you my sore toe jim was only human this": [65535, 0], "my sore toe jim was only human this attraction": [65535, 0], "sore toe jim was only human this attraction was": [65535, 0], "toe jim was only human this attraction was too": [65535, 0], "jim was only human this attraction was too much": [65535, 0], "was only human this attraction was too much for": [65535, 0], "only human this attraction was too much for him": [65535, 0], "human this attraction was too much for him he": [65535, 0], "this attraction was too much for him he put": [65535, 0], "attraction was too much for him he put down": [65535, 0], "was too much for him he put down his": [65535, 0], "too much for him he put down his pail": [65535, 0], "much for him he put down his pail took": [65535, 0], "for him he put down his pail took the": [65535, 0], "him he put down his pail took the white": [65535, 0], "he put down his pail took the white alley": [65535, 0], "put down his pail took the white alley and": [65535, 0], "down his pail took the white alley and bent": [65535, 0], "his pail took the white alley and bent over": [65535, 0], "pail took the white alley and bent over the": [65535, 0], "took the white alley and bent over the toe": [65535, 0], "the white alley and bent over the toe with": [65535, 0], "white alley and bent over the toe with absorbing": [65535, 0], "alley and bent over the toe with absorbing interest": [65535, 0], "and bent over the toe with absorbing interest while": [65535, 0], "bent over the toe with absorbing interest while the": [65535, 0], "over the toe with absorbing interest while the bandage": [65535, 0], "the toe with absorbing interest while the bandage was": [65535, 0], "toe with absorbing interest while the bandage was being": [65535, 0], "with absorbing interest while the bandage was being unwound": [65535, 0], "absorbing interest while the bandage was being unwound in": [65535, 0], "interest while the bandage was being unwound in another": [65535, 0], "while the bandage was being unwound in another moment": [65535, 0], "the bandage was being unwound in another moment he": [65535, 0], "bandage was being unwound in another moment he was": [65535, 0], "was being unwound in another moment he was flying": [65535, 0], "being unwound in another moment he was flying down": [65535, 0], "unwound in another moment he was flying down the": [65535, 0], "in another moment he was flying down the street": [65535, 0], "another moment he was flying down the street with": [65535, 0], "moment he was flying down the street with his": [65535, 0], "he was flying down the street with his pail": [65535, 0], "was flying down the street with his pail and": [65535, 0], "flying down the street with his pail and a": [65535, 0], "down the street with his pail and a tingling": [65535, 0], "the street with his pail and a tingling rear": [65535, 0], "street with his pail and a tingling rear tom": [65535, 0], "with his pail and a tingling rear tom was": [65535, 0], "his pail and a tingling rear tom was whitewashing": [65535, 0], "pail and a tingling rear tom was whitewashing with": [65535, 0], "and a tingling rear tom was whitewashing with vigor": [65535, 0], "a tingling rear tom was whitewashing with vigor and": [65535, 0], "tingling rear tom was whitewashing with vigor and aunt": [65535, 0], "rear tom was whitewashing with vigor and aunt polly": [65535, 0], "tom was whitewashing with vigor and aunt polly was": [65535, 0], "was whitewashing with vigor and aunt polly was retiring": [65535, 0], "whitewashing with vigor and aunt polly was retiring from": [65535, 0], "with vigor and aunt polly was retiring from the": [65535, 0], "vigor and aunt polly was retiring from the field": [65535, 0], "and aunt polly was retiring from the field with": [65535, 0], "aunt polly was retiring from the field with a": [65535, 0], "polly was retiring from the field with a slipper": [65535, 0], "was retiring from the field with a slipper in": [65535, 0], "retiring from the field with a slipper in her": [65535, 0], "from the field with a slipper in her hand": [65535, 0], "the field with a slipper in her hand and": [65535, 0], "field with a slipper in her hand and triumph": [65535, 0], "with a slipper in her hand and triumph in": [65535, 0], "a slipper in her hand and triumph in her": [65535, 0], "slipper in her hand and triumph in her eye": [65535, 0], "in her hand and triumph in her eye but": [65535, 0], "her hand and triumph in her eye but tom's": [65535, 0], "hand and triumph in her eye but tom's energy": [65535, 0], "and triumph in her eye but tom's energy did": [65535, 0], "triumph in her eye but tom's energy did not": [65535, 0], "in her eye but tom's energy did not last": [65535, 0], "her eye but tom's energy did not last he": [65535, 0], "eye but tom's energy did not last he began": [65535, 0], "but tom's energy did not last he began to": [65535, 0], "tom's energy did not last he began to think": [65535, 0], "energy did not last he began to think of": [65535, 0], "did not last he began to think of the": [65535, 0], "not last he began to think of the fun": [65535, 0], "last he began to think of the fun he": [65535, 0], "he began to think of the fun he had": [65535, 0], "began to think of the fun he had planned": [65535, 0], "to think of the fun he had planned for": [65535, 0], "think of the fun he had planned for this": [65535, 0], "of the fun he had planned for this day": [65535, 0], "the fun he had planned for this day and": [65535, 0], "fun he had planned for this day and his": [65535, 0], "he had planned for this day and his sorrows": [65535, 0], "had planned for this day and his sorrows multiplied": [65535, 0], "planned for this day and his sorrows multiplied soon": [65535, 0], "for this day and his sorrows multiplied soon the": [65535, 0], "this day and his sorrows multiplied soon the free": [65535, 0], "day and his sorrows multiplied soon the free boys": [65535, 0], "and his sorrows multiplied soon the free boys would": [65535, 0], "his sorrows multiplied soon the free boys would come": [65535, 0], "sorrows multiplied soon the free boys would come tripping": [65535, 0], "multiplied soon the free boys would come tripping along": [65535, 0], "soon the free boys would come tripping along on": [65535, 0], "the free boys would come tripping along on all": [65535, 0], "free boys would come tripping along on all sorts": [65535, 0], "boys would come tripping along on all sorts of": [65535, 0], "would come tripping along on all sorts of delicious": [65535, 0], "come tripping along on all sorts of delicious expeditions": [65535, 0], "tripping along on all sorts of delicious expeditions and": [65535, 0], "along on all sorts of delicious expeditions and they": [65535, 0], "on all sorts of delicious expeditions and they would": [65535, 0], "all sorts of delicious expeditions and they would make": [65535, 0], "sorts of delicious expeditions and they would make a": [65535, 0], "of delicious expeditions and they would make a world": [65535, 0], "delicious expeditions and they would make a world of": [65535, 0], "expeditions and they would make a world of fun": [65535, 0], "and they would make a world of fun of": [65535, 0], "they would make a world of fun of him": [65535, 0], "would make a world of fun of him for": [65535, 0], "make a world of fun of him for having": [65535, 0], "a world of fun of him for having to": [65535, 0], "world of fun of him for having to work": [65535, 0], "of fun of him for having to work the": [65535, 0], "fun of him for having to work the very": [65535, 0], "of him for having to work the very thought": [65535, 0], "him for having to work the very thought of": [65535, 0], "for having to work the very thought of it": [65535, 0], "having to work the very thought of it burnt": [65535, 0], "to work the very thought of it burnt him": [65535, 0], "work the very thought of it burnt him like": [65535, 0], "the very thought of it burnt him like fire": [65535, 0], "very thought of it burnt him like fire he": [65535, 0], "thought of it burnt him like fire he got": [65535, 0], "of it burnt him like fire he got out": [65535, 0], "it burnt him like fire he got out his": [65535, 0], "burnt him like fire he got out his worldly": [65535, 0], "him like fire he got out his worldly wealth": [65535, 0], "like fire he got out his worldly wealth and": [65535, 0], "fire he got out his worldly wealth and examined": [65535, 0], "he got out his worldly wealth and examined it": [65535, 0], "got out his worldly wealth and examined it bits": [65535, 0], "out his worldly wealth and examined it bits of": [65535, 0], "his worldly wealth and examined it bits of toys": [65535, 0], "worldly wealth and examined it bits of toys marbles": [65535, 0], "wealth and examined it bits of toys marbles and": [65535, 0], "and examined it bits of toys marbles and trash": [65535, 0], "examined it bits of toys marbles and trash enough": [65535, 0], "it bits of toys marbles and trash enough to": [65535, 0], "bits of toys marbles and trash enough to buy": [65535, 0], "of toys marbles and trash enough to buy an": [65535, 0], "toys marbles and trash enough to buy an exchange": [65535, 0], "marbles and trash enough to buy an exchange of": [65535, 0], "and trash enough to buy an exchange of work": [65535, 0], "trash enough to buy an exchange of work maybe": [65535, 0], "enough to buy an exchange of work maybe but": [65535, 0], "to buy an exchange of work maybe but not": [65535, 0], "buy an exchange of work maybe but not half": [65535, 0], "an exchange of work maybe but not half enough": [65535, 0], "exchange of work maybe but not half enough to": [65535, 0], "of work maybe but not half enough to buy": [65535, 0], "work maybe but not half enough to buy so": [65535, 0], "maybe but not half enough to buy so much": [65535, 0], "but not half enough to buy so much as": [65535, 0], "not half enough to buy so much as half": [65535, 0], "half enough to buy so much as half an": [65535, 0], "enough to buy so much as half an hour": [65535, 0], "to buy so much as half an hour of": [65535, 0], "buy so much as half an hour of pure": [65535, 0], "so much as half an hour of pure freedom": [65535, 0], "much as half an hour of pure freedom so": [65535, 0], "as half an hour of pure freedom so he": [65535, 0], "half an hour of pure freedom so he returned": [65535, 0], "an hour of pure freedom so he returned his": [65535, 0], "hour of pure freedom so he returned his straitened": [65535, 0], "of pure freedom so he returned his straitened means": [65535, 0], "pure freedom so he returned his straitened means to": [65535, 0], "freedom so he returned his straitened means to his": [65535, 0], "so he returned his straitened means to his pocket": [65535, 0], "he returned his straitened means to his pocket and": [65535, 0], "returned his straitened means to his pocket and gave": [65535, 0], "his straitened means to his pocket and gave up": [65535, 0], "straitened means to his pocket and gave up the": [65535, 0], "means to his pocket and gave up the idea": [65535, 0], "to his pocket and gave up the idea of": [65535, 0], "his pocket and gave up the idea of trying": [65535, 0], "pocket and gave up the idea of trying to": [65535, 0], "and gave up the idea of trying to buy": [65535, 0], "gave up the idea of trying to buy the": [65535, 0], "up the idea of trying to buy the boys": [65535, 0], "the idea of trying to buy the boys at": [65535, 0], "idea of trying to buy the boys at this": [65535, 0], "of trying to buy the boys at this dark": [65535, 0], "trying to buy the boys at this dark and": [65535, 0], "to buy the boys at this dark and hopeless": [65535, 0], "buy the boys at this dark and hopeless moment": [65535, 0], "the boys at this dark and hopeless moment an": [65535, 0], "boys at this dark and hopeless moment an inspiration": [65535, 0], "at this dark and hopeless moment an inspiration burst": [65535, 0], "this dark and hopeless moment an inspiration burst upon": [65535, 0], "dark and hopeless moment an inspiration burst upon him": [65535, 0], "and hopeless moment an inspiration burst upon him nothing": [65535, 0], "hopeless moment an inspiration burst upon him nothing less": [65535, 0], "moment an inspiration burst upon him nothing less than": [65535, 0], "an inspiration burst upon him nothing less than a": [65535, 0], "inspiration burst upon him nothing less than a great": [65535, 0], "burst upon him nothing less than a great magnificent": [65535, 0], "upon him nothing less than a great magnificent inspiration": [65535, 0], "him nothing less than a great magnificent inspiration he": [65535, 0], "nothing less than a great magnificent inspiration he took": [65535, 0], "less than a great magnificent inspiration he took up": [65535, 0], "than a great magnificent inspiration he took up his": [65535, 0], "a great magnificent inspiration he took up his brush": [65535, 0], "great magnificent inspiration he took up his brush and": [65535, 0], "magnificent inspiration he took up his brush and went": [65535, 0], "inspiration he took up his brush and went tranquilly": [65535, 0], "he took up his brush and went tranquilly to": [65535, 0], "took up his brush and went tranquilly to work": [65535, 0], "up his brush and went tranquilly to work ben": [65535, 0], "his brush and went tranquilly to work ben rogers": [65535, 0], "brush and went tranquilly to work ben rogers hove": [65535, 0], "and went tranquilly to work ben rogers hove in": [65535, 0], "went tranquilly to work ben rogers hove in sight": [65535, 0], "tranquilly to work ben rogers hove in sight presently": [65535, 0], "to work ben rogers hove in sight presently the": [65535, 0], "work ben rogers hove in sight presently the very": [65535, 0], "ben rogers hove in sight presently the very boy": [65535, 0], "rogers hove in sight presently the very boy of": [65535, 0], "hove in sight presently the very boy of all": [65535, 0], "in sight presently the very boy of all boys": [65535, 0], "sight presently the very boy of all boys whose": [65535, 0], "presently the very boy of all boys whose ridicule": [65535, 0], "the very boy of all boys whose ridicule he": [65535, 0], "very boy of all boys whose ridicule he had": [65535, 0], "boy of all boys whose ridicule he had been": [65535, 0], "of all boys whose ridicule he had been dreading": [65535, 0], "all boys whose ridicule he had been dreading ben's": [65535, 0], "boys whose ridicule he had been dreading ben's gait": [65535, 0], "whose ridicule he had been dreading ben's gait was": [65535, 0], "ridicule he had been dreading ben's gait was the": [65535, 0], "he had been dreading ben's gait was the hop": [65535, 0], "had been dreading ben's gait was the hop skip": [65535, 0], "been dreading ben's gait was the hop skip and": [65535, 0], "dreading ben's gait was the hop skip and jump": [65535, 0], "ben's gait was the hop skip and jump proof": [65535, 0], "gait was the hop skip and jump proof enough": [65535, 0], "was the hop skip and jump proof enough that": [65535, 0], "the hop skip and jump proof enough that his": [65535, 0], "hop skip and jump proof enough that his heart": [65535, 0], "skip and jump proof enough that his heart was": [65535, 0], "and jump proof enough that his heart was light": [65535, 0], "jump proof enough that his heart was light and": [65535, 0], "proof enough that his heart was light and his": [65535, 0], "enough that his heart was light and his anticipations": [65535, 0], "that his heart was light and his anticipations high": [65535, 0], "his heart was light and his anticipations high he": [65535, 0], "heart was light and his anticipations high he was": [65535, 0], "was light and his anticipations high he was eating": [65535, 0], "light and his anticipations high he was eating an": [65535, 0], "and his anticipations high he was eating an apple": [65535, 0], "his anticipations high he was eating an apple and": [65535, 0], "anticipations high he was eating an apple and giving": [65535, 0], "high he was eating an apple and giving a": [65535, 0], "he was eating an apple and giving a long": [65535, 0], "was eating an apple and giving a long melodious": [65535, 0], "eating an apple and giving a long melodious whoop": [65535, 0], "an apple and giving a long melodious whoop at": [65535, 0], "apple and giving a long melodious whoop at intervals": [65535, 0], "and giving a long melodious whoop at intervals followed": [65535, 0], "giving a long melodious whoop at intervals followed by": [65535, 0], "a long melodious whoop at intervals followed by a": [65535, 0], "long melodious whoop at intervals followed by a deep": [65535, 0], "melodious whoop at intervals followed by a deep toned": [65535, 0], "whoop at intervals followed by a deep toned ding": [65535, 0], "at intervals followed by a deep toned ding dong": [65535, 0], "intervals followed by a deep toned ding dong dong": [65535, 0], "followed by a deep toned ding dong dong ding": [65535, 0], "by a deep toned ding dong dong ding dong": [65535, 0], "a deep toned ding dong dong ding dong dong": [65535, 0], "deep toned ding dong dong ding dong dong for": [65535, 0], "toned ding dong dong ding dong dong for he": [65535, 0], "ding dong dong ding dong dong for he was": [65535, 0], "dong dong ding dong dong for he was personating": [65535, 0], "dong ding dong dong for he was personating a": [65535, 0], "ding dong dong for he was personating a steamboat": [65535, 0], "dong dong for he was personating a steamboat as": [65535, 0], "dong for he was personating a steamboat as he": [65535, 0], "for he was personating a steamboat as he drew": [65535, 0], "he was personating a steamboat as he drew near": [65535, 0], "was personating a steamboat as he drew near he": [65535, 0], "personating a steamboat as he drew near he slackened": [65535, 0], "a steamboat as he drew near he slackened speed": [65535, 0], "steamboat as he drew near he slackened speed took": [65535, 0], "as he drew near he slackened speed took the": [65535, 0], "he drew near he slackened speed took the middle": [65535, 0], "drew near he slackened speed took the middle of": [65535, 0], "near he slackened speed took the middle of the": [65535, 0], "he slackened speed took the middle of the street": [65535, 0], "slackened speed took the middle of the street leaned": [65535, 0], "speed took the middle of the street leaned far": [65535, 0], "took the middle of the street leaned far over": [65535, 0], "the middle of the street leaned far over to": [65535, 0], "middle of the street leaned far over to starboard": [65535, 0], "of the street leaned far over to starboard and": [65535, 0], "the street leaned far over to starboard and rounded": [65535, 0], "street leaned far over to starboard and rounded to": [65535, 0], "leaned far over to starboard and rounded to ponderously": [65535, 0], "far over to starboard and rounded to ponderously and": [65535, 0], "over to starboard and rounded to ponderously and with": [65535, 0], "to starboard and rounded to ponderously and with laborious": [65535, 0], "starboard and rounded to ponderously and with laborious pomp": [65535, 0], "and rounded to ponderously and with laborious pomp and": [65535, 0], "rounded to ponderously and with laborious pomp and circumstance": [65535, 0], "to ponderously and with laborious pomp and circumstance for": [65535, 0], "ponderously and with laborious pomp and circumstance for he": [65535, 0], "and with laborious pomp and circumstance for he was": [65535, 0], "with laborious pomp and circumstance for he was personating": [65535, 0], "laborious pomp and circumstance for he was personating the": [65535, 0], "pomp and circumstance for he was personating the big": [65535, 0], "and circumstance for he was personating the big missouri": [65535, 0], "circumstance for he was personating the big missouri and": [65535, 0], "for he was personating the big missouri and considered": [65535, 0], "he was personating the big missouri and considered himself": [65535, 0], "was personating the big missouri and considered himself to": [65535, 0], "personating the big missouri and considered himself to be": [65535, 0], "the big missouri and considered himself to be drawing": [65535, 0], "big missouri and considered himself to be drawing nine": [65535, 0], "missouri and considered himself to be drawing nine feet": [65535, 0], "and considered himself to be drawing nine feet of": [65535, 0], "considered himself to be drawing nine feet of water": [65535, 0], "himself to be drawing nine feet of water he": [65535, 0], "to be drawing nine feet of water he was": [65535, 0], "be drawing nine feet of water he was boat": [65535, 0], "drawing nine feet of water he was boat and": [65535, 0], "nine feet of water he was boat and captain": [65535, 0], "feet of water he was boat and captain and": [65535, 0], "of water he was boat and captain and engine": [65535, 0], "water he was boat and captain and engine bells": [65535, 0], "he was boat and captain and engine bells combined": [65535, 0], "was boat and captain and engine bells combined so": [65535, 0], "boat and captain and engine bells combined so he": [65535, 0], "and captain and engine bells combined so he had": [65535, 0], "captain and engine bells combined so he had to": [65535, 0], "and engine bells combined so he had to imagine": [65535, 0], "engine bells combined so he had to imagine himself": [65535, 0], "bells combined so he had to imagine himself standing": [65535, 0], "combined so he had to imagine himself standing on": [65535, 0], "so he had to imagine himself standing on his": [65535, 0], "he had to imagine himself standing on his own": [65535, 0], "had to imagine himself standing on his own hurricane": [65535, 0], "to imagine himself standing on his own hurricane deck": [65535, 0], "imagine himself standing on his own hurricane deck giving": [65535, 0], "himself standing on his own hurricane deck giving the": [65535, 0], "standing on his own hurricane deck giving the orders": [65535, 0], "on his own hurricane deck giving the orders and": [65535, 0], "his own hurricane deck giving the orders and executing": [65535, 0], "own hurricane deck giving the orders and executing them": [65535, 0], "hurricane deck giving the orders and executing them stop": [65535, 0], "deck giving the orders and executing them stop her": [65535, 0], "giving the orders and executing them stop her sir": [65535, 0], "the orders and executing them stop her sir ting": [65535, 0], "orders and executing them stop her sir ting a": [65535, 0], "and executing them stop her sir ting a ling": [65535, 0], "executing them stop her sir ting a ling ling": [65535, 0], "them stop her sir ting a ling ling the": [65535, 0], "stop her sir ting a ling ling the headway": [65535, 0], "her sir ting a ling ling the headway ran": [65535, 0], "sir ting a ling ling the headway ran almost": [65535, 0], "ting a ling ling the headway ran almost out": [65535, 0], "a ling ling the headway ran almost out and": [65535, 0], "ling ling the headway ran almost out and he": [65535, 0], "ling the headway ran almost out and he drew": [65535, 0], "the headway ran almost out and he drew up": [65535, 0], "headway ran almost out and he drew up slowly": [65535, 0], "ran almost out and he drew up slowly toward": [65535, 0], "almost out and he drew up slowly toward the": [65535, 0], "out and he drew up slowly toward the sidewalk": [65535, 0], "and he drew up slowly toward the sidewalk ship": [65535, 0], "he drew up slowly toward the sidewalk ship up": [65535, 0], "drew up slowly toward the sidewalk ship up to": [65535, 0], "up slowly toward the sidewalk ship up to back": [65535, 0], "slowly toward the sidewalk ship up to back ting": [65535, 0], "toward the sidewalk ship up to back ting a": [65535, 0], "the sidewalk ship up to back ting a ling": [65535, 0], "sidewalk ship up to back ting a ling ling": [65535, 0], "ship up to back ting a ling ling his": [65535, 0], "up to back ting a ling ling his arms": [65535, 0], "to back ting a ling ling his arms straightened": [65535, 0], "back ting a ling ling his arms straightened and": [65535, 0], "ting a ling ling his arms straightened and stiffened": [65535, 0], "a ling ling his arms straightened and stiffened down": [65535, 0], "ling ling his arms straightened and stiffened down his": [65535, 0], "ling his arms straightened and stiffened down his sides": [65535, 0], "his arms straightened and stiffened down his sides set": [65535, 0], "arms straightened and stiffened down his sides set her": [65535, 0], "straightened and stiffened down his sides set her back": [65535, 0], "and stiffened down his sides set her back on": [65535, 0], "stiffened down his sides set her back on the": [65535, 0], "down his sides set her back on the stabboard": [65535, 0], "his sides set her back on the stabboard ting": [65535, 0], "sides set her back on the stabboard ting a": [65535, 0], "set her back on the stabboard ting a ling": [65535, 0], "her back on the stabboard ting a ling ling": [65535, 0], "back on the stabboard ting a ling ling chow": [65535, 0], "on the stabboard ting a ling ling chow ch": [65535, 0], "the stabboard ting a ling ling chow ch chow": [65535, 0], "stabboard ting a ling ling chow ch chow wow": [65535, 0], "ting a ling ling chow ch chow wow chow": [65535, 0], "a ling ling chow ch chow wow chow his": [65535, 0], "ling ling chow ch chow wow chow his right": [65535, 0], "ling chow ch chow wow chow his right hand": [65535, 0], "chow ch chow wow chow his right hand meantime": [65535, 0], "ch chow wow chow his right hand meantime describing": [65535, 0], "chow wow chow his right hand meantime describing stately": [65535, 0], "wow chow his right hand meantime describing stately circles": [65535, 0], "chow his right hand meantime describing stately circles for": [65535, 0], "his right hand meantime describing stately circles for it": [65535, 0], "right hand meantime describing stately circles for it was": [65535, 0], "hand meantime describing stately circles for it was representing": [65535, 0], "meantime describing stately circles for it was representing a": [65535, 0], "describing stately circles for it was representing a forty": [65535, 0], "stately circles for it was representing a forty foot": [65535, 0], "circles for it was representing a forty foot wheel": [65535, 0], "for it was representing a forty foot wheel let": [65535, 0], "it was representing a forty foot wheel let her": [65535, 0], "was representing a forty foot wheel let her go": [65535, 0], "representing a forty foot wheel let her go back": [65535, 0], "a forty foot wheel let her go back on": [65535, 0], "forty foot wheel let her go back on the": [65535, 0], "foot wheel let her go back on the labboard": [65535, 0], "wheel let her go back on the labboard ting": [65535, 0], "let her go back on the labboard ting a": [65535, 0], "her go back on the labboard ting a ling": [65535, 0], "go back on the labboard ting a ling ling": [65535, 0], "back on the labboard ting a ling ling chow": [65535, 0], "on the labboard ting a ling ling chow ch": [65535, 0], "the labboard ting a ling ling chow ch chow": [65535, 0], "labboard ting a ling ling chow ch chow chow": [65535, 0], "ting a ling ling chow ch chow chow the": [65535, 0], "a ling ling chow ch chow chow the left": [65535, 0], "ling ling chow ch chow chow the left hand": [65535, 0], "ling chow ch chow chow the left hand began": [65535, 0], "chow ch chow chow the left hand began to": [65535, 0], "ch chow chow the left hand began to describe": [65535, 0], "chow chow the left hand began to describe circles": [65535, 0], "chow the left hand began to describe circles stop": [65535, 0], "the left hand began to describe circles stop the": [65535, 0], "left hand began to describe circles stop the stabboard": [65535, 0], "hand began to describe circles stop the stabboard ting": [65535, 0], "began to describe circles stop the stabboard ting a": [65535, 0], "to describe circles stop the stabboard ting a ling": [65535, 0], "describe circles stop the stabboard ting a ling ling": [65535, 0], "circles stop the stabboard ting a ling ling stop": [65535, 0], "stop the stabboard ting a ling ling stop the": [65535, 0], "the stabboard ting a ling ling stop the labboard": [65535, 0], "stabboard ting a ling ling stop the labboard come": [65535, 0], "ting a ling ling stop the labboard come ahead": [65535, 0], "a ling ling stop the labboard come ahead on": [65535, 0], "ling ling stop the labboard come ahead on the": [65535, 0], "ling stop the labboard come ahead on the stabboard": [65535, 0], "stop the labboard come ahead on the stabboard stop": [65535, 0], "the labboard come ahead on the stabboard stop her": [65535, 0], "labboard come ahead on the stabboard stop her let": [65535, 0], "come ahead on the stabboard stop her let your": [65535, 0], "ahead on the stabboard stop her let your outside": [65535, 0], "on the stabboard stop her let your outside turn": [65535, 0], "the stabboard stop her let your outside turn over": [65535, 0], "stabboard stop her let your outside turn over slow": [65535, 0], "stop her let your outside turn over slow ting": [65535, 0], "her let your outside turn over slow ting a": [65535, 0], "let your outside turn over slow ting a ling": [65535, 0], "your outside turn over slow ting a ling ling": [65535, 0], "outside turn over slow ting a ling ling chow": [65535, 0], "turn over slow ting a ling ling chow ow": [65535, 0], "over slow ting a ling ling chow ow ow": [65535, 0], "slow ting a ling ling chow ow ow get": [65535, 0], "ting a ling ling chow ow ow get out": [65535, 0], "a ling ling chow ow ow get out that": [65535, 0], "ling ling chow ow ow get out that head": [65535, 0], "ling chow ow ow get out that head line": [65535, 0], "chow ow ow get out that head line lively": [65535, 0], "ow ow get out that head line lively now": [65535, 0], "ow get out that head line lively now come": [65535, 0], "get out that head line lively now come out": [65535, 0], "out that head line lively now come out with": [65535, 0], "that head line lively now come out with your": [65535, 0], "head line lively now come out with your spring": [65535, 0], "line lively now come out with your spring line": [65535, 0], "lively now come out with your spring line what're": [65535, 0], "now come out with your spring line what're you": [65535, 0], "come out with your spring line what're you about": [65535, 0], "out with your spring line what're you about there": [65535, 0], "with your spring line what're you about there take": [65535, 0], "your spring line what're you about there take a": [65535, 0], "spring line what're you about there take a turn": [65535, 0], "line what're you about there take a turn round": [65535, 0], "what're you about there take a turn round that": [65535, 0], "you about there take a turn round that stump": [65535, 0], "about there take a turn round that stump with": [65535, 0], "there take a turn round that stump with the": [65535, 0], "take a turn round that stump with the bight": [65535, 0], "a turn round that stump with the bight of": [65535, 0], "turn round that stump with the bight of it": [65535, 0], "round that stump with the bight of it stand": [65535, 0], "that stump with the bight of it stand by": [65535, 0], "stump with the bight of it stand by that": [65535, 0], "with the bight of it stand by that stage": [65535, 0], "the bight of it stand by that stage now": [65535, 0], "bight of it stand by that stage now let": [65535, 0], "of it stand by that stage now let her": [65535, 0], "it stand by that stage now let her go": [65535, 0], "stand by that stage now let her go done": [65535, 0], "by that stage now let her go done with": [65535, 0], "that stage now let her go done with the": [65535, 0], "stage now let her go done with the engines": [65535, 0], "now let her go done with the engines sir": [65535, 0], "let her go done with the engines sir ting": [65535, 0], "her go done with the engines sir ting a": [65535, 0], "go done with the engines sir ting a ling": [65535, 0], "done with the engines sir ting a ling ling": [65535, 0], "with the engines sir ting a ling ling sh't": [65535, 0], "the engines sir ting a ling ling sh't s'h't": [65535, 0], "engines sir ting a ling ling sh't s'h't sh't": [65535, 0], "sir ting a ling ling sh't s'h't sh't trying": [65535, 0], "ting a ling ling sh't s'h't sh't trying the": [65535, 0], "a ling ling sh't s'h't sh't trying the gauge": [65535, 0], "ling ling sh't s'h't sh't trying the gauge cocks": [65535, 0], "ling sh't s'h't sh't trying the gauge cocks tom": [65535, 0], "sh't s'h't sh't trying the gauge cocks tom went": [65535, 0], "s'h't sh't trying the gauge cocks tom went on": [65535, 0], "sh't trying the gauge cocks tom went on whitewashing": [65535, 0], "trying the gauge cocks tom went on whitewashing paid": [65535, 0], "the gauge cocks tom went on whitewashing paid no": [65535, 0], "gauge cocks tom went on whitewashing paid no attention": [65535, 0], "cocks tom went on whitewashing paid no attention to": [65535, 0], "tom went on whitewashing paid no attention to the": [65535, 0], "went on whitewashing paid no attention to the steamboat": [65535, 0], "on whitewashing paid no attention to the steamboat ben": [65535, 0], "whitewashing paid no attention to the steamboat ben stared": [65535, 0], "paid no attention to the steamboat ben stared a": [65535, 0], "no attention to the steamboat ben stared a moment": [65535, 0], "attention to the steamboat ben stared a moment and": [65535, 0], "to the steamboat ben stared a moment and then": [65535, 0], "the steamboat ben stared a moment and then said": [65535, 0], "steamboat ben stared a moment and then said hi": [65535, 0], "ben stared a moment and then said hi yi": [65535, 0], "stared a moment and then said hi yi you're": [65535, 0], "a moment and then said hi yi you're up": [65535, 0], "moment and then said hi yi you're up a": [65535, 0], "and then said hi yi you're up a stump": [65535, 0], "then said hi yi you're up a stump ain't": [65535, 0], "said hi yi you're up a stump ain't you": [65535, 0], "hi yi you're up a stump ain't you no": [65535, 0], "yi you're up a stump ain't you no answer": [65535, 0], "you're up a stump ain't you no answer tom": [65535, 0], "up a stump ain't you no answer tom surveyed": [65535, 0], "a stump ain't you no answer tom surveyed his": [65535, 0], "stump ain't you no answer tom surveyed his last": [65535, 0], "ain't you no answer tom surveyed his last touch": [65535, 0], "you no answer tom surveyed his last touch with": [65535, 0], "no answer tom surveyed his last touch with the": [65535, 0], "answer tom surveyed his last touch with the eye": [65535, 0], "tom surveyed his last touch with the eye of": [65535, 0], "surveyed his last touch with the eye of an": [65535, 0], "his last touch with the eye of an artist": [65535, 0], "last touch with the eye of an artist then": [65535, 0], "touch with the eye of an artist then he": [65535, 0], "with the eye of an artist then he gave": [65535, 0], "the eye of an artist then he gave his": [65535, 0], "eye of an artist then he gave his brush": [65535, 0], "of an artist then he gave his brush another": [65535, 0], "an artist then he gave his brush another gentle": [65535, 0], "artist then he gave his brush another gentle sweep": [65535, 0], "then he gave his brush another gentle sweep and": [65535, 0], "he gave his brush another gentle sweep and surveyed": [65535, 0], "gave his brush another gentle sweep and surveyed the": [65535, 0], "his brush another gentle sweep and surveyed the result": [65535, 0], "brush another gentle sweep and surveyed the result as": [65535, 0], "another gentle sweep and surveyed the result as before": [65535, 0], "gentle sweep and surveyed the result as before ben": [65535, 0], "sweep and surveyed the result as before ben ranged": [65535, 0], "and surveyed the result as before ben ranged up": [65535, 0], "surveyed the result as before ben ranged up alongside": [65535, 0], "the result as before ben ranged up alongside of": [65535, 0], "result as before ben ranged up alongside of him": [65535, 0], "as before ben ranged up alongside of him tom's": [65535, 0], "before ben ranged up alongside of him tom's mouth": [65535, 0], "ben ranged up alongside of him tom's mouth watered": [65535, 0], "ranged up alongside of him tom's mouth watered for": [65535, 0], "up alongside of him tom's mouth watered for the": [65535, 0], "alongside of him tom's mouth watered for the apple": [65535, 0], "of him tom's mouth watered for the apple but": [65535, 0], "him tom's mouth watered for the apple but he": [65535, 0], "tom's mouth watered for the apple but he stuck": [65535, 0], "mouth watered for the apple but he stuck to": [65535, 0], "watered for the apple but he stuck to his": [65535, 0], "for the apple but he stuck to his work": [65535, 0], "the apple but he stuck to his work ben": [65535, 0], "apple but he stuck to his work ben said": [65535, 0], "but he stuck to his work ben said hello": [65535, 0], "he stuck to his work ben said hello old": [65535, 0], "stuck to his work ben said hello old chap": [65535, 0], "to his work ben said hello old chap you": [65535, 0], "his work ben said hello old chap you got": [65535, 0], "work ben said hello old chap you got to": [65535, 0], "ben said hello old chap you got to work": [65535, 0], "said hello old chap you got to work hey": [65535, 0], "hello old chap you got to work hey tom": [65535, 0], "old chap you got to work hey tom wheeled": [65535, 0], "chap you got to work hey tom wheeled suddenly": [65535, 0], "you got to work hey tom wheeled suddenly and": [65535, 0], "got to work hey tom wheeled suddenly and said": [65535, 0], "to work hey tom wheeled suddenly and said why": [65535, 0], "work hey tom wheeled suddenly and said why it's": [65535, 0], "hey tom wheeled suddenly and said why it's you": [65535, 0], "tom wheeled suddenly and said why it's you ben": [65535, 0], "wheeled suddenly and said why it's you ben i": [65535, 0], "suddenly and said why it's you ben i warn't": [65535, 0], "and said why it's you ben i warn't noticing": [65535, 0], "said why it's you ben i warn't noticing say": [65535, 0], "why it's you ben i warn't noticing say i'm": [65535, 0], "it's you ben i warn't noticing say i'm going": [65535, 0], "you ben i warn't noticing say i'm going in": [65535, 0], "ben i warn't noticing say i'm going in a": [65535, 0], "i warn't noticing say i'm going in a swimming": [65535, 0], "warn't noticing say i'm going in a swimming i": [65535, 0], "noticing say i'm going in a swimming i am": [65535, 0], "say i'm going in a swimming i am don't": [65535, 0], "i'm going in a swimming i am don't you": [65535, 0], "going in a swimming i am don't you wish": [65535, 0], "in a swimming i am don't you wish you": [65535, 0], "a swimming i am don't you wish you could": [65535, 0], "swimming i am don't you wish you could but": [65535, 0], "i am don't you wish you could but of": [65535, 0], "am don't you wish you could but of course": [65535, 0], "don't you wish you could but of course you'd": [65535, 0], "you wish you could but of course you'd druther": [65535, 0], "wish you could but of course you'd druther work": [65535, 0], "you could but of course you'd druther work wouldn't": [65535, 0], "could but of course you'd druther work wouldn't you": [65535, 0], "but of course you'd druther work wouldn't you course": [65535, 0], "of course you'd druther work wouldn't you course you": [65535, 0], "course you'd druther work wouldn't you course you would": [65535, 0], "you'd druther work wouldn't you course you would tom": [65535, 0], "druther work wouldn't you course you would tom contemplated": [65535, 0], "work wouldn't you course you would tom contemplated the": [65535, 0], "wouldn't you course you would tom contemplated the boy": [65535, 0], "you course you would tom contemplated the boy a": [65535, 0], "course you would tom contemplated the boy a bit": [65535, 0], "you would tom contemplated the boy a bit and": [65535, 0], "would tom contemplated the boy a bit and said": [65535, 0], "tom contemplated the boy a bit and said what": [65535, 0], "contemplated the boy a bit and said what do": [65535, 0], "the boy a bit and said what do you": [65535, 0], "boy a bit and said what do you call": [65535, 0], "a bit and said what do you call work": [65535, 0], "bit and said what do you call work why": [65535, 0], "and said what do you call work why ain't": [65535, 0], "said what do you call work why ain't that": [65535, 0], "what do you call work why ain't that work": [65535, 0], "do you call work why ain't that work tom": [65535, 0], "you call work why ain't that work tom resumed": [65535, 0], "call work why ain't that work tom resumed his": [65535, 0], "work why ain't that work tom resumed his whitewashing": [65535, 0], "why ain't that work tom resumed his whitewashing and": [65535, 0], "ain't that work tom resumed his whitewashing and answered": [65535, 0], "that work tom resumed his whitewashing and answered carelessly": [65535, 0], "work tom resumed his whitewashing and answered carelessly well": [65535, 0], "tom resumed his whitewashing and answered carelessly well maybe": [65535, 0], "resumed his whitewashing and answered carelessly well maybe it": [65535, 0], "his whitewashing and answered carelessly well maybe it is": [65535, 0], "whitewashing and answered carelessly well maybe it is and": [65535, 0], "and answered carelessly well maybe it is and maybe": [65535, 0], "answered carelessly well maybe it is and maybe it": [65535, 0], "carelessly well maybe it is and maybe it ain't": [65535, 0], "well maybe it is and maybe it ain't all": [65535, 0], "maybe it is and maybe it ain't all i": [65535, 0], "it is and maybe it ain't all i know": [65535, 0], "is and maybe it ain't all i know is": [65535, 0], "and maybe it ain't all i know is it": [65535, 0], "maybe it ain't all i know is it suits": [65535, 0], "it ain't all i know is it suits tom": [65535, 0], "ain't all i know is it suits tom sawyer": [65535, 0], "all i know is it suits tom sawyer oh": [65535, 0], "i know is it suits tom sawyer oh come": [65535, 0], "know is it suits tom sawyer oh come now": [65535, 0], "is it suits tom sawyer oh come now you": [65535, 0], "it suits tom sawyer oh come now you don't": [65535, 0], "suits tom sawyer oh come now you don't mean": [65535, 0], "tom sawyer oh come now you don't mean to": [65535, 0], "sawyer oh come now you don't mean to let": [65535, 0], "oh come now you don't mean to let on": [65535, 0], "come now you don't mean to let on that": [65535, 0], "now you don't mean to let on that you": [65535, 0], "you don't mean to let on that you like": [65535, 0], "don't mean to let on that you like it": [65535, 0], "mean to let on that you like it the": [65535, 0], "to let on that you like it the brush": [65535, 0], "let on that you like it the brush continued": [65535, 0], "on that you like it the brush continued to": [65535, 0], "that you like it the brush continued to move": [65535, 0], "you like it the brush continued to move like": [65535, 0], "like it the brush continued to move like it": [65535, 0], "it the brush continued to move like it well": [65535, 0], "the brush continued to move like it well i": [65535, 0], "brush continued to move like it well i don't": [65535, 0], "continued to move like it well i don't see": [65535, 0], "to move like it well i don't see why": [65535, 0], "move like it well i don't see why i": [65535, 0], "like it well i don't see why i oughtn't": [65535, 0], "it well i don't see why i oughtn't to": [65535, 0], "well i don't see why i oughtn't to like": [65535, 0], "i don't see why i oughtn't to like it": [65535, 0], "don't see why i oughtn't to like it does": [65535, 0], "see why i oughtn't to like it does a": [65535, 0], "why i oughtn't to like it does a boy": [65535, 0], "i oughtn't to like it does a boy get": [65535, 0], "oughtn't to like it does a boy get a": [65535, 0], "to like it does a boy get a chance": [65535, 0], "like it does a boy get a chance to": [65535, 0], "it does a boy get a chance to whitewash": [65535, 0], "does a boy get a chance to whitewash a": [65535, 0], "a boy get a chance to whitewash a fence": [65535, 0], "boy get a chance to whitewash a fence every": [65535, 0], "get a chance to whitewash a fence every day": [65535, 0], "a chance to whitewash a fence every day that": [65535, 0], "chance to whitewash a fence every day that put": [65535, 0], "to whitewash a fence every day that put the": [65535, 0], "whitewash a fence every day that put the thing": [65535, 0], "a fence every day that put the thing in": [65535, 0], "fence every day that put the thing in a": [65535, 0], "every day that put the thing in a new": [65535, 0], "day that put the thing in a new light": [65535, 0], "that put the thing in a new light ben": [65535, 0], "put the thing in a new light ben stopped": [65535, 0], "the thing in a new light ben stopped nibbling": [65535, 0], "thing in a new light ben stopped nibbling his": [65535, 0], "in a new light ben stopped nibbling his apple": [65535, 0], "a new light ben stopped nibbling his apple tom": [65535, 0], "new light ben stopped nibbling his apple tom swept": [65535, 0], "light ben stopped nibbling his apple tom swept his": [65535, 0], "ben stopped nibbling his apple tom swept his brush": [65535, 0], "stopped nibbling his apple tom swept his brush daintily": [65535, 0], "nibbling his apple tom swept his brush daintily back": [65535, 0], "his apple tom swept his brush daintily back and": [65535, 0], "apple tom swept his brush daintily back and forth": [65535, 0], "tom swept his brush daintily back and forth stepped": [65535, 0], "swept his brush daintily back and forth stepped back": [65535, 0], "his brush daintily back and forth stepped back to": [65535, 0], "brush daintily back and forth stepped back to note": [65535, 0], "daintily back and forth stepped back to note the": [65535, 0], "back and forth stepped back to note the effect": [65535, 0], "and forth stepped back to note the effect added": [65535, 0], "forth stepped back to note the effect added a": [65535, 0], "stepped back to note the effect added a touch": [65535, 0], "back to note the effect added a touch here": [65535, 0], "to note the effect added a touch here and": [65535, 0], "note the effect added a touch here and there": [65535, 0], "the effect added a touch here and there criticised": [65535, 0], "effect added a touch here and there criticised the": [65535, 0], "added a touch here and there criticised the effect": [65535, 0], "a touch here and there criticised the effect again": [65535, 0], "touch here and there criticised the effect again ben": [65535, 0], "here and there criticised the effect again ben watching": [65535, 0], "and there criticised the effect again ben watching every": [65535, 0], "there criticised the effect again ben watching every move": [65535, 0], "criticised the effect again ben watching every move and": [65535, 0], "the effect again ben watching every move and getting": [65535, 0], "effect again ben watching every move and getting more": [65535, 0], "again ben watching every move and getting more and": [65535, 0], "ben watching every move and getting more and more": [65535, 0], "watching every move and getting more and more interested": [65535, 0], "every move and getting more and more interested more": [65535, 0], "move and getting more and more interested more and": [65535, 0], "and getting more and more interested more and more": [65535, 0], "getting more and more interested more and more absorbed": [65535, 0], "more and more interested more and more absorbed presently": [65535, 0], "and more interested more and more absorbed presently he": [65535, 0], "more interested more and more absorbed presently he said": [65535, 0], "interested more and more absorbed presently he said say": [65535, 0], "more and more absorbed presently he said say tom": [65535, 0], "and more absorbed presently he said say tom let": [65535, 0], "more absorbed presently he said say tom let me": [65535, 0], "absorbed presently he said say tom let me whitewash": [65535, 0], "presently he said say tom let me whitewash a": [65535, 0], "he said say tom let me whitewash a little": [65535, 0], "said say tom let me whitewash a little tom": [65535, 0], "say tom let me whitewash a little tom considered": [65535, 0], "tom let me whitewash a little tom considered was": [65535, 0], "let me whitewash a little tom considered was about": [65535, 0], "me whitewash a little tom considered was about to": [65535, 0], "whitewash a little tom considered was about to consent": [65535, 0], "a little tom considered was about to consent but": [65535, 0], "little tom considered was about to consent but he": [65535, 0], "tom considered was about to consent but he altered": [65535, 0], "considered was about to consent but he altered his": [65535, 0], "was about to consent but he altered his mind": [65535, 0], "about to consent but he altered his mind no": [65535, 0], "to consent but he altered his mind no no": [65535, 0], "consent but he altered his mind no no i": [65535, 0], "but he altered his mind no no i reckon": [65535, 0], "he altered his mind no no i reckon it": [65535, 0], "altered his mind no no i reckon it wouldn't": [65535, 0], "his mind no no i reckon it wouldn't hardly": [65535, 0], "mind no no i reckon it wouldn't hardly do": [65535, 0], "no no i reckon it wouldn't hardly do ben": [65535, 0], "no i reckon it wouldn't hardly do ben you": [65535, 0], "i reckon it wouldn't hardly do ben you see": [65535, 0], "reckon it wouldn't hardly do ben you see aunt": [65535, 0], "it wouldn't hardly do ben you see aunt polly's": [65535, 0], "wouldn't hardly do ben you see aunt polly's awful": [65535, 0], "hardly do ben you see aunt polly's awful particular": [65535, 0], "do ben you see aunt polly's awful particular about": [65535, 0], "ben you see aunt polly's awful particular about this": [65535, 0], "you see aunt polly's awful particular about this fence": [65535, 0], "see aunt polly's awful particular about this fence right": [65535, 0], "aunt polly's awful particular about this fence right here": [65535, 0], "polly's awful particular about this fence right here on": [65535, 0], "awful particular about this fence right here on the": [65535, 0], "particular about this fence right here on the street": [65535, 0], "about this fence right here on the street you": [65535, 0], "this fence right here on the street you know": [65535, 0], "fence right here on the street you know but": [65535, 0], "right here on the street you know but if": [65535, 0], "here on the street you know but if it": [65535, 0], "on the street you know but if it was": [65535, 0], "the street you know but if it was the": [65535, 0], "street you know but if it was the back": [65535, 0], "you know but if it was the back fence": [65535, 0], "know but if it was the back fence i": [65535, 0], "but if it was the back fence i wouldn't": [65535, 0], "if it was the back fence i wouldn't mind": [65535, 0], "it was the back fence i wouldn't mind and": [65535, 0], "was the back fence i wouldn't mind and she": [65535, 0], "the back fence i wouldn't mind and she wouldn't": [65535, 0], "back fence i wouldn't mind and she wouldn't yes": [65535, 0], "fence i wouldn't mind and she wouldn't yes she's": [65535, 0], "i wouldn't mind and she wouldn't yes she's awful": [65535, 0], "wouldn't mind and she wouldn't yes she's awful particular": [65535, 0], "mind and she wouldn't yes she's awful particular about": [65535, 0], "and she wouldn't yes she's awful particular about this": [65535, 0], "she wouldn't yes she's awful particular about this fence": [65535, 0], "wouldn't yes she's awful particular about this fence it's": [65535, 0], "yes she's awful particular about this fence it's got": [65535, 0], "she's awful particular about this fence it's got to": [65535, 0], "awful particular about this fence it's got to be": [65535, 0], "particular about this fence it's got to be done": [65535, 0], "about this fence it's got to be done very": [65535, 0], "this fence it's got to be done very careful": [65535, 0], "fence it's got to be done very careful i": [65535, 0], "it's got to be done very careful i reckon": [65535, 0], "got to be done very careful i reckon there": [65535, 0], "to be done very careful i reckon there ain't": [65535, 0], "be done very careful i reckon there ain't one": [65535, 0], "done very careful i reckon there ain't one boy": [65535, 0], "very careful i reckon there ain't one boy in": [65535, 0], "careful i reckon there ain't one boy in a": [65535, 0], "i reckon there ain't one boy in a thousand": [65535, 0], "reckon there ain't one boy in a thousand maybe": [65535, 0], "there ain't one boy in a thousand maybe two": [65535, 0], "ain't one boy in a thousand maybe two thousand": [65535, 0], "one boy in a thousand maybe two thousand that": [65535, 0], "boy in a thousand maybe two thousand that can": [65535, 0], "in a thousand maybe two thousand that can do": [65535, 0], "a thousand maybe two thousand that can do it": [65535, 0], "thousand maybe two thousand that can do it the": [65535, 0], "maybe two thousand that can do it the way": [65535, 0], "two thousand that can do it the way it's": [65535, 0], "thousand that can do it the way it's got": [65535, 0], "that can do it the way it's got to": [65535, 0], "can do it the way it's got to be": [65535, 0], "do it the way it's got to be done": [65535, 0], "it the way it's got to be done no": [65535, 0], "the way it's got to be done no is": [65535, 0], "way it's got to be done no is that": [65535, 0], "it's got to be done no is that so": [65535, 0], "got to be done no is that so oh": [65535, 0], "to be done no is that so oh come": [65535, 0], "be done no is that so oh come now": [65535, 0], "done no is that so oh come now lemme": [65535, 0], "no is that so oh come now lemme just": [65535, 0], "is that so oh come now lemme just try": [65535, 0], "that so oh come now lemme just try only": [65535, 0], "so oh come now lemme just try only just": [65535, 0], "oh come now lemme just try only just a": [65535, 0], "come now lemme just try only just a little": [65535, 0], "now lemme just try only just a little i'd": [65535, 0], "lemme just try only just a little i'd let": [65535, 0], "just try only just a little i'd let you": [65535, 0], "try only just a little i'd let you if": [65535, 0], "only just a little i'd let you if you": [65535, 0], "just a little i'd let you if you was": [65535, 0], "a little i'd let you if you was me": [65535, 0], "little i'd let you if you was me tom": [65535, 0], "i'd let you if you was me tom ben": [65535, 0], "let you if you was me tom ben i'd": [65535, 0], "you if you was me tom ben i'd like": [65535, 0], "if you was me tom ben i'd like to": [65535, 0], "you was me tom ben i'd like to honest": [65535, 0], "was me tom ben i'd like to honest injun": [65535, 0], "me tom ben i'd like to honest injun but": [65535, 0], "tom ben i'd like to honest injun but aunt": [65535, 0], "ben i'd like to honest injun but aunt polly": [65535, 0], "i'd like to honest injun but aunt polly well": [65535, 0], "like to honest injun but aunt polly well jim": [65535, 0], "to honest injun but aunt polly well jim wanted": [65535, 0], "honest injun but aunt polly well jim wanted to": [65535, 0], "injun but aunt polly well jim wanted to do": [65535, 0], "but aunt polly well jim wanted to do it": [65535, 0], "aunt polly well jim wanted to do it but": [65535, 0], "polly well jim wanted to do it but she": [65535, 0], "well jim wanted to do it but she wouldn't": [65535, 0], "jim wanted to do it but she wouldn't let": [65535, 0], "wanted to do it but she wouldn't let him": [65535, 0], "to do it but she wouldn't let him sid": [65535, 0], "do it but she wouldn't let him sid wanted": [65535, 0], "it but she wouldn't let him sid wanted to": [65535, 0], "but she wouldn't let him sid wanted to do": [65535, 0], "she wouldn't let him sid wanted to do it": [65535, 0], "wouldn't let him sid wanted to do it and": [65535, 0], "let him sid wanted to do it and she": [65535, 0], "him sid wanted to do it and she wouldn't": [65535, 0], "sid wanted to do it and she wouldn't let": [65535, 0], "wanted to do it and she wouldn't let sid": [65535, 0], "to do it and she wouldn't let sid now": [65535, 0], "do it and she wouldn't let sid now don't": [65535, 0], "it and she wouldn't let sid now don't you": [65535, 0], "and she wouldn't let sid now don't you see": [65535, 0], "she wouldn't let sid now don't you see how": [65535, 0], "wouldn't let sid now don't you see how i'm": [65535, 0], "let sid now don't you see how i'm fixed": [65535, 0], "sid now don't you see how i'm fixed if": [65535, 0], "now don't you see how i'm fixed if you": [65535, 0], "don't you see how i'm fixed if you was": [65535, 0], "you see how i'm fixed if you was to": [65535, 0], "see how i'm fixed if you was to tackle": [65535, 0], "how i'm fixed if you was to tackle this": [65535, 0], "i'm fixed if you was to tackle this fence": [65535, 0], "fixed if you was to tackle this fence and": [65535, 0], "if you was to tackle this fence and anything": [65535, 0], "you was to tackle this fence and anything was": [65535, 0], "was to tackle this fence and anything was to": [65535, 0], "to tackle this fence and anything was to happen": [65535, 0], "tackle this fence and anything was to happen to": [65535, 0], "this fence and anything was to happen to it": [65535, 0], "fence and anything was to happen to it oh": [65535, 0], "and anything was to happen to it oh shucks": [65535, 0], "anything was to happen to it oh shucks i'll": [65535, 0], "was to happen to it oh shucks i'll be": [65535, 0], "to happen to it oh shucks i'll be just": [65535, 0], "happen to it oh shucks i'll be just as": [65535, 0], "to it oh shucks i'll be just as careful": [65535, 0], "it oh shucks i'll be just as careful now": [65535, 0], "oh shucks i'll be just as careful now lemme": [65535, 0], "shucks i'll be just as careful now lemme try": [65535, 0], "i'll be just as careful now lemme try say": [65535, 0], "be just as careful now lemme try say i'll": [65535, 0], "just as careful now lemme try say i'll give": [65535, 0], "as careful now lemme try say i'll give you": [65535, 0], "careful now lemme try say i'll give you the": [65535, 0], "now lemme try say i'll give you the core": [65535, 0], "lemme try say i'll give you the core of": [65535, 0], "try say i'll give you the core of my": [65535, 0], "say i'll give you the core of my apple": [65535, 0], "i'll give you the core of my apple well": [65535, 0], "give you the core of my apple well here": [65535, 0], "you the core of my apple well here no": [65535, 0], "the core of my apple well here no ben": [65535, 0], "core of my apple well here no ben now": [65535, 0], "of my apple well here no ben now don't": [65535, 0], "my apple well here no ben now don't i'm": [65535, 0], "apple well here no ben now don't i'm afeard": [65535, 0], "well here no ben now don't i'm afeard i'll": [65535, 0], "here no ben now don't i'm afeard i'll give": [65535, 0], "no ben now don't i'm afeard i'll give you": [65535, 0], "ben now don't i'm afeard i'll give you all": [65535, 0], "now don't i'm afeard i'll give you all of": [65535, 0], "don't i'm afeard i'll give you all of it": [65535, 0], "i'm afeard i'll give you all of it tom": [65535, 0], "afeard i'll give you all of it tom gave": [65535, 0], "i'll give you all of it tom gave up": [65535, 0], "give you all of it tom gave up the": [65535, 0], "you all of it tom gave up the brush": [65535, 0], "all of it tom gave up the brush with": [65535, 0], "of it tom gave up the brush with reluctance": [65535, 0], "it tom gave up the brush with reluctance in": [65535, 0], "tom gave up the brush with reluctance in his": [65535, 0], "gave up the brush with reluctance in his face": [65535, 0], "up the brush with reluctance in his face but": [65535, 0], "the brush with reluctance in his face but alacrity": [65535, 0], "brush with reluctance in his face but alacrity in": [65535, 0], "with reluctance in his face but alacrity in his": [65535, 0], "reluctance in his face but alacrity in his heart": [65535, 0], "in his face but alacrity in his heart and": [65535, 0], "his face but alacrity in his heart and while": [65535, 0], "face but alacrity in his heart and while the": [65535, 0], "but alacrity in his heart and while the late": [65535, 0], "alacrity in his heart and while the late steamer": [65535, 0], "in his heart and while the late steamer big": [65535, 0], "his heart and while the late steamer big missouri": [65535, 0], "heart and while the late steamer big missouri worked": [65535, 0], "and while the late steamer big missouri worked and": [65535, 0], "while the late steamer big missouri worked and sweated": [65535, 0], "the late steamer big missouri worked and sweated in": [65535, 0], "late steamer big missouri worked and sweated in the": [65535, 0], "steamer big missouri worked and sweated in the sun": [65535, 0], "big missouri worked and sweated in the sun the": [65535, 0], "missouri worked and sweated in the sun the retired": [65535, 0], "worked and sweated in the sun the retired artist": [65535, 0], "and sweated in the sun the retired artist sat": [65535, 0], "sweated in the sun the retired artist sat on": [65535, 0], "in the sun the retired artist sat on a": [65535, 0], "the sun the retired artist sat on a barrel": [65535, 0], "sun the retired artist sat on a barrel in": [65535, 0], "the retired artist sat on a barrel in the": [65535, 0], "retired artist sat on a barrel in the shade": [65535, 0], "artist sat on a barrel in the shade close": [65535, 0], "sat on a barrel in the shade close by": [65535, 0], "on a barrel in the shade close by dangled": [65535, 0], "a barrel in the shade close by dangled his": [65535, 0], "barrel in the shade close by dangled his legs": [65535, 0], "in the shade close by dangled his legs munched": [65535, 0], "the shade close by dangled his legs munched his": [65535, 0], "shade close by dangled his legs munched his apple": [65535, 0], "close by dangled his legs munched his apple and": [65535, 0], "by dangled his legs munched his apple and planned": [65535, 0], "dangled his legs munched his apple and planned the": [65535, 0], "his legs munched his apple and planned the slaughter": [65535, 0], "legs munched his apple and planned the slaughter of": [65535, 0], "munched his apple and planned the slaughter of more": [65535, 0], "his apple and planned the slaughter of more innocents": [65535, 0], "apple and planned the slaughter of more innocents there": [65535, 0], "and planned the slaughter of more innocents there was": [65535, 0], "planned the slaughter of more innocents there was no": [65535, 0], "the slaughter of more innocents there was no lack": [65535, 0], "slaughter of more innocents there was no lack of": [65535, 0], "of more innocents there was no lack of material": [65535, 0], "more innocents there was no lack of material boys": [65535, 0], "innocents there was no lack of material boys happened": [65535, 0], "there was no lack of material boys happened along": [65535, 0], "was no lack of material boys happened along every": [65535, 0], "no lack of material boys happened along every little": [65535, 0], "lack of material boys happened along every little while": [65535, 0], "of material boys happened along every little while they": [65535, 0], "material boys happened along every little while they came": [65535, 0], "boys happened along every little while they came to": [65535, 0], "happened along every little while they came to jeer": [65535, 0], "along every little while they came to jeer but": [65535, 0], "every little while they came to jeer but remained": [65535, 0], "little while they came to jeer but remained to": [65535, 0], "while they came to jeer but remained to whitewash": [65535, 0], "they came to jeer but remained to whitewash by": [65535, 0], "came to jeer but remained to whitewash by the": [65535, 0], "to jeer but remained to whitewash by the time": [65535, 0], "jeer but remained to whitewash by the time ben": [65535, 0], "but remained to whitewash by the time ben was": [65535, 0], "remained to whitewash by the time ben was fagged": [65535, 0], "to whitewash by the time ben was fagged out": [65535, 0], "whitewash by the time ben was fagged out tom": [65535, 0], "by the time ben was fagged out tom had": [65535, 0], "the time ben was fagged out tom had traded": [65535, 0], "time ben was fagged out tom had traded the": [65535, 0], "ben was fagged out tom had traded the next": [65535, 0], "was fagged out tom had traded the next chance": [65535, 0], "fagged out tom had traded the next chance to": [65535, 0], "out tom had traded the next chance to billy": [65535, 0], "tom had traded the next chance to billy fisher": [65535, 0], "had traded the next chance to billy fisher for": [65535, 0], "traded the next chance to billy fisher for a": [65535, 0], "the next chance to billy fisher for a kite": [65535, 0], "next chance to billy fisher for a kite in": [65535, 0], "chance to billy fisher for a kite in good": [65535, 0], "to billy fisher for a kite in good repair": [65535, 0], "billy fisher for a kite in good repair and": [65535, 0], "fisher for a kite in good repair and when": [65535, 0], "for a kite in good repair and when he": [65535, 0], "a kite in good repair and when he played": [65535, 0], "kite in good repair and when he played out": [65535, 0], "in good repair and when he played out johnny": [65535, 0], "good repair and when he played out johnny miller": [65535, 0], "repair and when he played out johnny miller bought": [65535, 0], "and when he played out johnny miller bought in": [65535, 0], "when he played out johnny miller bought in for": [65535, 0], "he played out johnny miller bought in for a": [65535, 0], "played out johnny miller bought in for a dead": [65535, 0], "out johnny miller bought in for a dead rat": [65535, 0], "johnny miller bought in for a dead rat and": [65535, 0], "miller bought in for a dead rat and a": [65535, 0], "bought in for a dead rat and a string": [65535, 0], "in for a dead rat and a string to": [65535, 0], "for a dead rat and a string to swing": [65535, 0], "a dead rat and a string to swing it": [65535, 0], "dead rat and a string to swing it with": [65535, 0], "rat and a string to swing it with and": [65535, 0], "and a string to swing it with and so": [65535, 0], "a string to swing it with and so on": [65535, 0], "string to swing it with and so on and": [65535, 0], "to swing it with and so on and so": [65535, 0], "swing it with and so on and so on": [65535, 0], "it with and so on and so on hour": [65535, 0], "with and so on and so on hour after": [65535, 0], "and so on and so on hour after hour": [65535, 0], "so on and so on hour after hour and": [65535, 0], "on and so on hour after hour and when": [65535, 0], "and so on hour after hour and when the": [65535, 0], "so on hour after hour and when the middle": [65535, 0], "on hour after hour and when the middle of": [65535, 0], "hour after hour and when the middle of the": [65535, 0], "after hour and when the middle of the afternoon": [65535, 0], "hour and when the middle of the afternoon came": [65535, 0], "and when the middle of the afternoon came from": [65535, 0], "when the middle of the afternoon came from being": [65535, 0], "the middle of the afternoon came from being a": [65535, 0], "middle of the afternoon came from being a poor": [65535, 0], "of the afternoon came from being a poor poverty": [65535, 0], "the afternoon came from being a poor poverty stricken": [65535, 0], "afternoon came from being a poor poverty stricken boy": [65535, 0], "came from being a poor poverty stricken boy in": [65535, 0], "from being a poor poverty stricken boy in the": [65535, 0], "being a poor poverty stricken boy in the morning": [65535, 0], "a poor poverty stricken boy in the morning tom": [65535, 0], "poor poverty stricken boy in the morning tom was": [65535, 0], "poverty stricken boy in the morning tom was literally": [65535, 0], "stricken boy in the morning tom was literally rolling": [65535, 0], "boy in the morning tom was literally rolling in": [65535, 0], "in the morning tom was literally rolling in wealth": [65535, 0], "the morning tom was literally rolling in wealth he": [65535, 0], "morning tom was literally rolling in wealth he had": [65535, 0], "tom was literally rolling in wealth he had besides": [65535, 0], "was literally rolling in wealth he had besides the": [65535, 0], "literally rolling in wealth he had besides the things": [65535, 0], "rolling in wealth he had besides the things before": [65535, 0], "in wealth he had besides the things before mentioned": [65535, 0], "wealth he had besides the things before mentioned twelve": [65535, 0], "he had besides the things before mentioned twelve marbles": [65535, 0], "had besides the things before mentioned twelve marbles part": [65535, 0], "besides the things before mentioned twelve marbles part of": [65535, 0], "the things before mentioned twelve marbles part of a": [65535, 0], "things before mentioned twelve marbles part of a jews": [65535, 0], "before mentioned twelve marbles part of a jews harp": [65535, 0], "mentioned twelve marbles part of a jews harp a": [65535, 0], "twelve marbles part of a jews harp a piece": [65535, 0], "marbles part of a jews harp a piece of": [65535, 0], "part of a jews harp a piece of blue": [65535, 0], "of a jews harp a piece of blue bottle": [65535, 0], "a jews harp a piece of blue bottle glass": [65535, 0], "jews harp a piece of blue bottle glass to": [65535, 0], "harp a piece of blue bottle glass to look": [65535, 0], "a piece of blue bottle glass to look through": [65535, 0], "piece of blue bottle glass to look through a": [65535, 0], "of blue bottle glass to look through a spool": [65535, 0], "blue bottle glass to look through a spool cannon": [65535, 0], "bottle glass to look through a spool cannon a": [65535, 0], "glass to look through a spool cannon a key": [65535, 0], "to look through a spool cannon a key that": [65535, 0], "look through a spool cannon a key that wouldn't": [65535, 0], "through a spool cannon a key that wouldn't unlock": [65535, 0], "a spool cannon a key that wouldn't unlock anything": [65535, 0], "spool cannon a key that wouldn't unlock anything a": [65535, 0], "cannon a key that wouldn't unlock anything a fragment": [65535, 0], "a key that wouldn't unlock anything a fragment of": [65535, 0], "key that wouldn't unlock anything a fragment of chalk": [65535, 0], "that wouldn't unlock anything a fragment of chalk a": [65535, 0], "wouldn't unlock anything a fragment of chalk a glass": [65535, 0], "unlock anything a fragment of chalk a glass stopper": [65535, 0], "anything a fragment of chalk a glass stopper of": [65535, 0], "a fragment of chalk a glass stopper of a": [65535, 0], "fragment of chalk a glass stopper of a decanter": [65535, 0], "of chalk a glass stopper of a decanter a": [65535, 0], "chalk a glass stopper of a decanter a tin": [65535, 0], "a glass stopper of a decanter a tin soldier": [65535, 0], "glass stopper of a decanter a tin soldier a": [65535, 0], "stopper of a decanter a tin soldier a couple": [65535, 0], "of a decanter a tin soldier a couple of": [65535, 0], "a decanter a tin soldier a couple of tadpoles": [65535, 0], "decanter a tin soldier a couple of tadpoles six": [65535, 0], "a tin soldier a couple of tadpoles six fire": [65535, 0], "tin soldier a couple of tadpoles six fire crackers": [65535, 0], "soldier a couple of tadpoles six fire crackers a": [65535, 0], "a couple of tadpoles six fire crackers a kitten": [65535, 0], "couple of tadpoles six fire crackers a kitten with": [65535, 0], "of tadpoles six fire crackers a kitten with only": [65535, 0], "tadpoles six fire crackers a kitten with only one": [65535, 0], "six fire crackers a kitten with only one eye": [65535, 0], "fire crackers a kitten with only one eye a": [65535, 0], "crackers a kitten with only one eye a brass": [65535, 0], "a kitten with only one eye a brass doorknob": [65535, 0], "kitten with only one eye a brass doorknob a": [65535, 0], "with only one eye a brass doorknob a dog": [65535, 0], "only one eye a brass doorknob a dog collar": [65535, 0], "one eye a brass doorknob a dog collar but": [65535, 0], "eye a brass doorknob a dog collar but no": [65535, 0], "a brass doorknob a dog collar but no dog": [65535, 0], "brass doorknob a dog collar but no dog the": [65535, 0], "doorknob a dog collar but no dog the handle": [65535, 0], "a dog collar but no dog the handle of": [65535, 0], "dog collar but no dog the handle of a": [65535, 0], "collar but no dog the handle of a knife": [65535, 0], "but no dog the handle of a knife four": [65535, 0], "no dog the handle of a knife four pieces": [65535, 0], "dog the handle of a knife four pieces of": [65535, 0], "the handle of a knife four pieces of orange": [65535, 0], "handle of a knife four pieces of orange peel": [65535, 0], "of a knife four pieces of orange peel and": [65535, 0], "a knife four pieces of orange peel and a": [65535, 0], "knife four pieces of orange peel and a dilapidated": [65535, 0], "four pieces of orange peel and a dilapidated old": [65535, 0], "pieces of orange peel and a dilapidated old window": [65535, 0], "of orange peel and a dilapidated old window sash": [65535, 0], "orange peel and a dilapidated old window sash he": [65535, 0], "peel and a dilapidated old window sash he had": [65535, 0], "and a dilapidated old window sash he had had": [65535, 0], "a dilapidated old window sash he had had a": [65535, 0], "dilapidated old window sash he had had a nice": [65535, 0], "old window sash he had had a nice good": [65535, 0], "window sash he had had a nice good idle": [65535, 0], "sash he had had a nice good idle time": [65535, 0], "he had had a nice good idle time all": [65535, 0], "had had a nice good idle time all the": [65535, 0], "had a nice good idle time all the while": [65535, 0], "a nice good idle time all the while plenty": [65535, 0], "nice good idle time all the while plenty of": [65535, 0], "good idle time all the while plenty of company": [65535, 0], "idle time all the while plenty of company and": [65535, 0], "time all the while plenty of company and the": [65535, 0], "all the while plenty of company and the fence": [65535, 0], "the while plenty of company and the fence had": [65535, 0], "while plenty of company and the fence had three": [65535, 0], "plenty of company and the fence had three coats": [65535, 0], "of company and the fence had three coats of": [65535, 0], "company and the fence had three coats of whitewash": [65535, 0], "and the fence had three coats of whitewash on": [65535, 0], "the fence had three coats of whitewash on it": [65535, 0], "fence had three coats of whitewash on it if": [65535, 0], "had three coats of whitewash on it if he": [65535, 0], "three coats of whitewash on it if he hadn't": [65535, 0], "coats of whitewash on it if he hadn't run": [65535, 0], "of whitewash on it if he hadn't run out": [65535, 0], "whitewash on it if he hadn't run out of": [65535, 0], "on it if he hadn't run out of whitewash": [65535, 0], "it if he hadn't run out of whitewash he": [65535, 0], "if he hadn't run out of whitewash he would": [65535, 0], "he hadn't run out of whitewash he would have": [65535, 0], "hadn't run out of whitewash he would have bankrupted": [65535, 0], "run out of whitewash he would have bankrupted every": [65535, 0], "out of whitewash he would have bankrupted every boy": [65535, 0], "of whitewash he would have bankrupted every boy in": [65535, 0], "whitewash he would have bankrupted every boy in the": [65535, 0], "he would have bankrupted every boy in the village": [65535, 0], "would have bankrupted every boy in the village tom": [65535, 0], "have bankrupted every boy in the village tom said": [65535, 0], "bankrupted every boy in the village tom said to": [65535, 0], "every boy in the village tom said to himself": [65535, 0], "boy in the village tom said to himself that": [65535, 0], "in the village tom said to himself that it": [65535, 0], "the village tom said to himself that it was": [65535, 0], "village tom said to himself that it was not": [65535, 0], "tom said to himself that it was not such": [65535, 0], "said to himself that it was not such a": [65535, 0], "to himself that it was not such a hollow": [65535, 0], "himself that it was not such a hollow world": [65535, 0], "that it was not such a hollow world after": [65535, 0], "it was not such a hollow world after all": [65535, 0], "was not such a hollow world after all he": [65535, 0], "not such a hollow world after all he had": [65535, 0], "such a hollow world after all he had discovered": [65535, 0], "a hollow world after all he had discovered a": [65535, 0], "hollow world after all he had discovered a great": [65535, 0], "world after all he had discovered a great law": [65535, 0], "after all he had discovered a great law of": [65535, 0], "all he had discovered a great law of human": [65535, 0], "he had discovered a great law of human action": [65535, 0], "had discovered a great law of human action without": [65535, 0], "discovered a great law of human action without knowing": [65535, 0], "a great law of human action without knowing it": [65535, 0], "great law of human action without knowing it namely": [65535, 0], "law of human action without knowing it namely that": [65535, 0], "of human action without knowing it namely that in": [65535, 0], "human action without knowing it namely that in order": [65535, 0], "action without knowing it namely that in order to": [65535, 0], "without knowing it namely that in order to make": [65535, 0], "knowing it namely that in order to make a": [65535, 0], "it namely that in order to make a man": [65535, 0], "namely that in order to make a man or": [65535, 0], "that in order to make a man or a": [65535, 0], "in order to make a man or a boy": [65535, 0], "order to make a man or a boy covet": [65535, 0], "to make a man or a boy covet a": [65535, 0], "make a man or a boy covet a thing": [65535, 0], "a man or a boy covet a thing it": [65535, 0], "man or a boy covet a thing it is": [65535, 0], "or a boy covet a thing it is only": [65535, 0], "a boy covet a thing it is only necessary": [65535, 0], "boy covet a thing it is only necessary to": [65535, 0], "covet a thing it is only necessary to make": [65535, 0], "a thing it is only necessary to make the": [65535, 0], "thing it is only necessary to make the thing": [65535, 0], "it is only necessary to make the thing difficult": [65535, 0], "is only necessary to make the thing difficult to": [65535, 0], "only necessary to make the thing difficult to attain": [65535, 0], "necessary to make the thing difficult to attain if": [65535, 0], "to make the thing difficult to attain if he": [65535, 0], "make the thing difficult to attain if he had": [65535, 0], "the thing difficult to attain if he had been": [65535, 0], "thing difficult to attain if he had been a": [65535, 0], "difficult to attain if he had been a great": [65535, 0], "to attain if he had been a great and": [65535, 0], "attain if he had been a great and wise": [65535, 0], "if he had been a great and wise philosopher": [65535, 0], "he had been a great and wise philosopher like": [65535, 0], "had been a great and wise philosopher like the": [65535, 0], "been a great and wise philosopher like the writer": [65535, 0], "a great and wise philosopher like the writer of": [65535, 0], "great and wise philosopher like the writer of this": [65535, 0], "and wise philosopher like the writer of this book": [65535, 0], "wise philosopher like the writer of this book he": [65535, 0], "philosopher like the writer of this book he would": [65535, 0], "like the writer of this book he would now": [65535, 0], "the writer of this book he would now have": [65535, 0], "writer of this book he would now have comprehended": [65535, 0], "of this book he would now have comprehended that": [65535, 0], "this book he would now have comprehended that work": [65535, 0], "book he would now have comprehended that work consists": [65535, 0], "he would now have comprehended that work consists of": [65535, 0], "would now have comprehended that work consists of whatever": [65535, 0], "now have comprehended that work consists of whatever a": [65535, 0], "have comprehended that work consists of whatever a body": [65535, 0], "comprehended that work consists of whatever a body is": [65535, 0], "that work consists of whatever a body is obliged": [65535, 0], "work consists of whatever a body is obliged to": [65535, 0], "consists of whatever a body is obliged to do": [65535, 0], "of whatever a body is obliged to do and": [65535, 0], "whatever a body is obliged to do and that": [65535, 0], "a body is obliged to do and that play": [65535, 0], "body is obliged to do and that play consists": [65535, 0], "is obliged to do and that play consists of": [65535, 0], "obliged to do and that play consists of whatever": [65535, 0], "to do and that play consists of whatever a": [65535, 0], "do and that play consists of whatever a body": [65535, 0], "and that play consists of whatever a body is": [65535, 0], "that play consists of whatever a body is not": [65535, 0], "play consists of whatever a body is not obliged": [65535, 0], "consists of whatever a body is not obliged to": [65535, 0], "of whatever a body is not obliged to do": [65535, 0], "whatever a body is not obliged to do and": [65535, 0], "a body is not obliged to do and this": [65535, 0], "body is not obliged to do and this would": [65535, 0], "is not obliged to do and this would help": [65535, 0], "not obliged to do and this would help him": [65535, 0], "obliged to do and this would help him to": [65535, 0], "to do and this would help him to understand": [65535, 0], "do and this would help him to understand why": [65535, 0], "and this would help him to understand why constructing": [65535, 0], "this would help him to understand why constructing artificial": [65535, 0], "would help him to understand why constructing artificial flowers": [65535, 0], "help him to understand why constructing artificial flowers or": [65535, 0], "him to understand why constructing artificial flowers or performing": [65535, 0], "to understand why constructing artificial flowers or performing on": [65535, 0], "understand why constructing artificial flowers or performing on a": [65535, 0], "why constructing artificial flowers or performing on a tread": [65535, 0], "constructing artificial flowers or performing on a tread mill": [65535, 0], "artificial flowers or performing on a tread mill is": [65535, 0], "flowers or performing on a tread mill is work": [65535, 0], "or performing on a tread mill is work while": [65535, 0], "performing on a tread mill is work while rolling": [65535, 0], "on a tread mill is work while rolling ten": [65535, 0], "a tread mill is work while rolling ten pins": [65535, 0], "tread mill is work while rolling ten pins or": [65535, 0], "mill is work while rolling ten pins or climbing": [65535, 0], "is work while rolling ten pins or climbing mont": [65535, 0], "work while rolling ten pins or climbing mont blanc": [65535, 0], "while rolling ten pins or climbing mont blanc is": [65535, 0], "rolling ten pins or climbing mont blanc is only": [65535, 0], "ten pins or climbing mont blanc is only amusement": [65535, 0], "pins or climbing mont blanc is only amusement there": [65535, 0], "or climbing mont blanc is only amusement there are": [65535, 0], "climbing mont blanc is only amusement there are wealthy": [65535, 0], "mont blanc is only amusement there are wealthy gentlemen": [65535, 0], "blanc is only amusement there are wealthy gentlemen in": [65535, 0], "is only amusement there are wealthy gentlemen in england": [65535, 0], "only amusement there are wealthy gentlemen in england who": [65535, 0], "amusement there are wealthy gentlemen in england who drive": [65535, 0], "there are wealthy gentlemen in england who drive four": [65535, 0], "are wealthy gentlemen in england who drive four horse": [65535, 0], "wealthy gentlemen in england who drive four horse passenger": [65535, 0], "gentlemen in england who drive four horse passenger coaches": [65535, 0], "in england who drive four horse passenger coaches twenty": [65535, 0], "england who drive four horse passenger coaches twenty or": [65535, 0], "who drive four horse passenger coaches twenty or thirty": [65535, 0], "drive four horse passenger coaches twenty or thirty miles": [65535, 0], "four horse passenger coaches twenty or thirty miles on": [65535, 0], "horse passenger coaches twenty or thirty miles on a": [65535, 0], "passenger coaches twenty or thirty miles on a daily": [65535, 0], "coaches twenty or thirty miles on a daily line": [65535, 0], "twenty or thirty miles on a daily line in": [65535, 0], "or thirty miles on a daily line in the": [65535, 0], "thirty miles on a daily line in the summer": [65535, 0], "miles on a daily line in the summer because": [65535, 0], "on a daily line in the summer because the": [65535, 0], "a daily line in the summer because the privilege": [65535, 0], "daily line in the summer because the privilege costs": [65535, 0], "line in the summer because the privilege costs them": [65535, 0], "in the summer because the privilege costs them considerable": [65535, 0], "the summer because the privilege costs them considerable money": [65535, 0], "summer because the privilege costs them considerable money but": [65535, 0], "because the privilege costs them considerable money but if": [65535, 0], "the privilege costs them considerable money but if they": [65535, 0], "privilege costs them considerable money but if they were": [65535, 0], "costs them considerable money but if they were offered": [65535, 0], "them considerable money but if they were offered wages": [65535, 0], "considerable money but if they were offered wages for": [65535, 0], "money but if they were offered wages for the": [65535, 0], "but if they were offered wages for the service": [65535, 0], "if they were offered wages for the service that": [65535, 0], "they were offered wages for the service that would": [65535, 0], "were offered wages for the service that would turn": [65535, 0], "offered wages for the service that would turn it": [65535, 0], "wages for the service that would turn it into": [65535, 0], "for the service that would turn it into work": [65535, 0], "the service that would turn it into work and": [65535, 0], "service that would turn it into work and then": [65535, 0], "that would turn it into work and then they": [65535, 0], "would turn it into work and then they would": [65535, 0], "turn it into work and then they would resign": [65535, 0], "it into work and then they would resign the": [65535, 0], "into work and then they would resign the boy": [65535, 0], "work and then they would resign the boy mused": [65535, 0], "and then they would resign the boy mused awhile": [65535, 0], "then they would resign the boy mused awhile over": [65535, 0], "they would resign the boy mused awhile over the": [65535, 0], "would resign the boy mused awhile over the substantial": [65535, 0], "resign the boy mused awhile over the substantial change": [65535, 0], "the boy mused awhile over the substantial change which": [65535, 0], "boy mused awhile over the substantial change which had": [65535, 0], "mused awhile over the substantial change which had taken": [65535, 0], "awhile over the substantial change which had taken place": [65535, 0], "over the substantial change which had taken place in": [65535, 0], "the substantial change which had taken place in his": [65535, 0], "substantial change which had taken place in his worldly": [65535, 0], "change which had taken place in his worldly circumstances": [65535, 0], "which had taken place in his worldly circumstances and": [65535, 0], "had taken place in his worldly circumstances and then": [65535, 0], "taken place in his worldly circumstances and then wended": [65535, 0], "place in his worldly circumstances and then wended toward": [65535, 0], "in his worldly circumstances and then wended toward headquarters": [65535, 0], "his worldly circumstances and then wended toward headquarters to": [65535, 0], "worldly circumstances and then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the summer world was": [65535, 0], "morning was come and all the summer world was bright": [65535, 0], "was come and all the summer world was bright and": [65535, 0], "come and all the summer world was bright and fresh": [65535, 0], "and all the summer world was bright and fresh and": [65535, 0], "all the summer world was bright and fresh and brimming": [65535, 0], "the summer world was bright and fresh and brimming with": [65535, 0], "summer world was bright and fresh and brimming with life": [65535, 0], "world was bright and fresh and brimming with life there": [65535, 0], "was bright and fresh and brimming with life there was": [65535, 0], "bright and fresh and brimming with life there was a": [65535, 0], "and fresh and brimming with life there was a song": [65535, 0], "fresh and brimming with life there was a song in": [65535, 0], "and brimming with life there was a song in every": [65535, 0], "brimming with life there was a song in every heart": [65535, 0], "with life there was a song in every heart and": [65535, 0], "life there was a song in every heart and if": [65535, 0], "there was a song in every heart and if the": [65535, 0], "was a song in every heart and if the heart": [65535, 0], "a song in every heart and if the heart was": [65535, 0], "song in every heart and if the heart was young": [65535, 0], "in every heart and if the heart was young the": [65535, 0], "every heart and if the heart was young the music": [65535, 0], "heart and if the heart was young the music issued": [65535, 0], "and if the heart was young the music issued at": [65535, 0], "if the heart was young the music issued at the": [65535, 0], "the heart was young the music issued at the lips": [65535, 0], "heart was young the music issued at the lips there": [65535, 0], "was young the music issued at the lips there was": [65535, 0], "young the music issued at the lips there was cheer": [65535, 0], "the music issued at the lips there was cheer in": [65535, 0], "music issued at the lips there was cheer in every": [65535, 0], "issued at the lips there was cheer in every face": [65535, 0], "at the lips there was cheer in every face and": [65535, 0], "the lips there was cheer in every face and a": [65535, 0], "lips there was cheer in every face and a spring": [65535, 0], "there was cheer in every face and a spring in": [65535, 0], "was cheer in every face and a spring in every": [65535, 0], "cheer in every face and a spring in every step": [65535, 0], "in every face and a spring in every step the": [65535, 0], "every face and a spring in every step the locust": [65535, 0], "face and a spring in every step the locust trees": [65535, 0], "and a spring in every step the locust trees were": [65535, 0], "a spring in every step the locust trees were in": [65535, 0], "spring in every step the locust trees were in bloom": [65535, 0], "in every step the locust trees were in bloom and": [65535, 0], "every step the locust trees were in bloom and the": [65535, 0], "step the locust trees were in bloom and the fragrance": [65535, 0], "the locust trees were in bloom and the fragrance of": [65535, 0], "locust trees were in bloom and the fragrance of the": [65535, 0], "trees were in bloom and the fragrance of the blossoms": [65535, 0], "were in bloom and the fragrance of the blossoms filled": [65535, 0], "in bloom and the fragrance of the blossoms filled the": [65535, 0], "bloom and the fragrance of the blossoms filled the air": [65535, 0], "and the fragrance of the blossoms filled the air cardiff": [65535, 0], "the fragrance of the blossoms filled the air cardiff hill": [65535, 0], "fragrance of the blossoms filled the air cardiff hill beyond": [65535, 0], "of the blossoms filled the air cardiff hill beyond the": [65535, 0], "the blossoms filled the air cardiff hill beyond the village": [65535, 0], "blossoms filled the air cardiff hill beyond the village and": [65535, 0], "filled the air cardiff hill beyond the village and above": [65535, 0], "the air cardiff hill beyond the village and above it": [65535, 0], "air cardiff hill beyond the village and above it was": [65535, 0], "cardiff hill beyond the village and above it was green": [65535, 0], "hill beyond the village and above it was green with": [65535, 0], "beyond the village and above it was green with vegetation": [65535, 0], "the village and above it was green with vegetation and": [65535, 0], "village and above it was green with vegetation and it": [65535, 0], "and above it was green with vegetation and it lay": [65535, 0], "above it was green with vegetation and it lay just": [65535, 0], "it was green with vegetation and it lay just far": [65535, 0], "was green with vegetation and it lay just far enough": [65535, 0], "green with vegetation and it lay just far enough away": [65535, 0], "with vegetation and it lay just far enough away to": [65535, 0], "vegetation and it lay just far enough away to seem": [65535, 0], "and it lay just far enough away to seem a": [65535, 0], "it lay just far enough away to seem a delectable": [65535, 0], "lay just far enough away to seem a delectable land": [65535, 0], "just far enough away to seem a delectable land dreamy": [65535, 0], "far enough away to seem a delectable land dreamy reposeful": [65535, 0], "enough away to seem a delectable land dreamy reposeful and": [65535, 0], "away to seem a delectable land dreamy reposeful and inviting": [65535, 0], "to seem a delectable land dreamy reposeful and inviting tom": [65535, 0], "seem a delectable land dreamy reposeful and inviting tom appeared": [65535, 0], "a delectable land dreamy reposeful and inviting tom appeared on": [65535, 0], "delectable land dreamy reposeful and inviting tom appeared on the": [65535, 0], "land dreamy reposeful and inviting tom appeared on the sidewalk": [65535, 0], "dreamy reposeful and inviting tom appeared on the sidewalk with": [65535, 0], "reposeful and inviting tom appeared on the sidewalk with a": [65535, 0], "and inviting tom appeared on the sidewalk with a bucket": [65535, 0], "inviting tom appeared on the sidewalk with a bucket of": [65535, 0], "tom appeared on the sidewalk with a bucket of whitewash": [65535, 0], "appeared on the sidewalk with a bucket of whitewash and": [65535, 0], "on the sidewalk with a bucket of whitewash and a": [65535, 0], "the sidewalk with a bucket of whitewash and a long": [65535, 0], "sidewalk with a bucket of whitewash and a long handled": [65535, 0], "with a bucket of whitewash and a long handled brush": [65535, 0], "a bucket of whitewash and a long handled brush he": [65535, 0], "bucket of whitewash and a long handled brush he surveyed": [65535, 0], "of whitewash and a long handled brush he surveyed the": [65535, 0], "whitewash and a long handled brush he surveyed the fence": [65535, 0], "and a long handled brush he surveyed the fence and": [65535, 0], "a long handled brush he surveyed the fence and all": [65535, 0], "long handled brush he surveyed the fence and all gladness": [65535, 0], "handled brush he surveyed the fence and all gladness left": [65535, 0], "brush he surveyed the fence and all gladness left him": [65535, 0], "he surveyed the fence and all gladness left him and": [65535, 0], "surveyed the fence and all gladness left him and a": [65535, 0], "the fence and all gladness left him and a deep": [65535, 0], "fence and all gladness left him and a deep melancholy": [65535, 0], "and all gladness left him and a deep melancholy settled": [65535, 0], "all gladness left him and a deep melancholy settled down": [65535, 0], "gladness left him and a deep melancholy settled down upon": [65535, 0], "left him and a deep melancholy settled down upon his": [65535, 0], "him and a deep melancholy settled down upon his spirit": [65535, 0], "and a deep melancholy settled down upon his spirit thirty": [65535, 0], "a deep melancholy settled down upon his spirit thirty yards": [65535, 0], "deep melancholy settled down upon his spirit thirty yards of": [65535, 0], "melancholy settled down upon his spirit thirty yards of board": [65535, 0], "settled down upon his spirit thirty yards of board fence": [65535, 0], "down upon his spirit thirty yards of board fence nine": [65535, 0], "upon his spirit thirty yards of board fence nine feet": [65535, 0], "his spirit thirty yards of board fence nine feet high": [65535, 0], "spirit thirty yards of board fence nine feet high life": [65535, 0], "thirty yards of board fence nine feet high life to": [65535, 0], "yards of board fence nine feet high life to him": [65535, 0], "of board fence nine feet high life to him seemed": [65535, 0], "board fence nine feet high life to him seemed hollow": [65535, 0], "fence nine feet high life to him seemed hollow and": [65535, 0], "nine feet high life to him seemed hollow and existence": [65535, 0], "feet high life to him seemed hollow and existence but": [65535, 0], "high life to him seemed hollow and existence but a": [65535, 0], "life to him seemed hollow and existence but a burden": [65535, 0], "to him seemed hollow and existence but a burden sighing": [65535, 0], "him seemed hollow and existence but a burden sighing he": [65535, 0], "seemed hollow and existence but a burden sighing he dipped": [65535, 0], "hollow and existence but a burden sighing he dipped his": [65535, 0], "and existence but a burden sighing he dipped his brush": [65535, 0], "existence but a burden sighing he dipped his brush and": [65535, 0], "but a burden sighing he dipped his brush and passed": [65535, 0], "a burden sighing he dipped his brush and passed it": [65535, 0], "burden sighing he dipped his brush and passed it along": [65535, 0], "sighing he dipped his brush and passed it along the": [65535, 0], "he dipped his brush and passed it along the topmost": [65535, 0], "dipped his brush and passed it along the topmost plank": [65535, 0], "his brush and passed it along the topmost plank repeated": [65535, 0], "brush and passed it along the topmost plank repeated the": [65535, 0], "and passed it along the topmost plank repeated the operation": [65535, 0], "passed it along the topmost plank repeated the operation did": [65535, 0], "it along the topmost plank repeated the operation did it": [65535, 0], "along the topmost plank repeated the operation did it again": [65535, 0], "the topmost plank repeated the operation did it again compared": [65535, 0], "topmost plank repeated the operation did it again compared the": [65535, 0], "plank repeated the operation did it again compared the insignificant": [65535, 0], "repeated the operation did it again compared the insignificant whitewashed": [65535, 0], "the operation did it again compared the insignificant whitewashed streak": [65535, 0], "operation did it again compared the insignificant whitewashed streak with": [65535, 0], "did it again compared the insignificant whitewashed streak with the": [65535, 0], "it again compared the insignificant whitewashed streak with the far": [65535, 0], "again compared the insignificant whitewashed streak with the far reaching": [65535, 0], "compared the insignificant whitewashed streak with the far reaching continent": [65535, 0], "the insignificant whitewashed streak with the far reaching continent of": [65535, 0], "insignificant whitewashed streak with the far reaching continent of unwhitewashed": [65535, 0], "whitewashed streak with the far reaching continent of unwhitewashed fence": [65535, 0], "streak with the far reaching continent of unwhitewashed fence and": [65535, 0], "with the far reaching continent of unwhitewashed fence and sat": [65535, 0], "the far reaching continent of unwhitewashed fence and sat down": [65535, 0], "far reaching continent of unwhitewashed fence and sat down on": [65535, 0], "reaching continent of unwhitewashed fence and sat down on a": [65535, 0], "continent of unwhitewashed fence and sat down on a tree": [65535, 0], "of unwhitewashed fence and sat down on a tree box": [65535, 0], "unwhitewashed fence and sat down on a tree box discouraged": [65535, 0], "fence and sat down on a tree box discouraged jim": [65535, 0], "and sat down on a tree box discouraged jim came": [65535, 0], "sat down on a tree box discouraged jim came skipping": [65535, 0], "down on a tree box discouraged jim came skipping out": [65535, 0], "on a tree box discouraged jim came skipping out at": [65535, 0], "a tree box discouraged jim came skipping out at the": [65535, 0], "tree box discouraged jim came skipping out at the gate": [65535, 0], "box discouraged jim came skipping out at the gate with": [65535, 0], "discouraged jim came skipping out at the gate with a": [65535, 0], "jim came skipping out at the gate with a tin": [65535, 0], "came skipping out at the gate with a tin pail": [65535, 0], "skipping out at the gate with a tin pail and": [65535, 0], "out at the gate with a tin pail and singing": [65535, 0], "at the gate with a tin pail and singing buffalo": [65535, 0], "the gate with a tin pail and singing buffalo gals": [65535, 0], "gate with a tin pail and singing buffalo gals bringing": [65535, 0], "with a tin pail and singing buffalo gals bringing water": [65535, 0], "a tin pail and singing buffalo gals bringing water from": [65535, 0], "tin pail and singing buffalo gals bringing water from the": [65535, 0], "pail and singing buffalo gals bringing water from the town": [65535, 0], "and singing buffalo gals bringing water from the town pump": [65535, 0], "singing buffalo gals bringing water from the town pump had": [65535, 0], "buffalo gals bringing water from the town pump had always": [65535, 0], "gals bringing water from the town pump had always been": [65535, 0], "bringing water from the town pump had always been hateful": [65535, 0], "water from the town pump had always been hateful work": [65535, 0], "from the town pump had always been hateful work in": [65535, 0], "the town pump had always been hateful work in tom's": [65535, 0], "town pump had always been hateful work in tom's eyes": [65535, 0], "pump had always been hateful work in tom's eyes before": [65535, 0], "had always been hateful work in tom's eyes before but": [65535, 0], "always been hateful work in tom's eyes before but now": [65535, 0], "been hateful work in tom's eyes before but now it": [65535, 0], "hateful work in tom's eyes before but now it did": [65535, 0], "work in tom's eyes before but now it did not": [65535, 0], "in tom's eyes before but now it did not strike": [65535, 0], "tom's eyes before but now it did not strike him": [65535, 0], "eyes before but now it did not strike him so": [65535, 0], "before but now it did not strike him so he": [65535, 0], "but now it did not strike him so he remembered": [65535, 0], "now it did not strike him so he remembered that": [65535, 0], "it did not strike him so he remembered that there": [65535, 0], "did not strike him so he remembered that there was": [65535, 0], "not strike him so he remembered that there was company": [65535, 0], "strike him so he remembered that there was company at": [65535, 0], "him so he remembered that there was company at the": [65535, 0], "so he remembered that there was company at the pump": [65535, 0], "he remembered that there was company at the pump white": [65535, 0], "remembered that there was company at the pump white mulatto": [65535, 0], "that there was company at the pump white mulatto and": [65535, 0], "there was company at the pump white mulatto and negro": [65535, 0], "was company at the pump white mulatto and negro boys": [65535, 0], "company at the pump white mulatto and negro boys and": [65535, 0], "at the pump white mulatto and negro boys and girls": [65535, 0], "the pump white mulatto and negro boys and girls were": [65535, 0], "pump white mulatto and negro boys and girls were always": [65535, 0], "white mulatto and negro boys and girls were always there": [65535, 0], "mulatto and negro boys and girls were always there waiting": [65535, 0], "and negro boys and girls were always there waiting their": [65535, 0], "negro boys and girls were always there waiting their turns": [65535, 0], "boys and girls were always there waiting their turns resting": [65535, 0], "and girls were always there waiting their turns resting trading": [65535, 0], "girls were always there waiting their turns resting trading playthings": [65535, 0], "were always there waiting their turns resting trading playthings quarrelling": [65535, 0], "always there waiting their turns resting trading playthings quarrelling fighting": [65535, 0], "there waiting their turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "waiting their turns resting trading playthings quarrelling fighting skylarking and": [65535, 0], "their turns resting trading playthings quarrelling fighting skylarking and he": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking and he remembered": [65535, 0], "resting trading playthings quarrelling fighting skylarking and he remembered that": [65535, 0], "trading playthings quarrelling fighting skylarking and he remembered that although": [65535, 0], "playthings quarrelling fighting skylarking and he remembered that although the": [65535, 0], "quarrelling fighting skylarking and he remembered that although the pump": [65535, 0], "fighting skylarking and he remembered that although the pump was": [65535, 0], "skylarking and he remembered that although the pump was only": [65535, 0], "and he remembered that although the pump was only a": [65535, 0], "he remembered that although the pump was only a hundred": [65535, 0], "remembered that although the pump was only a hundred and": [65535, 0], "that although the pump was only a hundred and fifty": [65535, 0], "although the pump was only a hundred and fifty yards": [65535, 0], "the pump was only a hundred and fifty yards off": [65535, 0], "pump was only a hundred and fifty yards off jim": [65535, 0], "was only a hundred and fifty yards off jim never": [65535, 0], "only a hundred and fifty yards off jim never got": [65535, 0], "a hundred and fifty yards off jim never got back": [65535, 0], "hundred and fifty yards off jim never got back with": [65535, 0], "and fifty yards off jim never got back with a": [65535, 0], "fifty yards off jim never got back with a bucket": [65535, 0], "yards off jim never got back with a bucket of": [65535, 0], "off jim never got back with a bucket of water": [65535, 0], "jim never got back with a bucket of water under": [65535, 0], "never got back with a bucket of water under an": [65535, 0], "got back with a bucket of water under an hour": [65535, 0], "back with a bucket of water under an hour and": [65535, 0], "with a bucket of water under an hour and even": [65535, 0], "a bucket of water under an hour and even then": [65535, 0], "bucket of water under an hour and even then somebody": [65535, 0], "of water under an hour and even then somebody generally": [65535, 0], "water under an hour and even then somebody generally had": [65535, 0], "under an hour and even then somebody generally had to": [65535, 0], "an hour and even then somebody generally had to go": [65535, 0], "hour and even then somebody generally had to go after": [65535, 0], "and even then somebody generally had to go after him": [65535, 0], "even then somebody generally had to go after him tom": [65535, 0], "then somebody generally had to go after him tom said": [65535, 0], "somebody generally had to go after him tom said say": [65535, 0], "generally had to go after him tom said say jim": [65535, 0], "had to go after him tom said say jim i'll": [65535, 0], "to go after him tom said say jim i'll fetch": [65535, 0], "go after him tom said say jim i'll fetch the": [65535, 0], "after him tom said say jim i'll fetch the water": [65535, 0], "him tom said say jim i'll fetch the water if": [65535, 0], "tom said say jim i'll fetch the water if you'll": [65535, 0], "said say jim i'll fetch the water if you'll whitewash": [65535, 0], "say jim i'll fetch the water if you'll whitewash some": [65535, 0], "jim i'll fetch the water if you'll whitewash some jim": [65535, 0], "i'll fetch the water if you'll whitewash some jim shook": [65535, 0], "fetch the water if you'll whitewash some jim shook his": [65535, 0], "the water if you'll whitewash some jim shook his head": [65535, 0], "water if you'll whitewash some jim shook his head and": [65535, 0], "if you'll whitewash some jim shook his head and said": [65535, 0], "you'll whitewash some jim shook his head and said can't": [65535, 0], "whitewash some jim shook his head and said can't mars": [65535, 0], "some jim shook his head and said can't mars tom": [65535, 0], "jim shook his head and said can't mars tom ole": [65535, 0], "shook his head and said can't mars tom ole missis": [65535, 0], "his head and said can't mars tom ole missis she": [65535, 0], "head and said can't mars tom ole missis she tole": [65535, 0], "and said can't mars tom ole missis she tole me": [65535, 0], "said can't mars tom ole missis she tole me i": [65535, 0], "can't mars tom ole missis she tole me i got": [65535, 0], "mars tom ole missis she tole me i got to": [65535, 0], "tom ole missis she tole me i got to go": [65535, 0], "ole missis she tole me i got to go an'": [65535, 0], "missis she tole me i got to go an' git": [65535, 0], "she tole me i got to go an' git dis": [65535, 0], "tole me i got to go an' git dis water": [65535, 0], "me i got to go an' git dis water an'": [65535, 0], "i got to go an' git dis water an' not": [65535, 0], "got to go an' git dis water an' not stop": [65535, 0], "to go an' git dis water an' not stop foolin'": [65535, 0], "go an' git dis water an' not stop foolin' roun'": [65535, 0], "an' git dis water an' not stop foolin' roun' wid": [65535, 0], "git dis water an' not stop foolin' roun' wid anybody": [65535, 0], "dis water an' not stop foolin' roun' wid anybody she": [65535, 0], "water an' not stop foolin' roun' wid anybody she say": [65535, 0], "an' not stop foolin' roun' wid anybody she say she": [65535, 0], "not stop foolin' roun' wid anybody she say she spec'": [65535, 0], "stop foolin' roun' wid anybody she say she spec' mars": [65535, 0], "foolin' roun' wid anybody she say she spec' mars tom": [65535, 0], "roun' wid anybody she say she spec' mars tom gwine": [65535, 0], "wid anybody she say she spec' mars tom gwine to": [65535, 0], "anybody she say she spec' mars tom gwine to ax": [65535, 0], "she say she spec' mars tom gwine to ax me": [65535, 0], "say she spec' mars tom gwine to ax me to": [65535, 0], "she spec' mars tom gwine to ax me to whitewash": [65535, 0], "spec' mars tom gwine to ax me to whitewash an'": [65535, 0], "mars tom gwine to ax me to whitewash an' so": [65535, 0], "tom gwine to ax me to whitewash an' so she": [65535, 0], "gwine to ax me to whitewash an' so she tole": [65535, 0], "to ax me to whitewash an' so she tole me": [65535, 0], "ax me to whitewash an' so she tole me go": [65535, 0], "me to whitewash an' so she tole me go 'long": [65535, 0], "to whitewash an' so she tole me go 'long an'": [65535, 0], "whitewash an' so she tole me go 'long an' 'tend": [65535, 0], "an' so she tole me go 'long an' 'tend to": [65535, 0], "so she tole me go 'long an' 'tend to my": [65535, 0], "she tole me go 'long an' 'tend to my own": [65535, 0], "tole me go 'long an' 'tend to my own business": [65535, 0], "me go 'long an' 'tend to my own business she": [65535, 0], "go 'long an' 'tend to my own business she 'lowed": [65535, 0], "'long an' 'tend to my own business she 'lowed she'd": [65535, 0], "an' 'tend to my own business she 'lowed she'd 'tend": [65535, 0], "'tend to my own business she 'lowed she'd 'tend to": [65535, 0], "to my own business she 'lowed she'd 'tend to de": [65535, 0], "my own business she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "own business she 'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "business she 'lowed she'd 'tend to de whitewashin' oh never": [65535, 0], "she 'lowed she'd 'tend to de whitewashin' oh never you": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh never you mind": [65535, 0], "she'd 'tend to de whitewashin' oh never you mind what": [65535, 0], "'tend to de whitewashin' oh never you mind what she": [65535, 0], "to de whitewashin' oh never you mind what she said": [65535, 0], "de whitewashin' oh never you mind what she said jim": [65535, 0], "whitewashin' oh never you mind what she said jim that's": [65535, 0], "oh never you mind what she said jim that's the": [65535, 0], "never you mind what she said jim that's the way": [65535, 0], "you mind what she said jim that's the way she": [65535, 0], "mind what she said jim that's the way she always": [65535, 0], "what she said jim that's the way she always talks": [65535, 0], "she said jim that's the way she always talks gimme": [65535, 0], "said jim that's the way she always talks gimme the": [65535, 0], "jim that's the way she always talks gimme the bucket": [65535, 0], "that's the way she always talks gimme the bucket i": [65535, 0], "the way she always talks gimme the bucket i won't": [65535, 0], "way she always talks gimme the bucket i won't be": [65535, 0], "she always talks gimme the bucket i won't be gone": [65535, 0], "always talks gimme the bucket i won't be gone only": [65535, 0], "talks gimme the bucket i won't be gone only a": [65535, 0], "gimme the bucket i won't be gone only a minute": [65535, 0], "the bucket i won't be gone only a minute she": [65535, 0], "bucket i won't be gone only a minute she won't": [65535, 0], "i won't be gone only a minute she won't ever": [65535, 0], "won't be gone only a minute she won't ever know": [65535, 0], "be gone only a minute she won't ever know oh": [65535, 0], "gone only a minute she won't ever know oh i": [65535, 0], "only a minute she won't ever know oh i dasn't": [65535, 0], "a minute she won't ever know oh i dasn't mars": [65535, 0], "minute she won't ever know oh i dasn't mars tom": [65535, 0], "she won't ever know oh i dasn't mars tom ole": [65535, 0], "won't ever know oh i dasn't mars tom ole missis": [65535, 0], "ever know oh i dasn't mars tom ole missis she'd": [65535, 0], "know oh i dasn't mars tom ole missis she'd take": [65535, 0], "oh i dasn't mars tom ole missis she'd take an'": [65535, 0], "i dasn't mars tom ole missis she'd take an' tar": [65535, 0], "dasn't mars tom ole missis she'd take an' tar de": [65535, 0], "mars tom ole missis she'd take an' tar de head": [65535, 0], "tom ole missis she'd take an' tar de head off'n": [65535, 0], "ole missis she'd take an' tar de head off'n me": [65535, 0], "missis she'd take an' tar de head off'n me 'deed": [65535, 0], "she'd take an' tar de head off'n me 'deed she": [65535, 0], "take an' tar de head off'n me 'deed she would": [65535, 0], "an' tar de head off'n me 'deed she would she": [65535, 0], "tar de head off'n me 'deed she would she she": [65535, 0], "de head off'n me 'deed she would she she never": [65535, 0], "head off'n me 'deed she would she she never licks": [65535, 0], "off'n me 'deed she would she she never licks anybody": [65535, 0], "me 'deed she would she she never licks anybody whacks": [65535, 0], "'deed she would she she never licks anybody whacks 'em": [65535, 0], "she would she she never licks anybody whacks 'em over": [65535, 0], "would she she never licks anybody whacks 'em over the": [65535, 0], "she she never licks anybody whacks 'em over the head": [65535, 0], "she never licks anybody whacks 'em over the head with": [65535, 0], "never licks anybody whacks 'em over the head with her": [65535, 0], "licks anybody whacks 'em over the head with her thimble": [65535, 0], "anybody whacks 'em over the head with her thimble and": [65535, 0], "whacks 'em over the head with her thimble and who": [65535, 0], "'em over the head with her thimble and who cares": [65535, 0], "over the head with her thimble and who cares for": [65535, 0], "the head with her thimble and who cares for that": [65535, 0], "head with her thimble and who cares for that i'd": [65535, 0], "with her thimble and who cares for that i'd like": [65535, 0], "her thimble and who cares for that i'd like to": [65535, 0], "thimble and who cares for that i'd like to know": [65535, 0], "and who cares for that i'd like to know she": [65535, 0], "who cares for that i'd like to know she talks": [65535, 0], "cares for that i'd like to know she talks awful": [65535, 0], "for that i'd like to know she talks awful but": [65535, 0], "that i'd like to know she talks awful but talk": [65535, 0], "i'd like to know she talks awful but talk don't": [65535, 0], "like to know she talks awful but talk don't hurt": [65535, 0], "to know she talks awful but talk don't hurt anyways": [65535, 0], "know she talks awful but talk don't hurt anyways it": [65535, 0], "she talks awful but talk don't hurt anyways it don't": [65535, 0], "talks awful but talk don't hurt anyways it don't if": [65535, 0], "awful but talk don't hurt anyways it don't if she": [65535, 0], "but talk don't hurt anyways it don't if she don't": [65535, 0], "talk don't hurt anyways it don't if she don't cry": [65535, 0], "don't hurt anyways it don't if she don't cry jim": [65535, 0], "hurt anyways it don't if she don't cry jim i'll": [65535, 0], "anyways it don't if she don't cry jim i'll give": [65535, 0], "it don't if she don't cry jim i'll give you": [65535, 0], "don't if she don't cry jim i'll give you a": [65535, 0], "if she don't cry jim i'll give you a marvel": [65535, 0], "she don't cry jim i'll give you a marvel i'll": [65535, 0], "don't cry jim i'll give you a marvel i'll give": [65535, 0], "cry jim i'll give you a marvel i'll give you": [65535, 0], "jim i'll give you a marvel i'll give you a": [65535, 0], "i'll give you a marvel i'll give you a white": [65535, 0], "give you a marvel i'll give you a white alley": [65535, 0], "you a marvel i'll give you a white alley jim": [65535, 0], "a marvel i'll give you a white alley jim began": [65535, 0], "marvel i'll give you a white alley jim began to": [65535, 0], "i'll give you a white alley jim began to waver": [65535, 0], "give you a white alley jim began to waver white": [65535, 0], "you a white alley jim began to waver white alley": [65535, 0], "a white alley jim began to waver white alley jim": [65535, 0], "white alley jim began to waver white alley jim and": [65535, 0], "alley jim began to waver white alley jim and it's": [65535, 0], "jim began to waver white alley jim and it's a": [65535, 0], "began to waver white alley jim and it's a bully": [65535, 0], "to waver white alley jim and it's a bully taw": [65535, 0], "waver white alley jim and it's a bully taw my": [65535, 0], "white alley jim and it's a bully taw my dat's": [65535, 0], "alley jim and it's a bully taw my dat's a": [65535, 0], "jim and it's a bully taw my dat's a mighty": [65535, 0], "and it's a bully taw my dat's a mighty gay": [65535, 0], "it's a bully taw my dat's a mighty gay marvel": [65535, 0], "a bully taw my dat's a mighty gay marvel i": [65535, 0], "bully taw my dat's a mighty gay marvel i tell": [65535, 0], "taw my dat's a mighty gay marvel i tell you": [65535, 0], "my dat's a mighty gay marvel i tell you but": [65535, 0], "dat's a mighty gay marvel i tell you but mars": [65535, 0], "a mighty gay marvel i tell you but mars tom": [65535, 0], "mighty gay marvel i tell you but mars tom i's": [65535, 0], "gay marvel i tell you but mars tom i's powerful": [65535, 0], "marvel i tell you but mars tom i's powerful 'fraid": [65535, 0], "i tell you but mars tom i's powerful 'fraid ole": [65535, 0], "tell you but mars tom i's powerful 'fraid ole missis": [65535, 0], "you but mars tom i's powerful 'fraid ole missis and": [65535, 0], "but mars tom i's powerful 'fraid ole missis and besides": [65535, 0], "mars tom i's powerful 'fraid ole missis and besides if": [65535, 0], "tom i's powerful 'fraid ole missis and besides if you": [65535, 0], "i's powerful 'fraid ole missis and besides if you will": [65535, 0], "powerful 'fraid ole missis and besides if you will i'll": [65535, 0], "'fraid ole missis and besides if you will i'll show": [65535, 0], "ole missis and besides if you will i'll show you": [65535, 0], "missis and besides if you will i'll show you my": [65535, 0], "and besides if you will i'll show you my sore": [65535, 0], "besides if you will i'll show you my sore toe": [65535, 0], "if you will i'll show you my sore toe jim": [65535, 0], "you will i'll show you my sore toe jim was": [65535, 0], "will i'll show you my sore toe jim was only": [65535, 0], "i'll show you my sore toe jim was only human": [65535, 0], "show you my sore toe jim was only human this": [65535, 0], "you my sore toe jim was only human this attraction": [65535, 0], "my sore toe jim was only human this attraction was": [65535, 0], "sore toe jim was only human this attraction was too": [65535, 0], "toe jim was only human this attraction was too much": [65535, 0], "jim was only human this attraction was too much for": [65535, 0], "was only human this attraction was too much for him": [65535, 0], "only human this attraction was too much for him he": [65535, 0], "human this attraction was too much for him he put": [65535, 0], "this attraction was too much for him he put down": [65535, 0], "attraction was too much for him he put down his": [65535, 0], "was too much for him he put down his pail": [65535, 0], "too much for him he put down his pail took": [65535, 0], "much for him he put down his pail took the": [65535, 0], "for him he put down his pail took the white": [65535, 0], "him he put down his pail took the white alley": [65535, 0], "he put down his pail took the white alley and": [65535, 0], "put down his pail took the white alley and bent": [65535, 0], "down his pail took the white alley and bent over": [65535, 0], "his pail took the white alley and bent over the": [65535, 0], "pail took the white alley and bent over the toe": [65535, 0], "took the white alley and bent over the toe with": [65535, 0], "the white alley and bent over the toe with absorbing": [65535, 0], "white alley and bent over the toe with absorbing interest": [65535, 0], "alley and bent over the toe with absorbing interest while": [65535, 0], "and bent over the toe with absorbing interest while the": [65535, 0], "bent over the toe with absorbing interest while the bandage": [65535, 0], "over the toe with absorbing interest while the bandage was": [65535, 0], "the toe with absorbing interest while the bandage was being": [65535, 0], "toe with absorbing interest while the bandage was being unwound": [65535, 0], "with absorbing interest while the bandage was being unwound in": [65535, 0], "absorbing interest while the bandage was being unwound in another": [65535, 0], "interest while the bandage was being unwound in another moment": [65535, 0], "while the bandage was being unwound in another moment he": [65535, 0], "the bandage was being unwound in another moment he was": [65535, 0], "bandage was being unwound in another moment he was flying": [65535, 0], "was being unwound in another moment he was flying down": [65535, 0], "being unwound in another moment he was flying down the": [65535, 0], "unwound in another moment he was flying down the street": [65535, 0], "in another moment he was flying down the street with": [65535, 0], "another moment he was flying down the street with his": [65535, 0], "moment he was flying down the street with his pail": [65535, 0], "he was flying down the street with his pail and": [65535, 0], "was flying down the street with his pail and a": [65535, 0], "flying down the street with his pail and a tingling": [65535, 0], "down the street with his pail and a tingling rear": [65535, 0], "the street with his pail and a tingling rear tom": [65535, 0], "street with his pail and a tingling rear tom was": [65535, 0], "with his pail and a tingling rear tom was whitewashing": [65535, 0], "his pail and a tingling rear tom was whitewashing with": [65535, 0], "pail and a tingling rear tom was whitewashing with vigor": [65535, 0], "and a tingling rear tom was whitewashing with vigor and": [65535, 0], "a tingling rear tom was whitewashing with vigor and aunt": [65535, 0], "tingling rear tom was whitewashing with vigor and aunt polly": [65535, 0], "rear tom was whitewashing with vigor and aunt polly was": [65535, 0], "tom was whitewashing with vigor and aunt polly was retiring": [65535, 0], "was whitewashing with vigor and aunt polly was retiring from": [65535, 0], "whitewashing with vigor and aunt polly was retiring from the": [65535, 0], "with vigor and aunt polly was retiring from the field": [65535, 0], "vigor and aunt polly was retiring from the field with": [65535, 0], "and aunt polly was retiring from the field with a": [65535, 0], "aunt polly was retiring from the field with a slipper": [65535, 0], "polly was retiring from the field with a slipper in": [65535, 0], "was retiring from the field with a slipper in her": [65535, 0], "retiring from the field with a slipper in her hand": [65535, 0], "from the field with a slipper in her hand and": [65535, 0], "the field with a slipper in her hand and triumph": [65535, 0], "field with a slipper in her hand and triumph in": [65535, 0], "with a slipper in her hand and triumph in her": [65535, 0], "a slipper in her hand and triumph in her eye": [65535, 0], "slipper in her hand and triumph in her eye but": [65535, 0], "in her hand and triumph in her eye but tom's": [65535, 0], "her hand and triumph in her eye but tom's energy": [65535, 0], "hand and triumph in her eye but tom's energy did": [65535, 0], "and triumph in her eye but tom's energy did not": [65535, 0], "triumph in her eye but tom's energy did not last": [65535, 0], "in her eye but tom's energy did not last he": [65535, 0], "her eye but tom's energy did not last he began": [65535, 0], "eye but tom's energy did not last he began to": [65535, 0], "but tom's energy did not last he began to think": [65535, 0], "tom's energy did not last he began to think of": [65535, 0], "energy did not last he began to think of the": [65535, 0], "did not last he began to think of the fun": [65535, 0], "not last he began to think of the fun he": [65535, 0], "last he began to think of the fun he had": [65535, 0], "he began to think of the fun he had planned": [65535, 0], "began to think of the fun he had planned for": [65535, 0], "to think of the fun he had planned for this": [65535, 0], "think of the fun he had planned for this day": [65535, 0], "of the fun he had planned for this day and": [65535, 0], "the fun he had planned for this day and his": [65535, 0], "fun he had planned for this day and his sorrows": [65535, 0], "he had planned for this day and his sorrows multiplied": [65535, 0], "had planned for this day and his sorrows multiplied soon": [65535, 0], "planned for this day and his sorrows multiplied soon the": [65535, 0], "for this day and his sorrows multiplied soon the free": [65535, 0], "this day and his sorrows multiplied soon the free boys": [65535, 0], "day and his sorrows multiplied soon the free boys would": [65535, 0], "and his sorrows multiplied soon the free boys would come": [65535, 0], "his sorrows multiplied soon the free boys would come tripping": [65535, 0], "sorrows multiplied soon the free boys would come tripping along": [65535, 0], "multiplied soon the free boys would come tripping along on": [65535, 0], "soon the free boys would come tripping along on all": [65535, 0], "the free boys would come tripping along on all sorts": [65535, 0], "free boys would come tripping along on all sorts of": [65535, 0], "boys would come tripping along on all sorts of delicious": [65535, 0], "would come tripping along on all sorts of delicious expeditions": [65535, 0], "come tripping along on all sorts of delicious expeditions and": [65535, 0], "tripping along on all sorts of delicious expeditions and they": [65535, 0], "along on all sorts of delicious expeditions and they would": [65535, 0], "on all sorts of delicious expeditions and they would make": [65535, 0], "all sorts of delicious expeditions and they would make a": [65535, 0], "sorts of delicious expeditions and they would make a world": [65535, 0], "of delicious expeditions and they would make a world of": [65535, 0], "delicious expeditions and they would make a world of fun": [65535, 0], "expeditions and they would make a world of fun of": [65535, 0], "and they would make a world of fun of him": [65535, 0], "they would make a world of fun of him for": [65535, 0], "would make a world of fun of him for having": [65535, 0], "make a world of fun of him for having to": [65535, 0], "a world of fun of him for having to work": [65535, 0], "world of fun of him for having to work the": [65535, 0], "of fun of him for having to work the very": [65535, 0], "fun of him for having to work the very thought": [65535, 0], "of him for having to work the very thought of": [65535, 0], "him for having to work the very thought of it": [65535, 0], "for having to work the very thought of it burnt": [65535, 0], "having to work the very thought of it burnt him": [65535, 0], "to work the very thought of it burnt him like": [65535, 0], "work the very thought of it burnt him like fire": [65535, 0], "the very thought of it burnt him like fire he": [65535, 0], "very thought of it burnt him like fire he got": [65535, 0], "thought of it burnt him like fire he got out": [65535, 0], "of it burnt him like fire he got out his": [65535, 0], "it burnt him like fire he got out his worldly": [65535, 0], "burnt him like fire he got out his worldly wealth": [65535, 0], "him like fire he got out his worldly wealth and": [65535, 0], "like fire he got out his worldly wealth and examined": [65535, 0], "fire he got out his worldly wealth and examined it": [65535, 0], "he got out his worldly wealth and examined it bits": [65535, 0], "got out his worldly wealth and examined it bits of": [65535, 0], "out his worldly wealth and examined it bits of toys": [65535, 0], "his worldly wealth and examined it bits of toys marbles": [65535, 0], "worldly wealth and examined it bits of toys marbles and": [65535, 0], "wealth and examined it bits of toys marbles and trash": [65535, 0], "and examined it bits of toys marbles and trash enough": [65535, 0], "examined it bits of toys marbles and trash enough to": [65535, 0], "it bits of toys marbles and trash enough to buy": [65535, 0], "bits of toys marbles and trash enough to buy an": [65535, 0], "of toys marbles and trash enough to buy an exchange": [65535, 0], "toys marbles and trash enough to buy an exchange of": [65535, 0], "marbles and trash enough to buy an exchange of work": [65535, 0], "and trash enough to buy an exchange of work maybe": [65535, 0], "trash enough to buy an exchange of work maybe but": [65535, 0], "enough to buy an exchange of work maybe but not": [65535, 0], "to buy an exchange of work maybe but not half": [65535, 0], "buy an exchange of work maybe but not half enough": [65535, 0], "an exchange of work maybe but not half enough to": [65535, 0], "exchange of work maybe but not half enough to buy": [65535, 0], "of work maybe but not half enough to buy so": [65535, 0], "work maybe but not half enough to buy so much": [65535, 0], "maybe but not half enough to buy so much as": [65535, 0], "but not half enough to buy so much as half": [65535, 0], "not half enough to buy so much as half an": [65535, 0], "half enough to buy so much as half an hour": [65535, 0], "enough to buy so much as half an hour of": [65535, 0], "to buy so much as half an hour of pure": [65535, 0], "buy so much as half an hour of pure freedom": [65535, 0], "so much as half an hour of pure freedom so": [65535, 0], "much as half an hour of pure freedom so he": [65535, 0], "as half an hour of pure freedom so he returned": [65535, 0], "half an hour of pure freedom so he returned his": [65535, 0], "an hour of pure freedom so he returned his straitened": [65535, 0], "hour of pure freedom so he returned his straitened means": [65535, 0], "of pure freedom so he returned his straitened means to": [65535, 0], "pure freedom so he returned his straitened means to his": [65535, 0], "freedom so he returned his straitened means to his pocket": [65535, 0], "so he returned his straitened means to his pocket and": [65535, 0], "he returned his straitened means to his pocket and gave": [65535, 0], "returned his straitened means to his pocket and gave up": [65535, 0], "his straitened means to his pocket and gave up the": [65535, 0], "straitened means to his pocket and gave up the idea": [65535, 0], "means to his pocket and gave up the idea of": [65535, 0], "to his pocket and gave up the idea of trying": [65535, 0], "his pocket and gave up the idea of trying to": [65535, 0], "pocket and gave up the idea of trying to buy": [65535, 0], "and gave up the idea of trying to buy the": [65535, 0], "gave up the idea of trying to buy the boys": [65535, 0], "up the idea of trying to buy the boys at": [65535, 0], "the idea of trying to buy the boys at this": [65535, 0], "idea of trying to buy the boys at this dark": [65535, 0], "of trying to buy the boys at this dark and": [65535, 0], "trying to buy the boys at this dark and hopeless": [65535, 0], "to buy the boys at this dark and hopeless moment": [65535, 0], "buy the boys at this dark and hopeless moment an": [65535, 0], "the boys at this dark and hopeless moment an inspiration": [65535, 0], "boys at this dark and hopeless moment an inspiration burst": [65535, 0], "at this dark and hopeless moment an inspiration burst upon": [65535, 0], "this dark and hopeless moment an inspiration burst upon him": [65535, 0], "dark and hopeless moment an inspiration burst upon him nothing": [65535, 0], "and hopeless moment an inspiration burst upon him nothing less": [65535, 0], "hopeless moment an inspiration burst upon him nothing less than": [65535, 0], "moment an inspiration burst upon him nothing less than a": [65535, 0], "an inspiration burst upon him nothing less than a great": [65535, 0], "inspiration burst upon him nothing less than a great magnificent": [65535, 0], "burst upon him nothing less than a great magnificent inspiration": [65535, 0], "upon him nothing less than a great magnificent inspiration he": [65535, 0], "him nothing less than a great magnificent inspiration he took": [65535, 0], "nothing less than a great magnificent inspiration he took up": [65535, 0], "less than a great magnificent inspiration he took up his": [65535, 0], "than a great magnificent inspiration he took up his brush": [65535, 0], "a great magnificent inspiration he took up his brush and": [65535, 0], "great magnificent inspiration he took up his brush and went": [65535, 0], "magnificent inspiration he took up his brush and went tranquilly": [65535, 0], "inspiration he took up his brush and went tranquilly to": [65535, 0], "he took up his brush and went tranquilly to work": [65535, 0], "took up his brush and went tranquilly to work ben": [65535, 0], "up his brush and went tranquilly to work ben rogers": [65535, 0], "his brush and went tranquilly to work ben rogers hove": [65535, 0], "brush and went tranquilly to work ben rogers hove in": [65535, 0], "and went tranquilly to work ben rogers hove in sight": [65535, 0], "went tranquilly to work ben rogers hove in sight presently": [65535, 0], "tranquilly to work ben rogers hove in sight presently the": [65535, 0], "to work ben rogers hove in sight presently the very": [65535, 0], "work ben rogers hove in sight presently the very boy": [65535, 0], "ben rogers hove in sight presently the very boy of": [65535, 0], "rogers hove in sight presently the very boy of all": [65535, 0], "hove in sight presently the very boy of all boys": [65535, 0], "in sight presently the very boy of all boys whose": [65535, 0], "sight presently the very boy of all boys whose ridicule": [65535, 0], "presently the very boy of all boys whose ridicule he": [65535, 0], "the very boy of all boys whose ridicule he had": [65535, 0], "very boy of all boys whose ridicule he had been": [65535, 0], "boy of all boys whose ridicule he had been dreading": [65535, 0], "of all boys whose ridicule he had been dreading ben's": [65535, 0], "all boys whose ridicule he had been dreading ben's gait": [65535, 0], "boys whose ridicule he had been dreading ben's gait was": [65535, 0], "whose ridicule he had been dreading ben's gait was the": [65535, 0], "ridicule he had been dreading ben's gait was the hop": [65535, 0], "he had been dreading ben's gait was the hop skip": [65535, 0], "had been dreading ben's gait was the hop skip and": [65535, 0], "been dreading ben's gait was the hop skip and jump": [65535, 0], "dreading ben's gait was the hop skip and jump proof": [65535, 0], "ben's gait was the hop skip and jump proof enough": [65535, 0], "gait was the hop skip and jump proof enough that": [65535, 0], "was the hop skip and jump proof enough that his": [65535, 0], "the hop skip and jump proof enough that his heart": [65535, 0], "hop skip and jump proof enough that his heart was": [65535, 0], "skip and jump proof enough that his heart was light": [65535, 0], "and jump proof enough that his heart was light and": [65535, 0], "jump proof enough that his heart was light and his": [65535, 0], "proof enough that his heart was light and his anticipations": [65535, 0], "enough that his heart was light and his anticipations high": [65535, 0], "that his heart was light and his anticipations high he": [65535, 0], "his heart was light and his anticipations high he was": [65535, 0], "heart was light and his anticipations high he was eating": [65535, 0], "was light and his anticipations high he was eating an": [65535, 0], "light and his anticipations high he was eating an apple": [65535, 0], "and his anticipations high he was eating an apple and": [65535, 0], "his anticipations high he was eating an apple and giving": [65535, 0], "anticipations high he was eating an apple and giving a": [65535, 0], "high he was eating an apple and giving a long": [65535, 0], "he was eating an apple and giving a long melodious": [65535, 0], "was eating an apple and giving a long melodious whoop": [65535, 0], "eating an apple and giving a long melodious whoop at": [65535, 0], "an apple and giving a long melodious whoop at intervals": [65535, 0], "apple and giving a long melodious whoop at intervals followed": [65535, 0], "and giving a long melodious whoop at intervals followed by": [65535, 0], "giving a long melodious whoop at intervals followed by a": [65535, 0], "a long melodious whoop at intervals followed by a deep": [65535, 0], "long melodious whoop at intervals followed by a deep toned": [65535, 0], "melodious whoop at intervals followed by a deep toned ding": [65535, 0], "whoop at intervals followed by a deep toned ding dong": [65535, 0], "at intervals followed by a deep toned ding dong dong": [65535, 0], "intervals followed by a deep toned ding dong dong ding": [65535, 0], "followed by a deep toned ding dong dong ding dong": [65535, 0], "by a deep toned ding dong dong ding dong dong": [65535, 0], "a deep toned ding dong dong ding dong dong for": [65535, 0], "deep toned ding dong dong ding dong dong for he": [65535, 0], "toned ding dong dong ding dong dong for he was": [65535, 0], "ding dong dong ding dong dong for he was personating": [65535, 0], "dong dong ding dong dong for he was personating a": [65535, 0], "dong ding dong dong for he was personating a steamboat": [65535, 0], "ding dong dong for he was personating a steamboat as": [65535, 0], "dong dong for he was personating a steamboat as he": [65535, 0], "dong for he was personating a steamboat as he drew": [65535, 0], "for he was personating a steamboat as he drew near": [65535, 0], "he was personating a steamboat as he drew near he": [65535, 0], "was personating a steamboat as he drew near he slackened": [65535, 0], "personating a steamboat as he drew near he slackened speed": [65535, 0], "a steamboat as he drew near he slackened speed took": [65535, 0], "steamboat as he drew near he slackened speed took the": [65535, 0], "as he drew near he slackened speed took the middle": [65535, 0], "he drew near he slackened speed took the middle of": [65535, 0], "drew near he slackened speed took the middle of the": [65535, 0], "near he slackened speed took the middle of the street": [65535, 0], "he slackened speed took the middle of the street leaned": [65535, 0], "slackened speed took the middle of the street leaned far": [65535, 0], "speed took the middle of the street leaned far over": [65535, 0], "took the middle of the street leaned far over to": [65535, 0], "the middle of the street leaned far over to starboard": [65535, 0], "middle of the street leaned far over to starboard and": [65535, 0], "of the street leaned far over to starboard and rounded": [65535, 0], "the street leaned far over to starboard and rounded to": [65535, 0], "street leaned far over to starboard and rounded to ponderously": [65535, 0], "leaned far over to starboard and rounded to ponderously and": [65535, 0], "far over to starboard and rounded to ponderously and with": [65535, 0], "over to starboard and rounded to ponderously and with laborious": [65535, 0], "to starboard and rounded to ponderously and with laborious pomp": [65535, 0], "starboard and rounded to ponderously and with laborious pomp and": [65535, 0], "and rounded to ponderously and with laborious pomp and circumstance": [65535, 0], "rounded to ponderously and with laborious pomp and circumstance for": [65535, 0], "to ponderously and with laborious pomp and circumstance for he": [65535, 0], "ponderously and with laborious pomp and circumstance for he was": [65535, 0], "and with laborious pomp and circumstance for he was personating": [65535, 0], "with laborious pomp and circumstance for he was personating the": [65535, 0], "laborious pomp and circumstance for he was personating the big": [65535, 0], "pomp and circumstance for he was personating the big missouri": [65535, 0], "and circumstance for he was personating the big missouri and": [65535, 0], "circumstance for he was personating the big missouri and considered": [65535, 0], "for he was personating the big missouri and considered himself": [65535, 0], "he was personating the big missouri and considered himself to": [65535, 0], "was personating the big missouri and considered himself to be": [65535, 0], "personating the big missouri and considered himself to be drawing": [65535, 0], "the big missouri and considered himself to be drawing nine": [65535, 0], "big missouri and considered himself to be drawing nine feet": [65535, 0], "missouri and considered himself to be drawing nine feet of": [65535, 0], "and considered himself to be drawing nine feet of water": [65535, 0], "considered himself to be drawing nine feet of water he": [65535, 0], "himself to be drawing nine feet of water he was": [65535, 0], "to be drawing nine feet of water he was boat": [65535, 0], "be drawing nine feet of water he was boat and": [65535, 0], "drawing nine feet of water he was boat and captain": [65535, 0], "nine feet of water he was boat and captain and": [65535, 0], "feet of water he was boat and captain and engine": [65535, 0], "of water he was boat and captain and engine bells": [65535, 0], "water he was boat and captain and engine bells combined": [65535, 0], "he was boat and captain and engine bells combined so": [65535, 0], "was boat and captain and engine bells combined so he": [65535, 0], "boat and captain and engine bells combined so he had": [65535, 0], "and captain and engine bells combined so he had to": [65535, 0], "captain and engine bells combined so he had to imagine": [65535, 0], "and engine bells combined so he had to imagine himself": [65535, 0], "engine bells combined so he had to imagine himself standing": [65535, 0], "bells combined so he had to imagine himself standing on": [65535, 0], "combined so he had to imagine himself standing on his": [65535, 0], "so he had to imagine himself standing on his own": [65535, 0], "he had to imagine himself standing on his own hurricane": [65535, 0], "had to imagine himself standing on his own hurricane deck": [65535, 0], "to imagine himself standing on his own hurricane deck giving": [65535, 0], "imagine himself standing on his own hurricane deck giving the": [65535, 0], "himself standing on his own hurricane deck giving the orders": [65535, 0], "standing on his own hurricane deck giving the orders and": [65535, 0], "on his own hurricane deck giving the orders and executing": [65535, 0], "his own hurricane deck giving the orders and executing them": [65535, 0], "own hurricane deck giving the orders and executing them stop": [65535, 0], "hurricane deck giving the orders and executing them stop her": [65535, 0], "deck giving the orders and executing them stop her sir": [65535, 0], "giving the orders and executing them stop her sir ting": [65535, 0], "the orders and executing them stop her sir ting a": [65535, 0], "orders and executing them stop her sir ting a ling": [65535, 0], "and executing them stop her sir ting a ling ling": [65535, 0], "executing them stop her sir ting a ling ling the": [65535, 0], "them stop her sir ting a ling ling the headway": [65535, 0], "stop her sir ting a ling ling the headway ran": [65535, 0], "her sir ting a ling ling the headway ran almost": [65535, 0], "sir ting a ling ling the headway ran almost out": [65535, 0], "ting a ling ling the headway ran almost out and": [65535, 0], "a ling ling the headway ran almost out and he": [65535, 0], "ling ling the headway ran almost out and he drew": [65535, 0], "ling the headway ran almost out and he drew up": [65535, 0], "the headway ran almost out and he drew up slowly": [65535, 0], "headway ran almost out and he drew up slowly toward": [65535, 0], "ran almost out and he drew up slowly toward the": [65535, 0], "almost out and he drew up slowly toward the sidewalk": [65535, 0], "out and he drew up slowly toward the sidewalk ship": [65535, 0], "and he drew up slowly toward the sidewalk ship up": [65535, 0], "he drew up slowly toward the sidewalk ship up to": [65535, 0], "drew up slowly toward the sidewalk ship up to back": [65535, 0], "up slowly toward the sidewalk ship up to back ting": [65535, 0], "slowly toward the sidewalk ship up to back ting a": [65535, 0], "toward the sidewalk ship up to back ting a ling": [65535, 0], "the sidewalk ship up to back ting a ling ling": [65535, 0], "sidewalk ship up to back ting a ling ling his": [65535, 0], "ship up to back ting a ling ling his arms": [65535, 0], "up to back ting a ling ling his arms straightened": [65535, 0], "to back ting a ling ling his arms straightened and": [65535, 0], "back ting a ling ling his arms straightened and stiffened": [65535, 0], "ting a ling ling his arms straightened and stiffened down": [65535, 0], "a ling ling his arms straightened and stiffened down his": [65535, 0], "ling ling his arms straightened and stiffened down his sides": [65535, 0], "ling his arms straightened and stiffened down his sides set": [65535, 0], "his arms straightened and stiffened down his sides set her": [65535, 0], "arms straightened and stiffened down his sides set her back": [65535, 0], "straightened and stiffened down his sides set her back on": [65535, 0], "and stiffened down his sides set her back on the": [65535, 0], "stiffened down his sides set her back on the stabboard": [65535, 0], "down his sides set her back on the stabboard ting": [65535, 0], "his sides set her back on the stabboard ting a": [65535, 0], "sides set her back on the stabboard ting a ling": [65535, 0], "set her back on the stabboard ting a ling ling": [65535, 0], "her back on the stabboard ting a ling ling chow": [65535, 0], "back on the stabboard ting a ling ling chow ch": [65535, 0], "on the stabboard ting a ling ling chow ch chow": [65535, 0], "the stabboard ting a ling ling chow ch chow wow": [65535, 0], "stabboard ting a ling ling chow ch chow wow chow": [65535, 0], "ting a ling ling chow ch chow wow chow his": [65535, 0], "a ling ling chow ch chow wow chow his right": [65535, 0], "ling ling chow ch chow wow chow his right hand": [65535, 0], "ling chow ch chow wow chow his right hand meantime": [65535, 0], "chow ch chow wow chow his right hand meantime describing": [65535, 0], "ch chow wow chow his right hand meantime describing stately": [65535, 0], "chow wow chow his right hand meantime describing stately circles": [65535, 0], "wow chow his right hand meantime describing stately circles for": [65535, 0], "chow his right hand meantime describing stately circles for it": [65535, 0], "his right hand meantime describing stately circles for it was": [65535, 0], "right hand meantime describing stately circles for it was representing": [65535, 0], "hand meantime describing stately circles for it was representing a": [65535, 0], "meantime describing stately circles for it was representing a forty": [65535, 0], "describing stately circles for it was representing a forty foot": [65535, 0], "stately circles for it was representing a forty foot wheel": [65535, 0], "circles for it was representing a forty foot wheel let": [65535, 0], "for it was representing a forty foot wheel let her": [65535, 0], "it was representing a forty foot wheel let her go": [65535, 0], "was representing a forty foot wheel let her go back": [65535, 0], "representing a forty foot wheel let her go back on": [65535, 0], "a forty foot wheel let her go back on the": [65535, 0], "forty foot wheel let her go back on the labboard": [65535, 0], "foot wheel let her go back on the labboard ting": [65535, 0], "wheel let her go back on the labboard ting a": [65535, 0], "let her go back on the labboard ting a ling": [65535, 0], "her go back on the labboard ting a ling ling": [65535, 0], "go back on the labboard ting a ling ling chow": [65535, 0], "back on the labboard ting a ling ling chow ch": [65535, 0], "on the labboard ting a ling ling chow ch chow": [65535, 0], "the labboard ting a ling ling chow ch chow chow": [65535, 0], "labboard ting a ling ling chow ch chow chow the": [65535, 0], "ting a ling ling chow ch chow chow the left": [65535, 0], "a ling ling chow ch chow chow the left hand": [65535, 0], "ling ling chow ch chow chow the left hand began": [65535, 0], "ling chow ch chow chow the left hand began to": [65535, 0], "chow ch chow chow the left hand began to describe": [65535, 0], "ch chow chow the left hand began to describe circles": [65535, 0], "chow chow the left hand began to describe circles stop": [65535, 0], "chow the left hand began to describe circles stop the": [65535, 0], "the left hand began to describe circles stop the stabboard": [65535, 0], "left hand began to describe circles stop the stabboard ting": [65535, 0], "hand began to describe circles stop the stabboard ting a": [65535, 0], "began to describe circles stop the stabboard ting a ling": [65535, 0], "to describe circles stop the stabboard ting a ling ling": [65535, 0], "describe circles stop the stabboard ting a ling ling stop": [65535, 0], "circles stop the stabboard ting a ling ling stop the": [65535, 0], "stop the stabboard ting a ling ling stop the labboard": [65535, 0], "the stabboard ting a ling ling stop the labboard come": [65535, 0], "stabboard ting a ling ling stop the labboard come ahead": [65535, 0], "ting a ling ling stop the labboard come ahead on": [65535, 0], "a ling ling stop the labboard come ahead on the": [65535, 0], "ling ling stop the labboard come ahead on the stabboard": [65535, 0], "ling stop the labboard come ahead on the stabboard stop": [65535, 0], "stop the labboard come ahead on the stabboard stop her": [65535, 0], "the labboard come ahead on the stabboard stop her let": [65535, 0], "labboard come ahead on the stabboard stop her let your": [65535, 0], "come ahead on the stabboard stop her let your outside": [65535, 0], "ahead on the stabboard stop her let your outside turn": [65535, 0], "on the stabboard stop her let your outside turn over": [65535, 0], "the stabboard stop her let your outside turn over slow": [65535, 0], "stabboard stop her let your outside turn over slow ting": [65535, 0], "stop her let your outside turn over slow ting a": [65535, 0], "her let your outside turn over slow ting a ling": [65535, 0], "let your outside turn over slow ting a ling ling": [65535, 0], "your outside turn over slow ting a ling ling chow": [65535, 0], "outside turn over slow ting a ling ling chow ow": [65535, 0], "turn over slow ting a ling ling chow ow ow": [65535, 0], "over slow ting a ling ling chow ow ow get": [65535, 0], "slow ting a ling ling chow ow ow get out": [65535, 0], "ting a ling ling chow ow ow get out that": [65535, 0], "a ling ling chow ow ow get out that head": [65535, 0], "ling ling chow ow ow get out that head line": [65535, 0], "ling chow ow ow get out that head line lively": [65535, 0], "chow ow ow get out that head line lively now": [65535, 0], "ow ow get out that head line lively now come": [65535, 0], "ow get out that head line lively now come out": [65535, 0], "get out that head line lively now come out with": [65535, 0], "out that head line lively now come out with your": [65535, 0], "that head line lively now come out with your spring": [65535, 0], "head line lively now come out with your spring line": [65535, 0], "line lively now come out with your spring line what're": [65535, 0], "lively now come out with your spring line what're you": [65535, 0], "now come out with your spring line what're you about": [65535, 0], "come out with your spring line what're you about there": [65535, 0], "out with your spring line what're you about there take": [65535, 0], "with your spring line what're you about there take a": [65535, 0], "your spring line what're you about there take a turn": [65535, 0], "spring line what're you about there take a turn round": [65535, 0], "line what're you about there take a turn round that": [65535, 0], "what're you about there take a turn round that stump": [65535, 0], "you about there take a turn round that stump with": [65535, 0], "about there take a turn round that stump with the": [65535, 0], "there take a turn round that stump with the bight": [65535, 0], "take a turn round that stump with the bight of": [65535, 0], "a turn round that stump with the bight of it": [65535, 0], "turn round that stump with the bight of it stand": [65535, 0], "round that stump with the bight of it stand by": [65535, 0], "that stump with the bight of it stand by that": [65535, 0], "stump with the bight of it stand by that stage": [65535, 0], "with the bight of it stand by that stage now": [65535, 0], "the bight of it stand by that stage now let": [65535, 0], "bight of it stand by that stage now let her": [65535, 0], "of it stand by that stage now let her go": [65535, 0], "it stand by that stage now let her go done": [65535, 0], "stand by that stage now let her go done with": [65535, 0], "by that stage now let her go done with the": [65535, 0], "that stage now let her go done with the engines": [65535, 0], "stage now let her go done with the engines sir": [65535, 0], "now let her go done with the engines sir ting": [65535, 0], "let her go done with the engines sir ting a": [65535, 0], "her go done with the engines sir ting a ling": [65535, 0], "go done with the engines sir ting a ling ling": [65535, 0], "done with the engines sir ting a ling ling sh't": [65535, 0], "with the engines sir ting a ling ling sh't s'h't": [65535, 0], "the engines sir ting a ling ling sh't s'h't sh't": [65535, 0], "engines sir ting a ling ling sh't s'h't sh't trying": [65535, 0], "sir ting a ling ling sh't s'h't sh't trying the": [65535, 0], "ting a ling ling sh't s'h't sh't trying the gauge": [65535, 0], "a ling ling sh't s'h't sh't trying the gauge cocks": [65535, 0], "ling ling sh't s'h't sh't trying the gauge cocks tom": [65535, 0], "ling sh't s'h't sh't trying the gauge cocks tom went": [65535, 0], "sh't s'h't sh't trying the gauge cocks tom went on": [65535, 0], "s'h't sh't trying the gauge cocks tom went on whitewashing": [65535, 0], "sh't trying the gauge cocks tom went on whitewashing paid": [65535, 0], "trying the gauge cocks tom went on whitewashing paid no": [65535, 0], "the gauge cocks tom went on whitewashing paid no attention": [65535, 0], "gauge cocks tom went on whitewashing paid no attention to": [65535, 0], "cocks tom went on whitewashing paid no attention to the": [65535, 0], "tom went on whitewashing paid no attention to the steamboat": [65535, 0], "went on whitewashing paid no attention to the steamboat ben": [65535, 0], "on whitewashing paid no attention to the steamboat ben stared": [65535, 0], "whitewashing paid no attention to the steamboat ben stared a": [65535, 0], "paid no attention to the steamboat ben stared a moment": [65535, 0], "no attention to the steamboat ben stared a moment and": [65535, 0], "attention to the steamboat ben stared a moment and then": [65535, 0], "to the steamboat ben stared a moment and then said": [65535, 0], "the steamboat ben stared a moment and then said hi": [65535, 0], "steamboat ben stared a moment and then said hi yi": [65535, 0], "ben stared a moment and then said hi yi you're": [65535, 0], "stared a moment and then said hi yi you're up": [65535, 0], "a moment and then said hi yi you're up a": [65535, 0], "moment and then said hi yi you're up a stump": [65535, 0], "and then said hi yi you're up a stump ain't": [65535, 0], "then said hi yi you're up a stump ain't you": [65535, 0], "said hi yi you're up a stump ain't you no": [65535, 0], "hi yi you're up a stump ain't you no answer": [65535, 0], "yi you're up a stump ain't you no answer tom": [65535, 0], "you're up a stump ain't you no answer tom surveyed": [65535, 0], "up a stump ain't you no answer tom surveyed his": [65535, 0], "a stump ain't you no answer tom surveyed his last": [65535, 0], "stump ain't you no answer tom surveyed his last touch": [65535, 0], "ain't you no answer tom surveyed his last touch with": [65535, 0], "you no answer tom surveyed his last touch with the": [65535, 0], "no answer tom surveyed his last touch with the eye": [65535, 0], "answer tom surveyed his last touch with the eye of": [65535, 0], "tom surveyed his last touch with the eye of an": [65535, 0], "surveyed his last touch with the eye of an artist": [65535, 0], "his last touch with the eye of an artist then": [65535, 0], "last touch with the eye of an artist then he": [65535, 0], "touch with the eye of an artist then he gave": [65535, 0], "with the eye of an artist then he gave his": [65535, 0], "the eye of an artist then he gave his brush": [65535, 0], "eye of an artist then he gave his brush another": [65535, 0], "of an artist then he gave his brush another gentle": [65535, 0], "an artist then he gave his brush another gentle sweep": [65535, 0], "artist then he gave his brush another gentle sweep and": [65535, 0], "then he gave his brush another gentle sweep and surveyed": [65535, 0], "he gave his brush another gentle sweep and surveyed the": [65535, 0], "gave his brush another gentle sweep and surveyed the result": [65535, 0], "his brush another gentle sweep and surveyed the result as": [65535, 0], "brush another gentle sweep and surveyed the result as before": [65535, 0], "another gentle sweep and surveyed the result as before ben": [65535, 0], "gentle sweep and surveyed the result as before ben ranged": [65535, 0], "sweep and surveyed the result as before ben ranged up": [65535, 0], "and surveyed the result as before ben ranged up alongside": [65535, 0], "surveyed the result as before ben ranged up alongside of": [65535, 0], "the result as before ben ranged up alongside of him": [65535, 0], "result as before ben ranged up alongside of him tom's": [65535, 0], "as before ben ranged up alongside of him tom's mouth": [65535, 0], "before ben ranged up alongside of him tom's mouth watered": [65535, 0], "ben ranged up alongside of him tom's mouth watered for": [65535, 0], "ranged up alongside of him tom's mouth watered for the": [65535, 0], "up alongside of him tom's mouth watered for the apple": [65535, 0], "alongside of him tom's mouth watered for the apple but": [65535, 0], "of him tom's mouth watered for the apple but he": [65535, 0], "him tom's mouth watered for the apple but he stuck": [65535, 0], "tom's mouth watered for the apple but he stuck to": [65535, 0], "mouth watered for the apple but he stuck to his": [65535, 0], "watered for the apple but he stuck to his work": [65535, 0], "for the apple but he stuck to his work ben": [65535, 0], "the apple but he stuck to his work ben said": [65535, 0], "apple but he stuck to his work ben said hello": [65535, 0], "but he stuck to his work ben said hello old": [65535, 0], "he stuck to his work ben said hello old chap": [65535, 0], "stuck to his work ben said hello old chap you": [65535, 0], "to his work ben said hello old chap you got": [65535, 0], "his work ben said hello old chap you got to": [65535, 0], "work ben said hello old chap you got to work": [65535, 0], "ben said hello old chap you got to work hey": [65535, 0], "said hello old chap you got to work hey tom": [65535, 0], "hello old chap you got to work hey tom wheeled": [65535, 0], "old chap you got to work hey tom wheeled suddenly": [65535, 0], "chap you got to work hey tom wheeled suddenly and": [65535, 0], "you got to work hey tom wheeled suddenly and said": [65535, 0], "got to work hey tom wheeled suddenly and said why": [65535, 0], "to work hey tom wheeled suddenly and said why it's": [65535, 0], "work hey tom wheeled suddenly and said why it's you": [65535, 0], "hey tom wheeled suddenly and said why it's you ben": [65535, 0], "tom wheeled suddenly and said why it's you ben i": [65535, 0], "wheeled suddenly and said why it's you ben i warn't": [65535, 0], "suddenly and said why it's you ben i warn't noticing": [65535, 0], "and said why it's you ben i warn't noticing say": [65535, 0], "said why it's you ben i warn't noticing say i'm": [65535, 0], "why it's you ben i warn't noticing say i'm going": [65535, 0], "it's you ben i warn't noticing say i'm going in": [65535, 0], "you ben i warn't noticing say i'm going in a": [65535, 0], "ben i warn't noticing say i'm going in a swimming": [65535, 0], "i warn't noticing say i'm going in a swimming i": [65535, 0], "warn't noticing say i'm going in a swimming i am": [65535, 0], "noticing say i'm going in a swimming i am don't": [65535, 0], "say i'm going in a swimming i am don't you": [65535, 0], "i'm going in a swimming i am don't you wish": [65535, 0], "going in a swimming i am don't you wish you": [65535, 0], "in a swimming i am don't you wish you could": [65535, 0], "a swimming i am don't you wish you could but": [65535, 0], "swimming i am don't you wish you could but of": [65535, 0], "i am don't you wish you could but of course": [65535, 0], "am don't you wish you could but of course you'd": [65535, 0], "don't you wish you could but of course you'd druther": [65535, 0], "you wish you could but of course you'd druther work": [65535, 0], "wish you could but of course you'd druther work wouldn't": [65535, 0], "you could but of course you'd druther work wouldn't you": [65535, 0], "could but of course you'd druther work wouldn't you course": [65535, 0], "but of course you'd druther work wouldn't you course you": [65535, 0], "of course you'd druther work wouldn't you course you would": [65535, 0], "course you'd druther work wouldn't you course you would tom": [65535, 0], "you'd druther work wouldn't you course you would tom contemplated": [65535, 0], "druther work wouldn't you course you would tom contemplated the": [65535, 0], "work wouldn't you course you would tom contemplated the boy": [65535, 0], "wouldn't you course you would tom contemplated the boy a": [65535, 0], "you course you would tom contemplated the boy a bit": [65535, 0], "course you would tom contemplated the boy a bit and": [65535, 0], "you would tom contemplated the boy a bit and said": [65535, 0], "would tom contemplated the boy a bit and said what": [65535, 0], "tom contemplated the boy a bit and said what do": [65535, 0], "contemplated the boy a bit and said what do you": [65535, 0], "the boy a bit and said what do you call": [65535, 0], "boy a bit and said what do you call work": [65535, 0], "a bit and said what do you call work why": [65535, 0], "bit and said what do you call work why ain't": [65535, 0], "and said what do you call work why ain't that": [65535, 0], "said what do you call work why ain't that work": [65535, 0], "what do you call work why ain't that work tom": [65535, 0], "do you call work why ain't that work tom resumed": [65535, 0], "you call work why ain't that work tom resumed his": [65535, 0], "call work why ain't that work tom resumed his whitewashing": [65535, 0], "work why ain't that work tom resumed his whitewashing and": [65535, 0], "why ain't that work tom resumed his whitewashing and answered": [65535, 0], "ain't that work tom resumed his whitewashing and answered carelessly": [65535, 0], "that work tom resumed his whitewashing and answered carelessly well": [65535, 0], "work tom resumed his whitewashing and answered carelessly well maybe": [65535, 0], "tom resumed his whitewashing and answered carelessly well maybe it": [65535, 0], "resumed his whitewashing and answered carelessly well maybe it is": [65535, 0], "his whitewashing and answered carelessly well maybe it is and": [65535, 0], "whitewashing and answered carelessly well maybe it is and maybe": [65535, 0], "and answered carelessly well maybe it is and maybe it": [65535, 0], "answered carelessly well maybe it is and maybe it ain't": [65535, 0], "carelessly well maybe it is and maybe it ain't all": [65535, 0], "well maybe it is and maybe it ain't all i": [65535, 0], "maybe it is and maybe it ain't all i know": [65535, 0], "it is and maybe it ain't all i know is": [65535, 0], "is and maybe it ain't all i know is it": [65535, 0], "and maybe it ain't all i know is it suits": [65535, 0], "maybe it ain't all i know is it suits tom": [65535, 0], "it ain't all i know is it suits tom sawyer": [65535, 0], "ain't all i know is it suits tom sawyer oh": [65535, 0], "all i know is it suits tom sawyer oh come": [65535, 0], "i know is it suits tom sawyer oh come now": [65535, 0], "know is it suits tom sawyer oh come now you": [65535, 0], "is it suits tom sawyer oh come now you don't": [65535, 0], "it suits tom sawyer oh come now you don't mean": [65535, 0], "suits tom sawyer oh come now you don't mean to": [65535, 0], "tom sawyer oh come now you don't mean to let": [65535, 0], "sawyer oh come now you don't mean to let on": [65535, 0], "oh come now you don't mean to let on that": [65535, 0], "come now you don't mean to let on that you": [65535, 0], "now you don't mean to let on that you like": [65535, 0], "you don't mean to let on that you like it": [65535, 0], "don't mean to let on that you like it the": [65535, 0], "mean to let on that you like it the brush": [65535, 0], "to let on that you like it the brush continued": [65535, 0], "let on that you like it the brush continued to": [65535, 0], "on that you like it the brush continued to move": [65535, 0], "that you like it the brush continued to move like": [65535, 0], "you like it the brush continued to move like it": [65535, 0], "like it the brush continued to move like it well": [65535, 0], "it the brush continued to move like it well i": [65535, 0], "the brush continued to move like it well i don't": [65535, 0], "brush continued to move like it well i don't see": [65535, 0], "continued to move like it well i don't see why": [65535, 0], "to move like it well i don't see why i": [65535, 0], "move like it well i don't see why i oughtn't": [65535, 0], "like it well i don't see why i oughtn't to": [65535, 0], "it well i don't see why i oughtn't to like": [65535, 0], "well i don't see why i oughtn't to like it": [65535, 0], "i don't see why i oughtn't to like it does": [65535, 0], "don't see why i oughtn't to like it does a": [65535, 0], "see why i oughtn't to like it does a boy": [65535, 0], "why i oughtn't to like it does a boy get": [65535, 0], "i oughtn't to like it does a boy get a": [65535, 0], "oughtn't to like it does a boy get a chance": [65535, 0], "to like it does a boy get a chance to": [65535, 0], "like it does a boy get a chance to whitewash": [65535, 0], "it does a boy get a chance to whitewash a": [65535, 0], "does a boy get a chance to whitewash a fence": [65535, 0], "a boy get a chance to whitewash a fence every": [65535, 0], "boy get a chance to whitewash a fence every day": [65535, 0], "get a chance to whitewash a fence every day that": [65535, 0], "a chance to whitewash a fence every day that put": [65535, 0], "chance to whitewash a fence every day that put the": [65535, 0], "to whitewash a fence every day that put the thing": [65535, 0], "whitewash a fence every day that put the thing in": [65535, 0], "a fence every day that put the thing in a": [65535, 0], "fence every day that put the thing in a new": [65535, 0], "every day that put the thing in a new light": [65535, 0], "day that put the thing in a new light ben": [65535, 0], "that put the thing in a new light ben stopped": [65535, 0], "put the thing in a new light ben stopped nibbling": [65535, 0], "the thing in a new light ben stopped nibbling his": [65535, 0], "thing in a new light ben stopped nibbling his apple": [65535, 0], "in a new light ben stopped nibbling his apple tom": [65535, 0], "a new light ben stopped nibbling his apple tom swept": [65535, 0], "new light ben stopped nibbling his apple tom swept his": [65535, 0], "light ben stopped nibbling his apple tom swept his brush": [65535, 0], "ben stopped nibbling his apple tom swept his brush daintily": [65535, 0], "stopped nibbling his apple tom swept his brush daintily back": [65535, 0], "nibbling his apple tom swept his brush daintily back and": [65535, 0], "his apple tom swept his brush daintily back and forth": [65535, 0], "apple tom swept his brush daintily back and forth stepped": [65535, 0], "tom swept his brush daintily back and forth stepped back": [65535, 0], "swept his brush daintily back and forth stepped back to": [65535, 0], "his brush daintily back and forth stepped back to note": [65535, 0], "brush daintily back and forth stepped back to note the": [65535, 0], "daintily back and forth stepped back to note the effect": [65535, 0], "back and forth stepped back to note the effect added": [65535, 0], "and forth stepped back to note the effect added a": [65535, 0], "forth stepped back to note the effect added a touch": [65535, 0], "stepped back to note the effect added a touch here": [65535, 0], "back to note the effect added a touch here and": [65535, 0], "to note the effect added a touch here and there": [65535, 0], "note the effect added a touch here and there criticised": [65535, 0], "the effect added a touch here and there criticised the": [65535, 0], "effect added a touch here and there criticised the effect": [65535, 0], "added a touch here and there criticised the effect again": [65535, 0], "a touch here and there criticised the effect again ben": [65535, 0], "touch here and there criticised the effect again ben watching": [65535, 0], "here and there criticised the effect again ben watching every": [65535, 0], "and there criticised the effect again ben watching every move": [65535, 0], "there criticised the effect again ben watching every move and": [65535, 0], "criticised the effect again ben watching every move and getting": [65535, 0], "the effect again ben watching every move and getting more": [65535, 0], "effect again ben watching every move and getting more and": [65535, 0], "again ben watching every move and getting more and more": [65535, 0], "ben watching every move and getting more and more interested": [65535, 0], "watching every move and getting more and more interested more": [65535, 0], "every move and getting more and more interested more and": [65535, 0], "move and getting more and more interested more and more": [65535, 0], "and getting more and more interested more and more absorbed": [65535, 0], "getting more and more interested more and more absorbed presently": [65535, 0], "more and more interested more and more absorbed presently he": [65535, 0], "and more interested more and more absorbed presently he said": [65535, 0], "more interested more and more absorbed presently he said say": [65535, 0], "interested more and more absorbed presently he said say tom": [65535, 0], "more and more absorbed presently he said say tom let": [65535, 0], "and more absorbed presently he said say tom let me": [65535, 0], "more absorbed presently he said say tom let me whitewash": [65535, 0], "absorbed presently he said say tom let me whitewash a": [65535, 0], "presently he said say tom let me whitewash a little": [65535, 0], "he said say tom let me whitewash a little tom": [65535, 0], "said say tom let me whitewash a little tom considered": [65535, 0], "say tom let me whitewash a little tom considered was": [65535, 0], "tom let me whitewash a little tom considered was about": [65535, 0], "let me whitewash a little tom considered was about to": [65535, 0], "me whitewash a little tom considered was about to consent": [65535, 0], "whitewash a little tom considered was about to consent but": [65535, 0], "a little tom considered was about to consent but he": [65535, 0], "little tom considered was about to consent but he altered": [65535, 0], "tom considered was about to consent but he altered his": [65535, 0], "considered was about to consent but he altered his mind": [65535, 0], "was about to consent but he altered his mind no": [65535, 0], "about to consent but he altered his mind no no": [65535, 0], "to consent but he altered his mind no no i": [65535, 0], "consent but he altered his mind no no i reckon": [65535, 0], "but he altered his mind no no i reckon it": [65535, 0], "he altered his mind no no i reckon it wouldn't": [65535, 0], "altered his mind no no i reckon it wouldn't hardly": [65535, 0], "his mind no no i reckon it wouldn't hardly do": [65535, 0], "mind no no i reckon it wouldn't hardly do ben": [65535, 0], "no no i reckon it wouldn't hardly do ben you": [65535, 0], "no i reckon it wouldn't hardly do ben you see": [65535, 0], "i reckon it wouldn't hardly do ben you see aunt": [65535, 0], "reckon it wouldn't hardly do ben you see aunt polly's": [65535, 0], "it wouldn't hardly do ben you see aunt polly's awful": [65535, 0], "wouldn't hardly do ben you see aunt polly's awful particular": [65535, 0], "hardly do ben you see aunt polly's awful particular about": [65535, 0], "do ben you see aunt polly's awful particular about this": [65535, 0], "ben you see aunt polly's awful particular about this fence": [65535, 0], "you see aunt polly's awful particular about this fence right": [65535, 0], "see aunt polly's awful particular about this fence right here": [65535, 0], "aunt polly's awful particular about this fence right here on": [65535, 0], "polly's awful particular about this fence right here on the": [65535, 0], "awful particular about this fence right here on the street": [65535, 0], "particular about this fence right here on the street you": [65535, 0], "about this fence right here on the street you know": [65535, 0], "this fence right here on the street you know but": [65535, 0], "fence right here on the street you know but if": [65535, 0], "right here on the street you know but if it": [65535, 0], "here on the street you know but if it was": [65535, 0], "on the street you know but if it was the": [65535, 0], "the street you know but if it was the back": [65535, 0], "street you know but if it was the back fence": [65535, 0], "you know but if it was the back fence i": [65535, 0], "know but if it was the back fence i wouldn't": [65535, 0], "but if it was the back fence i wouldn't mind": [65535, 0], "if it was the back fence i wouldn't mind and": [65535, 0], "it was the back fence i wouldn't mind and she": [65535, 0], "was the back fence i wouldn't mind and she wouldn't": [65535, 0], "the back fence i wouldn't mind and she wouldn't yes": [65535, 0], "back fence i wouldn't mind and she wouldn't yes she's": [65535, 0], "fence i wouldn't mind and she wouldn't yes she's awful": [65535, 0], "i wouldn't mind and she wouldn't yes she's awful particular": [65535, 0], "wouldn't mind and she wouldn't yes she's awful particular about": [65535, 0], "mind and she wouldn't yes she's awful particular about this": [65535, 0], "and she wouldn't yes she's awful particular about this fence": [65535, 0], "she wouldn't yes she's awful particular about this fence it's": [65535, 0], "wouldn't yes she's awful particular about this fence it's got": [65535, 0], "yes she's awful particular about this fence it's got to": [65535, 0], "she's awful particular about this fence it's got to be": [65535, 0], "awful particular about this fence it's got to be done": [65535, 0], "particular about this fence it's got to be done very": [65535, 0], "about this fence it's got to be done very careful": [65535, 0], "this fence it's got to be done very careful i": [65535, 0], "fence it's got to be done very careful i reckon": [65535, 0], "it's got to be done very careful i reckon there": [65535, 0], "got to be done very careful i reckon there ain't": [65535, 0], "to be done very careful i reckon there ain't one": [65535, 0], "be done very careful i reckon there ain't one boy": [65535, 0], "done very careful i reckon there ain't one boy in": [65535, 0], "very careful i reckon there ain't one boy in a": [65535, 0], "careful i reckon there ain't one boy in a thousand": [65535, 0], "i reckon there ain't one boy in a thousand maybe": [65535, 0], "reckon there ain't one boy in a thousand maybe two": [65535, 0], "there ain't one boy in a thousand maybe two thousand": [65535, 0], "ain't one boy in a thousand maybe two thousand that": [65535, 0], "one boy in a thousand maybe two thousand that can": [65535, 0], "boy in a thousand maybe two thousand that can do": [65535, 0], "in a thousand maybe two thousand that can do it": [65535, 0], "a thousand maybe two thousand that can do it the": [65535, 0], "thousand maybe two thousand that can do it the way": [65535, 0], "maybe two thousand that can do it the way it's": [65535, 0], "two thousand that can do it the way it's got": [65535, 0], "thousand that can do it the way it's got to": [65535, 0], "that can do it the way it's got to be": [65535, 0], "can do it the way it's got to be done": [65535, 0], "do it the way it's got to be done no": [65535, 0], "it the way it's got to be done no is": [65535, 0], "the way it's got to be done no is that": [65535, 0], "way it's got to be done no is that so": [65535, 0], "it's got to be done no is that so oh": [65535, 0], "got to be done no is that so oh come": [65535, 0], "to be done no is that so oh come now": [65535, 0], "be done no is that so oh come now lemme": [65535, 0], "done no is that so oh come now lemme just": [65535, 0], "no is that so oh come now lemme just try": [65535, 0], "is that so oh come now lemme just try only": [65535, 0], "that so oh come now lemme just try only just": [65535, 0], "so oh come now lemme just try only just a": [65535, 0], "oh come now lemme just try only just a little": [65535, 0], "come now lemme just try only just a little i'd": [65535, 0], "now lemme just try only just a little i'd let": [65535, 0], "lemme just try only just a little i'd let you": [65535, 0], "just try only just a little i'd let you if": [65535, 0], "try only just a little i'd let you if you": [65535, 0], "only just a little i'd let you if you was": [65535, 0], "just a little i'd let you if you was me": [65535, 0], "a little i'd let you if you was me tom": [65535, 0], "little i'd let you if you was me tom ben": [65535, 0], "i'd let you if you was me tom ben i'd": [65535, 0], "let you if you was me tom ben i'd like": [65535, 0], "you if you was me tom ben i'd like to": [65535, 0], "if you was me tom ben i'd like to honest": [65535, 0], "you was me tom ben i'd like to honest injun": [65535, 0], "was me tom ben i'd like to honest injun but": [65535, 0], "me tom ben i'd like to honest injun but aunt": [65535, 0], "tom ben i'd like to honest injun but aunt polly": [65535, 0], "ben i'd like to honest injun but aunt polly well": [65535, 0], "i'd like to honest injun but aunt polly well jim": [65535, 0], "like to honest injun but aunt polly well jim wanted": [65535, 0], "to honest injun but aunt polly well jim wanted to": [65535, 0], "honest injun but aunt polly well jim wanted to do": [65535, 0], "injun but aunt polly well jim wanted to do it": [65535, 0], "but aunt polly well jim wanted to do it but": [65535, 0], "aunt polly well jim wanted to do it but she": [65535, 0], "polly well jim wanted to do it but she wouldn't": [65535, 0], "well jim wanted to do it but she wouldn't let": [65535, 0], "jim wanted to do it but she wouldn't let him": [65535, 0], "wanted to do it but she wouldn't let him sid": [65535, 0], "to do it but she wouldn't let him sid wanted": [65535, 0], "do it but she wouldn't let him sid wanted to": [65535, 0], "it but she wouldn't let him sid wanted to do": [65535, 0], "but she wouldn't let him sid wanted to do it": [65535, 0], "she wouldn't let him sid wanted to do it and": [65535, 0], "wouldn't let him sid wanted to do it and she": [65535, 0], "let him sid wanted to do it and she wouldn't": [65535, 0], "him sid wanted to do it and she wouldn't let": [65535, 0], "sid wanted to do it and she wouldn't let sid": [65535, 0], "wanted to do it and she wouldn't let sid now": [65535, 0], "to do it and she wouldn't let sid now don't": [65535, 0], "do it and she wouldn't let sid now don't you": [65535, 0], "it and she wouldn't let sid now don't you see": [65535, 0], "and she wouldn't let sid now don't you see how": [65535, 0], "she wouldn't let sid now don't you see how i'm": [65535, 0], "wouldn't let sid now don't you see how i'm fixed": [65535, 0], "let sid now don't you see how i'm fixed if": [65535, 0], "sid now don't you see how i'm fixed if you": [65535, 0], "now don't you see how i'm fixed if you was": [65535, 0], "don't you see how i'm fixed if you was to": [65535, 0], "you see how i'm fixed if you was to tackle": [65535, 0], "see how i'm fixed if you was to tackle this": [65535, 0], "how i'm fixed if you was to tackle this fence": [65535, 0], "i'm fixed if you was to tackle this fence and": [65535, 0], "fixed if you was to tackle this fence and anything": [65535, 0], "if you was to tackle this fence and anything was": [65535, 0], "you was to tackle this fence and anything was to": [65535, 0], "was to tackle this fence and anything was to happen": [65535, 0], "to tackle this fence and anything was to happen to": [65535, 0], "tackle this fence and anything was to happen to it": [65535, 0], "this fence and anything was to happen to it oh": [65535, 0], "fence and anything was to happen to it oh shucks": [65535, 0], "and anything was to happen to it oh shucks i'll": [65535, 0], "anything was to happen to it oh shucks i'll be": [65535, 0], "was to happen to it oh shucks i'll be just": [65535, 0], "to happen to it oh shucks i'll be just as": [65535, 0], "happen to it oh shucks i'll be just as careful": [65535, 0], "to it oh shucks i'll be just as careful now": [65535, 0], "it oh shucks i'll be just as careful now lemme": [65535, 0], "oh shucks i'll be just as careful now lemme try": [65535, 0], "shucks i'll be just as careful now lemme try say": [65535, 0], "i'll be just as careful now lemme try say i'll": [65535, 0], "be just as careful now lemme try say i'll give": [65535, 0], "just as careful now lemme try say i'll give you": [65535, 0], "as careful now lemme try say i'll give you the": [65535, 0], "careful now lemme try say i'll give you the core": [65535, 0], "now lemme try say i'll give you the core of": [65535, 0], "lemme try say i'll give you the core of my": [65535, 0], "try say i'll give you the core of my apple": [65535, 0], "say i'll give you the core of my apple well": [65535, 0], "i'll give you the core of my apple well here": [65535, 0], "give you the core of my apple well here no": [65535, 0], "you the core of my apple well here no ben": [65535, 0], "the core of my apple well here no ben now": [65535, 0], "core of my apple well here no ben now don't": [65535, 0], "of my apple well here no ben now don't i'm": [65535, 0], "my apple well here no ben now don't i'm afeard": [65535, 0], "apple well here no ben now don't i'm afeard i'll": [65535, 0], "well here no ben now don't i'm afeard i'll give": [65535, 0], "here no ben now don't i'm afeard i'll give you": [65535, 0], "no ben now don't i'm afeard i'll give you all": [65535, 0], "ben now don't i'm afeard i'll give you all of": [65535, 0], "now don't i'm afeard i'll give you all of it": [65535, 0], "don't i'm afeard i'll give you all of it tom": [65535, 0], "i'm afeard i'll give you all of it tom gave": [65535, 0], "afeard i'll give you all of it tom gave up": [65535, 0], "i'll give you all of it tom gave up the": [65535, 0], "give you all of it tom gave up the brush": [65535, 0], "you all of it tom gave up the brush with": [65535, 0], "all of it tom gave up the brush with reluctance": [65535, 0], "of it tom gave up the brush with reluctance in": [65535, 0], "it tom gave up the brush with reluctance in his": [65535, 0], "tom gave up the brush with reluctance in his face": [65535, 0], "gave up the brush with reluctance in his face but": [65535, 0], "up the brush with reluctance in his face but alacrity": [65535, 0], "the brush with reluctance in his face but alacrity in": [65535, 0], "brush with reluctance in his face but alacrity in his": [65535, 0], "with reluctance in his face but alacrity in his heart": [65535, 0], "reluctance in his face but alacrity in his heart and": [65535, 0], "in his face but alacrity in his heart and while": [65535, 0], "his face but alacrity in his heart and while the": [65535, 0], "face but alacrity in his heart and while the late": [65535, 0], "but alacrity in his heart and while the late steamer": [65535, 0], "alacrity in his heart and while the late steamer big": [65535, 0], "in his heart and while the late steamer big missouri": [65535, 0], "his heart and while the late steamer big missouri worked": [65535, 0], "heart and while the late steamer big missouri worked and": [65535, 0], "and while the late steamer big missouri worked and sweated": [65535, 0], "while the late steamer big missouri worked and sweated in": [65535, 0], "the late steamer big missouri worked and sweated in the": [65535, 0], "late steamer big missouri worked and sweated in the sun": [65535, 0], "steamer big missouri worked and sweated in the sun the": [65535, 0], "big missouri worked and sweated in the sun the retired": [65535, 0], "missouri worked and sweated in the sun the retired artist": [65535, 0], "worked and sweated in the sun the retired artist sat": [65535, 0], "and sweated in the sun the retired artist sat on": [65535, 0], "sweated in the sun the retired artist sat on a": [65535, 0], "in the sun the retired artist sat on a barrel": [65535, 0], "the sun the retired artist sat on a barrel in": [65535, 0], "sun the retired artist sat on a barrel in the": [65535, 0], "the retired artist sat on a barrel in the shade": [65535, 0], "retired artist sat on a barrel in the shade close": [65535, 0], "artist sat on a barrel in the shade close by": [65535, 0], "sat on a barrel in the shade close by dangled": [65535, 0], "on a barrel in the shade close by dangled his": [65535, 0], "a barrel in the shade close by dangled his legs": [65535, 0], "barrel in the shade close by dangled his legs munched": [65535, 0], "in the shade close by dangled his legs munched his": [65535, 0], "the shade close by dangled his legs munched his apple": [65535, 0], "shade close by dangled his legs munched his apple and": [65535, 0], "close by dangled his legs munched his apple and planned": [65535, 0], "by dangled his legs munched his apple and planned the": [65535, 0], "dangled his legs munched his apple and planned the slaughter": [65535, 0], "his legs munched his apple and planned the slaughter of": [65535, 0], "legs munched his apple and planned the slaughter of more": [65535, 0], "munched his apple and planned the slaughter of more innocents": [65535, 0], "his apple and planned the slaughter of more innocents there": [65535, 0], "apple and planned the slaughter of more innocents there was": [65535, 0], "and planned the slaughter of more innocents there was no": [65535, 0], "planned the slaughter of more innocents there was no lack": [65535, 0], "the slaughter of more innocents there was no lack of": [65535, 0], "slaughter of more innocents there was no lack of material": [65535, 0], "of more innocents there was no lack of material boys": [65535, 0], "more innocents there was no lack of material boys happened": [65535, 0], "innocents there was no lack of material boys happened along": [65535, 0], "there was no lack of material boys happened along every": [65535, 0], "was no lack of material boys happened along every little": [65535, 0], "no lack of material boys happened along every little while": [65535, 0], "lack of material boys happened along every little while they": [65535, 0], "of material boys happened along every little while they came": [65535, 0], "material boys happened along every little while they came to": [65535, 0], "boys happened along every little while they came to jeer": [65535, 0], "happened along every little while they came to jeer but": [65535, 0], "along every little while they came to jeer but remained": [65535, 0], "every little while they came to jeer but remained to": [65535, 0], "little while they came to jeer but remained to whitewash": [65535, 0], "while they came to jeer but remained to whitewash by": [65535, 0], "they came to jeer but remained to whitewash by the": [65535, 0], "came to jeer but remained to whitewash by the time": [65535, 0], "to jeer but remained to whitewash by the time ben": [65535, 0], "jeer but remained to whitewash by the time ben was": [65535, 0], "but remained to whitewash by the time ben was fagged": [65535, 0], "remained to whitewash by the time ben was fagged out": [65535, 0], "to whitewash by the time ben was fagged out tom": [65535, 0], "whitewash by the time ben was fagged out tom had": [65535, 0], "by the time ben was fagged out tom had traded": [65535, 0], "the time ben was fagged out tom had traded the": [65535, 0], "time ben was fagged out tom had traded the next": [65535, 0], "ben was fagged out tom had traded the next chance": [65535, 0], "was fagged out tom had traded the next chance to": [65535, 0], "fagged out tom had traded the next chance to billy": [65535, 0], "out tom had traded the next chance to billy fisher": [65535, 0], "tom had traded the next chance to billy fisher for": [65535, 0], "had traded the next chance to billy fisher for a": [65535, 0], "traded the next chance to billy fisher for a kite": [65535, 0], "the next chance to billy fisher for a kite in": [65535, 0], "next chance to billy fisher for a kite in good": [65535, 0], "chance to billy fisher for a kite in good repair": [65535, 0], "to billy fisher for a kite in good repair and": [65535, 0], "billy fisher for a kite in good repair and when": [65535, 0], "fisher for a kite in good repair and when he": [65535, 0], "for a kite in good repair and when he played": [65535, 0], "a kite in good repair and when he played out": [65535, 0], "kite in good repair and when he played out johnny": [65535, 0], "in good repair and when he played out johnny miller": [65535, 0], "good repair and when he played out johnny miller bought": [65535, 0], "repair and when he played out johnny miller bought in": [65535, 0], "and when he played out johnny miller bought in for": [65535, 0], "when he played out johnny miller bought in for a": [65535, 0], "he played out johnny miller bought in for a dead": [65535, 0], "played out johnny miller bought in for a dead rat": [65535, 0], "out johnny miller bought in for a dead rat and": [65535, 0], "johnny miller bought in for a dead rat and a": [65535, 0], "miller bought in for a dead rat and a string": [65535, 0], "bought in for a dead rat and a string to": [65535, 0], "in for a dead rat and a string to swing": [65535, 0], "for a dead rat and a string to swing it": [65535, 0], "a dead rat and a string to swing it with": [65535, 0], "dead rat and a string to swing it with and": [65535, 0], "rat and a string to swing it with and so": [65535, 0], "and a string to swing it with and so on": [65535, 0], "a string to swing it with and so on and": [65535, 0], "string to swing it with and so on and so": [65535, 0], "to swing it with and so on and so on": [65535, 0], "swing it with and so on and so on hour": [65535, 0], "it with and so on and so on hour after": [65535, 0], "with and so on and so on hour after hour": [65535, 0], "and so on and so on hour after hour and": [65535, 0], "so on and so on hour after hour and when": [65535, 0], "on and so on hour after hour and when the": [65535, 0], "and so on hour after hour and when the middle": [65535, 0], "so on hour after hour and when the middle of": [65535, 0], "on hour after hour and when the middle of the": [65535, 0], "hour after hour and when the middle of the afternoon": [65535, 0], "after hour and when the middle of the afternoon came": [65535, 0], "hour and when the middle of the afternoon came from": [65535, 0], "and when the middle of the afternoon came from being": [65535, 0], "when the middle of the afternoon came from being a": [65535, 0], "the middle of the afternoon came from being a poor": [65535, 0], "middle of the afternoon came from being a poor poverty": [65535, 0], "of the afternoon came from being a poor poverty stricken": [65535, 0], "the afternoon came from being a poor poverty stricken boy": [65535, 0], "afternoon came from being a poor poverty stricken boy in": [65535, 0], "came from being a poor poverty stricken boy in the": [65535, 0], "from being a poor poverty stricken boy in the morning": [65535, 0], "being a poor poverty stricken boy in the morning tom": [65535, 0], "a poor poverty stricken boy in the morning tom was": [65535, 0], "poor poverty stricken boy in the morning tom was literally": [65535, 0], "poverty stricken boy in the morning tom was literally rolling": [65535, 0], "stricken boy in the morning tom was literally rolling in": [65535, 0], "boy in the morning tom was literally rolling in wealth": [65535, 0], "in the morning tom was literally rolling in wealth he": [65535, 0], "the morning tom was literally rolling in wealth he had": [65535, 0], "morning tom was literally rolling in wealth he had besides": [65535, 0], "tom was literally rolling in wealth he had besides the": [65535, 0], "was literally rolling in wealth he had besides the things": [65535, 0], "literally rolling in wealth he had besides the things before": [65535, 0], "rolling in wealth he had besides the things before mentioned": [65535, 0], "in wealth he had besides the things before mentioned twelve": [65535, 0], "wealth he had besides the things before mentioned twelve marbles": [65535, 0], "he had besides the things before mentioned twelve marbles part": [65535, 0], "had besides the things before mentioned twelve marbles part of": [65535, 0], "besides the things before mentioned twelve marbles part of a": [65535, 0], "the things before mentioned twelve marbles part of a jews": [65535, 0], "things before mentioned twelve marbles part of a jews harp": [65535, 0], "before mentioned twelve marbles part of a jews harp a": [65535, 0], "mentioned twelve marbles part of a jews harp a piece": [65535, 0], "twelve marbles part of a jews harp a piece of": [65535, 0], "marbles part of a jews harp a piece of blue": [65535, 0], "part of a jews harp a piece of blue bottle": [65535, 0], "of a jews harp a piece of blue bottle glass": [65535, 0], "a jews harp a piece of blue bottle glass to": [65535, 0], "jews harp a piece of blue bottle glass to look": [65535, 0], "harp a piece of blue bottle glass to look through": [65535, 0], "a piece of blue bottle glass to look through a": [65535, 0], "piece of blue bottle glass to look through a spool": [65535, 0], "of blue bottle glass to look through a spool cannon": [65535, 0], "blue bottle glass to look through a spool cannon a": [65535, 0], "bottle glass to look through a spool cannon a key": [65535, 0], "glass to look through a spool cannon a key that": [65535, 0], "to look through a spool cannon a key that wouldn't": [65535, 0], "look through a spool cannon a key that wouldn't unlock": [65535, 0], "through a spool cannon a key that wouldn't unlock anything": [65535, 0], "a spool cannon a key that wouldn't unlock anything a": [65535, 0], "spool cannon a key that wouldn't unlock anything a fragment": [65535, 0], "cannon a key that wouldn't unlock anything a fragment of": [65535, 0], "a key that wouldn't unlock anything a fragment of chalk": [65535, 0], "key that wouldn't unlock anything a fragment of chalk a": [65535, 0], "that wouldn't unlock anything a fragment of chalk a glass": [65535, 0], "wouldn't unlock anything a fragment of chalk a glass stopper": [65535, 0], "unlock anything a fragment of chalk a glass stopper of": [65535, 0], "anything a fragment of chalk a glass stopper of a": [65535, 0], "a fragment of chalk a glass stopper of a decanter": [65535, 0], "fragment of chalk a glass stopper of a decanter a": [65535, 0], "of chalk a glass stopper of a decanter a tin": [65535, 0], "chalk a glass stopper of a decanter a tin soldier": [65535, 0], "a glass stopper of a decanter a tin soldier a": [65535, 0], "glass stopper of a decanter a tin soldier a couple": [65535, 0], "stopper of a decanter a tin soldier a couple of": [65535, 0], "of a decanter a tin soldier a couple of tadpoles": [65535, 0], "a decanter a tin soldier a couple of tadpoles six": [65535, 0], "decanter a tin soldier a couple of tadpoles six fire": [65535, 0], "a tin soldier a couple of tadpoles six fire crackers": [65535, 0], "tin soldier a couple of tadpoles six fire crackers a": [65535, 0], "soldier a couple of tadpoles six fire crackers a kitten": [65535, 0], "a couple of tadpoles six fire crackers a kitten with": [65535, 0], "couple of tadpoles six fire crackers a kitten with only": [65535, 0], "of tadpoles six fire crackers a kitten with only one": [65535, 0], "tadpoles six fire crackers a kitten with only one eye": [65535, 0], "six fire crackers a kitten with only one eye a": [65535, 0], "fire crackers a kitten with only one eye a brass": [65535, 0], "crackers a kitten with only one eye a brass doorknob": [65535, 0], "a kitten with only one eye a brass doorknob a": [65535, 0], "kitten with only one eye a brass doorknob a dog": [65535, 0], "with only one eye a brass doorknob a dog collar": [65535, 0], "only one eye a brass doorknob a dog collar but": [65535, 0], "one eye a brass doorknob a dog collar but no": [65535, 0], "eye a brass doorknob a dog collar but no dog": [65535, 0], "a brass doorknob a dog collar but no dog the": [65535, 0], "brass doorknob a dog collar but no dog the handle": [65535, 0], "doorknob a dog collar but no dog the handle of": [65535, 0], "a dog collar but no dog the handle of a": [65535, 0], "dog collar but no dog the handle of a knife": [65535, 0], "collar but no dog the handle of a knife four": [65535, 0], "but no dog the handle of a knife four pieces": [65535, 0], "no dog the handle of a knife four pieces of": [65535, 0], "dog the handle of a knife four pieces of orange": [65535, 0], "the handle of a knife four pieces of orange peel": [65535, 0], "handle of a knife four pieces of orange peel and": [65535, 0], "of a knife four pieces of orange peel and a": [65535, 0], "a knife four pieces of orange peel and a dilapidated": [65535, 0], "knife four pieces of orange peel and a dilapidated old": [65535, 0], "four pieces of orange peel and a dilapidated old window": [65535, 0], "pieces of orange peel and a dilapidated old window sash": [65535, 0], "of orange peel and a dilapidated old window sash he": [65535, 0], "orange peel and a dilapidated old window sash he had": [65535, 0], "peel and a dilapidated old window sash he had had": [65535, 0], "and a dilapidated old window sash he had had a": [65535, 0], "a dilapidated old window sash he had had a nice": [65535, 0], "dilapidated old window sash he had had a nice good": [65535, 0], "old window sash he had had a nice good idle": [65535, 0], "window sash he had had a nice good idle time": [65535, 0], "sash he had had a nice good idle time all": [65535, 0], "he had had a nice good idle time all the": [65535, 0], "had had a nice good idle time all the while": [65535, 0], "had a nice good idle time all the while plenty": [65535, 0], "a nice good idle time all the while plenty of": [65535, 0], "nice good idle time all the while plenty of company": [65535, 0], "good idle time all the while plenty of company and": [65535, 0], "idle time all the while plenty of company and the": [65535, 0], "time all the while plenty of company and the fence": [65535, 0], "all the while plenty of company and the fence had": [65535, 0], "the while plenty of company and the fence had three": [65535, 0], "while plenty of company and the fence had three coats": [65535, 0], "plenty of company and the fence had three coats of": [65535, 0], "of company and the fence had three coats of whitewash": [65535, 0], "company and the fence had three coats of whitewash on": [65535, 0], "and the fence had three coats of whitewash on it": [65535, 0], "the fence had three coats of whitewash on it if": [65535, 0], "fence had three coats of whitewash on it if he": [65535, 0], "had three coats of whitewash on it if he hadn't": [65535, 0], "three coats of whitewash on it if he hadn't run": [65535, 0], "coats of whitewash on it if he hadn't run out": [65535, 0], "of whitewash on it if he hadn't run out of": [65535, 0], "whitewash on it if he hadn't run out of whitewash": [65535, 0], "on it if he hadn't run out of whitewash he": [65535, 0], "it if he hadn't run out of whitewash he would": [65535, 0], "if he hadn't run out of whitewash he would have": [65535, 0], "he hadn't run out of whitewash he would have bankrupted": [65535, 0], "hadn't run out of whitewash he would have bankrupted every": [65535, 0], "run out of whitewash he would have bankrupted every boy": [65535, 0], "out of whitewash he would have bankrupted every boy in": [65535, 0], "of whitewash he would have bankrupted every boy in the": [65535, 0], "whitewash he would have bankrupted every boy in the village": [65535, 0], "he would have bankrupted every boy in the village tom": [65535, 0], "would have bankrupted every boy in the village tom said": [65535, 0], "have bankrupted every boy in the village tom said to": [65535, 0], "bankrupted every boy in the village tom said to himself": [65535, 0], "every boy in the village tom said to himself that": [65535, 0], "boy in the village tom said to himself that it": [65535, 0], "in the village tom said to himself that it was": [65535, 0], "the village tom said to himself that it was not": [65535, 0], "village tom said to himself that it was not such": [65535, 0], "tom said to himself that it was not such a": [65535, 0], "said to himself that it was not such a hollow": [65535, 0], "to himself that it was not such a hollow world": [65535, 0], "himself that it was not such a hollow world after": [65535, 0], "that it was not such a hollow world after all": [65535, 0], "it was not such a hollow world after all he": [65535, 0], "was not such a hollow world after all he had": [65535, 0], "not such a hollow world after all he had discovered": [65535, 0], "such a hollow world after all he had discovered a": [65535, 0], "a hollow world after all he had discovered a great": [65535, 0], "hollow world after all he had discovered a great law": [65535, 0], "world after all he had discovered a great law of": [65535, 0], "after all he had discovered a great law of human": [65535, 0], "all he had discovered a great law of human action": [65535, 0], "he had discovered a great law of human action without": [65535, 0], "had discovered a great law of human action without knowing": [65535, 0], "discovered a great law of human action without knowing it": [65535, 0], "a great law of human action without knowing it namely": [65535, 0], "great law of human action without knowing it namely that": [65535, 0], "law of human action without knowing it namely that in": [65535, 0], "of human action without knowing it namely that in order": [65535, 0], "human action without knowing it namely that in order to": [65535, 0], "action without knowing it namely that in order to make": [65535, 0], "without knowing it namely that in order to make a": [65535, 0], "knowing it namely that in order to make a man": [65535, 0], "it namely that in order to make a man or": [65535, 0], "namely that in order to make a man or a": [65535, 0], "that in order to make a man or a boy": [65535, 0], "in order to make a man or a boy covet": [65535, 0], "order to make a man or a boy covet a": [65535, 0], "to make a man or a boy covet a thing": [65535, 0], "make a man or a boy covet a thing it": [65535, 0], "a man or a boy covet a thing it is": [65535, 0], "man or a boy covet a thing it is only": [65535, 0], "or a boy covet a thing it is only necessary": [65535, 0], "a boy covet a thing it is only necessary to": [65535, 0], "boy covet a thing it is only necessary to make": [65535, 0], "covet a thing it is only necessary to make the": [65535, 0], "a thing it is only necessary to make the thing": [65535, 0], "thing it is only necessary to make the thing difficult": [65535, 0], "it is only necessary to make the thing difficult to": [65535, 0], "is only necessary to make the thing difficult to attain": [65535, 0], "only necessary to make the thing difficult to attain if": [65535, 0], "necessary to make the thing difficult to attain if he": [65535, 0], "to make the thing difficult to attain if he had": [65535, 0], "make the thing difficult to attain if he had been": [65535, 0], "the thing difficult to attain if he had been a": [65535, 0], "thing difficult to attain if he had been a great": [65535, 0], "difficult to attain if he had been a great and": [65535, 0], "to attain if he had been a great and wise": [65535, 0], "attain if he had been a great and wise philosopher": [65535, 0], "if he had been a great and wise philosopher like": [65535, 0], "he had been a great and wise philosopher like the": [65535, 0], "had been a great and wise philosopher like the writer": [65535, 0], "been a great and wise philosopher like the writer of": [65535, 0], "a great and wise philosopher like the writer of this": [65535, 0], "great and wise philosopher like the writer of this book": [65535, 0], "and wise philosopher like the writer of this book he": [65535, 0], "wise philosopher like the writer of this book he would": [65535, 0], "philosopher like the writer of this book he would now": [65535, 0], "like the writer of this book he would now have": [65535, 0], "the writer of this book he would now have comprehended": [65535, 0], "writer of this book he would now have comprehended that": [65535, 0], "of this book he would now have comprehended that work": [65535, 0], "this book he would now have comprehended that work consists": [65535, 0], "book he would now have comprehended that work consists of": [65535, 0], "he would now have comprehended that work consists of whatever": [65535, 0], "would now have comprehended that work consists of whatever a": [65535, 0], "now have comprehended that work consists of whatever a body": [65535, 0], "have comprehended that work consists of whatever a body is": [65535, 0], "comprehended that work consists of whatever a body is obliged": [65535, 0], "that work consists of whatever a body is obliged to": [65535, 0], "work consists of whatever a body is obliged to do": [65535, 0], "consists of whatever a body is obliged to do and": [65535, 0], "of whatever a body is obliged to do and that": [65535, 0], "whatever a body is obliged to do and that play": [65535, 0], "a body is obliged to do and that play consists": [65535, 0], "body is obliged to do and that play consists of": [65535, 0], "is obliged to do and that play consists of whatever": [65535, 0], "obliged to do and that play consists of whatever a": [65535, 0], "to do and that play consists of whatever a body": [65535, 0], "do and that play consists of whatever a body is": [65535, 0], "and that play consists of whatever a body is not": [65535, 0], "that play consists of whatever a body is not obliged": [65535, 0], "play consists of whatever a body is not obliged to": [65535, 0], "consists of whatever a body is not obliged to do": [65535, 0], "of whatever a body is not obliged to do and": [65535, 0], "whatever a body is not obliged to do and this": [65535, 0], "a body is not obliged to do and this would": [65535, 0], "body is not obliged to do and this would help": [65535, 0], "is not obliged to do and this would help him": [65535, 0], "not obliged to do and this would help him to": [65535, 0], "obliged to do and this would help him to understand": [65535, 0], "to do and this would help him to understand why": [65535, 0], "do and this would help him to understand why constructing": [65535, 0], "and this would help him to understand why constructing artificial": [65535, 0], "this would help him to understand why constructing artificial flowers": [65535, 0], "would help him to understand why constructing artificial flowers or": [65535, 0], "help him to understand why constructing artificial flowers or performing": [65535, 0], "him to understand why constructing artificial flowers or performing on": [65535, 0], "to understand why constructing artificial flowers or performing on a": [65535, 0], "understand why constructing artificial flowers or performing on a tread": [65535, 0], "why constructing artificial flowers or performing on a tread mill": [65535, 0], "constructing artificial flowers or performing on a tread mill is": [65535, 0], "artificial flowers or performing on a tread mill is work": [65535, 0], "flowers or performing on a tread mill is work while": [65535, 0], "or performing on a tread mill is work while rolling": [65535, 0], "performing on a tread mill is work while rolling ten": [65535, 0], "on a tread mill is work while rolling ten pins": [65535, 0], "a tread mill is work while rolling ten pins or": [65535, 0], "tread mill is work while rolling ten pins or climbing": [65535, 0], "mill is work while rolling ten pins or climbing mont": [65535, 0], "is work while rolling ten pins or climbing mont blanc": [65535, 0], "work while rolling ten pins or climbing mont blanc is": [65535, 0], "while rolling ten pins or climbing mont blanc is only": [65535, 0], "rolling ten pins or climbing mont blanc is only amusement": [65535, 0], "ten pins or climbing mont blanc is only amusement there": [65535, 0], "pins or climbing mont blanc is only amusement there are": [65535, 0], "or climbing mont blanc is only amusement there are wealthy": [65535, 0], "climbing mont blanc is only amusement there are wealthy gentlemen": [65535, 0], "mont blanc is only amusement there are wealthy gentlemen in": [65535, 0], "blanc is only amusement there are wealthy gentlemen in england": [65535, 0], "is only amusement there are wealthy gentlemen in england who": [65535, 0], "only amusement there are wealthy gentlemen in england who drive": [65535, 0], "amusement there are wealthy gentlemen in england who drive four": [65535, 0], "there are wealthy gentlemen in england who drive four horse": [65535, 0], "are wealthy gentlemen in england who drive four horse passenger": [65535, 0], "wealthy gentlemen in england who drive four horse passenger coaches": [65535, 0], "gentlemen in england who drive four horse passenger coaches twenty": [65535, 0], "in england who drive four horse passenger coaches twenty or": [65535, 0], "england who drive four horse passenger coaches twenty or thirty": [65535, 0], "who drive four horse passenger coaches twenty or thirty miles": [65535, 0], "drive four horse passenger coaches twenty or thirty miles on": [65535, 0], "four horse passenger coaches twenty or thirty miles on a": [65535, 0], "horse passenger coaches twenty or thirty miles on a daily": [65535, 0], "passenger coaches twenty or thirty miles on a daily line": [65535, 0], "coaches twenty or thirty miles on a daily line in": [65535, 0], "twenty or thirty miles on a daily line in the": [65535, 0], "or thirty miles on a daily line in the summer": [65535, 0], "thirty miles on a daily line in the summer because": [65535, 0], "miles on a daily line in the summer because the": [65535, 0], "on a daily line in the summer because the privilege": [65535, 0], "a daily line in the summer because the privilege costs": [65535, 0], "daily line in the summer because the privilege costs them": [65535, 0], "line in the summer because the privilege costs them considerable": [65535, 0], "in the summer because the privilege costs them considerable money": [65535, 0], "the summer because the privilege costs them considerable money but": [65535, 0], "summer because the privilege costs them considerable money but if": [65535, 0], "because the privilege costs them considerable money but if they": [65535, 0], "the privilege costs them considerable money but if they were": [65535, 0], "privilege costs them considerable money but if they were offered": [65535, 0], "costs them considerable money but if they were offered wages": [65535, 0], "them considerable money but if they were offered wages for": [65535, 0], "considerable money but if they were offered wages for the": [65535, 0], "money but if they were offered wages for the service": [65535, 0], "but if they were offered wages for the service that": [65535, 0], "if they were offered wages for the service that would": [65535, 0], "they were offered wages for the service that would turn": [65535, 0], "were offered wages for the service that would turn it": [65535, 0], "offered wages for the service that would turn it into": [65535, 0], "wages for the service that would turn it into work": [65535, 0], "for the service that would turn it into work and": [65535, 0], "the service that would turn it into work and then": [65535, 0], "service that would turn it into work and then they": [65535, 0], "that would turn it into work and then they would": [65535, 0], "would turn it into work and then they would resign": [65535, 0], "turn it into work and then they would resign the": [65535, 0], "it into work and then they would resign the boy": [65535, 0], "into work and then they would resign the boy mused": [65535, 0], "work and then they would resign the boy mused awhile": [65535, 0], "and then they would resign the boy mused awhile over": [65535, 0], "then they would resign the boy mused awhile over the": [65535, 0], "they would resign the boy mused awhile over the substantial": [65535, 0], "would resign the boy mused awhile over the substantial change": [65535, 0], "resign the boy mused awhile over the substantial change which": [65535, 0], "the boy mused awhile over the substantial change which had": [65535, 0], "boy mused awhile over the substantial change which had taken": [65535, 0], "mused awhile over the substantial change which had taken place": [65535, 0], "awhile over the substantial change which had taken place in": [65535, 0], "over the substantial change which had taken place in his": [65535, 0], "the substantial change which had taken place in his worldly": [65535, 0], "substantial change which had taken place in his worldly circumstances": [65535, 0], "change which had taken place in his worldly circumstances and": [65535, 0], "which had taken place in his worldly circumstances and then": [65535, 0], "had taken place in his worldly circumstances and then wended": [65535, 0], "taken place in his worldly circumstances and then wended toward": [65535, 0], "place in his worldly circumstances and then wended toward headquarters": [65535, 0], "in his worldly circumstances and then wended toward headquarters to": [65535, 0], "his worldly circumstances and then wended toward headquarters to report": [65535, 0], "wonder": [13068, 52467], "pulled": [65535, 0], "spectacles": [65535, 0], "pair": [65535, 0], "built": [65535, 0], "stove": [65535, 0], "lids": [65535, 0], "perplexed": [65535, 0], "fiercely": [65535, 0], "loud": [65535, 0], "furniture": [65535, 0], "finish": [65535, 0], "bending": [65535, 0], "punching": [65535, 0], "bed": [11879, 53656], "broom": [65535, 0], "needed": [65535, 0], "breath": [24518, 41017], "punctuate": [65535, 0], "punches": [65535, 0], "resurrected": [65535, 0], "beat": [9332, 56203], "door": [65535, 0], "tomato": [65535, 0], "vines": [65535, 0], "jimpson": [65535, 0], "weeds": [65535, 0], "constituted": [65535, 0], "garden": [65535, 0], "angle": [65535, 0], "calculated": [65535, 0], "shouted": [65535, 0], "y": [65535, 0], "o": [10888, 54647], "u": [65535, 0], "slight": [65535, 0], "noise": [32706, 32829], "seize": [65535, 0], "slack": [65535, 0], "roundabout": [65535, 0], "arrest": [9332, 56203], "flight": [65535, 0], "'a'": [65535, 0], "closet": [65535, 0], "doing": [43635, 21900], "alone": [26155, 39380], "skin": [16338, 49197], "switch": [65535, 0], "hovered": [65535, 0], "peril": [65535, 0], "desperate": [65535, 0], "whirled": [65535, 0], "skirts": [65535, 0], "danger": [65535, 0], "lad": [65535, 0], "scrambled": [65535, 0], "disappeared": [65535, 0], "surprised": [65535, 0], "laugh": [43635, 21900], "hang": [43635, 21900], "tricks": [43635, 21900], "fools": [43635, 21900], "biggest": [65535, 0], "goodness": [65535, 0], "plays": [65535, 0], "alike": [21790, 43745], "'pears": [65535, 0], "torment": [65535, 0], "dander": [65535, 0], "knows": [65535, 0], "duty": [65535, 0], "truth": [13068, 52467], "spare": [21790, 43745], "rod": [65535, 0], "spoil": [65535, 0], "laying": [65535, 0], "sin": [65535, 0], "us": [65535, 0], "scratch": [65535, 0], "laws": [65535, 0], "sister's": [65535, 0], "lash": [65535, 0], "somehow": [65535, 0], "conscience": [65535, 0], "breaks": [65535, 0], "born": [65535, 0], "woman": [6531, 59004], "scripture": [65535, 0], "he'll": [65535, 0], "hookey": [65535, 0], "evening": [65535, 0], "morrow": [32706, 32829], "punish": [65535, 0], "hard": [28026, 37509], "saturdays": [65535, 0], "hates": [65535, 0], "ruination": [65535, 0], "barely": [65535, 0], "season": [16338, 49197], "colored": [65535, 0], "day's": [65535, 0], "wood": [65535, 0], "kindlings": [65535, 0], "supper": [49105, 16430], "adventures": [65535, 0], "fourths": [65535, 0], "younger": [65535, 0], "brother": [25427, 40108], "already": [65535, 0], "picking": [65535, 0], "chips": [65535, 0], "adventurous": [65535, 0], "troublesome": [65535, 0], "ways": [65535, 0], "stealing": [32706, 32829], "sugar": [65535, 0], "opportunity": [65535, 0], "asked": [65535, 0], "questions": [65535, 0], "guile": [65535, 0], "trap": [65535, 0], "damaging": [65535, 0], "revealments": [65535, 0], "simple": [21790, 43745], "souls": [65535, 0], "pet": [65535, 0], "vanity": [65535, 0], "endowed": [65535, 0], "talent": [65535, 0], "mysterious": [65535, 0], "diplomacy": [65535, 0], "loved": [65535, 0], "contemplate": [65535, 0], "transparent": [65535, 0], "devices": [65535, 0], "marvels": [65535, 0], "cunning": [65535, 0], "middling": [65535, 0], "warm": [65535, 0], "scare": [65535, 0], "shot": [65535, 0], "uncomfortable": [65535, 0], "suspicion": [65535, 0], "searched": [65535, 0], "no'm": [65535, 0], "shirt": [65535, 0], "flattered": [65535, 0], "reflect": [65535, 0], "spite": [65535, 0], "forestalled": [65535, 0], "pumped": [65535, 0], "our": [1814, 63721], "mine's": [65535, 0], "damp": [65535, 0], "vexed": [65535, 0], "overlooked": [65535, 0], "circumstantial": [65535, 0], "evidence": [65535, 0], "missed": [65535, 0], "trick": [65535, 0], "undo": [65535, 0], "sewed": [65535, 0], "unbutton": [65535, 0], "opened": [65535, 0], "securely": [65535, 0], "sure": [8710, 56825], "kind": [65535, 0], "singed": [65535, 0], "better'n": [65535, 0], "sorry": [32706, 32829], "sagacity": [65535, 0], "miscarried": [65535, 0], "glad": [49105, 16430], "stumbled": [65535, 0], "obedient": [32706, 32829], "conduct": [65535, 0], "sidney": [65535, 0], "sew": [65535, 0], "siddy": [65535, 0], "needles": [65535, 0], "lapels": [65535, 0], "bound": [10888, 54647], "needle": [65535, 0], "carried": [21790, 43745], "noticed": [65535, 0], "confound": [65535, 0], "sews": [65535, 0], "geeminy": [65535, 0], "t'other": [65535, 0], "lam": [65535, 0], "loathed": [65535, 0], "minutes": [65535, 0], "troubles": [43635, 21900], "whit": [65535, 0], "bitter": [65535, 0], "man's": [65535, 0], "drove": [65535, 0], "men's": [65535, 0], "misfortunes": [32706, 32829], "excitement": [65535, 0], "enterprises": [65535, 0], "valued": [32706, 32829], "novelty": [65535, 0], "whistling": [65535, 0], "acquired": [65535, 0], "practise": [32706, 32829], "undisturbed": [65535, 0], "consisted": [65535, 0], "bird": [65535, 0], "liquid": [65535, 0], "warble": [65535, 0], "produced": [65535, 0], "touching": [32706, 32829], "tongue": [26155, 39380], "roof": [65535, 0], "short": [54578, 10957], "remembers": [65535, 0], "diligence": [65535, 0], "knack": [65535, 0], "harmony": [65535, 0], "gratitude": [65535, 0], "astronomer": [65535, 0], "feels": [65535, 0], "planet": [65535, 0], "doubt": [32706, 32829], "unalloyed": [65535, 0], "concerned": [65535, 0], "advantage": [65535, 0], "evenings": [65535, 0], "checked": [65535, 0], "whistle": [65535, 0], "stranger": [32706, 32829], "larger": [65535, 0], "comer": [65535, 0], "either": [24518, 41017], "sex": [65535, 0], "impressive": [65535, 0], "shabby": [65535, 0], "week": [65535, 0], "simply": [65535, 0], "dainty": [43635, 21900], "closebuttoned": [65535, 0], "cloth": [65535, 0], "natty": [65535, 0], "pantaloons": [65535, 0], "shoes": [65535, 0], "friday": [65535, 0], "necktie": [65535, 0], "citified": [65535, 0], "ate": [65535, 0], "vitals": [65535, 0], "splendid": [65535, 0], "higher": [65535, 0], "finery": [65535, 0], "shabbier": [65535, 0], "outfit": [65535, 0], "grow": [32706, 32829], "neither": [17824, 47711], "spoke": [65535, 0], "sidewise": [65535, 0], "pause": [43635, 21900], "'tisn't": [65535, 0], "'low": [65535, 0], "families": [65535, 0], "same": [10888, 54647], "fix": [65535, 0], "smarty": [65535, 0], "lump": [65535, 0], "knock": [65535, 0], "suck": [65535, 0], "eggs": [65535, 0], "liar": [65535, 0], "aw": [65535, 0], "sass": [65535, 0], "bounce": [65535, 0], "afraid": [65535, 0], "eying": [65535, 0], "sidling": [65535, 0], "shoulder": [32706, 32829], "brace": [65535, 0], "shoving": [65535, 0], "main": [65535, 0], "glowering": [65535, 0], "hate": [65535, 0], "struggling": [65535, 0], "hot": [16338, 49197], "flushed": [65535, 0], "relaxed": [65535, 0], "strain": [65535, 0], "watchful": [65535, 0], "caution": [65535, 0], "coward": [65535, 0], "pup": [65535, 0], "thrash": [65535, 0], "bigger": [65535, 0], "throw": [65535, 0], "brothers": [32706, 32829], "imaginary": [65535, 0], "dust": [65535, 0], "sheep": [32706, 32829], "promptly": [65535, 0], "let's": [16338, 49197], "jingo": [65535, 0], "cents": [65535, 0], "broad": [65535, 0], "coppers": [65535, 0], "derision": [65535, 0], "struck": [65535, 0], "tumbling": [65535, 0], "gripped": [65535, 0], "tugged": [65535, 0], "tore": [65535, 0], "other's": [65535, 0], "punched": [65535, 0], "scratched": [65535, 0], "covered": [65535, 0], "confusion": [32706, 32829], "fog": [65535, 0], "battle": [65535, 0], "seated": [65535, 0], "astride": [65535, 0], "pounding": [65535, 0], "fists": [65535, 0], "holler": [65535, 0], "'nuff": [65535, 0], "struggled": [65535, 0], "crying": [65535, 0], "mainly": [65535, 0], "rage": [9332, 56203], "fooling": [65535, 0], "brushing": [65535, 0], "sobbing": [65535, 0], "snuffling": [65535, 0], "occasionally": [65535, 0], "shaking": [65535, 0], "threatening": [65535, 0], "caught": [65535, 0], "responded": [65535, 0], "jeers": [65535, 0], "started": [65535, 0], "feather": [32706, 32829], "stone": [32706, 32829], "threw": [32706, 32829], "shoulders": [21790, 43745], "antelope": [65535, 0], "chased": [65535, 0], "traitor": [32706, 32829], "thus": [10315, 55220], "lived": [65535, 0], "position": [65535, 0], "daring": [65535, 0], "declined": [65535, 0], "enemy's": [65535, 0], "vicious": [32706, 32829], "ordered": [65535, 0], "ambuscade": [65535, 0], "person": [26155, 39380], "resolution": [65535, 0], "labor": [65535, 0], "became": [16338, 49197], "adamantine": [65535, 0], "firmness": [65535, 0], "answer what's": [65535, 0], "what's gone": [65535, 0], "gone with": [65535, 0], "boy i": [65535, 0], "i wonder": [21790, 43745], "wonder you": [32706, 32829], "answer the": [65535, 0], "lady pulled": [65535, 0], "pulled her": [65535, 0], "her spectacles": [65535, 0], "spectacles down": [65535, 0], "down and": [65535, 0], "looked over": [65535, 0], "over them": [65535, 0], "them about": [65535, 0], "room then": [65535, 0], "put them": [65535, 0], "them up": [65535, 0], "looked out": [65535, 0], "out under": [65535, 0], "under them": [65535, 0], "them she": [65535, 0], "she seldom": [65535, 0], "seldom or": [65535, 0], "or never": [65535, 0], "never looked": [65535, 0], "looked through": [65535, 0], "through them": [65535, 0], "them for": [65535, 0], "for so": [65535, 0], "small a": [65535, 0], "thing as": [65535, 0], "boy they": [65535, 0], "were her": [65535, 0], "her state": [65535, 0], "state pair": [65535, 0], "pair the": [65535, 0], "her heart": [65535, 0], "and were": [65535, 0], "were built": [65535, 0], "built for": [65535, 0], "for style": [65535, 0], "style not": [65535, 0], "not service": [65535, 0], "service she": [65535, 0], "she could": [65535, 0], "have seen": [65535, 0], "seen through": [65535, 0], "a pair": [65535, 0], "pair of": [65535, 0], "of stove": [65535, 0], "stove lids": [65535, 0], "lids just": [65535, 0], "as well": [32706, 32829], "well she": [65535, 0], "she looked": [65535, 0], "looked perplexed": [65535, 0], "perplexed for": [65535, 0], "said not": [65535, 0], "not fiercely": [65535, 0], "fiercely but": [65535, 0], "but still": [65535, 0], "still loud": [65535, 0], "loud enough": [65535, 0], "enough for": [65535, 0], "the furniture": [65535, 0], "furniture to": [65535, 0], "hear well": [65535, 0], "i lay": [65535, 0], "lay if": [65535, 0], "i get": [43635, 21900], "get hold": [65535, 0], "hold of": [65535, 0], "of you": [13068, 52467], "you i'll": [65535, 0], "i'll she": [65535, 0], "she did": [16338, 49197], "not finish": [65535, 0], "finish for": [65535, 0], "for by": [65535, 0], "was bending": [65535, 0], "bending down": [65535, 0], "and punching": [65535, 0], "punching under": [65535, 0], "the bed": [65535, 0], "bed with": [65535, 0], "the broom": [65535, 0], "broom and": [65535, 0], "she needed": [65535, 0], "needed breath": [65535, 0], "breath to": [65535, 0], "to punctuate": [65535, 0], "punctuate the": [65535, 0], "the punches": [65535, 0], "punches with": [65535, 0], "with she": [65535, 0], "she resurrected": [65535, 0], "resurrected nothing": [65535, 0], "cat i": [65535, 0], "never did": [65535, 0], "did see": [32706, 32829], "see the": [16338, 49197], "the beat": [65535, 0], "beat of": [65535, 0], "boy she": [65535, 0], "she went": [65535, 0], "open door": [65535, 0], "door and": [65535, 0], "and stood": [65535, 0], "out among": [65535, 0], "among the": [65535, 0], "the tomato": [65535, 0], "tomato vines": [65535, 0], "vines and": [65535, 0], "and jimpson": [65535, 0], "jimpson weeds": [65535, 0], "weeds that": [65535, 0], "that constituted": [65535, 0], "constituted the": [65535, 0], "the garden": [65535, 0], "garden no": [65535, 0], "no tom": [65535, 0], "tom so": [65535, 0], "she lifted": [65535, 0], "lifted up": [65535, 0], "up her": [65535, 0], "her voice": [65535, 0], "voice at": [65535, 0], "an angle": [65535, 0], "angle calculated": [65535, 0], "calculated for": [65535, 0], "for distance": [65535, 0], "distance and": [65535, 0], "and shouted": [65535, 0], "shouted y": [65535, 0], "y o": [65535, 0], "o u": [65535, 0], "u u": [65535, 0], "u tom": [65535, 0], "tom there": [65535, 0], "a slight": [65535, 0], "slight noise": [65535, 0], "noise behind": [65535, 0], "behind her": [65535, 0], "she turned": [65535, 0], "turned just": [65535, 0], "just in": [65535, 0], "time to": [32706, 32829], "to seize": [65535, 0], "seize a": [65535, 0], "a small": [49105, 16430], "small boy": [65535, 0], "boy by": [65535, 0], "the slack": [65535, 0], "slack of": [65535, 0], "his roundabout": [65535, 0], "roundabout and": [65535, 0], "and arrest": [65535, 0], "arrest his": [65535, 0], "his flight": [65535, 0], "flight there": [65535, 0], "there i": [65535, 0], "i might": [32706, 32829], "might 'a'": [65535, 0], "'a' thought": [65535, 0], "that closet": [65535, 0], "closet what": [65535, 0], "what you": [32706, 32829], "been doing": [65535, 0], "doing in": [65535, 0], "in there": [65535, 0], "there nothing": [65535, 0], "nothing nothing": [65535, 0], "nothing look": [65535, 0], "look at": [65535, 0], "at your": [21790, 43745], "your hands": [21790, 43745], "and look": [65535, 0], "mouth what": [65535, 0], "know aunt": [65535, 0], "aunt well": [65535, 0], "it's jam": [65535, 0], "jam that's": [65535, 0], "that's what": [65535, 0], "what it": [65535, 0], "is forty": [65535, 0], "forty times": [65535, 0], "times i've": [65535, 0], "i've said": [65535, 0], "said if": [65535, 0], "you didn't": [65535, 0], "didn't let": [65535, 0], "let that": [65535, 0], "that jam": [65535, 0], "jam alone": [65535, 0], "alone i'd": [65535, 0], "i'd skin": [65535, 0], "skin you": [65535, 0], "you hand": [65535, 0], "hand me": [65535, 0], "me that": [10888, 54647], "that switch": [65535, 0], "switch the": [65535, 0], "the switch": [65535, 0], "switch hovered": [65535, 0], "hovered in": [65535, 0], "air the": [65535, 0], "the peril": [65535, 0], "peril was": [65535, 0], "was desperate": [65535, 0], "desperate my": [65535, 0], "my look": [65535, 0], "look behind": [65535, 0], "behind you": [65535, 0], "you aunt": [65535, 0], "aunt the": [65535, 0], "lady whirled": [65535, 0], "whirled round": [65535, 0], "round and": [65535, 0], "and snatched": [65535, 0], "snatched her": [65535, 0], "her skirts": [65535, 0], "skirts out": [65535, 0], "of danger": [65535, 0], "danger the": [65535, 0], "the lad": [65535, 0], "lad fled": [65535, 0], "fled on": [65535, 0], "instant scrambled": [65535, 0], "scrambled up": [65535, 0], "the high": [65535, 0], "high board": [65535, 0], "and disappeared": [65535, 0], "disappeared over": [65535, 0], "it his": [65535, 0], "polly stood": [65535, 0], "stood surprised": [65535, 0], "surprised a": [65535, 0], "then broke": [65535, 0], "broke into": [65535, 0], "gentle laugh": [65535, 0], "laugh hang": [65535, 0], "hang the": [65535, 0], "boy can't": [65535, 0], "can't i": [65535, 0], "never learn": [65535, 0], "learn anything": [65535, 0], "anything ain't": [65535, 0], "ain't he": [65535, 0], "played me": [65535, 0], "me tricks": [65535, 0], "tricks enough": [65535, 0], "enough like": [65535, 0], "like that": [65535, 0], "that for": [65535, 0], "be looking": [65535, 0], "looking out": [65535, 0], "out for": [65535, 0], "time but": [65535, 0], "old fools": [65535, 0], "fools is": [65535, 0], "the biggest": [65535, 0], "biggest fools": [65535, 0], "fools there": [65535, 0], "is can't": [65535, 0], "can't learn": [65535, 0], "learn an": [65535, 0], "an old": [65535, 0], "old dog": [65535, 0], "dog new": [65535, 0], "new tricks": [65535, 0], "tricks as": [65535, 0], "the saying": [65535, 0], "saying is": [65535, 0], "is but": [65535, 0], "but my": [32706, 32829], "my goodness": [65535, 0], "goodness he": [65535, 0], "never plays": [65535, 0], "plays them": [65535, 0], "them alike": [65535, 0], "alike two": [65535, 0], "two days": [65535, 0], "days and": [65535, 0], "and how": [32706, 32829], "how is": [32706, 32829], "body to": [65535, 0], "know what's": [65535, 0], "what's coming": [65535, 0], "coming he": [65535, 0], "he 'pears": [65535, 0], "'pears to": [65535, 0], "know just": [65535, 0], "just how": [65535, 0], "long he": [65535, 0], "he can": [52389, 13146], "can torment": [65535, 0], "torment me": [65535, 0], "me before": [65535, 0], "before i": [32706, 32829], "get my": [65535, 0], "my dander": [65535, 0], "dander up": [65535, 0], "he knows": [65535, 0], "knows if": [65535, 0], "can make": [65535, 0], "make out": [65535, 0], "to put": [32706, 32829], "put me": [32706, 32829], "me off": [65535, 0], "off for": [65535, 0], "minute or": [65535, 0], "or make": [65535, 0], "me laugh": [65535, 0], "laugh it's": [65535, 0], "it's all": [65535, 0], "all down": [65535, 0], "down again": [65535, 0], "again and": [65535, 0], "i can't": [65535, 0], "can't hit": [65535, 0], "hit him": [65535, 0], "him a": [54578, 10957], "a lick": [65535, 0], "lick i": [65535, 0], "i ain't": [65535, 0], "ain't doing": [65535, 0], "doing my": [65535, 0], "my duty": [65535, 0], "duty by": [65535, 0], "boy and": [52389, 13146], "and that's": [65535, 0], "lord's truth": [65535, 0], "truth goodness": [65535, 0], "goodness knows": [65535, 0], "knows spare": [65535, 0], "spare the": [65535, 0], "the rod": [65535, 0], "rod and": [65535, 0], "and spoil": [65535, 0], "spoil the": [65535, 0], "the child": [65535, 0], "child as": [65535, 0], "good book": [65535, 0], "book says": [65535, 0], "says i'm": [65535, 0], "i'm a": [65535, 0], "a laying": [65535, 0], "laying up": [65535, 0], "up sin": [65535, 0], "sin and": [65535, 0], "and suffering": [65535, 0], "suffering for": [65535, 0], "for us": [65535, 0], "us both": [65535, 0], "both i": [65535, 0], "know he's": [65535, 0], "he's full": [65535, 0], "full of": [53583, 11952], "old scratch": [65535, 0], "scratch but": [65535, 0], "but laws": [65535, 0], "laws a": [65535, 0], "a me": [65535, 0], "me he's": [65535, 0], "he's my": [65535, 0], "own dead": [65535, 0], "dead sister's": [65535, 0], "sister's boy": [65535, 0], "boy poor": [65535, 0], "poor thing": [65535, 0], "ain't got": [65535, 0], "heart to": [32706, 32829], "to lash": [65535, 0], "lash him": [65535, 0], "him somehow": [65535, 0], "somehow every": [65535, 0], "time i": [43635, 21900], "i let": [32706, 32829], "him off": [65535, 0], "off my": [65535, 0], "my conscience": [65535, 0], "conscience does": [65535, 0], "does hurt": [65535, 0], "hurt me": [65535, 0], "and every": [65535, 0], "i hit": [65535, 0], "him my": [65535, 0], "heart most": [65535, 0], "most breaks": [65535, 0], "breaks well": [65535, 0], "well a": [65535, 0], "a well": [65535, 0], "well man": [65535, 0], "man that": [21790, 43745], "that is": [37388, 28147], "is born": [65535, 0], "born of": [65535, 0], "of woman": [65535, 0], "woman is": [65535, 0], "is of": [65535, 0], "of few": [65535, 0], "few days": [65535, 0], "and full": [65535, 0], "of trouble": [65535, 0], "trouble as": [65535, 0], "the scripture": [65535, 0], "scripture says": [65535, 0], "says and": [65535, 0], "so he'll": [65535, 0], "he'll play": [65535, 0], "play hookey": [65535, 0], "hookey this": [65535, 0], "this evening": [65535, 0], "evening and": [65535, 0], "and i'll": [65535, 0], "i'll just": [65535, 0], "just be": [65535, 0], "be obliged": [65535, 0], "him work": [65535, 0], "work to": [65535, 0], "to morrow": [32706, 32829], "morrow to": [65535, 0], "to punish": [65535, 0], "punish him": [65535, 0], "him it's": [65535, 0], "it's mighty": [65535, 0], "mighty hard": [65535, 0], "hard to": [65535, 0], "work saturdays": [65535, 0], "saturdays when": [65535, 0], "when all": [65535, 0], "boys is": [65535, 0], "is having": [65535, 0], "having holiday": [65535, 0], "holiday but": [65535, 0], "he hates": [65535, 0], "hates work": [65535, 0], "work more": [65535, 0], "more than": [65535, 0], "than he": [65535, 0], "hates anything": [65535, 0], "else and": [65535, 0], "and i've": [65535, 0], "i've got": [65535, 0], "do some": [65535, 0], "some of": [39262, 26273], "by him": [32706, 32829], "him or": [65535, 0], "or i'll": [65535, 0], "be the": [43635, 21900], "the ruination": [65535, 0], "ruination of": [65535, 0], "child tom": [65535, 0], "tom did": [65535, 0], "did play": [65535, 0], "hookey and": [65535, 0], "a very": [49105, 16430], "very good": [65535, 0], "good time": [21790, 43745], "back home": [65535, 0], "home barely": [65535, 0], "barely in": [65535, 0], "in season": [65535, 0], "season to": [65535, 0], "to help": [65535, 0], "help jim": [65535, 0], "jim the": [65535, 0], "small colored": [65535, 0], "colored boy": [65535, 0], "boy saw": [65535, 0], "saw next": [65535, 0], "next day's": [65535, 0], "day's wood": [65535, 0], "wood and": [65535, 0], "the kindlings": [65535, 0], "kindlings before": [65535, 0], "before supper": [65535, 0], "supper at": [65535, 0], "at least": [65535, 0], "least he": [65535, 0], "was there": [21790, 43745], "there in": [65535, 0], "to tell": [43635, 21900], "tell his": [32706, 32829], "his adventures": [65535, 0], "adventures to": [65535, 0], "to jim": [65535, 0], "jim while": [65535, 0], "while jim": [65535, 0], "jim did": [65535, 0], "did three": [65535, 0], "three fourths": [65535, 0], "fourths of": [65535, 0], "work tom's": [65535, 0], "tom's younger": [65535, 0], "younger brother": [65535, 0], "brother or": [65535, 0], "or rather": [32706, 32829], "rather half": [65535, 0], "half brother": [65535, 0], "brother sid": [65535, 0], "sid was": [65535, 0], "was already": [65535, 0], "already through": [65535, 0], "his part": [65535, 0], "work picking": [65535, 0], "picking up": [65535, 0], "up chips": [65535, 0], "chips for": [65535, 0], "a quiet": [65535, 0], "quiet boy": [65535, 0], "no adventurous": [65535, 0], "adventurous troublesome": [65535, 0], "troublesome ways": [65535, 0], "ways while": [65535, 0], "while tom": [65535, 0], "eating his": [65535, 0], "his supper": [65535, 0], "supper and": [65535, 0], "and stealing": [65535, 0], "stealing sugar": [65535, 0], "sugar as": [65535, 0], "as opportunity": [65535, 0], "opportunity offered": [65535, 0], "offered aunt": [65535, 0], "polly asked": [65535, 0], "asked him": [65535, 0], "him questions": [65535, 0], "questions that": [65535, 0], "that were": [65535, 0], "were full": [65535, 0], "of guile": [65535, 0], "guile and": [65535, 0], "and very": [65535, 0], "very deep": [65535, 0], "deep for": [65535, 0], "for she": [49105, 16430], "she wanted": [65535, 0], "to trap": [65535, 0], "trap him": [65535, 0], "him into": [65535, 0], "into damaging": [65535, 0], "damaging revealments": [65535, 0], "revealments like": [65535, 0], "like many": [65535, 0], "many other": [65535, 0], "other simple": [65535, 0], "simple hearted": [65535, 0], "hearted souls": [65535, 0], "souls it": [65535, 0], "was her": [65535, 0], "her pet": [65535, 0], "pet vanity": [65535, 0], "vanity to": [65535, 0], "to believe": [65535, 0], "believe she": [65535, 0], "was endowed": [65535, 0], "endowed with": [65535, 0], "a talent": [65535, 0], "talent for": [65535, 0], "for dark": [65535, 0], "and mysterious": [65535, 0], "mysterious diplomacy": [65535, 0], "diplomacy and": [65535, 0], "she loved": [65535, 0], "loved to": [65535, 0], "to contemplate": [65535, 0], "contemplate her": [65535, 0], "her most": [65535, 0], "most transparent": [65535, 0], "transparent devices": [65535, 0], "devices as": [65535, 0], "as marvels": [65535, 0], "marvels of": [65535, 0], "of low": [65535, 0], "low cunning": [65535, 0], "cunning said": [65535, 0], "said she": [65535, 0], "she tom": [65535, 0], "tom it": [65535, 0], "was middling": [65535, 0], "middling warm": [65535, 0], "warm in": [65535, 0], "school warn't": [65535, 0], "warn't it": [65535, 0], "it yes'm": [65535, 0], "yes'm powerful": [65535, 0], "powerful warm": [65535, 0], "warm warn't": [65535, 0], "yes'm didn't": [65535, 0], "you want": [65535, 0], "go in": [32706, 32829], "swimming tom": [65535, 0], "tom a": [65535, 0], "a scare": [65535, 0], "scare shot": [65535, 0], "shot through": [65535, 0], "through tom": [65535, 0], "touch of": [65535, 0], "of uncomfortable": [65535, 0], "uncomfortable suspicion": [65535, 0], "suspicion he": [65535, 0], "he searched": [65535, 0], "searched aunt": [65535, 0], "polly's face": [65535, 0], "it told": [65535, 0], "told him": [65535, 0], "nothing so": [65535, 0], "said no'm": [65535, 0], "no'm well": [65535, 0], "well not": [65535, 0], "not very": [65535, 0], "very much": [65535, 0], "lady reached": [65535, 0], "reached out": [65535, 0], "out her": [65535, 0], "and felt": [65535, 0], "felt tom's": [65535, 0], "tom's shirt": [65535, 0], "shirt and": [65535, 0], "said but": [65535, 0], "ain't too": [65535, 0], "too warm": [65535, 0], "warm now": [65535, 0], "now though": [65535, 0], "though and": [65535, 0], "it flattered": [65535, 0], "flattered her": [65535, 0], "her to": [65535, 0], "to reflect": [65535, 0], "reflect that": [65535, 0], "that she": [39262, 26273], "she had": [60476, 5059], "discovered that": [65535, 0], "the shirt": [65535, 0], "shirt was": [65535, 0], "was dry": [65535, 0], "dry without": [65535, 0], "without anybody": [65535, 0], "anybody knowing": [65535, 0], "knowing that": [65535, 0], "that that": [32706, 32829], "was what": [65535, 0], "had in": [32706, 32829], "her mind": [65535, 0], "mind but": [65535, 0], "in spite": [65535, 0], "spite of": [65535, 0], "knew where": [65535, 0], "wind lay": [65535, 0], "lay now": [65535, 0], "he forestalled": [65535, 0], "forestalled what": [65535, 0], "what might": [65535, 0], "next move": [65535, 0], "move some": [65535, 0], "of us": [65535, 0], "us pumped": [65535, 0], "pumped on": [65535, 0], "on our": [32706, 32829], "our heads": [65535, 0], "heads mine's": [65535, 0], "mine's damp": [65535, 0], "damp yet": [65535, 0], "yet see": [65535, 0], "was vexed": [65535, 0], "vexed to": [65535, 0], "think she": [65535, 0], "had overlooked": [65535, 0], "overlooked that": [65535, 0], "that bit": [65535, 0], "of circumstantial": [65535, 0], "circumstantial evidence": [65535, 0], "evidence and": [65535, 0], "and missed": [65535, 0], "missed a": [65535, 0], "a trick": [65535, 0], "trick then": [65535, 0], "new inspiration": [65535, 0], "inspiration tom": [65535, 0], "didn't have": [65535, 0], "to undo": [65535, 0], "undo your": [65535, 0], "your shirt": [65535, 0], "shirt collar": [65535, 0], "collar where": [65535, 0], "where i": [21790, 43745], "i sewed": [65535, 0], "sewed it": [65535, 0], "to pump": [65535, 0], "pump on": [65535, 0], "on your": [21790, 43745], "your head": [65535, 0], "head did": [65535, 0], "you unbutton": [65535, 0], "unbutton your": [65535, 0], "the trouble": [65535, 0], "trouble vanished": [65535, 0], "vanished out": [65535, 0], "of tom's": [65535, 0], "tom's face": [65535, 0], "face he": [65535, 0], "he opened": [65535, 0], "opened his": [65535, 0], "his jacket": [65535, 0], "jacket his": [65535, 0], "his shirt": [65535, 0], "collar was": [65535, 0], "was securely": [65535, 0], "securely sewed": [65535, 0], "sewed bother": [65535, 0], "bother well": [65535, 0], "well go": [65535, 0], "'long with": [65535, 0], "you i'd": [65535, 0], "i'd made": [65535, 0], "made sure": [65535, 0], "sure you'd": [65535, 0], "you'd played": [65535, 0], "played hookey": [65535, 0], "and been": [65535, 0], "swimming but": [65535, 0], "forgive ye": [65535, 0], "ye tom": [65535, 0], "reckon you're": [65535, 0], "you're a": [65535, 0], "a kind": [65535, 0], "kind of": [65535, 0], "a singed": [65535, 0], "singed cat": [65535, 0], "cat as": [65535, 0], "is better'n": [65535, 0], "better'n you": [65535, 0], "you look": [65535, 0], "look this": [65535, 0], "was half": [65535, 0], "half sorry": [65535, 0], "sorry her": [65535, 0], "her sagacity": [65535, 0], "sagacity had": [65535, 0], "had miscarried": [65535, 0], "miscarried and": [65535, 0], "and half": [65535, 0], "half glad": [65535, 0], "glad that": [65535, 0], "that tom": [65535, 0], "had stumbled": [65535, 0], "stumbled into": [65535, 0], "into obedient": [65535, 0], "obedient conduct": [65535, 0], "conduct for": [65535, 0], "for once": [65535, 0], "once but": [65535, 0], "but sidney": [65535, 0], "sidney said": [65535, 0], "said well": [65535, 0], "well now": [65535, 0], "now if": [65535, 0], "i didn't": [65535, 0], "didn't think": [65535, 0], "think you": [65535, 0], "you sewed": [65535, 0], "sewed his": [65535, 0], "his collar": [65535, 0], "collar with": [65535, 0], "with white": [65535, 0], "white thread": [65535, 0], "thread but": [65535, 0], "but it's": [65535, 0], "it's black": [65535, 0], "black why": [65535, 0], "i did": [5024, 60511], "did sew": [65535, 0], "sew it": [65535, 0], "white tom": [65535, 0], "tom but": [65535, 0], "not wait": [65535, 0], "wait for": [65535, 0], "rest as": [65535, 0], "went out": [65535, 0], "the door": [65535, 0], "door he": [65535, 0], "said siddy": [65535, 0], "siddy i'll": [65535, 0], "i'll lick": [65535, 0], "lick you": [65535, 0], "you for": [10888, 54647], "safe place": [32706, 32829], "place tom": [65535, 0], "tom examined": [65535, 0], "examined two": [65535, 0], "two large": [65535, 0], "large needles": [65535, 0], "needles which": [65535, 0], "which were": [65535, 0], "were thrust": [65535, 0], "thrust into": [65535, 0], "the lapels": [65535, 0], "lapels of": [65535, 0], "jacket and": [65535, 0], "had thread": [65535, 0], "thread bound": [65535, 0], "bound about": [65535, 0], "about them": [65535, 0], "them one": [65535, 0], "one needle": [65535, 0], "needle carried": [65535, 0], "carried white": [65535, 0], "other black": [65535, 0], "black he": [65535, 0], "said she'd": [65535, 0], "she'd never": [65535, 0], "never noticed": [65535, 0], "noticed if": [65535, 0], "it hadn't": [65535, 0], "hadn't been": [65535, 0], "been for": [65535, 0], "for sid": [65535, 0], "sid confound": [65535, 0], "confound it": [65535, 0], "it sometimes": [65535, 0], "sometimes she": [65535, 0], "she sews": [65535, 0], "sews it": [65535, 0], "white and": [65535, 0], "and sometimes": [65535, 0], "with black": [65535, 0], "black i": [65535, 0], "wish to": [65535, 0], "to geeminy": [65535, 0], "geeminy she'd": [65535, 0], "she'd stick": [65535, 0], "stick to": [65535, 0], "to one": [65535, 0], "one or": [65535, 0], "or t'other": [65535, 0], "t'other i": [65535, 0], "can't keep": [65535, 0], "keep the": [65535, 0], "the run": [65535, 0], "run of": [65535, 0], "'em but": [65535, 0], "i'll lam": [65535, 0], "lam sid": [65535, 0], "sid for": [65535, 0], "that i'll": [65535, 0], "learn him": [65535, 0], "not the": [65535, 0], "village he": [65535, 0], "boy very": [65535, 0], "very well": [65535, 0], "well though": [65535, 0], "and loathed": [65535, 0], "loathed him": [65535, 0], "him within": [65535, 0], "within two": [65535, 0], "two minutes": [65535, 0], "minutes or": [65535, 0], "or even": [65535, 0], "even less": [65535, 0], "less he": [65535, 0], "had forgotten": [65535, 0], "forgotten all": [65535, 0], "all his": [65535, 0], "his troubles": [65535, 0], "troubles not": [65535, 0], "not because": [65535, 0], "because his": [65535, 0], "troubles were": [65535, 0], "were one": [65535, 0], "one whit": [65535, 0], "whit less": [65535, 0], "less heavy": [65535, 0], "and bitter": [65535, 0], "bitter to": [65535, 0], "him than": [65535, 0], "a man's": [65535, 0], "man's are": [65535, 0], "are to": [65535, 0], "man but": [65535, 0], "but because": [65535, 0], "because a": [65535, 0], "and powerful": [65535, 0], "powerful interest": [65535, 0], "interest bore": [65535, 0], "bore them": [65535, 0], "them down": [65535, 0], "and drove": [65535, 0], "drove them": [65535, 0], "them out": [65535, 0], "mind for": [65535, 0], "time just": [65535, 0], "as men's": [65535, 0], "men's misfortunes": [65535, 0], "misfortunes are": [65535, 0], "are forgotten": [65535, 0], "forgotten in": [65535, 0], "the excitement": [65535, 0], "excitement of": [65535, 0], "new enterprises": [65535, 0], "enterprises this": [65535, 0], "this new": [65535, 0], "new interest": [65535, 0], "interest was": [65535, 0], "a valued": [65535, 0], "valued novelty": [65535, 0], "novelty in": [65535, 0], "in whistling": [65535, 0], "whistling which": [65535, 0], "had just": [65535, 0], "just acquired": [65535, 0], "acquired from": [65535, 0], "a negro": [65535, 0], "negro and": [65535, 0], "suffering to": [65535, 0], "to practise": [65535, 0], "practise it": [65535, 0], "it undisturbed": [65535, 0], "undisturbed it": [65535, 0], "it consisted": [65535, 0], "consisted in": [65535, 0], "peculiar bird": [65535, 0], "bird like": [65535, 0], "like turn": [65535, 0], "turn a": [65535, 0], "of liquid": [65535, 0], "liquid warble": [65535, 0], "warble produced": [65535, 0], "produced by": [65535, 0], "by touching": [65535, 0], "touching the": [65535, 0], "the tongue": [65535, 0], "tongue to": [65535, 0], "the roof": [65535, 0], "roof of": [65535, 0], "the mouth": [65535, 0], "at short": [65535, 0], "short intervals": [65535, 0], "intervals in": [65535, 0], "music the": [65535, 0], "the reader": [65535, 0], "reader probably": [65535, 0], "probably remembers": [65535, 0], "remembers how": [65535, 0], "he has": [65535, 0], "has ever": [65535, 0], "ever been": [65535, 0], "boy diligence": [65535, 0], "diligence and": [65535, 0], "and attention": [65535, 0], "attention soon": [65535, 0], "soon gave": [65535, 0], "the knack": [65535, 0], "knack of": [65535, 0], "strode down": [65535, 0], "his mouth": [65535, 0], "mouth full": [65535, 0], "of harmony": [65535, 0], "harmony and": [65535, 0], "soul full": [65535, 0], "of gratitude": [65535, 0], "gratitude he": [65535, 0], "he felt": [65535, 0], "felt much": [65535, 0], "as an": [65535, 0], "an astronomer": [65535, 0], "astronomer feels": [65535, 0], "feels who": [65535, 0], "who has": [65535, 0], "has discovered": [65535, 0], "new planet": [65535, 0], "planet no": [65535, 0], "no doubt": [65535, 0], "doubt as": [65535, 0], "far as": [65535, 0], "as strong": [65535, 0], "strong deep": [65535, 0], "deep unalloyed": [65535, 0], "unalloyed pleasure": [65535, 0], "pleasure is": [65535, 0], "is concerned": [65535, 0], "concerned the": [65535, 0], "the advantage": [65535, 0], "advantage was": [65535, 0], "was with": [32706, 32829], "boy not": [65535, 0], "the astronomer": [65535, 0], "astronomer the": [65535, 0], "summer evenings": [65535, 0], "evenings were": [65535, 0], "were long": [65535, 0], "long it": [65535, 0], "not dark": [65535, 0], "dark yet": [65535, 0], "yet presently": [65535, 0], "presently tom": [65535, 0], "tom checked": [65535, 0], "checked his": [65535, 0], "his whistle": [65535, 0], "whistle a": [65535, 0], "a stranger": [32706, 32829], "stranger was": [65535, 0], "was before": [65535, 0], "a shade": [65535, 0], "shade larger": [65535, 0], "larger than": [65535, 0], "than himself": [65535, 0], "himself a": [65535, 0], "new comer": [65535, 0], "comer of": [65535, 0], "of any": [65535, 0], "any age": [65535, 0], "age or": [65535, 0], "or either": [65535, 0], "either sex": [65535, 0], "sex was": [65535, 0], "an impressive": [65535, 0], "impressive curiosity": [65535, 0], "curiosity in": [65535, 0], "poor little": [65535, 0], "little shabby": [65535, 0], "shabby village": [65535, 0], "village of": [65535, 0], "of st": [65535, 0], "petersburg this": [65535, 0], "this boy": [65535, 0], "boy was": [65535, 0], "was well": [65535, 0], "well dressed": [65535, 0], "dressed too": [65535, 0], "too well": [32706, 32829], "dressed on": [65535, 0], "a week": [65535, 0], "week day": [65535, 0], "day this": [32706, 32829], "was simply": [65535, 0], "simply astounding": [65535, 0], "astounding his": [65535, 0], "his cap": [65535, 0], "cap was": [65535, 0], "a dainty": [65535, 0], "dainty thing": [65535, 0], "thing his": [32706, 32829], "his closebuttoned": [65535, 0], "closebuttoned blue": [65535, 0], "blue cloth": [65535, 0], "cloth roundabout": [65535, 0], "roundabout was": [65535, 0], "was new": [65535, 0], "and natty": [65535, 0], "natty and": [65535, 0], "so were": [65535, 0], "were his": [65535, 0], "his pantaloons": [65535, 0], "pantaloons he": [65535, 0], "had shoes": [65535, 0], "shoes on": [65535, 0], "only friday": [65535, 0], "friday he": [65535, 0], "even wore": [65535, 0], "wore a": [65535, 0], "a necktie": [65535, 0], "necktie a": [65535, 0], "a bright": [65535, 0], "bright bit": [65535, 0], "of ribbon": [65535, 0], "ribbon he": [65535, 0], "a citified": [65535, 0], "citified air": [65535, 0], "air about": [65535, 0], "about him": [65535, 0], "that ate": [65535, 0], "ate into": [65535, 0], "into tom's": [65535, 0], "tom's vitals": [65535, 0], "vitals the": [65535, 0], "the more": [32706, 32829], "more tom": [65535, 0], "tom stared": [65535, 0], "stared at": [65535, 0], "the splendid": [65535, 0], "splendid marvel": [65535, 0], "marvel the": [65535, 0], "the higher": [65535, 0], "higher he": [65535, 0], "he turned": [65535, 0], "turned up": [65535, 0], "nose at": [65535, 0], "his finery": [65535, 0], "finery and": [65535, 0], "the shabbier": [65535, 0], "shabbier and": [65535, 0], "and shabbier": [65535, 0], "shabbier his": [65535, 0], "own outfit": [65535, 0], "outfit seemed": [65535, 0], "to grow": [65535, 0], "grow neither": [65535, 0], "neither boy": [65535, 0], "boy spoke": [65535, 0], "spoke if": [65535, 0], "if one": [65535, 0], "one moved": [65535, 0], "moved the": [65535, 0], "other moved": [65535, 0], "moved but": [65535, 0], "but only": [65535, 0], "only sidewise": [65535, 0], "sidewise in": [65535, 0], "circle they": [65535, 0], "they kept": [65535, 0], "kept face": [65535, 0], "to face": [65535, 0], "and eye": [65535, 0], "to eye": [65535, 0], "eye all": [65535, 0], "time finally": [65535, 0], "finally tom": [65535, 0], "can lick": [65535, 0], "see you": [32706, 32829], "you try": [65535, 0], "no you": [65535, 0], "can't either": [65535, 0], "either yes": [65535, 0], "can no": [65535, 0], "can you": [16338, 49197], "can't can": [65535, 0], "can can't": [65535, 0], "can't an": [65535, 0], "an uncomfortable": [65535, 0], "uncomfortable pause": [65535, 0], "pause then": [65535, 0], "then tom": [65535, 0], "said what's": [65535, 0], "name 'tisn't": [65535, 0], "'tisn't any": [65535, 0], "any of": [65535, 0], "of your": [16338, 49197], "your business": [65535, 0], "business maybe": [65535, 0], "maybe well": [65535, 0], "i 'low": [65535, 0], "'low i'll": [65535, 0], "i'll make": [65535, 0], "make it": [43635, 21900], "it my": [32706, 32829], "my business": [65535, 0], "business well": [65535, 0], "say much": [65535, 0], "much i": [65535, 0], "will much": [65535, 0], "much much": [65535, 0], "much there": [65535, 0], "now oh": [65535, 0], "you think": [65535, 0], "think you're": [65535, 0], "you're mighty": [65535, 0], "mighty smart": [65535, 0], "smart don't": [65535, 0], "you i": [26155, 39380], "could lick": [65535, 0], "you with": [21790, 43745], "one hand": [65535, 0], "hand tied": [65535, 0], "tied behind": [65535, 0], "behind me": [65535, 0], "me if": [32706, 32829], "you do": [50929, 14606], "it you": [32706, 32829], "say you": [16338, 49197], "will if": [65535, 0], "you fool": [65535, 0], "fool with": [65535, 0], "with me": [4082, 61453], "oh yes": [32706, 32829], "yes i've": [65535, 0], "seen whole": [65535, 0], "whole families": [65535, 0], "families in": [65535, 0], "the same": [13068, 52467], "same fix": [65535, 0], "fix smarty": [65535, 0], "smarty you": [65535, 0], "you're some": [65535, 0], "some now": [65535, 0], "oh what": [65535, 0], "a hat": [65535, 0], "hat you": [65535, 0], "can lump": [65535, 0], "lump that": [65535, 0], "that hat": [65535, 0], "hat if": [65535, 0], "don't like": [65535, 0], "i dare": [43635, 21900], "dare you": [65535, 0], "you to": [13068, 52467], "to knock": [65535, 0], "knock it": [65535, 0], "off and": [65535, 0], "and anybody": [65535, 0], "anybody that'll": [65535, 0], "that'll take": [65535, 0], "a dare": [65535, 0], "dare will": [65535, 0], "will suck": [65535, 0], "suck eggs": [65535, 0], "eggs you're": [65535, 0], "a liar": [65535, 0], "liar you're": [65535, 0], "you're another": [65535, 0], "another you're": [65535, 0], "a fighting": [65535, 0], "fighting liar": [65535, 0], "liar and": [65535, 0], "and dasn't": [65535, 0], "dasn't take": [65535, 0], "up aw": [65535, 0], "aw take": [65535, 0], "a walk": [65535, 0], "walk say": [65535, 0], "say if": [65535, 0], "me much": [65535, 0], "more of": [32706, 32829], "your sass": [65535, 0], "sass i'll": [65535, 0], "i'll take": [65535, 0], "and bounce": [65535, 0], "bounce a": [65535, 0], "rock off'n": [65535, 0], "off'n your": [65535, 0], "head oh": [65535, 0], "oh of": [65535, 0], "will well": [43635, 21900], "then what": [65535, 0], "you keep": [65535, 0], "keep saying": [65535, 0], "saying you": [65535, 0], "will for": [32706, 32829], "for why": [32706, 32829], "it's because": [65535, 0], "because you're": [65535, 0], "you're afraid": [65535, 0], "afraid i": [65535, 0], "ain't afraid": [65535, 0], "afraid you": [65535, 0], "you are": [7684, 57851], "are i": [65535, 0], "are another": [65535, 0], "another pause": [65535, 0], "pause and": [65535, 0], "more eying": [65535, 0], "eying and": [65535, 0], "and sidling": [65535, 0], "sidling around": [65535, 0], "around each": [65535, 0], "each other": [65535, 0], "other presently": [65535, 0], "presently they": [65535, 0], "were shoulder": [65535, 0], "shoulder to": [65535, 0], "to shoulder": [65535, 0], "shoulder tom": [65535, 0], "said get": [65535, 0], "get away": [65535, 0], "from here": [65535, 0], "here go": [65535, 0], "go away": [65535, 0], "away yourself": [65535, 0], "yourself i": [65535, 0], "won't either": [65535, 0], "either so": [65535, 0], "so they": [65535, 0], "they stood": [65535, 0], "stood each": [65535, 0], "each with": [65535, 0], "a foot": [43635, 21900], "foot placed": [65535, 0], "placed at": [65535, 0], "angle as": [65535, 0], "a brace": [65535, 0], "brace and": [65535, 0], "and both": [65535, 0], "both shoving": [65535, 0], "shoving with": [65535, 0], "with might": [65535, 0], "might and": [65535, 0], "and main": [65535, 0], "main and": [65535, 0], "and glowering": [65535, 0], "glowering at": [65535, 0], "at each": [65535, 0], "other with": [65535, 0], "with hate": [65535, 0], "hate but": [65535, 0], "but neither": [32706, 32829], "neither could": [65535, 0], "could get": [65535, 0], "get an": [65535, 0], "an advantage": [65535, 0], "advantage after": [65535, 0], "after struggling": [65535, 0], "struggling till": [65535, 0], "till both": [65535, 0], "both were": [65535, 0], "were hot": [65535, 0], "hot and": [65535, 0], "and flushed": [65535, 0], "flushed each": [65535, 0], "each relaxed": [65535, 0], "relaxed his": [65535, 0], "his strain": [65535, 0], "strain with": [65535, 0], "with watchful": [65535, 0], "watchful caution": [65535, 0], "caution and": [65535, 0], "said you're": [65535, 0], "a coward": [65535, 0], "coward and": [65535, 0], "a pup": [65535, 0], "pup i'll": [65535, 0], "i'll tell": [65535, 0], "tell my": [65535, 0], "my big": [65535, 0], "big brother": [65535, 0], "brother on": [65535, 0], "on you": [32706, 32829], "you and": [13068, 52467], "can thrash": [65535, 0], "thrash you": [65535, 0], "his little": [65535, 0], "little finger": [65535, 0], "him do": [65535, 0], "too what": [65535, 0], "do i": [43635, 21900], "i care": [65535, 0], "care for": [65535, 0], "for your": [21790, 43745], "your big": [65535, 0], "brother i've": [65535, 0], "a brother": [43635, 21900], "brother that's": [65535, 0], "that's bigger": [65535, 0], "bigger than": [65535, 0], "he is": [10050, 55485], "and what's": [32706, 32829], "what's more": [65535, 0], "more he": [65535, 0], "can throw": [65535, 0], "throw him": [65535, 0], "him over": [65535, 0], "over that": [65535, 0], "that fence": [65535, 0], "fence too": [65535, 0], "too both": [65535, 0], "both brothers": [65535, 0], "brothers were": [65535, 0], "were imaginary": [65535, 0], "imaginary that's": [65535, 0], "lie your": [65535, 0], "your saying": [65535, 0], "saying so": [65535, 0], "so don't": [65535, 0], "don't make": [65535, 0], "drew a": [65535, 0], "a line": [65535, 0], "the dust": [65535, 0], "dust with": [65535, 0], "his big": [65535, 0], "big toe": [65535, 0], "toe and": [65535, 0], "to step": [65535, 0], "step over": [65535, 0], "that and": [32706, 32829], "you till": [32706, 32829], "till you": [32706, 32829], "can't stand": [65535, 0], "stand up": [65535, 0], "up anybody": [65535, 0], "will steal": [65535, 0], "steal sheep": [65535, 0], "sheep the": [65535, 0], "new boy": [65535, 0], "boy stepped": [65535, 0], "over promptly": [65535, 0], "promptly and": [65535, 0], "said now": [65535, 0], "you said": [43635, 21900], "said you'd": [65535, 0], "you'd do": [65535, 0], "it now": [43635, 21900], "now let's": [32706, 32829], "let's see": [65535, 0], "you crowd": [65535, 0], "crowd me": [65535, 0], "you better": [65535, 0], "better look": [65535, 0], "look out": [65535, 0], "out well": [65535, 0], "it by": [10888, 54647], "by jingo": [65535, 0], "jingo for": [65535, 0], "two cents": [65535, 0], "cents i": [65535, 0], "will do": [65535, 0], "boy took": [65535, 0], "took two": [65535, 0], "two broad": [65535, 0], "broad coppers": [65535, 0], "coppers out": [65535, 0], "held them": [65535, 0], "with derision": [65535, 0], "derision tom": [65535, 0], "tom struck": [65535, 0], "struck them": [65535, 0], "ground in": [65535, 0], "in an": [16338, 49197], "an instant": [65535, 0], "instant both": [65535, 0], "both boys": [65535, 0], "boys were": [65535, 0], "were rolling": [65535, 0], "rolling and": [65535, 0], "and tumbling": [65535, 0], "tumbling in": [65535, 0], "dirt gripped": [65535, 0], "gripped together": [65535, 0], "together like": [65535, 0], "like cats": [65535, 0], "cats and": [65535, 0], "and for": [16338, 49197], "minute they": [65535, 0], "they tugged": [65535, 0], "tugged and": [65535, 0], "and tore": [65535, 0], "tore at": [65535, 0], "each other's": [65535, 0], "other's hair": [65535, 0], "hair and": [65535, 0], "and clothes": [65535, 0], "clothes punched": [65535, 0], "punched and": [65535, 0], "and scratched": [65535, 0], "scratched each": [65535, 0], "other's nose": [65535, 0], "nose and": [65535, 0], "and covered": [65535, 0], "covered themselves": [65535, 0], "themselves with": [65535, 0], "with dust": [65535, 0], "dust and": [65535, 0], "and glory": [65535, 0], "glory presently": [65535, 0], "the confusion": [65535, 0], "confusion took": [65535, 0], "took form": [65535, 0], "form and": [65535, 0], "and through": [65535, 0], "the fog": [65535, 0], "fog of": [65535, 0], "of battle": [65535, 0], "battle tom": [65535, 0], "appeared seated": [65535, 0], "seated astride": [65535, 0], "astride the": [65535, 0], "and pounding": [65535, 0], "pounding him": [65535, 0], "his fists": [65535, 0], "fists holler": [65535, 0], "holler 'nuff": [65535, 0], "'nuff said": [65535, 0], "said he": [49105, 16430], "he the": [32706, 32829], "boy only": [65535, 0], "only struggled": [65535, 0], "struggled to": [65535, 0], "to free": [65535, 0], "free himself": [65535, 0], "himself he": [65535, 0], "was crying": [65535, 0], "crying mainly": [65535, 0], "mainly from": [65535, 0], "from rage": [65535, 0], "rage holler": [65535, 0], "'nuff and": [65535, 0], "the pounding": [65535, 0], "pounding went": [65535, 0], "on at": [65535, 0], "the stranger": [32706, 32829], "stranger got": [65535, 0], "smothered 'nuff": [65535, 0], "him up": [65535, 0], "now that'll": [65535, 0], "that'll learn": [65535, 0], "out who": [65535, 0], "who you're": [65535, 0], "you're fooling": [65535, 0], "fooling with": [65535, 0], "with next": [65535, 0], "next time": [65535, 0], "boy went": [65535, 0], "went off": [65535, 0], "off brushing": [65535, 0], "brushing the": [65535, 0], "dust from": [65535, 0], "from his": [65535, 0], "clothes sobbing": [65535, 0], "sobbing snuffling": [65535, 0], "snuffling and": [65535, 0], "and occasionally": [65535, 0], "occasionally looking": [65535, 0], "looking back": [65535, 0], "and shaking": [65535, 0], "shaking his": [65535, 0], "and threatening": [65535, 0], "threatening what": [65535, 0], "what he": [32706, 32829], "would do": [65535, 0], "do to": [65535, 0], "to tom": [65535, 0], "tom the": [65535, 0], "he caught": [65535, 0], "caught him": [65535, 0], "to which": [65535, 0], "which tom": [65535, 0], "tom responded": [65535, 0], "responded with": [65535, 0], "with jeers": [65535, 0], "jeers and": [65535, 0], "and started": [65535, 0], "started off": [65535, 0], "off in": [65535, 0], "in high": [65535, 0], "high feather": [65535, 0], "feather and": [65535, 0], "and as": [52389, 13146], "as soon": [65535, 0], "soon as": [65535, 0], "as his": [65535, 0], "his back": [65535, 0], "back was": [65535, 0], "was turned": [65535, 0], "turned the": [65535, 0], "boy snatched": [65535, 0], "snatched up": [65535, 0], "a stone": [65535, 0], "stone threw": [65535, 0], "threw it": [65535, 0], "and hit": [65535, 0], "him between": [65535, 0], "between the": [65535, 0], "the shoulders": [65535, 0], "shoulders and": [65535, 0], "then turned": [65535, 0], "turned tail": [65535, 0], "tail and": [65535, 0], "and ran": [65535, 0], "ran like": [65535, 0], "like an": [32706, 32829], "an antelope": [65535, 0], "antelope tom": [65535, 0], "tom chased": [65535, 0], "chased the": [65535, 0], "the traitor": [65535, 0], "traitor home": [65535, 0], "home and": [21790, 43745], "and thus": [65535, 0], "thus found": [65535, 0], "found out": [65535, 0], "out where": [65535, 0], "he lived": [65535, 0], "lived he": [65535, 0], "he then": [65535, 0], "then held": [65535, 0], "held a": [65535, 0], "a position": [65535, 0], "position at": [65535, 0], "gate for": [65535, 0], "some time": [65535, 0], "time daring": [65535, 0], "daring the": [65535, 0], "enemy to": [65535, 0], "to come": [21790, 43745], "come outside": [65535, 0], "outside but": [65535, 0], "enemy only": [65535, 0], "only made": [65535, 0], "made faces": [65535, 0], "faces at": [65535, 0], "him through": [65535, 0], "and declined": [65535, 0], "declined at": [65535, 0], "the enemy's": [65535, 0], "enemy's mother": [65535, 0], "mother appeared": [65535, 0], "appeared and": [65535, 0], "and called": [65535, 0], "called tom": [65535, 0], "a bad": [65535, 0], "bad vicious": [65535, 0], "vicious vulgar": [65535, 0], "vulgar child": [65535, 0], "child and": [65535, 0], "and ordered": [65535, 0], "ordered him": [65535, 0], "him away": [32706, 32829], "away so": [65535, 0], "went away": [65535, 0], "away but": [65535, 0], "he 'lowed": [65535, 0], "'lowed to": [65535, 0], "to lay": [65535, 0], "lay for": [65535, 0], "got home": [65535, 0], "home pretty": [65535, 0], "pretty late": [65535, 0], "late that": [65535, 0], "night and": [21790, 43745], "he climbed": [65535, 0], "climbed cautiously": [65535, 0], "cautiously in": [65535, 0], "in at": [65535, 0], "window he": [65535, 0], "he uncovered": [65535, 0], "uncovered an": [65535, 0], "an ambuscade": [65535, 0], "ambuscade in": [65535, 0], "the person": [65535, 0], "person of": [65535, 0], "aunt and": [65535, 0], "she saw": [32706, 32829], "saw the": [21790, 43745], "state his": [65535, 0], "clothes were": [65535, 0], "her resolution": [65535, 0], "resolution to": [65535, 0], "turn his": [65535, 0], "his saturday": [65535, 0], "saturday holiday": [65535, 0], "holiday into": [65535, 0], "captivity at": [65535, 0], "at hard": [65535, 0], "hard labor": [65535, 0], "labor became": [65535, 0], "became adamantine": [65535, 0], "adamantine in": [65535, 0], "its firmness": [65535, 0], "tom no answer": [65535, 0], "answer tom no": [65535, 0], "no answer what's": [65535, 0], "answer what's gone": [65535, 0], "what's gone with": [65535, 0], "gone with that": [65535, 0], "with that boy": [65535, 0], "that boy i": [65535, 0], "boy i wonder": [65535, 0], "i wonder you": [65535, 0], "wonder you tom": [65535, 0], "you tom no": [65535, 0], "no answer the": [65535, 0], "answer the old": [65535, 0], "old lady pulled": [65535, 0], "lady pulled her": [65535, 0], "pulled her spectacles": [65535, 0], "her spectacles down": [65535, 0], "spectacles down and": [65535, 0], "down and looked": [65535, 0], "and looked over": [65535, 0], "looked over them": [65535, 0], "over them about": [65535, 0], "them about the": [65535, 0], "about the room": [65535, 0], "the room then": [65535, 0], "room then she": [65535, 0], "then she put": [65535, 0], "she put them": [65535, 0], "put them up": [65535, 0], "them up and": [65535, 0], "up and looked": [65535, 0], "and looked out": [65535, 0], "looked out under": [65535, 0], "out under them": [65535, 0], "under them she": [65535, 0], "them she seldom": [65535, 0], "she seldom or": [65535, 0], "seldom or never": [65535, 0], "or never looked": [65535, 0], "never looked through": [65535, 0], "looked through them": [65535, 0], "through them for": [65535, 0], "them for so": [65535, 0], "for so small": [65535, 0], "so small a": [65535, 0], "small a thing": [65535, 0], "a thing as": [65535, 0], "thing as a": [65535, 0], "as a boy": [65535, 0], "a boy they": [65535, 0], "boy they were": [65535, 0], "they were her": [65535, 0], "were her state": [65535, 0], "her state pair": [65535, 0], "state pair the": [65535, 0], "pair the pride": [65535, 0], "pride of her": [65535, 0], "of her heart": [65535, 0], "her heart and": [65535, 0], "heart and were": [65535, 0], "and were built": [65535, 0], "were built for": [65535, 0], "built for style": [65535, 0], "for style not": [65535, 0], "style not service": [65535, 0], "not service she": [65535, 0], "service she could": [65535, 0], "she could have": [65535, 0], "could have seen": [65535, 0], "have seen through": [65535, 0], "seen through a": [65535, 0], "through a pair": [65535, 0], "a pair of": [65535, 0], "pair of stove": [65535, 0], "of stove lids": [65535, 0], "stove lids just": [65535, 0], "lids just as": [65535, 0], "just as well": [65535, 0], "as well she": [65535, 0], "well she looked": [65535, 0], "she looked perplexed": [65535, 0], "looked perplexed for": [65535, 0], "perplexed for a": [65535, 0], "for a moment": [65535, 0], "then said not": [65535, 0], "said not fiercely": [65535, 0], "not fiercely but": [65535, 0], "fiercely but still": [65535, 0], "but still loud": [65535, 0], "still loud enough": [65535, 0], "loud enough for": [65535, 0], "enough for the": [65535, 0], "for the furniture": [65535, 0], "the furniture to": [65535, 0], "furniture to hear": [65535, 0], "to hear well": [65535, 0], "hear well i": [65535, 0], "well i lay": [65535, 0], "i lay if": [65535, 0], "lay if i": [65535, 0], "if i get": [65535, 0], "i get hold": [65535, 0], "get hold of": [65535, 0], "hold of you": [65535, 0], "of you i'll": [65535, 0], "you i'll she": [65535, 0], "i'll she did": [65535, 0], "she did not": [65535, 0], "did not finish": [65535, 0], "not finish for": [65535, 0], "finish for by": [65535, 0], "for by this": [65535, 0], "time she was": [65535, 0], "she was bending": [65535, 0], "was bending down": [65535, 0], "bending down and": [65535, 0], "down and punching": [65535, 0], "and punching under": [65535, 0], "punching under the": [65535, 0], "under the bed": [65535, 0], "the bed with": [65535, 0], "bed with the": [65535, 0], "with the broom": [65535, 0], "the broom and": [65535, 0], "broom and so": [65535, 0], "and so she": [65535, 0], "so she needed": [65535, 0], "she needed breath": [65535, 0], "needed breath to": [65535, 0], "breath to punctuate": [65535, 0], "to punctuate the": [65535, 0], "punctuate the punches": [65535, 0], "the punches with": [65535, 0], "punches with she": [65535, 0], "with she resurrected": [65535, 0], "she resurrected nothing": [65535, 0], "resurrected nothing but": [65535, 0], "nothing but the": [65535, 0], "but the cat": [65535, 0], "the cat i": [65535, 0], "cat i never": [65535, 0], "i never did": [65535, 0], "never did see": [65535, 0], "did see the": [65535, 0], "see the beat": [65535, 0], "the beat of": [65535, 0], "beat of that": [65535, 0], "of that boy": [65535, 0], "that boy she": [65535, 0], "boy she went": [65535, 0], "she went to": [65535, 0], "to the open": [65535, 0], "the open door": [65535, 0], "open door and": [65535, 0], "door and stood": [65535, 0], "and stood in": [65535, 0], "stood in it": [65535, 0], "in it and": [65535, 0], "it and looked": [65535, 0], "looked out among": [65535, 0], "out among the": [65535, 0], "among the tomato": [65535, 0], "the tomato vines": [65535, 0], "tomato vines and": [65535, 0], "vines and jimpson": [65535, 0], "and jimpson weeds": [65535, 0], "jimpson weeds that": [65535, 0], "weeds that constituted": [65535, 0], "that constituted the": [65535, 0], "constituted the garden": [65535, 0], "the garden no": [65535, 0], "garden no tom": [65535, 0], "no tom so": [65535, 0], "tom so she": [65535, 0], "so she lifted": [65535, 0], "she lifted up": [65535, 0], "lifted up her": [65535, 0], "up her voice": [65535, 0], "her voice at": [65535, 0], "voice at an": [65535, 0], "at an angle": [65535, 0], "an angle calculated": [65535, 0], "angle calculated for": [65535, 0], "calculated for distance": [65535, 0], "for distance and": [65535, 0], "distance and shouted": [65535, 0], "and shouted y": [65535, 0], "shouted y o": [65535, 0], "y o u": [65535, 0], "o u u": [65535, 0], "u u tom": [65535, 0], "u tom there": [65535, 0], "tom there was": [65535, 0], "was a slight": [65535, 0], "a slight noise": [65535, 0], "slight noise behind": [65535, 0], "noise behind her": [65535, 0], "behind her and": [65535, 0], "and she turned": [65535, 0], "she turned just": [65535, 0], "turned just in": [65535, 0], "just in time": [65535, 0], "in time to": [65535, 0], "time to seize": [65535, 0], "to seize a": [65535, 0], "seize a small": [65535, 0], "a small boy": [65535, 0], "small boy by": [65535, 0], "boy by the": [65535, 0], "by the slack": [65535, 0], "the slack of": [65535, 0], "slack of his": [65535, 0], "of his roundabout": [65535, 0], "his roundabout and": [65535, 0], "roundabout and arrest": [65535, 0], "and arrest his": [65535, 0], "arrest his flight": [65535, 0], "his flight there": [65535, 0], "flight there i": [65535, 0], "there i might": [65535, 0], "i might 'a'": [65535, 0], "might 'a' thought": [65535, 0], "'a' thought of": [65535, 0], "of that closet": [65535, 0], "that closet what": [65535, 0], "closet what you": [65535, 0], "what you been": [65535, 0], "you been doing": [65535, 0], "been doing in": [65535, 0], "doing in there": [65535, 0], "in there nothing": [65535, 0], "there nothing nothing": [65535, 0], "nothing nothing look": [65535, 0], "nothing look at": [65535, 0], "look at your": [65535, 0], "at your hands": [65535, 0], "your hands and": [65535, 0], "hands and look": [65535, 0], "and look at": [65535, 0], "at your mouth": [65535, 0], "your mouth what": [65535, 0], "mouth what is": [65535, 0], "what is that": [65535, 0], "is that i": [65535, 0], "that i don't": [65535, 0], "don't know aunt": [65535, 0], "know aunt well": [65535, 0], "aunt well i": [65535, 0], "well i know": [32706, 32829], "know it's jam": [65535, 0], "it's jam that's": [65535, 0], "jam that's what": [65535, 0], "that's what it": [65535, 0], "what it is": [65535, 0], "it is forty": [65535, 0], "is forty times": [65535, 0], "forty times i've": [65535, 0], "times i've said": [65535, 0], "i've said if": [65535, 0], "said if you": [65535, 0], "if you didn't": [65535, 0], "you didn't let": [65535, 0], "didn't let that": [65535, 0], "let that jam": [65535, 0], "that jam alone": [65535, 0], "jam alone i'd": [65535, 0], "alone i'd skin": [65535, 0], "i'd skin you": [65535, 0], "skin you hand": [65535, 0], "you hand me": [65535, 0], "hand me that": [65535, 0], "me that switch": [65535, 0], "that switch the": [65535, 0], "switch the switch": [65535, 0], "the switch hovered": [65535, 0], "switch hovered in": [65535, 0], "hovered in the": [65535, 0], "in the air": [65535, 0], "the air the": [65535, 0], "air the peril": [65535, 0], "the peril was": [65535, 0], "peril was desperate": [65535, 0], "was desperate my": [65535, 0], "desperate my look": [65535, 0], "my look behind": [65535, 0], "look behind you": [65535, 0], "behind you aunt": [65535, 0], "you aunt the": [65535, 0], "aunt the old": [65535, 0], "old lady whirled": [65535, 0], "lady whirled round": [65535, 0], "whirled round and": [65535, 0], "round and snatched": [65535, 0], "and snatched her": [65535, 0], "snatched her skirts": [65535, 0], "her skirts out": [65535, 0], "skirts out of": [65535, 0], "out of danger": [65535, 0], "of danger the": [65535, 0], "danger the lad": [65535, 0], "the lad fled": [65535, 0], "lad fled on": [65535, 0], "fled on the": [65535, 0], "on the instant": [65535, 0], "the instant scrambled": [65535, 0], "instant scrambled up": [65535, 0], "scrambled up the": [65535, 0], "up the high": [65535, 0], "the high board": [65535, 0], "high board fence": [65535, 0], "board fence and": [65535, 0], "fence and disappeared": [65535, 0], "and disappeared over": [65535, 0], "disappeared over it": [65535, 0], "over it his": [65535, 0], "it his aunt": [65535, 0], "his aunt polly": [65535, 0], "aunt polly stood": [65535, 0], "polly stood surprised": [65535, 0], "stood surprised a": [65535, 0], "surprised a moment": [65535, 0], "and then broke": [65535, 0], "then broke into": [65535, 0], "broke into a": [65535, 0], "into a gentle": [65535, 0], "a gentle laugh": [65535, 0], "gentle laugh hang": [65535, 0], "laugh hang the": [65535, 0], "hang the boy": [65535, 0], "the boy can't": [65535, 0], "boy can't i": [65535, 0], "can't i never": [65535, 0], "i never learn": [65535, 0], "never learn anything": [65535, 0], "learn anything ain't": [65535, 0], "anything ain't he": [65535, 0], "ain't he played": [65535, 0], "he played me": [65535, 0], "played me tricks": [65535, 0], "me tricks enough": [65535, 0], "tricks enough like": [65535, 0], "enough like that": [65535, 0], "like that for": [65535, 0], "that for me": [65535, 0], "for me to": [21790, 43745], "me to be": [21790, 43745], "to be looking": [65535, 0], "be looking out": [65535, 0], "looking out for": [65535, 0], "out for him": [65535, 0], "for him by": [65535, 0], "him by this": [65535, 0], "this time but": [65535, 0], "time but old": [65535, 0], "but old fools": [65535, 0], "old fools is": [65535, 0], "fools is the": [65535, 0], "is the biggest": [65535, 0], "the biggest fools": [65535, 0], "biggest fools there": [65535, 0], "fools there is": [65535, 0], "there is can't": [65535, 0], "is can't learn": [65535, 0], "can't learn an": [65535, 0], "learn an old": [65535, 0], "an old dog": [65535, 0], "old dog new": [65535, 0], "dog new tricks": [65535, 0], "new tricks as": [65535, 0], "tricks as the": [65535, 0], "as the saying": [65535, 0], "the saying is": [65535, 0], "saying is but": [65535, 0], "is but my": [65535, 0], "but my goodness": [65535, 0], "my goodness he": [65535, 0], "goodness he never": [65535, 0], "he never plays": [65535, 0], "never plays them": [65535, 0], "plays them alike": [65535, 0], "them alike two": [65535, 0], "alike two days": [65535, 0], "two days and": [65535, 0], "days and how": [65535, 0], "and how is": [65535, 0], "how is a": [65535, 0], "is a body": [65535, 0], "a body to": [65535, 0], "body to know": [65535, 0], "to know what's": [65535, 0], "know what's coming": [65535, 0], "what's coming he": [65535, 0], "coming he 'pears": [65535, 0], "he 'pears to": [65535, 0], "'pears to know": [65535, 0], "to know just": [65535, 0], "know just how": [65535, 0], "just how long": [65535, 0], "how long he": [65535, 0], "long he can": [65535, 0], "he can torment": [65535, 0], "can torment me": [65535, 0], "torment me before": [65535, 0], "me before i": [65535, 0], "before i get": [65535, 0], "i get my": [65535, 0], "get my dander": [65535, 0], "my dander up": [65535, 0], "dander up and": [65535, 0], "up and he": [65535, 0], "and he knows": [65535, 0], "he knows if": [65535, 0], "knows if he": [65535, 0], "if he can": [32706, 32829], "he can make": [65535, 0], "can make out": [65535, 0], "make out to": [65535, 0], "out to put": [65535, 0], "to put me": [65535, 0], "put me off": [65535, 0], "me off for": [65535, 0], "off for a": [65535, 0], "for a minute": [65535, 0], "a minute or": [65535, 0], "minute or make": [65535, 0], "or make me": [65535, 0], "make me laugh": [65535, 0], "me laugh it's": [65535, 0], "laugh it's all": [65535, 0], "it's all down": [65535, 0], "all down again": [65535, 0], "down again and": [65535, 0], "again and i": [65535, 0], "and i can't": [65535, 0], "i can't hit": [65535, 0], "can't hit him": [65535, 0], "hit him a": [65535, 0], "him a lick": [65535, 0], "a lick i": [65535, 0], "lick i ain't": [65535, 0], "i ain't doing": [65535, 0], "ain't doing my": [65535, 0], "doing my duty": [65535, 0], "my duty by": [65535, 0], "duty by that": [65535, 0], "by that boy": [65535, 0], "that boy and": [65535, 0], "boy and that's": [65535, 0], "and that's the": [65535, 0], "that's the lord's": [65535, 0], "the lord's truth": [65535, 0], "lord's truth goodness": [65535, 0], "truth goodness knows": [65535, 0], "goodness knows spare": [65535, 0], "knows spare the": [65535, 0], "spare the rod": [65535, 0], "the rod and": [65535, 0], "rod and spoil": [65535, 0], "and spoil the": [65535, 0], "spoil the child": [65535, 0], "the child as": [65535, 0], "child as the": [65535, 0], "as the good": [65535, 0], "the good book": [65535, 0], "good book says": [65535, 0], "book says i'm": [65535, 0], "says i'm a": [65535, 0], "i'm a laying": [65535, 0], "a laying up": [65535, 0], "laying up sin": [65535, 0], "up sin and": [65535, 0], "sin and suffering": [65535, 0], "and suffering for": [65535, 0], "suffering for us": [65535, 0], "for us both": [65535, 0], "us both i": [65535, 0], "both i know": [65535, 0], "i know he's": [65535, 0], "know he's full": [65535, 0], "he's full of": [65535, 0], "full of the": [65535, 0], "of the old": [65535, 0], "the old scratch": [65535, 0], "old scratch but": [65535, 0], "scratch but laws": [65535, 0], "but laws a": [65535, 0], "laws a me": [65535, 0], "a me he's": [65535, 0], "me he's my": [65535, 0], "he's my own": [65535, 0], "my own dead": [65535, 0], "own dead sister's": [65535, 0], "dead sister's boy": [65535, 0], "sister's boy poor": [65535, 0], "boy poor thing": [65535, 0], "poor thing and": [65535, 0], "thing and i": [65535, 0], "and i ain't": [65535, 0], "i ain't got": [65535, 0], "ain't got the": [65535, 0], "got the heart": [65535, 0], "the heart to": [65535, 0], "heart to lash": [65535, 0], "to lash him": [65535, 0], "lash him somehow": [65535, 0], "him somehow every": [65535, 0], "somehow every time": [65535, 0], "every time i": [65535, 0], "time i let": [65535, 0], "i let him": [32706, 32829], "let him off": [65535, 0], "him off my": [65535, 0], "off my conscience": [65535, 0], "my conscience does": [65535, 0], "conscience does hurt": [65535, 0], "does hurt me": [65535, 0], "hurt me so": [65535, 0], "me so and": [32706, 32829], "so and every": [65535, 0], "and every time": [65535, 0], "time i hit": [65535, 0], "i hit him": [65535, 0], "hit him my": [65535, 0], "him my old": [65535, 0], "old heart most": [65535, 0], "heart most breaks": [65535, 0], "most breaks well": [65535, 0], "breaks well a": [65535, 0], "well a well": [65535, 0], "a well man": [65535, 0], "well man that": [65535, 0], "man that is": [65535, 0], "that is born": [65535, 0], "is born of": [65535, 0], "born of woman": [65535, 0], "of woman is": [65535, 0], "woman is of": [65535, 0], "is of few": [65535, 0], "of few days": [65535, 0], "few days and": [65535, 0], "days and full": [65535, 0], "and full of": [65535, 0], "full of trouble": [65535, 0], "of trouble as": [65535, 0], "trouble as the": [65535, 0], "as the scripture": [65535, 0], "the scripture says": [65535, 0], "scripture says and": [65535, 0], "says and i": [65535, 0], "and i reckon": [65535, 0], "it's so he'll": [65535, 0], "so he'll play": [65535, 0], "he'll play hookey": [65535, 0], "play hookey this": [65535, 0], "hookey this evening": [65535, 0], "this evening and": [65535, 0], "evening and i'll": [65535, 0], "and i'll just": [65535, 0], "i'll just be": [65535, 0], "just be obliged": [65535, 0], "be obliged to": [65535, 0], "obliged to make": [65535, 0], "make him work": [65535, 0], "him work to": [65535, 0], "work to morrow": [65535, 0], "to morrow to": [65535, 0], "morrow to punish": [65535, 0], "to punish him": [65535, 0], "punish him it's": [65535, 0], "him it's mighty": [65535, 0], "it's mighty hard": [65535, 0], "mighty hard to": [65535, 0], "hard to make": [65535, 0], "him work saturdays": [65535, 0], "work saturdays when": [65535, 0], "saturdays when all": [65535, 0], "when all the": [65535, 0], "all the boys": [65535, 0], "the boys is": [65535, 0], "boys is having": [65535, 0], "is having holiday": [65535, 0], "having holiday but": [65535, 0], "holiday but he": [65535, 0], "but he hates": [65535, 0], "he hates work": [65535, 0], "hates work more": [65535, 0], "work more than": [65535, 0], "more than he": [65535, 0], "than he hates": [65535, 0], "he hates anything": [65535, 0], "hates anything else": [65535, 0], "anything else and": [65535, 0], "else and i've": [65535, 0], "and i've got": [65535, 0], "i've got to": [65535, 0], "got to do": [65535, 0], "to do some": [65535, 0], "do some of": [65535, 0], "some of my": [32706, 32829], "of my duty": [65535, 0], "duty by him": [65535, 0], "by him or": [65535, 0], "him or i'll": [65535, 0], "or i'll be": [65535, 0], "i'll be the": [65535, 0], "be the ruination": [65535, 0], "the ruination of": [65535, 0], "ruination of the": [65535, 0], "of the child": [65535, 0], "the child tom": [65535, 0], "child tom did": [65535, 0], "tom did play": [65535, 0], "did play hookey": [65535, 0], "play hookey and": [65535, 0], "hookey and he": [65535, 0], "and he had": [65535, 0], "he had a": [65535, 0], "had a very": [65535, 0], "a very good": [65535, 0], "very good time": [65535, 0], "good time he": [65535, 0], "he got back": [65535, 0], "got back home": [65535, 0], "back home barely": [65535, 0], "home barely in": [65535, 0], "barely in season": [65535, 0], "in season to": [65535, 0], "season to help": [65535, 0], "to help jim": [65535, 0], "help jim the": [65535, 0], "jim the small": [65535, 0], "the small colored": [65535, 0], "small colored boy": [65535, 0], "colored boy saw": [65535, 0], "boy saw next": [65535, 0], "saw next day's": [65535, 0], "next day's wood": [65535, 0], "day's wood and": [65535, 0], "wood and split": [65535, 0], "split the kindlings": [65535, 0], "the kindlings before": [65535, 0], "kindlings before supper": [65535, 0], "before supper at": [65535, 0], "supper at least": [65535, 0], "at least he": [65535, 0], "least he was": [65535, 0], "he was there": [65535, 0], "was there in": [65535, 0], "there in time": [65535, 0], "time to tell": [65535, 0], "to tell his": [65535, 0], "tell his adventures": [65535, 0], "his adventures to": [65535, 0], "adventures to jim": [65535, 0], "to jim while": [65535, 0], "jim while jim": [65535, 0], "while jim did": [65535, 0], "jim did three": [65535, 0], "did three fourths": [65535, 0], "three fourths of": [65535, 0], "fourths of the": [65535, 0], "of the work": [65535, 0], "the work tom's": [65535, 0], "work tom's younger": [65535, 0], "tom's younger brother": [65535, 0], "younger brother or": [65535, 0], "brother or rather": [65535, 0], "or rather half": [65535, 0], "rather half brother": [65535, 0], "half brother sid": [65535, 0], "brother sid was": [65535, 0], "sid was already": [65535, 0], "was already through": [65535, 0], "already through with": [65535, 0], "through with his": [65535, 0], "with his part": [65535, 0], "his part of": [65535, 0], "the work picking": [65535, 0], "work picking up": [65535, 0], "picking up chips": [65535, 0], "up chips for": [65535, 0], "chips for he": [65535, 0], "was a quiet": [65535, 0], "a quiet boy": [65535, 0], "quiet boy and": [65535, 0], "boy and had": [65535, 0], "and had no": [65535, 0], "had no adventurous": [65535, 0], "no adventurous troublesome": [65535, 0], "adventurous troublesome ways": [65535, 0], "troublesome ways while": [65535, 0], "ways while tom": [65535, 0], "while tom was": [65535, 0], "tom was eating": [65535, 0], "was eating his": [65535, 0], "eating his supper": [65535, 0], "his supper and": [65535, 0], "supper and stealing": [65535, 0], "and stealing sugar": [65535, 0], "stealing sugar as": [65535, 0], "sugar as opportunity": [65535, 0], "as opportunity offered": [65535, 0], "opportunity offered aunt": [65535, 0], "offered aunt polly": [65535, 0], "aunt polly asked": [65535, 0], "polly asked him": [65535, 0], "asked him questions": [65535, 0], "him questions that": [65535, 0], "questions that were": [65535, 0], "that were full": [65535, 0], "were full of": [65535, 0], "full of guile": [65535, 0], "of guile and": [65535, 0], "guile and very": [65535, 0], "and very deep": [65535, 0], "very deep for": [65535, 0], "deep for she": [65535, 0], "for she wanted": [65535, 0], "she wanted to": [65535, 0], "wanted to trap": [65535, 0], "to trap him": [65535, 0], "trap him into": [65535, 0], "him into damaging": [65535, 0], "into damaging revealments": [65535, 0], "damaging revealments like": [65535, 0], "revealments like many": [65535, 0], "like many other": [65535, 0], "many other simple": [65535, 0], "other simple hearted": [65535, 0], "simple hearted souls": [65535, 0], "hearted souls it": [65535, 0], "souls it was": [65535, 0], "it was her": [65535, 0], "was her pet": [65535, 0], "her pet vanity": [65535, 0], "pet vanity to": [65535, 0], "vanity to believe": [65535, 0], "to believe she": [65535, 0], "believe she was": [65535, 0], "she was endowed": [65535, 0], "was endowed with": [65535, 0], "endowed with a": [65535, 0], "with a talent": [65535, 0], "a talent for": [65535, 0], "talent for dark": [65535, 0], "for dark and": [65535, 0], "dark and mysterious": [65535, 0], "and mysterious diplomacy": [65535, 0], "mysterious diplomacy and": [65535, 0], "diplomacy and she": [65535, 0], "and she loved": [65535, 0], "she loved to": [65535, 0], "loved to contemplate": [65535, 0], "to contemplate her": [65535, 0], "contemplate her most": [65535, 0], "her most transparent": [65535, 0], "most transparent devices": [65535, 0], "transparent devices as": [65535, 0], "devices as marvels": [65535, 0], "as marvels of": [65535, 0], "marvels of low": [65535, 0], "of low cunning": [65535, 0], "low cunning said": [65535, 0], "cunning said she": [65535, 0], "said she tom": [65535, 0], "she tom it": [65535, 0], "tom it was": [65535, 0], "it was middling": [65535, 0], "was middling warm": [65535, 0], "middling warm in": [65535, 0], "warm in school": [65535, 0], "in school warn't": [65535, 0], "school warn't it": [65535, 0], "warn't it yes'm": [65535, 0], "it yes'm powerful": [65535, 0], "yes'm powerful warm": [65535, 0], "powerful warm warn't": [65535, 0], "warm warn't it": [65535, 0], "it yes'm didn't": [65535, 0], "yes'm didn't you": [65535, 0], "didn't you want": [65535, 0], "you want to": [65535, 0], "want to go": [65535, 0], "to go in": [32706, 32829], "go in a": [65535, 0], "a swimming tom": [65535, 0], "swimming tom a": [65535, 0], "tom a bit": [65535, 0], "bit of a": [65535, 0], "of a scare": [65535, 0], "a scare shot": [65535, 0], "scare shot through": [65535, 0], "shot through tom": [65535, 0], "through tom a": [65535, 0], "tom a touch": [65535, 0], "a touch of": [65535, 0], "touch of uncomfortable": [65535, 0], "of uncomfortable suspicion": [65535, 0], "uncomfortable suspicion he": [65535, 0], "suspicion he searched": [65535, 0], "he searched aunt": [65535, 0], "searched aunt polly's": [65535, 0], "aunt polly's face": [65535, 0], "polly's face but": [65535, 0], "face but it": [65535, 0], "but it told": [65535, 0], "it told him": [65535, 0], "told him nothing": [65535, 0], "him nothing so": [65535, 0], "nothing so he": [65535, 0], "so he said": [65535, 0], "he said no'm": [65535, 0], "said no'm well": [65535, 0], "no'm well not": [65535, 0], "well not very": [65535, 0], "not very much": [65535, 0], "very much the": [65535, 0], "much the old": [65535, 0], "old lady reached": [65535, 0], "lady reached out": [65535, 0], "reached out her": [65535, 0], "out her hand": [65535, 0], "hand and felt": [65535, 0], "and felt tom's": [65535, 0], "felt tom's shirt": [65535, 0], "tom's shirt and": [65535, 0], "shirt and said": [65535, 0], "and said but": [65535, 0], "said but you": [65535, 0], "but you ain't": [65535, 0], "you ain't too": [65535, 0], "ain't too warm": [65535, 0], "too warm now": [65535, 0], "warm now though": [65535, 0], "now though and": [65535, 0], "though and it": [65535, 0], "and it flattered": [65535, 0], "it flattered her": [65535, 0], "flattered her to": [65535, 0], "her to reflect": [65535, 0], "to reflect that": [65535, 0], "reflect that she": [65535, 0], "that she had": [65535, 0], "she had discovered": [65535, 0], "had discovered that": [65535, 0], "discovered that the": [65535, 0], "that the shirt": [65535, 0], "the shirt was": [65535, 0], "shirt was dry": [65535, 0], "was dry without": [65535, 0], "dry without anybody": [65535, 0], "without anybody knowing": [65535, 0], "anybody knowing that": [65535, 0], "knowing that that": [65535, 0], "that that was": [65535, 0], "that was what": [65535, 0], "was what she": [65535, 0], "what she had": [65535, 0], "she had in": [65535, 0], "had in her": [65535, 0], "in her mind": [65535, 0], "her mind but": [65535, 0], "mind but in": [65535, 0], "but in spite": [65535, 0], "in spite of": [65535, 0], "spite of her": [65535, 0], "of her tom": [65535, 0], "her tom knew": [65535, 0], "tom knew where": [65535, 0], "knew where the": [65535, 0], "where the wind": [65535, 0], "the wind lay": [65535, 0], "wind lay now": [65535, 0], "lay now so": [65535, 0], "now so he": [65535, 0], "so he forestalled": [65535, 0], "he forestalled what": [65535, 0], "forestalled what might": [65535, 0], "what might be": [65535, 0], "might be the": [65535, 0], "be the next": [65535, 0], "the next move": [65535, 0], "next move some": [65535, 0], "move some of": [65535, 0], "some of us": [65535, 0], "of us pumped": [65535, 0], "us pumped on": [65535, 0], "pumped on our": [65535, 0], "on our heads": [65535, 0], "our heads mine's": [65535, 0], "heads mine's damp": [65535, 0], "mine's damp yet": [65535, 0], "damp yet see": [65535, 0], "yet see aunt": [65535, 0], "see aunt polly": [65535, 0], "polly was vexed": [65535, 0], "was vexed to": [65535, 0], "vexed to think": [65535, 0], "to think she": [65535, 0], "think she had": [65535, 0], "she had overlooked": [65535, 0], "had overlooked that": [65535, 0], "overlooked that bit": [65535, 0], "that bit of": [65535, 0], "bit of circumstantial": [65535, 0], "of circumstantial evidence": [65535, 0], "circumstantial evidence and": [65535, 0], "evidence and missed": [65535, 0], "and missed a": [65535, 0], "missed a trick": [65535, 0], "a trick then": [65535, 0], "trick then she": [65535, 0], "then she had": [65535, 0], "she had a": [65535, 0], "had a new": [65535, 0], "a new inspiration": [65535, 0], "new inspiration tom": [65535, 0], "inspiration tom you": [65535, 0], "tom you didn't": [65535, 0], "you didn't have": [65535, 0], "didn't have to": [65535, 0], "have to undo": [65535, 0], "to undo your": [65535, 0], "undo your shirt": [65535, 0], "your shirt collar": [65535, 0], "shirt collar where": [65535, 0], "collar where i": [65535, 0], "where i sewed": [65535, 0], "i sewed it": [65535, 0], "sewed it to": [65535, 0], "it to pump": [65535, 0], "to pump on": [65535, 0], "pump on your": [65535, 0], "on your head": [65535, 0], "your head did": [65535, 0], "head did you": [65535, 0], "did you unbutton": [65535, 0], "you unbutton your": [65535, 0], "unbutton your jacket": [65535, 0], "jacket the trouble": [65535, 0], "the trouble vanished": [65535, 0], "trouble vanished out": [65535, 0], "vanished out of": [65535, 0], "out of tom's": [65535, 0], "of tom's face": [65535, 0], "tom's face he": [65535, 0], "face he opened": [65535, 0], "he opened his": [65535, 0], "opened his jacket": [65535, 0], "his jacket his": [65535, 0], "jacket his shirt": [65535, 0], "his shirt collar": [65535, 0], "shirt collar was": [65535, 0], "collar was securely": [65535, 0], "was securely sewed": [65535, 0], "securely sewed bother": [65535, 0], "sewed bother well": [65535, 0], "bother well go": [65535, 0], "well go 'long": [65535, 0], "go 'long with": [65535, 0], "'long with you": [65535, 0], "with you i'd": [65535, 0], "you i'd made": [65535, 0], "i'd made sure": [65535, 0], "made sure you'd": [65535, 0], "sure you'd played": [65535, 0], "you'd played hookey": [65535, 0], "played hookey and": [65535, 0], "hookey and been": [65535, 0], "and been a": [65535, 0], "been a swimming": [65535, 0], "a swimming but": [65535, 0], "swimming but i": [65535, 0], "but i forgive": [65535, 0], "i forgive ye": [65535, 0], "forgive ye tom": [65535, 0], "ye tom i": [65535, 0], "tom i reckon": [65535, 0], "i reckon you're": [65535, 0], "reckon you're a": [65535, 0], "you're a kind": [65535, 0], "a kind of": [65535, 0], "kind of a": [65535, 0], "of a singed": [65535, 0], "a singed cat": [65535, 0], "singed cat as": [65535, 0], "cat as the": [65535, 0], "saying is better'n": [65535, 0], "is better'n you": [65535, 0], "better'n you look": [65535, 0], "you look this": [65535, 0], "look this time": [65535, 0], "she was half": [65535, 0], "was half sorry": [65535, 0], "half sorry her": [65535, 0], "sorry her sagacity": [65535, 0], "her sagacity had": [65535, 0], "sagacity had miscarried": [65535, 0], "had miscarried and": [65535, 0], "miscarried and half": [65535, 0], "and half glad": [65535, 0], "half glad that": [65535, 0], "glad that tom": [65535, 0], "that tom had": [65535, 0], "tom had stumbled": [65535, 0], "had stumbled into": [65535, 0], "stumbled into obedient": [65535, 0], "into obedient conduct": [65535, 0], "obedient conduct for": [65535, 0], "conduct for once": [65535, 0], "for once but": [65535, 0], "once but sidney": [65535, 0], "but sidney said": [65535, 0], "sidney said well": [65535, 0], "said well now": [65535, 0], "well now if": [65535, 0], "now if i": [65535, 0], "if i didn't": [65535, 0], "i didn't think": [65535, 0], "didn't think you": [65535, 0], "think you sewed": [65535, 0], "you sewed his": [65535, 0], "sewed his collar": [65535, 0], "his collar with": [65535, 0], "collar with white": [65535, 0], "with white thread": [65535, 0], "white thread but": [65535, 0], "thread but it's": [65535, 0], "but it's black": [65535, 0], "it's black why": [65535, 0], "black why i": [65535, 0], "why i did": [65535, 0], "i did sew": [65535, 0], "did sew it": [65535, 0], "sew it with": [65535, 0], "it with white": [65535, 0], "with white tom": [65535, 0], "white tom but": [65535, 0], "tom but tom": [65535, 0], "but tom did": [65535, 0], "tom did not": [65535, 0], "did not wait": [65535, 0], "not wait for": [65535, 0], "wait for the": [65535, 0], "for the rest": [65535, 0], "the rest as": [65535, 0], "rest as he": [65535, 0], "as he went": [65535, 0], "he went out": [65535, 0], "went out at": [65535, 0], "at the door": [65535, 0], "the door he": [65535, 0], "door he said": [65535, 0], "he said siddy": [65535, 0], "said siddy i'll": [65535, 0], "siddy i'll lick": [65535, 0], "i'll lick you": [65535, 0], "lick you for": [65535, 0], "you for that": [65535, 0], "for that in": [65535, 0], "that in a": [65535, 0], "in a safe": [65535, 0], "a safe place": [65535, 0], "safe place tom": [65535, 0], "place tom examined": [65535, 0], "tom examined two": [65535, 0], "examined two large": [65535, 0], "two large needles": [65535, 0], "large needles which": [65535, 0], "needles which were": [65535, 0], "which were thrust": [65535, 0], "were thrust into": [65535, 0], "thrust into the": [65535, 0], "into the lapels": [65535, 0], "the lapels of": [65535, 0], "lapels of his": [65535, 0], "of his jacket": [65535, 0], "his jacket and": [65535, 0], "jacket and had": [65535, 0], "and had thread": [65535, 0], "had thread bound": [65535, 0], "thread bound about": [65535, 0], "bound about them": [65535, 0], "about them one": [65535, 0], "them one needle": [65535, 0], "one needle carried": [65535, 0], "needle carried white": [65535, 0], "carried white thread": [65535, 0], "white thread and": [65535, 0], "thread and the": [65535, 0], "and the other": [65535, 0], "the other black": [65535, 0], "other black he": [65535, 0], "black he said": [65535, 0], "he said she'd": [65535, 0], "said she'd never": [65535, 0], "she'd never noticed": [65535, 0], "never noticed if": [65535, 0], "noticed if it": [65535, 0], "if it hadn't": [65535, 0], "it hadn't been": [65535, 0], "hadn't been for": [65535, 0], "been for sid": [65535, 0], "for sid confound": [65535, 0], "sid confound it": [65535, 0], "confound it sometimes": [65535, 0], "it sometimes she": [65535, 0], "sometimes she sews": [65535, 0], "she sews it": [65535, 0], "sews it with": [65535, 0], "with white and": [65535, 0], "white and sometimes": [65535, 0], "and sometimes she": [65535, 0], "it with black": [65535, 0], "with black i": [65535, 0], "black i wish": [65535, 0], "i wish to": [65535, 0], "wish to geeminy": [65535, 0], "to geeminy she'd": [65535, 0], "geeminy she'd stick": [65535, 0], "she'd stick to": [65535, 0], "stick to one": [65535, 0], "to one or": [65535, 0], "one or t'other": [65535, 0], "or t'other i": [65535, 0], "t'other i can't": [65535, 0], "i can't keep": [65535, 0], "can't keep the": [65535, 0], "keep the run": [65535, 0], "the run of": [65535, 0], "run of 'em": [65535, 0], "of 'em but": [65535, 0], "'em but i": [65535, 0], "but i bet": [65535, 0], "bet you i'll": [65535, 0], "you i'll lam": [65535, 0], "i'll lam sid": [65535, 0], "lam sid for": [65535, 0], "sid for that": [65535, 0], "for that i'll": [65535, 0], "that i'll learn": [65535, 0], "i'll learn him": [65535, 0], "learn him he": [65535, 0], "was not the": [65535, 0], "not the model": [65535, 0], "model boy of": [65535, 0], "boy of the": [65535, 0], "the village he": [65535, 0], "village he knew": [65535, 0], "knew the model": [65535, 0], "model boy very": [65535, 0], "boy very well": [65535, 0], "very well though": [65535, 0], "well though and": [65535, 0], "though and loathed": [65535, 0], "and loathed him": [65535, 0], "loathed him within": [65535, 0], "him within two": [65535, 0], "within two minutes": [65535, 0], "two minutes or": [65535, 0], "minutes or even": [65535, 0], "or even less": [65535, 0], "even less he": [65535, 0], "less he had": [65535, 0], "he had forgotten": [65535, 0], "had forgotten all": [65535, 0], "forgotten all his": [65535, 0], "all his troubles": [65535, 0], "his troubles not": [65535, 0], "troubles not because": [65535, 0], "not because his": [65535, 0], "because his troubles": [65535, 0], "his troubles were": [65535, 0], "troubles were one": [65535, 0], "were one whit": [65535, 0], "one whit less": [65535, 0], "whit less heavy": [65535, 0], "less heavy and": [65535, 0], "heavy and bitter": [65535, 0], "and bitter to": [65535, 0], "bitter to him": [65535, 0], "to him than": [65535, 0], "him than a": [65535, 0], "than a man's": [65535, 0], "a man's are": [65535, 0], "man's are to": [65535, 0], "are to a": [65535, 0], "to a man": [65535, 0], "a man but": [65535, 0], "man but because": [65535, 0], "but because a": [65535, 0], "because a new": [65535, 0], "new and powerful": [65535, 0], "and powerful interest": [65535, 0], "powerful interest bore": [65535, 0], "interest bore them": [65535, 0], "bore them down": [65535, 0], "them down and": [65535, 0], "down and drove": [65535, 0], "and drove them": [65535, 0], "drove them out": [65535, 0], "them out of": [65535, 0], "of his mind": [65535, 0], "his mind for": [65535, 0], "mind for the": [65535, 0], "for the time": [65535, 0], "the time just": [65535, 0], "time just as": [65535, 0], "just as men's": [65535, 0], "as men's misfortunes": [65535, 0], "men's misfortunes are": [65535, 0], "misfortunes are forgotten": [65535, 0], "are forgotten in": [65535, 0], "forgotten in the": [65535, 0], "in the excitement": [65535, 0], "the excitement of": [65535, 0], "excitement of new": [65535, 0], "of new enterprises": [65535, 0], "new enterprises this": [65535, 0], "enterprises this new": [65535, 0], "this new interest": [65535, 0], "new interest was": [65535, 0], "interest was a": [65535, 0], "was a valued": [65535, 0], "a valued novelty": [65535, 0], "valued novelty in": [65535, 0], "novelty in whistling": [65535, 0], "in whistling which": [65535, 0], "whistling which he": [65535, 0], "he had just": [65535, 0], "had just acquired": [65535, 0], "just acquired from": [65535, 0], "acquired from a": [65535, 0], "from a negro": [65535, 0], "a negro and": [65535, 0], "negro and he": [65535, 0], "and he was": [65535, 0], "he was suffering": [65535, 0], "was suffering to": [65535, 0], "suffering to practise": [65535, 0], "to practise it": [65535, 0], "practise it undisturbed": [65535, 0], "it undisturbed it": [65535, 0], "undisturbed it consisted": [65535, 0], "it consisted in": [65535, 0], "consisted in a": [65535, 0], "a peculiar bird": [65535, 0], "peculiar bird like": [65535, 0], "bird like turn": [65535, 0], "like turn a": [65535, 0], "turn a sort": [65535, 0], "sort of liquid": [65535, 0], "of liquid warble": [65535, 0], "liquid warble produced": [65535, 0], "warble produced by": [65535, 0], "produced by touching": [65535, 0], "by touching the": [65535, 0], "touching the tongue": [65535, 0], "the tongue to": [65535, 0], "tongue to the": [65535, 0], "to the roof": [65535, 0], "the roof of": [65535, 0], "roof of the": [65535, 0], "of the mouth": [65535, 0], "the mouth at": [65535, 0], "mouth at short": [65535, 0], "at short intervals": [65535, 0], "short intervals in": [65535, 0], "intervals in the": [65535, 0], "of the music": [65535, 0], "the music the": [65535, 0], "music the reader": [65535, 0], "the reader probably": [65535, 0], "reader probably remembers": [65535, 0], "probably remembers how": [65535, 0], "remembers how to": [65535, 0], "how to do": [65535, 0], "do it if": [65535, 0], "if he has": [65535, 0], "he has ever": [65535, 0], "has ever been": [65535, 0], "ever been a": [65535, 0], "been a boy": [65535, 0], "a boy diligence": [65535, 0], "boy diligence and": [65535, 0], "diligence and attention": [65535, 0], "and attention soon": [65535, 0], "attention soon gave": [65535, 0], "soon gave him": [65535, 0], "him the knack": [65535, 0], "the knack of": [65535, 0], "knack of it": [65535, 0], "it and he": [65535, 0], "and he strode": [65535, 0], "he strode down": [65535, 0], "strode down the": [65535, 0], "with his mouth": [65535, 0], "his mouth full": [65535, 0], "mouth full of": [65535, 0], "full of harmony": [65535, 0], "of harmony and": [65535, 0], "harmony and his": [65535, 0], "and his soul": [65535, 0], "his soul full": [65535, 0], "soul full of": [65535, 0], "full of gratitude": [65535, 0], "of gratitude he": [65535, 0], "gratitude he felt": [65535, 0], "he felt much": [65535, 0], "felt much as": [65535, 0], "much as an": [65535, 0], "as an astronomer": [65535, 0], "an astronomer feels": [65535, 0], "astronomer feels who": [65535, 0], "feels who has": [65535, 0], "who has discovered": [65535, 0], "has discovered a": [65535, 0], "discovered a new": [65535, 0], "a new planet": [65535, 0], "new planet no": [65535, 0], "planet no doubt": [65535, 0], "no doubt as": [65535, 0], "doubt as far": [65535, 0], "as far as": [65535, 0], "far as strong": [65535, 0], "as strong deep": [65535, 0], "strong deep unalloyed": [65535, 0], "deep unalloyed pleasure": [65535, 0], "unalloyed pleasure is": [65535, 0], "pleasure is concerned": [65535, 0], "is concerned the": [65535, 0], "concerned the advantage": [65535, 0], "the advantage was": [65535, 0], "advantage was with": [65535, 0], "was with the": [65535, 0], "with the boy": [65535, 0], "the boy not": [65535, 0], "boy not the": [65535, 0], "not the astronomer": [65535, 0], "the astronomer the": [65535, 0], "astronomer the summer": [65535, 0], "the summer evenings": [65535, 0], "summer evenings were": [65535, 0], "evenings were long": [65535, 0], "were long it": [65535, 0], "long it was": [65535, 0], "was not dark": [65535, 0], "not dark yet": [65535, 0], "dark yet presently": [65535, 0], "yet presently tom": [65535, 0], "presently tom checked": [65535, 0], "tom checked his": [65535, 0], "checked his whistle": [65535, 0], "his whistle a": [65535, 0], "whistle a stranger": [65535, 0], "a stranger was": [65535, 0], "stranger was before": [65535, 0], "was before him": [65535, 0], "before him a": [65535, 0], "him a boy": [65535, 0], "a boy a": [65535, 0], "boy a shade": [65535, 0], "a shade larger": [65535, 0], "shade larger than": [65535, 0], "larger than himself": [65535, 0], "than himself a": [65535, 0], "himself a new": [65535, 0], "a new comer": [65535, 0], "new comer of": [65535, 0], "comer of any": [65535, 0], "of any age": [65535, 0], "any age or": [65535, 0], "age or either": [65535, 0], "or either sex": [65535, 0], "either sex was": [65535, 0], "sex was an": [65535, 0], "was an impressive": [65535, 0], "an impressive curiosity": [65535, 0], "impressive curiosity in": [65535, 0], "curiosity in the": [65535, 0], "in the poor": [65535, 0], "the poor little": [65535, 0], "poor little shabby": [65535, 0], "little shabby village": [65535, 0], "shabby village of": [65535, 0], "village of st": [65535, 0], "of st petersburg": [65535, 0], "st petersburg this": [65535, 0], "petersburg this boy": [65535, 0], "this boy was": [65535, 0], "boy was well": [65535, 0], "was well dressed": [65535, 0], "well dressed too": [65535, 0], "dressed too well": [65535, 0], "too well dressed": [65535, 0], "well dressed on": [65535, 0], "dressed on a": [65535, 0], "on a week": [65535, 0], "a week day": [65535, 0], "week day this": [65535, 0], "day this was": [65535, 0], "this was simply": [65535, 0], "was simply astounding": [65535, 0], "simply astounding his": [65535, 0], "astounding his cap": [65535, 0], "his cap was": [65535, 0], "cap was a": [65535, 0], "was a dainty": [65535, 0], "a dainty thing": [65535, 0], "dainty thing his": [65535, 0], "thing his closebuttoned": [65535, 0], "his closebuttoned blue": [65535, 0], "closebuttoned blue cloth": [65535, 0], "blue cloth roundabout": [65535, 0], "cloth roundabout was": [65535, 0], "roundabout was new": [65535, 0], "was new and": [65535, 0], "new and natty": [65535, 0], "and natty and": [65535, 0], "natty and so": [65535, 0], "and so were": [65535, 0], "so were his": [65535, 0], "were his pantaloons": [65535, 0], "his pantaloons he": [65535, 0], "pantaloons he had": [65535, 0], "he had shoes": [65535, 0], "had shoes on": [65535, 0], "shoes on and": [65535, 0], "on and it": [65535, 0], "and it was": [65535, 0], "it was only": [65535, 0], "was only friday": [65535, 0], "only friday he": [65535, 0], "friday he even": [65535, 0], "he even wore": [65535, 0], "even wore a": [65535, 0], "wore a necktie": [65535, 0], "a necktie a": [65535, 0], "necktie a bright": [65535, 0], "a bright bit": [65535, 0], "bright bit of": [65535, 0], "bit of ribbon": [65535, 0], "of ribbon he": [65535, 0], "ribbon he had": [65535, 0], "had a citified": [65535, 0], "a citified air": [65535, 0], "citified air about": [65535, 0], "air about him": [65535, 0], "about him that": [65535, 0], "him that ate": [65535, 0], "that ate into": [65535, 0], "ate into tom's": [65535, 0], "into tom's vitals": [65535, 0], "tom's vitals the": [65535, 0], "vitals the more": [65535, 0], "the more tom": [65535, 0], "more tom stared": [65535, 0], "tom stared at": [65535, 0], "stared at the": [65535, 0], "at the splendid": [65535, 0], "the splendid marvel": [65535, 0], "splendid marvel the": [65535, 0], "marvel the higher": [65535, 0], "the higher he": [65535, 0], "higher he turned": [65535, 0], "he turned up": [65535, 0], "turned up his": [65535, 0], "up his nose": [65535, 0], "his nose at": [65535, 0], "nose at his": [65535, 0], "at his finery": [65535, 0], "his finery and": [65535, 0], "finery and the": [65535, 0], "and the shabbier": [65535, 0], "the shabbier and": [65535, 0], "shabbier and shabbier": [65535, 0], "and shabbier his": [65535, 0], "shabbier his own": [65535, 0], "his own outfit": [65535, 0], "own outfit seemed": [65535, 0], "outfit seemed to": [65535, 0], "seemed to him": [65535, 0], "to him to": [65535, 0], "him to grow": [65535, 0], "to grow neither": [65535, 0], "grow neither boy": [65535, 0], "neither boy spoke": [65535, 0], "boy spoke if": [65535, 0], "spoke if one": [65535, 0], "if one moved": [65535, 0], "one moved the": [65535, 0], "moved the other": [65535, 0], "the other moved": [65535, 0], "other moved but": [65535, 0], "moved but only": [65535, 0], "but only sidewise": [65535, 0], "only sidewise in": [65535, 0], "sidewise in a": [65535, 0], "in a circle": [65535, 0], "a circle they": [65535, 0], "circle they kept": [65535, 0], "they kept face": [65535, 0], "kept face to": [65535, 0], "face to face": [65535, 0], "to face and": [65535, 0], "face and eye": [65535, 0], "and eye to": [65535, 0], "eye to eye": [65535, 0], "to eye all": [65535, 0], "eye all the": [65535, 0], "all the time": [65535, 0], "the time finally": [65535, 0], "time finally tom": [65535, 0], "finally tom said": [65535, 0], "tom said i": [65535, 0], "said i can": [65535, 0], "i can lick": [65535, 0], "can lick you": [65535, 0], "lick you i'd": [65535, 0], "you i'd like": [65535, 0], "like to see": [65535, 0], "to see you": [32706, 32829], "see you try": [65535, 0], "you try it": [65535, 0], "try it well": [65535, 0], "well i can": [65535, 0], "i can do": [65535, 0], "do it no": [65535, 0], "it no you": [65535, 0], "no you can't": [65535, 0], "you can't either": [65535, 0], "can't either yes": [65535, 0], "either yes i": [65535, 0], "yes i can": [65535, 0], "i can no": [65535, 0], "can no you": [65535, 0], "you can't i": [65535, 0], "can't i can": [65535, 0], "i can you": [65535, 0], "can you can't": [65535, 0], "you can't can": [65535, 0], "can't can can't": [65535, 0], "can can't an": [65535, 0], "can't an uncomfortable": [65535, 0], "an uncomfortable pause": [65535, 0], "uncomfortable pause then": [65535, 0], "pause then tom": [65535, 0], "then tom said": [65535, 0], "tom said what's": [65535, 0], "said what's your": [65535, 0], "your name 'tisn't": [65535, 0], "name 'tisn't any": [65535, 0], "'tisn't any of": [65535, 0], "any of your": [65535, 0], "of your business": [65535, 0], "your business maybe": [65535, 0], "business maybe well": [65535, 0], "maybe well i": [65535, 0], "well i 'low": [65535, 0], "i 'low i'll": [65535, 0], "'low i'll make": [65535, 0], "i'll make it": [65535, 0], "make it my": [65535, 0], "it my business": [65535, 0], "my business well": [65535, 0], "business well why": [65535, 0], "don't you if": [65535, 0], "you say much": [65535, 0], "say much i": [65535, 0], "much i will": [65535, 0], "i will much": [65535, 0], "will much much": [65535, 0], "much much much": [65535, 0], "much much there": [65535, 0], "much there now": [65535, 0], "there now oh": [65535, 0], "now oh you": [65535, 0], "oh you think": [65535, 0], "you think you're": [65535, 0], "think you're mighty": [65535, 0], "you're mighty smart": [65535, 0], "mighty smart don't": [65535, 0], "smart don't you": [65535, 0], "don't you i": [65535, 0], "you i could": [65535, 0], "i could lick": [65535, 0], "could lick you": [65535, 0], "lick you with": [65535, 0], "you with one": [65535, 0], "with one hand": [65535, 0], "one hand tied": [65535, 0], "hand tied behind": [65535, 0], "tied behind me": [65535, 0], "behind me if": [65535, 0], "me if i": [65535, 0], "don't you do": [65535, 0], "you do it": [65535, 0], "do it you": [65535, 0], "it you say": [65535, 0], "you say you": [65535, 0], "say you can": [65535, 0], "you can do": [65535, 0], "do it well": [65535, 0], "well i will": [43635, 21900], "i will if": [65535, 0], "will if you": [65535, 0], "if you fool": [65535, 0], "you fool with": [65535, 0], "fool with me": [65535, 0], "with me oh": [65535, 0], "me oh yes": [65535, 0], "oh yes i've": [65535, 0], "yes i've seen": [65535, 0], "i've seen whole": [65535, 0], "seen whole families": [65535, 0], "whole families in": [65535, 0], "families in the": [65535, 0], "in the same": [65535, 0], "the same fix": [65535, 0], "same fix smarty": [65535, 0], "fix smarty you": [65535, 0], "smarty you think": [65535, 0], "think you're some": [65535, 0], "you're some now": [65535, 0], "some now don't": [65535, 0], "don't you oh": [65535, 0], "you oh what": [65535, 0], "oh what a": [65535, 0], "what a hat": [65535, 0], "a hat you": [65535, 0], "hat you can": [65535, 0], "you can lump": [65535, 0], "can lump that": [65535, 0], "lump that hat": [65535, 0], "that hat if": [65535, 0], "hat if you": [65535, 0], "if you don't": [65535, 0], "you don't like": [65535, 0], "don't like it": [65535, 0], "like it i": [65535, 0], "it i dare": [65535, 0], "i dare you": [65535, 0], "dare you to": [65535, 0], "you to knock": [65535, 0], "to knock it": [65535, 0], "knock it off": [65535, 0], "it off and": [65535, 0], "off and anybody": [65535, 0], "and anybody that'll": [65535, 0], "anybody that'll take": [65535, 0], "that'll take a": [65535, 0], "take a dare": [65535, 0], "a dare will": [65535, 0], "dare will suck": [65535, 0], "will suck eggs": [65535, 0], "suck eggs you're": [65535, 0], "eggs you're a": [65535, 0], "you're a liar": [65535, 0], "a liar you're": [65535, 0], "liar you're another": [65535, 0], "you're another you're": [65535, 0], "another you're a": [65535, 0], "you're a fighting": [65535, 0], "a fighting liar": [65535, 0], "fighting liar and": [65535, 0], "liar and dasn't": [65535, 0], "and dasn't take": [65535, 0], "dasn't take it": [65535, 0], "take it up": [65535, 0], "it up aw": [65535, 0], "up aw take": [65535, 0], "aw take a": [65535, 0], "take a walk": [65535, 0], "a walk say": [65535, 0], "walk say if": [65535, 0], "say if you": [65535, 0], "if you give": [65535, 0], "you give me": [65535, 0], "give me much": [65535, 0], "me much more": [65535, 0], "much more of": [65535, 0], "more of your": [65535, 0], "of your sass": [65535, 0], "your sass i'll": [65535, 0], "sass i'll take": [65535, 0], "i'll take and": [65535, 0], "take and bounce": [65535, 0], "and bounce a": [65535, 0], "bounce a rock": [65535, 0], "a rock off'n": [65535, 0], "rock off'n your": [65535, 0], "off'n your head": [65535, 0], "your head oh": [65535, 0], "head oh of": [65535, 0], "oh of course": [65535, 0], "of course you": [65535, 0], "course you will": [65535, 0], "you will well": [65535, 0], "will well i": [65535, 0], "i will well": [65535, 0], "will well why": [65535, 0], "do it then": [65535, 0], "it then what": [65535, 0], "then what do": [65535, 0], "do you keep": [65535, 0], "you keep saying": [65535, 0], "keep saying you": [65535, 0], "saying you will": [65535, 0], "you will for": [65535, 0], "will for why": [65535, 0], "for why don't": [65535, 0], "do it it's": [65535, 0], "it it's because": [65535, 0], "it's because you're": [65535, 0], "because you're afraid": [65535, 0], "you're afraid i": [65535, 0], "afraid i ain't": [65535, 0], "i ain't afraid": [65535, 0], "ain't afraid you": [65535, 0], "afraid you are": [65535, 0], "you are i": [65535, 0], "are i ain't": [65535, 0], "i ain't you": [65535, 0], "ain't you are": [65535, 0], "you are another": [65535, 0], "are another pause": [65535, 0], "another pause and": [65535, 0], "pause and more": [65535, 0], "and more eying": [65535, 0], "more eying and": [65535, 0], "eying and sidling": [65535, 0], "and sidling around": [65535, 0], "sidling around each": [65535, 0], "around each other": [65535, 0], "each other presently": [65535, 0], "other presently they": [65535, 0], "presently they were": [65535, 0], "they were shoulder": [65535, 0], "were shoulder to": [65535, 0], "shoulder to shoulder": [65535, 0], "to shoulder tom": [65535, 0], "shoulder tom said": [65535, 0], "tom said get": [65535, 0], "said get away": [65535, 0], "get away from": [65535, 0], "away from here": [65535, 0], "from here go": [65535, 0], "here go away": [65535, 0], "go away yourself": [65535, 0], "away yourself i": [65535, 0], "yourself i won't": [65535, 0], "won't i won't": [65535, 0], "i won't either": [65535, 0], "won't either so": [65535, 0], "either so they": [65535, 0], "so they stood": [65535, 0], "they stood each": [65535, 0], "stood each with": [65535, 0], "each with a": [65535, 0], "with a foot": [65535, 0], "a foot placed": [65535, 0], "foot placed at": [65535, 0], "placed at an": [65535, 0], "an angle as": [65535, 0], "angle as a": [65535, 0], "as a brace": [65535, 0], "a brace and": [65535, 0], "brace and both": [65535, 0], "and both shoving": [65535, 0], "both shoving with": [65535, 0], "shoving with might": [65535, 0], "with might and": [65535, 0], "might and main": [65535, 0], "and main and": [65535, 0], "main and glowering": [65535, 0], "and glowering at": [65535, 0], "glowering at each": [65535, 0], "at each other": [65535, 0], "each other with": [65535, 0], "other with hate": [65535, 0], "with hate but": [65535, 0], "hate but neither": [65535, 0], "but neither could": [65535, 0], "neither could get": [65535, 0], "could get an": [65535, 0], "get an advantage": [65535, 0], "an advantage after": [65535, 0], "advantage after struggling": [65535, 0], "after struggling till": [65535, 0], "struggling till both": [65535, 0], "till both were": [65535, 0], "both were hot": [65535, 0], "were hot and": [65535, 0], "hot and flushed": [65535, 0], "and flushed each": [65535, 0], "flushed each relaxed": [65535, 0], "each relaxed his": [65535, 0], "relaxed his strain": [65535, 0], "his strain with": [65535, 0], "strain with watchful": [65535, 0], "with watchful caution": [65535, 0], "watchful caution and": [65535, 0], "caution and tom": [65535, 0], "and tom said": [65535, 0], "tom said you're": [65535, 0], "said you're a": [65535, 0], "you're a coward": [65535, 0], "a coward and": [65535, 0], "coward and a": [65535, 0], "and a pup": [65535, 0], "a pup i'll": [65535, 0], "pup i'll tell": [65535, 0], "i'll tell my": [65535, 0], "tell my big": [65535, 0], "my big brother": [65535, 0], "big brother on": [65535, 0], "brother on you": [65535, 0], "on you and": [32706, 32829], "you and he": [65535, 0], "and he can": [65535, 0], "he can thrash": [65535, 0], "can thrash you": [65535, 0], "thrash you with": [65535, 0], "you with his": [65535, 0], "with his little": [65535, 0], "his little finger": [65535, 0], "little finger and": [65535, 0], "finger and i'll": [65535, 0], "and i'll make": [65535, 0], "i'll make him": [65535, 0], "make him do": [65535, 0], "him do it": [65535, 0], "do it too": [65535, 0], "it too what": [65535, 0], "too what do": [65535, 0], "what do i": [65535, 0], "do i care": [65535, 0], "i care for": [65535, 0], "care for your": [65535, 0], "for your big": [65535, 0], "your big brother": [65535, 0], "big brother i've": [65535, 0], "brother i've got": [65535, 0], "i've got a": [65535, 0], "got a brother": [65535, 0], "a brother that's": [65535, 0], "brother that's bigger": [65535, 0], "that's bigger than": [65535, 0], "bigger than he": [65535, 0], "than he is": [65535, 0], "he is and": [65535, 0], "is and what's": [65535, 0], "and what's more": [65535, 0], "what's more he": [65535, 0], "more he can": [65535, 0], "he can throw": [65535, 0], "can throw him": [65535, 0], "throw him over": [65535, 0], "him over that": [65535, 0], "over that fence": [65535, 0], "that fence too": [65535, 0], "fence too both": [65535, 0], "too both brothers": [65535, 0], "both brothers were": [65535, 0], "brothers were imaginary": [65535, 0], "were imaginary that's": [65535, 0], "imaginary that's a": [65535, 0], "that's a lie": [65535, 0], "a lie your": [65535, 0], "lie your saying": [65535, 0], "your saying so": [65535, 0], "saying so don't": [65535, 0], "so don't make": [65535, 0], "don't make it": [65535, 0], "make it so": [65535, 0], "it so tom": [65535, 0], "so tom drew": [65535, 0], "tom drew a": [65535, 0], "drew a line": [65535, 0], "a line in": [65535, 0], "in the dust": [65535, 0], "the dust with": [65535, 0], "dust with his": [65535, 0], "with his big": [65535, 0], "his big toe": [65535, 0], "big toe and": [65535, 0], "toe and said": [65535, 0], "and said i": [65535, 0], "said i dare": [65535, 0], "you to step": [65535, 0], "to step over": [65535, 0], "step over that": [65535, 0], "over that and": [65535, 0], "that and i'll": [65535, 0], "and i'll lick": [65535, 0], "lick you till": [65535, 0], "you till you": [65535, 0], "till you can't": [65535, 0], "you can't stand": [65535, 0], "can't stand up": [65535, 0], "stand up anybody": [65535, 0], "up anybody that'll": [65535, 0], "dare will steal": [65535, 0], "will steal sheep": [65535, 0], "steal sheep the": [65535, 0], "sheep the new": [65535, 0], "the new boy": [65535, 0], "new boy stepped": [65535, 0], "boy stepped over": [65535, 0], "stepped over promptly": [65535, 0], "over promptly and": [65535, 0], "promptly and said": [65535, 0], "and said now": [65535, 0], "said now you": [65535, 0], "now you said": [65535, 0], "you said you'd": [65535, 0], "said you'd do": [65535, 0], "you'd do it": [65535, 0], "do it now": [65535, 0], "it now let's": [65535, 0], "now let's see": [65535, 0], "let's see you": [65535, 0], "see you do": [65535, 0], "do it don't": [65535, 0], "it don't you": [65535, 0], "don't you crowd": [65535, 0], "you crowd me": [65535, 0], "crowd me now": [65535, 0], "now you better": [65535, 0], "you better look": [65535, 0], "better look out": [65535, 0], "look out well": [65535, 0], "out well you": [65535, 0], "well you said": [65535, 0], "do it why": [65535, 0], "it why don't": [65535, 0], "do it by": [65535, 0], "it by jingo": [65535, 0], "by jingo for": [65535, 0], "jingo for two": [65535, 0], "for two cents": [65535, 0], "two cents i": [65535, 0], "cents i will": [65535, 0], "i will do": [65535, 0], "will do it": [65535, 0], "it the new": [65535, 0], "new boy took": [65535, 0], "boy took two": [65535, 0], "took two broad": [65535, 0], "two broad coppers": [65535, 0], "broad coppers out": [65535, 0], "coppers out of": [65535, 0], "pocket and held": [65535, 0], "and held them": [65535, 0], "held them out": [65535, 0], "them out with": [65535, 0], "out with derision": [65535, 0], "with derision tom": [65535, 0], "derision tom struck": [65535, 0], "tom struck them": [65535, 0], "struck them to": [65535, 0], "them to the": [65535, 0], "to the ground": [65535, 0], "the ground in": [65535, 0], "ground in an": [65535, 0], "in an instant": [65535, 0], "an instant both": [65535, 0], "instant both boys": [65535, 0], "both boys were": [65535, 0], "boys were rolling": [65535, 0], "were rolling and": [65535, 0], "rolling and tumbling": [65535, 0], "and tumbling in": [65535, 0], "tumbling in the": [65535, 0], "the dirt gripped": [65535, 0], "dirt gripped together": [65535, 0], "gripped together like": [65535, 0], "together like cats": [65535, 0], "like cats and": [65535, 0], "cats and for": [65535, 0], "and for the": [21790, 43745], "a minute they": [65535, 0], "minute they tugged": [65535, 0], "they tugged and": [65535, 0], "tugged and tore": [65535, 0], "and tore at": [65535, 0], "tore at each": [65535, 0], "at each other's": [65535, 0], "each other's hair": [65535, 0], "other's hair and": [65535, 0], "hair and clothes": [65535, 0], "and clothes punched": [65535, 0], "clothes punched and": [65535, 0], "punched and scratched": [65535, 0], "and scratched each": [65535, 0], "scratched each other's": [65535, 0], "each other's nose": [65535, 0], "other's nose and": [65535, 0], "nose and covered": [65535, 0], "and covered themselves": [65535, 0], "covered themselves with": [65535, 0], "themselves with dust": [65535, 0], "with dust and": [65535, 0], "dust and glory": [65535, 0], "and glory presently": [65535, 0], "glory presently the": [65535, 0], "presently the confusion": [65535, 0], "the confusion took": [65535, 0], "confusion took form": [65535, 0], "took form and": [65535, 0], "form and through": [65535, 0], "and through the": [65535, 0], "through the fog": [65535, 0], "the fog of": [65535, 0], "fog of battle": [65535, 0], "of battle tom": [65535, 0], "battle tom appeared": [65535, 0], "tom appeared seated": [65535, 0], "appeared seated astride": [65535, 0], "seated astride the": [65535, 0], "astride the new": [65535, 0], "new boy and": [65535, 0], "boy and pounding": [65535, 0], "and pounding him": [65535, 0], "pounding him with": [65535, 0], "him with his": [65535, 0], "with his fists": [65535, 0], "his fists holler": [65535, 0], "fists holler 'nuff": [65535, 0], "holler 'nuff said": [65535, 0], "'nuff said he": [65535, 0], "said he the": [65535, 0], "he the boy": [65535, 0], "the boy only": [65535, 0], "boy only struggled": [65535, 0], "only struggled to": [65535, 0], "struggled to free": [65535, 0], "to free himself": [65535, 0], "free himself he": [65535, 0], "himself he was": [65535, 0], "he was crying": [65535, 0], "was crying mainly": [65535, 0], "crying mainly from": [65535, 0], "mainly from rage": [65535, 0], "from rage holler": [65535, 0], "rage holler 'nuff": [65535, 0], "holler 'nuff and": [65535, 0], "'nuff and the": [65535, 0], "and the pounding": [65535, 0], "the pounding went": [65535, 0], "pounding went on": [65535, 0], "went on at": [65535, 0], "on at last": [65535, 0], "last the stranger": [65535, 0], "the stranger got": [65535, 0], "stranger got out": [65535, 0], "out a smothered": [65535, 0], "a smothered 'nuff": [65535, 0], "smothered 'nuff and": [65535, 0], "'nuff and tom": [65535, 0], "and tom let": [65535, 0], "tom let him": [65535, 0], "let him up": [65535, 0], "him up and": [65535, 0], "up and said": [65535, 0], "said now that'll": [65535, 0], "now that'll learn": [65535, 0], "that'll learn you": [65535, 0], "learn you better": [65535, 0], "look out who": [65535, 0], "out who you're": [65535, 0], "who you're fooling": [65535, 0], "you're fooling with": [65535, 0], "fooling with next": [65535, 0], "with next time": [65535, 0], "next time the": [65535, 0], "time the new": [65535, 0], "new boy went": [65535, 0], "boy went off": [65535, 0], "went off brushing": [65535, 0], "off brushing the": [65535, 0], "brushing the dust": [65535, 0], "the dust from": [65535, 0], "dust from his": [65535, 0], "from his clothes": [65535, 0], "his clothes sobbing": [65535, 0], "clothes sobbing snuffling": [65535, 0], "sobbing snuffling and": [65535, 0], "snuffling and occasionally": [65535, 0], "and occasionally looking": [65535, 0], "occasionally looking back": [65535, 0], "looking back and": [65535, 0], "back and shaking": [65535, 0], "and shaking his": [65535, 0], "shaking his head": [65535, 0], "head and threatening": [65535, 0], "and threatening what": [65535, 0], "threatening what he": [65535, 0], "what he would": [65535, 0], "he would do": [65535, 0], "would do to": [65535, 0], "do to tom": [65535, 0], "to tom the": [65535, 0], "tom the next": [65535, 0], "the next time": [65535, 0], "next time he": [65535, 0], "time he caught": [65535, 0], "he caught him": [65535, 0], "caught him out": [65535, 0], "him out to": [65535, 0], "out to which": [65535, 0], "to which tom": [65535, 0], "which tom responded": [65535, 0], "tom responded with": [65535, 0], "responded with jeers": [65535, 0], "with jeers and": [65535, 0], "jeers and started": [65535, 0], "and started off": [65535, 0], "started off in": [65535, 0], "off in high": [65535, 0], "in high feather": [65535, 0], "high feather and": [65535, 0], "feather and as": [65535, 0], "and as soon": [65535, 0], "as soon as": [65535, 0], "soon as his": [65535, 0], "as his back": [65535, 0], "his back was": [65535, 0], "back was turned": [65535, 0], "was turned the": [65535, 0], "turned the new": [65535, 0], "new boy snatched": [65535, 0], "boy snatched up": [65535, 0], "snatched up a": [65535, 0], "up a stone": [65535, 0], "a stone threw": [65535, 0], "stone threw it": [65535, 0], "threw it and": [65535, 0], "it and hit": [65535, 0], "and hit him": [65535, 0], "hit him between": [65535, 0], "him between the": [65535, 0], "between the shoulders": [65535, 0], "the shoulders and": [65535, 0], "shoulders and then": [65535, 0], "and then turned": [65535, 0], "then turned tail": [65535, 0], "turned tail and": [65535, 0], "tail and ran": [65535, 0], "and ran like": [65535, 0], "ran like an": [65535, 0], "like an antelope": [65535, 0], "an antelope tom": [65535, 0], "antelope tom chased": [65535, 0], "tom chased the": [65535, 0], "chased the traitor": [65535, 0], "the traitor home": [65535, 0], "traitor home and": [65535, 0], "home and thus": [65535, 0], "and thus found": [65535, 0], "thus found out": [65535, 0], "found out where": [65535, 0], "out where he": [65535, 0], "where he lived": [65535, 0], "he lived he": [65535, 0], "lived he then": [65535, 0], "he then held": [65535, 0], "then held a": [65535, 0], "held a position": [65535, 0], "a position at": [65535, 0], "position at the": [65535, 0], "the gate for": [65535, 0], "gate for some": [65535, 0], "for some time": [65535, 0], "some time daring": [65535, 0], "time daring the": [65535, 0], "daring the enemy": [65535, 0], "the enemy to": [65535, 0], "enemy to come": [65535, 0], "to come outside": [65535, 0], "come outside but": [65535, 0], "outside but the": [65535, 0], "but the enemy": [65535, 0], "the enemy only": [65535, 0], "enemy only made": [65535, 0], "only made faces": [65535, 0], "made faces at": [65535, 0], "faces at him": [65535, 0], "at him through": [65535, 0], "him through the": [65535, 0], "through the window": [65535, 0], "window and declined": [65535, 0], "and declined at": [65535, 0], "declined at last": [65535, 0], "last the enemy's": [65535, 0], "the enemy's mother": [65535, 0], "enemy's mother appeared": [65535, 0], "mother appeared and": [65535, 0], "appeared and called": [65535, 0], "and called tom": [65535, 0], "called tom a": [65535, 0], "tom a bad": [65535, 0], "a bad vicious": [65535, 0], "bad vicious vulgar": [65535, 0], "vicious vulgar child": [65535, 0], "vulgar child and": [65535, 0], "child and ordered": [65535, 0], "and ordered him": [65535, 0], "ordered him away": [65535, 0], "him away so": [65535, 0], "away so he": [65535, 0], "he went away": [65535, 0], "went away but": [65535, 0], "away but he": [65535, 0], "but he said": [65535, 0], "he said he": [65535, 0], "said he 'lowed": [65535, 0], "he 'lowed to": [65535, 0], "'lowed to lay": [65535, 0], "to lay for": [65535, 0], "lay for that": [65535, 0], "for that boy": [65535, 0], "that boy he": [65535, 0], "boy he got": [65535, 0], "he got home": [65535, 0], "got home pretty": [65535, 0], "home pretty late": [65535, 0], "pretty late that": [65535, 0], "late that night": [65535, 0], "that night and": [65535, 0], "night and when": [65535, 0], "when he climbed": [65535, 0], "he climbed cautiously": [65535, 0], "climbed cautiously in": [65535, 0], "cautiously in at": [65535, 0], "in at the": [65535, 0], "at the window": [65535, 0], "the window he": [65535, 0], "window he uncovered": [65535, 0], "he uncovered an": [65535, 0], "uncovered an ambuscade": [65535, 0], "an ambuscade in": [65535, 0], "ambuscade in the": [65535, 0], "in the person": [65535, 0], "the person of": [65535, 0], "person of his": [65535, 0], "of his aunt": [65535, 0], "his aunt and": [65535, 0], "aunt and when": [65535, 0], "and when she": [65535, 0], "when she saw": [65535, 0], "she saw the": [65535, 0], "saw the state": [65535, 0], "the state his": [65535, 0], "state his clothes": [65535, 0], "his clothes were": [65535, 0], "clothes were in": [65535, 0], "were in her": [65535, 0], "in her resolution": [65535, 0], "her resolution to": [65535, 0], "resolution to turn": [65535, 0], "to turn his": [65535, 0], "turn his saturday": [65535, 0], "his saturday holiday": [65535, 0], "saturday holiday into": [65535, 0], "holiday into captivity": [65535, 0], "into captivity at": [65535, 0], "captivity at hard": [65535, 0], "at hard labor": [65535, 0], "hard labor became": [65535, 0], "labor became adamantine": [65535, 0], "became adamantine in": [65535, 0], "adamantine in its": [65535, 0], "in its firmness": [65535, 0], "tom no answer tom": [65535, 0], "no answer tom no": [65535, 0], "answer tom no answer": [65535, 0], "tom no answer what's": [65535, 0], "no answer what's gone": [65535, 0], "answer what's gone with": [65535, 0], "what's gone with that": [65535, 0], "gone with that boy": [65535, 0], "with that boy i": [65535, 0], "that boy i wonder": [65535, 0], "boy i wonder you": [65535, 0], "i wonder you tom": [65535, 0], "wonder you tom no": [65535, 0], "you tom no answer": [65535, 0], "tom no answer the": [65535, 0], "no answer the old": [65535, 0], "answer the old lady": [65535, 0], "the old lady pulled": [65535, 0], "old lady pulled her": [65535, 0], "lady pulled her spectacles": [65535, 0], "pulled her spectacles down": [65535, 0], "her spectacles down and": [65535, 0], "spectacles down and looked": [65535, 0], "down and looked over": [65535, 0], "and looked over them": [65535, 0], "looked over them about": [65535, 0], "over them about the": [65535, 0], "them about the room": [65535, 0], "about the room then": [65535, 0], "the room then she": [65535, 0], "room then she put": [65535, 0], "then she put them": [65535, 0], "she put them up": [65535, 0], "put them up and": [65535, 0], "them up and looked": [65535, 0], "up and looked out": [65535, 0], "and looked out under": [65535, 0], "looked out under them": [65535, 0], "out under them she": [65535, 0], "under them she seldom": [65535, 0], "them she seldom or": [65535, 0], "she seldom or never": [65535, 0], "seldom or never looked": [65535, 0], "or never looked through": [65535, 0], "never looked through them": [65535, 0], "looked through them for": [65535, 0], "through them for so": [65535, 0], "them for so small": [65535, 0], "for so small a": [65535, 0], "so small a thing": [65535, 0], "small a thing as": [65535, 0], "a thing as a": [65535, 0], "thing as a boy": [65535, 0], "as a boy they": [65535, 0], "a boy they were": [65535, 0], "boy they were her": [65535, 0], "they were her state": [65535, 0], "were her state pair": [65535, 0], "her state pair the": [65535, 0], "state pair the pride": [65535, 0], "pair the pride of": [65535, 0], "the pride of her": [65535, 0], "pride of her heart": [65535, 0], "of her heart and": [65535, 0], "her heart and were": [65535, 0], "heart and were built": [65535, 0], "and were built for": [65535, 0], "were built for style": [65535, 0], "built for style not": [65535, 0], "for style not service": [65535, 0], "style not service she": [65535, 0], "not service she could": [65535, 0], "service she could have": [65535, 0], "she could have seen": [65535, 0], "could have seen through": [65535, 0], "have seen through a": [65535, 0], "seen through a pair": [65535, 0], "through a pair of": [65535, 0], "a pair of stove": [65535, 0], "pair of stove lids": [65535, 0], "of stove lids just": [65535, 0], "stove lids just as": [65535, 0], "lids just as well": [65535, 0], "just as well she": [65535, 0], "as well she looked": [65535, 0], "well she looked perplexed": [65535, 0], "she looked perplexed for": [65535, 0], "looked perplexed for a": [65535, 0], "perplexed for a moment": [65535, 0], "for a moment and": [65535, 0], "and then said not": [65535, 0], "then said not fiercely": [65535, 0], "said not fiercely but": [65535, 0], "not fiercely but still": [65535, 0], "fiercely but still loud": [65535, 0], "but still loud enough": [65535, 0], "still loud enough for": [65535, 0], "loud enough for the": [65535, 0], "enough for the furniture": [65535, 0], "for the furniture to": [65535, 0], "the furniture to hear": [65535, 0], "furniture to hear well": [65535, 0], "to hear well i": [65535, 0], "hear well i lay": [65535, 0], "well i lay if": [65535, 0], "i lay if i": [65535, 0], "lay if i get": [65535, 0], "if i get hold": [65535, 0], "i get hold of": [65535, 0], "get hold of you": [65535, 0], "hold of you i'll": [65535, 0], "of you i'll she": [65535, 0], "you i'll she did": [65535, 0], "i'll she did not": [65535, 0], "she did not finish": [65535, 0], "did not finish for": [65535, 0], "not finish for by": [65535, 0], "finish for by this": [65535, 0], "for by this time": [65535, 0], "by this time she": [65535, 0], "this time she was": [65535, 0], "time she was bending": [65535, 0], "she was bending down": [65535, 0], "was bending down and": [65535, 0], "bending down and punching": [65535, 0], "down and punching under": [65535, 0], "and punching under the": [65535, 0], "punching under the bed": [65535, 0], "under the bed with": [65535, 0], "the bed with the": [65535, 0], "bed with the broom": [65535, 0], "with the broom and": [65535, 0], "the broom and so": [65535, 0], "broom and so she": [65535, 0], "and so she needed": [65535, 0], "so she needed breath": [65535, 0], "she needed breath to": [65535, 0], "needed breath to punctuate": [65535, 0], "breath to punctuate the": [65535, 0], "to punctuate the punches": [65535, 0], "punctuate the punches with": [65535, 0], "the punches with she": [65535, 0], "punches with she resurrected": [65535, 0], "with she resurrected nothing": [65535, 0], "she resurrected nothing but": [65535, 0], "resurrected nothing but the": [65535, 0], "nothing but the cat": [65535, 0], "but the cat i": [65535, 0], "the cat i never": [65535, 0], "cat i never did": [65535, 0], "i never did see": [65535, 0], "never did see the": [65535, 0], "did see the beat": [65535, 0], "see the beat of": [65535, 0], "the beat of that": [65535, 0], "beat of that boy": [65535, 0], "of that boy she": [65535, 0], "that boy she went": [65535, 0], "boy she went to": [65535, 0], "she went to the": [65535, 0], "went to the open": [65535, 0], "to the open door": [65535, 0], "the open door and": [65535, 0], "open door and stood": [65535, 0], "door and stood in": [65535, 0], "and stood in it": [65535, 0], "stood in it and": [65535, 0], "in it and looked": [65535, 0], "it and looked out": [65535, 0], "and looked out among": [65535, 0], "looked out among the": [65535, 0], "out among the tomato": [65535, 0], "among the tomato vines": [65535, 0], "the tomato vines and": [65535, 0], "tomato vines and jimpson": [65535, 0], "vines and jimpson weeds": [65535, 0], "and jimpson weeds that": [65535, 0], "jimpson weeds that constituted": [65535, 0], "weeds that constituted the": [65535, 0], "that constituted the garden": [65535, 0], "constituted the garden no": [65535, 0], "the garden no tom": [65535, 0], "garden no tom so": [65535, 0], "no tom so she": [65535, 0], "tom so she lifted": [65535, 0], "so she lifted up": [65535, 0], "she lifted up her": [65535, 0], "lifted up her voice": [65535, 0], "up her voice at": [65535, 0], "her voice at an": [65535, 0], "voice at an angle": [65535, 0], "at an angle calculated": [65535, 0], "an angle calculated for": [65535, 0], "angle calculated for distance": [65535, 0], "calculated for distance and": [65535, 0], "for distance and shouted": [65535, 0], "distance and shouted y": [65535, 0], "and shouted y o": [65535, 0], "shouted y o u": [65535, 0], "y o u u": [65535, 0], "o u u tom": [65535, 0], "u u tom there": [65535, 0], "u tom there was": [65535, 0], "tom there was a": [65535, 0], "there was a slight": [65535, 0], "was a slight noise": [65535, 0], "a slight noise behind": [65535, 0], "slight noise behind her": [65535, 0], "noise behind her and": [65535, 0], "behind her and she": [65535, 0], "her and she turned": [65535, 0], "and she turned just": [65535, 0], "she turned just in": [65535, 0], "turned just in time": [65535, 0], "just in time to": [65535, 0], "in time to seize": [65535, 0], "time to seize a": [65535, 0], "to seize a small": [65535, 0], "seize a small boy": [65535, 0], "a small boy by": [65535, 0], "small boy by the": [65535, 0], "boy by the slack": [65535, 0], "by the slack of": [65535, 0], "the slack of his": [65535, 0], "slack of his roundabout": [65535, 0], "of his roundabout and": [65535, 0], "his roundabout and arrest": [65535, 0], "roundabout and arrest his": [65535, 0], "and arrest his flight": [65535, 0], "arrest his flight there": [65535, 0], "his flight there i": [65535, 0], "flight there i might": [65535, 0], "there i might 'a'": [65535, 0], "i might 'a' thought": [65535, 0], "might 'a' thought of": [65535, 0], "'a' thought of that": [65535, 0], "thought of that closet": [65535, 0], "of that closet what": [65535, 0], "that closet what you": [65535, 0], "closet what you been": [65535, 0], "what you been doing": [65535, 0], "you been doing in": [65535, 0], "been doing in there": [65535, 0], "doing in there nothing": [65535, 0], "in there nothing nothing": [65535, 0], "there nothing nothing look": [65535, 0], "nothing nothing look at": [65535, 0], "nothing look at your": [65535, 0], "look at your hands": [65535, 0], "at your hands and": [65535, 0], "your hands and look": [65535, 0], "hands and look at": [65535, 0], "and look at your": [65535, 0], "look at your mouth": [65535, 0], "at your mouth what": [65535, 0], "your mouth what is": [65535, 0], "mouth what is that": [65535, 0], "what is that i": [65535, 0], "is that i don't": [65535, 0], "that i don't know": [65535, 0], "i don't know aunt": [65535, 0], "don't know aunt well": [65535, 0], "know aunt well i": [65535, 0], "aunt well i know": [65535, 0], "well i know it's": [65535, 0], "i know it's jam": [65535, 0], "know it's jam that's": [65535, 0], "it's jam that's what": [65535, 0], "jam that's what it": [65535, 0], "that's what it is": [65535, 0], "what it is forty": [65535, 0], "it is forty times": [65535, 0], "is forty times i've": [65535, 0], "forty times i've said": [65535, 0], "times i've said if": [65535, 0], "i've said if you": [65535, 0], "said if you didn't": [65535, 0], "if you didn't let": [65535, 0], "you didn't let that": [65535, 0], "didn't let that jam": [65535, 0], "let that jam alone": [65535, 0], "that jam alone i'd": [65535, 0], "jam alone i'd skin": [65535, 0], "alone i'd skin you": [65535, 0], "i'd skin you hand": [65535, 0], "skin you hand me": [65535, 0], "you hand me that": [65535, 0], "hand me that switch": [65535, 0], "me that switch the": [65535, 0], "that switch the switch": [65535, 0], "switch the switch hovered": [65535, 0], "the switch hovered in": [65535, 0], "switch hovered in the": [65535, 0], "hovered in the air": [65535, 0], "in the air the": [65535, 0], "the air the peril": [65535, 0], "air the peril was": [65535, 0], "the peril was desperate": [65535, 0], "peril was desperate my": [65535, 0], "was desperate my look": [65535, 0], "desperate my look behind": [65535, 0], "my look behind you": [65535, 0], "look behind you aunt": [65535, 0], "behind you aunt the": [65535, 0], "you aunt the old": [65535, 0], "aunt the old lady": [65535, 0], "the old lady whirled": [65535, 0], "old lady whirled round": [65535, 0], "lady whirled round and": [65535, 0], "whirled round and snatched": [65535, 0], "round and snatched her": [65535, 0], "and snatched her skirts": [65535, 0], "snatched her skirts out": [65535, 0], "her skirts out of": [65535, 0], "skirts out of danger": [65535, 0], "out of danger the": [65535, 0], "of danger the lad": [65535, 0], "danger the lad fled": [65535, 0], "the lad fled on": [65535, 0], "lad fled on the": [65535, 0], "fled on the instant": [65535, 0], "on the instant scrambled": [65535, 0], "the instant scrambled up": [65535, 0], "instant scrambled up the": [65535, 0], "scrambled up the high": [65535, 0], "up the high board": [65535, 0], "the high board fence": [65535, 0], "high board fence and": [65535, 0], "board fence and disappeared": [65535, 0], "fence and disappeared over": [65535, 0], "and disappeared over it": [65535, 0], "disappeared over it his": [65535, 0], "over it his aunt": [65535, 0], "it his aunt polly": [65535, 0], "his aunt polly stood": [65535, 0], "aunt polly stood surprised": [65535, 0], "polly stood surprised a": [65535, 0], "stood surprised a moment": [65535, 0], "surprised a moment and": [65535, 0], "moment and then broke": [65535, 0], "and then broke into": [65535, 0], "then broke into a": [65535, 0], "broke into a gentle": [65535, 0], "into a gentle laugh": [65535, 0], "a gentle laugh hang": [65535, 0], "gentle laugh hang the": [65535, 0], "laugh hang the boy": [65535, 0], "hang the boy can't": [65535, 0], "the boy can't i": [65535, 0], "boy can't i never": [65535, 0], "can't i never learn": [65535, 0], "i never learn anything": [65535, 0], "never learn anything ain't": [65535, 0], "learn anything ain't he": [65535, 0], "anything ain't he played": [65535, 0], "ain't he played me": [65535, 0], "he played me tricks": [65535, 0], "played me tricks enough": [65535, 0], "me tricks enough like": [65535, 0], "tricks enough like that": [65535, 0], "enough like that for": [65535, 0], "like that for me": [65535, 0], "that for me to": [65535, 0], "for me to be": [32706, 32829], "me to be looking": [65535, 0], "to be looking out": [65535, 0], "be looking out for": [65535, 0], "looking out for him": [65535, 0], "out for him by": [65535, 0], "for him by this": [65535, 0], "him by this time": [65535, 0], "by this time but": [65535, 0], "this time but old": [65535, 0], "time but old fools": [65535, 0], "but old fools is": [65535, 0], "old fools is the": [65535, 0], "fools is the biggest": [65535, 0], "is the biggest fools": [65535, 0], "the biggest fools there": [65535, 0], "biggest fools there is": [65535, 0], "fools there is can't": [65535, 0], "there is can't learn": [65535, 0], "is can't learn an": [65535, 0], "can't learn an old": [65535, 0], "learn an old dog": [65535, 0], "an old dog new": [65535, 0], "old dog new tricks": [65535, 0], "dog new tricks as": [65535, 0], "new tricks as the": [65535, 0], "tricks as the saying": [65535, 0], "as the saying is": [65535, 0], "the saying is but": [65535, 0], "saying is but my": [65535, 0], "is but my goodness": [65535, 0], "but my goodness he": [65535, 0], "my goodness he never": [65535, 0], "goodness he never plays": [65535, 0], "he never plays them": [65535, 0], "never plays them alike": [65535, 0], "plays them alike two": [65535, 0], "them alike two days": [65535, 0], "alike two days and": [65535, 0], "two days and how": [65535, 0], "days and how is": [65535, 0], "and how is a": [65535, 0], "how is a body": [65535, 0], "is a body to": [65535, 0], "a body to know": [65535, 0], "body to know what's": [65535, 0], "to know what's coming": [65535, 0], "know what's coming he": [65535, 0], "what's coming he 'pears": [65535, 0], "coming he 'pears to": [65535, 0], "he 'pears to know": [65535, 0], "'pears to know just": [65535, 0], "to know just how": [65535, 0], "know just how long": [65535, 0], "just how long he": [65535, 0], "how long he can": [65535, 0], "long he can torment": [65535, 0], "he can torment me": [65535, 0], "can torment me before": [65535, 0], "torment me before i": [65535, 0], "me before i get": [65535, 0], "before i get my": [65535, 0], "i get my dander": [65535, 0], "get my dander up": [65535, 0], "my dander up and": [65535, 0], "dander up and he": [65535, 0], "up and he knows": [65535, 0], "and he knows if": [65535, 0], "he knows if he": [65535, 0], "knows if he can": [65535, 0], "if he can make": [65535, 0], "he can make out": [65535, 0], "can make out to": [65535, 0], "make out to put": [65535, 0], "out to put me": [65535, 0], "to put me off": [65535, 0], "put me off for": [65535, 0], "me off for a": [65535, 0], "off for a minute": [65535, 0], "for a minute or": [65535, 0], "a minute or make": [65535, 0], "minute or make me": [65535, 0], "or make me laugh": [65535, 0], "make me laugh it's": [65535, 0], "me laugh it's all": [65535, 0], "laugh it's all down": [65535, 0], "it's all down again": [65535, 0], "all down again and": [65535, 0], "down again and i": [65535, 0], "again and i can't": [65535, 0], "and i can't hit": [65535, 0], "i can't hit him": [65535, 0], "can't hit him a": [65535, 0], "hit him a lick": [65535, 0], "him a lick i": [65535, 0], "a lick i ain't": [65535, 0], "lick i ain't doing": [65535, 0], "i ain't doing my": [65535, 0], "ain't doing my duty": [65535, 0], "doing my duty by": [65535, 0], "my duty by that": [65535, 0], "duty by that boy": [65535, 0], "by that boy and": [65535, 0], "that boy and that's": [65535, 0], "boy and that's the": [65535, 0], "and that's the lord's": [65535, 0], "that's the lord's truth": [65535, 0], "the lord's truth goodness": [65535, 0], "lord's truth goodness knows": [65535, 0], "truth goodness knows spare": [65535, 0], "goodness knows spare the": [65535, 0], "knows spare the rod": [65535, 0], "spare the rod and": [65535, 0], "the rod and spoil": [65535, 0], "rod and spoil the": [65535, 0], "and spoil the child": [65535, 0], "spoil the child as": [65535, 0], "the child as the": [65535, 0], "child as the good": [65535, 0], "as the good book": [65535, 0], "the good book says": [65535, 0], "good book says i'm": [65535, 0], "book says i'm a": [65535, 0], "says i'm a laying": [65535, 0], "i'm a laying up": [65535, 0], "a laying up sin": [65535, 0], "laying up sin and": [65535, 0], "up sin and suffering": [65535, 0], "sin and suffering for": [65535, 0], "and suffering for us": [65535, 0], "suffering for us both": [65535, 0], "for us both i": [65535, 0], "us both i know": [65535, 0], "both i know he's": [65535, 0], "i know he's full": [65535, 0], "know he's full of": [65535, 0], "he's full of the": [65535, 0], "full of the old": [65535, 0], "of the old scratch": [65535, 0], "the old scratch but": [65535, 0], "old scratch but laws": [65535, 0], "scratch but laws a": [65535, 0], "but laws a me": [65535, 0], "laws a me he's": [65535, 0], "a me he's my": [65535, 0], "me he's my own": [65535, 0], "he's my own dead": [65535, 0], "my own dead sister's": [65535, 0], "own dead sister's boy": [65535, 0], "dead sister's boy poor": [65535, 0], "sister's boy poor thing": [65535, 0], "boy poor thing and": [65535, 0], "poor thing and i": [65535, 0], "thing and i ain't": [65535, 0], "and i ain't got": [65535, 0], "i ain't got the": [65535, 0], "ain't got the heart": [65535, 0], "got the heart to": [65535, 0], "the heart to lash": [65535, 0], "heart to lash him": [65535, 0], "to lash him somehow": [65535, 0], "lash him somehow every": [65535, 0], "him somehow every time": [65535, 0], "somehow every time i": [65535, 0], "every time i let": [65535, 0], "time i let him": [65535, 0], "i let him off": [65535, 0], "let him off my": [65535, 0], "him off my conscience": [65535, 0], "off my conscience does": [65535, 0], "my conscience does hurt": [65535, 0], "conscience does hurt me": [65535, 0], "does hurt me so": [65535, 0], "hurt me so and": [65535, 0], "me so and every": [65535, 0], "so and every time": [65535, 0], "and every time i": [65535, 0], "every time i hit": [65535, 0], "time i hit him": [65535, 0], "i hit him my": [65535, 0], "hit him my old": [65535, 0], "him my old heart": [65535, 0], "my old heart most": [65535, 0], "old heart most breaks": [65535, 0], "heart most breaks well": [65535, 0], "most breaks well a": [65535, 0], "breaks well a well": [65535, 0], "well a well man": [65535, 0], "a well man that": [65535, 0], "well man that is": [65535, 0], "man that is born": [65535, 0], "that is born of": [65535, 0], "is born of woman": [65535, 0], "born of woman is": [65535, 0], "of woman is of": [65535, 0], "woman is of few": [65535, 0], "is of few days": [65535, 0], "of few days and": [65535, 0], "few days and full": [65535, 0], "days and full of": [65535, 0], "and full of trouble": [65535, 0], "full of trouble as": [65535, 0], "of trouble as the": [65535, 0], "trouble as the scripture": [65535, 0], "as the scripture says": [65535, 0], "the scripture says and": [65535, 0], "scripture says and i": [65535, 0], "says and i reckon": [65535, 0], "and i reckon it's": [65535, 0], "reckon it's so he'll": [65535, 0], "it's so he'll play": [65535, 0], "so he'll play hookey": [65535, 0], "he'll play hookey this": [65535, 0], "play hookey this evening": [65535, 0], "hookey this evening and": [65535, 0], "this evening and i'll": [65535, 0], "evening and i'll just": [65535, 0], "and i'll just be": [65535, 0], "i'll just be obliged": [65535, 0], "just be obliged to": [65535, 0], "be obliged to make": [65535, 0], "obliged to make him": [65535, 0], "to make him work": [65535, 0], "make him work to": [65535, 0], "him work to morrow": [65535, 0], "work to morrow to": [65535, 0], "to morrow to punish": [65535, 0], "morrow to punish him": [65535, 0], "to punish him it's": [65535, 0], "punish him it's mighty": [65535, 0], "him it's mighty hard": [65535, 0], "it's mighty hard to": [65535, 0], "mighty hard to make": [65535, 0], "hard to make him": [65535, 0], "make him work saturdays": [65535, 0], "him work saturdays when": [65535, 0], "work saturdays when all": [65535, 0], "saturdays when all the": [65535, 0], "when all the boys": [65535, 0], "all the boys is": [65535, 0], "the boys is having": [65535, 0], "boys is having holiday": [65535, 0], "is having holiday but": [65535, 0], "having holiday but he": [65535, 0], "holiday but he hates": [65535, 0], "but he hates work": [65535, 0], "he hates work more": [65535, 0], "hates work more than": [65535, 0], "work more than he": [65535, 0], "more than he hates": [65535, 0], "than he hates anything": [65535, 0], "he hates anything else": [65535, 0], "hates anything else and": [65535, 0], "anything else and i've": [65535, 0], "else and i've got": [65535, 0], "and i've got to": [65535, 0], "i've got to do": [65535, 0], "got to do some": [65535, 0], "to do some of": [65535, 0], "do some of my": [65535, 0], "some of my duty": [65535, 0], "of my duty by": [65535, 0], "my duty by him": [65535, 0], "duty by him or": [65535, 0], "by him or i'll": [65535, 0], "him or i'll be": [65535, 0], "or i'll be the": [65535, 0], "i'll be the ruination": [65535, 0], "be the ruination of": [65535, 0], "the ruination of the": [65535, 0], "ruination of the child": [65535, 0], "of the child tom": [65535, 0], "the child tom did": [65535, 0], "child tom did play": [65535, 0], "tom did play hookey": [65535, 0], "did play hookey and": [65535, 0], "play hookey and he": [65535, 0], "hookey and he had": [65535, 0], "and he had a": [65535, 0], "he had a very": [65535, 0], "had a very good": [65535, 0], "a very good time": [65535, 0], "very good time he": [65535, 0], "good time he got": [65535, 0], "time he got back": [65535, 0], "he got back home": [65535, 0], "got back home barely": [65535, 0], "back home barely in": [65535, 0], "home barely in season": [65535, 0], "barely in season to": [65535, 0], "in season to help": [65535, 0], "season to help jim": [65535, 0], "to help jim the": [65535, 0], "help jim the small": [65535, 0], "jim the small colored": [65535, 0], "the small colored boy": [65535, 0], "small colored boy saw": [65535, 0], "colored boy saw next": [65535, 0], "boy saw next day's": [65535, 0], "saw next day's wood": [65535, 0], "next day's wood and": [65535, 0], "day's wood and split": [65535, 0], "wood and split the": [65535, 0], "and split the kindlings": [65535, 0], "split the kindlings before": [65535, 0], "the kindlings before supper": [65535, 0], "kindlings before supper at": [65535, 0], "before supper at least": [65535, 0], "supper at least he": [65535, 0], "at least he was": [65535, 0], "least he was there": [65535, 0], "he was there in": [65535, 0], "was there in time": [65535, 0], "there in time to": [65535, 0], "in time to tell": [65535, 0], "time to tell his": [65535, 0], "to tell his adventures": [65535, 0], "tell his adventures to": [65535, 0], "his adventures to jim": [65535, 0], "adventures to jim while": [65535, 0], "to jim while jim": [65535, 0], "jim while jim did": [65535, 0], "while jim did three": [65535, 0], "jim did three fourths": [65535, 0], "did three fourths of": [65535, 0], "three fourths of the": [65535, 0], "fourths of the work": [65535, 0], "of the work tom's": [65535, 0], "the work tom's younger": [65535, 0], "work tom's younger brother": [65535, 0], "tom's younger brother or": [65535, 0], "younger brother or rather": [65535, 0], "brother or rather half": [65535, 0], "or rather half brother": [65535, 0], "rather half brother sid": [65535, 0], "half brother sid was": [65535, 0], "brother sid was already": [65535, 0], "sid was already through": [65535, 0], "was already through with": [65535, 0], "already through with his": [65535, 0], "through with his part": [65535, 0], "with his part of": [65535, 0], "his part of the": [65535, 0], "part of the work": [65535, 0], "of the work picking": [65535, 0], "the work picking up": [65535, 0], "work picking up chips": [65535, 0], "picking up chips for": [65535, 0], "up chips for he": [65535, 0], "chips for he was": [65535, 0], "for he was a": [65535, 0], "he was a quiet": [65535, 0], "was a quiet boy": [65535, 0], "a quiet boy and": [65535, 0], "quiet boy and had": [65535, 0], "boy and had no": [65535, 0], "and had no adventurous": [65535, 0], "had no adventurous troublesome": [65535, 0], "no adventurous troublesome ways": [65535, 0], "adventurous troublesome ways while": [65535, 0], "troublesome ways while tom": [65535, 0], "ways while tom was": [65535, 0], "while tom was eating": [65535, 0], "tom was eating his": [65535, 0], "was eating his supper": [65535, 0], "eating his supper and": [65535, 0], "his supper and stealing": [65535, 0], "supper and stealing sugar": [65535, 0], "and stealing sugar as": [65535, 0], "stealing sugar as opportunity": [65535, 0], "sugar as opportunity offered": [65535, 0], "as opportunity offered aunt": [65535, 0], "opportunity offered aunt polly": [65535, 0], "offered aunt polly asked": [65535, 0], "aunt polly asked him": [65535, 0], "polly asked him questions": [65535, 0], "asked him questions that": [65535, 0], "him questions that were": [65535, 0], "questions that were full": [65535, 0], "that were full of": [65535, 0], "were full of guile": [65535, 0], "full of guile and": [65535, 0], "of guile and very": [65535, 0], "guile and very deep": [65535, 0], "and very deep for": [65535, 0], "very deep for she": [65535, 0], "deep for she wanted": [65535, 0], "for she wanted to": [65535, 0], "she wanted to trap": [65535, 0], "wanted to trap him": [65535, 0], "to trap him into": [65535, 0], "trap him into damaging": [65535, 0], "him into damaging revealments": [65535, 0], "into damaging revealments like": [65535, 0], "damaging revealments like many": [65535, 0], "revealments like many other": [65535, 0], "like many other simple": [65535, 0], "many other simple hearted": [65535, 0], "other simple hearted souls": [65535, 0], "simple hearted souls it": [65535, 0], "hearted souls it was": [65535, 0], "souls it was her": [65535, 0], "it was her pet": [65535, 0], "was her pet vanity": [65535, 0], "her pet vanity to": [65535, 0], "pet vanity to believe": [65535, 0], "vanity to believe she": [65535, 0], "to believe she was": [65535, 0], "believe she was endowed": [65535, 0], "she was endowed with": [65535, 0], "was endowed with a": [65535, 0], "endowed with a talent": [65535, 0], "with a talent for": [65535, 0], "a talent for dark": [65535, 0], "talent for dark and": [65535, 0], "for dark and mysterious": [65535, 0], "dark and mysterious diplomacy": [65535, 0], "and mysterious diplomacy and": [65535, 0], "mysterious diplomacy and she": [65535, 0], "diplomacy and she loved": [65535, 0], "and she loved to": [65535, 0], "she loved to contemplate": [65535, 0], "loved to contemplate her": [65535, 0], "to contemplate her most": [65535, 0], "contemplate her most transparent": [65535, 0], "her most transparent devices": [65535, 0], "most transparent devices as": [65535, 0], "transparent devices as marvels": [65535, 0], "devices as marvels of": [65535, 0], "as marvels of low": [65535, 0], "marvels of low cunning": [65535, 0], "of low cunning said": [65535, 0], "low cunning said she": [65535, 0], "cunning said she tom": [65535, 0], "said she tom it": [65535, 0], "she tom it was": [65535, 0], "tom it was middling": [65535, 0], "it was middling warm": [65535, 0], "was middling warm in": [65535, 0], "middling warm in school": [65535, 0], "warm in school warn't": [65535, 0], "in school warn't it": [65535, 0], "school warn't it yes'm": [65535, 0], "warn't it yes'm powerful": [65535, 0], "it yes'm powerful warm": [65535, 0], "yes'm powerful warm warn't": [65535, 0], "powerful warm warn't it": [65535, 0], "warm warn't it yes'm": [65535, 0], "warn't it yes'm didn't": [65535, 0], "it yes'm didn't you": [65535, 0], "yes'm didn't you want": [65535, 0], "didn't you want to": [65535, 0], "you want to go": [65535, 0], "want to go in": [65535, 0], "to go in a": [65535, 0], "go in a swimming": [65535, 0], "in a swimming tom": [65535, 0], "a swimming tom a": [65535, 0], "swimming tom a bit": [65535, 0], "tom a bit of": [65535, 0], "a bit of a": [65535, 0], "bit of a scare": [65535, 0], "of a scare shot": [65535, 0], "a scare shot through": [65535, 0], "scare shot through tom": [65535, 0], "shot through tom a": [65535, 0], "through tom a touch": [65535, 0], "tom a touch of": [65535, 0], "a touch of uncomfortable": [65535, 0], "touch of uncomfortable suspicion": [65535, 0], "of uncomfortable suspicion he": [65535, 0], "uncomfortable suspicion he searched": [65535, 0], "suspicion he searched aunt": [65535, 0], "he searched aunt polly's": [65535, 0], "searched aunt polly's face": [65535, 0], "aunt polly's face but": [65535, 0], "polly's face but it": [65535, 0], "face but it told": [65535, 0], "but it told him": [65535, 0], "it told him nothing": [65535, 0], "told him nothing so": [65535, 0], "him nothing so he": [65535, 0], "nothing so he said": [65535, 0], "so he said no'm": [65535, 0], "he said no'm well": [65535, 0], "said no'm well not": [65535, 0], "no'm well not very": [65535, 0], "well not very much": [65535, 0], "not very much the": [65535, 0], "very much the old": [65535, 0], "much the old lady": [65535, 0], "the old lady reached": [65535, 0], "old lady reached out": [65535, 0], "lady reached out her": [65535, 0], "reached out her hand": [65535, 0], "out her hand and": [65535, 0], "her hand and felt": [65535, 0], "hand and felt tom's": [65535, 0], "and felt tom's shirt": [65535, 0], "felt tom's shirt and": [65535, 0], "tom's shirt and said": [65535, 0], "shirt and said but": [65535, 0], "and said but you": [65535, 0], "said but you ain't": [65535, 0], "but you ain't too": [65535, 0], "you ain't too warm": [65535, 0], "ain't too warm now": [65535, 0], "too warm now though": [65535, 0], "warm now though and": [65535, 0], "now though and it": [65535, 0], "though and it flattered": [65535, 0], "and it flattered her": [65535, 0], "it flattered her to": [65535, 0], "flattered her to reflect": [65535, 0], "her to reflect that": [65535, 0], "to reflect that she": [65535, 0], "reflect that she had": [65535, 0], "that she had discovered": [65535, 0], "she had discovered that": [65535, 0], "had discovered that the": [65535, 0], "discovered that the shirt": [65535, 0], "that the shirt was": [65535, 0], "the shirt was dry": [65535, 0], "shirt was dry without": [65535, 0], "was dry without anybody": [65535, 0], "dry without anybody knowing": [65535, 0], "without anybody knowing that": [65535, 0], "anybody knowing that that": [65535, 0], "knowing that that was": [65535, 0], "that that was what": [65535, 0], "that was what she": [65535, 0], "was what she had": [65535, 0], "what she had in": [65535, 0], "she had in her": [65535, 0], "had in her mind": [65535, 0], "in her mind but": [65535, 0], "her mind but in": [65535, 0], "mind but in spite": [65535, 0], "but in spite of": [65535, 0], "in spite of her": [65535, 0], "spite of her tom": [65535, 0], "of her tom knew": [65535, 0], "her tom knew where": [65535, 0], "tom knew where the": [65535, 0], "knew where the wind": [65535, 0], "where the wind lay": [65535, 0], "the wind lay now": [65535, 0], "wind lay now so": [65535, 0], "lay now so he": [65535, 0], "now so he forestalled": [65535, 0], "so he forestalled what": [65535, 0], "he forestalled what might": [65535, 0], "forestalled what might be": [65535, 0], "what might be the": [65535, 0], "might be the next": [65535, 0], "be the next move": [65535, 0], "the next move some": [65535, 0], "next move some of": [65535, 0], "move some of us": [65535, 0], "some of us pumped": [65535, 0], "of us pumped on": [65535, 0], "us pumped on our": [65535, 0], "pumped on our heads": [65535, 0], "on our heads mine's": [65535, 0], "our heads mine's damp": [65535, 0], "heads mine's damp yet": [65535, 0], "mine's damp yet see": [65535, 0], "damp yet see aunt": [65535, 0], "yet see aunt polly": [65535, 0], "see aunt polly was": [65535, 0], "aunt polly was vexed": [65535, 0], "polly was vexed to": [65535, 0], "was vexed to think": [65535, 0], "vexed to think she": [65535, 0], "to think she had": [65535, 0], "think she had overlooked": [65535, 0], "she had overlooked that": [65535, 0], "had overlooked that bit": [65535, 0], "overlooked that bit of": [65535, 0], "that bit of circumstantial": [65535, 0], "bit of circumstantial evidence": [65535, 0], "of circumstantial evidence and": [65535, 0], "circumstantial evidence and missed": [65535, 0], "evidence and missed a": [65535, 0], "and missed a trick": [65535, 0], "missed a trick then": [65535, 0], "a trick then she": [65535, 0], "trick then she had": [65535, 0], "then she had a": [65535, 0], "she had a new": [65535, 0], "had a new inspiration": [65535, 0], "a new inspiration tom": [65535, 0], "new inspiration tom you": [65535, 0], "inspiration tom you didn't": [65535, 0], "tom you didn't have": [65535, 0], "you didn't have to": [65535, 0], "didn't have to undo": [65535, 0], "have to undo your": [65535, 0], "to undo your shirt": [65535, 0], "undo your shirt collar": [65535, 0], "your shirt collar where": [65535, 0], "shirt collar where i": [65535, 0], "collar where i sewed": [65535, 0], "where i sewed it": [65535, 0], "i sewed it to": [65535, 0], "sewed it to pump": [65535, 0], "it to pump on": [65535, 0], "to pump on your": [65535, 0], "pump on your head": [65535, 0], "on your head did": [65535, 0], "your head did you": [65535, 0], "head did you unbutton": [65535, 0], "did you unbutton your": [65535, 0], "you unbutton your jacket": [65535, 0], "unbutton your jacket the": [65535, 0], "your jacket the trouble": [65535, 0], "jacket the trouble vanished": [65535, 0], "the trouble vanished out": [65535, 0], "trouble vanished out of": [65535, 0], "vanished out of tom's": [65535, 0], "out of tom's face": [65535, 0], "of tom's face he": [65535, 0], "tom's face he opened": [65535, 0], "face he opened his": [65535, 0], "he opened his jacket": [65535, 0], "opened his jacket his": [65535, 0], "his jacket his shirt": [65535, 0], "jacket his shirt collar": [65535, 0], "his shirt collar was": [65535, 0], "shirt collar was securely": [65535, 0], "collar was securely sewed": [65535, 0], "was securely sewed bother": [65535, 0], "securely sewed bother well": [65535, 0], "sewed bother well go": [65535, 0], "bother well go 'long": [65535, 0], "well go 'long with": [65535, 0], "go 'long with you": [65535, 0], "'long with you i'd": [65535, 0], "with you i'd made": [65535, 0], "you i'd made sure": [65535, 0], "i'd made sure you'd": [65535, 0], "made sure you'd played": [65535, 0], "sure you'd played hookey": [65535, 0], "you'd played hookey and": [65535, 0], "played hookey and been": [65535, 0], "hookey and been a": [65535, 0], "and been a swimming": [65535, 0], "been a swimming but": [65535, 0], "a swimming but i": [65535, 0], "swimming but i forgive": [65535, 0], "but i forgive ye": [65535, 0], "i forgive ye tom": [65535, 0], "forgive ye tom i": [65535, 0], "ye tom i reckon": [65535, 0], "tom i reckon you're": [65535, 0], "i reckon you're a": [65535, 0], "reckon you're a kind": [65535, 0], "you're a kind of": [65535, 0], "a kind of a": [65535, 0], "kind of a singed": [65535, 0], "of a singed cat": [65535, 0], "a singed cat as": [65535, 0], "singed cat as the": [65535, 0], "cat as the saying": [65535, 0], "the saying is better'n": [65535, 0], "saying is better'n you": [65535, 0], "is better'n you look": [65535, 0], "better'n you look this": [65535, 0], "you look this time": [65535, 0], "look this time she": [65535, 0], "time she was half": [65535, 0], "she was half sorry": [65535, 0], "was half sorry her": [65535, 0], "half sorry her sagacity": [65535, 0], "sorry her sagacity had": [65535, 0], "her sagacity had miscarried": [65535, 0], "sagacity had miscarried and": [65535, 0], "had miscarried and half": [65535, 0], "miscarried and half glad": [65535, 0], "and half glad that": [65535, 0], "half glad that tom": [65535, 0], "glad that tom had": [65535, 0], "that tom had stumbled": [65535, 0], "tom had stumbled into": [65535, 0], "had stumbled into obedient": [65535, 0], "stumbled into obedient conduct": [65535, 0], "into obedient conduct for": [65535, 0], "obedient conduct for once": [65535, 0], "conduct for once but": [65535, 0], "for once but sidney": [65535, 0], "once but sidney said": [65535, 0], "but sidney said well": [65535, 0], "sidney said well now": [65535, 0], "said well now if": [65535, 0], "well now if i": [65535, 0], "now if i didn't": [65535, 0], "if i didn't think": [65535, 0], "i didn't think you": [65535, 0], "didn't think you sewed": [65535, 0], "think you sewed his": [65535, 0], "you sewed his collar": [65535, 0], "sewed his collar with": [65535, 0], "his collar with white": [65535, 0], "collar with white thread": [65535, 0], "with white thread but": [65535, 0], "white thread but it's": [65535, 0], "thread but it's black": [65535, 0], "but it's black why": [65535, 0], "it's black why i": [65535, 0], "black why i did": [65535, 0], "why i did sew": [65535, 0], "i did sew it": [65535, 0], "did sew it with": [65535, 0], "sew it with white": [65535, 0], "it with white tom": [65535, 0], "with white tom but": [65535, 0], "white tom but tom": [65535, 0], "tom but tom did": [65535, 0], "but tom did not": [65535, 0], "tom did not wait": [65535, 0], "did not wait for": [65535, 0], "not wait for the": [65535, 0], "wait for the rest": [65535, 0], "for the rest as": [65535, 0], "the rest as he": [65535, 0], "rest as he went": [65535, 0], "as he went out": [65535, 0], "he went out at": [65535, 0], "went out at the": [65535, 0], "out at the door": [65535, 0], "at the door he": [65535, 0], "the door he said": [65535, 0], "door he said siddy": [65535, 0], "he said siddy i'll": [65535, 0], "said siddy i'll lick": [65535, 0], "siddy i'll lick you": [65535, 0], "i'll lick you for": [65535, 0], "lick you for that": [65535, 0], "you for that in": [65535, 0], "for that in a": [65535, 0], "that in a safe": [65535, 0], "in a safe place": [65535, 0], "a safe place tom": [65535, 0], "safe place tom examined": [65535, 0], "place tom examined two": [65535, 0], "tom examined two large": [65535, 0], "examined two large needles": [65535, 0], "two large needles which": [65535, 0], "large needles which were": [65535, 0], "needles which were thrust": [65535, 0], "which were thrust into": [65535, 0], "were thrust into the": [65535, 0], "thrust into the lapels": [65535, 0], "into the lapels of": [65535, 0], "the lapels of his": [65535, 0], "lapels of his jacket": [65535, 0], "of his jacket and": [65535, 0], "his jacket and had": [65535, 0], "jacket and had thread": [65535, 0], "and had thread bound": [65535, 0], "had thread bound about": [65535, 0], "thread bound about them": [65535, 0], "bound about them one": [65535, 0], "about them one needle": [65535, 0], "them one needle carried": [65535, 0], "one needle carried white": [65535, 0], "needle carried white thread": [65535, 0], "carried white thread and": [65535, 0], "white thread and the": [65535, 0], "thread and the other": [65535, 0], "and the other black": [65535, 0], "the other black he": [65535, 0], "other black he said": [65535, 0], "black he said she'd": [65535, 0], "he said she'd never": [65535, 0], "said she'd never noticed": [65535, 0], "she'd never noticed if": [65535, 0], "never noticed if it": [65535, 0], "noticed if it hadn't": [65535, 0], "if it hadn't been": [65535, 0], "it hadn't been for": [65535, 0], "hadn't been for sid": [65535, 0], "been for sid confound": [65535, 0], "for sid confound it": [65535, 0], "sid confound it sometimes": [65535, 0], "confound it sometimes she": [65535, 0], "it sometimes she sews": [65535, 0], "sometimes she sews it": [65535, 0], "she sews it with": [65535, 0], "sews it with white": [65535, 0], "it with white and": [65535, 0], "with white and sometimes": [65535, 0], "white and sometimes she": [65535, 0], "and sometimes she sews": [65535, 0], "sews it with black": [65535, 0], "it with black i": [65535, 0], "with black i wish": [65535, 0], "black i wish to": [65535, 0], "i wish to geeminy": [65535, 0], "wish to geeminy she'd": [65535, 0], "to geeminy she'd stick": [65535, 0], "geeminy she'd stick to": [65535, 0], "she'd stick to one": [65535, 0], "stick to one or": [65535, 0], "to one or t'other": [65535, 0], "one or t'other i": [65535, 0], "or t'other i can't": [65535, 0], "t'other i can't keep": [65535, 0], "i can't keep the": [65535, 0], "can't keep the run": [65535, 0], "keep the run of": [65535, 0], "the run of 'em": [65535, 0], "run of 'em but": [65535, 0], "of 'em but i": [65535, 0], "'em but i bet": [65535, 0], "but i bet you": [65535, 0], "i bet you i'll": [65535, 0], "bet you i'll lam": [65535, 0], "you i'll lam sid": [65535, 0], "i'll lam sid for": [65535, 0], "lam sid for that": [65535, 0], "sid for that i'll": [65535, 0], "for that i'll learn": [65535, 0], "that i'll learn him": [65535, 0], "i'll learn him he": [65535, 0], "learn him he was": [65535, 0], "him he was not": [65535, 0], "he was not the": [65535, 0], "was not the model": [65535, 0], "not the model boy": [65535, 0], "the model boy of": [65535, 0], "model boy of the": [65535, 0], "boy of the village": [65535, 0], "of the village he": [65535, 0], "the village he knew": [65535, 0], "village he knew the": [65535, 0], "he knew the model": [65535, 0], "knew the model boy": [65535, 0], "the model boy very": [65535, 0], "model boy very well": [65535, 0], "boy very well though": [65535, 0], "very well though and": [65535, 0], "well though and loathed": [65535, 0], "though and loathed him": [65535, 0], "and loathed him within": [65535, 0], "loathed him within two": [65535, 0], "him within two minutes": [65535, 0], "within two minutes or": [65535, 0], "two minutes or even": [65535, 0], "minutes or even less": [65535, 0], "or even less he": [65535, 0], "even less he had": [65535, 0], "less he had forgotten": [65535, 0], "he had forgotten all": [65535, 0], "had forgotten all his": [65535, 0], "forgotten all his troubles": [65535, 0], "all his troubles not": [65535, 0], "his troubles not because": [65535, 0], "troubles not because his": [65535, 0], "not because his troubles": [65535, 0], "because his troubles were": [65535, 0], "his troubles were one": [65535, 0], "troubles were one whit": [65535, 0], "were one whit less": [65535, 0], "one whit less heavy": [65535, 0], "whit less heavy and": [65535, 0], "less heavy and bitter": [65535, 0], "heavy and bitter to": [65535, 0], "and bitter to him": [65535, 0], "bitter to him than": [65535, 0], "to him than a": [65535, 0], "him than a man's": [65535, 0], "than a man's are": [65535, 0], "a man's are to": [65535, 0], "man's are to a": [65535, 0], "are to a man": [65535, 0], "to a man but": [65535, 0], "a man but because": [65535, 0], "man but because a": [65535, 0], "but because a new": [65535, 0], "because a new and": [65535, 0], "a new and powerful": [65535, 0], "new and powerful interest": [65535, 0], "and powerful interest bore": [65535, 0], "powerful interest bore them": [65535, 0], "interest bore them down": [65535, 0], "bore them down and": [65535, 0], "them down and drove": [65535, 0], "down and drove them": [65535, 0], "and drove them out": [65535, 0], "drove them out of": [65535, 0], "them out of his": [65535, 0], "out of his mind": [65535, 0], "of his mind for": [65535, 0], "his mind for the": [65535, 0], "mind for the time": [65535, 0], "for the time just": [65535, 0], "the time just as": [65535, 0], "time just as men's": [65535, 0], "just as men's misfortunes": [65535, 0], "as men's misfortunes are": [65535, 0], "men's misfortunes are forgotten": [65535, 0], "misfortunes are forgotten in": [65535, 0], "are forgotten in the": [65535, 0], "forgotten in the excitement": [65535, 0], "in the excitement of": [65535, 0], "the excitement of new": [65535, 0], "excitement of new enterprises": [65535, 0], "of new enterprises this": [65535, 0], "new enterprises this new": [65535, 0], "enterprises this new interest": [65535, 0], "this new interest was": [65535, 0], "new interest was a": [65535, 0], "interest was a valued": [65535, 0], "was a valued novelty": [65535, 0], "a valued novelty in": [65535, 0], "valued novelty in whistling": [65535, 0], "novelty in whistling which": [65535, 0], "in whistling which he": [65535, 0], "whistling which he had": [65535, 0], "which he had just": [65535, 0], "he had just acquired": [65535, 0], "had just acquired from": [65535, 0], "just acquired from a": [65535, 0], "acquired from a negro": [65535, 0], "from a negro and": [65535, 0], "a negro and he": [65535, 0], "negro and he was": [65535, 0], "and he was suffering": [65535, 0], "he was suffering to": [65535, 0], "was suffering to practise": [65535, 0], "suffering to practise it": [65535, 0], "to practise it undisturbed": [65535, 0], "practise it undisturbed it": [65535, 0], "it undisturbed it consisted": [65535, 0], "undisturbed it consisted in": [65535, 0], "it consisted in a": [65535, 0], "consisted in a peculiar": [65535, 0], "in a peculiar bird": [65535, 0], "a peculiar bird like": [65535, 0], "peculiar bird like turn": [65535, 0], "bird like turn a": [65535, 0], "like turn a sort": [65535, 0], "turn a sort of": [65535, 0], "a sort of liquid": [65535, 0], "sort of liquid warble": [65535, 0], "of liquid warble produced": [65535, 0], "liquid warble produced by": [65535, 0], "warble produced by touching": [65535, 0], "produced by touching the": [65535, 0], "by touching the tongue": [65535, 0], "touching the tongue to": [65535, 0], "the tongue to the": [65535, 0], "tongue to the roof": [65535, 0], "to the roof of": [65535, 0], "the roof of the": [65535, 0], "roof of the mouth": [65535, 0], "of the mouth at": [65535, 0], "the mouth at short": [65535, 0], "mouth at short intervals": [65535, 0], "at short intervals in": [65535, 0], "short intervals in the": [65535, 0], "intervals in the midst": [65535, 0], "midst of the music": [65535, 0], "of the music the": [65535, 0], "the music the reader": [65535, 0], "music the reader probably": [65535, 0], "the reader probably remembers": [65535, 0], "reader probably remembers how": [65535, 0], "probably remembers how to": [65535, 0], "remembers how to do": [65535, 0], "how to do it": [65535, 0], "to do it if": [65535, 0], "do it if he": [65535, 0], "it if he has": [65535, 0], "if he has ever": [65535, 0], "he has ever been": [65535, 0], "has ever been a": [65535, 0], "ever been a boy": [65535, 0], "been a boy diligence": [65535, 0], "a boy diligence and": [65535, 0], "boy diligence and attention": [65535, 0], "diligence and attention soon": [65535, 0], "and attention soon gave": [65535, 0], "attention soon gave him": [65535, 0], "soon gave him the": [65535, 0], "gave him the knack": [65535, 0], "him the knack of": [65535, 0], "the knack of it": [65535, 0], "knack of it and": [65535, 0], "of it and he": [65535, 0], "it and he strode": [65535, 0], "and he strode down": [65535, 0], "he strode down the": [65535, 0], "strode down the street": [65535, 0], "street with his mouth": [65535, 0], "with his mouth full": [65535, 0], "his mouth full of": [65535, 0], "mouth full of harmony": [65535, 0], "full of harmony and": [65535, 0], "of harmony and his": [65535, 0], "harmony and his soul": [65535, 0], "and his soul full": [65535, 0], "his soul full of": [65535, 0], "soul full of gratitude": [65535, 0], "full of gratitude he": [65535, 0], "of gratitude he felt": [65535, 0], "gratitude he felt much": [65535, 0], "he felt much as": [65535, 0], "felt much as an": [65535, 0], "much as an astronomer": [65535, 0], "as an astronomer feels": [65535, 0], "an astronomer feels who": [65535, 0], "astronomer feels who has": [65535, 0], "feels who has discovered": [65535, 0], "who has discovered a": [65535, 0], "has discovered a new": [65535, 0], "discovered a new planet": [65535, 0], "a new planet no": [65535, 0], "new planet no doubt": [65535, 0], "planet no doubt as": [65535, 0], "no doubt as far": [65535, 0], "doubt as far as": [65535, 0], "as far as strong": [65535, 0], "far as strong deep": [65535, 0], "as strong deep unalloyed": [65535, 0], "strong deep unalloyed pleasure": [65535, 0], "deep unalloyed pleasure is": [65535, 0], "unalloyed pleasure is concerned": [65535, 0], "pleasure is concerned the": [65535, 0], "is concerned the advantage": [65535, 0], "concerned the advantage was": [65535, 0], "the advantage was with": [65535, 0], "advantage was with the": [65535, 0], "was with the boy": [65535, 0], "with the boy not": [65535, 0], "the boy not the": [65535, 0], "boy not the astronomer": [65535, 0], "not the astronomer the": [65535, 0], "the astronomer the summer": [65535, 0], "astronomer the summer evenings": [65535, 0], "the summer evenings were": [65535, 0], "summer evenings were long": [65535, 0], "evenings were long it": [65535, 0], "were long it was": [65535, 0], "long it was not": [65535, 0], "it was not dark": [65535, 0], "was not dark yet": [65535, 0], "not dark yet presently": [65535, 0], "dark yet presently tom": [65535, 0], "yet presently tom checked": [65535, 0], "presently tom checked his": [65535, 0], "tom checked his whistle": [65535, 0], "checked his whistle a": [65535, 0], "his whistle a stranger": [65535, 0], "whistle a stranger was": [65535, 0], "a stranger was before": [65535, 0], "stranger was before him": [65535, 0], "was before him a": [65535, 0], "before him a boy": [65535, 0], "him a boy a": [65535, 0], "a boy a shade": [65535, 0], "boy a shade larger": [65535, 0], "a shade larger than": [65535, 0], "shade larger than himself": [65535, 0], "larger than himself a": [65535, 0], "than himself a new": [65535, 0], "himself a new comer": [65535, 0], "a new comer of": [65535, 0], "new comer of any": [65535, 0], "comer of any age": [65535, 0], "of any age or": [65535, 0], "any age or either": [65535, 0], "age or either sex": [65535, 0], "or either sex was": [65535, 0], "either sex was an": [65535, 0], "sex was an impressive": [65535, 0], "was an impressive curiosity": [65535, 0], "an impressive curiosity in": [65535, 0], "impressive curiosity in the": [65535, 0], "curiosity in the poor": [65535, 0], "in the poor little": [65535, 0], "the poor little shabby": [65535, 0], "poor little shabby village": [65535, 0], "little shabby village of": [65535, 0], "shabby village of st": [65535, 0], "village of st petersburg": [65535, 0], "of st petersburg this": [65535, 0], "st petersburg this boy": [65535, 0], "petersburg this boy was": [65535, 0], "this boy was well": [65535, 0], "boy was well dressed": [65535, 0], "was well dressed too": [65535, 0], "well dressed too well": [65535, 0], "dressed too well dressed": [65535, 0], "too well dressed on": [65535, 0], "well dressed on a": [65535, 0], "dressed on a week": [65535, 0], "on a week day": [65535, 0], "a week day this": [65535, 0], "week day this was": [65535, 0], "day this was simply": [65535, 0], "this was simply astounding": [65535, 0], "was simply astounding his": [65535, 0], "simply astounding his cap": [65535, 0], "astounding his cap was": [65535, 0], "his cap was a": [65535, 0], "cap was a dainty": [65535, 0], "was a dainty thing": [65535, 0], "a dainty thing his": [65535, 0], "dainty thing his closebuttoned": [65535, 0], "thing his closebuttoned blue": [65535, 0], "his closebuttoned blue cloth": [65535, 0], "closebuttoned blue cloth roundabout": [65535, 0], "blue cloth roundabout was": [65535, 0], "cloth roundabout was new": [65535, 0], "roundabout was new and": [65535, 0], "was new and natty": [65535, 0], "new and natty and": [65535, 0], "and natty and so": [65535, 0], "natty and so were": [65535, 0], "and so were his": [65535, 0], "so were his pantaloons": [65535, 0], "were his pantaloons he": [65535, 0], "his pantaloons he had": [65535, 0], "pantaloons he had shoes": [65535, 0], "he had shoes on": [65535, 0], "had shoes on and": [65535, 0], "shoes on and it": [65535, 0], "on and it was": [65535, 0], "and it was only": [65535, 0], "it was only friday": [65535, 0], "was only friday he": [65535, 0], "only friday he even": [65535, 0], "friday he even wore": [65535, 0], "he even wore a": [65535, 0], "even wore a necktie": [65535, 0], "wore a necktie a": [65535, 0], "a necktie a bright": [65535, 0], "necktie a bright bit": [65535, 0], "a bright bit of": [65535, 0], "bright bit of ribbon": [65535, 0], "bit of ribbon he": [65535, 0], "of ribbon he had": [65535, 0], "ribbon he had a": [65535, 0], "he had a citified": [65535, 0], "had a citified air": [65535, 0], "a citified air about": [65535, 0], "citified air about him": [65535, 0], "air about him that": [65535, 0], "about him that ate": [65535, 0], "him that ate into": [65535, 0], "that ate into tom's": [65535, 0], "ate into tom's vitals": [65535, 0], "into tom's vitals the": [65535, 0], "tom's vitals the more": [65535, 0], "vitals the more tom": [65535, 0], "the more tom stared": [65535, 0], "more tom stared at": [65535, 0], "tom stared at the": [65535, 0], "stared at the splendid": [65535, 0], "at the splendid marvel": [65535, 0], "the splendid marvel the": [65535, 0], "splendid marvel the higher": [65535, 0], "marvel the higher he": [65535, 0], "the higher he turned": [65535, 0], "higher he turned up": [65535, 0], "he turned up his": [65535, 0], "turned up his nose": [65535, 0], "up his nose at": [65535, 0], "his nose at his": [65535, 0], "nose at his finery": [65535, 0], "at his finery and": [65535, 0], "his finery and the": [65535, 0], "finery and the shabbier": [65535, 0], "and the shabbier and": [65535, 0], "the shabbier and shabbier": [65535, 0], "shabbier and shabbier his": [65535, 0], "and shabbier his own": [65535, 0], "shabbier his own outfit": [65535, 0], "his own outfit seemed": [65535, 0], "own outfit seemed to": [65535, 0], "outfit seemed to him": [65535, 0], "seemed to him to": [65535, 0], "to him to grow": [65535, 0], "him to grow neither": [65535, 0], "to grow neither boy": [65535, 0], "grow neither boy spoke": [65535, 0], "neither boy spoke if": [65535, 0], "boy spoke if one": [65535, 0], "spoke if one moved": [65535, 0], "if one moved the": [65535, 0], "one moved the other": [65535, 0], "moved the other moved": [65535, 0], "the other moved but": [65535, 0], "other moved but only": [65535, 0], "moved but only sidewise": [65535, 0], "but only sidewise in": [65535, 0], "only sidewise in a": [65535, 0], "sidewise in a circle": [65535, 0], "in a circle they": [65535, 0], "a circle they kept": [65535, 0], "circle they kept face": [65535, 0], "they kept face to": [65535, 0], "kept face to face": [65535, 0], "face to face and": [65535, 0], "to face and eye": [65535, 0], "face and eye to": [65535, 0], "and eye to eye": [65535, 0], "eye to eye all": [65535, 0], "to eye all the": [65535, 0], "eye all the time": [65535, 0], "all the time finally": [65535, 0], "the time finally tom": [65535, 0], "time finally tom said": [65535, 0], "finally tom said i": [65535, 0], "tom said i can": [65535, 0], "said i can lick": [65535, 0], "i can lick you": [65535, 0], "can lick you i'd": [65535, 0], "lick you i'd like": [65535, 0], "you i'd like to": [65535, 0], "i'd like to see": [65535, 0], "like to see you": [65535, 0], "to see you try": [65535, 0], "see you try it": [65535, 0], "you try it well": [65535, 0], "try it well i": [65535, 0], "it well i can": [65535, 0], "well i can do": [65535, 0], "i can do it": [65535, 0], "can do it no": [65535, 0], "do it no you": [65535, 0], "it no you can't": [65535, 0], "no you can't either": [65535, 0], "you can't either yes": [65535, 0], "can't either yes i": [65535, 0], "either yes i can": [65535, 0], "yes i can no": [65535, 0], "i can no you": [65535, 0], "can no you can't": [65535, 0], "no you can't i": [65535, 0], "you can't i can": [65535, 0], "can't i can you": [65535, 0], "i can you can't": [65535, 0], "can you can't can": [65535, 0], "you can't can can't": [65535, 0], "can't can can't an": [65535, 0], "can can't an uncomfortable": [65535, 0], "can't an uncomfortable pause": [65535, 0], "an uncomfortable pause then": [65535, 0], "uncomfortable pause then tom": [65535, 0], "pause then tom said": [65535, 0], "then tom said what's": [65535, 0], "tom said what's your": [65535, 0], "said what's your name": [65535, 0], "what's your name 'tisn't": [65535, 0], "your name 'tisn't any": [65535, 0], "name 'tisn't any of": [65535, 0], "'tisn't any of your": [65535, 0], "any of your business": [65535, 0], "of your business maybe": [65535, 0], "your business maybe well": [65535, 0], "business maybe well i": [65535, 0], "maybe well i 'low": [65535, 0], "well i 'low i'll": [65535, 0], "i 'low i'll make": [65535, 0], "'low i'll make it": [65535, 0], "i'll make it my": [65535, 0], "make it my business": [65535, 0], "it my business well": [65535, 0], "my business well why": [65535, 0], "business well why don't": [65535, 0], "why don't you if": [65535, 0], "don't you if you": [65535, 0], "you if you say": [65535, 0], "if you say much": [65535, 0], "you say much i": [65535, 0], "say much i will": [65535, 0], "much i will much": [65535, 0], "i will much much": [65535, 0], "will much much much": [65535, 0], "much much much there": [65535, 0], "much much there now": [65535, 0], "much there now oh": [65535, 0], "there now oh you": [65535, 0], "now oh you think": [65535, 0], "oh you think you're": [65535, 0], "you think you're mighty": [65535, 0], "think you're mighty smart": [65535, 0], "you're mighty smart don't": [65535, 0], "mighty smart don't you": [65535, 0], "smart don't you i": [65535, 0], "don't you i could": [65535, 0], "you i could lick": [65535, 0], "i could lick you": [65535, 0], "could lick you with": [65535, 0], "lick you with one": [65535, 0], "you with one hand": [65535, 0], "with one hand tied": [65535, 0], "one hand tied behind": [65535, 0], "hand tied behind me": [65535, 0], "tied behind me if": [65535, 0], "behind me if i": [65535, 0], "me if i wanted": [65535, 0], "why don't you do": [65535, 0], "don't you do it": [65535, 0], "you do it you": [65535, 0], "do it you say": [65535, 0], "it you say you": [65535, 0], "you say you can": [65535, 0], "say you can do": [65535, 0], "you can do it": [65535, 0], "can do it well": [65535, 0], "do it well i": [65535, 0], "it well i will": [65535, 0], "well i will if": [65535, 0], "i will if you": [65535, 0], "will if you fool": [65535, 0], "if you fool with": [65535, 0], "you fool with me": [65535, 0], "fool with me oh": [65535, 0], "with me oh yes": [65535, 0], "me oh yes i've": [65535, 0], "oh yes i've seen": [65535, 0], "yes i've seen whole": [65535, 0], "i've seen whole families": [65535, 0], "seen whole families in": [65535, 0], "whole families in the": [65535, 0], "families in the same": [65535, 0], "in the same fix": [65535, 0], "the same fix smarty": [65535, 0], "same fix smarty you": [65535, 0], "fix smarty you think": [65535, 0], "smarty you think you're": [65535, 0], "you think you're some": [65535, 0], "think you're some now": [65535, 0], "you're some now don't": [65535, 0], "some now don't you": [65535, 0], "now don't you oh": [65535, 0], "don't you oh what": [65535, 0], "you oh what a": [65535, 0], "oh what a hat": [65535, 0], "what a hat you": [65535, 0], "a hat you can": [65535, 0], "hat you can lump": [65535, 0], "you can lump that": [65535, 0], "can lump that hat": [65535, 0], "lump that hat if": [65535, 0], "that hat if you": [65535, 0], "hat if you don't": [65535, 0], "if you don't like": [65535, 0], "you don't like it": [65535, 0], "don't like it i": [65535, 0], "like it i dare": [65535, 0], "it i dare you": [65535, 0], "i dare you to": [65535, 0], "dare you to knock": [65535, 0], "you to knock it": [65535, 0], "to knock it off": [65535, 0], "knock it off and": [65535, 0], "it off and anybody": [65535, 0], "off and anybody that'll": [65535, 0], "and anybody that'll take": [65535, 0], "anybody that'll take a": [65535, 0], "that'll take a dare": [65535, 0], "take a dare will": [65535, 0], "a dare will suck": [65535, 0], "dare will suck eggs": [65535, 0], "will suck eggs you're": [65535, 0], "suck eggs you're a": [65535, 0], "eggs you're a liar": [65535, 0], "you're a liar you're": [65535, 0], "a liar you're another": [65535, 0], "liar you're another you're": [65535, 0], "you're another you're a": [65535, 0], "another you're a fighting": [65535, 0], "you're a fighting liar": [65535, 0], "a fighting liar and": [65535, 0], "fighting liar and dasn't": [65535, 0], "liar and dasn't take": [65535, 0], "and dasn't take it": [65535, 0], "dasn't take it up": [65535, 0], "take it up aw": [65535, 0], "it up aw take": [65535, 0], "up aw take a": [65535, 0], "aw take a walk": [65535, 0], "take a walk say": [65535, 0], "a walk say if": [65535, 0], "walk say if you": [65535, 0], "say if you give": [65535, 0], "if you give me": [65535, 0], "you give me much": [65535, 0], "give me much more": [65535, 0], "me much more of": [65535, 0], "much more of your": [65535, 0], "more of your sass": [65535, 0], "of your sass i'll": [65535, 0], "your sass i'll take": [65535, 0], "sass i'll take and": [65535, 0], "i'll take and bounce": [65535, 0], "take and bounce a": [65535, 0], "and bounce a rock": [65535, 0], "bounce a rock off'n": [65535, 0], "a rock off'n your": [65535, 0], "rock off'n your head": [65535, 0], "off'n your head oh": [65535, 0], "your head oh of": [65535, 0], "head oh of course": [65535, 0], "oh of course you": [65535, 0], "of course you will": [65535, 0], "course you will well": [65535, 0], "you will well i": [65535, 0], "will well i will": [65535, 0], "well i will well": [65535, 0], "i will well why": [65535, 0], "will well why don't": [65535, 0], "you do it then": [65535, 0], "do it then what": [65535, 0], "it then what do": [65535, 0], "then what do you": [65535, 0], "what do you keep": [65535, 0], "do you keep saying": [65535, 0], "you keep saying you": [65535, 0], "keep saying you will": [65535, 0], "saying you will for": [65535, 0], "you will for why": [65535, 0], "will for why don't": [65535, 0], "for why don't you": [65535, 0], "you do it it's": [65535, 0], "do it it's because": [65535, 0], "it it's because you're": [65535, 0], "it's because you're afraid": [65535, 0], "because you're afraid i": [65535, 0], "you're afraid i ain't": [65535, 0], "afraid i ain't afraid": [65535, 0], "i ain't afraid you": [65535, 0], "ain't afraid you are": [65535, 0], "afraid you are i": [65535, 0], "you are i ain't": [65535, 0], "are i ain't you": [65535, 0], "i ain't you are": [65535, 0], "ain't you are another": [65535, 0], "you are another pause": [65535, 0], "are another pause and": [65535, 0], "another pause and more": [65535, 0], "pause and more eying": [65535, 0], "and more eying and": [65535, 0], "more eying and sidling": [65535, 0], "eying and sidling around": [65535, 0], "and sidling around each": [65535, 0], "sidling around each other": [65535, 0], "around each other presently": [65535, 0], "each other presently they": [65535, 0], "other presently they were": [65535, 0], "presently they were shoulder": [65535, 0], "they were shoulder to": [65535, 0], "were shoulder to shoulder": [65535, 0], "shoulder to shoulder tom": [65535, 0], "to shoulder tom said": [65535, 0], "shoulder tom said get": [65535, 0], "tom said get away": [65535, 0], "said get away from": [65535, 0], "get away from here": [65535, 0], "away from here go": [65535, 0], "from here go away": [65535, 0], "here go away yourself": [65535, 0], "go away yourself i": [65535, 0], "away yourself i won't": [65535, 0], "yourself i won't i": [65535, 0], "i won't i won't": [65535, 0], "won't i won't either": [65535, 0], "i won't either so": [65535, 0], "won't either so they": [65535, 0], "either so they stood": [65535, 0], "so they stood each": [65535, 0], "they stood each with": [65535, 0], "stood each with a": [65535, 0], "each with a foot": [65535, 0], "with a foot placed": [65535, 0], "a foot placed at": [65535, 0], "foot placed at an": [65535, 0], "placed at an angle": [65535, 0], "at an angle as": [65535, 0], "an angle as a": [65535, 0], "angle as a brace": [65535, 0], "as a brace and": [65535, 0], "a brace and both": [65535, 0], "brace and both shoving": [65535, 0], "and both shoving with": [65535, 0], "both shoving with might": [65535, 0], "shoving with might and": [65535, 0], "with might and main": [65535, 0], "might and main and": [65535, 0], "and main and glowering": [65535, 0], "main and glowering at": [65535, 0], "and glowering at each": [65535, 0], "glowering at each other": [65535, 0], "at each other with": [65535, 0], "each other with hate": [65535, 0], "other with hate but": [65535, 0], "with hate but neither": [65535, 0], "hate but neither could": [65535, 0], "but neither could get": [65535, 0], "neither could get an": [65535, 0], "could get an advantage": [65535, 0], "get an advantage after": [65535, 0], "an advantage after struggling": [65535, 0], "advantage after struggling till": [65535, 0], "after struggling till both": [65535, 0], "struggling till both were": [65535, 0], "till both were hot": [65535, 0], "both were hot and": [65535, 0], "were hot and flushed": [65535, 0], "hot and flushed each": [65535, 0], "and flushed each relaxed": [65535, 0], "flushed each relaxed his": [65535, 0], "each relaxed his strain": [65535, 0], "relaxed his strain with": [65535, 0], "his strain with watchful": [65535, 0], "strain with watchful caution": [65535, 0], "with watchful caution and": [65535, 0], "watchful caution and tom": [65535, 0], "caution and tom said": [65535, 0], "and tom said you're": [65535, 0], "tom said you're a": [65535, 0], "said you're a coward": [65535, 0], "you're a coward and": [65535, 0], "a coward and a": [65535, 0], "coward and a pup": [65535, 0], "and a pup i'll": [65535, 0], "a pup i'll tell": [65535, 0], "pup i'll tell my": [65535, 0], "i'll tell my big": [65535, 0], "tell my big brother": [65535, 0], "my big brother on": [65535, 0], "big brother on you": [65535, 0], "brother on you and": [65535, 0], "on you and he": [65535, 0], "you and he can": [65535, 0], "and he can thrash": [65535, 0], "he can thrash you": [65535, 0], "can thrash you with": [65535, 0], "thrash you with his": [65535, 0], "you with his little": [65535, 0], "with his little finger": [65535, 0], "his little finger and": [65535, 0], "little finger and i'll": [65535, 0], "finger and i'll make": [65535, 0], "and i'll make him": [65535, 0], "i'll make him do": [65535, 0], "make him do it": [65535, 0], "him do it too": [65535, 0], "do it too what": [65535, 0], "it too what do": [65535, 0], "too what do i": [65535, 0], "what do i care": [65535, 0], "do i care for": [65535, 0], "i care for your": [65535, 0], "care for your big": [65535, 0], "for your big brother": [65535, 0], "your big brother i've": [65535, 0], "big brother i've got": [65535, 0], "brother i've got a": [65535, 0], "i've got a brother": [65535, 0], "got a brother that's": [65535, 0], "a brother that's bigger": [65535, 0], "brother that's bigger than": [65535, 0], "that's bigger than he": [65535, 0], "bigger than he is": [65535, 0], "than he is and": [65535, 0], "he is and what's": [65535, 0], "is and what's more": [65535, 0], "and what's more he": [65535, 0], "what's more he can": [65535, 0], "more he can throw": [65535, 0], "he can throw him": [65535, 0], "can throw him over": [65535, 0], "throw him over that": [65535, 0], "him over that fence": [65535, 0], "over that fence too": [65535, 0], "that fence too both": [65535, 0], "fence too both brothers": [65535, 0], "too both brothers were": [65535, 0], "both brothers were imaginary": [65535, 0], "brothers were imaginary that's": [65535, 0], "were imaginary that's a": [65535, 0], "imaginary that's a lie": [65535, 0], "that's a lie your": [65535, 0], "a lie your saying": [65535, 0], "lie your saying so": [65535, 0], "your saying so don't": [65535, 0], "saying so don't make": [65535, 0], "so don't make it": [65535, 0], "don't make it so": [65535, 0], "make it so tom": [65535, 0], "it so tom drew": [65535, 0], "so tom drew a": [65535, 0], "tom drew a line": [65535, 0], "drew a line in": [65535, 0], "a line in the": [65535, 0], "line in the dust": [65535, 0], "in the dust with": [65535, 0], "the dust with his": [65535, 0], "dust with his big": [65535, 0], "with his big toe": [65535, 0], "his big toe and": [65535, 0], "big toe and said": [65535, 0], "toe and said i": [65535, 0], "and said i dare": [65535, 0], "said i dare you": [65535, 0], "dare you to step": [65535, 0], "you to step over": [65535, 0], "to step over that": [65535, 0], "step over that and": [65535, 0], "over that and i'll": [65535, 0], "that and i'll lick": [65535, 0], "and i'll lick you": [65535, 0], "i'll lick you till": [65535, 0], "lick you till you": [65535, 0], "you till you can't": [65535, 0], "till you can't stand": [65535, 0], "you can't stand up": [65535, 0], "can't stand up anybody": [65535, 0], "stand up anybody that'll": [65535, 0], "up anybody that'll take": [65535, 0], "a dare will steal": [65535, 0], "dare will steal sheep": [65535, 0], "will steal sheep the": [65535, 0], "steal sheep the new": [65535, 0], "sheep the new boy": [65535, 0], "the new boy stepped": [65535, 0], "new boy stepped over": [65535, 0], "boy stepped over promptly": [65535, 0], "stepped over promptly and": [65535, 0], "over promptly and said": [65535, 0], "promptly and said now": [65535, 0], "and said now you": [65535, 0], "said now you said": [65535, 0], "now you said you'd": [65535, 0], "you said you'd do": [65535, 0], "said you'd do it": [65535, 0], "you'd do it now": [65535, 0], "do it now let's": [65535, 0], "it now let's see": [65535, 0], "now let's see you": [65535, 0], "let's see you do": [65535, 0], "see you do it": [65535, 0], "you do it don't": [65535, 0], "do it don't you": [65535, 0], "it don't you crowd": [65535, 0], "don't you crowd me": [65535, 0], "you crowd me now": [65535, 0], "crowd me now you": [65535, 0], "me now you better": [65535, 0], "now you better look": [65535, 0], "you better look out": [65535, 0], "better look out well": [65535, 0], "look out well you": [65535, 0], "out well you said": [65535, 0], "well you said you'd": [65535, 0], "you'd do it why": [65535, 0], "do it why don't": [65535, 0], "it why don't you": [65535, 0], "you do it by": [65535, 0], "do it by jingo": [65535, 0], "it by jingo for": [65535, 0], "by jingo for two": [65535, 0], "jingo for two cents": [65535, 0], "for two cents i": [65535, 0], "two cents i will": [65535, 0], "cents i will do": [65535, 0], "i will do it": [65535, 0], "will do it the": [65535, 0], "do it the new": [65535, 0], "it the new boy": [65535, 0], "the new boy took": [65535, 0], "new boy took two": [65535, 0], "boy took two broad": [65535, 0], "took two broad coppers": [65535, 0], "two broad coppers out": [65535, 0], "broad coppers out of": [65535, 0], "coppers out of his": [65535, 0], "of his pocket and": [65535, 0], "his pocket and held": [65535, 0], "pocket and held them": [65535, 0], "and held them out": [65535, 0], "held them out with": [65535, 0], "them out with derision": [65535, 0], "out with derision tom": [65535, 0], "with derision tom struck": [65535, 0], "derision tom struck them": [65535, 0], "tom struck them to": [65535, 0], "struck them to the": [65535, 0], "them to the ground": [65535, 0], "to the ground in": [65535, 0], "the ground in an": [65535, 0], "ground in an instant": [65535, 0], "in an instant both": [65535, 0], "an instant both boys": [65535, 0], "instant both boys were": [65535, 0], "both boys were rolling": [65535, 0], "boys were rolling and": [65535, 0], "were rolling and tumbling": [65535, 0], "rolling and tumbling in": [65535, 0], "and tumbling in the": [65535, 0], "tumbling in the dirt": [65535, 0], "in the dirt gripped": [65535, 0], "the dirt gripped together": [65535, 0], "dirt gripped together like": [65535, 0], "gripped together like cats": [65535, 0], "together like cats and": [65535, 0], "like cats and for": [65535, 0], "cats and for the": [65535, 0], "and for the space": [65535, 0], "of a minute they": [65535, 0], "a minute they tugged": [65535, 0], "minute they tugged and": [65535, 0], "they tugged and tore": [65535, 0], "tugged and tore at": [65535, 0], "and tore at each": [65535, 0], "tore at each other's": [65535, 0], "at each other's hair": [65535, 0], "each other's hair and": [65535, 0], "other's hair and clothes": [65535, 0], "hair and clothes punched": [65535, 0], "and clothes punched and": [65535, 0], "clothes punched and scratched": [65535, 0], "punched and scratched each": [65535, 0], "and scratched each other's": [65535, 0], "scratched each other's nose": [65535, 0], "each other's nose and": [65535, 0], "other's nose and covered": [65535, 0], "nose and covered themselves": [65535, 0], "and covered themselves with": [65535, 0], "covered themselves with dust": [65535, 0], "themselves with dust and": [65535, 0], "with dust and glory": [65535, 0], "dust and glory presently": [65535, 0], "and glory presently the": [65535, 0], "glory presently the confusion": [65535, 0], "presently the confusion took": [65535, 0], "the confusion took form": [65535, 0], "confusion took form and": [65535, 0], "took form and through": [65535, 0], "form and through the": [65535, 0], "and through the fog": [65535, 0], "through the fog of": [65535, 0], "the fog of battle": [65535, 0], "fog of battle tom": [65535, 0], "of battle tom appeared": [65535, 0], "battle tom appeared seated": [65535, 0], "tom appeared seated astride": [65535, 0], "appeared seated astride the": [65535, 0], "seated astride the new": [65535, 0], "astride the new boy": [65535, 0], "the new boy and": [65535, 0], "new boy and pounding": [65535, 0], "boy and pounding him": [65535, 0], "and pounding him with": [65535, 0], "pounding him with his": [65535, 0], "him with his fists": [65535, 0], "with his fists holler": [65535, 0], "his fists holler 'nuff": [65535, 0], "fists holler 'nuff said": [65535, 0], "holler 'nuff said he": [65535, 0], "'nuff said he the": [65535, 0], "said he the boy": [65535, 0], "he the boy only": [65535, 0], "the boy only struggled": [65535, 0], "boy only struggled to": [65535, 0], "only struggled to free": [65535, 0], "struggled to free himself": [65535, 0], "to free himself he": [65535, 0], "free himself he was": [65535, 0], "himself he was crying": [65535, 0], "he was crying mainly": [65535, 0], "was crying mainly from": [65535, 0], "crying mainly from rage": [65535, 0], "mainly from rage holler": [65535, 0], "from rage holler 'nuff": [65535, 0], "rage holler 'nuff and": [65535, 0], "holler 'nuff and the": [65535, 0], "'nuff and the pounding": [65535, 0], "and the pounding went": [65535, 0], "the pounding went on": [65535, 0], "pounding went on at": [65535, 0], "went on at last": [65535, 0], "on at last the": [65535, 0], "at last the stranger": [65535, 0], "last the stranger got": [65535, 0], "the stranger got out": [65535, 0], "stranger got out a": [65535, 0], "got out a smothered": [65535, 0], "out a smothered 'nuff": [65535, 0], "a smothered 'nuff and": [65535, 0], "smothered 'nuff and tom": [65535, 0], "'nuff and tom let": [65535, 0], "and tom let him": [65535, 0], "tom let him up": [65535, 0], "let him up and": [65535, 0], "him up and said": [65535, 0], "up and said now": [65535, 0], "and said now that'll": [65535, 0], "said now that'll learn": [65535, 0], "now that'll learn you": [65535, 0], "that'll learn you better": [65535, 0], "learn you better look": [65535, 0], "better look out who": [65535, 0], "look out who you're": [65535, 0], "out who you're fooling": [65535, 0], "who you're fooling with": [65535, 0], "you're fooling with next": [65535, 0], "fooling with next time": [65535, 0], "with next time the": [65535, 0], "next time the new": [65535, 0], "time the new boy": [65535, 0], "the new boy went": [65535, 0], "new boy went off": [65535, 0], "boy went off brushing": [65535, 0], "went off brushing the": [65535, 0], "off brushing the dust": [65535, 0], "brushing the dust from": [65535, 0], "the dust from his": [65535, 0], "dust from his clothes": [65535, 0], "from his clothes sobbing": [65535, 0], "his clothes sobbing snuffling": [65535, 0], "clothes sobbing snuffling and": [65535, 0], "sobbing snuffling and occasionally": [65535, 0], "snuffling and occasionally looking": [65535, 0], "and occasionally looking back": [65535, 0], "occasionally looking back and": [65535, 0], "looking back and shaking": [65535, 0], "back and shaking his": [65535, 0], "and shaking his head": [65535, 0], "shaking his head and": [65535, 0], "his head and threatening": [65535, 0], "head and threatening what": [65535, 0], "and threatening what he": [65535, 0], "threatening what he would": [65535, 0], "what he would do": [65535, 0], "he would do to": [65535, 0], "would do to tom": [65535, 0], "do to tom the": [65535, 0], "to tom the next": [65535, 0], "tom the next time": [65535, 0], "the next time he": [65535, 0], "next time he caught": [65535, 0], "time he caught him": [65535, 0], "he caught him out": [65535, 0], "caught him out to": [65535, 0], "him out to which": [65535, 0], "out to which tom": [65535, 0], "to which tom responded": [65535, 0], "which tom responded with": [65535, 0], "tom responded with jeers": [65535, 0], "responded with jeers and": [65535, 0], "with jeers and started": [65535, 0], "jeers and started off": [65535, 0], "and started off in": [65535, 0], "started off in high": [65535, 0], "off in high feather": [65535, 0], "in high feather and": [65535, 0], "high feather and as": [65535, 0], "feather and as soon": [65535, 0], "and as soon as": [65535, 0], "as soon as his": [65535, 0], "soon as his back": [65535, 0], "as his back was": [65535, 0], "his back was turned": [65535, 0], "back was turned the": [65535, 0], "was turned the new": [65535, 0], "turned the new boy": [65535, 0], "the new boy snatched": [65535, 0], "new boy snatched up": [65535, 0], "boy snatched up a": [65535, 0], "snatched up a stone": [65535, 0], "up a stone threw": [65535, 0], "a stone threw it": [65535, 0], "stone threw it and": [65535, 0], "threw it and hit": [65535, 0], "it and hit him": [65535, 0], "and hit him between": [65535, 0], "hit him between the": [65535, 0], "him between the shoulders": [65535, 0], "between the shoulders and": [65535, 0], "the shoulders and then": [65535, 0], "shoulders and then turned": [65535, 0], "and then turned tail": [65535, 0], "then turned tail and": [65535, 0], "turned tail and ran": [65535, 0], "tail and ran like": [65535, 0], "and ran like an": [65535, 0], "ran like an antelope": [65535, 0], "like an antelope tom": [65535, 0], "an antelope tom chased": [65535, 0], "antelope tom chased the": [65535, 0], "tom chased the traitor": [65535, 0], "chased the traitor home": [65535, 0], "the traitor home and": [65535, 0], "traitor home and thus": [65535, 0], "home and thus found": [65535, 0], "and thus found out": [65535, 0], "thus found out where": [65535, 0], "found out where he": [65535, 0], "out where he lived": [65535, 0], "where he lived he": [65535, 0], "he lived he then": [65535, 0], "lived he then held": [65535, 0], "he then held a": [65535, 0], "then held a position": [65535, 0], "held a position at": [65535, 0], "a position at the": [65535, 0], "position at the gate": [65535, 0], "at the gate for": [65535, 0], "the gate for some": [65535, 0], "gate for some time": [65535, 0], "for some time daring": [65535, 0], "some time daring the": [65535, 0], "time daring the enemy": [65535, 0], "daring the enemy to": [65535, 0], "the enemy to come": [65535, 0], "enemy to come outside": [65535, 0], "to come outside but": [65535, 0], "come outside but the": [65535, 0], "outside but the enemy": [65535, 0], "but the enemy only": [65535, 0], "the enemy only made": [65535, 0], "enemy only made faces": [65535, 0], "only made faces at": [65535, 0], "made faces at him": [65535, 0], "faces at him through": [65535, 0], "at him through the": [65535, 0], "him through the window": [65535, 0], "through the window and": [65535, 0], "the window and declined": [65535, 0], "window and declined at": [65535, 0], "and declined at last": [65535, 0], "declined at last the": [65535, 0], "at last the enemy's": [65535, 0], "last the enemy's mother": [65535, 0], "the enemy's mother appeared": [65535, 0], "enemy's mother appeared and": [65535, 0], "mother appeared and called": [65535, 0], "appeared and called tom": [65535, 0], "and called tom a": [65535, 0], "called tom a bad": [65535, 0], "tom a bad vicious": [65535, 0], "a bad vicious vulgar": [65535, 0], "bad vicious vulgar child": [65535, 0], "vicious vulgar child and": [65535, 0], "vulgar child and ordered": [65535, 0], "child and ordered him": [65535, 0], "and ordered him away": [65535, 0], "ordered him away so": [65535, 0], "him away so he": [65535, 0], "away so he went": [65535, 0], "so he went away": [65535, 0], "he went away but": [65535, 0], "went away but he": [65535, 0], "away but he said": [65535, 0], "but he said he": [65535, 0], "he said he 'lowed": [65535, 0], "said he 'lowed to": [65535, 0], "he 'lowed to lay": [65535, 0], "'lowed to lay for": [65535, 0], "to lay for that": [65535, 0], "lay for that boy": [65535, 0], "for that boy he": [65535, 0], "that boy he got": [65535, 0], "boy he got home": [65535, 0], "he got home pretty": [65535, 0], "got home pretty late": [65535, 0], "home pretty late that": [65535, 0], "pretty late that night": [65535, 0], "late that night and": [65535, 0], "that night and when": [65535, 0], "night and when he": [65535, 0], "and when he climbed": [65535, 0], "when he climbed cautiously": [65535, 0], "he climbed cautiously in": [65535, 0], "climbed cautiously in at": [65535, 0], "cautiously in at the": [65535, 0], "in at the window": [65535, 0], "at the window he": [65535, 0], "the window he uncovered": [65535, 0], "window he uncovered an": [65535, 0], "he uncovered an ambuscade": [65535, 0], "uncovered an ambuscade in": [65535, 0], "an ambuscade in the": [65535, 0], "ambuscade in the person": [65535, 0], "in the person of": [65535, 0], "the person of his": [65535, 0], "person of his aunt": [65535, 0], "of his aunt and": [65535, 0], "his aunt and when": [65535, 0], "aunt and when she": [65535, 0], "and when she saw": [65535, 0], "when she saw the": [65535, 0], "she saw the state": [65535, 0], "saw the state his": [65535, 0], "the state his clothes": [65535, 0], "state his clothes were": [65535, 0], "his clothes were in": [65535, 0], "clothes were in her": [65535, 0], "were in her resolution": [65535, 0], "in her resolution to": [65535, 0], "her resolution to turn": [65535, 0], "resolution to turn his": [65535, 0], "to turn his saturday": [65535, 0], "turn his saturday holiday": [65535, 0], "his saturday holiday into": [65535, 0], "saturday holiday into captivity": [65535, 0], "holiday into captivity at": [65535, 0], "into captivity at hard": [65535, 0], "captivity at hard labor": [65535, 0], "at hard labor became": [65535, 0], "hard labor became adamantine": [65535, 0], "labor became adamantine in": [65535, 0], "became adamantine in its": [65535, 0], "adamantine in its firmness": [65535, 0], "tom no answer tom no": [65535, 0], "no answer tom no answer": [65535, 0], "answer tom no answer what's": [65535, 0], "tom no answer what's gone": [65535, 0], "no answer what's gone with": [65535, 0], "answer what's gone with that": [65535, 0], "what's gone with that boy": [65535, 0], "gone with that boy i": [65535, 0], "with that boy i wonder": [65535, 0], "that boy i wonder you": [65535, 0], "boy i wonder you tom": [65535, 0], "i wonder you tom no": [65535, 0], "wonder you tom no answer": [65535, 0], "you tom no answer the": [65535, 0], "tom no answer the old": [65535, 0], "no answer the old lady": [65535, 0], "answer the old lady pulled": [65535, 0], "the old lady pulled her": [65535, 0], "old lady pulled her spectacles": [65535, 0], "lady pulled her spectacles down": [65535, 0], "pulled her spectacles down and": [65535, 0], "her spectacles down and looked": [65535, 0], "spectacles down and looked over": [65535, 0], "down and looked over them": [65535, 0], "and looked over them about": [65535, 0], "looked over them about the": [65535, 0], "over them about the room": [65535, 0], "them about the room then": [65535, 0], "about the room then she": [65535, 0], "the room then she put": [65535, 0], "room then she put them": [65535, 0], "then she put them up": [65535, 0], "she put them up and": [65535, 0], "put them up and looked": [65535, 0], "them up and looked out": [65535, 0], "up and looked out under": [65535, 0], "and looked out under them": [65535, 0], "looked out under them she": [65535, 0], "out under them she seldom": [65535, 0], "under them she seldom or": [65535, 0], "them she seldom or never": [65535, 0], "she seldom or never looked": [65535, 0], "seldom or never looked through": [65535, 0], "or never looked through them": [65535, 0], "never looked through them for": [65535, 0], "looked through them for so": [65535, 0], "through them for so small": [65535, 0], "them for so small a": [65535, 0], "for so small a thing": [65535, 0], "so small a thing as": [65535, 0], "small a thing as a": [65535, 0], "a thing as a boy": [65535, 0], "thing as a boy they": [65535, 0], "as a boy they were": [65535, 0], "a boy they were her": [65535, 0], "boy they were her state": [65535, 0], "they were her state pair": [65535, 0], "were her state pair the": [65535, 0], "her state pair the pride": [65535, 0], "state pair the pride of": [65535, 0], "pair the pride of her": [65535, 0], "the pride of her heart": [65535, 0], "pride of her heart and": [65535, 0], "of her heart and were": [65535, 0], "her heart and were built": [65535, 0], "heart and were built for": [65535, 0], "and were built for style": [65535, 0], "were built for style not": [65535, 0], "built for style not service": [65535, 0], "for style not service she": [65535, 0], "style not service she could": [65535, 0], "not service she could have": [65535, 0], "service she could have seen": [65535, 0], "she could have seen through": [65535, 0], "could have seen through a": [65535, 0], "have seen through a pair": [65535, 0], "seen through a pair of": [65535, 0], "through a pair of stove": [65535, 0], "a pair of stove lids": [65535, 0], "pair of stove lids just": [65535, 0], "of stove lids just as": [65535, 0], "stove lids just as well": [65535, 0], "lids just as well she": [65535, 0], "just as well she looked": [65535, 0], "as well she looked perplexed": [65535, 0], "well she looked perplexed for": [65535, 0], "she looked perplexed for a": [65535, 0], "looked perplexed for a moment": [65535, 0], "perplexed for a moment and": [65535, 0], "for a moment and then": [65535, 0], "moment and then said not": [65535, 0], "and then said not fiercely": [65535, 0], "then said not fiercely but": [65535, 0], "said not fiercely but still": [65535, 0], "not fiercely but still loud": [65535, 0], "fiercely but still loud enough": [65535, 0], "but still loud enough for": [65535, 0], "still loud enough for the": [65535, 0], "loud enough for the furniture": [65535, 0], "enough for the furniture to": [65535, 0], "for the furniture to hear": [65535, 0], "the furniture to hear well": [65535, 0], "furniture to hear well i": [65535, 0], "to hear well i lay": [65535, 0], "hear well i lay if": [65535, 0], "well i lay if i": [65535, 0], "i lay if i get": [65535, 0], "lay if i get hold": [65535, 0], "if i get hold of": [65535, 0], "i get hold of you": [65535, 0], "get hold of you i'll": [65535, 0], "hold of you i'll she": [65535, 0], "of you i'll she did": [65535, 0], "you i'll she did not": [65535, 0], "i'll she did not finish": [65535, 0], "she did not finish for": [65535, 0], "did not finish for by": [65535, 0], "not finish for by this": [65535, 0], "finish for by this time": [65535, 0], "for by this time she": [65535, 0], "by this time she was": [65535, 0], "this time she was bending": [65535, 0], "time she was bending down": [65535, 0], "she was bending down and": [65535, 0], "was bending down and punching": [65535, 0], "bending down and punching under": [65535, 0], "down and punching under the": [65535, 0], "and punching under the bed": [65535, 0], "punching under the bed with": [65535, 0], "under the bed with the": [65535, 0], "the bed with the broom": [65535, 0], "bed with the broom and": [65535, 0], "with the broom and so": [65535, 0], "the broom and so she": [65535, 0], "broom and so she needed": [65535, 0], "and so she needed breath": [65535, 0], "so she needed breath to": [65535, 0], "she needed breath to punctuate": [65535, 0], "needed breath to punctuate the": [65535, 0], "breath to punctuate the punches": [65535, 0], "to punctuate the punches with": [65535, 0], "punctuate the punches with she": [65535, 0], "the punches with she resurrected": [65535, 0], "punches with she resurrected nothing": [65535, 0], "with she resurrected nothing but": [65535, 0], "she resurrected nothing but the": [65535, 0], "resurrected nothing but the cat": [65535, 0], "nothing but the cat i": [65535, 0], "but the cat i never": [65535, 0], "the cat i never did": [65535, 0], "cat i never did see": [65535, 0], "i never did see the": [65535, 0], "never did see the beat": [65535, 0], "did see the beat of": [65535, 0], "see the beat of that": [65535, 0], "the beat of that boy": [65535, 0], "beat of that boy she": [65535, 0], "of that boy she went": [65535, 0], "that boy she went to": [65535, 0], "boy she went to the": [65535, 0], "she went to the open": [65535, 0], "went to the open door": [65535, 0], "to the open door and": [65535, 0], "the open door and stood": [65535, 0], "open door and stood in": [65535, 0], "door and stood in it": [65535, 0], "and stood in it and": [65535, 0], "stood in it and looked": [65535, 0], "in it and looked out": [65535, 0], "it and looked out among": [65535, 0], "and looked out among the": [65535, 0], "looked out among the tomato": [65535, 0], "out among the tomato vines": [65535, 0], "among the tomato vines and": [65535, 0], "the tomato vines and jimpson": [65535, 0], "tomato vines and jimpson weeds": [65535, 0], "vines and jimpson weeds that": [65535, 0], "and jimpson weeds that constituted": [65535, 0], "jimpson weeds that constituted the": [65535, 0], "weeds that constituted the garden": [65535, 0], "that constituted the garden no": [65535, 0], "constituted the garden no tom": [65535, 0], "the garden no tom so": [65535, 0], "garden no tom so she": [65535, 0], "no tom so she lifted": [65535, 0], "tom so she lifted up": [65535, 0], "so she lifted up her": [65535, 0], "she lifted up her voice": [65535, 0], "lifted up her voice at": [65535, 0], "up her voice at an": [65535, 0], "her voice at an angle": [65535, 0], "voice at an angle calculated": [65535, 0], "at an angle calculated for": [65535, 0], "an angle calculated for distance": [65535, 0], "angle calculated for distance and": [65535, 0], "calculated for distance and shouted": [65535, 0], "for distance and shouted y": [65535, 0], "distance and shouted y o": [65535, 0], "and shouted y o u": [65535, 0], "shouted y o u u": [65535, 0], "y o u u tom": [65535, 0], "o u u tom there": [65535, 0], "u u tom there was": [65535, 0], "u tom there was a": [65535, 0], "tom there was a slight": [65535, 0], "there was a slight noise": [65535, 0], "was a slight noise behind": [65535, 0], "a slight noise behind her": [65535, 0], "slight noise behind her and": [65535, 0], "noise behind her and she": [65535, 0], "behind her and she turned": [65535, 0], "her and she turned just": [65535, 0], "and she turned just in": [65535, 0], "she turned just in time": [65535, 0], "turned just in time to": [65535, 0], "just in time to seize": [65535, 0], "in time to seize a": [65535, 0], "time to seize a small": [65535, 0], "to seize a small boy": [65535, 0], "seize a small boy by": [65535, 0], "a small boy by the": [65535, 0], "small boy by the slack": [65535, 0], "boy by the slack of": [65535, 0], "by the slack of his": [65535, 0], "the slack of his roundabout": [65535, 0], "slack of his roundabout and": [65535, 0], "of his roundabout and arrest": [65535, 0], "his roundabout and arrest his": [65535, 0], "roundabout and arrest his flight": [65535, 0], "and arrest his flight there": [65535, 0], "arrest his flight there i": [65535, 0], "his flight there i might": [65535, 0], "flight there i might 'a'": [65535, 0], "there i might 'a' thought": [65535, 0], "i might 'a' thought of": [65535, 0], "might 'a' thought of that": [65535, 0], "'a' thought of that closet": [65535, 0], "thought of that closet what": [65535, 0], "of that closet what you": [65535, 0], "that closet what you been": [65535, 0], "closet what you been doing": [65535, 0], "what you been doing in": [65535, 0], "you been doing in there": [65535, 0], "been doing in there nothing": [65535, 0], "doing in there nothing nothing": [65535, 0], "in there nothing nothing look": [65535, 0], "there nothing nothing look at": [65535, 0], "nothing nothing look at your": [65535, 0], "nothing look at your hands": [65535, 0], "look at your hands and": [65535, 0], "at your hands and look": [65535, 0], "your hands and look at": [65535, 0], "hands and look at your": [65535, 0], "and look at your mouth": [65535, 0], "look at your mouth what": [65535, 0], "at your mouth what is": [65535, 0], "your mouth what is that": [65535, 0], "mouth what is that i": [65535, 0], "what is that i don't": [65535, 0], "is that i don't know": [65535, 0], "that i don't know aunt": [65535, 0], "i don't know aunt well": [65535, 0], "don't know aunt well i": [65535, 0], "know aunt well i know": [65535, 0], "aunt well i know it's": [65535, 0], "well i know it's jam": [65535, 0], "i know it's jam that's": [65535, 0], "know it's jam that's what": [65535, 0], "it's jam that's what it": [65535, 0], "jam that's what it is": [65535, 0], "that's what it is forty": [65535, 0], "what it is forty times": [65535, 0], "it is forty times i've": [65535, 0], "is forty times i've said": [65535, 0], "forty times i've said if": [65535, 0], "times i've said if you": [65535, 0], "i've said if you didn't": [65535, 0], "said if you didn't let": [65535, 0], "if you didn't let that": [65535, 0], "you didn't let that jam": [65535, 0], "didn't let that jam alone": [65535, 0], "let that jam alone i'd": [65535, 0], "that jam alone i'd skin": [65535, 0], "jam alone i'd skin you": [65535, 0], "alone i'd skin you hand": [65535, 0], "i'd skin you hand me": [65535, 0], "skin you hand me that": [65535, 0], "you hand me that switch": [65535, 0], "hand me that switch the": [65535, 0], "me that switch the switch": [65535, 0], "that switch the switch hovered": [65535, 0], "switch the switch hovered in": [65535, 0], "the switch hovered in the": [65535, 0], "switch hovered in the air": [65535, 0], "hovered in the air the": [65535, 0], "in the air the peril": [65535, 0], "the air the peril was": [65535, 0], "air the peril was desperate": [65535, 0], "the peril was desperate my": [65535, 0], "peril was desperate my look": [65535, 0], "was desperate my look behind": [65535, 0], "desperate my look behind you": [65535, 0], "my look behind you aunt": [65535, 0], "look behind you aunt the": [65535, 0], "behind you aunt the old": [65535, 0], "you aunt the old lady": [65535, 0], "aunt the old lady whirled": [65535, 0], "the old lady whirled round": [65535, 0], "old lady whirled round and": [65535, 0], "lady whirled round and snatched": [65535, 0], "whirled round and snatched her": [65535, 0], "round and snatched her skirts": [65535, 0], "and snatched her skirts out": [65535, 0], "snatched her skirts out of": [65535, 0], "her skirts out of danger": [65535, 0], "skirts out of danger the": [65535, 0], "out of danger the lad": [65535, 0], "of danger the lad fled": [65535, 0], "danger the lad fled on": [65535, 0], "the lad fled on the": [65535, 0], "lad fled on the instant": [65535, 0], "fled on the instant scrambled": [65535, 0], "on the instant scrambled up": [65535, 0], "the instant scrambled up the": [65535, 0], "instant scrambled up the high": [65535, 0], "scrambled up the high board": [65535, 0], "up the high board fence": [65535, 0], "the high board fence and": [65535, 0], "high board fence and disappeared": [65535, 0], "board fence and disappeared over": [65535, 0], "fence and disappeared over it": [65535, 0], "and disappeared over it his": [65535, 0], "disappeared over it his aunt": [65535, 0], "over it his aunt polly": [65535, 0], "it his aunt polly stood": [65535, 0], "his aunt polly stood surprised": [65535, 0], "aunt polly stood surprised a": [65535, 0], "polly stood surprised a moment": [65535, 0], "stood surprised a moment and": [65535, 0], "surprised a moment and then": [65535, 0], "a moment and then broke": [65535, 0], "moment and then broke into": [65535, 0], "and then broke into a": [65535, 0], "then broke into a gentle": [65535, 0], "broke into a gentle laugh": [65535, 0], "into a gentle laugh hang": [65535, 0], "a gentle laugh hang the": [65535, 0], "gentle laugh hang the boy": [65535, 0], "laugh hang the boy can't": [65535, 0], "hang the boy can't i": [65535, 0], "the boy can't i never": [65535, 0], "boy can't i never learn": [65535, 0], "can't i never learn anything": [65535, 0], "i never learn anything ain't": [65535, 0], "never learn anything ain't he": [65535, 0], "learn anything ain't he played": [65535, 0], "anything ain't he played me": [65535, 0], "ain't he played me tricks": [65535, 0], "he played me tricks enough": [65535, 0], "played me tricks enough like": [65535, 0], "me tricks enough like that": [65535, 0], "tricks enough like that for": [65535, 0], "enough like that for me": [65535, 0], "like that for me to": [65535, 0], "that for me to be": [65535, 0], "for me to be looking": [65535, 0], "me to be looking out": [65535, 0], "to be looking out for": [65535, 0], "be looking out for him": [65535, 0], "looking out for him by": [65535, 0], "out for him by this": [65535, 0], "for him by this time": [65535, 0], "him by this time but": [65535, 0], "by this time but old": [65535, 0], "this time but old fools": [65535, 0], "time but old fools is": [65535, 0], "but old fools is the": [65535, 0], "old fools is the biggest": [65535, 0], "fools is the biggest fools": [65535, 0], "is the biggest fools there": [65535, 0], "the biggest fools there is": [65535, 0], "biggest fools there is can't": [65535, 0], "fools there is can't learn": [65535, 0], "there is can't learn an": [65535, 0], "is can't learn an old": [65535, 0], "can't learn an old dog": [65535, 0], "learn an old dog new": [65535, 0], "an old dog new tricks": [65535, 0], "old dog new tricks as": [65535, 0], "dog new tricks as the": [65535, 0], "new tricks as the saying": [65535, 0], "tricks as the saying is": [65535, 0], "as the saying is but": [65535, 0], "the saying is but my": [65535, 0], "saying is but my goodness": [65535, 0], "is but my goodness he": [65535, 0], "but my goodness he never": [65535, 0], "my goodness he never plays": [65535, 0], "goodness he never plays them": [65535, 0], "he never plays them alike": [65535, 0], "never plays them alike two": [65535, 0], "plays them alike two days": [65535, 0], "them alike two days and": [65535, 0], "alike two days and how": [65535, 0], "two days and how is": [65535, 0], "days and how is a": [65535, 0], "and how is a body": [65535, 0], "how is a body to": [65535, 0], "is a body to know": [65535, 0], "a body to know what's": [65535, 0], "body to know what's coming": [65535, 0], "to know what's coming he": [65535, 0], "know what's coming he 'pears": [65535, 0], "what's coming he 'pears to": [65535, 0], "coming he 'pears to know": [65535, 0], "he 'pears to know just": [65535, 0], "'pears to know just how": [65535, 0], "to know just how long": [65535, 0], "know just how long he": [65535, 0], "just how long he can": [65535, 0], "how long he can torment": [65535, 0], "long he can torment me": [65535, 0], "he can torment me before": [65535, 0], "can torment me before i": [65535, 0], "torment me before i get": [65535, 0], "me before i get my": [65535, 0], "before i get my dander": [65535, 0], "i get my dander up": [65535, 0], "get my dander up and": [65535, 0], "my dander up and he": [65535, 0], "dander up and he knows": [65535, 0], "up and he knows if": [65535, 0], "and he knows if he": [65535, 0], "he knows if he can": [65535, 0], "knows if he can make": [65535, 0], "if he can make out": [65535, 0], "he can make out to": [65535, 0], "can make out to put": [65535, 0], "make out to put me": [65535, 0], "out to put me off": [65535, 0], "to put me off for": [65535, 0], "put me off for a": [65535, 0], "me off for a minute": [65535, 0], "off for a minute or": [65535, 0], "for a minute or make": [65535, 0], "a minute or make me": [65535, 0], "minute or make me laugh": [65535, 0], "or make me laugh it's": [65535, 0], "make me laugh it's all": [65535, 0], "me laugh it's all down": [65535, 0], "laugh it's all down again": [65535, 0], "it's all down again and": [65535, 0], "all down again and i": [65535, 0], "down again and i can't": [65535, 0], "again and i can't hit": [65535, 0], "and i can't hit him": [65535, 0], "i can't hit him a": [65535, 0], "can't hit him a lick": [65535, 0], "hit him a lick i": [65535, 0], "him a lick i ain't": [65535, 0], "a lick i ain't doing": [65535, 0], "lick i ain't doing my": [65535, 0], "i ain't doing my duty": [65535, 0], "ain't doing my duty by": [65535, 0], "doing my duty by that": [65535, 0], "my duty by that boy": [65535, 0], "duty by that boy and": [65535, 0], "by that boy and that's": [65535, 0], "that boy and that's the": [65535, 0], "boy and that's the lord's": [65535, 0], "and that's the lord's truth": [65535, 0], "that's the lord's truth goodness": [65535, 0], "the lord's truth goodness knows": [65535, 0], "lord's truth goodness knows spare": [65535, 0], "truth goodness knows spare the": [65535, 0], "goodness knows spare the rod": [65535, 0], "knows spare the rod and": [65535, 0], "spare the rod and spoil": [65535, 0], "the rod and spoil the": [65535, 0], "rod and spoil the child": [65535, 0], "and spoil the child as": [65535, 0], "spoil the child as the": [65535, 0], "the child as the good": [65535, 0], "child as the good book": [65535, 0], "as the good book says": [65535, 0], "the good book says i'm": [65535, 0], "good book says i'm a": [65535, 0], "book says i'm a laying": [65535, 0], "says i'm a laying up": [65535, 0], "i'm a laying up sin": [65535, 0], "a laying up sin and": [65535, 0], "laying up sin and suffering": [65535, 0], "up sin and suffering for": [65535, 0], "sin and suffering for us": [65535, 0], "and suffering for us both": [65535, 0], "suffering for us both i": [65535, 0], "for us both i know": [65535, 0], "us both i know he's": [65535, 0], "both i know he's full": [65535, 0], "i know he's full of": [65535, 0], "know he's full of the": [65535, 0], "he's full of the old": [65535, 0], "full of the old scratch": [65535, 0], "of the old scratch but": [65535, 0], "the old scratch but laws": [65535, 0], "old scratch but laws a": [65535, 0], "scratch but laws a me": [65535, 0], "but laws a me he's": [65535, 0], "laws a me he's my": [65535, 0], "a me he's my own": [65535, 0], "me he's my own dead": [65535, 0], "he's my own dead sister's": [65535, 0], "my own dead sister's boy": [65535, 0], "own dead sister's boy poor": [65535, 0], "dead sister's boy poor thing": [65535, 0], "sister's boy poor thing and": [65535, 0], "boy poor thing and i": [65535, 0], "poor thing and i ain't": [65535, 0], "thing and i ain't got": [65535, 0], "and i ain't got the": [65535, 0], "i ain't got the heart": [65535, 0], "ain't got the heart to": [65535, 0], "got the heart to lash": [65535, 0], "the heart to lash him": [65535, 0], "heart to lash him somehow": [65535, 0], "to lash him somehow every": [65535, 0], "lash him somehow every time": [65535, 0], "him somehow every time i": [65535, 0], "somehow every time i let": [65535, 0], "every time i let him": [65535, 0], "time i let him off": [65535, 0], "i let him off my": [65535, 0], "let him off my conscience": [65535, 0], "him off my conscience does": [65535, 0], "off my conscience does hurt": [65535, 0], "my conscience does hurt me": [65535, 0], "conscience does hurt me so": [65535, 0], "does hurt me so and": [65535, 0], "hurt me so and every": [65535, 0], "me so and every time": [65535, 0], "so and every time i": [65535, 0], "and every time i hit": [65535, 0], "every time i hit him": [65535, 0], "time i hit him my": [65535, 0], "i hit him my old": [65535, 0], "hit him my old heart": [65535, 0], "him my old heart most": [65535, 0], "my old heart most breaks": [65535, 0], "old heart most breaks well": [65535, 0], "heart most breaks well a": [65535, 0], "most breaks well a well": [65535, 0], "breaks well a well man": [65535, 0], "well a well man that": [65535, 0], "a well man that is": [65535, 0], "well man that is born": [65535, 0], "man that is born of": [65535, 0], "that is born of woman": [65535, 0], "is born of woman is": [65535, 0], "born of woman is of": [65535, 0], "of woman is of few": [65535, 0], "woman is of few days": [65535, 0], "is of few days and": [65535, 0], "of few days and full": [65535, 0], "few days and full of": [65535, 0], "days and full of trouble": [65535, 0], "and full of trouble as": [65535, 0], "full of trouble as the": [65535, 0], "of trouble as the scripture": [65535, 0], "trouble as the scripture says": [65535, 0], "as the scripture says and": [65535, 0], "the scripture says and i": [65535, 0], "scripture says and i reckon": [65535, 0], "says and i reckon it's": [65535, 0], "and i reckon it's so": [65535, 0], "i reckon it's so he'll": [65535, 0], "reckon it's so he'll play": [65535, 0], "it's so he'll play hookey": [65535, 0], "so he'll play hookey this": [65535, 0], "he'll play hookey this evening": [65535, 0], "play hookey this evening and": [65535, 0], "hookey this evening and i'll": [65535, 0], "this evening and i'll just": [65535, 0], "evening and i'll just be": [65535, 0], "and i'll just be obliged": [65535, 0], "i'll just be obliged to": [65535, 0], "just be obliged to make": [65535, 0], "be obliged to make him": [65535, 0], "obliged to make him work": [65535, 0], "to make him work to": [65535, 0], "make him work to morrow": [65535, 0], "him work to morrow to": [65535, 0], "work to morrow to punish": [65535, 0], "to morrow to punish him": [65535, 0], "morrow to punish him it's": [65535, 0], "to punish him it's mighty": [65535, 0], "punish him it's mighty hard": [65535, 0], "him it's mighty hard to": [65535, 0], "it's mighty hard to make": [65535, 0], "mighty hard to make him": [65535, 0], "hard to make him work": [65535, 0], "to make him work saturdays": [65535, 0], "make him work saturdays when": [65535, 0], "him work saturdays when all": [65535, 0], "work saturdays when all the": [65535, 0], "saturdays when all the boys": [65535, 0], "when all the boys is": [65535, 0], "all the boys is having": [65535, 0], "the boys is having holiday": [65535, 0], "boys is having holiday but": [65535, 0], "is having holiday but he": [65535, 0], "having holiday but he hates": [65535, 0], "holiday but he hates work": [65535, 0], "but he hates work more": [65535, 0], "he hates work more than": [65535, 0], "hates work more than he": [65535, 0], "work more than he hates": [65535, 0], "more than he hates anything": [65535, 0], "than he hates anything else": [65535, 0], "he hates anything else and": [65535, 0], "hates anything else and i've": [65535, 0], "anything else and i've got": [65535, 0], "else and i've got to": [65535, 0], "and i've got to do": [65535, 0], "i've got to do some": [65535, 0], "got to do some of": [65535, 0], "to do some of my": [65535, 0], "do some of my duty": [65535, 0], "some of my duty by": [65535, 0], "of my duty by him": [65535, 0], "my duty by him or": [65535, 0], "duty by him or i'll": [65535, 0], "by him or i'll be": [65535, 0], "him or i'll be the": [65535, 0], "or i'll be the ruination": [65535, 0], "i'll be the ruination of": [65535, 0], "be the ruination of the": [65535, 0], "the ruination of the child": [65535, 0], "ruination of the child tom": [65535, 0], "of the child tom did": [65535, 0], "the child tom did play": [65535, 0], "child tom did play hookey": [65535, 0], "tom did play hookey and": [65535, 0], "did play hookey and he": [65535, 0], "play hookey and he had": [65535, 0], "hookey and he had a": [65535, 0], "and he had a very": [65535, 0], "he had a very good": [65535, 0], "had a very good time": [65535, 0], "a very good time he": [65535, 0], "very good time he got": [65535, 0], "good time he got back": [65535, 0], "time he got back home": [65535, 0], "he got back home barely": [65535, 0], "got back home barely in": [65535, 0], "back home barely in season": [65535, 0], "home barely in season to": [65535, 0], "barely in season to help": [65535, 0], "in season to help jim": [65535, 0], "season to help jim the": [65535, 0], "to help jim the small": [65535, 0], "help jim the small colored": [65535, 0], "jim the small colored boy": [65535, 0], "the small colored boy saw": [65535, 0], "small colored boy saw next": [65535, 0], "colored boy saw next day's": [65535, 0], "boy saw next day's wood": [65535, 0], "saw next day's wood and": [65535, 0], "next day's wood and split": [65535, 0], "day's wood and split the": [65535, 0], "wood and split the kindlings": [65535, 0], "and split the kindlings before": [65535, 0], "split the kindlings before supper": [65535, 0], "the kindlings before supper at": [65535, 0], "kindlings before supper at least": [65535, 0], "before supper at least he": [65535, 0], "supper at least he was": [65535, 0], "at least he was there": [65535, 0], "least he was there in": [65535, 0], "he was there in time": [65535, 0], "was there in time to": [65535, 0], "there in time to tell": [65535, 0], "in time to tell his": [65535, 0], "time to tell his adventures": [65535, 0], "to tell his adventures to": [65535, 0], "tell his adventures to jim": [65535, 0], "his adventures to jim while": [65535, 0], "adventures to jim while jim": [65535, 0], "to jim while jim did": [65535, 0], "jim while jim did three": [65535, 0], "while jim did three fourths": [65535, 0], "jim did three fourths of": [65535, 0], "did three fourths of the": [65535, 0], "three fourths of the work": [65535, 0], "fourths of the work tom's": [65535, 0], "of the work tom's younger": [65535, 0], "the work tom's younger brother": [65535, 0], "work tom's younger brother or": [65535, 0], "tom's younger brother or rather": [65535, 0], "younger brother or rather half": [65535, 0], "brother or rather half brother": [65535, 0], "or rather half brother sid": [65535, 0], "rather half brother sid was": [65535, 0], "half brother sid was already": [65535, 0], "brother sid was already through": [65535, 0], "sid was already through with": [65535, 0], "was already through with his": [65535, 0], "already through with his part": [65535, 0], "through with his part of": [65535, 0], "with his part of the": [65535, 0], "his part of the work": [65535, 0], "part of the work picking": [65535, 0], "of the work picking up": [65535, 0], "the work picking up chips": [65535, 0], "work picking up chips for": [65535, 0], "picking up chips for he": [65535, 0], "up chips for he was": [65535, 0], "chips for he was a": [65535, 0], "for he was a quiet": [65535, 0], "he was a quiet boy": [65535, 0], "was a quiet boy and": [65535, 0], "a quiet boy and had": [65535, 0], "quiet boy and had no": [65535, 0], "boy and had no adventurous": [65535, 0], "and had no adventurous troublesome": [65535, 0], "had no adventurous troublesome ways": [65535, 0], "no adventurous troublesome ways while": [65535, 0], "adventurous troublesome ways while tom": [65535, 0], "troublesome ways while tom was": [65535, 0], "ways while tom was eating": [65535, 0], "while tom was eating his": [65535, 0], "tom was eating his supper": [65535, 0], "was eating his supper and": [65535, 0], "eating his supper and stealing": [65535, 0], "his supper and stealing sugar": [65535, 0], "supper and stealing sugar as": [65535, 0], "and stealing sugar as opportunity": [65535, 0], "stealing sugar as opportunity offered": [65535, 0], "sugar as opportunity offered aunt": [65535, 0], "as opportunity offered aunt polly": [65535, 0], "opportunity offered aunt polly asked": [65535, 0], "offered aunt polly asked him": [65535, 0], "aunt polly asked him questions": [65535, 0], "polly asked him questions that": [65535, 0], "asked him questions that were": [65535, 0], "him questions that were full": [65535, 0], "questions that were full of": [65535, 0], "that were full of guile": [65535, 0], "were full of guile and": [65535, 0], "full of guile and very": [65535, 0], "of guile and very deep": [65535, 0], "guile and very deep for": [65535, 0], "and very deep for she": [65535, 0], "very deep for she wanted": [65535, 0], "deep for she wanted to": [65535, 0], "for she wanted to trap": [65535, 0], "she wanted to trap him": [65535, 0], "wanted to trap him into": [65535, 0], "to trap him into damaging": [65535, 0], "trap him into damaging revealments": [65535, 0], "him into damaging revealments like": [65535, 0], "into damaging revealments like many": [65535, 0], "damaging revealments like many other": [65535, 0], "revealments like many other simple": [65535, 0], "like many other simple hearted": [65535, 0], "many other simple hearted souls": [65535, 0], "other simple hearted souls it": [65535, 0], "simple hearted souls it was": [65535, 0], "hearted souls it was her": [65535, 0], "souls it was her pet": [65535, 0], "it was her pet vanity": [65535, 0], "was her pet vanity to": [65535, 0], "her pet vanity to believe": [65535, 0], "pet vanity to believe she": [65535, 0], "vanity to believe she was": [65535, 0], "to believe she was endowed": [65535, 0], "believe she was endowed with": [65535, 0], "she was endowed with a": [65535, 0], "was endowed with a talent": [65535, 0], "endowed with a talent for": [65535, 0], "with a talent for dark": [65535, 0], "a talent for dark and": [65535, 0], "talent for dark and mysterious": [65535, 0], "for dark and mysterious diplomacy": [65535, 0], "dark and mysterious diplomacy and": [65535, 0], "and mysterious diplomacy and she": [65535, 0], "mysterious diplomacy and she loved": [65535, 0], "diplomacy and she loved to": [65535, 0], "and she loved to contemplate": [65535, 0], "she loved to contemplate her": [65535, 0], "loved to contemplate her most": [65535, 0], "to contemplate her most transparent": [65535, 0], "contemplate her most transparent devices": [65535, 0], "her most transparent devices as": [65535, 0], "most transparent devices as marvels": [65535, 0], "transparent devices as marvels of": [65535, 0], "devices as marvels of low": [65535, 0], "as marvels of low cunning": [65535, 0], "marvels of low cunning said": [65535, 0], "of low cunning said she": [65535, 0], "low cunning said she tom": [65535, 0], "cunning said she tom it": [65535, 0], "said she tom it was": [65535, 0], "she tom it was middling": [65535, 0], "tom it was middling warm": [65535, 0], "it was middling warm in": [65535, 0], "was middling warm in school": [65535, 0], "middling warm in school warn't": [65535, 0], "warm in school warn't it": [65535, 0], "in school warn't it yes'm": [65535, 0], "school warn't it yes'm powerful": [65535, 0], "warn't it yes'm powerful warm": [65535, 0], "it yes'm powerful warm warn't": [65535, 0], "yes'm powerful warm warn't it": [65535, 0], "powerful warm warn't it yes'm": [65535, 0], "warm warn't it yes'm didn't": [65535, 0], "warn't it yes'm didn't you": [65535, 0], "it yes'm didn't you want": [65535, 0], "yes'm didn't you want to": [65535, 0], "didn't you want to go": [65535, 0], "you want to go in": [65535, 0], "want to go in a": [65535, 0], "to go in a swimming": [65535, 0], "go in a swimming tom": [65535, 0], "in a swimming tom a": [65535, 0], "a swimming tom a bit": [65535, 0], "swimming tom a bit of": [65535, 0], "tom a bit of a": [65535, 0], "a bit of a scare": [65535, 0], "bit of a scare shot": [65535, 0], "of a scare shot through": [65535, 0], "a scare shot through tom": [65535, 0], "scare shot through tom a": [65535, 0], "shot through tom a touch": [65535, 0], "through tom a touch of": [65535, 0], "tom a touch of uncomfortable": [65535, 0], "a touch of uncomfortable suspicion": [65535, 0], "touch of uncomfortable suspicion he": [65535, 0], "of uncomfortable suspicion he searched": [65535, 0], "uncomfortable suspicion he searched aunt": [65535, 0], "suspicion he searched aunt polly's": [65535, 0], "he searched aunt polly's face": [65535, 0], "searched aunt polly's face but": [65535, 0], "aunt polly's face but it": [65535, 0], "polly's face but it told": [65535, 0], "face but it told him": [65535, 0], "but it told him nothing": [65535, 0], "it told him nothing so": [65535, 0], "told him nothing so he": [65535, 0], "him nothing so he said": [65535, 0], "nothing so he said no'm": [65535, 0], "so he said no'm well": [65535, 0], "he said no'm well not": [65535, 0], "said no'm well not very": [65535, 0], "no'm well not very much": [65535, 0], "well not very much the": [65535, 0], "not very much the old": [65535, 0], "very much the old lady": [65535, 0], "much the old lady reached": [65535, 0], "the old lady reached out": [65535, 0], "old lady reached out her": [65535, 0], "lady reached out her hand": [65535, 0], "reached out her hand and": [65535, 0], "out her hand and felt": [65535, 0], "her hand and felt tom's": [65535, 0], "hand and felt tom's shirt": [65535, 0], "and felt tom's shirt and": [65535, 0], "felt tom's shirt and said": [65535, 0], "tom's shirt and said but": [65535, 0], "shirt and said but you": [65535, 0], "and said but you ain't": [65535, 0], "said but you ain't too": [65535, 0], "but you ain't too warm": [65535, 0], "you ain't too warm now": [65535, 0], "ain't too warm now though": [65535, 0], "too warm now though and": [65535, 0], "warm now though and it": [65535, 0], "now though and it flattered": [65535, 0], "though and it flattered her": [65535, 0], "and it flattered her to": [65535, 0], "it flattered her to reflect": [65535, 0], "flattered her to reflect that": [65535, 0], "her to reflect that she": [65535, 0], "to reflect that she had": [65535, 0], "reflect that she had discovered": [65535, 0], "that she had discovered that": [65535, 0], "she had discovered that the": [65535, 0], "had discovered that the shirt": [65535, 0], "discovered that the shirt was": [65535, 0], "that the shirt was dry": [65535, 0], "the shirt was dry without": [65535, 0], "shirt was dry without anybody": [65535, 0], "was dry without anybody knowing": [65535, 0], "dry without anybody knowing that": [65535, 0], "without anybody knowing that that": [65535, 0], "anybody knowing that that was": [65535, 0], "knowing that that was what": [65535, 0], "that that was what she": [65535, 0], "that was what she had": [65535, 0], "was what she had in": [65535, 0], "what she had in her": [65535, 0], "she had in her mind": [65535, 0], "had in her mind but": [65535, 0], "in her mind but in": [65535, 0], "her mind but in spite": [65535, 0], "mind but in spite of": [65535, 0], "but in spite of her": [65535, 0], "in spite of her tom": [65535, 0], "spite of her tom knew": [65535, 0], "of her tom knew where": [65535, 0], "her tom knew where the": [65535, 0], "tom knew where the wind": [65535, 0], "knew where the wind lay": [65535, 0], "where the wind lay now": [65535, 0], "the wind lay now so": [65535, 0], "wind lay now so he": [65535, 0], "lay now so he forestalled": [65535, 0], "now so he forestalled what": [65535, 0], "so he forestalled what might": [65535, 0], "he forestalled what might be": [65535, 0], "forestalled what might be the": [65535, 0], "what might be the next": [65535, 0], "might be the next move": [65535, 0], "be the next move some": [65535, 0], "the next move some of": [65535, 0], "next move some of us": [65535, 0], "move some of us pumped": [65535, 0], "some of us pumped on": [65535, 0], "of us pumped on our": [65535, 0], "us pumped on our heads": [65535, 0], "pumped on our heads mine's": [65535, 0], "on our heads mine's damp": [65535, 0], "our heads mine's damp yet": [65535, 0], "heads mine's damp yet see": [65535, 0], "mine's damp yet see aunt": [65535, 0], "damp yet see aunt polly": [65535, 0], "yet see aunt polly was": [65535, 0], "see aunt polly was vexed": [65535, 0], "aunt polly was vexed to": [65535, 0], "polly was vexed to think": [65535, 0], "was vexed to think she": [65535, 0], "vexed to think she had": [65535, 0], "to think she had overlooked": [65535, 0], "think she had overlooked that": [65535, 0], "she had overlooked that bit": [65535, 0], "had overlooked that bit of": [65535, 0], "overlooked that bit of circumstantial": [65535, 0], "that bit of circumstantial evidence": [65535, 0], "bit of circumstantial evidence and": [65535, 0], "of circumstantial evidence and missed": [65535, 0], "circumstantial evidence and missed a": [65535, 0], "evidence and missed a trick": [65535, 0], "and missed a trick then": [65535, 0], "missed a trick then she": [65535, 0], "a trick then she had": [65535, 0], "trick then she had a": [65535, 0], "then she had a new": [65535, 0], "she had a new inspiration": [65535, 0], "had a new inspiration tom": [65535, 0], "a new inspiration tom you": [65535, 0], "new inspiration tom you didn't": [65535, 0], "inspiration tom you didn't have": [65535, 0], "tom you didn't have to": [65535, 0], "you didn't have to undo": [65535, 0], "didn't have to undo your": [65535, 0], "have to undo your shirt": [65535, 0], "to undo your shirt collar": [65535, 0], "undo your shirt collar where": [65535, 0], "your shirt collar where i": [65535, 0], "shirt collar where i sewed": [65535, 0], "collar where i sewed it": [65535, 0], "where i sewed it to": [65535, 0], "i sewed it to pump": [65535, 0], "sewed it to pump on": [65535, 0], "it to pump on your": [65535, 0], "to pump on your head": [65535, 0], "pump on your head did": [65535, 0], "on your head did you": [65535, 0], "your head did you unbutton": [65535, 0], "head did you unbutton your": [65535, 0], "did you unbutton your jacket": [65535, 0], "you unbutton your jacket the": [65535, 0], "unbutton your jacket the trouble": [65535, 0], "your jacket the trouble vanished": [65535, 0], "jacket the trouble vanished out": [65535, 0], "the trouble vanished out of": [65535, 0], "trouble vanished out of tom's": [65535, 0], "vanished out of tom's face": [65535, 0], "out of tom's face he": [65535, 0], "of tom's face he opened": [65535, 0], "tom's face he opened his": [65535, 0], "face he opened his jacket": [65535, 0], "he opened his jacket his": [65535, 0], "opened his jacket his shirt": [65535, 0], "his jacket his shirt collar": [65535, 0], "jacket his shirt collar was": [65535, 0], "his shirt collar was securely": [65535, 0], "shirt collar was securely sewed": [65535, 0], "collar was securely sewed bother": [65535, 0], "was securely sewed bother well": [65535, 0], "securely sewed bother well go": [65535, 0], "sewed bother well go 'long": [65535, 0], "bother well go 'long with": [65535, 0], "well go 'long with you": [65535, 0], "go 'long with you i'd": [65535, 0], "'long with you i'd made": [65535, 0], "with you i'd made sure": [65535, 0], "you i'd made sure you'd": [65535, 0], "i'd made sure you'd played": [65535, 0], "made sure you'd played hookey": [65535, 0], "sure you'd played hookey and": [65535, 0], "you'd played hookey and been": [65535, 0], "played hookey and been a": [65535, 0], "hookey and been a swimming": [65535, 0], "and been a swimming but": [65535, 0], "been a swimming but i": [65535, 0], "a swimming but i forgive": [65535, 0], "swimming but i forgive ye": [65535, 0], "but i forgive ye tom": [65535, 0], "i forgive ye tom i": [65535, 0], "forgive ye tom i reckon": [65535, 0], "ye tom i reckon you're": [65535, 0], "tom i reckon you're a": [65535, 0], "i reckon you're a kind": [65535, 0], "reckon you're a kind of": [65535, 0], "you're a kind of a": [65535, 0], "a kind of a singed": [65535, 0], "kind of a singed cat": [65535, 0], "of a singed cat as": [65535, 0], "a singed cat as the": [65535, 0], "singed cat as the saying": [65535, 0], "cat as the saying is": [65535, 0], "as the saying is better'n": [65535, 0], "the saying is better'n you": [65535, 0], "saying is better'n you look": [65535, 0], "is better'n you look this": [65535, 0], "better'n you look this time": [65535, 0], "you look this time she": [65535, 0], "look this time she was": [65535, 0], "this time she was half": [65535, 0], "time she was half sorry": [65535, 0], "she was half sorry her": [65535, 0], "was half sorry her sagacity": [65535, 0], "half sorry her sagacity had": [65535, 0], "sorry her sagacity had miscarried": [65535, 0], "her sagacity had miscarried and": [65535, 0], "sagacity had miscarried and half": [65535, 0], "had miscarried and half glad": [65535, 0], "miscarried and half glad that": [65535, 0], "and half glad that tom": [65535, 0], "half glad that tom had": [65535, 0], "glad that tom had stumbled": [65535, 0], "that tom had stumbled into": [65535, 0], "tom had stumbled into obedient": [65535, 0], "had stumbled into obedient conduct": [65535, 0], "stumbled into obedient conduct for": [65535, 0], "into obedient conduct for once": [65535, 0], "obedient conduct for once but": [65535, 0], "conduct for once but sidney": [65535, 0], "for once but sidney said": [65535, 0], "once but sidney said well": [65535, 0], "but sidney said well now": [65535, 0], "sidney said well now if": [65535, 0], "said well now if i": [65535, 0], "well now if i didn't": [65535, 0], "now if i didn't think": [65535, 0], "if i didn't think you": [65535, 0], "i didn't think you sewed": [65535, 0], "didn't think you sewed his": [65535, 0], "think you sewed his collar": [65535, 0], "you sewed his collar with": [65535, 0], "sewed his collar with white": [65535, 0], "his collar with white thread": [65535, 0], "collar with white thread but": [65535, 0], "with white thread but it's": [65535, 0], "white thread but it's black": [65535, 0], "thread but it's black why": [65535, 0], "but it's black why i": [65535, 0], "it's black why i did": [65535, 0], "black why i did sew": [65535, 0], "why i did sew it": [65535, 0], "i did sew it with": [65535, 0], "did sew it with white": [65535, 0], "sew it with white tom": [65535, 0], "it with white tom but": [65535, 0], "with white tom but tom": [65535, 0], "white tom but tom did": [65535, 0], "tom but tom did not": [65535, 0], "but tom did not wait": [65535, 0], "tom did not wait for": [65535, 0], "did not wait for the": [65535, 0], "not wait for the rest": [65535, 0], "wait for the rest as": [65535, 0], "for the rest as he": [65535, 0], "the rest as he went": [65535, 0], "rest as he went out": [65535, 0], "as he went out at": [65535, 0], "he went out at the": [65535, 0], "went out at the door": [65535, 0], "out at the door he": [65535, 0], "at the door he said": [65535, 0], "the door he said siddy": [65535, 0], "door he said siddy i'll": [65535, 0], "he said siddy i'll lick": [65535, 0], "said siddy i'll lick you": [65535, 0], "siddy i'll lick you for": [65535, 0], "i'll lick you for that": [65535, 0], "lick you for that in": [65535, 0], "you for that in a": [65535, 0], "for that in a safe": [65535, 0], "that in a safe place": [65535, 0], "in a safe place tom": [65535, 0], "a safe place tom examined": [65535, 0], "safe place tom examined two": [65535, 0], "place tom examined two large": [65535, 0], "tom examined two large needles": [65535, 0], "examined two large needles which": [65535, 0], "two large needles which were": [65535, 0], "large needles which were thrust": [65535, 0], "needles which were thrust into": [65535, 0], "which were thrust into the": [65535, 0], "were thrust into the lapels": [65535, 0], "thrust into the lapels of": [65535, 0], "into the lapels of his": [65535, 0], "the lapels of his jacket": [65535, 0], "lapels of his jacket and": [65535, 0], "of his jacket and had": [65535, 0], "his jacket and had thread": [65535, 0], "jacket and had thread bound": [65535, 0], "and had thread bound about": [65535, 0], "had thread bound about them": [65535, 0], "thread bound about them one": [65535, 0], "bound about them one needle": [65535, 0], "about them one needle carried": [65535, 0], "them one needle carried white": [65535, 0], "one needle carried white thread": [65535, 0], "needle carried white thread and": [65535, 0], "carried white thread and the": [65535, 0], "white thread and the other": [65535, 0], "thread and the other black": [65535, 0], "and the other black he": [65535, 0], "the other black he said": [65535, 0], "other black he said she'd": [65535, 0], "black he said she'd never": [65535, 0], "he said she'd never noticed": [65535, 0], "said she'd never noticed if": [65535, 0], "she'd never noticed if it": [65535, 0], "never noticed if it hadn't": [65535, 0], "noticed if it hadn't been": [65535, 0], "if it hadn't been for": [65535, 0], "it hadn't been for sid": [65535, 0], "hadn't been for sid confound": [65535, 0], "been for sid confound it": [65535, 0], "for sid confound it sometimes": [65535, 0], "sid confound it sometimes she": [65535, 0], "confound it sometimes she sews": [65535, 0], "it sometimes she sews it": [65535, 0], "sometimes she sews it with": [65535, 0], "she sews it with white": [65535, 0], "sews it with white and": [65535, 0], "it with white and sometimes": [65535, 0], "with white and sometimes she": [65535, 0], "white and sometimes she sews": [65535, 0], "and sometimes she sews it": [65535, 0], "she sews it with black": [65535, 0], "sews it with black i": [65535, 0], "it with black i wish": [65535, 0], "with black i wish to": [65535, 0], "black i wish to geeminy": [65535, 0], "i wish to geeminy she'd": [65535, 0], "wish to geeminy she'd stick": [65535, 0], "to geeminy she'd stick to": [65535, 0], "geeminy she'd stick to one": [65535, 0], "she'd stick to one or": [65535, 0], "stick to one or t'other": [65535, 0], "to one or t'other i": [65535, 0], "one or t'other i can't": [65535, 0], "or t'other i can't keep": [65535, 0], "t'other i can't keep the": [65535, 0], "i can't keep the run": [65535, 0], "can't keep the run of": [65535, 0], "keep the run of 'em": [65535, 0], "the run of 'em but": [65535, 0], "run of 'em but i": [65535, 0], "of 'em but i bet": [65535, 0], "'em but i bet you": [65535, 0], "but i bet you i'll": [65535, 0], "i bet you i'll lam": [65535, 0], "bet you i'll lam sid": [65535, 0], "you i'll lam sid for": [65535, 0], "i'll lam sid for that": [65535, 0], "lam sid for that i'll": [65535, 0], "sid for that i'll learn": [65535, 0], "for that i'll learn him": [65535, 0], "that i'll learn him he": [65535, 0], "i'll learn him he was": [65535, 0], "learn him he was not": [65535, 0], "him he was not the": [65535, 0], "he was not the model": [65535, 0], "was not the model boy": [65535, 0], "not the model boy of": [65535, 0], "the model boy of the": [65535, 0], "model boy of the village": [65535, 0], "boy of the village he": [65535, 0], "of the village he knew": [65535, 0], "the village he knew the": [65535, 0], "village he knew the model": [65535, 0], "he knew the model boy": [65535, 0], "knew the model boy very": [65535, 0], "the model boy very well": [65535, 0], "model boy very well though": [65535, 0], "boy very well though and": [65535, 0], "very well though and loathed": [65535, 0], "well though and loathed him": [65535, 0], "though and loathed him within": [65535, 0], "and loathed him within two": [65535, 0], "loathed him within two minutes": [65535, 0], "him within two minutes or": [65535, 0], "within two minutes or even": [65535, 0], "two minutes or even less": [65535, 0], "minutes or even less he": [65535, 0], "or even less he had": [65535, 0], "even less he had forgotten": [65535, 0], "less he had forgotten all": [65535, 0], "he had forgotten all his": [65535, 0], "had forgotten all his troubles": [65535, 0], "forgotten all his troubles not": [65535, 0], "all his troubles not because": [65535, 0], "his troubles not because his": [65535, 0], "troubles not because his troubles": [65535, 0], "not because his troubles were": [65535, 0], "because his troubles were one": [65535, 0], "his troubles were one whit": [65535, 0], "troubles were one whit less": [65535, 0], "were one whit less heavy": [65535, 0], "one whit less heavy and": [65535, 0], "whit less heavy and bitter": [65535, 0], "less heavy and bitter to": [65535, 0], "heavy and bitter to him": [65535, 0], "and bitter to him than": [65535, 0], "bitter to him than a": [65535, 0], "to him than a man's": [65535, 0], "him than a man's are": [65535, 0], "than a man's are to": [65535, 0], "a man's are to a": [65535, 0], "man's are to a man": [65535, 0], "are to a man but": [65535, 0], "to a man but because": [65535, 0], "a man but because a": [65535, 0], "man but because a new": [65535, 0], "but because a new and": [65535, 0], "because a new and powerful": [65535, 0], "a new and powerful interest": [65535, 0], "new and powerful interest bore": [65535, 0], "and powerful interest bore them": [65535, 0], "powerful interest bore them down": [65535, 0], "interest bore them down and": [65535, 0], "bore them down and drove": [65535, 0], "them down and drove them": [65535, 0], "down and drove them out": [65535, 0], "and drove them out of": [65535, 0], "drove them out of his": [65535, 0], "them out of his mind": [65535, 0], "out of his mind for": [65535, 0], "of his mind for the": [65535, 0], "his mind for the time": [65535, 0], "mind for the time just": [65535, 0], "for the time just as": [65535, 0], "the time just as men's": [65535, 0], "time just as men's misfortunes": [65535, 0], "just as men's misfortunes are": [65535, 0], "as men's misfortunes are forgotten": [65535, 0], "men's misfortunes are forgotten in": [65535, 0], "misfortunes are forgotten in the": [65535, 0], "are forgotten in the excitement": [65535, 0], "forgotten in the excitement of": [65535, 0], "in the excitement of new": [65535, 0], "the excitement of new enterprises": [65535, 0], "excitement of new enterprises this": [65535, 0], "of new enterprises this new": [65535, 0], "new enterprises this new interest": [65535, 0], "enterprises this new interest was": [65535, 0], "this new interest was a": [65535, 0], "new interest was a valued": [65535, 0], "interest was a valued novelty": [65535, 0], "was a valued novelty in": [65535, 0], "a valued novelty in whistling": [65535, 0], "valued novelty in whistling which": [65535, 0], "novelty in whistling which he": [65535, 0], "in whistling which he had": [65535, 0], "whistling which he had just": [65535, 0], "which he had just acquired": [65535, 0], "he had just acquired from": [65535, 0], "had just acquired from a": [65535, 0], "just acquired from a negro": [65535, 0], "acquired from a negro and": [65535, 0], "from a negro and he": [65535, 0], "a negro and he was": [65535, 0], "negro and he was suffering": [65535, 0], "and he was suffering to": [65535, 0], "he was suffering to practise": [65535, 0], "was suffering to practise it": [65535, 0], "suffering to practise it undisturbed": [65535, 0], "to practise it undisturbed it": [65535, 0], "practise it undisturbed it consisted": [65535, 0], "it undisturbed it consisted in": [65535, 0], "undisturbed it consisted in a": [65535, 0], "it consisted in a peculiar": [65535, 0], "consisted in a peculiar bird": [65535, 0], "in a peculiar bird like": [65535, 0], "a peculiar bird like turn": [65535, 0], "peculiar bird like turn a": [65535, 0], "bird like turn a sort": [65535, 0], "like turn a sort of": [65535, 0], "turn a sort of liquid": [65535, 0], "a sort of liquid warble": [65535, 0], "sort of liquid warble produced": [65535, 0], "of liquid warble produced by": [65535, 0], "liquid warble produced by touching": [65535, 0], "warble produced by touching the": [65535, 0], "produced by touching the tongue": [65535, 0], "by touching the tongue to": [65535, 0], "touching the tongue to the": [65535, 0], "the tongue to the roof": [65535, 0], "tongue to the roof of": [65535, 0], "to the roof of the": [65535, 0], "the roof of the mouth": [65535, 0], "roof of the mouth at": [65535, 0], "of the mouth at short": [65535, 0], "the mouth at short intervals": [65535, 0], "mouth at short intervals in": [65535, 0], "at short intervals in the": [65535, 0], "short intervals in the midst": [65535, 0], "intervals in the midst of": [65535, 0], "the midst of the music": [65535, 0], "midst of the music the": [65535, 0], "of the music the reader": [65535, 0], "the music the reader probably": [65535, 0], "music the reader probably remembers": [65535, 0], "the reader probably remembers how": [65535, 0], "reader probably remembers how to": [65535, 0], "probably remembers how to do": [65535, 0], "remembers how to do it": [65535, 0], "how to do it if": [65535, 0], "to do it if he": [65535, 0], "do it if he has": [65535, 0], "it if he has ever": [65535, 0], "if he has ever been": [65535, 0], "he has ever been a": [65535, 0], "has ever been a boy": [65535, 0], "ever been a boy diligence": [65535, 0], "been a boy diligence and": [65535, 0], "a boy diligence and attention": [65535, 0], "boy diligence and attention soon": [65535, 0], "diligence and attention soon gave": [65535, 0], "and attention soon gave him": [65535, 0], "attention soon gave him the": [65535, 0], "soon gave him the knack": [65535, 0], "gave him the knack of": [65535, 0], "him the knack of it": [65535, 0], "the knack of it and": [65535, 0], "knack of it and he": [65535, 0], "of it and he strode": [65535, 0], "it and he strode down": [65535, 0], "and he strode down the": [65535, 0], "he strode down the street": [65535, 0], "strode down the street with": [65535, 0], "the street with his mouth": [65535, 0], "street with his mouth full": [65535, 0], "with his mouth full of": [65535, 0], "his mouth full of harmony": [65535, 0], "mouth full of harmony and": [65535, 0], "full of harmony and his": [65535, 0], "of harmony and his soul": [65535, 0], "harmony and his soul full": [65535, 0], "and his soul full of": [65535, 0], "his soul full of gratitude": [65535, 0], "soul full of gratitude he": [65535, 0], "full of gratitude he felt": [65535, 0], "of gratitude he felt much": [65535, 0], "gratitude he felt much as": [65535, 0], "he felt much as an": [65535, 0], "felt much as an astronomer": [65535, 0], "much as an astronomer feels": [65535, 0], "as an astronomer feels who": [65535, 0], "an astronomer feels who has": [65535, 0], "astronomer feels who has discovered": [65535, 0], "feels who has discovered a": [65535, 0], "who has discovered a new": [65535, 0], "has discovered a new planet": [65535, 0], "discovered a new planet no": [65535, 0], "a new planet no doubt": [65535, 0], "new planet no doubt as": [65535, 0], "planet no doubt as far": [65535, 0], "no doubt as far as": [65535, 0], "doubt as far as strong": [65535, 0], "as far as strong deep": [65535, 0], "far as strong deep unalloyed": [65535, 0], "as strong deep unalloyed pleasure": [65535, 0], "strong deep unalloyed pleasure is": [65535, 0], "deep unalloyed pleasure is concerned": [65535, 0], "unalloyed pleasure is concerned the": [65535, 0], "pleasure is concerned the advantage": [65535, 0], "is concerned the advantage was": [65535, 0], "concerned the advantage was with": [65535, 0], "the advantage was with the": [65535, 0], "advantage was with the boy": [65535, 0], "was with the boy not": [65535, 0], "with the boy not the": [65535, 0], "the boy not the astronomer": [65535, 0], "boy not the astronomer the": [65535, 0], "not the astronomer the summer": [65535, 0], "the astronomer the summer evenings": [65535, 0], "astronomer the summer evenings were": [65535, 0], "the summer evenings were long": [65535, 0], "summer evenings were long it": [65535, 0], "evenings were long it was": [65535, 0], "were long it was not": [65535, 0], "long it was not dark": [65535, 0], "it was not dark yet": [65535, 0], "was not dark yet presently": [65535, 0], "not dark yet presently tom": [65535, 0], "dark yet presently tom checked": [65535, 0], "yet presently tom checked his": [65535, 0], "presently tom checked his whistle": [65535, 0], "tom checked his whistle a": [65535, 0], "checked his whistle a stranger": [65535, 0], "his whistle a stranger was": [65535, 0], "whistle a stranger was before": [65535, 0], "a stranger was before him": [65535, 0], "stranger was before him a": [65535, 0], "was before him a boy": [65535, 0], "before him a boy a": [65535, 0], "him a boy a shade": [65535, 0], "a boy a shade larger": [65535, 0], "boy a shade larger than": [65535, 0], "a shade larger than himself": [65535, 0], "shade larger than himself a": [65535, 0], "larger than himself a new": [65535, 0], "than himself a new comer": [65535, 0], "himself a new comer of": [65535, 0], "a new comer of any": [65535, 0], "new comer of any age": [65535, 0], "comer of any age or": [65535, 0], "of any age or either": [65535, 0], "any age or either sex": [65535, 0], "age or either sex was": [65535, 0], "or either sex was an": [65535, 0], "either sex was an impressive": [65535, 0], "sex was an impressive curiosity": [65535, 0], "was an impressive curiosity in": [65535, 0], "an impressive curiosity in the": [65535, 0], "impressive curiosity in the poor": [65535, 0], "curiosity in the poor little": [65535, 0], "in the poor little shabby": [65535, 0], "the poor little shabby village": [65535, 0], "poor little shabby village of": [65535, 0], "little shabby village of st": [65535, 0], "shabby village of st petersburg": [65535, 0], "village of st petersburg this": [65535, 0], "of st petersburg this boy": [65535, 0], "st petersburg this boy was": [65535, 0], "petersburg this boy was well": [65535, 0], "this boy was well dressed": [65535, 0], "boy was well dressed too": [65535, 0], "was well dressed too well": [65535, 0], "well dressed too well dressed": [65535, 0], "dressed too well dressed on": [65535, 0], "too well dressed on a": [65535, 0], "well dressed on a week": [65535, 0], "dressed on a week day": [65535, 0], "on a week day this": [65535, 0], "a week day this was": [65535, 0], "week day this was simply": [65535, 0], "day this was simply astounding": [65535, 0], "this was simply astounding his": [65535, 0], "was simply astounding his cap": [65535, 0], "simply astounding his cap was": [65535, 0], "astounding his cap was a": [65535, 0], "his cap was a dainty": [65535, 0], "cap was a dainty thing": [65535, 0], "was a dainty thing his": [65535, 0], "a dainty thing his closebuttoned": [65535, 0], "dainty thing his closebuttoned blue": [65535, 0], "thing his closebuttoned blue cloth": [65535, 0], "his closebuttoned blue cloth roundabout": [65535, 0], "closebuttoned blue cloth roundabout was": [65535, 0], "blue cloth roundabout was new": [65535, 0], "cloth roundabout was new and": [65535, 0], "roundabout was new and natty": [65535, 0], "was new and natty and": [65535, 0], "new and natty and so": [65535, 0], "and natty and so were": [65535, 0], "natty and so were his": [65535, 0], "and so were his pantaloons": [65535, 0], "so were his pantaloons he": [65535, 0], "were his pantaloons he had": [65535, 0], "his pantaloons he had shoes": [65535, 0], "pantaloons he had shoes on": [65535, 0], "he had shoes on and": [65535, 0], "had shoes on and it": [65535, 0], "shoes on and it was": [65535, 0], "on and it was only": [65535, 0], "and it was only friday": [65535, 0], "it was only friday he": [65535, 0], "was only friday he even": [65535, 0], "only friday he even wore": [65535, 0], "friday he even wore a": [65535, 0], "he even wore a necktie": [65535, 0], "even wore a necktie a": [65535, 0], "wore a necktie a bright": [65535, 0], "a necktie a bright bit": [65535, 0], "necktie a bright bit of": [65535, 0], "a bright bit of ribbon": [65535, 0], "bright bit of ribbon he": [65535, 0], "bit of ribbon he had": [65535, 0], "of ribbon he had a": [65535, 0], "ribbon he had a citified": [65535, 0], "he had a citified air": [65535, 0], "had a citified air about": [65535, 0], "a citified air about him": [65535, 0], "citified air about him that": [65535, 0], "air about him that ate": [65535, 0], "about him that ate into": [65535, 0], "him that ate into tom's": [65535, 0], "that ate into tom's vitals": [65535, 0], "ate into tom's vitals the": [65535, 0], "into tom's vitals the more": [65535, 0], "tom's vitals the more tom": [65535, 0], "vitals the more tom stared": [65535, 0], "the more tom stared at": [65535, 0], "more tom stared at the": [65535, 0], "tom stared at the splendid": [65535, 0], "stared at the splendid marvel": [65535, 0], "at the splendid marvel the": [65535, 0], "the splendid marvel the higher": [65535, 0], "splendid marvel the higher he": [65535, 0], "marvel the higher he turned": [65535, 0], "the higher he turned up": [65535, 0], "higher he turned up his": [65535, 0], "he turned up his nose": [65535, 0], "turned up his nose at": [65535, 0], "up his nose at his": [65535, 0], "his nose at his finery": [65535, 0], "nose at his finery and": [65535, 0], "at his finery and the": [65535, 0], "his finery and the shabbier": [65535, 0], "finery and the shabbier and": [65535, 0], "and the shabbier and shabbier": [65535, 0], "the shabbier and shabbier his": [65535, 0], "shabbier and shabbier his own": [65535, 0], "and shabbier his own outfit": [65535, 0], "shabbier his own outfit seemed": [65535, 0], "his own outfit seemed to": [65535, 0], "own outfit seemed to him": [65535, 0], "outfit seemed to him to": [65535, 0], "seemed to him to grow": [65535, 0], "to him to grow neither": [65535, 0], "him to grow neither boy": [65535, 0], "to grow neither boy spoke": [65535, 0], "grow neither boy spoke if": [65535, 0], "neither boy spoke if one": [65535, 0], "boy spoke if one moved": [65535, 0], "spoke if one moved the": [65535, 0], "if one moved the other": [65535, 0], "one moved the other moved": [65535, 0], "moved the other moved but": [65535, 0], "the other moved but only": [65535, 0], "other moved but only sidewise": [65535, 0], "moved but only sidewise in": [65535, 0], "but only sidewise in a": [65535, 0], "only sidewise in a circle": [65535, 0], "sidewise in a circle they": [65535, 0], "in a circle they kept": [65535, 0], "a circle they kept face": [65535, 0], "circle they kept face to": [65535, 0], "they kept face to face": [65535, 0], "kept face to face and": [65535, 0], "face to face and eye": [65535, 0], "to face and eye to": [65535, 0], "face and eye to eye": [65535, 0], "and eye to eye all": [65535, 0], "eye to eye all the": [65535, 0], "to eye all the time": [65535, 0], "eye all the time finally": [65535, 0], "all the time finally tom": [65535, 0], "the time finally tom said": [65535, 0], "time finally tom said i": [65535, 0], "finally tom said i can": [65535, 0], "tom said i can lick": [65535, 0], "said i can lick you": [65535, 0], "i can lick you i'd": [65535, 0], "can lick you i'd like": [65535, 0], "lick you i'd like to": [65535, 0], "you i'd like to see": [65535, 0], "i'd like to see you": [65535, 0], "like to see you try": [65535, 0], "to see you try it": [65535, 0], "see you try it well": [65535, 0], "you try it well i": [65535, 0], "try it well i can": [65535, 0], "it well i can do": [65535, 0], "well i can do it": [65535, 0], "i can do it no": [65535, 0], "can do it no you": [65535, 0], "do it no you can't": [65535, 0], "it no you can't either": [65535, 0], "no you can't either yes": [65535, 0], "you can't either yes i": [65535, 0], "can't either yes i can": [65535, 0], "either yes i can no": [65535, 0], "yes i can no you": [65535, 0], "i can no you can't": [65535, 0], "can no you can't i": [65535, 0], "no you can't i can": [65535, 0], "you can't i can you": [65535, 0], "can't i can you can't": [65535, 0], "i can you can't can": [65535, 0], "can you can't can can't": [65535, 0], "you can't can can't an": [65535, 0], "can't can can't an uncomfortable": [65535, 0], "can can't an uncomfortable pause": [65535, 0], "can't an uncomfortable pause then": [65535, 0], "an uncomfortable pause then tom": [65535, 0], "uncomfortable pause then tom said": [65535, 0], "pause then tom said what's": [65535, 0], "then tom said what's your": [65535, 0], "tom said what's your name": [65535, 0], "said what's your name 'tisn't": [65535, 0], "what's your name 'tisn't any": [65535, 0], "your name 'tisn't any of": [65535, 0], "name 'tisn't any of your": [65535, 0], "'tisn't any of your business": [65535, 0], "any of your business maybe": [65535, 0], "of your business maybe well": [65535, 0], "your business maybe well i": [65535, 0], "business maybe well i 'low": [65535, 0], "maybe well i 'low i'll": [65535, 0], "well i 'low i'll make": [65535, 0], "i 'low i'll make it": [65535, 0], "'low i'll make it my": [65535, 0], "i'll make it my business": [65535, 0], "make it my business well": [65535, 0], "it my business well why": [65535, 0], "my business well why don't": [65535, 0], "business well why don't you": [65535, 0], "well why don't you if": [65535, 0], "why don't you if you": [65535, 0], "don't you if you say": [65535, 0], "you if you say much": [65535, 0], "if you say much i": [65535, 0], "you say much i will": [65535, 0], "say much i will much": [65535, 0], "much i will much much": [65535, 0], "i will much much much": [65535, 0], "will much much much there": [65535, 0], "much much much there now": [65535, 0], "much much there now oh": [65535, 0], "much there now oh you": [65535, 0], "there now oh you think": [65535, 0], "now oh you think you're": [65535, 0], "oh you think you're mighty": [65535, 0], "you think you're mighty smart": [65535, 0], "think you're mighty smart don't": [65535, 0], "you're mighty smart don't you": [65535, 0], "mighty smart don't you i": [65535, 0], "smart don't you i could": [65535, 0], "don't you i could lick": [65535, 0], "you i could lick you": [65535, 0], "i could lick you with": [65535, 0], "could lick you with one": [65535, 0], "lick you with one hand": [65535, 0], "you with one hand tied": [65535, 0], "with one hand tied behind": [65535, 0], "one hand tied behind me": [65535, 0], "hand tied behind me if": [65535, 0], "tied behind me if i": [65535, 0], "behind me if i wanted": [65535, 0], "me if i wanted to": [65535, 0], "well why don't you do": [65535, 0], "why don't you do it": [65535, 0], "don't you do it you": [65535, 0], "you do it you say": [65535, 0], "do it you say you": [65535, 0], "it you say you can": [65535, 0], "you say you can do": [65535, 0], "say you can do it": [65535, 0], "you can do it well": [65535, 0], "can do it well i": [65535, 0], "do it well i will": [65535, 0], "it well i will if": [65535, 0], "well i will if you": [65535, 0], "i will if you fool": [65535, 0], "will if you fool with": [65535, 0], "if you fool with me": [65535, 0], "you fool with me oh": [65535, 0], "fool with me oh yes": [65535, 0], "with me oh yes i've": [65535, 0], "me oh yes i've seen": [65535, 0], "oh yes i've seen whole": [65535, 0], "yes i've seen whole families": [65535, 0], "i've seen whole families in": [65535, 0], "seen whole families in the": [65535, 0], "whole families in the same": [65535, 0], "families in the same fix": [65535, 0], "in the same fix smarty": [65535, 0], "the same fix smarty you": [65535, 0], "same fix smarty you think": [65535, 0], "fix smarty you think you're": [65535, 0], "smarty you think you're some": [65535, 0], "you think you're some now": [65535, 0], "think you're some now don't": [65535, 0], "you're some now don't you": [65535, 0], "some now don't you oh": [65535, 0], "now don't you oh what": [65535, 0], "don't you oh what a": [65535, 0], "you oh what a hat": [65535, 0], "oh what a hat you": [65535, 0], "what a hat you can": [65535, 0], "a hat you can lump": [65535, 0], "hat you can lump that": [65535, 0], "you can lump that hat": [65535, 0], "can lump that hat if": [65535, 0], "lump that hat if you": [65535, 0], "that hat if you don't": [65535, 0], "hat if you don't like": [65535, 0], "if you don't like it": [65535, 0], "you don't like it i": [65535, 0], "don't like it i dare": [65535, 0], "like it i dare you": [65535, 0], "it i dare you to": [65535, 0], "i dare you to knock": [65535, 0], "dare you to knock it": [65535, 0], "you to knock it off": [65535, 0], "to knock it off and": [65535, 0], "knock it off and anybody": [65535, 0], "it off and anybody that'll": [65535, 0], "off and anybody that'll take": [65535, 0], "and anybody that'll take a": [65535, 0], "anybody that'll take a dare": [65535, 0], "that'll take a dare will": [65535, 0], "take a dare will suck": [65535, 0], "a dare will suck eggs": [65535, 0], "dare will suck eggs you're": [65535, 0], "will suck eggs you're a": [65535, 0], "suck eggs you're a liar": [65535, 0], "eggs you're a liar you're": [65535, 0], "you're a liar you're another": [65535, 0], "a liar you're another you're": [65535, 0], "liar you're another you're a": [65535, 0], "you're another you're a fighting": [65535, 0], "another you're a fighting liar": [65535, 0], "you're a fighting liar and": [65535, 0], "a fighting liar and dasn't": [65535, 0], "fighting liar and dasn't take": [65535, 0], "liar and dasn't take it": [65535, 0], "and dasn't take it up": [65535, 0], "dasn't take it up aw": [65535, 0], "take it up aw take": [65535, 0], "it up aw take a": [65535, 0], "up aw take a walk": [65535, 0], "aw take a walk say": [65535, 0], "take a walk say if": [65535, 0], "a walk say if you": [65535, 0], "walk say if you give": [65535, 0], "say if you give me": [65535, 0], "if you give me much": [65535, 0], "you give me much more": [65535, 0], "give me much more of": [65535, 0], "me much more of your": [65535, 0], "much more of your sass": [65535, 0], "more of your sass i'll": [65535, 0], "of your sass i'll take": [65535, 0], "your sass i'll take and": [65535, 0], "sass i'll take and bounce": [65535, 0], "i'll take and bounce a": [65535, 0], "take and bounce a rock": [65535, 0], "and bounce a rock off'n": [65535, 0], "bounce a rock off'n your": [65535, 0], "a rock off'n your head": [65535, 0], "rock off'n your head oh": [65535, 0], "off'n your head oh of": [65535, 0], "your head oh of course": [65535, 0], "head oh of course you": [65535, 0], "oh of course you will": [65535, 0], "of course you will well": [65535, 0], "course you will well i": [65535, 0], "you will well i will": [65535, 0], "will well i will well": [65535, 0], "well i will well why": [65535, 0], "i will well why don't": [65535, 0], "will well why don't you": [65535, 0], "don't you do it then": [65535, 0], "you do it then what": [65535, 0], "do it then what do": [65535, 0], "it then what do you": [65535, 0], "then what do you keep": [65535, 0], "what do you keep saying": [65535, 0], "do you keep saying you": [65535, 0], "you keep saying you will": [65535, 0], "keep saying you will for": [65535, 0], "saying you will for why": [65535, 0], "you will for why don't": [65535, 0], "will for why don't you": [65535, 0], "for why don't you do": [65535, 0], "don't you do it it's": [65535, 0], "you do it it's because": [65535, 0], "do it it's because you're": [65535, 0], "it it's because you're afraid": [65535, 0], "it's because you're afraid i": [65535, 0], "because you're afraid i ain't": [65535, 0], "you're afraid i ain't afraid": [65535, 0], "afraid i ain't afraid you": [65535, 0], "i ain't afraid you are": [65535, 0], "ain't afraid you are i": [65535, 0], "afraid you are i ain't": [65535, 0], "you are i ain't you": [65535, 0], "are i ain't you are": [65535, 0], "i ain't you are another": [65535, 0], "ain't you are another pause": [65535, 0], "you are another pause and": [65535, 0], "are another pause and more": [65535, 0], "another pause and more eying": [65535, 0], "pause and more eying and": [65535, 0], "and more eying and sidling": [65535, 0], "more eying and sidling around": [65535, 0], "eying and sidling around each": [65535, 0], "and sidling around each other": [65535, 0], "sidling around each other presently": [65535, 0], "around each other presently they": [65535, 0], "each other presently they were": [65535, 0], "other presently they were shoulder": [65535, 0], "presently they were shoulder to": [65535, 0], "they were shoulder to shoulder": [65535, 0], "were shoulder to shoulder tom": [65535, 0], "shoulder to shoulder tom said": [65535, 0], "to shoulder tom said get": [65535, 0], "shoulder tom said get away": [65535, 0], "tom said get away from": [65535, 0], "said get away from here": [65535, 0], "get away from here go": [65535, 0], "away from here go away": [65535, 0], "from here go away yourself": [65535, 0], "here go away yourself i": [65535, 0], "go away yourself i won't": [65535, 0], "away yourself i won't i": [65535, 0], "yourself i won't i won't": [65535, 0], "i won't i won't either": [65535, 0], "won't i won't either so": [65535, 0], "i won't either so they": [65535, 0], "won't either so they stood": [65535, 0], "either so they stood each": [65535, 0], "so they stood each with": [65535, 0], "they stood each with a": [65535, 0], "stood each with a foot": [65535, 0], "each with a foot placed": [65535, 0], "with a foot placed at": [65535, 0], "a foot placed at an": [65535, 0], "foot placed at an angle": [65535, 0], "placed at an angle as": [65535, 0], "at an angle as a": [65535, 0], "an angle as a brace": [65535, 0], "angle as a brace and": [65535, 0], "as a brace and both": [65535, 0], "a brace and both shoving": [65535, 0], "brace and both shoving with": [65535, 0], "and both shoving with might": [65535, 0], "both shoving with might and": [65535, 0], "shoving with might and main": [65535, 0], "with might and main and": [65535, 0], "might and main and glowering": [65535, 0], "and main and glowering at": [65535, 0], "main and glowering at each": [65535, 0], "and glowering at each other": [65535, 0], "glowering at each other with": [65535, 0], "at each other with hate": [65535, 0], "each other with hate but": [65535, 0], "other with hate but neither": [65535, 0], "with hate but neither could": [65535, 0], "hate but neither could get": [65535, 0], "but neither could get an": [65535, 0], "neither could get an advantage": [65535, 0], "could get an advantage after": [65535, 0], "get an advantage after struggling": [65535, 0], "an advantage after struggling till": [65535, 0], "advantage after struggling till both": [65535, 0], "after struggling till both were": [65535, 0], "struggling till both were hot": [65535, 0], "till both were hot and": [65535, 0], "both were hot and flushed": [65535, 0], "were hot and flushed each": [65535, 0], "hot and flushed each relaxed": [65535, 0], "and flushed each relaxed his": [65535, 0], "flushed each relaxed his strain": [65535, 0], "each relaxed his strain with": [65535, 0], "relaxed his strain with watchful": [65535, 0], "his strain with watchful caution": [65535, 0], "strain with watchful caution and": [65535, 0], "with watchful caution and tom": [65535, 0], "watchful caution and tom said": [65535, 0], "caution and tom said you're": [65535, 0], "and tom said you're a": [65535, 0], "tom said you're a coward": [65535, 0], "said you're a coward and": [65535, 0], "you're a coward and a": [65535, 0], "a coward and a pup": [65535, 0], "coward and a pup i'll": [65535, 0], "and a pup i'll tell": [65535, 0], "a pup i'll tell my": [65535, 0], "pup i'll tell my big": [65535, 0], "i'll tell my big brother": [65535, 0], "tell my big brother on": [65535, 0], "my big brother on you": [65535, 0], "big brother on you and": [65535, 0], "brother on you and he": [65535, 0], "on you and he can": [65535, 0], "you and he can thrash": [65535, 0], "and he can thrash you": [65535, 0], "he can thrash you with": [65535, 0], "can thrash you with his": [65535, 0], "thrash you with his little": [65535, 0], "you with his little finger": [65535, 0], "with his little finger and": [65535, 0], "his little finger and i'll": [65535, 0], "little finger and i'll make": [65535, 0], "finger and i'll make him": [65535, 0], "and i'll make him do": [65535, 0], "i'll make him do it": [65535, 0], "make him do it too": [65535, 0], "him do it too what": [65535, 0], "do it too what do": [65535, 0], "it too what do i": [65535, 0], "too what do i care": [65535, 0], "what do i care for": [65535, 0], "do i care for your": [65535, 0], "i care for your big": [65535, 0], "care for your big brother": [65535, 0], "for your big brother i've": [65535, 0], "your big brother i've got": [65535, 0], "big brother i've got a": [65535, 0], "brother i've got a brother": [65535, 0], "i've got a brother that's": [65535, 0], "got a brother that's bigger": [65535, 0], "a brother that's bigger than": [65535, 0], "brother that's bigger than he": [65535, 0], "that's bigger than he is": [65535, 0], "bigger than he is and": [65535, 0], "than he is and what's": [65535, 0], "he is and what's more": [65535, 0], "is and what's more he": [65535, 0], "and what's more he can": [65535, 0], "what's more he can throw": [65535, 0], "more he can throw him": [65535, 0], "he can throw him over": [65535, 0], "can throw him over that": [65535, 0], "throw him over that fence": [65535, 0], "him over that fence too": [65535, 0], "over that fence too both": [65535, 0], "that fence too both brothers": [65535, 0], "fence too both brothers were": [65535, 0], "too both brothers were imaginary": [65535, 0], "both brothers were imaginary that's": [65535, 0], "brothers were imaginary that's a": [65535, 0], "were imaginary that's a lie": [65535, 0], "imaginary that's a lie your": [65535, 0], "that's a lie your saying": [65535, 0], "a lie your saying so": [65535, 0], "lie your saying so don't": [65535, 0], "your saying so don't make": [65535, 0], "saying so don't make it": [65535, 0], "so don't make it so": [65535, 0], "don't make it so tom": [65535, 0], "make it so tom drew": [65535, 0], "it so tom drew a": [65535, 0], "so tom drew a line": [65535, 0], "tom drew a line in": [65535, 0], "drew a line in the": [65535, 0], "a line in the dust": [65535, 0], "line in the dust with": [65535, 0], "in the dust with his": [65535, 0], "the dust with his big": [65535, 0], "dust with his big toe": [65535, 0], "with his big toe and": [65535, 0], "his big toe and said": [65535, 0], "big toe and said i": [65535, 0], "toe and said i dare": [65535, 0], "and said i dare you": [65535, 0], "said i dare you to": [65535, 0], "i dare you to step": [65535, 0], "dare you to step over": [65535, 0], "you to step over that": [65535, 0], "to step over that and": [65535, 0], "step over that and i'll": [65535, 0], "over that and i'll lick": [65535, 0], "that and i'll lick you": [65535, 0], "and i'll lick you till": [65535, 0], "i'll lick you till you": [65535, 0], "lick you till you can't": [65535, 0], "you till you can't stand": [65535, 0], "till you can't stand up": [65535, 0], "you can't stand up anybody": [65535, 0], "can't stand up anybody that'll": [65535, 0], "stand up anybody that'll take": [65535, 0], "up anybody that'll take a": [65535, 0], "take a dare will steal": [65535, 0], "a dare will steal sheep": [65535, 0], "dare will steal sheep the": [65535, 0], "will steal sheep the new": [65535, 0], "steal sheep the new boy": [65535, 0], "sheep the new boy stepped": [65535, 0], "the new boy stepped over": [65535, 0], "new boy stepped over promptly": [65535, 0], "boy stepped over promptly and": [65535, 0], "stepped over promptly and said": [65535, 0], "over promptly and said now": [65535, 0], "promptly and said now you": [65535, 0], "and said now you said": [65535, 0], "said now you said you'd": [65535, 0], "now you said you'd do": [65535, 0], "you said you'd do it": [65535, 0], "said you'd do it now": [65535, 0], "you'd do it now let's": [65535, 0], "do it now let's see": [65535, 0], "it now let's see you": [65535, 0], "now let's see you do": [65535, 0], "let's see you do it": [65535, 0], "see you do it don't": [65535, 0], "you do it don't you": [65535, 0], "do it don't you crowd": [65535, 0], "it don't you crowd me": [65535, 0], "don't you crowd me now": [65535, 0], "you crowd me now you": [65535, 0], "crowd me now you better": [65535, 0], "me now you better look": [65535, 0], "now you better look out": [65535, 0], "you better look out well": [65535, 0], "better look out well you": [65535, 0], "look out well you said": [65535, 0], "out well you said you'd": [65535, 0], "well you said you'd do": [65535, 0], "said you'd do it why": [65535, 0], "you'd do it why don't": [65535, 0], "do it why don't you": [65535, 0], "it why don't you do": [65535, 0], "don't you do it by": [65535, 0], "you do it by jingo": [65535, 0], "do it by jingo for": [65535, 0], "it by jingo for two": [65535, 0], "by jingo for two cents": [65535, 0], "jingo for two cents i": [65535, 0], "for two cents i will": [65535, 0], "two cents i will do": [65535, 0], "cents i will do it": [65535, 0], "i will do it the": [65535, 0], "will do it the new": [65535, 0], "do it the new boy": [65535, 0], "it the new boy took": [65535, 0], "the new boy took two": [65535, 0], "new boy took two broad": [65535, 0], "boy took two broad coppers": [65535, 0], "took two broad coppers out": [65535, 0], "two broad coppers out of": [65535, 0], "broad coppers out of his": [65535, 0], "coppers out of his pocket": [65535, 0], "out of his pocket and": [65535, 0], "of his pocket and held": [65535, 0], "his pocket and held them": [65535, 0], "pocket and held them out": [65535, 0], "and held them out with": [65535, 0], "held them out with derision": [65535, 0], "them out with derision tom": [65535, 0], "out with derision tom struck": [65535, 0], "with derision tom struck them": [65535, 0], "derision tom struck them to": [65535, 0], "tom struck them to the": [65535, 0], "struck them to the ground": [65535, 0], "them to the ground in": [65535, 0], "to the ground in an": [65535, 0], "the ground in an instant": [65535, 0], "ground in an instant both": [65535, 0], "in an instant both boys": [65535, 0], "an instant both boys were": [65535, 0], "instant both boys were rolling": [65535, 0], "both boys were rolling and": [65535, 0], "boys were rolling and tumbling": [65535, 0], "were rolling and tumbling in": [65535, 0], "rolling and tumbling in the": [65535, 0], "and tumbling in the dirt": [65535, 0], "tumbling in the dirt gripped": [65535, 0], "in the dirt gripped together": [65535, 0], "the dirt gripped together like": [65535, 0], "dirt gripped together like cats": [65535, 0], "gripped together like cats and": [65535, 0], "together like cats and for": [65535, 0], "like cats and for the": [65535, 0], "cats and for the space": [65535, 0], "and for the space of": [65535, 0], "space of a minute they": [65535, 0], "of a minute they tugged": [65535, 0], "a minute they tugged and": [65535, 0], "minute they tugged and tore": [65535, 0], "they tugged and tore at": [65535, 0], "tugged and tore at each": [65535, 0], "and tore at each other's": [65535, 0], "tore at each other's hair": [65535, 0], "at each other's hair and": [65535, 0], "each other's hair and clothes": [65535, 0], "other's hair and clothes punched": [65535, 0], "hair and clothes punched and": [65535, 0], "and clothes punched and scratched": [65535, 0], "clothes punched and scratched each": [65535, 0], "punched and scratched each other's": [65535, 0], "and scratched each other's nose": [65535, 0], "scratched each other's nose and": [65535, 0], "each other's nose and covered": [65535, 0], "other's nose and covered themselves": [65535, 0], "nose and covered themselves with": [65535, 0], "and covered themselves with dust": [65535, 0], "covered themselves with dust and": [65535, 0], "themselves with dust and glory": [65535, 0], "with dust and glory presently": [65535, 0], "dust and glory presently the": [65535, 0], "and glory presently the confusion": [65535, 0], "glory presently the confusion took": [65535, 0], "presently the confusion took form": [65535, 0], "the confusion took form and": [65535, 0], "confusion took form and through": [65535, 0], "took form and through the": [65535, 0], "form and through the fog": [65535, 0], "and through the fog of": [65535, 0], "through the fog of battle": [65535, 0], "the fog of battle tom": [65535, 0], "fog of battle tom appeared": [65535, 0], "of battle tom appeared seated": [65535, 0], "battle tom appeared seated astride": [65535, 0], "tom appeared seated astride the": [65535, 0], "appeared seated astride the new": [65535, 0], "seated astride the new boy": [65535, 0], "astride the new boy and": [65535, 0], "the new boy and pounding": [65535, 0], "new boy and pounding him": [65535, 0], "boy and pounding him with": [65535, 0], "and pounding him with his": [65535, 0], "pounding him with his fists": [65535, 0], "him with his fists holler": [65535, 0], "with his fists holler 'nuff": [65535, 0], "his fists holler 'nuff said": [65535, 0], "fists holler 'nuff said he": [65535, 0], "holler 'nuff said he the": [65535, 0], "'nuff said he the boy": [65535, 0], "said he the boy only": [65535, 0], "he the boy only struggled": [65535, 0], "the boy only struggled to": [65535, 0], "boy only struggled to free": [65535, 0], "only struggled to free himself": [65535, 0], "struggled to free himself he": [65535, 0], "to free himself he was": [65535, 0], "free himself he was crying": [65535, 0], "himself he was crying mainly": [65535, 0], "he was crying mainly from": [65535, 0], "was crying mainly from rage": [65535, 0], "crying mainly from rage holler": [65535, 0], "mainly from rage holler 'nuff": [65535, 0], "from rage holler 'nuff and": [65535, 0], "rage holler 'nuff and the": [65535, 0], "holler 'nuff and the pounding": [65535, 0], "'nuff and the pounding went": [65535, 0], "and the pounding went on": [65535, 0], "the pounding went on at": [65535, 0], "pounding went on at last": [65535, 0], "went on at last the": [65535, 0], "on at last the stranger": [65535, 0], "at last the stranger got": [65535, 0], "last the stranger got out": [65535, 0], "the stranger got out a": [65535, 0], "stranger got out a smothered": [65535, 0], "got out a smothered 'nuff": [65535, 0], "out a smothered 'nuff and": [65535, 0], "a smothered 'nuff and tom": [65535, 0], "smothered 'nuff and tom let": [65535, 0], "'nuff and tom let him": [65535, 0], "and tom let him up": [65535, 0], "tom let him up and": [65535, 0], "let him up and said": [65535, 0], "him up and said now": [65535, 0], "up and said now that'll": [65535, 0], "and said now that'll learn": [65535, 0], "said now that'll learn you": [65535, 0], "now that'll learn you better": [65535, 0], "that'll learn you better look": [65535, 0], "learn you better look out": [65535, 0], "you better look out who": [65535, 0], "better look out who you're": [65535, 0], "look out who you're fooling": [65535, 0], "out who you're fooling with": [65535, 0], "who you're fooling with next": [65535, 0], "you're fooling with next time": [65535, 0], "fooling with next time the": [65535, 0], "with next time the new": [65535, 0], "next time the new boy": [65535, 0], "time the new boy went": [65535, 0], "the new boy went off": [65535, 0], "new boy went off brushing": [65535, 0], "boy went off brushing the": [65535, 0], "went off brushing the dust": [65535, 0], "off brushing the dust from": [65535, 0], "brushing the dust from his": [65535, 0], "the dust from his clothes": [65535, 0], "dust from his clothes sobbing": [65535, 0], "from his clothes sobbing snuffling": [65535, 0], "his clothes sobbing snuffling and": [65535, 0], "clothes sobbing snuffling and occasionally": [65535, 0], "sobbing snuffling and occasionally looking": [65535, 0], "snuffling and occasionally looking back": [65535, 0], "and occasionally looking back and": [65535, 0], "occasionally looking back and shaking": [65535, 0], "looking back and shaking his": [65535, 0], "back and shaking his head": [65535, 0], "and shaking his head and": [65535, 0], "shaking his head and threatening": [65535, 0], "his head and threatening what": [65535, 0], "head and threatening what he": [65535, 0], "and threatening what he would": [65535, 0], "threatening what he would do": [65535, 0], "what he would do to": [65535, 0], "he would do to tom": [65535, 0], "would do to tom the": [65535, 0], "do to tom the next": [65535, 0], "to tom the next time": [65535, 0], "tom the next time he": [65535, 0], "the next time he caught": [65535, 0], "next time he caught him": [65535, 0], "time he caught him out": [65535, 0], "he caught him out to": [65535, 0], "caught him out to which": [65535, 0], "him out to which tom": [65535, 0], "out to which tom responded": [65535, 0], "to which tom responded with": [65535, 0], "which tom responded with jeers": [65535, 0], "tom responded with jeers and": [65535, 0], "responded with jeers and started": [65535, 0], "with jeers and started off": [65535, 0], "jeers and started off in": [65535, 0], "and started off in high": [65535, 0], "started off in high feather": [65535, 0], "off in high feather and": [65535, 0], "in high feather and as": [65535, 0], "high feather and as soon": [65535, 0], "feather and as soon as": [65535, 0], "and as soon as his": [65535, 0], "as soon as his back": [65535, 0], "soon as his back was": [65535, 0], "as his back was turned": [65535, 0], "his back was turned the": [65535, 0], "back was turned the new": [65535, 0], "was turned the new boy": [65535, 0], "turned the new boy snatched": [65535, 0], "the new boy snatched up": [65535, 0], "new boy snatched up a": [65535, 0], "boy snatched up a stone": [65535, 0], "snatched up a stone threw": [65535, 0], "up a stone threw it": [65535, 0], "a stone threw it and": [65535, 0], "stone threw it and hit": [65535, 0], "threw it and hit him": [65535, 0], "it and hit him between": [65535, 0], "and hit him between the": [65535, 0], "hit him between the shoulders": [65535, 0], "him between the shoulders and": [65535, 0], "between the shoulders and then": [65535, 0], "the shoulders and then turned": [65535, 0], "shoulders and then turned tail": [65535, 0], "and then turned tail and": [65535, 0], "then turned tail and ran": [65535, 0], "turned tail and ran like": [65535, 0], "tail and ran like an": [65535, 0], "and ran like an antelope": [65535, 0], "ran like an antelope tom": [65535, 0], "like an antelope tom chased": [65535, 0], "an antelope tom chased the": [65535, 0], "antelope tom chased the traitor": [65535, 0], "tom chased the traitor home": [65535, 0], "chased the traitor home and": [65535, 0], "the traitor home and thus": [65535, 0], "traitor home and thus found": [65535, 0], "home and thus found out": [65535, 0], "and thus found out where": [65535, 0], "thus found out where he": [65535, 0], "found out where he lived": [65535, 0], "out where he lived he": [65535, 0], "where he lived he then": [65535, 0], "he lived he then held": [65535, 0], "lived he then held a": [65535, 0], "he then held a position": [65535, 0], "then held a position at": [65535, 0], "held a position at the": [65535, 0], "a position at the gate": [65535, 0], "position at the gate for": [65535, 0], "at the gate for some": [65535, 0], "the gate for some time": [65535, 0], "gate for some time daring": [65535, 0], "for some time daring the": [65535, 0], "some time daring the enemy": [65535, 0], "time daring the enemy to": [65535, 0], "daring the enemy to come": [65535, 0], "the enemy to come outside": [65535, 0], "enemy to come outside but": [65535, 0], "to come outside but the": [65535, 0], "come outside but the enemy": [65535, 0], "outside but the enemy only": [65535, 0], "but the enemy only made": [65535, 0], "the enemy only made faces": [65535, 0], "enemy only made faces at": [65535, 0], "only made faces at him": [65535, 0], "made faces at him through": [65535, 0], "faces at him through the": [65535, 0], "at him through the window": [65535, 0], "him through the window and": [65535, 0], "through the window and declined": [65535, 0], "the window and declined at": [65535, 0], "window and declined at last": [65535, 0], "and declined at last the": [65535, 0], "declined at last the enemy's": [65535, 0], "at last the enemy's mother": [65535, 0], "last the enemy's mother appeared": [65535, 0], "the enemy's mother appeared and": [65535, 0], "enemy's mother appeared and called": [65535, 0], "mother appeared and called tom": [65535, 0], "appeared and called tom a": [65535, 0], "and called tom a bad": [65535, 0], "called tom a bad vicious": [65535, 0], "tom a bad vicious vulgar": [65535, 0], "a bad vicious vulgar child": [65535, 0], "bad vicious vulgar child and": [65535, 0], "vicious vulgar child and ordered": [65535, 0], "vulgar child and ordered him": [65535, 0], "child and ordered him away": [65535, 0], "and ordered him away so": [65535, 0], "ordered him away so he": [65535, 0], "him away so he went": [65535, 0], "away so he went away": [65535, 0], "so he went away but": [65535, 0], "he went away but he": [65535, 0], "went away but he said": [65535, 0], "away but he said he": [65535, 0], "but he said he 'lowed": [65535, 0], "he said he 'lowed to": [65535, 0], "said he 'lowed to lay": [65535, 0], "he 'lowed to lay for": [65535, 0], "'lowed to lay for that": [65535, 0], "to lay for that boy": [65535, 0], "lay for that boy he": [65535, 0], "for that boy he got": [65535, 0], "that boy he got home": [65535, 0], "boy he got home pretty": [65535, 0], "he got home pretty late": [65535, 0], "got home pretty late that": [65535, 0], "home pretty late that night": [65535, 0], "pretty late that night and": [65535, 0], "late that night and when": [65535, 0], "that night and when he": [65535, 0], "night and when he climbed": [65535, 0], "and when he climbed cautiously": [65535, 0], "when he climbed cautiously in": [65535, 0], "he climbed cautiously in at": [65535, 0], "climbed cautiously in at the": [65535, 0], "cautiously in at the window": [65535, 0], "in at the window he": [65535, 0], "at the window he uncovered": [65535, 0], "the window he uncovered an": [65535, 0], "window he uncovered an ambuscade": [65535, 0], "he uncovered an ambuscade in": [65535, 0], "uncovered an ambuscade in the": [65535, 0], "an ambuscade in the person": [65535, 0], "ambuscade in the person of": [65535, 0], "in the person of his": [65535, 0], "the person of his aunt": [65535, 0], "person of his aunt and": [65535, 0], "of his aunt and when": [65535, 0], "his aunt and when she": [65535, 0], "aunt and when she saw": [65535, 0], "and when she saw the": [65535, 0], "when she saw the state": [65535, 0], "she saw the state his": [65535, 0], "saw the state his clothes": [65535, 0], "the state his clothes were": [65535, 0], "state his clothes were in": [65535, 0], "his clothes were in her": [65535, 0], "clothes were in her resolution": [65535, 0], "were in her resolution to": [65535, 0], "in her resolution to turn": [65535, 0], "her resolution to turn his": [65535, 0], "resolution to turn his saturday": [65535, 0], "to turn his saturday holiday": [65535, 0], "turn his saturday holiday into": [65535, 0], "his saturday holiday into captivity": [65535, 0], "saturday holiday into captivity at": [65535, 0], "holiday into captivity at hard": [65535, 0], "into captivity at hard labor": [65535, 0], "captivity at hard labor became": [65535, 0], "at hard labor became adamantine": [65535, 0], "hard labor became adamantine in": [65535, 0], "labor became adamantine in its": [65535, 0], "became adamantine in its firmness": [65535, 0], "tom no answer tom no answer": [65535, 0], "no answer tom no answer what's": [65535, 0], "answer tom no answer what's gone": [65535, 0], "tom no answer what's gone with": [65535, 0], "no answer what's gone with that": [65535, 0], "answer what's gone with that boy": [65535, 0], "what's gone with that boy i": [65535, 0], "gone with that boy i wonder": [65535, 0], "with that boy i wonder you": [65535, 0], "that boy i wonder you tom": [65535, 0], "boy i wonder you tom no": [65535, 0], "i wonder you tom no answer": [65535, 0], "wonder you tom no answer the": [65535, 0], "you tom no answer the old": [65535, 0], "tom no answer the old lady": [65535, 0], "no answer the old lady pulled": [65535, 0], "answer the old lady pulled her": [65535, 0], "the old lady pulled her spectacles": [65535, 0], "old lady pulled her spectacles down": [65535, 0], "lady pulled her spectacles down and": [65535, 0], "pulled her spectacles down and looked": [65535, 0], "her spectacles down and looked over": [65535, 0], "spectacles down and looked over them": [65535, 0], "down and looked over them about": [65535, 0], "and looked over them about the": [65535, 0], "looked over them about the room": [65535, 0], "over them about the room then": [65535, 0], "them about the room then she": [65535, 0], "about the room then she put": [65535, 0], "the room then she put them": [65535, 0], "room then she put them up": [65535, 0], "then she put them up and": [65535, 0], "she put them up and looked": [65535, 0], "put them up and looked out": [65535, 0], "them up and looked out under": [65535, 0], "up and looked out under them": [65535, 0], "and looked out under them she": [65535, 0], "looked out under them she seldom": [65535, 0], "out under them she seldom or": [65535, 0], "under them she seldom or never": [65535, 0], "them she seldom or never looked": [65535, 0], "she seldom or never looked through": [65535, 0], "seldom or never looked through them": [65535, 0], "or never looked through them for": [65535, 0], "never looked through them for so": [65535, 0], "looked through them for so small": [65535, 0], "through them for so small a": [65535, 0], "them for so small a thing": [65535, 0], "for so small a thing as": [65535, 0], "so small a thing as a": [65535, 0], "small a thing as a boy": [65535, 0], "a thing as a boy they": [65535, 0], "thing as a boy they were": [65535, 0], "as a boy they were her": [65535, 0], "a boy they were her state": [65535, 0], "boy they were her state pair": [65535, 0], "they were her state pair the": [65535, 0], "were her state pair the pride": [65535, 0], "her state pair the pride of": [65535, 0], "state pair the pride of her": [65535, 0], "pair the pride of her heart": [65535, 0], "the pride of her heart and": [65535, 0], "pride of her heart and were": [65535, 0], "of her heart and were built": [65535, 0], "her heart and were built for": [65535, 0], "heart and were built for style": [65535, 0], "and were built for style not": [65535, 0], "were built for style not service": [65535, 0], "built for style not service she": [65535, 0], "for style not service she could": [65535, 0], "style not service she could have": [65535, 0], "not service she could have seen": [65535, 0], "service she could have seen through": [65535, 0], "she could have seen through a": [65535, 0], "could have seen through a pair": [65535, 0], "have seen through a pair of": [65535, 0], "seen through a pair of stove": [65535, 0], "through a pair of stove lids": [65535, 0], "a pair of stove lids just": [65535, 0], "pair of stove lids just as": [65535, 0], "of stove lids just as well": [65535, 0], "stove lids just as well she": [65535, 0], "lids just as well she looked": [65535, 0], "just as well she looked perplexed": [65535, 0], "as well she looked perplexed for": [65535, 0], "well she looked perplexed for a": [65535, 0], "she looked perplexed for a moment": [65535, 0], "looked perplexed for a moment and": [65535, 0], "perplexed for a moment and then": [65535, 0], "for a moment and then said": [65535, 0], "a moment and then said not": [65535, 0], "moment and then said not fiercely": [65535, 0], "and then said not fiercely but": [65535, 0], "then said not fiercely but still": [65535, 0], "said not fiercely but still loud": [65535, 0], "not fiercely but still loud enough": [65535, 0], "fiercely but still loud enough for": [65535, 0], "but still loud enough for the": [65535, 0], "still loud enough for the furniture": [65535, 0], "loud enough for the furniture to": [65535, 0], "enough for the furniture to hear": [65535, 0], "for the furniture to hear well": [65535, 0], "the furniture to hear well i": [65535, 0], "furniture to hear well i lay": [65535, 0], "to hear well i lay if": [65535, 0], "hear well i lay if i": [65535, 0], "well i lay if i get": [65535, 0], "i lay if i get hold": [65535, 0], "lay if i get hold of": [65535, 0], "if i get hold of you": [65535, 0], "i get hold of you i'll": [65535, 0], "get hold of you i'll she": [65535, 0], "hold of you i'll she did": [65535, 0], "of you i'll she did not": [65535, 0], "you i'll she did not finish": [65535, 0], "i'll she did not finish for": [65535, 0], "she did not finish for by": [65535, 0], "did not finish for by this": [65535, 0], "not finish for by this time": [65535, 0], "finish for by this time she": [65535, 0], "for by this time she was": [65535, 0], "by this time she was bending": [65535, 0], "this time she was bending down": [65535, 0], "time she was bending down and": [65535, 0], "she was bending down and punching": [65535, 0], "was bending down and punching under": [65535, 0], "bending down and punching under the": [65535, 0], "down and punching under the bed": [65535, 0], "and punching under the bed with": [65535, 0], "punching under the bed with the": [65535, 0], "under the bed with the broom": [65535, 0], "the bed with the broom and": [65535, 0], "bed with the broom and so": [65535, 0], "with the broom and so she": [65535, 0], "the broom and so she needed": [65535, 0], "broom and so she needed breath": [65535, 0], "and so she needed breath to": [65535, 0], "so she needed breath to punctuate": [65535, 0], "she needed breath to punctuate the": [65535, 0], "needed breath to punctuate the punches": [65535, 0], "breath to punctuate the punches with": [65535, 0], "to punctuate the punches with she": [65535, 0], "punctuate the punches with she resurrected": [65535, 0], "the punches with she resurrected nothing": [65535, 0], "punches with she resurrected nothing but": [65535, 0], "with she resurrected nothing but the": [65535, 0], "she resurrected nothing but the cat": [65535, 0], "resurrected nothing but the cat i": [65535, 0], "nothing but the cat i never": [65535, 0], "but the cat i never did": [65535, 0], "the cat i never did see": [65535, 0], "cat i never did see the": [65535, 0], "i never did see the beat": [65535, 0], "never did see the beat of": [65535, 0], "did see the beat of that": [65535, 0], "see the beat of that boy": [65535, 0], "the beat of that boy she": [65535, 0], "beat of that boy she went": [65535, 0], "of that boy she went to": [65535, 0], "that boy she went to the": [65535, 0], "boy she went to the open": [65535, 0], "she went to the open door": [65535, 0], "went to the open door and": [65535, 0], "to the open door and stood": [65535, 0], "the open door and stood in": [65535, 0], "open door and stood in it": [65535, 0], "door and stood in it and": [65535, 0], "and stood in it and looked": [65535, 0], "stood in it and looked out": [65535, 0], "in it and looked out among": [65535, 0], "it and looked out among the": [65535, 0], "and looked out among the tomato": [65535, 0], "looked out among the tomato vines": [65535, 0], "out among the tomato vines and": [65535, 0], "among the tomato vines and jimpson": [65535, 0], "the tomato vines and jimpson weeds": [65535, 0], "tomato vines and jimpson weeds that": [65535, 0], "vines and jimpson weeds that constituted": [65535, 0], "and jimpson weeds that constituted the": [65535, 0], "jimpson weeds that constituted the garden": [65535, 0], "weeds that constituted the garden no": [65535, 0], "that constituted the garden no tom": [65535, 0], "constituted the garden no tom so": [65535, 0], "the garden no tom so she": [65535, 0], "garden no tom so she lifted": [65535, 0], "no tom so she lifted up": [65535, 0], "tom so she lifted up her": [65535, 0], "so she lifted up her voice": [65535, 0], "she lifted up her voice at": [65535, 0], "lifted up her voice at an": [65535, 0], "up her voice at an angle": [65535, 0], "her voice at an angle calculated": [65535, 0], "voice at an angle calculated for": [65535, 0], "at an angle calculated for distance": [65535, 0], "an angle calculated for distance and": [65535, 0], "angle calculated for distance and shouted": [65535, 0], "calculated for distance and shouted y": [65535, 0], "for distance and shouted y o": [65535, 0], "distance and shouted y o u": [65535, 0], "and shouted y o u u": [65535, 0], "shouted y o u u tom": [65535, 0], "y o u u tom there": [65535, 0], "o u u tom there was": [65535, 0], "u u tom there was a": [65535, 0], "u tom there was a slight": [65535, 0], "tom there was a slight noise": [65535, 0], "there was a slight noise behind": [65535, 0], "was a slight noise behind her": [65535, 0], "a slight noise behind her and": [65535, 0], "slight noise behind her and she": [65535, 0], "noise behind her and she turned": [65535, 0], "behind her and she turned just": [65535, 0], "her and she turned just in": [65535, 0], "and she turned just in time": [65535, 0], "she turned just in time to": [65535, 0], "turned just in time to seize": [65535, 0], "just in time to seize a": [65535, 0], "in time to seize a small": [65535, 0], "time to seize a small boy": [65535, 0], "to seize a small boy by": [65535, 0], "seize a small boy by the": [65535, 0], "a small boy by the slack": [65535, 0], "small boy by the slack of": [65535, 0], "boy by the slack of his": [65535, 0], "by the slack of his roundabout": [65535, 0], "the slack of his roundabout and": [65535, 0], "slack of his roundabout and arrest": [65535, 0], "of his roundabout and arrest his": [65535, 0], "his roundabout and arrest his flight": [65535, 0], "roundabout and arrest his flight there": [65535, 0], "and arrest his flight there i": [65535, 0], "arrest his flight there i might": [65535, 0], "his flight there i might 'a'": [65535, 0], "flight there i might 'a' thought": [65535, 0], "there i might 'a' thought of": [65535, 0], "i might 'a' thought of that": [65535, 0], "might 'a' thought of that closet": [65535, 0], "'a' thought of that closet what": [65535, 0], "thought of that closet what you": [65535, 0], "of that closet what you been": [65535, 0], "that closet what you been doing": [65535, 0], "closet what you been doing in": [65535, 0], "what you been doing in there": [65535, 0], "you been doing in there nothing": [65535, 0], "been doing in there nothing nothing": [65535, 0], "doing in there nothing nothing look": [65535, 0], "in there nothing nothing look at": [65535, 0], "there nothing nothing look at your": [65535, 0], "nothing nothing look at your hands": [65535, 0], "nothing look at your hands and": [65535, 0], "look at your hands and look": [65535, 0], "at your hands and look at": [65535, 0], "your hands and look at your": [65535, 0], "hands and look at your mouth": [65535, 0], "and look at your mouth what": [65535, 0], "look at your mouth what is": [65535, 0], "at your mouth what is that": [65535, 0], "your mouth what is that i": [65535, 0], "mouth what is that i don't": [65535, 0], "what is that i don't know": [65535, 0], "is that i don't know aunt": [65535, 0], "that i don't know aunt well": [65535, 0], "i don't know aunt well i": [65535, 0], "don't know aunt well i know": [65535, 0], "know aunt well i know it's": [65535, 0], "aunt well i know it's jam": [65535, 0], "well i know it's jam that's": [65535, 0], "i know it's jam that's what": [65535, 0], "know it's jam that's what it": [65535, 0], "it's jam that's what it is": [65535, 0], "jam that's what it is forty": [65535, 0], "that's what it is forty times": [65535, 0], "what it is forty times i've": [65535, 0], "it is forty times i've said": [65535, 0], "is forty times i've said if": [65535, 0], "forty times i've said if you": [65535, 0], "times i've said if you didn't": [65535, 0], "i've said if you didn't let": [65535, 0], "said if you didn't let that": [65535, 0], "if you didn't let that jam": [65535, 0], "you didn't let that jam alone": [65535, 0], "didn't let that jam alone i'd": [65535, 0], "let that jam alone i'd skin": [65535, 0], "that jam alone i'd skin you": [65535, 0], "jam alone i'd skin you hand": [65535, 0], "alone i'd skin you hand me": [65535, 0], "i'd skin you hand me that": [65535, 0], "skin you hand me that switch": [65535, 0], "you hand me that switch the": [65535, 0], "hand me that switch the switch": [65535, 0], "me that switch the switch hovered": [65535, 0], "that switch the switch hovered in": [65535, 0], "switch the switch hovered in the": [65535, 0], "the switch hovered in the air": [65535, 0], "switch hovered in the air the": [65535, 0], "hovered in the air the peril": [65535, 0], "in the air the peril was": [65535, 0], "the air the peril was desperate": [65535, 0], "air the peril was desperate my": [65535, 0], "the peril was desperate my look": [65535, 0], "peril was desperate my look behind": [65535, 0], "was desperate my look behind you": [65535, 0], "desperate my look behind you aunt": [65535, 0], "my look behind you aunt the": [65535, 0], "look behind you aunt the old": [65535, 0], "behind you aunt the old lady": [65535, 0], "you aunt the old lady whirled": [65535, 0], "aunt the old lady whirled round": [65535, 0], "the old lady whirled round and": [65535, 0], "old lady whirled round and snatched": [65535, 0], "lady whirled round and snatched her": [65535, 0], "whirled round and snatched her skirts": [65535, 0], "round and snatched her skirts out": [65535, 0], "and snatched her skirts out of": [65535, 0], "snatched her skirts out of danger": [65535, 0], "her skirts out of danger the": [65535, 0], "skirts out of danger the lad": [65535, 0], "out of danger the lad fled": [65535, 0], "of danger the lad fled on": [65535, 0], "danger the lad fled on the": [65535, 0], "the lad fled on the instant": [65535, 0], "lad fled on the instant scrambled": [65535, 0], "fled on the instant scrambled up": [65535, 0], "on the instant scrambled up the": [65535, 0], "the instant scrambled up the high": [65535, 0], "instant scrambled up the high board": [65535, 0], "scrambled up the high board fence": [65535, 0], "up the high board fence and": [65535, 0], "the high board fence and disappeared": [65535, 0], "high board fence and disappeared over": [65535, 0], "board fence and disappeared over it": [65535, 0], "fence and disappeared over it his": [65535, 0], "and disappeared over it his aunt": [65535, 0], "disappeared over it his aunt polly": [65535, 0], "over it his aunt polly stood": [65535, 0], "it his aunt polly stood surprised": [65535, 0], "his aunt polly stood surprised a": [65535, 0], "aunt polly stood surprised a moment": [65535, 0], "polly stood surprised a moment and": [65535, 0], "stood surprised a moment and then": [65535, 0], "surprised a moment and then broke": [65535, 0], "a moment and then broke into": [65535, 0], "moment and then broke into a": [65535, 0], "and then broke into a gentle": [65535, 0], "then broke into a gentle laugh": [65535, 0], "broke into a gentle laugh hang": [65535, 0], "into a gentle laugh hang the": [65535, 0], "a gentle laugh hang the boy": [65535, 0], "gentle laugh hang the boy can't": [65535, 0], "laugh hang the boy can't i": [65535, 0], "hang the boy can't i never": [65535, 0], "the boy can't i never learn": [65535, 0], "boy can't i never learn anything": [65535, 0], "can't i never learn anything ain't": [65535, 0], "i never learn anything ain't he": [65535, 0], "never learn anything ain't he played": [65535, 0], "learn anything ain't he played me": [65535, 0], "anything ain't he played me tricks": [65535, 0], "ain't he played me tricks enough": [65535, 0], "he played me tricks enough like": [65535, 0], "played me tricks enough like that": [65535, 0], "me tricks enough like that for": [65535, 0], "tricks enough like that for me": [65535, 0], "enough like that for me to": [65535, 0], "like that for me to be": [65535, 0], "that for me to be looking": [65535, 0], "for me to be looking out": [65535, 0], "me to be looking out for": [65535, 0], "to be looking out for him": [65535, 0], "be looking out for him by": [65535, 0], "looking out for him by this": [65535, 0], "out for him by this time": [65535, 0], "for him by this time but": [65535, 0], "him by this time but old": [65535, 0], "by this time but old fools": [65535, 0], "this time but old fools is": [65535, 0], "time but old fools is the": [65535, 0], "but old fools is the biggest": [65535, 0], "old fools is the biggest fools": [65535, 0], "fools is the biggest fools there": [65535, 0], "is the biggest fools there is": [65535, 0], "the biggest fools there is can't": [65535, 0], "biggest fools there is can't learn": [65535, 0], "fools there is can't learn an": [65535, 0], "there is can't learn an old": [65535, 0], "is can't learn an old dog": [65535, 0], "can't learn an old dog new": [65535, 0], "learn an old dog new tricks": [65535, 0], "an old dog new tricks as": [65535, 0], "old dog new tricks as the": [65535, 0], "dog new tricks as the saying": [65535, 0], "new tricks as the saying is": [65535, 0], "tricks as the saying is but": [65535, 0], "as the saying is but my": [65535, 0], "the saying is but my goodness": [65535, 0], "saying is but my goodness he": [65535, 0], "is but my goodness he never": [65535, 0], "but my goodness he never plays": [65535, 0], "my goodness he never plays them": [65535, 0], "goodness he never plays them alike": [65535, 0], "he never plays them alike two": [65535, 0], "never plays them alike two days": [65535, 0], "plays them alike two days and": [65535, 0], "them alike two days and how": [65535, 0], "alike two days and how is": [65535, 0], "two days and how is a": [65535, 0], "days and how is a body": [65535, 0], "and how is a body to": [65535, 0], "how is a body to know": [65535, 0], "is a body to know what's": [65535, 0], "a body to know what's coming": [65535, 0], "body to know what's coming he": [65535, 0], "to know what's coming he 'pears": [65535, 0], "know what's coming he 'pears to": [65535, 0], "what's coming he 'pears to know": [65535, 0], "coming he 'pears to know just": [65535, 0], "he 'pears to know just how": [65535, 0], "'pears to know just how long": [65535, 0], "to know just how long he": [65535, 0], "know just how long he can": [65535, 0], "just how long he can torment": [65535, 0], "how long he can torment me": [65535, 0], "long he can torment me before": [65535, 0], "he can torment me before i": [65535, 0], "can torment me before i get": [65535, 0], "torment me before i get my": [65535, 0], "me before i get my dander": [65535, 0], "before i get my dander up": [65535, 0], "i get my dander up and": [65535, 0], "get my dander up and he": [65535, 0], "my dander up and he knows": [65535, 0], "dander up and he knows if": [65535, 0], "up and he knows if he": [65535, 0], "and he knows if he can": [65535, 0], "he knows if he can make": [65535, 0], "knows if he can make out": [65535, 0], "if he can make out to": [65535, 0], "he can make out to put": [65535, 0], "can make out to put me": [65535, 0], "make out to put me off": [65535, 0], "out to put me off for": [65535, 0], "to put me off for a": [65535, 0], "put me off for a minute": [65535, 0], "me off for a minute or": [65535, 0], "off for a minute or make": [65535, 0], "for a minute or make me": [65535, 0], "a minute or make me laugh": [65535, 0], "minute or make me laugh it's": [65535, 0], "or make me laugh it's all": [65535, 0], "make me laugh it's all down": [65535, 0], "me laugh it's all down again": [65535, 0], "laugh it's all down again and": [65535, 0], "it's all down again and i": [65535, 0], "all down again and i can't": [65535, 0], "down again and i can't hit": [65535, 0], "again and i can't hit him": [65535, 0], "and i can't hit him a": [65535, 0], "i can't hit him a lick": [65535, 0], "can't hit him a lick i": [65535, 0], "hit him a lick i ain't": [65535, 0], "him a lick i ain't doing": [65535, 0], "a lick i ain't doing my": [65535, 0], "lick i ain't doing my duty": [65535, 0], "i ain't doing my duty by": [65535, 0], "ain't doing my duty by that": [65535, 0], "doing my duty by that boy": [65535, 0], "my duty by that boy and": [65535, 0], "duty by that boy and that's": [65535, 0], "by that boy and that's the": [65535, 0], "that boy and that's the lord's": [65535, 0], "boy and that's the lord's truth": [65535, 0], "and that's the lord's truth goodness": [65535, 0], "that's the lord's truth goodness knows": [65535, 0], "the lord's truth goodness knows spare": [65535, 0], "lord's truth goodness knows spare the": [65535, 0], "truth goodness knows spare the rod": [65535, 0], "goodness knows spare the rod and": [65535, 0], "knows spare the rod and spoil": [65535, 0], "spare the rod and spoil the": [65535, 0], "the rod and spoil the child": [65535, 0], "rod and spoil the child as": [65535, 0], "and spoil the child as the": [65535, 0], "spoil the child as the good": [65535, 0], "the child as the good book": [65535, 0], "child as the good book says": [65535, 0], "as the good book says i'm": [65535, 0], "the good book says i'm a": [65535, 0], "good book says i'm a laying": [65535, 0], "book says i'm a laying up": [65535, 0], "says i'm a laying up sin": [65535, 0], "i'm a laying up sin and": [65535, 0], "a laying up sin and suffering": [65535, 0], "laying up sin and suffering for": [65535, 0], "up sin and suffering for us": [65535, 0], "sin and suffering for us both": [65535, 0], "and suffering for us both i": [65535, 0], "suffering for us both i know": [65535, 0], "for us both i know he's": [65535, 0], "us both i know he's full": [65535, 0], "both i know he's full of": [65535, 0], "i know he's full of the": [65535, 0], "know he's full of the old": [65535, 0], "he's full of the old scratch": [65535, 0], "full of the old scratch but": [65535, 0], "of the old scratch but laws": [65535, 0], "the old scratch but laws a": [65535, 0], "old scratch but laws a me": [65535, 0], "scratch but laws a me he's": [65535, 0], "but laws a me he's my": [65535, 0], "laws a me he's my own": [65535, 0], "a me he's my own dead": [65535, 0], "me he's my own dead sister's": [65535, 0], "he's my own dead sister's boy": [65535, 0], "my own dead sister's boy poor": [65535, 0], "own dead sister's boy poor thing": [65535, 0], "dead sister's boy poor thing and": [65535, 0], "sister's boy poor thing and i": [65535, 0], "boy poor thing and i ain't": [65535, 0], "poor thing and i ain't got": [65535, 0], "thing and i ain't got the": [65535, 0], "and i ain't got the heart": [65535, 0], "i ain't got the heart to": [65535, 0], "ain't got the heart to lash": [65535, 0], "got the heart to lash him": [65535, 0], "the heart to lash him somehow": [65535, 0], "heart to lash him somehow every": [65535, 0], "to lash him somehow every time": [65535, 0], "lash him somehow every time i": [65535, 0], "him somehow every time i let": [65535, 0], "somehow every time i let him": [65535, 0], "every time i let him off": [65535, 0], "time i let him off my": [65535, 0], "i let him off my conscience": [65535, 0], "let him off my conscience does": [65535, 0], "him off my conscience does hurt": [65535, 0], "off my conscience does hurt me": [65535, 0], "my conscience does hurt me so": [65535, 0], "conscience does hurt me so and": [65535, 0], "does hurt me so and every": [65535, 0], "hurt me so and every time": [65535, 0], "me so and every time i": [65535, 0], "so and every time i hit": [65535, 0], "and every time i hit him": [65535, 0], "every time i hit him my": [65535, 0], "time i hit him my old": [65535, 0], "i hit him my old heart": [65535, 0], "hit him my old heart most": [65535, 0], "him my old heart most breaks": [65535, 0], "my old heart most breaks well": [65535, 0], "old heart most breaks well a": [65535, 0], "heart most breaks well a well": [65535, 0], "most breaks well a well man": [65535, 0], "breaks well a well man that": [65535, 0], "well a well man that is": [65535, 0], "a well man that is born": [65535, 0], "well man that is born of": [65535, 0], "man that is born of woman": [65535, 0], "that is born of woman is": [65535, 0], "is born of woman is of": [65535, 0], "born of woman is of few": [65535, 0], "of woman is of few days": [65535, 0], "woman is of few days and": [65535, 0], "is of few days and full": [65535, 0], "of few days and full of": [65535, 0], "few days and full of trouble": [65535, 0], "days and full of trouble as": [65535, 0], "and full of trouble as the": [65535, 0], "full of trouble as the scripture": [65535, 0], "of trouble as the scripture says": [65535, 0], "trouble as the scripture says and": [65535, 0], "as the scripture says and i": [65535, 0], "the scripture says and i reckon": [65535, 0], "scripture says and i reckon it's": [65535, 0], "says and i reckon it's so": [65535, 0], "and i reckon it's so he'll": [65535, 0], "i reckon it's so he'll play": [65535, 0], "reckon it's so he'll play hookey": [65535, 0], "it's so he'll play hookey this": [65535, 0], "so he'll play hookey this evening": [65535, 0], "he'll play hookey this evening and": [65535, 0], "play hookey this evening and i'll": [65535, 0], "hookey this evening and i'll just": [65535, 0], "this evening and i'll just be": [65535, 0], "evening and i'll just be obliged": [65535, 0], "and i'll just be obliged to": [65535, 0], "i'll just be obliged to make": [65535, 0], "just be obliged to make him": [65535, 0], "be obliged to make him work": [65535, 0], "obliged to make him work to": [65535, 0], "to make him work to morrow": [65535, 0], "make him work to morrow to": [65535, 0], "him work to morrow to punish": [65535, 0], "work to morrow to punish him": [65535, 0], "to morrow to punish him it's": [65535, 0], "morrow to punish him it's mighty": [65535, 0], "to punish him it's mighty hard": [65535, 0], "punish him it's mighty hard to": [65535, 0], "him it's mighty hard to make": [65535, 0], "it's mighty hard to make him": [65535, 0], "mighty hard to make him work": [65535, 0], "hard to make him work saturdays": [65535, 0], "to make him work saturdays when": [65535, 0], "make him work saturdays when all": [65535, 0], "him work saturdays when all the": [65535, 0], "work saturdays when all the boys": [65535, 0], "saturdays when all the boys is": [65535, 0], "when all the boys is having": [65535, 0], "all the boys is having holiday": [65535, 0], "the boys is having holiday but": [65535, 0], "boys is having holiday but he": [65535, 0], "is having holiday but he hates": [65535, 0], "having holiday but he hates work": [65535, 0], "holiday but he hates work more": [65535, 0], "but he hates work more than": [65535, 0], "he hates work more than he": [65535, 0], "hates work more than he hates": [65535, 0], "work more than he hates anything": [65535, 0], "more than he hates anything else": [65535, 0], "than he hates anything else and": [65535, 0], "he hates anything else and i've": [65535, 0], "hates anything else and i've got": [65535, 0], "anything else and i've got to": [65535, 0], "else and i've got to do": [65535, 0], "and i've got to do some": [65535, 0], "i've got to do some of": [65535, 0], "got to do some of my": [65535, 0], "to do some of my duty": [65535, 0], "do some of my duty by": [65535, 0], "some of my duty by him": [65535, 0], "of my duty by him or": [65535, 0], "my duty by him or i'll": [65535, 0], "duty by him or i'll be": [65535, 0], "by him or i'll be the": [65535, 0], "him or i'll be the ruination": [65535, 0], "or i'll be the ruination of": [65535, 0], "i'll be the ruination of the": [65535, 0], "be the ruination of the child": [65535, 0], "the ruination of the child tom": [65535, 0], "ruination of the child tom did": [65535, 0], "of the child tom did play": [65535, 0], "the child tom did play hookey": [65535, 0], "child tom did play hookey and": [65535, 0], "tom did play hookey and he": [65535, 0], "did play hookey and he had": [65535, 0], "play hookey and he had a": [65535, 0], "hookey and he had a very": [65535, 0], "and he had a very good": [65535, 0], "he had a very good time": [65535, 0], "had a very good time he": [65535, 0], "a very good time he got": [65535, 0], "very good time he got back": [65535, 0], "good time he got back home": [65535, 0], "time he got back home barely": [65535, 0], "he got back home barely in": [65535, 0], "got back home barely in season": [65535, 0], "back home barely in season to": [65535, 0], "home barely in season to help": [65535, 0], "barely in season to help jim": [65535, 0], "in season to help jim the": [65535, 0], "season to help jim the small": [65535, 0], "to help jim the small colored": [65535, 0], "help jim the small colored boy": [65535, 0], "jim the small colored boy saw": [65535, 0], "the small colored boy saw next": [65535, 0], "small colored boy saw next day's": [65535, 0], "colored boy saw next day's wood": [65535, 0], "boy saw next day's wood and": [65535, 0], "saw next day's wood and split": [65535, 0], "next day's wood and split the": [65535, 0], "day's wood and split the kindlings": [65535, 0], "wood and split the kindlings before": [65535, 0], "and split the kindlings before supper": [65535, 0], "split the kindlings before supper at": [65535, 0], "the kindlings before supper at least": [65535, 0], "kindlings before supper at least he": [65535, 0], "before supper at least he was": [65535, 0], "supper at least he was there": [65535, 0], "at least he was there in": [65535, 0], "least he was there in time": [65535, 0], "he was there in time to": [65535, 0], "was there in time to tell": [65535, 0], "there in time to tell his": [65535, 0], "in time to tell his adventures": [65535, 0], "time to tell his adventures to": [65535, 0], "to tell his adventures to jim": [65535, 0], "tell his adventures to jim while": [65535, 0], "his adventures to jim while jim": [65535, 0], "adventures to jim while jim did": [65535, 0], "to jim while jim did three": [65535, 0], "jim while jim did three fourths": [65535, 0], "while jim did three fourths of": [65535, 0], "jim did three fourths of the": [65535, 0], "did three fourths of the work": [65535, 0], "three fourths of the work tom's": [65535, 0], "fourths of the work tom's younger": [65535, 0], "of the work tom's younger brother": [65535, 0], "the work tom's younger brother or": [65535, 0], "work tom's younger brother or rather": [65535, 0], "tom's younger brother or rather half": [65535, 0], "younger brother or rather half brother": [65535, 0], "brother or rather half brother sid": [65535, 0], "or rather half brother sid was": [65535, 0], "rather half brother sid was already": [65535, 0], "half brother sid was already through": [65535, 0], "brother sid was already through with": [65535, 0], "sid was already through with his": [65535, 0], "was already through with his part": [65535, 0], "already through with his part of": [65535, 0], "through with his part of the": [65535, 0], "with his part of the work": [65535, 0], "his part of the work picking": [65535, 0], "part of the work picking up": [65535, 0], "of the work picking up chips": [65535, 0], "the work picking up chips for": [65535, 0], "work picking up chips for he": [65535, 0], "picking up chips for he was": [65535, 0], "up chips for he was a": [65535, 0], "chips for he was a quiet": [65535, 0], "for he was a quiet boy": [65535, 0], "he was a quiet boy and": [65535, 0], "was a quiet boy and had": [65535, 0], "a quiet boy and had no": [65535, 0], "quiet boy and had no adventurous": [65535, 0], "boy and had no adventurous troublesome": [65535, 0], "and had no adventurous troublesome ways": [65535, 0], "had no adventurous troublesome ways while": [65535, 0], "no adventurous troublesome ways while tom": [65535, 0], "adventurous troublesome ways while tom was": [65535, 0], "troublesome ways while tom was eating": [65535, 0], "ways while tom was eating his": [65535, 0], "while tom was eating his supper": [65535, 0], "tom was eating his supper and": [65535, 0], "was eating his supper and stealing": [65535, 0], "eating his supper and stealing sugar": [65535, 0], "his supper and stealing sugar as": [65535, 0], "supper and stealing sugar as opportunity": [65535, 0], "and stealing sugar as opportunity offered": [65535, 0], "stealing sugar as opportunity offered aunt": [65535, 0], "sugar as opportunity offered aunt polly": [65535, 0], "as opportunity offered aunt polly asked": [65535, 0], "opportunity offered aunt polly asked him": [65535, 0], "offered aunt polly asked him questions": [65535, 0], "aunt polly asked him questions that": [65535, 0], "polly asked him questions that were": [65535, 0], "asked him questions that were full": [65535, 0], "him questions that were full of": [65535, 0], "questions that were full of guile": [65535, 0], "that were full of guile and": [65535, 0], "were full of guile and very": [65535, 0], "full of guile and very deep": [65535, 0], "of guile and very deep for": [65535, 0], "guile and very deep for she": [65535, 0], "and very deep for she wanted": [65535, 0], "very deep for she wanted to": [65535, 0], "deep for she wanted to trap": [65535, 0], "for she wanted to trap him": [65535, 0], "she wanted to trap him into": [65535, 0], "wanted to trap him into damaging": [65535, 0], "to trap him into damaging revealments": [65535, 0], "trap him into damaging revealments like": [65535, 0], "him into damaging revealments like many": [65535, 0], "into damaging revealments like many other": [65535, 0], "damaging revealments like many other simple": [65535, 0], "revealments like many other simple hearted": [65535, 0], "like many other simple hearted souls": [65535, 0], "many other simple hearted souls it": [65535, 0], "other simple hearted souls it was": [65535, 0], "simple hearted souls it was her": [65535, 0], "hearted souls it was her pet": [65535, 0], "souls it was her pet vanity": [65535, 0], "it was her pet vanity to": [65535, 0], "was her pet vanity to believe": [65535, 0], "her pet vanity to believe she": [65535, 0], "pet vanity to believe she was": [65535, 0], "vanity to believe she was endowed": [65535, 0], "to believe she was endowed with": [65535, 0], "believe she was endowed with a": [65535, 0], "she was endowed with a talent": [65535, 0], "was endowed with a talent for": [65535, 0], "endowed with a talent for dark": [65535, 0], "with a talent for dark and": [65535, 0], "a talent for dark and mysterious": [65535, 0], "talent for dark and mysterious diplomacy": [65535, 0], "for dark and mysterious diplomacy and": [65535, 0], "dark and mysterious diplomacy and she": [65535, 0], "and mysterious diplomacy and she loved": [65535, 0], "mysterious diplomacy and she loved to": [65535, 0], "diplomacy and she loved to contemplate": [65535, 0], "and she loved to contemplate her": [65535, 0], "she loved to contemplate her most": [65535, 0], "loved to contemplate her most transparent": [65535, 0], "to contemplate her most transparent devices": [65535, 0], "contemplate her most transparent devices as": [65535, 0], "her most transparent devices as marvels": [65535, 0], "most transparent devices as marvels of": [65535, 0], "transparent devices as marvels of low": [65535, 0], "devices as marvels of low cunning": [65535, 0], "as marvels of low cunning said": [65535, 0], "marvels of low cunning said she": [65535, 0], "of low cunning said she tom": [65535, 0], "low cunning said she tom it": [65535, 0], "cunning said she tom it was": [65535, 0], "said she tom it was middling": [65535, 0], "she tom it was middling warm": [65535, 0], "tom it was middling warm in": [65535, 0], "it was middling warm in school": [65535, 0], "was middling warm in school warn't": [65535, 0], "middling warm in school warn't it": [65535, 0], "warm in school warn't it yes'm": [65535, 0], "in school warn't it yes'm powerful": [65535, 0], "school warn't it yes'm powerful warm": [65535, 0], "warn't it yes'm powerful warm warn't": [65535, 0], "it yes'm powerful warm warn't it": [65535, 0], "yes'm powerful warm warn't it yes'm": [65535, 0], "powerful warm warn't it yes'm didn't": [65535, 0], "warm warn't it yes'm didn't you": [65535, 0], "warn't it yes'm didn't you want": [65535, 0], "it yes'm didn't you want to": [65535, 0], "yes'm didn't you want to go": [65535, 0], "didn't you want to go in": [65535, 0], "you want to go in a": [65535, 0], "want to go in a swimming": [65535, 0], "to go in a swimming tom": [65535, 0], "go in a swimming tom a": [65535, 0], "in a swimming tom a bit": [65535, 0], "a swimming tom a bit of": [65535, 0], "swimming tom a bit of a": [65535, 0], "tom a bit of a scare": [65535, 0], "a bit of a scare shot": [65535, 0], "bit of a scare shot through": [65535, 0], "of a scare shot through tom": [65535, 0], "a scare shot through tom a": [65535, 0], "scare shot through tom a touch": [65535, 0], "shot through tom a touch of": [65535, 0], "through tom a touch of uncomfortable": [65535, 0], "tom a touch of uncomfortable suspicion": [65535, 0], "a touch of uncomfortable suspicion he": [65535, 0], "touch of uncomfortable suspicion he searched": [65535, 0], "of uncomfortable suspicion he searched aunt": [65535, 0], "uncomfortable suspicion he searched aunt polly's": [65535, 0], "suspicion he searched aunt polly's face": [65535, 0], "he searched aunt polly's face but": [65535, 0], "searched aunt polly's face but it": [65535, 0], "aunt polly's face but it told": [65535, 0], "polly's face but it told him": [65535, 0], "face but it told him nothing": [65535, 0], "but it told him nothing so": [65535, 0], "it told him nothing so he": [65535, 0], "told him nothing so he said": [65535, 0], "him nothing so he said no'm": [65535, 0], "nothing so he said no'm well": [65535, 0], "so he said no'm well not": [65535, 0], "he said no'm well not very": [65535, 0], "said no'm well not very much": [65535, 0], "no'm well not very much the": [65535, 0], "well not very much the old": [65535, 0], "not very much the old lady": [65535, 0], "very much the old lady reached": [65535, 0], "much the old lady reached out": [65535, 0], "the old lady reached out her": [65535, 0], "old lady reached out her hand": [65535, 0], "lady reached out her hand and": [65535, 0], "reached out her hand and felt": [65535, 0], "out her hand and felt tom's": [65535, 0], "her hand and felt tom's shirt": [65535, 0], "hand and felt tom's shirt and": [65535, 0], "and felt tom's shirt and said": [65535, 0], "felt tom's shirt and said but": [65535, 0], "tom's shirt and said but you": [65535, 0], "shirt and said but you ain't": [65535, 0], "and said but you ain't too": [65535, 0], "said but you ain't too warm": [65535, 0], "but you ain't too warm now": [65535, 0], "you ain't too warm now though": [65535, 0], "ain't too warm now though and": [65535, 0], "too warm now though and it": [65535, 0], "warm now though and it flattered": [65535, 0], "now though and it flattered her": [65535, 0], "though and it flattered her to": [65535, 0], "and it flattered her to reflect": [65535, 0], "it flattered her to reflect that": [65535, 0], "flattered her to reflect that she": [65535, 0], "her to reflect that she had": [65535, 0], "to reflect that she had discovered": [65535, 0], "reflect that she had discovered that": [65535, 0], "that she had discovered that the": [65535, 0], "she had discovered that the shirt": [65535, 0], "had discovered that the shirt was": [65535, 0], "discovered that the shirt was dry": [65535, 0], "that the shirt was dry without": [65535, 0], "the shirt was dry without anybody": [65535, 0], "shirt was dry without anybody knowing": [65535, 0], "was dry without anybody knowing that": [65535, 0], "dry without anybody knowing that that": [65535, 0], "without anybody knowing that that was": [65535, 0], "anybody knowing that that was what": [65535, 0], "knowing that that was what she": [65535, 0], "that that was what she had": [65535, 0], "that was what she had in": [65535, 0], "was what she had in her": [65535, 0], "what she had in her mind": [65535, 0], "she had in her mind but": [65535, 0], "had in her mind but in": [65535, 0], "in her mind but in spite": [65535, 0], "her mind but in spite of": [65535, 0], "mind but in spite of her": [65535, 0], "but in spite of her tom": [65535, 0], "in spite of her tom knew": [65535, 0], "spite of her tom knew where": [65535, 0], "of her tom knew where the": [65535, 0], "her tom knew where the wind": [65535, 0], "tom knew where the wind lay": [65535, 0], "knew where the wind lay now": [65535, 0], "where the wind lay now so": [65535, 0], "the wind lay now so he": [65535, 0], "wind lay now so he forestalled": [65535, 0], "lay now so he forestalled what": [65535, 0], "now so he forestalled what might": [65535, 0], "so he forestalled what might be": [65535, 0], "he forestalled what might be the": [65535, 0], "forestalled what might be the next": [65535, 0], "what might be the next move": [65535, 0], "might be the next move some": [65535, 0], "be the next move some of": [65535, 0], "the next move some of us": [65535, 0], "next move some of us pumped": [65535, 0], "move some of us pumped on": [65535, 0], "some of us pumped on our": [65535, 0], "of us pumped on our heads": [65535, 0], "us pumped on our heads mine's": [65535, 0], "pumped on our heads mine's damp": [65535, 0], "on our heads mine's damp yet": [65535, 0], "our heads mine's damp yet see": [65535, 0], "heads mine's damp yet see aunt": [65535, 0], "mine's damp yet see aunt polly": [65535, 0], "damp yet see aunt polly was": [65535, 0], "yet see aunt polly was vexed": [65535, 0], "see aunt polly was vexed to": [65535, 0], "aunt polly was vexed to think": [65535, 0], "polly was vexed to think she": [65535, 0], "was vexed to think she had": [65535, 0], "vexed to think she had overlooked": [65535, 0], "to think she had overlooked that": [65535, 0], "think she had overlooked that bit": [65535, 0], "she had overlooked that bit of": [65535, 0], "had overlooked that bit of circumstantial": [65535, 0], "overlooked that bit of circumstantial evidence": [65535, 0], "that bit of circumstantial evidence and": [65535, 0], "bit of circumstantial evidence and missed": [65535, 0], "of circumstantial evidence and missed a": [65535, 0], "circumstantial evidence and missed a trick": [65535, 0], "evidence and missed a trick then": [65535, 0], "and missed a trick then she": [65535, 0], "missed a trick then she had": [65535, 0], "a trick then she had a": [65535, 0], "trick then she had a new": [65535, 0], "then she had a new inspiration": [65535, 0], "she had a new inspiration tom": [65535, 0], "had a new inspiration tom you": [65535, 0], "a new inspiration tom you didn't": [65535, 0], "new inspiration tom you didn't have": [65535, 0], "inspiration tom you didn't have to": [65535, 0], "tom you didn't have to undo": [65535, 0], "you didn't have to undo your": [65535, 0], "didn't have to undo your shirt": [65535, 0], "have to undo your shirt collar": [65535, 0], "to undo your shirt collar where": [65535, 0], "undo your shirt collar where i": [65535, 0], "your shirt collar where i sewed": [65535, 0], "shirt collar where i sewed it": [65535, 0], "collar where i sewed it to": [65535, 0], "where i sewed it to pump": [65535, 0], "i sewed it to pump on": [65535, 0], "sewed it to pump on your": [65535, 0], "it to pump on your head": [65535, 0], "to pump on your head did": [65535, 0], "pump on your head did you": [65535, 0], "on your head did you unbutton": [65535, 0], "your head did you unbutton your": [65535, 0], "head did you unbutton your jacket": [65535, 0], "did you unbutton your jacket the": [65535, 0], "you unbutton your jacket the trouble": [65535, 0], "unbutton your jacket the trouble vanished": [65535, 0], "your jacket the trouble vanished out": [65535, 0], "jacket the trouble vanished out of": [65535, 0], "the trouble vanished out of tom's": [65535, 0], "trouble vanished out of tom's face": [65535, 0], "vanished out of tom's face he": [65535, 0], "out of tom's face he opened": [65535, 0], "of tom's face he opened his": [65535, 0], "tom's face he opened his jacket": [65535, 0], "face he opened his jacket his": [65535, 0], "he opened his jacket his shirt": [65535, 0], "opened his jacket his shirt collar": [65535, 0], "his jacket his shirt collar was": [65535, 0], "jacket his shirt collar was securely": [65535, 0], "his shirt collar was securely sewed": [65535, 0], "shirt collar was securely sewed bother": [65535, 0], "collar was securely sewed bother well": [65535, 0], "was securely sewed bother well go": [65535, 0], "securely sewed bother well go 'long": [65535, 0], "sewed bother well go 'long with": [65535, 0], "bother well go 'long with you": [65535, 0], "well go 'long with you i'd": [65535, 0], "go 'long with you i'd made": [65535, 0], "'long with you i'd made sure": [65535, 0], "with you i'd made sure you'd": [65535, 0], "you i'd made sure you'd played": [65535, 0], "i'd made sure you'd played hookey": [65535, 0], "made sure you'd played hookey and": [65535, 0], "sure you'd played hookey and been": [65535, 0], "you'd played hookey and been a": [65535, 0], "played hookey and been a swimming": [65535, 0], "hookey and been a swimming but": [65535, 0], "and been a swimming but i": [65535, 0], "been a swimming but i forgive": [65535, 0], "a swimming but i forgive ye": [65535, 0], "swimming but i forgive ye tom": [65535, 0], "but i forgive ye tom i": [65535, 0], "i forgive ye tom i reckon": [65535, 0], "forgive ye tom i reckon you're": [65535, 0], "ye tom i reckon you're a": [65535, 0], "tom i reckon you're a kind": [65535, 0], "i reckon you're a kind of": [65535, 0], "reckon you're a kind of a": [65535, 0], "you're a kind of a singed": [65535, 0], "a kind of a singed cat": [65535, 0], "kind of a singed cat as": [65535, 0], "of a singed cat as the": [65535, 0], "a singed cat as the saying": [65535, 0], "singed cat as the saying is": [65535, 0], "cat as the saying is better'n": [65535, 0], "as the saying is better'n you": [65535, 0], "the saying is better'n you look": [65535, 0], "saying is better'n you look this": [65535, 0], "is better'n you look this time": [65535, 0], "better'n you look this time she": [65535, 0], "you look this time she was": [65535, 0], "look this time she was half": [65535, 0], "this time she was half sorry": [65535, 0], "time she was half sorry her": [65535, 0], "she was half sorry her sagacity": [65535, 0], "was half sorry her sagacity had": [65535, 0], "half sorry her sagacity had miscarried": [65535, 0], "sorry her sagacity had miscarried and": [65535, 0], "her sagacity had miscarried and half": [65535, 0], "sagacity had miscarried and half glad": [65535, 0], "had miscarried and half glad that": [65535, 0], "miscarried and half glad that tom": [65535, 0], "and half glad that tom had": [65535, 0], "half glad that tom had stumbled": [65535, 0], "glad that tom had stumbled into": [65535, 0], "that tom had stumbled into obedient": [65535, 0], "tom had stumbled into obedient conduct": [65535, 0], "had stumbled into obedient conduct for": [65535, 0], "stumbled into obedient conduct for once": [65535, 0], "into obedient conduct for once but": [65535, 0], "obedient conduct for once but sidney": [65535, 0], "conduct for once but sidney said": [65535, 0], "for once but sidney said well": [65535, 0], "once but sidney said well now": [65535, 0], "but sidney said well now if": [65535, 0], "sidney said well now if i": [65535, 0], "said well now if i didn't": [65535, 0], "well now if i didn't think": [65535, 0], "now if i didn't think you": [65535, 0], "if i didn't think you sewed": [65535, 0], "i didn't think you sewed his": [65535, 0], "didn't think you sewed his collar": [65535, 0], "think you sewed his collar with": [65535, 0], "you sewed his collar with white": [65535, 0], "sewed his collar with white thread": [65535, 0], "his collar with white thread but": [65535, 0], "collar with white thread but it's": [65535, 0], "with white thread but it's black": [65535, 0], "white thread but it's black why": [65535, 0], "thread but it's black why i": [65535, 0], "but it's black why i did": [65535, 0], "it's black why i did sew": [65535, 0], "black why i did sew it": [65535, 0], "why i did sew it with": [65535, 0], "i did sew it with white": [65535, 0], "did sew it with white tom": [65535, 0], "sew it with white tom but": [65535, 0], "it with white tom but tom": [65535, 0], "with white tom but tom did": [65535, 0], "white tom but tom did not": [65535, 0], "tom but tom did not wait": [65535, 0], "but tom did not wait for": [65535, 0], "tom did not wait for the": [65535, 0], "did not wait for the rest": [65535, 0], "not wait for the rest as": [65535, 0], "wait for the rest as he": [65535, 0], "for the rest as he went": [65535, 0], "the rest as he went out": [65535, 0], "rest as he went out at": [65535, 0], "as he went out at the": [65535, 0], "he went out at the door": [65535, 0], "went out at the door he": [65535, 0], "out at the door he said": [65535, 0], "at the door he said siddy": [65535, 0], "the door he said siddy i'll": [65535, 0], "door he said siddy i'll lick": [65535, 0], "he said siddy i'll lick you": [65535, 0], "said siddy i'll lick you for": [65535, 0], "siddy i'll lick you for that": [65535, 0], "i'll lick you for that in": [65535, 0], "lick you for that in a": [65535, 0], "you for that in a safe": [65535, 0], "for that in a safe place": [65535, 0], "that in a safe place tom": [65535, 0], "in a safe place tom examined": [65535, 0], "a safe place tom examined two": [65535, 0], "safe place tom examined two large": [65535, 0], "place tom examined two large needles": [65535, 0], "tom examined two large needles which": [65535, 0], "examined two large needles which were": [65535, 0], "two large needles which were thrust": [65535, 0], "large needles which were thrust into": [65535, 0], "needles which were thrust into the": [65535, 0], "which were thrust into the lapels": [65535, 0], "were thrust into the lapels of": [65535, 0], "thrust into the lapels of his": [65535, 0], "into the lapels of his jacket": [65535, 0], "the lapels of his jacket and": [65535, 0], "lapels of his jacket and had": [65535, 0], "of his jacket and had thread": [65535, 0], "his jacket and had thread bound": [65535, 0], "jacket and had thread bound about": [65535, 0], "and had thread bound about them": [65535, 0], "had thread bound about them one": [65535, 0], "thread bound about them one needle": [65535, 0], "bound about them one needle carried": [65535, 0], "about them one needle carried white": [65535, 0], "them one needle carried white thread": [65535, 0], "one needle carried white thread and": [65535, 0], "needle carried white thread and the": [65535, 0], "carried white thread and the other": [65535, 0], "white thread and the other black": [65535, 0], "thread and the other black he": [65535, 0], "and the other black he said": [65535, 0], "the other black he said she'd": [65535, 0], "other black he said she'd never": [65535, 0], "black he said she'd never noticed": [65535, 0], "he said she'd never noticed if": [65535, 0], "said she'd never noticed if it": [65535, 0], "she'd never noticed if it hadn't": [65535, 0], "never noticed if it hadn't been": [65535, 0], "noticed if it hadn't been for": [65535, 0], "if it hadn't been for sid": [65535, 0], "it hadn't been for sid confound": [65535, 0], "hadn't been for sid confound it": [65535, 0], "been for sid confound it sometimes": [65535, 0], "for sid confound it sometimes she": [65535, 0], "sid confound it sometimes she sews": [65535, 0], "confound it sometimes she sews it": [65535, 0], "it sometimes she sews it with": [65535, 0], "sometimes she sews it with white": [65535, 0], "she sews it with white and": [65535, 0], "sews it with white and sometimes": [65535, 0], "it with white and sometimes she": [65535, 0], "with white and sometimes she sews": [65535, 0], "white and sometimes she sews it": [65535, 0], "and sometimes she sews it with": [65535, 0], "sometimes she sews it with black": [65535, 0], "she sews it with black i": [65535, 0], "sews it with black i wish": [65535, 0], "it with black i wish to": [65535, 0], "with black i wish to geeminy": [65535, 0], "black i wish to geeminy she'd": [65535, 0], "i wish to geeminy she'd stick": [65535, 0], "wish to geeminy she'd stick to": [65535, 0], "to geeminy she'd stick to one": [65535, 0], "geeminy she'd stick to one or": [65535, 0], "she'd stick to one or t'other": [65535, 0], "stick to one or t'other i": [65535, 0], "to one or t'other i can't": [65535, 0], "one or t'other i can't keep": [65535, 0], "or t'other i can't keep the": [65535, 0], "t'other i can't keep the run": [65535, 0], "i can't keep the run of": [65535, 0], "can't keep the run of 'em": [65535, 0], "keep the run of 'em but": [65535, 0], "the run of 'em but i": [65535, 0], "run of 'em but i bet": [65535, 0], "of 'em but i bet you": [65535, 0], "'em but i bet you i'll": [65535, 0], "but i bet you i'll lam": [65535, 0], "i bet you i'll lam sid": [65535, 0], "bet you i'll lam sid for": [65535, 0], "you i'll lam sid for that": [65535, 0], "i'll lam sid for that i'll": [65535, 0], "lam sid for that i'll learn": [65535, 0], "sid for that i'll learn him": [65535, 0], "for that i'll learn him he": [65535, 0], "that i'll learn him he was": [65535, 0], "i'll learn him he was not": [65535, 0], "learn him he was not the": [65535, 0], "him he was not the model": [65535, 0], "he was not the model boy": [65535, 0], "was not the model boy of": [65535, 0], "not the model boy of the": [65535, 0], "the model boy of the village": [65535, 0], "model boy of the village he": [65535, 0], "boy of the village he knew": [65535, 0], "of the village he knew the": [65535, 0], "the village he knew the model": [65535, 0], "village he knew the model boy": [65535, 0], "he knew the model boy very": [65535, 0], "knew the model boy very well": [65535, 0], "the model boy very well though": [65535, 0], "model boy very well though and": [65535, 0], "boy very well though and loathed": [65535, 0], "very well though and loathed him": [65535, 0], "well though and loathed him within": [65535, 0], "though and loathed him within two": [65535, 0], "and loathed him within two minutes": [65535, 0], "loathed him within two minutes or": [65535, 0], "him within two minutes or even": [65535, 0], "within two minutes or even less": [65535, 0], "two minutes or even less he": [65535, 0], "minutes or even less he had": [65535, 0], "or even less he had forgotten": [65535, 0], "even less he had forgotten all": [65535, 0], "less he had forgotten all his": [65535, 0], "he had forgotten all his troubles": [65535, 0], "had forgotten all his troubles not": [65535, 0], "forgotten all his troubles not because": [65535, 0], "all his troubles not because his": [65535, 0], "his troubles not because his troubles": [65535, 0], "troubles not because his troubles were": [65535, 0], "not because his troubles were one": [65535, 0], "because his troubles were one whit": [65535, 0], "his troubles were one whit less": [65535, 0], "troubles were one whit less heavy": [65535, 0], "were one whit less heavy and": [65535, 0], "one whit less heavy and bitter": [65535, 0], "whit less heavy and bitter to": [65535, 0], "less heavy and bitter to him": [65535, 0], "heavy and bitter to him than": [65535, 0], "and bitter to him than a": [65535, 0], "bitter to him than a man's": [65535, 0], "to him than a man's are": [65535, 0], "him than a man's are to": [65535, 0], "than a man's are to a": [65535, 0], "a man's are to a man": [65535, 0], "man's are to a man but": [65535, 0], "are to a man but because": [65535, 0], "to a man but because a": [65535, 0], "a man but because a new": [65535, 0], "man but because a new and": [65535, 0], "but because a new and powerful": [65535, 0], "because a new and powerful interest": [65535, 0], "a new and powerful interest bore": [65535, 0], "new and powerful interest bore them": [65535, 0], "and powerful interest bore them down": [65535, 0], "powerful interest bore them down and": [65535, 0], "interest bore them down and drove": [65535, 0], "bore them down and drove them": [65535, 0], "them down and drove them out": [65535, 0], "down and drove them out of": [65535, 0], "and drove them out of his": [65535, 0], "drove them out of his mind": [65535, 0], "them out of his mind for": [65535, 0], "out of his mind for the": [65535, 0], "of his mind for the time": [65535, 0], "his mind for the time just": [65535, 0], "mind for the time just as": [65535, 0], "for the time just as men's": [65535, 0], "the time just as men's misfortunes": [65535, 0], "time just as men's misfortunes are": [65535, 0], "just as men's misfortunes are forgotten": [65535, 0], "as men's misfortunes are forgotten in": [65535, 0], "men's misfortunes are forgotten in the": [65535, 0], "misfortunes are forgotten in the excitement": [65535, 0], "are forgotten in the excitement of": [65535, 0], "forgotten in the excitement of new": [65535, 0], "in the excitement of new enterprises": [65535, 0], "the excitement of new enterprises this": [65535, 0], "excitement of new enterprises this new": [65535, 0], "of new enterprises this new interest": [65535, 0], "new enterprises this new interest was": [65535, 0], "enterprises this new interest was a": [65535, 0], "this new interest was a valued": [65535, 0], "new interest was a valued novelty": [65535, 0], "interest was a valued novelty in": [65535, 0], "was a valued novelty in whistling": [65535, 0], "a valued novelty in whistling which": [65535, 0], "valued novelty in whistling which he": [65535, 0], "novelty in whistling which he had": [65535, 0], "in whistling which he had just": [65535, 0], "whistling which he had just acquired": [65535, 0], "which he had just acquired from": [65535, 0], "he had just acquired from a": [65535, 0], "had just acquired from a negro": [65535, 0], "just acquired from a negro and": [65535, 0], "acquired from a negro and he": [65535, 0], "from a negro and he was": [65535, 0], "a negro and he was suffering": [65535, 0], "negro and he was suffering to": [65535, 0], "and he was suffering to practise": [65535, 0], "he was suffering to practise it": [65535, 0], "was suffering to practise it undisturbed": [65535, 0], "suffering to practise it undisturbed it": [65535, 0], "to practise it undisturbed it consisted": [65535, 0], "practise it undisturbed it consisted in": [65535, 0], "it undisturbed it consisted in a": [65535, 0], "undisturbed it consisted in a peculiar": [65535, 0], "it consisted in a peculiar bird": [65535, 0], "consisted in a peculiar bird like": [65535, 0], "in a peculiar bird like turn": [65535, 0], "a peculiar bird like turn a": [65535, 0], "peculiar bird like turn a sort": [65535, 0], "bird like turn a sort of": [65535, 0], "like turn a sort of liquid": [65535, 0], "turn a sort of liquid warble": [65535, 0], "a sort of liquid warble produced": [65535, 0], "sort of liquid warble produced by": [65535, 0], "of liquid warble produced by touching": [65535, 0], "liquid warble produced by touching the": [65535, 0], "warble produced by touching the tongue": [65535, 0], "produced by touching the tongue to": [65535, 0], "by touching the tongue to the": [65535, 0], "touching the tongue to the roof": [65535, 0], "the tongue to the roof of": [65535, 0], "tongue to the roof of the": [65535, 0], "to the roof of the mouth": [65535, 0], "the roof of the mouth at": [65535, 0], "roof of the mouth at short": [65535, 0], "of the mouth at short intervals": [65535, 0], "the mouth at short intervals in": [65535, 0], "mouth at short intervals in the": [65535, 0], "at short intervals in the midst": [65535, 0], "short intervals in the midst of": [65535, 0], "intervals in the midst of the": [65535, 0], "in the midst of the music": [65535, 0], "the midst of the music the": [65535, 0], "midst of the music the reader": [65535, 0], "of the music the reader probably": [65535, 0], "the music the reader probably remembers": [65535, 0], "music the reader probably remembers how": [65535, 0], "the reader probably remembers how to": [65535, 0], "reader probably remembers how to do": [65535, 0], "probably remembers how to do it": [65535, 0], "remembers how to do it if": [65535, 0], "how to do it if he": [65535, 0], "to do it if he has": [65535, 0], "do it if he has ever": [65535, 0], "it if he has ever been": [65535, 0], "if he has ever been a": [65535, 0], "he has ever been a boy": [65535, 0], "has ever been a boy diligence": [65535, 0], "ever been a boy diligence and": [65535, 0], "been a boy diligence and attention": [65535, 0], "a boy diligence and attention soon": [65535, 0], "boy diligence and attention soon gave": [65535, 0], "diligence and attention soon gave him": [65535, 0], "and attention soon gave him the": [65535, 0], "attention soon gave him the knack": [65535, 0], "soon gave him the knack of": [65535, 0], "gave him the knack of it": [65535, 0], "him the knack of it and": [65535, 0], "the knack of it and he": [65535, 0], "knack of it and he strode": [65535, 0], "of it and he strode down": [65535, 0], "it and he strode down the": [65535, 0], "and he strode down the street": [65535, 0], "he strode down the street with": [65535, 0], "strode down the street with his": [65535, 0], "down the street with his mouth": [65535, 0], "the street with his mouth full": [65535, 0], "street with his mouth full of": [65535, 0], "with his mouth full of harmony": [65535, 0], "his mouth full of harmony and": [65535, 0], "mouth full of harmony and his": [65535, 0], "full of harmony and his soul": [65535, 0], "of harmony and his soul full": [65535, 0], "harmony and his soul full of": [65535, 0], "and his soul full of gratitude": [65535, 0], "his soul full of gratitude he": [65535, 0], "soul full of gratitude he felt": [65535, 0], "full of gratitude he felt much": [65535, 0], "of gratitude he felt much as": [65535, 0], "gratitude he felt much as an": [65535, 0], "he felt much as an astronomer": [65535, 0], "felt much as an astronomer feels": [65535, 0], "much as an astronomer feels who": [65535, 0], "as an astronomer feels who has": [65535, 0], "an astronomer feels who has discovered": [65535, 0], "astronomer feels who has discovered a": [65535, 0], "feels who has discovered a new": [65535, 0], "who has discovered a new planet": [65535, 0], "has discovered a new planet no": [65535, 0], "discovered a new planet no doubt": [65535, 0], "a new planet no doubt as": [65535, 0], "new planet no doubt as far": [65535, 0], "planet no doubt as far as": [65535, 0], "no doubt as far as strong": [65535, 0], "doubt as far as strong deep": [65535, 0], "as far as strong deep unalloyed": [65535, 0], "far as strong deep unalloyed pleasure": [65535, 0], "as strong deep unalloyed pleasure is": [65535, 0], "strong deep unalloyed pleasure is concerned": [65535, 0], "deep unalloyed pleasure is concerned the": [65535, 0], "unalloyed pleasure is concerned the advantage": [65535, 0], "pleasure is concerned the advantage was": [65535, 0], "is concerned the advantage was with": [65535, 0], "concerned the advantage was with the": [65535, 0], "the advantage was with the boy": [65535, 0], "advantage was with the boy not": [65535, 0], "was with the boy not the": [65535, 0], "with the boy not the astronomer": [65535, 0], "the boy not the astronomer the": [65535, 0], "boy not the astronomer the summer": [65535, 0], "not the astronomer the summer evenings": [65535, 0], "the astronomer the summer evenings were": [65535, 0], "astronomer the summer evenings were long": [65535, 0], "the summer evenings were long it": [65535, 0], "summer evenings were long it was": [65535, 0], "evenings were long it was not": [65535, 0], "were long it was not dark": [65535, 0], "long it was not dark yet": [65535, 0], "it was not dark yet presently": [65535, 0], "was not dark yet presently tom": [65535, 0], "not dark yet presently tom checked": [65535, 0], "dark yet presently tom checked his": [65535, 0], "yet presently tom checked his whistle": [65535, 0], "presently tom checked his whistle a": [65535, 0], "tom checked his whistle a stranger": [65535, 0], "checked his whistle a stranger was": [65535, 0], "his whistle a stranger was before": [65535, 0], "whistle a stranger was before him": [65535, 0], "a stranger was before him a": [65535, 0], "stranger was before him a boy": [65535, 0], "was before him a boy a": [65535, 0], "before him a boy a shade": [65535, 0], "him a boy a shade larger": [65535, 0], "a boy a shade larger than": [65535, 0], "boy a shade larger than himself": [65535, 0], "a shade larger than himself a": [65535, 0], "shade larger than himself a new": [65535, 0], "larger than himself a new comer": [65535, 0], "than himself a new comer of": [65535, 0], "himself a new comer of any": [65535, 0], "a new comer of any age": [65535, 0], "new comer of any age or": [65535, 0], "comer of any age or either": [65535, 0], "of any age or either sex": [65535, 0], "any age or either sex was": [65535, 0], "age or either sex was an": [65535, 0], "or either sex was an impressive": [65535, 0], "either sex was an impressive curiosity": [65535, 0], "sex was an impressive curiosity in": [65535, 0], "was an impressive curiosity in the": [65535, 0], "an impressive curiosity in the poor": [65535, 0], "impressive curiosity in the poor little": [65535, 0], "curiosity in the poor little shabby": [65535, 0], "in the poor little shabby village": [65535, 0], "the poor little shabby village of": [65535, 0], "poor little shabby village of st": [65535, 0], "little shabby village of st petersburg": [65535, 0], "shabby village of st petersburg this": [65535, 0], "village of st petersburg this boy": [65535, 0], "of st petersburg this boy was": [65535, 0], "st petersburg this boy was well": [65535, 0], "petersburg this boy was well dressed": [65535, 0], "this boy was well dressed too": [65535, 0], "boy was well dressed too well": [65535, 0], "was well dressed too well dressed": [65535, 0], "well dressed too well dressed on": [65535, 0], "dressed too well dressed on a": [65535, 0], "too well dressed on a week": [65535, 0], "well dressed on a week day": [65535, 0], "dressed on a week day this": [65535, 0], "on a week day this was": [65535, 0], "a week day this was simply": [65535, 0], "week day this was simply astounding": [65535, 0], "day this was simply astounding his": [65535, 0], "this was simply astounding his cap": [65535, 0], "was simply astounding his cap was": [65535, 0], "simply astounding his cap was a": [65535, 0], "astounding his cap was a dainty": [65535, 0], "his cap was a dainty thing": [65535, 0], "cap was a dainty thing his": [65535, 0], "was a dainty thing his closebuttoned": [65535, 0], "a dainty thing his closebuttoned blue": [65535, 0], "dainty thing his closebuttoned blue cloth": [65535, 0], "thing his closebuttoned blue cloth roundabout": [65535, 0], "his closebuttoned blue cloth roundabout was": [65535, 0], "closebuttoned blue cloth roundabout was new": [65535, 0], "blue cloth roundabout was new and": [65535, 0], "cloth roundabout was new and natty": [65535, 0], "roundabout was new and natty and": [65535, 0], "was new and natty and so": [65535, 0], "new and natty and so were": [65535, 0], "and natty and so were his": [65535, 0], "natty and so were his pantaloons": [65535, 0], "and so were his pantaloons he": [65535, 0], "so were his pantaloons he had": [65535, 0], "were his pantaloons he had shoes": [65535, 0], "his pantaloons he had shoes on": [65535, 0], "pantaloons he had shoes on and": [65535, 0], "he had shoes on and it": [65535, 0], "had shoes on and it was": [65535, 0], "shoes on and it was only": [65535, 0], "on and it was only friday": [65535, 0], "and it was only friday he": [65535, 0], "it was only friday he even": [65535, 0], "was only friday he even wore": [65535, 0], "only friday he even wore a": [65535, 0], "friday he even wore a necktie": [65535, 0], "he even wore a necktie a": [65535, 0], "even wore a necktie a bright": [65535, 0], "wore a necktie a bright bit": [65535, 0], "a necktie a bright bit of": [65535, 0], "necktie a bright bit of ribbon": [65535, 0], "a bright bit of ribbon he": [65535, 0], "bright bit of ribbon he had": [65535, 0], "bit of ribbon he had a": [65535, 0], "of ribbon he had a citified": [65535, 0], "ribbon he had a citified air": [65535, 0], "he had a citified air about": [65535, 0], "had a citified air about him": [65535, 0], "a citified air about him that": [65535, 0], "citified air about him that ate": [65535, 0], "air about him that ate into": [65535, 0], "about him that ate into tom's": [65535, 0], "him that ate into tom's vitals": [65535, 0], "that ate into tom's vitals the": [65535, 0], "ate into tom's vitals the more": [65535, 0], "into tom's vitals the more tom": [65535, 0], "tom's vitals the more tom stared": [65535, 0], "vitals the more tom stared at": [65535, 0], "the more tom stared at the": [65535, 0], "more tom stared at the splendid": [65535, 0], "tom stared at the splendid marvel": [65535, 0], "stared at the splendid marvel the": [65535, 0], "at the splendid marvel the higher": [65535, 0], "the splendid marvel the higher he": [65535, 0], "splendid marvel the higher he turned": [65535, 0], "marvel the higher he turned up": [65535, 0], "the higher he turned up his": [65535, 0], "higher he turned up his nose": [65535, 0], "he turned up his nose at": [65535, 0], "turned up his nose at his": [65535, 0], "up his nose at his finery": [65535, 0], "his nose at his finery and": [65535, 0], "nose at his finery and the": [65535, 0], "at his finery and the shabbier": [65535, 0], "his finery and the shabbier and": [65535, 0], "finery and the shabbier and shabbier": [65535, 0], "and the shabbier and shabbier his": [65535, 0], "the shabbier and shabbier his own": [65535, 0], "shabbier and shabbier his own outfit": [65535, 0], "and shabbier his own outfit seemed": [65535, 0], "shabbier his own outfit seemed to": [65535, 0], "his own outfit seemed to him": [65535, 0], "own outfit seemed to him to": [65535, 0], "outfit seemed to him to grow": [65535, 0], "seemed to him to grow neither": [65535, 0], "to him to grow neither boy": [65535, 0], "him to grow neither boy spoke": [65535, 0], "to grow neither boy spoke if": [65535, 0], "grow neither boy spoke if one": [65535, 0], "neither boy spoke if one moved": [65535, 0], "boy spoke if one moved the": [65535, 0], "spoke if one moved the other": [65535, 0], "if one moved the other moved": [65535, 0], "one moved the other moved but": [65535, 0], "moved the other moved but only": [65535, 0], "the other moved but only sidewise": [65535, 0], "other moved but only sidewise in": [65535, 0], "moved but only sidewise in a": [65535, 0], "but only sidewise in a circle": [65535, 0], "only sidewise in a circle they": [65535, 0], "sidewise in a circle they kept": [65535, 0], "in a circle they kept face": [65535, 0], "a circle they kept face to": [65535, 0], "circle they kept face to face": [65535, 0], "they kept face to face and": [65535, 0], "kept face to face and eye": [65535, 0], "face to face and eye to": [65535, 0], "to face and eye to eye": [65535, 0], "face and eye to eye all": [65535, 0], "and eye to eye all the": [65535, 0], "eye to eye all the time": [65535, 0], "to eye all the time finally": [65535, 0], "eye all the time finally tom": [65535, 0], "all the time finally tom said": [65535, 0], "the time finally tom said i": [65535, 0], "time finally tom said i can": [65535, 0], "finally tom said i can lick": [65535, 0], "tom said i can lick you": [65535, 0], "said i can lick you i'd": [65535, 0], "i can lick you i'd like": [65535, 0], "can lick you i'd like to": [65535, 0], "lick you i'd like to see": [65535, 0], "you i'd like to see you": [65535, 0], "i'd like to see you try": [65535, 0], "like to see you try it": [65535, 0], "to see you try it well": [65535, 0], "see you try it well i": [65535, 0], "you try it well i can": [65535, 0], "try it well i can do": [65535, 0], "it well i can do it": [65535, 0], "well i can do it no": [65535, 0], "i can do it no you": [65535, 0], "can do it no you can't": [65535, 0], "do it no you can't either": [65535, 0], "it no you can't either yes": [65535, 0], "no you can't either yes i": [65535, 0], "you can't either yes i can": [65535, 0], "can't either yes i can no": [65535, 0], "either yes i can no you": [65535, 0], "yes i can no you can't": [65535, 0], "i can no you can't i": [65535, 0], "can no you can't i can": [65535, 0], "no you can't i can you": [65535, 0], "you can't i can you can't": [65535, 0], "can't i can you can't can": [65535, 0], "i can you can't can can't": [65535, 0], "can you can't can can't an": [65535, 0], "you can't can can't an uncomfortable": [65535, 0], "can't can can't an uncomfortable pause": [65535, 0], "can can't an uncomfortable pause then": [65535, 0], "can't an uncomfortable pause then tom": [65535, 0], "an uncomfortable pause then tom said": [65535, 0], "uncomfortable pause then tom said what's": [65535, 0], "pause then tom said what's your": [65535, 0], "then tom said what's your name": [65535, 0], "tom said what's your name 'tisn't": [65535, 0], "said what's your name 'tisn't any": [65535, 0], "what's your name 'tisn't any of": [65535, 0], "your name 'tisn't any of your": [65535, 0], "name 'tisn't any of your business": [65535, 0], "'tisn't any of your business maybe": [65535, 0], "any of your business maybe well": [65535, 0], "of your business maybe well i": [65535, 0], "your business maybe well i 'low": [65535, 0], "business maybe well i 'low i'll": [65535, 0], "maybe well i 'low i'll make": [65535, 0], "well i 'low i'll make it": [65535, 0], "i 'low i'll make it my": [65535, 0], "'low i'll make it my business": [65535, 0], "i'll make it my business well": [65535, 0], "make it my business well why": [65535, 0], "it my business well why don't": [65535, 0], "my business well why don't you": [65535, 0], "business well why don't you if": [65535, 0], "well why don't you if you": [65535, 0], "why don't you if you say": [65535, 0], "don't you if you say much": [65535, 0], "you if you say much i": [65535, 0], "if you say much i will": [65535, 0], "you say much i will much": [65535, 0], "say much i will much much": [65535, 0], "much i will much much much": [65535, 0], "i will much much much there": [65535, 0], "will much much much there now": [65535, 0], "much much much there now oh": [65535, 0], "much much there now oh you": [65535, 0], "much there now oh you think": [65535, 0], "there now oh you think you're": [65535, 0], "now oh you think you're mighty": [65535, 0], "oh you think you're mighty smart": [65535, 0], "you think you're mighty smart don't": [65535, 0], "think you're mighty smart don't you": [65535, 0], "you're mighty smart don't you i": [65535, 0], "mighty smart don't you i could": [65535, 0], "smart don't you i could lick": [65535, 0], "don't you i could lick you": [65535, 0], "you i could lick you with": [65535, 0], "i could lick you with one": [65535, 0], "could lick you with one hand": [65535, 0], "lick you with one hand tied": [65535, 0], "you with one hand tied behind": [65535, 0], "with one hand tied behind me": [65535, 0], "one hand tied behind me if": [65535, 0], "hand tied behind me if i": [65535, 0], "tied behind me if i wanted": [65535, 0], "behind me if i wanted to": [65535, 0], "me if i wanted to well": [65535, 0], "to well why don't you do": [65535, 0], "well why don't you do it": [65535, 0], "why don't you do it you": [65535, 0], "don't you do it you say": [65535, 0], "you do it you say you": [65535, 0], "do it you say you can": [65535, 0], "it you say you can do": [65535, 0], "you say you can do it": [65535, 0], "say you can do it well": [65535, 0], "you can do it well i": [65535, 0], "can do it well i will": [65535, 0], "do it well i will if": [65535, 0], "it well i will if you": [65535, 0], "well i will if you fool": [65535, 0], "i will if you fool with": [65535, 0], "will if you fool with me": [65535, 0], "if you fool with me oh": [65535, 0], "you fool with me oh yes": [65535, 0], "fool with me oh yes i've": [65535, 0], "with me oh yes i've seen": [65535, 0], "me oh yes i've seen whole": [65535, 0], "oh yes i've seen whole families": [65535, 0], "yes i've seen whole families in": [65535, 0], "i've seen whole families in the": [65535, 0], "seen whole families in the same": [65535, 0], "whole families in the same fix": [65535, 0], "families in the same fix smarty": [65535, 0], "in the same fix smarty you": [65535, 0], "the same fix smarty you think": [65535, 0], "same fix smarty you think you're": [65535, 0], "fix smarty you think you're some": [65535, 0], "smarty you think you're some now": [65535, 0], "you think you're some now don't": [65535, 0], "think you're some now don't you": [65535, 0], "you're some now don't you oh": [65535, 0], "some now don't you oh what": [65535, 0], "now don't you oh what a": [65535, 0], "don't you oh what a hat": [65535, 0], "you oh what a hat you": [65535, 0], "oh what a hat you can": [65535, 0], "what a hat you can lump": [65535, 0], "a hat you can lump that": [65535, 0], "hat you can lump that hat": [65535, 0], "you can lump that hat if": [65535, 0], "can lump that hat if you": [65535, 0], "lump that hat if you don't": [65535, 0], "that hat if you don't like": [65535, 0], "hat if you don't like it": [65535, 0], "if you don't like it i": [65535, 0], "you don't like it i dare": [65535, 0], "don't like it i dare you": [65535, 0], "like it i dare you to": [65535, 0], "it i dare you to knock": [65535, 0], "i dare you to knock it": [65535, 0], "dare you to knock it off": [65535, 0], "you to knock it off and": [65535, 0], "to knock it off and anybody": [65535, 0], "knock it off and anybody that'll": [65535, 0], "it off and anybody that'll take": [65535, 0], "off and anybody that'll take a": [65535, 0], "and anybody that'll take a dare": [65535, 0], "anybody that'll take a dare will": [65535, 0], "that'll take a dare will suck": [65535, 0], "take a dare will suck eggs": [65535, 0], "a dare will suck eggs you're": [65535, 0], "dare will suck eggs you're a": [65535, 0], "will suck eggs you're a liar": [65535, 0], "suck eggs you're a liar you're": [65535, 0], "eggs you're a liar you're another": [65535, 0], "you're a liar you're another you're": [65535, 0], "a liar you're another you're a": [65535, 0], "liar you're another you're a fighting": [65535, 0], "you're another you're a fighting liar": [65535, 0], "another you're a fighting liar and": [65535, 0], "you're a fighting liar and dasn't": [65535, 0], "a fighting liar and dasn't take": [65535, 0], "fighting liar and dasn't take it": [65535, 0], "liar and dasn't take it up": [65535, 0], "and dasn't take it up aw": [65535, 0], "dasn't take it up aw take": [65535, 0], "take it up aw take a": [65535, 0], "it up aw take a walk": [65535, 0], "up aw take a walk say": [65535, 0], "aw take a walk say if": [65535, 0], "take a walk say if you": [65535, 0], "a walk say if you give": [65535, 0], "walk say if you give me": [65535, 0], "say if you give me much": [65535, 0], "if you give me much more": [65535, 0], "you give me much more of": [65535, 0], "give me much more of your": [65535, 0], "me much more of your sass": [65535, 0], "much more of your sass i'll": [65535, 0], "more of your sass i'll take": [65535, 0], "of your sass i'll take and": [65535, 0], "your sass i'll take and bounce": [65535, 0], "sass i'll take and bounce a": [65535, 0], "i'll take and bounce a rock": [65535, 0], "take and bounce a rock off'n": [65535, 0], "and bounce a rock off'n your": [65535, 0], "bounce a rock off'n your head": [65535, 0], "a rock off'n your head oh": [65535, 0], "rock off'n your head oh of": [65535, 0], "off'n your head oh of course": [65535, 0], "your head oh of course you": [65535, 0], "head oh of course you will": [65535, 0], "oh of course you will well": [65535, 0], "of course you will well i": [65535, 0], "course you will well i will": [65535, 0], "you will well i will well": [65535, 0], "will well i will well why": [65535, 0], "well i will well why don't": [65535, 0], "i will well why don't you": [65535, 0], "will well why don't you do": [65535, 0], "why don't you do it then": [65535, 0], "don't you do it then what": [65535, 0], "you do it then what do": [65535, 0], "do it then what do you": [65535, 0], "it then what do you keep": [65535, 0], "then what do you keep saying": [65535, 0], "what do you keep saying you": [65535, 0], "do you keep saying you will": [65535, 0], "you keep saying you will for": [65535, 0], "keep saying you will for why": [65535, 0], "saying you will for why don't": [65535, 0], "you will for why don't you": [65535, 0], "will for why don't you do": [65535, 0], "for why don't you do it": [65535, 0], "why don't you do it it's": [65535, 0], "don't you do it it's because": [65535, 0], "you do it it's because you're": [65535, 0], "do it it's because you're afraid": [65535, 0], "it it's because you're afraid i": [65535, 0], "it's because you're afraid i ain't": [65535, 0], "because you're afraid i ain't afraid": [65535, 0], "you're afraid i ain't afraid you": [65535, 0], "afraid i ain't afraid you are": [65535, 0], "i ain't afraid you are i": [65535, 0], "ain't afraid you are i ain't": [65535, 0], "afraid you are i ain't you": [65535, 0], "you are i ain't you are": [65535, 0], "are i ain't you are another": [65535, 0], "i ain't you are another pause": [65535, 0], "ain't you are another pause and": [65535, 0], "you are another pause and more": [65535, 0], "are another pause and more eying": [65535, 0], "another pause and more eying and": [65535, 0], "pause and more eying and sidling": [65535, 0], "and more eying and sidling around": [65535, 0], "more eying and sidling around each": [65535, 0], "eying and sidling around each other": [65535, 0], "and sidling around each other presently": [65535, 0], "sidling around each other presently they": [65535, 0], "around each other presently they were": [65535, 0], "each other presently they were shoulder": [65535, 0], "other presently they were shoulder to": [65535, 0], "presently they were shoulder to shoulder": [65535, 0], "they were shoulder to shoulder tom": [65535, 0], "were shoulder to shoulder tom said": [65535, 0], "shoulder to shoulder tom said get": [65535, 0], "to shoulder tom said get away": [65535, 0], "shoulder tom said get away from": [65535, 0], "tom said get away from here": [65535, 0], "said get away from here go": [65535, 0], "get away from here go away": [65535, 0], "away from here go away yourself": [65535, 0], "from here go away yourself i": [65535, 0], "here go away yourself i won't": [65535, 0], "go away yourself i won't i": [65535, 0], "away yourself i won't i won't": [65535, 0], "yourself i won't i won't either": [65535, 0], "i won't i won't either so": [65535, 0], "won't i won't either so they": [65535, 0], "i won't either so they stood": [65535, 0], "won't either so they stood each": [65535, 0], "either so they stood each with": [65535, 0], "so they stood each with a": [65535, 0], "they stood each with a foot": [65535, 0], "stood each with a foot placed": [65535, 0], "each with a foot placed at": [65535, 0], "with a foot placed at an": [65535, 0], "a foot placed at an angle": [65535, 0], "foot placed at an angle as": [65535, 0], "placed at an angle as a": [65535, 0], "at an angle as a brace": [65535, 0], "an angle as a brace and": [65535, 0], "angle as a brace and both": [65535, 0], "as a brace and both shoving": [65535, 0], "a brace and both shoving with": [65535, 0], "brace and both shoving with might": [65535, 0], "and both shoving with might and": [65535, 0], "both shoving with might and main": [65535, 0], "shoving with might and main and": [65535, 0], "with might and main and glowering": [65535, 0], "might and main and glowering at": [65535, 0], "and main and glowering at each": [65535, 0], "main and glowering at each other": [65535, 0], "and glowering at each other with": [65535, 0], "glowering at each other with hate": [65535, 0], "at each other with hate but": [65535, 0], "each other with hate but neither": [65535, 0], "other with hate but neither could": [65535, 0], "with hate but neither could get": [65535, 0], "hate but neither could get an": [65535, 0], "but neither could get an advantage": [65535, 0], "neither could get an advantage after": [65535, 0], "could get an advantage after struggling": [65535, 0], "get an advantage after struggling till": [65535, 0], "an advantage after struggling till both": [65535, 0], "advantage after struggling till both were": [65535, 0], "after struggling till both were hot": [65535, 0], "struggling till both were hot and": [65535, 0], "till both were hot and flushed": [65535, 0], "both were hot and flushed each": [65535, 0], "were hot and flushed each relaxed": [65535, 0], "hot and flushed each relaxed his": [65535, 0], "and flushed each relaxed his strain": [65535, 0], "flushed each relaxed his strain with": [65535, 0], "each relaxed his strain with watchful": [65535, 0], "relaxed his strain with watchful caution": [65535, 0], "his strain with watchful caution and": [65535, 0], "strain with watchful caution and tom": [65535, 0], "with watchful caution and tom said": [65535, 0], "watchful caution and tom said you're": [65535, 0], "caution and tom said you're a": [65535, 0], "and tom said you're a coward": [65535, 0], "tom said you're a coward and": [65535, 0], "said you're a coward and a": [65535, 0], "you're a coward and a pup": [65535, 0], "a coward and a pup i'll": [65535, 0], "coward and a pup i'll tell": [65535, 0], "and a pup i'll tell my": [65535, 0], "a pup i'll tell my big": [65535, 0], "pup i'll tell my big brother": [65535, 0], "i'll tell my big brother on": [65535, 0], "tell my big brother on you": [65535, 0], "my big brother on you and": [65535, 0], "big brother on you and he": [65535, 0], "brother on you and he can": [65535, 0], "on you and he can thrash": [65535, 0], "you and he can thrash you": [65535, 0], "and he can thrash you with": [65535, 0], "he can thrash you with his": [65535, 0], "can thrash you with his little": [65535, 0], "thrash you with his little finger": [65535, 0], "you with his little finger and": [65535, 0], "with his little finger and i'll": [65535, 0], "his little finger and i'll make": [65535, 0], "little finger and i'll make him": [65535, 0], "finger and i'll make him do": [65535, 0], "and i'll make him do it": [65535, 0], "i'll make him do it too": [65535, 0], "make him do it too what": [65535, 0], "him do it too what do": [65535, 0], "do it too what do i": [65535, 0], "it too what do i care": [65535, 0], "too what do i care for": [65535, 0], "what do i care for your": [65535, 0], "do i care for your big": [65535, 0], "i care for your big brother": [65535, 0], "care for your big brother i've": [65535, 0], "for your big brother i've got": [65535, 0], "your big brother i've got a": [65535, 0], "big brother i've got a brother": [65535, 0], "brother i've got a brother that's": [65535, 0], "i've got a brother that's bigger": [65535, 0], "got a brother that's bigger than": [65535, 0], "a brother that's bigger than he": [65535, 0], "brother that's bigger than he is": [65535, 0], "that's bigger than he is and": [65535, 0], "bigger than he is and what's": [65535, 0], "than he is and what's more": [65535, 0], "he is and what's more he": [65535, 0], "is and what's more he can": [65535, 0], "and what's more he can throw": [65535, 0], "what's more he can throw him": [65535, 0], "more he can throw him over": [65535, 0], "he can throw him over that": [65535, 0], "can throw him over that fence": [65535, 0], "throw him over that fence too": [65535, 0], "him over that fence too both": [65535, 0], "over that fence too both brothers": [65535, 0], "that fence too both brothers were": [65535, 0], "fence too both brothers were imaginary": [65535, 0], "too both brothers were imaginary that's": [65535, 0], "both brothers were imaginary that's a": [65535, 0], "brothers were imaginary that's a lie": [65535, 0], "were imaginary that's a lie your": [65535, 0], "imaginary that's a lie your saying": [65535, 0], "that's a lie your saying so": [65535, 0], "a lie your saying so don't": [65535, 0], "lie your saying so don't make": [65535, 0], "your saying so don't make it": [65535, 0], "saying so don't make it so": [65535, 0], "so don't make it so tom": [65535, 0], "don't make it so tom drew": [65535, 0], "make it so tom drew a": [65535, 0], "it so tom drew a line": [65535, 0], "so tom drew a line in": [65535, 0], "tom drew a line in the": [65535, 0], "drew a line in the dust": [65535, 0], "a line in the dust with": [65535, 0], "line in the dust with his": [65535, 0], "in the dust with his big": [65535, 0], "the dust with his big toe": [65535, 0], "dust with his big toe and": [65535, 0], "with his big toe and said": [65535, 0], "his big toe and said i": [65535, 0], "big toe and said i dare": [65535, 0], "toe and said i dare you": [65535, 0], "and said i dare you to": [65535, 0], "said i dare you to step": [65535, 0], "i dare you to step over": [65535, 0], "dare you to step over that": [65535, 0], "you to step over that and": [65535, 0], "to step over that and i'll": [65535, 0], "step over that and i'll lick": [65535, 0], "over that and i'll lick you": [65535, 0], "that and i'll lick you till": [65535, 0], "and i'll lick you till you": [65535, 0], "i'll lick you till you can't": [65535, 0], "lick you till you can't stand": [65535, 0], "you till you can't stand up": [65535, 0], "till you can't stand up anybody": [65535, 0], "you can't stand up anybody that'll": [65535, 0], "can't stand up anybody that'll take": [65535, 0], "stand up anybody that'll take a": [65535, 0], "up anybody that'll take a dare": [65535, 0], "that'll take a dare will steal": [65535, 0], "take a dare will steal sheep": [65535, 0], "a dare will steal sheep the": [65535, 0], "dare will steal sheep the new": [65535, 0], "will steal sheep the new boy": [65535, 0], "steal sheep the new boy stepped": [65535, 0], "sheep the new boy stepped over": [65535, 0], "the new boy stepped over promptly": [65535, 0], "new boy stepped over promptly and": [65535, 0], "boy stepped over promptly and said": [65535, 0], "stepped over promptly and said now": [65535, 0], "over promptly and said now you": [65535, 0], "promptly and said now you said": [65535, 0], "and said now you said you'd": [65535, 0], "said now you said you'd do": [65535, 0], "now you said you'd do it": [65535, 0], "you said you'd do it now": [65535, 0], "said you'd do it now let's": [65535, 0], "you'd do it now let's see": [65535, 0], "do it now let's see you": [65535, 0], "it now let's see you do": [65535, 0], "now let's see you do it": [65535, 0], "let's see you do it don't": [65535, 0], "see you do it don't you": [65535, 0], "you do it don't you crowd": [65535, 0], "do it don't you crowd me": [65535, 0], "it don't you crowd me now": [65535, 0], "don't you crowd me now you": [65535, 0], "you crowd me now you better": [65535, 0], "crowd me now you better look": [65535, 0], "me now you better look out": [65535, 0], "now you better look out well": [65535, 0], "you better look out well you": [65535, 0], "better look out well you said": [65535, 0], "look out well you said you'd": [65535, 0], "out well you said you'd do": [65535, 0], "well you said you'd do it": [65535, 0], "you said you'd do it why": [65535, 0], "said you'd do it why don't": [65535, 0], "you'd do it why don't you": [65535, 0], "do it why don't you do": [65535, 0], "it why don't you do it": [65535, 0], "why don't you do it by": [65535, 0], "don't you do it by jingo": [65535, 0], "you do it by jingo for": [65535, 0], "do it by jingo for two": [65535, 0], "it by jingo for two cents": [65535, 0], "by jingo for two cents i": [65535, 0], "jingo for two cents i will": [65535, 0], "for two cents i will do": [65535, 0], "two cents i will do it": [65535, 0], "cents i will do it the": [65535, 0], "i will do it the new": [65535, 0], "will do it the new boy": [65535, 0], "do it the new boy took": [65535, 0], "it the new boy took two": [65535, 0], "the new boy took two broad": [65535, 0], "new boy took two broad coppers": [65535, 0], "boy took two broad coppers out": [65535, 0], "took two broad coppers out of": [65535, 0], "two broad coppers out of his": [65535, 0], "broad coppers out of his pocket": [65535, 0], "coppers out of his pocket and": [65535, 0], "out of his pocket and held": [65535, 0], "of his pocket and held them": [65535, 0], "his pocket and held them out": [65535, 0], "pocket and held them out with": [65535, 0], "and held them out with derision": [65535, 0], "held them out with derision tom": [65535, 0], "them out with derision tom struck": [65535, 0], "out with derision tom struck them": [65535, 0], "with derision tom struck them to": [65535, 0], "derision tom struck them to the": [65535, 0], "tom struck them to the ground": [65535, 0], "struck them to the ground in": [65535, 0], "them to the ground in an": [65535, 0], "to the ground in an instant": [65535, 0], "the ground in an instant both": [65535, 0], "ground in an instant both boys": [65535, 0], "in an instant both boys were": [65535, 0], "an instant both boys were rolling": [65535, 0], "instant both boys were rolling and": [65535, 0], "both boys were rolling and tumbling": [65535, 0], "boys were rolling and tumbling in": [65535, 0], "were rolling and tumbling in the": [65535, 0], "rolling and tumbling in the dirt": [65535, 0], "and tumbling in the dirt gripped": [65535, 0], "tumbling in the dirt gripped together": [65535, 0], "in the dirt gripped together like": [65535, 0], "the dirt gripped together like cats": [65535, 0], "dirt gripped together like cats and": [65535, 0], "gripped together like cats and for": [65535, 0], "together like cats and for the": [65535, 0], "like cats and for the space": [65535, 0], "cats and for the space of": [65535, 0], "and for the space of a": [65535, 0], "the space of a minute they": [65535, 0], "space of a minute they tugged": [65535, 0], "of a minute they tugged and": [65535, 0], "a minute they tugged and tore": [65535, 0], "minute they tugged and tore at": [65535, 0], "they tugged and tore at each": [65535, 0], "tugged and tore at each other's": [65535, 0], "and tore at each other's hair": [65535, 0], "tore at each other's hair and": [65535, 0], "at each other's hair and clothes": [65535, 0], "each other's hair and clothes punched": [65535, 0], "other's hair and clothes punched and": [65535, 0], "hair and clothes punched and scratched": [65535, 0], "and clothes punched and scratched each": [65535, 0], "clothes punched and scratched each other's": [65535, 0], "punched and scratched each other's nose": [65535, 0], "and scratched each other's nose and": [65535, 0], "scratched each other's nose and covered": [65535, 0], "each other's nose and covered themselves": [65535, 0], "other's nose and covered themselves with": [65535, 0], "nose and covered themselves with dust": [65535, 0], "and covered themselves with dust and": [65535, 0], "covered themselves with dust and glory": [65535, 0], "themselves with dust and glory presently": [65535, 0], "with dust and glory presently the": [65535, 0], "dust and glory presently the confusion": [65535, 0], "and glory presently the confusion took": [65535, 0], "glory presently the confusion took form": [65535, 0], "presently the confusion took form and": [65535, 0], "the confusion took form and through": [65535, 0], "confusion took form and through the": [65535, 0], "took form and through the fog": [65535, 0], "form and through the fog of": [65535, 0], "and through the fog of battle": [65535, 0], "through the fog of battle tom": [65535, 0], "the fog of battle tom appeared": [65535, 0], "fog of battle tom appeared seated": [65535, 0], "of battle tom appeared seated astride": [65535, 0], "battle tom appeared seated astride the": [65535, 0], "tom appeared seated astride the new": [65535, 0], "appeared seated astride the new boy": [65535, 0], "seated astride the new boy and": [65535, 0], "astride the new boy and pounding": [65535, 0], "the new boy and pounding him": [65535, 0], "new boy and pounding him with": [65535, 0], "boy and pounding him with his": [65535, 0], "and pounding him with his fists": [65535, 0], "pounding him with his fists holler": [65535, 0], "him with his fists holler 'nuff": [65535, 0], "with his fists holler 'nuff said": [65535, 0], "his fists holler 'nuff said he": [65535, 0], "fists holler 'nuff said he the": [65535, 0], "holler 'nuff said he the boy": [65535, 0], "'nuff said he the boy only": [65535, 0], "said he the boy only struggled": [65535, 0], "he the boy only struggled to": [65535, 0], "the boy only struggled to free": [65535, 0], "boy only struggled to free himself": [65535, 0], "only struggled to free himself he": [65535, 0], "struggled to free himself he was": [65535, 0], "to free himself he was crying": [65535, 0], "free himself he was crying mainly": [65535, 0], "himself he was crying mainly from": [65535, 0], "he was crying mainly from rage": [65535, 0], "was crying mainly from rage holler": [65535, 0], "crying mainly from rage holler 'nuff": [65535, 0], "mainly from rage holler 'nuff and": [65535, 0], "from rage holler 'nuff and the": [65535, 0], "rage holler 'nuff and the pounding": [65535, 0], "holler 'nuff and the pounding went": [65535, 0], "'nuff and the pounding went on": [65535, 0], "and the pounding went on at": [65535, 0], "the pounding went on at last": [65535, 0], "pounding went on at last the": [65535, 0], "went on at last the stranger": [65535, 0], "on at last the stranger got": [65535, 0], "at last the stranger got out": [65535, 0], "last the stranger got out a": [65535, 0], "the stranger got out a smothered": [65535, 0], "stranger got out a smothered 'nuff": [65535, 0], "got out a smothered 'nuff and": [65535, 0], "out a smothered 'nuff and tom": [65535, 0], "a smothered 'nuff and tom let": [65535, 0], "smothered 'nuff and tom let him": [65535, 0], "'nuff and tom let him up": [65535, 0], "and tom let him up and": [65535, 0], "tom let him up and said": [65535, 0], "let him up and said now": [65535, 0], "him up and said now that'll": [65535, 0], "up and said now that'll learn": [65535, 0], "and said now that'll learn you": [65535, 0], "said now that'll learn you better": [65535, 0], "now that'll learn you better look": [65535, 0], "that'll learn you better look out": [65535, 0], "learn you better look out who": [65535, 0], "you better look out who you're": [65535, 0], "better look out who you're fooling": [65535, 0], "look out who you're fooling with": [65535, 0], "out who you're fooling with next": [65535, 0], "who you're fooling with next time": [65535, 0], "you're fooling with next time the": [65535, 0], "fooling with next time the new": [65535, 0], "with next time the new boy": [65535, 0], "next time the new boy went": [65535, 0], "time the new boy went off": [65535, 0], "the new boy went off brushing": [65535, 0], "new boy went off brushing the": [65535, 0], "boy went off brushing the dust": [65535, 0], "went off brushing the dust from": [65535, 0], "off brushing the dust from his": [65535, 0], "brushing the dust from his clothes": [65535, 0], "the dust from his clothes sobbing": [65535, 0], "dust from his clothes sobbing snuffling": [65535, 0], "from his clothes sobbing snuffling and": [65535, 0], "his clothes sobbing snuffling and occasionally": [65535, 0], "clothes sobbing snuffling and occasionally looking": [65535, 0], "sobbing snuffling and occasionally looking back": [65535, 0], "snuffling and occasionally looking back and": [65535, 0], "and occasionally looking back and shaking": [65535, 0], "occasionally looking back and shaking his": [65535, 0], "looking back and shaking his head": [65535, 0], "back and shaking his head and": [65535, 0], "and shaking his head and threatening": [65535, 0], "shaking his head and threatening what": [65535, 0], "his head and threatening what he": [65535, 0], "head and threatening what he would": [65535, 0], "and threatening what he would do": [65535, 0], "threatening what he would do to": [65535, 0], "what he would do to tom": [65535, 0], "he would do to tom the": [65535, 0], "would do to tom the next": [65535, 0], "do to tom the next time": [65535, 0], "to tom the next time he": [65535, 0], "tom the next time he caught": [65535, 0], "the next time he caught him": [65535, 0], "next time he caught him out": [65535, 0], "time he caught him out to": [65535, 0], "he caught him out to which": [65535, 0], "caught him out to which tom": [65535, 0], "him out to which tom responded": [65535, 0], "out to which tom responded with": [65535, 0], "to which tom responded with jeers": [65535, 0], "which tom responded with jeers and": [65535, 0], "tom responded with jeers and started": [65535, 0], "responded with jeers and started off": [65535, 0], "with jeers and started off in": [65535, 0], "jeers and started off in high": [65535, 0], "and started off in high feather": [65535, 0], "started off in high feather and": [65535, 0], "off in high feather and as": [65535, 0], "in high feather and as soon": [65535, 0], "high feather and as soon as": [65535, 0], "feather and as soon as his": [65535, 0], "and as soon as his back": [65535, 0], "as soon as his back was": [65535, 0], "soon as his back was turned": [65535, 0], "as his back was turned the": [65535, 0], "his back was turned the new": [65535, 0], "back was turned the new boy": [65535, 0], "was turned the new boy snatched": [65535, 0], "turned the new boy snatched up": [65535, 0], "the new boy snatched up a": [65535, 0], "new boy snatched up a stone": [65535, 0], "boy snatched up a stone threw": [65535, 0], "snatched up a stone threw it": [65535, 0], "up a stone threw it and": [65535, 0], "a stone threw it and hit": [65535, 0], "stone threw it and hit him": [65535, 0], "threw it and hit him between": [65535, 0], "it and hit him between the": [65535, 0], "and hit him between the shoulders": [65535, 0], "hit him between the shoulders and": [65535, 0], "him between the shoulders and then": [65535, 0], "between the shoulders and then turned": [65535, 0], "the shoulders and then turned tail": [65535, 0], "shoulders and then turned tail and": [65535, 0], "and then turned tail and ran": [65535, 0], "then turned tail and ran like": [65535, 0], "turned tail and ran like an": [65535, 0], "tail and ran like an antelope": [65535, 0], "and ran like an antelope tom": [65535, 0], "ran like an antelope tom chased": [65535, 0], "like an antelope tom chased the": [65535, 0], "an antelope tom chased the traitor": [65535, 0], "antelope tom chased the traitor home": [65535, 0], "tom chased the traitor home and": [65535, 0], "chased the traitor home and thus": [65535, 0], "the traitor home and thus found": [65535, 0], "traitor home and thus found out": [65535, 0], "home and thus found out where": [65535, 0], "and thus found out where he": [65535, 0], "thus found out where he lived": [65535, 0], "found out where he lived he": [65535, 0], "out where he lived he then": [65535, 0], "where he lived he then held": [65535, 0], "he lived he then held a": [65535, 0], "lived he then held a position": [65535, 0], "he then held a position at": [65535, 0], "then held a position at the": [65535, 0], "held a position at the gate": [65535, 0], "a position at the gate for": [65535, 0], "position at the gate for some": [65535, 0], "at the gate for some time": [65535, 0], "the gate for some time daring": [65535, 0], "gate for some time daring the": [65535, 0], "for some time daring the enemy": [65535, 0], "some time daring the enemy to": [65535, 0], "time daring the enemy to come": [65535, 0], "daring the enemy to come outside": [65535, 0], "the enemy to come outside but": [65535, 0], "enemy to come outside but the": [65535, 0], "to come outside but the enemy": [65535, 0], "come outside but the enemy only": [65535, 0], "outside but the enemy only made": [65535, 0], "but the enemy only made faces": [65535, 0], "the enemy only made faces at": [65535, 0], "enemy only made faces at him": [65535, 0], "only made faces at him through": [65535, 0], "made faces at him through the": [65535, 0], "faces at him through the window": [65535, 0], "at him through the window and": [65535, 0], "him through the window and declined": [65535, 0], "through the window and declined at": [65535, 0], "the window and declined at last": [65535, 0], "window and declined at last the": [65535, 0], "and declined at last the enemy's": [65535, 0], "declined at last the enemy's mother": [65535, 0], "at last the enemy's mother appeared": [65535, 0], "last the enemy's mother appeared and": [65535, 0], "the enemy's mother appeared and called": [65535, 0], "enemy's mother appeared and called tom": [65535, 0], "mother appeared and called tom a": [65535, 0], "appeared and called tom a bad": [65535, 0], "and called tom a bad vicious": [65535, 0], "called tom a bad vicious vulgar": [65535, 0], "tom a bad vicious vulgar child": [65535, 0], "a bad vicious vulgar child and": [65535, 0], "bad vicious vulgar child and ordered": [65535, 0], "vicious vulgar child and ordered him": [65535, 0], "vulgar child and ordered him away": [65535, 0], "child and ordered him away so": [65535, 0], "and ordered him away so he": [65535, 0], "ordered him away so he went": [65535, 0], "him away so he went away": [65535, 0], "away so he went away but": [65535, 0], "so he went away but he": [65535, 0], "he went away but he said": [65535, 0], "went away but he said he": [65535, 0], "away but he said he 'lowed": [65535, 0], "but he said he 'lowed to": [65535, 0], "he said he 'lowed to lay": [65535, 0], "said he 'lowed to lay for": [65535, 0], "he 'lowed to lay for that": [65535, 0], "'lowed to lay for that boy": [65535, 0], "to lay for that boy he": [65535, 0], "lay for that boy he got": [65535, 0], "for that boy he got home": [65535, 0], "that boy he got home pretty": [65535, 0], "boy he got home pretty late": [65535, 0], "he got home pretty late that": [65535, 0], "got home pretty late that night": [65535, 0], "home pretty late that night and": [65535, 0], "pretty late that night and when": [65535, 0], "late that night and when he": [65535, 0], "that night and when he climbed": [65535, 0], "night and when he climbed cautiously": [65535, 0], "and when he climbed cautiously in": [65535, 0], "when he climbed cautiously in at": [65535, 0], "he climbed cautiously in at the": [65535, 0], "climbed cautiously in at the window": [65535, 0], "cautiously in at the window he": [65535, 0], "in at the window he uncovered": [65535, 0], "at the window he uncovered an": [65535, 0], "the window he uncovered an ambuscade": [65535, 0], "window he uncovered an ambuscade in": [65535, 0], "he uncovered an ambuscade in the": [65535, 0], "uncovered an ambuscade in the person": [65535, 0], "an ambuscade in the person of": [65535, 0], "ambuscade in the person of his": [65535, 0], "in the person of his aunt": [65535, 0], "the person of his aunt and": [65535, 0], "person of his aunt and when": [65535, 0], "of his aunt and when she": [65535, 0], "his aunt and when she saw": [65535, 0], "aunt and when she saw the": [65535, 0], "and when she saw the state": [65535, 0], "when she saw the state his": [65535, 0], "she saw the state his clothes": [65535, 0], "saw the state his clothes were": [65535, 0], "the state his clothes were in": [65535, 0], "state his clothes were in her": [65535, 0], "his clothes were in her resolution": [65535, 0], "clothes were in her resolution to": [65535, 0], "were in her resolution to turn": [65535, 0], "in her resolution to turn his": [65535, 0], "her resolution to turn his saturday": [65535, 0], "resolution to turn his saturday holiday": [65535, 0], "to turn his saturday holiday into": [65535, 0], "turn his saturday holiday into captivity": [65535, 0], "his saturday holiday into captivity at": [65535, 0], "saturday holiday into captivity at hard": [65535, 0], "holiday into captivity at hard labor": [65535, 0], "into captivity at hard labor became": [65535, 0], "captivity at hard labor became adamantine": [65535, 0], "at hard labor became adamantine in": [65535, 0], "hard labor became adamantine in its": [65535, 0], "labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's": [65535, 0], "no answer tom no answer what's gone": [65535, 0], "answer tom no answer what's gone with": [65535, 0], "tom no answer what's gone with that": [65535, 0], "no answer what's gone with that boy": [65535, 0], "answer what's gone with that boy i": [65535, 0], "what's gone with that boy i wonder": [65535, 0], "gone with that boy i wonder you": [65535, 0], "with that boy i wonder you tom": [65535, 0], "that boy i wonder you tom no": [65535, 0], "boy i wonder you tom no answer": [65535, 0], "i wonder you tom no answer the": [65535, 0], "wonder you tom no answer the old": [65535, 0], "you tom no answer the old lady": [65535, 0], "tom no answer the old lady pulled": [65535, 0], "no answer the old lady pulled her": [65535, 0], "answer the old lady pulled her spectacles": [65535, 0], "the old lady pulled her spectacles down": [65535, 0], "old lady pulled her spectacles down and": [65535, 0], "lady pulled her spectacles down and looked": [65535, 0], "pulled her spectacles down and looked over": [65535, 0], "her spectacles down and looked over them": [65535, 0], "spectacles down and looked over them about": [65535, 0], "down and looked over them about the": [65535, 0], "and looked over them about the room": [65535, 0], "looked over them about the room then": [65535, 0], "over them about the room then she": [65535, 0], "them about the room then she put": [65535, 0], "about the room then she put them": [65535, 0], "the room then she put them up": [65535, 0], "room then she put them up and": [65535, 0], "then she put them up and looked": [65535, 0], "she put them up and looked out": [65535, 0], "put them up and looked out under": [65535, 0], "them up and looked out under them": [65535, 0], "up and looked out under them she": [65535, 0], "and looked out under them she seldom": [65535, 0], "looked out under them she seldom or": [65535, 0], "out under them she seldom or never": [65535, 0], "under them she seldom or never looked": [65535, 0], "them she seldom or never looked through": [65535, 0], "she seldom or never looked through them": [65535, 0], "seldom or never looked through them for": [65535, 0], "or never looked through them for so": [65535, 0], "never looked through them for so small": [65535, 0], "looked through them for so small a": [65535, 0], "through them for so small a thing": [65535, 0], "them for so small a thing as": [65535, 0], "for so small a thing as a": [65535, 0], "so small a thing as a boy": [65535, 0], "small a thing as a boy they": [65535, 0], "a thing as a boy they were": [65535, 0], "thing as a boy they were her": [65535, 0], "as a boy they were her state": [65535, 0], "a boy they were her state pair": [65535, 0], "boy they were her state pair the": [65535, 0], "they were her state pair the pride": [65535, 0], "were her state pair the pride of": [65535, 0], "her state pair the pride of her": [65535, 0], "state pair the pride of her heart": [65535, 0], "pair the pride of her heart and": [65535, 0], "the pride of her heart and were": [65535, 0], "pride of her heart and were built": [65535, 0], "of her heart and were built for": [65535, 0], "her heart and were built for style": [65535, 0], "heart and were built for style not": [65535, 0], "and were built for style not service": [65535, 0], "were built for style not service she": [65535, 0], "built for style not service she could": [65535, 0], "for style not service she could have": [65535, 0], "style not service she could have seen": [65535, 0], "not service she could have seen through": [65535, 0], "service she could have seen through a": [65535, 0], "she could have seen through a pair": [65535, 0], "could have seen through a pair of": [65535, 0], "have seen through a pair of stove": [65535, 0], "seen through a pair of stove lids": [65535, 0], "through a pair of stove lids just": [65535, 0], "a pair of stove lids just as": [65535, 0], "pair of stove lids just as well": [65535, 0], "of stove lids just as well she": [65535, 0], "stove lids just as well she looked": [65535, 0], "lids just as well she looked perplexed": [65535, 0], "just as well she looked perplexed for": [65535, 0], "as well she looked perplexed for a": [65535, 0], "well she looked perplexed for a moment": [65535, 0], "she looked perplexed for a moment and": [65535, 0], "looked perplexed for a moment and then": [65535, 0], "perplexed for a moment and then said": [65535, 0], "for a moment and then said not": [65535, 0], "a moment and then said not fiercely": [65535, 0], "moment and then said not fiercely but": [65535, 0], "and then said not fiercely but still": [65535, 0], "then said not fiercely but still loud": [65535, 0], "said not fiercely but still loud enough": [65535, 0], "not fiercely but still loud enough for": [65535, 0], "fiercely but still loud enough for the": [65535, 0], "but still loud enough for the furniture": [65535, 0], "still loud enough for the furniture to": [65535, 0], "loud enough for the furniture to hear": [65535, 0], "enough for the furniture to hear well": [65535, 0], "for the furniture to hear well i": [65535, 0], "the furniture to hear well i lay": [65535, 0], "furniture to hear well i lay if": [65535, 0], "to hear well i lay if i": [65535, 0], "hear well i lay if i get": [65535, 0], "well i lay if i get hold": [65535, 0], "i lay if i get hold of": [65535, 0], "lay if i get hold of you": [65535, 0], "if i get hold of you i'll": [65535, 0], "i get hold of you i'll she": [65535, 0], "get hold of you i'll she did": [65535, 0], "hold of you i'll she did not": [65535, 0], "of you i'll she did not finish": [65535, 0], "you i'll she did not finish for": [65535, 0], "i'll she did not finish for by": [65535, 0], "she did not finish for by this": [65535, 0], "did not finish for by this time": [65535, 0], "not finish for by this time she": [65535, 0], "finish for by this time she was": [65535, 0], "for by this time she was bending": [65535, 0], "by this time she was bending down": [65535, 0], "this time she was bending down and": [65535, 0], "time she was bending down and punching": [65535, 0], "she was bending down and punching under": [65535, 0], "was bending down and punching under the": [65535, 0], "bending down and punching under the bed": [65535, 0], "down and punching under the bed with": [65535, 0], "and punching under the bed with the": [65535, 0], "punching under the bed with the broom": [65535, 0], "under the bed with the broom and": [65535, 0], "the bed with the broom and so": [65535, 0], "bed with the broom and so she": [65535, 0], "with the broom and so she needed": [65535, 0], "the broom and so she needed breath": [65535, 0], "broom and so she needed breath to": [65535, 0], "and so she needed breath to punctuate": [65535, 0], "so she needed breath to punctuate the": [65535, 0], "she needed breath to punctuate the punches": [65535, 0], "needed breath to punctuate the punches with": [65535, 0], "breath to punctuate the punches with she": [65535, 0], "to punctuate the punches with she resurrected": [65535, 0], "punctuate the punches with she resurrected nothing": [65535, 0], "the punches with she resurrected nothing but": [65535, 0], "punches with she resurrected nothing but the": [65535, 0], "with she resurrected nothing but the cat": [65535, 0], "she resurrected nothing but the cat i": [65535, 0], "resurrected nothing but the cat i never": [65535, 0], "nothing but the cat i never did": [65535, 0], "but the cat i never did see": [65535, 0], "the cat i never did see the": [65535, 0], "cat i never did see the beat": [65535, 0], "i never did see the beat of": [65535, 0], "never did see the beat of that": [65535, 0], "did see the beat of that boy": [65535, 0], "see the beat of that boy she": [65535, 0], "the beat of that boy she went": [65535, 0], "beat of that boy she went to": [65535, 0], "of that boy she went to the": [65535, 0], "that boy she went to the open": [65535, 0], "boy she went to the open door": [65535, 0], "she went to the open door and": [65535, 0], "went to the open door and stood": [65535, 0], "to the open door and stood in": [65535, 0], "the open door and stood in it": [65535, 0], "open door and stood in it and": [65535, 0], "door and stood in it and looked": [65535, 0], "and stood in it and looked out": [65535, 0], "stood in it and looked out among": [65535, 0], "in it and looked out among the": [65535, 0], "it and looked out among the tomato": [65535, 0], "and looked out among the tomato vines": [65535, 0], "looked out among the tomato vines and": [65535, 0], "out among the tomato vines and jimpson": [65535, 0], "among the tomato vines and jimpson weeds": [65535, 0], "the tomato vines and jimpson weeds that": [65535, 0], "tomato vines and jimpson weeds that constituted": [65535, 0], "vines and jimpson weeds that constituted the": [65535, 0], "and jimpson weeds that constituted the garden": [65535, 0], "jimpson weeds that constituted the garden no": [65535, 0], "weeds that constituted the garden no tom": [65535, 0], "that constituted the garden no tom so": [65535, 0], "constituted the garden no tom so she": [65535, 0], "the garden no tom so she lifted": [65535, 0], "garden no tom so she lifted up": [65535, 0], "no tom so she lifted up her": [65535, 0], "tom so she lifted up her voice": [65535, 0], "so she lifted up her voice at": [65535, 0], "she lifted up her voice at an": [65535, 0], "lifted up her voice at an angle": [65535, 0], "up her voice at an angle calculated": [65535, 0], "her voice at an angle calculated for": [65535, 0], "voice at an angle calculated for distance": [65535, 0], "at an angle calculated for distance and": [65535, 0], "an angle calculated for distance and shouted": [65535, 0], "angle calculated for distance and shouted y": [65535, 0], "calculated for distance and shouted y o": [65535, 0], "for distance and shouted y o u": [65535, 0], "distance and shouted y o u u": [65535, 0], "and shouted y o u u tom": [65535, 0], "shouted y o u u tom there": [65535, 0], "y o u u tom there was": [65535, 0], "o u u tom there was a": [65535, 0], "u u tom there was a slight": [65535, 0], "u tom there was a slight noise": [65535, 0], "tom there was a slight noise behind": [65535, 0], "there was a slight noise behind her": [65535, 0], "was a slight noise behind her and": [65535, 0], "a slight noise behind her and she": [65535, 0], "slight noise behind her and she turned": [65535, 0], "noise behind her and she turned just": [65535, 0], "behind her and she turned just in": [65535, 0], "her and she turned just in time": [65535, 0], "and she turned just in time to": [65535, 0], "she turned just in time to seize": [65535, 0], "turned just in time to seize a": [65535, 0], "just in time to seize a small": [65535, 0], "in time to seize a small boy": [65535, 0], "time to seize a small boy by": [65535, 0], "to seize a small boy by the": [65535, 0], "seize a small boy by the slack": [65535, 0], "a small boy by the slack of": [65535, 0], "small boy by the slack of his": [65535, 0], "boy by the slack of his roundabout": [65535, 0], "by the slack of his roundabout and": [65535, 0], "the slack of his roundabout and arrest": [65535, 0], "slack of his roundabout and arrest his": [65535, 0], "of his roundabout and arrest his flight": [65535, 0], "his roundabout and arrest his flight there": [65535, 0], "roundabout and arrest his flight there i": [65535, 0], "and arrest his flight there i might": [65535, 0], "arrest his flight there i might 'a'": [65535, 0], "his flight there i might 'a' thought": [65535, 0], "flight there i might 'a' thought of": [65535, 0], "there i might 'a' thought of that": [65535, 0], "i might 'a' thought of that closet": [65535, 0], "might 'a' thought of that closet what": [65535, 0], "'a' thought of that closet what you": [65535, 0], "thought of that closet what you been": [65535, 0], "of that closet what you been doing": [65535, 0], "that closet what you been doing in": [65535, 0], "closet what you been doing in there": [65535, 0], "what you been doing in there nothing": [65535, 0], "you been doing in there nothing nothing": [65535, 0], "been doing in there nothing nothing look": [65535, 0], "doing in there nothing nothing look at": [65535, 0], "in there nothing nothing look at your": [65535, 0], "there nothing nothing look at your hands": [65535, 0], "nothing nothing look at your hands and": [65535, 0], "nothing look at your hands and look": [65535, 0], "look at your hands and look at": [65535, 0], "at your hands and look at your": [65535, 0], "your hands and look at your mouth": [65535, 0], "hands and look at your mouth what": [65535, 0], "and look at your mouth what is": [65535, 0], "look at your mouth what is that": [65535, 0], "at your mouth what is that i": [65535, 0], "your mouth what is that i don't": [65535, 0], "mouth what is that i don't know": [65535, 0], "what is that i don't know aunt": [65535, 0], "is that i don't know aunt well": [65535, 0], "that i don't know aunt well i": [65535, 0], "i don't know aunt well i know": [65535, 0], "don't know aunt well i know it's": [65535, 0], "know aunt well i know it's jam": [65535, 0], "aunt well i know it's jam that's": [65535, 0], "well i know it's jam that's what": [65535, 0], "i know it's jam that's what it": [65535, 0], "know it's jam that's what it is": [65535, 0], "it's jam that's what it is forty": [65535, 0], "jam that's what it is forty times": [65535, 0], "that's what it is forty times i've": [65535, 0], "what it is forty times i've said": [65535, 0], "it is forty times i've said if": [65535, 0], "is forty times i've said if you": [65535, 0], "forty times i've said if you didn't": [65535, 0], "times i've said if you didn't let": [65535, 0], "i've said if you didn't let that": [65535, 0], "said if you didn't let that jam": [65535, 0], "if you didn't let that jam alone": [65535, 0], "you didn't let that jam alone i'd": [65535, 0], "didn't let that jam alone i'd skin": [65535, 0], "let that jam alone i'd skin you": [65535, 0], "that jam alone i'd skin you hand": [65535, 0], "jam alone i'd skin you hand me": [65535, 0], "alone i'd skin you hand me that": [65535, 0], "i'd skin you hand me that switch": [65535, 0], "skin you hand me that switch the": [65535, 0], "you hand me that switch the switch": [65535, 0], "hand me that switch the switch hovered": [65535, 0], "me that switch the switch hovered in": [65535, 0], "that switch the switch hovered in the": [65535, 0], "switch the switch hovered in the air": [65535, 0], "the switch hovered in the air the": [65535, 0], "switch hovered in the air the peril": [65535, 0], "hovered in the air the peril was": [65535, 0], "in the air the peril was desperate": [65535, 0], "the air the peril was desperate my": [65535, 0], "air the peril was desperate my look": [65535, 0], "the peril was desperate my look behind": [65535, 0], "peril was desperate my look behind you": [65535, 0], "was desperate my look behind you aunt": [65535, 0], "desperate my look behind you aunt the": [65535, 0], "my look behind you aunt the old": [65535, 0], "look behind you aunt the old lady": [65535, 0], "behind you aunt the old lady whirled": [65535, 0], "you aunt the old lady whirled round": [65535, 0], "aunt the old lady whirled round and": [65535, 0], "the old lady whirled round and snatched": [65535, 0], "old lady whirled round and snatched her": [65535, 0], "lady whirled round and snatched her skirts": [65535, 0], "whirled round and snatched her skirts out": [65535, 0], "round and snatched her skirts out of": [65535, 0], "and snatched her skirts out of danger": [65535, 0], "snatched her skirts out of danger the": [65535, 0], "her skirts out of danger the lad": [65535, 0], "skirts out of danger the lad fled": [65535, 0], "out of danger the lad fled on": [65535, 0], "of danger the lad fled on the": [65535, 0], "danger the lad fled on the instant": [65535, 0], "the lad fled on the instant scrambled": [65535, 0], "lad fled on the instant scrambled up": [65535, 0], "fled on the instant scrambled up the": [65535, 0], "on the instant scrambled up the high": [65535, 0], "the instant scrambled up the high board": [65535, 0], "instant scrambled up the high board fence": [65535, 0], "scrambled up the high board fence and": [65535, 0], "up the high board fence and disappeared": [65535, 0], "the high board fence and disappeared over": [65535, 0], "high board fence and disappeared over it": [65535, 0], "board fence and disappeared over it his": [65535, 0], "fence and disappeared over it his aunt": [65535, 0], "and disappeared over it his aunt polly": [65535, 0], "disappeared over it his aunt polly stood": [65535, 0], "over it his aunt polly stood surprised": [65535, 0], "it his aunt polly stood surprised a": [65535, 0], "his aunt polly stood surprised a moment": [65535, 0], "aunt polly stood surprised a moment and": [65535, 0], "polly stood surprised a moment and then": [65535, 0], "stood surprised a moment and then broke": [65535, 0], "surprised a moment and then broke into": [65535, 0], "a moment and then broke into a": [65535, 0], "moment and then broke into a gentle": [65535, 0], "and then broke into a gentle laugh": [65535, 0], "then broke into a gentle laugh hang": [65535, 0], "broke into a gentle laugh hang the": [65535, 0], "into a gentle laugh hang the boy": [65535, 0], "a gentle laugh hang the boy can't": [65535, 0], "gentle laugh hang the boy can't i": [65535, 0], "laugh hang the boy can't i never": [65535, 0], "hang the boy can't i never learn": [65535, 0], "the boy can't i never learn anything": [65535, 0], "boy can't i never learn anything ain't": [65535, 0], "can't i never learn anything ain't he": [65535, 0], "i never learn anything ain't he played": [65535, 0], "never learn anything ain't he played me": [65535, 0], "learn anything ain't he played me tricks": [65535, 0], "anything ain't he played me tricks enough": [65535, 0], "ain't he played me tricks enough like": [65535, 0], "he played me tricks enough like that": [65535, 0], "played me tricks enough like that for": [65535, 0], "me tricks enough like that for me": [65535, 0], "tricks enough like that for me to": [65535, 0], "enough like that for me to be": [65535, 0], "like that for me to be looking": [65535, 0], "that for me to be looking out": [65535, 0], "for me to be looking out for": [65535, 0], "me to be looking out for him": [65535, 0], "to be looking out for him by": [65535, 0], "be looking out for him by this": [65535, 0], "looking out for him by this time": [65535, 0], "out for him by this time but": [65535, 0], "for him by this time but old": [65535, 0], "him by this time but old fools": [65535, 0], "by this time but old fools is": [65535, 0], "this time but old fools is the": [65535, 0], "time but old fools is the biggest": [65535, 0], "but old fools is the biggest fools": [65535, 0], "old fools is the biggest fools there": [65535, 0], "fools is the biggest fools there is": [65535, 0], "is the biggest fools there is can't": [65535, 0], "the biggest fools there is can't learn": [65535, 0], "biggest fools there is can't learn an": [65535, 0], "fools there is can't learn an old": [65535, 0], "there is can't learn an old dog": [65535, 0], "is can't learn an old dog new": [65535, 0], "can't learn an old dog new tricks": [65535, 0], "learn an old dog new tricks as": [65535, 0], "an old dog new tricks as the": [65535, 0], "old dog new tricks as the saying": [65535, 0], "dog new tricks as the saying is": [65535, 0], "new tricks as the saying is but": [65535, 0], "tricks as the saying is but my": [65535, 0], "as the saying is but my goodness": [65535, 0], "the saying is but my goodness he": [65535, 0], "saying is but my goodness he never": [65535, 0], "is but my goodness he never plays": [65535, 0], "but my goodness he never plays them": [65535, 0], "my goodness he never plays them alike": [65535, 0], "goodness he never plays them alike two": [65535, 0], "he never plays them alike two days": [65535, 0], "never plays them alike two days and": [65535, 0], "plays them alike two days and how": [65535, 0], "them alike two days and how is": [65535, 0], "alike two days and how is a": [65535, 0], "two days and how is a body": [65535, 0], "days and how is a body to": [65535, 0], "and how is a body to know": [65535, 0], "how is a body to know what's": [65535, 0], "is a body to know what's coming": [65535, 0], "a body to know what's coming he": [65535, 0], "body to know what's coming he 'pears": [65535, 0], "to know what's coming he 'pears to": [65535, 0], "know what's coming he 'pears to know": [65535, 0], "what's coming he 'pears to know just": [65535, 0], "coming he 'pears to know just how": [65535, 0], "he 'pears to know just how long": [65535, 0], "'pears to know just how long he": [65535, 0], "to know just how long he can": [65535, 0], "know just how long he can torment": [65535, 0], "just how long he can torment me": [65535, 0], "how long he can torment me before": [65535, 0], "long he can torment me before i": [65535, 0], "he can torment me before i get": [65535, 0], "can torment me before i get my": [65535, 0], "torment me before i get my dander": [65535, 0], "me before i get my dander up": [65535, 0], "before i get my dander up and": [65535, 0], "i get my dander up and he": [65535, 0], "get my dander up and he knows": [65535, 0], "my dander up and he knows if": [65535, 0], "dander up and he knows if he": [65535, 0], "up and he knows if he can": [65535, 0], "and he knows if he can make": [65535, 0], "he knows if he can make out": [65535, 0], "knows if he can make out to": [65535, 0], "if he can make out to put": [65535, 0], "he can make out to put me": [65535, 0], "can make out to put me off": [65535, 0], "make out to put me off for": [65535, 0], "out to put me off for a": [65535, 0], "to put me off for a minute": [65535, 0], "put me off for a minute or": [65535, 0], "me off for a minute or make": [65535, 0], "off for a minute or make me": [65535, 0], "for a minute or make me laugh": [65535, 0], "a minute or make me laugh it's": [65535, 0], "minute or make me laugh it's all": [65535, 0], "or make me laugh it's all down": [65535, 0], "make me laugh it's all down again": [65535, 0], "me laugh it's all down again and": [65535, 0], "laugh it's all down again and i": [65535, 0], "it's all down again and i can't": [65535, 0], "all down again and i can't hit": [65535, 0], "down again and i can't hit him": [65535, 0], "again and i can't hit him a": [65535, 0], "and i can't hit him a lick": [65535, 0], "i can't hit him a lick i": [65535, 0], "can't hit him a lick i ain't": [65535, 0], "hit him a lick i ain't doing": [65535, 0], "him a lick i ain't doing my": [65535, 0], "a lick i ain't doing my duty": [65535, 0], "lick i ain't doing my duty by": [65535, 0], "i ain't doing my duty by that": [65535, 0], "ain't doing my duty by that boy": [65535, 0], "doing my duty by that boy and": [65535, 0], "my duty by that boy and that's": [65535, 0], "duty by that boy and that's the": [65535, 0], "by that boy and that's the lord's": [65535, 0], "that boy and that's the lord's truth": [65535, 0], "boy and that's the lord's truth goodness": [65535, 0], "and that's the lord's truth goodness knows": [65535, 0], "that's the lord's truth goodness knows spare": [65535, 0], "the lord's truth goodness knows spare the": [65535, 0], "lord's truth goodness knows spare the rod": [65535, 0], "truth goodness knows spare the rod and": [65535, 0], "goodness knows spare the rod and spoil": [65535, 0], "knows spare the rod and spoil the": [65535, 0], "spare the rod and spoil the child": [65535, 0], "the rod and spoil the child as": [65535, 0], "rod and spoil the child as the": [65535, 0], "and spoil the child as the good": [65535, 0], "spoil the child as the good book": [65535, 0], "the child as the good book says": [65535, 0], "child as the good book says i'm": [65535, 0], "as the good book says i'm a": [65535, 0], "the good book says i'm a laying": [65535, 0], "good book says i'm a laying up": [65535, 0], "book says i'm a laying up sin": [65535, 0], "says i'm a laying up sin and": [65535, 0], "i'm a laying up sin and suffering": [65535, 0], "a laying up sin and suffering for": [65535, 0], "laying up sin and suffering for us": [65535, 0], "up sin and suffering for us both": [65535, 0], "sin and suffering for us both i": [65535, 0], "and suffering for us both i know": [65535, 0], "suffering for us both i know he's": [65535, 0], "for us both i know he's full": [65535, 0], "us both i know he's full of": [65535, 0], "both i know he's full of the": [65535, 0], "i know he's full of the old": [65535, 0], "know he's full of the old scratch": [65535, 0], "he's full of the old scratch but": [65535, 0], "full of the old scratch but laws": [65535, 0], "of the old scratch but laws a": [65535, 0], "the old scratch but laws a me": [65535, 0], "old scratch but laws a me he's": [65535, 0], "scratch but laws a me he's my": [65535, 0], "but laws a me he's my own": [65535, 0], "laws a me he's my own dead": [65535, 0], "a me he's my own dead sister's": [65535, 0], "me he's my own dead sister's boy": [65535, 0], "he's my own dead sister's boy poor": [65535, 0], "my own dead sister's boy poor thing": [65535, 0], "own dead sister's boy poor thing and": [65535, 0], "dead sister's boy poor thing and i": [65535, 0], "sister's boy poor thing and i ain't": [65535, 0], "boy poor thing and i ain't got": [65535, 0], "poor thing and i ain't got the": [65535, 0], "thing and i ain't got the heart": [65535, 0], "and i ain't got the heart to": [65535, 0], "i ain't got the heart to lash": [65535, 0], "ain't got the heart to lash him": [65535, 0], "got the heart to lash him somehow": [65535, 0], "the heart to lash him somehow every": [65535, 0], "heart to lash him somehow every time": [65535, 0], "to lash him somehow every time i": [65535, 0], "lash him somehow every time i let": [65535, 0], "him somehow every time i let him": [65535, 0], "somehow every time i let him off": [65535, 0], "every time i let him off my": [65535, 0], "time i let him off my conscience": [65535, 0], "i let him off my conscience does": [65535, 0], "let him off my conscience does hurt": [65535, 0], "him off my conscience does hurt me": [65535, 0], "off my conscience does hurt me so": [65535, 0], "my conscience does hurt me so and": [65535, 0], "conscience does hurt me so and every": [65535, 0], "does hurt me so and every time": [65535, 0], "hurt me so and every time i": [65535, 0], "me so and every time i hit": [65535, 0], "so and every time i hit him": [65535, 0], "and every time i hit him my": [65535, 0], "every time i hit him my old": [65535, 0], "time i hit him my old heart": [65535, 0], "i hit him my old heart most": [65535, 0], "hit him my old heart most breaks": [65535, 0], "him my old heart most breaks well": [65535, 0], "my old heart most breaks well a": [65535, 0], "old heart most breaks well a well": [65535, 0], "heart most breaks well a well man": [65535, 0], "most breaks well a well man that": [65535, 0], "breaks well a well man that is": [65535, 0], "well a well man that is born": [65535, 0], "a well man that is born of": [65535, 0], "well man that is born of woman": [65535, 0], "man that is born of woman is": [65535, 0], "that is born of woman is of": [65535, 0], "is born of woman is of few": [65535, 0], "born of woman is of few days": [65535, 0], "of woman is of few days and": [65535, 0], "woman is of few days and full": [65535, 0], "is of few days and full of": [65535, 0], "of few days and full of trouble": [65535, 0], "few days and full of trouble as": [65535, 0], "days and full of trouble as the": [65535, 0], "and full of trouble as the scripture": [65535, 0], "full of trouble as the scripture says": [65535, 0], "of trouble as the scripture says and": [65535, 0], "trouble as the scripture says and i": [65535, 0], "as the scripture says and i reckon": [65535, 0], "the scripture says and i reckon it's": [65535, 0], "scripture says and i reckon it's so": [65535, 0], "says and i reckon it's so he'll": [65535, 0], "and i reckon it's so he'll play": [65535, 0], "i reckon it's so he'll play hookey": [65535, 0], "reckon it's so he'll play hookey this": [65535, 0], "it's so he'll play hookey this evening": [65535, 0], "so he'll play hookey this evening and": [65535, 0], "he'll play hookey this evening and i'll": [65535, 0], "play hookey this evening and i'll just": [65535, 0], "hookey this evening and i'll just be": [65535, 0], "this evening and i'll just be obliged": [65535, 0], "evening and i'll just be obliged to": [65535, 0], "and i'll just be obliged to make": [65535, 0], "i'll just be obliged to make him": [65535, 0], "just be obliged to make him work": [65535, 0], "be obliged to make him work to": [65535, 0], "obliged to make him work to morrow": [65535, 0], "to make him work to morrow to": [65535, 0], "make him work to morrow to punish": [65535, 0], "him work to morrow to punish him": [65535, 0], "work to morrow to punish him it's": [65535, 0], "to morrow to punish him it's mighty": [65535, 0], "morrow to punish him it's mighty hard": [65535, 0], "to punish him it's mighty hard to": [65535, 0], "punish him it's mighty hard to make": [65535, 0], "him it's mighty hard to make him": [65535, 0], "it's mighty hard to make him work": [65535, 0], "mighty hard to make him work saturdays": [65535, 0], "hard to make him work saturdays when": [65535, 0], "to make him work saturdays when all": [65535, 0], "make him work saturdays when all the": [65535, 0], "him work saturdays when all the boys": [65535, 0], "work saturdays when all the boys is": [65535, 0], "saturdays when all the boys is having": [65535, 0], "when all the boys is having holiday": [65535, 0], "all the boys is having holiday but": [65535, 0], "the boys is having holiday but he": [65535, 0], "boys is having holiday but he hates": [65535, 0], "is having holiday but he hates work": [65535, 0], "having holiday but he hates work more": [65535, 0], "holiday but he hates work more than": [65535, 0], "but he hates work more than he": [65535, 0], "he hates work more than he hates": [65535, 0], "hates work more than he hates anything": [65535, 0], "work more than he hates anything else": [65535, 0], "more than he hates anything else and": [65535, 0], "than he hates anything else and i've": [65535, 0], "he hates anything else and i've got": [65535, 0], "hates anything else and i've got to": [65535, 0], "anything else and i've got to do": [65535, 0], "else and i've got to do some": [65535, 0], "and i've got to do some of": [65535, 0], "i've got to do some of my": [65535, 0], "got to do some of my duty": [65535, 0], "to do some of my duty by": [65535, 0], "do some of my duty by him": [65535, 0], "some of my duty by him or": [65535, 0], "of my duty by him or i'll": [65535, 0], "my duty by him or i'll be": [65535, 0], "duty by him or i'll be the": [65535, 0], "by him or i'll be the ruination": [65535, 0], "him or i'll be the ruination of": [65535, 0], "or i'll be the ruination of the": [65535, 0], "i'll be the ruination of the child": [65535, 0], "be the ruination of the child tom": [65535, 0], "the ruination of the child tom did": [65535, 0], "ruination of the child tom did play": [65535, 0], "of the child tom did play hookey": [65535, 0], "the child tom did play hookey and": [65535, 0], "child tom did play hookey and he": [65535, 0], "tom did play hookey and he had": [65535, 0], "did play hookey and he had a": [65535, 0], "play hookey and he had a very": [65535, 0], "hookey and he had a very good": [65535, 0], "and he had a very good time": [65535, 0], "he had a very good time he": [65535, 0], "had a very good time he got": [65535, 0], "a very good time he got back": [65535, 0], "very good time he got back home": [65535, 0], "good time he got back home barely": [65535, 0], "time he got back home barely in": [65535, 0], "he got back home barely in season": [65535, 0], "got back home barely in season to": [65535, 0], "back home barely in season to help": [65535, 0], "home barely in season to help jim": [65535, 0], "barely in season to help jim the": [65535, 0], "in season to help jim the small": [65535, 0], "season to help jim the small colored": [65535, 0], "to help jim the small colored boy": [65535, 0], "help jim the small colored boy saw": [65535, 0], "jim the small colored boy saw next": [65535, 0], "the small colored boy saw next day's": [65535, 0], "small colored boy saw next day's wood": [65535, 0], "colored boy saw next day's wood and": [65535, 0], "boy saw next day's wood and split": [65535, 0], "saw next day's wood and split the": [65535, 0], "next day's wood and split the kindlings": [65535, 0], "day's wood and split the kindlings before": [65535, 0], "wood and split the kindlings before supper": [65535, 0], "and split the kindlings before supper at": [65535, 0], "split the kindlings before supper at least": [65535, 0], "the kindlings before supper at least he": [65535, 0], "kindlings before supper at least he was": [65535, 0], "before supper at least he was there": [65535, 0], "supper at least he was there in": [65535, 0], "at least he was there in time": [65535, 0], "least he was there in time to": [65535, 0], "he was there in time to tell": [65535, 0], "was there in time to tell his": [65535, 0], "there in time to tell his adventures": [65535, 0], "in time to tell his adventures to": [65535, 0], "time to tell his adventures to jim": [65535, 0], "to tell his adventures to jim while": [65535, 0], "tell his adventures to jim while jim": [65535, 0], "his adventures to jim while jim did": [65535, 0], "adventures to jim while jim did three": [65535, 0], "to jim while jim did three fourths": [65535, 0], "jim while jim did three fourths of": [65535, 0], "while jim did three fourths of the": [65535, 0], "jim did three fourths of the work": [65535, 0], "did three fourths of the work tom's": [65535, 0], "three fourths of the work tom's younger": [65535, 0], "fourths of the work tom's younger brother": [65535, 0], "of the work tom's younger brother or": [65535, 0], "the work tom's younger brother or rather": [65535, 0], "work tom's younger brother or rather half": [65535, 0], "tom's younger brother or rather half brother": [65535, 0], "younger brother or rather half brother sid": [65535, 0], "brother or rather half brother sid was": [65535, 0], "or rather half brother sid was already": [65535, 0], "rather half brother sid was already through": [65535, 0], "half brother sid was already through with": [65535, 0], "brother sid was already through with his": [65535, 0], "sid was already through with his part": [65535, 0], "was already through with his part of": [65535, 0], "already through with his part of the": [65535, 0], "through with his part of the work": [65535, 0], "with his part of the work picking": [65535, 0], "his part of the work picking up": [65535, 0], "part of the work picking up chips": [65535, 0], "of the work picking up chips for": [65535, 0], "the work picking up chips for he": [65535, 0], "work picking up chips for he was": [65535, 0], "picking up chips for he was a": [65535, 0], "up chips for he was a quiet": [65535, 0], "chips for he was a quiet boy": [65535, 0], "for he was a quiet boy and": [65535, 0], "he was a quiet boy and had": [65535, 0], "was a quiet boy and had no": [65535, 0], "a quiet boy and had no adventurous": [65535, 0], "quiet boy and had no adventurous troublesome": [65535, 0], "boy and had no adventurous troublesome ways": [65535, 0], "and had no adventurous troublesome ways while": [65535, 0], "had no adventurous troublesome ways while tom": [65535, 0], "no adventurous troublesome ways while tom was": [65535, 0], "adventurous troublesome ways while tom was eating": [65535, 0], "troublesome ways while tom was eating his": [65535, 0], "ways while tom was eating his supper": [65535, 0], "while tom was eating his supper and": [65535, 0], "tom was eating his supper and stealing": [65535, 0], "was eating his supper and stealing sugar": [65535, 0], "eating his supper and stealing sugar as": [65535, 0], "his supper and stealing sugar as opportunity": [65535, 0], "supper and stealing sugar as opportunity offered": [65535, 0], "and stealing sugar as opportunity offered aunt": [65535, 0], "stealing sugar as opportunity offered aunt polly": [65535, 0], "sugar as opportunity offered aunt polly asked": [65535, 0], "as opportunity offered aunt polly asked him": [65535, 0], "opportunity offered aunt polly asked him questions": [65535, 0], "offered aunt polly asked him questions that": [65535, 0], "aunt polly asked him questions that were": [65535, 0], "polly asked him questions that were full": [65535, 0], "asked him questions that were full of": [65535, 0], "him questions that were full of guile": [65535, 0], "questions that were full of guile and": [65535, 0], "that were full of guile and very": [65535, 0], "were full of guile and very deep": [65535, 0], "full of guile and very deep for": [65535, 0], "of guile and very deep for she": [65535, 0], "guile and very deep for she wanted": [65535, 0], "and very deep for she wanted to": [65535, 0], "very deep for she wanted to trap": [65535, 0], "deep for she wanted to trap him": [65535, 0], "for she wanted to trap him into": [65535, 0], "she wanted to trap him into damaging": [65535, 0], "wanted to trap him into damaging revealments": [65535, 0], "to trap him into damaging revealments like": [65535, 0], "trap him into damaging revealments like many": [65535, 0], "him into damaging revealments like many other": [65535, 0], "into damaging revealments like many other simple": [65535, 0], "damaging revealments like many other simple hearted": [65535, 0], "revealments like many other simple hearted souls": [65535, 0], "like many other simple hearted souls it": [65535, 0], "many other simple hearted souls it was": [65535, 0], "other simple hearted souls it was her": [65535, 0], "simple hearted souls it was her pet": [65535, 0], "hearted souls it was her pet vanity": [65535, 0], "souls it was her pet vanity to": [65535, 0], "it was her pet vanity to believe": [65535, 0], "was her pet vanity to believe she": [65535, 0], "her pet vanity to believe she was": [65535, 0], "pet vanity to believe she was endowed": [65535, 0], "vanity to believe she was endowed with": [65535, 0], "to believe she was endowed with a": [65535, 0], "believe she was endowed with a talent": [65535, 0], "she was endowed with a talent for": [65535, 0], "was endowed with a talent for dark": [65535, 0], "endowed with a talent for dark and": [65535, 0], "with a talent for dark and mysterious": [65535, 0], "a talent for dark and mysterious diplomacy": [65535, 0], "talent for dark and mysterious diplomacy and": [65535, 0], "for dark and mysterious diplomacy and she": [65535, 0], "dark and mysterious diplomacy and she loved": [65535, 0], "and mysterious diplomacy and she loved to": [65535, 0], "mysterious diplomacy and she loved to contemplate": [65535, 0], "diplomacy and she loved to contemplate her": [65535, 0], "and she loved to contemplate her most": [65535, 0], "she loved to contemplate her most transparent": [65535, 0], "loved to contemplate her most transparent devices": [65535, 0], "to contemplate her most transparent devices as": [65535, 0], "contemplate her most transparent devices as marvels": [65535, 0], "her most transparent devices as marvels of": [65535, 0], "most transparent devices as marvels of low": [65535, 0], "transparent devices as marvels of low cunning": [65535, 0], "devices as marvels of low cunning said": [65535, 0], "as marvels of low cunning said she": [65535, 0], "marvels of low cunning said she tom": [65535, 0], "of low cunning said she tom it": [65535, 0], "low cunning said she tom it was": [65535, 0], "cunning said she tom it was middling": [65535, 0], "said she tom it was middling warm": [65535, 0], "she tom it was middling warm in": [65535, 0], "tom it was middling warm in school": [65535, 0], "it was middling warm in school warn't": [65535, 0], "was middling warm in school warn't it": [65535, 0], "middling warm in school warn't it yes'm": [65535, 0], "warm in school warn't it yes'm powerful": [65535, 0], "in school warn't it yes'm powerful warm": [65535, 0], "school warn't it yes'm powerful warm warn't": [65535, 0], "warn't it yes'm powerful warm warn't it": [65535, 0], "it yes'm powerful warm warn't it yes'm": [65535, 0], "yes'm powerful warm warn't it yes'm didn't": [65535, 0], "powerful warm warn't it yes'm didn't you": [65535, 0], "warm warn't it yes'm didn't you want": [65535, 0], "warn't it yes'm didn't you want to": [65535, 0], "it yes'm didn't you want to go": [65535, 0], "yes'm didn't you want to go in": [65535, 0], "didn't you want to go in a": [65535, 0], "you want to go in a swimming": [65535, 0], "want to go in a swimming tom": [65535, 0], "to go in a swimming tom a": [65535, 0], "go in a swimming tom a bit": [65535, 0], "in a swimming tom a bit of": [65535, 0], "a swimming tom a bit of a": [65535, 0], "swimming tom a bit of a scare": [65535, 0], "tom a bit of a scare shot": [65535, 0], "a bit of a scare shot through": [65535, 0], "bit of a scare shot through tom": [65535, 0], "of a scare shot through tom a": [65535, 0], "a scare shot through tom a touch": [65535, 0], "scare shot through tom a touch of": [65535, 0], "shot through tom a touch of uncomfortable": [65535, 0], "through tom a touch of uncomfortable suspicion": [65535, 0], "tom a touch of uncomfortable suspicion he": [65535, 0], "a touch of uncomfortable suspicion he searched": [65535, 0], "touch of uncomfortable suspicion he searched aunt": [65535, 0], "of uncomfortable suspicion he searched aunt polly's": [65535, 0], "uncomfortable suspicion he searched aunt polly's face": [65535, 0], "suspicion he searched aunt polly's face but": [65535, 0], "he searched aunt polly's face but it": [65535, 0], "searched aunt polly's face but it told": [65535, 0], "aunt polly's face but it told him": [65535, 0], "polly's face but it told him nothing": [65535, 0], "face but it told him nothing so": [65535, 0], "but it told him nothing so he": [65535, 0], "it told him nothing so he said": [65535, 0], "told him nothing so he said no'm": [65535, 0], "him nothing so he said no'm well": [65535, 0], "nothing so he said no'm well not": [65535, 0], "so he said no'm well not very": [65535, 0], "he said no'm well not very much": [65535, 0], "said no'm well not very much the": [65535, 0], "no'm well not very much the old": [65535, 0], "well not very much the old lady": [65535, 0], "not very much the old lady reached": [65535, 0], "very much the old lady reached out": [65535, 0], "much the old lady reached out her": [65535, 0], "the old lady reached out her hand": [65535, 0], "old lady reached out her hand and": [65535, 0], "lady reached out her hand and felt": [65535, 0], "reached out her hand and felt tom's": [65535, 0], "out her hand and felt tom's shirt": [65535, 0], "her hand and felt tom's shirt and": [65535, 0], "hand and felt tom's shirt and said": [65535, 0], "and felt tom's shirt and said but": [65535, 0], "felt tom's shirt and said but you": [65535, 0], "tom's shirt and said but you ain't": [65535, 0], "shirt and said but you ain't too": [65535, 0], "and said but you ain't too warm": [65535, 0], "said but you ain't too warm now": [65535, 0], "but you ain't too warm now though": [65535, 0], "you ain't too warm now though and": [65535, 0], "ain't too warm now though and it": [65535, 0], "too warm now though and it flattered": [65535, 0], "warm now though and it flattered her": [65535, 0], "now though and it flattered her to": [65535, 0], "though and it flattered her to reflect": [65535, 0], "and it flattered her to reflect that": [65535, 0], "it flattered her to reflect that she": [65535, 0], "flattered her to reflect that she had": [65535, 0], "her to reflect that she had discovered": [65535, 0], "to reflect that she had discovered that": [65535, 0], "reflect that she had discovered that the": [65535, 0], "that she had discovered that the shirt": [65535, 0], "she had discovered that the shirt was": [65535, 0], "had discovered that the shirt was dry": [65535, 0], "discovered that the shirt was dry without": [65535, 0], "that the shirt was dry without anybody": [65535, 0], "the shirt was dry without anybody knowing": [65535, 0], "shirt was dry without anybody knowing that": [65535, 0], "was dry without anybody knowing that that": [65535, 0], "dry without anybody knowing that that was": [65535, 0], "without anybody knowing that that was what": [65535, 0], "anybody knowing that that was what she": [65535, 0], "knowing that that was what she had": [65535, 0], "that that was what she had in": [65535, 0], "that was what she had in her": [65535, 0], "was what she had in her mind": [65535, 0], "what she had in her mind but": [65535, 0], "she had in her mind but in": [65535, 0], "had in her mind but in spite": [65535, 0], "in her mind but in spite of": [65535, 0], "her mind but in spite of her": [65535, 0], "mind but in spite of her tom": [65535, 0], "but in spite of her tom knew": [65535, 0], "in spite of her tom knew where": [65535, 0], "spite of her tom knew where the": [65535, 0], "of her tom knew where the wind": [65535, 0], "her tom knew where the wind lay": [65535, 0], "tom knew where the wind lay now": [65535, 0], "knew where the wind lay now so": [65535, 0], "where the wind lay now so he": [65535, 0], "the wind lay now so he forestalled": [65535, 0], "wind lay now so he forestalled what": [65535, 0], "lay now so he forestalled what might": [65535, 0], "now so he forestalled what might be": [65535, 0], "so he forestalled what might be the": [65535, 0], "he forestalled what might be the next": [65535, 0], "forestalled what might be the next move": [65535, 0], "what might be the next move some": [65535, 0], "might be the next move some of": [65535, 0], "be the next move some of us": [65535, 0], "the next move some of us pumped": [65535, 0], "next move some of us pumped on": [65535, 0], "move some of us pumped on our": [65535, 0], "some of us pumped on our heads": [65535, 0], "of us pumped on our heads mine's": [65535, 0], "us pumped on our heads mine's damp": [65535, 0], "pumped on our heads mine's damp yet": [65535, 0], "on our heads mine's damp yet see": [65535, 0], "our heads mine's damp yet see aunt": [65535, 0], "heads mine's damp yet see aunt polly": [65535, 0], "mine's damp yet see aunt polly was": [65535, 0], "damp yet see aunt polly was vexed": [65535, 0], "yet see aunt polly was vexed to": [65535, 0], "see aunt polly was vexed to think": [65535, 0], "aunt polly was vexed to think she": [65535, 0], "polly was vexed to think she had": [65535, 0], "was vexed to think she had overlooked": [65535, 0], "vexed to think she had overlooked that": [65535, 0], "to think she had overlooked that bit": [65535, 0], "think she had overlooked that bit of": [65535, 0], "she had overlooked that bit of circumstantial": [65535, 0], "had overlooked that bit of circumstantial evidence": [65535, 0], "overlooked that bit of circumstantial evidence and": [65535, 0], "that bit of circumstantial evidence and missed": [65535, 0], "bit of circumstantial evidence and missed a": [65535, 0], "of circumstantial evidence and missed a trick": [65535, 0], "circumstantial evidence and missed a trick then": [65535, 0], "evidence and missed a trick then she": [65535, 0], "and missed a trick then she had": [65535, 0], "missed a trick then she had a": [65535, 0], "a trick then she had a new": [65535, 0], "trick then she had a new inspiration": [65535, 0], "then she had a new inspiration tom": [65535, 0], "she had a new inspiration tom you": [65535, 0], "had a new inspiration tom you didn't": [65535, 0], "a new inspiration tom you didn't have": [65535, 0], "new inspiration tom you didn't have to": [65535, 0], "inspiration tom you didn't have to undo": [65535, 0], "tom you didn't have to undo your": [65535, 0], "you didn't have to undo your shirt": [65535, 0], "didn't have to undo your shirt collar": [65535, 0], "have to undo your shirt collar where": [65535, 0], "to undo your shirt collar where i": [65535, 0], "undo your shirt collar where i sewed": [65535, 0], "your shirt collar where i sewed it": [65535, 0], "shirt collar where i sewed it to": [65535, 0], "collar where i sewed it to pump": [65535, 0], "where i sewed it to pump on": [65535, 0], "i sewed it to pump on your": [65535, 0], "sewed it to pump on your head": [65535, 0], "it to pump on your head did": [65535, 0], "to pump on your head did you": [65535, 0], "pump on your head did you unbutton": [65535, 0], "on your head did you unbutton your": [65535, 0], "your head did you unbutton your jacket": [65535, 0], "head did you unbutton your jacket the": [65535, 0], "did you unbutton your jacket the trouble": [65535, 0], "you unbutton your jacket the trouble vanished": [65535, 0], "unbutton your jacket the trouble vanished out": [65535, 0], "your jacket the trouble vanished out of": [65535, 0], "jacket the trouble vanished out of tom's": [65535, 0], "the trouble vanished out of tom's face": [65535, 0], "trouble vanished out of tom's face he": [65535, 0], "vanished out of tom's face he opened": [65535, 0], "out of tom's face he opened his": [65535, 0], "of tom's face he opened his jacket": [65535, 0], "tom's face he opened his jacket his": [65535, 0], "face he opened his jacket his shirt": [65535, 0], "he opened his jacket his shirt collar": [65535, 0], "opened his jacket his shirt collar was": [65535, 0], "his jacket his shirt collar was securely": [65535, 0], "jacket his shirt collar was securely sewed": [65535, 0], "his shirt collar was securely sewed bother": [65535, 0], "shirt collar was securely sewed bother well": [65535, 0], "collar was securely sewed bother well go": [65535, 0], "was securely sewed bother well go 'long": [65535, 0], "securely sewed bother well go 'long with": [65535, 0], "sewed bother well go 'long with you": [65535, 0], "bother well go 'long with you i'd": [65535, 0], "well go 'long with you i'd made": [65535, 0], "go 'long with you i'd made sure": [65535, 0], "'long with you i'd made sure you'd": [65535, 0], "with you i'd made sure you'd played": [65535, 0], "you i'd made sure you'd played hookey": [65535, 0], "i'd made sure you'd played hookey and": [65535, 0], "made sure you'd played hookey and been": [65535, 0], "sure you'd played hookey and been a": [65535, 0], "you'd played hookey and been a swimming": [65535, 0], "played hookey and been a swimming but": [65535, 0], "hookey and been a swimming but i": [65535, 0], "and been a swimming but i forgive": [65535, 0], "been a swimming but i forgive ye": [65535, 0], "a swimming but i forgive ye tom": [65535, 0], "swimming but i forgive ye tom i": [65535, 0], "but i forgive ye tom i reckon": [65535, 0], "i forgive ye tom i reckon you're": [65535, 0], "forgive ye tom i reckon you're a": [65535, 0], "ye tom i reckon you're a kind": [65535, 0], "tom i reckon you're a kind of": [65535, 0], "i reckon you're a kind of a": [65535, 0], "reckon you're a kind of a singed": [65535, 0], "you're a kind of a singed cat": [65535, 0], "a kind of a singed cat as": [65535, 0], "kind of a singed cat as the": [65535, 0], "of a singed cat as the saying": [65535, 0], "a singed cat as the saying is": [65535, 0], "singed cat as the saying is better'n": [65535, 0], "cat as the saying is better'n you": [65535, 0], "as the saying is better'n you look": [65535, 0], "the saying is better'n you look this": [65535, 0], "saying is better'n you look this time": [65535, 0], "is better'n you look this time she": [65535, 0], "better'n you look this time she was": [65535, 0], "you look this time she was half": [65535, 0], "look this time she was half sorry": [65535, 0], "this time she was half sorry her": [65535, 0], "time she was half sorry her sagacity": [65535, 0], "she was half sorry her sagacity had": [65535, 0], "was half sorry her sagacity had miscarried": [65535, 0], "half sorry her sagacity had miscarried and": [65535, 0], "sorry her sagacity had miscarried and half": [65535, 0], "her sagacity had miscarried and half glad": [65535, 0], "sagacity had miscarried and half glad that": [65535, 0], "had miscarried and half glad that tom": [65535, 0], "miscarried and half glad that tom had": [65535, 0], "and half glad that tom had stumbled": [65535, 0], "half glad that tom had stumbled into": [65535, 0], "glad that tom had stumbled into obedient": [65535, 0], "that tom had stumbled into obedient conduct": [65535, 0], "tom had stumbled into obedient conduct for": [65535, 0], "had stumbled into obedient conduct for once": [65535, 0], "stumbled into obedient conduct for once but": [65535, 0], "into obedient conduct for once but sidney": [65535, 0], "obedient conduct for once but sidney said": [65535, 0], "conduct for once but sidney said well": [65535, 0], "for once but sidney said well now": [65535, 0], "once but sidney said well now if": [65535, 0], "but sidney said well now if i": [65535, 0], "sidney said well now if i didn't": [65535, 0], "said well now if i didn't think": [65535, 0], "well now if i didn't think you": [65535, 0], "now if i didn't think you sewed": [65535, 0], "if i didn't think you sewed his": [65535, 0], "i didn't think you sewed his collar": [65535, 0], "didn't think you sewed his collar with": [65535, 0], "think you sewed his collar with white": [65535, 0], "you sewed his collar with white thread": [65535, 0], "sewed his collar with white thread but": [65535, 0], "his collar with white thread but it's": [65535, 0], "collar with white thread but it's black": [65535, 0], "with white thread but it's black why": [65535, 0], "white thread but it's black why i": [65535, 0], "thread but it's black why i did": [65535, 0], "but it's black why i did sew": [65535, 0], "it's black why i did sew it": [65535, 0], "black why i did sew it with": [65535, 0], "why i did sew it with white": [65535, 0], "i did sew it with white tom": [65535, 0], "did sew it with white tom but": [65535, 0], "sew it with white tom but tom": [65535, 0], "it with white tom but tom did": [65535, 0], "with white tom but tom did not": [65535, 0], "white tom but tom did not wait": [65535, 0], "tom but tom did not wait for": [65535, 0], "but tom did not wait for the": [65535, 0], "tom did not wait for the rest": [65535, 0], "did not wait for the rest as": [65535, 0], "not wait for the rest as he": [65535, 0], "wait for the rest as he went": [65535, 0], "for the rest as he went out": [65535, 0], "the rest as he went out at": [65535, 0], "rest as he went out at the": [65535, 0], "as he went out at the door": [65535, 0], "he went out at the door he": [65535, 0], "went out at the door he said": [65535, 0], "out at the door he said siddy": [65535, 0], "at the door he said siddy i'll": [65535, 0], "the door he said siddy i'll lick": [65535, 0], "door he said siddy i'll lick you": [65535, 0], "he said siddy i'll lick you for": [65535, 0], "said siddy i'll lick you for that": [65535, 0], "siddy i'll lick you for that in": [65535, 0], "i'll lick you for that in a": [65535, 0], "lick you for that in a safe": [65535, 0], "you for that in a safe place": [65535, 0], "for that in a safe place tom": [65535, 0], "that in a safe place tom examined": [65535, 0], "in a safe place tom examined two": [65535, 0], "a safe place tom examined two large": [65535, 0], "safe place tom examined two large needles": [65535, 0], "place tom examined two large needles which": [65535, 0], "tom examined two large needles which were": [65535, 0], "examined two large needles which were thrust": [65535, 0], "two large needles which were thrust into": [65535, 0], "large needles which were thrust into the": [65535, 0], "needles which were thrust into the lapels": [65535, 0], "which were thrust into the lapels of": [65535, 0], "were thrust into the lapels of his": [65535, 0], "thrust into the lapels of his jacket": [65535, 0], "into the lapels of his jacket and": [65535, 0], "the lapels of his jacket and had": [65535, 0], "lapels of his jacket and had thread": [65535, 0], "of his jacket and had thread bound": [65535, 0], "his jacket and had thread bound about": [65535, 0], "jacket and had thread bound about them": [65535, 0], "and had thread bound about them one": [65535, 0], "had thread bound about them one needle": [65535, 0], "thread bound about them one needle carried": [65535, 0], "bound about them one needle carried white": [65535, 0], "about them one needle carried white thread": [65535, 0], "them one needle carried white thread and": [65535, 0], "one needle carried white thread and the": [65535, 0], "needle carried white thread and the other": [65535, 0], "carried white thread and the other black": [65535, 0], "white thread and the other black he": [65535, 0], "thread and the other black he said": [65535, 0], "and the other black he said she'd": [65535, 0], "the other black he said she'd never": [65535, 0], "other black he said she'd never noticed": [65535, 0], "black he said she'd never noticed if": [65535, 0], "he said she'd never noticed if it": [65535, 0], "said she'd never noticed if it hadn't": [65535, 0], "she'd never noticed if it hadn't been": [65535, 0], "never noticed if it hadn't been for": [65535, 0], "noticed if it hadn't been for sid": [65535, 0], "if it hadn't been for sid confound": [65535, 0], "it hadn't been for sid confound it": [65535, 0], "hadn't been for sid confound it sometimes": [65535, 0], "been for sid confound it sometimes she": [65535, 0], "for sid confound it sometimes she sews": [65535, 0], "sid confound it sometimes she sews it": [65535, 0], "confound it sometimes she sews it with": [65535, 0], "it sometimes she sews it with white": [65535, 0], "sometimes she sews it with white and": [65535, 0], "she sews it with white and sometimes": [65535, 0], "sews it with white and sometimes she": [65535, 0], "it with white and sometimes she sews": [65535, 0], "with white and sometimes she sews it": [65535, 0], "white and sometimes she sews it with": [65535, 0], "and sometimes she sews it with black": [65535, 0], "sometimes she sews it with black i": [65535, 0], "she sews it with black i wish": [65535, 0], "sews it with black i wish to": [65535, 0], "it with black i wish to geeminy": [65535, 0], "with black i wish to geeminy she'd": [65535, 0], "black i wish to geeminy she'd stick": [65535, 0], "i wish to geeminy she'd stick to": [65535, 0], "wish to geeminy she'd stick to one": [65535, 0], "to geeminy she'd stick to one or": [65535, 0], "geeminy she'd stick to one or t'other": [65535, 0], "she'd stick to one or t'other i": [65535, 0], "stick to one or t'other i can't": [65535, 0], "to one or t'other i can't keep": [65535, 0], "one or t'other i can't keep the": [65535, 0], "or t'other i can't keep the run": [65535, 0], "t'other i can't keep the run of": [65535, 0], "i can't keep the run of 'em": [65535, 0], "can't keep the run of 'em but": [65535, 0], "keep the run of 'em but i": [65535, 0], "the run of 'em but i bet": [65535, 0], "run of 'em but i bet you": [65535, 0], "of 'em but i bet you i'll": [65535, 0], "'em but i bet you i'll lam": [65535, 0], "but i bet you i'll lam sid": [65535, 0], "i bet you i'll lam sid for": [65535, 0], "bet you i'll lam sid for that": [65535, 0], "you i'll lam sid for that i'll": [65535, 0], "i'll lam sid for that i'll learn": [65535, 0], "lam sid for that i'll learn him": [65535, 0], "sid for that i'll learn him he": [65535, 0], "for that i'll learn him he was": [65535, 0], "that i'll learn him he was not": [65535, 0], "i'll learn him he was not the": [65535, 0], "learn him he was not the model": [65535, 0], "him he was not the model boy": [65535, 0], "he was not the model boy of": [65535, 0], "was not the model boy of the": [65535, 0], "not the model boy of the village": [65535, 0], "the model boy of the village he": [65535, 0], "model boy of the village he knew": [65535, 0], "boy of the village he knew the": [65535, 0], "of the village he knew the model": [65535, 0], "the village he knew the model boy": [65535, 0], "village he knew the model boy very": [65535, 0], "he knew the model boy very well": [65535, 0], "knew the model boy very well though": [65535, 0], "the model boy very well though and": [65535, 0], "model boy very well though and loathed": [65535, 0], "boy very well though and loathed him": [65535, 0], "very well though and loathed him within": [65535, 0], "well though and loathed him within two": [65535, 0], "though and loathed him within two minutes": [65535, 0], "and loathed him within two minutes or": [65535, 0], "loathed him within two minutes or even": [65535, 0], "him within two minutes or even less": [65535, 0], "within two minutes or even less he": [65535, 0], "two minutes or even less he had": [65535, 0], "minutes or even less he had forgotten": [65535, 0], "or even less he had forgotten all": [65535, 0], "even less he had forgotten all his": [65535, 0], "less he had forgotten all his troubles": [65535, 0], "he had forgotten all his troubles not": [65535, 0], "had forgotten all his troubles not because": [65535, 0], "forgotten all his troubles not because his": [65535, 0], "all his troubles not because his troubles": [65535, 0], "his troubles not because his troubles were": [65535, 0], "troubles not because his troubles were one": [65535, 0], "not because his troubles were one whit": [65535, 0], "because his troubles were one whit less": [65535, 0], "his troubles were one whit less heavy": [65535, 0], "troubles were one whit less heavy and": [65535, 0], "were one whit less heavy and bitter": [65535, 0], "one whit less heavy and bitter to": [65535, 0], "whit less heavy and bitter to him": [65535, 0], "less heavy and bitter to him than": [65535, 0], "heavy and bitter to him than a": [65535, 0], "and bitter to him than a man's": [65535, 0], "bitter to him than a man's are": [65535, 0], "to him than a man's are to": [65535, 0], "him than a man's are to a": [65535, 0], "than a man's are to a man": [65535, 0], "a man's are to a man but": [65535, 0], "man's are to a man but because": [65535, 0], "are to a man but because a": [65535, 0], "to a man but because a new": [65535, 0], "a man but because a new and": [65535, 0], "man but because a new and powerful": [65535, 0], "but because a new and powerful interest": [65535, 0], "because a new and powerful interest bore": [65535, 0], "a new and powerful interest bore them": [65535, 0], "new and powerful interest bore them down": [65535, 0], "and powerful interest bore them down and": [65535, 0], "powerful interest bore them down and drove": [65535, 0], "interest bore them down and drove them": [65535, 0], "bore them down and drove them out": [65535, 0], "them down and drove them out of": [65535, 0], "down and drove them out of his": [65535, 0], "and drove them out of his mind": [65535, 0], "drove them out of his mind for": [65535, 0], "them out of his mind for the": [65535, 0], "out of his mind for the time": [65535, 0], "of his mind for the time just": [65535, 0], "his mind for the time just as": [65535, 0], "mind for the time just as men's": [65535, 0], "for the time just as men's misfortunes": [65535, 0], "the time just as men's misfortunes are": [65535, 0], "time just as men's misfortunes are forgotten": [65535, 0], "just as men's misfortunes are forgotten in": [65535, 0], "as men's misfortunes are forgotten in the": [65535, 0], "men's misfortunes are forgotten in the excitement": [65535, 0], "misfortunes are forgotten in the excitement of": [65535, 0], "are forgotten in the excitement of new": [65535, 0], "forgotten in the excitement of new enterprises": [65535, 0], "in the excitement of new enterprises this": [65535, 0], "the excitement of new enterprises this new": [65535, 0], "excitement of new enterprises this new interest": [65535, 0], "of new enterprises this new interest was": [65535, 0], "new enterprises this new interest was a": [65535, 0], "enterprises this new interest was a valued": [65535, 0], "this new interest was a valued novelty": [65535, 0], "new interest was a valued novelty in": [65535, 0], "interest was a valued novelty in whistling": [65535, 0], "was a valued novelty in whistling which": [65535, 0], "a valued novelty in whistling which he": [65535, 0], "valued novelty in whistling which he had": [65535, 0], "novelty in whistling which he had just": [65535, 0], "in whistling which he had just acquired": [65535, 0], "whistling which he had just acquired from": [65535, 0], "which he had just acquired from a": [65535, 0], "he had just acquired from a negro": [65535, 0], "had just acquired from a negro and": [65535, 0], "just acquired from a negro and he": [65535, 0], "acquired from a negro and he was": [65535, 0], "from a negro and he was suffering": [65535, 0], "a negro and he was suffering to": [65535, 0], "negro and he was suffering to practise": [65535, 0], "and he was suffering to practise it": [65535, 0], "he was suffering to practise it undisturbed": [65535, 0], "was suffering to practise it undisturbed it": [65535, 0], "suffering to practise it undisturbed it consisted": [65535, 0], "to practise it undisturbed it consisted in": [65535, 0], "practise it undisturbed it consisted in a": [65535, 0], "it undisturbed it consisted in a peculiar": [65535, 0], "undisturbed it consisted in a peculiar bird": [65535, 0], "it consisted in a peculiar bird like": [65535, 0], "consisted in a peculiar bird like turn": [65535, 0], "in a peculiar bird like turn a": [65535, 0], "a peculiar bird like turn a sort": [65535, 0], "peculiar bird like turn a sort of": [65535, 0], "bird like turn a sort of liquid": [65535, 0], "like turn a sort of liquid warble": [65535, 0], "turn a sort of liquid warble produced": [65535, 0], "a sort of liquid warble produced by": [65535, 0], "sort of liquid warble produced by touching": [65535, 0], "of liquid warble produced by touching the": [65535, 0], "liquid warble produced by touching the tongue": [65535, 0], "warble produced by touching the tongue to": [65535, 0], "produced by touching the tongue to the": [65535, 0], "by touching the tongue to the roof": [65535, 0], "touching the tongue to the roof of": [65535, 0], "the tongue to the roof of the": [65535, 0], "tongue to the roof of the mouth": [65535, 0], "to the roof of the mouth at": [65535, 0], "the roof of the mouth at short": [65535, 0], "roof of the mouth at short intervals": [65535, 0], "of the mouth at short intervals in": [65535, 0], "the mouth at short intervals in the": [65535, 0], "mouth at short intervals in the midst": [65535, 0], "at short intervals in the midst of": [65535, 0], "short intervals in the midst of the": [65535, 0], "intervals in the midst of the music": [65535, 0], "in the midst of the music the": [65535, 0], "the midst of the music the reader": [65535, 0], "midst of the music the reader probably": [65535, 0], "of the music the reader probably remembers": [65535, 0], "the music the reader probably remembers how": [65535, 0], "music the reader probably remembers how to": [65535, 0], "the reader probably remembers how to do": [65535, 0], "reader probably remembers how to do it": [65535, 0], "probably remembers how to do it if": [65535, 0], "remembers how to do it if he": [65535, 0], "how to do it if he has": [65535, 0], "to do it if he has ever": [65535, 0], "do it if he has ever been": [65535, 0], "it if he has ever been a": [65535, 0], "if he has ever been a boy": [65535, 0], "he has ever been a boy diligence": [65535, 0], "has ever been a boy diligence and": [65535, 0], "ever been a boy diligence and attention": [65535, 0], "been a boy diligence and attention soon": [65535, 0], "a boy diligence and attention soon gave": [65535, 0], "boy diligence and attention soon gave him": [65535, 0], "diligence and attention soon gave him the": [65535, 0], "and attention soon gave him the knack": [65535, 0], "attention soon gave him the knack of": [65535, 0], "soon gave him the knack of it": [65535, 0], "gave him the knack of it and": [65535, 0], "him the knack of it and he": [65535, 0], "the knack of it and he strode": [65535, 0], "knack of it and he strode down": [65535, 0], "of it and he strode down the": [65535, 0], "it and he strode down the street": [65535, 0], "and he strode down the street with": [65535, 0], "he strode down the street with his": [65535, 0], "strode down the street with his mouth": [65535, 0], "down the street with his mouth full": [65535, 0], "the street with his mouth full of": [65535, 0], "street with his mouth full of harmony": [65535, 0], "with his mouth full of harmony and": [65535, 0], "his mouth full of harmony and his": [65535, 0], "mouth full of harmony and his soul": [65535, 0], "full of harmony and his soul full": [65535, 0], "of harmony and his soul full of": [65535, 0], "harmony and his soul full of gratitude": [65535, 0], "and his soul full of gratitude he": [65535, 0], "his soul full of gratitude he felt": [65535, 0], "soul full of gratitude he felt much": [65535, 0], "full of gratitude he felt much as": [65535, 0], "of gratitude he felt much as an": [65535, 0], "gratitude he felt much as an astronomer": [65535, 0], "he felt much as an astronomer feels": [65535, 0], "felt much as an astronomer feels who": [65535, 0], "much as an astronomer feels who has": [65535, 0], "as an astronomer feels who has discovered": [65535, 0], "an astronomer feels who has discovered a": [65535, 0], "astronomer feels who has discovered a new": [65535, 0], "feels who has discovered a new planet": [65535, 0], "who has discovered a new planet no": [65535, 0], "has discovered a new planet no doubt": [65535, 0], "discovered a new planet no doubt as": [65535, 0], "a new planet no doubt as far": [65535, 0], "new planet no doubt as far as": [65535, 0], "planet no doubt as far as strong": [65535, 0], "no doubt as far as strong deep": [65535, 0], "doubt as far as strong deep unalloyed": [65535, 0], "as far as strong deep unalloyed pleasure": [65535, 0], "far as strong deep unalloyed pleasure is": [65535, 0], "as strong deep unalloyed pleasure is concerned": [65535, 0], "strong deep unalloyed pleasure is concerned the": [65535, 0], "deep unalloyed pleasure is concerned the advantage": [65535, 0], "unalloyed pleasure is concerned the advantage was": [65535, 0], "pleasure is concerned the advantage was with": [65535, 0], "is concerned the advantage was with the": [65535, 0], "concerned the advantage was with the boy": [65535, 0], "the advantage was with the boy not": [65535, 0], "advantage was with the boy not the": [65535, 0], "was with the boy not the astronomer": [65535, 0], "with the boy not the astronomer the": [65535, 0], "the boy not the astronomer the summer": [65535, 0], "boy not the astronomer the summer evenings": [65535, 0], "not the astronomer the summer evenings were": [65535, 0], "the astronomer the summer evenings were long": [65535, 0], "astronomer the summer evenings were long it": [65535, 0], "the summer evenings were long it was": [65535, 0], "summer evenings were long it was not": [65535, 0], "evenings were long it was not dark": [65535, 0], "were long it was not dark yet": [65535, 0], "long it was not dark yet presently": [65535, 0], "it was not dark yet presently tom": [65535, 0], "was not dark yet presently tom checked": [65535, 0], "not dark yet presently tom checked his": [65535, 0], "dark yet presently tom checked his whistle": [65535, 0], "yet presently tom checked his whistle a": [65535, 0], "presently tom checked his whistle a stranger": [65535, 0], "tom checked his whistle a stranger was": [65535, 0], "checked his whistle a stranger was before": [65535, 0], "his whistle a stranger was before him": [65535, 0], "whistle a stranger was before him a": [65535, 0], "a stranger was before him a boy": [65535, 0], "stranger was before him a boy a": [65535, 0], "was before him a boy a shade": [65535, 0], "before him a boy a shade larger": [65535, 0], "him a boy a shade larger than": [65535, 0], "a boy a shade larger than himself": [65535, 0], "boy a shade larger than himself a": [65535, 0], "a shade larger than himself a new": [65535, 0], "shade larger than himself a new comer": [65535, 0], "larger than himself a new comer of": [65535, 0], "than himself a new comer of any": [65535, 0], "himself a new comer of any age": [65535, 0], "a new comer of any age or": [65535, 0], "new comer of any age or either": [65535, 0], "comer of any age or either sex": [65535, 0], "of any age or either sex was": [65535, 0], "any age or either sex was an": [65535, 0], "age or either sex was an impressive": [65535, 0], "or either sex was an impressive curiosity": [65535, 0], "either sex was an impressive curiosity in": [65535, 0], "sex was an impressive curiosity in the": [65535, 0], "was an impressive curiosity in the poor": [65535, 0], "an impressive curiosity in the poor little": [65535, 0], "impressive curiosity in the poor little shabby": [65535, 0], "curiosity in the poor little shabby village": [65535, 0], "in the poor little shabby village of": [65535, 0], "the poor little shabby village of st": [65535, 0], "poor little shabby village of st petersburg": [65535, 0], "little shabby village of st petersburg this": [65535, 0], "shabby village of st petersburg this boy": [65535, 0], "village of st petersburg this boy was": [65535, 0], "of st petersburg this boy was well": [65535, 0], "st petersburg this boy was well dressed": [65535, 0], "petersburg this boy was well dressed too": [65535, 0], "this boy was well dressed too well": [65535, 0], "boy was well dressed too well dressed": [65535, 0], "was well dressed too well dressed on": [65535, 0], "well dressed too well dressed on a": [65535, 0], "dressed too well dressed on a week": [65535, 0], "too well dressed on a week day": [65535, 0], "well dressed on a week day this": [65535, 0], "dressed on a week day this was": [65535, 0], "on a week day this was simply": [65535, 0], "a week day this was simply astounding": [65535, 0], "week day this was simply astounding his": [65535, 0], "day this was simply astounding his cap": [65535, 0], "this was simply astounding his cap was": [65535, 0], "was simply astounding his cap was a": [65535, 0], "simply astounding his cap was a dainty": [65535, 0], "astounding his cap was a dainty thing": [65535, 0], "his cap was a dainty thing his": [65535, 0], "cap was a dainty thing his closebuttoned": [65535, 0], "was a dainty thing his closebuttoned blue": [65535, 0], "a dainty thing his closebuttoned blue cloth": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "thing his closebuttoned blue cloth roundabout was": [65535, 0], "his closebuttoned blue cloth roundabout was new": [65535, 0], "closebuttoned blue cloth roundabout was new and": [65535, 0], "blue cloth roundabout was new and natty": [65535, 0], "cloth roundabout was new and natty and": [65535, 0], "roundabout was new and natty and so": [65535, 0], "was new and natty and so were": [65535, 0], "new and natty and so were his": [65535, 0], "and natty and so were his pantaloons": [65535, 0], "natty and so were his pantaloons he": [65535, 0], "and so were his pantaloons he had": [65535, 0], "so were his pantaloons he had shoes": [65535, 0], "were his pantaloons he had shoes on": [65535, 0], "his pantaloons he had shoes on and": [65535, 0], "pantaloons he had shoes on and it": [65535, 0], "he had shoes on and it was": [65535, 0], "had shoes on and it was only": [65535, 0], "shoes on and it was only friday": [65535, 0], "on and it was only friday he": [65535, 0], "and it was only friday he even": [65535, 0], "it was only friday he even wore": [65535, 0], "was only friday he even wore a": [65535, 0], "only friday he even wore a necktie": [65535, 0], "friday he even wore a necktie a": [65535, 0], "he even wore a necktie a bright": [65535, 0], "even wore a necktie a bright bit": [65535, 0], "wore a necktie a bright bit of": [65535, 0], "a necktie a bright bit of ribbon": [65535, 0], "necktie a bright bit of ribbon he": [65535, 0], "a bright bit of ribbon he had": [65535, 0], "bright bit of ribbon he had a": [65535, 0], "bit of ribbon he had a citified": [65535, 0], "of ribbon he had a citified air": [65535, 0], "ribbon he had a citified air about": [65535, 0], "he had a citified air about him": [65535, 0], "had a citified air about him that": [65535, 0], "a citified air about him that ate": [65535, 0], "citified air about him that ate into": [65535, 0], "air about him that ate into tom's": [65535, 0], "about him that ate into tom's vitals": [65535, 0], "him that ate into tom's vitals the": [65535, 0], "that ate into tom's vitals the more": [65535, 0], "ate into tom's vitals the more tom": [65535, 0], "into tom's vitals the more tom stared": [65535, 0], "tom's vitals the more tom stared at": [65535, 0], "vitals the more tom stared at the": [65535, 0], "the more tom stared at the splendid": [65535, 0], "more tom stared at the splendid marvel": [65535, 0], "tom stared at the splendid marvel the": [65535, 0], "stared at the splendid marvel the higher": [65535, 0], "at the splendid marvel the higher he": [65535, 0], "the splendid marvel the higher he turned": [65535, 0], "splendid marvel the higher he turned up": [65535, 0], "marvel the higher he turned up his": [65535, 0], "the higher he turned up his nose": [65535, 0], "higher he turned up his nose at": [65535, 0], "he turned up his nose at his": [65535, 0], "turned up his nose at his finery": [65535, 0], "up his nose at his finery and": [65535, 0], "his nose at his finery and the": [65535, 0], "nose at his finery and the shabbier": [65535, 0], "at his finery and the shabbier and": [65535, 0], "his finery and the shabbier and shabbier": [65535, 0], "finery and the shabbier and shabbier his": [65535, 0], "and the shabbier and shabbier his own": [65535, 0], "the shabbier and shabbier his own outfit": [65535, 0], "shabbier and shabbier his own outfit seemed": [65535, 0], "and shabbier his own outfit seemed to": [65535, 0], "shabbier his own outfit seemed to him": [65535, 0], "his own outfit seemed to him to": [65535, 0], "own outfit seemed to him to grow": [65535, 0], "outfit seemed to him to grow neither": [65535, 0], "seemed to him to grow neither boy": [65535, 0], "to him to grow neither boy spoke": [65535, 0], "him to grow neither boy spoke if": [65535, 0], "to grow neither boy spoke if one": [65535, 0], "grow neither boy spoke if one moved": [65535, 0], "neither boy spoke if one moved the": [65535, 0], "boy spoke if one moved the other": [65535, 0], "spoke if one moved the other moved": [65535, 0], "if one moved the other moved but": [65535, 0], "one moved the other moved but only": [65535, 0], "moved the other moved but only sidewise": [65535, 0], "the other moved but only sidewise in": [65535, 0], "other moved but only sidewise in a": [65535, 0], "moved but only sidewise in a circle": [65535, 0], "but only sidewise in a circle they": [65535, 0], "only sidewise in a circle they kept": [65535, 0], "sidewise in a circle they kept face": [65535, 0], "in a circle they kept face to": [65535, 0], "a circle they kept face to face": [65535, 0], "circle they kept face to face and": [65535, 0], "they kept face to face and eye": [65535, 0], "kept face to face and eye to": [65535, 0], "face to face and eye to eye": [65535, 0], "to face and eye to eye all": [65535, 0], "face and eye to eye all the": [65535, 0], "and eye to eye all the time": [65535, 0], "eye to eye all the time finally": [65535, 0], "to eye all the time finally tom": [65535, 0], "eye all the time finally tom said": [65535, 0], "all the time finally tom said i": [65535, 0], "the time finally tom said i can": [65535, 0], "time finally tom said i can lick": [65535, 0], "finally tom said i can lick you": [65535, 0], "tom said i can lick you i'd": [65535, 0], "said i can lick you i'd like": [65535, 0], "i can lick you i'd like to": [65535, 0], "can lick you i'd like to see": [65535, 0], "lick you i'd like to see you": [65535, 0], "you i'd like to see you try": [65535, 0], "i'd like to see you try it": [65535, 0], "like to see you try it well": [65535, 0], "to see you try it well i": [65535, 0], "see you try it well i can": [65535, 0], "you try it well i can do": [65535, 0], "try it well i can do it": [65535, 0], "it well i can do it no": [65535, 0], "well i can do it no you": [65535, 0], "i can do it no you can't": [65535, 0], "can do it no you can't either": [65535, 0], "do it no you can't either yes": [65535, 0], "it no you can't either yes i": [65535, 0], "no you can't either yes i can": [65535, 0], "you can't either yes i can no": [65535, 0], "can't either yes i can no you": [65535, 0], "either yes i can no you can't": [65535, 0], "yes i can no you can't i": [65535, 0], "i can no you can't i can": [65535, 0], "can no you can't i can you": [65535, 0], "no you can't i can you can't": [65535, 0], "you can't i can you can't can": [65535, 0], "can't i can you can't can can't": [65535, 0], "i can you can't can can't an": [65535, 0], "can you can't can can't an uncomfortable": [65535, 0], "you can't can can't an uncomfortable pause": [65535, 0], "can't can can't an uncomfortable pause then": [65535, 0], "can can't an uncomfortable pause then tom": [65535, 0], "can't an uncomfortable pause then tom said": [65535, 0], "an uncomfortable pause then tom said what's": [65535, 0], "uncomfortable pause then tom said what's your": [65535, 0], "pause then tom said what's your name": [65535, 0], "then tom said what's your name 'tisn't": [65535, 0], "tom said what's your name 'tisn't any": [65535, 0], "said what's your name 'tisn't any of": [65535, 0], "what's your name 'tisn't any of your": [65535, 0], "your name 'tisn't any of your business": [65535, 0], "name 'tisn't any of your business maybe": [65535, 0], "'tisn't any of your business maybe well": [65535, 0], "any of your business maybe well i": [65535, 0], "of your business maybe well i 'low": [65535, 0], "your business maybe well i 'low i'll": [65535, 0], "business maybe well i 'low i'll make": [65535, 0], "maybe well i 'low i'll make it": [65535, 0], "well i 'low i'll make it my": [65535, 0], "i 'low i'll make it my business": [65535, 0], "'low i'll make it my business well": [65535, 0], "i'll make it my business well why": [65535, 0], "make it my business well why don't": [65535, 0], "it my business well why don't you": [65535, 0], "my business well why don't you if": [65535, 0], "business well why don't you if you": [65535, 0], "well why don't you if you say": [65535, 0], "why don't you if you say much": [65535, 0], "don't you if you say much i": [65535, 0], "you if you say much i will": [65535, 0], "if you say much i will much": [65535, 0], "you say much i will much much": [65535, 0], "say much i will much much much": [65535, 0], "much i will much much much there": [65535, 0], "i will much much much there now": [65535, 0], "will much much much there now oh": [65535, 0], "much much much there now oh you": [65535, 0], "much much there now oh you think": [65535, 0], "much there now oh you think you're": [65535, 0], "there now oh you think you're mighty": [65535, 0], "now oh you think you're mighty smart": [65535, 0], "oh you think you're mighty smart don't": [65535, 0], "you think you're mighty smart don't you": [65535, 0], "think you're mighty smart don't you i": [65535, 0], "you're mighty smart don't you i could": [65535, 0], "mighty smart don't you i could lick": [65535, 0], "smart don't you i could lick you": [65535, 0], "don't you i could lick you with": [65535, 0], "you i could lick you with one": [65535, 0], "i could lick you with one hand": [65535, 0], "could lick you with one hand tied": [65535, 0], "lick you with one hand tied behind": [65535, 0], "you with one hand tied behind me": [65535, 0], "with one hand tied behind me if": [65535, 0], "one hand tied behind me if i": [65535, 0], "hand tied behind me if i wanted": [65535, 0], "tied behind me if i wanted to": [65535, 0], "behind me if i wanted to well": [65535, 0], "me if i wanted to well why": [65535, 0], "wanted to well why don't you do": [65535, 0], "to well why don't you do it": [65535, 0], "well why don't you do it you": [65535, 0], "why don't you do it you say": [65535, 0], "don't you do it you say you": [65535, 0], "you do it you say you can": [65535, 0], "do it you say you can do": [65535, 0], "it you say you can do it": [65535, 0], "you say you can do it well": [65535, 0], "say you can do it well i": [65535, 0], "you can do it well i will": [65535, 0], "can do it well i will if": [65535, 0], "do it well i will if you": [65535, 0], "it well i will if you fool": [65535, 0], "well i will if you fool with": [65535, 0], "i will if you fool with me": [65535, 0], "will if you fool with me oh": [65535, 0], "if you fool with me oh yes": [65535, 0], "you fool with me oh yes i've": [65535, 0], "fool with me oh yes i've seen": [65535, 0], "with me oh yes i've seen whole": [65535, 0], "me oh yes i've seen whole families": [65535, 0], "oh yes i've seen whole families in": [65535, 0], "yes i've seen whole families in the": [65535, 0], "i've seen whole families in the same": [65535, 0], "seen whole families in the same fix": [65535, 0], "whole families in the same fix smarty": [65535, 0], "families in the same fix smarty you": [65535, 0], "in the same fix smarty you think": [65535, 0], "the same fix smarty you think you're": [65535, 0], "same fix smarty you think you're some": [65535, 0], "fix smarty you think you're some now": [65535, 0], "smarty you think you're some now don't": [65535, 0], "you think you're some now don't you": [65535, 0], "think you're some now don't you oh": [65535, 0], "you're some now don't you oh what": [65535, 0], "some now don't you oh what a": [65535, 0], "now don't you oh what a hat": [65535, 0], "don't you oh what a hat you": [65535, 0], "you oh what a hat you can": [65535, 0], "oh what a hat you can lump": [65535, 0], "what a hat you can lump that": [65535, 0], "a hat you can lump that hat": [65535, 0], "hat you can lump that hat if": [65535, 0], "you can lump that hat if you": [65535, 0], "can lump that hat if you don't": [65535, 0], "lump that hat if you don't like": [65535, 0], "that hat if you don't like it": [65535, 0], "hat if you don't like it i": [65535, 0], "if you don't like it i dare": [65535, 0], "you don't like it i dare you": [65535, 0], "don't like it i dare you to": [65535, 0], "like it i dare you to knock": [65535, 0], "it i dare you to knock it": [65535, 0], "i dare you to knock it off": [65535, 0], "dare you to knock it off and": [65535, 0], "you to knock it off and anybody": [65535, 0], "to knock it off and anybody that'll": [65535, 0], "knock it off and anybody that'll take": [65535, 0], "it off and anybody that'll take a": [65535, 0], "off and anybody that'll take a dare": [65535, 0], "and anybody that'll take a dare will": [65535, 0], "anybody that'll take a dare will suck": [65535, 0], "that'll take a dare will suck eggs": [65535, 0], "take a dare will suck eggs you're": [65535, 0], "a dare will suck eggs you're a": [65535, 0], "dare will suck eggs you're a liar": [65535, 0], "will suck eggs you're a liar you're": [65535, 0], "suck eggs you're a liar you're another": [65535, 0], "eggs you're a liar you're another you're": [65535, 0], "you're a liar you're another you're a": [65535, 0], "a liar you're another you're a fighting": [65535, 0], "liar you're another you're a fighting liar": [65535, 0], "you're another you're a fighting liar and": [65535, 0], "another you're a fighting liar and dasn't": [65535, 0], "you're a fighting liar and dasn't take": [65535, 0], "a fighting liar and dasn't take it": [65535, 0], "fighting liar and dasn't take it up": [65535, 0], "liar and dasn't take it up aw": [65535, 0], "and dasn't take it up aw take": [65535, 0], "dasn't take it up aw take a": [65535, 0], "take it up aw take a walk": [65535, 0], "it up aw take a walk say": [65535, 0], "up aw take a walk say if": [65535, 0], "aw take a walk say if you": [65535, 0], "take a walk say if you give": [65535, 0], "a walk say if you give me": [65535, 0], "walk say if you give me much": [65535, 0], "say if you give me much more": [65535, 0], "if you give me much more of": [65535, 0], "you give me much more of your": [65535, 0], "give me much more of your sass": [65535, 0], "me much more of your sass i'll": [65535, 0], "much more of your sass i'll take": [65535, 0], "more of your sass i'll take and": [65535, 0], "of your sass i'll take and bounce": [65535, 0], "your sass i'll take and bounce a": [65535, 0], "sass i'll take and bounce a rock": [65535, 0], "i'll take and bounce a rock off'n": [65535, 0], "take and bounce a rock off'n your": [65535, 0], "and bounce a rock off'n your head": [65535, 0], "bounce a rock off'n your head oh": [65535, 0], "a rock off'n your head oh of": [65535, 0], "rock off'n your head oh of course": [65535, 0], "off'n your head oh of course you": [65535, 0], "your head oh of course you will": [65535, 0], "head oh of course you will well": [65535, 0], "oh of course you will well i": [65535, 0], "of course you will well i will": [65535, 0], "course you will well i will well": [65535, 0], "you will well i will well why": [65535, 0], "will well i will well why don't": [65535, 0], "well i will well why don't you": [65535, 0], "i will well why don't you do": [65535, 0], "will well why don't you do it": [65535, 0], "well why don't you do it then": [65535, 0], "why don't you do it then what": [65535, 0], "don't you do it then what do": [65535, 0], "you do it then what do you": [65535, 0], "do it then what do you keep": [65535, 0], "it then what do you keep saying": [65535, 0], "then what do you keep saying you": [65535, 0], "what do you keep saying you will": [65535, 0], "do you keep saying you will for": [65535, 0], "you keep saying you will for why": [65535, 0], "keep saying you will for why don't": [65535, 0], "saying you will for why don't you": [65535, 0], "you will for why don't you do": [65535, 0], "will for why don't you do it": [65535, 0], "for why don't you do it it's": [65535, 0], "why don't you do it it's because": [65535, 0], "don't you do it it's because you're": [65535, 0], "you do it it's because you're afraid": [65535, 0], "do it it's because you're afraid i": [65535, 0], "it it's because you're afraid i ain't": [65535, 0], "it's because you're afraid i ain't afraid": [65535, 0], "because you're afraid i ain't afraid you": [65535, 0], "you're afraid i ain't afraid you are": [65535, 0], "afraid i ain't afraid you are i": [65535, 0], "i ain't afraid you are i ain't": [65535, 0], "ain't afraid you are i ain't you": [65535, 0], "afraid you are i ain't you are": [65535, 0], "you are i ain't you are another": [65535, 0], "are i ain't you are another pause": [65535, 0], "i ain't you are another pause and": [65535, 0], "ain't you are another pause and more": [65535, 0], "you are another pause and more eying": [65535, 0], "are another pause and more eying and": [65535, 0], "another pause and more eying and sidling": [65535, 0], "pause and more eying and sidling around": [65535, 0], "and more eying and sidling around each": [65535, 0], "more eying and sidling around each other": [65535, 0], "eying and sidling around each other presently": [65535, 0], "and sidling around each other presently they": [65535, 0], "sidling around each other presently they were": [65535, 0], "around each other presently they were shoulder": [65535, 0], "each other presently they were shoulder to": [65535, 0], "other presently they were shoulder to shoulder": [65535, 0], "presently they were shoulder to shoulder tom": [65535, 0], "they were shoulder to shoulder tom said": [65535, 0], "were shoulder to shoulder tom said get": [65535, 0], "shoulder to shoulder tom said get away": [65535, 0], "to shoulder tom said get away from": [65535, 0], "shoulder tom said get away from here": [65535, 0], "tom said get away from here go": [65535, 0], "said get away from here go away": [65535, 0], "get away from here go away yourself": [65535, 0], "away from here go away yourself i": [65535, 0], "from here go away yourself i won't": [65535, 0], "here go away yourself i won't i": [65535, 0], "go away yourself i won't i won't": [65535, 0], "away yourself i won't i won't either": [65535, 0], "yourself i won't i won't either so": [65535, 0], "i won't i won't either so they": [65535, 0], "won't i won't either so they stood": [65535, 0], "i won't either so they stood each": [65535, 0], "won't either so they stood each with": [65535, 0], "either so they stood each with a": [65535, 0], "so they stood each with a foot": [65535, 0], "they stood each with a foot placed": [65535, 0], "stood each with a foot placed at": [65535, 0], "each with a foot placed at an": [65535, 0], "with a foot placed at an angle": [65535, 0], "a foot placed at an angle as": [65535, 0], "foot placed at an angle as a": [65535, 0], "placed at an angle as a brace": [65535, 0], "at an angle as a brace and": [65535, 0], "an angle as a brace and both": [65535, 0], "angle as a brace and both shoving": [65535, 0], "as a brace and both shoving with": [65535, 0], "a brace and both shoving with might": [65535, 0], "brace and both shoving with might and": [65535, 0], "and both shoving with might and main": [65535, 0], "both shoving with might and main and": [65535, 0], "shoving with might and main and glowering": [65535, 0], "with might and main and glowering at": [65535, 0], "might and main and glowering at each": [65535, 0], "and main and glowering at each other": [65535, 0], "main and glowering at each other with": [65535, 0], "and glowering at each other with hate": [65535, 0], "glowering at each other with hate but": [65535, 0], "at each other with hate but neither": [65535, 0], "each other with hate but neither could": [65535, 0], "other with hate but neither could get": [65535, 0], "with hate but neither could get an": [65535, 0], "hate but neither could get an advantage": [65535, 0], "but neither could get an advantage after": [65535, 0], "neither could get an advantage after struggling": [65535, 0], "could get an advantage after struggling till": [65535, 0], "get an advantage after struggling till both": [65535, 0], "an advantage after struggling till both were": [65535, 0], "advantage after struggling till both were hot": [65535, 0], "after struggling till both were hot and": [65535, 0], "struggling till both were hot and flushed": [65535, 0], "till both were hot and flushed each": [65535, 0], "both were hot and flushed each relaxed": [65535, 0], "were hot and flushed each relaxed his": [65535, 0], "hot and flushed each relaxed his strain": [65535, 0], "and flushed each relaxed his strain with": [65535, 0], "flushed each relaxed his strain with watchful": [65535, 0], "each relaxed his strain with watchful caution": [65535, 0], "relaxed his strain with watchful caution and": [65535, 0], "his strain with watchful caution and tom": [65535, 0], "strain with watchful caution and tom said": [65535, 0], "with watchful caution and tom said you're": [65535, 0], "watchful caution and tom said you're a": [65535, 0], "caution and tom said you're a coward": [65535, 0], "and tom said you're a coward and": [65535, 0], "tom said you're a coward and a": [65535, 0], "said you're a coward and a pup": [65535, 0], "you're a coward and a pup i'll": [65535, 0], "a coward and a pup i'll tell": [65535, 0], "coward and a pup i'll tell my": [65535, 0], "and a pup i'll tell my big": [65535, 0], "a pup i'll tell my big brother": [65535, 0], "pup i'll tell my big brother on": [65535, 0], "i'll tell my big brother on you": [65535, 0], "tell my big brother on you and": [65535, 0], "my big brother on you and he": [65535, 0], "big brother on you and he can": [65535, 0], "brother on you and he can thrash": [65535, 0], "on you and he can thrash you": [65535, 0], "you and he can thrash you with": [65535, 0], "and he can thrash you with his": [65535, 0], "he can thrash you with his little": [65535, 0], "can thrash you with his little finger": [65535, 0], "thrash you with his little finger and": [65535, 0], "you with his little finger and i'll": [65535, 0], "with his little finger and i'll make": [65535, 0], "his little finger and i'll make him": [65535, 0], "little finger and i'll make him do": [65535, 0], "finger and i'll make him do it": [65535, 0], "and i'll make him do it too": [65535, 0], "i'll make him do it too what": [65535, 0], "make him do it too what do": [65535, 0], "him do it too what do i": [65535, 0], "do it too what do i care": [65535, 0], "it too what do i care for": [65535, 0], "too what do i care for your": [65535, 0], "what do i care for your big": [65535, 0], "do i care for your big brother": [65535, 0], "i care for your big brother i've": [65535, 0], "care for your big brother i've got": [65535, 0], "for your big brother i've got a": [65535, 0], "your big brother i've got a brother": [65535, 0], "big brother i've got a brother that's": [65535, 0], "brother i've got a brother that's bigger": [65535, 0], "i've got a brother that's bigger than": [65535, 0], "got a brother that's bigger than he": [65535, 0], "a brother that's bigger than he is": [65535, 0], "brother that's bigger than he is and": [65535, 0], "that's bigger than he is and what's": [65535, 0], "bigger than he is and what's more": [65535, 0], "than he is and what's more he": [65535, 0], "he is and what's more he can": [65535, 0], "is and what's more he can throw": [65535, 0], "and what's more he can throw him": [65535, 0], "what's more he can throw him over": [65535, 0], "more he can throw him over that": [65535, 0], "he can throw him over that fence": [65535, 0], "can throw him over that fence too": [65535, 0], "throw him over that fence too both": [65535, 0], "him over that fence too both brothers": [65535, 0], "over that fence too both brothers were": [65535, 0], "that fence too both brothers were imaginary": [65535, 0], "fence too both brothers were imaginary that's": [65535, 0], "too both brothers were imaginary that's a": [65535, 0], "both brothers were imaginary that's a lie": [65535, 0], "brothers were imaginary that's a lie your": [65535, 0], "were imaginary that's a lie your saying": [65535, 0], "imaginary that's a lie your saying so": [65535, 0], "that's a lie your saying so don't": [65535, 0], "a lie your saying so don't make": [65535, 0], "lie your saying so don't make it": [65535, 0], "your saying so don't make it so": [65535, 0], "saying so don't make it so tom": [65535, 0], "so don't make it so tom drew": [65535, 0], "don't make it so tom drew a": [65535, 0], "make it so tom drew a line": [65535, 0], "it so tom drew a line in": [65535, 0], "so tom drew a line in the": [65535, 0], "tom drew a line in the dust": [65535, 0], "drew a line in the dust with": [65535, 0], "a line in the dust with his": [65535, 0], "line in the dust with his big": [65535, 0], "in the dust with his big toe": [65535, 0], "the dust with his big toe and": [65535, 0], "dust with his big toe and said": [65535, 0], "with his big toe and said i": [65535, 0], "his big toe and said i dare": [65535, 0], "big toe and said i dare you": [65535, 0], "toe and said i dare you to": [65535, 0], "and said i dare you to step": [65535, 0], "said i dare you to step over": [65535, 0], "i dare you to step over that": [65535, 0], "dare you to step over that and": [65535, 0], "you to step over that and i'll": [65535, 0], "to step over that and i'll lick": [65535, 0], "step over that and i'll lick you": [65535, 0], "over that and i'll lick you till": [65535, 0], "that and i'll lick you till you": [65535, 0], "and i'll lick you till you can't": [65535, 0], "i'll lick you till you can't stand": [65535, 0], "lick you till you can't stand up": [65535, 0], "you till you can't stand up anybody": [65535, 0], "till you can't stand up anybody that'll": [65535, 0], "you can't stand up anybody that'll take": [65535, 0], "can't stand up anybody that'll take a": [65535, 0], "stand up anybody that'll take a dare": [65535, 0], "up anybody that'll take a dare will": [65535, 0], "anybody that'll take a dare will steal": [65535, 0], "that'll take a dare will steal sheep": [65535, 0], "take a dare will steal sheep the": [65535, 0], "a dare will steal sheep the new": [65535, 0], "dare will steal sheep the new boy": [65535, 0], "will steal sheep the new boy stepped": [65535, 0], "steal sheep the new boy stepped over": [65535, 0], "sheep the new boy stepped over promptly": [65535, 0], "the new boy stepped over promptly and": [65535, 0], "new boy stepped over promptly and said": [65535, 0], "boy stepped over promptly and said now": [65535, 0], "stepped over promptly and said now you": [65535, 0], "over promptly and said now you said": [65535, 0], "promptly and said now you said you'd": [65535, 0], "and said now you said you'd do": [65535, 0], "said now you said you'd do it": [65535, 0], "now you said you'd do it now": [65535, 0], "you said you'd do it now let's": [65535, 0], "said you'd do it now let's see": [65535, 0], "you'd do it now let's see you": [65535, 0], "do it now let's see you do": [65535, 0], "it now let's see you do it": [65535, 0], "now let's see you do it don't": [65535, 0], "let's see you do it don't you": [65535, 0], "see you do it don't you crowd": [65535, 0], "you do it don't you crowd me": [65535, 0], "do it don't you crowd me now": [65535, 0], "it don't you crowd me now you": [65535, 0], "don't you crowd me now you better": [65535, 0], "you crowd me now you better look": [65535, 0], "crowd me now you better look out": [65535, 0], "me now you better look out well": [65535, 0], "now you better look out well you": [65535, 0], "you better look out well you said": [65535, 0], "better look out well you said you'd": [65535, 0], "look out well you said you'd do": [65535, 0], "out well you said you'd do it": [65535, 0], "well you said you'd do it why": [65535, 0], "you said you'd do it why don't": [65535, 0], "said you'd do it why don't you": [65535, 0], "you'd do it why don't you do": [65535, 0], "do it why don't you do it": [65535, 0], "it why don't you do it by": [65535, 0], "why don't you do it by jingo": [65535, 0], "don't you do it by jingo for": [65535, 0], "you do it by jingo for two": [65535, 0], "do it by jingo for two cents": [65535, 0], "it by jingo for two cents i": [65535, 0], "by jingo for two cents i will": [65535, 0], "jingo for two cents i will do": [65535, 0], "for two cents i will do it": [65535, 0], "two cents i will do it the": [65535, 0], "cents i will do it the new": [65535, 0], "i will do it the new boy": [65535, 0], "will do it the new boy took": [65535, 0], "do it the new boy took two": [65535, 0], "it the new boy took two broad": [65535, 0], "the new boy took two broad coppers": [65535, 0], "new boy took two broad coppers out": [65535, 0], "boy took two broad coppers out of": [65535, 0], "took two broad coppers out of his": [65535, 0], "two broad coppers out of his pocket": [65535, 0], "broad coppers out of his pocket and": [65535, 0], "coppers out of his pocket and held": [65535, 0], "out of his pocket and held them": [65535, 0], "of his pocket and held them out": [65535, 0], "his pocket and held them out with": [65535, 0], "pocket and held them out with derision": [65535, 0], "and held them out with derision tom": [65535, 0], "held them out with derision tom struck": [65535, 0], "them out with derision tom struck them": [65535, 0], "out with derision tom struck them to": [65535, 0], "with derision tom struck them to the": [65535, 0], "derision tom struck them to the ground": [65535, 0], "tom struck them to the ground in": [65535, 0], "struck them to the ground in an": [65535, 0], "them to the ground in an instant": [65535, 0], "to the ground in an instant both": [65535, 0], "the ground in an instant both boys": [65535, 0], "ground in an instant both boys were": [65535, 0], "in an instant both boys were rolling": [65535, 0], "an instant both boys were rolling and": [65535, 0], "instant both boys were rolling and tumbling": [65535, 0], "both boys were rolling and tumbling in": [65535, 0], "boys were rolling and tumbling in the": [65535, 0], "were rolling and tumbling in the dirt": [65535, 0], "rolling and tumbling in the dirt gripped": [65535, 0], "and tumbling in the dirt gripped together": [65535, 0], "tumbling in the dirt gripped together like": [65535, 0], "in the dirt gripped together like cats": [65535, 0], "the dirt gripped together like cats and": [65535, 0], "dirt gripped together like cats and for": [65535, 0], "gripped together like cats and for the": [65535, 0], "together like cats and for the space": [65535, 0], "like cats and for the space of": [65535, 0], "cats and for the space of a": [65535, 0], "and for the space of a minute": [65535, 0], "for the space of a minute they": [65535, 0], "the space of a minute they tugged": [65535, 0], "space of a minute they tugged and": [65535, 0], "of a minute they tugged and tore": [65535, 0], "a minute they tugged and tore at": [65535, 0], "minute they tugged and tore at each": [65535, 0], "they tugged and tore at each other's": [65535, 0], "tugged and tore at each other's hair": [65535, 0], "and tore at each other's hair and": [65535, 0], "tore at each other's hair and clothes": [65535, 0], "at each other's hair and clothes punched": [65535, 0], "each other's hair and clothes punched and": [65535, 0], "other's hair and clothes punched and scratched": [65535, 0], "hair and clothes punched and scratched each": [65535, 0], "and clothes punched and scratched each other's": [65535, 0], "clothes punched and scratched each other's nose": [65535, 0], "punched and scratched each other's nose and": [65535, 0], "and scratched each other's nose and covered": [65535, 0], "scratched each other's nose and covered themselves": [65535, 0], "each other's nose and covered themselves with": [65535, 0], "other's nose and covered themselves with dust": [65535, 0], "nose and covered themselves with dust and": [65535, 0], "and covered themselves with dust and glory": [65535, 0], "covered themselves with dust and glory presently": [65535, 0], "themselves with dust and glory presently the": [65535, 0], "with dust and glory presently the confusion": [65535, 0], "dust and glory presently the confusion took": [65535, 0], "and glory presently the confusion took form": [65535, 0], "glory presently the confusion took form and": [65535, 0], "presently the confusion took form and through": [65535, 0], "the confusion took form and through the": [65535, 0], "confusion took form and through the fog": [65535, 0], "took form and through the fog of": [65535, 0], "form and through the fog of battle": [65535, 0], "and through the fog of battle tom": [65535, 0], "through the fog of battle tom appeared": [65535, 0], "the fog of battle tom appeared seated": [65535, 0], "fog of battle tom appeared seated astride": [65535, 0], "of battle tom appeared seated astride the": [65535, 0], "battle tom appeared seated astride the new": [65535, 0], "tom appeared seated astride the new boy": [65535, 0], "appeared seated astride the new boy and": [65535, 0], "seated astride the new boy and pounding": [65535, 0], "astride the new boy and pounding him": [65535, 0], "the new boy and pounding him with": [65535, 0], "new boy and pounding him with his": [65535, 0], "boy and pounding him with his fists": [65535, 0], "and pounding him with his fists holler": [65535, 0], "pounding him with his fists holler 'nuff": [65535, 0], "him with his fists holler 'nuff said": [65535, 0], "with his fists holler 'nuff said he": [65535, 0], "his fists holler 'nuff said he the": [65535, 0], "fists holler 'nuff said he the boy": [65535, 0], "holler 'nuff said he the boy only": [65535, 0], "'nuff said he the boy only struggled": [65535, 0], "said he the boy only struggled to": [65535, 0], "he the boy only struggled to free": [65535, 0], "the boy only struggled to free himself": [65535, 0], "boy only struggled to free himself he": [65535, 0], "only struggled to free himself he was": [65535, 0], "struggled to free himself he was crying": [65535, 0], "to free himself he was crying mainly": [65535, 0], "free himself he was crying mainly from": [65535, 0], "himself he was crying mainly from rage": [65535, 0], "he was crying mainly from rage holler": [65535, 0], "was crying mainly from rage holler 'nuff": [65535, 0], "crying mainly from rage holler 'nuff and": [65535, 0], "mainly from rage holler 'nuff and the": [65535, 0], "from rage holler 'nuff and the pounding": [65535, 0], "rage holler 'nuff and the pounding went": [65535, 0], "holler 'nuff and the pounding went on": [65535, 0], "'nuff and the pounding went on at": [65535, 0], "and the pounding went on at last": [65535, 0], "the pounding went on at last the": [65535, 0], "pounding went on at last the stranger": [65535, 0], "went on at last the stranger got": [65535, 0], "on at last the stranger got out": [65535, 0], "at last the stranger got out a": [65535, 0], "last the stranger got out a smothered": [65535, 0], "the stranger got out a smothered 'nuff": [65535, 0], "stranger got out a smothered 'nuff and": [65535, 0], "got out a smothered 'nuff and tom": [65535, 0], "out a smothered 'nuff and tom let": [65535, 0], "a smothered 'nuff and tom let him": [65535, 0], "smothered 'nuff and tom let him up": [65535, 0], "'nuff and tom let him up and": [65535, 0], "and tom let him up and said": [65535, 0], "tom let him up and said now": [65535, 0], "let him up and said now that'll": [65535, 0], "him up and said now that'll learn": [65535, 0], "up and said now that'll learn you": [65535, 0], "and said now that'll learn you better": [65535, 0], "said now that'll learn you better look": [65535, 0], "now that'll learn you better look out": [65535, 0], "that'll learn you better look out who": [65535, 0], "learn you better look out who you're": [65535, 0], "you better look out who you're fooling": [65535, 0], "better look out who you're fooling with": [65535, 0], "look out who you're fooling with next": [65535, 0], "out who you're fooling with next time": [65535, 0], "who you're fooling with next time the": [65535, 0], "you're fooling with next time the new": [65535, 0], "fooling with next time the new boy": [65535, 0], "with next time the new boy went": [65535, 0], "next time the new boy went off": [65535, 0], "time the new boy went off brushing": [65535, 0], "the new boy went off brushing the": [65535, 0], "new boy went off brushing the dust": [65535, 0], "boy went off brushing the dust from": [65535, 0], "went off brushing the dust from his": [65535, 0], "off brushing the dust from his clothes": [65535, 0], "brushing the dust from his clothes sobbing": [65535, 0], "the dust from his clothes sobbing snuffling": [65535, 0], "dust from his clothes sobbing snuffling and": [65535, 0], "from his clothes sobbing snuffling and occasionally": [65535, 0], "his clothes sobbing snuffling and occasionally looking": [65535, 0], "clothes sobbing snuffling and occasionally looking back": [65535, 0], "sobbing snuffling and occasionally looking back and": [65535, 0], "snuffling and occasionally looking back and shaking": [65535, 0], "and occasionally looking back and shaking his": [65535, 0], "occasionally looking back and shaking his head": [65535, 0], "looking back and shaking his head and": [65535, 0], "back and shaking his head and threatening": [65535, 0], "and shaking his head and threatening what": [65535, 0], "shaking his head and threatening what he": [65535, 0], "his head and threatening what he would": [65535, 0], "head and threatening what he would do": [65535, 0], "and threatening what he would do to": [65535, 0], "threatening what he would do to tom": [65535, 0], "what he would do to tom the": [65535, 0], "he would do to tom the next": [65535, 0], "would do to tom the next time": [65535, 0], "do to tom the next time he": [65535, 0], "to tom the next time he caught": [65535, 0], "tom the next time he caught him": [65535, 0], "the next time he caught him out": [65535, 0], "next time he caught him out to": [65535, 0], "time he caught him out to which": [65535, 0], "he caught him out to which tom": [65535, 0], "caught him out to which tom responded": [65535, 0], "him out to which tom responded with": [65535, 0], "out to which tom responded with jeers": [65535, 0], "to which tom responded with jeers and": [65535, 0], "which tom responded with jeers and started": [65535, 0], "tom responded with jeers and started off": [65535, 0], "responded with jeers and started off in": [65535, 0], "with jeers and started off in high": [65535, 0], "jeers and started off in high feather": [65535, 0], "and started off in high feather and": [65535, 0], "started off in high feather and as": [65535, 0], "off in high feather and as soon": [65535, 0], "in high feather and as soon as": [65535, 0], "high feather and as soon as his": [65535, 0], "feather and as soon as his back": [65535, 0], "and as soon as his back was": [65535, 0], "as soon as his back was turned": [65535, 0], "soon as his back was turned the": [65535, 0], "as his back was turned the new": [65535, 0], "his back was turned the new boy": [65535, 0], "back was turned the new boy snatched": [65535, 0], "was turned the new boy snatched up": [65535, 0], "turned the new boy snatched up a": [65535, 0], "the new boy snatched up a stone": [65535, 0], "new boy snatched up a stone threw": [65535, 0], "boy snatched up a stone threw it": [65535, 0], "snatched up a stone threw it and": [65535, 0], "up a stone threw it and hit": [65535, 0], "a stone threw it and hit him": [65535, 0], "stone threw it and hit him between": [65535, 0], "threw it and hit him between the": [65535, 0], "it and hit him between the shoulders": [65535, 0], "and hit him between the shoulders and": [65535, 0], "hit him between the shoulders and then": [65535, 0], "him between the shoulders and then turned": [65535, 0], "between the shoulders and then turned tail": [65535, 0], "the shoulders and then turned tail and": [65535, 0], "shoulders and then turned tail and ran": [65535, 0], "and then turned tail and ran like": [65535, 0], "then turned tail and ran like an": [65535, 0], "turned tail and ran like an antelope": [65535, 0], "tail and ran like an antelope tom": [65535, 0], "and ran like an antelope tom chased": [65535, 0], "ran like an antelope tom chased the": [65535, 0], "like an antelope tom chased the traitor": [65535, 0], "an antelope tom chased the traitor home": [65535, 0], "antelope tom chased the traitor home and": [65535, 0], "tom chased the traitor home and thus": [65535, 0], "chased the traitor home and thus found": [65535, 0], "the traitor home and thus found out": [65535, 0], "traitor home and thus found out where": [65535, 0], "home and thus found out where he": [65535, 0], "and thus found out where he lived": [65535, 0], "thus found out where he lived he": [65535, 0], "found out where he lived he then": [65535, 0], "out where he lived he then held": [65535, 0], "where he lived he then held a": [65535, 0], "he lived he then held a position": [65535, 0], "lived he then held a position at": [65535, 0], "he then held a position at the": [65535, 0], "then held a position at the gate": [65535, 0], "held a position at the gate for": [65535, 0], "a position at the gate for some": [65535, 0], "position at the gate for some time": [65535, 0], "at the gate for some time daring": [65535, 0], "the gate for some time daring the": [65535, 0], "gate for some time daring the enemy": [65535, 0], "for some time daring the enemy to": [65535, 0], "some time daring the enemy to come": [65535, 0], "time daring the enemy to come outside": [65535, 0], "daring the enemy to come outside but": [65535, 0], "the enemy to come outside but the": [65535, 0], "enemy to come outside but the enemy": [65535, 0], "to come outside but the enemy only": [65535, 0], "come outside but the enemy only made": [65535, 0], "outside but the enemy only made faces": [65535, 0], "but the enemy only made faces at": [65535, 0], "the enemy only made faces at him": [65535, 0], "enemy only made faces at him through": [65535, 0], "only made faces at him through the": [65535, 0], "made faces at him through the window": [65535, 0], "faces at him through the window and": [65535, 0], "at him through the window and declined": [65535, 0], "him through the window and declined at": [65535, 0], "through the window and declined at last": [65535, 0], "the window and declined at last the": [65535, 0], "window and declined at last the enemy's": [65535, 0], "and declined at last the enemy's mother": [65535, 0], "declined at last the enemy's mother appeared": [65535, 0], "at last the enemy's mother appeared and": [65535, 0], "last the enemy's mother appeared and called": [65535, 0], "the enemy's mother appeared and called tom": [65535, 0], "enemy's mother appeared and called tom a": [65535, 0], "mother appeared and called tom a bad": [65535, 0], "appeared and called tom a bad vicious": [65535, 0], "and called tom a bad vicious vulgar": [65535, 0], "called tom a bad vicious vulgar child": [65535, 0], "tom a bad vicious vulgar child and": [65535, 0], "a bad vicious vulgar child and ordered": [65535, 0], "bad vicious vulgar child and ordered him": [65535, 0], "vicious vulgar child and ordered him away": [65535, 0], "vulgar child and ordered him away so": [65535, 0], "child and ordered him away so he": [65535, 0], "and ordered him away so he went": [65535, 0], "ordered him away so he went away": [65535, 0], "him away so he went away but": [65535, 0], "away so he went away but he": [65535, 0], "so he went away but he said": [65535, 0], "he went away but he said he": [65535, 0], "went away but he said he 'lowed": [65535, 0], "away but he said he 'lowed to": [65535, 0], "but he said he 'lowed to lay": [65535, 0], "he said he 'lowed to lay for": [65535, 0], "said he 'lowed to lay for that": [65535, 0], "he 'lowed to lay for that boy": [65535, 0], "'lowed to lay for that boy he": [65535, 0], "to lay for that boy he got": [65535, 0], "lay for that boy he got home": [65535, 0], "for that boy he got home pretty": [65535, 0], "that boy he got home pretty late": [65535, 0], "boy he got home pretty late that": [65535, 0], "he got home pretty late that night": [65535, 0], "got home pretty late that night and": [65535, 0], "home pretty late that night and when": [65535, 0], "pretty late that night and when he": [65535, 0], "late that night and when he climbed": [65535, 0], "that night and when he climbed cautiously": [65535, 0], "night and when he climbed cautiously in": [65535, 0], "and when he climbed cautiously in at": [65535, 0], "when he climbed cautiously in at the": [65535, 0], "he climbed cautiously in at the window": [65535, 0], "climbed cautiously in at the window he": [65535, 0], "cautiously in at the window he uncovered": [65535, 0], "in at the window he uncovered an": [65535, 0], "at the window he uncovered an ambuscade": [65535, 0], "the window he uncovered an ambuscade in": [65535, 0], "window he uncovered an ambuscade in the": [65535, 0], "he uncovered an ambuscade in the person": [65535, 0], "uncovered an ambuscade in the person of": [65535, 0], "an ambuscade in the person of his": [65535, 0], "ambuscade in the person of his aunt": [65535, 0], "in the person of his aunt and": [65535, 0], "the person of his aunt and when": [65535, 0], "person of his aunt and when she": [65535, 0], "of his aunt and when she saw": [65535, 0], "his aunt and when she saw the": [65535, 0], "aunt and when she saw the state": [65535, 0], "and when she saw the state his": [65535, 0], "when she saw the state his clothes": [65535, 0], "she saw the state his clothes were": [65535, 0], "saw the state his clothes were in": [65535, 0], "the state his clothes were in her": [65535, 0], "state his clothes were in her resolution": [65535, 0], "his clothes were in her resolution to": [65535, 0], "clothes were in her resolution to turn": [65535, 0], "were in her resolution to turn his": [65535, 0], "in her resolution to turn his saturday": [65535, 0], "her resolution to turn his saturday holiday": [65535, 0], "resolution to turn his saturday holiday into": [65535, 0], "to turn his saturday holiday into captivity": [65535, 0], "turn his saturday holiday into captivity at": [65535, 0], "his saturday holiday into captivity at hard": [65535, 0], "saturday holiday into captivity at hard labor": [65535, 0], "holiday into captivity at hard labor became": [65535, 0], "into captivity at hard labor became adamantine": [65535, 0], "captivity at hard labor became adamantine in": [65535, 0], "at hard labor became adamantine in its": [65535, 0], "hard labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's gone": [65535, 0], "no answer tom no answer what's gone with": [65535, 0], "answer tom no answer what's gone with that": [65535, 0], "tom no answer what's gone with that boy": [65535, 0], "no answer what's gone with that boy i": [65535, 0], "answer what's gone with that boy i wonder": [65535, 0], "what's gone with that boy i wonder you": [65535, 0], "gone with that boy i wonder you tom": [65535, 0], "with that boy i wonder you tom no": [65535, 0], "that boy i wonder you tom no answer": [65535, 0], "boy i wonder you tom no answer the": [65535, 0], "i wonder you tom no answer the old": [65535, 0], "wonder you tom no answer the old lady": [65535, 0], "you tom no answer the old lady pulled": [65535, 0], "tom no answer the old lady pulled her": [65535, 0], "no answer the old lady pulled her spectacles": [65535, 0], "answer the old lady pulled her spectacles down": [65535, 0], "the old lady pulled her spectacles down and": [65535, 0], "old lady pulled her spectacles down and looked": [65535, 0], "lady pulled her spectacles down and looked over": [65535, 0], "pulled her spectacles down and looked over them": [65535, 0], "her spectacles down and looked over them about": [65535, 0], "spectacles down and looked over them about the": [65535, 0], "down and looked over them about the room": [65535, 0], "and looked over them about the room then": [65535, 0], "looked over them about the room then she": [65535, 0], "over them about the room then she put": [65535, 0], "them about the room then she put them": [65535, 0], "about the room then she put them up": [65535, 0], "the room then she put them up and": [65535, 0], "room then she put them up and looked": [65535, 0], "then she put them up and looked out": [65535, 0], "she put them up and looked out under": [65535, 0], "put them up and looked out under them": [65535, 0], "them up and looked out under them she": [65535, 0], "up and looked out under them she seldom": [65535, 0], "and looked out under them she seldom or": [65535, 0], "looked out under them she seldom or never": [65535, 0], "out under them she seldom or never looked": [65535, 0], "under them she seldom or never looked through": [65535, 0], "them she seldom or never looked through them": [65535, 0], "she seldom or never looked through them for": [65535, 0], "seldom or never looked through them for so": [65535, 0], "or never looked through them for so small": [65535, 0], "never looked through them for so small a": [65535, 0], "looked through them for so small a thing": [65535, 0], "through them for so small a thing as": [65535, 0], "them for so small a thing as a": [65535, 0], "for so small a thing as a boy": [65535, 0], "so small a thing as a boy they": [65535, 0], "small a thing as a boy they were": [65535, 0], "a thing as a boy they were her": [65535, 0], "thing as a boy they were her state": [65535, 0], "as a boy they were her state pair": [65535, 0], "a boy they were her state pair the": [65535, 0], "boy they were her state pair the pride": [65535, 0], "they were her state pair the pride of": [65535, 0], "were her state pair the pride of her": [65535, 0], "her state pair the pride of her heart": [65535, 0], "state pair the pride of her heart and": [65535, 0], "pair the pride of her heart and were": [65535, 0], "the pride of her heart and were built": [65535, 0], "pride of her heart and were built for": [65535, 0], "of her heart and were built for style": [65535, 0], "her heart and were built for style not": [65535, 0], "heart and were built for style not service": [65535, 0], "and were built for style not service she": [65535, 0], "were built for style not service she could": [65535, 0], "built for style not service she could have": [65535, 0], "for style not service she could have seen": [65535, 0], "style not service she could have seen through": [65535, 0], "not service she could have seen through a": [65535, 0], "service she could have seen through a pair": [65535, 0], "she could have seen through a pair of": [65535, 0], "could have seen through a pair of stove": [65535, 0], "have seen through a pair of stove lids": [65535, 0], "seen through a pair of stove lids just": [65535, 0], "through a pair of stove lids just as": [65535, 0], "a pair of stove lids just as well": [65535, 0], "pair of stove lids just as well she": [65535, 0], "of stove lids just as well she looked": [65535, 0], "stove lids just as well she looked perplexed": [65535, 0], "lids just as well she looked perplexed for": [65535, 0], "just as well she looked perplexed for a": [65535, 0], "as well she looked perplexed for a moment": [65535, 0], "well she looked perplexed for a moment and": [65535, 0], "she looked perplexed for a moment and then": [65535, 0], "looked perplexed for a moment and then said": [65535, 0], "perplexed for a moment and then said not": [65535, 0], "for a moment and then said not fiercely": [65535, 0], "a moment and then said not fiercely but": [65535, 0], "moment and then said not fiercely but still": [65535, 0], "and then said not fiercely but still loud": [65535, 0], "then said not fiercely but still loud enough": [65535, 0], "said not fiercely but still loud enough for": [65535, 0], "not fiercely but still loud enough for the": [65535, 0], "fiercely but still loud enough for the furniture": [65535, 0], "but still loud enough for the furniture to": [65535, 0], "still loud enough for the furniture to hear": [65535, 0], "loud enough for the furniture to hear well": [65535, 0], "enough for the furniture to hear well i": [65535, 0], "for the furniture to hear well i lay": [65535, 0], "the furniture to hear well i lay if": [65535, 0], "furniture to hear well i lay if i": [65535, 0], "to hear well i lay if i get": [65535, 0], "hear well i lay if i get hold": [65535, 0], "well i lay if i get hold of": [65535, 0], "i lay if i get hold of you": [65535, 0], "lay if i get hold of you i'll": [65535, 0], "if i get hold of you i'll she": [65535, 0], "i get hold of you i'll she did": [65535, 0], "get hold of you i'll she did not": [65535, 0], "hold of you i'll she did not finish": [65535, 0], "of you i'll she did not finish for": [65535, 0], "you i'll she did not finish for by": [65535, 0], "i'll she did not finish for by this": [65535, 0], "she did not finish for by this time": [65535, 0], "did not finish for by this time she": [65535, 0], "not finish for by this time she was": [65535, 0], "finish for by this time she was bending": [65535, 0], "for by this time she was bending down": [65535, 0], "by this time she was bending down and": [65535, 0], "this time she was bending down and punching": [65535, 0], "time she was bending down and punching under": [65535, 0], "she was bending down and punching under the": [65535, 0], "was bending down and punching under the bed": [65535, 0], "bending down and punching under the bed with": [65535, 0], "down and punching under the bed with the": [65535, 0], "and punching under the bed with the broom": [65535, 0], "punching under the bed with the broom and": [65535, 0], "under the bed with the broom and so": [65535, 0], "the bed with the broom and so she": [65535, 0], "bed with the broom and so she needed": [65535, 0], "with the broom and so she needed breath": [65535, 0], "the broom and so she needed breath to": [65535, 0], "broom and so she needed breath to punctuate": [65535, 0], "and so she needed breath to punctuate the": [65535, 0], "so she needed breath to punctuate the punches": [65535, 0], "she needed breath to punctuate the punches with": [65535, 0], "needed breath to punctuate the punches with she": [65535, 0], "breath to punctuate the punches with she resurrected": [65535, 0], "to punctuate the punches with she resurrected nothing": [65535, 0], "punctuate the punches with she resurrected nothing but": [65535, 0], "the punches with she resurrected nothing but the": [65535, 0], "punches with she resurrected nothing but the cat": [65535, 0], "with she resurrected nothing but the cat i": [65535, 0], "she resurrected nothing but the cat i never": [65535, 0], "resurrected nothing but the cat i never did": [65535, 0], "nothing but the cat i never did see": [65535, 0], "but the cat i never did see the": [65535, 0], "the cat i never did see the beat": [65535, 0], "cat i never did see the beat of": [65535, 0], "i never did see the beat of that": [65535, 0], "never did see the beat of that boy": [65535, 0], "did see the beat of that boy she": [65535, 0], "see the beat of that boy she went": [65535, 0], "the beat of that boy she went to": [65535, 0], "beat of that boy she went to the": [65535, 0], "of that boy she went to the open": [65535, 0], "that boy she went to the open door": [65535, 0], "boy she went to the open door and": [65535, 0], "she went to the open door and stood": [65535, 0], "went to the open door and stood in": [65535, 0], "to the open door and stood in it": [65535, 0], "the open door and stood in it and": [65535, 0], "open door and stood in it and looked": [65535, 0], "door and stood in it and looked out": [65535, 0], "and stood in it and looked out among": [65535, 0], "stood in it and looked out among the": [65535, 0], "in it and looked out among the tomato": [65535, 0], "it and looked out among the tomato vines": [65535, 0], "and looked out among the tomato vines and": [65535, 0], "looked out among the tomato vines and jimpson": [65535, 0], "out among the tomato vines and jimpson weeds": [65535, 0], "among the tomato vines and jimpson weeds that": [65535, 0], "the tomato vines and jimpson weeds that constituted": [65535, 0], "tomato vines and jimpson weeds that constituted the": [65535, 0], "vines and jimpson weeds that constituted the garden": [65535, 0], "and jimpson weeds that constituted the garden no": [65535, 0], "jimpson weeds that constituted the garden no tom": [65535, 0], "weeds that constituted the garden no tom so": [65535, 0], "that constituted the garden no tom so she": [65535, 0], "constituted the garden no tom so she lifted": [65535, 0], "the garden no tom so she lifted up": [65535, 0], "garden no tom so she lifted up her": [65535, 0], "no tom so she lifted up her voice": [65535, 0], "tom so she lifted up her voice at": [65535, 0], "so she lifted up her voice at an": [65535, 0], "she lifted up her voice at an angle": [65535, 0], "lifted up her voice at an angle calculated": [65535, 0], "up her voice at an angle calculated for": [65535, 0], "her voice at an angle calculated for distance": [65535, 0], "voice at an angle calculated for distance and": [65535, 0], "at an angle calculated for distance and shouted": [65535, 0], "an angle calculated for distance and shouted y": [65535, 0], "angle calculated for distance and shouted y o": [65535, 0], "calculated for distance and shouted y o u": [65535, 0], "for distance and shouted y o u u": [65535, 0], "distance and shouted y o u u tom": [65535, 0], "and shouted y o u u tom there": [65535, 0], "shouted y o u u tom there was": [65535, 0], "y o u u tom there was a": [65535, 0], "o u u tom there was a slight": [65535, 0], "u u tom there was a slight noise": [65535, 0], "u tom there was a slight noise behind": [65535, 0], "tom there was a slight noise behind her": [65535, 0], "there was a slight noise behind her and": [65535, 0], "was a slight noise behind her and she": [65535, 0], "a slight noise behind her and she turned": [65535, 0], "slight noise behind her and she turned just": [65535, 0], "noise behind her and she turned just in": [65535, 0], "behind her and she turned just in time": [65535, 0], "her and she turned just in time to": [65535, 0], "and she turned just in time to seize": [65535, 0], "she turned just in time to seize a": [65535, 0], "turned just in time to seize a small": [65535, 0], "just in time to seize a small boy": [65535, 0], "in time to seize a small boy by": [65535, 0], "time to seize a small boy by the": [65535, 0], "to seize a small boy by the slack": [65535, 0], "seize a small boy by the slack of": [65535, 0], "a small boy by the slack of his": [65535, 0], "small boy by the slack of his roundabout": [65535, 0], "boy by the slack of his roundabout and": [65535, 0], "by the slack of his roundabout and arrest": [65535, 0], "the slack of his roundabout and arrest his": [65535, 0], "slack of his roundabout and arrest his flight": [65535, 0], "of his roundabout and arrest his flight there": [65535, 0], "his roundabout and arrest his flight there i": [65535, 0], "roundabout and arrest his flight there i might": [65535, 0], "and arrest his flight there i might 'a'": [65535, 0], "arrest his flight there i might 'a' thought": [65535, 0], "his flight there i might 'a' thought of": [65535, 0], "flight there i might 'a' thought of that": [65535, 0], "there i might 'a' thought of that closet": [65535, 0], "i might 'a' thought of that closet what": [65535, 0], "might 'a' thought of that closet what you": [65535, 0], "'a' thought of that closet what you been": [65535, 0], "thought of that closet what you been doing": [65535, 0], "of that closet what you been doing in": [65535, 0], "that closet what you been doing in there": [65535, 0], "closet what you been doing in there nothing": [65535, 0], "what you been doing in there nothing nothing": [65535, 0], "you been doing in there nothing nothing look": [65535, 0], "been doing in there nothing nothing look at": [65535, 0], "doing in there nothing nothing look at your": [65535, 0], "in there nothing nothing look at your hands": [65535, 0], "there nothing nothing look at your hands and": [65535, 0], "nothing nothing look at your hands and look": [65535, 0], "nothing look at your hands and look at": [65535, 0], "look at your hands and look at your": [65535, 0], "at your hands and look at your mouth": [65535, 0], "your hands and look at your mouth what": [65535, 0], "hands and look at your mouth what is": [65535, 0], "and look at your mouth what is that": [65535, 0], "look at your mouth what is that i": [65535, 0], "at your mouth what is that i don't": [65535, 0], "your mouth what is that i don't know": [65535, 0], "mouth what is that i don't know aunt": [65535, 0], "what is that i don't know aunt well": [65535, 0], "is that i don't know aunt well i": [65535, 0], "that i don't know aunt well i know": [65535, 0], "i don't know aunt well i know it's": [65535, 0], "don't know aunt well i know it's jam": [65535, 0], "know aunt well i know it's jam that's": [65535, 0], "aunt well i know it's jam that's what": [65535, 0], "well i know it's jam that's what it": [65535, 0], "i know it's jam that's what it is": [65535, 0], "know it's jam that's what it is forty": [65535, 0], "it's jam that's what it is forty times": [65535, 0], "jam that's what it is forty times i've": [65535, 0], "that's what it is forty times i've said": [65535, 0], "what it is forty times i've said if": [65535, 0], "it is forty times i've said if you": [65535, 0], "is forty times i've said if you didn't": [65535, 0], "forty times i've said if you didn't let": [65535, 0], "times i've said if you didn't let that": [65535, 0], "i've said if you didn't let that jam": [65535, 0], "said if you didn't let that jam alone": [65535, 0], "if you didn't let that jam alone i'd": [65535, 0], "you didn't let that jam alone i'd skin": [65535, 0], "didn't let that jam alone i'd skin you": [65535, 0], "let that jam alone i'd skin you hand": [65535, 0], "that jam alone i'd skin you hand me": [65535, 0], "jam alone i'd skin you hand me that": [65535, 0], "alone i'd skin you hand me that switch": [65535, 0], "i'd skin you hand me that switch the": [65535, 0], "skin you hand me that switch the switch": [65535, 0], "you hand me that switch the switch hovered": [65535, 0], "hand me that switch the switch hovered in": [65535, 0], "me that switch the switch hovered in the": [65535, 0], "that switch the switch hovered in the air": [65535, 0], "switch the switch hovered in the air the": [65535, 0], "the switch hovered in the air the peril": [65535, 0], "switch hovered in the air the peril was": [65535, 0], "hovered in the air the peril was desperate": [65535, 0], "in the air the peril was desperate my": [65535, 0], "the air the peril was desperate my look": [65535, 0], "air the peril was desperate my look behind": [65535, 0], "the peril was desperate my look behind you": [65535, 0], "peril was desperate my look behind you aunt": [65535, 0], "was desperate my look behind you aunt the": [65535, 0], "desperate my look behind you aunt the old": [65535, 0], "my look behind you aunt the old lady": [65535, 0], "look behind you aunt the old lady whirled": [65535, 0], "behind you aunt the old lady whirled round": [65535, 0], "you aunt the old lady whirled round and": [65535, 0], "aunt the old lady whirled round and snatched": [65535, 0], "the old lady whirled round and snatched her": [65535, 0], "old lady whirled round and snatched her skirts": [65535, 0], "lady whirled round and snatched her skirts out": [65535, 0], "whirled round and snatched her skirts out of": [65535, 0], "round and snatched her skirts out of danger": [65535, 0], "and snatched her skirts out of danger the": [65535, 0], "snatched her skirts out of danger the lad": [65535, 0], "her skirts out of danger the lad fled": [65535, 0], "skirts out of danger the lad fled on": [65535, 0], "out of danger the lad fled on the": [65535, 0], "of danger the lad fled on the instant": [65535, 0], "danger the lad fled on the instant scrambled": [65535, 0], "the lad fled on the instant scrambled up": [65535, 0], "lad fled on the instant scrambled up the": [65535, 0], "fled on the instant scrambled up the high": [65535, 0], "on the instant scrambled up the high board": [65535, 0], "the instant scrambled up the high board fence": [65535, 0], "instant scrambled up the high board fence and": [65535, 0], "scrambled up the high board fence and disappeared": [65535, 0], "up the high board fence and disappeared over": [65535, 0], "the high board fence and disappeared over it": [65535, 0], "high board fence and disappeared over it his": [65535, 0], "board fence and disappeared over it his aunt": [65535, 0], "fence and disappeared over it his aunt polly": [65535, 0], "and disappeared over it his aunt polly stood": [65535, 0], "disappeared over it his aunt polly stood surprised": [65535, 0], "over it his aunt polly stood surprised a": [65535, 0], "it his aunt polly stood surprised a moment": [65535, 0], "his aunt polly stood surprised a moment and": [65535, 0], "aunt polly stood surprised a moment and then": [65535, 0], "polly stood surprised a moment and then broke": [65535, 0], "stood surprised a moment and then broke into": [65535, 0], "surprised a moment and then broke into a": [65535, 0], "a moment and then broke into a gentle": [65535, 0], "moment and then broke into a gentle laugh": [65535, 0], "and then broke into a gentle laugh hang": [65535, 0], "then broke into a gentle laugh hang the": [65535, 0], "broke into a gentle laugh hang the boy": [65535, 0], "into a gentle laugh hang the boy can't": [65535, 0], "a gentle laugh hang the boy can't i": [65535, 0], "gentle laugh hang the boy can't i never": [65535, 0], "laugh hang the boy can't i never learn": [65535, 0], "hang the boy can't i never learn anything": [65535, 0], "the boy can't i never learn anything ain't": [65535, 0], "boy can't i never learn anything ain't he": [65535, 0], "can't i never learn anything ain't he played": [65535, 0], "i never learn anything ain't he played me": [65535, 0], "never learn anything ain't he played me tricks": [65535, 0], "learn anything ain't he played me tricks enough": [65535, 0], "anything ain't he played me tricks enough like": [65535, 0], "ain't he played me tricks enough like that": [65535, 0], "he played me tricks enough like that for": [65535, 0], "played me tricks enough like that for me": [65535, 0], "me tricks enough like that for me to": [65535, 0], "tricks enough like that for me to be": [65535, 0], "enough like that for me to be looking": [65535, 0], "like that for me to be looking out": [65535, 0], "that for me to be looking out for": [65535, 0], "for me to be looking out for him": [65535, 0], "me to be looking out for him by": [65535, 0], "to be looking out for him by this": [65535, 0], "be looking out for him by this time": [65535, 0], "looking out for him by this time but": [65535, 0], "out for him by this time but old": [65535, 0], "for him by this time but old fools": [65535, 0], "him by this time but old fools is": [65535, 0], "by this time but old fools is the": [65535, 0], "this time but old fools is the biggest": [65535, 0], "time but old fools is the biggest fools": [65535, 0], "but old fools is the biggest fools there": [65535, 0], "old fools is the biggest fools there is": [65535, 0], "fools is the biggest fools there is can't": [65535, 0], "is the biggest fools there is can't learn": [65535, 0], "the biggest fools there is can't learn an": [65535, 0], "biggest fools there is can't learn an old": [65535, 0], "fools there is can't learn an old dog": [65535, 0], "there is can't learn an old dog new": [65535, 0], "is can't learn an old dog new tricks": [65535, 0], "can't learn an old dog new tricks as": [65535, 0], "learn an old dog new tricks as the": [65535, 0], "an old dog new tricks as the saying": [65535, 0], "old dog new tricks as the saying is": [65535, 0], "dog new tricks as the saying is but": [65535, 0], "new tricks as the saying is but my": [65535, 0], "tricks as the saying is but my goodness": [65535, 0], "as the saying is but my goodness he": [65535, 0], "the saying is but my goodness he never": [65535, 0], "saying is but my goodness he never plays": [65535, 0], "is but my goodness he never plays them": [65535, 0], "but my goodness he never plays them alike": [65535, 0], "my goodness he never plays them alike two": [65535, 0], "goodness he never plays them alike two days": [65535, 0], "he never plays them alike two days and": [65535, 0], "never plays them alike two days and how": [65535, 0], "plays them alike two days and how is": [65535, 0], "them alike two days and how is a": [65535, 0], "alike two days and how is a body": [65535, 0], "two days and how is a body to": [65535, 0], "days and how is a body to know": [65535, 0], "and how is a body to know what's": [65535, 0], "how is a body to know what's coming": [65535, 0], "is a body to know what's coming he": [65535, 0], "a body to know what's coming he 'pears": [65535, 0], "body to know what's coming he 'pears to": [65535, 0], "to know what's coming he 'pears to know": [65535, 0], "know what's coming he 'pears to know just": [65535, 0], "what's coming he 'pears to know just how": [65535, 0], "coming he 'pears to know just how long": [65535, 0], "he 'pears to know just how long he": [65535, 0], "'pears to know just how long he can": [65535, 0], "to know just how long he can torment": [65535, 0], "know just how long he can torment me": [65535, 0], "just how long he can torment me before": [65535, 0], "how long he can torment me before i": [65535, 0], "long he can torment me before i get": [65535, 0], "he can torment me before i get my": [65535, 0], "can torment me before i get my dander": [65535, 0], "torment me before i get my dander up": [65535, 0], "me before i get my dander up and": [65535, 0], "before i get my dander up and he": [65535, 0], "i get my dander up and he knows": [65535, 0], "get my dander up and he knows if": [65535, 0], "my dander up and he knows if he": [65535, 0], "dander up and he knows if he can": [65535, 0], "up and he knows if he can make": [65535, 0], "and he knows if he can make out": [65535, 0], "he knows if he can make out to": [65535, 0], "knows if he can make out to put": [65535, 0], "if he can make out to put me": [65535, 0], "he can make out to put me off": [65535, 0], "can make out to put me off for": [65535, 0], "make out to put me off for a": [65535, 0], "out to put me off for a minute": [65535, 0], "to put me off for a minute or": [65535, 0], "put me off for a minute or make": [65535, 0], "me off for a minute or make me": [65535, 0], "off for a minute or make me laugh": [65535, 0], "for a minute or make me laugh it's": [65535, 0], "a minute or make me laugh it's all": [65535, 0], "minute or make me laugh it's all down": [65535, 0], "or make me laugh it's all down again": [65535, 0], "make me laugh it's all down again and": [65535, 0], "me laugh it's all down again and i": [65535, 0], "laugh it's all down again and i can't": [65535, 0], "it's all down again and i can't hit": [65535, 0], "all down again and i can't hit him": [65535, 0], "down again and i can't hit him a": [65535, 0], "again and i can't hit him a lick": [65535, 0], "and i can't hit him a lick i": [65535, 0], "i can't hit him a lick i ain't": [65535, 0], "can't hit him a lick i ain't doing": [65535, 0], "hit him a lick i ain't doing my": [65535, 0], "him a lick i ain't doing my duty": [65535, 0], "a lick i ain't doing my duty by": [65535, 0], "lick i ain't doing my duty by that": [65535, 0], "i ain't doing my duty by that boy": [65535, 0], "ain't doing my duty by that boy and": [65535, 0], "doing my duty by that boy and that's": [65535, 0], "my duty by that boy and that's the": [65535, 0], "duty by that boy and that's the lord's": [65535, 0], "by that boy and that's the lord's truth": [65535, 0], "that boy and that's the lord's truth goodness": [65535, 0], "boy and that's the lord's truth goodness knows": [65535, 0], "and that's the lord's truth goodness knows spare": [65535, 0], "that's the lord's truth goodness knows spare the": [65535, 0], "the lord's truth goodness knows spare the rod": [65535, 0], "lord's truth goodness knows spare the rod and": [65535, 0], "truth goodness knows spare the rod and spoil": [65535, 0], "goodness knows spare the rod and spoil the": [65535, 0], "knows spare the rod and spoil the child": [65535, 0], "spare the rod and spoil the child as": [65535, 0], "the rod and spoil the child as the": [65535, 0], "rod and spoil the child as the good": [65535, 0], "and spoil the child as the good book": [65535, 0], "spoil the child as the good book says": [65535, 0], "the child as the good book says i'm": [65535, 0], "child as the good book says i'm a": [65535, 0], "as the good book says i'm a laying": [65535, 0], "the good book says i'm a laying up": [65535, 0], "good book says i'm a laying up sin": [65535, 0], "book says i'm a laying up sin and": [65535, 0], "says i'm a laying up sin and suffering": [65535, 0], "i'm a laying up sin and suffering for": [65535, 0], "a laying up sin and suffering for us": [65535, 0], "laying up sin and suffering for us both": [65535, 0], "up sin and suffering for us both i": [65535, 0], "sin and suffering for us both i know": [65535, 0], "and suffering for us both i know he's": [65535, 0], "suffering for us both i know he's full": [65535, 0], "for us both i know he's full of": [65535, 0], "us both i know he's full of the": [65535, 0], "both i know he's full of the old": [65535, 0], "i know he's full of the old scratch": [65535, 0], "know he's full of the old scratch but": [65535, 0], "he's full of the old scratch but laws": [65535, 0], "full of the old scratch but laws a": [65535, 0], "of the old scratch but laws a me": [65535, 0], "the old scratch but laws a me he's": [65535, 0], "old scratch but laws a me he's my": [65535, 0], "scratch but laws a me he's my own": [65535, 0], "but laws a me he's my own dead": [65535, 0], "laws a me he's my own dead sister's": [65535, 0], "a me he's my own dead sister's boy": [65535, 0], "me he's my own dead sister's boy poor": [65535, 0], "he's my own dead sister's boy poor thing": [65535, 0], "my own dead sister's boy poor thing and": [65535, 0], "own dead sister's boy poor thing and i": [65535, 0], "dead sister's boy poor thing and i ain't": [65535, 0], "sister's boy poor thing and i ain't got": [65535, 0], "boy poor thing and i ain't got the": [65535, 0], "poor thing and i ain't got the heart": [65535, 0], "thing and i ain't got the heart to": [65535, 0], "and i ain't got the heart to lash": [65535, 0], "i ain't got the heart to lash him": [65535, 0], "ain't got the heart to lash him somehow": [65535, 0], "got the heart to lash him somehow every": [65535, 0], "the heart to lash him somehow every time": [65535, 0], "heart to lash him somehow every time i": [65535, 0], "to lash him somehow every time i let": [65535, 0], "lash him somehow every time i let him": [65535, 0], "him somehow every time i let him off": [65535, 0], "somehow every time i let him off my": [65535, 0], "every time i let him off my conscience": [65535, 0], "time i let him off my conscience does": [65535, 0], "i let him off my conscience does hurt": [65535, 0], "let him off my conscience does hurt me": [65535, 0], "him off my conscience does hurt me so": [65535, 0], "off my conscience does hurt me so and": [65535, 0], "my conscience does hurt me so and every": [65535, 0], "conscience does hurt me so and every time": [65535, 0], "does hurt me so and every time i": [65535, 0], "hurt me so and every time i hit": [65535, 0], "me so and every time i hit him": [65535, 0], "so and every time i hit him my": [65535, 0], "and every time i hit him my old": [65535, 0], "every time i hit him my old heart": [65535, 0], "time i hit him my old heart most": [65535, 0], "i hit him my old heart most breaks": [65535, 0], "hit him my old heart most breaks well": [65535, 0], "him my old heart most breaks well a": [65535, 0], "my old heart most breaks well a well": [65535, 0], "old heart most breaks well a well man": [65535, 0], "heart most breaks well a well man that": [65535, 0], "most breaks well a well man that is": [65535, 0], "breaks well a well man that is born": [65535, 0], "well a well man that is born of": [65535, 0], "a well man that is born of woman": [65535, 0], "well man that is born of woman is": [65535, 0], "man that is born of woman is of": [65535, 0], "that is born of woman is of few": [65535, 0], "is born of woman is of few days": [65535, 0], "born of woman is of few days and": [65535, 0], "of woman is of few days and full": [65535, 0], "woman is of few days and full of": [65535, 0], "is of few days and full of trouble": [65535, 0], "of few days and full of trouble as": [65535, 0], "few days and full of trouble as the": [65535, 0], "days and full of trouble as the scripture": [65535, 0], "and full of trouble as the scripture says": [65535, 0], "full of trouble as the scripture says and": [65535, 0], "of trouble as the scripture says and i": [65535, 0], "trouble as the scripture says and i reckon": [65535, 0], "as the scripture says and i reckon it's": [65535, 0], "the scripture says and i reckon it's so": [65535, 0], "scripture says and i reckon it's so he'll": [65535, 0], "says and i reckon it's so he'll play": [65535, 0], "and i reckon it's so he'll play hookey": [65535, 0], "i reckon it's so he'll play hookey this": [65535, 0], "reckon it's so he'll play hookey this evening": [65535, 0], "it's so he'll play hookey this evening and": [65535, 0], "so he'll play hookey this evening and i'll": [65535, 0], "he'll play hookey this evening and i'll just": [65535, 0], "play hookey this evening and i'll just be": [65535, 0], "hookey this evening and i'll just be obliged": [65535, 0], "this evening and i'll just be obliged to": [65535, 0], "evening and i'll just be obliged to make": [65535, 0], "and i'll just be obliged to make him": [65535, 0], "i'll just be obliged to make him work": [65535, 0], "just be obliged to make him work to": [65535, 0], "be obliged to make him work to morrow": [65535, 0], "obliged to make him work to morrow to": [65535, 0], "to make him work to morrow to punish": [65535, 0], "make him work to morrow to punish him": [65535, 0], "him work to morrow to punish him it's": [65535, 0], "work to morrow to punish him it's mighty": [65535, 0], "to morrow to punish him it's mighty hard": [65535, 0], "morrow to punish him it's mighty hard to": [65535, 0], "to punish him it's mighty hard to make": [65535, 0], "punish him it's mighty hard to make him": [65535, 0], "him it's mighty hard to make him work": [65535, 0], "it's mighty hard to make him work saturdays": [65535, 0], "mighty hard to make him work saturdays when": [65535, 0], "hard to make him work saturdays when all": [65535, 0], "to make him work saturdays when all the": [65535, 0], "make him work saturdays when all the boys": [65535, 0], "him work saturdays when all the boys is": [65535, 0], "work saturdays when all the boys is having": [65535, 0], "saturdays when all the boys is having holiday": [65535, 0], "when all the boys is having holiday but": [65535, 0], "all the boys is having holiday but he": [65535, 0], "the boys is having holiday but he hates": [65535, 0], "boys is having holiday but he hates work": [65535, 0], "is having holiday but he hates work more": [65535, 0], "having holiday but he hates work more than": [65535, 0], "holiday but he hates work more than he": [65535, 0], "but he hates work more than he hates": [65535, 0], "he hates work more than he hates anything": [65535, 0], "hates work more than he hates anything else": [65535, 0], "work more than he hates anything else and": [65535, 0], "more than he hates anything else and i've": [65535, 0], "than he hates anything else and i've got": [65535, 0], "he hates anything else and i've got to": [65535, 0], "hates anything else and i've got to do": [65535, 0], "anything else and i've got to do some": [65535, 0], "else and i've got to do some of": [65535, 0], "and i've got to do some of my": [65535, 0], "i've got to do some of my duty": [65535, 0], "got to do some of my duty by": [65535, 0], "to do some of my duty by him": [65535, 0], "do some of my duty by him or": [65535, 0], "some of my duty by him or i'll": [65535, 0], "of my duty by him or i'll be": [65535, 0], "my duty by him or i'll be the": [65535, 0], "duty by him or i'll be the ruination": [65535, 0], "by him or i'll be the ruination of": [65535, 0], "him or i'll be the ruination of the": [65535, 0], "or i'll be the ruination of the child": [65535, 0], "i'll be the ruination of the child tom": [65535, 0], "be the ruination of the child tom did": [65535, 0], "the ruination of the child tom did play": [65535, 0], "ruination of the child tom did play hookey": [65535, 0], "of the child tom did play hookey and": [65535, 0], "the child tom did play hookey and he": [65535, 0], "child tom did play hookey and he had": [65535, 0], "tom did play hookey and he had a": [65535, 0], "did play hookey and he had a very": [65535, 0], "play hookey and he had a very good": [65535, 0], "hookey and he had a very good time": [65535, 0], "and he had a very good time he": [65535, 0], "he had a very good time he got": [65535, 0], "had a very good time he got back": [65535, 0], "a very good time he got back home": [65535, 0], "very good time he got back home barely": [65535, 0], "good time he got back home barely in": [65535, 0], "time he got back home barely in season": [65535, 0], "he got back home barely in season to": [65535, 0], "got back home barely in season to help": [65535, 0], "back home barely in season to help jim": [65535, 0], "home barely in season to help jim the": [65535, 0], "barely in season to help jim the small": [65535, 0], "in season to help jim the small colored": [65535, 0], "season to help jim the small colored boy": [65535, 0], "to help jim the small colored boy saw": [65535, 0], "help jim the small colored boy saw next": [65535, 0], "jim the small colored boy saw next day's": [65535, 0], "the small colored boy saw next day's wood": [65535, 0], "small colored boy saw next day's wood and": [65535, 0], "colored boy saw next day's wood and split": [65535, 0], "boy saw next day's wood and split the": [65535, 0], "saw next day's wood and split the kindlings": [65535, 0], "next day's wood and split the kindlings before": [65535, 0], "day's wood and split the kindlings before supper": [65535, 0], "wood and split the kindlings before supper at": [65535, 0], "and split the kindlings before supper at least": [65535, 0], "split the kindlings before supper at least he": [65535, 0], "the kindlings before supper at least he was": [65535, 0], "kindlings before supper at least he was there": [65535, 0], "before supper at least he was there in": [65535, 0], "supper at least he was there in time": [65535, 0], "at least he was there in time to": [65535, 0], "least he was there in time to tell": [65535, 0], "he was there in time to tell his": [65535, 0], "was there in time to tell his adventures": [65535, 0], "there in time to tell his adventures to": [65535, 0], "in time to tell his adventures to jim": [65535, 0], "time to tell his adventures to jim while": [65535, 0], "to tell his adventures to jim while jim": [65535, 0], "tell his adventures to jim while jim did": [65535, 0], "his adventures to jim while jim did three": [65535, 0], "adventures to jim while jim did three fourths": [65535, 0], "to jim while jim did three fourths of": [65535, 0], "jim while jim did three fourths of the": [65535, 0], "while jim did three fourths of the work": [65535, 0], "jim did three fourths of the work tom's": [65535, 0], "did three fourths of the work tom's younger": [65535, 0], "three fourths of the work tom's younger brother": [65535, 0], "fourths of the work tom's younger brother or": [65535, 0], "of the work tom's younger brother or rather": [65535, 0], "the work tom's younger brother or rather half": [65535, 0], "work tom's younger brother or rather half brother": [65535, 0], "tom's younger brother or rather half brother sid": [65535, 0], "younger brother or rather half brother sid was": [65535, 0], "brother or rather half brother sid was already": [65535, 0], "or rather half brother sid was already through": [65535, 0], "rather half brother sid was already through with": [65535, 0], "half brother sid was already through with his": [65535, 0], "brother sid was already through with his part": [65535, 0], "sid was already through with his part of": [65535, 0], "was already through with his part of the": [65535, 0], "already through with his part of the work": [65535, 0], "through with his part of the work picking": [65535, 0], "with his part of the work picking up": [65535, 0], "his part of the work picking up chips": [65535, 0], "part of the work picking up chips for": [65535, 0], "of the work picking up chips for he": [65535, 0], "the work picking up chips for he was": [65535, 0], "work picking up chips for he was a": [65535, 0], "picking up chips for he was a quiet": [65535, 0], "up chips for he was a quiet boy": [65535, 0], "chips for he was a quiet boy and": [65535, 0], "for he was a quiet boy and had": [65535, 0], "he was a quiet boy and had no": [65535, 0], "was a quiet boy and had no adventurous": [65535, 0], "a quiet boy and had no adventurous troublesome": [65535, 0], "quiet boy and had no adventurous troublesome ways": [65535, 0], "boy and had no adventurous troublesome ways while": [65535, 0], "and had no adventurous troublesome ways while tom": [65535, 0], "had no adventurous troublesome ways while tom was": [65535, 0], "no adventurous troublesome ways while tom was eating": [65535, 0], "adventurous troublesome ways while tom was eating his": [65535, 0], "troublesome ways while tom was eating his supper": [65535, 0], "ways while tom was eating his supper and": [65535, 0], "while tom was eating his supper and stealing": [65535, 0], "tom was eating his supper and stealing sugar": [65535, 0], "was eating his supper and stealing sugar as": [65535, 0], "eating his supper and stealing sugar as opportunity": [65535, 0], "his supper and stealing sugar as opportunity offered": [65535, 0], "supper and stealing sugar as opportunity offered aunt": [65535, 0], "and stealing sugar as opportunity offered aunt polly": [65535, 0], "stealing sugar as opportunity offered aunt polly asked": [65535, 0], "sugar as opportunity offered aunt polly asked him": [65535, 0], "as opportunity offered aunt polly asked him questions": [65535, 0], "opportunity offered aunt polly asked him questions that": [65535, 0], "offered aunt polly asked him questions that were": [65535, 0], "aunt polly asked him questions that were full": [65535, 0], "polly asked him questions that were full of": [65535, 0], "asked him questions that were full of guile": [65535, 0], "him questions that were full of guile and": [65535, 0], "questions that were full of guile and very": [65535, 0], "that were full of guile and very deep": [65535, 0], "were full of guile and very deep for": [65535, 0], "full of guile and very deep for she": [65535, 0], "of guile and very deep for she wanted": [65535, 0], "guile and very deep for she wanted to": [65535, 0], "and very deep for she wanted to trap": [65535, 0], "very deep for she wanted to trap him": [65535, 0], "deep for she wanted to trap him into": [65535, 0], "for she wanted to trap him into damaging": [65535, 0], "she wanted to trap him into damaging revealments": [65535, 0], "wanted to trap him into damaging revealments like": [65535, 0], "to trap him into damaging revealments like many": [65535, 0], "trap him into damaging revealments like many other": [65535, 0], "him into damaging revealments like many other simple": [65535, 0], "into damaging revealments like many other simple hearted": [65535, 0], "damaging revealments like many other simple hearted souls": [65535, 0], "revealments like many other simple hearted souls it": [65535, 0], "like many other simple hearted souls it was": [65535, 0], "many other simple hearted souls it was her": [65535, 0], "other simple hearted souls it was her pet": [65535, 0], "simple hearted souls it was her pet vanity": [65535, 0], "hearted souls it was her pet vanity to": [65535, 0], "souls it was her pet vanity to believe": [65535, 0], "it was her pet vanity to believe she": [65535, 0], "was her pet vanity to believe she was": [65535, 0], "her pet vanity to believe she was endowed": [65535, 0], "pet vanity to believe she was endowed with": [65535, 0], "vanity to believe she was endowed with a": [65535, 0], "to believe she was endowed with a talent": [65535, 0], "believe she was endowed with a talent for": [65535, 0], "she was endowed with a talent for dark": [65535, 0], "was endowed with a talent for dark and": [65535, 0], "endowed with a talent for dark and mysterious": [65535, 0], "with a talent for dark and mysterious diplomacy": [65535, 0], "a talent for dark and mysterious diplomacy and": [65535, 0], "talent for dark and mysterious diplomacy and she": [65535, 0], "for dark and mysterious diplomacy and she loved": [65535, 0], "dark and mysterious diplomacy and she loved to": [65535, 0], "and mysterious diplomacy and she loved to contemplate": [65535, 0], "mysterious diplomacy and she loved to contemplate her": [65535, 0], "diplomacy and she loved to contemplate her most": [65535, 0], "and she loved to contemplate her most transparent": [65535, 0], "she loved to contemplate her most transparent devices": [65535, 0], "loved to contemplate her most transparent devices as": [65535, 0], "to contemplate her most transparent devices as marvels": [65535, 0], "contemplate her most transparent devices as marvels of": [65535, 0], "her most transparent devices as marvels of low": [65535, 0], "most transparent devices as marvels of low cunning": [65535, 0], "transparent devices as marvels of low cunning said": [65535, 0], "devices as marvels of low cunning said she": [65535, 0], "as marvels of low cunning said she tom": [65535, 0], "marvels of low cunning said she tom it": [65535, 0], "of low cunning said she tom it was": [65535, 0], "low cunning said she tom it was middling": [65535, 0], "cunning said she tom it was middling warm": [65535, 0], "said she tom it was middling warm in": [65535, 0], "she tom it was middling warm in school": [65535, 0], "tom it was middling warm in school warn't": [65535, 0], "it was middling warm in school warn't it": [65535, 0], "was middling warm in school warn't it yes'm": [65535, 0], "middling warm in school warn't it yes'm powerful": [65535, 0], "warm in school warn't it yes'm powerful warm": [65535, 0], "in school warn't it yes'm powerful warm warn't": [65535, 0], "school warn't it yes'm powerful warm warn't it": [65535, 0], "warn't it yes'm powerful warm warn't it yes'm": [65535, 0], "it yes'm powerful warm warn't it yes'm didn't": [65535, 0], "yes'm powerful warm warn't it yes'm didn't you": [65535, 0], "powerful warm warn't it yes'm didn't you want": [65535, 0], "warm warn't it yes'm didn't you want to": [65535, 0], "warn't it yes'm didn't you want to go": [65535, 0], "it yes'm didn't you want to go in": [65535, 0], "yes'm didn't you want to go in a": [65535, 0], "didn't you want to go in a swimming": [65535, 0], "you want to go in a swimming tom": [65535, 0], "want to go in a swimming tom a": [65535, 0], "to go in a swimming tom a bit": [65535, 0], "go in a swimming tom a bit of": [65535, 0], "in a swimming tom a bit of a": [65535, 0], "a swimming tom a bit of a scare": [65535, 0], "swimming tom a bit of a scare shot": [65535, 0], "tom a bit of a scare shot through": [65535, 0], "a bit of a scare shot through tom": [65535, 0], "bit of a scare shot through tom a": [65535, 0], "of a scare shot through tom a touch": [65535, 0], "a scare shot through tom a touch of": [65535, 0], "scare shot through tom a touch of uncomfortable": [65535, 0], "shot through tom a touch of uncomfortable suspicion": [65535, 0], "through tom a touch of uncomfortable suspicion he": [65535, 0], "tom a touch of uncomfortable suspicion he searched": [65535, 0], "a touch of uncomfortable suspicion he searched aunt": [65535, 0], "touch of uncomfortable suspicion he searched aunt polly's": [65535, 0], "of uncomfortable suspicion he searched aunt polly's face": [65535, 0], "uncomfortable suspicion he searched aunt polly's face but": [65535, 0], "suspicion he searched aunt polly's face but it": [65535, 0], "he searched aunt polly's face but it told": [65535, 0], "searched aunt polly's face but it told him": [65535, 0], "aunt polly's face but it told him nothing": [65535, 0], "polly's face but it told him nothing so": [65535, 0], "face but it told him nothing so he": [65535, 0], "but it told him nothing so he said": [65535, 0], "it told him nothing so he said no'm": [65535, 0], "told him nothing so he said no'm well": [65535, 0], "him nothing so he said no'm well not": [65535, 0], "nothing so he said no'm well not very": [65535, 0], "so he said no'm well not very much": [65535, 0], "he said no'm well not very much the": [65535, 0], "said no'm well not very much the old": [65535, 0], "no'm well not very much the old lady": [65535, 0], "well not very much the old lady reached": [65535, 0], "not very much the old lady reached out": [65535, 0], "very much the old lady reached out her": [65535, 0], "much the old lady reached out her hand": [65535, 0], "the old lady reached out her hand and": [65535, 0], "old lady reached out her hand and felt": [65535, 0], "lady reached out her hand and felt tom's": [65535, 0], "reached out her hand and felt tom's shirt": [65535, 0], "out her hand and felt tom's shirt and": [65535, 0], "her hand and felt tom's shirt and said": [65535, 0], "hand and felt tom's shirt and said but": [65535, 0], "and felt tom's shirt and said but you": [65535, 0], "felt tom's shirt and said but you ain't": [65535, 0], "tom's shirt and said but you ain't too": [65535, 0], "shirt and said but you ain't too warm": [65535, 0], "and said but you ain't too warm now": [65535, 0], "said but you ain't too warm now though": [65535, 0], "but you ain't too warm now though and": [65535, 0], "you ain't too warm now though and it": [65535, 0], "ain't too warm now though and it flattered": [65535, 0], "too warm now though and it flattered her": [65535, 0], "warm now though and it flattered her to": [65535, 0], "now though and it flattered her to reflect": [65535, 0], "though and it flattered her to reflect that": [65535, 0], "and it flattered her to reflect that she": [65535, 0], "it flattered her to reflect that she had": [65535, 0], "flattered her to reflect that she had discovered": [65535, 0], "her to reflect that she had discovered that": [65535, 0], "to reflect that she had discovered that the": [65535, 0], "reflect that she had discovered that the shirt": [65535, 0], "that she had discovered that the shirt was": [65535, 0], "she had discovered that the shirt was dry": [65535, 0], "had discovered that the shirt was dry without": [65535, 0], "discovered that the shirt was dry without anybody": [65535, 0], "that the shirt was dry without anybody knowing": [65535, 0], "the shirt was dry without anybody knowing that": [65535, 0], "shirt was dry without anybody knowing that that": [65535, 0], "was dry without anybody knowing that that was": [65535, 0], "dry without anybody knowing that that was what": [65535, 0], "without anybody knowing that that was what she": [65535, 0], "anybody knowing that that was what she had": [65535, 0], "knowing that that was what she had in": [65535, 0], "that that was what she had in her": [65535, 0], "that was what she had in her mind": [65535, 0], "was what she had in her mind but": [65535, 0], "what she had in her mind but in": [65535, 0], "she had in her mind but in spite": [65535, 0], "had in her mind but in spite of": [65535, 0], "in her mind but in spite of her": [65535, 0], "her mind but in spite of her tom": [65535, 0], "mind but in spite of her tom knew": [65535, 0], "but in spite of her tom knew where": [65535, 0], "in spite of her tom knew where the": [65535, 0], "spite of her tom knew where the wind": [65535, 0], "of her tom knew where the wind lay": [65535, 0], "her tom knew where the wind lay now": [65535, 0], "tom knew where the wind lay now so": [65535, 0], "knew where the wind lay now so he": [65535, 0], "where the wind lay now so he forestalled": [65535, 0], "the wind lay now so he forestalled what": [65535, 0], "wind lay now so he forestalled what might": [65535, 0], "lay now so he forestalled what might be": [65535, 0], "now so he forestalled what might be the": [65535, 0], "so he forestalled what might be the next": [65535, 0], "he forestalled what might be the next move": [65535, 0], "forestalled what might be the next move some": [65535, 0], "what might be the next move some of": [65535, 0], "might be the next move some of us": [65535, 0], "be the next move some of us pumped": [65535, 0], "the next move some of us pumped on": [65535, 0], "next move some of us pumped on our": [65535, 0], "move some of us pumped on our heads": [65535, 0], "some of us pumped on our heads mine's": [65535, 0], "of us pumped on our heads mine's damp": [65535, 0], "us pumped on our heads mine's damp yet": [65535, 0], "pumped on our heads mine's damp yet see": [65535, 0], "on our heads mine's damp yet see aunt": [65535, 0], "our heads mine's damp yet see aunt polly": [65535, 0], "heads mine's damp yet see aunt polly was": [65535, 0], "mine's damp yet see aunt polly was vexed": [65535, 0], "damp yet see aunt polly was vexed to": [65535, 0], "yet see aunt polly was vexed to think": [65535, 0], "see aunt polly was vexed to think she": [65535, 0], "aunt polly was vexed to think she had": [65535, 0], "polly was vexed to think she had overlooked": [65535, 0], "was vexed to think she had overlooked that": [65535, 0], "vexed to think she had overlooked that bit": [65535, 0], "to think she had overlooked that bit of": [65535, 0], "think she had overlooked that bit of circumstantial": [65535, 0], "she had overlooked that bit of circumstantial evidence": [65535, 0], "had overlooked that bit of circumstantial evidence and": [65535, 0], "overlooked that bit of circumstantial evidence and missed": [65535, 0], "that bit of circumstantial evidence and missed a": [65535, 0], "bit of circumstantial evidence and missed a trick": [65535, 0], "of circumstantial evidence and missed a trick then": [65535, 0], "circumstantial evidence and missed a trick then she": [65535, 0], "evidence and missed a trick then she had": [65535, 0], "and missed a trick then she had a": [65535, 0], "missed a trick then she had a new": [65535, 0], "a trick then she had a new inspiration": [65535, 0], "trick then she had a new inspiration tom": [65535, 0], "then she had a new inspiration tom you": [65535, 0], "she had a new inspiration tom you didn't": [65535, 0], "had a new inspiration tom you didn't have": [65535, 0], "a new inspiration tom you didn't have to": [65535, 0], "new inspiration tom you didn't have to undo": [65535, 0], "inspiration tom you didn't have to undo your": [65535, 0], "tom you didn't have to undo your shirt": [65535, 0], "you didn't have to undo your shirt collar": [65535, 0], "didn't have to undo your shirt collar where": [65535, 0], "have to undo your shirt collar where i": [65535, 0], "to undo your shirt collar where i sewed": [65535, 0], "undo your shirt collar where i sewed it": [65535, 0], "your shirt collar where i sewed it to": [65535, 0], "shirt collar where i sewed it to pump": [65535, 0], "collar where i sewed it to pump on": [65535, 0], "where i sewed it to pump on your": [65535, 0], "i sewed it to pump on your head": [65535, 0], "sewed it to pump on your head did": [65535, 0], "it to pump on your head did you": [65535, 0], "to pump on your head did you unbutton": [65535, 0], "pump on your head did you unbutton your": [65535, 0], "on your head did you unbutton your jacket": [65535, 0], "your head did you unbutton your jacket the": [65535, 0], "head did you unbutton your jacket the trouble": [65535, 0], "did you unbutton your jacket the trouble vanished": [65535, 0], "you unbutton your jacket the trouble vanished out": [65535, 0], "unbutton your jacket the trouble vanished out of": [65535, 0], "your jacket the trouble vanished out of tom's": [65535, 0], "jacket the trouble vanished out of tom's face": [65535, 0], "the trouble vanished out of tom's face he": [65535, 0], "trouble vanished out of tom's face he opened": [65535, 0], "vanished out of tom's face he opened his": [65535, 0], "out of tom's face he opened his jacket": [65535, 0], "of tom's face he opened his jacket his": [65535, 0], "tom's face he opened his jacket his shirt": [65535, 0], "face he opened his jacket his shirt collar": [65535, 0], "he opened his jacket his shirt collar was": [65535, 0], "opened his jacket his shirt collar was securely": [65535, 0], "his jacket his shirt collar was securely sewed": [65535, 0], "jacket his shirt collar was securely sewed bother": [65535, 0], "his shirt collar was securely sewed bother well": [65535, 0], "shirt collar was securely sewed bother well go": [65535, 0], "collar was securely sewed bother well go 'long": [65535, 0], "was securely sewed bother well go 'long with": [65535, 0], "securely sewed bother well go 'long with you": [65535, 0], "sewed bother well go 'long with you i'd": [65535, 0], "bother well go 'long with you i'd made": [65535, 0], "well go 'long with you i'd made sure": [65535, 0], "go 'long with you i'd made sure you'd": [65535, 0], "'long with you i'd made sure you'd played": [65535, 0], "with you i'd made sure you'd played hookey": [65535, 0], "you i'd made sure you'd played hookey and": [65535, 0], "i'd made sure you'd played hookey and been": [65535, 0], "made sure you'd played hookey and been a": [65535, 0], "sure you'd played hookey and been a swimming": [65535, 0], "you'd played hookey and been a swimming but": [65535, 0], "played hookey and been a swimming but i": [65535, 0], "hookey and been a swimming but i forgive": [65535, 0], "and been a swimming but i forgive ye": [65535, 0], "been a swimming but i forgive ye tom": [65535, 0], "a swimming but i forgive ye tom i": [65535, 0], "swimming but i forgive ye tom i reckon": [65535, 0], "but i forgive ye tom i reckon you're": [65535, 0], "i forgive ye tom i reckon you're a": [65535, 0], "forgive ye tom i reckon you're a kind": [65535, 0], "ye tom i reckon you're a kind of": [65535, 0], "tom i reckon you're a kind of a": [65535, 0], "i reckon you're a kind of a singed": [65535, 0], "reckon you're a kind of a singed cat": [65535, 0], "you're a kind of a singed cat as": [65535, 0], "a kind of a singed cat as the": [65535, 0], "kind of a singed cat as the saying": [65535, 0], "of a singed cat as the saying is": [65535, 0], "a singed cat as the saying is better'n": [65535, 0], "singed cat as the saying is better'n you": [65535, 0], "cat as the saying is better'n you look": [65535, 0], "as the saying is better'n you look this": [65535, 0], "the saying is better'n you look this time": [65535, 0], "saying is better'n you look this time she": [65535, 0], "is better'n you look this time she was": [65535, 0], "better'n you look this time she was half": [65535, 0], "you look this time she was half sorry": [65535, 0], "look this time she was half sorry her": [65535, 0], "this time she was half sorry her sagacity": [65535, 0], "time she was half sorry her sagacity had": [65535, 0], "she was half sorry her sagacity had miscarried": [65535, 0], "was half sorry her sagacity had miscarried and": [65535, 0], "half sorry her sagacity had miscarried and half": [65535, 0], "sorry her sagacity had miscarried and half glad": [65535, 0], "her sagacity had miscarried and half glad that": [65535, 0], "sagacity had miscarried and half glad that tom": [65535, 0], "had miscarried and half glad that tom had": [65535, 0], "miscarried and half glad that tom had stumbled": [65535, 0], "and half glad that tom had stumbled into": [65535, 0], "half glad that tom had stumbled into obedient": [65535, 0], "glad that tom had stumbled into obedient conduct": [65535, 0], "that tom had stumbled into obedient conduct for": [65535, 0], "tom had stumbled into obedient conduct for once": [65535, 0], "had stumbled into obedient conduct for once but": [65535, 0], "stumbled into obedient conduct for once but sidney": [65535, 0], "into obedient conduct for once but sidney said": [65535, 0], "obedient conduct for once but sidney said well": [65535, 0], "conduct for once but sidney said well now": [65535, 0], "for once but sidney said well now if": [65535, 0], "once but sidney said well now if i": [65535, 0], "but sidney said well now if i didn't": [65535, 0], "sidney said well now if i didn't think": [65535, 0], "said well now if i didn't think you": [65535, 0], "well now if i didn't think you sewed": [65535, 0], "now if i didn't think you sewed his": [65535, 0], "if i didn't think you sewed his collar": [65535, 0], "i didn't think you sewed his collar with": [65535, 0], "didn't think you sewed his collar with white": [65535, 0], "think you sewed his collar with white thread": [65535, 0], "you sewed his collar with white thread but": [65535, 0], "sewed his collar with white thread but it's": [65535, 0], "his collar with white thread but it's black": [65535, 0], "collar with white thread but it's black why": [65535, 0], "with white thread but it's black why i": [65535, 0], "white thread but it's black why i did": [65535, 0], "thread but it's black why i did sew": [65535, 0], "but it's black why i did sew it": [65535, 0], "it's black why i did sew it with": [65535, 0], "black why i did sew it with white": [65535, 0], "why i did sew it with white tom": [65535, 0], "i did sew it with white tom but": [65535, 0], "did sew it with white tom but tom": [65535, 0], "sew it with white tom but tom did": [65535, 0], "it with white tom but tom did not": [65535, 0], "with white tom but tom did not wait": [65535, 0], "white tom but tom did not wait for": [65535, 0], "tom but tom did not wait for the": [65535, 0], "but tom did not wait for the rest": [65535, 0], "tom did not wait for the rest as": [65535, 0], "did not wait for the rest as he": [65535, 0], "not wait for the rest as he went": [65535, 0], "wait for the rest as he went out": [65535, 0], "for the rest as he went out at": [65535, 0], "the rest as he went out at the": [65535, 0], "rest as he went out at the door": [65535, 0], "as he went out at the door he": [65535, 0], "he went out at the door he said": [65535, 0], "went out at the door he said siddy": [65535, 0], "out at the door he said siddy i'll": [65535, 0], "at the door he said siddy i'll lick": [65535, 0], "the door he said siddy i'll lick you": [65535, 0], "door he said siddy i'll lick you for": [65535, 0], "he said siddy i'll lick you for that": [65535, 0], "said siddy i'll lick you for that in": [65535, 0], "siddy i'll lick you for that in a": [65535, 0], "i'll lick you for that in a safe": [65535, 0], "lick you for that in a safe place": [65535, 0], "you for that in a safe place tom": [65535, 0], "for that in a safe place tom examined": [65535, 0], "that in a safe place tom examined two": [65535, 0], "in a safe place tom examined two large": [65535, 0], "a safe place tom examined two large needles": [65535, 0], "safe place tom examined two large needles which": [65535, 0], "place tom examined two large needles which were": [65535, 0], "tom examined two large needles which were thrust": [65535, 0], "examined two large needles which were thrust into": [65535, 0], "two large needles which were thrust into the": [65535, 0], "large needles which were thrust into the lapels": [65535, 0], "needles which were thrust into the lapels of": [65535, 0], "which were thrust into the lapels of his": [65535, 0], "were thrust into the lapels of his jacket": [65535, 0], "thrust into the lapels of his jacket and": [65535, 0], "into the lapels of his jacket and had": [65535, 0], "the lapels of his jacket and had thread": [65535, 0], "lapels of his jacket and had thread bound": [65535, 0], "of his jacket and had thread bound about": [65535, 0], "his jacket and had thread bound about them": [65535, 0], "jacket and had thread bound about them one": [65535, 0], "and had thread bound about them one needle": [65535, 0], "had thread bound about them one needle carried": [65535, 0], "thread bound about them one needle carried white": [65535, 0], "bound about them one needle carried white thread": [65535, 0], "about them one needle carried white thread and": [65535, 0], "them one needle carried white thread and the": [65535, 0], "one needle carried white thread and the other": [65535, 0], "needle carried white thread and the other black": [65535, 0], "carried white thread and the other black he": [65535, 0], "white thread and the other black he said": [65535, 0], "thread and the other black he said she'd": [65535, 0], "and the other black he said she'd never": [65535, 0], "the other black he said she'd never noticed": [65535, 0], "other black he said she'd never noticed if": [65535, 0], "black he said she'd never noticed if it": [65535, 0], "he said she'd never noticed if it hadn't": [65535, 0], "said she'd never noticed if it hadn't been": [65535, 0], "she'd never noticed if it hadn't been for": [65535, 0], "never noticed if it hadn't been for sid": [65535, 0], "noticed if it hadn't been for sid confound": [65535, 0], "if it hadn't been for sid confound it": [65535, 0], "it hadn't been for sid confound it sometimes": [65535, 0], "hadn't been for sid confound it sometimes she": [65535, 0], "been for sid confound it sometimes she sews": [65535, 0], "for sid confound it sometimes she sews it": [65535, 0], "sid confound it sometimes she sews it with": [65535, 0], "confound it sometimes she sews it with white": [65535, 0], "it sometimes she sews it with white and": [65535, 0], "sometimes she sews it with white and sometimes": [65535, 0], "she sews it with white and sometimes she": [65535, 0], "sews it with white and sometimes she sews": [65535, 0], "it with white and sometimes she sews it": [65535, 0], "with white and sometimes she sews it with": [65535, 0], "white and sometimes she sews it with black": [65535, 0], "and sometimes she sews it with black i": [65535, 0], "sometimes she sews it with black i wish": [65535, 0], "she sews it with black i wish to": [65535, 0], "sews it with black i wish to geeminy": [65535, 0], "it with black i wish to geeminy she'd": [65535, 0], "with black i wish to geeminy she'd stick": [65535, 0], "black i wish to geeminy she'd stick to": [65535, 0], "i wish to geeminy she'd stick to one": [65535, 0], "wish to geeminy she'd stick to one or": [65535, 0], "to geeminy she'd stick to one or t'other": [65535, 0], "geeminy she'd stick to one or t'other i": [65535, 0], "she'd stick to one or t'other i can't": [65535, 0], "stick to one or t'other i can't keep": [65535, 0], "to one or t'other i can't keep the": [65535, 0], "one or t'other i can't keep the run": [65535, 0], "or t'other i can't keep the run of": [65535, 0], "t'other i can't keep the run of 'em": [65535, 0], "i can't keep the run of 'em but": [65535, 0], "can't keep the run of 'em but i": [65535, 0], "keep the run of 'em but i bet": [65535, 0], "the run of 'em but i bet you": [65535, 0], "run of 'em but i bet you i'll": [65535, 0], "of 'em but i bet you i'll lam": [65535, 0], "'em but i bet you i'll lam sid": [65535, 0], "but i bet you i'll lam sid for": [65535, 0], "i bet you i'll lam sid for that": [65535, 0], "bet you i'll lam sid for that i'll": [65535, 0], "you i'll lam sid for that i'll learn": [65535, 0], "i'll lam sid for that i'll learn him": [65535, 0], "lam sid for that i'll learn him he": [65535, 0], "sid for that i'll learn him he was": [65535, 0], "for that i'll learn him he was not": [65535, 0], "that i'll learn him he was not the": [65535, 0], "i'll learn him he was not the model": [65535, 0], "learn him he was not the model boy": [65535, 0], "him he was not the model boy of": [65535, 0], "he was not the model boy of the": [65535, 0], "was not the model boy of the village": [65535, 0], "not the model boy of the village he": [65535, 0], "the model boy of the village he knew": [65535, 0], "model boy of the village he knew the": [65535, 0], "boy of the village he knew the model": [65535, 0], "of the village he knew the model boy": [65535, 0], "the village he knew the model boy very": [65535, 0], "village he knew the model boy very well": [65535, 0], "he knew the model boy very well though": [65535, 0], "knew the model boy very well though and": [65535, 0], "the model boy very well though and loathed": [65535, 0], "model boy very well though and loathed him": [65535, 0], "boy very well though and loathed him within": [65535, 0], "very well though and loathed him within two": [65535, 0], "well though and loathed him within two minutes": [65535, 0], "though and loathed him within two minutes or": [65535, 0], "and loathed him within two minutes or even": [65535, 0], "loathed him within two minutes or even less": [65535, 0], "him within two minutes or even less he": [65535, 0], "within two minutes or even less he had": [65535, 0], "two minutes or even less he had forgotten": [65535, 0], "minutes or even less he had forgotten all": [65535, 0], "or even less he had forgotten all his": [65535, 0], "even less he had forgotten all his troubles": [65535, 0], "less he had forgotten all his troubles not": [65535, 0], "he had forgotten all his troubles not because": [65535, 0], "had forgotten all his troubles not because his": [65535, 0], "forgotten all his troubles not because his troubles": [65535, 0], "all his troubles not because his troubles were": [65535, 0], "his troubles not because his troubles were one": [65535, 0], "troubles not because his troubles were one whit": [65535, 0], "not because his troubles were one whit less": [65535, 0], "because his troubles were one whit less heavy": [65535, 0], "his troubles were one whit less heavy and": [65535, 0], "troubles were one whit less heavy and bitter": [65535, 0], "were one whit less heavy and bitter to": [65535, 0], "one whit less heavy and bitter to him": [65535, 0], "whit less heavy and bitter to him than": [65535, 0], "less heavy and bitter to him than a": [65535, 0], "heavy and bitter to him than a man's": [65535, 0], "and bitter to him than a man's are": [65535, 0], "bitter to him than a man's are to": [65535, 0], "to him than a man's are to a": [65535, 0], "him than a man's are to a man": [65535, 0], "than a man's are to a man but": [65535, 0], "a man's are to a man but because": [65535, 0], "man's are to a man but because a": [65535, 0], "are to a man but because a new": [65535, 0], "to a man but because a new and": [65535, 0], "a man but because a new and powerful": [65535, 0], "man but because a new and powerful interest": [65535, 0], "but because a new and powerful interest bore": [65535, 0], "because a new and powerful interest bore them": [65535, 0], "a new and powerful interest bore them down": [65535, 0], "new and powerful interest bore them down and": [65535, 0], "and powerful interest bore them down and drove": [65535, 0], "powerful interest bore them down and drove them": [65535, 0], "interest bore them down and drove them out": [65535, 0], "bore them down and drove them out of": [65535, 0], "them down and drove them out of his": [65535, 0], "down and drove them out of his mind": [65535, 0], "and drove them out of his mind for": [65535, 0], "drove them out of his mind for the": [65535, 0], "them out of his mind for the time": [65535, 0], "out of his mind for the time just": [65535, 0], "of his mind for the time just as": [65535, 0], "his mind for the time just as men's": [65535, 0], "mind for the time just as men's misfortunes": [65535, 0], "for the time just as men's misfortunes are": [65535, 0], "the time just as men's misfortunes are forgotten": [65535, 0], "time just as men's misfortunes are forgotten in": [65535, 0], "just as men's misfortunes are forgotten in the": [65535, 0], "as men's misfortunes are forgotten in the excitement": [65535, 0], "men's misfortunes are forgotten in the excitement of": [65535, 0], "misfortunes are forgotten in the excitement of new": [65535, 0], "are forgotten in the excitement of new enterprises": [65535, 0], "forgotten in the excitement of new enterprises this": [65535, 0], "in the excitement of new enterprises this new": [65535, 0], "the excitement of new enterprises this new interest": [65535, 0], "excitement of new enterprises this new interest was": [65535, 0], "of new enterprises this new interest was a": [65535, 0], "new enterprises this new interest was a valued": [65535, 0], "enterprises this new interest was a valued novelty": [65535, 0], "this new interest was a valued novelty in": [65535, 0], "new interest was a valued novelty in whistling": [65535, 0], "interest was a valued novelty in whistling which": [65535, 0], "was a valued novelty in whistling which he": [65535, 0], "a valued novelty in whistling which he had": [65535, 0], "valued novelty in whistling which he had just": [65535, 0], "novelty in whistling which he had just acquired": [65535, 0], "in whistling which he had just acquired from": [65535, 0], "whistling which he had just acquired from a": [65535, 0], "which he had just acquired from a negro": [65535, 0], "he had just acquired from a negro and": [65535, 0], "had just acquired from a negro and he": [65535, 0], "just acquired from a negro and he was": [65535, 0], "acquired from a negro and he was suffering": [65535, 0], "from a negro and he was suffering to": [65535, 0], "a negro and he was suffering to practise": [65535, 0], "negro and he was suffering to practise it": [65535, 0], "and he was suffering to practise it undisturbed": [65535, 0], "he was suffering to practise it undisturbed it": [65535, 0], "was suffering to practise it undisturbed it consisted": [65535, 0], "suffering to practise it undisturbed it consisted in": [65535, 0], "to practise it undisturbed it consisted in a": [65535, 0], "practise it undisturbed it consisted in a peculiar": [65535, 0], "it undisturbed it consisted in a peculiar bird": [65535, 0], "undisturbed it consisted in a peculiar bird like": [65535, 0], "it consisted in a peculiar bird like turn": [65535, 0], "consisted in a peculiar bird like turn a": [65535, 0], "in a peculiar bird like turn a sort": [65535, 0], "a peculiar bird like turn a sort of": [65535, 0], "peculiar bird like turn a sort of liquid": [65535, 0], "bird like turn a sort of liquid warble": [65535, 0], "like turn a sort of liquid warble produced": [65535, 0], "turn a sort of liquid warble produced by": [65535, 0], "a sort of liquid warble produced by touching": [65535, 0], "sort of liquid warble produced by touching the": [65535, 0], "of liquid warble produced by touching the tongue": [65535, 0], "liquid warble produced by touching the tongue to": [65535, 0], "warble produced by touching the tongue to the": [65535, 0], "produced by touching the tongue to the roof": [65535, 0], "by touching the tongue to the roof of": [65535, 0], "touching the tongue to the roof of the": [65535, 0], "the tongue to the roof of the mouth": [65535, 0], "tongue to the roof of the mouth at": [65535, 0], "to the roof of the mouth at short": [65535, 0], "the roof of the mouth at short intervals": [65535, 0], "roof of the mouth at short intervals in": [65535, 0], "of the mouth at short intervals in the": [65535, 0], "the mouth at short intervals in the midst": [65535, 0], "mouth at short intervals in the midst of": [65535, 0], "at short intervals in the midst of the": [65535, 0], "short intervals in the midst of the music": [65535, 0], "intervals in the midst of the music the": [65535, 0], "in the midst of the music the reader": [65535, 0], "the midst of the music the reader probably": [65535, 0], "midst of the music the reader probably remembers": [65535, 0], "of the music the reader probably remembers how": [65535, 0], "the music the reader probably remembers how to": [65535, 0], "music the reader probably remembers how to do": [65535, 0], "the reader probably remembers how to do it": [65535, 0], "reader probably remembers how to do it if": [65535, 0], "probably remembers how to do it if he": [65535, 0], "remembers how to do it if he has": [65535, 0], "how to do it if he has ever": [65535, 0], "to do it if he has ever been": [65535, 0], "do it if he has ever been a": [65535, 0], "it if he has ever been a boy": [65535, 0], "if he has ever been a boy diligence": [65535, 0], "he has ever been a boy diligence and": [65535, 0], "has ever been a boy diligence and attention": [65535, 0], "ever been a boy diligence and attention soon": [65535, 0], "been a boy diligence and attention soon gave": [65535, 0], "a boy diligence and attention soon gave him": [65535, 0], "boy diligence and attention soon gave him the": [65535, 0], "diligence and attention soon gave him the knack": [65535, 0], "and attention soon gave him the knack of": [65535, 0], "attention soon gave him the knack of it": [65535, 0], "soon gave him the knack of it and": [65535, 0], "gave him the knack of it and he": [65535, 0], "him the knack of it and he strode": [65535, 0], "the knack of it and he strode down": [65535, 0], "knack of it and he strode down the": [65535, 0], "of it and he strode down the street": [65535, 0], "it and he strode down the street with": [65535, 0], "and he strode down the street with his": [65535, 0], "he strode down the street with his mouth": [65535, 0], "strode down the street with his mouth full": [65535, 0], "down the street with his mouth full of": [65535, 0], "the street with his mouth full of harmony": [65535, 0], "street with his mouth full of harmony and": [65535, 0], "with his mouth full of harmony and his": [65535, 0], "his mouth full of harmony and his soul": [65535, 0], "mouth full of harmony and his soul full": [65535, 0], "full of harmony and his soul full of": [65535, 0], "of harmony and his soul full of gratitude": [65535, 0], "harmony and his soul full of gratitude he": [65535, 0], "and his soul full of gratitude he felt": [65535, 0], "his soul full of gratitude he felt much": [65535, 0], "soul full of gratitude he felt much as": [65535, 0], "full of gratitude he felt much as an": [65535, 0], "of gratitude he felt much as an astronomer": [65535, 0], "gratitude he felt much as an astronomer feels": [65535, 0], "he felt much as an astronomer feels who": [65535, 0], "felt much as an astronomer feels who has": [65535, 0], "much as an astronomer feels who has discovered": [65535, 0], "as an astronomer feels who has discovered a": [65535, 0], "an astronomer feels who has discovered a new": [65535, 0], "astronomer feels who has discovered a new planet": [65535, 0], "feels who has discovered a new planet no": [65535, 0], "who has discovered a new planet no doubt": [65535, 0], "has discovered a new planet no doubt as": [65535, 0], "discovered a new planet no doubt as far": [65535, 0], "a new planet no doubt as far as": [65535, 0], "new planet no doubt as far as strong": [65535, 0], "planet no doubt as far as strong deep": [65535, 0], "no doubt as far as strong deep unalloyed": [65535, 0], "doubt as far as strong deep unalloyed pleasure": [65535, 0], "as far as strong deep unalloyed pleasure is": [65535, 0], "far as strong deep unalloyed pleasure is concerned": [65535, 0], "as strong deep unalloyed pleasure is concerned the": [65535, 0], "strong deep unalloyed pleasure is concerned the advantage": [65535, 0], "deep unalloyed pleasure is concerned the advantage was": [65535, 0], "unalloyed pleasure is concerned the advantage was with": [65535, 0], "pleasure is concerned the advantage was with the": [65535, 0], "is concerned the advantage was with the boy": [65535, 0], "concerned the advantage was with the boy not": [65535, 0], "the advantage was with the boy not the": [65535, 0], "advantage was with the boy not the astronomer": [65535, 0], "was with the boy not the astronomer the": [65535, 0], "with the boy not the astronomer the summer": [65535, 0], "the boy not the astronomer the summer evenings": [65535, 0], "boy not the astronomer the summer evenings were": [65535, 0], "not the astronomer the summer evenings were long": [65535, 0], "the astronomer the summer evenings were long it": [65535, 0], "astronomer the summer evenings were long it was": [65535, 0], "the summer evenings were long it was not": [65535, 0], "summer evenings were long it was not dark": [65535, 0], "evenings were long it was not dark yet": [65535, 0], "were long it was not dark yet presently": [65535, 0], "long it was not dark yet presently tom": [65535, 0], "it was not dark yet presently tom checked": [65535, 0], "was not dark yet presently tom checked his": [65535, 0], "not dark yet presently tom checked his whistle": [65535, 0], "dark yet presently tom checked his whistle a": [65535, 0], "yet presently tom checked his whistle a stranger": [65535, 0], "presently tom checked his whistle a stranger was": [65535, 0], "tom checked his whistle a stranger was before": [65535, 0], "checked his whistle a stranger was before him": [65535, 0], "his whistle a stranger was before him a": [65535, 0], "whistle a stranger was before him a boy": [65535, 0], "a stranger was before him a boy a": [65535, 0], "stranger was before him a boy a shade": [65535, 0], "was before him a boy a shade larger": [65535, 0], "before him a boy a shade larger than": [65535, 0], "him a boy a shade larger than himself": [65535, 0], "a boy a shade larger than himself a": [65535, 0], "boy a shade larger than himself a new": [65535, 0], "a shade larger than himself a new comer": [65535, 0], "shade larger than himself a new comer of": [65535, 0], "larger than himself a new comer of any": [65535, 0], "than himself a new comer of any age": [65535, 0], "himself a new comer of any age or": [65535, 0], "a new comer of any age or either": [65535, 0], "new comer of any age or either sex": [65535, 0], "comer of any age or either sex was": [65535, 0], "of any age or either sex was an": [65535, 0], "any age or either sex was an impressive": [65535, 0], "age or either sex was an impressive curiosity": [65535, 0], "or either sex was an impressive curiosity in": [65535, 0], "either sex was an impressive curiosity in the": [65535, 0], "sex was an impressive curiosity in the poor": [65535, 0], "was an impressive curiosity in the poor little": [65535, 0], "an impressive curiosity in the poor little shabby": [65535, 0], "impressive curiosity in the poor little shabby village": [65535, 0], "curiosity in the poor little shabby village of": [65535, 0], "in the poor little shabby village of st": [65535, 0], "the poor little shabby village of st petersburg": [65535, 0], "poor little shabby village of st petersburg this": [65535, 0], "little shabby village of st petersburg this boy": [65535, 0], "shabby village of st petersburg this boy was": [65535, 0], "village of st petersburg this boy was well": [65535, 0], "of st petersburg this boy was well dressed": [65535, 0], "st petersburg this boy was well dressed too": [65535, 0], "petersburg this boy was well dressed too well": [65535, 0], "this boy was well dressed too well dressed": [65535, 0], "boy was well dressed too well dressed on": [65535, 0], "was well dressed too well dressed on a": [65535, 0], "well dressed too well dressed on a week": [65535, 0], "dressed too well dressed on a week day": [65535, 0], "too well dressed on a week day this": [65535, 0], "well dressed on a week day this was": [65535, 0], "dressed on a week day this was simply": [65535, 0], "on a week day this was simply astounding": [65535, 0], "a week day this was simply astounding his": [65535, 0], "week day this was simply astounding his cap": [65535, 0], "day this was simply astounding his cap was": [65535, 0], "this was simply astounding his cap was a": [65535, 0], "was simply astounding his cap was a dainty": [65535, 0], "simply astounding his cap was a dainty thing": [65535, 0], "astounding his cap was a dainty thing his": [65535, 0], "his cap was a dainty thing his closebuttoned": [65535, 0], "cap was a dainty thing his closebuttoned blue": [65535, 0], "was a dainty thing his closebuttoned blue cloth": [65535, 0], "a dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout was": [65535, 0], "thing his closebuttoned blue cloth roundabout was new": [65535, 0], "his closebuttoned blue cloth roundabout was new and": [65535, 0], "closebuttoned blue cloth roundabout was new and natty": [65535, 0], "blue cloth roundabout was new and natty and": [65535, 0], "cloth roundabout was new and natty and so": [65535, 0], "roundabout was new and natty and so were": [65535, 0], "was new and natty and so were his": [65535, 0], "new and natty and so were his pantaloons": [65535, 0], "and natty and so were his pantaloons he": [65535, 0], "natty and so were his pantaloons he had": [65535, 0], "and so were his pantaloons he had shoes": [65535, 0], "so were his pantaloons he had shoes on": [65535, 0], "were his pantaloons he had shoes on and": [65535, 0], "his pantaloons he had shoes on and it": [65535, 0], "pantaloons he had shoes on and it was": [65535, 0], "he had shoes on and it was only": [65535, 0], "had shoes on and it was only friday": [65535, 0], "shoes on and it was only friday he": [65535, 0], "on and it was only friday he even": [65535, 0], "and it was only friday he even wore": [65535, 0], "it was only friday he even wore a": [65535, 0], "was only friday he even wore a necktie": [65535, 0], "only friday he even wore a necktie a": [65535, 0], "friday he even wore a necktie a bright": [65535, 0], "he even wore a necktie a bright bit": [65535, 0], "even wore a necktie a bright bit of": [65535, 0], "wore a necktie a bright bit of ribbon": [65535, 0], "a necktie a bright bit of ribbon he": [65535, 0], "necktie a bright bit of ribbon he had": [65535, 0], "a bright bit of ribbon he had a": [65535, 0], "bright bit of ribbon he had a citified": [65535, 0], "bit of ribbon he had a citified air": [65535, 0], "of ribbon he had a citified air about": [65535, 0], "ribbon he had a citified air about him": [65535, 0], "he had a citified air about him that": [65535, 0], "had a citified air about him that ate": [65535, 0], "a citified air about him that ate into": [65535, 0], "citified air about him that ate into tom's": [65535, 0], "air about him that ate into tom's vitals": [65535, 0], "about him that ate into tom's vitals the": [65535, 0], "him that ate into tom's vitals the more": [65535, 0], "that ate into tom's vitals the more tom": [65535, 0], "ate into tom's vitals the more tom stared": [65535, 0], "into tom's vitals the more tom stared at": [65535, 0], "tom's vitals the more tom stared at the": [65535, 0], "vitals the more tom stared at the splendid": [65535, 0], "the more tom stared at the splendid marvel": [65535, 0], "more tom stared at the splendid marvel the": [65535, 0], "tom stared at the splendid marvel the higher": [65535, 0], "stared at the splendid marvel the higher he": [65535, 0], "at the splendid marvel the higher he turned": [65535, 0], "the splendid marvel the higher he turned up": [65535, 0], "splendid marvel the higher he turned up his": [65535, 0], "marvel the higher he turned up his nose": [65535, 0], "the higher he turned up his nose at": [65535, 0], "higher he turned up his nose at his": [65535, 0], "he turned up his nose at his finery": [65535, 0], "turned up his nose at his finery and": [65535, 0], "up his nose at his finery and the": [65535, 0], "his nose at his finery and the shabbier": [65535, 0], "nose at his finery and the shabbier and": [65535, 0], "at his finery and the shabbier and shabbier": [65535, 0], "his finery and the shabbier and shabbier his": [65535, 0], "finery and the shabbier and shabbier his own": [65535, 0], "and the shabbier and shabbier his own outfit": [65535, 0], "the shabbier and shabbier his own outfit seemed": [65535, 0], "shabbier and shabbier his own outfit seemed to": [65535, 0], "and shabbier his own outfit seemed to him": [65535, 0], "shabbier his own outfit seemed to him to": [65535, 0], "his own outfit seemed to him to grow": [65535, 0], "own outfit seemed to him to grow neither": [65535, 0], "outfit seemed to him to grow neither boy": [65535, 0], "seemed to him to grow neither boy spoke": [65535, 0], "to him to grow neither boy spoke if": [65535, 0], "him to grow neither boy spoke if one": [65535, 0], "to grow neither boy spoke if one moved": [65535, 0], "grow neither boy spoke if one moved the": [65535, 0], "neither boy spoke if one moved the other": [65535, 0], "boy spoke if one moved the other moved": [65535, 0], "spoke if one moved the other moved but": [65535, 0], "if one moved the other moved but only": [65535, 0], "one moved the other moved but only sidewise": [65535, 0], "moved the other moved but only sidewise in": [65535, 0], "the other moved but only sidewise in a": [65535, 0], "other moved but only sidewise in a circle": [65535, 0], "moved but only sidewise in a circle they": [65535, 0], "but only sidewise in a circle they kept": [65535, 0], "only sidewise in a circle they kept face": [65535, 0], "sidewise in a circle they kept face to": [65535, 0], "in a circle they kept face to face": [65535, 0], "a circle they kept face to face and": [65535, 0], "circle they kept face to face and eye": [65535, 0], "they kept face to face and eye to": [65535, 0], "kept face to face and eye to eye": [65535, 0], "face to face and eye to eye all": [65535, 0], "to face and eye to eye all the": [65535, 0], "face and eye to eye all the time": [65535, 0], "and eye to eye all the time finally": [65535, 0], "eye to eye all the time finally tom": [65535, 0], "to eye all the time finally tom said": [65535, 0], "eye all the time finally tom said i": [65535, 0], "all the time finally tom said i can": [65535, 0], "the time finally tom said i can lick": [65535, 0], "time finally tom said i can lick you": [65535, 0], "finally tom said i can lick you i'd": [65535, 0], "tom said i can lick you i'd like": [65535, 0], "said i can lick you i'd like to": [65535, 0], "i can lick you i'd like to see": [65535, 0], "can lick you i'd like to see you": [65535, 0], "lick you i'd like to see you try": [65535, 0], "you i'd like to see you try it": [65535, 0], "i'd like to see you try it well": [65535, 0], "like to see you try it well i": [65535, 0], "to see you try it well i can": [65535, 0], "see you try it well i can do": [65535, 0], "you try it well i can do it": [65535, 0], "try it well i can do it no": [65535, 0], "it well i can do it no you": [65535, 0], "well i can do it no you can't": [65535, 0], "i can do it no you can't either": [65535, 0], "can do it no you can't either yes": [65535, 0], "do it no you can't either yes i": [65535, 0], "it no you can't either yes i can": [65535, 0], "no you can't either yes i can no": [65535, 0], "you can't either yes i can no you": [65535, 0], "can't either yes i can no you can't": [65535, 0], "either yes i can no you can't i": [65535, 0], "yes i can no you can't i can": [65535, 0], "i can no you can't i can you": [65535, 0], "can no you can't i can you can't": [65535, 0], "no you can't i can you can't can": [65535, 0], "you can't i can you can't can can't": [65535, 0], "can't i can you can't can can't an": [65535, 0], "i can you can't can can't an uncomfortable": [65535, 0], "can you can't can can't an uncomfortable pause": [65535, 0], "you can't can can't an uncomfortable pause then": [65535, 0], "can't can can't an uncomfortable pause then tom": [65535, 0], "can can't an uncomfortable pause then tom said": [65535, 0], "can't an uncomfortable pause then tom said what's": [65535, 0], "an uncomfortable pause then tom said what's your": [65535, 0], "uncomfortable pause then tom said what's your name": [65535, 0], "pause then tom said what's your name 'tisn't": [65535, 0], "then tom said what's your name 'tisn't any": [65535, 0], "tom said what's your name 'tisn't any of": [65535, 0], "said what's your name 'tisn't any of your": [65535, 0], "what's your name 'tisn't any of your business": [65535, 0], "your name 'tisn't any of your business maybe": [65535, 0], "name 'tisn't any of your business maybe well": [65535, 0], "'tisn't any of your business maybe well i": [65535, 0], "any of your business maybe well i 'low": [65535, 0], "of your business maybe well i 'low i'll": [65535, 0], "your business maybe well i 'low i'll make": [65535, 0], "business maybe well i 'low i'll make it": [65535, 0], "maybe well i 'low i'll make it my": [65535, 0], "well i 'low i'll make it my business": [65535, 0], "i 'low i'll make it my business well": [65535, 0], "'low i'll make it my business well why": [65535, 0], "i'll make it my business well why don't": [65535, 0], "make it my business well why don't you": [65535, 0], "it my business well why don't you if": [65535, 0], "my business well why don't you if you": [65535, 0], "business well why don't you if you say": [65535, 0], "well why don't you if you say much": [65535, 0], "why don't you if you say much i": [65535, 0], "don't you if you say much i will": [65535, 0], "you if you say much i will much": [65535, 0], "if you say much i will much much": [65535, 0], "you say much i will much much much": [65535, 0], "say much i will much much much there": [65535, 0], "much i will much much much there now": [65535, 0], "i will much much much there now oh": [65535, 0], "will much much much there now oh you": [65535, 0], "much much much there now oh you think": [65535, 0], "much much there now oh you think you're": [65535, 0], "much there now oh you think you're mighty": [65535, 0], "there now oh you think you're mighty smart": [65535, 0], "now oh you think you're mighty smart don't": [65535, 0], "oh you think you're mighty smart don't you": [65535, 0], "you think you're mighty smart don't you i": [65535, 0], "think you're mighty smart don't you i could": [65535, 0], "you're mighty smart don't you i could lick": [65535, 0], "mighty smart don't you i could lick you": [65535, 0], "smart don't you i could lick you with": [65535, 0], "don't you i could lick you with one": [65535, 0], "you i could lick you with one hand": [65535, 0], "i could lick you with one hand tied": [65535, 0], "could lick you with one hand tied behind": [65535, 0], "lick you with one hand tied behind me": [65535, 0], "you with one hand tied behind me if": [65535, 0], "with one hand tied behind me if i": [65535, 0], "one hand tied behind me if i wanted": [65535, 0], "hand tied behind me if i wanted to": [65535, 0], "tied behind me if i wanted to well": [65535, 0], "behind me if i wanted to well why": [65535, 0], "me if i wanted to well why don't": [65535, 0], "i wanted to well why don't you do": [65535, 0], "wanted to well why don't you do it": [65535, 0], "to well why don't you do it you": [65535, 0], "well why don't you do it you say": [65535, 0], "why don't you do it you say you": [65535, 0], "don't you do it you say you can": [65535, 0], "you do it you say you can do": [65535, 0], "do it you say you can do it": [65535, 0], "it you say you can do it well": [65535, 0], "you say you can do it well i": [65535, 0], "say you can do it well i will": [65535, 0], "you can do it well i will if": [65535, 0], "can do it well i will if you": [65535, 0], "do it well i will if you fool": [65535, 0], "it well i will if you fool with": [65535, 0], "well i will if you fool with me": [65535, 0], "i will if you fool with me oh": [65535, 0], "will if you fool with me oh yes": [65535, 0], "if you fool with me oh yes i've": [65535, 0], "you fool with me oh yes i've seen": [65535, 0], "fool with me oh yes i've seen whole": [65535, 0], "with me oh yes i've seen whole families": [65535, 0], "me oh yes i've seen whole families in": [65535, 0], "oh yes i've seen whole families in the": [65535, 0], "yes i've seen whole families in the same": [65535, 0], "i've seen whole families in the same fix": [65535, 0], "seen whole families in the same fix smarty": [65535, 0], "whole families in the same fix smarty you": [65535, 0], "families in the same fix smarty you think": [65535, 0], "in the same fix smarty you think you're": [65535, 0], "the same fix smarty you think you're some": [65535, 0], "same fix smarty you think you're some now": [65535, 0], "fix smarty you think you're some now don't": [65535, 0], "smarty you think you're some now don't you": [65535, 0], "you think you're some now don't you oh": [65535, 0], "think you're some now don't you oh what": [65535, 0], "you're some now don't you oh what a": [65535, 0], "some now don't you oh what a hat": [65535, 0], "now don't you oh what a hat you": [65535, 0], "don't you oh what a hat you can": [65535, 0], "you oh what a hat you can lump": [65535, 0], "oh what a hat you can lump that": [65535, 0], "what a hat you can lump that hat": [65535, 0], "a hat you can lump that hat if": [65535, 0], "hat you can lump that hat if you": [65535, 0], "you can lump that hat if you don't": [65535, 0], "can lump that hat if you don't like": [65535, 0], "lump that hat if you don't like it": [65535, 0], "that hat if you don't like it i": [65535, 0], "hat if you don't like it i dare": [65535, 0], "if you don't like it i dare you": [65535, 0], "you don't like it i dare you to": [65535, 0], "don't like it i dare you to knock": [65535, 0], "like it i dare you to knock it": [65535, 0], "it i dare you to knock it off": [65535, 0], "i dare you to knock it off and": [65535, 0], "dare you to knock it off and anybody": [65535, 0], "you to knock it off and anybody that'll": [65535, 0], "to knock it off and anybody that'll take": [65535, 0], "knock it off and anybody that'll take a": [65535, 0], "it off and anybody that'll take a dare": [65535, 0], "off and anybody that'll take a dare will": [65535, 0], "and anybody that'll take a dare will suck": [65535, 0], "anybody that'll take a dare will suck eggs": [65535, 0], "that'll take a dare will suck eggs you're": [65535, 0], "take a dare will suck eggs you're a": [65535, 0], "a dare will suck eggs you're a liar": [65535, 0], "dare will suck eggs you're a liar you're": [65535, 0], "will suck eggs you're a liar you're another": [65535, 0], "suck eggs you're a liar you're another you're": [65535, 0], "eggs you're a liar you're another you're a": [65535, 0], "you're a liar you're another you're a fighting": [65535, 0], "a liar you're another you're a fighting liar": [65535, 0], "liar you're another you're a fighting liar and": [65535, 0], "you're another you're a fighting liar and dasn't": [65535, 0], "another you're a fighting liar and dasn't take": [65535, 0], "you're a fighting liar and dasn't take it": [65535, 0], "a fighting liar and dasn't take it up": [65535, 0], "fighting liar and dasn't take it up aw": [65535, 0], "liar and dasn't take it up aw take": [65535, 0], "and dasn't take it up aw take a": [65535, 0], "dasn't take it up aw take a walk": [65535, 0], "take it up aw take a walk say": [65535, 0], "it up aw take a walk say if": [65535, 0], "up aw take a walk say if you": [65535, 0], "aw take a walk say if you give": [65535, 0], "take a walk say if you give me": [65535, 0], "a walk say if you give me much": [65535, 0], "walk say if you give me much more": [65535, 0], "say if you give me much more of": [65535, 0], "if you give me much more of your": [65535, 0], "you give me much more of your sass": [65535, 0], "give me much more of your sass i'll": [65535, 0], "me much more of your sass i'll take": [65535, 0], "much more of your sass i'll take and": [65535, 0], "more of your sass i'll take and bounce": [65535, 0], "of your sass i'll take and bounce a": [65535, 0], "your sass i'll take and bounce a rock": [65535, 0], "sass i'll take and bounce a rock off'n": [65535, 0], "i'll take and bounce a rock off'n your": [65535, 0], "take and bounce a rock off'n your head": [65535, 0], "and bounce a rock off'n your head oh": [65535, 0], "bounce a rock off'n your head oh of": [65535, 0], "a rock off'n your head oh of course": [65535, 0], "rock off'n your head oh of course you": [65535, 0], "off'n your head oh of course you will": [65535, 0], "your head oh of course you will well": [65535, 0], "head oh of course you will well i": [65535, 0], "oh of course you will well i will": [65535, 0], "of course you will well i will well": [65535, 0], "course you will well i will well why": [65535, 0], "you will well i will well why don't": [65535, 0], "will well i will well why don't you": [65535, 0], "well i will well why don't you do": [65535, 0], "i will well why don't you do it": [65535, 0], "will well why don't you do it then": [65535, 0], "well why don't you do it then what": [65535, 0], "why don't you do it then what do": [65535, 0], "don't you do it then what do you": [65535, 0], "you do it then what do you keep": [65535, 0], "do it then what do you keep saying": [65535, 0], "it then what do you keep saying you": [65535, 0], "then what do you keep saying you will": [65535, 0], "what do you keep saying you will for": [65535, 0], "do you keep saying you will for why": [65535, 0], "you keep saying you will for why don't": [65535, 0], "keep saying you will for why don't you": [65535, 0], "saying you will for why don't you do": [65535, 0], "you will for why don't you do it": [65535, 0], "will for why don't you do it it's": [65535, 0], "for why don't you do it it's because": [65535, 0], "why don't you do it it's because you're": [65535, 0], "don't you do it it's because you're afraid": [65535, 0], "you do it it's because you're afraid i": [65535, 0], "do it it's because you're afraid i ain't": [65535, 0], "it it's because you're afraid i ain't afraid": [65535, 0], "it's because you're afraid i ain't afraid you": [65535, 0], "because you're afraid i ain't afraid you are": [65535, 0], "you're afraid i ain't afraid you are i": [65535, 0], "afraid i ain't afraid you are i ain't": [65535, 0], "i ain't afraid you are i ain't you": [65535, 0], "ain't afraid you are i ain't you are": [65535, 0], "afraid you are i ain't you are another": [65535, 0], "you are i ain't you are another pause": [65535, 0], "are i ain't you are another pause and": [65535, 0], "i ain't you are another pause and more": [65535, 0], "ain't you are another pause and more eying": [65535, 0], "you are another pause and more eying and": [65535, 0], "are another pause and more eying and sidling": [65535, 0], "another pause and more eying and sidling around": [65535, 0], "pause and more eying and sidling around each": [65535, 0], "and more eying and sidling around each other": [65535, 0], "more eying and sidling around each other presently": [65535, 0], "eying and sidling around each other presently they": [65535, 0], "and sidling around each other presently they were": [65535, 0], "sidling around each other presently they were shoulder": [65535, 0], "around each other presently they were shoulder to": [65535, 0], "each other presently they were shoulder to shoulder": [65535, 0], "other presently they were shoulder to shoulder tom": [65535, 0], "presently they were shoulder to shoulder tom said": [65535, 0], "they were shoulder to shoulder tom said get": [65535, 0], "were shoulder to shoulder tom said get away": [65535, 0], "shoulder to shoulder tom said get away from": [65535, 0], "to shoulder tom said get away from here": [65535, 0], "shoulder tom said get away from here go": [65535, 0], "tom said get away from here go away": [65535, 0], "said get away from here go away yourself": [65535, 0], "get away from here go away yourself i": [65535, 0], "away from here go away yourself i won't": [65535, 0], "from here go away yourself i won't i": [65535, 0], "here go away yourself i won't i won't": [65535, 0], "go away yourself i won't i won't either": [65535, 0], "away yourself i won't i won't either so": [65535, 0], "yourself i won't i won't either so they": [65535, 0], "i won't i won't either so they stood": [65535, 0], "won't i won't either so they stood each": [65535, 0], "i won't either so they stood each with": [65535, 0], "won't either so they stood each with a": [65535, 0], "either so they stood each with a foot": [65535, 0], "so they stood each with a foot placed": [65535, 0], "they stood each with a foot placed at": [65535, 0], "stood each with a foot placed at an": [65535, 0], "each with a foot placed at an angle": [65535, 0], "with a foot placed at an angle as": [65535, 0], "a foot placed at an angle as a": [65535, 0], "foot placed at an angle as a brace": [65535, 0], "placed at an angle as a brace and": [65535, 0], "at an angle as a brace and both": [65535, 0], "an angle as a brace and both shoving": [65535, 0], "angle as a brace and both shoving with": [65535, 0], "as a brace and both shoving with might": [65535, 0], "a brace and both shoving with might and": [65535, 0], "brace and both shoving with might and main": [65535, 0], "and both shoving with might and main and": [65535, 0], "both shoving with might and main and glowering": [65535, 0], "shoving with might and main and glowering at": [65535, 0], "with might and main and glowering at each": [65535, 0], "might and main and glowering at each other": [65535, 0], "and main and glowering at each other with": [65535, 0], "main and glowering at each other with hate": [65535, 0], "and glowering at each other with hate but": [65535, 0], "glowering at each other with hate but neither": [65535, 0], "at each other with hate but neither could": [65535, 0], "each other with hate but neither could get": [65535, 0], "other with hate but neither could get an": [65535, 0], "with hate but neither could get an advantage": [65535, 0], "hate but neither could get an advantage after": [65535, 0], "but neither could get an advantage after struggling": [65535, 0], "neither could get an advantage after struggling till": [65535, 0], "could get an advantage after struggling till both": [65535, 0], "get an advantage after struggling till both were": [65535, 0], "an advantage after struggling till both were hot": [65535, 0], "advantage after struggling till both were hot and": [65535, 0], "after struggling till both were hot and flushed": [65535, 0], "struggling till both were hot and flushed each": [65535, 0], "till both were hot and flushed each relaxed": [65535, 0], "both were hot and flushed each relaxed his": [65535, 0], "were hot and flushed each relaxed his strain": [65535, 0], "hot and flushed each relaxed his strain with": [65535, 0], "and flushed each relaxed his strain with watchful": [65535, 0], "flushed each relaxed his strain with watchful caution": [65535, 0], "each relaxed his strain with watchful caution and": [65535, 0], "relaxed his strain with watchful caution and tom": [65535, 0], "his strain with watchful caution and tom said": [65535, 0], "strain with watchful caution and tom said you're": [65535, 0], "with watchful caution and tom said you're a": [65535, 0], "watchful caution and tom said you're a coward": [65535, 0], "caution and tom said you're a coward and": [65535, 0], "and tom said you're a coward and a": [65535, 0], "tom said you're a coward and a pup": [65535, 0], "said you're a coward and a pup i'll": [65535, 0], "you're a coward and a pup i'll tell": [65535, 0], "a coward and a pup i'll tell my": [65535, 0], "coward and a pup i'll tell my big": [65535, 0], "and a pup i'll tell my big brother": [65535, 0], "a pup i'll tell my big brother on": [65535, 0], "pup i'll tell my big brother on you": [65535, 0], "i'll tell my big brother on you and": [65535, 0], "tell my big brother on you and he": [65535, 0], "my big brother on you and he can": [65535, 0], "big brother on you and he can thrash": [65535, 0], "brother on you and he can thrash you": [65535, 0], "on you and he can thrash you with": [65535, 0], "you and he can thrash you with his": [65535, 0], "and he can thrash you with his little": [65535, 0], "he can thrash you with his little finger": [65535, 0], "can thrash you with his little finger and": [65535, 0], "thrash you with his little finger and i'll": [65535, 0], "you with his little finger and i'll make": [65535, 0], "with his little finger and i'll make him": [65535, 0], "his little finger and i'll make him do": [65535, 0], "little finger and i'll make him do it": [65535, 0], "finger and i'll make him do it too": [65535, 0], "and i'll make him do it too what": [65535, 0], "i'll make him do it too what do": [65535, 0], "make him do it too what do i": [65535, 0], "him do it too what do i care": [65535, 0], "do it too what do i care for": [65535, 0], "it too what do i care for your": [65535, 0], "too what do i care for your big": [65535, 0], "what do i care for your big brother": [65535, 0], "do i care for your big brother i've": [65535, 0], "i care for your big brother i've got": [65535, 0], "care for your big brother i've got a": [65535, 0], "for your big brother i've got a brother": [65535, 0], "your big brother i've got a brother that's": [65535, 0], "big brother i've got a brother that's bigger": [65535, 0], "brother i've got a brother that's bigger than": [65535, 0], "i've got a brother that's bigger than he": [65535, 0], "got a brother that's bigger than he is": [65535, 0], "a brother that's bigger than he is and": [65535, 0], "brother that's bigger than he is and what's": [65535, 0], "that's bigger than he is and what's more": [65535, 0], "bigger than he is and what's more he": [65535, 0], "than he is and what's more he can": [65535, 0], "he is and what's more he can throw": [65535, 0], "is and what's more he can throw him": [65535, 0], "and what's more he can throw him over": [65535, 0], "what's more he can throw him over that": [65535, 0], "more he can throw him over that fence": [65535, 0], "he can throw him over that fence too": [65535, 0], "can throw him over that fence too both": [65535, 0], "throw him over that fence too both brothers": [65535, 0], "him over that fence too both brothers were": [65535, 0], "over that fence too both brothers were imaginary": [65535, 0], "that fence too both brothers were imaginary that's": [65535, 0], "fence too both brothers were imaginary that's a": [65535, 0], "too both brothers were imaginary that's a lie": [65535, 0], "both brothers were imaginary that's a lie your": [65535, 0], "brothers were imaginary that's a lie your saying": [65535, 0], "were imaginary that's a lie your saying so": [65535, 0], "imaginary that's a lie your saying so don't": [65535, 0], "that's a lie your saying so don't make": [65535, 0], "a lie your saying so don't make it": [65535, 0], "lie your saying so don't make it so": [65535, 0], "your saying so don't make it so tom": [65535, 0], "saying so don't make it so tom drew": [65535, 0], "so don't make it so tom drew a": [65535, 0], "don't make it so tom drew a line": [65535, 0], "make it so tom drew a line in": [65535, 0], "it so tom drew a line in the": [65535, 0], "so tom drew a line in the dust": [65535, 0], "tom drew a line in the dust with": [65535, 0], "drew a line in the dust with his": [65535, 0], "a line in the dust with his big": [65535, 0], "line in the dust with his big toe": [65535, 0], "in the dust with his big toe and": [65535, 0], "the dust with his big toe and said": [65535, 0], "dust with his big toe and said i": [65535, 0], "with his big toe and said i dare": [65535, 0], "his big toe and said i dare you": [65535, 0], "big toe and said i dare you to": [65535, 0], "toe and said i dare you to step": [65535, 0], "and said i dare you to step over": [65535, 0], "said i dare you to step over that": [65535, 0], "i dare you to step over that and": [65535, 0], "dare you to step over that and i'll": [65535, 0], "you to step over that and i'll lick": [65535, 0], "to step over that and i'll lick you": [65535, 0], "step over that and i'll lick you till": [65535, 0], "over that and i'll lick you till you": [65535, 0], "that and i'll lick you till you can't": [65535, 0], "and i'll lick you till you can't stand": [65535, 0], "i'll lick you till you can't stand up": [65535, 0], "lick you till you can't stand up anybody": [65535, 0], "you till you can't stand up anybody that'll": [65535, 0], "till you can't stand up anybody that'll take": [65535, 0], "you can't stand up anybody that'll take a": [65535, 0], "can't stand up anybody that'll take a dare": [65535, 0], "stand up anybody that'll take a dare will": [65535, 0], "up anybody that'll take a dare will steal": [65535, 0], "anybody that'll take a dare will steal sheep": [65535, 0], "that'll take a dare will steal sheep the": [65535, 0], "take a dare will steal sheep the new": [65535, 0], "a dare will steal sheep the new boy": [65535, 0], "dare will steal sheep the new boy stepped": [65535, 0], "will steal sheep the new boy stepped over": [65535, 0], "steal sheep the new boy stepped over promptly": [65535, 0], "sheep the new boy stepped over promptly and": [65535, 0], "the new boy stepped over promptly and said": [65535, 0], "new boy stepped over promptly and said now": [65535, 0], "boy stepped over promptly and said now you": [65535, 0], "stepped over promptly and said now you said": [65535, 0], "over promptly and said now you said you'd": [65535, 0], "promptly and said now you said you'd do": [65535, 0], "and said now you said you'd do it": [65535, 0], "said now you said you'd do it now": [65535, 0], "now you said you'd do it now let's": [65535, 0], "you said you'd do it now let's see": [65535, 0], "said you'd do it now let's see you": [65535, 0], "you'd do it now let's see you do": [65535, 0], "do it now let's see you do it": [65535, 0], "it now let's see you do it don't": [65535, 0], "now let's see you do it don't you": [65535, 0], "let's see you do it don't you crowd": [65535, 0], "see you do it don't you crowd me": [65535, 0], "you do it don't you crowd me now": [65535, 0], "do it don't you crowd me now you": [65535, 0], "it don't you crowd me now you better": [65535, 0], "don't you crowd me now you better look": [65535, 0], "you crowd me now you better look out": [65535, 0], "crowd me now you better look out well": [65535, 0], "me now you better look out well you": [65535, 0], "now you better look out well you said": [65535, 0], "you better look out well you said you'd": [65535, 0], "better look out well you said you'd do": [65535, 0], "look out well you said you'd do it": [65535, 0], "out well you said you'd do it why": [65535, 0], "well you said you'd do it why don't": [65535, 0], "you said you'd do it why don't you": [65535, 0], "said you'd do it why don't you do": [65535, 0], "you'd do it why don't you do it": [65535, 0], "do it why don't you do it by": [65535, 0], "it why don't you do it by jingo": [65535, 0], "why don't you do it by jingo for": [65535, 0], "don't you do it by jingo for two": [65535, 0], "you do it by jingo for two cents": [65535, 0], "do it by jingo for two cents i": [65535, 0], "it by jingo for two cents i will": [65535, 0], "by jingo for two cents i will do": [65535, 0], "jingo for two cents i will do it": [65535, 0], "for two cents i will do it the": [65535, 0], "two cents i will do it the new": [65535, 0], "cents i will do it the new boy": [65535, 0], "i will do it the new boy took": [65535, 0], "will do it the new boy took two": [65535, 0], "do it the new boy took two broad": [65535, 0], "it the new boy took two broad coppers": [65535, 0], "the new boy took two broad coppers out": [65535, 0], "new boy took two broad coppers out of": [65535, 0], "boy took two broad coppers out of his": [65535, 0], "took two broad coppers out of his pocket": [65535, 0], "two broad coppers out of his pocket and": [65535, 0], "broad coppers out of his pocket and held": [65535, 0], "coppers out of his pocket and held them": [65535, 0], "out of his pocket and held them out": [65535, 0], "of his pocket and held them out with": [65535, 0], "his pocket and held them out with derision": [65535, 0], "pocket and held them out with derision tom": [65535, 0], "and held them out with derision tom struck": [65535, 0], "held them out with derision tom struck them": [65535, 0], "them out with derision tom struck them to": [65535, 0], "out with derision tom struck them to the": [65535, 0], "with derision tom struck them to the ground": [65535, 0], "derision tom struck them to the ground in": [65535, 0], "tom struck them to the ground in an": [65535, 0], "struck them to the ground in an instant": [65535, 0], "them to the ground in an instant both": [65535, 0], "to the ground in an instant both boys": [65535, 0], "the ground in an instant both boys were": [65535, 0], "ground in an instant both boys were rolling": [65535, 0], "in an instant both boys were rolling and": [65535, 0], "an instant both boys were rolling and tumbling": [65535, 0], "instant both boys were rolling and tumbling in": [65535, 0], "both boys were rolling and tumbling in the": [65535, 0], "boys were rolling and tumbling in the dirt": [65535, 0], "were rolling and tumbling in the dirt gripped": [65535, 0], "rolling and tumbling in the dirt gripped together": [65535, 0], "and tumbling in the dirt gripped together like": [65535, 0], "tumbling in the dirt gripped together like cats": [65535, 0], "in the dirt gripped together like cats and": [65535, 0], "the dirt gripped together like cats and for": [65535, 0], "dirt gripped together like cats and for the": [65535, 0], "gripped together like cats and for the space": [65535, 0], "together like cats and for the space of": [65535, 0], "like cats and for the space of a": [65535, 0], "cats and for the space of a minute": [65535, 0], "and for the space of a minute they": [65535, 0], "for the space of a minute they tugged": [65535, 0], "the space of a minute they tugged and": [65535, 0], "space of a minute they tugged and tore": [65535, 0], "of a minute they tugged and tore at": [65535, 0], "a minute they tugged and tore at each": [65535, 0], "minute they tugged and tore at each other's": [65535, 0], "they tugged and tore at each other's hair": [65535, 0], "tugged and tore at each other's hair and": [65535, 0], "and tore at each other's hair and clothes": [65535, 0], "tore at each other's hair and clothes punched": [65535, 0], "at each other's hair and clothes punched and": [65535, 0], "each other's hair and clothes punched and scratched": [65535, 0], "other's hair and clothes punched and scratched each": [65535, 0], "hair and clothes punched and scratched each other's": [65535, 0], "and clothes punched and scratched each other's nose": [65535, 0], "clothes punched and scratched each other's nose and": [65535, 0], "punched and scratched each other's nose and covered": [65535, 0], "and scratched each other's nose and covered themselves": [65535, 0], "scratched each other's nose and covered themselves with": [65535, 0], "each other's nose and covered themselves with dust": [65535, 0], "other's nose and covered themselves with dust and": [65535, 0], "nose and covered themselves with dust and glory": [65535, 0], "and covered themselves with dust and glory presently": [65535, 0], "covered themselves with dust and glory presently the": [65535, 0], "themselves with dust and glory presently the confusion": [65535, 0], "with dust and glory presently the confusion took": [65535, 0], "dust and glory presently the confusion took form": [65535, 0], "and glory presently the confusion took form and": [65535, 0], "glory presently the confusion took form and through": [65535, 0], "presently the confusion took form and through the": [65535, 0], "the confusion took form and through the fog": [65535, 0], "confusion took form and through the fog of": [65535, 0], "took form and through the fog of battle": [65535, 0], "form and through the fog of battle tom": [65535, 0], "and through the fog of battle tom appeared": [65535, 0], "through the fog of battle tom appeared seated": [65535, 0], "the fog of battle tom appeared seated astride": [65535, 0], "fog of battle tom appeared seated astride the": [65535, 0], "of battle tom appeared seated astride the new": [65535, 0], "battle tom appeared seated astride the new boy": [65535, 0], "tom appeared seated astride the new boy and": [65535, 0], "appeared seated astride the new boy and pounding": [65535, 0], "seated astride the new boy and pounding him": [65535, 0], "astride the new boy and pounding him with": [65535, 0], "the new boy and pounding him with his": [65535, 0], "new boy and pounding him with his fists": [65535, 0], "boy and pounding him with his fists holler": [65535, 0], "and pounding him with his fists holler 'nuff": [65535, 0], "pounding him with his fists holler 'nuff said": [65535, 0], "him with his fists holler 'nuff said he": [65535, 0], "with his fists holler 'nuff said he the": [65535, 0], "his fists holler 'nuff said he the boy": [65535, 0], "fists holler 'nuff said he the boy only": [65535, 0], "holler 'nuff said he the boy only struggled": [65535, 0], "'nuff said he the boy only struggled to": [65535, 0], "said he the boy only struggled to free": [65535, 0], "he the boy only struggled to free himself": [65535, 0], "the boy only struggled to free himself he": [65535, 0], "boy only struggled to free himself he was": [65535, 0], "only struggled to free himself he was crying": [65535, 0], "struggled to free himself he was crying mainly": [65535, 0], "to free himself he was crying mainly from": [65535, 0], "free himself he was crying mainly from rage": [65535, 0], "himself he was crying mainly from rage holler": [65535, 0], "he was crying mainly from rage holler 'nuff": [65535, 0], "was crying mainly from rage holler 'nuff and": [65535, 0], "crying mainly from rage holler 'nuff and the": [65535, 0], "mainly from rage holler 'nuff and the pounding": [65535, 0], "from rage holler 'nuff and the pounding went": [65535, 0], "rage holler 'nuff and the pounding went on": [65535, 0], "holler 'nuff and the pounding went on at": [65535, 0], "'nuff and the pounding went on at last": [65535, 0], "and the pounding went on at last the": [65535, 0], "the pounding went on at last the stranger": [65535, 0], "pounding went on at last the stranger got": [65535, 0], "went on at last the stranger got out": [65535, 0], "on at last the stranger got out a": [65535, 0], "at last the stranger got out a smothered": [65535, 0], "last the stranger got out a smothered 'nuff": [65535, 0], "the stranger got out a smothered 'nuff and": [65535, 0], "stranger got out a smothered 'nuff and tom": [65535, 0], "got out a smothered 'nuff and tom let": [65535, 0], "out a smothered 'nuff and tom let him": [65535, 0], "a smothered 'nuff and tom let him up": [65535, 0], "smothered 'nuff and tom let him up and": [65535, 0], "'nuff and tom let him up and said": [65535, 0], "and tom let him up and said now": [65535, 0], "tom let him up and said now that'll": [65535, 0], "let him up and said now that'll learn": [65535, 0], "him up and said now that'll learn you": [65535, 0], "up and said now that'll learn you better": [65535, 0], "and said now that'll learn you better look": [65535, 0], "said now that'll learn you better look out": [65535, 0], "now that'll learn you better look out who": [65535, 0], "that'll learn you better look out who you're": [65535, 0], "learn you better look out who you're fooling": [65535, 0], "you better look out who you're fooling with": [65535, 0], "better look out who you're fooling with next": [65535, 0], "look out who you're fooling with next time": [65535, 0], "out who you're fooling with next time the": [65535, 0], "who you're fooling with next time the new": [65535, 0], "you're fooling with next time the new boy": [65535, 0], "fooling with next time the new boy went": [65535, 0], "with next time the new boy went off": [65535, 0], "next time the new boy went off brushing": [65535, 0], "time the new boy went off brushing the": [65535, 0], "the new boy went off brushing the dust": [65535, 0], "new boy went off brushing the dust from": [65535, 0], "boy went off brushing the dust from his": [65535, 0], "went off brushing the dust from his clothes": [65535, 0], "off brushing the dust from his clothes sobbing": [65535, 0], "brushing the dust from his clothes sobbing snuffling": [65535, 0], "the dust from his clothes sobbing snuffling and": [65535, 0], "dust from his clothes sobbing snuffling and occasionally": [65535, 0], "from his clothes sobbing snuffling and occasionally looking": [65535, 0], "his clothes sobbing snuffling and occasionally looking back": [65535, 0], "clothes sobbing snuffling and occasionally looking back and": [65535, 0], "sobbing snuffling and occasionally looking back and shaking": [65535, 0], "snuffling and occasionally looking back and shaking his": [65535, 0], "and occasionally looking back and shaking his head": [65535, 0], "occasionally looking back and shaking his head and": [65535, 0], "looking back and shaking his head and threatening": [65535, 0], "back and shaking his head and threatening what": [65535, 0], "and shaking his head and threatening what he": [65535, 0], "shaking his head and threatening what he would": [65535, 0], "his head and threatening what he would do": [65535, 0], "head and threatening what he would do to": [65535, 0], "and threatening what he would do to tom": [65535, 0], "threatening what he would do to tom the": [65535, 0], "what he would do to tom the next": [65535, 0], "he would do to tom the next time": [65535, 0], "would do to tom the next time he": [65535, 0], "do to tom the next time he caught": [65535, 0], "to tom the next time he caught him": [65535, 0], "tom the next time he caught him out": [65535, 0], "the next time he caught him out to": [65535, 0], "next time he caught him out to which": [65535, 0], "time he caught him out to which tom": [65535, 0], "he caught him out to which tom responded": [65535, 0], "caught him out to which tom responded with": [65535, 0], "him out to which tom responded with jeers": [65535, 0], "out to which tom responded with jeers and": [65535, 0], "to which tom responded with jeers and started": [65535, 0], "which tom responded with jeers and started off": [65535, 0], "tom responded with jeers and started off in": [65535, 0], "responded with jeers and started off in high": [65535, 0], "with jeers and started off in high feather": [65535, 0], "jeers and started off in high feather and": [65535, 0], "and started off in high feather and as": [65535, 0], "started off in high feather and as soon": [65535, 0], "off in high feather and as soon as": [65535, 0], "in high feather and as soon as his": [65535, 0], "high feather and as soon as his back": [65535, 0], "feather and as soon as his back was": [65535, 0], "and as soon as his back was turned": [65535, 0], "as soon as his back was turned the": [65535, 0], "soon as his back was turned the new": [65535, 0], "as his back was turned the new boy": [65535, 0], "his back was turned the new boy snatched": [65535, 0], "back was turned the new boy snatched up": [65535, 0], "was turned the new boy snatched up a": [65535, 0], "turned the new boy snatched up a stone": [65535, 0], "the new boy snatched up a stone threw": [65535, 0], "new boy snatched up a stone threw it": [65535, 0], "boy snatched up a stone threw it and": [65535, 0], "snatched up a stone threw it and hit": [65535, 0], "up a stone threw it and hit him": [65535, 0], "a stone threw it and hit him between": [65535, 0], "stone threw it and hit him between the": [65535, 0], "threw it and hit him between the shoulders": [65535, 0], "it and hit him between the shoulders and": [65535, 0], "and hit him between the shoulders and then": [65535, 0], "hit him between the shoulders and then turned": [65535, 0], "him between the shoulders and then turned tail": [65535, 0], "between the shoulders and then turned tail and": [65535, 0], "the shoulders and then turned tail and ran": [65535, 0], "shoulders and then turned tail and ran like": [65535, 0], "and then turned tail and ran like an": [65535, 0], "then turned tail and ran like an antelope": [65535, 0], "turned tail and ran like an antelope tom": [65535, 0], "tail and ran like an antelope tom chased": [65535, 0], "and ran like an antelope tom chased the": [65535, 0], "ran like an antelope tom chased the traitor": [65535, 0], "like an antelope tom chased the traitor home": [65535, 0], "an antelope tom chased the traitor home and": [65535, 0], "antelope tom chased the traitor home and thus": [65535, 0], "tom chased the traitor home and thus found": [65535, 0], "chased the traitor home and thus found out": [65535, 0], "the traitor home and thus found out where": [65535, 0], "traitor home and thus found out where he": [65535, 0], "home and thus found out where he lived": [65535, 0], "and thus found out where he lived he": [65535, 0], "thus found out where he lived he then": [65535, 0], "found out where he lived he then held": [65535, 0], "out where he lived he then held a": [65535, 0], "where he lived he then held a position": [65535, 0], "he lived he then held a position at": [65535, 0], "lived he then held a position at the": [65535, 0], "he then held a position at the gate": [65535, 0], "then held a position at the gate for": [65535, 0], "held a position at the gate for some": [65535, 0], "a position at the gate for some time": [65535, 0], "position at the gate for some time daring": [65535, 0], "at the gate for some time daring the": [65535, 0], "the gate for some time daring the enemy": [65535, 0], "gate for some time daring the enemy to": [65535, 0], "for some time daring the enemy to come": [65535, 0], "some time daring the enemy to come outside": [65535, 0], "time daring the enemy to come outside but": [65535, 0], "daring the enemy to come outside but the": [65535, 0], "the enemy to come outside but the enemy": [65535, 0], "enemy to come outside but the enemy only": [65535, 0], "to come outside but the enemy only made": [65535, 0], "come outside but the enemy only made faces": [65535, 0], "outside but the enemy only made faces at": [65535, 0], "but the enemy only made faces at him": [65535, 0], "the enemy only made faces at him through": [65535, 0], "enemy only made faces at him through the": [65535, 0], "only made faces at him through the window": [65535, 0], "made faces at him through the window and": [65535, 0], "faces at him through the window and declined": [65535, 0], "at him through the window and declined at": [65535, 0], "him through the window and declined at last": [65535, 0], "through the window and declined at last the": [65535, 0], "the window and declined at last the enemy's": [65535, 0], "window and declined at last the enemy's mother": [65535, 0], "and declined at last the enemy's mother appeared": [65535, 0], "declined at last the enemy's mother appeared and": [65535, 0], "at last the enemy's mother appeared and called": [65535, 0], "last the enemy's mother appeared and called tom": [65535, 0], "the enemy's mother appeared and called tom a": [65535, 0], "enemy's mother appeared and called tom a bad": [65535, 0], "mother appeared and called tom a bad vicious": [65535, 0], "appeared and called tom a bad vicious vulgar": [65535, 0], "and called tom a bad vicious vulgar child": [65535, 0], "called tom a bad vicious vulgar child and": [65535, 0], "tom a bad vicious vulgar child and ordered": [65535, 0], "a bad vicious vulgar child and ordered him": [65535, 0], "bad vicious vulgar child and ordered him away": [65535, 0], "vicious vulgar child and ordered him away so": [65535, 0], "vulgar child and ordered him away so he": [65535, 0], "child and ordered him away so he went": [65535, 0], "and ordered him away so he went away": [65535, 0], "ordered him away so he went away but": [65535, 0], "him away so he went away but he": [65535, 0], "away so he went away but he said": [65535, 0], "so he went away but he said he": [65535, 0], "he went away but he said he 'lowed": [65535, 0], "went away but he said he 'lowed to": [65535, 0], "away but he said he 'lowed to lay": [65535, 0], "but he said he 'lowed to lay for": [65535, 0], "he said he 'lowed to lay for that": [65535, 0], "said he 'lowed to lay for that boy": [65535, 0], "he 'lowed to lay for that boy he": [65535, 0], "'lowed to lay for that boy he got": [65535, 0], "to lay for that boy he got home": [65535, 0], "lay for that boy he got home pretty": [65535, 0], "for that boy he got home pretty late": [65535, 0], "that boy he got home pretty late that": [65535, 0], "boy he got home pretty late that night": [65535, 0], "he got home pretty late that night and": [65535, 0], "got home pretty late that night and when": [65535, 0], "home pretty late that night and when he": [65535, 0], "pretty late that night and when he climbed": [65535, 0], "late that night and when he climbed cautiously": [65535, 0], "that night and when he climbed cautiously in": [65535, 0], "night and when he climbed cautiously in at": [65535, 0], "and when he climbed cautiously in at the": [65535, 0], "when he climbed cautiously in at the window": [65535, 0], "he climbed cautiously in at the window he": [65535, 0], "climbed cautiously in at the window he uncovered": [65535, 0], "cautiously in at the window he uncovered an": [65535, 0], "in at the window he uncovered an ambuscade": [65535, 0], "at the window he uncovered an ambuscade in": [65535, 0], "the window he uncovered an ambuscade in the": [65535, 0], "window he uncovered an ambuscade in the person": [65535, 0], "he uncovered an ambuscade in the person of": [65535, 0], "uncovered an ambuscade in the person of his": [65535, 0], "an ambuscade in the person of his aunt": [65535, 0], "ambuscade in the person of his aunt and": [65535, 0], "in the person of his aunt and when": [65535, 0], "the person of his aunt and when she": [65535, 0], "person of his aunt and when she saw": [65535, 0], "of his aunt and when she saw the": [65535, 0], "his aunt and when she saw the state": [65535, 0], "aunt and when she saw the state his": [65535, 0], "and when she saw the state his clothes": [65535, 0], "when she saw the state his clothes were": [65535, 0], "she saw the state his clothes were in": [65535, 0], "saw the state his clothes were in her": [65535, 0], "the state his clothes were in her resolution": [65535, 0], "state his clothes were in her resolution to": [65535, 0], "his clothes were in her resolution to turn": [65535, 0], "clothes were in her resolution to turn his": [65535, 0], "were in her resolution to turn his saturday": [65535, 0], "in her resolution to turn his saturday holiday": [65535, 0], "her resolution to turn his saturday holiday into": [65535, 0], "resolution to turn his saturday holiday into captivity": [65535, 0], "to turn his saturday holiday into captivity at": [65535, 0], "turn his saturday holiday into captivity at hard": [65535, 0], "his saturday holiday into captivity at hard labor": [65535, 0], "saturday holiday into captivity at hard labor became": [65535, 0], "holiday into captivity at hard labor became adamantine": [65535, 0], "into captivity at hard labor became adamantine in": [65535, 0], "captivity at hard labor became adamantine in its": [65535, 0], "at hard labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's gone with": [65535, 0], "no answer tom no answer what's gone with that": [65535, 0], "answer tom no answer what's gone with that boy": [65535, 0], "tom no answer what's gone with that boy i": [65535, 0], "no answer what's gone with that boy i wonder": [65535, 0], "answer what's gone with that boy i wonder you": [65535, 0], "what's gone with that boy i wonder you tom": [65535, 0], "gone with that boy i wonder you tom no": [65535, 0], "with that boy i wonder you tom no answer": [65535, 0], "that boy i wonder you tom no answer the": [65535, 0], "boy i wonder you tom no answer the old": [65535, 0], "i wonder you tom no answer the old lady": [65535, 0], "wonder you tom no answer the old lady pulled": [65535, 0], "you tom no answer the old lady pulled her": [65535, 0], "tom no answer the old lady pulled her spectacles": [65535, 0], "no answer the old lady pulled her spectacles down": [65535, 0], "answer the old lady pulled her spectacles down and": [65535, 0], "the old lady pulled her spectacles down and looked": [65535, 0], "old lady pulled her spectacles down and looked over": [65535, 0], "lady pulled her spectacles down and looked over them": [65535, 0], "pulled her spectacles down and looked over them about": [65535, 0], "her spectacles down and looked over them about the": [65535, 0], "spectacles down and looked over them about the room": [65535, 0], "down and looked over them about the room then": [65535, 0], "and looked over them about the room then she": [65535, 0], "looked over them about the room then she put": [65535, 0], "over them about the room then she put them": [65535, 0], "them about the room then she put them up": [65535, 0], "about the room then she put them up and": [65535, 0], "the room then she put them up and looked": [65535, 0], "room then she put them up and looked out": [65535, 0], "then she put them up and looked out under": [65535, 0], "she put them up and looked out under them": [65535, 0], "put them up and looked out under them she": [65535, 0], "them up and looked out under them she seldom": [65535, 0], "up and looked out under them she seldom or": [65535, 0], "and looked out under them she seldom or never": [65535, 0], "looked out under them she seldom or never looked": [65535, 0], "out under them she seldom or never looked through": [65535, 0], "under them she seldom or never looked through them": [65535, 0], "them she seldom or never looked through them for": [65535, 0], "she seldom or never looked through them for so": [65535, 0], "seldom or never looked through them for so small": [65535, 0], "or never looked through them for so small a": [65535, 0], "never looked through them for so small a thing": [65535, 0], "looked through them for so small a thing as": [65535, 0], "through them for so small a thing as a": [65535, 0], "them for so small a thing as a boy": [65535, 0], "for so small a thing as a boy they": [65535, 0], "so small a thing as a boy they were": [65535, 0], "small a thing as a boy they were her": [65535, 0], "a thing as a boy they were her state": [65535, 0], "thing as a boy they were her state pair": [65535, 0], "as a boy they were her state pair the": [65535, 0], "a boy they were her state pair the pride": [65535, 0], "boy they were her state pair the pride of": [65535, 0], "they were her state pair the pride of her": [65535, 0], "were her state pair the pride of her heart": [65535, 0], "her state pair the pride of her heart and": [65535, 0], "state pair the pride of her heart and were": [65535, 0], "pair the pride of her heart and were built": [65535, 0], "the pride of her heart and were built for": [65535, 0], "pride of her heart and were built for style": [65535, 0], "of her heart and were built for style not": [65535, 0], "her heart and were built for style not service": [65535, 0], "heart and were built for style not service she": [65535, 0], "and were built for style not service she could": [65535, 0], "were built for style not service she could have": [65535, 0], "built for style not service she could have seen": [65535, 0], "for style not service she could have seen through": [65535, 0], "style not service she could have seen through a": [65535, 0], "not service she could have seen through a pair": [65535, 0], "service she could have seen through a pair of": [65535, 0], "she could have seen through a pair of stove": [65535, 0], "could have seen through a pair of stove lids": [65535, 0], "have seen through a pair of stove lids just": [65535, 0], "seen through a pair of stove lids just as": [65535, 0], "through a pair of stove lids just as well": [65535, 0], "a pair of stove lids just as well she": [65535, 0], "pair of stove lids just as well she looked": [65535, 0], "of stove lids just as well she looked perplexed": [65535, 0], "stove lids just as well she looked perplexed for": [65535, 0], "lids just as well she looked perplexed for a": [65535, 0], "just as well she looked perplexed for a moment": [65535, 0], "as well she looked perplexed for a moment and": [65535, 0], "well she looked perplexed for a moment and then": [65535, 0], "she looked perplexed for a moment and then said": [65535, 0], "looked perplexed for a moment and then said not": [65535, 0], "perplexed for a moment and then said not fiercely": [65535, 0], "for a moment and then said not fiercely but": [65535, 0], "a moment and then said not fiercely but still": [65535, 0], "moment and then said not fiercely but still loud": [65535, 0], "and then said not fiercely but still loud enough": [65535, 0], "then said not fiercely but still loud enough for": [65535, 0], "said not fiercely but still loud enough for the": [65535, 0], "not fiercely but still loud enough for the furniture": [65535, 0], "fiercely but still loud enough for the furniture to": [65535, 0], "but still loud enough for the furniture to hear": [65535, 0], "still loud enough for the furniture to hear well": [65535, 0], "loud enough for the furniture to hear well i": [65535, 0], "enough for the furniture to hear well i lay": [65535, 0], "for the furniture to hear well i lay if": [65535, 0], "the furniture to hear well i lay if i": [65535, 0], "furniture to hear well i lay if i get": [65535, 0], "to hear well i lay if i get hold": [65535, 0], "hear well i lay if i get hold of": [65535, 0], "well i lay if i get hold of you": [65535, 0], "i lay if i get hold of you i'll": [65535, 0], "lay if i get hold of you i'll she": [65535, 0], "if i get hold of you i'll she did": [65535, 0], "i get hold of you i'll she did not": [65535, 0], "get hold of you i'll she did not finish": [65535, 0], "hold of you i'll she did not finish for": [65535, 0], "of you i'll she did not finish for by": [65535, 0], "you i'll she did not finish for by this": [65535, 0], "i'll she did not finish for by this time": [65535, 0], "she did not finish for by this time she": [65535, 0], "did not finish for by this time she was": [65535, 0], "not finish for by this time she was bending": [65535, 0], "finish for by this time she was bending down": [65535, 0], "for by this time she was bending down and": [65535, 0], "by this time she was bending down and punching": [65535, 0], "this time she was bending down and punching under": [65535, 0], "time she was bending down and punching under the": [65535, 0], "she was bending down and punching under the bed": [65535, 0], "was bending down and punching under the bed with": [65535, 0], "bending down and punching under the bed with the": [65535, 0], "down and punching under the bed with the broom": [65535, 0], "and punching under the bed with the broom and": [65535, 0], "punching under the bed with the broom and so": [65535, 0], "under the bed with the broom and so she": [65535, 0], "the bed with the broom and so she needed": [65535, 0], "bed with the broom and so she needed breath": [65535, 0], "with the broom and so she needed breath to": [65535, 0], "the broom and so she needed breath to punctuate": [65535, 0], "broom and so she needed breath to punctuate the": [65535, 0], "and so she needed breath to punctuate the punches": [65535, 0], "so she needed breath to punctuate the punches with": [65535, 0], "she needed breath to punctuate the punches with she": [65535, 0], "needed breath to punctuate the punches with she resurrected": [65535, 0], "breath to punctuate the punches with she resurrected nothing": [65535, 0], "to punctuate the punches with she resurrected nothing but": [65535, 0], "punctuate the punches with she resurrected nothing but the": [65535, 0], "the punches with she resurrected nothing but the cat": [65535, 0], "punches with she resurrected nothing but the cat i": [65535, 0], "with she resurrected nothing but the cat i never": [65535, 0], "she resurrected nothing but the cat i never did": [65535, 0], "resurrected nothing but the cat i never did see": [65535, 0], "nothing but the cat i never did see the": [65535, 0], "but the cat i never did see the beat": [65535, 0], "the cat i never did see the beat of": [65535, 0], "cat i never did see the beat of that": [65535, 0], "i never did see the beat of that boy": [65535, 0], "never did see the beat of that boy she": [65535, 0], "did see the beat of that boy she went": [65535, 0], "see the beat of that boy she went to": [65535, 0], "the beat of that boy she went to the": [65535, 0], "beat of that boy she went to the open": [65535, 0], "of that boy she went to the open door": [65535, 0], "that boy she went to the open door and": [65535, 0], "boy she went to the open door and stood": [65535, 0], "she went to the open door and stood in": [65535, 0], "went to the open door and stood in it": [65535, 0], "to the open door and stood in it and": [65535, 0], "the open door and stood in it and looked": [65535, 0], "open door and stood in it and looked out": [65535, 0], "door and stood in it and looked out among": [65535, 0], "and stood in it and looked out among the": [65535, 0], "stood in it and looked out among the tomato": [65535, 0], "in it and looked out among the tomato vines": [65535, 0], "it and looked out among the tomato vines and": [65535, 0], "and looked out among the tomato vines and jimpson": [65535, 0], "looked out among the tomato vines and jimpson weeds": [65535, 0], "out among the tomato vines and jimpson weeds that": [65535, 0], "among the tomato vines and jimpson weeds that constituted": [65535, 0], "the tomato vines and jimpson weeds that constituted the": [65535, 0], "tomato vines and jimpson weeds that constituted the garden": [65535, 0], "vines and jimpson weeds that constituted the garden no": [65535, 0], "and jimpson weeds that constituted the garden no tom": [65535, 0], "jimpson weeds that constituted the garden no tom so": [65535, 0], "weeds that constituted the garden no tom so she": [65535, 0], "that constituted the garden no tom so she lifted": [65535, 0], "constituted the garden no tom so she lifted up": [65535, 0], "the garden no tom so she lifted up her": [65535, 0], "garden no tom so she lifted up her voice": [65535, 0], "no tom so she lifted up her voice at": [65535, 0], "tom so she lifted up her voice at an": [65535, 0], "so she lifted up her voice at an angle": [65535, 0], "she lifted up her voice at an angle calculated": [65535, 0], "lifted up her voice at an angle calculated for": [65535, 0], "up her voice at an angle calculated for distance": [65535, 0], "her voice at an angle calculated for distance and": [65535, 0], "voice at an angle calculated for distance and shouted": [65535, 0], "at an angle calculated for distance and shouted y": [65535, 0], "an angle calculated for distance and shouted y o": [65535, 0], "angle calculated for distance and shouted y o u": [65535, 0], "calculated for distance and shouted y o u u": [65535, 0], "for distance and shouted y o u u tom": [65535, 0], "distance and shouted y o u u tom there": [65535, 0], "and shouted y o u u tom there was": [65535, 0], "shouted y o u u tom there was a": [65535, 0], "y o u u tom there was a slight": [65535, 0], "o u u tom there was a slight noise": [65535, 0], "u u tom there was a slight noise behind": [65535, 0], "u tom there was a slight noise behind her": [65535, 0], "tom there was a slight noise behind her and": [65535, 0], "there was a slight noise behind her and she": [65535, 0], "was a slight noise behind her and she turned": [65535, 0], "a slight noise behind her and she turned just": [65535, 0], "slight noise behind her and she turned just in": [65535, 0], "noise behind her and she turned just in time": [65535, 0], "behind her and she turned just in time to": [65535, 0], "her and she turned just in time to seize": [65535, 0], "and she turned just in time to seize a": [65535, 0], "she turned just in time to seize a small": [65535, 0], "turned just in time to seize a small boy": [65535, 0], "just in time to seize a small boy by": [65535, 0], "in time to seize a small boy by the": [65535, 0], "time to seize a small boy by the slack": [65535, 0], "to seize a small boy by the slack of": [65535, 0], "seize a small boy by the slack of his": [65535, 0], "a small boy by the slack of his roundabout": [65535, 0], "small boy by the slack of his roundabout and": [65535, 0], "boy by the slack of his roundabout and arrest": [65535, 0], "by the slack of his roundabout and arrest his": [65535, 0], "the slack of his roundabout and arrest his flight": [65535, 0], "slack of his roundabout and arrest his flight there": [65535, 0], "of his roundabout and arrest his flight there i": [65535, 0], "his roundabout and arrest his flight there i might": [65535, 0], "roundabout and arrest his flight there i might 'a'": [65535, 0], "and arrest his flight there i might 'a' thought": [65535, 0], "arrest his flight there i might 'a' thought of": [65535, 0], "his flight there i might 'a' thought of that": [65535, 0], "flight there i might 'a' thought of that closet": [65535, 0], "there i might 'a' thought of that closet what": [65535, 0], "i might 'a' thought of that closet what you": [65535, 0], "might 'a' thought of that closet what you been": [65535, 0], "'a' thought of that closet what you been doing": [65535, 0], "thought of that closet what you been doing in": [65535, 0], "of that closet what you been doing in there": [65535, 0], "that closet what you been doing in there nothing": [65535, 0], "closet what you been doing in there nothing nothing": [65535, 0], "what you been doing in there nothing nothing look": [65535, 0], "you been doing in there nothing nothing look at": [65535, 0], "been doing in there nothing nothing look at your": [65535, 0], "doing in there nothing nothing look at your hands": [65535, 0], "in there nothing nothing look at your hands and": [65535, 0], "there nothing nothing look at your hands and look": [65535, 0], "nothing nothing look at your hands and look at": [65535, 0], "nothing look at your hands and look at your": [65535, 0], "look at your hands and look at your mouth": [65535, 0], "at your hands and look at your mouth what": [65535, 0], "your hands and look at your mouth what is": [65535, 0], "hands and look at your mouth what is that": [65535, 0], "and look at your mouth what is that i": [65535, 0], "look at your mouth what is that i don't": [65535, 0], "at your mouth what is that i don't know": [65535, 0], "your mouth what is that i don't know aunt": [65535, 0], "mouth what is that i don't know aunt well": [65535, 0], "what is that i don't know aunt well i": [65535, 0], "is that i don't know aunt well i know": [65535, 0], "that i don't know aunt well i know it's": [65535, 0], "i don't know aunt well i know it's jam": [65535, 0], "don't know aunt well i know it's jam that's": [65535, 0], "know aunt well i know it's jam that's what": [65535, 0], "aunt well i know it's jam that's what it": [65535, 0], "well i know it's jam that's what it is": [65535, 0], "i know it's jam that's what it is forty": [65535, 0], "know it's jam that's what it is forty times": [65535, 0], "it's jam that's what it is forty times i've": [65535, 0], "jam that's what it is forty times i've said": [65535, 0], "that's what it is forty times i've said if": [65535, 0], "what it is forty times i've said if you": [65535, 0], "it is forty times i've said if you didn't": [65535, 0], "is forty times i've said if you didn't let": [65535, 0], "forty times i've said if you didn't let that": [65535, 0], "times i've said if you didn't let that jam": [65535, 0], "i've said if you didn't let that jam alone": [65535, 0], "said if you didn't let that jam alone i'd": [65535, 0], "if you didn't let that jam alone i'd skin": [65535, 0], "you didn't let that jam alone i'd skin you": [65535, 0], "didn't let that jam alone i'd skin you hand": [65535, 0], "let that jam alone i'd skin you hand me": [65535, 0], "that jam alone i'd skin you hand me that": [65535, 0], "jam alone i'd skin you hand me that switch": [65535, 0], "alone i'd skin you hand me that switch the": [65535, 0], "i'd skin you hand me that switch the switch": [65535, 0], "skin you hand me that switch the switch hovered": [65535, 0], "you hand me that switch the switch hovered in": [65535, 0], "hand me that switch the switch hovered in the": [65535, 0], "me that switch the switch hovered in the air": [65535, 0], "that switch the switch hovered in the air the": [65535, 0], "switch the switch hovered in the air the peril": [65535, 0], "the switch hovered in the air the peril was": [65535, 0], "switch hovered in the air the peril was desperate": [65535, 0], "hovered in the air the peril was desperate my": [65535, 0], "in the air the peril was desperate my look": [65535, 0], "the air the peril was desperate my look behind": [65535, 0], "air the peril was desperate my look behind you": [65535, 0], "the peril was desperate my look behind you aunt": [65535, 0], "peril was desperate my look behind you aunt the": [65535, 0], "was desperate my look behind you aunt the old": [65535, 0], "desperate my look behind you aunt the old lady": [65535, 0], "my look behind you aunt the old lady whirled": [65535, 0], "look behind you aunt the old lady whirled round": [65535, 0], "behind you aunt the old lady whirled round and": [65535, 0], "you aunt the old lady whirled round and snatched": [65535, 0], "aunt the old lady whirled round and snatched her": [65535, 0], "the old lady whirled round and snatched her skirts": [65535, 0], "old lady whirled round and snatched her skirts out": [65535, 0], "lady whirled round and snatched her skirts out of": [65535, 0], "whirled round and snatched her skirts out of danger": [65535, 0], "round and snatched her skirts out of danger the": [65535, 0], "and snatched her skirts out of danger the lad": [65535, 0], "snatched her skirts out of danger the lad fled": [65535, 0], "her skirts out of danger the lad fled on": [65535, 0], "skirts out of danger the lad fled on the": [65535, 0], "out of danger the lad fled on the instant": [65535, 0], "of danger the lad fled on the instant scrambled": [65535, 0], "danger the lad fled on the instant scrambled up": [65535, 0], "the lad fled on the instant scrambled up the": [65535, 0], "lad fled on the instant scrambled up the high": [65535, 0], "fled on the instant scrambled up the high board": [65535, 0], "on the instant scrambled up the high board fence": [65535, 0], "the instant scrambled up the high board fence and": [65535, 0], "instant scrambled up the high board fence and disappeared": [65535, 0], "scrambled up the high board fence and disappeared over": [65535, 0], "up the high board fence and disappeared over it": [65535, 0], "the high board fence and disappeared over it his": [65535, 0], "high board fence and disappeared over it his aunt": [65535, 0], "board fence and disappeared over it his aunt polly": [65535, 0], "fence and disappeared over it his aunt polly stood": [65535, 0], "and disappeared over it his aunt polly stood surprised": [65535, 0], "disappeared over it his aunt polly stood surprised a": [65535, 0], "over it his aunt polly stood surprised a moment": [65535, 0], "it his aunt polly stood surprised a moment and": [65535, 0], "his aunt polly stood surprised a moment and then": [65535, 0], "aunt polly stood surprised a moment and then broke": [65535, 0], "polly stood surprised a moment and then broke into": [65535, 0], "stood surprised a moment and then broke into a": [65535, 0], "surprised a moment and then broke into a gentle": [65535, 0], "a moment and then broke into a gentle laugh": [65535, 0], "moment and then broke into a gentle laugh hang": [65535, 0], "and then broke into a gentle laugh hang the": [65535, 0], "then broke into a gentle laugh hang the boy": [65535, 0], "broke into a gentle laugh hang the boy can't": [65535, 0], "into a gentle laugh hang the boy can't i": [65535, 0], "a gentle laugh hang the boy can't i never": [65535, 0], "gentle laugh hang the boy can't i never learn": [65535, 0], "laugh hang the boy can't i never learn anything": [65535, 0], "hang the boy can't i never learn anything ain't": [65535, 0], "the boy can't i never learn anything ain't he": [65535, 0], "boy can't i never learn anything ain't he played": [65535, 0], "can't i never learn anything ain't he played me": [65535, 0], "i never learn anything ain't he played me tricks": [65535, 0], "never learn anything ain't he played me tricks enough": [65535, 0], "learn anything ain't he played me tricks enough like": [65535, 0], "anything ain't he played me tricks enough like that": [65535, 0], "ain't he played me tricks enough like that for": [65535, 0], "he played me tricks enough like that for me": [65535, 0], "played me tricks enough like that for me to": [65535, 0], "me tricks enough like that for me to be": [65535, 0], "tricks enough like that for me to be looking": [65535, 0], "enough like that for me to be looking out": [65535, 0], "like that for me to be looking out for": [65535, 0], "that for me to be looking out for him": [65535, 0], "for me to be looking out for him by": [65535, 0], "me to be looking out for him by this": [65535, 0], "to be looking out for him by this time": [65535, 0], "be looking out for him by this time but": [65535, 0], "looking out for him by this time but old": [65535, 0], "out for him by this time but old fools": [65535, 0], "for him by this time but old fools is": [65535, 0], "him by this time but old fools is the": [65535, 0], "by this time but old fools is the biggest": [65535, 0], "this time but old fools is the biggest fools": [65535, 0], "time but old fools is the biggest fools there": [65535, 0], "but old fools is the biggest fools there is": [65535, 0], "old fools is the biggest fools there is can't": [65535, 0], "fools is the biggest fools there is can't learn": [65535, 0], "is the biggest fools there is can't learn an": [65535, 0], "the biggest fools there is can't learn an old": [65535, 0], "biggest fools there is can't learn an old dog": [65535, 0], "fools there is can't learn an old dog new": [65535, 0], "there is can't learn an old dog new tricks": [65535, 0], "is can't learn an old dog new tricks as": [65535, 0], "can't learn an old dog new tricks as the": [65535, 0], "learn an old dog new tricks as the saying": [65535, 0], "an old dog new tricks as the saying is": [65535, 0], "old dog new tricks as the saying is but": [65535, 0], "dog new tricks as the saying is but my": [65535, 0], "new tricks as the saying is but my goodness": [65535, 0], "tricks as the saying is but my goodness he": [65535, 0], "as the saying is but my goodness he never": [65535, 0], "the saying is but my goodness he never plays": [65535, 0], "saying is but my goodness he never plays them": [65535, 0], "is but my goodness he never plays them alike": [65535, 0], "but my goodness he never plays them alike two": [65535, 0], "my goodness he never plays them alike two days": [65535, 0], "goodness he never plays them alike two days and": [65535, 0], "he never plays them alike two days and how": [65535, 0], "never plays them alike two days and how is": [65535, 0], "plays them alike two days and how is a": [65535, 0], "them alike two days and how is a body": [65535, 0], "alike two days and how is a body to": [65535, 0], "two days and how is a body to know": [65535, 0], "days and how is a body to know what's": [65535, 0], "and how is a body to know what's coming": [65535, 0], "how is a body to know what's coming he": [65535, 0], "is a body to know what's coming he 'pears": [65535, 0], "a body to know what's coming he 'pears to": [65535, 0], "body to know what's coming he 'pears to know": [65535, 0], "to know what's coming he 'pears to know just": [65535, 0], "know what's coming he 'pears to know just how": [65535, 0], "what's coming he 'pears to know just how long": [65535, 0], "coming he 'pears to know just how long he": [65535, 0], "he 'pears to know just how long he can": [65535, 0], "'pears to know just how long he can torment": [65535, 0], "to know just how long he can torment me": [65535, 0], "know just how long he can torment me before": [65535, 0], "just how long he can torment me before i": [65535, 0], "how long he can torment me before i get": [65535, 0], "long he can torment me before i get my": [65535, 0], "he can torment me before i get my dander": [65535, 0], "can torment me before i get my dander up": [65535, 0], "torment me before i get my dander up and": [65535, 0], "me before i get my dander up and he": [65535, 0], "before i get my dander up and he knows": [65535, 0], "i get my dander up and he knows if": [65535, 0], "get my dander up and he knows if he": [65535, 0], "my dander up and he knows if he can": [65535, 0], "dander up and he knows if he can make": [65535, 0], "up and he knows if he can make out": [65535, 0], "and he knows if he can make out to": [65535, 0], "he knows if he can make out to put": [65535, 0], "knows if he can make out to put me": [65535, 0], "if he can make out to put me off": [65535, 0], "he can make out to put me off for": [65535, 0], "can make out to put me off for a": [65535, 0], "make out to put me off for a minute": [65535, 0], "out to put me off for a minute or": [65535, 0], "to put me off for a minute or make": [65535, 0], "put me off for a minute or make me": [65535, 0], "me off for a minute or make me laugh": [65535, 0], "off for a minute or make me laugh it's": [65535, 0], "for a minute or make me laugh it's all": [65535, 0], "a minute or make me laugh it's all down": [65535, 0], "minute or make me laugh it's all down again": [65535, 0], "or make me laugh it's all down again and": [65535, 0], "make me laugh it's all down again and i": [65535, 0], "me laugh it's all down again and i can't": [65535, 0], "laugh it's all down again and i can't hit": [65535, 0], "it's all down again and i can't hit him": [65535, 0], "all down again and i can't hit him a": [65535, 0], "down again and i can't hit him a lick": [65535, 0], "again and i can't hit him a lick i": [65535, 0], "and i can't hit him a lick i ain't": [65535, 0], "i can't hit him a lick i ain't doing": [65535, 0], "can't hit him a lick i ain't doing my": [65535, 0], "hit him a lick i ain't doing my duty": [65535, 0], "him a lick i ain't doing my duty by": [65535, 0], "a lick i ain't doing my duty by that": [65535, 0], "lick i ain't doing my duty by that boy": [65535, 0], "i ain't doing my duty by that boy and": [65535, 0], "ain't doing my duty by that boy and that's": [65535, 0], "doing my duty by that boy and that's the": [65535, 0], "my duty by that boy and that's the lord's": [65535, 0], "duty by that boy and that's the lord's truth": [65535, 0], "by that boy and that's the lord's truth goodness": [65535, 0], "that boy and that's the lord's truth goodness knows": [65535, 0], "boy and that's the lord's truth goodness knows spare": [65535, 0], "and that's the lord's truth goodness knows spare the": [65535, 0], "that's the lord's truth goodness knows spare the rod": [65535, 0], "the lord's truth goodness knows spare the rod and": [65535, 0], "lord's truth goodness knows spare the rod and spoil": [65535, 0], "truth goodness knows spare the rod and spoil the": [65535, 0], "goodness knows spare the rod and spoil the child": [65535, 0], "knows spare the rod and spoil the child as": [65535, 0], "spare the rod and spoil the child as the": [65535, 0], "the rod and spoil the child as the good": [65535, 0], "rod and spoil the child as the good book": [65535, 0], "and spoil the child as the good book says": [65535, 0], "spoil the child as the good book says i'm": [65535, 0], "the child as the good book says i'm a": [65535, 0], "child as the good book says i'm a laying": [65535, 0], "as the good book says i'm a laying up": [65535, 0], "the good book says i'm a laying up sin": [65535, 0], "good book says i'm a laying up sin and": [65535, 0], "book says i'm a laying up sin and suffering": [65535, 0], "says i'm a laying up sin and suffering for": [65535, 0], "i'm a laying up sin and suffering for us": [65535, 0], "a laying up sin and suffering for us both": [65535, 0], "laying up sin and suffering for us both i": [65535, 0], "up sin and suffering for us both i know": [65535, 0], "sin and suffering for us both i know he's": [65535, 0], "and suffering for us both i know he's full": [65535, 0], "suffering for us both i know he's full of": [65535, 0], "for us both i know he's full of the": [65535, 0], "us both i know he's full of the old": [65535, 0], "both i know he's full of the old scratch": [65535, 0], "i know he's full of the old scratch but": [65535, 0], "know he's full of the old scratch but laws": [65535, 0], "he's full of the old scratch but laws a": [65535, 0], "full of the old scratch but laws a me": [65535, 0], "of the old scratch but laws a me he's": [65535, 0], "the old scratch but laws a me he's my": [65535, 0], "old scratch but laws a me he's my own": [65535, 0], "scratch but laws a me he's my own dead": [65535, 0], "but laws a me he's my own dead sister's": [65535, 0], "laws a me he's my own dead sister's boy": [65535, 0], "a me he's my own dead sister's boy poor": [65535, 0], "me he's my own dead sister's boy poor thing": [65535, 0], "he's my own dead sister's boy poor thing and": [65535, 0], "my own dead sister's boy poor thing and i": [65535, 0], "own dead sister's boy poor thing and i ain't": [65535, 0], "dead sister's boy poor thing and i ain't got": [65535, 0], "sister's boy poor thing and i ain't got the": [65535, 0], "boy poor thing and i ain't got the heart": [65535, 0], "poor thing and i ain't got the heart to": [65535, 0], "thing and i ain't got the heart to lash": [65535, 0], "and i ain't got the heart to lash him": [65535, 0], "i ain't got the heart to lash him somehow": [65535, 0], "ain't got the heart to lash him somehow every": [65535, 0], "got the heart to lash him somehow every time": [65535, 0], "the heart to lash him somehow every time i": [65535, 0], "heart to lash him somehow every time i let": [65535, 0], "to lash him somehow every time i let him": [65535, 0], "lash him somehow every time i let him off": [65535, 0], "him somehow every time i let him off my": [65535, 0], "somehow every time i let him off my conscience": [65535, 0], "every time i let him off my conscience does": [65535, 0], "time i let him off my conscience does hurt": [65535, 0], "i let him off my conscience does hurt me": [65535, 0], "let him off my conscience does hurt me so": [65535, 0], "him off my conscience does hurt me so and": [65535, 0], "off my conscience does hurt me so and every": [65535, 0], "my conscience does hurt me so and every time": [65535, 0], "conscience does hurt me so and every time i": [65535, 0], "does hurt me so and every time i hit": [65535, 0], "hurt me so and every time i hit him": [65535, 0], "me so and every time i hit him my": [65535, 0], "so and every time i hit him my old": [65535, 0], "and every time i hit him my old heart": [65535, 0], "every time i hit him my old heart most": [65535, 0], "time i hit him my old heart most breaks": [65535, 0], "i hit him my old heart most breaks well": [65535, 0], "hit him my old heart most breaks well a": [65535, 0], "him my old heart most breaks well a well": [65535, 0], "my old heart most breaks well a well man": [65535, 0], "old heart most breaks well a well man that": [65535, 0], "heart most breaks well a well man that is": [65535, 0], "most breaks well a well man that is born": [65535, 0], "breaks well a well man that is born of": [65535, 0], "well a well man that is born of woman": [65535, 0], "a well man that is born of woman is": [65535, 0], "well man that is born of woman is of": [65535, 0], "man that is born of woman is of few": [65535, 0], "that is born of woman is of few days": [65535, 0], "is born of woman is of few days and": [65535, 0], "born of woman is of few days and full": [65535, 0], "of woman is of few days and full of": [65535, 0], "woman is of few days and full of trouble": [65535, 0], "is of few days and full of trouble as": [65535, 0], "of few days and full of trouble as the": [65535, 0], "few days and full of trouble as the scripture": [65535, 0], "days and full of trouble as the scripture says": [65535, 0], "and full of trouble as the scripture says and": [65535, 0], "full of trouble as the scripture says and i": [65535, 0], "of trouble as the scripture says and i reckon": [65535, 0], "trouble as the scripture says and i reckon it's": [65535, 0], "as the scripture says and i reckon it's so": [65535, 0], "the scripture says and i reckon it's so he'll": [65535, 0], "scripture says and i reckon it's so he'll play": [65535, 0], "says and i reckon it's so he'll play hookey": [65535, 0], "and i reckon it's so he'll play hookey this": [65535, 0], "i reckon it's so he'll play hookey this evening": [65535, 0], "reckon it's so he'll play hookey this evening and": [65535, 0], "it's so he'll play hookey this evening and i'll": [65535, 0], "so he'll play hookey this evening and i'll just": [65535, 0], "he'll play hookey this evening and i'll just be": [65535, 0], "play hookey this evening and i'll just be obliged": [65535, 0], "hookey this evening and i'll just be obliged to": [65535, 0], "this evening and i'll just be obliged to make": [65535, 0], "evening and i'll just be obliged to make him": [65535, 0], "and i'll just be obliged to make him work": [65535, 0], "i'll just be obliged to make him work to": [65535, 0], "just be obliged to make him work to morrow": [65535, 0], "be obliged to make him work to morrow to": [65535, 0], "obliged to make him work to morrow to punish": [65535, 0], "to make him work to morrow to punish him": [65535, 0], "make him work to morrow to punish him it's": [65535, 0], "him work to morrow to punish him it's mighty": [65535, 0], "work to morrow to punish him it's mighty hard": [65535, 0], "to morrow to punish him it's mighty hard to": [65535, 0], "morrow to punish him it's mighty hard to make": [65535, 0], "to punish him it's mighty hard to make him": [65535, 0], "punish him it's mighty hard to make him work": [65535, 0], "him it's mighty hard to make him work saturdays": [65535, 0], "it's mighty hard to make him work saturdays when": [65535, 0], "mighty hard to make him work saturdays when all": [65535, 0], "hard to make him work saturdays when all the": [65535, 0], "to make him work saturdays when all the boys": [65535, 0], "make him work saturdays when all the boys is": [65535, 0], "him work saturdays when all the boys is having": [65535, 0], "work saturdays when all the boys is having holiday": [65535, 0], "saturdays when all the boys is having holiday but": [65535, 0], "when all the boys is having holiday but he": [65535, 0], "all the boys is having holiday but he hates": [65535, 0], "the boys is having holiday but he hates work": [65535, 0], "boys is having holiday but he hates work more": [65535, 0], "is having holiday but he hates work more than": [65535, 0], "having holiday but he hates work more than he": [65535, 0], "holiday but he hates work more than he hates": [65535, 0], "but he hates work more than he hates anything": [65535, 0], "he hates work more than he hates anything else": [65535, 0], "hates work more than he hates anything else and": [65535, 0], "work more than he hates anything else and i've": [65535, 0], "more than he hates anything else and i've got": [65535, 0], "than he hates anything else and i've got to": [65535, 0], "he hates anything else and i've got to do": [65535, 0], "hates anything else and i've got to do some": [65535, 0], "anything else and i've got to do some of": [65535, 0], "else and i've got to do some of my": [65535, 0], "and i've got to do some of my duty": [65535, 0], "i've got to do some of my duty by": [65535, 0], "got to do some of my duty by him": [65535, 0], "to do some of my duty by him or": [65535, 0], "do some of my duty by him or i'll": [65535, 0], "some of my duty by him or i'll be": [65535, 0], "of my duty by him or i'll be the": [65535, 0], "my duty by him or i'll be the ruination": [65535, 0], "duty by him or i'll be the ruination of": [65535, 0], "by him or i'll be the ruination of the": [65535, 0], "him or i'll be the ruination of the child": [65535, 0], "or i'll be the ruination of the child tom": [65535, 0], "i'll be the ruination of the child tom did": [65535, 0], "be the ruination of the child tom did play": [65535, 0], "the ruination of the child tom did play hookey": [65535, 0], "ruination of the child tom did play hookey and": [65535, 0], "of the child tom did play hookey and he": [65535, 0], "the child tom did play hookey and he had": [65535, 0], "child tom did play hookey and he had a": [65535, 0], "tom did play hookey and he had a very": [65535, 0], "did play hookey and he had a very good": [65535, 0], "play hookey and he had a very good time": [65535, 0], "hookey and he had a very good time he": [65535, 0], "and he had a very good time he got": [65535, 0], "he had a very good time he got back": [65535, 0], "had a very good time he got back home": [65535, 0], "a very good time he got back home barely": [65535, 0], "very good time he got back home barely in": [65535, 0], "good time he got back home barely in season": [65535, 0], "time he got back home barely in season to": [65535, 0], "he got back home barely in season to help": [65535, 0], "got back home barely in season to help jim": [65535, 0], "back home barely in season to help jim the": [65535, 0], "home barely in season to help jim the small": [65535, 0], "barely in season to help jim the small colored": [65535, 0], "in season to help jim the small colored boy": [65535, 0], "season to help jim the small colored boy saw": [65535, 0], "to help jim the small colored boy saw next": [65535, 0], "help jim the small colored boy saw next day's": [65535, 0], "jim the small colored boy saw next day's wood": [65535, 0], "the small colored boy saw next day's wood and": [65535, 0], "small colored boy saw next day's wood and split": [65535, 0], "colored boy saw next day's wood and split the": [65535, 0], "boy saw next day's wood and split the kindlings": [65535, 0], "saw next day's wood and split the kindlings before": [65535, 0], "next day's wood and split the kindlings before supper": [65535, 0], "day's wood and split the kindlings before supper at": [65535, 0], "wood and split the kindlings before supper at least": [65535, 0], "and split the kindlings before supper at least he": [65535, 0], "split the kindlings before supper at least he was": [65535, 0], "the kindlings before supper at least he was there": [65535, 0], "kindlings before supper at least he was there in": [65535, 0], "before supper at least he was there in time": [65535, 0], "supper at least he was there in time to": [65535, 0], "at least he was there in time to tell": [65535, 0], "least he was there in time to tell his": [65535, 0], "he was there in time to tell his adventures": [65535, 0], "was there in time to tell his adventures to": [65535, 0], "there in time to tell his adventures to jim": [65535, 0], "in time to tell his adventures to jim while": [65535, 0], "time to tell his adventures to jim while jim": [65535, 0], "to tell his adventures to jim while jim did": [65535, 0], "tell his adventures to jim while jim did three": [65535, 0], "his adventures to jim while jim did three fourths": [65535, 0], "adventures to jim while jim did three fourths of": [65535, 0], "to jim while jim did three fourths of the": [65535, 0], "jim while jim did three fourths of the work": [65535, 0], "while jim did three fourths of the work tom's": [65535, 0], "jim did three fourths of the work tom's younger": [65535, 0], "did three fourths of the work tom's younger brother": [65535, 0], "three fourths of the work tom's younger brother or": [65535, 0], "fourths of the work tom's younger brother or rather": [65535, 0], "of the work tom's younger brother or rather half": [65535, 0], "the work tom's younger brother or rather half brother": [65535, 0], "work tom's younger brother or rather half brother sid": [65535, 0], "tom's younger brother or rather half brother sid was": [65535, 0], "younger brother or rather half brother sid was already": [65535, 0], "brother or rather half brother sid was already through": [65535, 0], "or rather half brother sid was already through with": [65535, 0], "rather half brother sid was already through with his": [65535, 0], "half brother sid was already through with his part": [65535, 0], "brother sid was already through with his part of": [65535, 0], "sid was already through with his part of the": [65535, 0], "was already through with his part of the work": [65535, 0], "already through with his part of the work picking": [65535, 0], "through with his part of the work picking up": [65535, 0], "with his part of the work picking up chips": [65535, 0], "his part of the work picking up chips for": [65535, 0], "part of the work picking up chips for he": [65535, 0], "of the work picking up chips for he was": [65535, 0], "the work picking up chips for he was a": [65535, 0], "work picking up chips for he was a quiet": [65535, 0], "picking up chips for he was a quiet boy": [65535, 0], "up chips for he was a quiet boy and": [65535, 0], "chips for he was a quiet boy and had": [65535, 0], "for he was a quiet boy and had no": [65535, 0], "he was a quiet boy and had no adventurous": [65535, 0], "was a quiet boy and had no adventurous troublesome": [65535, 0], "a quiet boy and had no adventurous troublesome ways": [65535, 0], "quiet boy and had no adventurous troublesome ways while": [65535, 0], "boy and had no adventurous troublesome ways while tom": [65535, 0], "and had no adventurous troublesome ways while tom was": [65535, 0], "had no adventurous troublesome ways while tom was eating": [65535, 0], "no adventurous troublesome ways while tom was eating his": [65535, 0], "adventurous troublesome ways while tom was eating his supper": [65535, 0], "troublesome ways while tom was eating his supper and": [65535, 0], "ways while tom was eating his supper and stealing": [65535, 0], "while tom was eating his supper and stealing sugar": [65535, 0], "tom was eating his supper and stealing sugar as": [65535, 0], "was eating his supper and stealing sugar as opportunity": [65535, 0], "eating his supper and stealing sugar as opportunity offered": [65535, 0], "his supper and stealing sugar as opportunity offered aunt": [65535, 0], "supper and stealing sugar as opportunity offered aunt polly": [65535, 0], "and stealing sugar as opportunity offered aunt polly asked": [65535, 0], "stealing sugar as opportunity offered aunt polly asked him": [65535, 0], "sugar as opportunity offered aunt polly asked him questions": [65535, 0], "as opportunity offered aunt polly asked him questions that": [65535, 0], "opportunity offered aunt polly asked him questions that were": [65535, 0], "offered aunt polly asked him questions that were full": [65535, 0], "aunt polly asked him questions that were full of": [65535, 0], "polly asked him questions that were full of guile": [65535, 0], "asked him questions that were full of guile and": [65535, 0], "him questions that were full of guile and very": [65535, 0], "questions that were full of guile and very deep": [65535, 0], "that were full of guile and very deep for": [65535, 0], "were full of guile and very deep for she": [65535, 0], "full of guile and very deep for she wanted": [65535, 0], "of guile and very deep for she wanted to": [65535, 0], "guile and very deep for she wanted to trap": [65535, 0], "and very deep for she wanted to trap him": [65535, 0], "very deep for she wanted to trap him into": [65535, 0], "deep for she wanted to trap him into damaging": [65535, 0], "for she wanted to trap him into damaging revealments": [65535, 0], "she wanted to trap him into damaging revealments like": [65535, 0], "wanted to trap him into damaging revealments like many": [65535, 0], "to trap him into damaging revealments like many other": [65535, 0], "trap him into damaging revealments like many other simple": [65535, 0], "him into damaging revealments like many other simple hearted": [65535, 0], "into damaging revealments like many other simple hearted souls": [65535, 0], "damaging revealments like many other simple hearted souls it": [65535, 0], "revealments like many other simple hearted souls it was": [65535, 0], "like many other simple hearted souls it was her": [65535, 0], "many other simple hearted souls it was her pet": [65535, 0], "other simple hearted souls it was her pet vanity": [65535, 0], "simple hearted souls it was her pet vanity to": [65535, 0], "hearted souls it was her pet vanity to believe": [65535, 0], "souls it was her pet vanity to believe she": [65535, 0], "it was her pet vanity to believe she was": [65535, 0], "was her pet vanity to believe she was endowed": [65535, 0], "her pet vanity to believe she was endowed with": [65535, 0], "pet vanity to believe she was endowed with a": [65535, 0], "vanity to believe she was endowed with a talent": [65535, 0], "to believe she was endowed with a talent for": [65535, 0], "believe she was endowed with a talent for dark": [65535, 0], "she was endowed with a talent for dark and": [65535, 0], "was endowed with a talent for dark and mysterious": [65535, 0], "endowed with a talent for dark and mysterious diplomacy": [65535, 0], "with a talent for dark and mysterious diplomacy and": [65535, 0], "a talent for dark and mysterious diplomacy and she": [65535, 0], "talent for dark and mysterious diplomacy and she loved": [65535, 0], "for dark and mysterious diplomacy and she loved to": [65535, 0], "dark and mysterious diplomacy and she loved to contemplate": [65535, 0], "and mysterious diplomacy and she loved to contemplate her": [65535, 0], "mysterious diplomacy and she loved to contemplate her most": [65535, 0], "diplomacy and she loved to contemplate her most transparent": [65535, 0], "and she loved to contemplate her most transparent devices": [65535, 0], "she loved to contemplate her most transparent devices as": [65535, 0], "loved to contemplate her most transparent devices as marvels": [65535, 0], "to contemplate her most transparent devices as marvels of": [65535, 0], "contemplate her most transparent devices as marvels of low": [65535, 0], "her most transparent devices as marvels of low cunning": [65535, 0], "most transparent devices as marvels of low cunning said": [65535, 0], "transparent devices as marvels of low cunning said she": [65535, 0], "devices as marvels of low cunning said she tom": [65535, 0], "as marvels of low cunning said she tom it": [65535, 0], "marvels of low cunning said she tom it was": [65535, 0], "of low cunning said she tom it was middling": [65535, 0], "low cunning said she tom it was middling warm": [65535, 0], "cunning said she tom it was middling warm in": [65535, 0], "said she tom it was middling warm in school": [65535, 0], "she tom it was middling warm in school warn't": [65535, 0], "tom it was middling warm in school warn't it": [65535, 0], "it was middling warm in school warn't it yes'm": [65535, 0], "was middling warm in school warn't it yes'm powerful": [65535, 0], "middling warm in school warn't it yes'm powerful warm": [65535, 0], "warm in school warn't it yes'm powerful warm warn't": [65535, 0], "in school warn't it yes'm powerful warm warn't it": [65535, 0], "school warn't it yes'm powerful warm warn't it yes'm": [65535, 0], "warn't it yes'm powerful warm warn't it yes'm didn't": [65535, 0], "it yes'm powerful warm warn't it yes'm didn't you": [65535, 0], "yes'm powerful warm warn't it yes'm didn't you want": [65535, 0], "powerful warm warn't it yes'm didn't you want to": [65535, 0], "warm warn't it yes'm didn't you want to go": [65535, 0], "warn't it yes'm didn't you want to go in": [65535, 0], "it yes'm didn't you want to go in a": [65535, 0], "yes'm didn't you want to go in a swimming": [65535, 0], "didn't you want to go in a swimming tom": [65535, 0], "you want to go in a swimming tom a": [65535, 0], "want to go in a swimming tom a bit": [65535, 0], "to go in a swimming tom a bit of": [65535, 0], "go in a swimming tom a bit of a": [65535, 0], "in a swimming tom a bit of a scare": [65535, 0], "a swimming tom a bit of a scare shot": [65535, 0], "swimming tom a bit of a scare shot through": [65535, 0], "tom a bit of a scare shot through tom": [65535, 0], "a bit of a scare shot through tom a": [65535, 0], "bit of a scare shot through tom a touch": [65535, 0], "of a scare shot through tom a touch of": [65535, 0], "a scare shot through tom a touch of uncomfortable": [65535, 0], "scare shot through tom a touch of uncomfortable suspicion": [65535, 0], "shot through tom a touch of uncomfortable suspicion he": [65535, 0], "through tom a touch of uncomfortable suspicion he searched": [65535, 0], "tom a touch of uncomfortable suspicion he searched aunt": [65535, 0], "a touch of uncomfortable suspicion he searched aunt polly's": [65535, 0], "touch of uncomfortable suspicion he searched aunt polly's face": [65535, 0], "of uncomfortable suspicion he searched aunt polly's face but": [65535, 0], "uncomfortable suspicion he searched aunt polly's face but it": [65535, 0], "suspicion he searched aunt polly's face but it told": [65535, 0], "he searched aunt polly's face but it told him": [65535, 0], "searched aunt polly's face but it told him nothing": [65535, 0], "aunt polly's face but it told him nothing so": [65535, 0], "polly's face but it told him nothing so he": [65535, 0], "face but it told him nothing so he said": [65535, 0], "but it told him nothing so he said no'm": [65535, 0], "it told him nothing so he said no'm well": [65535, 0], "told him nothing so he said no'm well not": [65535, 0], "him nothing so he said no'm well not very": [65535, 0], "nothing so he said no'm well not very much": [65535, 0], "so he said no'm well not very much the": [65535, 0], "he said no'm well not very much the old": [65535, 0], "said no'm well not very much the old lady": [65535, 0], "no'm well not very much the old lady reached": [65535, 0], "well not very much the old lady reached out": [65535, 0], "not very much the old lady reached out her": [65535, 0], "very much the old lady reached out her hand": [65535, 0], "much the old lady reached out her hand and": [65535, 0], "the old lady reached out her hand and felt": [65535, 0], "old lady reached out her hand and felt tom's": [65535, 0], "lady reached out her hand and felt tom's shirt": [65535, 0], "reached out her hand and felt tom's shirt and": [65535, 0], "out her hand and felt tom's shirt and said": [65535, 0], "her hand and felt tom's shirt and said but": [65535, 0], "hand and felt tom's shirt and said but you": [65535, 0], "and felt tom's shirt and said but you ain't": [65535, 0], "felt tom's shirt and said but you ain't too": [65535, 0], "tom's shirt and said but you ain't too warm": [65535, 0], "shirt and said but you ain't too warm now": [65535, 0], "and said but you ain't too warm now though": [65535, 0], "said but you ain't too warm now though and": [65535, 0], "but you ain't too warm now though and it": [65535, 0], "you ain't too warm now though and it flattered": [65535, 0], "ain't too warm now though and it flattered her": [65535, 0], "too warm now though and it flattered her to": [65535, 0], "warm now though and it flattered her to reflect": [65535, 0], "now though and it flattered her to reflect that": [65535, 0], "though and it flattered her to reflect that she": [65535, 0], "and it flattered her to reflect that she had": [65535, 0], "it flattered her to reflect that she had discovered": [65535, 0], "flattered her to reflect that she had discovered that": [65535, 0], "her to reflect that she had discovered that the": [65535, 0], "to reflect that she had discovered that the shirt": [65535, 0], "reflect that she had discovered that the shirt was": [65535, 0], "that she had discovered that the shirt was dry": [65535, 0], "she had discovered that the shirt was dry without": [65535, 0], "had discovered that the shirt was dry without anybody": [65535, 0], "discovered that the shirt was dry without anybody knowing": [65535, 0], "that the shirt was dry without anybody knowing that": [65535, 0], "the shirt was dry without anybody knowing that that": [65535, 0], "shirt was dry without anybody knowing that that was": [65535, 0], "was dry without anybody knowing that that was what": [65535, 0], "dry without anybody knowing that that was what she": [65535, 0], "without anybody knowing that that was what she had": [65535, 0], "anybody knowing that that was what she had in": [65535, 0], "knowing that that was what she had in her": [65535, 0], "that that was what she had in her mind": [65535, 0], "that was what she had in her mind but": [65535, 0], "was what she had in her mind but in": [65535, 0], "what she had in her mind but in spite": [65535, 0], "she had in her mind but in spite of": [65535, 0], "had in her mind but in spite of her": [65535, 0], "in her mind but in spite of her tom": [65535, 0], "her mind but in spite of her tom knew": [65535, 0], "mind but in spite of her tom knew where": [65535, 0], "but in spite of her tom knew where the": [65535, 0], "in spite of her tom knew where the wind": [65535, 0], "spite of her tom knew where the wind lay": [65535, 0], "of her tom knew where the wind lay now": [65535, 0], "her tom knew where the wind lay now so": [65535, 0], "tom knew where the wind lay now so he": [65535, 0], "knew where the wind lay now so he forestalled": [65535, 0], "where the wind lay now so he forestalled what": [65535, 0], "the wind lay now so he forestalled what might": [65535, 0], "wind lay now so he forestalled what might be": [65535, 0], "lay now so he forestalled what might be the": [65535, 0], "now so he forestalled what might be the next": [65535, 0], "so he forestalled what might be the next move": [65535, 0], "he forestalled what might be the next move some": [65535, 0], "forestalled what might be the next move some of": [65535, 0], "what might be the next move some of us": [65535, 0], "might be the next move some of us pumped": [65535, 0], "be the next move some of us pumped on": [65535, 0], "the next move some of us pumped on our": [65535, 0], "next move some of us pumped on our heads": [65535, 0], "move some of us pumped on our heads mine's": [65535, 0], "some of us pumped on our heads mine's damp": [65535, 0], "of us pumped on our heads mine's damp yet": [65535, 0], "us pumped on our heads mine's damp yet see": [65535, 0], "pumped on our heads mine's damp yet see aunt": [65535, 0], "on our heads mine's damp yet see aunt polly": [65535, 0], "our heads mine's damp yet see aunt polly was": [65535, 0], "heads mine's damp yet see aunt polly was vexed": [65535, 0], "mine's damp yet see aunt polly was vexed to": [65535, 0], "damp yet see aunt polly was vexed to think": [65535, 0], "yet see aunt polly was vexed to think she": [65535, 0], "see aunt polly was vexed to think she had": [65535, 0], "aunt polly was vexed to think she had overlooked": [65535, 0], "polly was vexed to think she had overlooked that": [65535, 0], "was vexed to think she had overlooked that bit": [65535, 0], "vexed to think she had overlooked that bit of": [65535, 0], "to think she had overlooked that bit of circumstantial": [65535, 0], "think she had overlooked that bit of circumstantial evidence": [65535, 0], "she had overlooked that bit of circumstantial evidence and": [65535, 0], "had overlooked that bit of circumstantial evidence and missed": [65535, 0], "overlooked that bit of circumstantial evidence and missed a": [65535, 0], "that bit of circumstantial evidence and missed a trick": [65535, 0], "bit of circumstantial evidence and missed a trick then": [65535, 0], "of circumstantial evidence and missed a trick then she": [65535, 0], "circumstantial evidence and missed a trick then she had": [65535, 0], "evidence and missed a trick then she had a": [65535, 0], "and missed a trick then she had a new": [65535, 0], "missed a trick then she had a new inspiration": [65535, 0], "a trick then she had a new inspiration tom": [65535, 0], "trick then she had a new inspiration tom you": [65535, 0], "then she had a new inspiration tom you didn't": [65535, 0], "she had a new inspiration tom you didn't have": [65535, 0], "had a new inspiration tom you didn't have to": [65535, 0], "a new inspiration tom you didn't have to undo": [65535, 0], "new inspiration tom you didn't have to undo your": [65535, 0], "inspiration tom you didn't have to undo your shirt": [65535, 0], "tom you didn't have to undo your shirt collar": [65535, 0], "you didn't have to undo your shirt collar where": [65535, 0], "didn't have to undo your shirt collar where i": [65535, 0], "have to undo your shirt collar where i sewed": [65535, 0], "to undo your shirt collar where i sewed it": [65535, 0], "undo your shirt collar where i sewed it to": [65535, 0], "your shirt collar where i sewed it to pump": [65535, 0], "shirt collar where i sewed it to pump on": [65535, 0], "collar where i sewed it to pump on your": [65535, 0], "where i sewed it to pump on your head": [65535, 0], "i sewed it to pump on your head did": [65535, 0], "sewed it to pump on your head did you": [65535, 0], "it to pump on your head did you unbutton": [65535, 0], "to pump on your head did you unbutton your": [65535, 0], "pump on your head did you unbutton your jacket": [65535, 0], "on your head did you unbutton your jacket the": [65535, 0], "your head did you unbutton your jacket the trouble": [65535, 0], "head did you unbutton your jacket the trouble vanished": [65535, 0], "did you unbutton your jacket the trouble vanished out": [65535, 0], "you unbutton your jacket the trouble vanished out of": [65535, 0], "unbutton your jacket the trouble vanished out of tom's": [65535, 0], "your jacket the trouble vanished out of tom's face": [65535, 0], "jacket the trouble vanished out of tom's face he": [65535, 0], "the trouble vanished out of tom's face he opened": [65535, 0], "trouble vanished out of tom's face he opened his": [65535, 0], "vanished out of tom's face he opened his jacket": [65535, 0], "out of tom's face he opened his jacket his": [65535, 0], "of tom's face he opened his jacket his shirt": [65535, 0], "tom's face he opened his jacket his shirt collar": [65535, 0], "face he opened his jacket his shirt collar was": [65535, 0], "he opened his jacket his shirt collar was securely": [65535, 0], "opened his jacket his shirt collar was securely sewed": [65535, 0], "his jacket his shirt collar was securely sewed bother": [65535, 0], "jacket his shirt collar was securely sewed bother well": [65535, 0], "his shirt collar was securely sewed bother well go": [65535, 0], "shirt collar was securely sewed bother well go 'long": [65535, 0], "collar was securely sewed bother well go 'long with": [65535, 0], "was securely sewed bother well go 'long with you": [65535, 0], "securely sewed bother well go 'long with you i'd": [65535, 0], "sewed bother well go 'long with you i'd made": [65535, 0], "bother well go 'long with you i'd made sure": [65535, 0], "well go 'long with you i'd made sure you'd": [65535, 0], "go 'long with you i'd made sure you'd played": [65535, 0], "'long with you i'd made sure you'd played hookey": [65535, 0], "with you i'd made sure you'd played hookey and": [65535, 0], "you i'd made sure you'd played hookey and been": [65535, 0], "i'd made sure you'd played hookey and been a": [65535, 0], "made sure you'd played hookey and been a swimming": [65535, 0], "sure you'd played hookey and been a swimming but": [65535, 0], "you'd played hookey and been a swimming but i": [65535, 0], "played hookey and been a swimming but i forgive": [65535, 0], "hookey and been a swimming but i forgive ye": [65535, 0], "and been a swimming but i forgive ye tom": [65535, 0], "been a swimming but i forgive ye tom i": [65535, 0], "a swimming but i forgive ye tom i reckon": [65535, 0], "swimming but i forgive ye tom i reckon you're": [65535, 0], "but i forgive ye tom i reckon you're a": [65535, 0], "i forgive ye tom i reckon you're a kind": [65535, 0], "forgive ye tom i reckon you're a kind of": [65535, 0], "ye tom i reckon you're a kind of a": [65535, 0], "tom i reckon you're a kind of a singed": [65535, 0], "i reckon you're a kind of a singed cat": [65535, 0], "reckon you're a kind of a singed cat as": [65535, 0], "you're a kind of a singed cat as the": [65535, 0], "a kind of a singed cat as the saying": [65535, 0], "kind of a singed cat as the saying is": [65535, 0], "of a singed cat as the saying is better'n": [65535, 0], "a singed cat as the saying is better'n you": [65535, 0], "singed cat as the saying is better'n you look": [65535, 0], "cat as the saying is better'n you look this": [65535, 0], "as the saying is better'n you look this time": [65535, 0], "the saying is better'n you look this time she": [65535, 0], "saying is better'n you look this time she was": [65535, 0], "is better'n you look this time she was half": [65535, 0], "better'n you look this time she was half sorry": [65535, 0], "you look this time she was half sorry her": [65535, 0], "look this time she was half sorry her sagacity": [65535, 0], "this time she was half sorry her sagacity had": [65535, 0], "time she was half sorry her sagacity had miscarried": [65535, 0], "she was half sorry her sagacity had miscarried and": [65535, 0], "was half sorry her sagacity had miscarried and half": [65535, 0], "half sorry her sagacity had miscarried and half glad": [65535, 0], "sorry her sagacity had miscarried and half glad that": [65535, 0], "her sagacity had miscarried and half glad that tom": [65535, 0], "sagacity had miscarried and half glad that tom had": [65535, 0], "had miscarried and half glad that tom had stumbled": [65535, 0], "miscarried and half glad that tom had stumbled into": [65535, 0], "and half glad that tom had stumbled into obedient": [65535, 0], "half glad that tom had stumbled into obedient conduct": [65535, 0], "glad that tom had stumbled into obedient conduct for": [65535, 0], "that tom had stumbled into obedient conduct for once": [65535, 0], "tom had stumbled into obedient conduct for once but": [65535, 0], "had stumbled into obedient conduct for once but sidney": [65535, 0], "stumbled into obedient conduct for once but sidney said": [65535, 0], "into obedient conduct for once but sidney said well": [65535, 0], "obedient conduct for once but sidney said well now": [65535, 0], "conduct for once but sidney said well now if": [65535, 0], "for once but sidney said well now if i": [65535, 0], "once but sidney said well now if i didn't": [65535, 0], "but sidney said well now if i didn't think": [65535, 0], "sidney said well now if i didn't think you": [65535, 0], "said well now if i didn't think you sewed": [65535, 0], "well now if i didn't think you sewed his": [65535, 0], "now if i didn't think you sewed his collar": [65535, 0], "if i didn't think you sewed his collar with": [65535, 0], "i didn't think you sewed his collar with white": [65535, 0], "didn't think you sewed his collar with white thread": [65535, 0], "think you sewed his collar with white thread but": [65535, 0], "you sewed his collar with white thread but it's": [65535, 0], "sewed his collar with white thread but it's black": [65535, 0], "his collar with white thread but it's black why": [65535, 0], "collar with white thread but it's black why i": [65535, 0], "with white thread but it's black why i did": [65535, 0], "white thread but it's black why i did sew": [65535, 0], "thread but it's black why i did sew it": [65535, 0], "but it's black why i did sew it with": [65535, 0], "it's black why i did sew it with white": [65535, 0], "black why i did sew it with white tom": [65535, 0], "why i did sew it with white tom but": [65535, 0], "i did sew it with white tom but tom": [65535, 0], "did sew it with white tom but tom did": [65535, 0], "sew it with white tom but tom did not": [65535, 0], "it with white tom but tom did not wait": [65535, 0], "with white tom but tom did not wait for": [65535, 0], "white tom but tom did not wait for the": [65535, 0], "tom but tom did not wait for the rest": [65535, 0], "but tom did not wait for the rest as": [65535, 0], "tom did not wait for the rest as he": [65535, 0], "did not wait for the rest as he went": [65535, 0], "not wait for the rest as he went out": [65535, 0], "wait for the rest as he went out at": [65535, 0], "for the rest as he went out at the": [65535, 0], "the rest as he went out at the door": [65535, 0], "rest as he went out at the door he": [65535, 0], "as he went out at the door he said": [65535, 0], "he went out at the door he said siddy": [65535, 0], "went out at the door he said siddy i'll": [65535, 0], "out at the door he said siddy i'll lick": [65535, 0], "at the door he said siddy i'll lick you": [65535, 0], "the door he said siddy i'll lick you for": [65535, 0], "door he said siddy i'll lick you for that": [65535, 0], "he said siddy i'll lick you for that in": [65535, 0], "said siddy i'll lick you for that in a": [65535, 0], "siddy i'll lick you for that in a safe": [65535, 0], "i'll lick you for that in a safe place": [65535, 0], "lick you for that in a safe place tom": [65535, 0], "you for that in a safe place tom examined": [65535, 0], "for that in a safe place tom examined two": [65535, 0], "that in a safe place tom examined two large": [65535, 0], "in a safe place tom examined two large needles": [65535, 0], "a safe place tom examined two large needles which": [65535, 0], "safe place tom examined two large needles which were": [65535, 0], "place tom examined two large needles which were thrust": [65535, 0], "tom examined two large needles which were thrust into": [65535, 0], "examined two large needles which were thrust into the": [65535, 0], "two large needles which were thrust into the lapels": [65535, 0], "large needles which were thrust into the lapels of": [65535, 0], "needles which were thrust into the lapels of his": [65535, 0], "which were thrust into the lapels of his jacket": [65535, 0], "were thrust into the lapels of his jacket and": [65535, 0], "thrust into the lapels of his jacket and had": [65535, 0], "into the lapels of his jacket and had thread": [65535, 0], "the lapels of his jacket and had thread bound": [65535, 0], "lapels of his jacket and had thread bound about": [65535, 0], "of his jacket and had thread bound about them": [65535, 0], "his jacket and had thread bound about them one": [65535, 0], "jacket and had thread bound about them one needle": [65535, 0], "and had thread bound about them one needle carried": [65535, 0], "had thread bound about them one needle carried white": [65535, 0], "thread bound about them one needle carried white thread": [65535, 0], "bound about them one needle carried white thread and": [65535, 0], "about them one needle carried white thread and the": [65535, 0], "them one needle carried white thread and the other": [65535, 0], "one needle carried white thread and the other black": [65535, 0], "needle carried white thread and the other black he": [65535, 0], "carried white thread and the other black he said": [65535, 0], "white thread and the other black he said she'd": [65535, 0], "thread and the other black he said she'd never": [65535, 0], "and the other black he said she'd never noticed": [65535, 0], "the other black he said she'd never noticed if": [65535, 0], "other black he said she'd never noticed if it": [65535, 0], "black he said she'd never noticed if it hadn't": [65535, 0], "he said she'd never noticed if it hadn't been": [65535, 0], "said she'd never noticed if it hadn't been for": [65535, 0], "she'd never noticed if it hadn't been for sid": [65535, 0], "never noticed if it hadn't been for sid confound": [65535, 0], "noticed if it hadn't been for sid confound it": [65535, 0], "if it hadn't been for sid confound it sometimes": [65535, 0], "it hadn't been for sid confound it sometimes she": [65535, 0], "hadn't been for sid confound it sometimes she sews": [65535, 0], "been for sid confound it sometimes she sews it": [65535, 0], "for sid confound it sometimes she sews it with": [65535, 0], "sid confound it sometimes she sews it with white": [65535, 0], "confound it sometimes she sews it with white and": [65535, 0], "it sometimes she sews it with white and sometimes": [65535, 0], "sometimes she sews it with white and sometimes she": [65535, 0], "she sews it with white and sometimes she sews": [65535, 0], "sews it with white and sometimes she sews it": [65535, 0], "it with white and sometimes she sews it with": [65535, 0], "with white and sometimes she sews it with black": [65535, 0], "white and sometimes she sews it with black i": [65535, 0], "and sometimes she sews it with black i wish": [65535, 0], "sometimes she sews it with black i wish to": [65535, 0], "she sews it with black i wish to geeminy": [65535, 0], "sews it with black i wish to geeminy she'd": [65535, 0], "it with black i wish to geeminy she'd stick": [65535, 0], "with black i wish to geeminy she'd stick to": [65535, 0], "black i wish to geeminy she'd stick to one": [65535, 0], "i wish to geeminy she'd stick to one or": [65535, 0], "wish to geeminy she'd stick to one or t'other": [65535, 0], "to geeminy she'd stick to one or t'other i": [65535, 0], "geeminy she'd stick to one or t'other i can't": [65535, 0], "she'd stick to one or t'other i can't keep": [65535, 0], "stick to one or t'other i can't keep the": [65535, 0], "to one or t'other i can't keep the run": [65535, 0], "one or t'other i can't keep the run of": [65535, 0], "or t'other i can't keep the run of 'em": [65535, 0], "t'other i can't keep the run of 'em but": [65535, 0], "i can't keep the run of 'em but i": [65535, 0], "can't keep the run of 'em but i bet": [65535, 0], "keep the run of 'em but i bet you": [65535, 0], "the run of 'em but i bet you i'll": [65535, 0], "run of 'em but i bet you i'll lam": [65535, 0], "of 'em but i bet you i'll lam sid": [65535, 0], "'em but i bet you i'll lam sid for": [65535, 0], "but i bet you i'll lam sid for that": [65535, 0], "i bet you i'll lam sid for that i'll": [65535, 0], "bet you i'll lam sid for that i'll learn": [65535, 0], "you i'll lam sid for that i'll learn him": [65535, 0], "i'll lam sid for that i'll learn him he": [65535, 0], "lam sid for that i'll learn him he was": [65535, 0], "sid for that i'll learn him he was not": [65535, 0], "for that i'll learn him he was not the": [65535, 0], "that i'll learn him he was not the model": [65535, 0], "i'll learn him he was not the model boy": [65535, 0], "learn him he was not the model boy of": [65535, 0], "him he was not the model boy of the": [65535, 0], "he was not the model boy of the village": [65535, 0], "was not the model boy of the village he": [65535, 0], "not the model boy of the village he knew": [65535, 0], "the model boy of the village he knew the": [65535, 0], "model boy of the village he knew the model": [65535, 0], "boy of the village he knew the model boy": [65535, 0], "of the village he knew the model boy very": [65535, 0], "the village he knew the model boy very well": [65535, 0], "village he knew the model boy very well though": [65535, 0], "he knew the model boy very well though and": [65535, 0], "knew the model boy very well though and loathed": [65535, 0], "the model boy very well though and loathed him": [65535, 0], "model boy very well though and loathed him within": [65535, 0], "boy very well though and loathed him within two": [65535, 0], "very well though and loathed him within two minutes": [65535, 0], "well though and loathed him within two minutes or": [65535, 0], "though and loathed him within two minutes or even": [65535, 0], "and loathed him within two minutes or even less": [65535, 0], "loathed him within two minutes or even less he": [65535, 0], "him within two minutes or even less he had": [65535, 0], "within two minutes or even less he had forgotten": [65535, 0], "two minutes or even less he had forgotten all": [65535, 0], "minutes or even less he had forgotten all his": [65535, 0], "or even less he had forgotten all his troubles": [65535, 0], "even less he had forgotten all his troubles not": [65535, 0], "less he had forgotten all his troubles not because": [65535, 0], "he had forgotten all his troubles not because his": [65535, 0], "had forgotten all his troubles not because his troubles": [65535, 0], "forgotten all his troubles not because his troubles were": [65535, 0], "all his troubles not because his troubles were one": [65535, 0], "his troubles not because his troubles were one whit": [65535, 0], "troubles not because his troubles were one whit less": [65535, 0], "not because his troubles were one whit less heavy": [65535, 0], "because his troubles were one whit less heavy and": [65535, 0], "his troubles were one whit less heavy and bitter": [65535, 0], "troubles were one whit less heavy and bitter to": [65535, 0], "were one whit less heavy and bitter to him": [65535, 0], "one whit less heavy and bitter to him than": [65535, 0], "whit less heavy and bitter to him than a": [65535, 0], "less heavy and bitter to him than a man's": [65535, 0], "heavy and bitter to him than a man's are": [65535, 0], "and bitter to him than a man's are to": [65535, 0], "bitter to him than a man's are to a": [65535, 0], "to him than a man's are to a man": [65535, 0], "him than a man's are to a man but": [65535, 0], "than a man's are to a man but because": [65535, 0], "a man's are to a man but because a": [65535, 0], "man's are to a man but because a new": [65535, 0], "are to a man but because a new and": [65535, 0], "to a man but because a new and powerful": [65535, 0], "a man but because a new and powerful interest": [65535, 0], "man but because a new and powerful interest bore": [65535, 0], "but because a new and powerful interest bore them": [65535, 0], "because a new and powerful interest bore them down": [65535, 0], "a new and powerful interest bore them down and": [65535, 0], "new and powerful interest bore them down and drove": [65535, 0], "and powerful interest bore them down and drove them": [65535, 0], "powerful interest bore them down and drove them out": [65535, 0], "interest bore them down and drove them out of": [65535, 0], "bore them down and drove them out of his": [65535, 0], "them down and drove them out of his mind": [65535, 0], "down and drove them out of his mind for": [65535, 0], "and drove them out of his mind for the": [65535, 0], "drove them out of his mind for the time": [65535, 0], "them out of his mind for the time just": [65535, 0], "out of his mind for the time just as": [65535, 0], "of his mind for the time just as men's": [65535, 0], "his mind for the time just as men's misfortunes": [65535, 0], "mind for the time just as men's misfortunes are": [65535, 0], "for the time just as men's misfortunes are forgotten": [65535, 0], "the time just as men's misfortunes are forgotten in": [65535, 0], "time just as men's misfortunes are forgotten in the": [65535, 0], "just as men's misfortunes are forgotten in the excitement": [65535, 0], "as men's misfortunes are forgotten in the excitement of": [65535, 0], "men's misfortunes are forgotten in the excitement of new": [65535, 0], "misfortunes are forgotten in the excitement of new enterprises": [65535, 0], "are forgotten in the excitement of new enterprises this": [65535, 0], "forgotten in the excitement of new enterprises this new": [65535, 0], "in the excitement of new enterprises this new interest": [65535, 0], "the excitement of new enterprises this new interest was": [65535, 0], "excitement of new enterprises this new interest was a": [65535, 0], "of new enterprises this new interest was a valued": [65535, 0], "new enterprises this new interest was a valued novelty": [65535, 0], "enterprises this new interest was a valued novelty in": [65535, 0], "this new interest was a valued novelty in whistling": [65535, 0], "new interest was a valued novelty in whistling which": [65535, 0], "interest was a valued novelty in whistling which he": [65535, 0], "was a valued novelty in whistling which he had": [65535, 0], "a valued novelty in whistling which he had just": [65535, 0], "valued novelty in whistling which he had just acquired": [65535, 0], "novelty in whistling which he had just acquired from": [65535, 0], "in whistling which he had just acquired from a": [65535, 0], "whistling which he had just acquired from a negro": [65535, 0], "which he had just acquired from a negro and": [65535, 0], "he had just acquired from a negro and he": [65535, 0], "had just acquired from a negro and he was": [65535, 0], "just acquired from a negro and he was suffering": [65535, 0], "acquired from a negro and he was suffering to": [65535, 0], "from a negro and he was suffering to practise": [65535, 0], "a negro and he was suffering to practise it": [65535, 0], "negro and he was suffering to practise it undisturbed": [65535, 0], "and he was suffering to practise it undisturbed it": [65535, 0], "he was suffering to practise it undisturbed it consisted": [65535, 0], "was suffering to practise it undisturbed it consisted in": [65535, 0], "suffering to practise it undisturbed it consisted in a": [65535, 0], "to practise it undisturbed it consisted in a peculiar": [65535, 0], "practise it undisturbed it consisted in a peculiar bird": [65535, 0], "it undisturbed it consisted in a peculiar bird like": [65535, 0], "undisturbed it consisted in a peculiar bird like turn": [65535, 0], "it consisted in a peculiar bird like turn a": [65535, 0], "consisted in a peculiar bird like turn a sort": [65535, 0], "in a peculiar bird like turn a sort of": [65535, 0], "a peculiar bird like turn a sort of liquid": [65535, 0], "peculiar bird like turn a sort of liquid warble": [65535, 0], "bird like turn a sort of liquid warble produced": [65535, 0], "like turn a sort of liquid warble produced by": [65535, 0], "turn a sort of liquid warble produced by touching": [65535, 0], "a sort of liquid warble produced by touching the": [65535, 0], "sort of liquid warble produced by touching the tongue": [65535, 0], "of liquid warble produced by touching the tongue to": [65535, 0], "liquid warble produced by touching the tongue to the": [65535, 0], "warble produced by touching the tongue to the roof": [65535, 0], "produced by touching the tongue to the roof of": [65535, 0], "by touching the tongue to the roof of the": [65535, 0], "touching the tongue to the roof of the mouth": [65535, 0], "the tongue to the roof of the mouth at": [65535, 0], "tongue to the roof of the mouth at short": [65535, 0], "to the roof of the mouth at short intervals": [65535, 0], "the roof of the mouth at short intervals in": [65535, 0], "roof of the mouth at short intervals in the": [65535, 0], "of the mouth at short intervals in the midst": [65535, 0], "the mouth at short intervals in the midst of": [65535, 0], "mouth at short intervals in the midst of the": [65535, 0], "at short intervals in the midst of the music": [65535, 0], "short intervals in the midst of the music the": [65535, 0], "intervals in the midst of the music the reader": [65535, 0], "in the midst of the music the reader probably": [65535, 0], "the midst of the music the reader probably remembers": [65535, 0], "midst of the music the reader probably remembers how": [65535, 0], "of the music the reader probably remembers how to": [65535, 0], "the music the reader probably remembers how to do": [65535, 0], "music the reader probably remembers how to do it": [65535, 0], "the reader probably remembers how to do it if": [65535, 0], "reader probably remembers how to do it if he": [65535, 0], "probably remembers how to do it if he has": [65535, 0], "remembers how to do it if he has ever": [65535, 0], "how to do it if he has ever been": [65535, 0], "to do it if he has ever been a": [65535, 0], "do it if he has ever been a boy": [65535, 0], "it if he has ever been a boy diligence": [65535, 0], "if he has ever been a boy diligence and": [65535, 0], "he has ever been a boy diligence and attention": [65535, 0], "has ever been a boy diligence and attention soon": [65535, 0], "ever been a boy diligence and attention soon gave": [65535, 0], "been a boy diligence and attention soon gave him": [65535, 0], "a boy diligence and attention soon gave him the": [65535, 0], "boy diligence and attention soon gave him the knack": [65535, 0], "diligence and attention soon gave him the knack of": [65535, 0], "and attention soon gave him the knack of it": [65535, 0], "attention soon gave him the knack of it and": [65535, 0], "soon gave him the knack of it and he": [65535, 0], "gave him the knack of it and he strode": [65535, 0], "him the knack of it and he strode down": [65535, 0], "the knack of it and he strode down the": [65535, 0], "knack of it and he strode down the street": [65535, 0], "of it and he strode down the street with": [65535, 0], "it and he strode down the street with his": [65535, 0], "and he strode down the street with his mouth": [65535, 0], "he strode down the street with his mouth full": [65535, 0], "strode down the street with his mouth full of": [65535, 0], "down the street with his mouth full of harmony": [65535, 0], "the street with his mouth full of harmony and": [65535, 0], "street with his mouth full of harmony and his": [65535, 0], "with his mouth full of harmony and his soul": [65535, 0], "his mouth full of harmony and his soul full": [65535, 0], "mouth full of harmony and his soul full of": [65535, 0], "full of harmony and his soul full of gratitude": [65535, 0], "of harmony and his soul full of gratitude he": [65535, 0], "harmony and his soul full of gratitude he felt": [65535, 0], "and his soul full of gratitude he felt much": [65535, 0], "his soul full of gratitude he felt much as": [65535, 0], "soul full of gratitude he felt much as an": [65535, 0], "full of gratitude he felt much as an astronomer": [65535, 0], "of gratitude he felt much as an astronomer feels": [65535, 0], "gratitude he felt much as an astronomer feels who": [65535, 0], "he felt much as an astronomer feels who has": [65535, 0], "felt much as an astronomer feels who has discovered": [65535, 0], "much as an astronomer feels who has discovered a": [65535, 0], "as an astronomer feels who has discovered a new": [65535, 0], "an astronomer feels who has discovered a new planet": [65535, 0], "astronomer feels who has discovered a new planet no": [65535, 0], "feels who has discovered a new planet no doubt": [65535, 0], "who has discovered a new planet no doubt as": [65535, 0], "has discovered a new planet no doubt as far": [65535, 0], "discovered a new planet no doubt as far as": [65535, 0], "a new planet no doubt as far as strong": [65535, 0], "new planet no doubt as far as strong deep": [65535, 0], "planet no doubt as far as strong deep unalloyed": [65535, 0], "no doubt as far as strong deep unalloyed pleasure": [65535, 0], "doubt as far as strong deep unalloyed pleasure is": [65535, 0], "as far as strong deep unalloyed pleasure is concerned": [65535, 0], "far as strong deep unalloyed pleasure is concerned the": [65535, 0], "as strong deep unalloyed pleasure is concerned the advantage": [65535, 0], "strong deep unalloyed pleasure is concerned the advantage was": [65535, 0], "deep unalloyed pleasure is concerned the advantage was with": [65535, 0], "unalloyed pleasure is concerned the advantage was with the": [65535, 0], "pleasure is concerned the advantage was with the boy": [65535, 0], "is concerned the advantage was with the boy not": [65535, 0], "concerned the advantage was with the boy not the": [65535, 0], "the advantage was with the boy not the astronomer": [65535, 0], "advantage was with the boy not the astronomer the": [65535, 0], "was with the boy not the astronomer the summer": [65535, 0], "with the boy not the astronomer the summer evenings": [65535, 0], "the boy not the astronomer the summer evenings were": [65535, 0], "boy not the astronomer the summer evenings were long": [65535, 0], "not the astronomer the summer evenings were long it": [65535, 0], "the astronomer the summer evenings were long it was": [65535, 0], "astronomer the summer evenings were long it was not": [65535, 0], "the summer evenings were long it was not dark": [65535, 0], "summer evenings were long it was not dark yet": [65535, 0], "evenings were long it was not dark yet presently": [65535, 0], "were long it was not dark yet presently tom": [65535, 0], "long it was not dark yet presently tom checked": [65535, 0], "it was not dark yet presently tom checked his": [65535, 0], "was not dark yet presently tom checked his whistle": [65535, 0], "not dark yet presently tom checked his whistle a": [65535, 0], "dark yet presently tom checked his whistle a stranger": [65535, 0], "yet presently tom checked his whistle a stranger was": [65535, 0], "presently tom checked his whistle a stranger was before": [65535, 0], "tom checked his whistle a stranger was before him": [65535, 0], "checked his whistle a stranger was before him a": [65535, 0], "his whistle a stranger was before him a boy": [65535, 0], "whistle a stranger was before him a boy a": [65535, 0], "a stranger was before him a boy a shade": [65535, 0], "stranger was before him a boy a shade larger": [65535, 0], "was before him a boy a shade larger than": [65535, 0], "before him a boy a shade larger than himself": [65535, 0], "him a boy a shade larger than himself a": [65535, 0], "a boy a shade larger than himself a new": [65535, 0], "boy a shade larger than himself a new comer": [65535, 0], "a shade larger than himself a new comer of": [65535, 0], "shade larger than himself a new comer of any": [65535, 0], "larger than himself a new comer of any age": [65535, 0], "than himself a new comer of any age or": [65535, 0], "himself a new comer of any age or either": [65535, 0], "a new comer of any age or either sex": [65535, 0], "new comer of any age or either sex was": [65535, 0], "comer of any age or either sex was an": [65535, 0], "of any age or either sex was an impressive": [65535, 0], "any age or either sex was an impressive curiosity": [65535, 0], "age or either sex was an impressive curiosity in": [65535, 0], "or either sex was an impressive curiosity in the": [65535, 0], "either sex was an impressive curiosity in the poor": [65535, 0], "sex was an impressive curiosity in the poor little": [65535, 0], "was an impressive curiosity in the poor little shabby": [65535, 0], "an impressive curiosity in the poor little shabby village": [65535, 0], "impressive curiosity in the poor little shabby village of": [65535, 0], "curiosity in the poor little shabby village of st": [65535, 0], "in the poor little shabby village of st petersburg": [65535, 0], "the poor little shabby village of st petersburg this": [65535, 0], "poor little shabby village of st petersburg this boy": [65535, 0], "little shabby village of st petersburg this boy was": [65535, 0], "shabby village of st petersburg this boy was well": [65535, 0], "village of st petersburg this boy was well dressed": [65535, 0], "of st petersburg this boy was well dressed too": [65535, 0], "st petersburg this boy was well dressed too well": [65535, 0], "petersburg this boy was well dressed too well dressed": [65535, 0], "this boy was well dressed too well dressed on": [65535, 0], "boy was well dressed too well dressed on a": [65535, 0], "was well dressed too well dressed on a week": [65535, 0], "well dressed too well dressed on a week day": [65535, 0], "dressed too well dressed on a week day this": [65535, 0], "too well dressed on a week day this was": [65535, 0], "well dressed on a week day this was simply": [65535, 0], "dressed on a week day this was simply astounding": [65535, 0], "on a week day this was simply astounding his": [65535, 0], "a week day this was simply astounding his cap": [65535, 0], "week day this was simply astounding his cap was": [65535, 0], "day this was simply astounding his cap was a": [65535, 0], "this was simply astounding his cap was a dainty": [65535, 0], "was simply astounding his cap was a dainty thing": [65535, 0], "simply astounding his cap was a dainty thing his": [65535, 0], "astounding his cap was a dainty thing his closebuttoned": [65535, 0], "his cap was a dainty thing his closebuttoned blue": [65535, 0], "cap was a dainty thing his closebuttoned blue cloth": [65535, 0], "was a dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "a dainty thing his closebuttoned blue cloth roundabout was": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout was new": [65535, 0], "thing his closebuttoned blue cloth roundabout was new and": [65535, 0], "his closebuttoned blue cloth roundabout was new and natty": [65535, 0], "closebuttoned blue cloth roundabout was new and natty and": [65535, 0], "blue cloth roundabout was new and natty and so": [65535, 0], "cloth roundabout was new and natty and so were": [65535, 0], "roundabout was new and natty and so were his": [65535, 0], "was new and natty and so were his pantaloons": [65535, 0], "new and natty and so were his pantaloons he": [65535, 0], "and natty and so were his pantaloons he had": [65535, 0], "natty and so were his pantaloons he had shoes": [65535, 0], "and so were his pantaloons he had shoes on": [65535, 0], "so were his pantaloons he had shoes on and": [65535, 0], "were his pantaloons he had shoes on and it": [65535, 0], "his pantaloons he had shoes on and it was": [65535, 0], "pantaloons he had shoes on and it was only": [65535, 0], "he had shoes on and it was only friday": [65535, 0], "had shoes on and it was only friday he": [65535, 0], "shoes on and it was only friday he even": [65535, 0], "on and it was only friday he even wore": [65535, 0], "and it was only friday he even wore a": [65535, 0], "it was only friday he even wore a necktie": [65535, 0], "was only friday he even wore a necktie a": [65535, 0], "only friday he even wore a necktie a bright": [65535, 0], "friday he even wore a necktie a bright bit": [65535, 0], "he even wore a necktie a bright bit of": [65535, 0], "even wore a necktie a bright bit of ribbon": [65535, 0], "wore a necktie a bright bit of ribbon he": [65535, 0], "a necktie a bright bit of ribbon he had": [65535, 0], "necktie a bright bit of ribbon he had a": [65535, 0], "a bright bit of ribbon he had a citified": [65535, 0], "bright bit of ribbon he had a citified air": [65535, 0], "bit of ribbon he had a citified air about": [65535, 0], "of ribbon he had a citified air about him": [65535, 0], "ribbon he had a citified air about him that": [65535, 0], "he had a citified air about him that ate": [65535, 0], "had a citified air about him that ate into": [65535, 0], "a citified air about him that ate into tom's": [65535, 0], "citified air about him that ate into tom's vitals": [65535, 0], "air about him that ate into tom's vitals the": [65535, 0], "about him that ate into tom's vitals the more": [65535, 0], "him that ate into tom's vitals the more tom": [65535, 0], "that ate into tom's vitals the more tom stared": [65535, 0], "ate into tom's vitals the more tom stared at": [65535, 0], "into tom's vitals the more tom stared at the": [65535, 0], "tom's vitals the more tom stared at the splendid": [65535, 0], "vitals the more tom stared at the splendid marvel": [65535, 0], "the more tom stared at the splendid marvel the": [65535, 0], "more tom stared at the splendid marvel the higher": [65535, 0], "tom stared at the splendid marvel the higher he": [65535, 0], "stared at the splendid marvel the higher he turned": [65535, 0], "at the splendid marvel the higher he turned up": [65535, 0], "the splendid marvel the higher he turned up his": [65535, 0], "splendid marvel the higher he turned up his nose": [65535, 0], "marvel the higher he turned up his nose at": [65535, 0], "the higher he turned up his nose at his": [65535, 0], "higher he turned up his nose at his finery": [65535, 0], "he turned up his nose at his finery and": [65535, 0], "turned up his nose at his finery and the": [65535, 0], "up his nose at his finery and the shabbier": [65535, 0], "his nose at his finery and the shabbier and": [65535, 0], "nose at his finery and the shabbier and shabbier": [65535, 0], "at his finery and the shabbier and shabbier his": [65535, 0], "his finery and the shabbier and shabbier his own": [65535, 0], "finery and the shabbier and shabbier his own outfit": [65535, 0], "and the shabbier and shabbier his own outfit seemed": [65535, 0], "the shabbier and shabbier his own outfit seemed to": [65535, 0], "shabbier and shabbier his own outfit seemed to him": [65535, 0], "and shabbier his own outfit seemed to him to": [65535, 0], "shabbier his own outfit seemed to him to grow": [65535, 0], "his own outfit seemed to him to grow neither": [65535, 0], "own outfit seemed to him to grow neither boy": [65535, 0], "outfit seemed to him to grow neither boy spoke": [65535, 0], "seemed to him to grow neither boy spoke if": [65535, 0], "to him to grow neither boy spoke if one": [65535, 0], "him to grow neither boy spoke if one moved": [65535, 0], "to grow neither boy spoke if one moved the": [65535, 0], "grow neither boy spoke if one moved the other": [65535, 0], "neither boy spoke if one moved the other moved": [65535, 0], "boy spoke if one moved the other moved but": [65535, 0], "spoke if one moved the other moved but only": [65535, 0], "if one moved the other moved but only sidewise": [65535, 0], "one moved the other moved but only sidewise in": [65535, 0], "moved the other moved but only sidewise in a": [65535, 0], "the other moved but only sidewise in a circle": [65535, 0], "other moved but only sidewise in a circle they": [65535, 0], "moved but only sidewise in a circle they kept": [65535, 0], "but only sidewise in a circle they kept face": [65535, 0], "only sidewise in a circle they kept face to": [65535, 0], "sidewise in a circle they kept face to face": [65535, 0], "in a circle they kept face to face and": [65535, 0], "a circle they kept face to face and eye": [65535, 0], "circle they kept face to face and eye to": [65535, 0], "they kept face to face and eye to eye": [65535, 0], "kept face to face and eye to eye all": [65535, 0], "face to face and eye to eye all the": [65535, 0], "to face and eye to eye all the time": [65535, 0], "face and eye to eye all the time finally": [65535, 0], "and eye to eye all the time finally tom": [65535, 0], "eye to eye all the time finally tom said": [65535, 0], "to eye all the time finally tom said i": [65535, 0], "eye all the time finally tom said i can": [65535, 0], "all the time finally tom said i can lick": [65535, 0], "the time finally tom said i can lick you": [65535, 0], "time finally tom said i can lick you i'd": [65535, 0], "finally tom said i can lick you i'd like": [65535, 0], "tom said i can lick you i'd like to": [65535, 0], "said i can lick you i'd like to see": [65535, 0], "i can lick you i'd like to see you": [65535, 0], "can lick you i'd like to see you try": [65535, 0], "lick you i'd like to see you try it": [65535, 0], "you i'd like to see you try it well": [65535, 0], "i'd like to see you try it well i": [65535, 0], "like to see you try it well i can": [65535, 0], "to see you try it well i can do": [65535, 0], "see you try it well i can do it": [65535, 0], "you try it well i can do it no": [65535, 0], "try it well i can do it no you": [65535, 0], "it well i can do it no you can't": [65535, 0], "well i can do it no you can't either": [65535, 0], "i can do it no you can't either yes": [65535, 0], "can do it no you can't either yes i": [65535, 0], "do it no you can't either yes i can": [65535, 0], "it no you can't either yes i can no": [65535, 0], "no you can't either yes i can no you": [65535, 0], "you can't either yes i can no you can't": [65535, 0], "can't either yes i can no you can't i": [65535, 0], "either yes i can no you can't i can": [65535, 0], "yes i can no you can't i can you": [65535, 0], "i can no you can't i can you can't": [65535, 0], "can no you can't i can you can't can": [65535, 0], "no you can't i can you can't can can't": [65535, 0], "you can't i can you can't can can't an": [65535, 0], "can't i can you can't can can't an uncomfortable": [65535, 0], "i can you can't can can't an uncomfortable pause": [65535, 0], "can you can't can can't an uncomfortable pause then": [65535, 0], "you can't can can't an uncomfortable pause then tom": [65535, 0], "can't can can't an uncomfortable pause then tom said": [65535, 0], "can can't an uncomfortable pause then tom said what's": [65535, 0], "can't an uncomfortable pause then tom said what's your": [65535, 0], "an uncomfortable pause then tom said what's your name": [65535, 0], "uncomfortable pause then tom said what's your name 'tisn't": [65535, 0], "pause then tom said what's your name 'tisn't any": [65535, 0], "then tom said what's your name 'tisn't any of": [65535, 0], "tom said what's your name 'tisn't any of your": [65535, 0], "said what's your name 'tisn't any of your business": [65535, 0], "what's your name 'tisn't any of your business maybe": [65535, 0], "your name 'tisn't any of your business maybe well": [65535, 0], "name 'tisn't any of your business maybe well i": [65535, 0], "'tisn't any of your business maybe well i 'low": [65535, 0], "any of your business maybe well i 'low i'll": [65535, 0], "of your business maybe well i 'low i'll make": [65535, 0], "your business maybe well i 'low i'll make it": [65535, 0], "business maybe well i 'low i'll make it my": [65535, 0], "maybe well i 'low i'll make it my business": [65535, 0], "well i 'low i'll make it my business well": [65535, 0], "i 'low i'll make it my business well why": [65535, 0], "'low i'll make it my business well why don't": [65535, 0], "i'll make it my business well why don't you": [65535, 0], "make it my business well why don't you if": [65535, 0], "it my business well why don't you if you": [65535, 0], "my business well why don't you if you say": [65535, 0], "business well why don't you if you say much": [65535, 0], "well why don't you if you say much i": [65535, 0], "why don't you if you say much i will": [65535, 0], "don't you if you say much i will much": [65535, 0], "you if you say much i will much much": [65535, 0], "if you say much i will much much much": [65535, 0], "you say much i will much much much there": [65535, 0], "say much i will much much much there now": [65535, 0], "much i will much much much there now oh": [65535, 0], "i will much much much there now oh you": [65535, 0], "will much much much there now oh you think": [65535, 0], "much much much there now oh you think you're": [65535, 0], "much much there now oh you think you're mighty": [65535, 0], "much there now oh you think you're mighty smart": [65535, 0], "there now oh you think you're mighty smart don't": [65535, 0], "now oh you think you're mighty smart don't you": [65535, 0], "oh you think you're mighty smart don't you i": [65535, 0], "you think you're mighty smart don't you i could": [65535, 0], "think you're mighty smart don't you i could lick": [65535, 0], "you're mighty smart don't you i could lick you": [65535, 0], "mighty smart don't you i could lick you with": [65535, 0], "smart don't you i could lick you with one": [65535, 0], "don't you i could lick you with one hand": [65535, 0], "you i could lick you with one hand tied": [65535, 0], "i could lick you with one hand tied behind": [65535, 0], "could lick you with one hand tied behind me": [65535, 0], "lick you with one hand tied behind me if": [65535, 0], "you with one hand tied behind me if i": [65535, 0], "with one hand tied behind me if i wanted": [65535, 0], "one hand tied behind me if i wanted to": [65535, 0], "hand tied behind me if i wanted to well": [65535, 0], "tied behind me if i wanted to well why": [65535, 0], "behind me if i wanted to well why don't": [65535, 0], "me if i wanted to well why don't you": [65535, 0], "if i wanted to well why don't you do": [65535, 0], "i wanted to well why don't you do it": [65535, 0], "wanted to well why don't you do it you": [65535, 0], "to well why don't you do it you say": [65535, 0], "well why don't you do it you say you": [65535, 0], "why don't you do it you say you can": [65535, 0], "don't you do it you say you can do": [65535, 0], "you do it you say you can do it": [65535, 0], "do it you say you can do it well": [65535, 0], "it you say you can do it well i": [65535, 0], "you say you can do it well i will": [65535, 0], "say you can do it well i will if": [65535, 0], "you can do it well i will if you": [65535, 0], "can do it well i will if you fool": [65535, 0], "do it well i will if you fool with": [65535, 0], "it well i will if you fool with me": [65535, 0], "well i will if you fool with me oh": [65535, 0], "i will if you fool with me oh yes": [65535, 0], "will if you fool with me oh yes i've": [65535, 0], "if you fool with me oh yes i've seen": [65535, 0], "you fool with me oh yes i've seen whole": [65535, 0], "fool with me oh yes i've seen whole families": [65535, 0], "with me oh yes i've seen whole families in": [65535, 0], "me oh yes i've seen whole families in the": [65535, 0], "oh yes i've seen whole families in the same": [65535, 0], "yes i've seen whole families in the same fix": [65535, 0], "i've seen whole families in the same fix smarty": [65535, 0], "seen whole families in the same fix smarty you": [65535, 0], "whole families in the same fix smarty you think": [65535, 0], "families in the same fix smarty you think you're": [65535, 0], "in the same fix smarty you think you're some": [65535, 0], "the same fix smarty you think you're some now": [65535, 0], "same fix smarty you think you're some now don't": [65535, 0], "fix smarty you think you're some now don't you": [65535, 0], "smarty you think you're some now don't you oh": [65535, 0], "you think you're some now don't you oh what": [65535, 0], "think you're some now don't you oh what a": [65535, 0], "you're some now don't you oh what a hat": [65535, 0], "some now don't you oh what a hat you": [65535, 0], "now don't you oh what a hat you can": [65535, 0], "don't you oh what a hat you can lump": [65535, 0], "you oh what a hat you can lump that": [65535, 0], "oh what a hat you can lump that hat": [65535, 0], "what a hat you can lump that hat if": [65535, 0], "a hat you can lump that hat if you": [65535, 0], "hat you can lump that hat if you don't": [65535, 0], "you can lump that hat if you don't like": [65535, 0], "can lump that hat if you don't like it": [65535, 0], "lump that hat if you don't like it i": [65535, 0], "that hat if you don't like it i dare": [65535, 0], "hat if you don't like it i dare you": [65535, 0], "if you don't like it i dare you to": [65535, 0], "you don't like it i dare you to knock": [65535, 0], "don't like it i dare you to knock it": [65535, 0], "like it i dare you to knock it off": [65535, 0], "it i dare you to knock it off and": [65535, 0], "i dare you to knock it off and anybody": [65535, 0], "dare you to knock it off and anybody that'll": [65535, 0], "you to knock it off and anybody that'll take": [65535, 0], "to knock it off and anybody that'll take a": [65535, 0], "knock it off and anybody that'll take a dare": [65535, 0], "it off and anybody that'll take a dare will": [65535, 0], "off and anybody that'll take a dare will suck": [65535, 0], "and anybody that'll take a dare will suck eggs": [65535, 0], "anybody that'll take a dare will suck eggs you're": [65535, 0], "that'll take a dare will suck eggs you're a": [65535, 0], "take a dare will suck eggs you're a liar": [65535, 0], "a dare will suck eggs you're a liar you're": [65535, 0], "dare will suck eggs you're a liar you're another": [65535, 0], "will suck eggs you're a liar you're another you're": [65535, 0], "suck eggs you're a liar you're another you're a": [65535, 0], "eggs you're a liar you're another you're a fighting": [65535, 0], "you're a liar you're another you're a fighting liar": [65535, 0], "a liar you're another you're a fighting liar and": [65535, 0], "liar you're another you're a fighting liar and dasn't": [65535, 0], "you're another you're a fighting liar and dasn't take": [65535, 0], "another you're a fighting liar and dasn't take it": [65535, 0], "you're a fighting liar and dasn't take it up": [65535, 0], "a fighting liar and dasn't take it up aw": [65535, 0], "fighting liar and dasn't take it up aw take": [65535, 0], "liar and dasn't take it up aw take a": [65535, 0], "and dasn't take it up aw take a walk": [65535, 0], "dasn't take it up aw take a walk say": [65535, 0], "take it up aw take a walk say if": [65535, 0], "it up aw take a walk say if you": [65535, 0], "up aw take a walk say if you give": [65535, 0], "aw take a walk say if you give me": [65535, 0], "take a walk say if you give me much": [65535, 0], "a walk say if you give me much more": [65535, 0], "walk say if you give me much more of": [65535, 0], "say if you give me much more of your": [65535, 0], "if you give me much more of your sass": [65535, 0], "you give me much more of your sass i'll": [65535, 0], "give me much more of your sass i'll take": [65535, 0], "me much more of your sass i'll take and": [65535, 0], "much more of your sass i'll take and bounce": [65535, 0], "more of your sass i'll take and bounce a": [65535, 0], "of your sass i'll take and bounce a rock": [65535, 0], "your sass i'll take and bounce a rock off'n": [65535, 0], "sass i'll take and bounce a rock off'n your": [65535, 0], "i'll take and bounce a rock off'n your head": [65535, 0], "take and bounce a rock off'n your head oh": [65535, 0], "and bounce a rock off'n your head oh of": [65535, 0], "bounce a rock off'n your head oh of course": [65535, 0], "a rock off'n your head oh of course you": [65535, 0], "rock off'n your head oh of course you will": [65535, 0], "off'n your head oh of course you will well": [65535, 0], "your head oh of course you will well i": [65535, 0], "head oh of course you will well i will": [65535, 0], "oh of course you will well i will well": [65535, 0], "of course you will well i will well why": [65535, 0], "course you will well i will well why don't": [65535, 0], "you will well i will well why don't you": [65535, 0], "will well i will well why don't you do": [65535, 0], "well i will well why don't you do it": [65535, 0], "i will well why don't you do it then": [65535, 0], "will well why don't you do it then what": [65535, 0], "well why don't you do it then what do": [65535, 0], "why don't you do it then what do you": [65535, 0], "don't you do it then what do you keep": [65535, 0], "you do it then what do you keep saying": [65535, 0], "do it then what do you keep saying you": [65535, 0], "it then what do you keep saying you will": [65535, 0], "then what do you keep saying you will for": [65535, 0], "what do you keep saying you will for why": [65535, 0], "do you keep saying you will for why don't": [65535, 0], "you keep saying you will for why don't you": [65535, 0], "keep saying you will for why don't you do": [65535, 0], "saying you will for why don't you do it": [65535, 0], "you will for why don't you do it it's": [65535, 0], "will for why don't you do it it's because": [65535, 0], "for why don't you do it it's because you're": [65535, 0], "why don't you do it it's because you're afraid": [65535, 0], "don't you do it it's because you're afraid i": [65535, 0], "you do it it's because you're afraid i ain't": [65535, 0], "do it it's because you're afraid i ain't afraid": [65535, 0], "it it's because you're afraid i ain't afraid you": [65535, 0], "it's because you're afraid i ain't afraid you are": [65535, 0], "because you're afraid i ain't afraid you are i": [65535, 0], "you're afraid i ain't afraid you are i ain't": [65535, 0], "afraid i ain't afraid you are i ain't you": [65535, 0], "i ain't afraid you are i ain't you are": [65535, 0], "ain't afraid you are i ain't you are another": [65535, 0], "afraid you are i ain't you are another pause": [65535, 0], "you are i ain't you are another pause and": [65535, 0], "are i ain't you are another pause and more": [65535, 0], "i ain't you are another pause and more eying": [65535, 0], "ain't you are another pause and more eying and": [65535, 0], "you are another pause and more eying and sidling": [65535, 0], "are another pause and more eying and sidling around": [65535, 0], "another pause and more eying and sidling around each": [65535, 0], "pause and more eying and sidling around each other": [65535, 0], "and more eying and sidling around each other presently": [65535, 0], "more eying and sidling around each other presently they": [65535, 0], "eying and sidling around each other presently they were": [65535, 0], "and sidling around each other presently they were shoulder": [65535, 0], "sidling around each other presently they were shoulder to": [65535, 0], "around each other presently they were shoulder to shoulder": [65535, 0], "each other presently they were shoulder to shoulder tom": [65535, 0], "other presently they were shoulder to shoulder tom said": [65535, 0], "presently they were shoulder to shoulder tom said get": [65535, 0], "they were shoulder to shoulder tom said get away": [65535, 0], "were shoulder to shoulder tom said get away from": [65535, 0], "shoulder to shoulder tom said get away from here": [65535, 0], "to shoulder tom said get away from here go": [65535, 0], "shoulder tom said get away from here go away": [65535, 0], "tom said get away from here go away yourself": [65535, 0], "said get away from here go away yourself i": [65535, 0], "get away from here go away yourself i won't": [65535, 0], "away from here go away yourself i won't i": [65535, 0], "from here go away yourself i won't i won't": [65535, 0], "here go away yourself i won't i won't either": [65535, 0], "go away yourself i won't i won't either so": [65535, 0], "away yourself i won't i won't either so they": [65535, 0], "yourself i won't i won't either so they stood": [65535, 0], "i won't i won't either so they stood each": [65535, 0], "won't i won't either so they stood each with": [65535, 0], "i won't either so they stood each with a": [65535, 0], "won't either so they stood each with a foot": [65535, 0], "either so they stood each with a foot placed": [65535, 0], "so they stood each with a foot placed at": [65535, 0], "they stood each with a foot placed at an": [65535, 0], "stood each with a foot placed at an angle": [65535, 0], "each with a foot placed at an angle as": [65535, 0], "with a foot placed at an angle as a": [65535, 0], "a foot placed at an angle as a brace": [65535, 0], "foot placed at an angle as a brace and": [65535, 0], "placed at an angle as a brace and both": [65535, 0], "at an angle as a brace and both shoving": [65535, 0], "an angle as a brace and both shoving with": [65535, 0], "angle as a brace and both shoving with might": [65535, 0], "as a brace and both shoving with might and": [65535, 0], "a brace and both shoving with might and main": [65535, 0], "brace and both shoving with might and main and": [65535, 0], "and both shoving with might and main and glowering": [65535, 0], "both shoving with might and main and glowering at": [65535, 0], "shoving with might and main and glowering at each": [65535, 0], "with might and main and glowering at each other": [65535, 0], "might and main and glowering at each other with": [65535, 0], "and main and glowering at each other with hate": [65535, 0], "main and glowering at each other with hate but": [65535, 0], "and glowering at each other with hate but neither": [65535, 0], "glowering at each other with hate but neither could": [65535, 0], "at each other with hate but neither could get": [65535, 0], "each other with hate but neither could get an": [65535, 0], "other with hate but neither could get an advantage": [65535, 0], "with hate but neither could get an advantage after": [65535, 0], "hate but neither could get an advantage after struggling": [65535, 0], "but neither could get an advantage after struggling till": [65535, 0], "neither could get an advantage after struggling till both": [65535, 0], "could get an advantage after struggling till both were": [65535, 0], "get an advantage after struggling till both were hot": [65535, 0], "an advantage after struggling till both were hot and": [65535, 0], "advantage after struggling till both were hot and flushed": [65535, 0], "after struggling till both were hot and flushed each": [65535, 0], "struggling till both were hot and flushed each relaxed": [65535, 0], "till both were hot and flushed each relaxed his": [65535, 0], "both were hot and flushed each relaxed his strain": [65535, 0], "were hot and flushed each relaxed his strain with": [65535, 0], "hot and flushed each relaxed his strain with watchful": [65535, 0], "and flushed each relaxed his strain with watchful caution": [65535, 0], "flushed each relaxed his strain with watchful caution and": [65535, 0], "each relaxed his strain with watchful caution and tom": [65535, 0], "relaxed his strain with watchful caution and tom said": [65535, 0], "his strain with watchful caution and tom said you're": [65535, 0], "strain with watchful caution and tom said you're a": [65535, 0], "with watchful caution and tom said you're a coward": [65535, 0], "watchful caution and tom said you're a coward and": [65535, 0], "caution and tom said you're a coward and a": [65535, 0], "and tom said you're a coward and a pup": [65535, 0], "tom said you're a coward and a pup i'll": [65535, 0], "said you're a coward and a pup i'll tell": [65535, 0], "you're a coward and a pup i'll tell my": [65535, 0], "a coward and a pup i'll tell my big": [65535, 0], "coward and a pup i'll tell my big brother": [65535, 0], "and a pup i'll tell my big brother on": [65535, 0], "a pup i'll tell my big brother on you": [65535, 0], "pup i'll tell my big brother on you and": [65535, 0], "i'll tell my big brother on you and he": [65535, 0], "tell my big brother on you and he can": [65535, 0], "my big brother on you and he can thrash": [65535, 0], "big brother on you and he can thrash you": [65535, 0], "brother on you and he can thrash you with": [65535, 0], "on you and he can thrash you with his": [65535, 0], "you and he can thrash you with his little": [65535, 0], "and he can thrash you with his little finger": [65535, 0], "he can thrash you with his little finger and": [65535, 0], "can thrash you with his little finger and i'll": [65535, 0], "thrash you with his little finger and i'll make": [65535, 0], "you with his little finger and i'll make him": [65535, 0], "with his little finger and i'll make him do": [65535, 0], "his little finger and i'll make him do it": [65535, 0], "little finger and i'll make him do it too": [65535, 0], "finger and i'll make him do it too what": [65535, 0], "and i'll make him do it too what do": [65535, 0], "i'll make him do it too what do i": [65535, 0], "make him do it too what do i care": [65535, 0], "him do it too what do i care for": [65535, 0], "do it too what do i care for your": [65535, 0], "it too what do i care for your big": [65535, 0], "too what do i care for your big brother": [65535, 0], "what do i care for your big brother i've": [65535, 0], "do i care for your big brother i've got": [65535, 0], "i care for your big brother i've got a": [65535, 0], "care for your big brother i've got a brother": [65535, 0], "for your big brother i've got a brother that's": [65535, 0], "your big brother i've got a brother that's bigger": [65535, 0], "big brother i've got a brother that's bigger than": [65535, 0], "brother i've got a brother that's bigger than he": [65535, 0], "i've got a brother that's bigger than he is": [65535, 0], "got a brother that's bigger than he is and": [65535, 0], "a brother that's bigger than he is and what's": [65535, 0], "brother that's bigger than he is and what's more": [65535, 0], "that's bigger than he is and what's more he": [65535, 0], "bigger than he is and what's more he can": [65535, 0], "than he is and what's more he can throw": [65535, 0], "he is and what's more he can throw him": [65535, 0], "is and what's more he can throw him over": [65535, 0], "and what's more he can throw him over that": [65535, 0], "what's more he can throw him over that fence": [65535, 0], "more he can throw him over that fence too": [65535, 0], "he can throw him over that fence too both": [65535, 0], "can throw him over that fence too both brothers": [65535, 0], "throw him over that fence too both brothers were": [65535, 0], "him over that fence too both brothers were imaginary": [65535, 0], "over that fence too both brothers were imaginary that's": [65535, 0], "that fence too both brothers were imaginary that's a": [65535, 0], "fence too both brothers were imaginary that's a lie": [65535, 0], "too both brothers were imaginary that's a lie your": [65535, 0], "both brothers were imaginary that's a lie your saying": [65535, 0], "brothers were imaginary that's a lie your saying so": [65535, 0], "were imaginary that's a lie your saying so don't": [65535, 0], "imaginary that's a lie your saying so don't make": [65535, 0], "that's a lie your saying so don't make it": [65535, 0], "a lie your saying so don't make it so": [65535, 0], "lie your saying so don't make it so tom": [65535, 0], "your saying so don't make it so tom drew": [65535, 0], "saying so don't make it so tom drew a": [65535, 0], "so don't make it so tom drew a line": [65535, 0], "don't make it so tom drew a line in": [65535, 0], "make it so tom drew a line in the": [65535, 0], "it so tom drew a line in the dust": [65535, 0], "so tom drew a line in the dust with": [65535, 0], "tom drew a line in the dust with his": [65535, 0], "drew a line in the dust with his big": [65535, 0], "a line in the dust with his big toe": [65535, 0], "line in the dust with his big toe and": [65535, 0], "in the dust with his big toe and said": [65535, 0], "the dust with his big toe and said i": [65535, 0], "dust with his big toe and said i dare": [65535, 0], "with his big toe and said i dare you": [65535, 0], "his big toe and said i dare you to": [65535, 0], "big toe and said i dare you to step": [65535, 0], "toe and said i dare you to step over": [65535, 0], "and said i dare you to step over that": [65535, 0], "said i dare you to step over that and": [65535, 0], "i dare you to step over that and i'll": [65535, 0], "dare you to step over that and i'll lick": [65535, 0], "you to step over that and i'll lick you": [65535, 0], "to step over that and i'll lick you till": [65535, 0], "step over that and i'll lick you till you": [65535, 0], "over that and i'll lick you till you can't": [65535, 0], "that and i'll lick you till you can't stand": [65535, 0], "and i'll lick you till you can't stand up": [65535, 0], "i'll lick you till you can't stand up anybody": [65535, 0], "lick you till you can't stand up anybody that'll": [65535, 0], "you till you can't stand up anybody that'll take": [65535, 0], "till you can't stand up anybody that'll take a": [65535, 0], "you can't stand up anybody that'll take a dare": [65535, 0], "can't stand up anybody that'll take a dare will": [65535, 0], "stand up anybody that'll take a dare will steal": [65535, 0], "up anybody that'll take a dare will steal sheep": [65535, 0], "anybody that'll take a dare will steal sheep the": [65535, 0], "that'll take a dare will steal sheep the new": [65535, 0], "take a dare will steal sheep the new boy": [65535, 0], "a dare will steal sheep the new boy stepped": [65535, 0], "dare will steal sheep the new boy stepped over": [65535, 0], "will steal sheep the new boy stepped over promptly": [65535, 0], "steal sheep the new boy stepped over promptly and": [65535, 0], "sheep the new boy stepped over promptly and said": [65535, 0], "the new boy stepped over promptly and said now": [65535, 0], "new boy stepped over promptly and said now you": [65535, 0], "boy stepped over promptly and said now you said": [65535, 0], "stepped over promptly and said now you said you'd": [65535, 0], "over promptly and said now you said you'd do": [65535, 0], "promptly and said now you said you'd do it": [65535, 0], "and said now you said you'd do it now": [65535, 0], "said now you said you'd do it now let's": [65535, 0], "now you said you'd do it now let's see": [65535, 0], "you said you'd do it now let's see you": [65535, 0], "said you'd do it now let's see you do": [65535, 0], "you'd do it now let's see you do it": [65535, 0], "do it now let's see you do it don't": [65535, 0], "it now let's see you do it don't you": [65535, 0], "now let's see you do it don't you crowd": [65535, 0], "let's see you do it don't you crowd me": [65535, 0], "see you do it don't you crowd me now": [65535, 0], "you do it don't you crowd me now you": [65535, 0], "do it don't you crowd me now you better": [65535, 0], "it don't you crowd me now you better look": [65535, 0], "don't you crowd me now you better look out": [65535, 0], "you crowd me now you better look out well": [65535, 0], "crowd me now you better look out well you": [65535, 0], "me now you better look out well you said": [65535, 0], "now you better look out well you said you'd": [65535, 0], "you better look out well you said you'd do": [65535, 0], "better look out well you said you'd do it": [65535, 0], "look out well you said you'd do it why": [65535, 0], "out well you said you'd do it why don't": [65535, 0], "well you said you'd do it why don't you": [65535, 0], "you said you'd do it why don't you do": [65535, 0], "said you'd do it why don't you do it": [65535, 0], "you'd do it why don't you do it by": [65535, 0], "do it why don't you do it by jingo": [65535, 0], "it why don't you do it by jingo for": [65535, 0], "why don't you do it by jingo for two": [65535, 0], "don't you do it by jingo for two cents": [65535, 0], "you do it by jingo for two cents i": [65535, 0], "do it by jingo for two cents i will": [65535, 0], "it by jingo for two cents i will do": [65535, 0], "by jingo for two cents i will do it": [65535, 0], "jingo for two cents i will do it the": [65535, 0], "for two cents i will do it the new": [65535, 0], "two cents i will do it the new boy": [65535, 0], "cents i will do it the new boy took": [65535, 0], "i will do it the new boy took two": [65535, 0], "will do it the new boy took two broad": [65535, 0], "do it the new boy took two broad coppers": [65535, 0], "it the new boy took two broad coppers out": [65535, 0], "the new boy took two broad coppers out of": [65535, 0], "new boy took two broad coppers out of his": [65535, 0], "boy took two broad coppers out of his pocket": [65535, 0], "took two broad coppers out of his pocket and": [65535, 0], "two broad coppers out of his pocket and held": [65535, 0], "broad coppers out of his pocket and held them": [65535, 0], "coppers out of his pocket and held them out": [65535, 0], "out of his pocket and held them out with": [65535, 0], "of his pocket and held them out with derision": [65535, 0], "his pocket and held them out with derision tom": [65535, 0], "pocket and held them out with derision tom struck": [65535, 0], "and held them out with derision tom struck them": [65535, 0], "held them out with derision tom struck them to": [65535, 0], "them out with derision tom struck them to the": [65535, 0], "out with derision tom struck them to the ground": [65535, 0], "with derision tom struck them to the ground in": [65535, 0], "derision tom struck them to the ground in an": [65535, 0], "tom struck them to the ground in an instant": [65535, 0], "struck them to the ground in an instant both": [65535, 0], "them to the ground in an instant both boys": [65535, 0], "to the ground in an instant both boys were": [65535, 0], "the ground in an instant both boys were rolling": [65535, 0], "ground in an instant both boys were rolling and": [65535, 0], "in an instant both boys were rolling and tumbling": [65535, 0], "an instant both boys were rolling and tumbling in": [65535, 0], "instant both boys were rolling and tumbling in the": [65535, 0], "both boys were rolling and tumbling in the dirt": [65535, 0], "boys were rolling and tumbling in the dirt gripped": [65535, 0], "were rolling and tumbling in the dirt gripped together": [65535, 0], "rolling and tumbling in the dirt gripped together like": [65535, 0], "and tumbling in the dirt gripped together like cats": [65535, 0], "tumbling in the dirt gripped together like cats and": [65535, 0], "in the dirt gripped together like cats and for": [65535, 0], "the dirt gripped together like cats and for the": [65535, 0], "dirt gripped together like cats and for the space": [65535, 0], "gripped together like cats and for the space of": [65535, 0], "together like cats and for the space of a": [65535, 0], "like cats and for the space of a minute": [65535, 0], "cats and for the space of a minute they": [65535, 0], "and for the space of a minute they tugged": [65535, 0], "for the space of a minute they tugged and": [65535, 0], "the space of a minute they tugged and tore": [65535, 0], "space of a minute they tugged and tore at": [65535, 0], "of a minute they tugged and tore at each": [65535, 0], "a minute they tugged and tore at each other's": [65535, 0], "minute they tugged and tore at each other's hair": [65535, 0], "they tugged and tore at each other's hair and": [65535, 0], "tugged and tore at each other's hair and clothes": [65535, 0], "and tore at each other's hair and clothes punched": [65535, 0], "tore at each other's hair and clothes punched and": [65535, 0], "at each other's hair and clothes punched and scratched": [65535, 0], "each other's hair and clothes punched and scratched each": [65535, 0], "other's hair and clothes punched and scratched each other's": [65535, 0], "hair and clothes punched and scratched each other's nose": [65535, 0], "and clothes punched and scratched each other's nose and": [65535, 0], "clothes punched and scratched each other's nose and covered": [65535, 0], "punched and scratched each other's nose and covered themselves": [65535, 0], "and scratched each other's nose and covered themselves with": [65535, 0], "scratched each other's nose and covered themselves with dust": [65535, 0], "each other's nose and covered themselves with dust and": [65535, 0], "other's nose and covered themselves with dust and glory": [65535, 0], "nose and covered themselves with dust and glory presently": [65535, 0], "and covered themselves with dust and glory presently the": [65535, 0], "covered themselves with dust and glory presently the confusion": [65535, 0], "themselves with dust and glory presently the confusion took": [65535, 0], "with dust and glory presently the confusion took form": [65535, 0], "dust and glory presently the confusion took form and": [65535, 0], "and glory presently the confusion took form and through": [65535, 0], "glory presently the confusion took form and through the": [65535, 0], "presently the confusion took form and through the fog": [65535, 0], "the confusion took form and through the fog of": [65535, 0], "confusion took form and through the fog of battle": [65535, 0], "took form and through the fog of battle tom": [65535, 0], "form and through the fog of battle tom appeared": [65535, 0], "and through the fog of battle tom appeared seated": [65535, 0], "through the fog of battle tom appeared seated astride": [65535, 0], "the fog of battle tom appeared seated astride the": [65535, 0], "fog of battle tom appeared seated astride the new": [65535, 0], "of battle tom appeared seated astride the new boy": [65535, 0], "battle tom appeared seated astride the new boy and": [65535, 0], "tom appeared seated astride the new boy and pounding": [65535, 0], "appeared seated astride the new boy and pounding him": [65535, 0], "seated astride the new boy and pounding him with": [65535, 0], "astride the new boy and pounding him with his": [65535, 0], "the new boy and pounding him with his fists": [65535, 0], "new boy and pounding him with his fists holler": [65535, 0], "boy and pounding him with his fists holler 'nuff": [65535, 0], "and pounding him with his fists holler 'nuff said": [65535, 0], "pounding him with his fists holler 'nuff said he": [65535, 0], "him with his fists holler 'nuff said he the": [65535, 0], "with his fists holler 'nuff said he the boy": [65535, 0], "his fists holler 'nuff said he the boy only": [65535, 0], "fists holler 'nuff said he the boy only struggled": [65535, 0], "holler 'nuff said he the boy only struggled to": [65535, 0], "'nuff said he the boy only struggled to free": [65535, 0], "said he the boy only struggled to free himself": [65535, 0], "he the boy only struggled to free himself he": [65535, 0], "the boy only struggled to free himself he was": [65535, 0], "boy only struggled to free himself he was crying": [65535, 0], "only struggled to free himself he was crying mainly": [65535, 0], "struggled to free himself he was crying mainly from": [65535, 0], "to free himself he was crying mainly from rage": [65535, 0], "free himself he was crying mainly from rage holler": [65535, 0], "himself he was crying mainly from rage holler 'nuff": [65535, 0], "he was crying mainly from rage holler 'nuff and": [65535, 0], "was crying mainly from rage holler 'nuff and the": [65535, 0], "crying mainly from rage holler 'nuff and the pounding": [65535, 0], "mainly from rage holler 'nuff and the pounding went": [65535, 0], "from rage holler 'nuff and the pounding went on": [65535, 0], "rage holler 'nuff and the pounding went on at": [65535, 0], "holler 'nuff and the pounding went on at last": [65535, 0], "'nuff and the pounding went on at last the": [65535, 0], "and the pounding went on at last the stranger": [65535, 0], "the pounding went on at last the stranger got": [65535, 0], "pounding went on at last the stranger got out": [65535, 0], "went on at last the stranger got out a": [65535, 0], "on at last the stranger got out a smothered": [65535, 0], "at last the stranger got out a smothered 'nuff": [65535, 0], "last the stranger got out a smothered 'nuff and": [65535, 0], "the stranger got out a smothered 'nuff and tom": [65535, 0], "stranger got out a smothered 'nuff and tom let": [65535, 0], "got out a smothered 'nuff and tom let him": [65535, 0], "out a smothered 'nuff and tom let him up": [65535, 0], "a smothered 'nuff and tom let him up and": [65535, 0], "smothered 'nuff and tom let him up and said": [65535, 0], "'nuff and tom let him up and said now": [65535, 0], "and tom let him up and said now that'll": [65535, 0], "tom let him up and said now that'll learn": [65535, 0], "let him up and said now that'll learn you": [65535, 0], "him up and said now that'll learn you better": [65535, 0], "up and said now that'll learn you better look": [65535, 0], "and said now that'll learn you better look out": [65535, 0], "said now that'll learn you better look out who": [65535, 0], "now that'll learn you better look out who you're": [65535, 0], "that'll learn you better look out who you're fooling": [65535, 0], "learn you better look out who you're fooling with": [65535, 0], "you better look out who you're fooling with next": [65535, 0], "better look out who you're fooling with next time": [65535, 0], "look out who you're fooling with next time the": [65535, 0], "out who you're fooling with next time the new": [65535, 0], "who you're fooling with next time the new boy": [65535, 0], "you're fooling with next time the new boy went": [65535, 0], "fooling with next time the new boy went off": [65535, 0], "with next time the new boy went off brushing": [65535, 0], "next time the new boy went off brushing the": [65535, 0], "time the new boy went off brushing the dust": [65535, 0], "the new boy went off brushing the dust from": [65535, 0], "new boy went off brushing the dust from his": [65535, 0], "boy went off brushing the dust from his clothes": [65535, 0], "went off brushing the dust from his clothes sobbing": [65535, 0], "off brushing the dust from his clothes sobbing snuffling": [65535, 0], "brushing the dust from his clothes sobbing snuffling and": [65535, 0], "the dust from his clothes sobbing snuffling and occasionally": [65535, 0], "dust from his clothes sobbing snuffling and occasionally looking": [65535, 0], "from his clothes sobbing snuffling and occasionally looking back": [65535, 0], "his clothes sobbing snuffling and occasionally looking back and": [65535, 0], "clothes sobbing snuffling and occasionally looking back and shaking": [65535, 0], "sobbing snuffling and occasionally looking back and shaking his": [65535, 0], "snuffling and occasionally looking back and shaking his head": [65535, 0], "and occasionally looking back and shaking his head and": [65535, 0], "occasionally looking back and shaking his head and threatening": [65535, 0], "looking back and shaking his head and threatening what": [65535, 0], "back and shaking his head and threatening what he": [65535, 0], "and shaking his head and threatening what he would": [65535, 0], "shaking his head and threatening what he would do": [65535, 0], "his head and threatening what he would do to": [65535, 0], "head and threatening what he would do to tom": [65535, 0], "and threatening what he would do to tom the": [65535, 0], "threatening what he would do to tom the next": [65535, 0], "what he would do to tom the next time": [65535, 0], "he would do to tom the next time he": [65535, 0], "would do to tom the next time he caught": [65535, 0], "do to tom the next time he caught him": [65535, 0], "to tom the next time he caught him out": [65535, 0], "tom the next time he caught him out to": [65535, 0], "the next time he caught him out to which": [65535, 0], "next time he caught him out to which tom": [65535, 0], "time he caught him out to which tom responded": [65535, 0], "he caught him out to which tom responded with": [65535, 0], "caught him out to which tom responded with jeers": [65535, 0], "him out to which tom responded with jeers and": [65535, 0], "out to which tom responded with jeers and started": [65535, 0], "to which tom responded with jeers and started off": [65535, 0], "which tom responded with jeers and started off in": [65535, 0], "tom responded with jeers and started off in high": [65535, 0], "responded with jeers and started off in high feather": [65535, 0], "with jeers and started off in high feather and": [65535, 0], "jeers and started off in high feather and as": [65535, 0], "and started off in high feather and as soon": [65535, 0], "started off in high feather and as soon as": [65535, 0], "off in high feather and as soon as his": [65535, 0], "in high feather and as soon as his back": [65535, 0], "high feather and as soon as his back was": [65535, 0], "feather and as soon as his back was turned": [65535, 0], "and as soon as his back was turned the": [65535, 0], "as soon as his back was turned the new": [65535, 0], "soon as his back was turned the new boy": [65535, 0], "as his back was turned the new boy snatched": [65535, 0], "his back was turned the new boy snatched up": [65535, 0], "back was turned the new boy snatched up a": [65535, 0], "was turned the new boy snatched up a stone": [65535, 0], "turned the new boy snatched up a stone threw": [65535, 0], "the new boy snatched up a stone threw it": [65535, 0], "new boy snatched up a stone threw it and": [65535, 0], "boy snatched up a stone threw it and hit": [65535, 0], "snatched up a stone threw it and hit him": [65535, 0], "up a stone threw it and hit him between": [65535, 0], "a stone threw it and hit him between the": [65535, 0], "stone threw it and hit him between the shoulders": [65535, 0], "threw it and hit him between the shoulders and": [65535, 0], "it and hit him between the shoulders and then": [65535, 0], "and hit him between the shoulders and then turned": [65535, 0], "hit him between the shoulders and then turned tail": [65535, 0], "him between the shoulders and then turned tail and": [65535, 0], "between the shoulders and then turned tail and ran": [65535, 0], "the shoulders and then turned tail and ran like": [65535, 0], "shoulders and then turned tail and ran like an": [65535, 0], "and then turned tail and ran like an antelope": [65535, 0], "then turned tail and ran like an antelope tom": [65535, 0], "turned tail and ran like an antelope tom chased": [65535, 0], "tail and ran like an antelope tom chased the": [65535, 0], "and ran like an antelope tom chased the traitor": [65535, 0], "ran like an antelope tom chased the traitor home": [65535, 0], "like an antelope tom chased the traitor home and": [65535, 0], "an antelope tom chased the traitor home and thus": [65535, 0], "antelope tom chased the traitor home and thus found": [65535, 0], "tom chased the traitor home and thus found out": [65535, 0], "chased the traitor home and thus found out where": [65535, 0], "the traitor home and thus found out where he": [65535, 0], "traitor home and thus found out where he lived": [65535, 0], "home and thus found out where he lived he": [65535, 0], "and thus found out where he lived he then": [65535, 0], "thus found out where he lived he then held": [65535, 0], "found out where he lived he then held a": [65535, 0], "out where he lived he then held a position": [65535, 0], "where he lived he then held a position at": [65535, 0], "he lived he then held a position at the": [65535, 0], "lived he then held a position at the gate": [65535, 0], "he then held a position at the gate for": [65535, 0], "then held a position at the gate for some": [65535, 0], "held a position at the gate for some time": [65535, 0], "a position at the gate for some time daring": [65535, 0], "position at the gate for some time daring the": [65535, 0], "at the gate for some time daring the enemy": [65535, 0], "the gate for some time daring the enemy to": [65535, 0], "gate for some time daring the enemy to come": [65535, 0], "for some time daring the enemy to come outside": [65535, 0], "some time daring the enemy to come outside but": [65535, 0], "time daring the enemy to come outside but the": [65535, 0], "daring the enemy to come outside but the enemy": [65535, 0], "the enemy to come outside but the enemy only": [65535, 0], "enemy to come outside but the enemy only made": [65535, 0], "to come outside but the enemy only made faces": [65535, 0], "come outside but the enemy only made faces at": [65535, 0], "outside but the enemy only made faces at him": [65535, 0], "but the enemy only made faces at him through": [65535, 0], "the enemy only made faces at him through the": [65535, 0], "enemy only made faces at him through the window": [65535, 0], "only made faces at him through the window and": [65535, 0], "made faces at him through the window and declined": [65535, 0], "faces at him through the window and declined at": [65535, 0], "at him through the window and declined at last": [65535, 0], "him through the window and declined at last the": [65535, 0], "through the window and declined at last the enemy's": [65535, 0], "the window and declined at last the enemy's mother": [65535, 0], "window and declined at last the enemy's mother appeared": [65535, 0], "and declined at last the enemy's mother appeared and": [65535, 0], "declined at last the enemy's mother appeared and called": [65535, 0], "at last the enemy's mother appeared and called tom": [65535, 0], "last the enemy's mother appeared and called tom a": [65535, 0], "the enemy's mother appeared and called tom a bad": [65535, 0], "enemy's mother appeared and called tom a bad vicious": [65535, 0], "mother appeared and called tom a bad vicious vulgar": [65535, 0], "appeared and called tom a bad vicious vulgar child": [65535, 0], "and called tom a bad vicious vulgar child and": [65535, 0], "called tom a bad vicious vulgar child and ordered": [65535, 0], "tom a bad vicious vulgar child and ordered him": [65535, 0], "a bad vicious vulgar child and ordered him away": [65535, 0], "bad vicious vulgar child and ordered him away so": [65535, 0], "vicious vulgar child and ordered him away so he": [65535, 0], "vulgar child and ordered him away so he went": [65535, 0], "child and ordered him away so he went away": [65535, 0], "and ordered him away so he went away but": [65535, 0], "ordered him away so he went away but he": [65535, 0], "him away so he went away but he said": [65535, 0], "away so he went away but he said he": [65535, 0], "so he went away but he said he 'lowed": [65535, 0], "he went away but he said he 'lowed to": [65535, 0], "went away but he said he 'lowed to lay": [65535, 0], "away but he said he 'lowed to lay for": [65535, 0], "but he said he 'lowed to lay for that": [65535, 0], "he said he 'lowed to lay for that boy": [65535, 0], "said he 'lowed to lay for that boy he": [65535, 0], "he 'lowed to lay for that boy he got": [65535, 0], "'lowed to lay for that boy he got home": [65535, 0], "to lay for that boy he got home pretty": [65535, 0], "lay for that boy he got home pretty late": [65535, 0], "for that boy he got home pretty late that": [65535, 0], "that boy he got home pretty late that night": [65535, 0], "boy he got home pretty late that night and": [65535, 0], "he got home pretty late that night and when": [65535, 0], "got home pretty late that night and when he": [65535, 0], "home pretty late that night and when he climbed": [65535, 0], "pretty late that night and when he climbed cautiously": [65535, 0], "late that night and when he climbed cautiously in": [65535, 0], "that night and when he climbed cautiously in at": [65535, 0], "night and when he climbed cautiously in at the": [65535, 0], "and when he climbed cautiously in at the window": [65535, 0], "when he climbed cautiously in at the window he": [65535, 0], "he climbed cautiously in at the window he uncovered": [65535, 0], "climbed cautiously in at the window he uncovered an": [65535, 0], "cautiously in at the window he uncovered an ambuscade": [65535, 0], "in at the window he uncovered an ambuscade in": [65535, 0], "at the window he uncovered an ambuscade in the": [65535, 0], "the window he uncovered an ambuscade in the person": [65535, 0], "window he uncovered an ambuscade in the person of": [65535, 0], "he uncovered an ambuscade in the person of his": [65535, 0], "uncovered an ambuscade in the person of his aunt": [65535, 0], "an ambuscade in the person of his aunt and": [65535, 0], "ambuscade in the person of his aunt and when": [65535, 0], "in the person of his aunt and when she": [65535, 0], "the person of his aunt and when she saw": [65535, 0], "person of his aunt and when she saw the": [65535, 0], "of his aunt and when she saw the state": [65535, 0], "his aunt and when she saw the state his": [65535, 0], "aunt and when she saw the state his clothes": [65535, 0], "and when she saw the state his clothes were": [65535, 0], "when she saw the state his clothes were in": [65535, 0], "she saw the state his clothes were in her": [65535, 0], "saw the state his clothes were in her resolution": [65535, 0], "the state his clothes were in her resolution to": [65535, 0], "state his clothes were in her resolution to turn": [65535, 0], "his clothes were in her resolution to turn his": [65535, 0], "clothes were in her resolution to turn his saturday": [65535, 0], "were in her resolution to turn his saturday holiday": [65535, 0], "in her resolution to turn his saturday holiday into": [65535, 0], "her resolution to turn his saturday holiday into captivity": [65535, 0], "resolution to turn his saturday holiday into captivity at": [65535, 0], "to turn his saturday holiday into captivity at hard": [65535, 0], "turn his saturday holiday into captivity at hard labor": [65535, 0], "his saturday holiday into captivity at hard labor became": [65535, 0], "saturday holiday into captivity at hard labor became adamantine": [65535, 0], "holiday into captivity at hard labor became adamantine in": [65535, 0], "into captivity at hard labor became adamantine in its": [65535, 0], "captivity at hard labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's gone with that": [65535, 0], "no answer tom no answer what's gone with that boy": [65535, 0], "answer tom no answer what's gone with that boy i": [65535, 0], "tom no answer what's gone with that boy i wonder": [65535, 0], "no answer what's gone with that boy i wonder you": [65535, 0], "answer what's gone with that boy i wonder you tom": [65535, 0], "what's gone with that boy i wonder you tom no": [65535, 0], "gone with that boy i wonder you tom no answer": [65535, 0], "with that boy i wonder you tom no answer the": [65535, 0], "that boy i wonder you tom no answer the old": [65535, 0], "boy i wonder you tom no answer the old lady": [65535, 0], "i wonder you tom no answer the old lady pulled": [65535, 0], "wonder you tom no answer the old lady pulled her": [65535, 0], "you tom no answer the old lady pulled her spectacles": [65535, 0], "tom no answer the old lady pulled her spectacles down": [65535, 0], "no answer the old lady pulled her spectacles down and": [65535, 0], "answer the old lady pulled her spectacles down and looked": [65535, 0], "the old lady pulled her spectacles down and looked over": [65535, 0], "old lady pulled her spectacles down and looked over them": [65535, 0], "lady pulled her spectacles down and looked over them about": [65535, 0], "pulled her spectacles down and looked over them about the": [65535, 0], "her spectacles down and looked over them about the room": [65535, 0], "spectacles down and looked over them about the room then": [65535, 0], "down and looked over them about the room then she": [65535, 0], "and looked over them about the room then she put": [65535, 0], "looked over them about the room then she put them": [65535, 0], "over them about the room then she put them up": [65535, 0], "them about the room then she put them up and": [65535, 0], "about the room then she put them up and looked": [65535, 0], "the room then she put them up and looked out": [65535, 0], "room then she put them up and looked out under": [65535, 0], "then she put them up and looked out under them": [65535, 0], "she put them up and looked out under them she": [65535, 0], "put them up and looked out under them she seldom": [65535, 0], "them up and looked out under them she seldom or": [65535, 0], "up and looked out under them she seldom or never": [65535, 0], "and looked out under them she seldom or never looked": [65535, 0], "looked out under them she seldom or never looked through": [65535, 0], "out under them she seldom or never looked through them": [65535, 0], "under them she seldom or never looked through them for": [65535, 0], "them she seldom or never looked through them for so": [65535, 0], "she seldom or never looked through them for so small": [65535, 0], "seldom or never looked through them for so small a": [65535, 0], "or never looked through them for so small a thing": [65535, 0], "never looked through them for so small a thing as": [65535, 0], "looked through them for so small a thing as a": [65535, 0], "through them for so small a thing as a boy": [65535, 0], "them for so small a thing as a boy they": [65535, 0], "for so small a thing as a boy they were": [65535, 0], "so small a thing as a boy they were her": [65535, 0], "small a thing as a boy they were her state": [65535, 0], "a thing as a boy they were her state pair": [65535, 0], "thing as a boy they were her state pair the": [65535, 0], "as a boy they were her state pair the pride": [65535, 0], "a boy they were her state pair the pride of": [65535, 0], "boy they were her state pair the pride of her": [65535, 0], "they were her state pair the pride of her heart": [65535, 0], "were her state pair the pride of her heart and": [65535, 0], "her state pair the pride of her heart and were": [65535, 0], "state pair the pride of her heart and were built": [65535, 0], "pair the pride of her heart and were built for": [65535, 0], "the pride of her heart and were built for style": [65535, 0], "pride of her heart and were built for style not": [65535, 0], "of her heart and were built for style not service": [65535, 0], "her heart and were built for style not service she": [65535, 0], "heart and were built for style not service she could": [65535, 0], "and were built for style not service she could have": [65535, 0], "were built for style not service she could have seen": [65535, 0], "built for style not service she could have seen through": [65535, 0], "for style not service she could have seen through a": [65535, 0], "style not service she could have seen through a pair": [65535, 0], "not service she could have seen through a pair of": [65535, 0], "service she could have seen through a pair of stove": [65535, 0], "she could have seen through a pair of stove lids": [65535, 0], "could have seen through a pair of stove lids just": [65535, 0], "have seen through a pair of stove lids just as": [65535, 0], "seen through a pair of stove lids just as well": [65535, 0], "through a pair of stove lids just as well she": [65535, 0], "a pair of stove lids just as well she looked": [65535, 0], "pair of stove lids just as well she looked perplexed": [65535, 0], "of stove lids just as well she looked perplexed for": [65535, 0], "stove lids just as well she looked perplexed for a": [65535, 0], "lids just as well she looked perplexed for a moment": [65535, 0], "just as well she looked perplexed for a moment and": [65535, 0], "as well she looked perplexed for a moment and then": [65535, 0], "well she looked perplexed for a moment and then said": [65535, 0], "she looked perplexed for a moment and then said not": [65535, 0], "looked perplexed for a moment and then said not fiercely": [65535, 0], "perplexed for a moment and then said not fiercely but": [65535, 0], "for a moment and then said not fiercely but still": [65535, 0], "a moment and then said not fiercely but still loud": [65535, 0], "moment and then said not fiercely but still loud enough": [65535, 0], "and then said not fiercely but still loud enough for": [65535, 0], "then said not fiercely but still loud enough for the": [65535, 0], "said not fiercely but still loud enough for the furniture": [65535, 0], "not fiercely but still loud enough for the furniture to": [65535, 0], "fiercely but still loud enough for the furniture to hear": [65535, 0], "but still loud enough for the furniture to hear well": [65535, 0], "still loud enough for the furniture to hear well i": [65535, 0], "loud enough for the furniture to hear well i lay": [65535, 0], "enough for the furniture to hear well i lay if": [65535, 0], "for the furniture to hear well i lay if i": [65535, 0], "the furniture to hear well i lay if i get": [65535, 0], "furniture to hear well i lay if i get hold": [65535, 0], "to hear well i lay if i get hold of": [65535, 0], "hear well i lay if i get hold of you": [65535, 0], "well i lay if i get hold of you i'll": [65535, 0], "i lay if i get hold of you i'll she": [65535, 0], "lay if i get hold of you i'll she did": [65535, 0], "if i get hold of you i'll she did not": [65535, 0], "i get hold of you i'll she did not finish": [65535, 0], "get hold of you i'll she did not finish for": [65535, 0], "hold of you i'll she did not finish for by": [65535, 0], "of you i'll she did not finish for by this": [65535, 0], "you i'll she did not finish for by this time": [65535, 0], "i'll she did not finish for by this time she": [65535, 0], "she did not finish for by this time she was": [65535, 0], "did not finish for by this time she was bending": [65535, 0], "not finish for by this time she was bending down": [65535, 0], "finish for by this time she was bending down and": [65535, 0], "for by this time she was bending down and punching": [65535, 0], "by this time she was bending down and punching under": [65535, 0], "this time she was bending down and punching under the": [65535, 0], "time she was bending down and punching under the bed": [65535, 0], "she was bending down and punching under the bed with": [65535, 0], "was bending down and punching under the bed with the": [65535, 0], "bending down and punching under the bed with the broom": [65535, 0], "down and punching under the bed with the broom and": [65535, 0], "and punching under the bed with the broom and so": [65535, 0], "punching under the bed with the broom and so she": [65535, 0], "under the bed with the broom and so she needed": [65535, 0], "the bed with the broom and so she needed breath": [65535, 0], "bed with the broom and so she needed breath to": [65535, 0], "with the broom and so she needed breath to punctuate": [65535, 0], "the broom and so she needed breath to punctuate the": [65535, 0], "broom and so she needed breath to punctuate the punches": [65535, 0], "and so she needed breath to punctuate the punches with": [65535, 0], "so she needed breath to punctuate the punches with she": [65535, 0], "she needed breath to punctuate the punches with she resurrected": [65535, 0], "needed breath to punctuate the punches with she resurrected nothing": [65535, 0], "breath to punctuate the punches with she resurrected nothing but": [65535, 0], "to punctuate the punches with she resurrected nothing but the": [65535, 0], "punctuate the punches with she resurrected nothing but the cat": [65535, 0], "the punches with she resurrected nothing but the cat i": [65535, 0], "punches with she resurrected nothing but the cat i never": [65535, 0], "with she resurrected nothing but the cat i never did": [65535, 0], "she resurrected nothing but the cat i never did see": [65535, 0], "resurrected nothing but the cat i never did see the": [65535, 0], "nothing but the cat i never did see the beat": [65535, 0], "but the cat i never did see the beat of": [65535, 0], "the cat i never did see the beat of that": [65535, 0], "cat i never did see the beat of that boy": [65535, 0], "i never did see the beat of that boy she": [65535, 0], "never did see the beat of that boy she went": [65535, 0], "did see the beat of that boy she went to": [65535, 0], "see the beat of that boy she went to the": [65535, 0], "the beat of that boy she went to the open": [65535, 0], "beat of that boy she went to the open door": [65535, 0], "of that boy she went to the open door and": [65535, 0], "that boy she went to the open door and stood": [65535, 0], "boy she went to the open door and stood in": [65535, 0], "she went to the open door and stood in it": [65535, 0], "went to the open door and stood in it and": [65535, 0], "to the open door and stood in it and looked": [65535, 0], "the open door and stood in it and looked out": [65535, 0], "open door and stood in it and looked out among": [65535, 0], "door and stood in it and looked out among the": [65535, 0], "and stood in it and looked out among the tomato": [65535, 0], "stood in it and looked out among the tomato vines": [65535, 0], "in it and looked out among the tomato vines and": [65535, 0], "it and looked out among the tomato vines and jimpson": [65535, 0], "and looked out among the tomato vines and jimpson weeds": [65535, 0], "looked out among the tomato vines and jimpson weeds that": [65535, 0], "out among the tomato vines and jimpson weeds that constituted": [65535, 0], "among the tomato vines and jimpson weeds that constituted the": [65535, 0], "the tomato vines and jimpson weeds that constituted the garden": [65535, 0], "tomato vines and jimpson weeds that constituted the garden no": [65535, 0], "vines and jimpson weeds that constituted the garden no tom": [65535, 0], "and jimpson weeds that constituted the garden no tom so": [65535, 0], "jimpson weeds that constituted the garden no tom so she": [65535, 0], "weeds that constituted the garden no tom so she lifted": [65535, 0], "that constituted the garden no tom so she lifted up": [65535, 0], "constituted the garden no tom so she lifted up her": [65535, 0], "the garden no tom so she lifted up her voice": [65535, 0], "garden no tom so she lifted up her voice at": [65535, 0], "no tom so she lifted up her voice at an": [65535, 0], "tom so she lifted up her voice at an angle": [65535, 0], "so she lifted up her voice at an angle calculated": [65535, 0], "she lifted up her voice at an angle calculated for": [65535, 0], "lifted up her voice at an angle calculated for distance": [65535, 0], "up her voice at an angle calculated for distance and": [65535, 0], "her voice at an angle calculated for distance and shouted": [65535, 0], "voice at an angle calculated for distance and shouted y": [65535, 0], "at an angle calculated for distance and shouted y o": [65535, 0], "an angle calculated for distance and shouted y o u": [65535, 0], "angle calculated for distance and shouted y o u u": [65535, 0], "calculated for distance and shouted y o u u tom": [65535, 0], "for distance and shouted y o u u tom there": [65535, 0], "distance and shouted y o u u tom there was": [65535, 0], "and shouted y o u u tom there was a": [65535, 0], "shouted y o u u tom there was a slight": [65535, 0], "y o u u tom there was a slight noise": [65535, 0], "o u u tom there was a slight noise behind": [65535, 0], "u u tom there was a slight noise behind her": [65535, 0], "u tom there was a slight noise behind her and": [65535, 0], "tom there was a slight noise behind her and she": [65535, 0], "there was a slight noise behind her and she turned": [65535, 0], "was a slight noise behind her and she turned just": [65535, 0], "a slight noise behind her and she turned just in": [65535, 0], "slight noise behind her and she turned just in time": [65535, 0], "noise behind her and she turned just in time to": [65535, 0], "behind her and she turned just in time to seize": [65535, 0], "her and she turned just in time to seize a": [65535, 0], "and she turned just in time to seize a small": [65535, 0], "she turned just in time to seize a small boy": [65535, 0], "turned just in time to seize a small boy by": [65535, 0], "just in time to seize a small boy by the": [65535, 0], "in time to seize a small boy by the slack": [65535, 0], "time to seize a small boy by the slack of": [65535, 0], "to seize a small boy by the slack of his": [65535, 0], "seize a small boy by the slack of his roundabout": [65535, 0], "a small boy by the slack of his roundabout and": [65535, 0], "small boy by the slack of his roundabout and arrest": [65535, 0], "boy by the slack of his roundabout and arrest his": [65535, 0], "by the slack of his roundabout and arrest his flight": [65535, 0], "the slack of his roundabout and arrest his flight there": [65535, 0], "slack of his roundabout and arrest his flight there i": [65535, 0], "of his roundabout and arrest his flight there i might": [65535, 0], "his roundabout and arrest his flight there i might 'a'": [65535, 0], "roundabout and arrest his flight there i might 'a' thought": [65535, 0], "and arrest his flight there i might 'a' thought of": [65535, 0], "arrest his flight there i might 'a' thought of that": [65535, 0], "his flight there i might 'a' thought of that closet": [65535, 0], "flight there i might 'a' thought of that closet what": [65535, 0], "there i might 'a' thought of that closet what you": [65535, 0], "i might 'a' thought of that closet what you been": [65535, 0], "might 'a' thought of that closet what you been doing": [65535, 0], "'a' thought of that closet what you been doing in": [65535, 0], "thought of that closet what you been doing in there": [65535, 0], "of that closet what you been doing in there nothing": [65535, 0], "that closet what you been doing in there nothing nothing": [65535, 0], "closet what you been doing in there nothing nothing look": [65535, 0], "what you been doing in there nothing nothing look at": [65535, 0], "you been doing in there nothing nothing look at your": [65535, 0], "been doing in there nothing nothing look at your hands": [65535, 0], "doing in there nothing nothing look at your hands and": [65535, 0], "in there nothing nothing look at your hands and look": [65535, 0], "there nothing nothing look at your hands and look at": [65535, 0], "nothing nothing look at your hands and look at your": [65535, 0], "nothing look at your hands and look at your mouth": [65535, 0], "look at your hands and look at your mouth what": [65535, 0], "at your hands and look at your mouth what is": [65535, 0], "your hands and look at your mouth what is that": [65535, 0], "hands and look at your mouth what is that i": [65535, 0], "and look at your mouth what is that i don't": [65535, 0], "look at your mouth what is that i don't know": [65535, 0], "at your mouth what is that i don't know aunt": [65535, 0], "your mouth what is that i don't know aunt well": [65535, 0], "mouth what is that i don't know aunt well i": [65535, 0], "what is that i don't know aunt well i know": [65535, 0], "is that i don't know aunt well i know it's": [65535, 0], "that i don't know aunt well i know it's jam": [65535, 0], "i don't know aunt well i know it's jam that's": [65535, 0], "don't know aunt well i know it's jam that's what": [65535, 0], "know aunt well i know it's jam that's what it": [65535, 0], "aunt well i know it's jam that's what it is": [65535, 0], "well i know it's jam that's what it is forty": [65535, 0], "i know it's jam that's what it is forty times": [65535, 0], "know it's jam that's what it is forty times i've": [65535, 0], "it's jam that's what it is forty times i've said": [65535, 0], "jam that's what it is forty times i've said if": [65535, 0], "that's what it is forty times i've said if you": [65535, 0], "what it is forty times i've said if you didn't": [65535, 0], "it is forty times i've said if you didn't let": [65535, 0], "is forty times i've said if you didn't let that": [65535, 0], "forty times i've said if you didn't let that jam": [65535, 0], "times i've said if you didn't let that jam alone": [65535, 0], "i've said if you didn't let that jam alone i'd": [65535, 0], "said if you didn't let that jam alone i'd skin": [65535, 0], "if you didn't let that jam alone i'd skin you": [65535, 0], "you didn't let that jam alone i'd skin you hand": [65535, 0], "didn't let that jam alone i'd skin you hand me": [65535, 0], "let that jam alone i'd skin you hand me that": [65535, 0], "that jam alone i'd skin you hand me that switch": [65535, 0], "jam alone i'd skin you hand me that switch the": [65535, 0], "alone i'd skin you hand me that switch the switch": [65535, 0], "i'd skin you hand me that switch the switch hovered": [65535, 0], "skin you hand me that switch the switch hovered in": [65535, 0], "you hand me that switch the switch hovered in the": [65535, 0], "hand me that switch the switch hovered in the air": [65535, 0], "me that switch the switch hovered in the air the": [65535, 0], "that switch the switch hovered in the air the peril": [65535, 0], "switch the switch hovered in the air the peril was": [65535, 0], "the switch hovered in the air the peril was desperate": [65535, 0], "switch hovered in the air the peril was desperate my": [65535, 0], "hovered in the air the peril was desperate my look": [65535, 0], "in the air the peril was desperate my look behind": [65535, 0], "the air the peril was desperate my look behind you": [65535, 0], "air the peril was desperate my look behind you aunt": [65535, 0], "the peril was desperate my look behind you aunt the": [65535, 0], "peril was desperate my look behind you aunt the old": [65535, 0], "was desperate my look behind you aunt the old lady": [65535, 0], "desperate my look behind you aunt the old lady whirled": [65535, 0], "my look behind you aunt the old lady whirled round": [65535, 0], "look behind you aunt the old lady whirled round and": [65535, 0], "behind you aunt the old lady whirled round and snatched": [65535, 0], "you aunt the old lady whirled round and snatched her": [65535, 0], "aunt the old lady whirled round and snatched her skirts": [65535, 0], "the old lady whirled round and snatched her skirts out": [65535, 0], "old lady whirled round and snatched her skirts out of": [65535, 0], "lady whirled round and snatched her skirts out of danger": [65535, 0], "whirled round and snatched her skirts out of danger the": [65535, 0], "round and snatched her skirts out of danger the lad": [65535, 0], "and snatched her skirts out of danger the lad fled": [65535, 0], "snatched her skirts out of danger the lad fled on": [65535, 0], "her skirts out of danger the lad fled on the": [65535, 0], "skirts out of danger the lad fled on the instant": [65535, 0], "out of danger the lad fled on the instant scrambled": [65535, 0], "of danger the lad fled on the instant scrambled up": [65535, 0], "danger the lad fled on the instant scrambled up the": [65535, 0], "the lad fled on the instant scrambled up the high": [65535, 0], "lad fled on the instant scrambled up the high board": [65535, 0], "fled on the instant scrambled up the high board fence": [65535, 0], "on the instant scrambled up the high board fence and": [65535, 0], "the instant scrambled up the high board fence and disappeared": [65535, 0], "instant scrambled up the high board fence and disappeared over": [65535, 0], "scrambled up the high board fence and disappeared over it": [65535, 0], "up the high board fence and disappeared over it his": [65535, 0], "the high board fence and disappeared over it his aunt": [65535, 0], "high board fence and disappeared over it his aunt polly": [65535, 0], "board fence and disappeared over it his aunt polly stood": [65535, 0], "fence and disappeared over it his aunt polly stood surprised": [65535, 0], "and disappeared over it his aunt polly stood surprised a": [65535, 0], "disappeared over it his aunt polly stood surprised a moment": [65535, 0], "over it his aunt polly stood surprised a moment and": [65535, 0], "it his aunt polly stood surprised a moment and then": [65535, 0], "his aunt polly stood surprised a moment and then broke": [65535, 0], "aunt polly stood surprised a moment and then broke into": [65535, 0], "polly stood surprised a moment and then broke into a": [65535, 0], "stood surprised a moment and then broke into a gentle": [65535, 0], "surprised a moment and then broke into a gentle laugh": [65535, 0], "a moment and then broke into a gentle laugh hang": [65535, 0], "moment and then broke into a gentle laugh hang the": [65535, 0], "and then broke into a gentle laugh hang the boy": [65535, 0], "then broke into a gentle laugh hang the boy can't": [65535, 0], "broke into a gentle laugh hang the boy can't i": [65535, 0], "into a gentle laugh hang the boy can't i never": [65535, 0], "a gentle laugh hang the boy can't i never learn": [65535, 0], "gentle laugh hang the boy can't i never learn anything": [65535, 0], "laugh hang the boy can't i never learn anything ain't": [65535, 0], "hang the boy can't i never learn anything ain't he": [65535, 0], "the boy can't i never learn anything ain't he played": [65535, 0], "boy can't i never learn anything ain't he played me": [65535, 0], "can't i never learn anything ain't he played me tricks": [65535, 0], "i never learn anything ain't he played me tricks enough": [65535, 0], "never learn anything ain't he played me tricks enough like": [65535, 0], "learn anything ain't he played me tricks enough like that": [65535, 0], "anything ain't he played me tricks enough like that for": [65535, 0], "ain't he played me tricks enough like that for me": [65535, 0], "he played me tricks enough like that for me to": [65535, 0], "played me tricks enough like that for me to be": [65535, 0], "me tricks enough like that for me to be looking": [65535, 0], "tricks enough like that for me to be looking out": [65535, 0], "enough like that for me to be looking out for": [65535, 0], "like that for me to be looking out for him": [65535, 0], "that for me to be looking out for him by": [65535, 0], "for me to be looking out for him by this": [65535, 0], "me to be looking out for him by this time": [65535, 0], "to be looking out for him by this time but": [65535, 0], "be looking out for him by this time but old": [65535, 0], "looking out for him by this time but old fools": [65535, 0], "out for him by this time but old fools is": [65535, 0], "for him by this time but old fools is the": [65535, 0], "him by this time but old fools is the biggest": [65535, 0], "by this time but old fools is the biggest fools": [65535, 0], "this time but old fools is the biggest fools there": [65535, 0], "time but old fools is the biggest fools there is": [65535, 0], "but old fools is the biggest fools there is can't": [65535, 0], "old fools is the biggest fools there is can't learn": [65535, 0], "fools is the biggest fools there is can't learn an": [65535, 0], "is the biggest fools there is can't learn an old": [65535, 0], "the biggest fools there is can't learn an old dog": [65535, 0], "biggest fools there is can't learn an old dog new": [65535, 0], "fools there is can't learn an old dog new tricks": [65535, 0], "there is can't learn an old dog new tricks as": [65535, 0], "is can't learn an old dog new tricks as the": [65535, 0], "can't learn an old dog new tricks as the saying": [65535, 0], "learn an old dog new tricks as the saying is": [65535, 0], "an old dog new tricks as the saying is but": [65535, 0], "old dog new tricks as the saying is but my": [65535, 0], "dog new tricks as the saying is but my goodness": [65535, 0], "new tricks as the saying is but my goodness he": [65535, 0], "tricks as the saying is but my goodness he never": [65535, 0], "as the saying is but my goodness he never plays": [65535, 0], "the saying is but my goodness he never plays them": [65535, 0], "saying is but my goodness he never plays them alike": [65535, 0], "is but my goodness he never plays them alike two": [65535, 0], "but my goodness he never plays them alike two days": [65535, 0], "my goodness he never plays them alike two days and": [65535, 0], "goodness he never plays them alike two days and how": [65535, 0], "he never plays them alike two days and how is": [65535, 0], "never plays them alike two days and how is a": [65535, 0], "plays them alike two days and how is a body": [65535, 0], "them alike two days and how is a body to": [65535, 0], "alike two days and how is a body to know": [65535, 0], "two days and how is a body to know what's": [65535, 0], "days and how is a body to know what's coming": [65535, 0], "and how is a body to know what's coming he": [65535, 0], "how is a body to know what's coming he 'pears": [65535, 0], "is a body to know what's coming he 'pears to": [65535, 0], "a body to know what's coming he 'pears to know": [65535, 0], "body to know what's coming he 'pears to know just": [65535, 0], "to know what's coming he 'pears to know just how": [65535, 0], "know what's coming he 'pears to know just how long": [65535, 0], "what's coming he 'pears to know just how long he": [65535, 0], "coming he 'pears to know just how long he can": [65535, 0], "he 'pears to know just how long he can torment": [65535, 0], "'pears to know just how long he can torment me": [65535, 0], "to know just how long he can torment me before": [65535, 0], "know just how long he can torment me before i": [65535, 0], "just how long he can torment me before i get": [65535, 0], "how long he can torment me before i get my": [65535, 0], "long he can torment me before i get my dander": [65535, 0], "he can torment me before i get my dander up": [65535, 0], "can torment me before i get my dander up and": [65535, 0], "torment me before i get my dander up and he": [65535, 0], "me before i get my dander up and he knows": [65535, 0], "before i get my dander up and he knows if": [65535, 0], "i get my dander up and he knows if he": [65535, 0], "get my dander up and he knows if he can": [65535, 0], "my dander up and he knows if he can make": [65535, 0], "dander up and he knows if he can make out": [65535, 0], "up and he knows if he can make out to": [65535, 0], "and he knows if he can make out to put": [65535, 0], "he knows if he can make out to put me": [65535, 0], "knows if he can make out to put me off": [65535, 0], "if he can make out to put me off for": [65535, 0], "he can make out to put me off for a": [65535, 0], "can make out to put me off for a minute": [65535, 0], "make out to put me off for a minute or": [65535, 0], "out to put me off for a minute or make": [65535, 0], "to put me off for a minute or make me": [65535, 0], "put me off for a minute or make me laugh": [65535, 0], "me off for a minute or make me laugh it's": [65535, 0], "off for a minute or make me laugh it's all": [65535, 0], "for a minute or make me laugh it's all down": [65535, 0], "a minute or make me laugh it's all down again": [65535, 0], "minute or make me laugh it's all down again and": [65535, 0], "or make me laugh it's all down again and i": [65535, 0], "make me laugh it's all down again and i can't": [65535, 0], "me laugh it's all down again and i can't hit": [65535, 0], "laugh it's all down again and i can't hit him": [65535, 0], "it's all down again and i can't hit him a": [65535, 0], "all down again and i can't hit him a lick": [65535, 0], "down again and i can't hit him a lick i": [65535, 0], "again and i can't hit him a lick i ain't": [65535, 0], "and i can't hit him a lick i ain't doing": [65535, 0], "i can't hit him a lick i ain't doing my": [65535, 0], "can't hit him a lick i ain't doing my duty": [65535, 0], "hit him a lick i ain't doing my duty by": [65535, 0], "him a lick i ain't doing my duty by that": [65535, 0], "a lick i ain't doing my duty by that boy": [65535, 0], "lick i ain't doing my duty by that boy and": [65535, 0], "i ain't doing my duty by that boy and that's": [65535, 0], "ain't doing my duty by that boy and that's the": [65535, 0], "doing my duty by that boy and that's the lord's": [65535, 0], "my duty by that boy and that's the lord's truth": [65535, 0], "duty by that boy and that's the lord's truth goodness": [65535, 0], "by that boy and that's the lord's truth goodness knows": [65535, 0], "that boy and that's the lord's truth goodness knows spare": [65535, 0], "boy and that's the lord's truth goodness knows spare the": [65535, 0], "and that's the lord's truth goodness knows spare the rod": [65535, 0], "that's the lord's truth goodness knows spare the rod and": [65535, 0], "the lord's truth goodness knows spare the rod and spoil": [65535, 0], "lord's truth goodness knows spare the rod and spoil the": [65535, 0], "truth goodness knows spare the rod and spoil the child": [65535, 0], "goodness knows spare the rod and spoil the child as": [65535, 0], "knows spare the rod and spoil the child as the": [65535, 0], "spare the rod and spoil the child as the good": [65535, 0], "the rod and spoil the child as the good book": [65535, 0], "rod and spoil the child as the good book says": [65535, 0], "and spoil the child as the good book says i'm": [65535, 0], "spoil the child as the good book says i'm a": [65535, 0], "the child as the good book says i'm a laying": [65535, 0], "child as the good book says i'm a laying up": [65535, 0], "as the good book says i'm a laying up sin": [65535, 0], "the good book says i'm a laying up sin and": [65535, 0], "good book says i'm a laying up sin and suffering": [65535, 0], "book says i'm a laying up sin and suffering for": [65535, 0], "says i'm a laying up sin and suffering for us": [65535, 0], "i'm a laying up sin and suffering for us both": [65535, 0], "a laying up sin and suffering for us both i": [65535, 0], "laying up sin and suffering for us both i know": [65535, 0], "up sin and suffering for us both i know he's": [65535, 0], "sin and suffering for us both i know he's full": [65535, 0], "and suffering for us both i know he's full of": [65535, 0], "suffering for us both i know he's full of the": [65535, 0], "for us both i know he's full of the old": [65535, 0], "us both i know he's full of the old scratch": [65535, 0], "both i know he's full of the old scratch but": [65535, 0], "i know he's full of the old scratch but laws": [65535, 0], "know he's full of the old scratch but laws a": [65535, 0], "he's full of the old scratch but laws a me": [65535, 0], "full of the old scratch but laws a me he's": [65535, 0], "of the old scratch but laws a me he's my": [65535, 0], "the old scratch but laws a me he's my own": [65535, 0], "old scratch but laws a me he's my own dead": [65535, 0], "scratch but laws a me he's my own dead sister's": [65535, 0], "but laws a me he's my own dead sister's boy": [65535, 0], "laws a me he's my own dead sister's boy poor": [65535, 0], "a me he's my own dead sister's boy poor thing": [65535, 0], "me he's my own dead sister's boy poor thing and": [65535, 0], "he's my own dead sister's boy poor thing and i": [65535, 0], "my own dead sister's boy poor thing and i ain't": [65535, 0], "own dead sister's boy poor thing and i ain't got": [65535, 0], "dead sister's boy poor thing and i ain't got the": [65535, 0], "sister's boy poor thing and i ain't got the heart": [65535, 0], "boy poor thing and i ain't got the heart to": [65535, 0], "poor thing and i ain't got the heart to lash": [65535, 0], "thing and i ain't got the heart to lash him": [65535, 0], "and i ain't got the heart to lash him somehow": [65535, 0], "i ain't got the heart to lash him somehow every": [65535, 0], "ain't got the heart to lash him somehow every time": [65535, 0], "got the heart to lash him somehow every time i": [65535, 0], "the heart to lash him somehow every time i let": [65535, 0], "heart to lash him somehow every time i let him": [65535, 0], "to lash him somehow every time i let him off": [65535, 0], "lash him somehow every time i let him off my": [65535, 0], "him somehow every time i let him off my conscience": [65535, 0], "somehow every time i let him off my conscience does": [65535, 0], "every time i let him off my conscience does hurt": [65535, 0], "time i let him off my conscience does hurt me": [65535, 0], "i let him off my conscience does hurt me so": [65535, 0], "let him off my conscience does hurt me so and": [65535, 0], "him off my conscience does hurt me so and every": [65535, 0], "off my conscience does hurt me so and every time": [65535, 0], "my conscience does hurt me so and every time i": [65535, 0], "conscience does hurt me so and every time i hit": [65535, 0], "does hurt me so and every time i hit him": [65535, 0], "hurt me so and every time i hit him my": [65535, 0], "me so and every time i hit him my old": [65535, 0], "so and every time i hit him my old heart": [65535, 0], "and every time i hit him my old heart most": [65535, 0], "every time i hit him my old heart most breaks": [65535, 0], "time i hit him my old heart most breaks well": [65535, 0], "i hit him my old heart most breaks well a": [65535, 0], "hit him my old heart most breaks well a well": [65535, 0], "him my old heart most breaks well a well man": [65535, 0], "my old heart most breaks well a well man that": [65535, 0], "old heart most breaks well a well man that is": [65535, 0], "heart most breaks well a well man that is born": [65535, 0], "most breaks well a well man that is born of": [65535, 0], "breaks well a well man that is born of woman": [65535, 0], "well a well man that is born of woman is": [65535, 0], "a well man that is born of woman is of": [65535, 0], "well man that is born of woman is of few": [65535, 0], "man that is born of woman is of few days": [65535, 0], "that is born of woman is of few days and": [65535, 0], "is born of woman is of few days and full": [65535, 0], "born of woman is of few days and full of": [65535, 0], "of woman is of few days and full of trouble": [65535, 0], "woman is of few days and full of trouble as": [65535, 0], "is of few days and full of trouble as the": [65535, 0], "of few days and full of trouble as the scripture": [65535, 0], "few days and full of trouble as the scripture says": [65535, 0], "days and full of trouble as the scripture says and": [65535, 0], "and full of trouble as the scripture says and i": [65535, 0], "full of trouble as the scripture says and i reckon": [65535, 0], "of trouble as the scripture says and i reckon it's": [65535, 0], "trouble as the scripture says and i reckon it's so": [65535, 0], "as the scripture says and i reckon it's so he'll": [65535, 0], "the scripture says and i reckon it's so he'll play": [65535, 0], "scripture says and i reckon it's so he'll play hookey": [65535, 0], "says and i reckon it's so he'll play hookey this": [65535, 0], "and i reckon it's so he'll play hookey this evening": [65535, 0], "i reckon it's so he'll play hookey this evening and": [65535, 0], "reckon it's so he'll play hookey this evening and i'll": [65535, 0], "it's so he'll play hookey this evening and i'll just": [65535, 0], "so he'll play hookey this evening and i'll just be": [65535, 0], "he'll play hookey this evening and i'll just be obliged": [65535, 0], "play hookey this evening and i'll just be obliged to": [65535, 0], "hookey this evening and i'll just be obliged to make": [65535, 0], "this evening and i'll just be obliged to make him": [65535, 0], "evening and i'll just be obliged to make him work": [65535, 0], "and i'll just be obliged to make him work to": [65535, 0], "i'll just be obliged to make him work to morrow": [65535, 0], "just be obliged to make him work to morrow to": [65535, 0], "be obliged to make him work to morrow to punish": [65535, 0], "obliged to make him work to morrow to punish him": [65535, 0], "to make him work to morrow to punish him it's": [65535, 0], "make him work to morrow to punish him it's mighty": [65535, 0], "him work to morrow to punish him it's mighty hard": [65535, 0], "work to morrow to punish him it's mighty hard to": [65535, 0], "to morrow to punish him it's mighty hard to make": [65535, 0], "morrow to punish him it's mighty hard to make him": [65535, 0], "to punish him it's mighty hard to make him work": [65535, 0], "punish him it's mighty hard to make him work saturdays": [65535, 0], "him it's mighty hard to make him work saturdays when": [65535, 0], "it's mighty hard to make him work saturdays when all": [65535, 0], "mighty hard to make him work saturdays when all the": [65535, 0], "hard to make him work saturdays when all the boys": [65535, 0], "to make him work saturdays when all the boys is": [65535, 0], "make him work saturdays when all the boys is having": [65535, 0], "him work saturdays when all the boys is having holiday": [65535, 0], "work saturdays when all the boys is having holiday but": [65535, 0], "saturdays when all the boys is having holiday but he": [65535, 0], "when all the boys is having holiday but he hates": [65535, 0], "all the boys is having holiday but he hates work": [65535, 0], "the boys is having holiday but he hates work more": [65535, 0], "boys is having holiday but he hates work more than": [65535, 0], "is having holiday but he hates work more than he": [65535, 0], "having holiday but he hates work more than he hates": [65535, 0], "holiday but he hates work more than he hates anything": [65535, 0], "but he hates work more than he hates anything else": [65535, 0], "he hates work more than he hates anything else and": [65535, 0], "hates work more than he hates anything else and i've": [65535, 0], "work more than he hates anything else and i've got": [65535, 0], "more than he hates anything else and i've got to": [65535, 0], "than he hates anything else and i've got to do": [65535, 0], "he hates anything else and i've got to do some": [65535, 0], "hates anything else and i've got to do some of": [65535, 0], "anything else and i've got to do some of my": [65535, 0], "else and i've got to do some of my duty": [65535, 0], "and i've got to do some of my duty by": [65535, 0], "i've got to do some of my duty by him": [65535, 0], "got to do some of my duty by him or": [65535, 0], "to do some of my duty by him or i'll": [65535, 0], "do some of my duty by him or i'll be": [65535, 0], "some of my duty by him or i'll be the": [65535, 0], "of my duty by him or i'll be the ruination": [65535, 0], "my duty by him or i'll be the ruination of": [65535, 0], "duty by him or i'll be the ruination of the": [65535, 0], "by him or i'll be the ruination of the child": [65535, 0], "him or i'll be the ruination of the child tom": [65535, 0], "or i'll be the ruination of the child tom did": [65535, 0], "i'll be the ruination of the child tom did play": [65535, 0], "be the ruination of the child tom did play hookey": [65535, 0], "the ruination of the child tom did play hookey and": [65535, 0], "ruination of the child tom did play hookey and he": [65535, 0], "of the child tom did play hookey and he had": [65535, 0], "the child tom did play hookey and he had a": [65535, 0], "child tom did play hookey and he had a very": [65535, 0], "tom did play hookey and he had a very good": [65535, 0], "did play hookey and he had a very good time": [65535, 0], "play hookey and he had a very good time he": [65535, 0], "hookey and he had a very good time he got": [65535, 0], "and he had a very good time he got back": [65535, 0], "he had a very good time he got back home": [65535, 0], "had a very good time he got back home barely": [65535, 0], "a very good time he got back home barely in": [65535, 0], "very good time he got back home barely in season": [65535, 0], "good time he got back home barely in season to": [65535, 0], "time he got back home barely in season to help": [65535, 0], "he got back home barely in season to help jim": [65535, 0], "got back home barely in season to help jim the": [65535, 0], "back home barely in season to help jim the small": [65535, 0], "home barely in season to help jim the small colored": [65535, 0], "barely in season to help jim the small colored boy": [65535, 0], "in season to help jim the small colored boy saw": [65535, 0], "season to help jim the small colored boy saw next": [65535, 0], "to help jim the small colored boy saw next day's": [65535, 0], "help jim the small colored boy saw next day's wood": [65535, 0], "jim the small colored boy saw next day's wood and": [65535, 0], "the small colored boy saw next day's wood and split": [65535, 0], "small colored boy saw next day's wood and split the": [65535, 0], "colored boy saw next day's wood and split the kindlings": [65535, 0], "boy saw next day's wood and split the kindlings before": [65535, 0], "saw next day's wood and split the kindlings before supper": [65535, 0], "next day's wood and split the kindlings before supper at": [65535, 0], "day's wood and split the kindlings before supper at least": [65535, 0], "wood and split the kindlings before supper at least he": [65535, 0], "and split the kindlings before supper at least he was": [65535, 0], "split the kindlings before supper at least he was there": [65535, 0], "the kindlings before supper at least he was there in": [65535, 0], "kindlings before supper at least he was there in time": [65535, 0], "before supper at least he was there in time to": [65535, 0], "supper at least he was there in time to tell": [65535, 0], "at least he was there in time to tell his": [65535, 0], "least he was there in time to tell his adventures": [65535, 0], "he was there in time to tell his adventures to": [65535, 0], "was there in time to tell his adventures to jim": [65535, 0], "there in time to tell his adventures to jim while": [65535, 0], "in time to tell his adventures to jim while jim": [65535, 0], "time to tell his adventures to jim while jim did": [65535, 0], "to tell his adventures to jim while jim did three": [65535, 0], "tell his adventures to jim while jim did three fourths": [65535, 0], "his adventures to jim while jim did three fourths of": [65535, 0], "adventures to jim while jim did three fourths of the": [65535, 0], "to jim while jim did three fourths of the work": [65535, 0], "jim while jim did three fourths of the work tom's": [65535, 0], "while jim did three fourths of the work tom's younger": [65535, 0], "jim did three fourths of the work tom's younger brother": [65535, 0], "did three fourths of the work tom's younger brother or": [65535, 0], "three fourths of the work tom's younger brother or rather": [65535, 0], "fourths of the work tom's younger brother or rather half": [65535, 0], "of the work tom's younger brother or rather half brother": [65535, 0], "the work tom's younger brother or rather half brother sid": [65535, 0], "work tom's younger brother or rather half brother sid was": [65535, 0], "tom's younger brother or rather half brother sid was already": [65535, 0], "younger brother or rather half brother sid was already through": [65535, 0], "brother or rather half brother sid was already through with": [65535, 0], "or rather half brother sid was already through with his": [65535, 0], "rather half brother sid was already through with his part": [65535, 0], "half brother sid was already through with his part of": [65535, 0], "brother sid was already through with his part of the": [65535, 0], "sid was already through with his part of the work": [65535, 0], "was already through with his part of the work picking": [65535, 0], "already through with his part of the work picking up": [65535, 0], "through with his part of the work picking up chips": [65535, 0], "with his part of the work picking up chips for": [65535, 0], "his part of the work picking up chips for he": [65535, 0], "part of the work picking up chips for he was": [65535, 0], "of the work picking up chips for he was a": [65535, 0], "the work picking up chips for he was a quiet": [65535, 0], "work picking up chips for he was a quiet boy": [65535, 0], "picking up chips for he was a quiet boy and": [65535, 0], "up chips for he was a quiet boy and had": [65535, 0], "chips for he was a quiet boy and had no": [65535, 0], "for he was a quiet boy and had no adventurous": [65535, 0], "he was a quiet boy and had no adventurous troublesome": [65535, 0], "was a quiet boy and had no adventurous troublesome ways": [65535, 0], "a quiet boy and had no adventurous troublesome ways while": [65535, 0], "quiet boy and had no adventurous troublesome ways while tom": [65535, 0], "boy and had no adventurous troublesome ways while tom was": [65535, 0], "and had no adventurous troublesome ways while tom was eating": [65535, 0], "had no adventurous troublesome ways while tom was eating his": [65535, 0], "no adventurous troublesome ways while tom was eating his supper": [65535, 0], "adventurous troublesome ways while tom was eating his supper and": [65535, 0], "troublesome ways while tom was eating his supper and stealing": [65535, 0], "ways while tom was eating his supper and stealing sugar": [65535, 0], "while tom was eating his supper and stealing sugar as": [65535, 0], "tom was eating his supper and stealing sugar as opportunity": [65535, 0], "was eating his supper and stealing sugar as opportunity offered": [65535, 0], "eating his supper and stealing sugar as opportunity offered aunt": [65535, 0], "his supper and stealing sugar as opportunity offered aunt polly": [65535, 0], "supper and stealing sugar as opportunity offered aunt polly asked": [65535, 0], "and stealing sugar as opportunity offered aunt polly asked him": [65535, 0], "stealing sugar as opportunity offered aunt polly asked him questions": [65535, 0], "sugar as opportunity offered aunt polly asked him questions that": [65535, 0], "as opportunity offered aunt polly asked him questions that were": [65535, 0], "opportunity offered aunt polly asked him questions that were full": [65535, 0], "offered aunt polly asked him questions that were full of": [65535, 0], "aunt polly asked him questions that were full of guile": [65535, 0], "polly asked him questions that were full of guile and": [65535, 0], "asked him questions that were full of guile and very": [65535, 0], "him questions that were full of guile and very deep": [65535, 0], "questions that were full of guile and very deep for": [65535, 0], "that were full of guile and very deep for she": [65535, 0], "were full of guile and very deep for she wanted": [65535, 0], "full of guile and very deep for she wanted to": [65535, 0], "of guile and very deep for she wanted to trap": [65535, 0], "guile and very deep for she wanted to trap him": [65535, 0], "and very deep for she wanted to trap him into": [65535, 0], "very deep for she wanted to trap him into damaging": [65535, 0], "deep for she wanted to trap him into damaging revealments": [65535, 0], "for she wanted to trap him into damaging revealments like": [65535, 0], "she wanted to trap him into damaging revealments like many": [65535, 0], "wanted to trap him into damaging revealments like many other": [65535, 0], "to trap him into damaging revealments like many other simple": [65535, 0], "trap him into damaging revealments like many other simple hearted": [65535, 0], "him into damaging revealments like many other simple hearted souls": [65535, 0], "into damaging revealments like many other simple hearted souls it": [65535, 0], "damaging revealments like many other simple hearted souls it was": [65535, 0], "revealments like many other simple hearted souls it was her": [65535, 0], "like many other simple hearted souls it was her pet": [65535, 0], "many other simple hearted souls it was her pet vanity": [65535, 0], "other simple hearted souls it was her pet vanity to": [65535, 0], "simple hearted souls it was her pet vanity to believe": [65535, 0], "hearted souls it was her pet vanity to believe she": [65535, 0], "souls it was her pet vanity to believe she was": [65535, 0], "it was her pet vanity to believe she was endowed": [65535, 0], "was her pet vanity to believe she was endowed with": [65535, 0], "her pet vanity to believe she was endowed with a": [65535, 0], "pet vanity to believe she was endowed with a talent": [65535, 0], "vanity to believe she was endowed with a talent for": [65535, 0], "to believe she was endowed with a talent for dark": [65535, 0], "believe she was endowed with a talent for dark and": [65535, 0], "she was endowed with a talent for dark and mysterious": [65535, 0], "was endowed with a talent for dark and mysterious diplomacy": [65535, 0], "endowed with a talent for dark and mysterious diplomacy and": [65535, 0], "with a talent for dark and mysterious diplomacy and she": [65535, 0], "a talent for dark and mysterious diplomacy and she loved": [65535, 0], "talent for dark and mysterious diplomacy and she loved to": [65535, 0], "for dark and mysterious diplomacy and she loved to contemplate": [65535, 0], "dark and mysterious diplomacy and she loved to contemplate her": [65535, 0], "and mysterious diplomacy and she loved to contemplate her most": [65535, 0], "mysterious diplomacy and she loved to contemplate her most transparent": [65535, 0], "diplomacy and she loved to contemplate her most transparent devices": [65535, 0], "and she loved to contemplate her most transparent devices as": [65535, 0], "she loved to contemplate her most transparent devices as marvels": [65535, 0], "loved to contemplate her most transparent devices as marvels of": [65535, 0], "to contemplate her most transparent devices as marvels of low": [65535, 0], "contemplate her most transparent devices as marvels of low cunning": [65535, 0], "her most transparent devices as marvels of low cunning said": [65535, 0], "most transparent devices as marvels of low cunning said she": [65535, 0], "transparent devices as marvels of low cunning said she tom": [65535, 0], "devices as marvels of low cunning said she tom it": [65535, 0], "as marvels of low cunning said she tom it was": [65535, 0], "marvels of low cunning said she tom it was middling": [65535, 0], "of low cunning said she tom it was middling warm": [65535, 0], "low cunning said she tom it was middling warm in": [65535, 0], "cunning said she tom it was middling warm in school": [65535, 0], "said she tom it was middling warm in school warn't": [65535, 0], "she tom it was middling warm in school warn't it": [65535, 0], "tom it was middling warm in school warn't it yes'm": [65535, 0], "it was middling warm in school warn't it yes'm powerful": [65535, 0], "was middling warm in school warn't it yes'm powerful warm": [65535, 0], "middling warm in school warn't it yes'm powerful warm warn't": [65535, 0], "warm in school warn't it yes'm powerful warm warn't it": [65535, 0], "in school warn't it yes'm powerful warm warn't it yes'm": [65535, 0], "school warn't it yes'm powerful warm warn't it yes'm didn't": [65535, 0], "warn't it yes'm powerful warm warn't it yes'm didn't you": [65535, 0], "it yes'm powerful warm warn't it yes'm didn't you want": [65535, 0], "yes'm powerful warm warn't it yes'm didn't you want to": [65535, 0], "powerful warm warn't it yes'm didn't you want to go": [65535, 0], "warm warn't it yes'm didn't you want to go in": [65535, 0], "warn't it yes'm didn't you want to go in a": [65535, 0], "it yes'm didn't you want to go in a swimming": [65535, 0], "yes'm didn't you want to go in a swimming tom": [65535, 0], "didn't you want to go in a swimming tom a": [65535, 0], "you want to go in a swimming tom a bit": [65535, 0], "want to go in a swimming tom a bit of": [65535, 0], "to go in a swimming tom a bit of a": [65535, 0], "go in a swimming tom a bit of a scare": [65535, 0], "in a swimming tom a bit of a scare shot": [65535, 0], "a swimming tom a bit of a scare shot through": [65535, 0], "swimming tom a bit of a scare shot through tom": [65535, 0], "tom a bit of a scare shot through tom a": [65535, 0], "a bit of a scare shot through tom a touch": [65535, 0], "bit of a scare shot through tom a touch of": [65535, 0], "of a scare shot through tom a touch of uncomfortable": [65535, 0], "a scare shot through tom a touch of uncomfortable suspicion": [65535, 0], "scare shot through tom a touch of uncomfortable suspicion he": [65535, 0], "shot through tom a touch of uncomfortable suspicion he searched": [65535, 0], "through tom a touch of uncomfortable suspicion he searched aunt": [65535, 0], "tom a touch of uncomfortable suspicion he searched aunt polly's": [65535, 0], "a touch of uncomfortable suspicion he searched aunt polly's face": [65535, 0], "touch of uncomfortable suspicion he searched aunt polly's face but": [65535, 0], "of uncomfortable suspicion he searched aunt polly's face but it": [65535, 0], "uncomfortable suspicion he searched aunt polly's face but it told": [65535, 0], "suspicion he searched aunt polly's face but it told him": [65535, 0], "he searched aunt polly's face but it told him nothing": [65535, 0], "searched aunt polly's face but it told him nothing so": [65535, 0], "aunt polly's face but it told him nothing so he": [65535, 0], "polly's face but it told him nothing so he said": [65535, 0], "face but it told him nothing so he said no'm": [65535, 0], "but it told him nothing so he said no'm well": [65535, 0], "it told him nothing so he said no'm well not": [65535, 0], "told him nothing so he said no'm well not very": [65535, 0], "him nothing so he said no'm well not very much": [65535, 0], "nothing so he said no'm well not very much the": [65535, 0], "so he said no'm well not very much the old": [65535, 0], "he said no'm well not very much the old lady": [65535, 0], "said no'm well not very much the old lady reached": [65535, 0], "no'm well not very much the old lady reached out": [65535, 0], "well not very much the old lady reached out her": [65535, 0], "not very much the old lady reached out her hand": [65535, 0], "very much the old lady reached out her hand and": [65535, 0], "much the old lady reached out her hand and felt": [65535, 0], "the old lady reached out her hand and felt tom's": [65535, 0], "old lady reached out her hand and felt tom's shirt": [65535, 0], "lady reached out her hand and felt tom's shirt and": [65535, 0], "reached out her hand and felt tom's shirt and said": [65535, 0], "out her hand and felt tom's shirt and said but": [65535, 0], "her hand and felt tom's shirt and said but you": [65535, 0], "hand and felt tom's shirt and said but you ain't": [65535, 0], "and felt tom's shirt and said but you ain't too": [65535, 0], "felt tom's shirt and said but you ain't too warm": [65535, 0], "tom's shirt and said but you ain't too warm now": [65535, 0], "shirt and said but you ain't too warm now though": [65535, 0], "and said but you ain't too warm now though and": [65535, 0], "said but you ain't too warm now though and it": [65535, 0], "but you ain't too warm now though and it flattered": [65535, 0], "you ain't too warm now though and it flattered her": [65535, 0], "ain't too warm now though and it flattered her to": [65535, 0], "too warm now though and it flattered her to reflect": [65535, 0], "warm now though and it flattered her to reflect that": [65535, 0], "now though and it flattered her to reflect that she": [65535, 0], "though and it flattered her to reflect that she had": [65535, 0], "and it flattered her to reflect that she had discovered": [65535, 0], "it flattered her to reflect that she had discovered that": [65535, 0], "flattered her to reflect that she had discovered that the": [65535, 0], "her to reflect that she had discovered that the shirt": [65535, 0], "to reflect that she had discovered that the shirt was": [65535, 0], "reflect that she had discovered that the shirt was dry": [65535, 0], "that she had discovered that the shirt was dry without": [65535, 0], "she had discovered that the shirt was dry without anybody": [65535, 0], "had discovered that the shirt was dry without anybody knowing": [65535, 0], "discovered that the shirt was dry without anybody knowing that": [65535, 0], "that the shirt was dry without anybody knowing that that": [65535, 0], "the shirt was dry without anybody knowing that that was": [65535, 0], "shirt was dry without anybody knowing that that was what": [65535, 0], "was dry without anybody knowing that that was what she": [65535, 0], "dry without anybody knowing that that was what she had": [65535, 0], "without anybody knowing that that was what she had in": [65535, 0], "anybody knowing that that was what she had in her": [65535, 0], "knowing that that was what she had in her mind": [65535, 0], "that that was what she had in her mind but": [65535, 0], "that was what she had in her mind but in": [65535, 0], "was what she had in her mind but in spite": [65535, 0], "what she had in her mind but in spite of": [65535, 0], "she had in her mind but in spite of her": [65535, 0], "had in her mind but in spite of her tom": [65535, 0], "in her mind but in spite of her tom knew": [65535, 0], "her mind but in spite of her tom knew where": [65535, 0], "mind but in spite of her tom knew where the": [65535, 0], "but in spite of her tom knew where the wind": [65535, 0], "in spite of her tom knew where the wind lay": [65535, 0], "spite of her tom knew where the wind lay now": [65535, 0], "of her tom knew where the wind lay now so": [65535, 0], "her tom knew where the wind lay now so he": [65535, 0], "tom knew where the wind lay now so he forestalled": [65535, 0], "knew where the wind lay now so he forestalled what": [65535, 0], "where the wind lay now so he forestalled what might": [65535, 0], "the wind lay now so he forestalled what might be": [65535, 0], "wind lay now so he forestalled what might be the": [65535, 0], "lay now so he forestalled what might be the next": [65535, 0], "now so he forestalled what might be the next move": [65535, 0], "so he forestalled what might be the next move some": [65535, 0], "he forestalled what might be the next move some of": [65535, 0], "forestalled what might be the next move some of us": [65535, 0], "what might be the next move some of us pumped": [65535, 0], "might be the next move some of us pumped on": [65535, 0], "be the next move some of us pumped on our": [65535, 0], "the next move some of us pumped on our heads": [65535, 0], "next move some of us pumped on our heads mine's": [65535, 0], "move some of us pumped on our heads mine's damp": [65535, 0], "some of us pumped on our heads mine's damp yet": [65535, 0], "of us pumped on our heads mine's damp yet see": [65535, 0], "us pumped on our heads mine's damp yet see aunt": [65535, 0], "pumped on our heads mine's damp yet see aunt polly": [65535, 0], "on our heads mine's damp yet see aunt polly was": [65535, 0], "our heads mine's damp yet see aunt polly was vexed": [65535, 0], "heads mine's damp yet see aunt polly was vexed to": [65535, 0], "mine's damp yet see aunt polly was vexed to think": [65535, 0], "damp yet see aunt polly was vexed to think she": [65535, 0], "yet see aunt polly was vexed to think she had": [65535, 0], "see aunt polly was vexed to think she had overlooked": [65535, 0], "aunt polly was vexed to think she had overlooked that": [65535, 0], "polly was vexed to think she had overlooked that bit": [65535, 0], "was vexed to think she had overlooked that bit of": [65535, 0], "vexed to think she had overlooked that bit of circumstantial": [65535, 0], "to think she had overlooked that bit of circumstantial evidence": [65535, 0], "think she had overlooked that bit of circumstantial evidence and": [65535, 0], "she had overlooked that bit of circumstantial evidence and missed": [65535, 0], "had overlooked that bit of circumstantial evidence and missed a": [65535, 0], "overlooked that bit of circumstantial evidence and missed a trick": [65535, 0], "that bit of circumstantial evidence and missed a trick then": [65535, 0], "bit of circumstantial evidence and missed a trick then she": [65535, 0], "of circumstantial evidence and missed a trick then she had": [65535, 0], "circumstantial evidence and missed a trick then she had a": [65535, 0], "evidence and missed a trick then she had a new": [65535, 0], "and missed a trick then she had a new inspiration": [65535, 0], "missed a trick then she had a new inspiration tom": [65535, 0], "a trick then she had a new inspiration tom you": [65535, 0], "trick then she had a new inspiration tom you didn't": [65535, 0], "then she had a new inspiration tom you didn't have": [65535, 0], "she had a new inspiration tom you didn't have to": [65535, 0], "had a new inspiration tom you didn't have to undo": [65535, 0], "a new inspiration tom you didn't have to undo your": [65535, 0], "new inspiration tom you didn't have to undo your shirt": [65535, 0], "inspiration tom you didn't have to undo your shirt collar": [65535, 0], "tom you didn't have to undo your shirt collar where": [65535, 0], "you didn't have to undo your shirt collar where i": [65535, 0], "didn't have to undo your shirt collar where i sewed": [65535, 0], "have to undo your shirt collar where i sewed it": [65535, 0], "to undo your shirt collar where i sewed it to": [65535, 0], "undo your shirt collar where i sewed it to pump": [65535, 0], "your shirt collar where i sewed it to pump on": [65535, 0], "shirt collar where i sewed it to pump on your": [65535, 0], "collar where i sewed it to pump on your head": [65535, 0], "where i sewed it to pump on your head did": [65535, 0], "i sewed it to pump on your head did you": [65535, 0], "sewed it to pump on your head did you unbutton": [65535, 0], "it to pump on your head did you unbutton your": [65535, 0], "to pump on your head did you unbutton your jacket": [65535, 0], "pump on your head did you unbutton your jacket the": [65535, 0], "on your head did you unbutton your jacket the trouble": [65535, 0], "your head did you unbutton your jacket the trouble vanished": [65535, 0], "head did you unbutton your jacket the trouble vanished out": [65535, 0], "did you unbutton your jacket the trouble vanished out of": [65535, 0], "you unbutton your jacket the trouble vanished out of tom's": [65535, 0], "unbutton your jacket the trouble vanished out of tom's face": [65535, 0], "your jacket the trouble vanished out of tom's face he": [65535, 0], "jacket the trouble vanished out of tom's face he opened": [65535, 0], "the trouble vanished out of tom's face he opened his": [65535, 0], "trouble vanished out of tom's face he opened his jacket": [65535, 0], "vanished out of tom's face he opened his jacket his": [65535, 0], "out of tom's face he opened his jacket his shirt": [65535, 0], "of tom's face he opened his jacket his shirt collar": [65535, 0], "tom's face he opened his jacket his shirt collar was": [65535, 0], "face he opened his jacket his shirt collar was securely": [65535, 0], "he opened his jacket his shirt collar was securely sewed": [65535, 0], "opened his jacket his shirt collar was securely sewed bother": [65535, 0], "his jacket his shirt collar was securely sewed bother well": [65535, 0], "jacket his shirt collar was securely sewed bother well go": [65535, 0], "his shirt collar was securely sewed bother well go 'long": [65535, 0], "shirt collar was securely sewed bother well go 'long with": [65535, 0], "collar was securely sewed bother well go 'long with you": [65535, 0], "was securely sewed bother well go 'long with you i'd": [65535, 0], "securely sewed bother well go 'long with you i'd made": [65535, 0], "sewed bother well go 'long with you i'd made sure": [65535, 0], "bother well go 'long with you i'd made sure you'd": [65535, 0], "well go 'long with you i'd made sure you'd played": [65535, 0], "go 'long with you i'd made sure you'd played hookey": [65535, 0], "'long with you i'd made sure you'd played hookey and": [65535, 0], "with you i'd made sure you'd played hookey and been": [65535, 0], "you i'd made sure you'd played hookey and been a": [65535, 0], "i'd made sure you'd played hookey and been a swimming": [65535, 0], "made sure you'd played hookey and been a swimming but": [65535, 0], "sure you'd played hookey and been a swimming but i": [65535, 0], "you'd played hookey and been a swimming but i forgive": [65535, 0], "played hookey and been a swimming but i forgive ye": [65535, 0], "hookey and been a swimming but i forgive ye tom": [65535, 0], "and been a swimming but i forgive ye tom i": [65535, 0], "been a swimming but i forgive ye tom i reckon": [65535, 0], "a swimming but i forgive ye tom i reckon you're": [65535, 0], "swimming but i forgive ye tom i reckon you're a": [65535, 0], "but i forgive ye tom i reckon you're a kind": [65535, 0], "i forgive ye tom i reckon you're a kind of": [65535, 0], "forgive ye tom i reckon you're a kind of a": [65535, 0], "ye tom i reckon you're a kind of a singed": [65535, 0], "tom i reckon you're a kind of a singed cat": [65535, 0], "i reckon you're a kind of a singed cat as": [65535, 0], "reckon you're a kind of a singed cat as the": [65535, 0], "you're a kind of a singed cat as the saying": [65535, 0], "a kind of a singed cat as the saying is": [65535, 0], "kind of a singed cat as the saying is better'n": [65535, 0], "of a singed cat as the saying is better'n you": [65535, 0], "a singed cat as the saying is better'n you look": [65535, 0], "singed cat as the saying is better'n you look this": [65535, 0], "cat as the saying is better'n you look this time": [65535, 0], "as the saying is better'n you look this time she": [65535, 0], "the saying is better'n you look this time she was": [65535, 0], "saying is better'n you look this time she was half": [65535, 0], "is better'n you look this time she was half sorry": [65535, 0], "better'n you look this time she was half sorry her": [65535, 0], "you look this time she was half sorry her sagacity": [65535, 0], "look this time she was half sorry her sagacity had": [65535, 0], "this time she was half sorry her sagacity had miscarried": [65535, 0], "time she was half sorry her sagacity had miscarried and": [65535, 0], "she was half sorry her sagacity had miscarried and half": [65535, 0], "was half sorry her sagacity had miscarried and half glad": [65535, 0], "half sorry her sagacity had miscarried and half glad that": [65535, 0], "sorry her sagacity had miscarried and half glad that tom": [65535, 0], "her sagacity had miscarried and half glad that tom had": [65535, 0], "sagacity had miscarried and half glad that tom had stumbled": [65535, 0], "had miscarried and half glad that tom had stumbled into": [65535, 0], "miscarried and half glad that tom had stumbled into obedient": [65535, 0], "and half glad that tom had stumbled into obedient conduct": [65535, 0], "half glad that tom had stumbled into obedient conduct for": [65535, 0], "glad that tom had stumbled into obedient conduct for once": [65535, 0], "that tom had stumbled into obedient conduct for once but": [65535, 0], "tom had stumbled into obedient conduct for once but sidney": [65535, 0], "had stumbled into obedient conduct for once but sidney said": [65535, 0], "stumbled into obedient conduct for once but sidney said well": [65535, 0], "into obedient conduct for once but sidney said well now": [65535, 0], "obedient conduct for once but sidney said well now if": [65535, 0], "conduct for once but sidney said well now if i": [65535, 0], "for once but sidney said well now if i didn't": [65535, 0], "once but sidney said well now if i didn't think": [65535, 0], "but sidney said well now if i didn't think you": [65535, 0], "sidney said well now if i didn't think you sewed": [65535, 0], "said well now if i didn't think you sewed his": [65535, 0], "well now if i didn't think you sewed his collar": [65535, 0], "now if i didn't think you sewed his collar with": [65535, 0], "if i didn't think you sewed his collar with white": [65535, 0], "i didn't think you sewed his collar with white thread": [65535, 0], "didn't think you sewed his collar with white thread but": [65535, 0], "think you sewed his collar with white thread but it's": [65535, 0], "you sewed his collar with white thread but it's black": [65535, 0], "sewed his collar with white thread but it's black why": [65535, 0], "his collar with white thread but it's black why i": [65535, 0], "collar with white thread but it's black why i did": [65535, 0], "with white thread but it's black why i did sew": [65535, 0], "white thread but it's black why i did sew it": [65535, 0], "thread but it's black why i did sew it with": [65535, 0], "but it's black why i did sew it with white": [65535, 0], "it's black why i did sew it with white tom": [65535, 0], "black why i did sew it with white tom but": [65535, 0], "why i did sew it with white tom but tom": [65535, 0], "i did sew it with white tom but tom did": [65535, 0], "did sew it with white tom but tom did not": [65535, 0], "sew it with white tom but tom did not wait": [65535, 0], "it with white tom but tom did not wait for": [65535, 0], "with white tom but tom did not wait for the": [65535, 0], "white tom but tom did not wait for the rest": [65535, 0], "tom but tom did not wait for the rest as": [65535, 0], "but tom did not wait for the rest as he": [65535, 0], "tom did not wait for the rest as he went": [65535, 0], "did not wait for the rest as he went out": [65535, 0], "not wait for the rest as he went out at": [65535, 0], "wait for the rest as he went out at the": [65535, 0], "for the rest as he went out at the door": [65535, 0], "the rest as he went out at the door he": [65535, 0], "rest as he went out at the door he said": [65535, 0], "as he went out at the door he said siddy": [65535, 0], "he went out at the door he said siddy i'll": [65535, 0], "went out at the door he said siddy i'll lick": [65535, 0], "out at the door he said siddy i'll lick you": [65535, 0], "at the door he said siddy i'll lick you for": [65535, 0], "the door he said siddy i'll lick you for that": [65535, 0], "door he said siddy i'll lick you for that in": [65535, 0], "he said siddy i'll lick you for that in a": [65535, 0], "said siddy i'll lick you for that in a safe": [65535, 0], "siddy i'll lick you for that in a safe place": [65535, 0], "i'll lick you for that in a safe place tom": [65535, 0], "lick you for that in a safe place tom examined": [65535, 0], "you for that in a safe place tom examined two": [65535, 0], "for that in a safe place tom examined two large": [65535, 0], "that in a safe place tom examined two large needles": [65535, 0], "in a safe place tom examined two large needles which": [65535, 0], "a safe place tom examined two large needles which were": [65535, 0], "safe place tom examined two large needles which were thrust": [65535, 0], "place tom examined two large needles which were thrust into": [65535, 0], "tom examined two large needles which were thrust into the": [65535, 0], "examined two large needles which were thrust into the lapels": [65535, 0], "two large needles which were thrust into the lapels of": [65535, 0], "large needles which were thrust into the lapels of his": [65535, 0], "needles which were thrust into the lapels of his jacket": [65535, 0], "which were thrust into the lapels of his jacket and": [65535, 0], "were thrust into the lapels of his jacket and had": [65535, 0], "thrust into the lapels of his jacket and had thread": [65535, 0], "into the lapels of his jacket and had thread bound": [65535, 0], "the lapels of his jacket and had thread bound about": [65535, 0], "lapels of his jacket and had thread bound about them": [65535, 0], "of his jacket and had thread bound about them one": [65535, 0], "his jacket and had thread bound about them one needle": [65535, 0], "jacket and had thread bound about them one needle carried": [65535, 0], "and had thread bound about them one needle carried white": [65535, 0], "had thread bound about them one needle carried white thread": [65535, 0], "thread bound about them one needle carried white thread and": [65535, 0], "bound about them one needle carried white thread and the": [65535, 0], "about them one needle carried white thread and the other": [65535, 0], "them one needle carried white thread and the other black": [65535, 0], "one needle carried white thread and the other black he": [65535, 0], "needle carried white thread and the other black he said": [65535, 0], "carried white thread and the other black he said she'd": [65535, 0], "white thread and the other black he said she'd never": [65535, 0], "thread and the other black he said she'd never noticed": [65535, 0], "and the other black he said she'd never noticed if": [65535, 0], "the other black he said she'd never noticed if it": [65535, 0], "other black he said she'd never noticed if it hadn't": [65535, 0], "black he said she'd never noticed if it hadn't been": [65535, 0], "he said she'd never noticed if it hadn't been for": [65535, 0], "said she'd never noticed if it hadn't been for sid": [65535, 0], "she'd never noticed if it hadn't been for sid confound": [65535, 0], "never noticed if it hadn't been for sid confound it": [65535, 0], "noticed if it hadn't been for sid confound it sometimes": [65535, 0], "if it hadn't been for sid confound it sometimes she": [65535, 0], "it hadn't been for sid confound it sometimes she sews": [65535, 0], "hadn't been for sid confound it sometimes she sews it": [65535, 0], "been for sid confound it sometimes she sews it with": [65535, 0], "for sid confound it sometimes she sews it with white": [65535, 0], "sid confound it sometimes she sews it with white and": [65535, 0], "confound it sometimes she sews it with white and sometimes": [65535, 0], "it sometimes she sews it with white and sometimes she": [65535, 0], "sometimes she sews it with white and sometimes she sews": [65535, 0], "she sews it with white and sometimes she sews it": [65535, 0], "sews it with white and sometimes she sews it with": [65535, 0], "it with white and sometimes she sews it with black": [65535, 0], "with white and sometimes she sews it with black i": [65535, 0], "white and sometimes she sews it with black i wish": [65535, 0], "and sometimes she sews it with black i wish to": [65535, 0], "sometimes she sews it with black i wish to geeminy": [65535, 0], "she sews it with black i wish to geeminy she'd": [65535, 0], "sews it with black i wish to geeminy she'd stick": [65535, 0], "it with black i wish to geeminy she'd stick to": [65535, 0], "with black i wish to geeminy she'd stick to one": [65535, 0], "black i wish to geeminy she'd stick to one or": [65535, 0], "i wish to geeminy she'd stick to one or t'other": [65535, 0], "wish to geeminy she'd stick to one or t'other i": [65535, 0], "to geeminy she'd stick to one or t'other i can't": [65535, 0], "geeminy she'd stick to one or t'other i can't keep": [65535, 0], "she'd stick to one or t'other i can't keep the": [65535, 0], "stick to one or t'other i can't keep the run": [65535, 0], "to one or t'other i can't keep the run of": [65535, 0], "one or t'other i can't keep the run of 'em": [65535, 0], "or t'other i can't keep the run of 'em but": [65535, 0], "t'other i can't keep the run of 'em but i": [65535, 0], "i can't keep the run of 'em but i bet": [65535, 0], "can't keep the run of 'em but i bet you": [65535, 0], "keep the run of 'em but i bet you i'll": [65535, 0], "the run of 'em but i bet you i'll lam": [65535, 0], "run of 'em but i bet you i'll lam sid": [65535, 0], "of 'em but i bet you i'll lam sid for": [65535, 0], "'em but i bet you i'll lam sid for that": [65535, 0], "but i bet you i'll lam sid for that i'll": [65535, 0], "i bet you i'll lam sid for that i'll learn": [65535, 0], "bet you i'll lam sid for that i'll learn him": [65535, 0], "you i'll lam sid for that i'll learn him he": [65535, 0], "i'll lam sid for that i'll learn him he was": [65535, 0], "lam sid for that i'll learn him he was not": [65535, 0], "sid for that i'll learn him he was not the": [65535, 0], "for that i'll learn him he was not the model": [65535, 0], "that i'll learn him he was not the model boy": [65535, 0], "i'll learn him he was not the model boy of": [65535, 0], "learn him he was not the model boy of the": [65535, 0], "him he was not the model boy of the village": [65535, 0], "he was not the model boy of the village he": [65535, 0], "was not the model boy of the village he knew": [65535, 0], "not the model boy of the village he knew the": [65535, 0], "the model boy of the village he knew the model": [65535, 0], "model boy of the village he knew the model boy": [65535, 0], "boy of the village he knew the model boy very": [65535, 0], "of the village he knew the model boy very well": [65535, 0], "the village he knew the model boy very well though": [65535, 0], "village he knew the model boy very well though and": [65535, 0], "he knew the model boy very well though and loathed": [65535, 0], "knew the model boy very well though and loathed him": [65535, 0], "the model boy very well though and loathed him within": [65535, 0], "model boy very well though and loathed him within two": [65535, 0], "boy very well though and loathed him within two minutes": [65535, 0], "very well though and loathed him within two minutes or": [65535, 0], "well though and loathed him within two minutes or even": [65535, 0], "though and loathed him within two minutes or even less": [65535, 0], "and loathed him within two minutes or even less he": [65535, 0], "loathed him within two minutes or even less he had": [65535, 0], "him within two minutes or even less he had forgotten": [65535, 0], "within two minutes or even less he had forgotten all": [65535, 0], "two minutes or even less he had forgotten all his": [65535, 0], "minutes or even less he had forgotten all his troubles": [65535, 0], "or even less he had forgotten all his troubles not": [65535, 0], "even less he had forgotten all his troubles not because": [65535, 0], "less he had forgotten all his troubles not because his": [65535, 0], "he had forgotten all his troubles not because his troubles": [65535, 0], "had forgotten all his troubles not because his troubles were": [65535, 0], "forgotten all his troubles not because his troubles were one": [65535, 0], "all his troubles not because his troubles were one whit": [65535, 0], "his troubles not because his troubles were one whit less": [65535, 0], "troubles not because his troubles were one whit less heavy": [65535, 0], "not because his troubles were one whit less heavy and": [65535, 0], "because his troubles were one whit less heavy and bitter": [65535, 0], "his troubles were one whit less heavy and bitter to": [65535, 0], "troubles were one whit less heavy and bitter to him": [65535, 0], "were one whit less heavy and bitter to him than": [65535, 0], "one whit less heavy and bitter to him than a": [65535, 0], "whit less heavy and bitter to him than a man's": [65535, 0], "less heavy and bitter to him than a man's are": [65535, 0], "heavy and bitter to him than a man's are to": [65535, 0], "and bitter to him than a man's are to a": [65535, 0], "bitter to him than a man's are to a man": [65535, 0], "to him than a man's are to a man but": [65535, 0], "him than a man's are to a man but because": [65535, 0], "than a man's are to a man but because a": [65535, 0], "a man's are to a man but because a new": [65535, 0], "man's are to a man but because a new and": [65535, 0], "are to a man but because a new and powerful": [65535, 0], "to a man but because a new and powerful interest": [65535, 0], "a man but because a new and powerful interest bore": [65535, 0], "man but because a new and powerful interest bore them": [65535, 0], "but because a new and powerful interest bore them down": [65535, 0], "because a new and powerful interest bore them down and": [65535, 0], "a new and powerful interest bore them down and drove": [65535, 0], "new and powerful interest bore them down and drove them": [65535, 0], "and powerful interest bore them down and drove them out": [65535, 0], "powerful interest bore them down and drove them out of": [65535, 0], "interest bore them down and drove them out of his": [65535, 0], "bore them down and drove them out of his mind": [65535, 0], "them down and drove them out of his mind for": [65535, 0], "down and drove them out of his mind for the": [65535, 0], "and drove them out of his mind for the time": [65535, 0], "drove them out of his mind for the time just": [65535, 0], "them out of his mind for the time just as": [65535, 0], "out of his mind for the time just as men's": [65535, 0], "of his mind for the time just as men's misfortunes": [65535, 0], "his mind for the time just as men's misfortunes are": [65535, 0], "mind for the time just as men's misfortunes are forgotten": [65535, 0], "for the time just as men's misfortunes are forgotten in": [65535, 0], "the time just as men's misfortunes are forgotten in the": [65535, 0], "time just as men's misfortunes are forgotten in the excitement": [65535, 0], "just as men's misfortunes are forgotten in the excitement of": [65535, 0], "as men's misfortunes are forgotten in the excitement of new": [65535, 0], "men's misfortunes are forgotten in the excitement of new enterprises": [65535, 0], "misfortunes are forgotten in the excitement of new enterprises this": [65535, 0], "are forgotten in the excitement of new enterprises this new": [65535, 0], "forgotten in the excitement of new enterprises this new interest": [65535, 0], "in the excitement of new enterprises this new interest was": [65535, 0], "the excitement of new enterprises this new interest was a": [65535, 0], "excitement of new enterprises this new interest was a valued": [65535, 0], "of new enterprises this new interest was a valued novelty": [65535, 0], "new enterprises this new interest was a valued novelty in": [65535, 0], "enterprises this new interest was a valued novelty in whistling": [65535, 0], "this new interest was a valued novelty in whistling which": [65535, 0], "new interest was a valued novelty in whistling which he": [65535, 0], "interest was a valued novelty in whistling which he had": [65535, 0], "was a valued novelty in whistling which he had just": [65535, 0], "a valued novelty in whistling which he had just acquired": [65535, 0], "valued novelty in whistling which he had just acquired from": [65535, 0], "novelty in whistling which he had just acquired from a": [65535, 0], "in whistling which he had just acquired from a negro": [65535, 0], "whistling which he had just acquired from a negro and": [65535, 0], "which he had just acquired from a negro and he": [65535, 0], "he had just acquired from a negro and he was": [65535, 0], "had just acquired from a negro and he was suffering": [65535, 0], "just acquired from a negro and he was suffering to": [65535, 0], "acquired from a negro and he was suffering to practise": [65535, 0], "from a negro and he was suffering to practise it": [65535, 0], "a negro and he was suffering to practise it undisturbed": [65535, 0], "negro and he was suffering to practise it undisturbed it": [65535, 0], "and he was suffering to practise it undisturbed it consisted": [65535, 0], "he was suffering to practise it undisturbed it consisted in": [65535, 0], "was suffering to practise it undisturbed it consisted in a": [65535, 0], "suffering to practise it undisturbed it consisted in a peculiar": [65535, 0], "to practise it undisturbed it consisted in a peculiar bird": [65535, 0], "practise it undisturbed it consisted in a peculiar bird like": [65535, 0], "it undisturbed it consisted in a peculiar bird like turn": [65535, 0], "undisturbed it consisted in a peculiar bird like turn a": [65535, 0], "it consisted in a peculiar bird like turn a sort": [65535, 0], "consisted in a peculiar bird like turn a sort of": [65535, 0], "in a peculiar bird like turn a sort of liquid": [65535, 0], "a peculiar bird like turn a sort of liquid warble": [65535, 0], "peculiar bird like turn a sort of liquid warble produced": [65535, 0], "bird like turn a sort of liquid warble produced by": [65535, 0], "like turn a sort of liquid warble produced by touching": [65535, 0], "turn a sort of liquid warble produced by touching the": [65535, 0], "a sort of liquid warble produced by touching the tongue": [65535, 0], "sort of liquid warble produced by touching the tongue to": [65535, 0], "of liquid warble produced by touching the tongue to the": [65535, 0], "liquid warble produced by touching the tongue to the roof": [65535, 0], "warble produced by touching the tongue to the roof of": [65535, 0], "produced by touching the tongue to the roof of the": [65535, 0], "by touching the tongue to the roof of the mouth": [65535, 0], "touching the tongue to the roof of the mouth at": [65535, 0], "the tongue to the roof of the mouth at short": [65535, 0], "tongue to the roof of the mouth at short intervals": [65535, 0], "to the roof of the mouth at short intervals in": [65535, 0], "the roof of the mouth at short intervals in the": [65535, 0], "roof of the mouth at short intervals in the midst": [65535, 0], "of the mouth at short intervals in the midst of": [65535, 0], "the mouth at short intervals in the midst of the": [65535, 0], "mouth at short intervals in the midst of the music": [65535, 0], "at short intervals in the midst of the music the": [65535, 0], "short intervals in the midst of the music the reader": [65535, 0], "intervals in the midst of the music the reader probably": [65535, 0], "in the midst of the music the reader probably remembers": [65535, 0], "the midst of the music the reader probably remembers how": [65535, 0], "midst of the music the reader probably remembers how to": [65535, 0], "of the music the reader probably remembers how to do": [65535, 0], "the music the reader probably remembers how to do it": [65535, 0], "music the reader probably remembers how to do it if": [65535, 0], "the reader probably remembers how to do it if he": [65535, 0], "reader probably remembers how to do it if he has": [65535, 0], "probably remembers how to do it if he has ever": [65535, 0], "remembers how to do it if he has ever been": [65535, 0], "how to do it if he has ever been a": [65535, 0], "to do it if he has ever been a boy": [65535, 0], "do it if he has ever been a boy diligence": [65535, 0], "it if he has ever been a boy diligence and": [65535, 0], "if he has ever been a boy diligence and attention": [65535, 0], "he has ever been a boy diligence and attention soon": [65535, 0], "has ever been a boy diligence and attention soon gave": [65535, 0], "ever been a boy diligence and attention soon gave him": [65535, 0], "been a boy diligence and attention soon gave him the": [65535, 0], "a boy diligence and attention soon gave him the knack": [65535, 0], "boy diligence and attention soon gave him the knack of": [65535, 0], "diligence and attention soon gave him the knack of it": [65535, 0], "and attention soon gave him the knack of it and": [65535, 0], "attention soon gave him the knack of it and he": [65535, 0], "soon gave him the knack of it and he strode": [65535, 0], "gave him the knack of it and he strode down": [65535, 0], "him the knack of it and he strode down the": [65535, 0], "the knack of it and he strode down the street": [65535, 0], "knack of it and he strode down the street with": [65535, 0], "of it and he strode down the street with his": [65535, 0], "it and he strode down the street with his mouth": [65535, 0], "and he strode down the street with his mouth full": [65535, 0], "he strode down the street with his mouth full of": [65535, 0], "strode down the street with his mouth full of harmony": [65535, 0], "down the street with his mouth full of harmony and": [65535, 0], "the street with his mouth full of harmony and his": [65535, 0], "street with his mouth full of harmony and his soul": [65535, 0], "with his mouth full of harmony and his soul full": [65535, 0], "his mouth full of harmony and his soul full of": [65535, 0], "mouth full of harmony and his soul full of gratitude": [65535, 0], "full of harmony and his soul full of gratitude he": [65535, 0], "of harmony and his soul full of gratitude he felt": [65535, 0], "harmony and his soul full of gratitude he felt much": [65535, 0], "and his soul full of gratitude he felt much as": [65535, 0], "his soul full of gratitude he felt much as an": [65535, 0], "soul full of gratitude he felt much as an astronomer": [65535, 0], "full of gratitude he felt much as an astronomer feels": [65535, 0], "of gratitude he felt much as an astronomer feels who": [65535, 0], "gratitude he felt much as an astronomer feels who has": [65535, 0], "he felt much as an astronomer feels who has discovered": [65535, 0], "felt much as an astronomer feels who has discovered a": [65535, 0], "much as an astronomer feels who has discovered a new": [65535, 0], "as an astronomer feels who has discovered a new planet": [65535, 0], "an astronomer feels who has discovered a new planet no": [65535, 0], "astronomer feels who has discovered a new planet no doubt": [65535, 0], "feels who has discovered a new planet no doubt as": [65535, 0], "who has discovered a new planet no doubt as far": [65535, 0], "has discovered a new planet no doubt as far as": [65535, 0], "discovered a new planet no doubt as far as strong": [65535, 0], "a new planet no doubt as far as strong deep": [65535, 0], "new planet no doubt as far as strong deep unalloyed": [65535, 0], "planet no doubt as far as strong deep unalloyed pleasure": [65535, 0], "no doubt as far as strong deep unalloyed pleasure is": [65535, 0], "doubt as far as strong deep unalloyed pleasure is concerned": [65535, 0], "as far as strong deep unalloyed pleasure is concerned the": [65535, 0], "far as strong deep unalloyed pleasure is concerned the advantage": [65535, 0], "as strong deep unalloyed pleasure is concerned the advantage was": [65535, 0], "strong deep unalloyed pleasure is concerned the advantage was with": [65535, 0], "deep unalloyed pleasure is concerned the advantage was with the": [65535, 0], "unalloyed pleasure is concerned the advantage was with the boy": [65535, 0], "pleasure is concerned the advantage was with the boy not": [65535, 0], "is concerned the advantage was with the boy not the": [65535, 0], "concerned the advantage was with the boy not the astronomer": [65535, 0], "the advantage was with the boy not the astronomer the": [65535, 0], "advantage was with the boy not the astronomer the summer": [65535, 0], "was with the boy not the astronomer the summer evenings": [65535, 0], "with the boy not the astronomer the summer evenings were": [65535, 0], "the boy not the astronomer the summer evenings were long": [65535, 0], "boy not the astronomer the summer evenings were long it": [65535, 0], "not the astronomer the summer evenings were long it was": [65535, 0], "the astronomer the summer evenings were long it was not": [65535, 0], "astronomer the summer evenings were long it was not dark": [65535, 0], "the summer evenings were long it was not dark yet": [65535, 0], "summer evenings were long it was not dark yet presently": [65535, 0], "evenings were long it was not dark yet presently tom": [65535, 0], "were long it was not dark yet presently tom checked": [65535, 0], "long it was not dark yet presently tom checked his": [65535, 0], "it was not dark yet presently tom checked his whistle": [65535, 0], "was not dark yet presently tom checked his whistle a": [65535, 0], "not dark yet presently tom checked his whistle a stranger": [65535, 0], "dark yet presently tom checked his whistle a stranger was": [65535, 0], "yet presently tom checked his whistle a stranger was before": [65535, 0], "presently tom checked his whistle a stranger was before him": [65535, 0], "tom checked his whistle a stranger was before him a": [65535, 0], "checked his whistle a stranger was before him a boy": [65535, 0], "his whistle a stranger was before him a boy a": [65535, 0], "whistle a stranger was before him a boy a shade": [65535, 0], "a stranger was before him a boy a shade larger": [65535, 0], "stranger was before him a boy a shade larger than": [65535, 0], "was before him a boy a shade larger than himself": [65535, 0], "before him a boy a shade larger than himself a": [65535, 0], "him a boy a shade larger than himself a new": [65535, 0], "a boy a shade larger than himself a new comer": [65535, 0], "boy a shade larger than himself a new comer of": [65535, 0], "a shade larger than himself a new comer of any": [65535, 0], "shade larger than himself a new comer of any age": [65535, 0], "larger than himself a new comer of any age or": [65535, 0], "than himself a new comer of any age or either": [65535, 0], "himself a new comer of any age or either sex": [65535, 0], "a new comer of any age or either sex was": [65535, 0], "new comer of any age or either sex was an": [65535, 0], "comer of any age or either sex was an impressive": [65535, 0], "of any age or either sex was an impressive curiosity": [65535, 0], "any age or either sex was an impressive curiosity in": [65535, 0], "age or either sex was an impressive curiosity in the": [65535, 0], "or either sex was an impressive curiosity in the poor": [65535, 0], "either sex was an impressive curiosity in the poor little": [65535, 0], "sex was an impressive curiosity in the poor little shabby": [65535, 0], "was an impressive curiosity in the poor little shabby village": [65535, 0], "an impressive curiosity in the poor little shabby village of": [65535, 0], "impressive curiosity in the poor little shabby village of st": [65535, 0], "curiosity in the poor little shabby village of st petersburg": [65535, 0], "in the poor little shabby village of st petersburg this": [65535, 0], "the poor little shabby village of st petersburg this boy": [65535, 0], "poor little shabby village of st petersburg this boy was": [65535, 0], "little shabby village of st petersburg this boy was well": [65535, 0], "shabby village of st petersburg this boy was well dressed": [65535, 0], "village of st petersburg this boy was well dressed too": [65535, 0], "of st petersburg this boy was well dressed too well": [65535, 0], "st petersburg this boy was well dressed too well dressed": [65535, 0], "petersburg this boy was well dressed too well dressed on": [65535, 0], "this boy was well dressed too well dressed on a": [65535, 0], "boy was well dressed too well dressed on a week": [65535, 0], "was well dressed too well dressed on a week day": [65535, 0], "well dressed too well dressed on a week day this": [65535, 0], "dressed too well dressed on a week day this was": [65535, 0], "too well dressed on a week day this was simply": [65535, 0], "well dressed on a week day this was simply astounding": [65535, 0], "dressed on a week day this was simply astounding his": [65535, 0], "on a week day this was simply astounding his cap": [65535, 0], "a week day this was simply astounding his cap was": [65535, 0], "week day this was simply astounding his cap was a": [65535, 0], "day this was simply astounding his cap was a dainty": [65535, 0], "this was simply astounding his cap was a dainty thing": [65535, 0], "was simply astounding his cap was a dainty thing his": [65535, 0], "simply astounding his cap was a dainty thing his closebuttoned": [65535, 0], "astounding his cap was a dainty thing his closebuttoned blue": [65535, 0], "his cap was a dainty thing his closebuttoned blue cloth": [65535, 0], "cap was a dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "was a dainty thing his closebuttoned blue cloth roundabout was": [65535, 0], "a dainty thing his closebuttoned blue cloth roundabout was new": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout was new and": [65535, 0], "thing his closebuttoned blue cloth roundabout was new and natty": [65535, 0], "his closebuttoned blue cloth roundabout was new and natty and": [65535, 0], "closebuttoned blue cloth roundabout was new and natty and so": [65535, 0], "blue cloth roundabout was new and natty and so were": [65535, 0], "cloth roundabout was new and natty and so were his": [65535, 0], "roundabout was new and natty and so were his pantaloons": [65535, 0], "was new and natty and so were his pantaloons he": [65535, 0], "new and natty and so were his pantaloons he had": [65535, 0], "and natty and so were his pantaloons he had shoes": [65535, 0], "natty and so were his pantaloons he had shoes on": [65535, 0], "and so were his pantaloons he had shoes on and": [65535, 0], "so were his pantaloons he had shoes on and it": [65535, 0], "were his pantaloons he had shoes on and it was": [65535, 0], "his pantaloons he had shoes on and it was only": [65535, 0], "pantaloons he had shoes on and it was only friday": [65535, 0], "he had shoes on and it was only friday he": [65535, 0], "had shoes on and it was only friday he even": [65535, 0], "shoes on and it was only friday he even wore": [65535, 0], "on and it was only friday he even wore a": [65535, 0], "and it was only friday he even wore a necktie": [65535, 0], "it was only friday he even wore a necktie a": [65535, 0], "was only friday he even wore a necktie a bright": [65535, 0], "only friday he even wore a necktie a bright bit": [65535, 0], "friday he even wore a necktie a bright bit of": [65535, 0], "he even wore a necktie a bright bit of ribbon": [65535, 0], "even wore a necktie a bright bit of ribbon he": [65535, 0], "wore a necktie a bright bit of ribbon he had": [65535, 0], "a necktie a bright bit of ribbon he had a": [65535, 0], "necktie a bright bit of ribbon he had a citified": [65535, 0], "a bright bit of ribbon he had a citified air": [65535, 0], "bright bit of ribbon he had a citified air about": [65535, 0], "bit of ribbon he had a citified air about him": [65535, 0], "of ribbon he had a citified air about him that": [65535, 0], "ribbon he had a citified air about him that ate": [65535, 0], "he had a citified air about him that ate into": [65535, 0], "had a citified air about him that ate into tom's": [65535, 0], "a citified air about him that ate into tom's vitals": [65535, 0], "citified air about him that ate into tom's vitals the": [65535, 0], "air about him that ate into tom's vitals the more": [65535, 0], "about him that ate into tom's vitals the more tom": [65535, 0], "him that ate into tom's vitals the more tom stared": [65535, 0], "that ate into tom's vitals the more tom stared at": [65535, 0], "ate into tom's vitals the more tom stared at the": [65535, 0], "into tom's vitals the more tom stared at the splendid": [65535, 0], "tom's vitals the more tom stared at the splendid marvel": [65535, 0], "vitals the more tom stared at the splendid marvel the": [65535, 0], "the more tom stared at the splendid marvel the higher": [65535, 0], "more tom stared at the splendid marvel the higher he": [65535, 0], "tom stared at the splendid marvel the higher he turned": [65535, 0], "stared at the splendid marvel the higher he turned up": [65535, 0], "at the splendid marvel the higher he turned up his": [65535, 0], "the splendid marvel the higher he turned up his nose": [65535, 0], "splendid marvel the higher he turned up his nose at": [65535, 0], "marvel the higher he turned up his nose at his": [65535, 0], "the higher he turned up his nose at his finery": [65535, 0], "higher he turned up his nose at his finery and": [65535, 0], "he turned up his nose at his finery and the": [65535, 0], "turned up his nose at his finery and the shabbier": [65535, 0], "up his nose at his finery and the shabbier and": [65535, 0], "his nose at his finery and the shabbier and shabbier": [65535, 0], "nose at his finery and the shabbier and shabbier his": [65535, 0], "at his finery and the shabbier and shabbier his own": [65535, 0], "his finery and the shabbier and shabbier his own outfit": [65535, 0], "finery and the shabbier and shabbier his own outfit seemed": [65535, 0], "and the shabbier and shabbier his own outfit seemed to": [65535, 0], "the shabbier and shabbier his own outfit seemed to him": [65535, 0], "shabbier and shabbier his own outfit seemed to him to": [65535, 0], "and shabbier his own outfit seemed to him to grow": [65535, 0], "shabbier his own outfit seemed to him to grow neither": [65535, 0], "his own outfit seemed to him to grow neither boy": [65535, 0], "own outfit seemed to him to grow neither boy spoke": [65535, 0], "outfit seemed to him to grow neither boy spoke if": [65535, 0], "seemed to him to grow neither boy spoke if one": [65535, 0], "to him to grow neither boy spoke if one moved": [65535, 0], "him to grow neither boy spoke if one moved the": [65535, 0], "to grow neither boy spoke if one moved the other": [65535, 0], "grow neither boy spoke if one moved the other moved": [65535, 0], "neither boy spoke if one moved the other moved but": [65535, 0], "boy spoke if one moved the other moved but only": [65535, 0], "spoke if one moved the other moved but only sidewise": [65535, 0], "if one moved the other moved but only sidewise in": [65535, 0], "one moved the other moved but only sidewise in a": [65535, 0], "moved the other moved but only sidewise in a circle": [65535, 0], "the other moved but only sidewise in a circle they": [65535, 0], "other moved but only sidewise in a circle they kept": [65535, 0], "moved but only sidewise in a circle they kept face": [65535, 0], "but only sidewise in a circle they kept face to": [65535, 0], "only sidewise in a circle they kept face to face": [65535, 0], "sidewise in a circle they kept face to face and": [65535, 0], "in a circle they kept face to face and eye": [65535, 0], "a circle they kept face to face and eye to": [65535, 0], "circle they kept face to face and eye to eye": [65535, 0], "they kept face to face and eye to eye all": [65535, 0], "kept face to face and eye to eye all the": [65535, 0], "face to face and eye to eye all the time": [65535, 0], "to face and eye to eye all the time finally": [65535, 0], "face and eye to eye all the time finally tom": [65535, 0], "and eye to eye all the time finally tom said": [65535, 0], "eye to eye all the time finally tom said i": [65535, 0], "to eye all the time finally tom said i can": [65535, 0], "eye all the time finally tom said i can lick": [65535, 0], "all the time finally tom said i can lick you": [65535, 0], "the time finally tom said i can lick you i'd": [65535, 0], "time finally tom said i can lick you i'd like": [65535, 0], "finally tom said i can lick you i'd like to": [65535, 0], "tom said i can lick you i'd like to see": [65535, 0], "said i can lick you i'd like to see you": [65535, 0], "i can lick you i'd like to see you try": [65535, 0], "can lick you i'd like to see you try it": [65535, 0], "lick you i'd like to see you try it well": [65535, 0], "you i'd like to see you try it well i": [65535, 0], "i'd like to see you try it well i can": [65535, 0], "like to see you try it well i can do": [65535, 0], "to see you try it well i can do it": [65535, 0], "see you try it well i can do it no": [65535, 0], "you try it well i can do it no you": [65535, 0], "try it well i can do it no you can't": [65535, 0], "it well i can do it no you can't either": [65535, 0], "well i can do it no you can't either yes": [65535, 0], "i can do it no you can't either yes i": [65535, 0], "can do it no you can't either yes i can": [65535, 0], "do it no you can't either yes i can no": [65535, 0], "it no you can't either yes i can no you": [65535, 0], "no you can't either yes i can no you can't": [65535, 0], "you can't either yes i can no you can't i": [65535, 0], "can't either yes i can no you can't i can": [65535, 0], "either yes i can no you can't i can you": [65535, 0], "yes i can no you can't i can you can't": [65535, 0], "i can no you can't i can you can't can": [65535, 0], "can no you can't i can you can't can can't": [65535, 0], "no you can't i can you can't can can't an": [65535, 0], "you can't i can you can't can can't an uncomfortable": [65535, 0], "can't i can you can't can can't an uncomfortable pause": [65535, 0], "i can you can't can can't an uncomfortable pause then": [65535, 0], "can you can't can can't an uncomfortable pause then tom": [65535, 0], "you can't can can't an uncomfortable pause then tom said": [65535, 0], "can't can can't an uncomfortable pause then tom said what's": [65535, 0], "can can't an uncomfortable pause then tom said what's your": [65535, 0], "can't an uncomfortable pause then tom said what's your name": [65535, 0], "an uncomfortable pause then tom said what's your name 'tisn't": [65535, 0], "uncomfortable pause then tom said what's your name 'tisn't any": [65535, 0], "pause then tom said what's your name 'tisn't any of": [65535, 0], "then tom said what's your name 'tisn't any of your": [65535, 0], "tom said what's your name 'tisn't any of your business": [65535, 0], "said what's your name 'tisn't any of your business maybe": [65535, 0], "what's your name 'tisn't any of your business maybe well": [65535, 0], "your name 'tisn't any of your business maybe well i": [65535, 0], "name 'tisn't any of your business maybe well i 'low": [65535, 0], "'tisn't any of your business maybe well i 'low i'll": [65535, 0], "any of your business maybe well i 'low i'll make": [65535, 0], "of your business maybe well i 'low i'll make it": [65535, 0], "your business maybe well i 'low i'll make it my": [65535, 0], "business maybe well i 'low i'll make it my business": [65535, 0], "maybe well i 'low i'll make it my business well": [65535, 0], "well i 'low i'll make it my business well why": [65535, 0], "i 'low i'll make it my business well why don't": [65535, 0], "'low i'll make it my business well why don't you": [65535, 0], "i'll make it my business well why don't you if": [65535, 0], "make it my business well why don't you if you": [65535, 0], "it my business well why don't you if you say": [65535, 0], "my business well why don't you if you say much": [65535, 0], "business well why don't you if you say much i": [65535, 0], "well why don't you if you say much i will": [65535, 0], "why don't you if you say much i will much": [65535, 0], "don't you if you say much i will much much": [65535, 0], "you if you say much i will much much much": [65535, 0], "if you say much i will much much much there": [65535, 0], "you say much i will much much much there now": [65535, 0], "say much i will much much much there now oh": [65535, 0], "much i will much much much there now oh you": [65535, 0], "i will much much much there now oh you think": [65535, 0], "will much much much there now oh you think you're": [65535, 0], "much much much there now oh you think you're mighty": [65535, 0], "much much there now oh you think you're mighty smart": [65535, 0], "much there now oh you think you're mighty smart don't": [65535, 0], "there now oh you think you're mighty smart don't you": [65535, 0], "now oh you think you're mighty smart don't you i": [65535, 0], "oh you think you're mighty smart don't you i could": [65535, 0], "you think you're mighty smart don't you i could lick": [65535, 0], "think you're mighty smart don't you i could lick you": [65535, 0], "you're mighty smart don't you i could lick you with": [65535, 0], "mighty smart don't you i could lick you with one": [65535, 0], "smart don't you i could lick you with one hand": [65535, 0], "don't you i could lick you with one hand tied": [65535, 0], "you i could lick you with one hand tied behind": [65535, 0], "i could lick you with one hand tied behind me": [65535, 0], "could lick you with one hand tied behind me if": [65535, 0], "lick you with one hand tied behind me if i": [65535, 0], "you with one hand tied behind me if i wanted": [65535, 0], "with one hand tied behind me if i wanted to": [65535, 0], "one hand tied behind me if i wanted to well": [65535, 0], "hand tied behind me if i wanted to well why": [65535, 0], "tied behind me if i wanted to well why don't": [65535, 0], "behind me if i wanted to well why don't you": [65535, 0], "me if i wanted to well why don't you do": [65535, 0], "if i wanted to well why don't you do it": [65535, 0], "i wanted to well why don't you do it you": [65535, 0], "wanted to well why don't you do it you say": [65535, 0], "to well why don't you do it you say you": [65535, 0], "well why don't you do it you say you can": [65535, 0], "why don't you do it you say you can do": [65535, 0], "don't you do it you say you can do it": [65535, 0], "you do it you say you can do it well": [65535, 0], "do it you say you can do it well i": [65535, 0], "it you say you can do it well i will": [65535, 0], "you say you can do it well i will if": [65535, 0], "say you can do it well i will if you": [65535, 0], "you can do it well i will if you fool": [65535, 0], "can do it well i will if you fool with": [65535, 0], "do it well i will if you fool with me": [65535, 0], "it well i will if you fool with me oh": [65535, 0], "well i will if you fool with me oh yes": [65535, 0], "i will if you fool with me oh yes i've": [65535, 0], "will if you fool with me oh yes i've seen": [65535, 0], "if you fool with me oh yes i've seen whole": [65535, 0], "you fool with me oh yes i've seen whole families": [65535, 0], "fool with me oh yes i've seen whole families in": [65535, 0], "with me oh yes i've seen whole families in the": [65535, 0], "me oh yes i've seen whole families in the same": [65535, 0], "oh yes i've seen whole families in the same fix": [65535, 0], "yes i've seen whole families in the same fix smarty": [65535, 0], "i've seen whole families in the same fix smarty you": [65535, 0], "seen whole families in the same fix smarty you think": [65535, 0], "whole families in the same fix smarty you think you're": [65535, 0], "families in the same fix smarty you think you're some": [65535, 0], "in the same fix smarty you think you're some now": [65535, 0], "the same fix smarty you think you're some now don't": [65535, 0], "same fix smarty you think you're some now don't you": [65535, 0], "fix smarty you think you're some now don't you oh": [65535, 0], "smarty you think you're some now don't you oh what": [65535, 0], "you think you're some now don't you oh what a": [65535, 0], "think you're some now don't you oh what a hat": [65535, 0], "you're some now don't you oh what a hat you": [65535, 0], "some now don't you oh what a hat you can": [65535, 0], "now don't you oh what a hat you can lump": [65535, 0], "don't you oh what a hat you can lump that": [65535, 0], "you oh what a hat you can lump that hat": [65535, 0], "oh what a hat you can lump that hat if": [65535, 0], "what a hat you can lump that hat if you": [65535, 0], "a hat you can lump that hat if you don't": [65535, 0], "hat you can lump that hat if you don't like": [65535, 0], "you can lump that hat if you don't like it": [65535, 0], "can lump that hat if you don't like it i": [65535, 0], "lump that hat if you don't like it i dare": [65535, 0], "that hat if you don't like it i dare you": [65535, 0], "hat if you don't like it i dare you to": [65535, 0], "if you don't like it i dare you to knock": [65535, 0], "you don't like it i dare you to knock it": [65535, 0], "don't like it i dare you to knock it off": [65535, 0], "like it i dare you to knock it off and": [65535, 0], "it i dare you to knock it off and anybody": [65535, 0], "i dare you to knock it off and anybody that'll": [65535, 0], "dare you to knock it off and anybody that'll take": [65535, 0], "you to knock it off and anybody that'll take a": [65535, 0], "to knock it off and anybody that'll take a dare": [65535, 0], "knock it off and anybody that'll take a dare will": [65535, 0], "it off and anybody that'll take a dare will suck": [65535, 0], "off and anybody that'll take a dare will suck eggs": [65535, 0], "and anybody that'll take a dare will suck eggs you're": [65535, 0], "anybody that'll take a dare will suck eggs you're a": [65535, 0], "that'll take a dare will suck eggs you're a liar": [65535, 0], "take a dare will suck eggs you're a liar you're": [65535, 0], "a dare will suck eggs you're a liar you're another": [65535, 0], "dare will suck eggs you're a liar you're another you're": [65535, 0], "will suck eggs you're a liar you're another you're a": [65535, 0], "suck eggs you're a liar you're another you're a fighting": [65535, 0], "eggs you're a liar you're another you're a fighting liar": [65535, 0], "you're a liar you're another you're a fighting liar and": [65535, 0], "a liar you're another you're a fighting liar and dasn't": [65535, 0], "liar you're another you're a fighting liar and dasn't take": [65535, 0], "you're another you're a fighting liar and dasn't take it": [65535, 0], "another you're a fighting liar and dasn't take it up": [65535, 0], "you're a fighting liar and dasn't take it up aw": [65535, 0], "a fighting liar and dasn't take it up aw take": [65535, 0], "fighting liar and dasn't take it up aw take a": [65535, 0], "liar and dasn't take it up aw take a walk": [65535, 0], "and dasn't take it up aw take a walk say": [65535, 0], "dasn't take it up aw take a walk say if": [65535, 0], "take it up aw take a walk say if you": [65535, 0], "it up aw take a walk say if you give": [65535, 0], "up aw take a walk say if you give me": [65535, 0], "aw take a walk say if you give me much": [65535, 0], "take a walk say if you give me much more": [65535, 0], "a walk say if you give me much more of": [65535, 0], "walk say if you give me much more of your": [65535, 0], "say if you give me much more of your sass": [65535, 0], "if you give me much more of your sass i'll": [65535, 0], "you give me much more of your sass i'll take": [65535, 0], "give me much more of your sass i'll take and": [65535, 0], "me much more of your sass i'll take and bounce": [65535, 0], "much more of your sass i'll take and bounce a": [65535, 0], "more of your sass i'll take and bounce a rock": [65535, 0], "of your sass i'll take and bounce a rock off'n": [65535, 0], "your sass i'll take and bounce a rock off'n your": [65535, 0], "sass i'll take and bounce a rock off'n your head": [65535, 0], "i'll take and bounce a rock off'n your head oh": [65535, 0], "take and bounce a rock off'n your head oh of": [65535, 0], "and bounce a rock off'n your head oh of course": [65535, 0], "bounce a rock off'n your head oh of course you": [65535, 0], "a rock off'n your head oh of course you will": [65535, 0], "rock off'n your head oh of course you will well": [65535, 0], "off'n your head oh of course you will well i": [65535, 0], "your head oh of course you will well i will": [65535, 0], "head oh of course you will well i will well": [65535, 0], "oh of course you will well i will well why": [65535, 0], "of course you will well i will well why don't": [65535, 0], "course you will well i will well why don't you": [65535, 0], "you will well i will well why don't you do": [65535, 0], "will well i will well why don't you do it": [65535, 0], "well i will well why don't you do it then": [65535, 0], "i will well why don't you do it then what": [65535, 0], "will well why don't you do it then what do": [65535, 0], "well why don't you do it then what do you": [65535, 0], "why don't you do it then what do you keep": [65535, 0], "don't you do it then what do you keep saying": [65535, 0], "you do it then what do you keep saying you": [65535, 0], "do it then what do you keep saying you will": [65535, 0], "it then what do you keep saying you will for": [65535, 0], "then what do you keep saying you will for why": [65535, 0], "what do you keep saying you will for why don't": [65535, 0], "do you keep saying you will for why don't you": [65535, 0], "you keep saying you will for why don't you do": [65535, 0], "keep saying you will for why don't you do it": [65535, 0], "saying you will for why don't you do it it's": [65535, 0], "you will for why don't you do it it's because": [65535, 0], "will for why don't you do it it's because you're": [65535, 0], "for why don't you do it it's because you're afraid": [65535, 0], "why don't you do it it's because you're afraid i": [65535, 0], "don't you do it it's because you're afraid i ain't": [65535, 0], "you do it it's because you're afraid i ain't afraid": [65535, 0], "do it it's because you're afraid i ain't afraid you": [65535, 0], "it it's because you're afraid i ain't afraid you are": [65535, 0], "it's because you're afraid i ain't afraid you are i": [65535, 0], "because you're afraid i ain't afraid you are i ain't": [65535, 0], "you're afraid i ain't afraid you are i ain't you": [65535, 0], "afraid i ain't afraid you are i ain't you are": [65535, 0], "i ain't afraid you are i ain't you are another": [65535, 0], "ain't afraid you are i ain't you are another pause": [65535, 0], "afraid you are i ain't you are another pause and": [65535, 0], "you are i ain't you are another pause and more": [65535, 0], "are i ain't you are another pause and more eying": [65535, 0], "i ain't you are another pause and more eying and": [65535, 0], "ain't you are another pause and more eying and sidling": [65535, 0], "you are another pause and more eying and sidling around": [65535, 0], "are another pause and more eying and sidling around each": [65535, 0], "another pause and more eying and sidling around each other": [65535, 0], "pause and more eying and sidling around each other presently": [65535, 0], "and more eying and sidling around each other presently they": [65535, 0], "more eying and sidling around each other presently they were": [65535, 0], "eying and sidling around each other presently they were shoulder": [65535, 0], "and sidling around each other presently they were shoulder to": [65535, 0], "sidling around each other presently they were shoulder to shoulder": [65535, 0], "around each other presently they were shoulder to shoulder tom": [65535, 0], "each other presently they were shoulder to shoulder tom said": [65535, 0], "other presently they were shoulder to shoulder tom said get": [65535, 0], "presently they were shoulder to shoulder tom said get away": [65535, 0], "they were shoulder to shoulder tom said get away from": [65535, 0], "were shoulder to shoulder tom said get away from here": [65535, 0], "shoulder to shoulder tom said get away from here go": [65535, 0], "to shoulder tom said get away from here go away": [65535, 0], "shoulder tom said get away from here go away yourself": [65535, 0], "tom said get away from here go away yourself i": [65535, 0], "said get away from here go away yourself i won't": [65535, 0], "get away from here go away yourself i won't i": [65535, 0], "away from here go away yourself i won't i won't": [65535, 0], "from here go away yourself i won't i won't either": [65535, 0], "here go away yourself i won't i won't either so": [65535, 0], "go away yourself i won't i won't either so they": [65535, 0], "away yourself i won't i won't either so they stood": [65535, 0], "yourself i won't i won't either so they stood each": [65535, 0], "i won't i won't either so they stood each with": [65535, 0], "won't i won't either so they stood each with a": [65535, 0], "i won't either so they stood each with a foot": [65535, 0], "won't either so they stood each with a foot placed": [65535, 0], "either so they stood each with a foot placed at": [65535, 0], "so they stood each with a foot placed at an": [65535, 0], "they stood each with a foot placed at an angle": [65535, 0], "stood each with a foot placed at an angle as": [65535, 0], "each with a foot placed at an angle as a": [65535, 0], "with a foot placed at an angle as a brace": [65535, 0], "a foot placed at an angle as a brace and": [65535, 0], "foot placed at an angle as a brace and both": [65535, 0], "placed at an angle as a brace and both shoving": [65535, 0], "at an angle as a brace and both shoving with": [65535, 0], "an angle as a brace and both shoving with might": [65535, 0], "angle as a brace and both shoving with might and": [65535, 0], "as a brace and both shoving with might and main": [65535, 0], "a brace and both shoving with might and main and": [65535, 0], "brace and both shoving with might and main and glowering": [65535, 0], "and both shoving with might and main and glowering at": [65535, 0], "both shoving with might and main and glowering at each": [65535, 0], "shoving with might and main and glowering at each other": [65535, 0], "with might and main and glowering at each other with": [65535, 0], "might and main and glowering at each other with hate": [65535, 0], "and main and glowering at each other with hate but": [65535, 0], "main and glowering at each other with hate but neither": [65535, 0], "and glowering at each other with hate but neither could": [65535, 0], "glowering at each other with hate but neither could get": [65535, 0], "at each other with hate but neither could get an": [65535, 0], "each other with hate but neither could get an advantage": [65535, 0], "other with hate but neither could get an advantage after": [65535, 0], "with hate but neither could get an advantage after struggling": [65535, 0], "hate but neither could get an advantage after struggling till": [65535, 0], "but neither could get an advantage after struggling till both": [65535, 0], "neither could get an advantage after struggling till both were": [65535, 0], "could get an advantage after struggling till both were hot": [65535, 0], "get an advantage after struggling till both were hot and": [65535, 0], "an advantage after struggling till both were hot and flushed": [65535, 0], "advantage after struggling till both were hot and flushed each": [65535, 0], "after struggling till both were hot and flushed each relaxed": [65535, 0], "struggling till both were hot and flushed each relaxed his": [65535, 0], "till both were hot and flushed each relaxed his strain": [65535, 0], "both were hot and flushed each relaxed his strain with": [65535, 0], "were hot and flushed each relaxed his strain with watchful": [65535, 0], "hot and flushed each relaxed his strain with watchful caution": [65535, 0], "and flushed each relaxed his strain with watchful caution and": [65535, 0], "flushed each relaxed his strain with watchful caution and tom": [65535, 0], "each relaxed his strain with watchful caution and tom said": [65535, 0], "relaxed his strain with watchful caution and tom said you're": [65535, 0], "his strain with watchful caution and tom said you're a": [65535, 0], "strain with watchful caution and tom said you're a coward": [65535, 0], "with watchful caution and tom said you're a coward and": [65535, 0], "watchful caution and tom said you're a coward and a": [65535, 0], "caution and tom said you're a coward and a pup": [65535, 0], "and tom said you're a coward and a pup i'll": [65535, 0], "tom said you're a coward and a pup i'll tell": [65535, 0], "said you're a coward and a pup i'll tell my": [65535, 0], "you're a coward and a pup i'll tell my big": [65535, 0], "a coward and a pup i'll tell my big brother": [65535, 0], "coward and a pup i'll tell my big brother on": [65535, 0], "and a pup i'll tell my big brother on you": [65535, 0], "a pup i'll tell my big brother on you and": [65535, 0], "pup i'll tell my big brother on you and he": [65535, 0], "i'll tell my big brother on you and he can": [65535, 0], "tell my big brother on you and he can thrash": [65535, 0], "my big brother on you and he can thrash you": [65535, 0], "big brother on you and he can thrash you with": [65535, 0], "brother on you and he can thrash you with his": [65535, 0], "on you and he can thrash you with his little": [65535, 0], "you and he can thrash you with his little finger": [65535, 0], "and he can thrash you with his little finger and": [65535, 0], "he can thrash you with his little finger and i'll": [65535, 0], "can thrash you with his little finger and i'll make": [65535, 0], "thrash you with his little finger and i'll make him": [65535, 0], "you with his little finger and i'll make him do": [65535, 0], "with his little finger and i'll make him do it": [65535, 0], "his little finger and i'll make him do it too": [65535, 0], "little finger and i'll make him do it too what": [65535, 0], "finger and i'll make him do it too what do": [65535, 0], "and i'll make him do it too what do i": [65535, 0], "i'll make him do it too what do i care": [65535, 0], "make him do it too what do i care for": [65535, 0], "him do it too what do i care for your": [65535, 0], "do it too what do i care for your big": [65535, 0], "it too what do i care for your big brother": [65535, 0], "too what do i care for your big brother i've": [65535, 0], "what do i care for your big brother i've got": [65535, 0], "do i care for your big brother i've got a": [65535, 0], "i care for your big brother i've got a brother": [65535, 0], "care for your big brother i've got a brother that's": [65535, 0], "for your big brother i've got a brother that's bigger": [65535, 0], "your big brother i've got a brother that's bigger than": [65535, 0], "big brother i've got a brother that's bigger than he": [65535, 0], "brother i've got a brother that's bigger than he is": [65535, 0], "i've got a brother that's bigger than he is and": [65535, 0], "got a brother that's bigger than he is and what's": [65535, 0], "a brother that's bigger than he is and what's more": [65535, 0], "brother that's bigger than he is and what's more he": [65535, 0], "that's bigger than he is and what's more he can": [65535, 0], "bigger than he is and what's more he can throw": [65535, 0], "than he is and what's more he can throw him": [65535, 0], "he is and what's more he can throw him over": [65535, 0], "is and what's more he can throw him over that": [65535, 0], "and what's more he can throw him over that fence": [65535, 0], "what's more he can throw him over that fence too": [65535, 0], "more he can throw him over that fence too both": [65535, 0], "he can throw him over that fence too both brothers": [65535, 0], "can throw him over that fence too both brothers were": [65535, 0], "throw him over that fence too both brothers were imaginary": [65535, 0], "him over that fence too both brothers were imaginary that's": [65535, 0], "over that fence too both brothers were imaginary that's a": [65535, 0], "that fence too both brothers were imaginary that's a lie": [65535, 0], "fence too both brothers were imaginary that's a lie your": [65535, 0], "too both brothers were imaginary that's a lie your saying": [65535, 0], "both brothers were imaginary that's a lie your saying so": [65535, 0], "brothers were imaginary that's a lie your saying so don't": [65535, 0], "were imaginary that's a lie your saying so don't make": [65535, 0], "imaginary that's a lie your saying so don't make it": [65535, 0], "that's a lie your saying so don't make it so": [65535, 0], "a lie your saying so don't make it so tom": [65535, 0], "lie your saying so don't make it so tom drew": [65535, 0], "your saying so don't make it so tom drew a": [65535, 0], "saying so don't make it so tom drew a line": [65535, 0], "so don't make it so tom drew a line in": [65535, 0], "don't make it so tom drew a line in the": [65535, 0], "make it so tom drew a line in the dust": [65535, 0], "it so tom drew a line in the dust with": [65535, 0], "so tom drew a line in the dust with his": [65535, 0], "tom drew a line in the dust with his big": [65535, 0], "drew a line in the dust with his big toe": [65535, 0], "a line in the dust with his big toe and": [65535, 0], "line in the dust with his big toe and said": [65535, 0], "in the dust with his big toe and said i": [65535, 0], "the dust with his big toe and said i dare": [65535, 0], "dust with his big toe and said i dare you": [65535, 0], "with his big toe and said i dare you to": [65535, 0], "his big toe and said i dare you to step": [65535, 0], "big toe and said i dare you to step over": [65535, 0], "toe and said i dare you to step over that": [65535, 0], "and said i dare you to step over that and": [65535, 0], "said i dare you to step over that and i'll": [65535, 0], "i dare you to step over that and i'll lick": [65535, 0], "dare you to step over that and i'll lick you": [65535, 0], "you to step over that and i'll lick you till": [65535, 0], "to step over that and i'll lick you till you": [65535, 0], "step over that and i'll lick you till you can't": [65535, 0], "over that and i'll lick you till you can't stand": [65535, 0], "that and i'll lick you till you can't stand up": [65535, 0], "and i'll lick you till you can't stand up anybody": [65535, 0], "i'll lick you till you can't stand up anybody that'll": [65535, 0], "lick you till you can't stand up anybody that'll take": [65535, 0], "you till you can't stand up anybody that'll take a": [65535, 0], "till you can't stand up anybody that'll take a dare": [65535, 0], "you can't stand up anybody that'll take a dare will": [65535, 0], "can't stand up anybody that'll take a dare will steal": [65535, 0], "stand up anybody that'll take a dare will steal sheep": [65535, 0], "up anybody that'll take a dare will steal sheep the": [65535, 0], "anybody that'll take a dare will steal sheep the new": [65535, 0], "that'll take a dare will steal sheep the new boy": [65535, 0], "take a dare will steal sheep the new boy stepped": [65535, 0], "a dare will steal sheep the new boy stepped over": [65535, 0], "dare will steal sheep the new boy stepped over promptly": [65535, 0], "will steal sheep the new boy stepped over promptly and": [65535, 0], "steal sheep the new boy stepped over promptly and said": [65535, 0], "sheep the new boy stepped over promptly and said now": [65535, 0], "the new boy stepped over promptly and said now you": [65535, 0], "new boy stepped over promptly and said now you said": [65535, 0], "boy stepped over promptly and said now you said you'd": [65535, 0], "stepped over promptly and said now you said you'd do": [65535, 0], "over promptly and said now you said you'd do it": [65535, 0], "promptly and said now you said you'd do it now": [65535, 0], "and said now you said you'd do it now let's": [65535, 0], "said now you said you'd do it now let's see": [65535, 0], "now you said you'd do it now let's see you": [65535, 0], "you said you'd do it now let's see you do": [65535, 0], "said you'd do it now let's see you do it": [65535, 0], "you'd do it now let's see you do it don't": [65535, 0], "do it now let's see you do it don't you": [65535, 0], "it now let's see you do it don't you crowd": [65535, 0], "now let's see you do it don't you crowd me": [65535, 0], "let's see you do it don't you crowd me now": [65535, 0], "see you do it don't you crowd me now you": [65535, 0], "you do it don't you crowd me now you better": [65535, 0], "do it don't you crowd me now you better look": [65535, 0], "it don't you crowd me now you better look out": [65535, 0], "don't you crowd me now you better look out well": [65535, 0], "you crowd me now you better look out well you": [65535, 0], "crowd me now you better look out well you said": [65535, 0], "me now you better look out well you said you'd": [65535, 0], "now you better look out well you said you'd do": [65535, 0], "you better look out well you said you'd do it": [65535, 0], "better look out well you said you'd do it why": [65535, 0], "look out well you said you'd do it why don't": [65535, 0], "out well you said you'd do it why don't you": [65535, 0], "well you said you'd do it why don't you do": [65535, 0], "you said you'd do it why don't you do it": [65535, 0], "said you'd do it why don't you do it by": [65535, 0], "you'd do it why don't you do it by jingo": [65535, 0], "do it why don't you do it by jingo for": [65535, 0], "it why don't you do it by jingo for two": [65535, 0], "why don't you do it by jingo for two cents": [65535, 0], "don't you do it by jingo for two cents i": [65535, 0], "you do it by jingo for two cents i will": [65535, 0], "do it by jingo for two cents i will do": [65535, 0], "it by jingo for two cents i will do it": [65535, 0], "by jingo for two cents i will do it the": [65535, 0], "jingo for two cents i will do it the new": [65535, 0], "for two cents i will do it the new boy": [65535, 0], "two cents i will do it the new boy took": [65535, 0], "cents i will do it the new boy took two": [65535, 0], "i will do it the new boy took two broad": [65535, 0], "will do it the new boy took two broad coppers": [65535, 0], "do it the new boy took two broad coppers out": [65535, 0], "it the new boy took two broad coppers out of": [65535, 0], "the new boy took two broad coppers out of his": [65535, 0], "new boy took two broad coppers out of his pocket": [65535, 0], "boy took two broad coppers out of his pocket and": [65535, 0], "took two broad coppers out of his pocket and held": [65535, 0], "two broad coppers out of his pocket and held them": [65535, 0], "broad coppers out of his pocket and held them out": [65535, 0], "coppers out of his pocket and held them out with": [65535, 0], "out of his pocket and held them out with derision": [65535, 0], "of his pocket and held them out with derision tom": [65535, 0], "his pocket and held them out with derision tom struck": [65535, 0], "pocket and held them out with derision tom struck them": [65535, 0], "and held them out with derision tom struck them to": [65535, 0], "held them out with derision tom struck them to the": [65535, 0], "them out with derision tom struck them to the ground": [65535, 0], "out with derision tom struck them to the ground in": [65535, 0], "with derision tom struck them to the ground in an": [65535, 0], "derision tom struck them to the ground in an instant": [65535, 0], "tom struck them to the ground in an instant both": [65535, 0], "struck them to the ground in an instant both boys": [65535, 0], "them to the ground in an instant both boys were": [65535, 0], "to the ground in an instant both boys were rolling": [65535, 0], "the ground in an instant both boys were rolling and": [65535, 0], "ground in an instant both boys were rolling and tumbling": [65535, 0], "in an instant both boys were rolling and tumbling in": [65535, 0], "an instant both boys were rolling and tumbling in the": [65535, 0], "instant both boys were rolling and tumbling in the dirt": [65535, 0], "both boys were rolling and tumbling in the dirt gripped": [65535, 0], "boys were rolling and tumbling in the dirt gripped together": [65535, 0], "were rolling and tumbling in the dirt gripped together like": [65535, 0], "rolling and tumbling in the dirt gripped together like cats": [65535, 0], "and tumbling in the dirt gripped together like cats and": [65535, 0], "tumbling in the dirt gripped together like cats and for": [65535, 0], "in the dirt gripped together like cats and for the": [65535, 0], "the dirt gripped together like cats and for the space": [65535, 0], "dirt gripped together like cats and for the space of": [65535, 0], "gripped together like cats and for the space of a": [65535, 0], "together like cats and for the space of a minute": [65535, 0], "like cats and for the space of a minute they": [65535, 0], "cats and for the space of a minute they tugged": [65535, 0], "and for the space of a minute they tugged and": [65535, 0], "for the space of a minute they tugged and tore": [65535, 0], "the space of a minute they tugged and tore at": [65535, 0], "space of a minute they tugged and tore at each": [65535, 0], "of a minute they tugged and tore at each other's": [65535, 0], "a minute they tugged and tore at each other's hair": [65535, 0], "minute they tugged and tore at each other's hair and": [65535, 0], "they tugged and tore at each other's hair and clothes": [65535, 0], "tugged and tore at each other's hair and clothes punched": [65535, 0], "and tore at each other's hair and clothes punched and": [65535, 0], "tore at each other's hair and clothes punched and scratched": [65535, 0], "at each other's hair and clothes punched and scratched each": [65535, 0], "each other's hair and clothes punched and scratched each other's": [65535, 0], "other's hair and clothes punched and scratched each other's nose": [65535, 0], "hair and clothes punched and scratched each other's nose and": [65535, 0], "and clothes punched and scratched each other's nose and covered": [65535, 0], "clothes punched and scratched each other's nose and covered themselves": [65535, 0], "punched and scratched each other's nose and covered themselves with": [65535, 0], "and scratched each other's nose and covered themselves with dust": [65535, 0], "scratched each other's nose and covered themselves with dust and": [65535, 0], "each other's nose and covered themselves with dust and glory": [65535, 0], "other's nose and covered themselves with dust and glory presently": [65535, 0], "nose and covered themselves with dust and glory presently the": [65535, 0], "and covered themselves with dust and glory presently the confusion": [65535, 0], "covered themselves with dust and glory presently the confusion took": [65535, 0], "themselves with dust and glory presently the confusion took form": [65535, 0], "with dust and glory presently the confusion took form and": [65535, 0], "dust and glory presently the confusion took form and through": [65535, 0], "and glory presently the confusion took form and through the": [65535, 0], "glory presently the confusion took form and through the fog": [65535, 0], "presently the confusion took form and through the fog of": [65535, 0], "the confusion took form and through the fog of battle": [65535, 0], "confusion took form and through the fog of battle tom": [65535, 0], "took form and through the fog of battle tom appeared": [65535, 0], "form and through the fog of battle tom appeared seated": [65535, 0], "and through the fog of battle tom appeared seated astride": [65535, 0], "through the fog of battle tom appeared seated astride the": [65535, 0], "the fog of battle tom appeared seated astride the new": [65535, 0], "fog of battle tom appeared seated astride the new boy": [65535, 0], "of battle tom appeared seated astride the new boy and": [65535, 0], "battle tom appeared seated astride the new boy and pounding": [65535, 0], "tom appeared seated astride the new boy and pounding him": [65535, 0], "appeared seated astride the new boy and pounding him with": [65535, 0], "seated astride the new boy and pounding him with his": [65535, 0], "astride the new boy and pounding him with his fists": [65535, 0], "the new boy and pounding him with his fists holler": [65535, 0], "new boy and pounding him with his fists holler 'nuff": [65535, 0], "boy and pounding him with his fists holler 'nuff said": [65535, 0], "and pounding him with his fists holler 'nuff said he": [65535, 0], "pounding him with his fists holler 'nuff said he the": [65535, 0], "him with his fists holler 'nuff said he the boy": [65535, 0], "with his fists holler 'nuff said he the boy only": [65535, 0], "his fists holler 'nuff said he the boy only struggled": [65535, 0], "fists holler 'nuff said he the boy only struggled to": [65535, 0], "holler 'nuff said he the boy only struggled to free": [65535, 0], "'nuff said he the boy only struggled to free himself": [65535, 0], "said he the boy only struggled to free himself he": [65535, 0], "he the boy only struggled to free himself he was": [65535, 0], "the boy only struggled to free himself he was crying": [65535, 0], "boy only struggled to free himself he was crying mainly": [65535, 0], "only struggled to free himself he was crying mainly from": [65535, 0], "struggled to free himself he was crying mainly from rage": [65535, 0], "to free himself he was crying mainly from rage holler": [65535, 0], "free himself he was crying mainly from rage holler 'nuff": [65535, 0], "himself he was crying mainly from rage holler 'nuff and": [65535, 0], "he was crying mainly from rage holler 'nuff and the": [65535, 0], "was crying mainly from rage holler 'nuff and the pounding": [65535, 0], "crying mainly from rage holler 'nuff and the pounding went": [65535, 0], "mainly from rage holler 'nuff and the pounding went on": [65535, 0], "from rage holler 'nuff and the pounding went on at": [65535, 0], "rage holler 'nuff and the pounding went on at last": [65535, 0], "holler 'nuff and the pounding went on at last the": [65535, 0], "'nuff and the pounding went on at last the stranger": [65535, 0], "and the pounding went on at last the stranger got": [65535, 0], "the pounding went on at last the stranger got out": [65535, 0], "pounding went on at last the stranger got out a": [65535, 0], "went on at last the stranger got out a smothered": [65535, 0], "on at last the stranger got out a smothered 'nuff": [65535, 0], "at last the stranger got out a smothered 'nuff and": [65535, 0], "last the stranger got out a smothered 'nuff and tom": [65535, 0], "the stranger got out a smothered 'nuff and tom let": [65535, 0], "stranger got out a smothered 'nuff and tom let him": [65535, 0], "got out a smothered 'nuff and tom let him up": [65535, 0], "out a smothered 'nuff and tom let him up and": [65535, 0], "a smothered 'nuff and tom let him up and said": [65535, 0], "smothered 'nuff and tom let him up and said now": [65535, 0], "'nuff and tom let him up and said now that'll": [65535, 0], "and tom let him up and said now that'll learn": [65535, 0], "tom let him up and said now that'll learn you": [65535, 0], "let him up and said now that'll learn you better": [65535, 0], "him up and said now that'll learn you better look": [65535, 0], "up and said now that'll learn you better look out": [65535, 0], "and said now that'll learn you better look out who": [65535, 0], "said now that'll learn you better look out who you're": [65535, 0], "now that'll learn you better look out who you're fooling": [65535, 0], "that'll learn you better look out who you're fooling with": [65535, 0], "learn you better look out who you're fooling with next": [65535, 0], "you better look out who you're fooling with next time": [65535, 0], "better look out who you're fooling with next time the": [65535, 0], "look out who you're fooling with next time the new": [65535, 0], "out who you're fooling with next time the new boy": [65535, 0], "who you're fooling with next time the new boy went": [65535, 0], "you're fooling with next time the new boy went off": [65535, 0], "fooling with next time the new boy went off brushing": [65535, 0], "with next time the new boy went off brushing the": [65535, 0], "next time the new boy went off brushing the dust": [65535, 0], "time the new boy went off brushing the dust from": [65535, 0], "the new boy went off brushing the dust from his": [65535, 0], "new boy went off brushing the dust from his clothes": [65535, 0], "boy went off brushing the dust from his clothes sobbing": [65535, 0], "went off brushing the dust from his clothes sobbing snuffling": [65535, 0], "off brushing the dust from his clothes sobbing snuffling and": [65535, 0], "brushing the dust from his clothes sobbing snuffling and occasionally": [65535, 0], "the dust from his clothes sobbing snuffling and occasionally looking": [65535, 0], "dust from his clothes sobbing snuffling and occasionally looking back": [65535, 0], "from his clothes sobbing snuffling and occasionally looking back and": [65535, 0], "his clothes sobbing snuffling and occasionally looking back and shaking": [65535, 0], "clothes sobbing snuffling and occasionally looking back and shaking his": [65535, 0], "sobbing snuffling and occasionally looking back and shaking his head": [65535, 0], "snuffling and occasionally looking back and shaking his head and": [65535, 0], "and occasionally looking back and shaking his head and threatening": [65535, 0], "occasionally looking back and shaking his head and threatening what": [65535, 0], "looking back and shaking his head and threatening what he": [65535, 0], "back and shaking his head and threatening what he would": [65535, 0], "and shaking his head and threatening what he would do": [65535, 0], "shaking his head and threatening what he would do to": [65535, 0], "his head and threatening what he would do to tom": [65535, 0], "head and threatening what he would do to tom the": [65535, 0], "and threatening what he would do to tom the next": [65535, 0], "threatening what he would do to tom the next time": [65535, 0], "what he would do to tom the next time he": [65535, 0], "he would do to tom the next time he caught": [65535, 0], "would do to tom the next time he caught him": [65535, 0], "do to tom the next time he caught him out": [65535, 0], "to tom the next time he caught him out to": [65535, 0], "tom the next time he caught him out to which": [65535, 0], "the next time he caught him out to which tom": [65535, 0], "next time he caught him out to which tom responded": [65535, 0], "time he caught him out to which tom responded with": [65535, 0], "he caught him out to which tom responded with jeers": [65535, 0], "caught him out to which tom responded with jeers and": [65535, 0], "him out to which tom responded with jeers and started": [65535, 0], "out to which tom responded with jeers and started off": [65535, 0], "to which tom responded with jeers and started off in": [65535, 0], "which tom responded with jeers and started off in high": [65535, 0], "tom responded with jeers and started off in high feather": [65535, 0], "responded with jeers and started off in high feather and": [65535, 0], "with jeers and started off in high feather and as": [65535, 0], "jeers and started off in high feather and as soon": [65535, 0], "and started off in high feather and as soon as": [65535, 0], "started off in high feather and as soon as his": [65535, 0], "off in high feather and as soon as his back": [65535, 0], "in high feather and as soon as his back was": [65535, 0], "high feather and as soon as his back was turned": [65535, 0], "feather and as soon as his back was turned the": [65535, 0], "and as soon as his back was turned the new": [65535, 0], "as soon as his back was turned the new boy": [65535, 0], "soon as his back was turned the new boy snatched": [65535, 0], "as his back was turned the new boy snatched up": [65535, 0], "his back was turned the new boy snatched up a": [65535, 0], "back was turned the new boy snatched up a stone": [65535, 0], "was turned the new boy snatched up a stone threw": [65535, 0], "turned the new boy snatched up a stone threw it": [65535, 0], "the new boy snatched up a stone threw it and": [65535, 0], "new boy snatched up a stone threw it and hit": [65535, 0], "boy snatched up a stone threw it and hit him": [65535, 0], "snatched up a stone threw it and hit him between": [65535, 0], "up a stone threw it and hit him between the": [65535, 0], "a stone threw it and hit him between the shoulders": [65535, 0], "stone threw it and hit him between the shoulders and": [65535, 0], "threw it and hit him between the shoulders and then": [65535, 0], "it and hit him between the shoulders and then turned": [65535, 0], "and hit him between the shoulders and then turned tail": [65535, 0], "hit him between the shoulders and then turned tail and": [65535, 0], "him between the shoulders and then turned tail and ran": [65535, 0], "between the shoulders and then turned tail and ran like": [65535, 0], "the shoulders and then turned tail and ran like an": [65535, 0], "shoulders and then turned tail and ran like an antelope": [65535, 0], "and then turned tail and ran like an antelope tom": [65535, 0], "then turned tail and ran like an antelope tom chased": [65535, 0], "turned tail and ran like an antelope tom chased the": [65535, 0], "tail and ran like an antelope tom chased the traitor": [65535, 0], "and ran like an antelope tom chased the traitor home": [65535, 0], "ran like an antelope tom chased the traitor home and": [65535, 0], "like an antelope tom chased the traitor home and thus": [65535, 0], "an antelope tom chased the traitor home and thus found": [65535, 0], "antelope tom chased the traitor home and thus found out": [65535, 0], "tom chased the traitor home and thus found out where": [65535, 0], "chased the traitor home and thus found out where he": [65535, 0], "the traitor home and thus found out where he lived": [65535, 0], "traitor home and thus found out where he lived he": [65535, 0], "home and thus found out where he lived he then": [65535, 0], "and thus found out where he lived he then held": [65535, 0], "thus found out where he lived he then held a": [65535, 0], "found out where he lived he then held a position": [65535, 0], "out where he lived he then held a position at": [65535, 0], "where he lived he then held a position at the": [65535, 0], "he lived he then held a position at the gate": [65535, 0], "lived he then held a position at the gate for": [65535, 0], "he then held a position at the gate for some": [65535, 0], "then held a position at the gate for some time": [65535, 0], "held a position at the gate for some time daring": [65535, 0], "a position at the gate for some time daring the": [65535, 0], "position at the gate for some time daring the enemy": [65535, 0], "at the gate for some time daring the enemy to": [65535, 0], "the gate for some time daring the enemy to come": [65535, 0], "gate for some time daring the enemy to come outside": [65535, 0], "for some time daring the enemy to come outside but": [65535, 0], "some time daring the enemy to come outside but the": [65535, 0], "time daring the enemy to come outside but the enemy": [65535, 0], "daring the enemy to come outside but the enemy only": [65535, 0], "the enemy to come outside but the enemy only made": [65535, 0], "enemy to come outside but the enemy only made faces": [65535, 0], "to come outside but the enemy only made faces at": [65535, 0], "come outside but the enemy only made faces at him": [65535, 0], "outside but the enemy only made faces at him through": [65535, 0], "but the enemy only made faces at him through the": [65535, 0], "the enemy only made faces at him through the window": [65535, 0], "enemy only made faces at him through the window and": [65535, 0], "only made faces at him through the window and declined": [65535, 0], "made faces at him through the window and declined at": [65535, 0], "faces at him through the window and declined at last": [65535, 0], "at him through the window and declined at last the": [65535, 0], "him through the window and declined at last the enemy's": [65535, 0], "through the window and declined at last the enemy's mother": [65535, 0], "the window and declined at last the enemy's mother appeared": [65535, 0], "window and declined at last the enemy's mother appeared and": [65535, 0], "and declined at last the enemy's mother appeared and called": [65535, 0], "declined at last the enemy's mother appeared and called tom": [65535, 0], "at last the enemy's mother appeared and called tom a": [65535, 0], "last the enemy's mother appeared and called tom a bad": [65535, 0], "the enemy's mother appeared and called tom a bad vicious": [65535, 0], "enemy's mother appeared and called tom a bad vicious vulgar": [65535, 0], "mother appeared and called tom a bad vicious vulgar child": [65535, 0], "appeared and called tom a bad vicious vulgar child and": [65535, 0], "and called tom a bad vicious vulgar child and ordered": [65535, 0], "called tom a bad vicious vulgar child and ordered him": [65535, 0], "tom a bad vicious vulgar child and ordered him away": [65535, 0], "a bad vicious vulgar child and ordered him away so": [65535, 0], "bad vicious vulgar child and ordered him away so he": [65535, 0], "vicious vulgar child and ordered him away so he went": [65535, 0], "vulgar child and ordered him away so he went away": [65535, 0], "child and ordered him away so he went away but": [65535, 0], "and ordered him away so he went away but he": [65535, 0], "ordered him away so he went away but he said": [65535, 0], "him away so he went away but he said he": [65535, 0], "away so he went away but he said he 'lowed": [65535, 0], "so he went away but he said he 'lowed to": [65535, 0], "he went away but he said he 'lowed to lay": [65535, 0], "went away but he said he 'lowed to lay for": [65535, 0], "away but he said he 'lowed to lay for that": [65535, 0], "but he said he 'lowed to lay for that boy": [65535, 0], "he said he 'lowed to lay for that boy he": [65535, 0], "said he 'lowed to lay for that boy he got": [65535, 0], "he 'lowed to lay for that boy he got home": [65535, 0], "'lowed to lay for that boy he got home pretty": [65535, 0], "to lay for that boy he got home pretty late": [65535, 0], "lay for that boy he got home pretty late that": [65535, 0], "for that boy he got home pretty late that night": [65535, 0], "that boy he got home pretty late that night and": [65535, 0], "boy he got home pretty late that night and when": [65535, 0], "he got home pretty late that night and when he": [65535, 0], "got home pretty late that night and when he climbed": [65535, 0], "home pretty late that night and when he climbed cautiously": [65535, 0], "pretty late that night and when he climbed cautiously in": [65535, 0], "late that night and when he climbed cautiously in at": [65535, 0], "that night and when he climbed cautiously in at the": [65535, 0], "night and when he climbed cautiously in at the window": [65535, 0], "and when he climbed cautiously in at the window he": [65535, 0], "when he climbed cautiously in at the window he uncovered": [65535, 0], "he climbed cautiously in at the window he uncovered an": [65535, 0], "climbed cautiously in at the window he uncovered an ambuscade": [65535, 0], "cautiously in at the window he uncovered an ambuscade in": [65535, 0], "in at the window he uncovered an ambuscade in the": [65535, 0], "at the window he uncovered an ambuscade in the person": [65535, 0], "the window he uncovered an ambuscade in the person of": [65535, 0], "window he uncovered an ambuscade in the person of his": [65535, 0], "he uncovered an ambuscade in the person of his aunt": [65535, 0], "uncovered an ambuscade in the person of his aunt and": [65535, 0], "an ambuscade in the person of his aunt and when": [65535, 0], "ambuscade in the person of his aunt and when she": [65535, 0], "in the person of his aunt and when she saw": [65535, 0], "the person of his aunt and when she saw the": [65535, 0], "person of his aunt and when she saw the state": [65535, 0], "of his aunt and when she saw the state his": [65535, 0], "his aunt and when she saw the state his clothes": [65535, 0], "aunt and when she saw the state his clothes were": [65535, 0], "and when she saw the state his clothes were in": [65535, 0], "when she saw the state his clothes were in her": [65535, 0], "she saw the state his clothes were in her resolution": [65535, 0], "saw the state his clothes were in her resolution to": [65535, 0], "the state his clothes were in her resolution to turn": [65535, 0], "state his clothes were in her resolution to turn his": [65535, 0], "his clothes were in her resolution to turn his saturday": [65535, 0], "clothes were in her resolution to turn his saturday holiday": [65535, 0], "were in her resolution to turn his saturday holiday into": [65535, 0], "in her resolution to turn his saturday holiday into captivity": [65535, 0], "her resolution to turn his saturday holiday into captivity at": [65535, 0], "resolution to turn his saturday holiday into captivity at hard": [65535, 0], "to turn his saturday holiday into captivity at hard labor": [65535, 0], "turn his saturday holiday into captivity at hard labor became": [65535, 0], "his saturday holiday into captivity at hard labor became adamantine": [65535, 0], "saturday holiday into captivity at hard labor became adamantine in": [65535, 0], "holiday into captivity at hard labor became adamantine in its": [65535, 0], "into captivity at hard labor became adamantine in its firmness": [65535, 0], "tranquil": [65535, 0], "beamed": [65535, 0], "peaceful": [65535, 0], "family": [65535, 0], "worship": [43635, 21900], "solid": [65535, 0], "courses": [65535, 0], "scriptural": [65535, 0], "quotations": [65535, 0], "welded": [65535, 0], "thin": [32706, 32829], "mortar": [65535, 0], "originality": [65535, 0], "summit": [65535, 0], "delivered": [65535, 0], "grim": [32706, 32829], "chapter": [65535, 0], "mosaic": [65535, 0], "sinai": [65535, 0], "girded": [65535, 0], "loins": [65535, 0], "verses": [65535, 0], "learned": [65535, 0], "energies": [65535, 0], "memorizing": [65535, 0], "five": [65535, 0], "mount": [65535, 0], "shorter": [65535, 0], "general": [65535, 0], "traversing": [65535, 0], "busy": [65535, 0], "distracting": [65535, 0], "recreations": [65535, 0], "recite": [65535, 0], "blessed": [56143, 9392], "theirs": [65535, 0], "kingdom": [65535, 0], "heaven": [65535, 0], "mourn": [65535, 0], "sh": [65535, 0], "s": [1467, 64068], "h": [65535, 0], "thick": [65535, 0], "headed": [65535, 0], "teasing": [65535, 0], "manage": [65535, 0], "pressure": [65535, 0], "prospective": [65535, 0], "gain": [65535, 0], "accomplished": [65535, 0], "shining": [65535, 0], "success": [65535, 0], "brand": [65535, 0], "barlow": [65535, 0], "convulsion": [65535, 0], "delight": [32706, 32829], "foundations": [65535, 0], "true": [19609, 45926], "inconceivable": [65535, 0], "grandeur": [65535, 0], "western": [65535, 0], "weapon": [65535, 0], "possibly": [65535, 0], "counterfeited": [65535, 0], "injury": [65535, 0], "imposing": [65535, 0], "mystery": [65535, 0], "perhaps": [39262, 26273], "contrived": [65535, 0], "scarify": [65535, 0], "cupboard": [65535, 0], "arranging": [65535, 0], "bureau": [65535, 0], "dress": [65535, 0], "basin": [65535, 0], "soap": [65535, 0], "sleeves": [65535, 0], "poured": [65535, 0], "entered": [65535, 0], "wipe": [65535, 0], "diligently": [65535, 0], "towel": [65535, 0], "removed": [65535, 0], "ashamed": [65535, 0], "mustn't": [65535, 0], "disconcerted": [65535, 0], "refilled": [65535, 0], "gathering": [65535, 0], "groping": [65535, 0], "honorable": [65535, 0], "testimony": [65535, 0], "suds": [65535, 0], "dripping": [65535, 0], "emerged": [65535, 0], "satisfactory": [65535, 0], "territory": [65535, 0], "mask": [65535, 0], "below": [65535, 0], "expanse": [65535, 0], "unirrigated": [65535, 0], "soil": [65535, 0], "spread": [43635, 21900], "downward": [65535, 0], "distinction": [65535, 0], "color": [65535, 0], "saturated": [65535, 0], "neatly": [65535, 0], "brushed": [65535, 0], "curls": [65535, 0], "wrought": [21790, 43745], "symmetrical": [65535, 0], "privately": [65535, 0], "smoothed": [65535, 0], "difficulty": [65535, 0], "plastered": [65535, 0], "effeminate": [65535, 0], "bitterness": [65535, 0], "suit": [32706, 32829], "clothing": [65535, 0], "used": [65535, 0], "we": [2779, 62756], "size": [65535, 0], "wardrobe": [65535, 0], "rights": [65535, 0], "buttoned": [65535, 0], "neat": [65535, 0], "crowned": [65535, 0], "speckled": [65535, 0], "exceedingly": [65535, 0], "improved": [65535, 0], "restraint": [32706, 32829], "cleanliness": [65535, 0], "galled": [65535, 0], "hoped": [65535, 0], "forget": [65535, 0], "blighted": [65535, 0], "coated": [65535, 0], "thoroughly": [65535, 0], "tallow": [43635, 21900], "temper": [65535, 0], "persuasively": [65535, 0], "snarling": [65535, 0], "fond": [32706, 32829], "sabbath": [65535, 0], "voluntarily": [65535, 0], "stronger": [32706, 32829], "reasons": [65535, 0], "church's": [65535, 0], "backed": [65535, 0], "uncushioned": [65535, 0], "persons": [65535, 0], "edifice": [65535, 0], "plain": [32706, 32829], "affair": [65535, 0], "top": [65535, 0], "steeple": [65535, 0], "dropped": [65535, 0], "accosted": [65535, 0], "comrade": [65535, 0], "yaller": [65535, 0], "lickrish": [65535, 0], "fish": [13068, 52467], "hook": [65535, 0], "exhibited": [65535, 0], "property": [65535, 0], "changed": [65535, 0], "alleys": [65535, 0], "tickets": [65535, 0], "ones": [28026, 37509], "waylaid": [65535, 0], "buying": [65535, 0], "various": [65535, 0], "colors": [65535, 0], "fifteen": [65535, 0], "longer": [21790, 43745], "swarm": [65535, 0], "noisy": [65535, 0], "proceeded": [65535, 0], "quarrel": [65535, 0], "handy": [65535, 0], "teacher": [65535, 0], "grave": [65535, 0], "elderly": [65535, 0], "interfered": [65535, 0], "pin": [32706, 32829], "reprimand": [65535, 0], "pattern": [65535, 0], "restless": [65535, 0], "lessons": [65535, 0], "prompted": [65535, 0], "worried": [65535, 0], "reward": [65535, 0], "passage": [32706, 32829], "pay": [6531, 59004], "recitation": [65535, 0], "equalled": [65535, 0], "exchanged": [65535, 0], "superintendent": [65535, 0], "plainly": [32706, 32829], "bible": [65535, 0], "those": [27246, 38289], "pupil": [65535, 0], "readers": [65535, 0], "industry": [65535, 0], "application": [65535, 0], "memorize": [65535, 0], "dore": [10888, 54647], "bibles": [65535, 0], "german": [65535, 0], "parentage": [65535, 0], "won": [43635, 21900], "recited": [65535, 0], "stopping": [65535, 0], "mental": [65535, 0], "faculties": [65535, 0], "idiot": [32706, 32829], "grievous": [65535, 0], "misfortune": [65535, 0], "occasions": [65535, 0], "expressed": [65535, 0], "older": [65535, 0], "managed": [32706, 32829], "tedious": [65535, 0], "delivery": [65535, 0], "prizes": [65535, 0], "rare": [65535, 0], "noteworthy": [65535, 0], "successful": [65535, 0], "conspicuous": [65535, 0], "spot": [65535, 0], "scholar's": [65535, 0], "fired": [65535, 0], "ambition": [65535, 0], "lasted": [65535, 0], "hungered": [65535, 0], "unquestionably": [65535, 0], "entire": [65535, 0], "eclat": [65535, 0], "due": [10888, 54647], "pulpit": [65535, 0], "forefinger": [65535, 0], "inserted": [65535, 0], "leaves": [65535, 0], "commanded": [65535, 0], "customary": [65535, 0], "speech": [54578, 10957], "inevitable": [65535, 0], "singer": [65535, 0], "stands": [16338, 49197], "platform": [65535, 0], "sings": [65535, 0], "solo": [65535, 0], "concert": [65535, 0], "referred": [65535, 0], "slim": [65535, 0], "sandy": [65535, 0], "goatee": [65535, 0], "edge": [65535, 0], "points": [32706, 32829], "curved": [65535, 0], "abreast": [65535, 0], "corners": [65535, 0], "compelled": [65535, 0], "straight": [16338, 49197], "lookout": [65535, 0], "turning": [65535, 0], "required": [65535, 0], "propped": [65535, 0], "cravat": [65535, 0], "bank": [65535, 0], "boot": [65535, 0], "toes": [65535, 0], "sharply": [65535, 0], "fashion": [26155, 39380], "sleigh": [65535, 0], "runners": [65535, 0], "laboriously": [65535, 0], "sitting": [65535, 0], "pressed": [65535, 0], "walters": [65535, 0], "mien": [65535, 0], "sincere": [65535, 0], "sacred": [49105, 16430], "places": [65535, 0], "reverence": [65535, 0], "matters": [65535, 0], "intonation": [65535, 0], "thinks": [32706, 32829], "somewhere": [32706, 32829], "birds": [65535, 0], "applausive": [65535, 0], "learning": [65535, 0], "oration": [65535, 0], "vary": [65535, 0], "familiar": [65535, 0], "latter": [32706, 32829], "third": [65535, 0], "marred": [65535, 0], "resumption": [65535, 0], "fights": [65535, 0], "fidgetings": [65535, 0], "whisperings": [65535, 0], "extended": [65535, 0], "washing": [65535, 0], "bases": [65535, 0], "incorruptible": [65535, 0], "sound": [32706, 32829], "subsidence": [65535, 0], "walters'": [65535, 0], "conclusion": [21790, 43745], "silent": [65535, 0], "occasioned": [65535, 0], "event": [65535, 0], "entrance": [32706, 32829], "visitors": [65535, 0], "accompanied": [65535, 0], "portly": [65535, 0], "gentleman": [32706, 32829], "iron": [32706, 32829], "gray": [65535, 0], "dignified": [65535, 0], "doubtless": [65535, 0], "latter's": [65535, 0], "leading": [65535, 0], "chafings": [65535, 0], "repinings": [65535, 0], "smitten": [65535, 0], "meet": [21790, 43745], "amy": [65535, 0], "lawrence's": [65535, 0], "brook": [65535, 0], "loving": [65535, 0], "gaze": [32706, 32829], "ablaze": [65535, 0], "bliss": [65535, 0], "showing": [65535, 0], "cuffing": [65535, 0], "pulling": [65535, 0], "using": [65535, 0], "art": [2839, 62696], "fascinate": [65535, 0], "applause": [65535, 0], "exaltation": [65535, 0], "alloy": [65535, 0], "memory": [65535, 0], "humiliation": [65535, 0], "angel's": [65535, 0], "record": [65535, 0], "sand": [65535, 0], "waves": [65535, 0], "happiness": [65535, 0], "sweeping": [65535, 0], "given": [65535, 0], "highest": [32706, 32829], "honor": [21790, 43745], "introduced": [65535, 0], "prodigious": [65535, 0], "personage": [65535, 0], "judge": [65535, 0], "altogether": [32706, 32829], "august": [65535, 0], "creation": [65535, 0], "roar": [65535, 0], "constantinople": [65535, 0], "travelled": [65535, 0], "reflections": [65535, 0], "inspired": [65535, 0], "attested": [65535, 0], "silence": [65535, 0], "ranks": [65535, 0], "staring": [65535, 0], "immediately": [32706, 32829], "jings": [65535, 0], "official": [65535, 0], "bustlings": [65535, 0], "activities": [65535, 0], "delivering": [65535, 0], "judgments": [65535, 0], "discharging": [65535, 0], "directions": [65535, 0], "everywhere": [65535, 0], "target": [65535, 0], "librarian": [65535, 0], "running": [32706, 32829], "hither": [10888, 54647], "thither": [21790, 43745], "books": [65535, 0], "deal": [65535, 0], "splutter": [65535, 0], "fuss": [65535, 0], "insect": [65535, 0], "authority": [65535, 0], "delights": [65535, 0], "teachers": [65535, 0], "sweetly": [65535, 0], "boxed": [65535, 0], "patting": [65535, 0], "lovingly": [65535, 0], "scoldings": [65535, 0], "displays": [65535, 0], "discipline": [65535, 0], "sexes": [65535, 0], "library": [65535, 0], "frequently": [65535, 0], "seeming": [32706, 32829], "vexation": [65535, 0], "wads": [65535, 0], "scufflings": [65535, 0], "majestic": [65535, 0], "judicial": [65535, 0], "smile": [65535, 0], "warmed": [65535, 0], "wanting": [32706, 32829], "ecstasy": [65535, 0], "complete": [65535, 0], "deliver": [65535, 0], "exhibit": [65535, 0], "prodigy": [65535, 0], "none": [8710, 56825], "star": [65535, 0], "inquiring": [65535, 0], "worlds": [43635, 21900], "demanded": [65535, 0], "thunderbolt": [65535, 0], "clear": [65535, 0], "sky": [65535, 0], "expecting": [65535, 0], "source": [65535, 0], "certified": [65535, 0], "checks": [65535, 0], "therefore": [4665, 60870], "elevated": [65535, 0], "news": [65535, 0], "announced": [65535, 0], "stunning": [65535, 0], "surprise": [65535, 0], "decade": [65535, 0], "profound": [65535, 0], "sensation": [65535, 0], "one's": [65535, 0], "altitude": [65535, 0], "eaten": [65535, 0], "suffered": [65535, 0], "bitterest": [65535, 0], "pangs": [65535, 0], "perceived": [65535, 0], "contributed": [65535, 0], "splendor": [65535, 0], "amassed": [65535, 0], "selling": [65535, 0], "privileges": [65535, 0], "despised": [65535, 0], "dupes": [65535, 0], "wily": [65535, 0], "fraud": [65535, 0], "guileful": [65535, 0], "snake": [65535, 0], "grass": [65535, 0], "effusion": [65535, 0], "lacked": [65535, 0], "somewhat": [65535, 0], "gush": [65535, 0], "fellow's": [65535, 0], "instinct": [65535, 0], "taught": [65535, 0], "bear": [49105, 16430], "preposterous": [65535, 0], "warehoused": [65535, 0], "sheaves": [65535, 0], "wisdom": [65535, 0], "premises": [65535, 0], "dozen": [65535, 0], "capacity": [65535, 0], "lawrence": [65535, 0], "proud": [65535, 0], "grain": [65535, 0], "troubled": [43635, 21900], "dim": [65535, 0], "watched": [65535, 0], "glance": [65535, 0], "jealous": [65535, 0], "angry": [65535, 0], "tears": [65535, 0], "quaked": [65535, 0], "greatness": [65535, 0], "parent": [65535, 0], "liked": [65535, 0], "stammered": [65535, 0], "ah": [26155, 39380], "daresay": [65535, 0], "manners": [32706, 32829], "manly": [65535, 0], "fellow": [10888, 54647], "knowledge": [32706, 32829], "owing": [65535, 0], "boyhood": [65535, 0], "dear": [65535, 0], "encouraged": [65535, 0], "elegant": [65535, 0], "telling": [65535, 0], "names": [39262, 26273], "disciples": [65535, 0], "appointed": [65535, 0], "tugging": [65535, 0], "button": [65535, 0], "sheepish": [65535, 0], "blushed": [65535, 0], "simplest": [65535, 0], "question": [32706, 32829], "ask": [65535, 0], "david": [65535, 0], "goliath": [65535, 0], "curtain": [65535, 0], "charity": [65535, 0], "scene": [65535, 0], "sun rose": [65535, 0], "upon a": [65535, 0], "a tranquil": [65535, 0], "tranquil world": [65535, 0], "world and": [32706, 32829], "and beamed": [65535, 0], "beamed down": [65535, 0], "the peaceful": [65535, 0], "peaceful village": [65535, 0], "village like": [65535, 0], "a benediction": [65535, 0], "benediction breakfast": [65535, 0], "breakfast over": [65535, 0], "over aunt": [65535, 0], "polly had": [65535, 0], "had family": [65535, 0], "family worship": [65535, 0], "worship it": [65535, 0], "began with": [65535, 0], "a prayer": [65535, 0], "prayer built": [65535, 0], "built from": [65535, 0], "ground up": [65535, 0], "up of": [65535, 0], "of solid": [65535, 0], "solid courses": [65535, 0], "courses of": [65535, 0], "of scriptural": [65535, 0], "scriptural quotations": [65535, 0], "quotations welded": [65535, 0], "welded together": [65535, 0], "together with": [65535, 0], "a thin": [65535, 0], "thin mortar": [65535, 0], "mortar of": [65535, 0], "of originality": [65535, 0], "originality and": [65535, 0], "and from": [16338, 49197], "the summit": [65535, 0], "summit of": [65535, 0], "this she": [65535, 0], "she delivered": [65535, 0], "delivered a": [65535, 0], "a grim": [65535, 0], "grim chapter": [65535, 0], "chapter of": [65535, 0], "the mosaic": [65535, 0], "mosaic law": [65535, 0], "law as": [65535, 0], "as from": [32706, 32829], "from sinai": [65535, 0], "sinai then": [65535, 0], "tom girded": [65535, 0], "girded up": [65535, 0], "his loins": [65535, 0], "loins so": [65535, 0], "so to": [32706, 32829], "speak and": [65535, 0], "get his": [65535, 0], "his verses": [65535, 0], "verses sid": [65535, 0], "had learned": [65535, 0], "learned his": [65535, 0], "his lesson": [65535, 0], "lesson days": [65535, 0], "days before": [65535, 0], "before tom": [65535, 0], "tom bent": [65535, 0], "bent all": [65535, 0], "his energies": [65535, 0], "energies to": [65535, 0], "the memorizing": [65535, 0], "memorizing of": [65535, 0], "of five": [65535, 0], "five verses": [65535, 0], "verses and": [65535, 0], "chose part": [65535, 0], "sermon on": [65535, 0], "the mount": [65535, 0], "mount because": [65535, 0], "could find": [32706, 32829], "find no": [32706, 32829], "no verses": [65535, 0], "verses that": [65535, 0], "were shorter": [65535, 0], "shorter at": [65535, 0], "of half": [65535, 0], "hour tom": [65535, 0], "vague general": [65535, 0], "general idea": [65535, 0], "lesson but": [65535, 0], "more for": [65535, 0], "for his": [13068, 52467], "mind was": [65535, 0], "was traversing": [65535, 0], "traversing the": [65535, 0], "whole field": [65535, 0], "field of": [65535, 0], "human thought": [65535, 0], "his hands": [39262, 26273], "hands were": [65535, 0], "were busy": [65535, 0], "busy with": [65535, 0], "with distracting": [65535, 0], "distracting recreations": [65535, 0], "recreations mary": [65535, 0], "mary took": [65535, 0], "book to": [65535, 0], "hear him": [65535, 0], "him recite": [65535, 0], "recite and": [65535, 0], "he tried": [65535, 0], "to find": [65535, 0], "find his": [65535, 0], "his way": [32706, 32829], "way through": [65535, 0], "fog blessed": [65535, 0], "blessed are": [65535, 0], "are the": [43635, 21900], "the a": [65535, 0], "a a": [65535, 0], "poor yes": [65535, 0], "yes poor": [65535, 0], "poor blessed": [65535, 0], "poor a": [65535, 0], "a in": [65535, 0], "in spirit": [65535, 0], "spirit in": [65535, 0], "spirit blessed": [65535, 0], "poor in": [65535, 0], "spirit for": [65535, 0], "they they": [65535, 0], "they theirs": [65535, 0], "theirs for": [65535, 0], "for theirs": [65535, 0], "theirs blessed": [65535, 0], "theirs is": [65535, 0], "the kingdom": [65535, 0], "kingdom of": [65535, 0], "of heaven": [65535, 0], "heaven blessed": [65535, 0], "are they": [65535, 0], "they that": [65535, 0], "that mourn": [65535, 0], "mourn for": [65535, 0], "they sh": [65535, 0], "sh for": [65535, 0], "they a": [65535, 0], "a s": [65535, 0], "s h": [65535, 0], "h a": [65535, 0], "a for": [65535, 0], "they s": [65535, 0], "h oh": [65535, 0], "know what": [21790, 43745], "is shall": [65535, 0], "shall oh": [65535, 0], "oh shall": [65535, 0], "shall for": [65535, 0], "they shall": [65535, 0], "shall a": [65535, 0], "a shall": [65535, 0], "shall mourn": [65535, 0], "mourn a": [65535, 0], "a blessed": [65535, 0], "that shall": [43635, 21900], "shall they": [65535, 0], "that a": [65535, 0], "a they": [65535, 0], "shall what": [65535, 0], "what why": [65535, 0], "me mary": [65535, 0], "mary what": [65535, 0], "be so": [26155, 39380], "so mean": [65535, 0], "mean for": [65535, 0], "for oh": [65535, 0], "you poor": [65535, 0], "poor thick": [65535, 0], "thick headed": [65535, 0], "headed thing": [65535, 0], "thing i'm": [65535, 0], "i'm not": [65535, 0], "not teasing": [65535, 0], "teasing you": [65535, 0], "wouldn't do": [65535, 0], "do that": [65535, 0], "you must": [16338, 49197], "must go": [65535, 0], "and learn": [65535, 0], "learn it": [65535, 0], "again don't": [65535, 0], "you be": [21790, 43745], "be discouraged": [65535, 0], "discouraged tom": [65535, 0], "tom you'll": [65535, 0], "you'll manage": [65535, 0], "manage it": [65535, 0], "do i'll": [65535, 0], "you something": [65535, 0], "something ever": [65535, 0], "nice there": [65535, 0], "now that's": [65535, 0], "good boy": [65535, 0], "boy all": [65535, 0], "right what": [65535, 0], "it mary": [65535, 0], "mary tell": [65535, 0], "me what": [32706, 32829], "is never": [65535, 0], "mind tom": [65535, 0], "know if": [65535, 0], "i say": [16338, 49197], "say it's": [65535, 0], "nice it": [65535, 0], "is nice": [65535, 0], "nice you": [65535, 0], "you bet": [65535, 0], "you that's": [65535, 0], "so mary": [65535, 0], "mary all": [65535, 0], "right i'll": [65535, 0], "i'll tackle": [65535, 0], "tackle it": [65535, 0], "did tackle": [65535, 0], "and under": [65535, 0], "the double": [65535, 0], "double pressure": [65535, 0], "pressure of": [65535, 0], "of curiosity": [65535, 0], "curiosity and": [65535, 0], "and prospective": [65535, 0], "prospective gain": [65535, 0], "gain he": [65535, 0], "with such": [32706, 32829], "such spirit": [65535, 0], "spirit that": [65535, 0], "he accomplished": [65535, 0], "accomplished a": [65535, 0], "a shining": [65535, 0], "shining success": [65535, 0], "success mary": [65535, 0], "mary gave": [65535, 0], "a brand": [65535, 0], "brand new": [65535, 0], "new barlow": [65535, 0], "barlow knife": [65535, 0], "knife worth": [65535, 0], "worth twelve": [65535, 0], "twelve and": [65535, 0], "a half": [65535, 0], "half cents": [65535, 0], "cents and": [65535, 0], "the convulsion": [65535, 0], "convulsion of": [65535, 0], "of delight": [65535, 0], "delight that": [65535, 0], "that swept": [65535, 0], "system shook": [65535, 0], "his foundations": [65535, 0], "foundations true": [65535, 0], "true the": [65535, 0], "the knife": [65535, 0], "knife would": [65535, 0], "would not": [32706, 32829], "not cut": [65535, 0], "cut anything": [65535, 0], "anything but": [65535, 0], "a sure": [65535, 0], "sure enough": [65535, 0], "enough barlow": [65535, 0], "barlow and": [65535, 0], "was inconceivable": [65535, 0], "inconceivable grandeur": [65535, 0], "grandeur in": [65535, 0], "that though": [65535, 0], "though where": [65535, 0], "the western": [65535, 0], "western boys": [65535, 0], "boys ever": [65535, 0], "ever got": [65535, 0], "idea that": [65535, 0], "that such": [65535, 0], "a weapon": [65535, 0], "weapon could": [65535, 0], "could possibly": [65535, 0], "possibly be": [65535, 0], "be counterfeited": [65535, 0], "counterfeited to": [65535, 0], "its injury": [65535, 0], "injury is": [65535, 0], "is an": [21790, 43745], "an imposing": [65535, 0], "imposing mystery": [65535, 0], "mystery and": [65535, 0], "and will": [16338, 49197], "will always": [65535, 0], "always remain": [65535, 0], "remain so": [65535, 0], "so perhaps": [65535, 0], "perhaps tom": [65535, 0], "tom contrived": [65535, 0], "contrived to": [65535, 0], "to scarify": [65535, 0], "scarify the": [65535, 0], "the cupboard": [65535, 0], "cupboard with": [65535, 0], "was arranging": [65535, 0], "arranging to": [65535, 0], "begin on": [65535, 0], "the bureau": [65535, 0], "bureau when": [65535, 0], "was called": [65535, 0], "called off": [65535, 0], "off to": [65535, 0], "to dress": [65535, 0], "dress for": [65535, 0], "for sunday": [65535, 0], "school mary": [65535, 0], "tin basin": [65535, 0], "basin of": [65535, 0], "water and": [65535, 0], "of soap": [65535, 0], "soap and": [65535, 0], "went outside": [65535, 0], "outside the": [65535, 0], "and set": [65535, 0], "set the": [65535, 0], "the basin": [65535, 0], "basin on": [65535, 0], "little bench": [65535, 0], "bench there": [65535, 0], "there then": [65535, 0], "dipped the": [65535, 0], "the soap": [65535, 0], "soap in": [65535, 0], "and laid": [65535, 0], "laid it": [65535, 0], "it down": [65535, 0], "down turned": [65535, 0], "his sleeves": [65535, 0], "sleeves poured": [65535, 0], "poured out": [65535, 0], "water on": [65535, 0], "ground gently": [65535, 0], "gently and": [65535, 0], "then entered": [65535, 0], "entered the": [65535, 0], "kitchen and": [65535, 0], "to wipe": [65535, 0], "wipe his": [65535, 0], "face diligently": [65535, 0], "diligently on": [65535, 0], "the towel": [65535, 0], "towel behind": [65535, 0], "behind the": [65535, 0], "door but": [65535, 0], "but mary": [65535, 0], "mary removed": [65535, 0], "removed the": [65535, 0], "towel and": [65535, 0], "now ain't": [65535, 0], "you ashamed": [65535, 0], "ashamed tom": [65535, 0], "you mustn't": [65535, 0], "mustn't be": [65535, 0], "so bad": [65535, 0], "bad water": [65535, 0], "water won't": [65535, 0], "won't hurt": [65535, 0], "hurt you": [65535, 0], "a trifle": [65535, 0], "trifle disconcerted": [65535, 0], "disconcerted the": [65535, 0], "basin was": [65535, 0], "was refilled": [65535, 0], "refilled and": [65535, 0], "he stood": [65535, 0], "it a": [32706, 32829], "while gathering": [65535, 0], "gathering resolution": [65535, 0], "resolution took": [65535, 0], "took in": [65535, 0], "a big": [65535, 0], "big breath": [65535, 0], "breath and": [65535, 0], "began when": [65535, 0], "he entered": [65535, 0], "kitchen presently": [65535, 0], "presently with": [65535, 0], "with both": [65535, 0], "both eyes": [65535, 0], "and groping": [65535, 0], "groping for": [65535, 0], "towel with": [65535, 0], "hands an": [65535, 0], "an honorable": [65535, 0], "honorable testimony": [65535, 0], "testimony of": [65535, 0], "of suds": [65535, 0], "suds and": [65535, 0], "and water": [65535, 0], "was dripping": [65535, 0], "dripping from": [65535, 0], "but when": [65535, 0], "he emerged": [65535, 0], "emerged from": [65535, 0], "towel he": [65535, 0], "not yet": [65535, 0], "yet satisfactory": [65535, 0], "satisfactory for": [65535, 0], "the clean": [65535, 0], "clean territory": [65535, 0], "territory stopped": [65535, 0], "stopped short": [65535, 0], "short at": [65535, 0], "chin and": [65535, 0], "his jaws": [65535, 0], "jaws like": [65535, 0], "a mask": [65535, 0], "mask below": [65535, 0], "below and": [65535, 0], "and beyond": [65535, 0], "beyond this": [65535, 0], "this line": [65535, 0], "line there": [65535, 0], "a dark": [65535, 0], "dark expanse": [65535, 0], "expanse of": [65535, 0], "of unirrigated": [65535, 0], "unirrigated soil": [65535, 0], "soil that": [65535, 0], "that spread": [65535, 0], "spread downward": [65535, 0], "downward in": [65535, 0], "front and": [65535, 0], "and backward": [65535, 0], "backward around": [65535, 0], "around his": [65535, 0], "his neck": [65535, 0], "neck mary": [65535, 0], "took him": [65535, 0], "him in": [13068, 52467], "in hand": [32706, 32829], "was done": [65535, 0], "man and": [23774, 41761], "brother without": [65535, 0], "without distinction": [65535, 0], "distinction of": [65535, 0], "of color": [65535, 0], "color and": [65535, 0], "his saturated": [65535, 0], "saturated hair": [65535, 0], "hair was": [65535, 0], "was neatly": [65535, 0], "neatly brushed": [65535, 0], "brushed and": [65535, 0], "and its": [65535, 0], "its short": [65535, 0], "short curls": [65535, 0], "curls wrought": [65535, 0], "wrought into": [65535, 0], "dainty and": [65535, 0], "and symmetrical": [65535, 0], "symmetrical general": [65535, 0], "general effect": [65535, 0], "effect he": [65535, 0], "he privately": [65535, 0], "privately smoothed": [65535, 0], "smoothed out": [65535, 0], "the curls": [65535, 0], "curls with": [65535, 0], "with labor": [65535, 0], "labor and": [65535, 0], "and difficulty": [65535, 0], "difficulty and": [65535, 0], "and plastered": [65535, 0], "plastered his": [65535, 0], "his hair": [65535, 0], "hair close": [65535, 0], "close down": [65535, 0], "he held": [65535, 0], "held curls": [65535, 0], "curls to": [65535, 0], "be effeminate": [65535, 0], "effeminate and": [65535, 0], "own filled": [65535, 0], "filled his": [65535, 0], "his life": [21790, 43745], "life with": [65535, 0], "with bitterness": [65535, 0], "bitterness then": [65535, 0], "then mary": [65535, 0], "mary got": [65535, 0], "a suit": [65535, 0], "suit of": [65535, 0], "his clothing": [65535, 0], "clothing that": [65535, 0], "been used": [65535, 0], "used only": [65535, 0], "only on": [65535, 0], "sundays during": [65535, 0], "during two": [65535, 0], "two years": [65535, 0], "years they": [65535, 0], "were simply": [65535, 0], "simply called": [65535, 0], "called his": [65535, 0], "his other": [65535, 0], "other clothes": [65535, 0], "so by": [65535, 0], "that we": [10888, 54647], "we know": [32706, 32829], "the size": [65535, 0], "size of": [65535, 0], "his wardrobe": [65535, 0], "wardrobe the": [65535, 0], "girl put": [65535, 0], "put him": [65535, 0], "to rights": [65535, 0], "rights after": [65535, 0], "after he": [65535, 0], "had dressed": [65535, 0], "dressed himself": [65535, 0], "himself she": [65535, 0], "she buttoned": [65535, 0], "buttoned his": [65535, 0], "his neat": [65535, 0], "neat roundabout": [65535, 0], "roundabout up": [65535, 0], "chin turned": [65535, 0], "turned his": [65535, 0], "his vast": [65535, 0], "vast shirt": [65535, 0], "collar down": [65535, 0], "down over": [65535, 0], "over his": [65535, 0], "his shoulders": [65535, 0], "shoulders brushed": [65535, 0], "brushed him": [65535, 0], "and crowned": [65535, 0], "crowned him": [65535, 0], "his speckled": [65535, 0], "speckled straw": [65535, 0], "straw hat": [65535, 0], "hat he": [65535, 0], "he now": [65535, 0], "now looked": [65535, 0], "looked exceedingly": [65535, 0], "exceedingly improved": [65535, 0], "improved and": [65535, 0], "and uncomfortable": [65535, 0], "uncomfortable he": [65535, 0], "was fully": [65535, 0], "fully as": [65535, 0], "as uncomfortable": [65535, 0], "uncomfortable as": [65535, 0], "looked for": [65535, 0], "for there": [65535, 0], "a restraint": [65535, 0], "restraint about": [65535, 0], "about whole": [65535, 0], "whole clothes": [65535, 0], "and cleanliness": [65535, 0], "cleanliness that": [65535, 0], "that galled": [65535, 0], "galled him": [65535, 0], "he hoped": [65535, 0], "hoped that": [65535, 0], "mary would": [65535, 0], "would forget": [65535, 0], "forget his": [65535, 0], "his shoes": [65535, 0], "shoes but": [65535, 0], "the hope": [65535, 0], "hope was": [65535, 0], "was blighted": [65535, 0], "blighted she": [65535, 0], "she coated": [65535, 0], "coated them": [65535, 0], "them thoroughly": [65535, 0], "thoroughly with": [65535, 0], "with tallow": [65535, 0], "tallow as": [65535, 0], "as was": [65535, 0], "the custom": [65535, 0], "custom and": [65535, 0], "and brought": [32706, 32829], "brought them": [65535, 0], "out he": [65535, 0], "he lost": [65535, 0], "his temper": [65535, 0], "temper and": [65535, 0], "always being": [65535, 0], "being made": [65535, 0], "made to": [32706, 32829], "do everything": [65535, 0], "everything he": [65535, 0], "didn't want": [65535, 0], "do but": [65535, 0], "mary said": [65535, 0], "said persuasively": [65535, 0], "persuasively please": [65535, 0], "please tom": [65535, 0], "tom that's": [65535, 0], "boy so": [65535, 0], "got into": [65535, 0], "the shoes": [65535, 0], "shoes snarling": [65535, 0], "snarling mary": [65535, 0], "mary was": [65535, 0], "was soon": [65535, 0], "soon ready": [65535, 0], "ready and": [65535, 0], "the three": [65535, 0], "three children": [65535, 0], "children set": [65535, 0], "set out": [65535, 0], "school a": [65535, 0], "a place": [65535, 0], "place that": [21790, 43745], "tom hated": [65535, 0], "hated with": [65535, 0], "whole heart": [65535, 0], "heart but": [65535, 0], "mary were": [65535, 0], "were fond": [65535, 0], "fond of": [65535, 0], "it sabbath": [65535, 0], "sabbath school": [65535, 0], "school hours": [65535, 0], "hours were": [65535, 0], "were from": [65535, 0], "from nine": [65535, 0], "nine to": [65535, 0], "to half": [65535, 0], "ten and": [65535, 0], "then church": [65535, 0], "church service": [65535, 0], "service two": [65535, 0], "two of": [65535, 0], "the children": [32706, 32829], "children always": [65535, 0], "always remained": [65535, 0], "remained for": [65535, 0], "sermon voluntarily": [65535, 0], "voluntarily and": [65535, 0], "other always": [65535, 0], "remained too": [65535, 0], "too for": [65535, 0], "for stronger": [65535, 0], "stronger reasons": [65535, 0], "reasons the": [65535, 0], "the church's": [65535, 0], "church's high": [65535, 0], "high backed": [65535, 0], "backed uncushioned": [65535, 0], "uncushioned pews": [65535, 0], "pews would": [65535, 0], "would seat": [65535, 0], "seat about": [65535, 0], "about three": [65535, 0], "three hundred": [65535, 0], "hundred persons": [65535, 0], "persons the": [65535, 0], "the edifice": [65535, 0], "edifice was": [65535, 0], "small plain": [65535, 0], "plain affair": [65535, 0], "affair with": [65535, 0], "of pine": [65535, 0], "pine board": [65535, 0], "board tree": [65535, 0], "box on": [65535, 0], "on top": [65535, 0], "top of": [65535, 0], "it for": [13068, 52467], "a steeple": [65535, 0], "steeple at": [65535, 0], "door tom": [65535, 0], "tom dropped": [65535, 0], "dropped back": [65535, 0], "back a": [65535, 0], "a step": [65535, 0], "step and": [65535, 0], "and accosted": [65535, 0], "accosted a": [65535, 0], "sunday dressed": [65535, 0], "dressed comrade": [65535, 0], "comrade say": [65535, 0], "say billy": [65535, 0], "billy got": [65535, 0], "a yaller": [65535, 0], "yaller ticket": [65535, 0], "ticket yes": [65535, 0], "yes what'll": [65535, 0], "for her": [9332, 56203], "her what'll": [65535, 0], "give piece": [65535, 0], "of lickrish": [65535, 0], "lickrish and": [65535, 0], "a fish": [32706, 32829], "fish hook": [65535, 0], "hook less": [65535, 0], "'em tom": [65535, 0], "tom exhibited": [65535, 0], "exhibited they": [65535, 0], "were satisfactory": [65535, 0], "satisfactory and": [65535, 0], "the property": [65535, 0], "property changed": [65535, 0], "changed hands": [65535, 0], "hands then": [65535, 0], "tom traded": [65535, 0], "traded a": [65535, 0], "of white": [65535, 0], "white alleys": [65535, 0], "alleys for": [65535, 0], "for three": [65535, 0], "three red": [65535, 0], "red tickets": [65535, 0], "tickets and": [65535, 0], "and some": [65535, 0], "some small": [65535, 0], "small trifle": [65535, 0], "trifle or": [65535, 0], "or other": [32706, 32829], "other for": [65535, 0], "blue ones": [65535, 0], "ones he": [65535, 0], "he waylaid": [65535, 0], "waylaid other": [65535, 0], "other boys": [65535, 0], "boys as": [65535, 0], "as they": [32706, 32829], "on buying": [65535, 0], "buying tickets": [65535, 0], "tickets of": [65535, 0], "of various": [65535, 0], "various colors": [65535, 0], "colors ten": [65535, 0], "ten or": [65535, 0], "or fifteen": [65535, 0], "fifteen minutes": [65535, 0], "minutes longer": [65535, 0], "longer he": [65535, 0], "church now": [65535, 0], "now with": [65535, 0], "a swarm": [65535, 0], "swarm of": [65535, 0], "of clean": [65535, 0], "clean and": [65535, 0], "and noisy": [65535, 0], "noisy boys": [65535, 0], "girls proceeded": [65535, 0], "proceeded to": [65535, 0], "seat and": [65535, 0], "started a": [65535, 0], "a quarrel": [65535, 0], "quarrel with": [65535, 0], "that came": [43635, 21900], "came handy": [65535, 0], "handy the": [65535, 0], "the teacher": [65535, 0], "teacher a": [65535, 0], "a grave": [65535, 0], "grave elderly": [65535, 0], "elderly man": [65535, 0], "man interfered": [65535, 0], "interfered then": [65535, 0], "tom pulled": [65535, 0], "pulled a": [65535, 0], "a boy's": [65535, 0], "boy's hair": [65535, 0], "hair in": [65535, 0], "next bench": [65535, 0], "was absorbed": [65535, 0], "absorbed in": [65535, 0], "book when": [65535, 0], "boy turned": [65535, 0], "turned around": [65535, 0], "around stuck": [65535, 0], "stuck a": [65535, 0], "a pin": [32706, 32829], "pin in": [65535, 0], "boy presently": [65535, 0], "presently in": [65535, 0], "him say": [65535, 0], "say ouch": [65535, 0], "ouch and": [65535, 0], "new reprimand": [65535, 0], "reprimand from": [65535, 0], "his teacher": [65535, 0], "teacher tom's": [65535, 0], "tom's whole": [65535, 0], "whole class": [65535, 0], "class were": [65535, 0], "were of": [65535, 0], "a pattern": [65535, 0], "pattern restless": [65535, 0], "restless noisy": [65535, 0], "noisy and": [65535, 0], "and troublesome": [65535, 0], "troublesome when": [65535, 0], "to recite": [65535, 0], "recite their": [65535, 0], "their lessons": [65535, 0], "lessons not": [65535, 0], "not one": [32706, 32829], "of them": [21790, 43745], "them knew": [65535, 0], "knew his": [65535, 0], "verses perfectly": [65535, 0], "perfectly but": [65535, 0], "but had": [21790, 43745], "be prompted": [65535, 0], "prompted all": [65535, 0], "all along": [65535, 0], "along however": [65535, 0], "however they": [65535, 0], "they worried": [65535, 0], "worried through": [65535, 0], "through and": [65535, 0], "and each": [65535, 0], "each got": [65535, 0], "got his": [65535, 0], "his reward": [65535, 0], "reward in": [65535, 0], "in small": [65535, 0], "small blue": [65535, 0], "blue tickets": [65535, 0], "tickets each": [65535, 0], "a passage": [65535, 0], "passage of": [32706, 32829], "of scripture": [65535, 0], "scripture on": [65535, 0], "it each": [65535, 0], "each blue": [65535, 0], "ticket was": [65535, 0], "was pay": [65535, 0], "pay for": [65535, 0], "two verses": [65535, 0], "verses of": [65535, 0], "the recitation": [65535, 0], "recitation ten": [65535, 0], "ten blue": [65535, 0], "tickets equalled": [65535, 0], "equalled a": [65535, 0], "a red": [65535, 0], "red one": [65535, 0], "one and": [21790, 43745], "and could": [65535, 0], "be exchanged": [65535, 0], "exchanged for": [65535, 0], "it ten": [65535, 0], "ten red": [65535, 0], "a yellow": [65535, 0], "yellow one": [65535, 0], "one for": [65535, 0], "for ten": [65535, 0], "ten yellow": [65535, 0], "yellow tickets": [65535, 0], "tickets the": [65535, 0], "the superintendent": [65535, 0], "superintendent gave": [65535, 0], "gave a": [65535, 0], "very plainly": [65535, 0], "plainly bound": [65535, 0], "bound bible": [65535, 0], "bible worth": [65535, 0], "worth forty": [65535, 0], "forty cents": [65535, 0], "cents in": [65535, 0], "in those": [65535, 0], "those easy": [65535, 0], "easy times": [65535, 0], "times to": [65535, 0], "the pupil": [65535, 0], "pupil how": [65535, 0], "many of": [65535, 0], "my readers": [65535, 0], "readers would": [65535, 0], "the industry": [65535, 0], "industry and": [65535, 0], "and application": [65535, 0], "application to": [65535, 0], "to memorize": [65535, 0], "memorize two": [65535, 0], "thousand verses": [65535, 0], "verses even": [65535, 0], "even for": [65535, 0], "a dore": [32706, 32829], "dore bible": [65535, 0], "bible and": [65535, 0], "yet mary": [65535, 0], "mary had": [65535, 0], "had acquired": [65535, 0], "acquired two": [65535, 0], "two bibles": [65535, 0], "bibles in": [65535, 0], "way it": [65535, 0], "the patient": [65535, 0], "patient work": [65535, 0], "work of": [65535, 0], "of two": [21790, 43745], "years and": [65535, 0], "of german": [65535, 0], "german parentage": [65535, 0], "parentage had": [65535, 0], "had won": [65535, 0], "won four": [65535, 0], "four or": [65535, 0], "or five": [65535, 0], "five he": [65535, 0], "he once": [65535, 0], "once recited": [65535, 0], "recited three": [65535, 0], "three thousand": [65535, 0], "verses without": [65535, 0], "without stopping": [65535, 0], "stopping but": [65535, 0], "the strain": [65535, 0], "strain upon": [65535, 0], "his mental": [65535, 0], "mental faculties": [65535, 0], "faculties was": [65535, 0], "was little": [65535, 0], "little better": [65535, 0], "better than": [65535, 0], "than an": [65535, 0], "an idiot": [65535, 0], "idiot from": [65535, 0], "from that": [65535, 0], "day forth": [65535, 0], "forth a": [65535, 0], "a grievous": [65535, 0], "grievous misfortune": [65535, 0], "misfortune for": [65535, 0], "school for": [65535, 0], "for on": [65535, 0], "on great": [65535, 0], "great occasions": [65535, 0], "occasions before": [65535, 0], "before company": [65535, 0], "company the": [32706, 32829], "superintendent as": [65535, 0], "tom expressed": [65535, 0], "expressed it": [65535, 0], "it had": [65535, 0], "always made": [65535, 0], "made this": [65535, 0], "boy come": [65535, 0], "and spread": [65535, 0], "spread himself": [65535, 0], "himself only": [65535, 0], "only the": [65535, 0], "the older": [65535, 0], "older pupils": [65535, 0], "pupils managed": [65535, 0], "managed to": [65535, 0], "to keep": [65535, 0], "keep their": [65535, 0], "their tickets": [65535, 0], "and stick": [65535, 0], "to their": [21790, 43745], "their tedious": [65535, 0], "tedious work": [65535, 0], "work long": [65535, 0], "long enough": [65535, 0], "a bible": [65535, 0], "the delivery": [65535, 0], "delivery of": [65535, 0], "of these": [28026, 37509], "these prizes": [65535, 0], "prizes was": [65535, 0], "a rare": [65535, 0], "rare and": [65535, 0], "and noteworthy": [65535, 0], "noteworthy circumstance": [65535, 0], "circumstance the": [65535, 0], "the successful": [65535, 0], "successful pupil": [65535, 0], "pupil was": [65535, 0], "so great": [32706, 32829], "and conspicuous": [65535, 0], "conspicuous for": [65535, 0], "that on": [65535, 0], "the spot": [65535, 0], "spot every": [65535, 0], "every scholar's": [65535, 0], "scholar's heart": [65535, 0], "was fired": [65535, 0], "fired with": [65535, 0], "a fresh": [65535, 0], "fresh ambition": [65535, 0], "ambition that": [65535, 0], "that often": [65535, 0], "often lasted": [65535, 0], "lasted a": [65535, 0], "of weeks": [65535, 0], "weeks it": [65535, 0], "is possible": [65535, 0], "possible that": [65535, 0], "that tom's": [65535, 0], "tom's mental": [65535, 0], "mental stomach": [65535, 0], "stomach had": [65535, 0], "had never": [65535, 0], "never really": [65535, 0], "really hungered": [65535, 0], "hungered for": [65535, 0], "for one": [65535, 0], "of those": [32706, 32829], "those prizes": [65535, 0], "prizes but": [65535, 0], "but unquestionably": [65535, 0], "unquestionably his": [65535, 0], "his entire": [65535, 0], "entire being": [65535, 0], "being had": [65535, 0], "had for": [65535, 0], "for many": [65535, 0], "a day": [32706, 32829], "day longed": [65535, 0], "the glory": [65535, 0], "glory and": [65535, 0], "the eclat": [65535, 0], "eclat that": [65535, 0], "came with": [65535, 0], "it in": [28026, 37509], "in due": [65535, 0], "due course": [65535, 0], "course the": [65535, 0], "superintendent stood": [65535, 0], "stood up": [65535, 0], "the pulpit": [65535, 0], "pulpit with": [65535, 0], "a closed": [65535, 0], "closed hymn": [65535, 0], "hymn book": [65535, 0], "book in": [65535, 0], "his forefinger": [65535, 0], "forefinger inserted": [65535, 0], "inserted between": [65535, 0], "between its": [65535, 0], "its leaves": [65535, 0], "leaves and": [65535, 0], "and commanded": [65535, 0], "commanded attention": [65535, 0], "attention when": [65535, 0], "school superintendent": [65535, 0], "superintendent makes": [65535, 0], "makes his": [65535, 0], "his customary": [65535, 0], "customary little": [65535, 0], "little speech": [65535, 0], "speech a": [65535, 0], "a hymn": [65535, 0], "the hand": [43635, 21900], "hand is": [65535, 0], "is as": [65535, 0], "as necessary": [65535, 0], "necessary as": [65535, 0], "as is": [65535, 0], "the inevitable": [65535, 0], "inevitable sheet": [65535, 0], "sheet of": [65535, 0], "of music": [65535, 0], "music in": [65535, 0], "hand of": [65535, 0], "a singer": [65535, 0], "singer who": [65535, 0], "who stands": [65535, 0], "stands forward": [65535, 0], "forward on": [65535, 0], "the platform": [65535, 0], "platform and": [65535, 0], "and sings": [65535, 0], "sings a": [65535, 0], "a solo": [65535, 0], "solo at": [65535, 0], "at a": [43635, 21900], "a concert": [65535, 0], "concert though": [65535, 0], "though why": [65535, 0], "why is": [32706, 32829], "a mystery": [65535, 0], "mystery for": [65535, 0], "for neither": [65535, 0], "neither the": [65535, 0], "book nor": [65535, 0], "nor the": [32706, 32829], "music is": [65535, 0], "is ever": [65535, 0], "ever referred": [65535, 0], "referred to": [65535, 0], "to by": [65535, 0], "the sufferer": [65535, 0], "sufferer this": [65535, 0], "this superintendent": [65535, 0], "superintendent was": [65535, 0], "a slim": [65535, 0], "slim creature": [65535, 0], "creature of": [65535, 0], "of thirty": [65535, 0], "thirty five": [65535, 0], "five with": [65535, 0], "a sandy": [65535, 0], "sandy goatee": [65535, 0], "goatee and": [65535, 0], "and short": [65535, 0], "short sandy": [65535, 0], "sandy hair": [65535, 0], "hair he": [65535, 0], "a stiff": [65535, 0], "stiff standing": [65535, 0], "standing collar": [65535, 0], "collar whose": [65535, 0], "whose upper": [65535, 0], "upper edge": [65535, 0], "edge almost": [65535, 0], "almost reached": [65535, 0], "reached his": [65535, 0], "ears and": [65535, 0], "and whose": [65535, 0], "whose sharp": [65535, 0], "sharp points": [65535, 0], "points curved": [65535, 0], "curved forward": [65535, 0], "forward abreast": [65535, 0], "abreast the": [65535, 0], "the corners": [65535, 0], "corners of": [65535, 0], "mouth a": [65535, 0], "fence that": [65535, 0], "that compelled": [65535, 0], "compelled a": [65535, 0], "a straight": [65535, 0], "straight lookout": [65535, 0], "lookout ahead": [65535, 0], "ahead and": [65535, 0], "a turning": [65535, 0], "turning of": [65535, 0], "whole body": [65535, 0], "body when": [65535, 0], "a side": [65535, 0], "side view": [65535, 0], "view was": [65535, 0], "was required": [65535, 0], "required his": [65535, 0], "chin was": [65535, 0], "was propped": [65535, 0], "propped on": [65535, 0], "a spreading": [65535, 0], "spreading cravat": [65535, 0], "cravat which": [65535, 0], "was as": [65535, 0], "as broad": [65535, 0], "broad and": [65535, 0], "a bank": [65535, 0], "bank note": [65535, 0], "note and": [65535, 0], "had fringed": [65535, 0], "fringed ends": [65535, 0], "ends his": [65535, 0], "his boot": [65535, 0], "boot toes": [65535, 0], "toes were": [65535, 0], "were turned": [65535, 0], "turned sharply": [65535, 0], "sharply up": [65535, 0], "the fashion": [65535, 0], "fashion of": [65535, 0], "the day": [43635, 21900], "day like": [65535, 0], "like sleigh": [65535, 0], "sleigh runners": [65535, 0], "runners an": [65535, 0], "an effect": [32706, 32829], "effect patiently": [65535, 0], "patiently and": [65535, 0], "and laboriously": [65535, 0], "laboriously produced": [65535, 0], "young men": [65535, 0], "men by": [65535, 0], "by sitting": [65535, 0], "sitting with": [65535, 0], "their toes": [65535, 0], "toes pressed": [65535, 0], "pressed against": [65535, 0], "against a": [65535, 0], "a wall": [65535, 0], "wall for": [65535, 0], "for hours": [65535, 0], "hours together": [65535, 0], "together mr": [65535, 0], "mr walters": [65535, 0], "walters was": [65535, 0], "very earnest": [65535, 0], "earnest of": [65535, 0], "of mien": [65535, 0], "mien and": [65535, 0], "very sincere": [65535, 0], "sincere and": [65535, 0], "and honest": [65535, 0], "honest at": [65535, 0], "held sacred": [65535, 0], "sacred things": [65535, 0], "things and": [65535, 0], "and places": [65535, 0], "places in": [65535, 0], "in such": [49105, 16430], "such reverence": [65535, 0], "reverence and": [65535, 0], "so separated": [65535, 0], "separated them": [65535, 0], "them from": [65535, 0], "from worldly": [65535, 0], "worldly matters": [65535, 0], "matters that": [65535, 0], "that unconsciously": [65535, 0], "unconsciously to": [65535, 0], "himself his": [65535, 0], "his sunday": [65535, 0], "school voice": [65535, 0], "voice had": [65535, 0], "acquired a": [65535, 0], "peculiar intonation": [65535, 0], "intonation which": [65535, 0], "was wholly": [65535, 0], "wholly absent": [65535, 0], "absent on": [65535, 0], "on week": [65535, 0], "week days": [65535, 0], "days he": [65535, 0], "began after": [65535, 0], "after this": [65535, 0], "this fashion": [65535, 0], "fashion now": [65535, 0], "now children": [65535, 0], "children i": [65535, 0], "i want": [65535, 0], "want you": [65535, 0], "all to": [32706, 32829], "to sit": [65535, 0], "up just": [65535, 0], "as straight": [65535, 0], "straight and": [32706, 32829], "pretty as": [65535, 0], "can and": [65535, 0], "and give": [65535, 0], "me all": [65535, 0], "your attention": [65535, 0], "attention for": [65535, 0], "or two": [65535, 0], "two there": [65535, 0], "there that": [65535, 0], "it that": [13068, 52467], "way good": [65535, 0], "good little": [65535, 0], "little boys": [65535, 0], "girls should": [65535, 0], "should do": [65535, 0], "i see": [5024, 60511], "see one": [65535, 0], "one little": [65535, 0], "little girl": [65535, 0], "girl who": [65535, 0], "who is": [32706, 32829], "is looking": [65535, 0], "window i": [65535, 0], "am afraid": [65535, 0], "afraid she": [65535, 0], "she thinks": [65535, 0], "thinks i": [65535, 0], "am out": [65535, 0], "out there": [65535, 0], "there somewhere": [65535, 0], "somewhere perhaps": [65535, 0], "perhaps up": [65535, 0], "in one": [65535, 0], "the trees": [65535, 0], "trees making": [65535, 0], "making a": [65535, 0], "a speech": [65535, 0], "speech to": [65535, 0], "little birds": [65535, 0], "birds applausive": [65535, 0], "applausive titter": [65535, 0], "titter i": [65535, 0], "you how": [65535, 0], "how good": [65535, 0], "good it": [65535, 0], "makes me": [32706, 32829], "me feel": [65535, 0], "feel to": [65535, 0], "see so": [65535, 0], "so many": [65535, 0], "many bright": [65535, 0], "bright clean": [65535, 0], "clean little": [65535, 0], "little faces": [65535, 0], "faces assembled": [65535, 0], "assembled in": [32706, 32829], "place like": [65535, 0], "like this": [65535, 0], "this learning": [65535, 0], "learning to": [65535, 0], "do right": [65535, 0], "right and": [65535, 0], "be good": [65535, 0], "so forth": [65535, 0], "forth and": [21790, 43745], "not necessary": [65535, 0], "to set": [65535, 0], "set down": [65535, 0], "the oration": [65535, 0], "oration it": [65535, 0], "was of": [65535, 0], "pattern which": [65535, 0], "which does": [65535, 0], "does not": [65535, 0], "not vary": [65535, 0], "vary and": [65535, 0], "so it": [32706, 32829], "is familiar": [65535, 0], "familiar to": [65535, 0], "to us": [65535, 0], "us all": [65535, 0], "the latter": [32706, 32829], "latter third": [65535, 0], "third of": [65535, 0], "the speech": [65535, 0], "speech was": [65535, 0], "was marred": [65535, 0], "marred by": [65535, 0], "the resumption": [65535, 0], "resumption of": [65535, 0], "of fights": [65535, 0], "fights and": [65535, 0], "and other": [32706, 32829], "other recreations": [65535, 0], "recreations among": [65535, 0], "among certain": [65535, 0], "certain of": [65535, 0], "the bad": [65535, 0], "bad boys": [65535, 0], "by fidgetings": [65535, 0], "fidgetings and": [65535, 0], "and whisperings": [65535, 0], "whisperings that": [65535, 0], "that extended": [65535, 0], "extended far": [65535, 0], "far and": [65535, 0], "and wide": [65535, 0], "wide washing": [65535, 0], "washing even": [65535, 0], "even to": [65535, 0], "the bases": [65535, 0], "bases of": [65535, 0], "of isolated": [65535, 0], "isolated and": [65535, 0], "and incorruptible": [65535, 0], "incorruptible rocks": [65535, 0], "rocks like": [65535, 0], "like sid": [65535, 0], "mary but": [65535, 0], "now every": [65535, 0], "every sound": [65535, 0], "sound ceased": [65535, 0], "ceased suddenly": [65535, 0], "suddenly with": [65535, 0], "the subsidence": [65535, 0], "subsidence of": [65535, 0], "of mr": [65535, 0], "mr walters'": [65535, 0], "walters' voice": [65535, 0], "voice and": [65535, 0], "the conclusion": [65535, 0], "conclusion of": [65535, 0], "was received": [65535, 0], "a burst": [65535, 0], "of silent": [65535, 0], "silent gratitude": [65535, 0], "gratitude a": [65535, 0], "good part": [32706, 32829], "the whispering": [65535, 0], "whispering had": [65535, 0], "been occasioned": [65535, 0], "occasioned by": [65535, 0], "by an": [65535, 0], "an event": [65535, 0], "event which": [65535, 0], "was more": [65535, 0], "more or": [65535, 0], "or less": [65535, 0], "less rare": [65535, 0], "rare the": [65535, 0], "the entrance": [65535, 0], "entrance of": [65535, 0], "of visitors": [65535, 0], "visitors lawyer": [65535, 0], "lawyer thatcher": [65535, 0], "thatcher accompanied": [65535, 0], "accompanied by": [65535, 0], "very feeble": [65535, 0], "and aged": [65535, 0], "aged man": [65535, 0], "man a": [65535, 0], "a fine": [43635, 21900], "fine portly": [65535, 0], "portly middle": [65535, 0], "middle aged": [65535, 0], "aged gentleman": [65535, 0], "gentleman with": [65535, 0], "with iron": [65535, 0], "iron gray": [65535, 0], "gray hair": [65535, 0], "a dignified": [65535, 0], "dignified lady": [65535, 0], "lady who": [65535, 0], "who was": [65535, 0], "was doubtless": [65535, 0], "doubtless the": [65535, 0], "the latter's": [65535, 0], "latter's wife": [65535, 0], "wife the": [32706, 32829], "the lady": [43635, 21900], "lady was": [65535, 0], "was leading": [65535, 0], "leading a": [65535, 0], "a child": [65535, 0], "been restless": [65535, 0], "restless and": [65535, 0], "of chafings": [65535, 0], "chafings and": [65535, 0], "and repinings": [65535, 0], "repinings conscience": [65535, 0], "conscience smitten": [65535, 0], "smitten too": [65535, 0], "too he": [65535, 0], "could not": [32706, 32829], "not meet": [65535, 0], "meet amy": [65535, 0], "amy lawrence's": [65535, 0], "lawrence's eye": [65535, 0], "eye he": [65535, 0], "not brook": [65535, 0], "brook her": [65535, 0], "her loving": [65535, 0], "loving gaze": [65535, 0], "gaze but": [65535, 0], "saw this": [65535, 0], "this small": [65535, 0], "small new": [65535, 0], "comer his": [65535, 0], "soul was": [65535, 0], "was all": [65535, 0], "all ablaze": [65535, 0], "ablaze with": [65535, 0], "with bliss": [65535, 0], "bliss in": [65535, 0], "moment the": [65535, 0], "next moment": [65535, 0], "was showing": [65535, 0], "showing off": [65535, 0], "his might": [65535, 0], "might cuffing": [65535, 0], "cuffing boys": [65535, 0], "boys pulling": [65535, 0], "pulling hair": [65535, 0], "hair making": [65535, 0], "making faces": [65535, 0], "faces in": [65535, 0], "word using": [65535, 0], "using every": [65535, 0], "every art": [65535, 0], "art that": [65535, 0], "that seemed": [65535, 0], "seemed likely": [65535, 0], "likely to": [65535, 0], "to fascinate": [65535, 0], "fascinate a": [65535, 0], "a girl": [65535, 0], "girl and": [65535, 0], "and win": [65535, 0], "win her": [65535, 0], "her applause": [65535, 0], "applause his": [65535, 0], "his exaltation": [65535, 0], "exaltation had": [65535, 0], "one alloy": [65535, 0], "alloy the": [65535, 0], "the memory": [65535, 0], "memory of": [65535, 0], "his humiliation": [65535, 0], "humiliation in": [65535, 0], "this angel's": [65535, 0], "angel's garden": [65535, 0], "garden and": [65535, 0], "that record": [65535, 0], "record in": [65535, 0], "in sand": [65535, 0], "sand was": [65535, 0], "was fast": [65535, 0], "fast washing": [65535, 0], "washing out": [65535, 0], "the waves": [65535, 0], "waves of": [65535, 0], "of happiness": [65535, 0], "happiness that": [65535, 0], "were sweeping": [65535, 0], "sweeping over": [65535, 0], "the visitors": [65535, 0], "visitors were": [65535, 0], "were given": [65535, 0], "given the": [65535, 0], "the highest": [32706, 32829], "highest seat": [65535, 0], "of honor": [65535, 0], "honor and": [32706, 32829], "as mr": [65535, 0], "walters' speech": [65535, 0], "finished he": [65535, 0], "he introduced": [65535, 0], "introduced them": [65535, 0], "school the": [65535, 0], "man turned": [65535, 0], "turned out": [65535, 0], "a prodigious": [65535, 0], "prodigious personage": [65535, 0], "personage no": [65535, 0], "no less": [65535, 0], "less a": [65535, 0], "a one": [21790, 43745], "one than": [65535, 0], "than the": [65535, 0], "county judge": [65535, 0], "judge altogether": [65535, 0], "altogether the": [65535, 0], "most august": [65535, 0], "august creation": [65535, 0], "creation these": [65535, 0], "these children": [32706, 32829], "children had": [65535, 0], "had ever": [65535, 0], "ever looked": [65535, 0], "upon and": [65535, 0], "they wondered": [65535, 0], "wondered what": [65535, 0], "what kind": [65535, 0], "material he": [65535, 0], "was made": [65535, 0], "made of": [21790, 43745], "of and": [65535, 0], "they half": [65535, 0], "half wanted": [65535, 0], "him roar": [65535, 0], "roar and": [65535, 0], "were half": [65535, 0], "half afraid": [65535, 0], "afraid he": [65535, 0], "might too": [65535, 0], "was from": [65535, 0], "from constantinople": [65535, 0], "constantinople twelve": [65535, 0], "twelve miles": [65535, 0], "miles away": [65535, 0], "had travelled": [65535, 0], "travelled and": [65535, 0], "and seen": [65535, 0], "seen the": [65535, 0], "the world": [32706, 32829], "world these": [65535, 0], "these very": [65535, 0], "very eyes": [65535, 0], "eyes had": [65535, 0], "had looked": [65535, 0], "county court": [65535, 0], "court house": [65535, 0], "house which": [65535, 0], "was said": [65535, 0], "to have": [65535, 0], "tin roof": [65535, 0], "roof the": [65535, 0], "the awe": [65535, 0], "awe which": [65535, 0], "which these": [65535, 0], "these reflections": [65535, 0], "reflections inspired": [65535, 0], "inspired was": [65535, 0], "was attested": [65535, 0], "attested by": [65535, 0], "the impressive": [65535, 0], "impressive silence": [65535, 0], "silence and": [65535, 0], "the ranks": [65535, 0], "ranks of": [65535, 0], "of staring": [65535, 0], "staring eyes": [65535, 0], "eyes this": [65535, 0], "great judge": [65535, 0], "judge thatcher": [65535, 0], "thatcher brother": [65535, 0], "brother of": [65535, 0], "of their": [21790, 43745], "their own": [65535, 0], "own lawyer": [65535, 0], "lawyer jeff": [65535, 0], "thatcher immediately": [65535, 0], "immediately went": [65535, 0], "went forward": [65535, 0], "forward to": [65535, 0], "be familiar": [65535, 0], "familiar with": [65535, 0], "great man": [65535, 0], "be envied": [65535, 0], "envied by": [65535, 0], "school it": [65535, 0], "it would": [32706, 32829], "have been": [65535, 0], "been music": [65535, 0], "music to": [65535, 0], "soul to": [65535, 0], "hear the": [65535, 0], "the whisperings": [65535, 0], "whisperings look": [65535, 0], "him jim": [65535, 0], "jim he's": [65535, 0], "he's a": [43635, 21900], "going up": [65535, 0], "up there": [65535, 0], "there say": [65535, 0], "say look": [65535, 0], "look he's": [65535, 0], "to shake": [65535, 0], "shake hands": [65535, 0], "hands with": [43635, 21900], "is shaking": [65535, 0], "shaking hands": [65535, 0], "by jings": [65535, 0], "jings don't": [65535, 0], "was jeff": [65535, 0], "jeff mr": [65535, 0], "walters fell": [65535, 0], "to showing": [65535, 0], "of official": [65535, 0], "official bustlings": [65535, 0], "bustlings and": [65535, 0], "and activities": [65535, 0], "activities giving": [65535, 0], "giving orders": [65535, 0], "orders delivering": [65535, 0], "delivering judgments": [65535, 0], "judgments discharging": [65535, 0], "discharging directions": [65535, 0], "directions here": [65535, 0], "here there": [65535, 0], "there everywhere": [65535, 0], "everywhere that": [65535, 0], "find a": [65535, 0], "a target": [65535, 0], "target the": [65535, 0], "the librarian": [65535, 0], "librarian showed": [65535, 0], "showed off": [65535, 0], "off running": [65535, 0], "running hither": [65535, 0], "hither and": [32706, 32829], "and thither": [65535, 0], "thither with": [65535, 0], "arms full": [65535, 0], "of books": [65535, 0], "books and": [65535, 0], "and making": [65535, 0], "a deal": [65535, 0], "deal of": [65535, 0], "the splutter": [65535, 0], "splutter and": [65535, 0], "and fuss": [65535, 0], "fuss that": [65535, 0], "that insect": [65535, 0], "insect authority": [65535, 0], "authority delights": [65535, 0], "delights in": [65535, 0], "young lady": [65535, 0], "lady teachers": [65535, 0], "teachers showed": [65535, 0], "off bending": [65535, 0], "bending sweetly": [65535, 0], "sweetly over": [65535, 0], "over pupils": [65535, 0], "pupils that": [65535, 0], "were lately": [65535, 0], "lately being": [65535, 0], "being boxed": [65535, 0], "boxed lifting": [65535, 0], "lifting pretty": [65535, 0], "pretty warning": [65535, 0], "warning fingers": [65535, 0], "fingers at": [65535, 0], "at bad": [65535, 0], "bad little": [65535, 0], "and patting": [65535, 0], "patting good": [65535, 0], "good ones": [65535, 0], "ones lovingly": [65535, 0], "lovingly the": [65535, 0], "young gentlemen": [65535, 0], "gentlemen teachers": [65535, 0], "with small": [65535, 0], "small scoldings": [65535, 0], "scoldings and": [65535, 0], "other little": [65535, 0], "little displays": [65535, 0], "displays of": [65535, 0], "of authority": [65535, 0], "authority and": [65535, 0], "and fine": [65535, 0], "fine attention": [65535, 0], "to discipline": [65535, 0], "discipline and": [65535, 0], "most of": [65535, 0], "the teachers": [65535, 0], "teachers of": [65535, 0], "of both": [65535, 0], "both sexes": [65535, 0], "sexes found": [65535, 0], "found business": [65535, 0], "business up": [65535, 0], "the library": [65535, 0], "library by": [65535, 0], "pulpit and": [65535, 0], "was business": [65535, 0], "business that": [65535, 0], "that frequently": [65535, 0], "frequently had": [65535, 0], "done over": [65535, 0], "over again": [65535, 0], "again two": [65535, 0], "times with": [65535, 0], "with much": [65535, 0], "much seeming": [65535, 0], "seeming vexation": [65535, 0], "vexation the": [65535, 0], "little girls": [65535, 0], "girls showed": [65535, 0], "in various": [65535, 0], "various ways": [65535, 0], "ways and": [65535, 0], "boys showed": [65535, 0], "such diligence": [65535, 0], "diligence that": [65535, 0], "air was": [65535, 0], "was thick": [65535, 0], "thick with": [65535, 0], "with paper": [65535, 0], "paper wads": [65535, 0], "wads and": [65535, 0], "the murmur": [65535, 0], "murmur of": [65535, 0], "of scufflings": [65535, 0], "scufflings and": [65535, 0], "it all": [65535, 0], "man sat": [65535, 0], "sat and": [65535, 0], "beamed a": [65535, 0], "a majestic": [65535, 0], "majestic judicial": [65535, 0], "judicial smile": [65535, 0], "smile upon": [65535, 0], "upon all": [65535, 0], "and warmed": [65535, 0], "warmed himself": [65535, 0], "himself in": [65535, 0], "sun of": [65535, 0], "own grandeur": [65535, 0], "grandeur for": [65535, 0], "off too": [65535, 0], "too there": [65535, 0], "one thing": [65535, 0], "thing wanting": [65535, 0], "wanting to": [65535, 0], "make mr": [65535, 0], "walters' ecstasy": [65535, 0], "ecstasy complete": [65535, 0], "complete and": [65535, 0], "to deliver": [65535, 0], "deliver a": [65535, 0], "bible prize": [65535, 0], "and exhibit": [65535, 0], "exhibit a": [65535, 0], "a prodigy": [65535, 0], "prodigy several": [65535, 0], "several pupils": [65535, 0], "pupils had": [65535, 0], "few yellow": [65535, 0], "tickets but": [65535, 0], "but none": [65535, 0], "none had": [65535, 0], "had enough": [65535, 0], "enough he": [65535, 0], "been around": [65535, 0], "around among": [65535, 0], "the star": [65535, 0], "star pupils": [65535, 0], "pupils inquiring": [65535, 0], "inquiring he": [65535, 0], "have given": [65535, 0], "given worlds": [65535, 0], "worlds now": [65535, 0], "now to": [32706, 32829], "have that": [65535, 0], "that german": [65535, 0], "german lad": [65535, 0], "lad back": [65535, 0], "back again": [65535, 0], "again with": [65535, 0], "a sound": [65535, 0], "sound mind": [65535, 0], "now at": [32706, 32829], "this moment": [65535, 0], "moment when": [65535, 0], "when hope": [65535, 0], "was dead": [65535, 0], "dead tom": [65535, 0], "sawyer came": [65535, 0], "came forward": [65535, 0], "forward with": [65535, 0], "with nine": [65535, 0], "nine yellow": [65535, 0], "tickets nine": [65535, 0], "nine red": [65535, 0], "and ten": [65535, 0], "ones and": [65535, 0], "and demanded": [65535, 0], "demanded a": [65535, 0], "bible this": [65535, 0], "a thunderbolt": [65535, 0], "thunderbolt out": [65535, 0], "a clear": [65535, 0], "clear sky": [65535, 0], "sky walters": [65535, 0], "not expecting": [65535, 0], "expecting an": [65535, 0], "an application": [65535, 0], "application from": [65535, 0], "from this": [65535, 0], "this source": [65535, 0], "source for": [65535, 0], "next ten": [65535, 0], "ten years": [65535, 0], "years but": [65535, 0], "no getting": [65535, 0], "getting around": [65535, 0], "it here": [65535, 0], "here were": [65535, 0], "were the": [65535, 0], "the certified": [65535, 0], "certified checks": [65535, 0], "checks and": [65535, 0], "were good": [65535, 0], "for their": [21790, 43745], "their face": [65535, 0], "face tom": [65535, 0], "was therefore": [65535, 0], "therefore elevated": [65535, 0], "elevated to": [65535, 0], "place with": [65535, 0], "the judge": [65535, 0], "judge and": [65535, 0], "other elect": [65535, 0], "elect and": [65535, 0], "great news": [65535, 0], "news was": [65535, 0], "was announced": [65535, 0], "announced from": [65535, 0], "from headquarters": [65535, 0], "headquarters it": [65535, 0], "most stunning": [65535, 0], "stunning surprise": [65535, 0], "surprise of": [65535, 0], "the decade": [65535, 0], "decade and": [65535, 0], "so profound": [65535, 0], "profound was": [65535, 0], "the sensation": [65535, 0], "sensation that": [65535, 0], "it lifted": [65535, 0], "lifted the": [65535, 0], "new hero": [65535, 0], "hero up": [65535, 0], "the judicial": [65535, 0], "judicial one's": [65535, 0], "one's altitude": [65535, 0], "altitude and": [65535, 0], "school had": [65535, 0], "had two": [65535, 0], "two marvels": [65535, 0], "marvels to": [65535, 0], "to gaze": [65535, 0], "gaze upon": [65535, 0], "upon in": [65535, 0], "in place": [65535, 0], "place of": [32706, 32829], "one the": [65535, 0], "were all": [65535, 0], "all eaten": [65535, 0], "eaten up": [65535, 0], "up with": [65535, 0], "with envy": [65535, 0], "envy but": [65535, 0], "but those": [65535, 0], "those that": [32706, 32829], "that suffered": [65535, 0], "suffered the": [65535, 0], "the bitterest": [65535, 0], "bitterest pangs": [65535, 0], "pangs were": [65535, 0], "were those": [65535, 0], "those who": [65535, 0], "who perceived": [65535, 0], "perceived too": [65535, 0], "too late": [21790, 43745], "that they": [65535, 0], "they themselves": [65535, 0], "themselves had": [65535, 0], "had contributed": [65535, 0], "contributed to": [65535, 0], "this hated": [65535, 0], "hated splendor": [65535, 0], "splendor by": [65535, 0], "by trading": [65535, 0], "trading tickets": [65535, 0], "tickets to": [65535, 0], "tom for": [65535, 0], "the wealth": [65535, 0], "had amassed": [65535, 0], "amassed in": [65535, 0], "in selling": [65535, 0], "selling whitewashing": [65535, 0], "whitewashing privileges": [65535, 0], "privileges these": [65535, 0], "these despised": [65535, 0], "despised themselves": [65535, 0], "themselves as": [65535, 0], "as being": [65535, 0], "being the": [65535, 0], "the dupes": [65535, 0], "dupes of": [65535, 0], "a wily": [65535, 0], "wily fraud": [65535, 0], "fraud a": [65535, 0], "a guileful": [65535, 0], "guileful snake": [65535, 0], "snake in": [65535, 0], "the grass": [65535, 0], "grass the": [65535, 0], "prize was": [65535, 0], "was delivered": [65535, 0], "delivered to": [65535, 0], "tom with": [65535, 0], "with as": [65535, 0], "much effusion": [65535, 0], "effusion as": [65535, 0], "superintendent could": [65535, 0], "could pump": [65535, 0], "pump up": [65535, 0], "up under": [65535, 0], "the circumstances": [65535, 0], "circumstances but": [65535, 0], "it lacked": [65535, 0], "lacked somewhat": [65535, 0], "somewhat of": [65535, 0], "the true": [65535, 0], "true gush": [65535, 0], "gush for": [65535, 0], "poor fellow's": [65535, 0], "fellow's instinct": [65535, 0], "instinct taught": [65535, 0], "taught him": [65535, 0], "mystery here": [65535, 0], "here that": [65535, 0], "that could": [65535, 0], "not well": [65535, 0], "well bear": [65535, 0], "bear the": [65535, 0], "light perhaps": [65535, 0], "perhaps it": [65535, 0], "simply preposterous": [65535, 0], "preposterous that": [65535, 0], "that this": [43635, 21900], "had warehoused": [65535, 0], "warehoused two": [65535, 0], "thousand sheaves": [65535, 0], "sheaves of": [65535, 0], "scriptural wisdom": [65535, 0], "wisdom on": [65535, 0], "his premises": [65535, 0], "premises a": [65535, 0], "a dozen": [65535, 0], "dozen would": [65535, 0], "would strain": [65535, 0], "strain his": [65535, 0], "his capacity": [65535, 0], "capacity without": [65535, 0], "without a": [16338, 49197], "a doubt": [65535, 0], "doubt amy": [65535, 0], "amy lawrence": [65535, 0], "lawrence was": [65535, 0], "was proud": [65535, 0], "proud and": [65535, 0], "and glad": [65535, 0], "glad and": [65535, 0], "she tried": [65535, 0], "make tom": [65535, 0], "tom see": [65535, 0], "wouldn't look": [65535, 0], "look she": [65535, 0], "she wondered": [65535, 0], "wondered then": [65535, 0], "was just": [65535, 0], "a grain": [65535, 0], "grain troubled": [65535, 0], "troubled next": [65535, 0], "next a": [65535, 0], "a dim": [65535, 0], "dim suspicion": [65535, 0], "suspicion came": [65535, 0], "went came": [65535, 0], "came again": [65535, 0], "again she": [65535, 0], "she watched": [65535, 0], "watched a": [65535, 0], "a furtive": [65535, 0], "furtive glance": [65535, 0], "glance told": [65535, 0], "told her": [65535, 0], "her worlds": [65535, 0], "worlds and": [65535, 0], "then her": [65535, 0], "heart broke": [65535, 0], "broke and": [65535, 0], "was jealous": [65535, 0], "jealous and": [65535, 0], "and angry": [65535, 0], "angry and": [65535, 0], "the tears": [65535, 0], "tears came": [65535, 0], "she hated": [65535, 0], "hated everybody": [65535, 0], "everybody tom": [65535, 0], "tom most": [65535, 0], "all she": [65535, 0], "she thought": [65535, 0], "thought tom": [65535, 0], "was introduced": [65535, 0], "introduced to": [65535, 0], "judge but": [65535, 0], "but his": [43635, 21900], "his tongue": [65535, 0], "tongue was": [65535, 0], "was tied": [65535, 0], "tied his": [65535, 0], "his breath": [65535, 0], "breath would": [65535, 0], "would hardly": [65535, 0], "hardly come": [65535, 0], "come his": [65535, 0], "heart quaked": [65535, 0], "quaked partly": [65535, 0], "partly because": [65535, 0], "because of": [65535, 0], "the awful": [65535, 0], "awful greatness": [65535, 0], "greatness of": [65535, 0], "the man": [8165, 57370], "but mainly": [65535, 0], "mainly because": [65535, 0], "her parent": [65535, 0], "parent he": [65535, 0], "have liked": [65535, 0], "liked to": [65535, 0], "to fall": [65535, 0], "fall down": [65535, 0], "and worship": [65535, 0], "worship him": [65535, 0], "it were": [32706, 32829], "dark the": [65535, 0], "judge put": [65535, 0], "put his": [65535, 0], "hand on": [65535, 0], "on tom's": [65535, 0], "tom's head": [65535, 0], "called him": [65535, 0], "fine little": [65535, 0], "little man": [65535, 0], "and asked": [65535, 0], "him what": [65535, 0], "what his": [65535, 0], "boy stammered": [65535, 0], "stammered gasped": [65535, 0], "gasped and": [65535, 0], "oh no": [65535, 0], "no not": [32706, 32829], "not tom": [65535, 0], "is thomas": [65535, 0], "thomas ah": [65535, 0], "ah that's": [65535, 0], "i thought": [21790, 43745], "thought there": [65535, 0], "it maybe": [65535, 0], "maybe that's": [65535, 0], "that's very": [65535, 0], "well but": [32706, 32829], "but you've": [65535, 0], "you've another": [65535, 0], "another one": [65535, 0], "one i": [65535, 0], "i daresay": [65535, 0], "daresay and": [65535, 0], "and you'll": [32706, 32829], "tell it": [65535, 0], "me won't": [65535, 0], "tell the": [65535, 0], "the gentleman": [65535, 0], "gentleman your": [65535, 0], "your other": [65535, 0], "other name": [65535, 0], "name thomas": [65535, 0], "thomas said": [65535, 0], "said walters": [65535, 0], "walters and": [65535, 0], "say sir": [21790, 43745], "mustn't forget": [65535, 0], "forget your": [65535, 0], "your manners": [65535, 0], "manners thomas": [65535, 0], "sawyer sir": [65535, 0], "sir that's": [65535, 0], "it that's": [65535, 0], "boy fine": [65535, 0], "fine boy": [65535, 0], "fine manly": [65535, 0], "manly little": [65535, 0], "little fellow": [65535, 0], "fellow two": [65535, 0], "verses is": [65535, 0], "many very": [65535, 0], "very very": [65535, 0], "very great": [65535, 0], "many and": [65535, 0], "you never": [65535, 0], "never can": [65535, 0], "can be": [21790, 43745], "be sorry": [65535, 0], "sorry for": [65535, 0], "trouble you": [32706, 32829], "you took": [65535, 0], "took to": [65535, 0], "to learn": [65535, 0], "learn them": [65535, 0], "for knowledge": [65535, 0], "knowledge is": [65535, 0], "is worth": [65535, 0], "worth more": [65535, 0], "than anything": [65535, 0], "anything there": [65535, 0], "is in": [16338, 49197], "world it's": [65535, 0], "it's what": [65535, 0], "what makes": [65535, 0], "makes great": [65535, 0], "great men": [65535, 0], "and good": [21790, 43745], "good men": [65535, 0], "men you'll": [65535, 0], "you'll be": [65535, 0], "good man": [65535, 0], "man yourself": [65535, 0], "yourself some": [65535, 0], "some day": [65535, 0], "day thomas": [65535, 0], "thomas and": [65535, 0], "then you'll": [65535, 0], "you'll look": [65535, 0], "look back": [65535, 0], "all owing": [65535, 0], "owing to": [65535, 0], "the precious": [65535, 0], "precious sunday": [65535, 0], "school privileges": [65535, 0], "privileges of": [65535, 0], "my boyhood": [65535, 0], "boyhood it's": [65535, 0], "my dear": [65535, 0], "dear teachers": [65535, 0], "teachers that": [65535, 0], "that taught": [65535, 0], "taught me": [65535, 0], "learn it's": [65535, 0], "good superintendent": [65535, 0], "superintendent who": [65535, 0], "who encouraged": [65535, 0], "encouraged me": [65535, 0], "and watched": [65535, 0], "watched over": [65535, 0], "over me": [65535, 0], "gave me": [65535, 0], "beautiful bible": [65535, 0], "bible a": [65535, 0], "a splendid": [65535, 0], "splendid elegant": [65535, 0], "elegant bible": [65535, 0], "bible to": [65535, 0], "keep and": [65535, 0], "and have": [65535, 0], "have it": [65535, 0], "all for": [32706, 32829], "for my": [4665, 60870], "own always": [65535, 0], "always it's": [65535, 0], "to right": [65535, 0], "right bringing": [65535, 0], "bringing up": [65535, 0], "is what": [65535, 0], "will say": [65535, 0], "say thomas": [65535, 0], "wouldn't take": [65535, 0], "take any": [65535, 0], "any money": [65535, 0], "money for": [21790, 43745], "for those": [65535, 0], "those two": [65535, 0], "verses no": [65535, 0], "no indeed": [65535, 0], "indeed you": [65535, 0], "wouldn't and": [65535, 0], "mind telling": [65535, 0], "telling me": [65535, 0], "this lady": [65535, 0], "lady some": [65535, 0], "things you've": [65535, 0], "you've learned": [65535, 0], "learned no": [65535, 0], "know you": [21790, 43745], "wouldn't for": [65535, 0], "for we": [32706, 32829], "we are": [32706, 32829], "are proud": [65535, 0], "proud of": [65535, 0], "of little": [65535, 0], "boys that": [65535, 0], "that learn": [65535, 0], "learn now": [65535, 0], "now no": [65535, 0], "doubt you": [65535, 0], "the names": [65535, 0], "names of": [65535, 0], "the twelve": [65535, 0], "twelve disciples": [65535, 0], "disciples won't": [65535, 0], "tell us": [65535, 0], "us the": [65535, 0], "first two": [65535, 0], "two that": [65535, 0], "were appointed": [65535, 0], "appointed tom": [65535, 0], "was tugging": [65535, 0], "tugging at": [65535, 0], "a button": [65535, 0], "button hole": [65535, 0], "and looking": [65535, 0], "looking sheepish": [65535, 0], "sheepish he": [65535, 0], "he blushed": [65535, 0], "blushed now": [65535, 0], "now and": [49105, 16430], "his eyes": [65535, 0], "eyes fell": [65535, 0], "fell mr": [65535, 0], "walters' heart": [65535, 0], "heart sank": [65535, 0], "sank within": [65535, 0], "himself it": [65535, 0], "not possible": [65535, 0], "boy can": [65535, 0], "can answer": [65535, 0], "the simplest": [65535, 0], "simplest question": [65535, 0], "question why": [65535, 0], "why did": [65535, 0], "judge ask": [65535, 0], "ask him": [65535, 0], "him yet": [65535, 0], "yet he": [32706, 32829], "felt obliged": [65535, 0], "speak up": [65535, 0], "say answer": [65535, 0], "gentleman thomas": [65535, 0], "thomas don't": [65535, 0], "don't be": [65535, 0], "be afraid": [65535, 0], "afraid tom": [65535, 0], "tom still": [65535, 0], "still hung": [65535, 0], "hung fire": [65535, 0], "fire now": [65535, 0], "now i": [32706, 32829], "know you'll": [65535, 0], "me said": [65535, 0], "said the": [65535, 0], "lady the": [65535, 0], "two disciples": [65535, 0], "disciples were": [65535, 0], "were david": [65535, 0], "david and": [65535, 0], "and goliath": [65535, 0], "goliath let": [65535, 0], "let us": [65535, 0], "us draw": [65535, 0], "the curtain": [65535, 0], "curtain of": [65535, 0], "of charity": [65535, 0], "charity over": [65535, 0], "the scene": [65535, 0], "the sun rose": [65535, 0], "sun rose upon": [65535, 0], "rose upon a": [65535, 0], "upon a tranquil": [65535, 0], "a tranquil world": [65535, 0], "tranquil world and": [65535, 0], "world and beamed": [65535, 0], "and beamed down": [65535, 0], "beamed down upon": [65535, 0], "upon the peaceful": [65535, 0], "the peaceful village": [65535, 0], "peaceful village like": [65535, 0], "village like a": [65535, 0], "like a benediction": [65535, 0], "a benediction breakfast": [65535, 0], "benediction breakfast over": [65535, 0], "breakfast over aunt": [65535, 0], "over aunt polly": [65535, 0], "aunt polly had": [65535, 0], "polly had family": [65535, 0], "had family worship": [65535, 0], "family worship it": [65535, 0], "worship it began": [65535, 0], "it began with": [65535, 0], "began with a": [65535, 0], "with a prayer": [65535, 0], "a prayer built": [65535, 0], "prayer built from": [65535, 0], "built from the": [65535, 0], "from the ground": [65535, 0], "the ground up": [65535, 0], "ground up of": [65535, 0], "up of solid": [65535, 0], "of solid courses": [65535, 0], "solid courses of": [65535, 0], "courses of scriptural": [65535, 0], "of scriptural quotations": [65535, 0], "scriptural quotations welded": [65535, 0], "quotations welded together": [65535, 0], "welded together with": [65535, 0], "together with a": [65535, 0], "with a thin": [65535, 0], "a thin mortar": [65535, 0], "thin mortar of": [65535, 0], "mortar of originality": [65535, 0], "of originality and": [65535, 0], "originality and from": [65535, 0], "and from the": [32706, 32829], "from the summit": [65535, 0], "the summit of": [65535, 0], "summit of this": [65535, 0], "of this she": [65535, 0], "this she delivered": [65535, 0], "she delivered a": [65535, 0], "delivered a grim": [65535, 0], "a grim chapter": [65535, 0], "grim chapter of": [65535, 0], "chapter of the": [65535, 0], "of the mosaic": [65535, 0], "the mosaic law": [65535, 0], "mosaic law as": [65535, 0], "law as from": [65535, 0], "as from sinai": [65535, 0], "from sinai then": [65535, 0], "sinai then tom": [65535, 0], "then tom girded": [65535, 0], "tom girded up": [65535, 0], "girded up his": [65535, 0], "up his loins": [65535, 0], "his loins so": [65535, 0], "loins so to": [65535, 0], "so to speak": [65535, 0], "to speak and": [65535, 0], "speak and went": [65535, 0], "and went to": [65535, 0], "went to work": [65535, 0], "to work to": [65535, 0], "work to get": [65535, 0], "to get his": [65535, 0], "get his verses": [65535, 0], "his verses sid": [65535, 0], "verses sid had": [65535, 0], "sid had learned": [65535, 0], "had learned his": [65535, 0], "learned his lesson": [65535, 0], "his lesson days": [65535, 0], "lesson days before": [65535, 0], "days before tom": [65535, 0], "before tom bent": [65535, 0], "tom bent all": [65535, 0], "bent all his": [65535, 0], "all his energies": [65535, 0], "his energies to": [65535, 0], "energies to the": [65535, 0], "to the memorizing": [65535, 0], "the memorizing of": [65535, 0], "memorizing of five": [65535, 0], "of five verses": [65535, 0], "five verses and": [65535, 0], "verses and he": [65535, 0], "and he chose": [65535, 0], "he chose part": [65535, 0], "chose part of": [65535, 0], "the sermon on": [65535, 0], "sermon on the": [65535, 0], "on the mount": [65535, 0], "the mount because": [65535, 0], "mount because he": [65535, 0], "because he could": [65535, 0], "he could find": [65535, 0], "could find no": [32706, 32829], "find no verses": [65535, 0], "no verses that": [65535, 0], "verses that were": [65535, 0], "that were shorter": [65535, 0], "were shorter at": [65535, 0], "shorter at the": [65535, 0], "at the end": [65535, 0], "end of half": [65535, 0], "of half an": [65535, 0], "an hour tom": [65535, 0], "hour tom had": [65535, 0], "tom had a": [65535, 0], "had a vague": [65535, 0], "a vague general": [65535, 0], "vague general idea": [65535, 0], "general idea of": [65535, 0], "idea of his": [65535, 0], "of his lesson": [65535, 0], "his lesson but": [65535, 0], "lesson but no": [65535, 0], "but no more": [65535, 0], "no more for": [65535, 0], "more for his": [65535, 0], "for his mind": [65535, 0], "his mind was": [65535, 0], "mind was traversing": [65535, 0], "was traversing the": [65535, 0], "traversing the whole": [65535, 0], "the whole field": [65535, 0], "whole field of": [65535, 0], "field of human": [65535, 0], "of human thought": [65535, 0], "human thought and": [65535, 0], "thought and his": [65535, 0], "and his hands": [65535, 0], "his hands were": [65535, 0], "hands were busy": [65535, 0], "were busy with": [65535, 0], "busy with distracting": [65535, 0], "with distracting recreations": [65535, 0], "distracting recreations mary": [65535, 0], "recreations mary took": [65535, 0], "mary took his": [65535, 0], "took his book": [65535, 0], "his book to": [65535, 0], "book to hear": [65535, 0], "to hear him": [65535, 0], "hear him recite": [65535, 0], "him recite and": [65535, 0], "recite and he": [65535, 0], "and he tried": [65535, 0], "he tried to": [65535, 0], "tried to find": [65535, 0], "to find his": [65535, 0], "find his way": [65535, 0], "his way through": [65535, 0], "way through the": [65535, 0], "the fog blessed": [65535, 0], "fog blessed are": [65535, 0], "blessed are the": [65535, 0], "are the a": [65535, 0], "the a a": [65535, 0], "a a poor": [65535, 0], "a poor yes": [65535, 0], "poor yes poor": [65535, 0], "yes poor blessed": [65535, 0], "poor blessed are": [65535, 0], "are the poor": [65535, 0], "the poor a": [65535, 0], "poor a a": [65535, 0], "a a in": [65535, 0], "a in spirit": [65535, 0], "in spirit in": [65535, 0], "spirit in spirit": [65535, 0], "in spirit blessed": [65535, 0], "spirit blessed are": [65535, 0], "the poor in": [65535, 0], "poor in spirit": [65535, 0], "in spirit for": [65535, 0], "spirit for they": [65535, 0], "for they they": [65535, 0], "they they theirs": [65535, 0], "they theirs for": [65535, 0], "theirs for theirs": [65535, 0], "for theirs blessed": [65535, 0], "theirs blessed are": [65535, 0], "spirit for theirs": [65535, 0], "for theirs is": [65535, 0], "theirs is the": [65535, 0], "is the kingdom": [65535, 0], "the kingdom of": [65535, 0], "kingdom of heaven": [65535, 0], "of heaven blessed": [65535, 0], "heaven blessed are": [65535, 0], "blessed are they": [65535, 0], "are they that": [65535, 0], "they that mourn": [65535, 0], "that mourn for": [65535, 0], "mourn for they": [65535, 0], "they they sh": [65535, 0], "they sh for": [65535, 0], "sh for they": [65535, 0], "for they a": [65535, 0], "they a s": [65535, 0], "a s h": [65535, 0], "s h a": [65535, 0], "h a for": [65535, 0], "a for they": [65535, 0], "for they s": [65535, 0], "they s h": [65535, 0], "s h oh": [65535, 0], "h oh i": [65535, 0], "oh i don't": [65535, 0], "don't know what": [65535, 0], "know what it": [65535, 0], "it is shall": [65535, 0], "is shall oh": [65535, 0], "shall oh shall": [65535, 0], "oh shall for": [65535, 0], "shall for they": [65535, 0], "for they shall": [65535, 0], "they shall for": [65535, 0], "they shall a": [65535, 0], "shall a a": [65535, 0], "a a shall": [65535, 0], "a shall mourn": [65535, 0], "shall mourn a": [65535, 0], "mourn a a": [65535, 0], "a a blessed": [65535, 0], "a blessed are": [65535, 0], "they that shall": [65535, 0], "that shall they": [65535, 0], "shall they that": [65535, 0], "they that a": [65535, 0], "that a they": [65535, 0], "a they that": [65535, 0], "that shall mourn": [65535, 0], "shall mourn for": [65535, 0], "shall a shall": [65535, 0], "a shall what": [65535, 0], "shall what why": [65535, 0], "what why don't": [65535, 0], "tell me mary": [65535, 0], "me mary what": [65535, 0], "mary what do": [65535, 0], "do you want": [65535, 0], "want to be": [65535, 0], "to be so": [32706, 32829], "be so mean": [65535, 0], "so mean for": [65535, 0], "mean for oh": [65535, 0], "for oh tom": [65535, 0], "tom you poor": [65535, 0], "you poor thick": [65535, 0], "poor thick headed": [65535, 0], "thick headed thing": [65535, 0], "headed thing i'm": [65535, 0], "thing i'm not": [65535, 0], "i'm not teasing": [65535, 0], "not teasing you": [65535, 0], "teasing you i": [65535, 0], "you i wouldn't": [65535, 0], "i wouldn't do": [65535, 0], "wouldn't do that": [65535, 0], "do that you": [65535, 0], "that you must": [65535, 0], "you must go": [65535, 0], "must go and": [65535, 0], "go and learn": [65535, 0], "and learn it": [65535, 0], "learn it again": [65535, 0], "it again don't": [65535, 0], "again don't you": [65535, 0], "don't you be": [65535, 0], "you be discouraged": [65535, 0], "be discouraged tom": [65535, 0], "discouraged tom you'll": [65535, 0], "tom you'll manage": [65535, 0], "you'll manage it": [65535, 0], "manage it and": [65535, 0], "it and if": [65535, 0], "and if you": [32706, 32829], "if you do": [65535, 0], "you do i'll": [65535, 0], "do i'll give": [65535, 0], "give you something": [65535, 0], "you something ever": [65535, 0], "something ever so": [65535, 0], "so nice there": [65535, 0], "nice there now": [65535, 0], "there now that's": [65535, 0], "now that's a": [65535, 0], "that's a good": [65535, 0], "a good boy": [65535, 0], "good boy all": [65535, 0], "boy all right": [65535, 0], "all right what": [65535, 0], "right what is": [65535, 0], "is it mary": [65535, 0], "it mary tell": [65535, 0], "mary tell me": [65535, 0], "tell me what": [65535, 0], "me what it": [65535, 0], "it is never": [65535, 0], "is never you": [65535, 0], "you mind tom": [65535, 0], "mind tom you": [65535, 0], "tom you know": [65535, 0], "you know if": [65535, 0], "know if i": [65535, 0], "if i say": [65535, 0], "i say it's": [65535, 0], "say it's nice": [65535, 0], "it's nice it": [65535, 0], "nice it is": [65535, 0], "it is nice": [65535, 0], "is nice you": [65535, 0], "nice you bet": [65535, 0], "you bet you": [65535, 0], "bet you that's": [65535, 0], "you that's so": [65535, 0], "that's so mary": [65535, 0], "so mary all": [65535, 0], "mary all right": [65535, 0], "all right i'll": [65535, 0], "right i'll tackle": [65535, 0], "i'll tackle it": [65535, 0], "tackle it again": [65535, 0], "it again and": [65535, 0], "again and he": [65535, 0], "and he did": [65535, 0], "he did tackle": [65535, 0], "did tackle it": [65535, 0], "again and under": [65535, 0], "and under the": [65535, 0], "under the double": [65535, 0], "the double pressure": [65535, 0], "double pressure of": [65535, 0], "pressure of curiosity": [65535, 0], "of curiosity and": [65535, 0], "curiosity and prospective": [65535, 0], "and prospective gain": [65535, 0], "prospective gain he": [65535, 0], "gain he did": [65535, 0], "he did it": [65535, 0], "did it with": [65535, 0], "it with such": [65535, 0], "with such spirit": [65535, 0], "such spirit that": [65535, 0], "spirit that he": [65535, 0], "that he accomplished": [65535, 0], "he accomplished a": [65535, 0], "accomplished a shining": [65535, 0], "a shining success": [65535, 0], "shining success mary": [65535, 0], "success mary gave": [65535, 0], "mary gave him": [65535, 0], "gave him a": [65535, 0], "him a brand": [65535, 0], "a brand new": [65535, 0], "brand new barlow": [65535, 0], "new barlow knife": [65535, 0], "barlow knife worth": [65535, 0], "knife worth twelve": [65535, 0], "worth twelve and": [65535, 0], "twelve and a": [65535, 0], "and a half": [65535, 0], "a half cents": [65535, 0], "half cents and": [65535, 0], "cents and the": [65535, 0], "and the convulsion": [65535, 0], "the convulsion of": [65535, 0], "convulsion of delight": [65535, 0], "of delight that": [65535, 0], "delight that swept": [65535, 0], "that swept his": [65535, 0], "swept his system": [65535, 0], "his system shook": [65535, 0], "system shook him": [65535, 0], "shook him to": [65535, 0], "him to his": [32706, 32829], "to his foundations": [65535, 0], "his foundations true": [65535, 0], "foundations true the": [65535, 0], "true the knife": [65535, 0], "the knife would": [65535, 0], "knife would not": [65535, 0], "would not cut": [65535, 0], "not cut anything": [65535, 0], "cut anything but": [65535, 0], "anything but it": [65535, 0], "was a sure": [65535, 0], "a sure enough": [65535, 0], "sure enough barlow": [65535, 0], "enough barlow and": [65535, 0], "barlow and there": [65535, 0], "and there was": [65535, 0], "there was inconceivable": [65535, 0], "was inconceivable grandeur": [65535, 0], "inconceivable grandeur in": [65535, 0], "grandeur in that": [65535, 0], "in that though": [65535, 0], "that though where": [65535, 0], "though where the": [65535, 0], "where the western": [65535, 0], "the western boys": [65535, 0], "western boys ever": [65535, 0], "boys ever got": [65535, 0], "ever got the": [65535, 0], "got the idea": [65535, 0], "the idea that": [65535, 0], "idea that such": [65535, 0], "that such a": [65535, 0], "such a weapon": [65535, 0], "a weapon could": [65535, 0], "weapon could possibly": [65535, 0], "could possibly be": [65535, 0], "possibly be counterfeited": [65535, 0], "be counterfeited to": [65535, 0], "counterfeited to its": [65535, 0], "to its injury": [65535, 0], "its injury is": [65535, 0], "injury is an": [65535, 0], "is an imposing": [65535, 0], "an imposing mystery": [65535, 0], "imposing mystery and": [65535, 0], "mystery and will": [65535, 0], "and will always": [65535, 0], "will always remain": [65535, 0], "always remain so": [65535, 0], "remain so perhaps": [65535, 0], "so perhaps tom": [65535, 0], "perhaps tom contrived": [65535, 0], "tom contrived to": [65535, 0], "contrived to scarify": [65535, 0], "to scarify the": [65535, 0], "scarify the cupboard": [65535, 0], "the cupboard with": [65535, 0], "cupboard with it": [65535, 0], "with it and": [32706, 32829], "it and was": [65535, 0], "and was arranging": [65535, 0], "was arranging to": [65535, 0], "arranging to begin": [65535, 0], "to begin on": [65535, 0], "begin on the": [65535, 0], "on the bureau": [65535, 0], "the bureau when": [65535, 0], "bureau when he": [65535, 0], "he was called": [65535, 0], "was called off": [65535, 0], "called off to": [65535, 0], "off to dress": [65535, 0], "to dress for": [65535, 0], "dress for sunday": [65535, 0], "for sunday school": [65535, 0], "sunday school mary": [65535, 0], "school mary gave": [65535, 0], "him a tin": [65535, 0], "a tin basin": [65535, 0], "tin basin of": [65535, 0], "basin of water": [65535, 0], "of water and": [65535, 0], "water and a": [65535, 0], "and a piece": [65535, 0], "piece of soap": [65535, 0], "of soap and": [65535, 0], "soap and he": [65535, 0], "and he went": [65535, 0], "he went outside": [65535, 0], "went outside the": [65535, 0], "outside the door": [65535, 0], "the door and": [65535, 0], "door and set": [65535, 0], "and set the": [65535, 0], "set the basin": [65535, 0], "the basin on": [65535, 0], "basin on a": [65535, 0], "on a little": [65535, 0], "a little bench": [65535, 0], "little bench there": [65535, 0], "bench there then": [65535, 0], "there then he": [65535, 0], "then he dipped": [65535, 0], "he dipped the": [65535, 0], "dipped the soap": [65535, 0], "the soap in": [65535, 0], "soap in the": [65535, 0], "in the water": [65535, 0], "the water and": [65535, 0], "water and laid": [65535, 0], "and laid it": [65535, 0], "laid it down": [65535, 0], "it down turned": [65535, 0], "down turned up": [65535, 0], "up his sleeves": [65535, 0], "his sleeves poured": [65535, 0], "sleeves poured out": [65535, 0], "poured out the": [65535, 0], "out the water": [65535, 0], "the water on": [65535, 0], "water on the": [65535, 0], "on the ground": [65535, 0], "the ground gently": [65535, 0], "ground gently and": [65535, 0], "gently and then": [65535, 0], "and then entered": [65535, 0], "then entered the": [65535, 0], "entered the kitchen": [65535, 0], "the kitchen and": [65535, 0], "kitchen and began": [65535, 0], "began to wipe": [65535, 0], "to wipe his": [65535, 0], "wipe his face": [65535, 0], "his face diligently": [65535, 0], "face diligently on": [65535, 0], "diligently on the": [65535, 0], "on the towel": [65535, 0], "the towel behind": [65535, 0], "towel behind the": [65535, 0], "behind the door": [65535, 0], "the door but": [65535, 0], "door but mary": [65535, 0], "but mary removed": [65535, 0], "mary removed the": [65535, 0], "removed the towel": [65535, 0], "the towel and": [65535, 0], "towel and said": [65535, 0], "said now ain't": [65535, 0], "now ain't you": [65535, 0], "ain't you ashamed": [65535, 0], "you ashamed tom": [65535, 0], "ashamed tom you": [65535, 0], "tom you mustn't": [65535, 0], "you mustn't be": [65535, 0], "mustn't be so": [65535, 0], "be so bad": [65535, 0], "so bad water": [65535, 0], "bad water won't": [65535, 0], "water won't hurt": [65535, 0], "won't hurt you": [65535, 0], "hurt you tom": [65535, 0], "you tom was": [65535, 0], "tom was a": [65535, 0], "was a trifle": [65535, 0], "a trifle disconcerted": [65535, 0], "trifle disconcerted the": [65535, 0], "disconcerted the basin": [65535, 0], "the basin was": [65535, 0], "basin was refilled": [65535, 0], "was refilled and": [65535, 0], "refilled and this": [65535, 0], "and this time": [65535, 0], "time he stood": [65535, 0], "he stood over": [65535, 0], "stood over it": [65535, 0], "over it a": [65535, 0], "it a little": [65535, 0], "little while gathering": [65535, 0], "while gathering resolution": [65535, 0], "gathering resolution took": [65535, 0], "resolution took in": [65535, 0], "took in a": [65535, 0], "in a big": [65535, 0], "a big breath": [65535, 0], "big breath and": [65535, 0], "breath and began": [65535, 0], "and began when": [65535, 0], "began when he": [65535, 0], "when he entered": [65535, 0], "he entered the": [65535, 0], "the kitchen presently": [65535, 0], "kitchen presently with": [65535, 0], "presently with both": [65535, 0], "with both eyes": [65535, 0], "both eyes shut": [65535, 0], "shut and groping": [65535, 0], "and groping for": [65535, 0], "groping for the": [65535, 0], "for the towel": [65535, 0], "the towel with": [65535, 0], "towel with his": [65535, 0], "with his hands": [65535, 0], "his hands an": [65535, 0], "hands an honorable": [65535, 0], "an honorable testimony": [65535, 0], "honorable testimony of": [65535, 0], "testimony of suds": [65535, 0], "of suds and": [65535, 0], "suds and water": [65535, 0], "and water was": [65535, 0], "water was dripping": [65535, 0], "was dripping from": [65535, 0], "dripping from his": [65535, 0], "from his face": [65535, 0], "face but when": [65535, 0], "but when he": [65535, 0], "when he emerged": [65535, 0], "he emerged from": [65535, 0], "emerged from the": [65535, 0], "from the towel": [65535, 0], "the towel he": [65535, 0], "towel he was": [65535, 0], "was not yet": [65535, 0], "not yet satisfactory": [65535, 0], "yet satisfactory for": [65535, 0], "satisfactory for the": [65535, 0], "for the clean": [65535, 0], "the clean territory": [65535, 0], "clean territory stopped": [65535, 0], "territory stopped short": [65535, 0], "stopped short at": [65535, 0], "short at his": [65535, 0], "at his chin": [65535, 0], "his chin and": [65535, 0], "chin and his": [65535, 0], "and his jaws": [65535, 0], "his jaws like": [65535, 0], "jaws like a": [65535, 0], "like a mask": [65535, 0], "a mask below": [65535, 0], "mask below and": [65535, 0], "below and beyond": [65535, 0], "and beyond this": [65535, 0], "beyond this line": [65535, 0], "this line there": [65535, 0], "line there was": [65535, 0], "was a dark": [65535, 0], "a dark expanse": [65535, 0], "dark expanse of": [65535, 0], "expanse of unirrigated": [65535, 0], "of unirrigated soil": [65535, 0], "unirrigated soil that": [65535, 0], "soil that spread": [65535, 0], "that spread downward": [65535, 0], "spread downward in": [65535, 0], "downward in front": [65535, 0], "in front and": [65535, 0], "front and backward": [65535, 0], "and backward around": [65535, 0], "backward around his": [65535, 0], "around his neck": [65535, 0], "his neck mary": [65535, 0], "neck mary took": [65535, 0], "mary took him": [65535, 0], "took him in": [65535, 0], "him in hand": [65535, 0], "in hand and": [65535, 0], "hand and when": [65535, 0], "when she was": [65535, 0], "she was done": [65535, 0], "was done with": [65535, 0], "done with him": [65535, 0], "with him he": [65535, 0], "was a man": [65535, 0], "a man and": [65535, 0], "man and a": [65535, 0], "and a brother": [32706, 32829], "a brother without": [65535, 0], "brother without distinction": [65535, 0], "without distinction of": [65535, 0], "distinction of color": [65535, 0], "of color and": [65535, 0], "color and his": [65535, 0], "and his saturated": [65535, 0], "his saturated hair": [65535, 0], "saturated hair was": [65535, 0], "hair was neatly": [65535, 0], "was neatly brushed": [65535, 0], "neatly brushed and": [65535, 0], "brushed and its": [65535, 0], "and its short": [65535, 0], "its short curls": [65535, 0], "short curls wrought": [65535, 0], "curls wrought into": [65535, 0], "wrought into a": [65535, 0], "into a dainty": [65535, 0], "a dainty and": [65535, 0], "dainty and symmetrical": [65535, 0], "and symmetrical general": [65535, 0], "symmetrical general effect": [65535, 0], "general effect he": [65535, 0], "effect he privately": [65535, 0], "he privately smoothed": [65535, 0], "privately smoothed out": [65535, 0], "smoothed out the": [65535, 0], "out the curls": [65535, 0], "the curls with": [65535, 0], "curls with labor": [65535, 0], "with labor and": [65535, 0], "labor and difficulty": [65535, 0], "and difficulty and": [65535, 0], "difficulty and plastered": [65535, 0], "and plastered his": [65535, 0], "plastered his hair": [65535, 0], "his hair close": [65535, 0], "hair close down": [65535, 0], "close down to": [65535, 0], "down to his": [65535, 0], "to his head": [65535, 0], "his head for": [65535, 0], "head for he": [65535, 0], "for he held": [65535, 0], "he held curls": [65535, 0], "held curls to": [65535, 0], "curls to be": [65535, 0], "to be effeminate": [65535, 0], "be effeminate and": [65535, 0], "effeminate and his": [65535, 0], "and his own": [65535, 0], "his own filled": [65535, 0], "own filled his": [65535, 0], "filled his life": [65535, 0], "his life with": [65535, 0], "life with bitterness": [65535, 0], "with bitterness then": [65535, 0], "bitterness then mary": [65535, 0], "then mary got": [65535, 0], "mary got out": [65535, 0], "out a suit": [65535, 0], "a suit of": [65535, 0], "suit of his": [65535, 0], "of his clothing": [65535, 0], "his clothing that": [65535, 0], "clothing that had": [65535, 0], "that had been": [65535, 0], "had been used": [65535, 0], "been used only": [65535, 0], "used only on": [65535, 0], "only on sundays": [65535, 0], "on sundays during": [65535, 0], "sundays during two": [65535, 0], "during two years": [65535, 0], "two years they": [65535, 0], "years they were": [65535, 0], "they were simply": [65535, 0], "were simply called": [65535, 0], "simply called his": [65535, 0], "called his other": [65535, 0], "his other clothes": [65535, 0], "other clothes and": [65535, 0], "clothes and so": [65535, 0], "and so by": [65535, 0], "so by that": [65535, 0], "by that we": [65535, 0], "that we know": [65535, 0], "we know the": [65535, 0], "know the size": [65535, 0], "the size of": [65535, 0], "size of his": [65535, 0], "of his wardrobe": [65535, 0], "his wardrobe the": [65535, 0], "wardrobe the girl": [65535, 0], "the girl put": [65535, 0], "girl put him": [65535, 0], "put him to": [65535, 0], "him to rights": [65535, 0], "to rights after": [65535, 0], "rights after he": [65535, 0], "after he had": [65535, 0], "he had dressed": [65535, 0], "had dressed himself": [65535, 0], "dressed himself she": [65535, 0], "himself she buttoned": [65535, 0], "she buttoned his": [65535, 0], "buttoned his neat": [65535, 0], "his neat roundabout": [65535, 0], "neat roundabout up": [65535, 0], "roundabout up to": [65535, 0], "up to his": [65535, 0], "to his chin": [65535, 0], "his chin turned": [65535, 0], "chin turned his": [65535, 0], "turned his vast": [65535, 0], "his vast shirt": [65535, 0], "vast shirt collar": [65535, 0], "shirt collar down": [65535, 0], "collar down over": [65535, 0], "down over his": [65535, 0], "over his shoulders": [65535, 0], "his shoulders brushed": [65535, 0], "shoulders brushed him": [65535, 0], "brushed him off": [65535, 0], "him off and": [65535, 0], "off and crowned": [65535, 0], "and crowned him": [65535, 0], "crowned him with": [65535, 0], "with his speckled": [65535, 0], "his speckled straw": [65535, 0], "speckled straw hat": [65535, 0], "straw hat he": [65535, 0], "hat he now": [65535, 0], "he now looked": [65535, 0], "now looked exceedingly": [65535, 0], "looked exceedingly improved": [65535, 0], "exceedingly improved and": [65535, 0], "improved and uncomfortable": [65535, 0], "and uncomfortable he": [65535, 0], "uncomfortable he was": [65535, 0], "he was fully": [65535, 0], "was fully as": [65535, 0], "fully as uncomfortable": [65535, 0], "as uncomfortable as": [65535, 0], "uncomfortable as he": [65535, 0], "as he looked": [65535, 0], "he looked for": [65535, 0], "looked for there": [65535, 0], "for there was": [65535, 0], "was a restraint": [65535, 0], "a restraint about": [65535, 0], "restraint about whole": [65535, 0], "about whole clothes": [65535, 0], "whole clothes and": [65535, 0], "clothes and cleanliness": [65535, 0], "and cleanliness that": [65535, 0], "cleanliness that galled": [65535, 0], "that galled him": [65535, 0], "galled him he": [65535, 0], "him he hoped": [65535, 0], "he hoped that": [65535, 0], "hoped that mary": [65535, 0], "that mary would": [65535, 0], "mary would forget": [65535, 0], "would forget his": [65535, 0], "forget his shoes": [65535, 0], "his shoes but": [65535, 0], "shoes but the": [65535, 0], "but the hope": [65535, 0], "the hope was": [65535, 0], "hope was blighted": [65535, 0], "was blighted she": [65535, 0], "blighted she coated": [65535, 0], "she coated them": [65535, 0], "coated them thoroughly": [65535, 0], "them thoroughly with": [65535, 0], "thoroughly with tallow": [65535, 0], "with tallow as": [65535, 0], "tallow as was": [65535, 0], "as was the": [65535, 0], "was the custom": [65535, 0], "the custom and": [65535, 0], "custom and brought": [65535, 0], "and brought them": [65535, 0], "brought them out": [65535, 0], "them out he": [65535, 0], "out he lost": [65535, 0], "he lost his": [65535, 0], "lost his temper": [65535, 0], "his temper and": [65535, 0], "temper and said": [65535, 0], "and said he": [65535, 0], "said he was": [65535, 0], "was always being": [65535, 0], "always being made": [65535, 0], "being made to": [65535, 0], "made to do": [65535, 0], "to do everything": [65535, 0], "do everything he": [65535, 0], "everything he didn't": [65535, 0], "he didn't want": [65535, 0], "didn't want to": [65535, 0], "want to do": [65535, 0], "to do but": [65535, 0], "do but mary": [65535, 0], "but mary said": [65535, 0], "mary said persuasively": [65535, 0], "said persuasively please": [65535, 0], "persuasively please tom": [65535, 0], "please tom that's": [65535, 0], "tom that's a": [65535, 0], "good boy so": [65535, 0], "boy so he": [65535, 0], "so he got": [65535, 0], "he got into": [65535, 0], "got into the": [65535, 0], "into the shoes": [65535, 0], "the shoes snarling": [65535, 0], "shoes snarling mary": [65535, 0], "snarling mary was": [65535, 0], "mary was soon": [65535, 0], "was soon ready": [65535, 0], "soon ready and": [65535, 0], "ready and the": [65535, 0], "and the three": [65535, 0], "the three children": [65535, 0], "three children set": [65535, 0], "children set out": [65535, 0], "set out for": [65535, 0], "out for sunday": [65535, 0], "sunday school a": [65535, 0], "school a place": [65535, 0], "a place that": [65535, 0], "place that tom": [65535, 0], "that tom hated": [65535, 0], "tom hated with": [65535, 0], "hated with his": [65535, 0], "with his whole": [65535, 0], "his whole heart": [65535, 0], "whole heart but": [65535, 0], "heart but sid": [65535, 0], "but sid and": [65535, 0], "and mary were": [65535, 0], "mary were fond": [65535, 0], "were fond of": [65535, 0], "fond of it": [65535, 0], "of it sabbath": [65535, 0], "it sabbath school": [65535, 0], "sabbath school hours": [65535, 0], "school hours were": [65535, 0], "hours were from": [65535, 0], "were from nine": [65535, 0], "from nine to": [65535, 0], "nine to half": [65535, 0], "to half past": [65535, 0], "past ten and": [65535, 0], "ten and then": [65535, 0], "and then church": [65535, 0], "then church service": [65535, 0], "church service two": [65535, 0], "service two of": [65535, 0], "two of the": [65535, 0], "of the children": [65535, 0], "the children always": [65535, 0], "children always remained": [65535, 0], "always remained for": [65535, 0], "remained for the": [65535, 0], "for the sermon": [65535, 0], "the sermon voluntarily": [65535, 0], "sermon voluntarily and": [65535, 0], "voluntarily and the": [65535, 0], "the other always": [65535, 0], "other always remained": [65535, 0], "always remained too": [65535, 0], "remained too for": [65535, 0], "too for stronger": [65535, 0], "for stronger reasons": [65535, 0], "stronger reasons the": [65535, 0], "reasons the church's": [65535, 0], "the church's high": [65535, 0], "church's high backed": [65535, 0], "high backed uncushioned": [65535, 0], "backed uncushioned pews": [65535, 0], "uncushioned pews would": [65535, 0], "pews would seat": [65535, 0], "would seat about": [65535, 0], "seat about three": [65535, 0], "about three hundred": [65535, 0], "three hundred persons": [65535, 0], "hundred persons the": [65535, 0], "persons the edifice": [65535, 0], "the edifice was": [65535, 0], "edifice was but": [65535, 0], "but a small": [65535, 0], "a small plain": [65535, 0], "small plain affair": [65535, 0], "plain affair with": [65535, 0], "affair with a": [65535, 0], "with a sort": [65535, 0], "sort of pine": [65535, 0], "of pine board": [65535, 0], "pine board tree": [65535, 0], "board tree box": [65535, 0], "tree box on": [65535, 0], "box on top": [65535, 0], "on top of": [65535, 0], "top of it": [65535, 0], "of it for": [65535, 0], "it for a": [65535, 0], "for a steeple": [65535, 0], "a steeple at": [65535, 0], "steeple at the": [65535, 0], "the door tom": [65535, 0], "door tom dropped": [65535, 0], "tom dropped back": [65535, 0], "dropped back a": [65535, 0], "back a step": [65535, 0], "a step and": [65535, 0], "step and accosted": [65535, 0], "and accosted a": [65535, 0], "accosted a sunday": [65535, 0], "a sunday dressed": [65535, 0], "sunday dressed comrade": [65535, 0], "dressed comrade say": [65535, 0], "comrade say billy": [65535, 0], "say billy got": [65535, 0], "billy got a": [65535, 0], "got a yaller": [65535, 0], "a yaller ticket": [65535, 0], "yaller ticket yes": [65535, 0], "ticket yes what'll": [65535, 0], "yes what'll you": [65535, 0], "take for her": [65535, 0], "for her what'll": [65535, 0], "her what'll you": [65535, 0], "what'll you give": [65535, 0], "you give piece": [65535, 0], "give piece of": [65535, 0], "piece of lickrish": [65535, 0], "of lickrish and": [65535, 0], "lickrish and a": [65535, 0], "and a fish": [65535, 0], "a fish hook": [65535, 0], "fish hook less": [65535, 0], "hook less see": [65535, 0], "less see 'em": [65535, 0], "see 'em tom": [65535, 0], "'em tom exhibited": [65535, 0], "tom exhibited they": [65535, 0], "exhibited they were": [65535, 0], "they were satisfactory": [65535, 0], "were satisfactory and": [65535, 0], "satisfactory and the": [65535, 0], "and the property": [65535, 0], "the property changed": [65535, 0], "property changed hands": [65535, 0], "changed hands then": [65535, 0], "hands then tom": [65535, 0], "then tom traded": [65535, 0], "tom traded a": [65535, 0], "traded a couple": [65535, 0], "couple of white": [65535, 0], "of white alleys": [65535, 0], "white alleys for": [65535, 0], "alleys for three": [65535, 0], "for three red": [65535, 0], "three red tickets": [65535, 0], "red tickets and": [65535, 0], "tickets and some": [65535, 0], "and some small": [65535, 0], "some small trifle": [65535, 0], "small trifle or": [65535, 0], "trifle or other": [65535, 0], "or other for": [65535, 0], "other for a": [65535, 0], "for a couple": [65535, 0], "couple of blue": [65535, 0], "of blue ones": [65535, 0], "blue ones he": [65535, 0], "ones he waylaid": [65535, 0], "he waylaid other": [65535, 0], "waylaid other boys": [65535, 0], "other boys as": [65535, 0], "boys as they": [65535, 0], "as they came": [65535, 0], "they came and": [65535, 0], "and went on": [65535, 0], "went on buying": [65535, 0], "on buying tickets": [65535, 0], "buying tickets of": [65535, 0], "tickets of various": [65535, 0], "of various colors": [65535, 0], "various colors ten": [65535, 0], "colors ten or": [65535, 0], "ten or fifteen": [65535, 0], "or fifteen minutes": [65535, 0], "fifteen minutes longer": [65535, 0], "minutes longer he": [65535, 0], "longer he entered": [65535, 0], "entered the church": [65535, 0], "the church now": [65535, 0], "church now with": [65535, 0], "now with a": [65535, 0], "with a swarm": [65535, 0], "a swarm of": [65535, 0], "swarm of clean": [65535, 0], "of clean and": [65535, 0], "clean and noisy": [65535, 0], "and noisy boys": [65535, 0], "noisy boys and": [65535, 0], "and girls proceeded": [65535, 0], "girls proceeded to": [65535, 0], "proceeded to his": [65535, 0], "to his seat": [65535, 0], "his seat and": [65535, 0], "seat and started": [65535, 0], "and started a": [65535, 0], "started a quarrel": [65535, 0], "a quarrel with": [65535, 0], "quarrel with the": [65535, 0], "with the first": [65535, 0], "boy that came": [65535, 0], "that came handy": [65535, 0], "came handy the": [65535, 0], "handy the teacher": [65535, 0], "the teacher a": [65535, 0], "teacher a grave": [65535, 0], "a grave elderly": [65535, 0], "grave elderly man": [65535, 0], "elderly man interfered": [65535, 0], "man interfered then": [65535, 0], "interfered then turned": [65535, 0], "then turned his": [65535, 0], "turned his back": [65535, 0], "his back a": [65535, 0], "back a moment": [65535, 0], "moment and tom": [65535, 0], "and tom pulled": [65535, 0], "tom pulled a": [65535, 0], "pulled a boy's": [65535, 0], "a boy's hair": [65535, 0], "boy's hair in": [65535, 0], "hair in the": [65535, 0], "in the next": [65535, 0], "the next bench": [65535, 0], "next bench and": [65535, 0], "bench and was": [65535, 0], "and was absorbed": [65535, 0], "was absorbed in": [65535, 0], "absorbed in his": [65535, 0], "in his book": [65535, 0], "his book when": [65535, 0], "book when the": [65535, 0], "when the boy": [65535, 0], "the boy turned": [65535, 0], "boy turned around": [65535, 0], "turned around stuck": [65535, 0], "around stuck a": [65535, 0], "stuck a pin": [65535, 0], "a pin in": [65535, 0], "pin in another": [65535, 0], "in another boy": [65535, 0], "another boy presently": [65535, 0], "boy presently in": [65535, 0], "presently in order": [65535, 0], "order to hear": [65535, 0], "hear him say": [65535, 0], "him say ouch": [65535, 0], "say ouch and": [65535, 0], "ouch and got": [65535, 0], "and got a": [65535, 0], "got a new": [65535, 0], "a new reprimand": [65535, 0], "new reprimand from": [65535, 0], "reprimand from his": [65535, 0], "from his teacher": [65535, 0], "his teacher tom's": [65535, 0], "teacher tom's whole": [65535, 0], "tom's whole class": [65535, 0], "whole class were": [65535, 0], "class were of": [65535, 0], "were of a": [65535, 0], "of a pattern": [65535, 0], "a pattern restless": [65535, 0], "pattern restless noisy": [65535, 0], "restless noisy and": [65535, 0], "noisy and troublesome": [65535, 0], "and troublesome when": [65535, 0], "troublesome when they": [65535, 0], "when they came": [65535, 0], "came to recite": [65535, 0], "to recite their": [65535, 0], "recite their lessons": [65535, 0], "their lessons not": [65535, 0], "lessons not one": [65535, 0], "not one of": [65535, 0], "one of them": [65535, 0], "of them knew": [65535, 0], "them knew his": [65535, 0], "knew his verses": [65535, 0], "his verses perfectly": [65535, 0], "verses perfectly but": [65535, 0], "perfectly but had": [65535, 0], "but had to": [65535, 0], "had to be": [65535, 0], "to be prompted": [65535, 0], "be prompted all": [65535, 0], "prompted all along": [65535, 0], "all along however": [65535, 0], "along however they": [65535, 0], "however they worried": [65535, 0], "they worried through": [65535, 0], "worried through and": [65535, 0], "through and each": [65535, 0], "and each got": [65535, 0], "each got his": [65535, 0], "got his reward": [65535, 0], "his reward in": [65535, 0], "reward in small": [65535, 0], "in small blue": [65535, 0], "small blue tickets": [65535, 0], "blue tickets each": [65535, 0], "tickets each with": [65535, 0], "with a passage": [65535, 0], "a passage of": [65535, 0], "passage of scripture": [65535, 0], "of scripture on": [65535, 0], "scripture on it": [65535, 0], "on it each": [65535, 0], "it each blue": [65535, 0], "each blue ticket": [65535, 0], "blue ticket was": [65535, 0], "ticket was pay": [65535, 0], "was pay for": [65535, 0], "pay for two": [65535, 0], "for two verses": [65535, 0], "two verses of": [65535, 0], "verses of the": [65535, 0], "of the recitation": [65535, 0], "the recitation ten": [65535, 0], "recitation ten blue": [65535, 0], "ten blue tickets": [65535, 0], "blue tickets equalled": [65535, 0], "tickets equalled a": [65535, 0], "equalled a red": [65535, 0], "a red one": [65535, 0], "red one and": [65535, 0], "one and could": [65535, 0], "and could be": [65535, 0], "could be exchanged": [65535, 0], "be exchanged for": [65535, 0], "exchanged for it": [65535, 0], "for it ten": [65535, 0], "it ten red": [65535, 0], "ten red tickets": [65535, 0], "red tickets equalled": [65535, 0], "equalled a yellow": [65535, 0], "a yellow one": [65535, 0], "yellow one for": [65535, 0], "one for ten": [65535, 0], "for ten yellow": [65535, 0], "ten yellow tickets": [65535, 0], "yellow tickets the": [65535, 0], "tickets the superintendent": [65535, 0], "the superintendent gave": [65535, 0], "superintendent gave a": [65535, 0], "gave a very": [65535, 0], "a very plainly": [65535, 0], "very plainly bound": [65535, 0], "plainly bound bible": [65535, 0], "bound bible worth": [65535, 0], "bible worth forty": [65535, 0], "worth forty cents": [65535, 0], "forty cents in": [65535, 0], "cents in those": [65535, 0], "in those easy": [65535, 0], "those easy times": [65535, 0], "easy times to": [65535, 0], "times to the": [65535, 0], "to the pupil": [65535, 0], "the pupil how": [65535, 0], "pupil how many": [65535, 0], "how many of": [65535, 0], "many of my": [65535, 0], "of my readers": [65535, 0], "my readers would": [65535, 0], "readers would have": [65535, 0], "would have the": [65535, 0], "have the industry": [65535, 0], "the industry and": [65535, 0], "industry and application": [65535, 0], "and application to": [65535, 0], "application to memorize": [65535, 0], "to memorize two": [65535, 0], "memorize two thousand": [65535, 0], "two thousand verses": [65535, 0], "thousand verses even": [65535, 0], "verses even for": [65535, 0], "even for a": [65535, 0], "for a dore": [65535, 0], "a dore bible": [65535, 0], "dore bible and": [65535, 0], "bible and yet": [65535, 0], "and yet mary": [65535, 0], "yet mary had": [65535, 0], "mary had acquired": [65535, 0], "had acquired two": [65535, 0], "acquired two bibles": [65535, 0], "two bibles in": [65535, 0], "bibles in this": [65535, 0], "in this way": [65535, 0], "this way it": [65535, 0], "way it was": [65535, 0], "was the patient": [65535, 0], "the patient work": [65535, 0], "patient work of": [65535, 0], "work of two": [65535, 0], "of two years": [65535, 0], "two years and": [65535, 0], "years and a": [65535, 0], "and a boy": [65535, 0], "a boy of": [65535, 0], "boy of german": [65535, 0], "of german parentage": [65535, 0], "german parentage had": [65535, 0], "parentage had won": [65535, 0], "had won four": [65535, 0], "won four or": [65535, 0], "four or five": [65535, 0], "or five he": [65535, 0], "five he once": [65535, 0], "he once recited": [65535, 0], "once recited three": [65535, 0], "recited three thousand": [65535, 0], "three thousand verses": [65535, 0], "thousand verses without": [65535, 0], "verses without stopping": [65535, 0], "without stopping but": [65535, 0], "stopping but the": [65535, 0], "but the strain": [65535, 0], "the strain upon": [65535, 0], "strain upon his": [65535, 0], "upon his mental": [65535, 0], "his mental faculties": [65535, 0], "mental faculties was": [65535, 0], "faculties was too": [65535, 0], "too great and": [65535, 0], "great and he": [65535, 0], "he was little": [65535, 0], "was little better": [65535, 0], "little better than": [65535, 0], "better than an": [65535, 0], "than an idiot": [65535, 0], "an idiot from": [65535, 0], "idiot from that": [65535, 0], "from that day": [65535, 0], "that day forth": [65535, 0], "day forth a": [65535, 0], "forth a grievous": [65535, 0], "a grievous misfortune": [65535, 0], "grievous misfortune for": [65535, 0], "misfortune for the": [65535, 0], "for the school": [65535, 0], "the school for": [65535, 0], "school for on": [65535, 0], "for on great": [65535, 0], "on great occasions": [65535, 0], "great occasions before": [65535, 0], "occasions before company": [65535, 0], "before company the": [65535, 0], "company the superintendent": [65535, 0], "the superintendent as": [65535, 0], "superintendent as tom": [65535, 0], "as tom expressed": [65535, 0], "tom expressed it": [65535, 0], "expressed it had": [65535, 0], "it had always": [65535, 0], "had always made": [65535, 0], "always made this": [65535, 0], "made this boy": [65535, 0], "this boy come": [65535, 0], "boy come out": [65535, 0], "come out and": [65535, 0], "out and spread": [65535, 0], "and spread himself": [65535, 0], "spread himself only": [65535, 0], "himself only the": [65535, 0], "only the older": [65535, 0], "the older pupils": [65535, 0], "older pupils managed": [65535, 0], "pupils managed to": [65535, 0], "managed to keep": [65535, 0], "to keep their": [65535, 0], "keep their tickets": [65535, 0], "their tickets and": [65535, 0], "tickets and stick": [65535, 0], "and stick to": [65535, 0], "stick to their": [65535, 0], "to their tedious": [65535, 0], "their tedious work": [65535, 0], "tedious work long": [65535, 0], "work long enough": [65535, 0], "long enough to": [65535, 0], "enough to get": [65535, 0], "to get a": [65535, 0], "get a bible": [65535, 0], "a bible and": [65535, 0], "bible and so": [65535, 0], "and so the": [65535, 0], "so the delivery": [65535, 0], "the delivery of": [65535, 0], "delivery of one": [65535, 0], "of one of": [65535, 0], "one of these": [43635, 21900], "of these prizes": [65535, 0], "these prizes was": [65535, 0], "prizes was a": [65535, 0], "was a rare": [65535, 0], "a rare and": [65535, 0], "rare and noteworthy": [65535, 0], "and noteworthy circumstance": [65535, 0], "noteworthy circumstance the": [65535, 0], "circumstance the successful": [65535, 0], "the successful pupil": [65535, 0], "successful pupil was": [65535, 0], "pupil was so": [65535, 0], "was so great": [65535, 0], "so great and": [65535, 0], "great and conspicuous": [65535, 0], "and conspicuous for": [65535, 0], "conspicuous for that": [65535, 0], "for that day": [65535, 0], "that day that": [65535, 0], "day that on": [65535, 0], "that on the": [65535, 0], "on the spot": [65535, 0], "the spot every": [65535, 0], "spot every scholar's": [65535, 0], "every scholar's heart": [65535, 0], "scholar's heart was": [65535, 0], "heart was fired": [65535, 0], "was fired with": [65535, 0], "fired with a": [65535, 0], "with a fresh": [65535, 0], "a fresh ambition": [65535, 0], "fresh ambition that": [65535, 0], "ambition that often": [65535, 0], "that often lasted": [65535, 0], "often lasted a": [65535, 0], "lasted a couple": [65535, 0], "couple of weeks": [65535, 0], "of weeks it": [65535, 0], "weeks it is": [65535, 0], "it is possible": [65535, 0], "is possible that": [65535, 0], "possible that tom's": [65535, 0], "that tom's mental": [65535, 0], "tom's mental stomach": [65535, 0], "mental stomach had": [65535, 0], "stomach had never": [65535, 0], "had never really": [65535, 0], "never really hungered": [65535, 0], "really hungered for": [65535, 0], "hungered for one": [65535, 0], "for one of": [65535, 0], "one of those": [65535, 0], "of those prizes": [65535, 0], "those prizes but": [65535, 0], "prizes but unquestionably": [65535, 0], "but unquestionably his": [65535, 0], "unquestionably his entire": [65535, 0], "his entire being": [65535, 0], "entire being had": [65535, 0], "being had for": [65535, 0], "had for many": [65535, 0], "for many a": [65535, 0], "many a day": [65535, 0], "a day longed": [65535, 0], "day longed for": [65535, 0], "longed for the": [65535, 0], "for the glory": [65535, 0], "the glory and": [65535, 0], "glory and the": [65535, 0], "and the eclat": [65535, 0], "the eclat that": [65535, 0], "eclat that came": [65535, 0], "that came with": [65535, 0], "came with it": [65535, 0], "with it in": [65535, 0], "it in due": [65535, 0], "in due course": [65535, 0], "due course the": [65535, 0], "course the superintendent": [65535, 0], "the superintendent stood": [65535, 0], "superintendent stood up": [65535, 0], "stood up in": [65535, 0], "up in front": [65535, 0], "of the pulpit": [65535, 0], "the pulpit with": [65535, 0], "pulpit with a": [65535, 0], "with a closed": [65535, 0], "a closed hymn": [65535, 0], "closed hymn book": [65535, 0], "hymn book in": [65535, 0], "book in his": [65535, 0], "in his hand": [65535, 0], "his hand and": [65535, 0], "hand and his": [65535, 0], "and his forefinger": [65535, 0], "his forefinger inserted": [65535, 0], "forefinger inserted between": [65535, 0], "inserted between its": [65535, 0], "between its leaves": [65535, 0], "its leaves and": [65535, 0], "leaves and commanded": [65535, 0], "and commanded attention": [65535, 0], "commanded attention when": [65535, 0], "attention when a": [65535, 0], "when a sunday": [65535, 0], "a sunday school": [65535, 0], "sunday school superintendent": [65535, 0], "school superintendent makes": [65535, 0], "superintendent makes his": [65535, 0], "makes his customary": [65535, 0], "his customary little": [65535, 0], "customary little speech": [65535, 0], "little speech a": [65535, 0], "speech a hymn": [65535, 0], "a hymn book": [65535, 0], "book in the": [65535, 0], "in the hand": [65535, 0], "the hand is": [65535, 0], "hand is as": [65535, 0], "is as necessary": [65535, 0], "as necessary as": [65535, 0], "necessary as is": [65535, 0], "as is the": [65535, 0], "is the inevitable": [65535, 0], "the inevitable sheet": [65535, 0], "inevitable sheet of": [65535, 0], "sheet of music": [65535, 0], "of music in": [65535, 0], "music in the": [65535, 0], "the hand of": [65535, 0], "hand of a": [65535, 0], "of a singer": [65535, 0], "a singer who": [65535, 0], "singer who stands": [65535, 0], "who stands forward": [65535, 0], "stands forward on": [65535, 0], "forward on the": [65535, 0], "on the platform": [65535, 0], "the platform and": [65535, 0], "platform and sings": [65535, 0], "and sings a": [65535, 0], "sings a solo": [65535, 0], "a solo at": [65535, 0], "solo at a": [65535, 0], "at a concert": [65535, 0], "a concert though": [65535, 0], "concert though why": [65535, 0], "though why is": [65535, 0], "why is a": [65535, 0], "is a mystery": [65535, 0], "a mystery for": [65535, 0], "mystery for neither": [65535, 0], "for neither the": [65535, 0], "neither the hymn": [65535, 0], "the hymn book": [65535, 0], "hymn book nor": [65535, 0], "book nor the": [65535, 0], "nor the sheet": [65535, 0], "the sheet of": [65535, 0], "of music is": [65535, 0], "music is ever": [65535, 0], "is ever referred": [65535, 0], "ever referred to": [65535, 0], "referred to by": [65535, 0], "to by the": [65535, 0], "by the sufferer": [65535, 0], "the sufferer this": [65535, 0], "sufferer this superintendent": [65535, 0], "this superintendent was": [65535, 0], "superintendent was a": [65535, 0], "was a slim": [65535, 0], "a slim creature": [65535, 0], "slim creature of": [65535, 0], "creature of thirty": [65535, 0], "of thirty five": [65535, 0], "thirty five with": [65535, 0], "five with a": [65535, 0], "with a sandy": [65535, 0], "a sandy goatee": [65535, 0], "sandy goatee and": [65535, 0], "goatee and short": [65535, 0], "and short sandy": [65535, 0], "short sandy hair": [65535, 0], "sandy hair he": [65535, 0], "hair he wore": [65535, 0], "he wore a": [65535, 0], "wore a stiff": [65535, 0], "a stiff standing": [65535, 0], "stiff standing collar": [65535, 0], "standing collar whose": [65535, 0], "collar whose upper": [65535, 0], "whose upper edge": [65535, 0], "upper edge almost": [65535, 0], "edge almost reached": [65535, 0], "almost reached his": [65535, 0], "reached his ears": [65535, 0], "his ears and": [65535, 0], "ears and whose": [65535, 0], "and whose sharp": [65535, 0], "whose sharp points": [65535, 0], "sharp points curved": [65535, 0], "points curved forward": [65535, 0], "curved forward abreast": [65535, 0], "forward abreast the": [65535, 0], "abreast the corners": [65535, 0], "the corners of": [65535, 0], "corners of his": [65535, 0], "of his mouth": [65535, 0], "his mouth a": [65535, 0], "mouth a fence": [65535, 0], "a fence that": [65535, 0], "fence that compelled": [65535, 0], "that compelled a": [65535, 0], "compelled a straight": [65535, 0], "a straight lookout": [65535, 0], "straight lookout ahead": [65535, 0], "lookout ahead and": [65535, 0], "ahead and a": [65535, 0], "and a turning": [65535, 0], "a turning of": [65535, 0], "turning of the": [65535, 0], "of the whole": [65535, 0], "the whole body": [65535, 0], "whole body when": [65535, 0], "body when a": [65535, 0], "when a side": [65535, 0], "a side view": [65535, 0], "side view was": [65535, 0], "view was required": [65535, 0], "was required his": [65535, 0], "required his chin": [65535, 0], "his chin was": [65535, 0], "chin was propped": [65535, 0], "was propped on": [65535, 0], "propped on a": [65535, 0], "on a spreading": [65535, 0], "a spreading cravat": [65535, 0], "spreading cravat which": [65535, 0], "cravat which was": [65535, 0], "which was as": [65535, 0], "was as broad": [65535, 0], "as broad and": [65535, 0], "broad and as": [65535, 0], "and as long": [65535, 0], "long as a": [65535, 0], "as a bank": [65535, 0], "a bank note": [65535, 0], "bank note and": [65535, 0], "note and had": [65535, 0], "and had fringed": [65535, 0], "had fringed ends": [65535, 0], "fringed ends his": [65535, 0], "ends his boot": [65535, 0], "his boot toes": [65535, 0], "boot toes were": [65535, 0], "toes were turned": [65535, 0], "were turned sharply": [65535, 0], "turned sharply up": [65535, 0], "sharply up in": [65535, 0], "up in the": [65535, 0], "in the fashion": [65535, 0], "the fashion of": [65535, 0], "fashion of the": [65535, 0], "of the day": [32706, 32829], "the day like": [65535, 0], "day like sleigh": [65535, 0], "like sleigh runners": [65535, 0], "sleigh runners an": [65535, 0], "runners an effect": [65535, 0], "an effect patiently": [65535, 0], "effect patiently and": [65535, 0], "patiently and laboriously": [65535, 0], "and laboriously produced": [65535, 0], "laboriously produced by": [65535, 0], "produced by the": [65535, 0], "by the young": [65535, 0], "the young men": [65535, 0], "young men by": [65535, 0], "men by sitting": [65535, 0], "by sitting with": [65535, 0], "sitting with their": [65535, 0], "with their toes": [65535, 0], "their toes pressed": [65535, 0], "toes pressed against": [65535, 0], "pressed against a": [65535, 0], "against a wall": [65535, 0], "a wall for": [65535, 0], "wall for hours": [65535, 0], "for hours together": [65535, 0], "hours together mr": [65535, 0], "together mr walters": [65535, 0], "mr walters was": [65535, 0], "walters was very": [65535, 0], "was very earnest": [65535, 0], "very earnest of": [65535, 0], "earnest of mien": [65535, 0], "of mien and": [65535, 0], "mien and very": [65535, 0], "and very sincere": [65535, 0], "very sincere and": [65535, 0], "sincere and honest": [65535, 0], "and honest at": [65535, 0], "honest at heart": [65535, 0], "at heart and": [65535, 0], "heart and he": [65535, 0], "and he held": [65535, 0], "he held sacred": [65535, 0], "held sacred things": [65535, 0], "sacred things and": [65535, 0], "things and places": [65535, 0], "and places in": [65535, 0], "places in such": [65535, 0], "in such reverence": [65535, 0], "such reverence and": [65535, 0], "reverence and so": [65535, 0], "and so separated": [65535, 0], "so separated them": [65535, 0], "separated them from": [65535, 0], "them from worldly": [65535, 0], "from worldly matters": [65535, 0], "worldly matters that": [65535, 0], "matters that unconsciously": [65535, 0], "that unconsciously to": [65535, 0], "unconsciously to himself": [65535, 0], "to himself his": [65535, 0], "himself his sunday": [65535, 0], "his sunday school": [65535, 0], "sunday school voice": [65535, 0], "school voice had": [65535, 0], "voice had acquired": [65535, 0], "had acquired a": [65535, 0], "acquired a peculiar": [65535, 0], "a peculiar intonation": [65535, 0], "peculiar intonation which": [65535, 0], "intonation which was": [65535, 0], "which was wholly": [65535, 0], "was wholly absent": [65535, 0], "wholly absent on": [65535, 0], "absent on week": [65535, 0], "on week days": [65535, 0], "week days he": [65535, 0], "days he began": [65535, 0], "he began after": [65535, 0], "began after this": [65535, 0], "after this fashion": [65535, 0], "this fashion now": [65535, 0], "fashion now children": [65535, 0], "now children i": [65535, 0], "children i want": [65535, 0], "i want you": [65535, 0], "want you all": [65535, 0], "you all to": [65535, 0], "all to sit": [65535, 0], "to sit up": [65535, 0], "sit up just": [65535, 0], "up just as": [65535, 0], "just as straight": [65535, 0], "as straight and": [65535, 0], "straight and pretty": [65535, 0], "and pretty as": [65535, 0], "pretty as you": [65535, 0], "as you can": [65535, 0], "you can and": [65535, 0], "can and give": [65535, 0], "and give me": [65535, 0], "give me all": [65535, 0], "me all your": [65535, 0], "all your attention": [65535, 0], "your attention for": [65535, 0], "attention for a": [65535, 0], "minute or two": [65535, 0], "or two there": [65535, 0], "two there that": [65535, 0], "there that is": [65535, 0], "that is it": [65535, 0], "is it that": [65535, 0], "it that is": [65535, 0], "that is the": [32706, 32829], "is the way": [65535, 0], "the way good": [65535, 0], "way good little": [65535, 0], "good little boys": [65535, 0], "little boys and": [65535, 0], "and girls should": [65535, 0], "girls should do": [65535, 0], "should do i": [65535, 0], "do i see": [65535, 0], "i see one": [65535, 0], "see one little": [65535, 0], "one little girl": [65535, 0], "little girl who": [65535, 0], "girl who is": [65535, 0], "who is looking": [65535, 0], "is looking out": [65535, 0], "looking out of": [65535, 0], "the window i": [65535, 0], "window i am": [65535, 0], "i am afraid": [65535, 0], "am afraid she": [65535, 0], "afraid she thinks": [65535, 0], "she thinks i": [65535, 0], "thinks i am": [65535, 0], "i am out": [65535, 0], "am out there": [65535, 0], "out there somewhere": [65535, 0], "there somewhere perhaps": [65535, 0], "somewhere perhaps up": [65535, 0], "perhaps up in": [65535, 0], "up in one": [65535, 0], "in one of": [65535, 0], "one of the": [32706, 32829], "of the trees": [65535, 0], "the trees making": [65535, 0], "trees making a": [65535, 0], "making a speech": [65535, 0], "a speech to": [65535, 0], "speech to the": [65535, 0], "to the little": [65535, 0], "the little birds": [65535, 0], "little birds applausive": [65535, 0], "birds applausive titter": [65535, 0], "applausive titter i": [65535, 0], "titter i want": [65535, 0], "i want to": [65535, 0], "want to tell": [65535, 0], "to tell you": [65535, 0], "tell you how": [65535, 0], "you how good": [65535, 0], "how good it": [65535, 0], "good it makes": [65535, 0], "it makes me": [65535, 0], "makes me feel": [65535, 0], "me feel to": [65535, 0], "feel to see": [65535, 0], "to see so": [65535, 0], "see so many": [65535, 0], "so many bright": [65535, 0], "many bright clean": [65535, 0], "bright clean little": [65535, 0], "clean little faces": [65535, 0], "little faces assembled": [65535, 0], "faces assembled in": [65535, 0], "assembled in a": [65535, 0], "in a place": [65535, 0], "a place like": [65535, 0], "place like this": [65535, 0], "like this learning": [65535, 0], "this learning to": [65535, 0], "learning to do": [65535, 0], "to do right": [65535, 0], "do right and": [65535, 0], "right and be": [65535, 0], "and be good": [65535, 0], "be good and": [65535, 0], "good and so": [65535, 0], "and so forth": [65535, 0], "so forth and": [65535, 0], "forth and so": [65535, 0], "so on it": [65535, 0], "on it is": [65535, 0], "it is not": [43635, 21900], "is not necessary": [65535, 0], "not necessary to": [65535, 0], "necessary to set": [65535, 0], "to set down": [65535, 0], "set down the": [65535, 0], "down the rest": [65535, 0], "of the oration": [65535, 0], "the oration it": [65535, 0], "oration it was": [65535, 0], "it was of": [65535, 0], "was of a": [65535, 0], "a pattern which": [65535, 0], "pattern which does": [65535, 0], "which does not": [65535, 0], "does not vary": [65535, 0], "not vary and": [65535, 0], "vary and so": [65535, 0], "and so it": [65535, 0], "so it is": [65535, 0], "it is familiar": [65535, 0], "is familiar to": [65535, 0], "familiar to us": [65535, 0], "to us all": [65535, 0], "us all the": [65535, 0], "all the latter": [65535, 0], "the latter third": [65535, 0], "latter third of": [65535, 0], "third of the": [65535, 0], "of the speech": [65535, 0], "the speech was": [65535, 0], "speech was marred": [65535, 0], "was marred by": [65535, 0], "marred by the": [65535, 0], "by the resumption": [65535, 0], "the resumption of": [65535, 0], "resumption of fights": [65535, 0], "of fights and": [65535, 0], "fights and other": [65535, 0], "and other recreations": [65535, 0], "other recreations among": [65535, 0], "recreations among certain": [65535, 0], "among certain of": [65535, 0], "certain of the": [65535, 0], "of the bad": [65535, 0], "the bad boys": [65535, 0], "bad boys and": [65535, 0], "boys and by": [65535, 0], "and by fidgetings": [65535, 0], "by fidgetings and": [65535, 0], "fidgetings and whisperings": [65535, 0], "and whisperings that": [65535, 0], "whisperings that extended": [65535, 0], "that extended far": [65535, 0], "extended far and": [65535, 0], "far and wide": [65535, 0], "and wide washing": [65535, 0], "wide washing even": [65535, 0], "washing even to": [65535, 0], "even to the": [65535, 0], "to the bases": [65535, 0], "the bases of": [65535, 0], "bases of isolated": [65535, 0], "of isolated and": [65535, 0], "isolated and incorruptible": [65535, 0], "and incorruptible rocks": [65535, 0], "incorruptible rocks like": [65535, 0], "rocks like sid": [65535, 0], "like sid and": [65535, 0], "and mary but": [65535, 0], "mary but now": [65535, 0], "but now every": [65535, 0], "now every sound": [65535, 0], "every sound ceased": [65535, 0], "sound ceased suddenly": [65535, 0], "ceased suddenly with": [65535, 0], "suddenly with the": [65535, 0], "with the subsidence": [65535, 0], "the subsidence of": [65535, 0], "subsidence of mr": [65535, 0], "of mr walters'": [65535, 0], "mr walters' voice": [65535, 0], "walters' voice and": [65535, 0], "voice and the": [65535, 0], "and the conclusion": [65535, 0], "the conclusion of": [65535, 0], "conclusion of the": [65535, 0], "speech was received": [65535, 0], "was received with": [65535, 0], "with a burst": [65535, 0], "a burst of": [65535, 0], "burst of silent": [65535, 0], "of silent gratitude": [65535, 0], "silent gratitude a": [65535, 0], "gratitude a good": [65535, 0], "a good part": [65535, 0], "good part of": [65535, 0], "of the whispering": [65535, 0], "the whispering had": [65535, 0], "whispering had been": [65535, 0], "had been occasioned": [65535, 0], "been occasioned by": [65535, 0], "occasioned by an": [65535, 0], "by an event": [65535, 0], "an event which": [65535, 0], "event which was": [65535, 0], "which was more": [65535, 0], "was more or": [65535, 0], "more or less": [65535, 0], "or less rare": [65535, 0], "less rare the": [65535, 0], "rare the entrance": [65535, 0], "the entrance of": [65535, 0], "entrance of visitors": [65535, 0], "of visitors lawyer": [65535, 0], "visitors lawyer thatcher": [65535, 0], "lawyer thatcher accompanied": [65535, 0], "thatcher accompanied by": [65535, 0], "accompanied by a": [65535, 0], "by a very": [65535, 0], "a very feeble": [65535, 0], "very feeble and": [65535, 0], "feeble and aged": [65535, 0], "and aged man": [65535, 0], "aged man a": [65535, 0], "man a fine": [65535, 0], "a fine portly": [65535, 0], "fine portly middle": [65535, 0], "portly middle aged": [65535, 0], "middle aged gentleman": [65535, 0], "aged gentleman with": [65535, 0], "gentleman with iron": [65535, 0], "with iron gray": [65535, 0], "iron gray hair": [65535, 0], "gray hair and": [65535, 0], "hair and a": [65535, 0], "and a dignified": [65535, 0], "a dignified lady": [65535, 0], "dignified lady who": [65535, 0], "lady who was": [65535, 0], "who was doubtless": [65535, 0], "was doubtless the": [65535, 0], "doubtless the latter's": [65535, 0], "the latter's wife": [65535, 0], "latter's wife the": [65535, 0], "wife the lady": [65535, 0], "the lady was": [65535, 0], "lady was leading": [65535, 0], "was leading a": [65535, 0], "leading a child": [65535, 0], "a child tom": [65535, 0], "child tom had": [65535, 0], "tom had been": [65535, 0], "had been restless": [65535, 0], "been restless and": [65535, 0], "restless and full": [65535, 0], "full of chafings": [65535, 0], "of chafings and": [65535, 0], "chafings and repinings": [65535, 0], "and repinings conscience": [65535, 0], "repinings conscience smitten": [65535, 0], "conscience smitten too": [65535, 0], "smitten too he": [65535, 0], "too he could": [65535, 0], "he could not": [65535, 0], "could not meet": [65535, 0], "not meet amy": [65535, 0], "meet amy lawrence's": [65535, 0], "amy lawrence's eye": [65535, 0], "lawrence's eye he": [65535, 0], "eye he could": [65535, 0], "could not brook": [65535, 0], "not brook her": [65535, 0], "brook her loving": [65535, 0], "her loving gaze": [65535, 0], "loving gaze but": [65535, 0], "gaze but when": [65535, 0], "he saw this": [65535, 0], "saw this small": [65535, 0], "this small new": [65535, 0], "small new comer": [65535, 0], "new comer his": [65535, 0], "comer his soul": [65535, 0], "his soul was": [65535, 0], "soul was all": [65535, 0], "was all ablaze": [65535, 0], "all ablaze with": [65535, 0], "ablaze with bliss": [65535, 0], "with bliss in": [65535, 0], "bliss in a": [65535, 0], "in a moment": [65535, 0], "a moment the": [65535, 0], "moment the next": [65535, 0], "the next moment": [65535, 0], "next moment he": [65535, 0], "he was showing": [65535, 0], "was showing off": [65535, 0], "showing off with": [65535, 0], "off with all": [65535, 0], "with all his": [65535, 0], "all his might": [65535, 0], "his might cuffing": [65535, 0], "might cuffing boys": [65535, 0], "cuffing boys pulling": [65535, 0], "boys pulling hair": [65535, 0], "pulling hair making": [65535, 0], "hair making faces": [65535, 0], "making faces in": [65535, 0], "faces in a": [65535, 0], "a word using": [65535, 0], "word using every": [65535, 0], "using every art": [65535, 0], "every art that": [65535, 0], "art that seemed": [65535, 0], "that seemed likely": [65535, 0], "seemed likely to": [65535, 0], "likely to fascinate": [65535, 0], "to fascinate a": [65535, 0], "fascinate a girl": [65535, 0], "a girl and": [65535, 0], "girl and win": [65535, 0], "and win her": [65535, 0], "win her applause": [65535, 0], "her applause his": [65535, 0], "applause his exaltation": [65535, 0], "his exaltation had": [65535, 0], "exaltation had but": [65535, 0], "but one alloy": [65535, 0], "one alloy the": [65535, 0], "alloy the memory": [65535, 0], "the memory of": [65535, 0], "memory of his": [65535, 0], "of his humiliation": [65535, 0], "his humiliation in": [65535, 0], "humiliation in this": [65535, 0], "in this angel's": [65535, 0], "this angel's garden": [65535, 0], "angel's garden and": [65535, 0], "garden and that": [65535, 0], "and that record": [65535, 0], "that record in": [65535, 0], "record in sand": [65535, 0], "in sand was": [65535, 0], "sand was fast": [65535, 0], "was fast washing": [65535, 0], "fast washing out": [65535, 0], "washing out under": [65535, 0], "out under the": [65535, 0], "under the waves": [65535, 0], "the waves of": [65535, 0], "waves of happiness": [65535, 0], "of happiness that": [65535, 0], "happiness that were": [65535, 0], "that were sweeping": [65535, 0], "were sweeping over": [65535, 0], "sweeping over it": [65535, 0], "over it now": [65535, 0], "it now the": [65535, 0], "now the visitors": [65535, 0], "the visitors were": [65535, 0], "visitors were given": [65535, 0], "were given the": [65535, 0], "given the highest": [65535, 0], "the highest seat": [65535, 0], "highest seat of": [65535, 0], "seat of honor": [65535, 0], "of honor and": [65535, 0], "honor and as": [65535, 0], "soon as mr": [65535, 0], "as mr walters'": [65535, 0], "mr walters' speech": [65535, 0], "walters' speech was": [65535, 0], "speech was finished": [65535, 0], "was finished he": [65535, 0], "finished he introduced": [65535, 0], "he introduced them": [65535, 0], "introduced them to": [65535, 0], "to the school": [65535, 0], "the school the": [65535, 0], "school the middle": [65535, 0], "the middle aged": [65535, 0], "middle aged man": [65535, 0], "aged man turned": [65535, 0], "man turned out": [65535, 0], "turned out to": [65535, 0], "out to be": [65535, 0], "to be a": [32706, 32829], "be a prodigious": [65535, 0], "a prodigious personage": [65535, 0], "prodigious personage no": [65535, 0], "personage no less": [65535, 0], "no less a": [65535, 0], "less a one": [65535, 0], "a one than": [65535, 0], "one than the": [65535, 0], "than the county": [65535, 0], "the county judge": [65535, 0], "county judge altogether": [65535, 0], "judge altogether the": [65535, 0], "altogether the most": [65535, 0], "the most august": [65535, 0], "most august creation": [65535, 0], "august creation these": [65535, 0], "creation these children": [65535, 0], "these children had": [65535, 0], "children had ever": [65535, 0], "had ever looked": [65535, 0], "ever looked upon": [65535, 0], "looked upon and": [65535, 0], "upon and they": [65535, 0], "and they wondered": [65535, 0], "they wondered what": [65535, 0], "wondered what kind": [65535, 0], "what kind of": [65535, 0], "kind of material": [65535, 0], "of material he": [65535, 0], "material he was": [65535, 0], "he was made": [65535, 0], "was made of": [65535, 0], "made of and": [65535, 0], "of and they": [65535, 0], "and they half": [65535, 0], "they half wanted": [65535, 0], "half wanted to": [65535, 0], "wanted to hear": [65535, 0], "hear him roar": [65535, 0], "him roar and": [65535, 0], "roar and were": [65535, 0], "and were half": [65535, 0], "were half afraid": [65535, 0], "half afraid he": [65535, 0], "afraid he might": [65535, 0], "he might too": [65535, 0], "might too he": [65535, 0], "too he was": [65535, 0], "he was from": [65535, 0], "was from constantinople": [65535, 0], "from constantinople twelve": [65535, 0], "constantinople twelve miles": [65535, 0], "twelve miles away": [65535, 0], "miles away so": [65535, 0], "he had travelled": [65535, 0], "had travelled and": [65535, 0], "travelled and seen": [65535, 0], "and seen the": [65535, 0], "seen the world": [65535, 0], "the world these": [65535, 0], "world these very": [65535, 0], "these very eyes": [65535, 0], "very eyes had": [65535, 0], "eyes had looked": [65535, 0], "had looked upon": [65535, 0], "looked upon the": [65535, 0], "upon the county": [65535, 0], "the county court": [65535, 0], "county court house": [65535, 0], "court house which": [65535, 0], "house which was": [65535, 0], "which was said": [65535, 0], "was said to": [65535, 0], "said to have": [65535, 0], "to have a": [65535, 0], "have a tin": [65535, 0], "a tin roof": [65535, 0], "tin roof the": [65535, 0], "roof the awe": [65535, 0], "the awe which": [65535, 0], "awe which these": [65535, 0], "which these reflections": [65535, 0], "these reflections inspired": [65535, 0], "reflections inspired was": [65535, 0], "inspired was attested": [65535, 0], "was attested by": [65535, 0], "attested by the": [65535, 0], "by the impressive": [65535, 0], "the impressive silence": [65535, 0], "impressive silence and": [65535, 0], "silence and the": [65535, 0], "and the ranks": [65535, 0], "the ranks of": [65535, 0], "ranks of staring": [65535, 0], "of staring eyes": [65535, 0], "staring eyes this": [65535, 0], "eyes this was": [65535, 0], "this was the": [65535, 0], "was the great": [65535, 0], "the great judge": [65535, 0], "great judge thatcher": [65535, 0], "judge thatcher brother": [65535, 0], "thatcher brother of": [65535, 0], "brother of their": [65535, 0], "of their own": [65535, 0], "their own lawyer": [65535, 0], "own lawyer jeff": [65535, 0], "lawyer jeff thatcher": [65535, 0], "jeff thatcher immediately": [65535, 0], "thatcher immediately went": [65535, 0], "immediately went forward": [65535, 0], "went forward to": [65535, 0], "forward to be": [65535, 0], "to be familiar": [65535, 0], "be familiar with": [65535, 0], "familiar with the": [65535, 0], "with the great": [65535, 0], "the great man": [65535, 0], "great man and": [65535, 0], "man and be": [65535, 0], "and be envied": [65535, 0], "be envied by": [65535, 0], "envied by the": [65535, 0], "by the school": [65535, 0], "the school it": [65535, 0], "school it would": [65535, 0], "it would have": [65535, 0], "would have been": [65535, 0], "have been music": [65535, 0], "been music to": [65535, 0], "music to his": [65535, 0], "to his soul": [65535, 0], "his soul to": [65535, 0], "soul to hear": [65535, 0], "to hear the": [65535, 0], "hear the whisperings": [65535, 0], "the whisperings look": [65535, 0], "whisperings look at": [65535, 0], "look at him": [65535, 0], "at him jim": [65535, 0], "him jim he's": [65535, 0], "jim he's a": [65535, 0], "he's a going": [65535, 0], "a going up": [65535, 0], "going up there": [65535, 0], "up there say": [65535, 0], "there say look": [65535, 0], "say look he's": [65535, 0], "look he's a": [65535, 0], "going to shake": [65535, 0], "to shake hands": [65535, 0], "shake hands with": [65535, 0], "hands with him": [65535, 0], "him he is": [65535, 0], "he is shaking": [65535, 0], "is shaking hands": [65535, 0], "shaking hands with": [65535, 0], "with him by": [65535, 0], "him by jings": [65535, 0], "by jings don't": [65535, 0], "jings don't you": [65535, 0], "wish you was": [65535, 0], "you was jeff": [65535, 0], "was jeff mr": [65535, 0], "jeff mr walters": [65535, 0], "mr walters fell": [65535, 0], "walters fell to": [65535, 0], "fell to showing": [65535, 0], "to showing off": [65535, 0], "with all sorts": [65535, 0], "sorts of official": [65535, 0], "of official bustlings": [65535, 0], "official bustlings and": [65535, 0], "bustlings and activities": [65535, 0], "and activities giving": [65535, 0], "activities giving orders": [65535, 0], "giving orders delivering": [65535, 0], "orders delivering judgments": [65535, 0], "delivering judgments discharging": [65535, 0], "judgments discharging directions": [65535, 0], "discharging directions here": [65535, 0], "directions here there": [65535, 0], "here there everywhere": [65535, 0], "there everywhere that": [65535, 0], "everywhere that he": [65535, 0], "that he could": [65535, 0], "could find a": [65535, 0], "find a target": [65535, 0], "a target the": [65535, 0], "target the librarian": [65535, 0], "the librarian showed": [65535, 0], "librarian showed off": [65535, 0], "showed off running": [65535, 0], "off running hither": [65535, 0], "running hither and": [65535, 0], "hither and thither": [65535, 0], "and thither with": [65535, 0], "thither with his": [65535, 0], "his arms full": [65535, 0], "arms full of": [65535, 0], "full of books": [65535, 0], "of books and": [65535, 0], "books and making": [65535, 0], "and making a": [65535, 0], "making a deal": [65535, 0], "a deal of": [65535, 0], "deal of the": [65535, 0], "of the splutter": [65535, 0], "the splutter and": [65535, 0], "splutter and fuss": [65535, 0], "and fuss that": [65535, 0], "fuss that insect": [65535, 0], "that insect authority": [65535, 0], "insect authority delights": [65535, 0], "authority delights in": [65535, 0], "delights in the": [65535, 0], "in the young": [65535, 0], "the young lady": [65535, 0], "young lady teachers": [65535, 0], "lady teachers showed": [65535, 0], "teachers showed off": [65535, 0], "showed off bending": [65535, 0], "off bending sweetly": [65535, 0], "bending sweetly over": [65535, 0], "sweetly over pupils": [65535, 0], "over pupils that": [65535, 0], "pupils that were": [65535, 0], "that were lately": [65535, 0], "were lately being": [65535, 0], "lately being boxed": [65535, 0], "being boxed lifting": [65535, 0], "boxed lifting pretty": [65535, 0], "lifting pretty warning": [65535, 0], "pretty warning fingers": [65535, 0], "warning fingers at": [65535, 0], "fingers at bad": [65535, 0], "at bad little": [65535, 0], "bad little boys": [65535, 0], "boys and patting": [65535, 0], "and patting good": [65535, 0], "patting good ones": [65535, 0], "good ones lovingly": [65535, 0], "ones lovingly the": [65535, 0], "lovingly the young": [65535, 0], "the young gentlemen": [65535, 0], "young gentlemen teachers": [65535, 0], "gentlemen teachers showed": [65535, 0], "showed off with": [65535, 0], "off with small": [65535, 0], "with small scoldings": [65535, 0], "small scoldings and": [65535, 0], "scoldings and other": [65535, 0], "and other little": [65535, 0], "other little displays": [65535, 0], "little displays of": [65535, 0], "displays of authority": [65535, 0], "of authority and": [65535, 0], "authority and fine": [65535, 0], "and fine attention": [65535, 0], "fine attention to": [65535, 0], "attention to discipline": [65535, 0], "to discipline and": [65535, 0], "discipline and most": [65535, 0], "and most of": [65535, 0], "most of the": [65535, 0], "of the teachers": [65535, 0], "the teachers of": [65535, 0], "teachers of both": [65535, 0], "of both sexes": [65535, 0], "both sexes found": [65535, 0], "sexes found business": [65535, 0], "found business up": [65535, 0], "business up at": [65535, 0], "at the library": [65535, 0], "the library by": [65535, 0], "library by the": [65535, 0], "by the pulpit": [65535, 0], "the pulpit and": [65535, 0], "pulpit and it": [65535, 0], "it was business": [65535, 0], "was business that": [65535, 0], "business that frequently": [65535, 0], "that frequently had": [65535, 0], "frequently had to": [65535, 0], "be done over": [65535, 0], "done over again": [65535, 0], "over again two": [65535, 0], "again two or": [65535, 0], "or three times": [65535, 0], "three times with": [65535, 0], "times with much": [65535, 0], "with much seeming": [65535, 0], "much seeming vexation": [65535, 0], "seeming vexation the": [65535, 0], "vexation the little": [65535, 0], "the little girls": [65535, 0], "little girls showed": [65535, 0], "girls showed off": [65535, 0], "showed off in": [65535, 0], "off in various": [65535, 0], "in various ways": [65535, 0], "various ways and": [65535, 0], "ways and the": [65535, 0], "the little boys": [65535, 0], "little boys showed": [65535, 0], "boys showed off": [65535, 0], "off with such": [65535, 0], "with such diligence": [65535, 0], "such diligence that": [65535, 0], "diligence that the": [65535, 0], "that the air": [65535, 0], "the air was": [65535, 0], "air was thick": [65535, 0], "was thick with": [65535, 0], "thick with paper": [65535, 0], "with paper wads": [65535, 0], "paper wads and": [65535, 0], "wads and the": [65535, 0], "and the murmur": [65535, 0], "the murmur of": [65535, 0], "murmur of scufflings": [65535, 0], "of scufflings and": [65535, 0], "scufflings and above": [65535, 0], "above it all": [65535, 0], "it all the": [65535, 0], "all the great": [65535, 0], "great man sat": [65535, 0], "man sat and": [65535, 0], "sat and beamed": [65535, 0], "and beamed a": [65535, 0], "beamed a majestic": [65535, 0], "a majestic judicial": [65535, 0], "majestic judicial smile": [65535, 0], "judicial smile upon": [65535, 0], "smile upon all": [65535, 0], "upon all the": [65535, 0], "all the house": [65535, 0], "house and warmed": [65535, 0], "and warmed himself": [65535, 0], "warmed himself in": [65535, 0], "himself in the": [65535, 0], "the sun of": [65535, 0], "sun of his": [65535, 0], "of his own": [65535, 0], "his own grandeur": [65535, 0], "own grandeur for": [65535, 0], "grandeur for he": [65535, 0], "showing off too": [65535, 0], "off too there": [65535, 0], "too there was": [65535, 0], "there was only": [65535, 0], "was only one": [65535, 0], "only one thing": [65535, 0], "one thing wanting": [65535, 0], "thing wanting to": [65535, 0], "wanting to make": [65535, 0], "to make mr": [65535, 0], "make mr walters'": [65535, 0], "mr walters' ecstasy": [65535, 0], "walters' ecstasy complete": [65535, 0], "ecstasy complete and": [65535, 0], "complete and that": [65535, 0], "and that was": [65535, 0], "that was a": [65535, 0], "was a chance": [65535, 0], "chance to deliver": [65535, 0], "to deliver a": [65535, 0], "deliver a bible": [65535, 0], "a bible prize": [65535, 0], "bible prize and": [65535, 0], "prize and exhibit": [65535, 0], "and exhibit a": [65535, 0], "exhibit a prodigy": [65535, 0], "a prodigy several": [65535, 0], "prodigy several pupils": [65535, 0], "several pupils had": [65535, 0], "pupils had a": [65535, 0], "had a few": [65535, 0], "a few yellow": [65535, 0], "few yellow tickets": [65535, 0], "yellow tickets but": [65535, 0], "tickets but none": [65535, 0], "but none had": [65535, 0], "none had enough": [65535, 0], "had enough he": [65535, 0], "enough he had": [65535, 0], "had been around": [65535, 0], "been around among": [65535, 0], "around among the": [65535, 0], "among the star": [65535, 0], "the star pupils": [65535, 0], "star pupils inquiring": [65535, 0], "pupils inquiring he": [65535, 0], "inquiring he would": [65535, 0], "would have given": [65535, 0], "have given worlds": [65535, 0], "given worlds now": [65535, 0], "worlds now to": [65535, 0], "now to have": [65535, 0], "to have that": [65535, 0], "have that german": [65535, 0], "that german lad": [65535, 0], "german lad back": [65535, 0], "lad back again": [65535, 0], "back again with": [65535, 0], "again with a": [65535, 0], "with a sound": [65535, 0], "a sound mind": [65535, 0], "sound mind and": [65535, 0], "mind and now": [65535, 0], "and now at": [65535, 0], "now at this": [65535, 0], "at this moment": [65535, 0], "this moment when": [65535, 0], "moment when hope": [65535, 0], "when hope was": [65535, 0], "hope was dead": [65535, 0], "was dead tom": [65535, 0], "dead tom sawyer": [65535, 0], "tom sawyer came": [65535, 0], "sawyer came forward": [65535, 0], "came forward with": [65535, 0], "forward with nine": [65535, 0], "with nine yellow": [65535, 0], "nine yellow tickets": [65535, 0], "yellow tickets nine": [65535, 0], "tickets nine red": [65535, 0], "nine red tickets": [65535, 0], "tickets and ten": [65535, 0], "and ten blue": [65535, 0], "ten blue ones": [65535, 0], "blue ones and": [65535, 0], "ones and demanded": [65535, 0], "and demanded a": [65535, 0], "demanded a bible": [65535, 0], "a bible this": [65535, 0], "bible this was": [65535, 0], "this was a": [65535, 0], "was a thunderbolt": [65535, 0], "a thunderbolt out": [65535, 0], "thunderbolt out of": [65535, 0], "out of a": [65535, 0], "of a clear": [65535, 0], "a clear sky": [65535, 0], "clear sky walters": [65535, 0], "sky walters was": [65535, 0], "walters was not": [65535, 0], "was not expecting": [65535, 0], "not expecting an": [65535, 0], "expecting an application": [65535, 0], "an application from": [65535, 0], "application from this": [65535, 0], "from this source": [65535, 0], "this source for": [65535, 0], "source for the": [65535, 0], "for the next": [65535, 0], "the next ten": [65535, 0], "next ten years": [65535, 0], "ten years but": [65535, 0], "years but there": [65535, 0], "was no getting": [65535, 0], "no getting around": [65535, 0], "getting around it": [65535, 0], "around it here": [65535, 0], "it here were": [65535, 0], "here were the": [65535, 0], "were the certified": [65535, 0], "the certified checks": [65535, 0], "certified checks and": [65535, 0], "checks and they": [65535, 0], "they were good": [65535, 0], "were good for": [65535, 0], "good for their": [65535, 0], "for their face": [65535, 0], "their face tom": [65535, 0], "face tom was": [65535, 0], "tom was therefore": [65535, 0], "was therefore elevated": [65535, 0], "therefore elevated to": [65535, 0], "elevated to a": [65535, 0], "to a place": [65535, 0], "a place with": [65535, 0], "place with the": [65535, 0], "with the judge": [65535, 0], "the judge and": [65535, 0], "judge and the": [65535, 0], "the other elect": [65535, 0], "other elect and": [65535, 0], "elect and the": [65535, 0], "and the great": [65535, 0], "the great news": [65535, 0], "great news was": [65535, 0], "news was announced": [65535, 0], "was announced from": [65535, 0], "announced from headquarters": [65535, 0], "from headquarters it": [65535, 0], "headquarters it was": [65535, 0], "was the most": [65535, 0], "the most stunning": [65535, 0], "most stunning surprise": [65535, 0], "stunning surprise of": [65535, 0], "surprise of the": [65535, 0], "of the decade": [65535, 0], "the decade and": [65535, 0], "decade and so": [65535, 0], "and so profound": [65535, 0], "so profound was": [65535, 0], "profound was the": [65535, 0], "was the sensation": [65535, 0], "the sensation that": [65535, 0], "sensation that it": [65535, 0], "that it lifted": [65535, 0], "it lifted the": [65535, 0], "lifted the new": [65535, 0], "the new hero": [65535, 0], "new hero up": [65535, 0], "hero up to": [65535, 0], "up to the": [65535, 0], "to the judicial": [65535, 0], "the judicial one's": [65535, 0], "judicial one's altitude": [65535, 0], "one's altitude and": [65535, 0], "altitude and the": [65535, 0], "and the school": [65535, 0], "the school had": [65535, 0], "school had two": [65535, 0], "had two marvels": [65535, 0], "two marvels to": [65535, 0], "marvels to gaze": [65535, 0], "to gaze upon": [65535, 0], "gaze upon in": [65535, 0], "upon in place": [65535, 0], "in place of": [65535, 0], "place of one": [65535, 0], "of one the": [65535, 0], "one the boys": [65535, 0], "the boys were": [65535, 0], "boys were all": [65535, 0], "were all eaten": [65535, 0], "all eaten up": [65535, 0], "eaten up with": [65535, 0], "up with envy": [65535, 0], "with envy but": [65535, 0], "envy but those": [65535, 0], "but those that": [65535, 0], "those that suffered": [65535, 0], "that suffered the": [65535, 0], "suffered the bitterest": [65535, 0], "the bitterest pangs": [65535, 0], "bitterest pangs were": [65535, 0], "pangs were those": [65535, 0], "were those who": [65535, 0], "those who perceived": [65535, 0], "who perceived too": [65535, 0], "perceived too late": [65535, 0], "too late that": [65535, 0], "late that they": [65535, 0], "that they themselves": [65535, 0], "they themselves had": [65535, 0], "themselves had contributed": [65535, 0], "had contributed to": [65535, 0], "contributed to this": [65535, 0], "to this hated": [65535, 0], "this hated splendor": [65535, 0], "hated splendor by": [65535, 0], "splendor by trading": [65535, 0], "by trading tickets": [65535, 0], "trading tickets to": [65535, 0], "tickets to tom": [65535, 0], "to tom for": [65535, 0], "tom for the": [65535, 0], "for the wealth": [65535, 0], "the wealth he": [65535, 0], "he had amassed": [65535, 0], "had amassed in": [65535, 0], "amassed in selling": [65535, 0], "in selling whitewashing": [65535, 0], "selling whitewashing privileges": [65535, 0], "whitewashing privileges these": [65535, 0], "privileges these despised": [65535, 0], "these despised themselves": [65535, 0], "despised themselves as": [65535, 0], "themselves as being": [65535, 0], "as being the": [65535, 0], "being the dupes": [65535, 0], "the dupes of": [65535, 0], "dupes of a": [65535, 0], "of a wily": [65535, 0], "a wily fraud": [65535, 0], "wily fraud a": [65535, 0], "fraud a guileful": [65535, 0], "a guileful snake": [65535, 0], "guileful snake in": [65535, 0], "snake in the": [65535, 0], "in the grass": [65535, 0], "the grass the": [65535, 0], "grass the prize": [65535, 0], "the prize was": [65535, 0], "prize was delivered": [65535, 0], "was delivered to": [65535, 0], "delivered to tom": [65535, 0], "to tom with": [65535, 0], "tom with as": [65535, 0], "with as much": [65535, 0], "as much effusion": [65535, 0], "much effusion as": [65535, 0], "effusion as the": [65535, 0], "as the superintendent": [65535, 0], "the superintendent could": [65535, 0], "superintendent could pump": [65535, 0], "could pump up": [65535, 0], "pump up under": [65535, 0], "up under the": [65535, 0], "under the circumstances": [65535, 0], "the circumstances but": [65535, 0], "circumstances but it": [65535, 0], "but it lacked": [65535, 0], "it lacked somewhat": [65535, 0], "lacked somewhat of": [65535, 0], "somewhat of the": [65535, 0], "of the true": [65535, 0], "the true gush": [65535, 0], "true gush for": [65535, 0], "gush for the": [65535, 0], "for the poor": [65535, 0], "the poor fellow's": [65535, 0], "poor fellow's instinct": [65535, 0], "fellow's instinct taught": [65535, 0], "instinct taught him": [65535, 0], "taught him that": [65535, 0], "him that there": [65535, 0], "was a mystery": [65535, 0], "a mystery here": [65535, 0], "mystery here that": [65535, 0], "here that could": [65535, 0], "that could not": [65535, 0], "could not well": [65535, 0], "not well bear": [65535, 0], "well bear the": [65535, 0], "bear the light": [65535, 0], "the light perhaps": [65535, 0], "light perhaps it": [65535, 0], "perhaps it was": [65535, 0], "it was simply": [65535, 0], "was simply preposterous": [65535, 0], "simply preposterous that": [65535, 0], "preposterous that this": [65535, 0], "that this boy": [65535, 0], "this boy had": [65535, 0], "boy had warehoused": [65535, 0], "had warehoused two": [65535, 0], "warehoused two thousand": [65535, 0], "two thousand sheaves": [65535, 0], "thousand sheaves of": [65535, 0], "sheaves of scriptural": [65535, 0], "of scriptural wisdom": [65535, 0], "scriptural wisdom on": [65535, 0], "wisdom on his": [65535, 0], "on his premises": [65535, 0], "his premises a": [65535, 0], "premises a dozen": [65535, 0], "a dozen would": [65535, 0], "dozen would strain": [65535, 0], "would strain his": [65535, 0], "strain his capacity": [65535, 0], "his capacity without": [65535, 0], "capacity without a": [65535, 0], "without a doubt": [65535, 0], "a doubt amy": [65535, 0], "doubt amy lawrence": [65535, 0], "amy lawrence was": [65535, 0], "lawrence was proud": [65535, 0], "was proud and": [65535, 0], "proud and glad": [65535, 0], "and glad and": [65535, 0], "glad and she": [65535, 0], "and she tried": [65535, 0], "she tried to": [65535, 0], "tried to make": [65535, 0], "to make tom": [65535, 0], "make tom see": [65535, 0], "tom see it": [65535, 0], "see it in": [65535, 0], "it in her": [65535, 0], "in her face": [65535, 0], "her face but": [65535, 0], "face but he": [65535, 0], "but he wouldn't": [65535, 0], "he wouldn't look": [65535, 0], "wouldn't look she": [65535, 0], "look she wondered": [65535, 0], "she wondered then": [65535, 0], "wondered then she": [65535, 0], "then she was": [65535, 0], "she was just": [65535, 0], "was just a": [65535, 0], "just a grain": [65535, 0], "a grain troubled": [65535, 0], "grain troubled next": [65535, 0], "troubled next a": [65535, 0], "next a dim": [65535, 0], "a dim suspicion": [65535, 0], "dim suspicion came": [65535, 0], "suspicion came and": [65535, 0], "and went came": [65535, 0], "went came again": [65535, 0], "came again she": [65535, 0], "again she watched": [65535, 0], "she watched a": [65535, 0], "watched a furtive": [65535, 0], "a furtive glance": [65535, 0], "furtive glance told": [65535, 0], "glance told her": [65535, 0], "told her worlds": [65535, 0], "her worlds and": [65535, 0], "worlds and then": [65535, 0], "and then her": [65535, 0], "then her heart": [65535, 0], "her heart broke": [65535, 0], "heart broke and": [65535, 0], "broke and she": [65535, 0], "and she was": [65535, 0], "she was jealous": [65535, 0], "was jealous and": [65535, 0], "jealous and angry": [65535, 0], "and angry and": [65535, 0], "angry and the": [65535, 0], "and the tears": [65535, 0], "the tears came": [65535, 0], "tears came and": [65535, 0], "came and she": [65535, 0], "and she hated": [65535, 0], "she hated everybody": [65535, 0], "hated everybody tom": [65535, 0], "everybody tom most": [65535, 0], "tom most of": [65535, 0], "most of all": [65535, 0], "of all she": [65535, 0], "all she thought": [65535, 0], "she thought tom": [65535, 0], "thought tom was": [65535, 0], "tom was introduced": [65535, 0], "was introduced to": [65535, 0], "introduced to the": [65535, 0], "to the judge": [65535, 0], "the judge but": [65535, 0], "judge but his": [65535, 0], "but his tongue": [65535, 0], "his tongue was": [65535, 0], "tongue was tied": [65535, 0], "was tied his": [65535, 0], "tied his breath": [65535, 0], "his breath would": [65535, 0], "breath would hardly": [65535, 0], "would hardly come": [65535, 0], "hardly come his": [65535, 0], "come his heart": [65535, 0], "his heart quaked": [65535, 0], "heart quaked partly": [65535, 0], "quaked partly because": [65535, 0], "partly because of": [65535, 0], "because of the": [65535, 0], "of the awful": [65535, 0], "the awful greatness": [65535, 0], "awful greatness of": [65535, 0], "greatness of the": [65535, 0], "of the man": [65535, 0], "the man but": [65535, 0], "man but mainly": [65535, 0], "but mainly because": [65535, 0], "mainly because he": [65535, 0], "he was her": [65535, 0], "was her parent": [65535, 0], "her parent he": [65535, 0], "parent he would": [65535, 0], "would have liked": [65535, 0], "have liked to": [65535, 0], "liked to fall": [65535, 0], "to fall down": [65535, 0], "fall down and": [65535, 0], "down and worship": [65535, 0], "and worship him": [65535, 0], "worship him if": [65535, 0], "him if it": [65535, 0], "if it were": [32706, 32829], "it were in": [65535, 0], "were in the": [65535, 0], "the dark the": [65535, 0], "dark the judge": [65535, 0], "the judge put": [65535, 0], "judge put his": [65535, 0], "put his hand": [65535, 0], "his hand on": [65535, 0], "hand on tom's": [65535, 0], "on tom's head": [65535, 0], "tom's head and": [65535, 0], "head and called": [65535, 0], "and called him": [65535, 0], "called him a": [65535, 0], "him a fine": [65535, 0], "a fine little": [65535, 0], "fine little man": [65535, 0], "little man and": [65535, 0], "man and asked": [65535, 0], "and asked him": [65535, 0], "asked him what": [65535, 0], "him what his": [65535, 0], "what his name": [65535, 0], "name was the": [65535, 0], "was the boy": [65535, 0], "the boy stammered": [65535, 0], "boy stammered gasped": [65535, 0], "stammered gasped and": [65535, 0], "gasped and got": [65535, 0], "it out tom": [65535, 0], "out tom oh": [65535, 0], "tom oh no": [65535, 0], "oh no not": [65535, 0], "no not tom": [65535, 0], "not tom it": [65535, 0], "tom it is": [65535, 0], "it is thomas": [65535, 0], "is thomas ah": [65535, 0], "thomas ah that's": [65535, 0], "ah that's it": [65535, 0], "that's it i": [65535, 0], "it i thought": [65535, 0], "i thought there": [65535, 0], "thought there was": [65535, 0], "there was more": [65535, 0], "was more to": [65535, 0], "more to it": [65535, 0], "to it maybe": [65535, 0], "it maybe that's": [65535, 0], "maybe that's very": [65535, 0], "that's very well": [65535, 0], "very well but": [65535, 0], "well but you've": [65535, 0], "but you've another": [65535, 0], "you've another one": [65535, 0], "another one i": [65535, 0], "one i daresay": [65535, 0], "i daresay and": [65535, 0], "daresay and you'll": [65535, 0], "and you'll tell": [32706, 32829], "you'll tell it": [65535, 0], "tell it to": [65535, 0], "it to me": [65535, 0], "to me won't": [65535, 0], "me won't you": [65535, 0], "won't you tell": [65535, 0], "you tell the": [65535, 0], "tell the gentleman": [65535, 0], "the gentleman your": [65535, 0], "gentleman your other": [65535, 0], "your other name": [65535, 0], "other name thomas": [65535, 0], "name thomas said": [65535, 0], "thomas said walters": [65535, 0], "said walters and": [65535, 0], "walters and say": [65535, 0], "and say sir": [65535, 0], "say sir you": [65535, 0], "sir you mustn't": [65535, 0], "you mustn't forget": [65535, 0], "mustn't forget your": [65535, 0], "forget your manners": [65535, 0], "your manners thomas": [65535, 0], "manners thomas sawyer": [65535, 0], "thomas sawyer sir": [65535, 0], "sawyer sir that's": [65535, 0], "sir that's it": [65535, 0], "that's it that's": [65535, 0], "it that's a": [65535, 0], "good boy fine": [65535, 0], "boy fine boy": [65535, 0], "fine boy fine": [65535, 0], "boy fine manly": [65535, 0], "fine manly little": [65535, 0], "manly little fellow": [65535, 0], "little fellow two": [65535, 0], "fellow two thousand": [65535, 0], "thousand verses is": [65535, 0], "verses is a": [65535, 0], "is a great": [65535, 0], "great many very": [65535, 0], "many very very": [65535, 0], "very very great": [65535, 0], "very great many": [65535, 0], "great many and": [65535, 0], "many and you": [65535, 0], "and you never": [65535, 0], "you never can": [65535, 0], "never can be": [65535, 0], "can be sorry": [65535, 0], "be sorry for": [65535, 0], "sorry for the": [65535, 0], "for the trouble": [65535, 0], "the trouble you": [65535, 0], "trouble you took": [65535, 0], "you took to": [65535, 0], "took to learn": [65535, 0], "to learn them": [65535, 0], "learn them for": [65535, 0], "them for knowledge": [65535, 0], "for knowledge is": [65535, 0], "knowledge is worth": [65535, 0], "is worth more": [65535, 0], "worth more than": [65535, 0], "more than anything": [65535, 0], "than anything there": [65535, 0], "anything there is": [65535, 0], "there is in": [65535, 0], "is in the": [65535, 0], "in the world": [65535, 0], "the world it's": [65535, 0], "world it's what": [65535, 0], "it's what makes": [65535, 0], "what makes great": [65535, 0], "makes great men": [65535, 0], "great men and": [65535, 0], "men and good": [65535, 0], "and good men": [65535, 0], "good men you'll": [65535, 0], "men you'll be": [65535, 0], "you'll be a": [65535, 0], "be a great": [65535, 0], "a great man": [65535, 0], "and a good": [65535, 0], "a good man": [65535, 0], "good man yourself": [65535, 0], "man yourself some": [65535, 0], "yourself some day": [65535, 0], "some day thomas": [65535, 0], "day thomas and": [65535, 0], "thomas and then": [65535, 0], "and then you'll": [65535, 0], "then you'll look": [65535, 0], "you'll look back": [65535, 0], "look back and": [65535, 0], "back and say": [65535, 0], "and say it's": [65535, 0], "say it's all": [65535, 0], "it's all owing": [65535, 0], "all owing to": [65535, 0], "owing to the": [65535, 0], "to the precious": [65535, 0], "the precious sunday": [65535, 0], "precious sunday school": [65535, 0], "sunday school privileges": [65535, 0], "school privileges of": [65535, 0], "privileges of my": [65535, 0], "of my boyhood": [65535, 0], "my boyhood it's": [65535, 0], "boyhood it's all": [65535, 0], "owing to my": [65535, 0], "to my dear": [65535, 0], "my dear teachers": [65535, 0], "dear teachers that": [65535, 0], "teachers that taught": [65535, 0], "that taught me": [65535, 0], "taught me to": [65535, 0], "me to learn": [65535, 0], "to learn it's": [65535, 0], "learn it's all": [65535, 0], "to the good": [65535, 0], "the good superintendent": [65535, 0], "good superintendent who": [65535, 0], "superintendent who encouraged": [65535, 0], "who encouraged me": [65535, 0], "encouraged me and": [65535, 0], "me and watched": [65535, 0], "and watched over": [65535, 0], "watched over me": [65535, 0], "over me and": [65535, 0], "me and gave": [65535, 0], "and gave me": [65535, 0], "gave me a": [65535, 0], "me a beautiful": [65535, 0], "a beautiful bible": [65535, 0], "beautiful bible a": [65535, 0], "bible a splendid": [65535, 0], "a splendid elegant": [65535, 0], "splendid elegant bible": [65535, 0], "elegant bible to": [65535, 0], "bible to keep": [65535, 0], "to keep and": [65535, 0], "keep and have": [65535, 0], "and have it": [65535, 0], "have it all": [65535, 0], "it all for": [65535, 0], "all for my": [65535, 0], "for my own": [65535, 0], "my own always": [65535, 0], "own always it's": [65535, 0], "always it's all": [65535, 0], "owing to right": [65535, 0], "to right bringing": [65535, 0], "right bringing up": [65535, 0], "bringing up that": [65535, 0], "up that is": [65535, 0], "that is what": [65535, 0], "is what you": [65535, 0], "what you will": [32706, 32829], "you will say": [65535, 0], "will say thomas": [65535, 0], "say thomas and": [65535, 0], "thomas and you": [65535, 0], "and you wouldn't": [65535, 0], "you wouldn't take": [65535, 0], "wouldn't take any": [65535, 0], "take any money": [65535, 0], "any money for": [65535, 0], "money for those": [65535, 0], "for those two": [65535, 0], "those two thousand": [65535, 0], "thousand verses no": [65535, 0], "verses no indeed": [65535, 0], "no indeed you": [65535, 0], "indeed you wouldn't": [65535, 0], "you wouldn't and": [65535, 0], "wouldn't and now": [65535, 0], "and now you": [65535, 0], "now you wouldn't": [65535, 0], "you wouldn't mind": [65535, 0], "wouldn't mind telling": [65535, 0], "mind telling me": [65535, 0], "telling me and": [65535, 0], "me and this": [32706, 32829], "and this lady": [65535, 0], "this lady some": [65535, 0], "lady some of": [65535, 0], "some of the": [65535, 0], "of the things": [65535, 0], "the things you've": [65535, 0], "things you've learned": [65535, 0], "you've learned no": [65535, 0], "learned no i": [65535, 0], "no i know": [65535, 0], "i know you": [32706, 32829], "know you wouldn't": [65535, 0], "you wouldn't for": [65535, 0], "wouldn't for we": [65535, 0], "for we are": [65535, 0], "we are proud": [65535, 0], "are proud of": [65535, 0], "proud of little": [65535, 0], "of little boys": [65535, 0], "little boys that": [65535, 0], "boys that learn": [65535, 0], "that learn now": [65535, 0], "learn now no": [65535, 0], "now no doubt": [65535, 0], "no doubt you": [65535, 0], "doubt you know": [65535, 0], "you know the": [65535, 0], "know the names": [65535, 0], "the names of": [65535, 0], "names of all": [65535, 0], "all the twelve": [65535, 0], "the twelve disciples": [65535, 0], "twelve disciples won't": [65535, 0], "disciples won't you": [65535, 0], "you tell us": [65535, 0], "tell us the": [65535, 0], "us the names": [65535, 0], "names of the": [65535, 0], "of the first": [65535, 0], "the first two": [65535, 0], "first two that": [65535, 0], "two that were": [65535, 0], "that were appointed": [65535, 0], "were appointed tom": [65535, 0], "appointed tom was": [65535, 0], "tom was tugging": [65535, 0], "was tugging at": [65535, 0], "tugging at a": [65535, 0], "at a button": [65535, 0], "a button hole": [65535, 0], "button hole and": [65535, 0], "hole and looking": [65535, 0], "and looking sheepish": [65535, 0], "looking sheepish he": [65535, 0], "sheepish he blushed": [65535, 0], "he blushed now": [65535, 0], "blushed now and": [65535, 0], "now and his": [65535, 0], "and his eyes": [65535, 0], "his eyes fell": [65535, 0], "eyes fell mr": [65535, 0], "fell mr walters'": [65535, 0], "mr walters' heart": [65535, 0], "walters' heart sank": [65535, 0], "heart sank within": [65535, 0], "sank within him": [65535, 0], "within him he": [65535, 0], "him he said": [65535, 0], "to himself it": [65535, 0], "himself it is": [65535, 0], "is not possible": [65535, 0], "not possible that": [65535, 0], "possible that the": [65535, 0], "that the boy": [65535, 0], "the boy can": [65535, 0], "boy can answer": [65535, 0], "can answer the": [65535, 0], "answer the simplest": [65535, 0], "the simplest question": [65535, 0], "simplest question why": [65535, 0], "question why did": [65535, 0], "why did the": [65535, 0], "did the judge": [65535, 0], "the judge ask": [65535, 0], "judge ask him": [65535, 0], "ask him yet": [65535, 0], "him yet he": [65535, 0], "yet he felt": [65535, 0], "he felt obliged": [65535, 0], "felt obliged to": [65535, 0], "obliged to speak": [65535, 0], "to speak up": [65535, 0], "speak up and": [65535, 0], "up and say": [65535, 0], "and say answer": [65535, 0], "say answer the": [65535, 0], "answer the gentleman": [65535, 0], "the gentleman thomas": [65535, 0], "gentleman thomas don't": [65535, 0], "thomas don't be": [65535, 0], "don't be afraid": [65535, 0], "be afraid tom": [65535, 0], "afraid tom still": [65535, 0], "tom still hung": [65535, 0], "still hung fire": [65535, 0], "hung fire now": [65535, 0], "fire now i": [65535, 0], "now i know": [65535, 0], "i know you'll": [65535, 0], "know you'll tell": [65535, 0], "you'll tell me": [32706, 32829], "tell me said": [65535, 0], "me said the": [65535, 0], "said the lady": [65535, 0], "the lady the": [65535, 0], "lady the names": [65535, 0], "first two disciples": [65535, 0], "two disciples were": [65535, 0], "disciples were david": [65535, 0], "were david and": [65535, 0], "david and goliath": [65535, 0], "and goliath let": [65535, 0], "goliath let us": [65535, 0], "let us draw": [65535, 0], "us draw the": [65535, 0], "draw the curtain": [65535, 0], "the curtain of": [65535, 0], "curtain of charity": [65535, 0], "of charity over": [65535, 0], "charity over the": [65535, 0], "over the rest": [65535, 0], "of the scene": [65535, 0], "the sun rose upon": [65535, 0], "sun rose upon a": [65535, 0], "rose upon a tranquil": [65535, 0], "upon a tranquil world": [65535, 0], "a tranquil world and": [65535, 0], "tranquil world and beamed": [65535, 0], "world and beamed down": [65535, 0], "and beamed down upon": [65535, 0], "beamed down upon the": [65535, 0], "down upon the peaceful": [65535, 0], "upon the peaceful village": [65535, 0], "the peaceful village like": [65535, 0], "peaceful village like a": [65535, 0], "village like a benediction": [65535, 0], "like a benediction breakfast": [65535, 0], "a benediction breakfast over": [65535, 0], "benediction breakfast over aunt": [65535, 0], "breakfast over aunt polly": [65535, 0], "over aunt polly had": [65535, 0], "aunt polly had family": [65535, 0], "polly had family worship": [65535, 0], "had family worship it": [65535, 0], "family worship it began": [65535, 0], "worship it began with": [65535, 0], "it began with a": [65535, 0], "began with a prayer": [65535, 0], "with a prayer built": [65535, 0], "a prayer built from": [65535, 0], "prayer built from the": [65535, 0], "built from the ground": [65535, 0], "from the ground up": [65535, 0], "the ground up of": [65535, 0], "ground up of solid": [65535, 0], "up of solid courses": [65535, 0], "of solid courses of": [65535, 0], "solid courses of scriptural": [65535, 0], "courses of scriptural quotations": [65535, 0], "of scriptural quotations welded": [65535, 0], "scriptural quotations welded together": [65535, 0], "quotations welded together with": [65535, 0], "welded together with a": [65535, 0], "together with a thin": [65535, 0], "with a thin mortar": [65535, 0], "a thin mortar of": [65535, 0], "thin mortar of originality": [65535, 0], "mortar of originality and": [65535, 0], "of originality and from": [65535, 0], "originality and from the": [65535, 0], "and from the summit": [65535, 0], "from the summit of": [65535, 0], "the summit of this": [65535, 0], "summit of this she": [65535, 0], "of this she delivered": [65535, 0], "this she delivered a": [65535, 0], "she delivered a grim": [65535, 0], "delivered a grim chapter": [65535, 0], "a grim chapter of": [65535, 0], "grim chapter of the": [65535, 0], "chapter of the mosaic": [65535, 0], "of the mosaic law": [65535, 0], "the mosaic law as": [65535, 0], "mosaic law as from": [65535, 0], "law as from sinai": [65535, 0], "as from sinai then": [65535, 0], "from sinai then tom": [65535, 0], "sinai then tom girded": [65535, 0], "then tom girded up": [65535, 0], "tom girded up his": [65535, 0], "girded up his loins": [65535, 0], "up his loins so": [65535, 0], "his loins so to": [65535, 0], "loins so to speak": [65535, 0], "so to speak and": [65535, 0], "to speak and went": [65535, 0], "speak and went to": [65535, 0], "and went to work": [65535, 0], "went to work to": [65535, 0], "to work to get": [65535, 0], "work to get his": [65535, 0], "to get his verses": [65535, 0], "get his verses sid": [65535, 0], "his verses sid had": [65535, 0], "verses sid had learned": [65535, 0], "sid had learned his": [65535, 0], "had learned his lesson": [65535, 0], "learned his lesson days": [65535, 0], "his lesson days before": [65535, 0], "lesson days before tom": [65535, 0], "days before tom bent": [65535, 0], "before tom bent all": [65535, 0], "tom bent all his": [65535, 0], "bent all his energies": [65535, 0], "all his energies to": [65535, 0], "his energies to the": [65535, 0], "energies to the memorizing": [65535, 0], "to the memorizing of": [65535, 0], "the memorizing of five": [65535, 0], "memorizing of five verses": [65535, 0], "of five verses and": [65535, 0], "five verses and he": [65535, 0], "verses and he chose": [65535, 0], "and he chose part": [65535, 0], "he chose part of": [65535, 0], "chose part of the": [65535, 0], "part of the sermon": [65535, 0], "of the sermon on": [65535, 0], "the sermon on the": [65535, 0], "sermon on the mount": [65535, 0], "on the mount because": [65535, 0], "the mount because he": [65535, 0], "mount because he could": [65535, 0], "because he could find": [65535, 0], "he could find no": [65535, 0], "could find no verses": [65535, 0], "find no verses that": [65535, 0], "no verses that were": [65535, 0], "verses that were shorter": [65535, 0], "that were shorter at": [65535, 0], "were shorter at the": [65535, 0], "shorter at the end": [65535, 0], "at the end of": [65535, 0], "the end of half": [65535, 0], "end of half an": [65535, 0], "of half an hour": [65535, 0], "half an hour tom": [65535, 0], "an hour tom had": [65535, 0], "hour tom had a": [65535, 0], "tom had a vague": [65535, 0], "had a vague general": [65535, 0], "a vague general idea": [65535, 0], "vague general idea of": [65535, 0], "general idea of his": [65535, 0], "idea of his lesson": [65535, 0], "of his lesson but": [65535, 0], "his lesson but no": [65535, 0], "lesson but no more": [65535, 0], "but no more for": [65535, 0], "no more for his": [65535, 0], "more for his mind": [65535, 0], "for his mind was": [65535, 0], "his mind was traversing": [65535, 0], "mind was traversing the": [65535, 0], "was traversing the whole": [65535, 0], "traversing the whole field": [65535, 0], "the whole field of": [65535, 0], "whole field of human": [65535, 0], "field of human thought": [65535, 0], "of human thought and": [65535, 0], "human thought and his": [65535, 0], "thought and his hands": [65535, 0], "and his hands were": [65535, 0], "his hands were busy": [65535, 0], "hands were busy with": [65535, 0], "were busy with distracting": [65535, 0], "busy with distracting recreations": [65535, 0], "with distracting recreations mary": [65535, 0], "distracting recreations mary took": [65535, 0], "recreations mary took his": [65535, 0], "mary took his book": [65535, 0], "took his book to": [65535, 0], "his book to hear": [65535, 0], "book to hear him": [65535, 0], "to hear him recite": [65535, 0], "hear him recite and": [65535, 0], "him recite and he": [65535, 0], "recite and he tried": [65535, 0], "and he tried to": [65535, 0], "he tried to find": [65535, 0], "tried to find his": [65535, 0], "to find his way": [65535, 0], "find his way through": [65535, 0], "his way through the": [65535, 0], "way through the fog": [65535, 0], "through the fog blessed": [65535, 0], "the fog blessed are": [65535, 0], "fog blessed are the": [65535, 0], "blessed are the a": [65535, 0], "are the a a": [65535, 0], "the a a poor": [65535, 0], "a a poor yes": [65535, 0], "a poor yes poor": [65535, 0], "poor yes poor blessed": [65535, 0], "yes poor blessed are": [65535, 0], "poor blessed are the": [65535, 0], "blessed are the poor": [65535, 0], "are the poor a": [65535, 0], "the poor a a": [65535, 0], "poor a a in": [65535, 0], "a a in spirit": [65535, 0], "a in spirit in": [65535, 0], "in spirit in spirit": [65535, 0], "spirit in spirit blessed": [65535, 0], "in spirit blessed are": [65535, 0], "spirit blessed are the": [65535, 0], "are the poor in": [65535, 0], "the poor in spirit": [65535, 0], "poor in spirit for": [65535, 0], "in spirit for they": [65535, 0], "spirit for they they": [65535, 0], "for they they theirs": [65535, 0], "they they theirs for": [65535, 0], "they theirs for theirs": [65535, 0], "theirs for theirs blessed": [65535, 0], "for theirs blessed are": [65535, 0], "theirs blessed are the": [65535, 0], "in spirit for theirs": [65535, 0], "spirit for theirs is": [65535, 0], "for theirs is the": [65535, 0], "theirs is the kingdom": [65535, 0], "is the kingdom of": [65535, 0], "the kingdom of heaven": [65535, 0], "kingdom of heaven blessed": [65535, 0], "of heaven blessed are": [65535, 0], "heaven blessed are they": [65535, 0], "blessed are they that": [65535, 0], "are they that mourn": [65535, 0], "they that mourn for": [65535, 0], "that mourn for they": [65535, 0], "mourn for they they": [65535, 0], "for they they sh": [65535, 0], "they they sh for": [65535, 0], "they sh for they": [65535, 0], "sh for they a": [65535, 0], "for they a s": [65535, 0], "they a s h": [65535, 0], "a s h a": [65535, 0], "s h a for": [65535, 0], "h a for they": [65535, 0], "a for they s": [65535, 0], "for they s h": [65535, 0], "they s h oh": [65535, 0], "s h oh i": [65535, 0], "h oh i don't": [65535, 0], "oh i don't know": [65535, 0], "i don't know what": [65535, 0], "don't know what it": [65535, 0], "know what it is": [65535, 0], "what it is shall": [65535, 0], "it is shall oh": [65535, 0], "is shall oh shall": [65535, 0], "shall oh shall for": [65535, 0], "oh shall for they": [65535, 0], "shall for they shall": [65535, 0], "for they shall for": [65535, 0], "they shall for they": [65535, 0], "for they shall a": [65535, 0], "they shall a a": [65535, 0], "shall a a shall": [65535, 0], "a a shall mourn": [65535, 0], "a shall mourn a": [65535, 0], "shall mourn a a": [65535, 0], "mourn a a blessed": [65535, 0], "a a blessed are": [65535, 0], "a blessed are they": [65535, 0], "are they that shall": [65535, 0], "they that shall they": [65535, 0], "that shall they that": [65535, 0], "shall they that a": [65535, 0], "they that a they": [65535, 0], "that a they that": [65535, 0], "a they that shall": [65535, 0], "they that shall mourn": [65535, 0], "that shall mourn for": [65535, 0], "shall mourn for they": [65535, 0], "mourn for they shall": [65535, 0], "they shall a shall": [65535, 0], "shall a shall what": [65535, 0], "a shall what why": [65535, 0], "shall what why don't": [65535, 0], "what why don't you": [65535, 0], "why don't you tell": [65535, 0], "don't you tell me": [65535, 0], "you tell me mary": [65535, 0], "tell me mary what": [65535, 0], "me mary what do": [65535, 0], "mary what do you": [65535, 0], "what do you want": [65535, 0], "do you want to": [65535, 0], "you want to be": [65535, 0], "want to be so": [65535, 0], "to be so mean": [65535, 0], "be so mean for": [65535, 0], "so mean for oh": [65535, 0], "mean for oh tom": [65535, 0], "for oh tom you": [65535, 0], "oh tom you poor": [65535, 0], "tom you poor thick": [65535, 0], "you poor thick headed": [65535, 0], "poor thick headed thing": [65535, 0], "thick headed thing i'm": [65535, 0], "headed thing i'm not": [65535, 0], "thing i'm not teasing": [65535, 0], "i'm not teasing you": [65535, 0], "not teasing you i": [65535, 0], "teasing you i wouldn't": [65535, 0], "you i wouldn't do": [65535, 0], "i wouldn't do that": [65535, 0], "wouldn't do that you": [65535, 0], "do that you must": [65535, 0], "that you must go": [65535, 0], "you must go and": [65535, 0], "must go and learn": [65535, 0], "go and learn it": [65535, 0], "and learn it again": [65535, 0], "learn it again don't": [65535, 0], "it again don't you": [65535, 0], "again don't you be": [65535, 0], "don't you be discouraged": [65535, 0], "you be discouraged tom": [65535, 0], "be discouraged tom you'll": [65535, 0], "discouraged tom you'll manage": [65535, 0], "tom you'll manage it": [65535, 0], "you'll manage it and": [65535, 0], "manage it and if": [65535, 0], "it and if you": [65535, 0], "and if you do": [65535, 0], "if you do i'll": [65535, 0], "you do i'll give": [65535, 0], "do i'll give you": [65535, 0], "i'll give you something": [65535, 0], "give you something ever": [65535, 0], "you something ever so": [65535, 0], "something ever so nice": [65535, 0], "ever so nice there": [65535, 0], "so nice there now": [65535, 0], "nice there now that's": [65535, 0], "there now that's a": [65535, 0], "now that's a good": [65535, 0], "that's a good boy": [65535, 0], "a good boy all": [65535, 0], "good boy all right": [65535, 0], "boy all right what": [65535, 0], "all right what is": [65535, 0], "right what is it": [65535, 0], "what is it mary": [65535, 0], "is it mary tell": [65535, 0], "it mary tell me": [65535, 0], "mary tell me what": [65535, 0], "tell me what it": [65535, 0], "me what it is": [65535, 0], "what it is never": [65535, 0], "it is never you": [65535, 0], "is never you mind": [65535, 0], "never you mind tom": [65535, 0], "you mind tom you": [65535, 0], "mind tom you know": [65535, 0], "tom you know if": [65535, 0], "you know if i": [65535, 0], "know if i say": [65535, 0], "if i say it's": [65535, 0], "i say it's nice": [65535, 0], "say it's nice it": [65535, 0], "it's nice it is": [65535, 0], "nice it is nice": [65535, 0], "it is nice you": [65535, 0], "is nice you bet": [65535, 0], "nice you bet you": [65535, 0], "you bet you that's": [65535, 0], "bet you that's so": [65535, 0], "you that's so mary": [65535, 0], "that's so mary all": [65535, 0], "so mary all right": [65535, 0], "mary all right i'll": [65535, 0], "all right i'll tackle": [65535, 0], "right i'll tackle it": [65535, 0], "i'll tackle it again": [65535, 0], "tackle it again and": [65535, 0], "it again and he": [65535, 0], "again and he did": [65535, 0], "and he did tackle": [65535, 0], "he did tackle it": [65535, 0], "did tackle it again": [65535, 0], "it again and under": [65535, 0], "again and under the": [65535, 0], "and under the double": [65535, 0], "under the double pressure": [65535, 0], "the double pressure of": [65535, 0], "double pressure of curiosity": [65535, 0], "pressure of curiosity and": [65535, 0], "of curiosity and prospective": [65535, 0], "curiosity and prospective gain": [65535, 0], "and prospective gain he": [65535, 0], "prospective gain he did": [65535, 0], "gain he did it": [65535, 0], "he did it with": [65535, 0], "did it with such": [65535, 0], "it with such spirit": [65535, 0], "with such spirit that": [65535, 0], "such spirit that he": [65535, 0], "spirit that he accomplished": [65535, 0], "that he accomplished a": [65535, 0], "he accomplished a shining": [65535, 0], "accomplished a shining success": [65535, 0], "a shining success mary": [65535, 0], "shining success mary gave": [65535, 0], "success mary gave him": [65535, 0], "mary gave him a": [65535, 0], "gave him a brand": [65535, 0], "him a brand new": [65535, 0], "a brand new barlow": [65535, 0], "brand new barlow knife": [65535, 0], "new barlow knife worth": [65535, 0], "barlow knife worth twelve": [65535, 0], "knife worth twelve and": [65535, 0], "worth twelve and a": [65535, 0], "twelve and a half": [65535, 0], "and a half cents": [65535, 0], "a half cents and": [65535, 0], "half cents and the": [65535, 0], "cents and the convulsion": [65535, 0], "and the convulsion of": [65535, 0], "the convulsion of delight": [65535, 0], "convulsion of delight that": [65535, 0], "of delight that swept": [65535, 0], "delight that swept his": [65535, 0], "that swept his system": [65535, 0], "swept his system shook": [65535, 0], "his system shook him": [65535, 0], "system shook him to": [65535, 0], "shook him to his": [65535, 0], "him to his foundations": [65535, 0], "to his foundations true": [65535, 0], "his foundations true the": [65535, 0], "foundations true the knife": [65535, 0], "true the knife would": [65535, 0], "the knife would not": [65535, 0], "knife would not cut": [65535, 0], "would not cut anything": [65535, 0], "not cut anything but": [65535, 0], "cut anything but it": [65535, 0], "anything but it was": [65535, 0], "but it was a": [65535, 0], "it was a sure": [65535, 0], "was a sure enough": [65535, 0], "a sure enough barlow": [65535, 0], "sure enough barlow and": [65535, 0], "enough barlow and there": [65535, 0], "barlow and there was": [65535, 0], "and there was inconceivable": [65535, 0], "there was inconceivable grandeur": [65535, 0], "was inconceivable grandeur in": [65535, 0], "inconceivable grandeur in that": [65535, 0], "grandeur in that though": [65535, 0], "in that though where": [65535, 0], "that though where the": [65535, 0], "though where the western": [65535, 0], "where the western boys": [65535, 0], "the western boys ever": [65535, 0], "western boys ever got": [65535, 0], "boys ever got the": [65535, 0], "ever got the idea": [65535, 0], "got the idea that": [65535, 0], "the idea that such": [65535, 0], "idea that such a": [65535, 0], "that such a weapon": [65535, 0], "such a weapon could": [65535, 0], "a weapon could possibly": [65535, 0], "weapon could possibly be": [65535, 0], "could possibly be counterfeited": [65535, 0], "possibly be counterfeited to": [65535, 0], "be counterfeited to its": [65535, 0], "counterfeited to its injury": [65535, 0], "to its injury is": [65535, 0], "its injury is an": [65535, 0], "injury is an imposing": [65535, 0], "is an imposing mystery": [65535, 0], "an imposing mystery and": [65535, 0], "imposing mystery and will": [65535, 0], "mystery and will always": [65535, 0], "and will always remain": [65535, 0], "will always remain so": [65535, 0], "always remain so perhaps": [65535, 0], "remain so perhaps tom": [65535, 0], "so perhaps tom contrived": [65535, 0], "perhaps tom contrived to": [65535, 0], "tom contrived to scarify": [65535, 0], "contrived to scarify the": [65535, 0], "to scarify the cupboard": [65535, 0], "scarify the cupboard with": [65535, 0], "the cupboard with it": [65535, 0], "cupboard with it and": [65535, 0], "with it and was": [65535, 0], "it and was arranging": [65535, 0], "and was arranging to": [65535, 0], "was arranging to begin": [65535, 0], "arranging to begin on": [65535, 0], "to begin on the": [65535, 0], "begin on the bureau": [65535, 0], "on the bureau when": [65535, 0], "the bureau when he": [65535, 0], "bureau when he was": [65535, 0], "when he was called": [65535, 0], "he was called off": [65535, 0], "was called off to": [65535, 0], "called off to dress": [65535, 0], "off to dress for": [65535, 0], "to dress for sunday": [65535, 0], "dress for sunday school": [65535, 0], "for sunday school mary": [65535, 0], "sunday school mary gave": [65535, 0], "school mary gave him": [65535, 0], "gave him a tin": [65535, 0], "him a tin basin": [65535, 0], "a tin basin of": [65535, 0], "tin basin of water": [65535, 0], "basin of water and": [65535, 0], "of water and a": [65535, 0], "water and a piece": [65535, 0], "and a piece of": [65535, 0], "a piece of soap": [65535, 0], "piece of soap and": [65535, 0], "of soap and he": [65535, 0], "soap and he went": [65535, 0], "and he went outside": [65535, 0], "he went outside the": [65535, 0], "went outside the door": [65535, 0], "outside the door and": [65535, 0], "the door and set": [65535, 0], "door and set the": [65535, 0], "and set the basin": [65535, 0], "set the basin on": [65535, 0], "the basin on a": [65535, 0], "basin on a little": [65535, 0], "on a little bench": [65535, 0], "a little bench there": [65535, 0], "little bench there then": [65535, 0], "bench there then he": [65535, 0], "there then he dipped": [65535, 0], "then he dipped the": [65535, 0], "he dipped the soap": [65535, 0], "dipped the soap in": [65535, 0], "the soap in the": [65535, 0], "soap in the water": [65535, 0], "in the water and": [65535, 0], "the water and laid": [65535, 0], "water and laid it": [65535, 0], "and laid it down": [65535, 0], "laid it down turned": [65535, 0], "it down turned up": [65535, 0], "down turned up his": [65535, 0], "turned up his sleeves": [65535, 0], "up his sleeves poured": [65535, 0], "his sleeves poured out": [65535, 0], "sleeves poured out the": [65535, 0], "poured out the water": [65535, 0], "out the water on": [65535, 0], "the water on the": [65535, 0], "water on the ground": [65535, 0], "on the ground gently": [65535, 0], "the ground gently and": [65535, 0], "ground gently and then": [65535, 0], "gently and then entered": [65535, 0], "and then entered the": [65535, 0], "then entered the kitchen": [65535, 0], "entered the kitchen and": [65535, 0], "the kitchen and began": [65535, 0], "kitchen and began to": [65535, 0], "and began to wipe": [65535, 0], "began to wipe his": [65535, 0], "to wipe his face": [65535, 0], "wipe his face diligently": [65535, 0], "his face diligently on": [65535, 0], "face diligently on the": [65535, 0], "diligently on the towel": [65535, 0], "on the towel behind": [65535, 0], "the towel behind the": [65535, 0], "towel behind the door": [65535, 0], "behind the door but": [65535, 0], "the door but mary": [65535, 0], "door but mary removed": [65535, 0], "but mary removed the": [65535, 0], "mary removed the towel": [65535, 0], "removed the towel and": [65535, 0], "the towel and said": [65535, 0], "towel and said now": [65535, 0], "and said now ain't": [65535, 0], "said now ain't you": [65535, 0], "now ain't you ashamed": [65535, 0], "ain't you ashamed tom": [65535, 0], "you ashamed tom you": [65535, 0], "ashamed tom you mustn't": [65535, 0], "tom you mustn't be": [65535, 0], "you mustn't be so": [65535, 0], "mustn't be so bad": [65535, 0], "be so bad water": [65535, 0], "so bad water won't": [65535, 0], "bad water won't hurt": [65535, 0], "water won't hurt you": [65535, 0], "won't hurt you tom": [65535, 0], "hurt you tom was": [65535, 0], "you tom was a": [65535, 0], "tom was a trifle": [65535, 0], "was a trifle disconcerted": [65535, 0], "a trifle disconcerted the": [65535, 0], "trifle disconcerted the basin": [65535, 0], "disconcerted the basin was": [65535, 0], "the basin was refilled": [65535, 0], "basin was refilled and": [65535, 0], "was refilled and this": [65535, 0], "refilled and this time": [65535, 0], "and this time he": [65535, 0], "this time he stood": [65535, 0], "time he stood over": [65535, 0], "he stood over it": [65535, 0], "stood over it a": [65535, 0], "over it a little": [65535, 0], "it a little while": [65535, 0], "a little while gathering": [65535, 0], "little while gathering resolution": [65535, 0], "while gathering resolution took": [65535, 0], "gathering resolution took in": [65535, 0], "resolution took in a": [65535, 0], "took in a big": [65535, 0], "in a big breath": [65535, 0], "a big breath and": [65535, 0], "big breath and began": [65535, 0], "breath and began when": [65535, 0], "and began when he": [65535, 0], "began when he entered": [65535, 0], "when he entered the": [65535, 0], "he entered the kitchen": [65535, 0], "entered the kitchen presently": [65535, 0], "the kitchen presently with": [65535, 0], "kitchen presently with both": [65535, 0], "presently with both eyes": [65535, 0], "with both eyes shut": [65535, 0], "both eyes shut and": [65535, 0], "eyes shut and groping": [65535, 0], "shut and groping for": [65535, 0], "and groping for the": [65535, 0], "groping for the towel": [65535, 0], "for the towel with": [65535, 0], "the towel with his": [65535, 0], "towel with his hands": [65535, 0], "with his hands an": [65535, 0], "his hands an honorable": [65535, 0], "hands an honorable testimony": [65535, 0], "an honorable testimony of": [65535, 0], "honorable testimony of suds": [65535, 0], "testimony of suds and": [65535, 0], "of suds and water": [65535, 0], "suds and water was": [65535, 0], "and water was dripping": [65535, 0], "water was dripping from": [65535, 0], "was dripping from his": [65535, 0], "dripping from his face": [65535, 0], "from his face but": [65535, 0], "his face but when": [65535, 0], "face but when he": [65535, 0], "but when he emerged": [65535, 0], "when he emerged from": [65535, 0], "he emerged from the": [65535, 0], "emerged from the towel": [65535, 0], "from the towel he": [65535, 0], "the towel he was": [65535, 0], "towel he was not": [65535, 0], "he was not yet": [65535, 0], "was not yet satisfactory": [65535, 0], "not yet satisfactory for": [65535, 0], "yet satisfactory for the": [65535, 0], "satisfactory for the clean": [65535, 0], "for the clean territory": [65535, 0], "the clean territory stopped": [65535, 0], "clean territory stopped short": [65535, 0], "territory stopped short at": [65535, 0], "stopped short at his": [65535, 0], "short at his chin": [65535, 0], "at his chin and": [65535, 0], "his chin and his": [65535, 0], "chin and his jaws": [65535, 0], "and his jaws like": [65535, 0], "his jaws like a": [65535, 0], "jaws like a mask": [65535, 0], "like a mask below": [65535, 0], "a mask below and": [65535, 0], "mask below and beyond": [65535, 0], "below and beyond this": [65535, 0], "and beyond this line": [65535, 0], "beyond this line there": [65535, 0], "this line there was": [65535, 0], "line there was a": [65535, 0], "there was a dark": [65535, 0], "was a dark expanse": [65535, 0], "a dark expanse of": [65535, 0], "dark expanse of unirrigated": [65535, 0], "expanse of unirrigated soil": [65535, 0], "of unirrigated soil that": [65535, 0], "unirrigated soil that spread": [65535, 0], "soil that spread downward": [65535, 0], "that spread downward in": [65535, 0], "spread downward in front": [65535, 0], "downward in front and": [65535, 0], "in front and backward": [65535, 0], "front and backward around": [65535, 0], "and backward around his": [65535, 0], "backward around his neck": [65535, 0], "around his neck mary": [65535, 0], "his neck mary took": [65535, 0], "neck mary took him": [65535, 0], "mary took him in": [65535, 0], "took him in hand": [65535, 0], "him in hand and": [65535, 0], "in hand and when": [65535, 0], "hand and when she": [65535, 0], "and when she was": [65535, 0], "when she was done": [65535, 0], "she was done with": [65535, 0], "was done with him": [65535, 0], "done with him he": [65535, 0], "with him he was": [65535, 0], "him he was a": [65535, 0], "he was a man": [65535, 0], "was a man and": [65535, 0], "a man and a": [65535, 0], "man and a brother": [65535, 0], "and a brother without": [65535, 0], "a brother without distinction": [65535, 0], "brother without distinction of": [65535, 0], "without distinction of color": [65535, 0], "distinction of color and": [65535, 0], "of color and his": [65535, 0], "color and his saturated": [65535, 0], "and his saturated hair": [65535, 0], "his saturated hair was": [65535, 0], "saturated hair was neatly": [65535, 0], "hair was neatly brushed": [65535, 0], "was neatly brushed and": [65535, 0], "neatly brushed and its": [65535, 0], "brushed and its short": [65535, 0], "and its short curls": [65535, 0], "its short curls wrought": [65535, 0], "short curls wrought into": [65535, 0], "curls wrought into a": [65535, 0], "wrought into a dainty": [65535, 0], "into a dainty and": [65535, 0], "a dainty and symmetrical": [65535, 0], "dainty and symmetrical general": [65535, 0], "and symmetrical general effect": [65535, 0], "symmetrical general effect he": [65535, 0], "general effect he privately": [65535, 0], "effect he privately smoothed": [65535, 0], "he privately smoothed out": [65535, 0], "privately smoothed out the": [65535, 0], "smoothed out the curls": [65535, 0], "out the curls with": [65535, 0], "the curls with labor": [65535, 0], "curls with labor and": [65535, 0], "with labor and difficulty": [65535, 0], "labor and difficulty and": [65535, 0], "and difficulty and plastered": [65535, 0], "difficulty and plastered his": [65535, 0], "and plastered his hair": [65535, 0], "plastered his hair close": [65535, 0], "his hair close down": [65535, 0], "hair close down to": [65535, 0], "close down to his": [65535, 0], "down to his head": [65535, 0], "to his head for": [65535, 0], "his head for he": [65535, 0], "head for he held": [65535, 0], "for he held curls": [65535, 0], "he held curls to": [65535, 0], "held curls to be": [65535, 0], "curls to be effeminate": [65535, 0], "to be effeminate and": [65535, 0], "be effeminate and his": [65535, 0], "effeminate and his own": [65535, 0], "and his own filled": [65535, 0], "his own filled his": [65535, 0], "own filled his life": [65535, 0], "filled his life with": [65535, 0], "his life with bitterness": [65535, 0], "life with bitterness then": [65535, 0], "with bitterness then mary": [65535, 0], "bitterness then mary got": [65535, 0], "then mary got out": [65535, 0], "mary got out a": [65535, 0], "got out a suit": [65535, 0], "out a suit of": [65535, 0], "a suit of his": [65535, 0], "suit of his clothing": [65535, 0], "of his clothing that": [65535, 0], "his clothing that had": [65535, 0], "clothing that had been": [65535, 0], "that had been used": [65535, 0], "had been used only": [65535, 0], "been used only on": [65535, 0], "used only on sundays": [65535, 0], "only on sundays during": [65535, 0], "on sundays during two": [65535, 0], "sundays during two years": [65535, 0], "during two years they": [65535, 0], "two years they were": [65535, 0], "years they were simply": [65535, 0], "they were simply called": [65535, 0], "were simply called his": [65535, 0], "simply called his other": [65535, 0], "called his other clothes": [65535, 0], "his other clothes and": [65535, 0], "other clothes and so": [65535, 0], "clothes and so by": [65535, 0], "and so by that": [65535, 0], "so by that we": [65535, 0], "by that we know": [65535, 0], "that we know the": [65535, 0], "we know the size": [65535, 0], "know the size of": [65535, 0], "the size of his": [65535, 0], "size of his wardrobe": [65535, 0], "of his wardrobe the": [65535, 0], "his wardrobe the girl": [65535, 0], "wardrobe the girl put": [65535, 0], "the girl put him": [65535, 0], "girl put him to": [65535, 0], "put him to rights": [65535, 0], "him to rights after": [65535, 0], "to rights after he": [65535, 0], "rights after he had": [65535, 0], "after he had dressed": [65535, 0], "he had dressed himself": [65535, 0], "had dressed himself she": [65535, 0], "dressed himself she buttoned": [65535, 0], "himself she buttoned his": [65535, 0], "she buttoned his neat": [65535, 0], "buttoned his neat roundabout": [65535, 0], "his neat roundabout up": [65535, 0], "neat roundabout up to": [65535, 0], "roundabout up to his": [65535, 0], "up to his chin": [65535, 0], "to his chin turned": [65535, 0], "his chin turned his": [65535, 0], "chin turned his vast": [65535, 0], "turned his vast shirt": [65535, 0], "his vast shirt collar": [65535, 0], "vast shirt collar down": [65535, 0], "shirt collar down over": [65535, 0], "collar down over his": [65535, 0], "down over his shoulders": [65535, 0], "over his shoulders brushed": [65535, 0], "his shoulders brushed him": [65535, 0], "shoulders brushed him off": [65535, 0], "brushed him off and": [65535, 0], "him off and crowned": [65535, 0], "off and crowned him": [65535, 0], "and crowned him with": [65535, 0], "crowned him with his": [65535, 0], "him with his speckled": [65535, 0], "with his speckled straw": [65535, 0], "his speckled straw hat": [65535, 0], "speckled straw hat he": [65535, 0], "straw hat he now": [65535, 0], "hat he now looked": [65535, 0], "he now looked exceedingly": [65535, 0], "now looked exceedingly improved": [65535, 0], "looked exceedingly improved and": [65535, 0], "exceedingly improved and uncomfortable": [65535, 0], "improved and uncomfortable he": [65535, 0], "and uncomfortable he was": [65535, 0], "uncomfortable he was fully": [65535, 0], "he was fully as": [65535, 0], "was fully as uncomfortable": [65535, 0], "fully as uncomfortable as": [65535, 0], "as uncomfortable as he": [65535, 0], "uncomfortable as he looked": [65535, 0], "as he looked for": [65535, 0], "he looked for there": [65535, 0], "looked for there was": [65535, 0], "for there was a": [65535, 0], "there was a restraint": [65535, 0], "was a restraint about": [65535, 0], "a restraint about whole": [65535, 0], "restraint about whole clothes": [65535, 0], "about whole clothes and": [65535, 0], "whole clothes and cleanliness": [65535, 0], "clothes and cleanliness that": [65535, 0], "and cleanliness that galled": [65535, 0], "cleanliness that galled him": [65535, 0], "that galled him he": [65535, 0], "galled him he hoped": [65535, 0], "him he hoped that": [65535, 0], "he hoped that mary": [65535, 0], "hoped that mary would": [65535, 0], "that mary would forget": [65535, 0], "mary would forget his": [65535, 0], "would forget his shoes": [65535, 0], "forget his shoes but": [65535, 0], "his shoes but the": [65535, 0], "shoes but the hope": [65535, 0], "but the hope was": [65535, 0], "the hope was blighted": [65535, 0], "hope was blighted she": [65535, 0], "was blighted she coated": [65535, 0], "blighted she coated them": [65535, 0], "she coated them thoroughly": [65535, 0], "coated them thoroughly with": [65535, 0], "them thoroughly with tallow": [65535, 0], "thoroughly with tallow as": [65535, 0], "with tallow as was": [65535, 0], "tallow as was the": [65535, 0], "as was the custom": [65535, 0], "was the custom and": [65535, 0], "the custom and brought": [65535, 0], "custom and brought them": [65535, 0], "and brought them out": [65535, 0], "brought them out he": [65535, 0], "them out he lost": [65535, 0], "out he lost his": [65535, 0], "he lost his temper": [65535, 0], "lost his temper and": [65535, 0], "his temper and said": [65535, 0], "temper and said he": [65535, 0], "and said he was": [65535, 0], "said he was always": [65535, 0], "he was always being": [65535, 0], "was always being made": [65535, 0], "always being made to": [65535, 0], "being made to do": [65535, 0], "made to do everything": [65535, 0], "to do everything he": [65535, 0], "do everything he didn't": [65535, 0], "everything he didn't want": [65535, 0], "he didn't want to": [65535, 0], "didn't want to do": [65535, 0], "want to do but": [65535, 0], "to do but mary": [65535, 0], "do but mary said": [65535, 0], "but mary said persuasively": [65535, 0], "mary said persuasively please": [65535, 0], "said persuasively please tom": [65535, 0], "persuasively please tom that's": [65535, 0], "please tom that's a": [65535, 0], "tom that's a good": [65535, 0], "a good boy so": [65535, 0], "good boy so he": [65535, 0], "boy so he got": [65535, 0], "so he got into": [65535, 0], "he got into the": [65535, 0], "got into the shoes": [65535, 0], "into the shoes snarling": [65535, 0], "the shoes snarling mary": [65535, 0], "shoes snarling mary was": [65535, 0], "snarling mary was soon": [65535, 0], "mary was soon ready": [65535, 0], "was soon ready and": [65535, 0], "soon ready and the": [65535, 0], "ready and the three": [65535, 0], "and the three children": [65535, 0], "the three children set": [65535, 0], "three children set out": [65535, 0], "children set out for": [65535, 0], "set out for sunday": [65535, 0], "out for sunday school": [65535, 0], "for sunday school a": [65535, 0], "sunday school a place": [65535, 0], "school a place that": [65535, 0], "a place that tom": [65535, 0], "place that tom hated": [65535, 0], "that tom hated with": [65535, 0], "tom hated with his": [65535, 0], "hated with his whole": [65535, 0], "with his whole heart": [65535, 0], "his whole heart but": [65535, 0], "whole heart but sid": [65535, 0], "heart but sid and": [65535, 0], "but sid and mary": [65535, 0], "sid and mary were": [65535, 0], "and mary were fond": [65535, 0], "mary were fond of": [65535, 0], "were fond of it": [65535, 0], "fond of it sabbath": [65535, 0], "of it sabbath school": [65535, 0], "it sabbath school hours": [65535, 0], "sabbath school hours were": [65535, 0], "school hours were from": [65535, 0], "hours were from nine": [65535, 0], "were from nine to": [65535, 0], "from nine to half": [65535, 0], "nine to half past": [65535, 0], "to half past ten": [65535, 0], "half past ten and": [65535, 0], "past ten and then": [65535, 0], "ten and then church": [65535, 0], "and then church service": [65535, 0], "then church service two": [65535, 0], "church service two of": [65535, 0], "service two of the": [65535, 0], "two of the children": [65535, 0], "of the children always": [65535, 0], "the children always remained": [65535, 0], "children always remained for": [65535, 0], "always remained for the": [65535, 0], "remained for the sermon": [65535, 0], "for the sermon voluntarily": [65535, 0], "the sermon voluntarily and": [65535, 0], "sermon voluntarily and the": [65535, 0], "voluntarily and the other": [65535, 0], "and the other always": [65535, 0], "the other always remained": [65535, 0], "other always remained too": [65535, 0], "always remained too for": [65535, 0], "remained too for stronger": [65535, 0], "too for stronger reasons": [65535, 0], "for stronger reasons the": [65535, 0], "stronger reasons the church's": [65535, 0], "reasons the church's high": [65535, 0], "the church's high backed": [65535, 0], "church's high backed uncushioned": [65535, 0], "high backed uncushioned pews": [65535, 0], "backed uncushioned pews would": [65535, 0], "uncushioned pews would seat": [65535, 0], "pews would seat about": [65535, 0], "would seat about three": [65535, 0], "seat about three hundred": [65535, 0], "about three hundred persons": [65535, 0], "three hundred persons the": [65535, 0], "hundred persons the edifice": [65535, 0], "persons the edifice was": [65535, 0], "the edifice was but": [65535, 0], "edifice was but a": [65535, 0], "was but a small": [65535, 0], "but a small plain": [65535, 0], "a small plain affair": [65535, 0], "small plain affair with": [65535, 0], "plain affair with a": [65535, 0], "affair with a sort": [65535, 0], "with a sort of": [65535, 0], "a sort of pine": [65535, 0], "sort of pine board": [65535, 0], "of pine board tree": [65535, 0], "pine board tree box": [65535, 0], "board tree box on": [65535, 0], "tree box on top": [65535, 0], "box on top of": [65535, 0], "on top of it": [65535, 0], "top of it for": [65535, 0], "of it for a": [65535, 0], "it for a steeple": [65535, 0], "for a steeple at": [65535, 0], "a steeple at the": [65535, 0], "steeple at the door": [65535, 0], "at the door tom": [65535, 0], "the door tom dropped": [65535, 0], "door tom dropped back": [65535, 0], "tom dropped back a": [65535, 0], "dropped back a step": [65535, 0], "back a step and": [65535, 0], "a step and accosted": [65535, 0], "step and accosted a": [65535, 0], "and accosted a sunday": [65535, 0], "accosted a sunday dressed": [65535, 0], "a sunday dressed comrade": [65535, 0], "sunday dressed comrade say": [65535, 0], "dressed comrade say billy": [65535, 0], "comrade say billy got": [65535, 0], "say billy got a": [65535, 0], "billy got a yaller": [65535, 0], "got a yaller ticket": [65535, 0], "a yaller ticket yes": [65535, 0], "yaller ticket yes what'll": [65535, 0], "ticket yes what'll you": [65535, 0], "yes what'll you take": [65535, 0], "you take for her": [65535, 0], "take for her what'll": [65535, 0], "for her what'll you": [65535, 0], "her what'll you give": [65535, 0], "what'll you give piece": [65535, 0], "you give piece of": [65535, 0], "give piece of lickrish": [65535, 0], "piece of lickrish and": [65535, 0], "of lickrish and a": [65535, 0], "lickrish and a fish": [65535, 0], "and a fish hook": [65535, 0], "a fish hook less": [65535, 0], "fish hook less see": [65535, 0], "hook less see 'em": [65535, 0], "less see 'em tom": [65535, 0], "see 'em tom exhibited": [65535, 0], "'em tom exhibited they": [65535, 0], "tom exhibited they were": [65535, 0], "exhibited they were satisfactory": [65535, 0], "they were satisfactory and": [65535, 0], "were satisfactory and the": [65535, 0], "satisfactory and the property": [65535, 0], "and the property changed": [65535, 0], "the property changed hands": [65535, 0], "property changed hands then": [65535, 0], "changed hands then tom": [65535, 0], "hands then tom traded": [65535, 0], "then tom traded a": [65535, 0], "tom traded a couple": [65535, 0], "traded a couple of": [65535, 0], "a couple of white": [65535, 0], "couple of white alleys": [65535, 0], "of white alleys for": [65535, 0], "white alleys for three": [65535, 0], "alleys for three red": [65535, 0], "for three red tickets": [65535, 0], "three red tickets and": [65535, 0], "red tickets and some": [65535, 0], "tickets and some small": [65535, 0], "and some small trifle": [65535, 0], "some small trifle or": [65535, 0], "small trifle or other": [65535, 0], "trifle or other for": [65535, 0], "or other for a": [65535, 0], "other for a couple": [65535, 0], "for a couple of": [65535, 0], "a couple of blue": [65535, 0], "couple of blue ones": [65535, 0], "of blue ones he": [65535, 0], "blue ones he waylaid": [65535, 0], "ones he waylaid other": [65535, 0], "he waylaid other boys": [65535, 0], "waylaid other boys as": [65535, 0], "other boys as they": [65535, 0], "boys as they came": [65535, 0], "as they came and": [65535, 0], "they came and went": [65535, 0], "came and went on": [65535, 0], "and went on buying": [65535, 0], "went on buying tickets": [65535, 0], "on buying tickets of": [65535, 0], "buying tickets of various": [65535, 0], "tickets of various colors": [65535, 0], "of various colors ten": [65535, 0], "various colors ten or": [65535, 0], "colors ten or fifteen": [65535, 0], "ten or fifteen minutes": [65535, 0], "or fifteen minutes longer": [65535, 0], "fifteen minutes longer he": [65535, 0], "minutes longer he entered": [65535, 0], "longer he entered the": [65535, 0], "he entered the church": [65535, 0], "entered the church now": [65535, 0], "the church now with": [65535, 0], "church now with a": [65535, 0], "now with a swarm": [65535, 0], "with a swarm of": [65535, 0], "a swarm of clean": [65535, 0], "swarm of clean and": [65535, 0], "of clean and noisy": [65535, 0], "clean and noisy boys": [65535, 0], "and noisy boys and": [65535, 0], "noisy boys and girls": [65535, 0], "boys and girls proceeded": [65535, 0], "and girls proceeded to": [65535, 0], "girls proceeded to his": [65535, 0], "proceeded to his seat": [65535, 0], "to his seat and": [65535, 0], "his seat and started": [65535, 0], "seat and started a": [65535, 0], "and started a quarrel": [65535, 0], "started a quarrel with": [65535, 0], "a quarrel with the": [65535, 0], "quarrel with the first": [65535, 0], "with the first boy": [65535, 0], "first boy that came": [65535, 0], "boy that came handy": [65535, 0], "that came handy the": [65535, 0], "came handy the teacher": [65535, 0], "handy the teacher a": [65535, 0], "the teacher a grave": [65535, 0], "teacher a grave elderly": [65535, 0], "a grave elderly man": [65535, 0], "grave elderly man interfered": [65535, 0], "elderly man interfered then": [65535, 0], "man interfered then turned": [65535, 0], "interfered then turned his": [65535, 0], "then turned his back": [65535, 0], "turned his back a": [65535, 0], "his back a moment": [65535, 0], "back a moment and": [65535, 0], "a moment and tom": [65535, 0], "moment and tom pulled": [65535, 0], "and tom pulled a": [65535, 0], "tom pulled a boy's": [65535, 0], "pulled a boy's hair": [65535, 0], "a boy's hair in": [65535, 0], "boy's hair in the": [65535, 0], "hair in the next": [65535, 0], "in the next bench": [65535, 0], "the next bench and": [65535, 0], "next bench and was": [65535, 0], "bench and was absorbed": [65535, 0], "and was absorbed in": [65535, 0], "was absorbed in his": [65535, 0], "absorbed in his book": [65535, 0], "in his book when": [65535, 0], "his book when the": [65535, 0], "book when the boy": [65535, 0], "when the boy turned": [65535, 0], "the boy turned around": [65535, 0], "boy turned around stuck": [65535, 0], "turned around stuck a": [65535, 0], "around stuck a pin": [65535, 0], "stuck a pin in": [65535, 0], "a pin in another": [65535, 0], "pin in another boy": [65535, 0], "in another boy presently": [65535, 0], "another boy presently in": [65535, 0], "boy presently in order": [65535, 0], "presently in order to": [65535, 0], "in order to hear": [65535, 0], "order to hear him": [65535, 0], "to hear him say": [65535, 0], "hear him say ouch": [65535, 0], "him say ouch and": [65535, 0], "say ouch and got": [65535, 0], "ouch and got a": [65535, 0], "and got a new": [65535, 0], "got a new reprimand": [65535, 0], "a new reprimand from": [65535, 0], "new reprimand from his": [65535, 0], "reprimand from his teacher": [65535, 0], "from his teacher tom's": [65535, 0], "his teacher tom's whole": [65535, 0], "teacher tom's whole class": [65535, 0], "tom's whole class were": [65535, 0], "whole class were of": [65535, 0], "class were of a": [65535, 0], "were of a pattern": [65535, 0], "of a pattern restless": [65535, 0], "a pattern restless noisy": [65535, 0], "pattern restless noisy and": [65535, 0], "restless noisy and troublesome": [65535, 0], "noisy and troublesome when": [65535, 0], "and troublesome when they": [65535, 0], "troublesome when they came": [65535, 0], "when they came to": [65535, 0], "they came to recite": [65535, 0], "came to recite their": [65535, 0], "to recite their lessons": [65535, 0], "recite their lessons not": [65535, 0], "their lessons not one": [65535, 0], "lessons not one of": [65535, 0], "not one of them": [65535, 0], "one of them knew": [65535, 0], "of them knew his": [65535, 0], "them knew his verses": [65535, 0], "knew his verses perfectly": [65535, 0], "his verses perfectly but": [65535, 0], "verses perfectly but had": [65535, 0], "perfectly but had to": [65535, 0], "but had to be": [65535, 0], "had to be prompted": [65535, 0], "to be prompted all": [65535, 0], "be prompted all along": [65535, 0], "prompted all along however": [65535, 0], "all along however they": [65535, 0], "along however they worried": [65535, 0], "however they worried through": [65535, 0], "they worried through and": [65535, 0], "worried through and each": [65535, 0], "through and each got": [65535, 0], "and each got his": [65535, 0], "each got his reward": [65535, 0], "got his reward in": [65535, 0], "his reward in small": [65535, 0], "reward in small blue": [65535, 0], "in small blue tickets": [65535, 0], "small blue tickets each": [65535, 0], "blue tickets each with": [65535, 0], "tickets each with a": [65535, 0], "each with a passage": [65535, 0], "with a passage of": [65535, 0], "a passage of scripture": [65535, 0], "passage of scripture on": [65535, 0], "of scripture on it": [65535, 0], "scripture on it each": [65535, 0], "on it each blue": [65535, 0], "it each blue ticket": [65535, 0], "each blue ticket was": [65535, 0], "blue ticket was pay": [65535, 0], "ticket was pay for": [65535, 0], "was pay for two": [65535, 0], "pay for two verses": [65535, 0], "for two verses of": [65535, 0], "two verses of the": [65535, 0], "verses of the recitation": [65535, 0], "of the recitation ten": [65535, 0], "the recitation ten blue": [65535, 0], "recitation ten blue tickets": [65535, 0], "ten blue tickets equalled": [65535, 0], "blue tickets equalled a": [65535, 0], "tickets equalled a red": [65535, 0], "equalled a red one": [65535, 0], "a red one and": [65535, 0], "red one and could": [65535, 0], "one and could be": [65535, 0], "and could be exchanged": [65535, 0], "could be exchanged for": [65535, 0], "be exchanged for it": [65535, 0], "exchanged for it ten": [65535, 0], "for it ten red": [65535, 0], "it ten red tickets": [65535, 0], "ten red tickets equalled": [65535, 0], "red tickets equalled a": [65535, 0], "tickets equalled a yellow": [65535, 0], "equalled a yellow one": [65535, 0], "a yellow one for": [65535, 0], "yellow one for ten": [65535, 0], "one for ten yellow": [65535, 0], "for ten yellow tickets": [65535, 0], "ten yellow tickets the": [65535, 0], "yellow tickets the superintendent": [65535, 0], "tickets the superintendent gave": [65535, 0], "the superintendent gave a": [65535, 0], "superintendent gave a very": [65535, 0], "gave a very plainly": [65535, 0], "a very plainly bound": [65535, 0], "very plainly bound bible": [65535, 0], "plainly bound bible worth": [65535, 0], "bound bible worth forty": [65535, 0], "bible worth forty cents": [65535, 0], "worth forty cents in": [65535, 0], "forty cents in those": [65535, 0], "cents in those easy": [65535, 0], "in those easy times": [65535, 0], "those easy times to": [65535, 0], "easy times to the": [65535, 0], "times to the pupil": [65535, 0], "to the pupil how": [65535, 0], "the pupil how many": [65535, 0], "pupil how many of": [65535, 0], "how many of my": [65535, 0], "many of my readers": [65535, 0], "of my readers would": [65535, 0], "my readers would have": [65535, 0], "readers would have the": [65535, 0], "would have the industry": [65535, 0], "have the industry and": [65535, 0], "the industry and application": [65535, 0], "industry and application to": [65535, 0], "and application to memorize": [65535, 0], "application to memorize two": [65535, 0], "to memorize two thousand": [65535, 0], "memorize two thousand verses": [65535, 0], "two thousand verses even": [65535, 0], "thousand verses even for": [65535, 0], "verses even for a": [65535, 0], "even for a dore": [65535, 0], "for a dore bible": [65535, 0], "a dore bible and": [65535, 0], "dore bible and yet": [65535, 0], "bible and yet mary": [65535, 0], "and yet mary had": [65535, 0], "yet mary had acquired": [65535, 0], "mary had acquired two": [65535, 0], "had acquired two bibles": [65535, 0], "acquired two bibles in": [65535, 0], "two bibles in this": [65535, 0], "bibles in this way": [65535, 0], "in this way it": [65535, 0], "this way it was": [65535, 0], "way it was the": [65535, 0], "it was the patient": [65535, 0], "was the patient work": [65535, 0], "the patient work of": [65535, 0], "patient work of two": [65535, 0], "work of two years": [65535, 0], "of two years and": [65535, 0], "two years and a": [65535, 0], "years and a boy": [65535, 0], "and a boy of": [65535, 0], "a boy of german": [65535, 0], "boy of german parentage": [65535, 0], "of german parentage had": [65535, 0], "german parentage had won": [65535, 0], "parentage had won four": [65535, 0], "had won four or": [65535, 0], "won four or five": [65535, 0], "four or five he": [65535, 0], "or five he once": [65535, 0], "five he once recited": [65535, 0], "he once recited three": [65535, 0], "once recited three thousand": [65535, 0], "recited three thousand verses": [65535, 0], "three thousand verses without": [65535, 0], "thousand verses without stopping": [65535, 0], "verses without stopping but": [65535, 0], "without stopping but the": [65535, 0], "stopping but the strain": [65535, 0], "but the strain upon": [65535, 0], "the strain upon his": [65535, 0], "strain upon his mental": [65535, 0], "upon his mental faculties": [65535, 0], "his mental faculties was": [65535, 0], "mental faculties was too": [65535, 0], "faculties was too great": [65535, 0], "was too great and": [65535, 0], "too great and he": [65535, 0], "great and he was": [65535, 0], "and he was little": [65535, 0], "he was little better": [65535, 0], "was little better than": [65535, 0], "little better than an": [65535, 0], "better than an idiot": [65535, 0], "than an idiot from": [65535, 0], "an idiot from that": [65535, 0], "idiot from that day": [65535, 0], "from that day forth": [65535, 0], "that day forth a": [65535, 0], "day forth a grievous": [65535, 0], "forth a grievous misfortune": [65535, 0], "a grievous misfortune for": [65535, 0], "grievous misfortune for the": [65535, 0], "misfortune for the school": [65535, 0], "for the school for": [65535, 0], "the school for on": [65535, 0], "school for on great": [65535, 0], "for on great occasions": [65535, 0], "on great occasions before": [65535, 0], "great occasions before company": [65535, 0], "occasions before company the": [65535, 0], "before company the superintendent": [65535, 0], "company the superintendent as": [65535, 0], "the superintendent as tom": [65535, 0], "superintendent as tom expressed": [65535, 0], "as tom expressed it": [65535, 0], "tom expressed it had": [65535, 0], "expressed it had always": [65535, 0], "it had always made": [65535, 0], "had always made this": [65535, 0], "always made this boy": [65535, 0], "made this boy come": [65535, 0], "this boy come out": [65535, 0], "boy come out and": [65535, 0], "come out and spread": [65535, 0], "out and spread himself": [65535, 0], "and spread himself only": [65535, 0], "spread himself only the": [65535, 0], "himself only the older": [65535, 0], "only the older pupils": [65535, 0], "the older pupils managed": [65535, 0], "older pupils managed to": [65535, 0], "pupils managed to keep": [65535, 0], "managed to keep their": [65535, 0], "to keep their tickets": [65535, 0], "keep their tickets and": [65535, 0], "their tickets and stick": [65535, 0], "tickets and stick to": [65535, 0], "and stick to their": [65535, 0], "stick to their tedious": [65535, 0], "to their tedious work": [65535, 0], "their tedious work long": [65535, 0], "tedious work long enough": [65535, 0], "work long enough to": [65535, 0], "long enough to get": [65535, 0], "enough to get a": [65535, 0], "to get a bible": [65535, 0], "get a bible and": [65535, 0], "a bible and so": [65535, 0], "bible and so the": [65535, 0], "and so the delivery": [65535, 0], "so the delivery of": [65535, 0], "the delivery of one": [65535, 0], "delivery of one of": [65535, 0], "of one of these": [65535, 0], "one of these prizes": [65535, 0], "of these prizes was": [65535, 0], "these prizes was a": [65535, 0], "prizes was a rare": [65535, 0], "was a rare and": [65535, 0], "a rare and noteworthy": [65535, 0], "rare and noteworthy circumstance": [65535, 0], "and noteworthy circumstance the": [65535, 0], "noteworthy circumstance the successful": [65535, 0], "circumstance the successful pupil": [65535, 0], "the successful pupil was": [65535, 0], "successful pupil was so": [65535, 0], "pupil was so great": [65535, 0], "was so great and": [65535, 0], "so great and conspicuous": [65535, 0], "great and conspicuous for": [65535, 0], "and conspicuous for that": [65535, 0], "conspicuous for that day": [65535, 0], "for that day that": [65535, 0], "that day that on": [65535, 0], "day that on the": [65535, 0], "that on the spot": [65535, 0], "on the spot every": [65535, 0], "the spot every scholar's": [65535, 0], "spot every scholar's heart": [65535, 0], "every scholar's heart was": [65535, 0], "scholar's heart was fired": [65535, 0], "heart was fired with": [65535, 0], "was fired with a": [65535, 0], "fired with a fresh": [65535, 0], "with a fresh ambition": [65535, 0], "a fresh ambition that": [65535, 0], "fresh ambition that often": [65535, 0], "ambition that often lasted": [65535, 0], "that often lasted a": [65535, 0], "often lasted a couple": [65535, 0], "lasted a couple of": [65535, 0], "a couple of weeks": [65535, 0], "couple of weeks it": [65535, 0], "of weeks it is": [65535, 0], "weeks it is possible": [65535, 0], "it is possible that": [65535, 0], "is possible that tom's": [65535, 0], "possible that tom's mental": [65535, 0], "that tom's mental stomach": [65535, 0], "tom's mental stomach had": [65535, 0], "mental stomach had never": [65535, 0], "stomach had never really": [65535, 0], "had never really hungered": [65535, 0], "never really hungered for": [65535, 0], "really hungered for one": [65535, 0], "hungered for one of": [65535, 0], "for one of those": [65535, 0], "one of those prizes": [65535, 0], "of those prizes but": [65535, 0], "those prizes but unquestionably": [65535, 0], "prizes but unquestionably his": [65535, 0], "but unquestionably his entire": [65535, 0], "unquestionably his entire being": [65535, 0], "his entire being had": [65535, 0], "entire being had for": [65535, 0], "being had for many": [65535, 0], "had for many a": [65535, 0], "for many a day": [65535, 0], "many a day longed": [65535, 0], "a day longed for": [65535, 0], "day longed for the": [65535, 0], "longed for the glory": [65535, 0], "for the glory and": [65535, 0], "the glory and the": [65535, 0], "glory and the eclat": [65535, 0], "and the eclat that": [65535, 0], "the eclat that came": [65535, 0], "eclat that came with": [65535, 0], "that came with it": [65535, 0], "came with it in": [65535, 0], "with it in due": [65535, 0], "it in due course": [65535, 0], "in due course the": [65535, 0], "due course the superintendent": [65535, 0], "course the superintendent stood": [65535, 0], "the superintendent stood up": [65535, 0], "superintendent stood up in": [65535, 0], "stood up in front": [65535, 0], "up in front of": [65535, 0], "front of the pulpit": [65535, 0], "of the pulpit with": [65535, 0], "the pulpit with a": [65535, 0], "pulpit with a closed": [65535, 0], "with a closed hymn": [65535, 0], "a closed hymn book": [65535, 0], "closed hymn book in": [65535, 0], "hymn book in his": [65535, 0], "book in his hand": [65535, 0], "in his hand and": [65535, 0], "his hand and his": [65535, 0], "hand and his forefinger": [65535, 0], "and his forefinger inserted": [65535, 0], "his forefinger inserted between": [65535, 0], "forefinger inserted between its": [65535, 0], "inserted between its leaves": [65535, 0], "between its leaves and": [65535, 0], "its leaves and commanded": [65535, 0], "leaves and commanded attention": [65535, 0], "and commanded attention when": [65535, 0], "commanded attention when a": [65535, 0], "attention when a sunday": [65535, 0], "when a sunday school": [65535, 0], "a sunday school superintendent": [65535, 0], "sunday school superintendent makes": [65535, 0], "school superintendent makes his": [65535, 0], "superintendent makes his customary": [65535, 0], "makes his customary little": [65535, 0], "his customary little speech": [65535, 0], "customary little speech a": [65535, 0], "little speech a hymn": [65535, 0], "speech a hymn book": [65535, 0], "a hymn book in": [65535, 0], "hymn book in the": [65535, 0], "book in the hand": [65535, 0], "in the hand is": [65535, 0], "the hand is as": [65535, 0], "hand is as necessary": [65535, 0], "is as necessary as": [65535, 0], "as necessary as is": [65535, 0], "necessary as is the": [65535, 0], "as is the inevitable": [65535, 0], "is the inevitable sheet": [65535, 0], "the inevitable sheet of": [65535, 0], "inevitable sheet of music": [65535, 0], "sheet of music in": [65535, 0], "of music in the": [65535, 0], "music in the hand": [65535, 0], "in the hand of": [65535, 0], "the hand of a": [65535, 0], "hand of a singer": [65535, 0], "of a singer who": [65535, 0], "a singer who stands": [65535, 0], "singer who stands forward": [65535, 0], "who stands forward on": [65535, 0], "stands forward on the": [65535, 0], "forward on the platform": [65535, 0], "on the platform and": [65535, 0], "the platform and sings": [65535, 0], "platform and sings a": [65535, 0], "and sings a solo": [65535, 0], "sings a solo at": [65535, 0], "a solo at a": [65535, 0], "solo at a concert": [65535, 0], "at a concert though": [65535, 0], "a concert though why": [65535, 0], "concert though why is": [65535, 0], "though why is a": [65535, 0], "why is a mystery": [65535, 0], "is a mystery for": [65535, 0], "a mystery for neither": [65535, 0], "mystery for neither the": [65535, 0], "for neither the hymn": [65535, 0], "neither the hymn book": [65535, 0], "the hymn book nor": [65535, 0], "hymn book nor the": [65535, 0], "book nor the sheet": [65535, 0], "nor the sheet of": [65535, 0], "the sheet of music": [65535, 0], "sheet of music is": [65535, 0], "of music is ever": [65535, 0], "music is ever referred": [65535, 0], "is ever referred to": [65535, 0], "ever referred to by": [65535, 0], "referred to by the": [65535, 0], "to by the sufferer": [65535, 0], "by the sufferer this": [65535, 0], "the sufferer this superintendent": [65535, 0], "sufferer this superintendent was": [65535, 0], "this superintendent was a": [65535, 0], "superintendent was a slim": [65535, 0], "was a slim creature": [65535, 0], "a slim creature of": [65535, 0], "slim creature of thirty": [65535, 0], "creature of thirty five": [65535, 0], "of thirty five with": [65535, 0], "thirty five with a": [65535, 0], "five with a sandy": [65535, 0], "with a sandy goatee": [65535, 0], "a sandy goatee and": [65535, 0], "sandy goatee and short": [65535, 0], "goatee and short sandy": [65535, 0], "and short sandy hair": [65535, 0], "short sandy hair he": [65535, 0], "sandy hair he wore": [65535, 0], "hair he wore a": [65535, 0], "he wore a stiff": [65535, 0], "wore a stiff standing": [65535, 0], "a stiff standing collar": [65535, 0], "stiff standing collar whose": [65535, 0], "standing collar whose upper": [65535, 0], "collar whose upper edge": [65535, 0], "whose upper edge almost": [65535, 0], "upper edge almost reached": [65535, 0], "edge almost reached his": [65535, 0], "almost reached his ears": [65535, 0], "reached his ears and": [65535, 0], "his ears and whose": [65535, 0], "ears and whose sharp": [65535, 0], "and whose sharp points": [65535, 0], "whose sharp points curved": [65535, 0], "sharp points curved forward": [65535, 0], "points curved forward abreast": [65535, 0], "curved forward abreast the": [65535, 0], "forward abreast the corners": [65535, 0], "abreast the corners of": [65535, 0], "the corners of his": [65535, 0], "corners of his mouth": [65535, 0], "of his mouth a": [65535, 0], "his mouth a fence": [65535, 0], "mouth a fence that": [65535, 0], "a fence that compelled": [65535, 0], "fence that compelled a": [65535, 0], "that compelled a straight": [65535, 0], "compelled a straight lookout": [65535, 0], "a straight lookout ahead": [65535, 0], "straight lookout ahead and": [65535, 0], "lookout ahead and a": [65535, 0], "ahead and a turning": [65535, 0], "and a turning of": [65535, 0], "a turning of the": [65535, 0], "turning of the whole": [65535, 0], "of the whole body": [65535, 0], "the whole body when": [65535, 0], "whole body when a": [65535, 0], "body when a side": [65535, 0], "when a side view": [65535, 0], "a side view was": [65535, 0], "side view was required": [65535, 0], "view was required his": [65535, 0], "was required his chin": [65535, 0], "required his chin was": [65535, 0], "his chin was propped": [65535, 0], "chin was propped on": [65535, 0], "was propped on a": [65535, 0], "propped on a spreading": [65535, 0], "on a spreading cravat": [65535, 0], "a spreading cravat which": [65535, 0], "spreading cravat which was": [65535, 0], "cravat which was as": [65535, 0], "which was as broad": [65535, 0], "was as broad and": [65535, 0], "as broad and as": [65535, 0], "broad and as long": [65535, 0], "and as long as": [65535, 0], "as long as a": [65535, 0], "long as a bank": [65535, 0], "as a bank note": [65535, 0], "a bank note and": [65535, 0], "bank note and had": [65535, 0], "note and had fringed": [65535, 0], "and had fringed ends": [65535, 0], "had fringed ends his": [65535, 0], "fringed ends his boot": [65535, 0], "ends his boot toes": [65535, 0], "his boot toes were": [65535, 0], "boot toes were turned": [65535, 0], "toes were turned sharply": [65535, 0], "were turned sharply up": [65535, 0], "turned sharply up in": [65535, 0], "sharply up in the": [65535, 0], "up in the fashion": [65535, 0], "in the fashion of": [65535, 0], "the fashion of the": [65535, 0], "fashion of the day": [65535, 0], "of the day like": [65535, 0], "the day like sleigh": [65535, 0], "day like sleigh runners": [65535, 0], "like sleigh runners an": [65535, 0], "sleigh runners an effect": [65535, 0], "runners an effect patiently": [65535, 0], "an effect patiently and": [65535, 0], "effect patiently and laboriously": [65535, 0], "patiently and laboriously produced": [65535, 0], "and laboriously produced by": [65535, 0], "laboriously produced by the": [65535, 0], "produced by the young": [65535, 0], "by the young men": [65535, 0], "the young men by": [65535, 0], "young men by sitting": [65535, 0], "men by sitting with": [65535, 0], "by sitting with their": [65535, 0], "sitting with their toes": [65535, 0], "with their toes pressed": [65535, 0], "their toes pressed against": [65535, 0], "toes pressed against a": [65535, 0], "pressed against a wall": [65535, 0], "against a wall for": [65535, 0], "a wall for hours": [65535, 0], "wall for hours together": [65535, 0], "for hours together mr": [65535, 0], "hours together mr walters": [65535, 0], "together mr walters was": [65535, 0], "mr walters was very": [65535, 0], "walters was very earnest": [65535, 0], "was very earnest of": [65535, 0], "very earnest of mien": [65535, 0], "earnest of mien and": [65535, 0], "of mien and very": [65535, 0], "mien and very sincere": [65535, 0], "and very sincere and": [65535, 0], "very sincere and honest": [65535, 0], "sincere and honest at": [65535, 0], "and honest at heart": [65535, 0], "honest at heart and": [65535, 0], "at heart and he": [65535, 0], "heart and he held": [65535, 0], "and he held sacred": [65535, 0], "he held sacred things": [65535, 0], "held sacred things and": [65535, 0], "sacred things and places": [65535, 0], "things and places in": [65535, 0], "and places in such": [65535, 0], "places in such reverence": [65535, 0], "in such reverence and": [65535, 0], "such reverence and so": [65535, 0], "reverence and so separated": [65535, 0], "and so separated them": [65535, 0], "so separated them from": [65535, 0], "separated them from worldly": [65535, 0], "them from worldly matters": [65535, 0], "from worldly matters that": [65535, 0], "worldly matters that unconsciously": [65535, 0], "matters that unconsciously to": [65535, 0], "that unconsciously to himself": [65535, 0], "unconsciously to himself his": [65535, 0], "to himself his sunday": [65535, 0], "himself his sunday school": [65535, 0], "his sunday school voice": [65535, 0], "sunday school voice had": [65535, 0], "school voice had acquired": [65535, 0], "voice had acquired a": [65535, 0], "had acquired a peculiar": [65535, 0], "acquired a peculiar intonation": [65535, 0], "a peculiar intonation which": [65535, 0], "peculiar intonation which was": [65535, 0], "intonation which was wholly": [65535, 0], "which was wholly absent": [65535, 0], "was wholly absent on": [65535, 0], "wholly absent on week": [65535, 0], "absent on week days": [65535, 0], "on week days he": [65535, 0], "week days he began": [65535, 0], "days he began after": [65535, 0], "he began after this": [65535, 0], "began after this fashion": [65535, 0], "after this fashion now": [65535, 0], "this fashion now children": [65535, 0], "fashion now children i": [65535, 0], "now children i want": [65535, 0], "children i want you": [65535, 0], "i want you all": [65535, 0], "want you all to": [65535, 0], "you all to sit": [65535, 0], "all to sit up": [65535, 0], "to sit up just": [65535, 0], "sit up just as": [65535, 0], "up just as straight": [65535, 0], "just as straight and": [65535, 0], "as straight and pretty": [65535, 0], "straight and pretty as": [65535, 0], "and pretty as you": [65535, 0], "pretty as you can": [65535, 0], "as you can and": [65535, 0], "you can and give": [65535, 0], "can and give me": [65535, 0], "and give me all": [65535, 0], "give me all your": [65535, 0], "me all your attention": [65535, 0], "all your attention for": [65535, 0], "your attention for a": [65535, 0], "attention for a minute": [65535, 0], "a minute or two": [65535, 0], "minute or two there": [65535, 0], "or two there that": [65535, 0], "two there that is": [65535, 0], "there that is it": [65535, 0], "that is it that": [65535, 0], "is it that is": [65535, 0], "it that is the": [65535, 0], "that is the way": [65535, 0], "is the way good": [65535, 0], "the way good little": [65535, 0], "way good little boys": [65535, 0], "good little boys and": [65535, 0], "little boys and girls": [65535, 0], "boys and girls should": [65535, 0], "and girls should do": [65535, 0], "girls should do i": [65535, 0], "should do i see": [65535, 0], "do i see one": [65535, 0], "i see one little": [65535, 0], "see one little girl": [65535, 0], "one little girl who": [65535, 0], "little girl who is": [65535, 0], "girl who is looking": [65535, 0], "who is looking out": [65535, 0], "is looking out of": [65535, 0], "looking out of the": [65535, 0], "of the window i": [65535, 0], "the window i am": [65535, 0], "window i am afraid": [65535, 0], "i am afraid she": [65535, 0], "am afraid she thinks": [65535, 0], "afraid she thinks i": [65535, 0], "she thinks i am": [65535, 0], "thinks i am out": [65535, 0], "i am out there": [65535, 0], "am out there somewhere": [65535, 0], "out there somewhere perhaps": [65535, 0], "there somewhere perhaps up": [65535, 0], "somewhere perhaps up in": [65535, 0], "perhaps up in one": [65535, 0], "up in one of": [65535, 0], "in one of the": [65535, 0], "one of the trees": [65535, 0], "of the trees making": [65535, 0], "the trees making a": [65535, 0], "trees making a speech": [65535, 0], "making a speech to": [65535, 0], "a speech to the": [65535, 0], "speech to the little": [65535, 0], "to the little birds": [65535, 0], "the little birds applausive": [65535, 0], "little birds applausive titter": [65535, 0], "birds applausive titter i": [65535, 0], "applausive titter i want": [65535, 0], "titter i want to": [65535, 0], "i want to tell": [65535, 0], "want to tell you": [65535, 0], "to tell you how": [65535, 0], "tell you how good": [65535, 0], "you how good it": [65535, 0], "how good it makes": [65535, 0], "good it makes me": [65535, 0], "it makes me feel": [65535, 0], "makes me feel to": [65535, 0], "me feel to see": [65535, 0], "feel to see so": [65535, 0], "to see so many": [65535, 0], "see so many bright": [65535, 0], "so many bright clean": [65535, 0], "many bright clean little": [65535, 0], "bright clean little faces": [65535, 0], "clean little faces assembled": [65535, 0], "little faces assembled in": [65535, 0], "faces assembled in a": [65535, 0], "assembled in a place": [65535, 0], "in a place like": [65535, 0], "a place like this": [65535, 0], "place like this learning": [65535, 0], "like this learning to": [65535, 0], "this learning to do": [65535, 0], "learning to do right": [65535, 0], "to do right and": [65535, 0], "do right and be": [65535, 0], "right and be good": [65535, 0], "and be good and": [65535, 0], "be good and so": [65535, 0], "good and so forth": [65535, 0], "and so forth and": [65535, 0], "so forth and so": [65535, 0], "forth and so on": [65535, 0], "and so on it": [65535, 0], "so on it is": [65535, 0], "on it is not": [65535, 0], "it is not necessary": [65535, 0], "is not necessary to": [65535, 0], "not necessary to set": [65535, 0], "necessary to set down": [65535, 0], "to set down the": [65535, 0], "set down the rest": [65535, 0], "down the rest of": [65535, 0], "rest of the oration": [65535, 0], "of the oration it": [65535, 0], "the oration it was": [65535, 0], "oration it was of": [65535, 0], "it was of a": [65535, 0], "was of a pattern": [65535, 0], "of a pattern which": [65535, 0], "a pattern which does": [65535, 0], "pattern which does not": [65535, 0], "which does not vary": [65535, 0], "does not vary and": [65535, 0], "not vary and so": [65535, 0], "vary and so it": [65535, 0], "and so it is": [65535, 0], "so it is familiar": [65535, 0], "it is familiar to": [65535, 0], "is familiar to us": [65535, 0], "familiar to us all": [65535, 0], "to us all the": [65535, 0], "us all the latter": [65535, 0], "all the latter third": [65535, 0], "the latter third of": [65535, 0], "latter third of the": [65535, 0], "third of the speech": [65535, 0], "of the speech was": [65535, 0], "the speech was marred": [65535, 0], "speech was marred by": [65535, 0], "was marred by the": [65535, 0], "marred by the resumption": [65535, 0], "by the resumption of": [65535, 0], "the resumption of fights": [65535, 0], "resumption of fights and": [65535, 0], "of fights and other": [65535, 0], "fights and other recreations": [65535, 0], "and other recreations among": [65535, 0], "other recreations among certain": [65535, 0], "recreations among certain of": [65535, 0], "among certain of the": [65535, 0], "certain of the bad": [65535, 0], "of the bad boys": [65535, 0], "the bad boys and": [65535, 0], "bad boys and by": [65535, 0], "boys and by fidgetings": [65535, 0], "and by fidgetings and": [65535, 0], "by fidgetings and whisperings": [65535, 0], "fidgetings and whisperings that": [65535, 0], "and whisperings that extended": [65535, 0], "whisperings that extended far": [65535, 0], "that extended far and": [65535, 0], "extended far and wide": [65535, 0], "far and wide washing": [65535, 0], "and wide washing even": [65535, 0], "wide washing even to": [65535, 0], "washing even to the": [65535, 0], "even to the bases": [65535, 0], "to the bases of": [65535, 0], "the bases of isolated": [65535, 0], "bases of isolated and": [65535, 0], "of isolated and incorruptible": [65535, 0], "isolated and incorruptible rocks": [65535, 0], "and incorruptible rocks like": [65535, 0], "incorruptible rocks like sid": [65535, 0], "rocks like sid and": [65535, 0], "like sid and mary": [65535, 0], "sid and mary but": [65535, 0], "and mary but now": [65535, 0], "mary but now every": [65535, 0], "but now every sound": [65535, 0], "now every sound ceased": [65535, 0], "every sound ceased suddenly": [65535, 0], "sound ceased suddenly with": [65535, 0], "ceased suddenly with the": [65535, 0], "suddenly with the subsidence": [65535, 0], "with the subsidence of": [65535, 0], "the subsidence of mr": [65535, 0], "subsidence of mr walters'": [65535, 0], "of mr walters' voice": [65535, 0], "mr walters' voice and": [65535, 0], "walters' voice and the": [65535, 0], "voice and the conclusion": [65535, 0], "and the conclusion of": [65535, 0], "the conclusion of the": [65535, 0], "conclusion of the speech": [65535, 0], "the speech was received": [65535, 0], "speech was received with": [65535, 0], "was received with a": [65535, 0], "received with a burst": [65535, 0], "with a burst of": [65535, 0], "a burst of silent": [65535, 0], "burst of silent gratitude": [65535, 0], "of silent gratitude a": [65535, 0], "silent gratitude a good": [65535, 0], "gratitude a good part": [65535, 0], "a good part of": [65535, 0], "good part of the": [65535, 0], "part of the whispering": [65535, 0], "of the whispering had": [65535, 0], "the whispering had been": [65535, 0], "whispering had been occasioned": [65535, 0], "had been occasioned by": [65535, 0], "been occasioned by an": [65535, 0], "occasioned by an event": [65535, 0], "by an event which": [65535, 0], "an event which was": [65535, 0], "event which was more": [65535, 0], "which was more or": [65535, 0], "was more or less": [65535, 0], "more or less rare": [65535, 0], "or less rare the": [65535, 0], "less rare the entrance": [65535, 0], "rare the entrance of": [65535, 0], "the entrance of visitors": [65535, 0], "entrance of visitors lawyer": [65535, 0], "of visitors lawyer thatcher": [65535, 0], "visitors lawyer thatcher accompanied": [65535, 0], "lawyer thatcher accompanied by": [65535, 0], "thatcher accompanied by a": [65535, 0], "accompanied by a very": [65535, 0], "by a very feeble": [65535, 0], "a very feeble and": [65535, 0], "very feeble and aged": [65535, 0], "feeble and aged man": [65535, 0], "and aged man a": [65535, 0], "aged man a fine": [65535, 0], "man a fine portly": [65535, 0], "a fine portly middle": [65535, 0], "fine portly middle aged": [65535, 0], "portly middle aged gentleman": [65535, 0], "middle aged gentleman with": [65535, 0], "aged gentleman with iron": [65535, 0], "gentleman with iron gray": [65535, 0], "with iron gray hair": [65535, 0], "iron gray hair and": [65535, 0], "gray hair and a": [65535, 0], "hair and a dignified": [65535, 0], "and a dignified lady": [65535, 0], "a dignified lady who": [65535, 0], "dignified lady who was": [65535, 0], "lady who was doubtless": [65535, 0], "who was doubtless the": [65535, 0], "was doubtless the latter's": [65535, 0], "doubtless the latter's wife": [65535, 0], "the latter's wife the": [65535, 0], "latter's wife the lady": [65535, 0], "wife the lady was": [65535, 0], "the lady was leading": [65535, 0], "lady was leading a": [65535, 0], "was leading a child": [65535, 0], "leading a child tom": [65535, 0], "a child tom had": [65535, 0], "child tom had been": [65535, 0], "tom had been restless": [65535, 0], "had been restless and": [65535, 0], "been restless and full": [65535, 0], "restless and full of": [65535, 0], "and full of chafings": [65535, 0], "full of chafings and": [65535, 0], "of chafings and repinings": [65535, 0], "chafings and repinings conscience": [65535, 0], "and repinings conscience smitten": [65535, 0], "repinings conscience smitten too": [65535, 0], "conscience smitten too he": [65535, 0], "smitten too he could": [65535, 0], "too he could not": [65535, 0], "he could not meet": [65535, 0], "could not meet amy": [65535, 0], "not meet amy lawrence's": [65535, 0], "meet amy lawrence's eye": [65535, 0], "amy lawrence's eye he": [65535, 0], "lawrence's eye he could": [65535, 0], "eye he could not": [65535, 0], "he could not brook": [65535, 0], "could not brook her": [65535, 0], "not brook her loving": [65535, 0], "brook her loving gaze": [65535, 0], "her loving gaze but": [65535, 0], "loving gaze but when": [65535, 0], "gaze but when he": [65535, 0], "but when he saw": [65535, 0], "when he saw this": [65535, 0], "he saw this small": [65535, 0], "saw this small new": [65535, 0], "this small new comer": [65535, 0], "small new comer his": [65535, 0], "new comer his soul": [65535, 0], "comer his soul was": [65535, 0], "his soul was all": [65535, 0], "soul was all ablaze": [65535, 0], "was all ablaze with": [65535, 0], "all ablaze with bliss": [65535, 0], "ablaze with bliss in": [65535, 0], "with bliss in a": [65535, 0], "bliss in a moment": [65535, 0], "in a moment the": [65535, 0], "a moment the next": [65535, 0], "moment the next moment": [65535, 0], "the next moment he": [65535, 0], "next moment he was": [65535, 0], "moment he was showing": [65535, 0], "he was showing off": [65535, 0], "was showing off with": [65535, 0], "showing off with all": [65535, 0], "off with all his": [65535, 0], "with all his might": [65535, 0], "all his might cuffing": [65535, 0], "his might cuffing boys": [65535, 0], "might cuffing boys pulling": [65535, 0], "cuffing boys pulling hair": [65535, 0], "boys pulling hair making": [65535, 0], "pulling hair making faces": [65535, 0], "hair making faces in": [65535, 0], "making faces in a": [65535, 0], "faces in a word": [65535, 0], "in a word using": [65535, 0], "a word using every": [65535, 0], "word using every art": [65535, 0], "using every art that": [65535, 0], "every art that seemed": [65535, 0], "art that seemed likely": [65535, 0], "that seemed likely to": [65535, 0], "seemed likely to fascinate": [65535, 0], "likely to fascinate a": [65535, 0], "to fascinate a girl": [65535, 0], "fascinate a girl and": [65535, 0], "a girl and win": [65535, 0], "girl and win her": [65535, 0], "and win her applause": [65535, 0], "win her applause his": [65535, 0], "her applause his exaltation": [65535, 0], "applause his exaltation had": [65535, 0], "his exaltation had but": [65535, 0], "exaltation had but one": [65535, 0], "had but one alloy": [65535, 0], "but one alloy the": [65535, 0], "one alloy the memory": [65535, 0], "alloy the memory of": [65535, 0], "the memory of his": [65535, 0], "memory of his humiliation": [65535, 0], "of his humiliation in": [65535, 0], "his humiliation in this": [65535, 0], "humiliation in this angel's": [65535, 0], "in this angel's garden": [65535, 0], "this angel's garden and": [65535, 0], "angel's garden and that": [65535, 0], "garden and that record": [65535, 0], "and that record in": [65535, 0], "that record in sand": [65535, 0], "record in sand was": [65535, 0], "in sand was fast": [65535, 0], "sand was fast washing": [65535, 0], "was fast washing out": [65535, 0], "fast washing out under": [65535, 0], "washing out under the": [65535, 0], "out under the waves": [65535, 0], "under the waves of": [65535, 0], "the waves of happiness": [65535, 0], "waves of happiness that": [65535, 0], "of happiness that were": [65535, 0], "happiness that were sweeping": [65535, 0], "that were sweeping over": [65535, 0], "were sweeping over it": [65535, 0], "sweeping over it now": [65535, 0], "over it now the": [65535, 0], "it now the visitors": [65535, 0], "now the visitors were": [65535, 0], "the visitors were given": [65535, 0], "visitors were given the": [65535, 0], "were given the highest": [65535, 0], "given the highest seat": [65535, 0], "the highest seat of": [65535, 0], "highest seat of honor": [65535, 0], "seat of honor and": [65535, 0], "of honor and as": [65535, 0], "honor and as soon": [65535, 0], "as soon as mr": [65535, 0], "soon as mr walters'": [65535, 0], "as mr walters' speech": [65535, 0], "mr walters' speech was": [65535, 0], "walters' speech was finished": [65535, 0], "speech was finished he": [65535, 0], "was finished he introduced": [65535, 0], "finished he introduced them": [65535, 0], "he introduced them to": [65535, 0], "introduced them to the": [65535, 0], "them to the school": [65535, 0], "to the school the": [65535, 0], "the school the middle": [65535, 0], "school the middle aged": [65535, 0], "the middle aged man": [65535, 0], "middle aged man turned": [65535, 0], "aged man turned out": [65535, 0], "man turned out to": [65535, 0], "turned out to be": [65535, 0], "out to be a": [65535, 0], "to be a prodigious": [65535, 0], "be a prodigious personage": [65535, 0], "a prodigious personage no": [65535, 0], "prodigious personage no less": [65535, 0], "personage no less a": [65535, 0], "no less a one": [65535, 0], "less a one than": [65535, 0], "a one than the": [65535, 0], "one than the county": [65535, 0], "than the county judge": [65535, 0], "the county judge altogether": [65535, 0], "county judge altogether the": [65535, 0], "judge altogether the most": [65535, 0], "altogether the most august": [65535, 0], "the most august creation": [65535, 0], "most august creation these": [65535, 0], "august creation these children": [65535, 0], "creation these children had": [65535, 0], "these children had ever": [65535, 0], "children had ever looked": [65535, 0], "had ever looked upon": [65535, 0], "ever looked upon and": [65535, 0], "looked upon and they": [65535, 0], "upon and they wondered": [65535, 0], "and they wondered what": [65535, 0], "they wondered what kind": [65535, 0], "wondered what kind of": [65535, 0], "what kind of material": [65535, 0], "kind of material he": [65535, 0], "of material he was": [65535, 0], "material he was made": [65535, 0], "he was made of": [65535, 0], "was made of and": [65535, 0], "made of and they": [65535, 0], "of and they half": [65535, 0], "and they half wanted": [65535, 0], "they half wanted to": [65535, 0], "half wanted to hear": [65535, 0], "wanted to hear him": [65535, 0], "to hear him roar": [65535, 0], "hear him roar and": [65535, 0], "him roar and were": [65535, 0], "roar and were half": [65535, 0], "and were half afraid": [65535, 0], "were half afraid he": [65535, 0], "half afraid he might": [65535, 0], "afraid he might too": [65535, 0], "he might too he": [65535, 0], "might too he was": [65535, 0], "too he was from": [65535, 0], "he was from constantinople": [65535, 0], "was from constantinople twelve": [65535, 0], "from constantinople twelve miles": [65535, 0], "constantinople twelve miles away": [65535, 0], "twelve miles away so": [65535, 0], "miles away so he": [65535, 0], "away so he had": [65535, 0], "so he had travelled": [65535, 0], "he had travelled and": [65535, 0], "had travelled and seen": [65535, 0], "travelled and seen the": [65535, 0], "and seen the world": [65535, 0], "seen the world these": [65535, 0], "the world these very": [65535, 0], "world these very eyes": [65535, 0], "these very eyes had": [65535, 0], "very eyes had looked": [65535, 0], "eyes had looked upon": [65535, 0], "had looked upon the": [65535, 0], "looked upon the county": [65535, 0], "upon the county court": [65535, 0], "the county court house": [65535, 0], "county court house which": [65535, 0], "court house which was": [65535, 0], "house which was said": [65535, 0], "which was said to": [65535, 0], "was said to have": [65535, 0], "said to have a": [65535, 0], "to have a tin": [65535, 0], "have a tin roof": [65535, 0], "a tin roof the": [65535, 0], "tin roof the awe": [65535, 0], "roof the awe which": [65535, 0], "the awe which these": [65535, 0], "awe which these reflections": [65535, 0], "which these reflections inspired": [65535, 0], "these reflections inspired was": [65535, 0], "reflections inspired was attested": [65535, 0], "inspired was attested by": [65535, 0], "was attested by the": [65535, 0], "attested by the impressive": [65535, 0], "by the impressive silence": [65535, 0], "the impressive silence and": [65535, 0], "impressive silence and the": [65535, 0], "silence and the ranks": [65535, 0], "and the ranks of": [65535, 0], "the ranks of staring": [65535, 0], "ranks of staring eyes": [65535, 0], "of staring eyes this": [65535, 0], "staring eyes this was": [65535, 0], "eyes this was the": [65535, 0], "this was the great": [65535, 0], "was the great judge": [65535, 0], "the great judge thatcher": [65535, 0], "great judge thatcher brother": [65535, 0], "judge thatcher brother of": [65535, 0], "thatcher brother of their": [65535, 0], "brother of their own": [65535, 0], "of their own lawyer": [65535, 0], "their own lawyer jeff": [65535, 0], "own lawyer jeff thatcher": [65535, 0], "lawyer jeff thatcher immediately": [65535, 0], "jeff thatcher immediately went": [65535, 0], "thatcher immediately went forward": [65535, 0], "immediately went forward to": [65535, 0], "went forward to be": [65535, 0], "forward to be familiar": [65535, 0], "to be familiar with": [65535, 0], "be familiar with the": [65535, 0], "familiar with the great": [65535, 0], "with the great man": [65535, 0], "the great man and": [65535, 0], "great man and be": [65535, 0], "man and be envied": [65535, 0], "and be envied by": [65535, 0], "be envied by the": [65535, 0], "envied by the school": [65535, 0], "by the school it": [65535, 0], "the school it would": [65535, 0], "school it would have": [65535, 0], "it would have been": [65535, 0], "would have been music": [65535, 0], "have been music to": [65535, 0], "been music to his": [65535, 0], "music to his soul": [65535, 0], "to his soul to": [65535, 0], "his soul to hear": [65535, 0], "soul to hear the": [65535, 0], "to hear the whisperings": [65535, 0], "hear the whisperings look": [65535, 0], "the whisperings look at": [65535, 0], "whisperings look at him": [65535, 0], "look at him jim": [65535, 0], "at him jim he's": [65535, 0], "him jim he's a": [65535, 0], "jim he's a going": [65535, 0], "he's a going up": [65535, 0], "a going up there": [65535, 0], "going up there say": [65535, 0], "up there say look": [65535, 0], "there say look he's": [65535, 0], "say look he's a": [65535, 0], "look he's a going": [65535, 0], "he's a going to": [65535, 0], "a going to shake": [65535, 0], "going to shake hands": [65535, 0], "to shake hands with": [65535, 0], "shake hands with him": [65535, 0], "hands with him he": [65535, 0], "with him he is": [65535, 0], "him he is shaking": [65535, 0], "he is shaking hands": [65535, 0], "is shaking hands with": [65535, 0], "shaking hands with him": [65535, 0], "hands with him by": [65535, 0], "with him by jings": [65535, 0], "him by jings don't": [65535, 0], "by jings don't you": [65535, 0], "jings don't you wish": [65535, 0], "you wish you was": [65535, 0], "wish you was jeff": [65535, 0], "you was jeff mr": [65535, 0], "was jeff mr walters": [65535, 0], "jeff mr walters fell": [65535, 0], "mr walters fell to": [65535, 0], "walters fell to showing": [65535, 0], "fell to showing off": [65535, 0], "to showing off with": [65535, 0], "off with all sorts": [65535, 0], "with all sorts of": [65535, 0], "all sorts of official": [65535, 0], "sorts of official bustlings": [65535, 0], "of official bustlings and": [65535, 0], "official bustlings and activities": [65535, 0], "bustlings and activities giving": [65535, 0], "and activities giving orders": [65535, 0], "activities giving orders delivering": [65535, 0], "giving orders delivering judgments": [65535, 0], "orders delivering judgments discharging": [65535, 0], "delivering judgments discharging directions": [65535, 0], "judgments discharging directions here": [65535, 0], "discharging directions here there": [65535, 0], "directions here there everywhere": [65535, 0], "here there everywhere that": [65535, 0], "there everywhere that he": [65535, 0], "everywhere that he could": [65535, 0], "that he could find": [65535, 0], "he could find a": [65535, 0], "could find a target": [65535, 0], "find a target the": [65535, 0], "a target the librarian": [65535, 0], "target the librarian showed": [65535, 0], "the librarian showed off": [65535, 0], "librarian showed off running": [65535, 0], "showed off running hither": [65535, 0], "off running hither and": [65535, 0], "running hither and thither": [65535, 0], "hither and thither with": [65535, 0], "and thither with his": [65535, 0], "thither with his arms": [65535, 0], "with his arms full": [65535, 0], "his arms full of": [65535, 0], "arms full of books": [65535, 0], "full of books and": [65535, 0], "of books and making": [65535, 0], "books and making a": [65535, 0], "and making a deal": [65535, 0], "making a deal of": [65535, 0], "a deal of the": [65535, 0], "deal of the splutter": [65535, 0], "of the splutter and": [65535, 0], "the splutter and fuss": [65535, 0], "splutter and fuss that": [65535, 0], "and fuss that insect": [65535, 0], "fuss that insect authority": [65535, 0], "that insect authority delights": [65535, 0], "insect authority delights in": [65535, 0], "authority delights in the": [65535, 0], "delights in the young": [65535, 0], "in the young lady": [65535, 0], "the young lady teachers": [65535, 0], "young lady teachers showed": [65535, 0], "lady teachers showed off": [65535, 0], "teachers showed off bending": [65535, 0], "showed off bending sweetly": [65535, 0], "off bending sweetly over": [65535, 0], "bending sweetly over pupils": [65535, 0], "sweetly over pupils that": [65535, 0], "over pupils that were": [65535, 0], "pupils that were lately": [65535, 0], "that were lately being": [65535, 0], "were lately being boxed": [65535, 0], "lately being boxed lifting": [65535, 0], "being boxed lifting pretty": [65535, 0], "boxed lifting pretty warning": [65535, 0], "lifting pretty warning fingers": [65535, 0], "pretty warning fingers at": [65535, 0], "warning fingers at bad": [65535, 0], "fingers at bad little": [65535, 0], "at bad little boys": [65535, 0], "bad little boys and": [65535, 0], "little boys and patting": [65535, 0], "boys and patting good": [65535, 0], "and patting good ones": [65535, 0], "patting good ones lovingly": [65535, 0], "good ones lovingly the": [65535, 0], "ones lovingly the young": [65535, 0], "lovingly the young gentlemen": [65535, 0], "the young gentlemen teachers": [65535, 0], "young gentlemen teachers showed": [65535, 0], "gentlemen teachers showed off": [65535, 0], "teachers showed off with": [65535, 0], "showed off with small": [65535, 0], "off with small scoldings": [65535, 0], "with small scoldings and": [65535, 0], "small scoldings and other": [65535, 0], "scoldings and other little": [65535, 0], "and other little displays": [65535, 0], "other little displays of": [65535, 0], "little displays of authority": [65535, 0], "displays of authority and": [65535, 0], "of authority and fine": [65535, 0], "authority and fine attention": [65535, 0], "and fine attention to": [65535, 0], "fine attention to discipline": [65535, 0], "attention to discipline and": [65535, 0], "to discipline and most": [65535, 0], "discipline and most of": [65535, 0], "and most of the": [65535, 0], "most of the teachers": [65535, 0], "of the teachers of": [65535, 0], "the teachers of both": [65535, 0], "teachers of both sexes": [65535, 0], "of both sexes found": [65535, 0], "both sexes found business": [65535, 0], "sexes found business up": [65535, 0], "found business up at": [65535, 0], "business up at the": [65535, 0], "up at the library": [65535, 0], "at the library by": [65535, 0], "the library by the": [65535, 0], "library by the pulpit": [65535, 0], "by the pulpit and": [65535, 0], "the pulpit and it": [65535, 0], "pulpit and it was": [65535, 0], "and it was business": [65535, 0], "it was business that": [65535, 0], "was business that frequently": [65535, 0], "business that frequently had": [65535, 0], "that frequently had to": [65535, 0], "frequently had to be": [65535, 0], "had to be done": [65535, 0], "to be done over": [65535, 0], "be done over again": [65535, 0], "done over again two": [65535, 0], "over again two or": [65535, 0], "again two or three": [65535, 0], "two or three times": [65535, 0], "or three times with": [65535, 0], "three times with much": [65535, 0], "times with much seeming": [65535, 0], "with much seeming vexation": [65535, 0], "much seeming vexation the": [65535, 0], "seeming vexation the little": [65535, 0], "vexation the little girls": [65535, 0], "the little girls showed": [65535, 0], "little girls showed off": [65535, 0], "girls showed off in": [65535, 0], "showed off in various": [65535, 0], "off in various ways": [65535, 0], "in various ways and": [65535, 0], "various ways and the": [65535, 0], "ways and the little": [65535, 0], "and the little boys": [65535, 0], "the little boys showed": [65535, 0], "little boys showed off": [65535, 0], "boys showed off with": [65535, 0], "showed off with such": [65535, 0], "off with such diligence": [65535, 0], "with such diligence that": [65535, 0], "such diligence that the": [65535, 0], "diligence that the air": [65535, 0], "that the air was": [65535, 0], "the air was thick": [65535, 0], "air was thick with": [65535, 0], "was thick with paper": [65535, 0], "thick with paper wads": [65535, 0], "with paper wads and": [65535, 0], "paper wads and the": [65535, 0], "wads and the murmur": [65535, 0], "and the murmur of": [65535, 0], "the murmur of scufflings": [65535, 0], "murmur of scufflings and": [65535, 0], "of scufflings and above": [65535, 0], "scufflings and above it": [65535, 0], "and above it all": [65535, 0], "above it all the": [65535, 0], "it all the great": [65535, 0], "all the great man": [65535, 0], "the great man sat": [65535, 0], "great man sat and": [65535, 0], "man sat and beamed": [65535, 0], "sat and beamed a": [65535, 0], "and beamed a majestic": [65535, 0], "beamed a majestic judicial": [65535, 0], "a majestic judicial smile": [65535, 0], "majestic judicial smile upon": [65535, 0], "judicial smile upon all": [65535, 0], "smile upon all the": [65535, 0], "upon all the house": [65535, 0], "all the house and": [65535, 0], "the house and warmed": [65535, 0], "house and warmed himself": [65535, 0], "and warmed himself in": [65535, 0], "warmed himself in the": [65535, 0], "himself in the sun": [65535, 0], "in the sun of": [65535, 0], "the sun of his": [65535, 0], "sun of his own": [65535, 0], "of his own grandeur": [65535, 0], "his own grandeur for": [65535, 0], "own grandeur for he": [65535, 0], "grandeur for he was": [65535, 0], "for he was showing": [65535, 0], "was showing off too": [65535, 0], "showing off too there": [65535, 0], "off too there was": [65535, 0], "too there was only": [65535, 0], "there was only one": [65535, 0], "was only one thing": [65535, 0], "only one thing wanting": [65535, 0], "one thing wanting to": [65535, 0], "thing wanting to make": [65535, 0], "wanting to make mr": [65535, 0], "to make mr walters'": [65535, 0], "make mr walters' ecstasy": [65535, 0], "mr walters' ecstasy complete": [65535, 0], "walters' ecstasy complete and": [65535, 0], "ecstasy complete and that": [65535, 0], "complete and that was": [65535, 0], "and that was a": [65535, 0], "that was a chance": [65535, 0], "was a chance to": [65535, 0], "a chance to deliver": [65535, 0], "chance to deliver a": [65535, 0], "to deliver a bible": [65535, 0], "deliver a bible prize": [65535, 0], "a bible prize and": [65535, 0], "bible prize and exhibit": [65535, 0], "prize and exhibit a": [65535, 0], "and exhibit a prodigy": [65535, 0], "exhibit a prodigy several": [65535, 0], "a prodigy several pupils": [65535, 0], "prodigy several pupils had": [65535, 0], "several pupils had a": [65535, 0], "pupils had a few": [65535, 0], "had a few yellow": [65535, 0], "a few yellow tickets": [65535, 0], "few yellow tickets but": [65535, 0], "yellow tickets but none": [65535, 0], "tickets but none had": [65535, 0], "but none had enough": [65535, 0], "none had enough he": [65535, 0], "had enough he had": [65535, 0], "enough he had been": [65535, 0], "he had been around": [65535, 0], "had been around among": [65535, 0], "been around among the": [65535, 0], "around among the star": [65535, 0], "among the star pupils": [65535, 0], "the star pupils inquiring": [65535, 0], "star pupils inquiring he": [65535, 0], "pupils inquiring he would": [65535, 0], "inquiring he would have": [65535, 0], "he would have given": [65535, 0], "would have given worlds": [65535, 0], "have given worlds now": [65535, 0], "given worlds now to": [65535, 0], "worlds now to have": [65535, 0], "now to have that": [65535, 0], "to have that german": [65535, 0], "have that german lad": [65535, 0], "that german lad back": [65535, 0], "german lad back again": [65535, 0], "lad back again with": [65535, 0], "back again with a": [65535, 0], "again with a sound": [65535, 0], "with a sound mind": [65535, 0], "a sound mind and": [65535, 0], "sound mind and now": [65535, 0], "mind and now at": [65535, 0], "and now at this": [65535, 0], "now at this moment": [65535, 0], "at this moment when": [65535, 0], "this moment when hope": [65535, 0], "moment when hope was": [65535, 0], "when hope was dead": [65535, 0], "hope was dead tom": [65535, 0], "was dead tom sawyer": [65535, 0], "dead tom sawyer came": [65535, 0], "tom sawyer came forward": [65535, 0], "sawyer came forward with": [65535, 0], "came forward with nine": [65535, 0], "forward with nine yellow": [65535, 0], "with nine yellow tickets": [65535, 0], "nine yellow tickets nine": [65535, 0], "yellow tickets nine red": [65535, 0], "tickets nine red tickets": [65535, 0], "nine red tickets and": [65535, 0], "red tickets and ten": [65535, 0], "tickets and ten blue": [65535, 0], "and ten blue ones": [65535, 0], "ten blue ones and": [65535, 0], "blue ones and demanded": [65535, 0], "ones and demanded a": [65535, 0], "and demanded a bible": [65535, 0], "demanded a bible this": [65535, 0], "a bible this was": [65535, 0], "bible this was a": [65535, 0], "this was a thunderbolt": [65535, 0], "was a thunderbolt out": [65535, 0], "a thunderbolt out of": [65535, 0], "thunderbolt out of a": [65535, 0], "out of a clear": [65535, 0], "of a clear sky": [65535, 0], "a clear sky walters": [65535, 0], "clear sky walters was": [65535, 0], "sky walters was not": [65535, 0], "walters was not expecting": [65535, 0], "was not expecting an": [65535, 0], "not expecting an application": [65535, 0], "expecting an application from": [65535, 0], "an application from this": [65535, 0], "application from this source": [65535, 0], "from this source for": [65535, 0], "this source for the": [65535, 0], "source for the next": [65535, 0], "for the next ten": [65535, 0], "the next ten years": [65535, 0], "next ten years but": [65535, 0], "ten years but there": [65535, 0], "years but there was": [65535, 0], "but there was no": [65535, 0], "there was no getting": [65535, 0], "was no getting around": [65535, 0], "no getting around it": [65535, 0], "getting around it here": [65535, 0], "around it here were": [65535, 0], "it here were the": [65535, 0], "here were the certified": [65535, 0], "were the certified checks": [65535, 0], "the certified checks and": [65535, 0], "certified checks and they": [65535, 0], "checks and they were": [65535, 0], "and they were good": [65535, 0], "they were good for": [65535, 0], "were good for their": [65535, 0], "good for their face": [65535, 0], "for their face tom": [65535, 0], "their face tom was": [65535, 0], "face tom was therefore": [65535, 0], "tom was therefore elevated": [65535, 0], "was therefore elevated to": [65535, 0], "therefore elevated to a": [65535, 0], "elevated to a place": [65535, 0], "to a place with": [65535, 0], "a place with the": [65535, 0], "place with the judge": [65535, 0], "with the judge and": [65535, 0], "the judge and the": [65535, 0], "judge and the other": [65535, 0], "and the other elect": [65535, 0], "the other elect and": [65535, 0], "other elect and the": [65535, 0], "elect and the great": [65535, 0], "and the great news": [65535, 0], "the great news was": [65535, 0], "great news was announced": [65535, 0], "news was announced from": [65535, 0], "was announced from headquarters": [65535, 0], "announced from headquarters it": [65535, 0], "from headquarters it was": [65535, 0], "headquarters it was the": [65535, 0], "it was the most": [65535, 0], "was the most stunning": [65535, 0], "the most stunning surprise": [65535, 0], "most stunning surprise of": [65535, 0], "stunning surprise of the": [65535, 0], "surprise of the decade": [65535, 0], "of the decade and": [65535, 0], "the decade and so": [65535, 0], "decade and so profound": [65535, 0], "and so profound was": [65535, 0], "so profound was the": [65535, 0], "profound was the sensation": [65535, 0], "was the sensation that": [65535, 0], "the sensation that it": [65535, 0], "sensation that it lifted": [65535, 0], "that it lifted the": [65535, 0], "it lifted the new": [65535, 0], "lifted the new hero": [65535, 0], "the new hero up": [65535, 0], "new hero up to": [65535, 0], "hero up to the": [65535, 0], "up to the judicial": [65535, 0], "to the judicial one's": [65535, 0], "the judicial one's altitude": [65535, 0], "judicial one's altitude and": [65535, 0], "one's altitude and the": [65535, 0], "altitude and the school": [65535, 0], "and the school had": [65535, 0], "the school had two": [65535, 0], "school had two marvels": [65535, 0], "had two marvels to": [65535, 0], "two marvels to gaze": [65535, 0], "marvels to gaze upon": [65535, 0], "to gaze upon in": [65535, 0], "gaze upon in place": [65535, 0], "upon in place of": [65535, 0], "in place of one": [65535, 0], "place of one the": [65535, 0], "of one the boys": [65535, 0], "one the boys were": [65535, 0], "the boys were all": [65535, 0], "boys were all eaten": [65535, 0], "were all eaten up": [65535, 0], "all eaten up with": [65535, 0], "eaten up with envy": [65535, 0], "up with envy but": [65535, 0], "with envy but those": [65535, 0], "envy but those that": [65535, 0], "but those that suffered": [65535, 0], "those that suffered the": [65535, 0], "that suffered the bitterest": [65535, 0], "suffered the bitterest pangs": [65535, 0], "the bitterest pangs were": [65535, 0], "bitterest pangs were those": [65535, 0], "pangs were those who": [65535, 0], "were those who perceived": [65535, 0], "those who perceived too": [65535, 0], "who perceived too late": [65535, 0], "perceived too late that": [65535, 0], "too late that they": [65535, 0], "late that they themselves": [65535, 0], "that they themselves had": [65535, 0], "they themselves had contributed": [65535, 0], "themselves had contributed to": [65535, 0], "had contributed to this": [65535, 0], "contributed to this hated": [65535, 0], "to this hated splendor": [65535, 0], "this hated splendor by": [65535, 0], "hated splendor by trading": [65535, 0], "splendor by trading tickets": [65535, 0], "by trading tickets to": [65535, 0], "trading tickets to tom": [65535, 0], "tickets to tom for": [65535, 0], "to tom for the": [65535, 0], "tom for the wealth": [65535, 0], "for the wealth he": [65535, 0], "the wealth he had": [65535, 0], "wealth he had amassed": [65535, 0], "he had amassed in": [65535, 0], "had amassed in selling": [65535, 0], "amassed in selling whitewashing": [65535, 0], "in selling whitewashing privileges": [65535, 0], "selling whitewashing privileges these": [65535, 0], "whitewashing privileges these despised": [65535, 0], "privileges these despised themselves": [65535, 0], "these despised themselves as": [65535, 0], "despised themselves as being": [65535, 0], "themselves as being the": [65535, 0], "as being the dupes": [65535, 0], "being the dupes of": [65535, 0], "the dupes of a": [65535, 0], "dupes of a wily": [65535, 0], "of a wily fraud": [65535, 0], "a wily fraud a": [65535, 0], "wily fraud a guileful": [65535, 0], "fraud a guileful snake": [65535, 0], "a guileful snake in": [65535, 0], "guileful snake in the": [65535, 0], "snake in the grass": [65535, 0], "in the grass the": [65535, 0], "the grass the prize": [65535, 0], "grass the prize was": [65535, 0], "the prize was delivered": [65535, 0], "prize was delivered to": [65535, 0], "was delivered to tom": [65535, 0], "delivered to tom with": [65535, 0], "to tom with as": [65535, 0], "tom with as much": [65535, 0], "with as much effusion": [65535, 0], "as much effusion as": [65535, 0], "much effusion as the": [65535, 0], "effusion as the superintendent": [65535, 0], "as the superintendent could": [65535, 0], "the superintendent could pump": [65535, 0], "superintendent could pump up": [65535, 0], "could pump up under": [65535, 0], "pump up under the": [65535, 0], "up under the circumstances": [65535, 0], "under the circumstances but": [65535, 0], "the circumstances but it": [65535, 0], "circumstances but it lacked": [65535, 0], "but it lacked somewhat": [65535, 0], "it lacked somewhat of": [65535, 0], "lacked somewhat of the": [65535, 0], "somewhat of the true": [65535, 0], "of the true gush": [65535, 0], "the true gush for": [65535, 0], "true gush for the": [65535, 0], "gush for the poor": [65535, 0], "for the poor fellow's": [65535, 0], "the poor fellow's instinct": [65535, 0], "poor fellow's instinct taught": [65535, 0], "fellow's instinct taught him": [65535, 0], "instinct taught him that": [65535, 0], "taught him that there": [65535, 0], "him that there was": [65535, 0], "that there was a": [65535, 0], "there was a mystery": [65535, 0], "was a mystery here": [65535, 0], "a mystery here that": [65535, 0], "mystery here that could": [65535, 0], "here that could not": [65535, 0], "that could not well": [65535, 0], "could not well bear": [65535, 0], "not well bear the": [65535, 0], "well bear the light": [65535, 0], "bear the light perhaps": [65535, 0], "the light perhaps it": [65535, 0], "light perhaps it was": [65535, 0], "perhaps it was simply": [65535, 0], "it was simply preposterous": [65535, 0], "was simply preposterous that": [65535, 0], "simply preposterous that this": [65535, 0], "preposterous that this boy": [65535, 0], "that this boy had": [65535, 0], "this boy had warehoused": [65535, 0], "boy had warehoused two": [65535, 0], "had warehoused two thousand": [65535, 0], "warehoused two thousand sheaves": [65535, 0], "two thousand sheaves of": [65535, 0], "thousand sheaves of scriptural": [65535, 0], "sheaves of scriptural wisdom": [65535, 0], "of scriptural wisdom on": [65535, 0], "scriptural wisdom on his": [65535, 0], "wisdom on his premises": [65535, 0], "on his premises a": [65535, 0], "his premises a dozen": [65535, 0], "premises a dozen would": [65535, 0], "a dozen would strain": [65535, 0], "dozen would strain his": [65535, 0], "would strain his capacity": [65535, 0], "strain his capacity without": [65535, 0], "his capacity without a": [65535, 0], "capacity without a doubt": [65535, 0], "without a doubt amy": [65535, 0], "a doubt amy lawrence": [65535, 0], "doubt amy lawrence was": [65535, 0], "amy lawrence was proud": [65535, 0], "lawrence was proud and": [65535, 0], "was proud and glad": [65535, 0], "proud and glad and": [65535, 0], "and glad and she": [65535, 0], "glad and she tried": [65535, 0], "and she tried to": [65535, 0], "she tried to make": [65535, 0], "tried to make tom": [65535, 0], "to make tom see": [65535, 0], "make tom see it": [65535, 0], "tom see it in": [65535, 0], "see it in her": [65535, 0], "it in her face": [65535, 0], "in her face but": [65535, 0], "her face but he": [65535, 0], "face but he wouldn't": [65535, 0], "but he wouldn't look": [65535, 0], "he wouldn't look she": [65535, 0], "wouldn't look she wondered": [65535, 0], "look she wondered then": [65535, 0], "she wondered then she": [65535, 0], "wondered then she was": [65535, 0], "then she was just": [65535, 0], "she was just a": [65535, 0], "was just a grain": [65535, 0], "just a grain troubled": [65535, 0], "a grain troubled next": [65535, 0], "grain troubled next a": [65535, 0], "troubled next a dim": [65535, 0], "next a dim suspicion": [65535, 0], "a dim suspicion came": [65535, 0], "dim suspicion came and": [65535, 0], "suspicion came and went": [65535, 0], "came and went came": [65535, 0], "and went came again": [65535, 0], "went came again she": [65535, 0], "came again she watched": [65535, 0], "again she watched a": [65535, 0], "she watched a furtive": [65535, 0], "watched a furtive glance": [65535, 0], "a furtive glance told": [65535, 0], "furtive glance told her": [65535, 0], "glance told her worlds": [65535, 0], "told her worlds and": [65535, 0], "her worlds and then": [65535, 0], "worlds and then her": [65535, 0], "and then her heart": [65535, 0], "then her heart broke": [65535, 0], "her heart broke and": [65535, 0], "heart broke and she": [65535, 0], "broke and she was": [65535, 0], "and she was jealous": [65535, 0], "she was jealous and": [65535, 0], "was jealous and angry": [65535, 0], "jealous and angry and": [65535, 0], "and angry and the": [65535, 0], "angry and the tears": [65535, 0], "and the tears came": [65535, 0], "the tears came and": [65535, 0], "tears came and she": [65535, 0], "came and she hated": [65535, 0], "and she hated everybody": [65535, 0], "she hated everybody tom": [65535, 0], "hated everybody tom most": [65535, 0], "everybody tom most of": [65535, 0], "tom most of all": [65535, 0], "most of all she": [65535, 0], "of all she thought": [65535, 0], "all she thought tom": [65535, 0], "she thought tom was": [65535, 0], "thought tom was introduced": [65535, 0], "tom was introduced to": [65535, 0], "was introduced to the": [65535, 0], "introduced to the judge": [65535, 0], "to the judge but": [65535, 0], "the judge but his": [65535, 0], "judge but his tongue": [65535, 0], "but his tongue was": [65535, 0], "his tongue was tied": [65535, 0], "tongue was tied his": [65535, 0], "was tied his breath": [65535, 0], "tied his breath would": [65535, 0], "his breath would hardly": [65535, 0], "breath would hardly come": [65535, 0], "would hardly come his": [65535, 0], "hardly come his heart": [65535, 0], "come his heart quaked": [65535, 0], "his heart quaked partly": [65535, 0], "heart quaked partly because": [65535, 0], "quaked partly because of": [65535, 0], "partly because of the": [65535, 0], "because of the awful": [65535, 0], "of the awful greatness": [65535, 0], "the awful greatness of": [65535, 0], "awful greatness of the": [65535, 0], "greatness of the man": [65535, 0], "of the man but": [65535, 0], "the man but mainly": [65535, 0], "man but mainly because": [65535, 0], "but mainly because he": [65535, 0], "mainly because he was": [65535, 0], "because he was her": [65535, 0], "he was her parent": [65535, 0], "was her parent he": [65535, 0], "her parent he would": [65535, 0], "parent he would have": [65535, 0], "he would have liked": [65535, 0], "would have liked to": [65535, 0], "have liked to fall": [65535, 0], "liked to fall down": [65535, 0], "to fall down and": [65535, 0], "fall down and worship": [65535, 0], "down and worship him": [65535, 0], "and worship him if": [65535, 0], "worship him if it": [65535, 0], "him if it were": [65535, 0], "if it were in": [65535, 0], "it were in the": [65535, 0], "were in the dark": [65535, 0], "in the dark the": [65535, 0], "the dark the judge": [65535, 0], "dark the judge put": [65535, 0], "the judge put his": [65535, 0], "judge put his hand": [65535, 0], "put his hand on": [65535, 0], "his hand on tom's": [65535, 0], "hand on tom's head": [65535, 0], "on tom's head and": [65535, 0], "tom's head and called": [65535, 0], "head and called him": [65535, 0], "and called him a": [65535, 0], "called him a fine": [65535, 0], "him a fine little": [65535, 0], "a fine little man": [65535, 0], "fine little man and": [65535, 0], "little man and asked": [65535, 0], "man and asked him": [65535, 0], "and asked him what": [65535, 0], "asked him what his": [65535, 0], "him what his name": [65535, 0], "what his name was": [65535, 0], "his name was the": [65535, 0], "name was the boy": [65535, 0], "was the boy stammered": [65535, 0], "the boy stammered gasped": [65535, 0], "boy stammered gasped and": [65535, 0], "stammered gasped and got": [65535, 0], "gasped and got it": [65535, 0], "got it out tom": [65535, 0], "it out tom oh": [65535, 0], "out tom oh no": [65535, 0], "tom oh no not": [65535, 0], "oh no not tom": [65535, 0], "no not tom it": [65535, 0], "not tom it is": [65535, 0], "tom it is thomas": [65535, 0], "it is thomas ah": [65535, 0], "is thomas ah that's": [65535, 0], "thomas ah that's it": [65535, 0], "ah that's it i": [65535, 0], "that's it i thought": [65535, 0], "it i thought there": [65535, 0], "i thought there was": [65535, 0], "thought there was more": [65535, 0], "there was more to": [65535, 0], "was more to it": [65535, 0], "more to it maybe": [65535, 0], "to it maybe that's": [65535, 0], "it maybe that's very": [65535, 0], "maybe that's very well": [65535, 0], "that's very well but": [65535, 0], "very well but you've": [65535, 0], "well but you've another": [65535, 0], "but you've another one": [65535, 0], "you've another one i": [65535, 0], "another one i daresay": [65535, 0], "one i daresay and": [65535, 0], "i daresay and you'll": [65535, 0], "daresay and you'll tell": [65535, 0], "and you'll tell it": [65535, 0], "you'll tell it to": [65535, 0], "tell it to me": [65535, 0], "it to me won't": [65535, 0], "to me won't you": [65535, 0], "me won't you tell": [65535, 0], "won't you tell the": [65535, 0], "you tell the gentleman": [65535, 0], "tell the gentleman your": [65535, 0], "the gentleman your other": [65535, 0], "gentleman your other name": [65535, 0], "your other name thomas": [65535, 0], "other name thomas said": [65535, 0], "name thomas said walters": [65535, 0], "thomas said walters and": [65535, 0], "said walters and say": [65535, 0], "walters and say sir": [65535, 0], "and say sir you": [65535, 0], "say sir you mustn't": [65535, 0], "sir you mustn't forget": [65535, 0], "you mustn't forget your": [65535, 0], "mustn't forget your manners": [65535, 0], "forget your manners thomas": [65535, 0], "your manners thomas sawyer": [65535, 0], "manners thomas sawyer sir": [65535, 0], "thomas sawyer sir that's": [65535, 0], "sawyer sir that's it": [65535, 0], "sir that's it that's": [65535, 0], "that's it that's a": [65535, 0], "it that's a good": [65535, 0], "a good boy fine": [65535, 0], "good boy fine boy": [65535, 0], "boy fine boy fine": [65535, 0], "fine boy fine manly": [65535, 0], "boy fine manly little": [65535, 0], "fine manly little fellow": [65535, 0], "manly little fellow two": [65535, 0], "little fellow two thousand": [65535, 0], "fellow two thousand verses": [65535, 0], "two thousand verses is": [65535, 0], "thousand verses is a": [65535, 0], "verses is a great": [65535, 0], "is a great many": [65535, 0], "a great many very": [65535, 0], "great many very very": [65535, 0], "many very very great": [65535, 0], "very very great many": [65535, 0], "very great many and": [65535, 0], "great many and you": [65535, 0], "many and you never": [65535, 0], "and you never can": [65535, 0], "you never can be": [65535, 0], "never can be sorry": [65535, 0], "can be sorry for": [65535, 0], "be sorry for the": [65535, 0], "sorry for the trouble": [65535, 0], "for the trouble you": [65535, 0], "the trouble you took": [65535, 0], "trouble you took to": [65535, 0], "you took to learn": [65535, 0], "took to learn them": [65535, 0], "to learn them for": [65535, 0], "learn them for knowledge": [65535, 0], "them for knowledge is": [65535, 0], "for knowledge is worth": [65535, 0], "knowledge is worth more": [65535, 0], "is worth more than": [65535, 0], "worth more than anything": [65535, 0], "more than anything there": [65535, 0], "than anything there is": [65535, 0], "anything there is in": [65535, 0], "there is in the": [65535, 0], "is in the world": [65535, 0], "in the world it's": [65535, 0], "the world it's what": [65535, 0], "world it's what makes": [65535, 0], "it's what makes great": [65535, 0], "what makes great men": [65535, 0], "makes great men and": [65535, 0], "great men and good": [65535, 0], "men and good men": [65535, 0], "and good men you'll": [65535, 0], "good men you'll be": [65535, 0], "men you'll be a": [65535, 0], "you'll be a great": [65535, 0], "be a great man": [65535, 0], "a great man and": [65535, 0], "great man and a": [65535, 0], "man and a good": [65535, 0], "and a good man": [65535, 0], "a good man yourself": [65535, 0], "good man yourself some": [65535, 0], "man yourself some day": [65535, 0], "yourself some day thomas": [65535, 0], "some day thomas and": [65535, 0], "day thomas and then": [65535, 0], "thomas and then you'll": [65535, 0], "and then you'll look": [65535, 0], "then you'll look back": [65535, 0], "you'll look back and": [65535, 0], "look back and say": [65535, 0], "back and say it's": [65535, 0], "and say it's all": [65535, 0], "say it's all owing": [65535, 0], "it's all owing to": [65535, 0], "all owing to the": [65535, 0], "owing to the precious": [65535, 0], "to the precious sunday": [65535, 0], "the precious sunday school": [65535, 0], "precious sunday school privileges": [65535, 0], "sunday school privileges of": [65535, 0], "school privileges of my": [65535, 0], "privileges of my boyhood": [65535, 0], "of my boyhood it's": [65535, 0], "my boyhood it's all": [65535, 0], "boyhood it's all owing": [65535, 0], "all owing to my": [65535, 0], "owing to my dear": [65535, 0], "to my dear teachers": [65535, 0], "my dear teachers that": [65535, 0], "dear teachers that taught": [65535, 0], "teachers that taught me": [65535, 0], "that taught me to": [65535, 0], "taught me to learn": [65535, 0], "me to learn it's": [65535, 0], "to learn it's all": [65535, 0], "learn it's all owing": [65535, 0], "owing to the good": [65535, 0], "to the good superintendent": [65535, 0], "the good superintendent who": [65535, 0], "good superintendent who encouraged": [65535, 0], "superintendent who encouraged me": [65535, 0], "who encouraged me and": [65535, 0], "encouraged me and watched": [65535, 0], "me and watched over": [65535, 0], "and watched over me": [65535, 0], "watched over me and": [65535, 0], "over me and gave": [65535, 0], "me and gave me": [65535, 0], "and gave me a": [65535, 0], "gave me a beautiful": [65535, 0], "me a beautiful bible": [65535, 0], "a beautiful bible a": [65535, 0], "beautiful bible a splendid": [65535, 0], "bible a splendid elegant": [65535, 0], "a splendid elegant bible": [65535, 0], "splendid elegant bible to": [65535, 0], "elegant bible to keep": [65535, 0], "bible to keep and": [65535, 0], "to keep and have": [65535, 0], "keep and have it": [65535, 0], "and have it all": [65535, 0], "have it all for": [65535, 0], "it all for my": [65535, 0], "all for my own": [65535, 0], "for my own always": [65535, 0], "my own always it's": [65535, 0], "own always it's all": [65535, 0], "always it's all owing": [65535, 0], "all owing to right": [65535, 0], "owing to right bringing": [65535, 0], "to right bringing up": [65535, 0], "right bringing up that": [65535, 0], "bringing up that is": [65535, 0], "up that is what": [65535, 0], "that is what you": [65535, 0], "is what you will": [65535, 0], "what you will say": [65535, 0], "you will say thomas": [65535, 0], "will say thomas and": [65535, 0], "say thomas and you": [65535, 0], "thomas and you wouldn't": [65535, 0], "and you wouldn't take": [65535, 0], "you wouldn't take any": [65535, 0], "wouldn't take any money": [65535, 0], "take any money for": [65535, 0], "any money for those": [65535, 0], "money for those two": [65535, 0], "for those two thousand": [65535, 0], "those two thousand verses": [65535, 0], "two thousand verses no": [65535, 0], "thousand verses no indeed": [65535, 0], "verses no indeed you": [65535, 0], "no indeed you wouldn't": [65535, 0], "indeed you wouldn't and": [65535, 0], "you wouldn't and now": [65535, 0], "wouldn't and now you": [65535, 0], "and now you wouldn't": [65535, 0], "now you wouldn't mind": [65535, 0], "you wouldn't mind telling": [65535, 0], "wouldn't mind telling me": [65535, 0], "mind telling me and": [65535, 0], "telling me and this": [65535, 0], "me and this lady": [65535, 0], "and this lady some": [65535, 0], "this lady some of": [65535, 0], "lady some of the": [65535, 0], "some of the things": [65535, 0], "of the things you've": [65535, 0], "the things you've learned": [65535, 0], "things you've learned no": [65535, 0], "you've learned no i": [65535, 0], "learned no i know": [65535, 0], "no i know you": [65535, 0], "i know you wouldn't": [65535, 0], "know you wouldn't for": [65535, 0], "you wouldn't for we": [65535, 0], "wouldn't for we are": [65535, 0], "for we are proud": [65535, 0], "we are proud of": [65535, 0], "are proud of little": [65535, 0], "proud of little boys": [65535, 0], "of little boys that": [65535, 0], "little boys that learn": [65535, 0], "boys that learn now": [65535, 0], "that learn now no": [65535, 0], "learn now no doubt": [65535, 0], "now no doubt you": [65535, 0], "no doubt you know": [65535, 0], "doubt you know the": [65535, 0], "you know the names": [65535, 0], "know the names of": [65535, 0], "the names of all": [65535, 0], "names of all the": [65535, 0], "of all the twelve": [65535, 0], "all the twelve disciples": [65535, 0], "the twelve disciples won't": [65535, 0], "twelve disciples won't you": [65535, 0], "disciples won't you tell": [65535, 0], "won't you tell us": [65535, 0], "you tell us the": [65535, 0], "tell us the names": [65535, 0], "us the names of": [65535, 0], "the names of the": [65535, 0], "names of the first": [65535, 0], "of the first two": [65535, 0], "the first two that": [65535, 0], "first two that were": [65535, 0], "two that were appointed": [65535, 0], "that were appointed tom": [65535, 0], "were appointed tom was": [65535, 0], "appointed tom was tugging": [65535, 0], "tom was tugging at": [65535, 0], "was tugging at a": [65535, 0], "tugging at a button": [65535, 0], "at a button hole": [65535, 0], "a button hole and": [65535, 0], "button hole and looking": [65535, 0], "hole and looking sheepish": [65535, 0], "and looking sheepish he": [65535, 0], "looking sheepish he blushed": [65535, 0], "sheepish he blushed now": [65535, 0], "he blushed now and": [65535, 0], "blushed now and his": [65535, 0], "now and his eyes": [65535, 0], "and his eyes fell": [65535, 0], "his eyes fell mr": [65535, 0], "eyes fell mr walters'": [65535, 0], "fell mr walters' heart": [65535, 0], "mr walters' heart sank": [65535, 0], "walters' heart sank within": [65535, 0], "heart sank within him": [65535, 0], "sank within him he": [65535, 0], "within him he said": [65535, 0], "him he said to": [65535, 0], "said to himself it": [65535, 0], "to himself it is": [65535, 0], "himself it is not": [65535, 0], "it is not possible": [65535, 0], "is not possible that": [65535, 0], "not possible that the": [65535, 0], "possible that the boy": [65535, 0], "that the boy can": [65535, 0], "the boy can answer": [65535, 0], "boy can answer the": [65535, 0], "can answer the simplest": [65535, 0], "answer the simplest question": [65535, 0], "the simplest question why": [65535, 0], "simplest question why did": [65535, 0], "question why did the": [65535, 0], "why did the judge": [65535, 0], "did the judge ask": [65535, 0], "the judge ask him": [65535, 0], "judge ask him yet": [65535, 0], "ask him yet he": [65535, 0], "him yet he felt": [65535, 0], "yet he felt obliged": [65535, 0], "he felt obliged to": [65535, 0], "felt obliged to speak": [65535, 0], "obliged to speak up": [65535, 0], "to speak up and": [65535, 0], "speak up and say": [65535, 0], "up and say answer": [65535, 0], "and say answer the": [65535, 0], "say answer the gentleman": [65535, 0], "answer the gentleman thomas": [65535, 0], "the gentleman thomas don't": [65535, 0], "gentleman thomas don't be": [65535, 0], "thomas don't be afraid": [65535, 0], "don't be afraid tom": [65535, 0], "be afraid tom still": [65535, 0], "afraid tom still hung": [65535, 0], "tom still hung fire": [65535, 0], "still hung fire now": [65535, 0], "hung fire now i": [65535, 0], "fire now i know": [65535, 0], "now i know you'll": [65535, 0], "i know you'll tell": [65535, 0], "know you'll tell me": [65535, 0], "you'll tell me said": [65535, 0], "tell me said the": [65535, 0], "me said the lady": [65535, 0], "said the lady the": [65535, 0], "the lady the names": [65535, 0], "lady the names of": [65535, 0], "the first two disciples": [65535, 0], "first two disciples were": [65535, 0], "two disciples were david": [65535, 0], "disciples were david and": [65535, 0], "were david and goliath": [65535, 0], "david and goliath let": [65535, 0], "and goliath let us": [65535, 0], "goliath let us draw": [65535, 0], "let us draw the": [65535, 0], "us draw the curtain": [65535, 0], "draw the curtain of": [65535, 0], "the curtain of charity": [65535, 0], "curtain of charity over": [65535, 0], "of charity over the": [65535, 0], "charity over the rest": [65535, 0], "over the rest of": [65535, 0], "rest of the scene": [65535, 0], "the sun rose upon a": [65535, 0], "sun rose upon a tranquil": [65535, 0], "rose upon a tranquil world": [65535, 0], "upon a tranquil world and": [65535, 0], "a tranquil world and beamed": [65535, 0], "tranquil world and beamed down": [65535, 0], "world and beamed down upon": [65535, 0], "and beamed down upon the": [65535, 0], "beamed down upon the peaceful": [65535, 0], "down upon the peaceful village": [65535, 0], "upon the peaceful village like": [65535, 0], "the peaceful village like a": [65535, 0], "peaceful village like a benediction": [65535, 0], "village like a benediction breakfast": [65535, 0], "like a benediction breakfast over": [65535, 0], "a benediction breakfast over aunt": [65535, 0], "benediction breakfast over aunt polly": [65535, 0], "breakfast over aunt polly had": [65535, 0], "over aunt polly had family": [65535, 0], "aunt polly had family worship": [65535, 0], "polly had family worship it": [65535, 0], "had family worship it began": [65535, 0], "family worship it began with": [65535, 0], "worship it began with a": [65535, 0], "it began with a prayer": [65535, 0], "began with a prayer built": [65535, 0], "with a prayer built from": [65535, 0], "a prayer built from the": [65535, 0], "prayer built from the ground": [65535, 0], "built from the ground up": [65535, 0], "from the ground up of": [65535, 0], "the ground up of solid": [65535, 0], "ground up of solid courses": [65535, 0], "up of solid courses of": [65535, 0], "of solid courses of scriptural": [65535, 0], "solid courses of scriptural quotations": [65535, 0], "courses of scriptural quotations welded": [65535, 0], "of scriptural quotations welded together": [65535, 0], "scriptural quotations welded together with": [65535, 0], "quotations welded together with a": [65535, 0], "welded together with a thin": [65535, 0], "together with a thin mortar": [65535, 0], "with a thin mortar of": [65535, 0], "a thin mortar of originality": [65535, 0], "thin mortar of originality and": [65535, 0], "mortar of originality and from": [65535, 0], "of originality and from the": [65535, 0], "originality and from the summit": [65535, 0], "and from the summit of": [65535, 0], "from the summit of this": [65535, 0], "the summit of this she": [65535, 0], "summit of this she delivered": [65535, 0], "of this she delivered a": [65535, 0], "this she delivered a grim": [65535, 0], "she delivered a grim chapter": [65535, 0], "delivered a grim chapter of": [65535, 0], "a grim chapter of the": [65535, 0], "grim chapter of the mosaic": [65535, 0], "chapter of the mosaic law": [65535, 0], "of the mosaic law as": [65535, 0], "the mosaic law as from": [65535, 0], "mosaic law as from sinai": [65535, 0], "law as from sinai then": [65535, 0], "as from sinai then tom": [65535, 0], "from sinai then tom girded": [65535, 0], "sinai then tom girded up": [65535, 0], "then tom girded up his": [65535, 0], "tom girded up his loins": [65535, 0], "girded up his loins so": [65535, 0], "up his loins so to": [65535, 0], "his loins so to speak": [65535, 0], "loins so to speak and": [65535, 0], "so to speak and went": [65535, 0], "to speak and went to": [65535, 0], "speak and went to work": [65535, 0], "and went to work to": [65535, 0], "went to work to get": [65535, 0], "to work to get his": [65535, 0], "work to get his verses": [65535, 0], "to get his verses sid": [65535, 0], "get his verses sid had": [65535, 0], "his verses sid had learned": [65535, 0], "verses sid had learned his": [65535, 0], "sid had learned his lesson": [65535, 0], "had learned his lesson days": [65535, 0], "learned his lesson days before": [65535, 0], "his lesson days before tom": [65535, 0], "lesson days before tom bent": [65535, 0], "days before tom bent all": [65535, 0], "before tom bent all his": [65535, 0], "tom bent all his energies": [65535, 0], "bent all his energies to": [65535, 0], "all his energies to the": [65535, 0], "his energies to the memorizing": [65535, 0], "energies to the memorizing of": [65535, 0], "to the memorizing of five": [65535, 0], "the memorizing of five verses": [65535, 0], "memorizing of five verses and": [65535, 0], "of five verses and he": [65535, 0], "five verses and he chose": [65535, 0], "verses and he chose part": [65535, 0], "and he chose part of": [65535, 0], "he chose part of the": [65535, 0], "chose part of the sermon": [65535, 0], "part of the sermon on": [65535, 0], "of the sermon on the": [65535, 0], "the sermon on the mount": [65535, 0], "sermon on the mount because": [65535, 0], "on the mount because he": [65535, 0], "the mount because he could": [65535, 0], "mount because he could find": [65535, 0], "because he could find no": [65535, 0], "he could find no verses": [65535, 0], "could find no verses that": [65535, 0], "find no verses that were": [65535, 0], "no verses that were shorter": [65535, 0], "verses that were shorter at": [65535, 0], "that were shorter at the": [65535, 0], "were shorter at the end": [65535, 0], "shorter at the end of": [65535, 0], "at the end of half": [65535, 0], "the end of half an": [65535, 0], "end of half an hour": [65535, 0], "of half an hour tom": [65535, 0], "half an hour tom had": [65535, 0], "an hour tom had a": [65535, 0], "hour tom had a vague": [65535, 0], "tom had a vague general": [65535, 0], "had a vague general idea": [65535, 0], "a vague general idea of": [65535, 0], "vague general idea of his": [65535, 0], "general idea of his lesson": [65535, 0], "idea of his lesson but": [65535, 0], "of his lesson but no": [65535, 0], "his lesson but no more": [65535, 0], "lesson but no more for": [65535, 0], "but no more for his": [65535, 0], "no more for his mind": [65535, 0], "more for his mind was": [65535, 0], "for his mind was traversing": [65535, 0], "his mind was traversing the": [65535, 0], "mind was traversing the whole": [65535, 0], "was traversing the whole field": [65535, 0], "traversing the whole field of": [65535, 0], "the whole field of human": [65535, 0], "whole field of human thought": [65535, 0], "field of human thought and": [65535, 0], "of human thought and his": [65535, 0], "human thought and his hands": [65535, 0], "thought and his hands were": [65535, 0], "and his hands were busy": [65535, 0], "his hands were busy with": [65535, 0], "hands were busy with distracting": [65535, 0], "were busy with distracting recreations": [65535, 0], "busy with distracting recreations mary": [65535, 0], "with distracting recreations mary took": [65535, 0], "distracting recreations mary took his": [65535, 0], "recreations mary took his book": [65535, 0], "mary took his book to": [65535, 0], "took his book to hear": [65535, 0], "his book to hear him": [65535, 0], "book to hear him recite": [65535, 0], "to hear him recite and": [65535, 0], "hear him recite and he": [65535, 0], "him recite and he tried": [65535, 0], "recite and he tried to": [65535, 0], "and he tried to find": [65535, 0], "he tried to find his": [65535, 0], "tried to find his way": [65535, 0], "to find his way through": [65535, 0], "find his way through the": [65535, 0], "his way through the fog": [65535, 0], "way through the fog blessed": [65535, 0], "through the fog blessed are": [65535, 0], "the fog blessed are the": [65535, 0], "fog blessed are the a": [65535, 0], "blessed are the a a": [65535, 0], "are the a a poor": [65535, 0], "the a a poor yes": [65535, 0], "a a poor yes poor": [65535, 0], "a poor yes poor blessed": [65535, 0], "poor yes poor blessed are": [65535, 0], "yes poor blessed are the": [65535, 0], "poor blessed are the poor": [65535, 0], "blessed are the poor a": [65535, 0], "are the poor a a": [65535, 0], "the poor a a in": [65535, 0], "poor a a in spirit": [65535, 0], "a a in spirit in": [65535, 0], "a in spirit in spirit": [65535, 0], "in spirit in spirit blessed": [65535, 0], "spirit in spirit blessed are": [65535, 0], "in spirit blessed are the": [65535, 0], "spirit blessed are the poor": [65535, 0], "blessed are the poor in": [65535, 0], "are the poor in spirit": [65535, 0], "the poor in spirit for": [65535, 0], "poor in spirit for they": [65535, 0], "in spirit for they they": [65535, 0], "spirit for they they theirs": [65535, 0], "for they they theirs for": [65535, 0], "they they theirs for theirs": [65535, 0], "they theirs for theirs blessed": [65535, 0], "theirs for theirs blessed are": [65535, 0], "for theirs blessed are the": [65535, 0], "theirs blessed are the poor": [65535, 0], "poor in spirit for theirs": [65535, 0], "in spirit for theirs is": [65535, 0], "spirit for theirs is the": [65535, 0], "for theirs is the kingdom": [65535, 0], "theirs is the kingdom of": [65535, 0], "is the kingdom of heaven": [65535, 0], "the kingdom of heaven blessed": [65535, 0], "kingdom of heaven blessed are": [65535, 0], "of heaven blessed are they": [65535, 0], "heaven blessed are they that": [65535, 0], "blessed are they that mourn": [65535, 0], "are they that mourn for": [65535, 0], "they that mourn for they": [65535, 0], "that mourn for they they": [65535, 0], "mourn for they they sh": [65535, 0], "for they they sh for": [65535, 0], "they they sh for they": [65535, 0], "they sh for they a": [65535, 0], "sh for they a s": [65535, 0], "for they a s h": [65535, 0], "they a s h a": [65535, 0], "a s h a for": [65535, 0], "s h a for they": [65535, 0], "h a for they s": [65535, 0], "a for they s h": [65535, 0], "for they s h oh": [65535, 0], "they s h oh i": [65535, 0], "s h oh i don't": [65535, 0], "h oh i don't know": [65535, 0], "oh i don't know what": [65535, 0], "i don't know what it": [65535, 0], "don't know what it is": [65535, 0], "know what it is shall": [65535, 0], "what it is shall oh": [65535, 0], "it is shall oh shall": [65535, 0], "is shall oh shall for": [65535, 0], "shall oh shall for they": [65535, 0], "oh shall for they shall": [65535, 0], "shall for they shall for": [65535, 0], "for they shall for they": [65535, 0], "they shall for they shall": [65535, 0], "shall for they shall a": [65535, 0], "for they shall a a": [65535, 0], "they shall a a shall": [65535, 0], "shall a a shall mourn": [65535, 0], "a a shall mourn a": [65535, 0], "a shall mourn a a": [65535, 0], "shall mourn a a blessed": [65535, 0], "mourn a a blessed are": [65535, 0], "a a blessed are they": [65535, 0], "a blessed are they that": [65535, 0], "blessed are they that shall": [65535, 0], "are they that shall they": [65535, 0], "they that shall they that": [65535, 0], "that shall they that a": [65535, 0], "shall they that a they": [65535, 0], "they that a they that": [65535, 0], "that a they that shall": [65535, 0], "a they that shall mourn": [65535, 0], "they that shall mourn for": [65535, 0], "that shall mourn for they": [65535, 0], "shall mourn for they shall": [65535, 0], "mourn for they shall a": [65535, 0], "for they shall a shall": [65535, 0], "they shall a shall what": [65535, 0], "shall a shall what why": [65535, 0], "a shall what why don't": [65535, 0], "shall what why don't you": [65535, 0], "what why don't you tell": [65535, 0], "why don't you tell me": [65535, 0], "don't you tell me mary": [65535, 0], "you tell me mary what": [65535, 0], "tell me mary what do": [65535, 0], "me mary what do you": [65535, 0], "mary what do you want": [65535, 0], "what do you want to": [65535, 0], "do you want to be": [65535, 0], "you want to be so": [65535, 0], "want to be so mean": [65535, 0], "to be so mean for": [65535, 0], "be so mean for oh": [65535, 0], "so mean for oh tom": [65535, 0], "mean for oh tom you": [65535, 0], "for oh tom you poor": [65535, 0], "oh tom you poor thick": [65535, 0], "tom you poor thick headed": [65535, 0], "you poor thick headed thing": [65535, 0], "poor thick headed thing i'm": [65535, 0], "thick headed thing i'm not": [65535, 0], "headed thing i'm not teasing": [65535, 0], "thing i'm not teasing you": [65535, 0], "i'm not teasing you i": [65535, 0], "not teasing you i wouldn't": [65535, 0], "teasing you i wouldn't do": [65535, 0], "you i wouldn't do that": [65535, 0], "i wouldn't do that you": [65535, 0], "wouldn't do that you must": [65535, 0], "do that you must go": [65535, 0], "that you must go and": [65535, 0], "you must go and learn": [65535, 0], "must go and learn it": [65535, 0], "go and learn it again": [65535, 0], "and learn it again don't": [65535, 0], "learn it again don't you": [65535, 0], "it again don't you be": [65535, 0], "again don't you be discouraged": [65535, 0], "don't you be discouraged tom": [65535, 0], "you be discouraged tom you'll": [65535, 0], "be discouraged tom you'll manage": [65535, 0], "discouraged tom you'll manage it": [65535, 0], "tom you'll manage it and": [65535, 0], "you'll manage it and if": [65535, 0], "manage it and if you": [65535, 0], "it and if you do": [65535, 0], "and if you do i'll": [65535, 0], "if you do i'll give": [65535, 0], "you do i'll give you": [65535, 0], "do i'll give you something": [65535, 0], "i'll give you something ever": [65535, 0], "give you something ever so": [65535, 0], "you something ever so nice": [65535, 0], "something ever so nice there": [65535, 0], "ever so nice there now": [65535, 0], "so nice there now that's": [65535, 0], "nice there now that's a": [65535, 0], "there now that's a good": [65535, 0], "now that's a good boy": [65535, 0], "that's a good boy all": [65535, 0], "a good boy all right": [65535, 0], "good boy all right what": [65535, 0], "boy all right what is": [65535, 0], "all right what is it": [65535, 0], "right what is it mary": [65535, 0], "what is it mary tell": [65535, 0], "is it mary tell me": [65535, 0], "it mary tell me what": [65535, 0], "mary tell me what it": [65535, 0], "tell me what it is": [65535, 0], "me what it is never": [65535, 0], "what it is never you": [65535, 0], "it is never you mind": [65535, 0], "is never you mind tom": [65535, 0], "never you mind tom you": [65535, 0], "you mind tom you know": [65535, 0], "mind tom you know if": [65535, 0], "tom you know if i": [65535, 0], "you know if i say": [65535, 0], "know if i say it's": [65535, 0], "if i say it's nice": [65535, 0], "i say it's nice it": [65535, 0], "say it's nice it is": [65535, 0], "it's nice it is nice": [65535, 0], "nice it is nice you": [65535, 0], "it is nice you bet": [65535, 0], "is nice you bet you": [65535, 0], "nice you bet you that's": [65535, 0], "you bet you that's so": [65535, 0], "bet you that's so mary": [65535, 0], "you that's so mary all": [65535, 0], "that's so mary all right": [65535, 0], "so mary all right i'll": [65535, 0], "mary all right i'll tackle": [65535, 0], "all right i'll tackle it": [65535, 0], "right i'll tackle it again": [65535, 0], "i'll tackle it again and": [65535, 0], "tackle it again and he": [65535, 0], "it again and he did": [65535, 0], "again and he did tackle": [65535, 0], "and he did tackle it": [65535, 0], "he did tackle it again": [65535, 0], "did tackle it again and": [65535, 0], "tackle it again and under": [65535, 0], "it again and under the": [65535, 0], "again and under the double": [65535, 0], "and under the double pressure": [65535, 0], "under the double pressure of": [65535, 0], "the double pressure of curiosity": [65535, 0], "double pressure of curiosity and": [65535, 0], "pressure of curiosity and prospective": [65535, 0], "of curiosity and prospective gain": [65535, 0], "curiosity and prospective gain he": [65535, 0], "and prospective gain he did": [65535, 0], "prospective gain he did it": [65535, 0], "gain he did it with": [65535, 0], "he did it with such": [65535, 0], "did it with such spirit": [65535, 0], "it with such spirit that": [65535, 0], "with such spirit that he": [65535, 0], "such spirit that he accomplished": [65535, 0], "spirit that he accomplished a": [65535, 0], "that he accomplished a shining": [65535, 0], "he accomplished a shining success": [65535, 0], "accomplished a shining success mary": [65535, 0], "a shining success mary gave": [65535, 0], "shining success mary gave him": [65535, 0], "success mary gave him a": [65535, 0], "mary gave him a brand": [65535, 0], "gave him a brand new": [65535, 0], "him a brand new barlow": [65535, 0], "a brand new barlow knife": [65535, 0], "brand new barlow knife worth": [65535, 0], "new barlow knife worth twelve": [65535, 0], "barlow knife worth twelve and": [65535, 0], "knife worth twelve and a": [65535, 0], "worth twelve and a half": [65535, 0], "twelve and a half cents": [65535, 0], "and a half cents and": [65535, 0], "a half cents and the": [65535, 0], "half cents and the convulsion": [65535, 0], "cents and the convulsion of": [65535, 0], "and the convulsion of delight": [65535, 0], "the convulsion of delight that": [65535, 0], "convulsion of delight that swept": [65535, 0], "of delight that swept his": [65535, 0], "delight that swept his system": [65535, 0], "that swept his system shook": [65535, 0], "swept his system shook him": [65535, 0], "his system shook him to": [65535, 0], "system shook him to his": [65535, 0], "shook him to his foundations": [65535, 0], "him to his foundations true": [65535, 0], "to his foundations true the": [65535, 0], "his foundations true the knife": [65535, 0], "foundations true the knife would": [65535, 0], "true the knife would not": [65535, 0], "the knife would not cut": [65535, 0], "knife would not cut anything": [65535, 0], "would not cut anything but": [65535, 0], "not cut anything but it": [65535, 0], "cut anything but it was": [65535, 0], "anything but it was a": [65535, 0], "but it was a sure": [65535, 0], "it was a sure enough": [65535, 0], "was a sure enough barlow": [65535, 0], "a sure enough barlow and": [65535, 0], "sure enough barlow and there": [65535, 0], "enough barlow and there was": [65535, 0], "barlow and there was inconceivable": [65535, 0], "and there was inconceivable grandeur": [65535, 0], "there was inconceivable grandeur in": [65535, 0], "was inconceivable grandeur in that": [65535, 0], "inconceivable grandeur in that though": [65535, 0], "grandeur in that though where": [65535, 0], "in that though where the": [65535, 0], "that though where the western": [65535, 0], "though where the western boys": [65535, 0], "where the western boys ever": [65535, 0], "the western boys ever got": [65535, 0], "western boys ever got the": [65535, 0], "boys ever got the idea": [65535, 0], "ever got the idea that": [65535, 0], "got the idea that such": [65535, 0], "the idea that such a": [65535, 0], "idea that such a weapon": [65535, 0], "that such a weapon could": [65535, 0], "such a weapon could possibly": [65535, 0], "a weapon could possibly be": [65535, 0], "weapon could possibly be counterfeited": [65535, 0], "could possibly be counterfeited to": [65535, 0], "possibly be counterfeited to its": [65535, 0], "be counterfeited to its injury": [65535, 0], "counterfeited to its injury is": [65535, 0], "to its injury is an": [65535, 0], "its injury is an imposing": [65535, 0], "injury is an imposing mystery": [65535, 0], "is an imposing mystery and": [65535, 0], "an imposing mystery and will": [65535, 0], "imposing mystery and will always": [65535, 0], "mystery and will always remain": [65535, 0], "and will always remain so": [65535, 0], "will always remain so perhaps": [65535, 0], "always remain so perhaps tom": [65535, 0], "remain so perhaps tom contrived": [65535, 0], "so perhaps tom contrived to": [65535, 0], "perhaps tom contrived to scarify": [65535, 0], "tom contrived to scarify the": [65535, 0], "contrived to scarify the cupboard": [65535, 0], "to scarify the cupboard with": [65535, 0], "scarify the cupboard with it": [65535, 0], "the cupboard with it and": [65535, 0], "cupboard with it and was": [65535, 0], "with it and was arranging": [65535, 0], "it and was arranging to": [65535, 0], "and was arranging to begin": [65535, 0], "was arranging to begin on": [65535, 0], "arranging to begin on the": [65535, 0], "to begin on the bureau": [65535, 0], "begin on the bureau when": [65535, 0], "on the bureau when he": [65535, 0], "the bureau when he was": [65535, 0], "bureau when he was called": [65535, 0], "when he was called off": [65535, 0], "he was called off to": [65535, 0], "was called off to dress": [65535, 0], "called off to dress for": [65535, 0], "off to dress for sunday": [65535, 0], "to dress for sunday school": [65535, 0], "dress for sunday school mary": [65535, 0], "for sunday school mary gave": [65535, 0], "sunday school mary gave him": [65535, 0], "school mary gave him a": [65535, 0], "mary gave him a tin": [65535, 0], "gave him a tin basin": [65535, 0], "him a tin basin of": [65535, 0], "a tin basin of water": [65535, 0], "tin basin of water and": [65535, 0], "basin of water and a": [65535, 0], "of water and a piece": [65535, 0], "water and a piece of": [65535, 0], "and a piece of soap": [65535, 0], "a piece of soap and": [65535, 0], "piece of soap and he": [65535, 0], "of soap and he went": [65535, 0], "soap and he went outside": [65535, 0], "and he went outside the": [65535, 0], "he went outside the door": [65535, 0], "went outside the door and": [65535, 0], "outside the door and set": [65535, 0], "the door and set the": [65535, 0], "door and set the basin": [65535, 0], "and set the basin on": [65535, 0], "set the basin on a": [65535, 0], "the basin on a little": [65535, 0], "basin on a little bench": [65535, 0], "on a little bench there": [65535, 0], "a little bench there then": [65535, 0], "little bench there then he": [65535, 0], "bench there then he dipped": [65535, 0], "there then he dipped the": [65535, 0], "then he dipped the soap": [65535, 0], "he dipped the soap in": [65535, 0], "dipped the soap in the": [65535, 0], "the soap in the water": [65535, 0], "soap in the water and": [65535, 0], "in the water and laid": [65535, 0], "the water and laid it": [65535, 0], "water and laid it down": [65535, 0], "and laid it down turned": [65535, 0], "laid it down turned up": [65535, 0], "it down turned up his": [65535, 0], "down turned up his sleeves": [65535, 0], "turned up his sleeves poured": [65535, 0], "up his sleeves poured out": [65535, 0], "his sleeves poured out the": [65535, 0], "sleeves poured out the water": [65535, 0], "poured out the water on": [65535, 0], "out the water on the": [65535, 0], "the water on the ground": [65535, 0], "water on the ground gently": [65535, 0], "on the ground gently and": [65535, 0], "the ground gently and then": [65535, 0], "ground gently and then entered": [65535, 0], "gently and then entered the": [65535, 0], "and then entered the kitchen": [65535, 0], "then entered the kitchen and": [65535, 0], "entered the kitchen and began": [65535, 0], "the kitchen and began to": [65535, 0], "kitchen and began to wipe": [65535, 0], "and began to wipe his": [65535, 0], "began to wipe his face": [65535, 0], "to wipe his face diligently": [65535, 0], "wipe his face diligently on": [65535, 0], "his face diligently on the": [65535, 0], "face diligently on the towel": [65535, 0], "diligently on the towel behind": [65535, 0], "on the towel behind the": [65535, 0], "the towel behind the door": [65535, 0], "towel behind the door but": [65535, 0], "behind the door but mary": [65535, 0], "the door but mary removed": [65535, 0], "door but mary removed the": [65535, 0], "but mary removed the towel": [65535, 0], "mary removed the towel and": [65535, 0], "removed the towel and said": [65535, 0], "the towel and said now": [65535, 0], "towel and said now ain't": [65535, 0], "and said now ain't you": [65535, 0], "said now ain't you ashamed": [65535, 0], "now ain't you ashamed tom": [65535, 0], "ain't you ashamed tom you": [65535, 0], "you ashamed tom you mustn't": [65535, 0], "ashamed tom you mustn't be": [65535, 0], "tom you mustn't be so": [65535, 0], "you mustn't be so bad": [65535, 0], "mustn't be so bad water": [65535, 0], "be so bad water won't": [65535, 0], "so bad water won't hurt": [65535, 0], "bad water won't hurt you": [65535, 0], "water won't hurt you tom": [65535, 0], "won't hurt you tom was": [65535, 0], "hurt you tom was a": [65535, 0], "you tom was a trifle": [65535, 0], "tom was a trifle disconcerted": [65535, 0], "was a trifle disconcerted the": [65535, 0], "a trifle disconcerted the basin": [65535, 0], "trifle disconcerted the basin was": [65535, 0], "disconcerted the basin was refilled": [65535, 0], "the basin was refilled and": [65535, 0], "basin was refilled and this": [65535, 0], "was refilled and this time": [65535, 0], "refilled and this time he": [65535, 0], "and this time he stood": [65535, 0], "this time he stood over": [65535, 0], "time he stood over it": [65535, 0], "he stood over it a": [65535, 0], "stood over it a little": [65535, 0], "over it a little while": [65535, 0], "it a little while gathering": [65535, 0], "a little while gathering resolution": [65535, 0], "little while gathering resolution took": [65535, 0], "while gathering resolution took in": [65535, 0], "gathering resolution took in a": [65535, 0], "resolution took in a big": [65535, 0], "took in a big breath": [65535, 0], "in a big breath and": [65535, 0], "a big breath and began": [65535, 0], "big breath and began when": [65535, 0], "breath and began when he": [65535, 0], "and began when he entered": [65535, 0], "began when he entered the": [65535, 0], "when he entered the kitchen": [65535, 0], "he entered the kitchen presently": [65535, 0], "entered the kitchen presently with": [65535, 0], "the kitchen presently with both": [65535, 0], "kitchen presently with both eyes": [65535, 0], "presently with both eyes shut": [65535, 0], "with both eyes shut and": [65535, 0], "both eyes shut and groping": [65535, 0], "eyes shut and groping for": [65535, 0], "shut and groping for the": [65535, 0], "and groping for the towel": [65535, 0], "groping for the towel with": [65535, 0], "for the towel with his": [65535, 0], "the towel with his hands": [65535, 0], "towel with his hands an": [65535, 0], "with his hands an honorable": [65535, 0], "his hands an honorable testimony": [65535, 0], "hands an honorable testimony of": [65535, 0], "an honorable testimony of suds": [65535, 0], "honorable testimony of suds and": [65535, 0], "testimony of suds and water": [65535, 0], "of suds and water was": [65535, 0], "suds and water was dripping": [65535, 0], "and water was dripping from": [65535, 0], "water was dripping from his": [65535, 0], "was dripping from his face": [65535, 0], "dripping from his face but": [65535, 0], "from his face but when": [65535, 0], "his face but when he": [65535, 0], "face but when he emerged": [65535, 0], "but when he emerged from": [65535, 0], "when he emerged from the": [65535, 0], "he emerged from the towel": [65535, 0], "emerged from the towel he": [65535, 0], "from the towel he was": [65535, 0], "the towel he was not": [65535, 0], "towel he was not yet": [65535, 0], "he was not yet satisfactory": [65535, 0], "was not yet satisfactory for": [65535, 0], "not yet satisfactory for the": [65535, 0], "yet satisfactory for the clean": [65535, 0], "satisfactory for the clean territory": [65535, 0], "for the clean territory stopped": [65535, 0], "the clean territory stopped short": [65535, 0], "clean territory stopped short at": [65535, 0], "territory stopped short at his": [65535, 0], "stopped short at his chin": [65535, 0], "short at his chin and": [65535, 0], "at his chin and his": [65535, 0], "his chin and his jaws": [65535, 0], "chin and his jaws like": [65535, 0], "and his jaws like a": [65535, 0], "his jaws like a mask": [65535, 0], "jaws like a mask below": [65535, 0], "like a mask below and": [65535, 0], "a mask below and beyond": [65535, 0], "mask below and beyond this": [65535, 0], "below and beyond this line": [65535, 0], "and beyond this line there": [65535, 0], "beyond this line there was": [65535, 0], "this line there was a": [65535, 0], "line there was a dark": [65535, 0], "there was a dark expanse": [65535, 0], "was a dark expanse of": [65535, 0], "a dark expanse of unirrigated": [65535, 0], "dark expanse of unirrigated soil": [65535, 0], "expanse of unirrigated soil that": [65535, 0], "of unirrigated soil that spread": [65535, 0], "unirrigated soil that spread downward": [65535, 0], "soil that spread downward in": [65535, 0], "that spread downward in front": [65535, 0], "spread downward in front and": [65535, 0], "downward in front and backward": [65535, 0], "in front and backward around": [65535, 0], "front and backward around his": [65535, 0], "and backward around his neck": [65535, 0], "backward around his neck mary": [65535, 0], "around his neck mary took": [65535, 0], "his neck mary took him": [65535, 0], "neck mary took him in": [65535, 0], "mary took him in hand": [65535, 0], "took him in hand and": [65535, 0], "him in hand and when": [65535, 0], "in hand and when she": [65535, 0], "hand and when she was": [65535, 0], "and when she was done": [65535, 0], "when she was done with": [65535, 0], "she was done with him": [65535, 0], "was done with him he": [65535, 0], "done with him he was": [65535, 0], "with him he was a": [65535, 0], "him he was a man": [65535, 0], "he was a man and": [65535, 0], "was a man and a": [65535, 0], "a man and a brother": [65535, 0], "man and a brother without": [65535, 0], "and a brother without distinction": [65535, 0], "a brother without distinction of": [65535, 0], "brother without distinction of color": [65535, 0], "without distinction of color and": [65535, 0], "distinction of color and his": [65535, 0], "of color and his saturated": [65535, 0], "color and his saturated hair": [65535, 0], "and his saturated hair was": [65535, 0], "his saturated hair was neatly": [65535, 0], "saturated hair was neatly brushed": [65535, 0], "hair was neatly brushed and": [65535, 0], "was neatly brushed and its": [65535, 0], "neatly brushed and its short": [65535, 0], "brushed and its short curls": [65535, 0], "and its short curls wrought": [65535, 0], "its short curls wrought into": [65535, 0], "short curls wrought into a": [65535, 0], "curls wrought into a dainty": [65535, 0], "wrought into a dainty and": [65535, 0], "into a dainty and symmetrical": [65535, 0], "a dainty and symmetrical general": [65535, 0], "dainty and symmetrical general effect": [65535, 0], "and symmetrical general effect he": [65535, 0], "symmetrical general effect he privately": [65535, 0], "general effect he privately smoothed": [65535, 0], "effect he privately smoothed out": [65535, 0], "he privately smoothed out the": [65535, 0], "privately smoothed out the curls": [65535, 0], "smoothed out the curls with": [65535, 0], "out the curls with labor": [65535, 0], "the curls with labor and": [65535, 0], "curls with labor and difficulty": [65535, 0], "with labor and difficulty and": [65535, 0], "labor and difficulty and plastered": [65535, 0], "and difficulty and plastered his": [65535, 0], "difficulty and plastered his hair": [65535, 0], "and plastered his hair close": [65535, 0], "plastered his hair close down": [65535, 0], "his hair close down to": [65535, 0], "hair close down to his": [65535, 0], "close down to his head": [65535, 0], "down to his head for": [65535, 0], "to his head for he": [65535, 0], "his head for he held": [65535, 0], "head for he held curls": [65535, 0], "for he held curls to": [65535, 0], "he held curls to be": [65535, 0], "held curls to be effeminate": [65535, 0], "curls to be effeminate and": [65535, 0], "to be effeminate and his": [65535, 0], "be effeminate and his own": [65535, 0], "effeminate and his own filled": [65535, 0], "and his own filled his": [65535, 0], "his own filled his life": [65535, 0], "own filled his life with": [65535, 0], "filled his life with bitterness": [65535, 0], "his life with bitterness then": [65535, 0], "life with bitterness then mary": [65535, 0], "with bitterness then mary got": [65535, 0], "bitterness then mary got out": [65535, 0], "then mary got out a": [65535, 0], "mary got out a suit": [65535, 0], "got out a suit of": [65535, 0], "out a suit of his": [65535, 0], "a suit of his clothing": [65535, 0], "suit of his clothing that": [65535, 0], "of his clothing that had": [65535, 0], "his clothing that had been": [65535, 0], "clothing that had been used": [65535, 0], "that had been used only": [65535, 0], "had been used only on": [65535, 0], "been used only on sundays": [65535, 0], "used only on sundays during": [65535, 0], "only on sundays during two": [65535, 0], "on sundays during two years": [65535, 0], "sundays during two years they": [65535, 0], "during two years they were": [65535, 0], "two years they were simply": [65535, 0], "years they were simply called": [65535, 0], "they were simply called his": [65535, 0], "were simply called his other": [65535, 0], "simply called his other clothes": [65535, 0], "called his other clothes and": [65535, 0], "his other clothes and so": [65535, 0], "other clothes and so by": [65535, 0], "clothes and so by that": [65535, 0], "and so by that we": [65535, 0], "so by that we know": [65535, 0], "by that we know the": [65535, 0], "that we know the size": [65535, 0], "we know the size of": [65535, 0], "know the size of his": [65535, 0], "the size of his wardrobe": [65535, 0], "size of his wardrobe the": [65535, 0], "of his wardrobe the girl": [65535, 0], "his wardrobe the girl put": [65535, 0], "wardrobe the girl put him": [65535, 0], "the girl put him to": [65535, 0], "girl put him to rights": [65535, 0], "put him to rights after": [65535, 0], "him to rights after he": [65535, 0], "to rights after he had": [65535, 0], "rights after he had dressed": [65535, 0], "after he had dressed himself": [65535, 0], "he had dressed himself she": [65535, 0], "had dressed himself she buttoned": [65535, 0], "dressed himself she buttoned his": [65535, 0], "himself she buttoned his neat": [65535, 0], "she buttoned his neat roundabout": [65535, 0], "buttoned his neat roundabout up": [65535, 0], "his neat roundabout up to": [65535, 0], "neat roundabout up to his": [65535, 0], "roundabout up to his chin": [65535, 0], "up to his chin turned": [65535, 0], "to his chin turned his": [65535, 0], "his chin turned his vast": [65535, 0], "chin turned his vast shirt": [65535, 0], "turned his vast shirt collar": [65535, 0], "his vast shirt collar down": [65535, 0], "vast shirt collar down over": [65535, 0], "shirt collar down over his": [65535, 0], "collar down over his shoulders": [65535, 0], "down over his shoulders brushed": [65535, 0], "over his shoulders brushed him": [65535, 0], "his shoulders brushed him off": [65535, 0], "shoulders brushed him off and": [65535, 0], "brushed him off and crowned": [65535, 0], "him off and crowned him": [65535, 0], "off and crowned him with": [65535, 0], "and crowned him with his": [65535, 0], "crowned him with his speckled": [65535, 0], "him with his speckled straw": [65535, 0], "with his speckled straw hat": [65535, 0], "his speckled straw hat he": [65535, 0], "speckled straw hat he now": [65535, 0], "straw hat he now looked": [65535, 0], "hat he now looked exceedingly": [65535, 0], "he now looked exceedingly improved": [65535, 0], "now looked exceedingly improved and": [65535, 0], "looked exceedingly improved and uncomfortable": [65535, 0], "exceedingly improved and uncomfortable he": [65535, 0], "improved and uncomfortable he was": [65535, 0], "and uncomfortable he was fully": [65535, 0], "uncomfortable he was fully as": [65535, 0], "he was fully as uncomfortable": [65535, 0], "was fully as uncomfortable as": [65535, 0], "fully as uncomfortable as he": [65535, 0], "as uncomfortable as he looked": [65535, 0], "uncomfortable as he looked for": [65535, 0], "as he looked for there": [65535, 0], "he looked for there was": [65535, 0], "looked for there was a": [65535, 0], "for there was a restraint": [65535, 0], "there was a restraint about": [65535, 0], "was a restraint about whole": [65535, 0], "a restraint about whole clothes": [65535, 0], "restraint about whole clothes and": [65535, 0], "about whole clothes and cleanliness": [65535, 0], "whole clothes and cleanliness that": [65535, 0], "clothes and cleanliness that galled": [65535, 0], "and cleanliness that galled him": [65535, 0], "cleanliness that galled him he": [65535, 0], "that galled him he hoped": [65535, 0], "galled him he hoped that": [65535, 0], "him he hoped that mary": [65535, 0], "he hoped that mary would": [65535, 0], "hoped that mary would forget": [65535, 0], "that mary would forget his": [65535, 0], "mary would forget his shoes": [65535, 0], "would forget his shoes but": [65535, 0], "forget his shoes but the": [65535, 0], "his shoes but the hope": [65535, 0], "shoes but the hope was": [65535, 0], "but the hope was blighted": [65535, 0], "the hope was blighted she": [65535, 0], "hope was blighted she coated": [65535, 0], "was blighted she coated them": [65535, 0], "blighted she coated them thoroughly": [65535, 0], "she coated them thoroughly with": [65535, 0], "coated them thoroughly with tallow": [65535, 0], "them thoroughly with tallow as": [65535, 0], "thoroughly with tallow as was": [65535, 0], "with tallow as was the": [65535, 0], "tallow as was the custom": [65535, 0], "as was the custom and": [65535, 0], "was the custom and brought": [65535, 0], "the custom and brought them": [65535, 0], "custom and brought them out": [65535, 0], "and brought them out he": [65535, 0], "brought them out he lost": [65535, 0], "them out he lost his": [65535, 0], "out he lost his temper": [65535, 0], "he lost his temper and": [65535, 0], "lost his temper and said": [65535, 0], "his temper and said he": [65535, 0], "temper and said he was": [65535, 0], "and said he was always": [65535, 0], "said he was always being": [65535, 0], "he was always being made": [65535, 0], "was always being made to": [65535, 0], "always being made to do": [65535, 0], "being made to do everything": [65535, 0], "made to do everything he": [65535, 0], "to do everything he didn't": [65535, 0], "do everything he didn't want": [65535, 0], "everything he didn't want to": [65535, 0], "he didn't want to do": [65535, 0], "didn't want to do but": [65535, 0], "want to do but mary": [65535, 0], "to do but mary said": [65535, 0], "do but mary said persuasively": [65535, 0], "but mary said persuasively please": [65535, 0], "mary said persuasively please tom": [65535, 0], "said persuasively please tom that's": [65535, 0], "persuasively please tom that's a": [65535, 0], "please tom that's a good": [65535, 0], "tom that's a good boy": [65535, 0], "that's a good boy so": [65535, 0], "a good boy so he": [65535, 0], "good boy so he got": [65535, 0], "boy so he got into": [65535, 0], "so he got into the": [65535, 0], "he got into the shoes": [65535, 0], "got into the shoes snarling": [65535, 0], "into the shoes snarling mary": [65535, 0], "the shoes snarling mary was": [65535, 0], "shoes snarling mary was soon": [65535, 0], "snarling mary was soon ready": [65535, 0], "mary was soon ready and": [65535, 0], "was soon ready and the": [65535, 0], "soon ready and the three": [65535, 0], "ready and the three children": [65535, 0], "and the three children set": [65535, 0], "the three children set out": [65535, 0], "three children set out for": [65535, 0], "children set out for sunday": [65535, 0], "set out for sunday school": [65535, 0], "out for sunday school a": [65535, 0], "for sunday school a place": [65535, 0], "sunday school a place that": [65535, 0], "school a place that tom": [65535, 0], "a place that tom hated": [65535, 0], "place that tom hated with": [65535, 0], "that tom hated with his": [65535, 0], "tom hated with his whole": [65535, 0], "hated with his whole heart": [65535, 0], "with his whole heart but": [65535, 0], "his whole heart but sid": [65535, 0], "whole heart but sid and": [65535, 0], "heart but sid and mary": [65535, 0], "but sid and mary were": [65535, 0], "sid and mary were fond": [65535, 0], "and mary were fond of": [65535, 0], "mary were fond of it": [65535, 0], "were fond of it sabbath": [65535, 0], "fond of it sabbath school": [65535, 0], "of it sabbath school hours": [65535, 0], "it sabbath school hours were": [65535, 0], "sabbath school hours were from": [65535, 0], "school hours were from nine": [65535, 0], "hours were from nine to": [65535, 0], "were from nine to half": [65535, 0], "from nine to half past": [65535, 0], "nine to half past ten": [65535, 0], "to half past ten and": [65535, 0], "half past ten and then": [65535, 0], "past ten and then church": [65535, 0], "ten and then church service": [65535, 0], "and then church service two": [65535, 0], "then church service two of": [65535, 0], "church service two of the": [65535, 0], "service two of the children": [65535, 0], "two of the children always": [65535, 0], "of the children always remained": [65535, 0], "the children always remained for": [65535, 0], "children always remained for the": [65535, 0], "always remained for the sermon": [65535, 0], "remained for the sermon voluntarily": [65535, 0], "for the sermon voluntarily and": [65535, 0], "the sermon voluntarily and the": [65535, 0], "sermon voluntarily and the other": [65535, 0], "voluntarily and the other always": [65535, 0], "and the other always remained": [65535, 0], "the other always remained too": [65535, 0], "other always remained too for": [65535, 0], "always remained too for stronger": [65535, 0], "remained too for stronger reasons": [65535, 0], "too for stronger reasons the": [65535, 0], "for stronger reasons the church's": [65535, 0], "stronger reasons the church's high": [65535, 0], "reasons the church's high backed": [65535, 0], "the church's high backed uncushioned": [65535, 0], "church's high backed uncushioned pews": [65535, 0], "high backed uncushioned pews would": [65535, 0], "backed uncushioned pews would seat": [65535, 0], "uncushioned pews would seat about": [65535, 0], "pews would seat about three": [65535, 0], "would seat about three hundred": [65535, 0], "seat about three hundred persons": [65535, 0], "about three hundred persons the": [65535, 0], "three hundred persons the edifice": [65535, 0], "hundred persons the edifice was": [65535, 0], "persons the edifice was but": [65535, 0], "the edifice was but a": [65535, 0], "edifice was but a small": [65535, 0], "was but a small plain": [65535, 0], "but a small plain affair": [65535, 0], "a small plain affair with": [65535, 0], "small plain affair with a": [65535, 0], "plain affair with a sort": [65535, 0], "affair with a sort of": [65535, 0], "with a sort of pine": [65535, 0], "a sort of pine board": [65535, 0], "sort of pine board tree": [65535, 0], "of pine board tree box": [65535, 0], "pine board tree box on": [65535, 0], "board tree box on top": [65535, 0], "tree box on top of": [65535, 0], "box on top of it": [65535, 0], "on top of it for": [65535, 0], "top of it for a": [65535, 0], "of it for a steeple": [65535, 0], "it for a steeple at": [65535, 0], "for a steeple at the": [65535, 0], "a steeple at the door": [65535, 0], "steeple at the door tom": [65535, 0], "at the door tom dropped": [65535, 0], "the door tom dropped back": [65535, 0], "door tom dropped back a": [65535, 0], "tom dropped back a step": [65535, 0], "dropped back a step and": [65535, 0], "back a step and accosted": [65535, 0], "a step and accosted a": [65535, 0], "step and accosted a sunday": [65535, 0], "and accosted a sunday dressed": [65535, 0], "accosted a sunday dressed comrade": [65535, 0], "a sunday dressed comrade say": [65535, 0], "sunday dressed comrade say billy": [65535, 0], "dressed comrade say billy got": [65535, 0], "comrade say billy got a": [65535, 0], "say billy got a yaller": [65535, 0], "billy got a yaller ticket": [65535, 0], "got a yaller ticket yes": [65535, 0], "a yaller ticket yes what'll": [65535, 0], "yaller ticket yes what'll you": [65535, 0], "ticket yes what'll you take": [65535, 0], "yes what'll you take for": [65535, 0], "what'll you take for her": [65535, 0], "you take for her what'll": [65535, 0], "take for her what'll you": [65535, 0], "for her what'll you give": [65535, 0], "her what'll you give piece": [65535, 0], "what'll you give piece of": [65535, 0], "you give piece of lickrish": [65535, 0], "give piece of lickrish and": [65535, 0], "piece of lickrish and a": [65535, 0], "of lickrish and a fish": [65535, 0], "lickrish and a fish hook": [65535, 0], "and a fish hook less": [65535, 0], "a fish hook less see": [65535, 0], "fish hook less see 'em": [65535, 0], "hook less see 'em tom": [65535, 0], "less see 'em tom exhibited": [65535, 0], "see 'em tom exhibited they": [65535, 0], "'em tom exhibited they were": [65535, 0], "tom exhibited they were satisfactory": [65535, 0], "exhibited they were satisfactory and": [65535, 0], "they were satisfactory and the": [65535, 0], "were satisfactory and the property": [65535, 0], "satisfactory and the property changed": [65535, 0], "and the property changed hands": [65535, 0], "the property changed hands then": [65535, 0], "property changed hands then tom": [65535, 0], "changed hands then tom traded": [65535, 0], "hands then tom traded a": [65535, 0], "then tom traded a couple": [65535, 0], "tom traded a couple of": [65535, 0], "traded a couple of white": [65535, 0], "a couple of white alleys": [65535, 0], "couple of white alleys for": [65535, 0], "of white alleys for three": [65535, 0], "white alleys for three red": [65535, 0], "alleys for three red tickets": [65535, 0], "for three red tickets and": [65535, 0], "three red tickets and some": [65535, 0], "red tickets and some small": [65535, 0], "tickets and some small trifle": [65535, 0], "and some small trifle or": [65535, 0], "some small trifle or other": [65535, 0], "small trifle or other for": [65535, 0], "trifle or other for a": [65535, 0], "or other for a couple": [65535, 0], "other for a couple of": [65535, 0], "for a couple of blue": [65535, 0], "a couple of blue ones": [65535, 0], "couple of blue ones he": [65535, 0], "of blue ones he waylaid": [65535, 0], "blue ones he waylaid other": [65535, 0], "ones he waylaid other boys": [65535, 0], "he waylaid other boys as": [65535, 0], "waylaid other boys as they": [65535, 0], "other boys as they came": [65535, 0], "boys as they came and": [65535, 0], "as they came and went": [65535, 0], "they came and went on": [65535, 0], "came and went on buying": [65535, 0], "and went on buying tickets": [65535, 0], "went on buying tickets of": [65535, 0], "on buying tickets of various": [65535, 0], "buying tickets of various colors": [65535, 0], "tickets of various colors ten": [65535, 0], "of various colors ten or": [65535, 0], "various colors ten or fifteen": [65535, 0], "colors ten or fifteen minutes": [65535, 0], "ten or fifteen minutes longer": [65535, 0], "or fifteen minutes longer he": [65535, 0], "fifteen minutes longer he entered": [65535, 0], "minutes longer he entered the": [65535, 0], "longer he entered the church": [65535, 0], "he entered the church now": [65535, 0], "entered the church now with": [65535, 0], "the church now with a": [65535, 0], "church now with a swarm": [65535, 0], "now with a swarm of": [65535, 0], "with a swarm of clean": [65535, 0], "a swarm of clean and": [65535, 0], "swarm of clean and noisy": [65535, 0], "of clean and noisy boys": [65535, 0], "clean and noisy boys and": [65535, 0], "and noisy boys and girls": [65535, 0], "noisy boys and girls proceeded": [65535, 0], "boys and girls proceeded to": [65535, 0], "and girls proceeded to his": [65535, 0], "girls proceeded to his seat": [65535, 0], "proceeded to his seat and": [65535, 0], "to his seat and started": [65535, 0], "his seat and started a": [65535, 0], "seat and started a quarrel": [65535, 0], "and started a quarrel with": [65535, 0], "started a quarrel with the": [65535, 0], "a quarrel with the first": [65535, 0], "quarrel with the first boy": [65535, 0], "with the first boy that": [65535, 0], "the first boy that came": [65535, 0], "first boy that came handy": [65535, 0], "boy that came handy the": [65535, 0], "that came handy the teacher": [65535, 0], "came handy the teacher a": [65535, 0], "handy the teacher a grave": [65535, 0], "the teacher a grave elderly": [65535, 0], "teacher a grave elderly man": [65535, 0], "a grave elderly man interfered": [65535, 0], "grave elderly man interfered then": [65535, 0], "elderly man interfered then turned": [65535, 0], "man interfered then turned his": [65535, 0], "interfered then turned his back": [65535, 0], "then turned his back a": [65535, 0], "turned his back a moment": [65535, 0], "his back a moment and": [65535, 0], "back a moment and tom": [65535, 0], "a moment and tom pulled": [65535, 0], "moment and tom pulled a": [65535, 0], "and tom pulled a boy's": [65535, 0], "tom pulled a boy's hair": [65535, 0], "pulled a boy's hair in": [65535, 0], "a boy's hair in the": [65535, 0], "boy's hair in the next": [65535, 0], "hair in the next bench": [65535, 0], "in the next bench and": [65535, 0], "the next bench and was": [65535, 0], "next bench and was absorbed": [65535, 0], "bench and was absorbed in": [65535, 0], "and was absorbed in his": [65535, 0], "was absorbed in his book": [65535, 0], "absorbed in his book when": [65535, 0], "in his book when the": [65535, 0], "his book when the boy": [65535, 0], "book when the boy turned": [65535, 0], "when the boy turned around": [65535, 0], "the boy turned around stuck": [65535, 0], "boy turned around stuck a": [65535, 0], "turned around stuck a pin": [65535, 0], "around stuck a pin in": [65535, 0], "stuck a pin in another": [65535, 0], "a pin in another boy": [65535, 0], "pin in another boy presently": [65535, 0], "in another boy presently in": [65535, 0], "another boy presently in order": [65535, 0], "boy presently in order to": [65535, 0], "presently in order to hear": [65535, 0], "in order to hear him": [65535, 0], "order to hear him say": [65535, 0], "to hear him say ouch": [65535, 0], "hear him say ouch and": [65535, 0], "him say ouch and got": [65535, 0], "say ouch and got a": [65535, 0], "ouch and got a new": [65535, 0], "and got a new reprimand": [65535, 0], "got a new reprimand from": [65535, 0], "a new reprimand from his": [65535, 0], "new reprimand from his teacher": [65535, 0], "reprimand from his teacher tom's": [65535, 0], "from his teacher tom's whole": [65535, 0], "his teacher tom's whole class": [65535, 0], "teacher tom's whole class were": [65535, 0], "tom's whole class were of": [65535, 0], "whole class were of a": [65535, 0], "class were of a pattern": [65535, 0], "were of a pattern restless": [65535, 0], "of a pattern restless noisy": [65535, 0], "a pattern restless noisy and": [65535, 0], "pattern restless noisy and troublesome": [65535, 0], "restless noisy and troublesome when": [65535, 0], "noisy and troublesome when they": [65535, 0], "and troublesome when they came": [65535, 0], "troublesome when they came to": [65535, 0], "when they came to recite": [65535, 0], "they came to recite their": [65535, 0], "came to recite their lessons": [65535, 0], "to recite their lessons not": [65535, 0], "recite their lessons not one": [65535, 0], "their lessons not one of": [65535, 0], "lessons not one of them": [65535, 0], "not one of them knew": [65535, 0], "one of them knew his": [65535, 0], "of them knew his verses": [65535, 0], "them knew his verses perfectly": [65535, 0], "knew his verses perfectly but": [65535, 0], "his verses perfectly but had": [65535, 0], "verses perfectly but had to": [65535, 0], "perfectly but had to be": [65535, 0], "but had to be prompted": [65535, 0], "had to be prompted all": [65535, 0], "to be prompted all along": [65535, 0], "be prompted all along however": [65535, 0], "prompted all along however they": [65535, 0], "all along however they worried": [65535, 0], "along however they worried through": [65535, 0], "however they worried through and": [65535, 0], "they worried through and each": [65535, 0], "worried through and each got": [65535, 0], "through and each got his": [65535, 0], "and each got his reward": [65535, 0], "each got his reward in": [65535, 0], "got his reward in small": [65535, 0], "his reward in small blue": [65535, 0], "reward in small blue tickets": [65535, 0], "in small blue tickets each": [65535, 0], "small blue tickets each with": [65535, 0], "blue tickets each with a": [65535, 0], "tickets each with a passage": [65535, 0], "each with a passage of": [65535, 0], "with a passage of scripture": [65535, 0], "a passage of scripture on": [65535, 0], "passage of scripture on it": [65535, 0], "of scripture on it each": [65535, 0], "scripture on it each blue": [65535, 0], "on it each blue ticket": [65535, 0], "it each blue ticket was": [65535, 0], "each blue ticket was pay": [65535, 0], "blue ticket was pay for": [65535, 0], "ticket was pay for two": [65535, 0], "was pay for two verses": [65535, 0], "pay for two verses of": [65535, 0], "for two verses of the": [65535, 0], "two verses of the recitation": [65535, 0], "verses of the recitation ten": [65535, 0], "of the recitation ten blue": [65535, 0], "the recitation ten blue tickets": [65535, 0], "recitation ten blue tickets equalled": [65535, 0], "ten blue tickets equalled a": [65535, 0], "blue tickets equalled a red": [65535, 0], "tickets equalled a red one": [65535, 0], "equalled a red one and": [65535, 0], "a red one and could": [65535, 0], "red one and could be": [65535, 0], "one and could be exchanged": [65535, 0], "and could be exchanged for": [65535, 0], "could be exchanged for it": [65535, 0], "be exchanged for it ten": [65535, 0], "exchanged for it ten red": [65535, 0], "for it ten red tickets": [65535, 0], "it ten red tickets equalled": [65535, 0], "ten red tickets equalled a": [65535, 0], "red tickets equalled a yellow": [65535, 0], "tickets equalled a yellow one": [65535, 0], "equalled a yellow one for": [65535, 0], "a yellow one for ten": [65535, 0], "yellow one for ten yellow": [65535, 0], "one for ten yellow tickets": [65535, 0], "for ten yellow tickets the": [65535, 0], "ten yellow tickets the superintendent": [65535, 0], "yellow tickets the superintendent gave": [65535, 0], "tickets the superintendent gave a": [65535, 0], "the superintendent gave a very": [65535, 0], "superintendent gave a very plainly": [65535, 0], "gave a very plainly bound": [65535, 0], "a very plainly bound bible": [65535, 0], "very plainly bound bible worth": [65535, 0], "plainly bound bible worth forty": [65535, 0], "bound bible worth forty cents": [65535, 0], "bible worth forty cents in": [65535, 0], "worth forty cents in those": [65535, 0], "forty cents in those easy": [65535, 0], "cents in those easy times": [65535, 0], "in those easy times to": [65535, 0], "those easy times to the": [65535, 0], "easy times to the pupil": [65535, 0], "times to the pupil how": [65535, 0], "to the pupil how many": [65535, 0], "the pupil how many of": [65535, 0], "pupil how many of my": [65535, 0], "how many of my readers": [65535, 0], "many of my readers would": [65535, 0], "of my readers would have": [65535, 0], "my readers would have the": [65535, 0], "readers would have the industry": [65535, 0], "would have the industry and": [65535, 0], "have the industry and application": [65535, 0], "the industry and application to": [65535, 0], "industry and application to memorize": [65535, 0], "and application to memorize two": [65535, 0], "application to memorize two thousand": [65535, 0], "to memorize two thousand verses": [65535, 0], "memorize two thousand verses even": [65535, 0], "two thousand verses even for": [65535, 0], "thousand verses even for a": [65535, 0], "verses even for a dore": [65535, 0], "even for a dore bible": [65535, 0], "for a dore bible and": [65535, 0], "a dore bible and yet": [65535, 0], "dore bible and yet mary": [65535, 0], "bible and yet mary had": [65535, 0], "and yet mary had acquired": [65535, 0], "yet mary had acquired two": [65535, 0], "mary had acquired two bibles": [65535, 0], "had acquired two bibles in": [65535, 0], "acquired two bibles in this": [65535, 0], "two bibles in this way": [65535, 0], "bibles in this way it": [65535, 0], "in this way it was": [65535, 0], "this way it was the": [65535, 0], "way it was the patient": [65535, 0], "it was the patient work": [65535, 0], "was the patient work of": [65535, 0], "the patient work of two": [65535, 0], "patient work of two years": [65535, 0], "work of two years and": [65535, 0], "of two years and a": [65535, 0], "two years and a boy": [65535, 0], "years and a boy of": [65535, 0], "and a boy of german": [65535, 0], "a boy of german parentage": [65535, 0], "boy of german parentage had": [65535, 0], "of german parentage had won": [65535, 0], "german parentage had won four": [65535, 0], "parentage had won four or": [65535, 0], "had won four or five": [65535, 0], "won four or five he": [65535, 0], "four or five he once": [65535, 0], "or five he once recited": [65535, 0], "five he once recited three": [65535, 0], "he once recited three thousand": [65535, 0], "once recited three thousand verses": [65535, 0], "recited three thousand verses without": [65535, 0], "three thousand verses without stopping": [65535, 0], "thousand verses without stopping but": [65535, 0], "verses without stopping but the": [65535, 0], "without stopping but the strain": [65535, 0], "stopping but the strain upon": [65535, 0], "but the strain upon his": [65535, 0], "the strain upon his mental": [65535, 0], "strain upon his mental faculties": [65535, 0], "upon his mental faculties was": [65535, 0], "his mental faculties was too": [65535, 0], "mental faculties was too great": [65535, 0], "faculties was too great and": [65535, 0], "was too great and he": [65535, 0], "too great and he was": [65535, 0], "great and he was little": [65535, 0], "and he was little better": [65535, 0], "he was little better than": [65535, 0], "was little better than an": [65535, 0], "little better than an idiot": [65535, 0], "better than an idiot from": [65535, 0], "than an idiot from that": [65535, 0], "an idiot from that day": [65535, 0], "idiot from that day forth": [65535, 0], "from that day forth a": [65535, 0], "that day forth a grievous": [65535, 0], "day forth a grievous misfortune": [65535, 0], "forth a grievous misfortune for": [65535, 0], "a grievous misfortune for the": [65535, 0], "grievous misfortune for the school": [65535, 0], "misfortune for the school for": [65535, 0], "for the school for on": [65535, 0], "the school for on great": [65535, 0], "school for on great occasions": [65535, 0], "for on great occasions before": [65535, 0], "on great occasions before company": [65535, 0], "great occasions before company the": [65535, 0], "occasions before company the superintendent": [65535, 0], "before company the superintendent as": [65535, 0], "company the superintendent as tom": [65535, 0], "the superintendent as tom expressed": [65535, 0], "superintendent as tom expressed it": [65535, 0], "as tom expressed it had": [65535, 0], "tom expressed it had always": [65535, 0], "expressed it had always made": [65535, 0], "it had always made this": [65535, 0], "had always made this boy": [65535, 0], "always made this boy come": [65535, 0], "made this boy come out": [65535, 0], "this boy come out and": [65535, 0], "boy come out and spread": [65535, 0], "come out and spread himself": [65535, 0], "out and spread himself only": [65535, 0], "and spread himself only the": [65535, 0], "spread himself only the older": [65535, 0], "himself only the older pupils": [65535, 0], "only the older pupils managed": [65535, 0], "the older pupils managed to": [65535, 0], "older pupils managed to keep": [65535, 0], "pupils managed to keep their": [65535, 0], "managed to keep their tickets": [65535, 0], "to keep their tickets and": [65535, 0], "keep their tickets and stick": [65535, 0], "their tickets and stick to": [65535, 0], "tickets and stick to their": [65535, 0], "and stick to their tedious": [65535, 0], "stick to their tedious work": [65535, 0], "to their tedious work long": [65535, 0], "their tedious work long enough": [65535, 0], "tedious work long enough to": [65535, 0], "work long enough to get": [65535, 0], "long enough to get a": [65535, 0], "enough to get a bible": [65535, 0], "to get a bible and": [65535, 0], "get a bible and so": [65535, 0], "a bible and so the": [65535, 0], "bible and so the delivery": [65535, 0], "and so the delivery of": [65535, 0], "so the delivery of one": [65535, 0], "the delivery of one of": [65535, 0], "delivery of one of these": [65535, 0], "of one of these prizes": [65535, 0], "one of these prizes was": [65535, 0], "of these prizes was a": [65535, 0], "these prizes was a rare": [65535, 0], "prizes was a rare and": [65535, 0], "was a rare and noteworthy": [65535, 0], "a rare and noteworthy circumstance": [65535, 0], "rare and noteworthy circumstance the": [65535, 0], "and noteworthy circumstance the successful": [65535, 0], "noteworthy circumstance the successful pupil": [65535, 0], "circumstance the successful pupil was": [65535, 0], "the successful pupil was so": [65535, 0], "successful pupil was so great": [65535, 0], "pupil was so great and": [65535, 0], "was so great and conspicuous": [65535, 0], "so great and conspicuous for": [65535, 0], "great and conspicuous for that": [65535, 0], "and conspicuous for that day": [65535, 0], "conspicuous for that day that": [65535, 0], "for that day that on": [65535, 0], "that day that on the": [65535, 0], "day that on the spot": [65535, 0], "that on the spot every": [65535, 0], "on the spot every scholar's": [65535, 0], "the spot every scholar's heart": [65535, 0], "spot every scholar's heart was": [65535, 0], "every scholar's heart was fired": [65535, 0], "scholar's heart was fired with": [65535, 0], "heart was fired with a": [65535, 0], "was fired with a fresh": [65535, 0], "fired with a fresh ambition": [65535, 0], "with a fresh ambition that": [65535, 0], "a fresh ambition that often": [65535, 0], "fresh ambition that often lasted": [65535, 0], "ambition that often lasted a": [65535, 0], "that often lasted a couple": [65535, 0], "often lasted a couple of": [65535, 0], "lasted a couple of weeks": [65535, 0], "a couple of weeks it": [65535, 0], "couple of weeks it is": [65535, 0], "of weeks it is possible": [65535, 0], "weeks it is possible that": [65535, 0], "it is possible that tom's": [65535, 0], "is possible that tom's mental": [65535, 0], "possible that tom's mental stomach": [65535, 0], "that tom's mental stomach had": [65535, 0], "tom's mental stomach had never": [65535, 0], "mental stomach had never really": [65535, 0], "stomach had never really hungered": [65535, 0], "had never really hungered for": [65535, 0], "never really hungered for one": [65535, 0], "really hungered for one of": [65535, 0], "hungered for one of those": [65535, 0], "for one of those prizes": [65535, 0], "one of those prizes but": [65535, 0], "of those prizes but unquestionably": [65535, 0], "those prizes but unquestionably his": [65535, 0], "prizes but unquestionably his entire": [65535, 0], "but unquestionably his entire being": [65535, 0], "unquestionably his entire being had": [65535, 0], "his entire being had for": [65535, 0], "entire being had for many": [65535, 0], "being had for many a": [65535, 0], "had for many a day": [65535, 0], "for many a day longed": [65535, 0], "many a day longed for": [65535, 0], "a day longed for the": [65535, 0], "day longed for the glory": [65535, 0], "longed for the glory and": [65535, 0], "for the glory and the": [65535, 0], "the glory and the eclat": [65535, 0], "glory and the eclat that": [65535, 0], "and the eclat that came": [65535, 0], "the eclat that came with": [65535, 0], "eclat that came with it": [65535, 0], "that came with it in": [65535, 0], "came with it in due": [65535, 0], "with it in due course": [65535, 0], "it in due course the": [65535, 0], "in due course the superintendent": [65535, 0], "due course the superintendent stood": [65535, 0], "course the superintendent stood up": [65535, 0], "the superintendent stood up in": [65535, 0], "superintendent stood up in front": [65535, 0], "stood up in front of": [65535, 0], "up in front of the": [65535, 0], "in front of the pulpit": [65535, 0], "front of the pulpit with": [65535, 0], "of the pulpit with a": [65535, 0], "the pulpit with a closed": [65535, 0], "pulpit with a closed hymn": [65535, 0], "with a closed hymn book": [65535, 0], "a closed hymn book in": [65535, 0], "closed hymn book in his": [65535, 0], "hymn book in his hand": [65535, 0], "book in his hand and": [65535, 0], "in his hand and his": [65535, 0], "his hand and his forefinger": [65535, 0], "hand and his forefinger inserted": [65535, 0], "and his forefinger inserted between": [65535, 0], "his forefinger inserted between its": [65535, 0], "forefinger inserted between its leaves": [65535, 0], "inserted between its leaves and": [65535, 0], "between its leaves and commanded": [65535, 0], "its leaves and commanded attention": [65535, 0], "leaves and commanded attention when": [65535, 0], "and commanded attention when a": [65535, 0], "commanded attention when a sunday": [65535, 0], "attention when a sunday school": [65535, 0], "when a sunday school superintendent": [65535, 0], "a sunday school superintendent makes": [65535, 0], "sunday school superintendent makes his": [65535, 0], "school superintendent makes his customary": [65535, 0], "superintendent makes his customary little": [65535, 0], "makes his customary little speech": [65535, 0], "his customary little speech a": [65535, 0], "customary little speech a hymn": [65535, 0], "little speech a hymn book": [65535, 0], "speech a hymn book in": [65535, 0], "a hymn book in the": [65535, 0], "hymn book in the hand": [65535, 0], "book in the hand is": [65535, 0], "in the hand is as": [65535, 0], "the hand is as necessary": [65535, 0], "hand is as necessary as": [65535, 0], "is as necessary as is": [65535, 0], "as necessary as is the": [65535, 0], "necessary as is the inevitable": [65535, 0], "as is the inevitable sheet": [65535, 0], "is the inevitable sheet of": [65535, 0], "the inevitable sheet of music": [65535, 0], "inevitable sheet of music in": [65535, 0], "sheet of music in the": [65535, 0], "of music in the hand": [65535, 0], "music in the hand of": [65535, 0], "in the hand of a": [65535, 0], "the hand of a singer": [65535, 0], "hand of a singer who": [65535, 0], "of a singer who stands": [65535, 0], "a singer who stands forward": [65535, 0], "singer who stands forward on": [65535, 0], "who stands forward on the": [65535, 0], "stands forward on the platform": [65535, 0], "forward on the platform and": [65535, 0], "on the platform and sings": [65535, 0], "the platform and sings a": [65535, 0], "platform and sings a solo": [65535, 0], "and sings a solo at": [65535, 0], "sings a solo at a": [65535, 0], "a solo at a concert": [65535, 0], "solo at a concert though": [65535, 0], "at a concert though why": [65535, 0], "a concert though why is": [65535, 0], "concert though why is a": [65535, 0], "though why is a mystery": [65535, 0], "why is a mystery for": [65535, 0], "is a mystery for neither": [65535, 0], "a mystery for neither the": [65535, 0], "mystery for neither the hymn": [65535, 0], "for neither the hymn book": [65535, 0], "neither the hymn book nor": [65535, 0], "the hymn book nor the": [65535, 0], "hymn book nor the sheet": [65535, 0], "book nor the sheet of": [65535, 0], "nor the sheet of music": [65535, 0], "the sheet of music is": [65535, 0], "sheet of music is ever": [65535, 0], "of music is ever referred": [65535, 0], "music is ever referred to": [65535, 0], "is ever referred to by": [65535, 0], "ever referred to by the": [65535, 0], "referred to by the sufferer": [65535, 0], "to by the sufferer this": [65535, 0], "by the sufferer this superintendent": [65535, 0], "the sufferer this superintendent was": [65535, 0], "sufferer this superintendent was a": [65535, 0], "this superintendent was a slim": [65535, 0], "superintendent was a slim creature": [65535, 0], "was a slim creature of": [65535, 0], "a slim creature of thirty": [65535, 0], "slim creature of thirty five": [65535, 0], "creature of thirty five with": [65535, 0], "of thirty five with a": [65535, 0], "thirty five with a sandy": [65535, 0], "five with a sandy goatee": [65535, 0], "with a sandy goatee and": [65535, 0], "a sandy goatee and short": [65535, 0], "sandy goatee and short sandy": [65535, 0], "goatee and short sandy hair": [65535, 0], "and short sandy hair he": [65535, 0], "short sandy hair he wore": [65535, 0], "sandy hair he wore a": [65535, 0], "hair he wore a stiff": [65535, 0], "he wore a stiff standing": [65535, 0], "wore a stiff standing collar": [65535, 0], "a stiff standing collar whose": [65535, 0], "stiff standing collar whose upper": [65535, 0], "standing collar whose upper edge": [65535, 0], "collar whose upper edge almost": [65535, 0], "whose upper edge almost reached": [65535, 0], "upper edge almost reached his": [65535, 0], "edge almost reached his ears": [65535, 0], "almost reached his ears and": [65535, 0], "reached his ears and whose": [65535, 0], "his ears and whose sharp": [65535, 0], "ears and whose sharp points": [65535, 0], "and whose sharp points curved": [65535, 0], "whose sharp points curved forward": [65535, 0], "sharp points curved forward abreast": [65535, 0], "points curved forward abreast the": [65535, 0], "curved forward abreast the corners": [65535, 0], "forward abreast the corners of": [65535, 0], "abreast the corners of his": [65535, 0], "the corners of his mouth": [65535, 0], "corners of his mouth a": [65535, 0], "of his mouth a fence": [65535, 0], "his mouth a fence that": [65535, 0], "mouth a fence that compelled": [65535, 0], "a fence that compelled a": [65535, 0], "fence that compelled a straight": [65535, 0], "that compelled a straight lookout": [65535, 0], "compelled a straight lookout ahead": [65535, 0], "a straight lookout ahead and": [65535, 0], "straight lookout ahead and a": [65535, 0], "lookout ahead and a turning": [65535, 0], "ahead and a turning of": [65535, 0], "and a turning of the": [65535, 0], "a turning of the whole": [65535, 0], "turning of the whole body": [65535, 0], "of the whole body when": [65535, 0], "the whole body when a": [65535, 0], "whole body when a side": [65535, 0], "body when a side view": [65535, 0], "when a side view was": [65535, 0], "a side view was required": [65535, 0], "side view was required his": [65535, 0], "view was required his chin": [65535, 0], "was required his chin was": [65535, 0], "required his chin was propped": [65535, 0], "his chin was propped on": [65535, 0], "chin was propped on a": [65535, 0], "was propped on a spreading": [65535, 0], "propped on a spreading cravat": [65535, 0], "on a spreading cravat which": [65535, 0], "a spreading cravat which was": [65535, 0], "spreading cravat which was as": [65535, 0], "cravat which was as broad": [65535, 0], "which was as broad and": [65535, 0], "was as broad and as": [65535, 0], "as broad and as long": [65535, 0], "broad and as long as": [65535, 0], "and as long as a": [65535, 0], "as long as a bank": [65535, 0], "long as a bank note": [65535, 0], "as a bank note and": [65535, 0], "a bank note and had": [65535, 0], "bank note and had fringed": [65535, 0], "note and had fringed ends": [65535, 0], "and had fringed ends his": [65535, 0], "had fringed ends his boot": [65535, 0], "fringed ends his boot toes": [65535, 0], "ends his boot toes were": [65535, 0], "his boot toes were turned": [65535, 0], "boot toes were turned sharply": [65535, 0], "toes were turned sharply up": [65535, 0], "were turned sharply up in": [65535, 0], "turned sharply up in the": [65535, 0], "sharply up in the fashion": [65535, 0], "up in the fashion of": [65535, 0], "in the fashion of the": [65535, 0], "the fashion of the day": [65535, 0], "fashion of the day like": [65535, 0], "of the day like sleigh": [65535, 0], "the day like sleigh runners": [65535, 0], "day like sleigh runners an": [65535, 0], "like sleigh runners an effect": [65535, 0], "sleigh runners an effect patiently": [65535, 0], "runners an effect patiently and": [65535, 0], "an effect patiently and laboriously": [65535, 0], "effect patiently and laboriously produced": [65535, 0], "patiently and laboriously produced by": [65535, 0], "and laboriously produced by the": [65535, 0], "laboriously produced by the young": [65535, 0], "produced by the young men": [65535, 0], "by the young men by": [65535, 0], "the young men by sitting": [65535, 0], "young men by sitting with": [65535, 0], "men by sitting with their": [65535, 0], "by sitting with their toes": [65535, 0], "sitting with their toes pressed": [65535, 0], "with their toes pressed against": [65535, 0], "their toes pressed against a": [65535, 0], "toes pressed against a wall": [65535, 0], "pressed against a wall for": [65535, 0], "against a wall for hours": [65535, 0], "a wall for hours together": [65535, 0], "wall for hours together mr": [65535, 0], "for hours together mr walters": [65535, 0], "hours together mr walters was": [65535, 0], "together mr walters was very": [65535, 0], "mr walters was very earnest": [65535, 0], "walters was very earnest of": [65535, 0], "was very earnest of mien": [65535, 0], "very earnest of mien and": [65535, 0], "earnest of mien and very": [65535, 0], "of mien and very sincere": [65535, 0], "mien and very sincere and": [65535, 0], "and very sincere and honest": [65535, 0], "very sincere and honest at": [65535, 0], "sincere and honest at heart": [65535, 0], "and honest at heart and": [65535, 0], "honest at heart and he": [65535, 0], "at heart and he held": [65535, 0], "heart and he held sacred": [65535, 0], "and he held sacred things": [65535, 0], "he held sacred things and": [65535, 0], "held sacred things and places": [65535, 0], "sacred things and places in": [65535, 0], "things and places in such": [65535, 0], "and places in such reverence": [65535, 0], "places in such reverence and": [65535, 0], "in such reverence and so": [65535, 0], "such reverence and so separated": [65535, 0], "reverence and so separated them": [65535, 0], "and so separated them from": [65535, 0], "so separated them from worldly": [65535, 0], "separated them from worldly matters": [65535, 0], "them from worldly matters that": [65535, 0], "from worldly matters that unconsciously": [65535, 0], "worldly matters that unconsciously to": [65535, 0], "matters that unconsciously to himself": [65535, 0], "that unconsciously to himself his": [65535, 0], "unconsciously to himself his sunday": [65535, 0], "to himself his sunday school": [65535, 0], "himself his sunday school voice": [65535, 0], "his sunday school voice had": [65535, 0], "sunday school voice had acquired": [65535, 0], "school voice had acquired a": [65535, 0], "voice had acquired a peculiar": [65535, 0], "had acquired a peculiar intonation": [65535, 0], "acquired a peculiar intonation which": [65535, 0], "a peculiar intonation which was": [65535, 0], "peculiar intonation which was wholly": [65535, 0], "intonation which was wholly absent": [65535, 0], "which was wholly absent on": [65535, 0], "was wholly absent on week": [65535, 0], "wholly absent on week days": [65535, 0], "absent on week days he": [65535, 0], "on week days he began": [65535, 0], "week days he began after": [65535, 0], "days he began after this": [65535, 0], "he began after this fashion": [65535, 0], "began after this fashion now": [65535, 0], "after this fashion now children": [65535, 0], "this fashion now children i": [65535, 0], "fashion now children i want": [65535, 0], "now children i want you": [65535, 0], "children i want you all": [65535, 0], "i want you all to": [65535, 0], "want you all to sit": [65535, 0], "you all to sit up": [65535, 0], "all to sit up just": [65535, 0], "to sit up just as": [65535, 0], "sit up just as straight": [65535, 0], "up just as straight and": [65535, 0], "just as straight and pretty": [65535, 0], "as straight and pretty as": [65535, 0], "straight and pretty as you": [65535, 0], "and pretty as you can": [65535, 0], "pretty as you can and": [65535, 0], "as you can and give": [65535, 0], "you can and give me": [65535, 0], "can and give me all": [65535, 0], "and give me all your": [65535, 0], "give me all your attention": [65535, 0], "me all your attention for": [65535, 0], "all your attention for a": [65535, 0], "your attention for a minute": [65535, 0], "attention for a minute or": [65535, 0], "for a minute or two": [65535, 0], "a minute or two there": [65535, 0], "minute or two there that": [65535, 0], "or two there that is": [65535, 0], "two there that is it": [65535, 0], "there that is it that": [65535, 0], "that is it that is": [65535, 0], "is it that is the": [65535, 0], "it that is the way": [65535, 0], "that is the way good": [65535, 0], "is the way good little": [65535, 0], "the way good little boys": [65535, 0], "way good little boys and": [65535, 0], "good little boys and girls": [65535, 0], "little boys and girls should": [65535, 0], "boys and girls should do": [65535, 0], "and girls should do i": [65535, 0], "girls should do i see": [65535, 0], "should do i see one": [65535, 0], "do i see one little": [65535, 0], "i see one little girl": [65535, 0], "see one little girl who": [65535, 0], "one little girl who is": [65535, 0], "little girl who is looking": [65535, 0], "girl who is looking out": [65535, 0], "who is looking out of": [65535, 0], "is looking out of the": [65535, 0], "looking out of the window": [65535, 0], "out of the window i": [65535, 0], "of the window i am": [65535, 0], "the window i am afraid": [65535, 0], "window i am afraid she": [65535, 0], "i am afraid she thinks": [65535, 0], "am afraid she thinks i": [65535, 0], "afraid she thinks i am": [65535, 0], "she thinks i am out": [65535, 0], "thinks i am out there": [65535, 0], "i am out there somewhere": [65535, 0], "am out there somewhere perhaps": [65535, 0], "out there somewhere perhaps up": [65535, 0], "there somewhere perhaps up in": [65535, 0], "somewhere perhaps up in one": [65535, 0], "perhaps up in one of": [65535, 0], "up in one of the": [65535, 0], "in one of the trees": [65535, 0], "one of the trees making": [65535, 0], "of the trees making a": [65535, 0], "the trees making a speech": [65535, 0], "trees making a speech to": [65535, 0], "making a speech to the": [65535, 0], "a speech to the little": [65535, 0], "speech to the little birds": [65535, 0], "to the little birds applausive": [65535, 0], "the little birds applausive titter": [65535, 0], "little birds applausive titter i": [65535, 0], "birds applausive titter i want": [65535, 0], "applausive titter i want to": [65535, 0], "titter i want to tell": [65535, 0], "i want to tell you": [65535, 0], "want to tell you how": [65535, 0], "to tell you how good": [65535, 0], "tell you how good it": [65535, 0], "you how good it makes": [65535, 0], "how good it makes me": [65535, 0], "good it makes me feel": [65535, 0], "it makes me feel to": [65535, 0], "makes me feel to see": [65535, 0], "me feel to see so": [65535, 0], "feel to see so many": [65535, 0], "to see so many bright": [65535, 0], "see so many bright clean": [65535, 0], "so many bright clean little": [65535, 0], "many bright clean little faces": [65535, 0], "bright clean little faces assembled": [65535, 0], "clean little faces assembled in": [65535, 0], "little faces assembled in a": [65535, 0], "faces assembled in a place": [65535, 0], "assembled in a place like": [65535, 0], "in a place like this": [65535, 0], "a place like this learning": [65535, 0], "place like this learning to": [65535, 0], "like this learning to do": [65535, 0], "this learning to do right": [65535, 0], "learning to do right and": [65535, 0], "to do right and be": [65535, 0], "do right and be good": [65535, 0], "right and be good and": [65535, 0], "and be good and so": [65535, 0], "be good and so forth": [65535, 0], "good and so forth and": [65535, 0], "and so forth and so": [65535, 0], "so forth and so on": [65535, 0], "forth and so on it": [65535, 0], "and so on it is": [65535, 0], "so on it is not": [65535, 0], "on it is not necessary": [65535, 0], "it is not necessary to": [65535, 0], "is not necessary to set": [65535, 0], "not necessary to set down": [65535, 0], "necessary to set down the": [65535, 0], "to set down the rest": [65535, 0], "set down the rest of": [65535, 0], "down the rest of the": [65535, 0], "the rest of the oration": [65535, 0], "rest of the oration it": [65535, 0], "of the oration it was": [65535, 0], "the oration it was of": [65535, 0], "oration it was of a": [65535, 0], "it was of a pattern": [65535, 0], "was of a pattern which": [65535, 0], "of a pattern which does": [65535, 0], "a pattern which does not": [65535, 0], "pattern which does not vary": [65535, 0], "which does not vary and": [65535, 0], "does not vary and so": [65535, 0], "not vary and so it": [65535, 0], "vary and so it is": [65535, 0], "and so it is familiar": [65535, 0], "so it is familiar to": [65535, 0], "it is familiar to us": [65535, 0], "is familiar to us all": [65535, 0], "familiar to us all the": [65535, 0], "to us all the latter": [65535, 0], "us all the latter third": [65535, 0], "all the latter third of": [65535, 0], "the latter third of the": [65535, 0], "latter third of the speech": [65535, 0], "third of the speech was": [65535, 0], "of the speech was marred": [65535, 0], "the speech was marred by": [65535, 0], "speech was marred by the": [65535, 0], "was marred by the resumption": [65535, 0], "marred by the resumption of": [65535, 0], "by the resumption of fights": [65535, 0], "the resumption of fights and": [65535, 0], "resumption of fights and other": [65535, 0], "of fights and other recreations": [65535, 0], "fights and other recreations among": [65535, 0], "and other recreations among certain": [65535, 0], "other recreations among certain of": [65535, 0], "recreations among certain of the": [65535, 0], "among certain of the bad": [65535, 0], "certain of the bad boys": [65535, 0], "of the bad boys and": [65535, 0], "the bad boys and by": [65535, 0], "bad boys and by fidgetings": [65535, 0], "boys and by fidgetings and": [65535, 0], "and by fidgetings and whisperings": [65535, 0], "by fidgetings and whisperings that": [65535, 0], "fidgetings and whisperings that extended": [65535, 0], "and whisperings that extended far": [65535, 0], "whisperings that extended far and": [65535, 0], "that extended far and wide": [65535, 0], "extended far and wide washing": [65535, 0], "far and wide washing even": [65535, 0], "and wide washing even to": [65535, 0], "wide washing even to the": [65535, 0], "washing even to the bases": [65535, 0], "even to the bases of": [65535, 0], "to the bases of isolated": [65535, 0], "the bases of isolated and": [65535, 0], "bases of isolated and incorruptible": [65535, 0], "of isolated and incorruptible rocks": [65535, 0], "isolated and incorruptible rocks like": [65535, 0], "and incorruptible rocks like sid": [65535, 0], "incorruptible rocks like sid and": [65535, 0], "rocks like sid and mary": [65535, 0], "like sid and mary but": [65535, 0], "sid and mary but now": [65535, 0], "and mary but now every": [65535, 0], "mary but now every sound": [65535, 0], "but now every sound ceased": [65535, 0], "now every sound ceased suddenly": [65535, 0], "every sound ceased suddenly with": [65535, 0], "sound ceased suddenly with the": [65535, 0], "ceased suddenly with the subsidence": [65535, 0], "suddenly with the subsidence of": [65535, 0], "with the subsidence of mr": [65535, 0], "the subsidence of mr walters'": [65535, 0], "subsidence of mr walters' voice": [65535, 0], "of mr walters' voice and": [65535, 0], "mr walters' voice and the": [65535, 0], "walters' voice and the conclusion": [65535, 0], "voice and the conclusion of": [65535, 0], "and the conclusion of the": [65535, 0], "the conclusion of the speech": [65535, 0], "conclusion of the speech was": [65535, 0], "of the speech was received": [65535, 0], "the speech was received with": [65535, 0], "speech was received with a": [65535, 0], "was received with a burst": [65535, 0], "received with a burst of": [65535, 0], "with a burst of silent": [65535, 0], "a burst of silent gratitude": [65535, 0], "burst of silent gratitude a": [65535, 0], "of silent gratitude a good": [65535, 0], "silent gratitude a good part": [65535, 0], "gratitude a good part of": [65535, 0], "a good part of the": [65535, 0], "good part of the whispering": [65535, 0], "part of the whispering had": [65535, 0], "of the whispering had been": [65535, 0], "the whispering had been occasioned": [65535, 0], "whispering had been occasioned by": [65535, 0], "had been occasioned by an": [65535, 0], "been occasioned by an event": [65535, 0], "occasioned by an event which": [65535, 0], "by an event which was": [65535, 0], "an event which was more": [65535, 0], "event which was more or": [65535, 0], "which was more or less": [65535, 0], "was more or less rare": [65535, 0], "more or less rare the": [65535, 0], "or less rare the entrance": [65535, 0], "less rare the entrance of": [65535, 0], "rare the entrance of visitors": [65535, 0], "the entrance of visitors lawyer": [65535, 0], "entrance of visitors lawyer thatcher": [65535, 0], "of visitors lawyer thatcher accompanied": [65535, 0], "visitors lawyer thatcher accompanied by": [65535, 0], "lawyer thatcher accompanied by a": [65535, 0], "thatcher accompanied by a very": [65535, 0], "accompanied by a very feeble": [65535, 0], "by a very feeble and": [65535, 0], "a very feeble and aged": [65535, 0], "very feeble and aged man": [65535, 0], "feeble and aged man a": [65535, 0], "and aged man a fine": [65535, 0], "aged man a fine portly": [65535, 0], "man a fine portly middle": [65535, 0], "a fine portly middle aged": [65535, 0], "fine portly middle aged gentleman": [65535, 0], "portly middle aged gentleman with": [65535, 0], "middle aged gentleman with iron": [65535, 0], "aged gentleman with iron gray": [65535, 0], "gentleman with iron gray hair": [65535, 0], "with iron gray hair and": [65535, 0], "iron gray hair and a": [65535, 0], "gray hair and a dignified": [65535, 0], "hair and a dignified lady": [65535, 0], "and a dignified lady who": [65535, 0], "a dignified lady who was": [65535, 0], "dignified lady who was doubtless": [65535, 0], "lady who was doubtless the": [65535, 0], "who was doubtless the latter's": [65535, 0], "was doubtless the latter's wife": [65535, 0], "doubtless the latter's wife the": [65535, 0], "the latter's wife the lady": [65535, 0], "latter's wife the lady was": [65535, 0], "wife the lady was leading": [65535, 0], "the lady was leading a": [65535, 0], "lady was leading a child": [65535, 0], "was leading a child tom": [65535, 0], "leading a child tom had": [65535, 0], "a child tom had been": [65535, 0], "child tom had been restless": [65535, 0], "tom had been restless and": [65535, 0], "had been restless and full": [65535, 0], "been restless and full of": [65535, 0], "restless and full of chafings": [65535, 0], "and full of chafings and": [65535, 0], "full of chafings and repinings": [65535, 0], "of chafings and repinings conscience": [65535, 0], "chafings and repinings conscience smitten": [65535, 0], "and repinings conscience smitten too": [65535, 0], "repinings conscience smitten too he": [65535, 0], "conscience smitten too he could": [65535, 0], "smitten too he could not": [65535, 0], "too he could not meet": [65535, 0], "he could not meet amy": [65535, 0], "could not meet amy lawrence's": [65535, 0], "not meet amy lawrence's eye": [65535, 0], "meet amy lawrence's eye he": [65535, 0], "amy lawrence's eye he could": [65535, 0], "lawrence's eye he could not": [65535, 0], "eye he could not brook": [65535, 0], "he could not brook her": [65535, 0], "could not brook her loving": [65535, 0], "not brook her loving gaze": [65535, 0], "brook her loving gaze but": [65535, 0], "her loving gaze but when": [65535, 0], "loving gaze but when he": [65535, 0], "gaze but when he saw": [65535, 0], "but when he saw this": [65535, 0], "when he saw this small": [65535, 0], "he saw this small new": [65535, 0], "saw this small new comer": [65535, 0], "this small new comer his": [65535, 0], "small new comer his soul": [65535, 0], "new comer his soul was": [65535, 0], "comer his soul was all": [65535, 0], "his soul was all ablaze": [65535, 0], "soul was all ablaze with": [65535, 0], "was all ablaze with bliss": [65535, 0], "all ablaze with bliss in": [65535, 0], "ablaze with bliss in a": [65535, 0], "with bliss in a moment": [65535, 0], "bliss in a moment the": [65535, 0], "in a moment the next": [65535, 0], "a moment the next moment": [65535, 0], "moment the next moment he": [65535, 0], "the next moment he was": [65535, 0], "next moment he was showing": [65535, 0], "moment he was showing off": [65535, 0], "he was showing off with": [65535, 0], "was showing off with all": [65535, 0], "showing off with all his": [65535, 0], "off with all his might": [65535, 0], "with all his might cuffing": [65535, 0], "all his might cuffing boys": [65535, 0], "his might cuffing boys pulling": [65535, 0], "might cuffing boys pulling hair": [65535, 0], "cuffing boys pulling hair making": [65535, 0], "boys pulling hair making faces": [65535, 0], "pulling hair making faces in": [65535, 0], "hair making faces in a": [65535, 0], "making faces in a word": [65535, 0], "faces in a word using": [65535, 0], "in a word using every": [65535, 0], "a word using every art": [65535, 0], "word using every art that": [65535, 0], "using every art that seemed": [65535, 0], "every art that seemed likely": [65535, 0], "art that seemed likely to": [65535, 0], "that seemed likely to fascinate": [65535, 0], "seemed likely to fascinate a": [65535, 0], "likely to fascinate a girl": [65535, 0], "to fascinate a girl and": [65535, 0], "fascinate a girl and win": [65535, 0], "a girl and win her": [65535, 0], "girl and win her applause": [65535, 0], "and win her applause his": [65535, 0], "win her applause his exaltation": [65535, 0], "her applause his exaltation had": [65535, 0], "applause his exaltation had but": [65535, 0], "his exaltation had but one": [65535, 0], "exaltation had but one alloy": [65535, 0], "had but one alloy the": [65535, 0], "but one alloy the memory": [65535, 0], "one alloy the memory of": [65535, 0], "alloy the memory of his": [65535, 0], "the memory of his humiliation": [65535, 0], "memory of his humiliation in": [65535, 0], "of his humiliation in this": [65535, 0], "his humiliation in this angel's": [65535, 0], "humiliation in this angel's garden": [65535, 0], "in this angel's garden and": [65535, 0], "this angel's garden and that": [65535, 0], "angel's garden and that record": [65535, 0], "garden and that record in": [65535, 0], "and that record in sand": [65535, 0], "that record in sand was": [65535, 0], "record in sand was fast": [65535, 0], "in sand was fast washing": [65535, 0], "sand was fast washing out": [65535, 0], "was fast washing out under": [65535, 0], "fast washing out under the": [65535, 0], "washing out under the waves": [65535, 0], "out under the waves of": [65535, 0], "under the waves of happiness": [65535, 0], "the waves of happiness that": [65535, 0], "waves of happiness that were": [65535, 0], "of happiness that were sweeping": [65535, 0], "happiness that were sweeping over": [65535, 0], "that were sweeping over it": [65535, 0], "were sweeping over it now": [65535, 0], "sweeping over it now the": [65535, 0], "over it now the visitors": [65535, 0], "it now the visitors were": [65535, 0], "now the visitors were given": [65535, 0], "the visitors were given the": [65535, 0], "visitors were given the highest": [65535, 0], "were given the highest seat": [65535, 0], "given the highest seat of": [65535, 0], "the highest seat of honor": [65535, 0], "highest seat of honor and": [65535, 0], "seat of honor and as": [65535, 0], "of honor and as soon": [65535, 0], "honor and as soon as": [65535, 0], "and as soon as mr": [65535, 0], "as soon as mr walters'": [65535, 0], "soon as mr walters' speech": [65535, 0], "as mr walters' speech was": [65535, 0], "mr walters' speech was finished": [65535, 0], "walters' speech was finished he": [65535, 0], "speech was finished he introduced": [65535, 0], "was finished he introduced them": [65535, 0], "finished he introduced them to": [65535, 0], "he introduced them to the": [65535, 0], "introduced them to the school": [65535, 0], "them to the school the": [65535, 0], "to the school the middle": [65535, 0], "the school the middle aged": [65535, 0], "school the middle aged man": [65535, 0], "the middle aged man turned": [65535, 0], "middle aged man turned out": [65535, 0], "aged man turned out to": [65535, 0], "man turned out to be": [65535, 0], "turned out to be a": [65535, 0], "out to be a prodigious": [65535, 0], "to be a prodigious personage": [65535, 0], "be a prodigious personage no": [65535, 0], "a prodigious personage no less": [65535, 0], "prodigious personage no less a": [65535, 0], "personage no less a one": [65535, 0], "no less a one than": [65535, 0], "less a one than the": [65535, 0], "a one than the county": [65535, 0], "one than the county judge": [65535, 0], "than the county judge altogether": [65535, 0], "the county judge altogether the": [65535, 0], "county judge altogether the most": [65535, 0], "judge altogether the most august": [65535, 0], "altogether the most august creation": [65535, 0], "the most august creation these": [65535, 0], "most august creation these children": [65535, 0], "august creation these children had": [65535, 0], "creation these children had ever": [65535, 0], "these children had ever looked": [65535, 0], "children had ever looked upon": [65535, 0], "had ever looked upon and": [65535, 0], "ever looked upon and they": [65535, 0], "looked upon and they wondered": [65535, 0], "upon and they wondered what": [65535, 0], "and they wondered what kind": [65535, 0], "they wondered what kind of": [65535, 0], "wondered what kind of material": [65535, 0], "what kind of material he": [65535, 0], "kind of material he was": [65535, 0], "of material he was made": [65535, 0], "material he was made of": [65535, 0], "he was made of and": [65535, 0], "was made of and they": [65535, 0], "made of and they half": [65535, 0], "of and they half wanted": [65535, 0], "and they half wanted to": [65535, 0], "they half wanted to hear": [65535, 0], "half wanted to hear him": [65535, 0], "wanted to hear him roar": [65535, 0], "to hear him roar and": [65535, 0], "hear him roar and were": [65535, 0], "him roar and were half": [65535, 0], "roar and were half afraid": [65535, 0], "and were half afraid he": [65535, 0], "were half afraid he might": [65535, 0], "half afraid he might too": [65535, 0], "afraid he might too he": [65535, 0], "he might too he was": [65535, 0], "might too he was from": [65535, 0], "too he was from constantinople": [65535, 0], "he was from constantinople twelve": [65535, 0], "was from constantinople twelve miles": [65535, 0], "from constantinople twelve miles away": [65535, 0], "constantinople twelve miles away so": [65535, 0], "twelve miles away so he": [65535, 0], "miles away so he had": [65535, 0], "away so he had travelled": [65535, 0], "so he had travelled and": [65535, 0], "he had travelled and seen": [65535, 0], "had travelled and seen the": [65535, 0], "travelled and seen the world": [65535, 0], "and seen the world these": [65535, 0], "seen the world these very": [65535, 0], "the world these very eyes": [65535, 0], "world these very eyes had": [65535, 0], "these very eyes had looked": [65535, 0], "very eyes had looked upon": [65535, 0], "eyes had looked upon the": [65535, 0], "had looked upon the county": [65535, 0], "looked upon the county court": [65535, 0], "upon the county court house": [65535, 0], "the county court house which": [65535, 0], "county court house which was": [65535, 0], "court house which was said": [65535, 0], "house which was said to": [65535, 0], "which was said to have": [65535, 0], "was said to have a": [65535, 0], "said to have a tin": [65535, 0], "to have a tin roof": [65535, 0], "have a tin roof the": [65535, 0], "a tin roof the awe": [65535, 0], "tin roof the awe which": [65535, 0], "roof the awe which these": [65535, 0], "the awe which these reflections": [65535, 0], "awe which these reflections inspired": [65535, 0], "which these reflections inspired was": [65535, 0], "these reflections inspired was attested": [65535, 0], "reflections inspired was attested by": [65535, 0], "inspired was attested by the": [65535, 0], "was attested by the impressive": [65535, 0], "attested by the impressive silence": [65535, 0], "by the impressive silence and": [65535, 0], "the impressive silence and the": [65535, 0], "impressive silence and the ranks": [65535, 0], "silence and the ranks of": [65535, 0], "and the ranks of staring": [65535, 0], "the ranks of staring eyes": [65535, 0], "ranks of staring eyes this": [65535, 0], "of staring eyes this was": [65535, 0], "staring eyes this was the": [65535, 0], "eyes this was the great": [65535, 0], "this was the great judge": [65535, 0], "was the great judge thatcher": [65535, 0], "the great judge thatcher brother": [65535, 0], "great judge thatcher brother of": [65535, 0], "judge thatcher brother of their": [65535, 0], "thatcher brother of their own": [65535, 0], "brother of their own lawyer": [65535, 0], "of their own lawyer jeff": [65535, 0], "their own lawyer jeff thatcher": [65535, 0], "own lawyer jeff thatcher immediately": [65535, 0], "lawyer jeff thatcher immediately went": [65535, 0], "jeff thatcher immediately went forward": [65535, 0], "thatcher immediately went forward to": [65535, 0], "immediately went forward to be": [65535, 0], "went forward to be familiar": [65535, 0], "forward to be familiar with": [65535, 0], "to be familiar with the": [65535, 0], "be familiar with the great": [65535, 0], "familiar with the great man": [65535, 0], "with the great man and": [65535, 0], "the great man and be": [65535, 0], "great man and be envied": [65535, 0], "man and be envied by": [65535, 0], "and be envied by the": [65535, 0], "be envied by the school": [65535, 0], "envied by the school it": [65535, 0], "by the school it would": [65535, 0], "the school it would have": [65535, 0], "school it would have been": [65535, 0], "it would have been music": [65535, 0], "would have been music to": [65535, 0], "have been music to his": [65535, 0], "been music to his soul": [65535, 0], "music to his soul to": [65535, 0], "to his soul to hear": [65535, 0], "his soul to hear the": [65535, 0], "soul to hear the whisperings": [65535, 0], "to hear the whisperings look": [65535, 0], "hear the whisperings look at": [65535, 0], "the whisperings look at him": [65535, 0], "whisperings look at him jim": [65535, 0], "look at him jim he's": [65535, 0], "at him jim he's a": [65535, 0], "him jim he's a going": [65535, 0], "jim he's a going up": [65535, 0], "he's a going up there": [65535, 0], "a going up there say": [65535, 0], "going up there say look": [65535, 0], "up there say look he's": [65535, 0], "there say look he's a": [65535, 0], "say look he's a going": [65535, 0], "look he's a going to": [65535, 0], "he's a going to shake": [65535, 0], "a going to shake hands": [65535, 0], "going to shake hands with": [65535, 0], "to shake hands with him": [65535, 0], "shake hands with him he": [65535, 0], "hands with him he is": [65535, 0], "with him he is shaking": [65535, 0], "him he is shaking hands": [65535, 0], "he is shaking hands with": [65535, 0], "is shaking hands with him": [65535, 0], "shaking hands with him by": [65535, 0], "hands with him by jings": [65535, 0], "with him by jings don't": [65535, 0], "him by jings don't you": [65535, 0], "by jings don't you wish": [65535, 0], "jings don't you wish you": [65535, 0], "don't you wish you was": [65535, 0], "you wish you was jeff": [65535, 0], "wish you was jeff mr": [65535, 0], "you was jeff mr walters": [65535, 0], "was jeff mr walters fell": [65535, 0], "jeff mr walters fell to": [65535, 0], "mr walters fell to showing": [65535, 0], "walters fell to showing off": [65535, 0], "fell to showing off with": [65535, 0], "to showing off with all": [65535, 0], "showing off with all sorts": [65535, 0], "off with all sorts of": [65535, 0], "with all sorts of official": [65535, 0], "all sorts of official bustlings": [65535, 0], "sorts of official bustlings and": [65535, 0], "of official bustlings and activities": [65535, 0], "official bustlings and activities giving": [65535, 0], "bustlings and activities giving orders": [65535, 0], "and activities giving orders delivering": [65535, 0], "activities giving orders delivering judgments": [65535, 0], "giving orders delivering judgments discharging": [65535, 0], "orders delivering judgments discharging directions": [65535, 0], "delivering judgments discharging directions here": [65535, 0], "judgments discharging directions here there": [65535, 0], "discharging directions here there everywhere": [65535, 0], "directions here there everywhere that": [65535, 0], "here there everywhere that he": [65535, 0], "there everywhere that he could": [65535, 0], "everywhere that he could find": [65535, 0], "that he could find a": [65535, 0], "he could find a target": [65535, 0], "could find a target the": [65535, 0], "find a target the librarian": [65535, 0], "a target the librarian showed": [65535, 0], "target the librarian showed off": [65535, 0], "the librarian showed off running": [65535, 0], "librarian showed off running hither": [65535, 0], "showed off running hither and": [65535, 0], "off running hither and thither": [65535, 0], "running hither and thither with": [65535, 0], "hither and thither with his": [65535, 0], "and thither with his arms": [65535, 0], "thither with his arms full": [65535, 0], "with his arms full of": [65535, 0], "his arms full of books": [65535, 0], "arms full of books and": [65535, 0], "full of books and making": [65535, 0], "of books and making a": [65535, 0], "books and making a deal": [65535, 0], "and making a deal of": [65535, 0], "making a deal of the": [65535, 0], "a deal of the splutter": [65535, 0], "deal of the splutter and": [65535, 0], "of the splutter and fuss": [65535, 0], "the splutter and fuss that": [65535, 0], "splutter and fuss that insect": [65535, 0], "and fuss that insect authority": [65535, 0], "fuss that insect authority delights": [65535, 0], "that insect authority delights in": [65535, 0], "insect authority delights in the": [65535, 0], "authority delights in the young": [65535, 0], "delights in the young lady": [65535, 0], "in the young lady teachers": [65535, 0], "the young lady teachers showed": [65535, 0], "young lady teachers showed off": [65535, 0], "lady teachers showed off bending": [65535, 0], "teachers showed off bending sweetly": [65535, 0], "showed off bending sweetly over": [65535, 0], "off bending sweetly over pupils": [65535, 0], "bending sweetly over pupils that": [65535, 0], "sweetly over pupils that were": [65535, 0], "over pupils that were lately": [65535, 0], "pupils that were lately being": [65535, 0], "that were lately being boxed": [65535, 0], "were lately being boxed lifting": [65535, 0], "lately being boxed lifting pretty": [65535, 0], "being boxed lifting pretty warning": [65535, 0], "boxed lifting pretty warning fingers": [65535, 0], "lifting pretty warning fingers at": [65535, 0], "pretty warning fingers at bad": [65535, 0], "warning fingers at bad little": [65535, 0], "fingers at bad little boys": [65535, 0], "at bad little boys and": [65535, 0], "bad little boys and patting": [65535, 0], "little boys and patting good": [65535, 0], "boys and patting good ones": [65535, 0], "and patting good ones lovingly": [65535, 0], "patting good ones lovingly the": [65535, 0], "good ones lovingly the young": [65535, 0], "ones lovingly the young gentlemen": [65535, 0], "lovingly the young gentlemen teachers": [65535, 0], "the young gentlemen teachers showed": [65535, 0], "young gentlemen teachers showed off": [65535, 0], "gentlemen teachers showed off with": [65535, 0], "teachers showed off with small": [65535, 0], "showed off with small scoldings": [65535, 0], "off with small scoldings and": [65535, 0], "with small scoldings and other": [65535, 0], "small scoldings and other little": [65535, 0], "scoldings and other little displays": [65535, 0], "and other little displays of": [65535, 0], "other little displays of authority": [65535, 0], "little displays of authority and": [65535, 0], "displays of authority and fine": [65535, 0], "of authority and fine attention": [65535, 0], "authority and fine attention to": [65535, 0], "and fine attention to discipline": [65535, 0], "fine attention to discipline and": [65535, 0], "attention to discipline and most": [65535, 0], "to discipline and most of": [65535, 0], "discipline and most of the": [65535, 0], "and most of the teachers": [65535, 0], "most of the teachers of": [65535, 0], "of the teachers of both": [65535, 0], "the teachers of both sexes": [65535, 0], "teachers of both sexes found": [65535, 0], "of both sexes found business": [65535, 0], "both sexes found business up": [65535, 0], "sexes found business up at": [65535, 0], "found business up at the": [65535, 0], "business up at the library": [65535, 0], "up at the library by": [65535, 0], "at the library by the": [65535, 0], "the library by the pulpit": [65535, 0], "library by the pulpit and": [65535, 0], "by the pulpit and it": [65535, 0], "the pulpit and it was": [65535, 0], "pulpit and it was business": [65535, 0], "and it was business that": [65535, 0], "it was business that frequently": [65535, 0], "was business that frequently had": [65535, 0], "business that frequently had to": [65535, 0], "that frequently had to be": [65535, 0], "frequently had to be done": [65535, 0], "had to be done over": [65535, 0], "to be done over again": [65535, 0], "be done over again two": [65535, 0], "done over again two or": [65535, 0], "over again two or three": [65535, 0], "again two or three times": [65535, 0], "two or three times with": [65535, 0], "or three times with much": [65535, 0], "three times with much seeming": [65535, 0], "times with much seeming vexation": [65535, 0], "with much seeming vexation the": [65535, 0], "much seeming vexation the little": [65535, 0], "seeming vexation the little girls": [65535, 0], "vexation the little girls showed": [65535, 0], "the little girls showed off": [65535, 0], "little girls showed off in": [65535, 0], "girls showed off in various": [65535, 0], "showed off in various ways": [65535, 0], "off in various ways and": [65535, 0], "in various ways and the": [65535, 0], "various ways and the little": [65535, 0], "ways and the little boys": [65535, 0], "and the little boys showed": [65535, 0], "the little boys showed off": [65535, 0], "little boys showed off with": [65535, 0], "boys showed off with such": [65535, 0], "showed off with such diligence": [65535, 0], "off with such diligence that": [65535, 0], "with such diligence that the": [65535, 0], "such diligence that the air": [65535, 0], "diligence that the air was": [65535, 0], "that the air was thick": [65535, 0], "the air was thick with": [65535, 0], "air was thick with paper": [65535, 0], "was thick with paper wads": [65535, 0], "thick with paper wads and": [65535, 0], "with paper wads and the": [65535, 0], "paper wads and the murmur": [65535, 0], "wads and the murmur of": [65535, 0], "and the murmur of scufflings": [65535, 0], "the murmur of scufflings and": [65535, 0], "murmur of scufflings and above": [65535, 0], "of scufflings and above it": [65535, 0], "scufflings and above it all": [65535, 0], "and above it all the": [65535, 0], "above it all the great": [65535, 0], "it all the great man": [65535, 0], "all the great man sat": [65535, 0], "the great man sat and": [65535, 0], "great man sat and beamed": [65535, 0], "man sat and beamed a": [65535, 0], "sat and beamed a majestic": [65535, 0], "and beamed a majestic judicial": [65535, 0], "beamed a majestic judicial smile": [65535, 0], "a majestic judicial smile upon": [65535, 0], "majestic judicial smile upon all": [65535, 0], "judicial smile upon all the": [65535, 0], "smile upon all the house": [65535, 0], "upon all the house and": [65535, 0], "all the house and warmed": [65535, 0], "the house and warmed himself": [65535, 0], "house and warmed himself in": [65535, 0], "and warmed himself in the": [65535, 0], "warmed himself in the sun": [65535, 0], "himself in the sun of": [65535, 0], "in the sun of his": [65535, 0], "the sun of his own": [65535, 0], "sun of his own grandeur": [65535, 0], "of his own grandeur for": [65535, 0], "his own grandeur for he": [65535, 0], "own grandeur for he was": [65535, 0], "grandeur for he was showing": [65535, 0], "for he was showing off": [65535, 0], "he was showing off too": [65535, 0], "was showing off too there": [65535, 0], "showing off too there was": [65535, 0], "off too there was only": [65535, 0], "too there was only one": [65535, 0], "there was only one thing": [65535, 0], "was only one thing wanting": [65535, 0], "only one thing wanting to": [65535, 0], "one thing wanting to make": [65535, 0], "thing wanting to make mr": [65535, 0], "wanting to make mr walters'": [65535, 0], "to make mr walters' ecstasy": [65535, 0], "make mr walters' ecstasy complete": [65535, 0], "mr walters' ecstasy complete and": [65535, 0], "walters' ecstasy complete and that": [65535, 0], "ecstasy complete and that was": [65535, 0], "complete and that was a": [65535, 0], "and that was a chance": [65535, 0], "that was a chance to": [65535, 0], "was a chance to deliver": [65535, 0], "a chance to deliver a": [65535, 0], "chance to deliver a bible": [65535, 0], "to deliver a bible prize": [65535, 0], "deliver a bible prize and": [65535, 0], "a bible prize and exhibit": [65535, 0], "bible prize and exhibit a": [65535, 0], "prize and exhibit a prodigy": [65535, 0], "and exhibit a prodigy several": [65535, 0], "exhibit a prodigy several pupils": [65535, 0], "a prodigy several pupils had": [65535, 0], "prodigy several pupils had a": [65535, 0], "several pupils had a few": [65535, 0], "pupils had a few yellow": [65535, 0], "had a few yellow tickets": [65535, 0], "a few yellow tickets but": [65535, 0], "few yellow tickets but none": [65535, 0], "yellow tickets but none had": [65535, 0], "tickets but none had enough": [65535, 0], "but none had enough he": [65535, 0], "none had enough he had": [65535, 0], "had enough he had been": [65535, 0], "enough he had been around": [65535, 0], "he had been around among": [65535, 0], "had been around among the": [65535, 0], "been around among the star": [65535, 0], "around among the star pupils": [65535, 0], "among the star pupils inquiring": [65535, 0], "the star pupils inquiring he": [65535, 0], "star pupils inquiring he would": [65535, 0], "pupils inquiring he would have": [65535, 0], "inquiring he would have given": [65535, 0], "he would have given worlds": [65535, 0], "would have given worlds now": [65535, 0], "have given worlds now to": [65535, 0], "given worlds now to have": [65535, 0], "worlds now to have that": [65535, 0], "now to have that german": [65535, 0], "to have that german lad": [65535, 0], "have that german lad back": [65535, 0], "that german lad back again": [65535, 0], "german lad back again with": [65535, 0], "lad back again with a": [65535, 0], "back again with a sound": [65535, 0], "again with a sound mind": [65535, 0], "with a sound mind and": [65535, 0], "a sound mind and now": [65535, 0], "sound mind and now at": [65535, 0], "mind and now at this": [65535, 0], "and now at this moment": [65535, 0], "now at this moment when": [65535, 0], "at this moment when hope": [65535, 0], "this moment when hope was": [65535, 0], "moment when hope was dead": [65535, 0], "when hope was dead tom": [65535, 0], "hope was dead tom sawyer": [65535, 0], "was dead tom sawyer came": [65535, 0], "dead tom sawyer came forward": [65535, 0], "tom sawyer came forward with": [65535, 0], "sawyer came forward with nine": [65535, 0], "came forward with nine yellow": [65535, 0], "forward with nine yellow tickets": [65535, 0], "with nine yellow tickets nine": [65535, 0], "nine yellow tickets nine red": [65535, 0], "yellow tickets nine red tickets": [65535, 0], "tickets nine red tickets and": [65535, 0], "nine red tickets and ten": [65535, 0], "red tickets and ten blue": [65535, 0], "tickets and ten blue ones": [65535, 0], "and ten blue ones and": [65535, 0], "ten blue ones and demanded": [65535, 0], "blue ones and demanded a": [65535, 0], "ones and demanded a bible": [65535, 0], "and demanded a bible this": [65535, 0], "demanded a bible this was": [65535, 0], "a bible this was a": [65535, 0], "bible this was a thunderbolt": [65535, 0], "this was a thunderbolt out": [65535, 0], "was a thunderbolt out of": [65535, 0], "a thunderbolt out of a": [65535, 0], "thunderbolt out of a clear": [65535, 0], "out of a clear sky": [65535, 0], "of a clear sky walters": [65535, 0], "a clear sky walters was": [65535, 0], "clear sky walters was not": [65535, 0], "sky walters was not expecting": [65535, 0], "walters was not expecting an": [65535, 0], "was not expecting an application": [65535, 0], "not expecting an application from": [65535, 0], "expecting an application from this": [65535, 0], "an application from this source": [65535, 0], "application from this source for": [65535, 0], "from this source for the": [65535, 0], "this source for the next": [65535, 0], "source for the next ten": [65535, 0], "for the next ten years": [65535, 0], "the next ten years but": [65535, 0], "next ten years but there": [65535, 0], "ten years but there was": [65535, 0], "years but there was no": [65535, 0], "but there was no getting": [65535, 0], "there was no getting around": [65535, 0], "was no getting around it": [65535, 0], "no getting around it here": [65535, 0], "getting around it here were": [65535, 0], "around it here were the": [65535, 0], "it here were the certified": [65535, 0], "here were the certified checks": [65535, 0], "were the certified checks and": [65535, 0], "the certified checks and they": [65535, 0], "certified checks and they were": [65535, 0], "checks and they were good": [65535, 0], "and they were good for": [65535, 0], "they were good for their": [65535, 0], "were good for their face": [65535, 0], "good for their face tom": [65535, 0], "for their face tom was": [65535, 0], "their face tom was therefore": [65535, 0], "face tom was therefore elevated": [65535, 0], "tom was therefore elevated to": [65535, 0], "was therefore elevated to a": [65535, 0], "therefore elevated to a place": [65535, 0], "elevated to a place with": [65535, 0], "to a place with the": [65535, 0], "a place with the judge": [65535, 0], "place with the judge and": [65535, 0], "with the judge and the": [65535, 0], "the judge and the other": [65535, 0], "judge and the other elect": [65535, 0], "and the other elect and": [65535, 0], "the other elect and the": [65535, 0], "other elect and the great": [65535, 0], "elect and the great news": [65535, 0], "and the great news was": [65535, 0], "the great news was announced": [65535, 0], "great news was announced from": [65535, 0], "news was announced from headquarters": [65535, 0], "was announced from headquarters it": [65535, 0], "announced from headquarters it was": [65535, 0], "from headquarters it was the": [65535, 0], "headquarters it was the most": [65535, 0], "it was the most stunning": [65535, 0], "was the most stunning surprise": [65535, 0], "the most stunning surprise of": [65535, 0], "most stunning surprise of the": [65535, 0], "stunning surprise of the decade": [65535, 0], "surprise of the decade and": [65535, 0], "of the decade and so": [65535, 0], "the decade and so profound": [65535, 0], "decade and so profound was": [65535, 0], "and so profound was the": [65535, 0], "so profound was the sensation": [65535, 0], "profound was the sensation that": [65535, 0], "was the sensation that it": [65535, 0], "the sensation that it lifted": [65535, 0], "sensation that it lifted the": [65535, 0], "that it lifted the new": [65535, 0], "it lifted the new hero": [65535, 0], "lifted the new hero up": [65535, 0], "the new hero up to": [65535, 0], "new hero up to the": [65535, 0], "hero up to the judicial": [65535, 0], "up to the judicial one's": [65535, 0], "to the judicial one's altitude": [65535, 0], "the judicial one's altitude and": [65535, 0], "judicial one's altitude and the": [65535, 0], "one's altitude and the school": [65535, 0], "altitude and the school had": [65535, 0], "and the school had two": [65535, 0], "the school had two marvels": [65535, 0], "school had two marvels to": [65535, 0], "had two marvels to gaze": [65535, 0], "two marvels to gaze upon": [65535, 0], "marvels to gaze upon in": [65535, 0], "to gaze upon in place": [65535, 0], "gaze upon in place of": [65535, 0], "upon in place of one": [65535, 0], "in place of one the": [65535, 0], "place of one the boys": [65535, 0], "of one the boys were": [65535, 0], "one the boys were all": [65535, 0], "the boys were all eaten": [65535, 0], "boys were all eaten up": [65535, 0], "were all eaten up with": [65535, 0], "all eaten up with envy": [65535, 0], "eaten up with envy but": [65535, 0], "up with envy but those": [65535, 0], "with envy but those that": [65535, 0], "envy but those that suffered": [65535, 0], "but those that suffered the": [65535, 0], "those that suffered the bitterest": [65535, 0], "that suffered the bitterest pangs": [65535, 0], "suffered the bitterest pangs were": [65535, 0], "the bitterest pangs were those": [65535, 0], "bitterest pangs were those who": [65535, 0], "pangs were those who perceived": [65535, 0], "were those who perceived too": [65535, 0], "those who perceived too late": [65535, 0], "who perceived too late that": [65535, 0], "perceived too late that they": [65535, 0], "too late that they themselves": [65535, 0], "late that they themselves had": [65535, 0], "that they themselves had contributed": [65535, 0], "they themselves had contributed to": [65535, 0], "themselves had contributed to this": [65535, 0], "had contributed to this hated": [65535, 0], "contributed to this hated splendor": [65535, 0], "to this hated splendor by": [65535, 0], "this hated splendor by trading": [65535, 0], "hated splendor by trading tickets": [65535, 0], "splendor by trading tickets to": [65535, 0], "by trading tickets to tom": [65535, 0], "trading tickets to tom for": [65535, 0], "tickets to tom for the": [65535, 0], "to tom for the wealth": [65535, 0], "tom for the wealth he": [65535, 0], "for the wealth he had": [65535, 0], "the wealth he had amassed": [65535, 0], "wealth he had amassed in": [65535, 0], "he had amassed in selling": [65535, 0], "had amassed in selling whitewashing": [65535, 0], "amassed in selling whitewashing privileges": [65535, 0], "in selling whitewashing privileges these": [65535, 0], "selling whitewashing privileges these despised": [65535, 0], "whitewashing privileges these despised themselves": [65535, 0], "privileges these despised themselves as": [65535, 0], "these despised themselves as being": [65535, 0], "despised themselves as being the": [65535, 0], "themselves as being the dupes": [65535, 0], "as being the dupes of": [65535, 0], "being the dupes of a": [65535, 0], "the dupes of a wily": [65535, 0], "dupes of a wily fraud": [65535, 0], "of a wily fraud a": [65535, 0], "a wily fraud a guileful": [65535, 0], "wily fraud a guileful snake": [65535, 0], "fraud a guileful snake in": [65535, 0], "a guileful snake in the": [65535, 0], "guileful snake in the grass": [65535, 0], "snake in the grass the": [65535, 0], "in the grass the prize": [65535, 0], "the grass the prize was": [65535, 0], "grass the prize was delivered": [65535, 0], "the prize was delivered to": [65535, 0], "prize was delivered to tom": [65535, 0], "was delivered to tom with": [65535, 0], "delivered to tom with as": [65535, 0], "to tom with as much": [65535, 0], "tom with as much effusion": [65535, 0], "with as much effusion as": [65535, 0], "as much effusion as the": [65535, 0], "much effusion as the superintendent": [65535, 0], "effusion as the superintendent could": [65535, 0], "as the superintendent could pump": [65535, 0], "the superintendent could pump up": [65535, 0], "superintendent could pump up under": [65535, 0], "could pump up under the": [65535, 0], "pump up under the circumstances": [65535, 0], "up under the circumstances but": [65535, 0], "under the circumstances but it": [65535, 0], "the circumstances but it lacked": [65535, 0], "circumstances but it lacked somewhat": [65535, 0], "but it lacked somewhat of": [65535, 0], "it lacked somewhat of the": [65535, 0], "lacked somewhat of the true": [65535, 0], "somewhat of the true gush": [65535, 0], "of the true gush for": [65535, 0], "the true gush for the": [65535, 0], "true gush for the poor": [65535, 0], "gush for the poor fellow's": [65535, 0], "for the poor fellow's instinct": [65535, 0], "the poor fellow's instinct taught": [65535, 0], "poor fellow's instinct taught him": [65535, 0], "fellow's instinct taught him that": [65535, 0], "instinct taught him that there": [65535, 0], "taught him that there was": [65535, 0], "him that there was a": [65535, 0], "that there was a mystery": [65535, 0], "there was a mystery here": [65535, 0], "was a mystery here that": [65535, 0], "a mystery here that could": [65535, 0], "mystery here that could not": [65535, 0], "here that could not well": [65535, 0], "that could not well bear": [65535, 0], "could not well bear the": [65535, 0], "not well bear the light": [65535, 0], "well bear the light perhaps": [65535, 0], "bear the light perhaps it": [65535, 0], "the light perhaps it was": [65535, 0], "light perhaps it was simply": [65535, 0], "perhaps it was simply preposterous": [65535, 0], "it was simply preposterous that": [65535, 0], "was simply preposterous that this": [65535, 0], "simply preposterous that this boy": [65535, 0], "preposterous that this boy had": [65535, 0], "that this boy had warehoused": [65535, 0], "this boy had warehoused two": [65535, 0], "boy had warehoused two thousand": [65535, 0], "had warehoused two thousand sheaves": [65535, 0], "warehoused two thousand sheaves of": [65535, 0], "two thousand sheaves of scriptural": [65535, 0], "thousand sheaves of scriptural wisdom": [65535, 0], "sheaves of scriptural wisdom on": [65535, 0], "of scriptural wisdom on his": [65535, 0], "scriptural wisdom on his premises": [65535, 0], "wisdom on his premises a": [65535, 0], "on his premises a dozen": [65535, 0], "his premises a dozen would": [65535, 0], "premises a dozen would strain": [65535, 0], "a dozen would strain his": [65535, 0], "dozen would strain his capacity": [65535, 0], "would strain his capacity without": [65535, 0], "strain his capacity without a": [65535, 0], "his capacity without a doubt": [65535, 0], "capacity without a doubt amy": [65535, 0], "without a doubt amy lawrence": [65535, 0], "a doubt amy lawrence was": [65535, 0], "doubt amy lawrence was proud": [65535, 0], "amy lawrence was proud and": [65535, 0], "lawrence was proud and glad": [65535, 0], "was proud and glad and": [65535, 0], "proud and glad and she": [65535, 0], "and glad and she tried": [65535, 0], "glad and she tried to": [65535, 0], "and she tried to make": [65535, 0], "she tried to make tom": [65535, 0], "tried to make tom see": [65535, 0], "to make tom see it": [65535, 0], "make tom see it in": [65535, 0], "tom see it in her": [65535, 0], "see it in her face": [65535, 0], "it in her face but": [65535, 0], "in her face but he": [65535, 0], "her face but he wouldn't": [65535, 0], "face but he wouldn't look": [65535, 0], "but he wouldn't look she": [65535, 0], "he wouldn't look she wondered": [65535, 0], "wouldn't look she wondered then": [65535, 0], "look she wondered then she": [65535, 0], "she wondered then she was": [65535, 0], "wondered then she was just": [65535, 0], "then she was just a": [65535, 0], "she was just a grain": [65535, 0], "was just a grain troubled": [65535, 0], "just a grain troubled next": [65535, 0], "a grain troubled next a": [65535, 0], "grain troubled next a dim": [65535, 0], "troubled next a dim suspicion": [65535, 0], "next a dim suspicion came": [65535, 0], "a dim suspicion came and": [65535, 0], "dim suspicion came and went": [65535, 0], "suspicion came and went came": [65535, 0], "came and went came again": [65535, 0], "and went came again she": [65535, 0], "went came again she watched": [65535, 0], "came again she watched a": [65535, 0], "again she watched a furtive": [65535, 0], "she watched a furtive glance": [65535, 0], "watched a furtive glance told": [65535, 0], "a furtive glance told her": [65535, 0], "furtive glance told her worlds": [65535, 0], "glance told her worlds and": [65535, 0], "told her worlds and then": [65535, 0], "her worlds and then her": [65535, 0], "worlds and then her heart": [65535, 0], "and then her heart broke": [65535, 0], "then her heart broke and": [65535, 0], "her heart broke and she": [65535, 0], "heart broke and she was": [65535, 0], "broke and she was jealous": [65535, 0], "and she was jealous and": [65535, 0], "she was jealous and angry": [65535, 0], "was jealous and angry and": [65535, 0], "jealous and angry and the": [65535, 0], "and angry and the tears": [65535, 0], "angry and the tears came": [65535, 0], "and the tears came and": [65535, 0], "the tears came and she": [65535, 0], "tears came and she hated": [65535, 0], "came and she hated everybody": [65535, 0], "and she hated everybody tom": [65535, 0], "she hated everybody tom most": [65535, 0], "hated everybody tom most of": [65535, 0], "everybody tom most of all": [65535, 0], "tom most of all she": [65535, 0], "most of all she thought": [65535, 0], "of all she thought tom": [65535, 0], "all she thought tom was": [65535, 0], "she thought tom was introduced": [65535, 0], "thought tom was introduced to": [65535, 0], "tom was introduced to the": [65535, 0], "was introduced to the judge": [65535, 0], "introduced to the judge but": [65535, 0], "to the judge but his": [65535, 0], "the judge but his tongue": [65535, 0], "judge but his tongue was": [65535, 0], "but his tongue was tied": [65535, 0], "his tongue was tied his": [65535, 0], "tongue was tied his breath": [65535, 0], "was tied his breath would": [65535, 0], "tied his breath would hardly": [65535, 0], "his breath would hardly come": [65535, 0], "breath would hardly come his": [65535, 0], "would hardly come his heart": [65535, 0], "hardly come his heart quaked": [65535, 0], "come his heart quaked partly": [65535, 0], "his heart quaked partly because": [65535, 0], "heart quaked partly because of": [65535, 0], "quaked partly because of the": [65535, 0], "partly because of the awful": [65535, 0], "because of the awful greatness": [65535, 0], "of the awful greatness of": [65535, 0], "the awful greatness of the": [65535, 0], "awful greatness of the man": [65535, 0], "greatness of the man but": [65535, 0], "of the man but mainly": [65535, 0], "the man but mainly because": [65535, 0], "man but mainly because he": [65535, 0], "but mainly because he was": [65535, 0], "mainly because he was her": [65535, 0], "because he was her parent": [65535, 0], "he was her parent he": [65535, 0], "was her parent he would": [65535, 0], "her parent he would have": [65535, 0], "parent he would have liked": [65535, 0], "he would have liked to": [65535, 0], "would have liked to fall": [65535, 0], "have liked to fall down": [65535, 0], "liked to fall down and": [65535, 0], "to fall down and worship": [65535, 0], "fall down and worship him": [65535, 0], "down and worship him if": [65535, 0], "and worship him if it": [65535, 0], "worship him if it were": [65535, 0], "him if it were in": [65535, 0], "if it were in the": [65535, 0], "it were in the dark": [65535, 0], "were in the dark the": [65535, 0], "in the dark the judge": [65535, 0], "the dark the judge put": [65535, 0], "dark the judge put his": [65535, 0], "the judge put his hand": [65535, 0], "judge put his hand on": [65535, 0], "put his hand on tom's": [65535, 0], "his hand on tom's head": [65535, 0], "hand on tom's head and": [65535, 0], "on tom's head and called": [65535, 0], "tom's head and called him": [65535, 0], "head and called him a": [65535, 0], "and called him a fine": [65535, 0], "called him a fine little": [65535, 0], "him a fine little man": [65535, 0], "a fine little man and": [65535, 0], "fine little man and asked": [65535, 0], "little man and asked him": [65535, 0], "man and asked him what": [65535, 0], "and asked him what his": [65535, 0], "asked him what his name": [65535, 0], "him what his name was": [65535, 0], "what his name was the": [65535, 0], "his name was the boy": [65535, 0], "name was the boy stammered": [65535, 0], "was the boy stammered gasped": [65535, 0], "the boy stammered gasped and": [65535, 0], "boy stammered gasped and got": [65535, 0], "stammered gasped and got it": [65535, 0], "gasped and got it out": [65535, 0], "and got it out tom": [65535, 0], "got it out tom oh": [65535, 0], "it out tom oh no": [65535, 0], "out tom oh no not": [65535, 0], "tom oh no not tom": [65535, 0], "oh no not tom it": [65535, 0], "no not tom it is": [65535, 0], "not tom it is thomas": [65535, 0], "tom it is thomas ah": [65535, 0], "it is thomas ah that's": [65535, 0], "is thomas ah that's it": [65535, 0], "thomas ah that's it i": [65535, 0], "ah that's it i thought": [65535, 0], "that's it i thought there": [65535, 0], "it i thought there was": [65535, 0], "i thought there was more": [65535, 0], "thought there was more to": [65535, 0], "there was more to it": [65535, 0], "was more to it maybe": [65535, 0], "more to it maybe that's": [65535, 0], "to it maybe that's very": [65535, 0], "it maybe that's very well": [65535, 0], "maybe that's very well but": [65535, 0], "that's very well but you've": [65535, 0], "very well but you've another": [65535, 0], "well but you've another one": [65535, 0], "but you've another one i": [65535, 0], "you've another one i daresay": [65535, 0], "another one i daresay and": [65535, 0], "one i daresay and you'll": [65535, 0], "i daresay and you'll tell": [65535, 0], "daresay and you'll tell it": [65535, 0], "and you'll tell it to": [65535, 0], "you'll tell it to me": [65535, 0], "tell it to me won't": [65535, 0], "it to me won't you": [65535, 0], "to me won't you tell": [65535, 0], "me won't you tell the": [65535, 0], "won't you tell the gentleman": [65535, 0], "you tell the gentleman your": [65535, 0], "tell the gentleman your other": [65535, 0], "the gentleman your other name": [65535, 0], "gentleman your other name thomas": [65535, 0], "your other name thomas said": [65535, 0], "other name thomas said walters": [65535, 0], "name thomas said walters and": [65535, 0], "thomas said walters and say": [65535, 0], "said walters and say sir": [65535, 0], "walters and say sir you": [65535, 0], "and say sir you mustn't": [65535, 0], "say sir you mustn't forget": [65535, 0], "sir you mustn't forget your": [65535, 0], "you mustn't forget your manners": [65535, 0], "mustn't forget your manners thomas": [65535, 0], "forget your manners thomas sawyer": [65535, 0], "your manners thomas sawyer sir": [65535, 0], "manners thomas sawyer sir that's": [65535, 0], "thomas sawyer sir that's it": [65535, 0], "sawyer sir that's it that's": [65535, 0], "sir that's it that's a": [65535, 0], "that's it that's a good": [65535, 0], "it that's a good boy": [65535, 0], "that's a good boy fine": [65535, 0], "a good boy fine boy": [65535, 0], "good boy fine boy fine": [65535, 0], "boy fine boy fine manly": [65535, 0], "fine boy fine manly little": [65535, 0], "boy fine manly little fellow": [65535, 0], "fine manly little fellow two": [65535, 0], "manly little fellow two thousand": [65535, 0], "little fellow two thousand verses": [65535, 0], "fellow two thousand verses is": [65535, 0], "two thousand verses is a": [65535, 0], "thousand verses is a great": [65535, 0], "verses is a great many": [65535, 0], "is a great many very": [65535, 0], "a great many very very": [65535, 0], "great many very very great": [65535, 0], "many very very great many": [65535, 0], "very very great many and": [65535, 0], "very great many and you": [65535, 0], "great many and you never": [65535, 0], "many and you never can": [65535, 0], "and you never can be": [65535, 0], "you never can be sorry": [65535, 0], "never can be sorry for": [65535, 0], "can be sorry for the": [65535, 0], "be sorry for the trouble": [65535, 0], "sorry for the trouble you": [65535, 0], "for the trouble you took": [65535, 0], "the trouble you took to": [65535, 0], "trouble you took to learn": [65535, 0], "you took to learn them": [65535, 0], "took to learn them for": [65535, 0], "to learn them for knowledge": [65535, 0], "learn them for knowledge is": [65535, 0], "them for knowledge is worth": [65535, 0], "for knowledge is worth more": [65535, 0], "knowledge is worth more than": [65535, 0], "is worth more than anything": [65535, 0], "worth more than anything there": [65535, 0], "more than anything there is": [65535, 0], "than anything there is in": [65535, 0], "anything there is in the": [65535, 0], "there is in the world": [65535, 0], "is in the world it's": [65535, 0], "in the world it's what": [65535, 0], "the world it's what makes": [65535, 0], "world it's what makes great": [65535, 0], "it's what makes great men": [65535, 0], "what makes great men and": [65535, 0], "makes great men and good": [65535, 0], "great men and good men": [65535, 0], "men and good men you'll": [65535, 0], "and good men you'll be": [65535, 0], "good men you'll be a": [65535, 0], "men you'll be a great": [65535, 0], "you'll be a great man": [65535, 0], "be a great man and": [65535, 0], "a great man and a": [65535, 0], "great man and a good": [65535, 0], "man and a good man": [65535, 0], "and a good man yourself": [65535, 0], "a good man yourself some": [65535, 0], "good man yourself some day": [65535, 0], "man yourself some day thomas": [65535, 0], "yourself some day thomas and": [65535, 0], "some day thomas and then": [65535, 0], "day thomas and then you'll": [65535, 0], "thomas and then you'll look": [65535, 0], "and then you'll look back": [65535, 0], "then you'll look back and": [65535, 0], "you'll look back and say": [65535, 0], "look back and say it's": [65535, 0], "back and say it's all": [65535, 0], "and say it's all owing": [65535, 0], "say it's all owing to": [65535, 0], "it's all owing to the": [65535, 0], "all owing to the precious": [65535, 0], "owing to the precious sunday": [65535, 0], "to the precious sunday school": [65535, 0], "the precious sunday school privileges": [65535, 0], "precious sunday school privileges of": [65535, 0], "sunday school privileges of my": [65535, 0], "school privileges of my boyhood": [65535, 0], "privileges of my boyhood it's": [65535, 0], "of my boyhood it's all": [65535, 0], "my boyhood it's all owing": [65535, 0], "boyhood it's all owing to": [65535, 0], "it's all owing to my": [65535, 0], "all owing to my dear": [65535, 0], "owing to my dear teachers": [65535, 0], "to my dear teachers that": [65535, 0], "my dear teachers that taught": [65535, 0], "dear teachers that taught me": [65535, 0], "teachers that taught me to": [65535, 0], "that taught me to learn": [65535, 0], "taught me to learn it's": [65535, 0], "me to learn it's all": [65535, 0], "to learn it's all owing": [65535, 0], "learn it's all owing to": [65535, 0], "all owing to the good": [65535, 0], "owing to the good superintendent": [65535, 0], "to the good superintendent who": [65535, 0], "the good superintendent who encouraged": [65535, 0], "good superintendent who encouraged me": [65535, 0], "superintendent who encouraged me and": [65535, 0], "who encouraged me and watched": [65535, 0], "encouraged me and watched over": [65535, 0], "me and watched over me": [65535, 0], "and watched over me and": [65535, 0], "watched over me and gave": [65535, 0], "over me and gave me": [65535, 0], "me and gave me a": [65535, 0], "and gave me a beautiful": [65535, 0], "gave me a beautiful bible": [65535, 0], "me a beautiful bible a": [65535, 0], "a beautiful bible a splendid": [65535, 0], "beautiful bible a splendid elegant": [65535, 0], "bible a splendid elegant bible": [65535, 0], "a splendid elegant bible to": [65535, 0], "splendid elegant bible to keep": [65535, 0], "elegant bible to keep and": [65535, 0], "bible to keep and have": [65535, 0], "to keep and have it": [65535, 0], "keep and have it all": [65535, 0], "and have it all for": [65535, 0], "have it all for my": [65535, 0], "it all for my own": [65535, 0], "all for my own always": [65535, 0], "for my own always it's": [65535, 0], "my own always it's all": [65535, 0], "own always it's all owing": [65535, 0], "always it's all owing to": [65535, 0], "it's all owing to right": [65535, 0], "all owing to right bringing": [65535, 0], "owing to right bringing up": [65535, 0], "to right bringing up that": [65535, 0], "right bringing up that is": [65535, 0], "bringing up that is what": [65535, 0], "up that is what you": [65535, 0], "that is what you will": [65535, 0], "is what you will say": [65535, 0], "what you will say thomas": [65535, 0], "you will say thomas and": [65535, 0], "will say thomas and you": [65535, 0], "say thomas and you wouldn't": [65535, 0], "thomas and you wouldn't take": [65535, 0], "and you wouldn't take any": [65535, 0], "you wouldn't take any money": [65535, 0], "wouldn't take any money for": [65535, 0], "take any money for those": [65535, 0], "any money for those two": [65535, 0], "money for those two thousand": [65535, 0], "for those two thousand verses": [65535, 0], "those two thousand verses no": [65535, 0], "two thousand verses no indeed": [65535, 0], "thousand verses no indeed you": [65535, 0], "verses no indeed you wouldn't": [65535, 0], "no indeed you wouldn't and": [65535, 0], "indeed you wouldn't and now": [65535, 0], "you wouldn't and now you": [65535, 0], "wouldn't and now you wouldn't": [65535, 0], "and now you wouldn't mind": [65535, 0], "now you wouldn't mind telling": [65535, 0], "you wouldn't mind telling me": [65535, 0], "wouldn't mind telling me and": [65535, 0], "mind telling me and this": [65535, 0], "telling me and this lady": [65535, 0], "me and this lady some": [65535, 0], "and this lady some of": [65535, 0], "this lady some of the": [65535, 0], "lady some of the things": [65535, 0], "some of the things you've": [65535, 0], "of the things you've learned": [65535, 0], "the things you've learned no": [65535, 0], "things you've learned no i": [65535, 0], "you've learned no i know": [65535, 0], "learned no i know you": [65535, 0], "no i know you wouldn't": [65535, 0], "i know you wouldn't for": [65535, 0], "know you wouldn't for we": [65535, 0], "you wouldn't for we are": [65535, 0], "wouldn't for we are proud": [65535, 0], "for we are proud of": [65535, 0], "we are proud of little": [65535, 0], "are proud of little boys": [65535, 0], "proud of little boys that": [65535, 0], "of little boys that learn": [65535, 0], "little boys that learn now": [65535, 0], "boys that learn now no": [65535, 0], "that learn now no doubt": [65535, 0], "learn now no doubt you": [65535, 0], "now no doubt you know": [65535, 0], "no doubt you know the": [65535, 0], "doubt you know the names": [65535, 0], "you know the names of": [65535, 0], "know the names of all": [65535, 0], "the names of all the": [65535, 0], "names of all the twelve": [65535, 0], "of all the twelve disciples": [65535, 0], "all the twelve disciples won't": [65535, 0], "the twelve disciples won't you": [65535, 0], "twelve disciples won't you tell": [65535, 0], "disciples won't you tell us": [65535, 0], "won't you tell us the": [65535, 0], "you tell us the names": [65535, 0], "tell us the names of": [65535, 0], "us the names of the": [65535, 0], "the names of the first": [65535, 0], "names of the first two": [65535, 0], "of the first two that": [65535, 0], "the first two that were": [65535, 0], "first two that were appointed": [65535, 0], "two that were appointed tom": [65535, 0], "that were appointed tom was": [65535, 0], "were appointed tom was tugging": [65535, 0], "appointed tom was tugging at": [65535, 0], "tom was tugging at a": [65535, 0], "was tugging at a button": [65535, 0], "tugging at a button hole": [65535, 0], "at a button hole and": [65535, 0], "a button hole and looking": [65535, 0], "button hole and looking sheepish": [65535, 0], "hole and looking sheepish he": [65535, 0], "and looking sheepish he blushed": [65535, 0], "looking sheepish he blushed now": [65535, 0], "sheepish he blushed now and": [65535, 0], "he blushed now and his": [65535, 0], "blushed now and his eyes": [65535, 0], "now and his eyes fell": [65535, 0], "and his eyes fell mr": [65535, 0], "his eyes fell mr walters'": [65535, 0], "eyes fell mr walters' heart": [65535, 0], "fell mr walters' heart sank": [65535, 0], "mr walters' heart sank within": [65535, 0], "walters' heart sank within him": [65535, 0], "heart sank within him he": [65535, 0], "sank within him he said": [65535, 0], "within him he said to": [65535, 0], "him he said to himself": [65535, 0], "he said to himself it": [65535, 0], "said to himself it is": [65535, 0], "to himself it is not": [65535, 0], "himself it is not possible": [65535, 0], "it is not possible that": [65535, 0], "is not possible that the": [65535, 0], "not possible that the boy": [65535, 0], "possible that the boy can": [65535, 0], "that the boy can answer": [65535, 0], "the boy can answer the": [65535, 0], "boy can answer the simplest": [65535, 0], "can answer the simplest question": [65535, 0], "answer the simplest question why": [65535, 0], "the simplest question why did": [65535, 0], "simplest question why did the": [65535, 0], "question why did the judge": [65535, 0], "why did the judge ask": [65535, 0], "did the judge ask him": [65535, 0], "the judge ask him yet": [65535, 0], "judge ask him yet he": [65535, 0], "ask him yet he felt": [65535, 0], "him yet he felt obliged": [65535, 0], "yet he felt obliged to": [65535, 0], "he felt obliged to speak": [65535, 0], "felt obliged to speak up": [65535, 0], "obliged to speak up and": [65535, 0], "to speak up and say": [65535, 0], "speak up and say answer": [65535, 0], "up and say answer the": [65535, 0], "and say answer the gentleman": [65535, 0], "say answer the gentleman thomas": [65535, 0], "answer the gentleman thomas don't": [65535, 0], "the gentleman thomas don't be": [65535, 0], "gentleman thomas don't be afraid": [65535, 0], "thomas don't be afraid tom": [65535, 0], "don't be afraid tom still": [65535, 0], "be afraid tom still hung": [65535, 0], "afraid tom still hung fire": [65535, 0], "tom still hung fire now": [65535, 0], "still hung fire now i": [65535, 0], "hung fire now i know": [65535, 0], "fire now i know you'll": [65535, 0], "now i know you'll tell": [65535, 0], "i know you'll tell me": [65535, 0], "know you'll tell me said": [65535, 0], "you'll tell me said the": [65535, 0], "tell me said the lady": [65535, 0], "me said the lady the": [65535, 0], "said the lady the names": [65535, 0], "the lady the names of": [65535, 0], "lady the names of the": [65535, 0], "of the first two disciples": [65535, 0], "the first two disciples were": [65535, 0], "first two disciples were david": [65535, 0], "two disciples were david and": [65535, 0], "disciples were david and goliath": [65535, 0], "were david and goliath let": [65535, 0], "david and goliath let us": [65535, 0], "and goliath let us draw": [65535, 0], "goliath let us draw the": [65535, 0], "let us draw the curtain": [65535, 0], "us draw the curtain of": [65535, 0], "draw the curtain of charity": [65535, 0], "the curtain of charity over": [65535, 0], "curtain of charity over the": [65535, 0], "of charity over the rest": [65535, 0], "charity over the rest of": [65535, 0], "over the rest of the": [65535, 0], "the rest of the scene": [65535, 0], "the sun rose upon a tranquil": [65535, 0], "sun rose upon a tranquil world": [65535, 0], "rose upon a tranquil world and": [65535, 0], "upon a tranquil world and beamed": [65535, 0], "a tranquil world and beamed down": [65535, 0], "tranquil world and beamed down upon": [65535, 0], "world and beamed down upon the": [65535, 0], "and beamed down upon the peaceful": [65535, 0], "beamed down upon the peaceful village": [65535, 0], "down upon the peaceful village like": [65535, 0], "upon the peaceful village like a": [65535, 0], "the peaceful village like a benediction": [65535, 0], "peaceful village like a benediction breakfast": [65535, 0], "village like a benediction breakfast over": [65535, 0], "like a benediction breakfast over aunt": [65535, 0], "a benediction breakfast over aunt polly": [65535, 0], "benediction breakfast over aunt polly had": [65535, 0], "breakfast over aunt polly had family": [65535, 0], "over aunt polly had family worship": [65535, 0], "aunt polly had family worship it": [65535, 0], "polly had family worship it began": [65535, 0], "had family worship it began with": [65535, 0], "family worship it began with a": [65535, 0], "worship it began with a prayer": [65535, 0], "it began with a prayer built": [65535, 0], "began with a prayer built from": [65535, 0], "with a prayer built from the": [65535, 0], "a prayer built from the ground": [65535, 0], "prayer built from the ground up": [65535, 0], "built from the ground up of": [65535, 0], "from the ground up of solid": [65535, 0], "the ground up of solid courses": [65535, 0], "ground up of solid courses of": [65535, 0], "up of solid courses of scriptural": [65535, 0], "of solid courses of scriptural quotations": [65535, 0], "solid courses of scriptural quotations welded": [65535, 0], "courses of scriptural quotations welded together": [65535, 0], "of scriptural quotations welded together with": [65535, 0], "scriptural quotations welded together with a": [65535, 0], "quotations welded together with a thin": [65535, 0], "welded together with a thin mortar": [65535, 0], "together with a thin mortar of": [65535, 0], "with a thin mortar of originality": [65535, 0], "a thin mortar of originality and": [65535, 0], "thin mortar of originality and from": [65535, 0], "mortar of originality and from the": [65535, 0], "of originality and from the summit": [65535, 0], "originality and from the summit of": [65535, 0], "and from the summit of this": [65535, 0], "from the summit of this she": [65535, 0], "the summit of this she delivered": [65535, 0], "summit of this she delivered a": [65535, 0], "of this she delivered a grim": [65535, 0], "this she delivered a grim chapter": [65535, 0], "she delivered a grim chapter of": [65535, 0], "delivered a grim chapter of the": [65535, 0], "a grim chapter of the mosaic": [65535, 0], "grim chapter of the mosaic law": [65535, 0], "chapter of the mosaic law as": [65535, 0], "of the mosaic law as from": [65535, 0], "the mosaic law as from sinai": [65535, 0], "mosaic law as from sinai then": [65535, 0], "law as from sinai then tom": [65535, 0], "as from sinai then tom girded": [65535, 0], "from sinai then tom girded up": [65535, 0], "sinai then tom girded up his": [65535, 0], "then tom girded up his loins": [65535, 0], "tom girded up his loins so": [65535, 0], "girded up his loins so to": [65535, 0], "up his loins so to speak": [65535, 0], "his loins so to speak and": [65535, 0], "loins so to speak and went": [65535, 0], "so to speak and went to": [65535, 0], "to speak and went to work": [65535, 0], "speak and went to work to": [65535, 0], "and went to work to get": [65535, 0], "went to work to get his": [65535, 0], "to work to get his verses": [65535, 0], "work to get his verses sid": [65535, 0], "to get his verses sid had": [65535, 0], "get his verses sid had learned": [65535, 0], "his verses sid had learned his": [65535, 0], "verses sid had learned his lesson": [65535, 0], "sid had learned his lesson days": [65535, 0], "had learned his lesson days before": [65535, 0], "learned his lesson days before tom": [65535, 0], "his lesson days before tom bent": [65535, 0], "lesson days before tom bent all": [65535, 0], "days before tom bent all his": [65535, 0], "before tom bent all his energies": [65535, 0], "tom bent all his energies to": [65535, 0], "bent all his energies to the": [65535, 0], "all his energies to the memorizing": [65535, 0], "his energies to the memorizing of": [65535, 0], "energies to the memorizing of five": [65535, 0], "to the memorizing of five verses": [65535, 0], "the memorizing of five verses and": [65535, 0], "memorizing of five verses and he": [65535, 0], "of five verses and he chose": [65535, 0], "five verses and he chose part": [65535, 0], "verses and he chose part of": [65535, 0], "and he chose part of the": [65535, 0], "he chose part of the sermon": [65535, 0], "chose part of the sermon on": [65535, 0], "part of the sermon on the": [65535, 0], "of the sermon on the mount": [65535, 0], "the sermon on the mount because": [65535, 0], "sermon on the mount because he": [65535, 0], "on the mount because he could": [65535, 0], "the mount because he could find": [65535, 0], "mount because he could find no": [65535, 0], "because he could find no verses": [65535, 0], "he could find no verses that": [65535, 0], "could find no verses that were": [65535, 0], "find no verses that were shorter": [65535, 0], "no verses that were shorter at": [65535, 0], "verses that were shorter at the": [65535, 0], "that were shorter at the end": [65535, 0], "were shorter at the end of": [65535, 0], "shorter at the end of half": [65535, 0], "at the end of half an": [65535, 0], "the end of half an hour": [65535, 0], "end of half an hour tom": [65535, 0], "of half an hour tom had": [65535, 0], "half an hour tom had a": [65535, 0], "an hour tom had a vague": [65535, 0], "hour tom had a vague general": [65535, 0], "tom had a vague general idea": [65535, 0], "had a vague general idea of": [65535, 0], "a vague general idea of his": [65535, 0], "vague general idea of his lesson": [65535, 0], "general idea of his lesson but": [65535, 0], "idea of his lesson but no": [65535, 0], "of his lesson but no more": [65535, 0], "his lesson but no more for": [65535, 0], "lesson but no more for his": [65535, 0], "but no more for his mind": [65535, 0], "no more for his mind was": [65535, 0], "more for his mind was traversing": [65535, 0], "for his mind was traversing the": [65535, 0], "his mind was traversing the whole": [65535, 0], "mind was traversing the whole field": [65535, 0], "was traversing the whole field of": [65535, 0], "traversing the whole field of human": [65535, 0], "the whole field of human thought": [65535, 0], "whole field of human thought and": [65535, 0], "field of human thought and his": [65535, 0], "of human thought and his hands": [65535, 0], "human thought and his hands were": [65535, 0], "thought and his hands were busy": [65535, 0], "and his hands were busy with": [65535, 0], "his hands were busy with distracting": [65535, 0], "hands were busy with distracting recreations": [65535, 0], "were busy with distracting recreations mary": [65535, 0], "busy with distracting recreations mary took": [65535, 0], "with distracting recreations mary took his": [65535, 0], "distracting recreations mary took his book": [65535, 0], "recreations mary took his book to": [65535, 0], "mary took his book to hear": [65535, 0], "took his book to hear him": [65535, 0], "his book to hear him recite": [65535, 0], "book to hear him recite and": [65535, 0], "to hear him recite and he": [65535, 0], "hear him recite and he tried": [65535, 0], "him recite and he tried to": [65535, 0], "recite and he tried to find": [65535, 0], "and he tried to find his": [65535, 0], "he tried to find his way": [65535, 0], "tried to find his way through": [65535, 0], "to find his way through the": [65535, 0], "find his way through the fog": [65535, 0], "his way through the fog blessed": [65535, 0], "way through the fog blessed are": [65535, 0], "through the fog blessed are the": [65535, 0], "the fog blessed are the a": [65535, 0], "fog blessed are the a a": [65535, 0], "blessed are the a a poor": [65535, 0], "are the a a poor yes": [65535, 0], "the a a poor yes poor": [65535, 0], "a a poor yes poor blessed": [65535, 0], "a poor yes poor blessed are": [65535, 0], "poor yes poor blessed are the": [65535, 0], "yes poor blessed are the poor": [65535, 0], "poor blessed are the poor a": [65535, 0], "blessed are the poor a a": [65535, 0], "are the poor a a in": [65535, 0], "the poor a a in spirit": [65535, 0], "poor a a in spirit in": [65535, 0], "a a in spirit in spirit": [65535, 0], "a in spirit in spirit blessed": [65535, 0], "in spirit in spirit blessed are": [65535, 0], "spirit in spirit blessed are the": [65535, 0], "in spirit blessed are the poor": [65535, 0], "spirit blessed are the poor in": [65535, 0], "blessed are the poor in spirit": [65535, 0], "are the poor in spirit for": [65535, 0], "the poor in spirit for they": [65535, 0], "poor in spirit for they they": [65535, 0], "in spirit for they they theirs": [65535, 0], "spirit for they they theirs for": [65535, 0], "for they they theirs for theirs": [65535, 0], "they they theirs for theirs blessed": [65535, 0], "they theirs for theirs blessed are": [65535, 0], "theirs for theirs blessed are the": [65535, 0], "for theirs blessed are the poor": [65535, 0], "theirs blessed are the poor in": [65535, 0], "the poor in spirit for theirs": [65535, 0], "poor in spirit for theirs is": [65535, 0], "in spirit for theirs is the": [65535, 0], "spirit for theirs is the kingdom": [65535, 0], "for theirs is the kingdom of": [65535, 0], "theirs is the kingdom of heaven": [65535, 0], "is the kingdom of heaven blessed": [65535, 0], "the kingdom of heaven blessed are": [65535, 0], "kingdom of heaven blessed are they": [65535, 0], "of heaven blessed are they that": [65535, 0], "heaven blessed are they that mourn": [65535, 0], "blessed are they that mourn for": [65535, 0], "are they that mourn for they": [65535, 0], "they that mourn for they they": [65535, 0], "that mourn for they they sh": [65535, 0], "mourn for they they sh for": [65535, 0], "for they they sh for they": [65535, 0], "they they sh for they a": [65535, 0], "they sh for they a s": [65535, 0], "sh for they a s h": [65535, 0], "for they a s h a": [65535, 0], "they a s h a for": [65535, 0], "a s h a for they": [65535, 0], "s h a for they s": [65535, 0], "h a for they s h": [65535, 0], "a for they s h oh": [65535, 0], "for they s h oh i": [65535, 0], "they s h oh i don't": [65535, 0], "s h oh i don't know": [65535, 0], "h oh i don't know what": [65535, 0], "oh i don't know what it": [65535, 0], "i don't know what it is": [65535, 0], "don't know what it is shall": [65535, 0], "know what it is shall oh": [65535, 0], "what it is shall oh shall": [65535, 0], "it is shall oh shall for": [65535, 0], "is shall oh shall for they": [65535, 0], "shall oh shall for they shall": [65535, 0], "oh shall for they shall for": [65535, 0], "shall for they shall for they": [65535, 0], "for they shall for they shall": [65535, 0], "they shall for they shall a": [65535, 0], "shall for they shall a a": [65535, 0], "for they shall a a shall": [65535, 0], "they shall a a shall mourn": [65535, 0], "shall a a shall mourn a": [65535, 0], "a a shall mourn a a": [65535, 0], "a shall mourn a a blessed": [65535, 0], "shall mourn a a blessed are": [65535, 0], "mourn a a blessed are they": [65535, 0], "a a blessed are they that": [65535, 0], "a blessed are they that shall": [65535, 0], "blessed are they that shall they": [65535, 0], "are they that shall they that": [65535, 0], "they that shall they that a": [65535, 0], "that shall they that a they": [65535, 0], "shall they that a they that": [65535, 0], "they that a they that shall": [65535, 0], "that a they that shall mourn": [65535, 0], "a they that shall mourn for": [65535, 0], "they that shall mourn for they": [65535, 0], "that shall mourn for they shall": [65535, 0], "shall mourn for they shall a": [65535, 0], "mourn for they shall a shall": [65535, 0], "for they shall a shall what": [65535, 0], "they shall a shall what why": [65535, 0], "shall a shall what why don't": [65535, 0], "a shall what why don't you": [65535, 0], "shall what why don't you tell": [65535, 0], "what why don't you tell me": [65535, 0], "why don't you tell me mary": [65535, 0], "don't you tell me mary what": [65535, 0], "you tell me mary what do": [65535, 0], "tell me mary what do you": [65535, 0], "me mary what do you want": [65535, 0], "mary what do you want to": [65535, 0], "what do you want to be": [65535, 0], "do you want to be so": [65535, 0], "you want to be so mean": [65535, 0], "want to be so mean for": [65535, 0], "to be so mean for oh": [65535, 0], "be so mean for oh tom": [65535, 0], "so mean for oh tom you": [65535, 0], "mean for oh tom you poor": [65535, 0], "for oh tom you poor thick": [65535, 0], "oh tom you poor thick headed": [65535, 0], "tom you poor thick headed thing": [65535, 0], "you poor thick headed thing i'm": [65535, 0], "poor thick headed thing i'm not": [65535, 0], "thick headed thing i'm not teasing": [65535, 0], "headed thing i'm not teasing you": [65535, 0], "thing i'm not teasing you i": [65535, 0], "i'm not teasing you i wouldn't": [65535, 0], "not teasing you i wouldn't do": [65535, 0], "teasing you i wouldn't do that": [65535, 0], "you i wouldn't do that you": [65535, 0], "i wouldn't do that you must": [65535, 0], "wouldn't do that you must go": [65535, 0], "do that you must go and": [65535, 0], "that you must go and learn": [65535, 0], "you must go and learn it": [65535, 0], "must go and learn it again": [65535, 0], "go and learn it again don't": [65535, 0], "and learn it again don't you": [65535, 0], "learn it again don't you be": [65535, 0], "it again don't you be discouraged": [65535, 0], "again don't you be discouraged tom": [65535, 0], "don't you be discouraged tom you'll": [65535, 0], "you be discouraged tom you'll manage": [65535, 0], "be discouraged tom you'll manage it": [65535, 0], "discouraged tom you'll manage it and": [65535, 0], "tom you'll manage it and if": [65535, 0], "you'll manage it and if you": [65535, 0], "manage it and if you do": [65535, 0], "it and if you do i'll": [65535, 0], "and if you do i'll give": [65535, 0], "if you do i'll give you": [65535, 0], "you do i'll give you something": [65535, 0], "do i'll give you something ever": [65535, 0], "i'll give you something ever so": [65535, 0], "give you something ever so nice": [65535, 0], "you something ever so nice there": [65535, 0], "something ever so nice there now": [65535, 0], "ever so nice there now that's": [65535, 0], "so nice there now that's a": [65535, 0], "nice there now that's a good": [65535, 0], "there now that's a good boy": [65535, 0], "now that's a good boy all": [65535, 0], "that's a good boy all right": [65535, 0], "a good boy all right what": [65535, 0], "good boy all right what is": [65535, 0], "boy all right what is it": [65535, 0], "all right what is it mary": [65535, 0], "right what is it mary tell": [65535, 0], "what is it mary tell me": [65535, 0], "is it mary tell me what": [65535, 0], "it mary tell me what it": [65535, 0], "mary tell me what it is": [65535, 0], "tell me what it is never": [65535, 0], "me what it is never you": [65535, 0], "what it is never you mind": [65535, 0], "it is never you mind tom": [65535, 0], "is never you mind tom you": [65535, 0], "never you mind tom you know": [65535, 0], "you mind tom you know if": [65535, 0], "mind tom you know if i": [65535, 0], "tom you know if i say": [65535, 0], "you know if i say it's": [65535, 0], "know if i say it's nice": [65535, 0], "if i say it's nice it": [65535, 0], "i say it's nice it is": [65535, 0], "say it's nice it is nice": [65535, 0], "it's nice it is nice you": [65535, 0], "nice it is nice you bet": [65535, 0], "it is nice you bet you": [65535, 0], "is nice you bet you that's": [65535, 0], "nice you bet you that's so": [65535, 0], "you bet you that's so mary": [65535, 0], "bet you that's so mary all": [65535, 0], "you that's so mary all right": [65535, 0], "that's so mary all right i'll": [65535, 0], "so mary all right i'll tackle": [65535, 0], "mary all right i'll tackle it": [65535, 0], "all right i'll tackle it again": [65535, 0], "right i'll tackle it again and": [65535, 0], "i'll tackle it again and he": [65535, 0], "tackle it again and he did": [65535, 0], "it again and he did tackle": [65535, 0], "again and he did tackle it": [65535, 0], "and he did tackle it again": [65535, 0], "he did tackle it again and": [65535, 0], "did tackle it again and under": [65535, 0], "tackle it again and under the": [65535, 0], "it again and under the double": [65535, 0], "again and under the double pressure": [65535, 0], "and under the double pressure of": [65535, 0], "under the double pressure of curiosity": [65535, 0], "the double pressure of curiosity and": [65535, 0], "double pressure of curiosity and prospective": [65535, 0], "pressure of curiosity and prospective gain": [65535, 0], "of curiosity and prospective gain he": [65535, 0], "curiosity and prospective gain he did": [65535, 0], "and prospective gain he did it": [65535, 0], "prospective gain he did it with": [65535, 0], "gain he did it with such": [65535, 0], "he did it with such spirit": [65535, 0], "did it with such spirit that": [65535, 0], "it with such spirit that he": [65535, 0], "with such spirit that he accomplished": [65535, 0], "such spirit that he accomplished a": [65535, 0], "spirit that he accomplished a shining": [65535, 0], "that he accomplished a shining success": [65535, 0], "he accomplished a shining success mary": [65535, 0], "accomplished a shining success mary gave": [65535, 0], "a shining success mary gave him": [65535, 0], "shining success mary gave him a": [65535, 0], "success mary gave him a brand": [65535, 0], "mary gave him a brand new": [65535, 0], "gave him a brand new barlow": [65535, 0], "him a brand new barlow knife": [65535, 0], "a brand new barlow knife worth": [65535, 0], "brand new barlow knife worth twelve": [65535, 0], "new barlow knife worth twelve and": [65535, 0], "barlow knife worth twelve and a": [65535, 0], "knife worth twelve and a half": [65535, 0], "worth twelve and a half cents": [65535, 0], "twelve and a half cents and": [65535, 0], "and a half cents and the": [65535, 0], "a half cents and the convulsion": [65535, 0], "half cents and the convulsion of": [65535, 0], "cents and the convulsion of delight": [65535, 0], "and the convulsion of delight that": [65535, 0], "the convulsion of delight that swept": [65535, 0], "convulsion of delight that swept his": [65535, 0], "of delight that swept his system": [65535, 0], "delight that swept his system shook": [65535, 0], "that swept his system shook him": [65535, 0], "swept his system shook him to": [65535, 0], "his system shook him to his": [65535, 0], "system shook him to his foundations": [65535, 0], "shook him to his foundations true": [65535, 0], "him to his foundations true the": [65535, 0], "to his foundations true the knife": [65535, 0], "his foundations true the knife would": [65535, 0], "foundations true the knife would not": [65535, 0], "true the knife would not cut": [65535, 0], "the knife would not cut anything": [65535, 0], "knife would not cut anything but": [65535, 0], "would not cut anything but it": [65535, 0], "not cut anything but it was": [65535, 0], "cut anything but it was a": [65535, 0], "anything but it was a sure": [65535, 0], "but it was a sure enough": [65535, 0], "it was a sure enough barlow": [65535, 0], "was a sure enough barlow and": [65535, 0], "a sure enough barlow and there": [65535, 0], "sure enough barlow and there was": [65535, 0], "enough barlow and there was inconceivable": [65535, 0], "barlow and there was inconceivable grandeur": [65535, 0], "and there was inconceivable grandeur in": [65535, 0], "there was inconceivable grandeur in that": [65535, 0], "was inconceivable grandeur in that though": [65535, 0], "inconceivable grandeur in that though where": [65535, 0], "grandeur in that though where the": [65535, 0], "in that though where the western": [65535, 0], "that though where the western boys": [65535, 0], "though where the western boys ever": [65535, 0], "where the western boys ever got": [65535, 0], "the western boys ever got the": [65535, 0], "western boys ever got the idea": [65535, 0], "boys ever got the idea that": [65535, 0], "ever got the idea that such": [65535, 0], "got the idea that such a": [65535, 0], "the idea that such a weapon": [65535, 0], "idea that such a weapon could": [65535, 0], "that such a weapon could possibly": [65535, 0], "such a weapon could possibly be": [65535, 0], "a weapon could possibly be counterfeited": [65535, 0], "weapon could possibly be counterfeited to": [65535, 0], "could possibly be counterfeited to its": [65535, 0], "possibly be counterfeited to its injury": [65535, 0], "be counterfeited to its injury is": [65535, 0], "counterfeited to its injury is an": [65535, 0], "to its injury is an imposing": [65535, 0], "its injury is an imposing mystery": [65535, 0], "injury is an imposing mystery and": [65535, 0], "is an imposing mystery and will": [65535, 0], "an imposing mystery and will always": [65535, 0], "imposing mystery and will always remain": [65535, 0], "mystery and will always remain so": [65535, 0], "and will always remain so perhaps": [65535, 0], "will always remain so perhaps tom": [65535, 0], "always remain so perhaps tom contrived": [65535, 0], "remain so perhaps tom contrived to": [65535, 0], "so perhaps tom contrived to scarify": [65535, 0], "perhaps tom contrived to scarify the": [65535, 0], "tom contrived to scarify the cupboard": [65535, 0], "contrived to scarify the cupboard with": [65535, 0], "to scarify the cupboard with it": [65535, 0], "scarify the cupboard with it and": [65535, 0], "the cupboard with it and was": [65535, 0], "cupboard with it and was arranging": [65535, 0], "with it and was arranging to": [65535, 0], "it and was arranging to begin": [65535, 0], "and was arranging to begin on": [65535, 0], "was arranging to begin on the": [65535, 0], "arranging to begin on the bureau": [65535, 0], "to begin on the bureau when": [65535, 0], "begin on the bureau when he": [65535, 0], "on the bureau when he was": [65535, 0], "the bureau when he was called": [65535, 0], "bureau when he was called off": [65535, 0], "when he was called off to": [65535, 0], "he was called off to dress": [65535, 0], "was called off to dress for": [65535, 0], "called off to dress for sunday": [65535, 0], "off to dress for sunday school": [65535, 0], "to dress for sunday school mary": [65535, 0], "dress for sunday school mary gave": [65535, 0], "for sunday school mary gave him": [65535, 0], "sunday school mary gave him a": [65535, 0], "school mary gave him a tin": [65535, 0], "mary gave him a tin basin": [65535, 0], "gave him a tin basin of": [65535, 0], "him a tin basin of water": [65535, 0], "a tin basin of water and": [65535, 0], "tin basin of water and a": [65535, 0], "basin of water and a piece": [65535, 0], "of water and a piece of": [65535, 0], "water and a piece of soap": [65535, 0], "and a piece of soap and": [65535, 0], "a piece of soap and he": [65535, 0], "piece of soap and he went": [65535, 0], "of soap and he went outside": [65535, 0], "soap and he went outside the": [65535, 0], "and he went outside the door": [65535, 0], "he went outside the door and": [65535, 0], "went outside the door and set": [65535, 0], "outside the door and set the": [65535, 0], "the door and set the basin": [65535, 0], "door and set the basin on": [65535, 0], "and set the basin on a": [65535, 0], "set the basin on a little": [65535, 0], "the basin on a little bench": [65535, 0], "basin on a little bench there": [65535, 0], "on a little bench there then": [65535, 0], "a little bench there then he": [65535, 0], "little bench there then he dipped": [65535, 0], "bench there then he dipped the": [65535, 0], "there then he dipped the soap": [65535, 0], "then he dipped the soap in": [65535, 0], "he dipped the soap in the": [65535, 0], "dipped the soap in the water": [65535, 0], "the soap in the water and": [65535, 0], "soap in the water and laid": [65535, 0], "in the water and laid it": [65535, 0], "the water and laid it down": [65535, 0], "water and laid it down turned": [65535, 0], "and laid it down turned up": [65535, 0], "laid it down turned up his": [65535, 0], "it down turned up his sleeves": [65535, 0], "down turned up his sleeves poured": [65535, 0], "turned up his sleeves poured out": [65535, 0], "up his sleeves poured out the": [65535, 0], "his sleeves poured out the water": [65535, 0], "sleeves poured out the water on": [65535, 0], "poured out the water on the": [65535, 0], "out the water on the ground": [65535, 0], "the water on the ground gently": [65535, 0], "water on the ground gently and": [65535, 0], "on the ground gently and then": [65535, 0], "the ground gently and then entered": [65535, 0], "ground gently and then entered the": [65535, 0], "gently and then entered the kitchen": [65535, 0], "and then entered the kitchen and": [65535, 0], "then entered the kitchen and began": [65535, 0], "entered the kitchen and began to": [65535, 0], "the kitchen and began to wipe": [65535, 0], "kitchen and began to wipe his": [65535, 0], "and began to wipe his face": [65535, 0], "began to wipe his face diligently": [65535, 0], "to wipe his face diligently on": [65535, 0], "wipe his face diligently on the": [65535, 0], "his face diligently on the towel": [65535, 0], "face diligently on the towel behind": [65535, 0], "diligently on the towel behind the": [65535, 0], "on the towel behind the door": [65535, 0], "the towel behind the door but": [65535, 0], "towel behind the door but mary": [65535, 0], "behind the door but mary removed": [65535, 0], "the door but mary removed the": [65535, 0], "door but mary removed the towel": [65535, 0], "but mary removed the towel and": [65535, 0], "mary removed the towel and said": [65535, 0], "removed the towel and said now": [65535, 0], "the towel and said now ain't": [65535, 0], "towel and said now ain't you": [65535, 0], "and said now ain't you ashamed": [65535, 0], "said now ain't you ashamed tom": [65535, 0], "now ain't you ashamed tom you": [65535, 0], "ain't you ashamed tom you mustn't": [65535, 0], "you ashamed tom you mustn't be": [65535, 0], "ashamed tom you mustn't be so": [65535, 0], "tom you mustn't be so bad": [65535, 0], "you mustn't be so bad water": [65535, 0], "mustn't be so bad water won't": [65535, 0], "be so bad water won't hurt": [65535, 0], "so bad water won't hurt you": [65535, 0], "bad water won't hurt you tom": [65535, 0], "water won't hurt you tom was": [65535, 0], "won't hurt you tom was a": [65535, 0], "hurt you tom was a trifle": [65535, 0], "you tom was a trifle disconcerted": [65535, 0], "tom was a trifle disconcerted the": [65535, 0], "was a trifle disconcerted the basin": [65535, 0], "a trifle disconcerted the basin was": [65535, 0], "trifle disconcerted the basin was refilled": [65535, 0], "disconcerted the basin was refilled and": [65535, 0], "the basin was refilled and this": [65535, 0], "basin was refilled and this time": [65535, 0], "was refilled and this time he": [65535, 0], "refilled and this time he stood": [65535, 0], "and this time he stood over": [65535, 0], "this time he stood over it": [65535, 0], "time he stood over it a": [65535, 0], "he stood over it a little": [65535, 0], "stood over it a little while": [65535, 0], "over it a little while gathering": [65535, 0], "it a little while gathering resolution": [65535, 0], "a little while gathering resolution took": [65535, 0], "little while gathering resolution took in": [65535, 0], "while gathering resolution took in a": [65535, 0], "gathering resolution took in a big": [65535, 0], "resolution took in a big breath": [65535, 0], "took in a big breath and": [65535, 0], "in a big breath and began": [65535, 0], "a big breath and began when": [65535, 0], "big breath and began when he": [65535, 0], "breath and began when he entered": [65535, 0], "and began when he entered the": [65535, 0], "began when he entered the kitchen": [65535, 0], "when he entered the kitchen presently": [65535, 0], "he entered the kitchen presently with": [65535, 0], "entered the kitchen presently with both": [65535, 0], "the kitchen presently with both eyes": [65535, 0], "kitchen presently with both eyes shut": [65535, 0], "presently with both eyes shut and": [65535, 0], "with both eyes shut and groping": [65535, 0], "both eyes shut and groping for": [65535, 0], "eyes shut and groping for the": [65535, 0], "shut and groping for the towel": [65535, 0], "and groping for the towel with": [65535, 0], "groping for the towel with his": [65535, 0], "for the towel with his hands": [65535, 0], "the towel with his hands an": [65535, 0], "towel with his hands an honorable": [65535, 0], "with his hands an honorable testimony": [65535, 0], "his hands an honorable testimony of": [65535, 0], "hands an honorable testimony of suds": [65535, 0], "an honorable testimony of suds and": [65535, 0], "honorable testimony of suds and water": [65535, 0], "testimony of suds and water was": [65535, 0], "of suds and water was dripping": [65535, 0], "suds and water was dripping from": [65535, 0], "and water was dripping from his": [65535, 0], "water was dripping from his face": [65535, 0], "was dripping from his face but": [65535, 0], "dripping from his face but when": [65535, 0], "from his face but when he": [65535, 0], "his face but when he emerged": [65535, 0], "face but when he emerged from": [65535, 0], "but when he emerged from the": [65535, 0], "when he emerged from the towel": [65535, 0], "he emerged from the towel he": [65535, 0], "emerged from the towel he was": [65535, 0], "from the towel he was not": [65535, 0], "the towel he was not yet": [65535, 0], "towel he was not yet satisfactory": [65535, 0], "he was not yet satisfactory for": [65535, 0], "was not yet satisfactory for the": [65535, 0], "not yet satisfactory for the clean": [65535, 0], "yet satisfactory for the clean territory": [65535, 0], "satisfactory for the clean territory stopped": [65535, 0], "for the clean territory stopped short": [65535, 0], "the clean territory stopped short at": [65535, 0], "clean territory stopped short at his": [65535, 0], "territory stopped short at his chin": [65535, 0], "stopped short at his chin and": [65535, 0], "short at his chin and his": [65535, 0], "at his chin and his jaws": [65535, 0], "his chin and his jaws like": [65535, 0], "chin and his jaws like a": [65535, 0], "and his jaws like a mask": [65535, 0], "his jaws like a mask below": [65535, 0], "jaws like a mask below and": [65535, 0], "like a mask below and beyond": [65535, 0], "a mask below and beyond this": [65535, 0], "mask below and beyond this line": [65535, 0], "below and beyond this line there": [65535, 0], "and beyond this line there was": [65535, 0], "beyond this line there was a": [65535, 0], "this line there was a dark": [65535, 0], "line there was a dark expanse": [65535, 0], "there was a dark expanse of": [65535, 0], "was a dark expanse of unirrigated": [65535, 0], "a dark expanse of unirrigated soil": [65535, 0], "dark expanse of unirrigated soil that": [65535, 0], "expanse of unirrigated soil that spread": [65535, 0], "of unirrigated soil that spread downward": [65535, 0], "unirrigated soil that spread downward in": [65535, 0], "soil that spread downward in front": [65535, 0], "that spread downward in front and": [65535, 0], "spread downward in front and backward": [65535, 0], "downward in front and backward around": [65535, 0], "in front and backward around his": [65535, 0], "front and backward around his neck": [65535, 0], "and backward around his neck mary": [65535, 0], "backward around his neck mary took": [65535, 0], "around his neck mary took him": [65535, 0], "his neck mary took him in": [65535, 0], "neck mary took him in hand": [65535, 0], "mary took him in hand and": [65535, 0], "took him in hand and when": [65535, 0], "him in hand and when she": [65535, 0], "in hand and when she was": [65535, 0], "hand and when she was done": [65535, 0], "and when she was done with": [65535, 0], "when she was done with him": [65535, 0], "she was done with him he": [65535, 0], "was done with him he was": [65535, 0], "done with him he was a": [65535, 0], "with him he was a man": [65535, 0], "him he was a man and": [65535, 0], "he was a man and a": [65535, 0], "was a man and a brother": [65535, 0], "a man and a brother without": [65535, 0], "man and a brother without distinction": [65535, 0], "and a brother without distinction of": [65535, 0], "a brother without distinction of color": [65535, 0], "brother without distinction of color and": [65535, 0], "without distinction of color and his": [65535, 0], "distinction of color and his saturated": [65535, 0], "of color and his saturated hair": [65535, 0], "color and his saturated hair was": [65535, 0], "and his saturated hair was neatly": [65535, 0], "his saturated hair was neatly brushed": [65535, 0], "saturated hair was neatly brushed and": [65535, 0], "hair was neatly brushed and its": [65535, 0], "was neatly brushed and its short": [65535, 0], "neatly brushed and its short curls": [65535, 0], "brushed and its short curls wrought": [65535, 0], "and its short curls wrought into": [65535, 0], "its short curls wrought into a": [65535, 0], "short curls wrought into a dainty": [65535, 0], "curls wrought into a dainty and": [65535, 0], "wrought into a dainty and symmetrical": [65535, 0], "into a dainty and symmetrical general": [65535, 0], "a dainty and symmetrical general effect": [65535, 0], "dainty and symmetrical general effect he": [65535, 0], "and symmetrical general effect he privately": [65535, 0], "symmetrical general effect he privately smoothed": [65535, 0], "general effect he privately smoothed out": [65535, 0], "effect he privately smoothed out the": [65535, 0], "he privately smoothed out the curls": [65535, 0], "privately smoothed out the curls with": [65535, 0], "smoothed out the curls with labor": [65535, 0], "out the curls with labor and": [65535, 0], "the curls with labor and difficulty": [65535, 0], "curls with labor and difficulty and": [65535, 0], "with labor and difficulty and plastered": [65535, 0], "labor and difficulty and plastered his": [65535, 0], "and difficulty and plastered his hair": [65535, 0], "difficulty and plastered his hair close": [65535, 0], "and plastered his hair close down": [65535, 0], "plastered his hair close down to": [65535, 0], "his hair close down to his": [65535, 0], "hair close down to his head": [65535, 0], "close down to his head for": [65535, 0], "down to his head for he": [65535, 0], "to his head for he held": [65535, 0], "his head for he held curls": [65535, 0], "head for he held curls to": [65535, 0], "for he held curls to be": [65535, 0], "he held curls to be effeminate": [65535, 0], "held curls to be effeminate and": [65535, 0], "curls to be effeminate and his": [65535, 0], "to be effeminate and his own": [65535, 0], "be effeminate and his own filled": [65535, 0], "effeminate and his own filled his": [65535, 0], "and his own filled his life": [65535, 0], "his own filled his life with": [65535, 0], "own filled his life with bitterness": [65535, 0], "filled his life with bitterness then": [65535, 0], "his life with bitterness then mary": [65535, 0], "life with bitterness then mary got": [65535, 0], "with bitterness then mary got out": [65535, 0], "bitterness then mary got out a": [65535, 0], "then mary got out a suit": [65535, 0], "mary got out a suit of": [65535, 0], "got out a suit of his": [65535, 0], "out a suit of his clothing": [65535, 0], "a suit of his clothing that": [65535, 0], "suit of his clothing that had": [65535, 0], "of his clothing that had been": [65535, 0], "his clothing that had been used": [65535, 0], "clothing that had been used only": [65535, 0], "that had been used only on": [65535, 0], "had been used only on sundays": [65535, 0], "been used only on sundays during": [65535, 0], "used only on sundays during two": [65535, 0], "only on sundays during two years": [65535, 0], "on sundays during two years they": [65535, 0], "sundays during two years they were": [65535, 0], "during two years they were simply": [65535, 0], "two years they were simply called": [65535, 0], "years they were simply called his": [65535, 0], "they were simply called his other": [65535, 0], "were simply called his other clothes": [65535, 0], "simply called his other clothes and": [65535, 0], "called his other clothes and so": [65535, 0], "his other clothes and so by": [65535, 0], "other clothes and so by that": [65535, 0], "clothes and so by that we": [65535, 0], "and so by that we know": [65535, 0], "so by that we know the": [65535, 0], "by that we know the size": [65535, 0], "that we know the size of": [65535, 0], "we know the size of his": [65535, 0], "know the size of his wardrobe": [65535, 0], "the size of his wardrobe the": [65535, 0], "size of his wardrobe the girl": [65535, 0], "of his wardrobe the girl put": [65535, 0], "his wardrobe the girl put him": [65535, 0], "wardrobe the girl put him to": [65535, 0], "the girl put him to rights": [65535, 0], "girl put him to rights after": [65535, 0], "put him to rights after he": [65535, 0], "him to rights after he had": [65535, 0], "to rights after he had dressed": [65535, 0], "rights after he had dressed himself": [65535, 0], "after he had dressed himself she": [65535, 0], "he had dressed himself she buttoned": [65535, 0], "had dressed himself she buttoned his": [65535, 0], "dressed himself she buttoned his neat": [65535, 0], "himself she buttoned his neat roundabout": [65535, 0], "she buttoned his neat roundabout up": [65535, 0], "buttoned his neat roundabout up to": [65535, 0], "his neat roundabout up to his": [65535, 0], "neat roundabout up to his chin": [65535, 0], "roundabout up to his chin turned": [65535, 0], "up to his chin turned his": [65535, 0], "to his chin turned his vast": [65535, 0], "his chin turned his vast shirt": [65535, 0], "chin turned his vast shirt collar": [65535, 0], "turned his vast shirt collar down": [65535, 0], "his vast shirt collar down over": [65535, 0], "vast shirt collar down over his": [65535, 0], "shirt collar down over his shoulders": [65535, 0], "collar down over his shoulders brushed": [65535, 0], "down over his shoulders brushed him": [65535, 0], "over his shoulders brushed him off": [65535, 0], "his shoulders brushed him off and": [65535, 0], "shoulders brushed him off and crowned": [65535, 0], "brushed him off and crowned him": [65535, 0], "him off and crowned him with": [65535, 0], "off and crowned him with his": [65535, 0], "and crowned him with his speckled": [65535, 0], "crowned him with his speckled straw": [65535, 0], "him with his speckled straw hat": [65535, 0], "with his speckled straw hat he": [65535, 0], "his speckled straw hat he now": [65535, 0], "speckled straw hat he now looked": [65535, 0], "straw hat he now looked exceedingly": [65535, 0], "hat he now looked exceedingly improved": [65535, 0], "he now looked exceedingly improved and": [65535, 0], "now looked exceedingly improved and uncomfortable": [65535, 0], "looked exceedingly improved and uncomfortable he": [65535, 0], "exceedingly improved and uncomfortable he was": [65535, 0], "improved and uncomfortable he was fully": [65535, 0], "and uncomfortable he was fully as": [65535, 0], "uncomfortable he was fully as uncomfortable": [65535, 0], "he was fully as uncomfortable as": [65535, 0], "was fully as uncomfortable as he": [65535, 0], "fully as uncomfortable as he looked": [65535, 0], "as uncomfortable as he looked for": [65535, 0], "uncomfortable as he looked for there": [65535, 0], "as he looked for there was": [65535, 0], "he looked for there was a": [65535, 0], "looked for there was a restraint": [65535, 0], "for there was a restraint about": [65535, 0], "there was a restraint about whole": [65535, 0], "was a restraint about whole clothes": [65535, 0], "a restraint about whole clothes and": [65535, 0], "restraint about whole clothes and cleanliness": [65535, 0], "about whole clothes and cleanliness that": [65535, 0], "whole clothes and cleanliness that galled": [65535, 0], "clothes and cleanliness that galled him": [65535, 0], "and cleanliness that galled him he": [65535, 0], "cleanliness that galled him he hoped": [65535, 0], "that galled him he hoped that": [65535, 0], "galled him he hoped that mary": [65535, 0], "him he hoped that mary would": [65535, 0], "he hoped that mary would forget": [65535, 0], "hoped that mary would forget his": [65535, 0], "that mary would forget his shoes": [65535, 0], "mary would forget his shoes but": [65535, 0], "would forget his shoes but the": [65535, 0], "forget his shoes but the hope": [65535, 0], "his shoes but the hope was": [65535, 0], "shoes but the hope was blighted": [65535, 0], "but the hope was blighted she": [65535, 0], "the hope was blighted she coated": [65535, 0], "hope was blighted she coated them": [65535, 0], "was blighted she coated them thoroughly": [65535, 0], "blighted she coated them thoroughly with": [65535, 0], "she coated them thoroughly with tallow": [65535, 0], "coated them thoroughly with tallow as": [65535, 0], "them thoroughly with tallow as was": [65535, 0], "thoroughly with tallow as was the": [65535, 0], "with tallow as was the custom": [65535, 0], "tallow as was the custom and": [65535, 0], "as was the custom and brought": [65535, 0], "was the custom and brought them": [65535, 0], "the custom and brought them out": [65535, 0], "custom and brought them out he": [65535, 0], "and brought them out he lost": [65535, 0], "brought them out he lost his": [65535, 0], "them out he lost his temper": [65535, 0], "out he lost his temper and": [65535, 0], "he lost his temper and said": [65535, 0], "lost his temper and said he": [65535, 0], "his temper and said he was": [65535, 0], "temper and said he was always": [65535, 0], "and said he was always being": [65535, 0], "said he was always being made": [65535, 0], "he was always being made to": [65535, 0], "was always being made to do": [65535, 0], "always being made to do everything": [65535, 0], "being made to do everything he": [65535, 0], "made to do everything he didn't": [65535, 0], "to do everything he didn't want": [65535, 0], "do everything he didn't want to": [65535, 0], "everything he didn't want to do": [65535, 0], "he didn't want to do but": [65535, 0], "didn't want to do but mary": [65535, 0], "want to do but mary said": [65535, 0], "to do but mary said persuasively": [65535, 0], "do but mary said persuasively please": [65535, 0], "but mary said persuasively please tom": [65535, 0], "mary said persuasively please tom that's": [65535, 0], "said persuasively please tom that's a": [65535, 0], "persuasively please tom that's a good": [65535, 0], "please tom that's a good boy": [65535, 0], "tom that's a good boy so": [65535, 0], "that's a good boy so he": [65535, 0], "a good boy so he got": [65535, 0], "good boy so he got into": [65535, 0], "boy so he got into the": [65535, 0], "so he got into the shoes": [65535, 0], "he got into the shoes snarling": [65535, 0], "got into the shoes snarling mary": [65535, 0], "into the shoes snarling mary was": [65535, 0], "the shoes snarling mary was soon": [65535, 0], "shoes snarling mary was soon ready": [65535, 0], "snarling mary was soon ready and": [65535, 0], "mary was soon ready and the": [65535, 0], "was soon ready and the three": [65535, 0], "soon ready and the three children": [65535, 0], "ready and the three children set": [65535, 0], "and the three children set out": [65535, 0], "the three children set out for": [65535, 0], "three children set out for sunday": [65535, 0], "children set out for sunday school": [65535, 0], "set out for sunday school a": [65535, 0], "out for sunday school a place": [65535, 0], "for sunday school a place that": [65535, 0], "sunday school a place that tom": [65535, 0], "school a place that tom hated": [65535, 0], "a place that tom hated with": [65535, 0], "place that tom hated with his": [65535, 0], "that tom hated with his whole": [65535, 0], "tom hated with his whole heart": [65535, 0], "hated with his whole heart but": [65535, 0], "with his whole heart but sid": [65535, 0], "his whole heart but sid and": [65535, 0], "whole heart but sid and mary": [65535, 0], "heart but sid and mary were": [65535, 0], "but sid and mary were fond": [65535, 0], "sid and mary were fond of": [65535, 0], "and mary were fond of it": [65535, 0], "mary were fond of it sabbath": [65535, 0], "were fond of it sabbath school": [65535, 0], "fond of it sabbath school hours": [65535, 0], "of it sabbath school hours were": [65535, 0], "it sabbath school hours were from": [65535, 0], "sabbath school hours were from nine": [65535, 0], "school hours were from nine to": [65535, 0], "hours were from nine to half": [65535, 0], "were from nine to half past": [65535, 0], "from nine to half past ten": [65535, 0], "nine to half past ten and": [65535, 0], "to half past ten and then": [65535, 0], "half past ten and then church": [65535, 0], "past ten and then church service": [65535, 0], "ten and then church service two": [65535, 0], "and then church service two of": [65535, 0], "then church service two of the": [65535, 0], "church service two of the children": [65535, 0], "service two of the children always": [65535, 0], "two of the children always remained": [65535, 0], "of the children always remained for": [65535, 0], "the children always remained for the": [65535, 0], "children always remained for the sermon": [65535, 0], "always remained for the sermon voluntarily": [65535, 0], "remained for the sermon voluntarily and": [65535, 0], "for the sermon voluntarily and the": [65535, 0], "the sermon voluntarily and the other": [65535, 0], "sermon voluntarily and the other always": [65535, 0], "voluntarily and the other always remained": [65535, 0], "and the other always remained too": [65535, 0], "the other always remained too for": [65535, 0], "other always remained too for stronger": [65535, 0], "always remained too for stronger reasons": [65535, 0], "remained too for stronger reasons the": [65535, 0], "too for stronger reasons the church's": [65535, 0], "for stronger reasons the church's high": [65535, 0], "stronger reasons the church's high backed": [65535, 0], "reasons the church's high backed uncushioned": [65535, 0], "the church's high backed uncushioned pews": [65535, 0], "church's high backed uncushioned pews would": [65535, 0], "high backed uncushioned pews would seat": [65535, 0], "backed uncushioned pews would seat about": [65535, 0], "uncushioned pews would seat about three": [65535, 0], "pews would seat about three hundred": [65535, 0], "would seat about three hundred persons": [65535, 0], "seat about three hundred persons the": [65535, 0], "about three hundred persons the edifice": [65535, 0], "three hundred persons the edifice was": [65535, 0], "hundred persons the edifice was but": [65535, 0], "persons the edifice was but a": [65535, 0], "the edifice was but a small": [65535, 0], "edifice was but a small plain": [65535, 0], "was but a small plain affair": [65535, 0], "but a small plain affair with": [65535, 0], "a small plain affair with a": [65535, 0], "small plain affair with a sort": [65535, 0], "plain affair with a sort of": [65535, 0], "affair with a sort of pine": [65535, 0], "with a sort of pine board": [65535, 0], "a sort of pine board tree": [65535, 0], "sort of pine board tree box": [65535, 0], "of pine board tree box on": [65535, 0], "pine board tree box on top": [65535, 0], "board tree box on top of": [65535, 0], "tree box on top of it": [65535, 0], "box on top of it for": [65535, 0], "on top of it for a": [65535, 0], "top of it for a steeple": [65535, 0], "of it for a steeple at": [65535, 0], "it for a steeple at the": [65535, 0], "for a steeple at the door": [65535, 0], "a steeple at the door tom": [65535, 0], "steeple at the door tom dropped": [65535, 0], "at the door tom dropped back": [65535, 0], "the door tom dropped back a": [65535, 0], "door tom dropped back a step": [65535, 0], "tom dropped back a step and": [65535, 0], "dropped back a step and accosted": [65535, 0], "back a step and accosted a": [65535, 0], "a step and accosted a sunday": [65535, 0], "step and accosted a sunday dressed": [65535, 0], "and accosted a sunday dressed comrade": [65535, 0], "accosted a sunday dressed comrade say": [65535, 0], "a sunday dressed comrade say billy": [65535, 0], "sunday dressed comrade say billy got": [65535, 0], "dressed comrade say billy got a": [65535, 0], "comrade say billy got a yaller": [65535, 0], "say billy got a yaller ticket": [65535, 0], "billy got a yaller ticket yes": [65535, 0], "got a yaller ticket yes what'll": [65535, 0], "a yaller ticket yes what'll you": [65535, 0], "yaller ticket yes what'll you take": [65535, 0], "ticket yes what'll you take for": [65535, 0], "yes what'll you take for her": [65535, 0], "what'll you take for her what'll": [65535, 0], "you take for her what'll you": [65535, 0], "take for her what'll you give": [65535, 0], "for her what'll you give piece": [65535, 0], "her what'll you give piece of": [65535, 0], "what'll you give piece of lickrish": [65535, 0], "you give piece of lickrish and": [65535, 0], "give piece of lickrish and a": [65535, 0], "piece of lickrish and a fish": [65535, 0], "of lickrish and a fish hook": [65535, 0], "lickrish and a fish hook less": [65535, 0], "and a fish hook less see": [65535, 0], "a fish hook less see 'em": [65535, 0], "fish hook less see 'em tom": [65535, 0], "hook less see 'em tom exhibited": [65535, 0], "less see 'em tom exhibited they": [65535, 0], "see 'em tom exhibited they were": [65535, 0], "'em tom exhibited they were satisfactory": [65535, 0], "tom exhibited they were satisfactory and": [65535, 0], "exhibited they were satisfactory and the": [65535, 0], "they were satisfactory and the property": [65535, 0], "were satisfactory and the property changed": [65535, 0], "satisfactory and the property changed hands": [65535, 0], "and the property changed hands then": [65535, 0], "the property changed hands then tom": [65535, 0], "property changed hands then tom traded": [65535, 0], "changed hands then tom traded a": [65535, 0], "hands then tom traded a couple": [65535, 0], "then tom traded a couple of": [65535, 0], "tom traded a couple of white": [65535, 0], "traded a couple of white alleys": [65535, 0], "a couple of white alleys for": [65535, 0], "couple of white alleys for three": [65535, 0], "of white alleys for three red": [65535, 0], "white alleys for three red tickets": [65535, 0], "alleys for three red tickets and": [65535, 0], "for three red tickets and some": [65535, 0], "three red tickets and some small": [65535, 0], "red tickets and some small trifle": [65535, 0], "tickets and some small trifle or": [65535, 0], "and some small trifle or other": [65535, 0], "some small trifle or other for": [65535, 0], "small trifle or other for a": [65535, 0], "trifle or other for a couple": [65535, 0], "or other for a couple of": [65535, 0], "other for a couple of blue": [65535, 0], "for a couple of blue ones": [65535, 0], "a couple of blue ones he": [65535, 0], "couple of blue ones he waylaid": [65535, 0], "of blue ones he waylaid other": [65535, 0], "blue ones he waylaid other boys": [65535, 0], "ones he waylaid other boys as": [65535, 0], "he waylaid other boys as they": [65535, 0], "waylaid other boys as they came": [65535, 0], "other boys as they came and": [65535, 0], "boys as they came and went": [65535, 0], "as they came and went on": [65535, 0], "they came and went on buying": [65535, 0], "came and went on buying tickets": [65535, 0], "and went on buying tickets of": [65535, 0], "went on buying tickets of various": [65535, 0], "on buying tickets of various colors": [65535, 0], "buying tickets of various colors ten": [65535, 0], "tickets of various colors ten or": [65535, 0], "of various colors ten or fifteen": [65535, 0], "various colors ten or fifteen minutes": [65535, 0], "colors ten or fifteen minutes longer": [65535, 0], "ten or fifteen minutes longer he": [65535, 0], "or fifteen minutes longer he entered": [65535, 0], "fifteen minutes longer he entered the": [65535, 0], "minutes longer he entered the church": [65535, 0], "longer he entered the church now": [65535, 0], "he entered the church now with": [65535, 0], "entered the church now with a": [65535, 0], "the church now with a swarm": [65535, 0], "church now with a swarm of": [65535, 0], "now with a swarm of clean": [65535, 0], "with a swarm of clean and": [65535, 0], "a swarm of clean and noisy": [65535, 0], "swarm of clean and noisy boys": [65535, 0], "of clean and noisy boys and": [65535, 0], "clean and noisy boys and girls": [65535, 0], "and noisy boys and girls proceeded": [65535, 0], "noisy boys and girls proceeded to": [65535, 0], "boys and girls proceeded to his": [65535, 0], "and girls proceeded to his seat": [65535, 0], "girls proceeded to his seat and": [65535, 0], "proceeded to his seat and started": [65535, 0], "to his seat and started a": [65535, 0], "his seat and started a quarrel": [65535, 0], "seat and started a quarrel with": [65535, 0], "and started a quarrel with the": [65535, 0], "started a quarrel with the first": [65535, 0], "a quarrel with the first boy": [65535, 0], "quarrel with the first boy that": [65535, 0], "with the first boy that came": [65535, 0], "the first boy that came handy": [65535, 0], "first boy that came handy the": [65535, 0], "boy that came handy the teacher": [65535, 0], "that came handy the teacher a": [65535, 0], "came handy the teacher a grave": [65535, 0], "handy the teacher a grave elderly": [65535, 0], "the teacher a grave elderly man": [65535, 0], "teacher a grave elderly man interfered": [65535, 0], "a grave elderly man interfered then": [65535, 0], "grave elderly man interfered then turned": [65535, 0], "elderly man interfered then turned his": [65535, 0], "man interfered then turned his back": [65535, 0], "interfered then turned his back a": [65535, 0], "then turned his back a moment": [65535, 0], "turned his back a moment and": [65535, 0], "his back a moment and tom": [65535, 0], "back a moment and tom pulled": [65535, 0], "a moment and tom pulled a": [65535, 0], "moment and tom pulled a boy's": [65535, 0], "and tom pulled a boy's hair": [65535, 0], "tom pulled a boy's hair in": [65535, 0], "pulled a boy's hair in the": [65535, 0], "a boy's hair in the next": [65535, 0], "boy's hair in the next bench": [65535, 0], "hair in the next bench and": [65535, 0], "in the next bench and was": [65535, 0], "the next bench and was absorbed": [65535, 0], "next bench and was absorbed in": [65535, 0], "bench and was absorbed in his": [65535, 0], "and was absorbed in his book": [65535, 0], "was absorbed in his book when": [65535, 0], "absorbed in his book when the": [65535, 0], "in his book when the boy": [65535, 0], "his book when the boy turned": [65535, 0], "book when the boy turned around": [65535, 0], "when the boy turned around stuck": [65535, 0], "the boy turned around stuck a": [65535, 0], "boy turned around stuck a pin": [65535, 0], "turned around stuck a pin in": [65535, 0], "around stuck a pin in another": [65535, 0], "stuck a pin in another boy": [65535, 0], "a pin in another boy presently": [65535, 0], "pin in another boy presently in": [65535, 0], "in another boy presently in order": [65535, 0], "another boy presently in order to": [65535, 0], "boy presently in order to hear": [65535, 0], "presently in order to hear him": [65535, 0], "in order to hear him say": [65535, 0], "order to hear him say ouch": [65535, 0], "to hear him say ouch and": [65535, 0], "hear him say ouch and got": [65535, 0], "him say ouch and got a": [65535, 0], "say ouch and got a new": [65535, 0], "ouch and got a new reprimand": [65535, 0], "and got a new reprimand from": [65535, 0], "got a new reprimand from his": [65535, 0], "a new reprimand from his teacher": [65535, 0], "new reprimand from his teacher tom's": [65535, 0], "reprimand from his teacher tom's whole": [65535, 0], "from his teacher tom's whole class": [65535, 0], "his teacher tom's whole class were": [65535, 0], "teacher tom's whole class were of": [65535, 0], "tom's whole class were of a": [65535, 0], "whole class were of a pattern": [65535, 0], "class were of a pattern restless": [65535, 0], "were of a pattern restless noisy": [65535, 0], "of a pattern restless noisy and": [65535, 0], "a pattern restless noisy and troublesome": [65535, 0], "pattern restless noisy and troublesome when": [65535, 0], "restless noisy and troublesome when they": [65535, 0], "noisy and troublesome when they came": [65535, 0], "and troublesome when they came to": [65535, 0], "troublesome when they came to recite": [65535, 0], "when they came to recite their": [65535, 0], "they came to recite their lessons": [65535, 0], "came to recite their lessons not": [65535, 0], "to recite their lessons not one": [65535, 0], "recite their lessons not one of": [65535, 0], "their lessons not one of them": [65535, 0], "lessons not one of them knew": [65535, 0], "not one of them knew his": [65535, 0], "one of them knew his verses": [65535, 0], "of them knew his verses perfectly": [65535, 0], "them knew his verses perfectly but": [65535, 0], "knew his verses perfectly but had": [65535, 0], "his verses perfectly but had to": [65535, 0], "verses perfectly but had to be": [65535, 0], "perfectly but had to be prompted": [65535, 0], "but had to be prompted all": [65535, 0], "had to be prompted all along": [65535, 0], "to be prompted all along however": [65535, 0], "be prompted all along however they": [65535, 0], "prompted all along however they worried": [65535, 0], "all along however they worried through": [65535, 0], "along however they worried through and": [65535, 0], "however they worried through and each": [65535, 0], "they worried through and each got": [65535, 0], "worried through and each got his": [65535, 0], "through and each got his reward": [65535, 0], "and each got his reward in": [65535, 0], "each got his reward in small": [65535, 0], "got his reward in small blue": [65535, 0], "his reward in small blue tickets": [65535, 0], "reward in small blue tickets each": [65535, 0], "in small blue tickets each with": [65535, 0], "small blue tickets each with a": [65535, 0], "blue tickets each with a passage": [65535, 0], "tickets each with a passage of": [65535, 0], "each with a passage of scripture": [65535, 0], "with a passage of scripture on": [65535, 0], "a passage of scripture on it": [65535, 0], "passage of scripture on it each": [65535, 0], "of scripture on it each blue": [65535, 0], "scripture on it each blue ticket": [65535, 0], "on it each blue ticket was": [65535, 0], "it each blue ticket was pay": [65535, 0], "each blue ticket was pay for": [65535, 0], "blue ticket was pay for two": [65535, 0], "ticket was pay for two verses": [65535, 0], "was pay for two verses of": [65535, 0], "pay for two verses of the": [65535, 0], "for two verses of the recitation": [65535, 0], "two verses of the recitation ten": [65535, 0], "verses of the recitation ten blue": [65535, 0], "of the recitation ten blue tickets": [65535, 0], "the recitation ten blue tickets equalled": [65535, 0], "recitation ten blue tickets equalled a": [65535, 0], "ten blue tickets equalled a red": [65535, 0], "blue tickets equalled a red one": [65535, 0], "tickets equalled a red one and": [65535, 0], "equalled a red one and could": [65535, 0], "a red one and could be": [65535, 0], "red one and could be exchanged": [65535, 0], "one and could be exchanged for": [65535, 0], "and could be exchanged for it": [65535, 0], "could be exchanged for it ten": [65535, 0], "be exchanged for it ten red": [65535, 0], "exchanged for it ten red tickets": [65535, 0], "for it ten red tickets equalled": [65535, 0], "it ten red tickets equalled a": [65535, 0], "ten red tickets equalled a yellow": [65535, 0], "red tickets equalled a yellow one": [65535, 0], "tickets equalled a yellow one for": [65535, 0], "equalled a yellow one for ten": [65535, 0], "a yellow one for ten yellow": [65535, 0], "yellow one for ten yellow tickets": [65535, 0], "one for ten yellow tickets the": [65535, 0], "for ten yellow tickets the superintendent": [65535, 0], "ten yellow tickets the superintendent gave": [65535, 0], "yellow tickets the superintendent gave a": [65535, 0], "tickets the superintendent gave a very": [65535, 0], "the superintendent gave a very plainly": [65535, 0], "superintendent gave a very plainly bound": [65535, 0], "gave a very plainly bound bible": [65535, 0], "a very plainly bound bible worth": [65535, 0], "very plainly bound bible worth forty": [65535, 0], "plainly bound bible worth forty cents": [65535, 0], "bound bible worth forty cents in": [65535, 0], "bible worth forty cents in those": [65535, 0], "worth forty cents in those easy": [65535, 0], "forty cents in those easy times": [65535, 0], "cents in those easy times to": [65535, 0], "in those easy times to the": [65535, 0], "those easy times to the pupil": [65535, 0], "easy times to the pupil how": [65535, 0], "times to the pupil how many": [65535, 0], "to the pupil how many of": [65535, 0], "the pupil how many of my": [65535, 0], "pupil how many of my readers": [65535, 0], "how many of my readers would": [65535, 0], "many of my readers would have": [65535, 0], "of my readers would have the": [65535, 0], "my readers would have the industry": [65535, 0], "readers would have the industry and": [65535, 0], "would have the industry and application": [65535, 0], "have the industry and application to": [65535, 0], "the industry and application to memorize": [65535, 0], "industry and application to memorize two": [65535, 0], "and application to memorize two thousand": [65535, 0], "application to memorize two thousand verses": [65535, 0], "to memorize two thousand verses even": [65535, 0], "memorize two thousand verses even for": [65535, 0], "two thousand verses even for a": [65535, 0], "thousand verses even for a dore": [65535, 0], "verses even for a dore bible": [65535, 0], "even for a dore bible and": [65535, 0], "for a dore bible and yet": [65535, 0], "a dore bible and yet mary": [65535, 0], "dore bible and yet mary had": [65535, 0], "bible and yet mary had acquired": [65535, 0], "and yet mary had acquired two": [65535, 0], "yet mary had acquired two bibles": [65535, 0], "mary had acquired two bibles in": [65535, 0], "had acquired two bibles in this": [65535, 0], "acquired two bibles in this way": [65535, 0], "two bibles in this way it": [65535, 0], "bibles in this way it was": [65535, 0], "in this way it was the": [65535, 0], "this way it was the patient": [65535, 0], "way it was the patient work": [65535, 0], "it was the patient work of": [65535, 0], "was the patient work of two": [65535, 0], "the patient work of two years": [65535, 0], "patient work of two years and": [65535, 0], "work of two years and a": [65535, 0], "of two years and a boy": [65535, 0], "two years and a boy of": [65535, 0], "years and a boy of german": [65535, 0], "and a boy of german parentage": [65535, 0], "a boy of german parentage had": [65535, 0], "boy of german parentage had won": [65535, 0], "of german parentage had won four": [65535, 0], "german parentage had won four or": [65535, 0], "parentage had won four or five": [65535, 0], "had won four or five he": [65535, 0], "won four or five he once": [65535, 0], "four or five he once recited": [65535, 0], "or five he once recited three": [65535, 0], "five he once recited three thousand": [65535, 0], "he once recited three thousand verses": [65535, 0], "once recited three thousand verses without": [65535, 0], "recited three thousand verses without stopping": [65535, 0], "three thousand verses without stopping but": [65535, 0], "thousand verses without stopping but the": [65535, 0], "verses without stopping but the strain": [65535, 0], "without stopping but the strain upon": [65535, 0], "stopping but the strain upon his": [65535, 0], "but the strain upon his mental": [65535, 0], "the strain upon his mental faculties": [65535, 0], "strain upon his mental faculties was": [65535, 0], "upon his mental faculties was too": [65535, 0], "his mental faculties was too great": [65535, 0], "mental faculties was too great and": [65535, 0], "faculties was too great and he": [65535, 0], "was too great and he was": [65535, 0], "too great and he was little": [65535, 0], "great and he was little better": [65535, 0], "and he was little better than": [65535, 0], "he was little better than an": [65535, 0], "was little better than an idiot": [65535, 0], "little better than an idiot from": [65535, 0], "better than an idiot from that": [65535, 0], "than an idiot from that day": [65535, 0], "an idiot from that day forth": [65535, 0], "idiot from that day forth a": [65535, 0], "from that day forth a grievous": [65535, 0], "that day forth a grievous misfortune": [65535, 0], "day forth a grievous misfortune for": [65535, 0], "forth a grievous misfortune for the": [65535, 0], "a grievous misfortune for the school": [65535, 0], "grievous misfortune for the school for": [65535, 0], "misfortune for the school for on": [65535, 0], "for the school for on great": [65535, 0], "the school for on great occasions": [65535, 0], "school for on great occasions before": [65535, 0], "for on great occasions before company": [65535, 0], "on great occasions before company the": [65535, 0], "great occasions before company the superintendent": [65535, 0], "occasions before company the superintendent as": [65535, 0], "before company the superintendent as tom": [65535, 0], "company the superintendent as tom expressed": [65535, 0], "the superintendent as tom expressed it": [65535, 0], "superintendent as tom expressed it had": [65535, 0], "as tom expressed it had always": [65535, 0], "tom expressed it had always made": [65535, 0], "expressed it had always made this": [65535, 0], "it had always made this boy": [65535, 0], "had always made this boy come": [65535, 0], "always made this boy come out": [65535, 0], "made this boy come out and": [65535, 0], "this boy come out and spread": [65535, 0], "boy come out and spread himself": [65535, 0], "come out and spread himself only": [65535, 0], "out and spread himself only the": [65535, 0], "and spread himself only the older": [65535, 0], "spread himself only the older pupils": [65535, 0], "himself only the older pupils managed": [65535, 0], "only the older pupils managed to": [65535, 0], "the older pupils managed to keep": [65535, 0], "older pupils managed to keep their": [65535, 0], "pupils managed to keep their tickets": [65535, 0], "managed to keep their tickets and": [65535, 0], "to keep their tickets and stick": [65535, 0], "keep their tickets and stick to": [65535, 0], "their tickets and stick to their": [65535, 0], "tickets and stick to their tedious": [65535, 0], "and stick to their tedious work": [65535, 0], "stick to their tedious work long": [65535, 0], "to their tedious work long enough": [65535, 0], "their tedious work long enough to": [65535, 0], "tedious work long enough to get": [65535, 0], "work long enough to get a": [65535, 0], "long enough to get a bible": [65535, 0], "enough to get a bible and": [65535, 0], "to get a bible and so": [65535, 0], "get a bible and so the": [65535, 0], "a bible and so the delivery": [65535, 0], "bible and so the delivery of": [65535, 0], "and so the delivery of one": [65535, 0], "so the delivery of one of": [65535, 0], "the delivery of one of these": [65535, 0], "delivery of one of these prizes": [65535, 0], "of one of these prizes was": [65535, 0], "one of these prizes was a": [65535, 0], "of these prizes was a rare": [65535, 0], "these prizes was a rare and": [65535, 0], "prizes was a rare and noteworthy": [65535, 0], "was a rare and noteworthy circumstance": [65535, 0], "a rare and noteworthy circumstance the": [65535, 0], "rare and noteworthy circumstance the successful": [65535, 0], "and noteworthy circumstance the successful pupil": [65535, 0], "noteworthy circumstance the successful pupil was": [65535, 0], "circumstance the successful pupil was so": [65535, 0], "the successful pupil was so great": [65535, 0], "successful pupil was so great and": [65535, 0], "pupil was so great and conspicuous": [65535, 0], "was so great and conspicuous for": [65535, 0], "so great and conspicuous for that": [65535, 0], "great and conspicuous for that day": [65535, 0], "and conspicuous for that day that": [65535, 0], "conspicuous for that day that on": [65535, 0], "for that day that on the": [65535, 0], "that day that on the spot": [65535, 0], "day that on the spot every": [65535, 0], "that on the spot every scholar's": [65535, 0], "on the spot every scholar's heart": [65535, 0], "the spot every scholar's heart was": [65535, 0], "spot every scholar's heart was fired": [65535, 0], "every scholar's heart was fired with": [65535, 0], "scholar's heart was fired with a": [65535, 0], "heart was fired with a fresh": [65535, 0], "was fired with a fresh ambition": [65535, 0], "fired with a fresh ambition that": [65535, 0], "with a fresh ambition that often": [65535, 0], "a fresh ambition that often lasted": [65535, 0], "fresh ambition that often lasted a": [65535, 0], "ambition that often lasted a couple": [65535, 0], "that often lasted a couple of": [65535, 0], "often lasted a couple of weeks": [65535, 0], "lasted a couple of weeks it": [65535, 0], "a couple of weeks it is": [65535, 0], "couple of weeks it is possible": [65535, 0], "of weeks it is possible that": [65535, 0], "weeks it is possible that tom's": [65535, 0], "it is possible that tom's mental": [65535, 0], "is possible that tom's mental stomach": [65535, 0], "possible that tom's mental stomach had": [65535, 0], "that tom's mental stomach had never": [65535, 0], "tom's mental stomach had never really": [65535, 0], "mental stomach had never really hungered": [65535, 0], "stomach had never really hungered for": [65535, 0], "had never really hungered for one": [65535, 0], "never really hungered for one of": [65535, 0], "really hungered for one of those": [65535, 0], "hungered for one of those prizes": [65535, 0], "for one of those prizes but": [65535, 0], "one of those prizes but unquestionably": [65535, 0], "of those prizes but unquestionably his": [65535, 0], "those prizes but unquestionably his entire": [65535, 0], "prizes but unquestionably his entire being": [65535, 0], "but unquestionably his entire being had": [65535, 0], "unquestionably his entire being had for": [65535, 0], "his entire being had for many": [65535, 0], "entire being had for many a": [65535, 0], "being had for many a day": [65535, 0], "had for many a day longed": [65535, 0], "for many a day longed for": [65535, 0], "many a day longed for the": [65535, 0], "a day longed for the glory": [65535, 0], "day longed for the glory and": [65535, 0], "longed for the glory and the": [65535, 0], "for the glory and the eclat": [65535, 0], "the glory and the eclat that": [65535, 0], "glory and the eclat that came": [65535, 0], "and the eclat that came with": [65535, 0], "the eclat that came with it": [65535, 0], "eclat that came with it in": [65535, 0], "that came with it in due": [65535, 0], "came with it in due course": [65535, 0], "with it in due course the": [65535, 0], "it in due course the superintendent": [65535, 0], "in due course the superintendent stood": [65535, 0], "due course the superintendent stood up": [65535, 0], "course the superintendent stood up in": [65535, 0], "the superintendent stood up in front": [65535, 0], "superintendent stood up in front of": [65535, 0], "stood up in front of the": [65535, 0], "up in front of the pulpit": [65535, 0], "in front of the pulpit with": [65535, 0], "front of the pulpit with a": [65535, 0], "of the pulpit with a closed": [65535, 0], "the pulpit with a closed hymn": [65535, 0], "pulpit with a closed hymn book": [65535, 0], "with a closed hymn book in": [65535, 0], "a closed hymn book in his": [65535, 0], "closed hymn book in his hand": [65535, 0], "hymn book in his hand and": [65535, 0], "book in his hand and his": [65535, 0], "in his hand and his forefinger": [65535, 0], "his hand and his forefinger inserted": [65535, 0], "hand and his forefinger inserted between": [65535, 0], "and his forefinger inserted between its": [65535, 0], "his forefinger inserted between its leaves": [65535, 0], "forefinger inserted between its leaves and": [65535, 0], "inserted between its leaves and commanded": [65535, 0], "between its leaves and commanded attention": [65535, 0], "its leaves and commanded attention when": [65535, 0], "leaves and commanded attention when a": [65535, 0], "and commanded attention when a sunday": [65535, 0], "commanded attention when a sunday school": [65535, 0], "attention when a sunday school superintendent": [65535, 0], "when a sunday school superintendent makes": [65535, 0], "a sunday school superintendent makes his": [65535, 0], "sunday school superintendent makes his customary": [65535, 0], "school superintendent makes his customary little": [65535, 0], "superintendent makes his customary little speech": [65535, 0], "makes his customary little speech a": [65535, 0], "his customary little speech a hymn": [65535, 0], "customary little speech a hymn book": [65535, 0], "little speech a hymn book in": [65535, 0], "speech a hymn book in the": [65535, 0], "a hymn book in the hand": [65535, 0], "hymn book in the hand is": [65535, 0], "book in the hand is as": [65535, 0], "in the hand is as necessary": [65535, 0], "the hand is as necessary as": [65535, 0], "hand is as necessary as is": [65535, 0], "is as necessary as is the": [65535, 0], "as necessary as is the inevitable": [65535, 0], "necessary as is the inevitable sheet": [65535, 0], "as is the inevitable sheet of": [65535, 0], "is the inevitable sheet of music": [65535, 0], "the inevitable sheet of music in": [65535, 0], "inevitable sheet of music in the": [65535, 0], "sheet of music in the hand": [65535, 0], "of music in the hand of": [65535, 0], "music in the hand of a": [65535, 0], "in the hand of a singer": [65535, 0], "the hand of a singer who": [65535, 0], "hand of a singer who stands": [65535, 0], "of a singer who stands forward": [65535, 0], "a singer who stands forward on": [65535, 0], "singer who stands forward on the": [65535, 0], "who stands forward on the platform": [65535, 0], "stands forward on the platform and": [65535, 0], "forward on the platform and sings": [65535, 0], "on the platform and sings a": [65535, 0], "the platform and sings a solo": [65535, 0], "platform and sings a solo at": [65535, 0], "and sings a solo at a": [65535, 0], "sings a solo at a concert": [65535, 0], "a solo at a concert though": [65535, 0], "solo at a concert though why": [65535, 0], "at a concert though why is": [65535, 0], "a concert though why is a": [65535, 0], "concert though why is a mystery": [65535, 0], "though why is a mystery for": [65535, 0], "why is a mystery for neither": [65535, 0], "is a mystery for neither the": [65535, 0], "a mystery for neither the hymn": [65535, 0], "mystery for neither the hymn book": [65535, 0], "for neither the hymn book nor": [65535, 0], "neither the hymn book nor the": [65535, 0], "the hymn book nor the sheet": [65535, 0], "hymn book nor the sheet of": [65535, 0], "book nor the sheet of music": [65535, 0], "nor the sheet of music is": [65535, 0], "the sheet of music is ever": [65535, 0], "sheet of music is ever referred": [65535, 0], "of music is ever referred to": [65535, 0], "music is ever referred to by": [65535, 0], "is ever referred to by the": [65535, 0], "ever referred to by the sufferer": [65535, 0], "referred to by the sufferer this": [65535, 0], "to by the sufferer this superintendent": [65535, 0], "by the sufferer this superintendent was": [65535, 0], "the sufferer this superintendent was a": [65535, 0], "sufferer this superintendent was a slim": [65535, 0], "this superintendent was a slim creature": [65535, 0], "superintendent was a slim creature of": [65535, 0], "was a slim creature of thirty": [65535, 0], "a slim creature of thirty five": [65535, 0], "slim creature of thirty five with": [65535, 0], "creature of thirty five with a": [65535, 0], "of thirty five with a sandy": [65535, 0], "thirty five with a sandy goatee": [65535, 0], "five with a sandy goatee and": [65535, 0], "with a sandy goatee and short": [65535, 0], "a sandy goatee and short sandy": [65535, 0], "sandy goatee and short sandy hair": [65535, 0], "goatee and short sandy hair he": [65535, 0], "and short sandy hair he wore": [65535, 0], "short sandy hair he wore a": [65535, 0], "sandy hair he wore a stiff": [65535, 0], "hair he wore a stiff standing": [65535, 0], "he wore a stiff standing collar": [65535, 0], "wore a stiff standing collar whose": [65535, 0], "a stiff standing collar whose upper": [65535, 0], "stiff standing collar whose upper edge": [65535, 0], "standing collar whose upper edge almost": [65535, 0], "collar whose upper edge almost reached": [65535, 0], "whose upper edge almost reached his": [65535, 0], "upper edge almost reached his ears": [65535, 0], "edge almost reached his ears and": [65535, 0], "almost reached his ears and whose": [65535, 0], "reached his ears and whose sharp": [65535, 0], "his ears and whose sharp points": [65535, 0], "ears and whose sharp points curved": [65535, 0], "and whose sharp points curved forward": [65535, 0], "whose sharp points curved forward abreast": [65535, 0], "sharp points curved forward abreast the": [65535, 0], "points curved forward abreast the corners": [65535, 0], "curved forward abreast the corners of": [65535, 0], "forward abreast the corners of his": [65535, 0], "abreast the corners of his mouth": [65535, 0], "the corners of his mouth a": [65535, 0], "corners of his mouth a fence": [65535, 0], "of his mouth a fence that": [65535, 0], "his mouth a fence that compelled": [65535, 0], "mouth a fence that compelled a": [65535, 0], "a fence that compelled a straight": [65535, 0], "fence that compelled a straight lookout": [65535, 0], "that compelled a straight lookout ahead": [65535, 0], "compelled a straight lookout ahead and": [65535, 0], "a straight lookout ahead and a": [65535, 0], "straight lookout ahead and a turning": [65535, 0], "lookout ahead and a turning of": [65535, 0], "ahead and a turning of the": [65535, 0], "and a turning of the whole": [65535, 0], "a turning of the whole body": [65535, 0], "turning of the whole body when": [65535, 0], "of the whole body when a": [65535, 0], "the whole body when a side": [65535, 0], "whole body when a side view": [65535, 0], "body when a side view was": [65535, 0], "when a side view was required": [65535, 0], "a side view was required his": [65535, 0], "side view was required his chin": [65535, 0], "view was required his chin was": [65535, 0], "was required his chin was propped": [65535, 0], "required his chin was propped on": [65535, 0], "his chin was propped on a": [65535, 0], "chin was propped on a spreading": [65535, 0], "was propped on a spreading cravat": [65535, 0], "propped on a spreading cravat which": [65535, 0], "on a spreading cravat which was": [65535, 0], "a spreading cravat which was as": [65535, 0], "spreading cravat which was as broad": [65535, 0], "cravat which was as broad and": [65535, 0], "which was as broad and as": [65535, 0], "was as broad and as long": [65535, 0], "as broad and as long as": [65535, 0], "broad and as long as a": [65535, 0], "and as long as a bank": [65535, 0], "as long as a bank note": [65535, 0], "long as a bank note and": [65535, 0], "as a bank note and had": [65535, 0], "a bank note and had fringed": [65535, 0], "bank note and had fringed ends": [65535, 0], "note and had fringed ends his": [65535, 0], "and had fringed ends his boot": [65535, 0], "had fringed ends his boot toes": [65535, 0], "fringed ends his boot toes were": [65535, 0], "ends his boot toes were turned": [65535, 0], "his boot toes were turned sharply": [65535, 0], "boot toes were turned sharply up": [65535, 0], "toes were turned sharply up in": [65535, 0], "were turned sharply up in the": [65535, 0], "turned sharply up in the fashion": [65535, 0], "sharply up in the fashion of": [65535, 0], "up in the fashion of the": [65535, 0], "in the fashion of the day": [65535, 0], "the fashion of the day like": [65535, 0], "fashion of the day like sleigh": [65535, 0], "of the day like sleigh runners": [65535, 0], "the day like sleigh runners an": [65535, 0], "day like sleigh runners an effect": [65535, 0], "like sleigh runners an effect patiently": [65535, 0], "sleigh runners an effect patiently and": [65535, 0], "runners an effect patiently and laboriously": [65535, 0], "an effect patiently and laboriously produced": [65535, 0], "effect patiently and laboriously produced by": [65535, 0], "patiently and laboriously produced by the": [65535, 0], "and laboriously produced by the young": [65535, 0], "laboriously produced by the young men": [65535, 0], "produced by the young men by": [65535, 0], "by the young men by sitting": [65535, 0], "the young men by sitting with": [65535, 0], "young men by sitting with their": [65535, 0], "men by sitting with their toes": [65535, 0], "by sitting with their toes pressed": [65535, 0], "sitting with their toes pressed against": [65535, 0], "with their toes pressed against a": [65535, 0], "their toes pressed against a wall": [65535, 0], "toes pressed against a wall for": [65535, 0], "pressed against a wall for hours": [65535, 0], "against a wall for hours together": [65535, 0], "a wall for hours together mr": [65535, 0], "wall for hours together mr walters": [65535, 0], "for hours together mr walters was": [65535, 0], "hours together mr walters was very": [65535, 0], "together mr walters was very earnest": [65535, 0], "mr walters was very earnest of": [65535, 0], "walters was very earnest of mien": [65535, 0], "was very earnest of mien and": [65535, 0], "very earnest of mien and very": [65535, 0], "earnest of mien and very sincere": [65535, 0], "of mien and very sincere and": [65535, 0], "mien and very sincere and honest": [65535, 0], "and very sincere and honest at": [65535, 0], "very sincere and honest at heart": [65535, 0], "sincere and honest at heart and": [65535, 0], "and honest at heart and he": [65535, 0], "honest at heart and he held": [65535, 0], "at heart and he held sacred": [65535, 0], "heart and he held sacred things": [65535, 0], "and he held sacred things and": [65535, 0], "he held sacred things and places": [65535, 0], "held sacred things and places in": [65535, 0], "sacred things and places in such": [65535, 0], "things and places in such reverence": [65535, 0], "and places in such reverence and": [65535, 0], "places in such reverence and so": [65535, 0], "in such reverence and so separated": [65535, 0], "such reverence and so separated them": [65535, 0], "reverence and so separated them from": [65535, 0], "and so separated them from worldly": [65535, 0], "so separated them from worldly matters": [65535, 0], "separated them from worldly matters that": [65535, 0], "them from worldly matters that unconsciously": [65535, 0], "from worldly matters that unconsciously to": [65535, 0], "worldly matters that unconsciously to himself": [65535, 0], "matters that unconsciously to himself his": [65535, 0], "that unconsciously to himself his sunday": [65535, 0], "unconsciously to himself his sunday school": [65535, 0], "to himself his sunday school voice": [65535, 0], "himself his sunday school voice had": [65535, 0], "his sunday school voice had acquired": [65535, 0], "sunday school voice had acquired a": [65535, 0], "school voice had acquired a peculiar": [65535, 0], "voice had acquired a peculiar intonation": [65535, 0], "had acquired a peculiar intonation which": [65535, 0], "acquired a peculiar intonation which was": [65535, 0], "a peculiar intonation which was wholly": [65535, 0], "peculiar intonation which was wholly absent": [65535, 0], "intonation which was wholly absent on": [65535, 0], "which was wholly absent on week": [65535, 0], "was wholly absent on week days": [65535, 0], "wholly absent on week days he": [65535, 0], "absent on week days he began": [65535, 0], "on week days he began after": [65535, 0], "week days he began after this": [65535, 0], "days he began after this fashion": [65535, 0], "he began after this fashion now": [65535, 0], "began after this fashion now children": [65535, 0], "after this fashion now children i": [65535, 0], "this fashion now children i want": [65535, 0], "fashion now children i want you": [65535, 0], "now children i want you all": [65535, 0], "children i want you all to": [65535, 0], "i want you all to sit": [65535, 0], "want you all to sit up": [65535, 0], "you all to sit up just": [65535, 0], "all to sit up just as": [65535, 0], "to sit up just as straight": [65535, 0], "sit up just as straight and": [65535, 0], "up just as straight and pretty": [65535, 0], "just as straight and pretty as": [65535, 0], "as straight and pretty as you": [65535, 0], "straight and pretty as you can": [65535, 0], "and pretty as you can and": [65535, 0], "pretty as you can and give": [65535, 0], "as you can and give me": [65535, 0], "you can and give me all": [65535, 0], "can and give me all your": [65535, 0], "and give me all your attention": [65535, 0], "give me all your attention for": [65535, 0], "me all your attention for a": [65535, 0], "all your attention for a minute": [65535, 0], "your attention for a minute or": [65535, 0], "attention for a minute or two": [65535, 0], "for a minute or two there": [65535, 0], "a minute or two there that": [65535, 0], "minute or two there that is": [65535, 0], "or two there that is it": [65535, 0], "two there that is it that": [65535, 0], "there that is it that is": [65535, 0], "that is it that is the": [65535, 0], "is it that is the way": [65535, 0], "it that is the way good": [65535, 0], "that is the way good little": [65535, 0], "is the way good little boys": [65535, 0], "the way good little boys and": [65535, 0], "way good little boys and girls": [65535, 0], "good little boys and girls should": [65535, 0], "little boys and girls should do": [65535, 0], "boys and girls should do i": [65535, 0], "and girls should do i see": [65535, 0], "girls should do i see one": [65535, 0], "should do i see one little": [65535, 0], "do i see one little girl": [65535, 0], "i see one little girl who": [65535, 0], "see one little girl who is": [65535, 0], "one little girl who is looking": [65535, 0], "little girl who is looking out": [65535, 0], "girl who is looking out of": [65535, 0], "who is looking out of the": [65535, 0], "is looking out of the window": [65535, 0], "looking out of the window i": [65535, 0], "out of the window i am": [65535, 0], "of the window i am afraid": [65535, 0], "the window i am afraid she": [65535, 0], "window i am afraid she thinks": [65535, 0], "i am afraid she thinks i": [65535, 0], "am afraid she thinks i am": [65535, 0], "afraid she thinks i am out": [65535, 0], "she thinks i am out there": [65535, 0], "thinks i am out there somewhere": [65535, 0], "i am out there somewhere perhaps": [65535, 0], "am out there somewhere perhaps up": [65535, 0], "out there somewhere perhaps up in": [65535, 0], "there somewhere perhaps up in one": [65535, 0], "somewhere perhaps up in one of": [65535, 0], "perhaps up in one of the": [65535, 0], "up in one of the trees": [65535, 0], "in one of the trees making": [65535, 0], "one of the trees making a": [65535, 0], "of the trees making a speech": [65535, 0], "the trees making a speech to": [65535, 0], "trees making a speech to the": [65535, 0], "making a speech to the little": [65535, 0], "a speech to the little birds": [65535, 0], "speech to the little birds applausive": [65535, 0], "to the little birds applausive titter": [65535, 0], "the little birds applausive titter i": [65535, 0], "little birds applausive titter i want": [65535, 0], "birds applausive titter i want to": [65535, 0], "applausive titter i want to tell": [65535, 0], "titter i want to tell you": [65535, 0], "i want to tell you how": [65535, 0], "want to tell you how good": [65535, 0], "to tell you how good it": [65535, 0], "tell you how good it makes": [65535, 0], "you how good it makes me": [65535, 0], "how good it makes me feel": [65535, 0], "good it makes me feel to": [65535, 0], "it makes me feel to see": [65535, 0], "makes me feel to see so": [65535, 0], "me feel to see so many": [65535, 0], "feel to see so many bright": [65535, 0], "to see so many bright clean": [65535, 0], "see so many bright clean little": [65535, 0], "so many bright clean little faces": [65535, 0], "many bright clean little faces assembled": [65535, 0], "bright clean little faces assembled in": [65535, 0], "clean little faces assembled in a": [65535, 0], "little faces assembled in a place": [65535, 0], "faces assembled in a place like": [65535, 0], "assembled in a place like this": [65535, 0], "in a place like this learning": [65535, 0], "a place like this learning to": [65535, 0], "place like this learning to do": [65535, 0], "like this learning to do right": [65535, 0], "this learning to do right and": [65535, 0], "learning to do right and be": [65535, 0], "to do right and be good": [65535, 0], "do right and be good and": [65535, 0], "right and be good and so": [65535, 0], "and be good and so forth": [65535, 0], "be good and so forth and": [65535, 0], "good and so forth and so": [65535, 0], "and so forth and so on": [65535, 0], "so forth and so on it": [65535, 0], "forth and so on it is": [65535, 0], "and so on it is not": [65535, 0], "so on it is not necessary": [65535, 0], "on it is not necessary to": [65535, 0], "it is not necessary to set": [65535, 0], "is not necessary to set down": [65535, 0], "not necessary to set down the": [65535, 0], "necessary to set down the rest": [65535, 0], "to set down the rest of": [65535, 0], "set down the rest of the": [65535, 0], "down the rest of the oration": [65535, 0], "the rest of the oration it": [65535, 0], "rest of the oration it was": [65535, 0], "of the oration it was of": [65535, 0], "the oration it was of a": [65535, 0], "oration it was of a pattern": [65535, 0], "it was of a pattern which": [65535, 0], "was of a pattern which does": [65535, 0], "of a pattern which does not": [65535, 0], "a pattern which does not vary": [65535, 0], "pattern which does not vary and": [65535, 0], "which does not vary and so": [65535, 0], "does not vary and so it": [65535, 0], "not vary and so it is": [65535, 0], "vary and so it is familiar": [65535, 0], "and so it is familiar to": [65535, 0], "so it is familiar to us": [65535, 0], "it is familiar to us all": [65535, 0], "is familiar to us all the": [65535, 0], "familiar to us all the latter": [65535, 0], "to us all the latter third": [65535, 0], "us all the latter third of": [65535, 0], "all the latter third of the": [65535, 0], "the latter third of the speech": [65535, 0], "latter third of the speech was": [65535, 0], "third of the speech was marred": [65535, 0], "of the speech was marred by": [65535, 0], "the speech was marred by the": [65535, 0], "speech was marred by the resumption": [65535, 0], "was marred by the resumption of": [65535, 0], "marred by the resumption of fights": [65535, 0], "by the resumption of fights and": [65535, 0], "the resumption of fights and other": [65535, 0], "resumption of fights and other recreations": [65535, 0], "of fights and other recreations among": [65535, 0], "fights and other recreations among certain": [65535, 0], "and other recreations among certain of": [65535, 0], "other recreations among certain of the": [65535, 0], "recreations among certain of the bad": [65535, 0], "among certain of the bad boys": [65535, 0], "certain of the bad boys and": [65535, 0], "of the bad boys and by": [65535, 0], "the bad boys and by fidgetings": [65535, 0], "bad boys and by fidgetings and": [65535, 0], "boys and by fidgetings and whisperings": [65535, 0], "and by fidgetings and whisperings that": [65535, 0], "by fidgetings and whisperings that extended": [65535, 0], "fidgetings and whisperings that extended far": [65535, 0], "and whisperings that extended far and": [65535, 0], "whisperings that extended far and wide": [65535, 0], "that extended far and wide washing": [65535, 0], "extended far and wide washing even": [65535, 0], "far and wide washing even to": [65535, 0], "and wide washing even to the": [65535, 0], "wide washing even to the bases": [65535, 0], "washing even to the bases of": [65535, 0], "even to the bases of isolated": [65535, 0], "to the bases of isolated and": [65535, 0], "the bases of isolated and incorruptible": [65535, 0], "bases of isolated and incorruptible rocks": [65535, 0], "of isolated and incorruptible rocks like": [65535, 0], "isolated and incorruptible rocks like sid": [65535, 0], "and incorruptible rocks like sid and": [65535, 0], "incorruptible rocks like sid and mary": [65535, 0], "rocks like sid and mary but": [65535, 0], "like sid and mary but now": [65535, 0], "sid and mary but now every": [65535, 0], "and mary but now every sound": [65535, 0], "mary but now every sound ceased": [65535, 0], "but now every sound ceased suddenly": [65535, 0], "now every sound ceased suddenly with": [65535, 0], "every sound ceased suddenly with the": [65535, 0], "sound ceased suddenly with the subsidence": [65535, 0], "ceased suddenly with the subsidence of": [65535, 0], "suddenly with the subsidence of mr": [65535, 0], "with the subsidence of mr walters'": [65535, 0], "the subsidence of mr walters' voice": [65535, 0], "subsidence of mr walters' voice and": [65535, 0], "of mr walters' voice and the": [65535, 0], "mr walters' voice and the conclusion": [65535, 0], "walters' voice and the conclusion of": [65535, 0], "voice and the conclusion of the": [65535, 0], "and the conclusion of the speech": [65535, 0], "the conclusion of the speech was": [65535, 0], "conclusion of the speech was received": [65535, 0], "of the speech was received with": [65535, 0], "the speech was received with a": [65535, 0], "speech was received with a burst": [65535, 0], "was received with a burst of": [65535, 0], "received with a burst of silent": [65535, 0], "with a burst of silent gratitude": [65535, 0], "a burst of silent gratitude a": [65535, 0], "burst of silent gratitude a good": [65535, 0], "of silent gratitude a good part": [65535, 0], "silent gratitude a good part of": [65535, 0], "gratitude a good part of the": [65535, 0], "a good part of the whispering": [65535, 0], "good part of the whispering had": [65535, 0], "part of the whispering had been": [65535, 0], "of the whispering had been occasioned": [65535, 0], "the whispering had been occasioned by": [65535, 0], "whispering had been occasioned by an": [65535, 0], "had been occasioned by an event": [65535, 0], "been occasioned by an event which": [65535, 0], "occasioned by an event which was": [65535, 0], "by an event which was more": [65535, 0], "an event which was more or": [65535, 0], "event which was more or less": [65535, 0], "which was more or less rare": [65535, 0], "was more or less rare the": [65535, 0], "more or less rare the entrance": [65535, 0], "or less rare the entrance of": [65535, 0], "less rare the entrance of visitors": [65535, 0], "rare the entrance of visitors lawyer": [65535, 0], "the entrance of visitors lawyer thatcher": [65535, 0], "entrance of visitors lawyer thatcher accompanied": [65535, 0], "of visitors lawyer thatcher accompanied by": [65535, 0], "visitors lawyer thatcher accompanied by a": [65535, 0], "lawyer thatcher accompanied by a very": [65535, 0], "thatcher accompanied by a very feeble": [65535, 0], "accompanied by a very feeble and": [65535, 0], "by a very feeble and aged": [65535, 0], "a very feeble and aged man": [65535, 0], "very feeble and aged man a": [65535, 0], "feeble and aged man a fine": [65535, 0], "and aged man a fine portly": [65535, 0], "aged man a fine portly middle": [65535, 0], "man a fine portly middle aged": [65535, 0], "a fine portly middle aged gentleman": [65535, 0], "fine portly middle aged gentleman with": [65535, 0], "portly middle aged gentleman with iron": [65535, 0], "middle aged gentleman with iron gray": [65535, 0], "aged gentleman with iron gray hair": [65535, 0], "gentleman with iron gray hair and": [65535, 0], "with iron gray hair and a": [65535, 0], "iron gray hair and a dignified": [65535, 0], "gray hair and a dignified lady": [65535, 0], "hair and a dignified lady who": [65535, 0], "and a dignified lady who was": [65535, 0], "a dignified lady who was doubtless": [65535, 0], "dignified lady who was doubtless the": [65535, 0], "lady who was doubtless the latter's": [65535, 0], "who was doubtless the latter's wife": [65535, 0], "was doubtless the latter's wife the": [65535, 0], "doubtless the latter's wife the lady": [65535, 0], "the latter's wife the lady was": [65535, 0], "latter's wife the lady was leading": [65535, 0], "wife the lady was leading a": [65535, 0], "the lady was leading a child": [65535, 0], "lady was leading a child tom": [65535, 0], "was leading a child tom had": [65535, 0], "leading a child tom had been": [65535, 0], "a child tom had been restless": [65535, 0], "child tom had been restless and": [65535, 0], "tom had been restless and full": [65535, 0], "had been restless and full of": [65535, 0], "been restless and full of chafings": [65535, 0], "restless and full of chafings and": [65535, 0], "and full of chafings and repinings": [65535, 0], "full of chafings and repinings conscience": [65535, 0], "of chafings and repinings conscience smitten": [65535, 0], "chafings and repinings conscience smitten too": [65535, 0], "and repinings conscience smitten too he": [65535, 0], "repinings conscience smitten too he could": [65535, 0], "conscience smitten too he could not": [65535, 0], "smitten too he could not meet": [65535, 0], "too he could not meet amy": [65535, 0], "he could not meet amy lawrence's": [65535, 0], "could not meet amy lawrence's eye": [65535, 0], "not meet amy lawrence's eye he": [65535, 0], "meet amy lawrence's eye he could": [65535, 0], "amy lawrence's eye he could not": [65535, 0], "lawrence's eye he could not brook": [65535, 0], "eye he could not brook her": [65535, 0], "he could not brook her loving": [65535, 0], "could not brook her loving gaze": [65535, 0], "not brook her loving gaze but": [65535, 0], "brook her loving gaze but when": [65535, 0], "her loving gaze but when he": [65535, 0], "loving gaze but when he saw": [65535, 0], "gaze but when he saw this": [65535, 0], "but when he saw this small": [65535, 0], "when he saw this small new": [65535, 0], "he saw this small new comer": [65535, 0], "saw this small new comer his": [65535, 0], "this small new comer his soul": [65535, 0], "small new comer his soul was": [65535, 0], "new comer his soul was all": [65535, 0], "comer his soul was all ablaze": [65535, 0], "his soul was all ablaze with": [65535, 0], "soul was all ablaze with bliss": [65535, 0], "was all ablaze with bliss in": [65535, 0], "all ablaze with bliss in a": [65535, 0], "ablaze with bliss in a moment": [65535, 0], "with bliss in a moment the": [65535, 0], "bliss in a moment the next": [65535, 0], "in a moment the next moment": [65535, 0], "a moment the next moment he": [65535, 0], "moment the next moment he was": [65535, 0], "the next moment he was showing": [65535, 0], "next moment he was showing off": [65535, 0], "moment he was showing off with": [65535, 0], "he was showing off with all": [65535, 0], "was showing off with all his": [65535, 0], "showing off with all his might": [65535, 0], "off with all his might cuffing": [65535, 0], "with all his might cuffing boys": [65535, 0], "all his might cuffing boys pulling": [65535, 0], "his might cuffing boys pulling hair": [65535, 0], "might cuffing boys pulling hair making": [65535, 0], "cuffing boys pulling hair making faces": [65535, 0], "boys pulling hair making faces in": [65535, 0], "pulling hair making faces in a": [65535, 0], "hair making faces in a word": [65535, 0], "making faces in a word using": [65535, 0], "faces in a word using every": [65535, 0], "in a word using every art": [65535, 0], "a word using every art that": [65535, 0], "word using every art that seemed": [65535, 0], "using every art that seemed likely": [65535, 0], "every art that seemed likely to": [65535, 0], "art that seemed likely to fascinate": [65535, 0], "that seemed likely to fascinate a": [65535, 0], "seemed likely to fascinate a girl": [65535, 0], "likely to fascinate a girl and": [65535, 0], "to fascinate a girl and win": [65535, 0], "fascinate a girl and win her": [65535, 0], "a girl and win her applause": [65535, 0], "girl and win her applause his": [65535, 0], "and win her applause his exaltation": [65535, 0], "win her applause his exaltation had": [65535, 0], "her applause his exaltation had but": [65535, 0], "applause his exaltation had but one": [65535, 0], "his exaltation had but one alloy": [65535, 0], "exaltation had but one alloy the": [65535, 0], "had but one alloy the memory": [65535, 0], "but one alloy the memory of": [65535, 0], "one alloy the memory of his": [65535, 0], "alloy the memory of his humiliation": [65535, 0], "the memory of his humiliation in": [65535, 0], "memory of his humiliation in this": [65535, 0], "of his humiliation in this angel's": [65535, 0], "his humiliation in this angel's garden": [65535, 0], "humiliation in this angel's garden and": [65535, 0], "in this angel's garden and that": [65535, 0], "this angel's garden and that record": [65535, 0], "angel's garden and that record in": [65535, 0], "garden and that record in sand": [65535, 0], "and that record in sand was": [65535, 0], "that record in sand was fast": [65535, 0], "record in sand was fast washing": [65535, 0], "in sand was fast washing out": [65535, 0], "sand was fast washing out under": [65535, 0], "was fast washing out under the": [65535, 0], "fast washing out under the waves": [65535, 0], "washing out under the waves of": [65535, 0], "out under the waves of happiness": [65535, 0], "under the waves of happiness that": [65535, 0], "the waves of happiness that were": [65535, 0], "waves of happiness that were sweeping": [65535, 0], "of happiness that were sweeping over": [65535, 0], "happiness that were sweeping over it": [65535, 0], "that were sweeping over it now": [65535, 0], "were sweeping over it now the": [65535, 0], "sweeping over it now the visitors": [65535, 0], "over it now the visitors were": [65535, 0], "it now the visitors were given": [65535, 0], "now the visitors were given the": [65535, 0], "the visitors were given the highest": [65535, 0], "visitors were given the highest seat": [65535, 0], "were given the highest seat of": [65535, 0], "given the highest seat of honor": [65535, 0], "the highest seat of honor and": [65535, 0], "highest seat of honor and as": [65535, 0], "seat of honor and as soon": [65535, 0], "of honor and as soon as": [65535, 0], "honor and as soon as mr": [65535, 0], "and as soon as mr walters'": [65535, 0], "as soon as mr walters' speech": [65535, 0], "soon as mr walters' speech was": [65535, 0], "as mr walters' speech was finished": [65535, 0], "mr walters' speech was finished he": [65535, 0], "walters' speech was finished he introduced": [65535, 0], "speech was finished he introduced them": [65535, 0], "was finished he introduced them to": [65535, 0], "finished he introduced them to the": [65535, 0], "he introduced them to the school": [65535, 0], "introduced them to the school the": [65535, 0], "them to the school the middle": [65535, 0], "to the school the middle aged": [65535, 0], "the school the middle aged man": [65535, 0], "school the middle aged man turned": [65535, 0], "the middle aged man turned out": [65535, 0], "middle aged man turned out to": [65535, 0], "aged man turned out to be": [65535, 0], "man turned out to be a": [65535, 0], "turned out to be a prodigious": [65535, 0], "out to be a prodigious personage": [65535, 0], "to be a prodigious personage no": [65535, 0], "be a prodigious personage no less": [65535, 0], "a prodigious personage no less a": [65535, 0], "prodigious personage no less a one": [65535, 0], "personage no less a one than": [65535, 0], "no less a one than the": [65535, 0], "less a one than the county": [65535, 0], "a one than the county judge": [65535, 0], "one than the county judge altogether": [65535, 0], "than the county judge altogether the": [65535, 0], "the county judge altogether the most": [65535, 0], "county judge altogether the most august": [65535, 0], "judge altogether the most august creation": [65535, 0], "altogether the most august creation these": [65535, 0], "the most august creation these children": [65535, 0], "most august creation these children had": [65535, 0], "august creation these children had ever": [65535, 0], "creation these children had ever looked": [65535, 0], "these children had ever looked upon": [65535, 0], "children had ever looked upon and": [65535, 0], "had ever looked upon and they": [65535, 0], "ever looked upon and they wondered": [65535, 0], "looked upon and they wondered what": [65535, 0], "upon and they wondered what kind": [65535, 0], "and they wondered what kind of": [65535, 0], "they wondered what kind of material": [65535, 0], "wondered what kind of material he": [65535, 0], "what kind of material he was": [65535, 0], "kind of material he was made": [65535, 0], "of material he was made of": [65535, 0], "material he was made of and": [65535, 0], "he was made of and they": [65535, 0], "was made of and they half": [65535, 0], "made of and they half wanted": [65535, 0], "of and they half wanted to": [65535, 0], "and they half wanted to hear": [65535, 0], "they half wanted to hear him": [65535, 0], "half wanted to hear him roar": [65535, 0], "wanted to hear him roar and": [65535, 0], "to hear him roar and were": [65535, 0], "hear him roar and were half": [65535, 0], "him roar and were half afraid": [65535, 0], "roar and were half afraid he": [65535, 0], "and were half afraid he might": [65535, 0], "were half afraid he might too": [65535, 0], "half afraid he might too he": [65535, 0], "afraid he might too he was": [65535, 0], "he might too he was from": [65535, 0], "might too he was from constantinople": [65535, 0], "too he was from constantinople twelve": [65535, 0], "he was from constantinople twelve miles": [65535, 0], "was from constantinople twelve miles away": [65535, 0], "from constantinople twelve miles away so": [65535, 0], "constantinople twelve miles away so he": [65535, 0], "twelve miles away so he had": [65535, 0], "miles away so he had travelled": [65535, 0], "away so he had travelled and": [65535, 0], "so he had travelled and seen": [65535, 0], "he had travelled and seen the": [65535, 0], "had travelled and seen the world": [65535, 0], "travelled and seen the world these": [65535, 0], "and seen the world these very": [65535, 0], "seen the world these very eyes": [65535, 0], "the world these very eyes had": [65535, 0], "world these very eyes had looked": [65535, 0], "these very eyes had looked upon": [65535, 0], "very eyes had looked upon the": [65535, 0], "eyes had looked upon the county": [65535, 0], "had looked upon the county court": [65535, 0], "looked upon the county court house": [65535, 0], "upon the county court house which": [65535, 0], "the county court house which was": [65535, 0], "county court house which was said": [65535, 0], "court house which was said to": [65535, 0], "house which was said to have": [65535, 0], "which was said to have a": [65535, 0], "was said to have a tin": [65535, 0], "said to have a tin roof": [65535, 0], "to have a tin roof the": [65535, 0], "have a tin roof the awe": [65535, 0], "a tin roof the awe which": [65535, 0], "tin roof the awe which these": [65535, 0], "roof the awe which these reflections": [65535, 0], "the awe which these reflections inspired": [65535, 0], "awe which these reflections inspired was": [65535, 0], "which these reflections inspired was attested": [65535, 0], "these reflections inspired was attested by": [65535, 0], "reflections inspired was attested by the": [65535, 0], "inspired was attested by the impressive": [65535, 0], "was attested by the impressive silence": [65535, 0], "attested by the impressive silence and": [65535, 0], "by the impressive silence and the": [65535, 0], "the impressive silence and the ranks": [65535, 0], "impressive silence and the ranks of": [65535, 0], "silence and the ranks of staring": [65535, 0], "and the ranks of staring eyes": [65535, 0], "the ranks of staring eyes this": [65535, 0], "ranks of staring eyes this was": [65535, 0], "of staring eyes this was the": [65535, 0], "staring eyes this was the great": [65535, 0], "eyes this was the great judge": [65535, 0], "this was the great judge thatcher": [65535, 0], "was the great judge thatcher brother": [65535, 0], "the great judge thatcher brother of": [65535, 0], "great judge thatcher brother of their": [65535, 0], "judge thatcher brother of their own": [65535, 0], "thatcher brother of their own lawyer": [65535, 0], "brother of their own lawyer jeff": [65535, 0], "of their own lawyer jeff thatcher": [65535, 0], "their own lawyer jeff thatcher immediately": [65535, 0], "own lawyer jeff thatcher immediately went": [65535, 0], "lawyer jeff thatcher immediately went forward": [65535, 0], "jeff thatcher immediately went forward to": [65535, 0], "thatcher immediately went forward to be": [65535, 0], "immediately went forward to be familiar": [65535, 0], "went forward to be familiar with": [65535, 0], "forward to be familiar with the": [65535, 0], "to be familiar with the great": [65535, 0], "be familiar with the great man": [65535, 0], "familiar with the great man and": [65535, 0], "with the great man and be": [65535, 0], "the great man and be envied": [65535, 0], "great man and be envied by": [65535, 0], "man and be envied by the": [65535, 0], "and be envied by the school": [65535, 0], "be envied by the school it": [65535, 0], "envied by the school it would": [65535, 0], "by the school it would have": [65535, 0], "the school it would have been": [65535, 0], "school it would have been music": [65535, 0], "it would have been music to": [65535, 0], "would have been music to his": [65535, 0], "have been music to his soul": [65535, 0], "been music to his soul to": [65535, 0], "music to his soul to hear": [65535, 0], "to his soul to hear the": [65535, 0], "his soul to hear the whisperings": [65535, 0], "soul to hear the whisperings look": [65535, 0], "to hear the whisperings look at": [65535, 0], "hear the whisperings look at him": [65535, 0], "the whisperings look at him jim": [65535, 0], "whisperings look at him jim he's": [65535, 0], "look at him jim he's a": [65535, 0], "at him jim he's a going": [65535, 0], "him jim he's a going up": [65535, 0], "jim he's a going up there": [65535, 0], "he's a going up there say": [65535, 0], "a going up there say look": [65535, 0], "going up there say look he's": [65535, 0], "up there say look he's a": [65535, 0], "there say look he's a going": [65535, 0], "say look he's a going to": [65535, 0], "look he's a going to shake": [65535, 0], "he's a going to shake hands": [65535, 0], "a going to shake hands with": [65535, 0], "going to shake hands with him": [65535, 0], "to shake hands with him he": [65535, 0], "shake hands with him he is": [65535, 0], "hands with him he is shaking": [65535, 0], "with him he is shaking hands": [65535, 0], "him he is shaking hands with": [65535, 0], "he is shaking hands with him": [65535, 0], "is shaking hands with him by": [65535, 0], "shaking hands with him by jings": [65535, 0], "hands with him by jings don't": [65535, 0], "with him by jings don't you": [65535, 0], "him by jings don't you wish": [65535, 0], "by jings don't you wish you": [65535, 0], "jings don't you wish you was": [65535, 0], "don't you wish you was jeff": [65535, 0], "you wish you was jeff mr": [65535, 0], "wish you was jeff mr walters": [65535, 0], "you was jeff mr walters fell": [65535, 0], "was jeff mr walters fell to": [65535, 0], "jeff mr walters fell to showing": [65535, 0], "mr walters fell to showing off": [65535, 0], "walters fell to showing off with": [65535, 0], "fell to showing off with all": [65535, 0], "to showing off with all sorts": [65535, 0], "showing off with all sorts of": [65535, 0], "off with all sorts of official": [65535, 0], "with all sorts of official bustlings": [65535, 0], "all sorts of official bustlings and": [65535, 0], "sorts of official bustlings and activities": [65535, 0], "of official bustlings and activities giving": [65535, 0], "official bustlings and activities giving orders": [65535, 0], "bustlings and activities giving orders delivering": [65535, 0], "and activities giving orders delivering judgments": [65535, 0], "activities giving orders delivering judgments discharging": [65535, 0], "giving orders delivering judgments discharging directions": [65535, 0], "orders delivering judgments discharging directions here": [65535, 0], "delivering judgments discharging directions here there": [65535, 0], "judgments discharging directions here there everywhere": [65535, 0], "discharging directions here there everywhere that": [65535, 0], "directions here there everywhere that he": [65535, 0], "here there everywhere that he could": [65535, 0], "there everywhere that he could find": [65535, 0], "everywhere that he could find a": [65535, 0], "that he could find a target": [65535, 0], "he could find a target the": [65535, 0], "could find a target the librarian": [65535, 0], "find a target the librarian showed": [65535, 0], "a target the librarian showed off": [65535, 0], "target the librarian showed off running": [65535, 0], "the librarian showed off running hither": [65535, 0], "librarian showed off running hither and": [65535, 0], "showed off running hither and thither": [65535, 0], "off running hither and thither with": [65535, 0], "running hither and thither with his": [65535, 0], "hither and thither with his arms": [65535, 0], "and thither with his arms full": [65535, 0], "thither with his arms full of": [65535, 0], "with his arms full of books": [65535, 0], "his arms full of books and": [65535, 0], "arms full of books and making": [65535, 0], "full of books and making a": [65535, 0], "of books and making a deal": [65535, 0], "books and making a deal of": [65535, 0], "and making a deal of the": [65535, 0], "making a deal of the splutter": [65535, 0], "a deal of the splutter and": [65535, 0], "deal of the splutter and fuss": [65535, 0], "of the splutter and fuss that": [65535, 0], "the splutter and fuss that insect": [65535, 0], "splutter and fuss that insect authority": [65535, 0], "and fuss that insect authority delights": [65535, 0], "fuss that insect authority delights in": [65535, 0], "that insect authority delights in the": [65535, 0], "insect authority delights in the young": [65535, 0], "authority delights in the young lady": [65535, 0], "delights in the young lady teachers": [65535, 0], "in the young lady teachers showed": [65535, 0], "the young lady teachers showed off": [65535, 0], "young lady teachers showed off bending": [65535, 0], "lady teachers showed off bending sweetly": [65535, 0], "teachers showed off bending sweetly over": [65535, 0], "showed off bending sweetly over pupils": [65535, 0], "off bending sweetly over pupils that": [65535, 0], "bending sweetly over pupils that were": [65535, 0], "sweetly over pupils that were lately": [65535, 0], "over pupils that were lately being": [65535, 0], "pupils that were lately being boxed": [65535, 0], "that were lately being boxed lifting": [65535, 0], "were lately being boxed lifting pretty": [65535, 0], "lately being boxed lifting pretty warning": [65535, 0], "being boxed lifting pretty warning fingers": [65535, 0], "boxed lifting pretty warning fingers at": [65535, 0], "lifting pretty warning fingers at bad": [65535, 0], "pretty warning fingers at bad little": [65535, 0], "warning fingers at bad little boys": [65535, 0], "fingers at bad little boys and": [65535, 0], "at bad little boys and patting": [65535, 0], "bad little boys and patting good": [65535, 0], "little boys and patting good ones": [65535, 0], "boys and patting good ones lovingly": [65535, 0], "and patting good ones lovingly the": [65535, 0], "patting good ones lovingly the young": [65535, 0], "good ones lovingly the young gentlemen": [65535, 0], "ones lovingly the young gentlemen teachers": [65535, 0], "lovingly the young gentlemen teachers showed": [65535, 0], "the young gentlemen teachers showed off": [65535, 0], "young gentlemen teachers showed off with": [65535, 0], "gentlemen teachers showed off with small": [65535, 0], "teachers showed off with small scoldings": [65535, 0], "showed off with small scoldings and": [65535, 0], "off with small scoldings and other": [65535, 0], "with small scoldings and other little": [65535, 0], "small scoldings and other little displays": [65535, 0], "scoldings and other little displays of": [65535, 0], "and other little displays of authority": [65535, 0], "other little displays of authority and": [65535, 0], "little displays of authority and fine": [65535, 0], "displays of authority and fine attention": [65535, 0], "of authority and fine attention to": [65535, 0], "authority and fine attention to discipline": [65535, 0], "and fine attention to discipline and": [65535, 0], "fine attention to discipline and most": [65535, 0], "attention to discipline and most of": [65535, 0], "to discipline and most of the": [65535, 0], "discipline and most of the teachers": [65535, 0], "and most of the teachers of": [65535, 0], "most of the teachers of both": [65535, 0], "of the teachers of both sexes": [65535, 0], "the teachers of both sexes found": [65535, 0], "teachers of both sexes found business": [65535, 0], "of both sexes found business up": [65535, 0], "both sexes found business up at": [65535, 0], "sexes found business up at the": [65535, 0], "found business up at the library": [65535, 0], "business up at the library by": [65535, 0], "up at the library by the": [65535, 0], "at the library by the pulpit": [65535, 0], "the library by the pulpit and": [65535, 0], "library by the pulpit and it": [65535, 0], "by the pulpit and it was": [65535, 0], "the pulpit and it was business": [65535, 0], "pulpit and it was business that": [65535, 0], "and it was business that frequently": [65535, 0], "it was business that frequently had": [65535, 0], "was business that frequently had to": [65535, 0], "business that frequently had to be": [65535, 0], "that frequently had to be done": [65535, 0], "frequently had to be done over": [65535, 0], "had to be done over again": [65535, 0], "to be done over again two": [65535, 0], "be done over again two or": [65535, 0], "done over again two or three": [65535, 0], "over again two or three times": [65535, 0], "again two or three times with": [65535, 0], "two or three times with much": [65535, 0], "or three times with much seeming": [65535, 0], "three times with much seeming vexation": [65535, 0], "times with much seeming vexation the": [65535, 0], "with much seeming vexation the little": [65535, 0], "much seeming vexation the little girls": [65535, 0], "seeming vexation the little girls showed": [65535, 0], "vexation the little girls showed off": [65535, 0], "the little girls showed off in": [65535, 0], "little girls showed off in various": [65535, 0], "girls showed off in various ways": [65535, 0], "showed off in various ways and": [65535, 0], "off in various ways and the": [65535, 0], "in various ways and the little": [65535, 0], "various ways and the little boys": [65535, 0], "ways and the little boys showed": [65535, 0], "and the little boys showed off": [65535, 0], "the little boys showed off with": [65535, 0], "little boys showed off with such": [65535, 0], "boys showed off with such diligence": [65535, 0], "showed off with such diligence that": [65535, 0], "off with such diligence that the": [65535, 0], "with such diligence that the air": [65535, 0], "such diligence that the air was": [65535, 0], "diligence that the air was thick": [65535, 0], "that the air was thick with": [65535, 0], "the air was thick with paper": [65535, 0], "air was thick with paper wads": [65535, 0], "was thick with paper wads and": [65535, 0], "thick with paper wads and the": [65535, 0], "with paper wads and the murmur": [65535, 0], "paper wads and the murmur of": [65535, 0], "wads and the murmur of scufflings": [65535, 0], "and the murmur of scufflings and": [65535, 0], "the murmur of scufflings and above": [65535, 0], "murmur of scufflings and above it": [65535, 0], "of scufflings and above it all": [65535, 0], "scufflings and above it all the": [65535, 0], "and above it all the great": [65535, 0], "above it all the great man": [65535, 0], "it all the great man sat": [65535, 0], "all the great man sat and": [65535, 0], "the great man sat and beamed": [65535, 0], "great man sat and beamed a": [65535, 0], "man sat and beamed a majestic": [65535, 0], "sat and beamed a majestic judicial": [65535, 0], "and beamed a majestic judicial smile": [65535, 0], "beamed a majestic judicial smile upon": [65535, 0], "a majestic judicial smile upon all": [65535, 0], "majestic judicial smile upon all the": [65535, 0], "judicial smile upon all the house": [65535, 0], "smile upon all the house and": [65535, 0], "upon all the house and warmed": [65535, 0], "all the house and warmed himself": [65535, 0], "the house and warmed himself in": [65535, 0], "house and warmed himself in the": [65535, 0], "and warmed himself in the sun": [65535, 0], "warmed himself in the sun of": [65535, 0], "himself in the sun of his": [65535, 0], "in the sun of his own": [65535, 0], "the sun of his own grandeur": [65535, 0], "sun of his own grandeur for": [65535, 0], "of his own grandeur for he": [65535, 0], "his own grandeur for he was": [65535, 0], "own grandeur for he was showing": [65535, 0], "grandeur for he was showing off": [65535, 0], "for he was showing off too": [65535, 0], "he was showing off too there": [65535, 0], "was showing off too there was": [65535, 0], "showing off too there was only": [65535, 0], "off too there was only one": [65535, 0], "too there was only one thing": [65535, 0], "there was only one thing wanting": [65535, 0], "was only one thing wanting to": [65535, 0], "only one thing wanting to make": [65535, 0], "one thing wanting to make mr": [65535, 0], "thing wanting to make mr walters'": [65535, 0], "wanting to make mr walters' ecstasy": [65535, 0], "to make mr walters' ecstasy complete": [65535, 0], "make mr walters' ecstasy complete and": [65535, 0], "mr walters' ecstasy complete and that": [65535, 0], "walters' ecstasy complete and that was": [65535, 0], "ecstasy complete and that was a": [65535, 0], "complete and that was a chance": [65535, 0], "and that was a chance to": [65535, 0], "that was a chance to deliver": [65535, 0], "was a chance to deliver a": [65535, 0], "a chance to deliver a bible": [65535, 0], "chance to deliver a bible prize": [65535, 0], "to deliver a bible prize and": [65535, 0], "deliver a bible prize and exhibit": [65535, 0], "a bible prize and exhibit a": [65535, 0], "bible prize and exhibit a prodigy": [65535, 0], "prize and exhibit a prodigy several": [65535, 0], "and exhibit a prodigy several pupils": [65535, 0], "exhibit a prodigy several pupils had": [65535, 0], "a prodigy several pupils had a": [65535, 0], "prodigy several pupils had a few": [65535, 0], "several pupils had a few yellow": [65535, 0], "pupils had a few yellow tickets": [65535, 0], "had a few yellow tickets but": [65535, 0], "a few yellow tickets but none": [65535, 0], "few yellow tickets but none had": [65535, 0], "yellow tickets but none had enough": [65535, 0], "tickets but none had enough he": [65535, 0], "but none had enough he had": [65535, 0], "none had enough he had been": [65535, 0], "had enough he had been around": [65535, 0], "enough he had been around among": [65535, 0], "he had been around among the": [65535, 0], "had been around among the star": [65535, 0], "been around among the star pupils": [65535, 0], "around among the star pupils inquiring": [65535, 0], "among the star pupils inquiring he": [65535, 0], "the star pupils inquiring he would": [65535, 0], "star pupils inquiring he would have": [65535, 0], "pupils inquiring he would have given": [65535, 0], "inquiring he would have given worlds": [65535, 0], "he would have given worlds now": [65535, 0], "would have given worlds now to": [65535, 0], "have given worlds now to have": [65535, 0], "given worlds now to have that": [65535, 0], "worlds now to have that german": [65535, 0], "now to have that german lad": [65535, 0], "to have that german lad back": [65535, 0], "have that german lad back again": [65535, 0], "that german lad back again with": [65535, 0], "german lad back again with a": [65535, 0], "lad back again with a sound": [65535, 0], "back again with a sound mind": [65535, 0], "again with a sound mind and": [65535, 0], "with a sound mind and now": [65535, 0], "a sound mind and now at": [65535, 0], "sound mind and now at this": [65535, 0], "mind and now at this moment": [65535, 0], "and now at this moment when": [65535, 0], "now at this moment when hope": [65535, 0], "at this moment when hope was": [65535, 0], "this moment when hope was dead": [65535, 0], "moment when hope was dead tom": [65535, 0], "when hope was dead tom sawyer": [65535, 0], "hope was dead tom sawyer came": [65535, 0], "was dead tom sawyer came forward": [65535, 0], "dead tom sawyer came forward with": [65535, 0], "tom sawyer came forward with nine": [65535, 0], "sawyer came forward with nine yellow": [65535, 0], "came forward with nine yellow tickets": [65535, 0], "forward with nine yellow tickets nine": [65535, 0], "with nine yellow tickets nine red": [65535, 0], "nine yellow tickets nine red tickets": [65535, 0], "yellow tickets nine red tickets and": [65535, 0], "tickets nine red tickets and ten": [65535, 0], "nine red tickets and ten blue": [65535, 0], "red tickets and ten blue ones": [65535, 0], "tickets and ten blue ones and": [65535, 0], "and ten blue ones and demanded": [65535, 0], "ten blue ones and demanded a": [65535, 0], "blue ones and demanded a bible": [65535, 0], "ones and demanded a bible this": [65535, 0], "and demanded a bible this was": [65535, 0], "demanded a bible this was a": [65535, 0], "a bible this was a thunderbolt": [65535, 0], "bible this was a thunderbolt out": [65535, 0], "this was a thunderbolt out of": [65535, 0], "was a thunderbolt out of a": [65535, 0], "a thunderbolt out of a clear": [65535, 0], "thunderbolt out of a clear sky": [65535, 0], "out of a clear sky walters": [65535, 0], "of a clear sky walters was": [65535, 0], "a clear sky walters was not": [65535, 0], "clear sky walters was not expecting": [65535, 0], "sky walters was not expecting an": [65535, 0], "walters was not expecting an application": [65535, 0], "was not expecting an application from": [65535, 0], "not expecting an application from this": [65535, 0], "expecting an application from this source": [65535, 0], "an application from this source for": [65535, 0], "application from this source for the": [65535, 0], "from this source for the next": [65535, 0], "this source for the next ten": [65535, 0], "source for the next ten years": [65535, 0], "for the next ten years but": [65535, 0], "the next ten years but there": [65535, 0], "next ten years but there was": [65535, 0], "ten years but there was no": [65535, 0], "years but there was no getting": [65535, 0], "but there was no getting around": [65535, 0], "there was no getting around it": [65535, 0], "was no getting around it here": [65535, 0], "no getting around it here were": [65535, 0], "getting around it here were the": [65535, 0], "around it here were the certified": [65535, 0], "it here were the certified checks": [65535, 0], "here were the certified checks and": [65535, 0], "were the certified checks and they": [65535, 0], "the certified checks and they were": [65535, 0], "certified checks and they were good": [65535, 0], "checks and they were good for": [65535, 0], "and they were good for their": [65535, 0], "they were good for their face": [65535, 0], "were good for their face tom": [65535, 0], "good for their face tom was": [65535, 0], "for their face tom was therefore": [65535, 0], "their face tom was therefore elevated": [65535, 0], "face tom was therefore elevated to": [65535, 0], "tom was therefore elevated to a": [65535, 0], "was therefore elevated to a place": [65535, 0], "therefore elevated to a place with": [65535, 0], "elevated to a place with the": [65535, 0], "to a place with the judge": [65535, 0], "a place with the judge and": [65535, 0], "place with the judge and the": [65535, 0], "with the judge and the other": [65535, 0], "the judge and the other elect": [65535, 0], "judge and the other elect and": [65535, 0], "and the other elect and the": [65535, 0], "the other elect and the great": [65535, 0], "other elect and the great news": [65535, 0], "elect and the great news was": [65535, 0], "and the great news was announced": [65535, 0], "the great news was announced from": [65535, 0], "great news was announced from headquarters": [65535, 0], "news was announced from headquarters it": [65535, 0], "was announced from headquarters it was": [65535, 0], "announced from headquarters it was the": [65535, 0], "from headquarters it was the most": [65535, 0], "headquarters it was the most stunning": [65535, 0], "it was the most stunning surprise": [65535, 0], "was the most stunning surprise of": [65535, 0], "the most stunning surprise of the": [65535, 0], "most stunning surprise of the decade": [65535, 0], "stunning surprise of the decade and": [65535, 0], "surprise of the decade and so": [65535, 0], "of the decade and so profound": [65535, 0], "the decade and so profound was": [65535, 0], "decade and so profound was the": [65535, 0], "and so profound was the sensation": [65535, 0], "so profound was the sensation that": [65535, 0], "profound was the sensation that it": [65535, 0], "was the sensation that it lifted": [65535, 0], "the sensation that it lifted the": [65535, 0], "sensation that it lifted the new": [65535, 0], "that it lifted the new hero": [65535, 0], "it lifted the new hero up": [65535, 0], "lifted the new hero up to": [65535, 0], "the new hero up to the": [65535, 0], "new hero up to the judicial": [65535, 0], "hero up to the judicial one's": [65535, 0], "up to the judicial one's altitude": [65535, 0], "to the judicial one's altitude and": [65535, 0], "the judicial one's altitude and the": [65535, 0], "judicial one's altitude and the school": [65535, 0], "one's altitude and the school had": [65535, 0], "altitude and the school had two": [65535, 0], "and the school had two marvels": [65535, 0], "the school had two marvels to": [65535, 0], "school had two marvels to gaze": [65535, 0], "had two marvels to gaze upon": [65535, 0], "two marvels to gaze upon in": [65535, 0], "marvels to gaze upon in place": [65535, 0], "to gaze upon in place of": [65535, 0], "gaze upon in place of one": [65535, 0], "upon in place of one the": [65535, 0], "in place of one the boys": [65535, 0], "place of one the boys were": [65535, 0], "of one the boys were all": [65535, 0], "one the boys were all eaten": [65535, 0], "the boys were all eaten up": [65535, 0], "boys were all eaten up with": [65535, 0], "were all eaten up with envy": [65535, 0], "all eaten up with envy but": [65535, 0], "eaten up with envy but those": [65535, 0], "up with envy but those that": [65535, 0], "with envy but those that suffered": [65535, 0], "envy but those that suffered the": [65535, 0], "but those that suffered the bitterest": [65535, 0], "those that suffered the bitterest pangs": [65535, 0], "that suffered the bitterest pangs were": [65535, 0], "suffered the bitterest pangs were those": [65535, 0], "the bitterest pangs were those who": [65535, 0], "bitterest pangs were those who perceived": [65535, 0], "pangs were those who perceived too": [65535, 0], "were those who perceived too late": [65535, 0], "those who perceived too late that": [65535, 0], "who perceived too late that they": [65535, 0], "perceived too late that they themselves": [65535, 0], "too late that they themselves had": [65535, 0], "late that they themselves had contributed": [65535, 0], "that they themselves had contributed to": [65535, 0], "they themselves had contributed to this": [65535, 0], "themselves had contributed to this hated": [65535, 0], "had contributed to this hated splendor": [65535, 0], "contributed to this hated splendor by": [65535, 0], "to this hated splendor by trading": [65535, 0], "this hated splendor by trading tickets": [65535, 0], "hated splendor by trading tickets to": [65535, 0], "splendor by trading tickets to tom": [65535, 0], "by trading tickets to tom for": [65535, 0], "trading tickets to tom for the": [65535, 0], "tickets to tom for the wealth": [65535, 0], "to tom for the wealth he": [65535, 0], "tom for the wealth he had": [65535, 0], "for the wealth he had amassed": [65535, 0], "the wealth he had amassed in": [65535, 0], "wealth he had amassed in selling": [65535, 0], "he had amassed in selling whitewashing": [65535, 0], "had amassed in selling whitewashing privileges": [65535, 0], "amassed in selling whitewashing privileges these": [65535, 0], "in selling whitewashing privileges these despised": [65535, 0], "selling whitewashing privileges these despised themselves": [65535, 0], "whitewashing privileges these despised themselves as": [65535, 0], "privileges these despised themselves as being": [65535, 0], "these despised themselves as being the": [65535, 0], "despised themselves as being the dupes": [65535, 0], "themselves as being the dupes of": [65535, 0], "as being the dupes of a": [65535, 0], "being the dupes of a wily": [65535, 0], "the dupes of a wily fraud": [65535, 0], "dupes of a wily fraud a": [65535, 0], "of a wily fraud a guileful": [65535, 0], "a wily fraud a guileful snake": [65535, 0], "wily fraud a guileful snake in": [65535, 0], "fraud a guileful snake in the": [65535, 0], "a guileful snake in the grass": [65535, 0], "guileful snake in the grass the": [65535, 0], "snake in the grass the prize": [65535, 0], "in the grass the prize was": [65535, 0], "the grass the prize was delivered": [65535, 0], "grass the prize was delivered to": [65535, 0], "the prize was delivered to tom": [65535, 0], "prize was delivered to tom with": [65535, 0], "was delivered to tom with as": [65535, 0], "delivered to tom with as much": [65535, 0], "to tom with as much effusion": [65535, 0], "tom with as much effusion as": [65535, 0], "with as much effusion as the": [65535, 0], "as much effusion as the superintendent": [65535, 0], "much effusion as the superintendent could": [65535, 0], "effusion as the superintendent could pump": [65535, 0], "as the superintendent could pump up": [65535, 0], "the superintendent could pump up under": [65535, 0], "superintendent could pump up under the": [65535, 0], "could pump up under the circumstances": [65535, 0], "pump up under the circumstances but": [65535, 0], "up under the circumstances but it": [65535, 0], "under the circumstances but it lacked": [65535, 0], "the circumstances but it lacked somewhat": [65535, 0], "circumstances but it lacked somewhat of": [65535, 0], "but it lacked somewhat of the": [65535, 0], "it lacked somewhat of the true": [65535, 0], "lacked somewhat of the true gush": [65535, 0], "somewhat of the true gush for": [65535, 0], "of the true gush for the": [65535, 0], "the true gush for the poor": [65535, 0], "true gush for the poor fellow's": [65535, 0], "gush for the poor fellow's instinct": [65535, 0], "for the poor fellow's instinct taught": [65535, 0], "the poor fellow's instinct taught him": [65535, 0], "poor fellow's instinct taught him that": [65535, 0], "fellow's instinct taught him that there": [65535, 0], "instinct taught him that there was": [65535, 0], "taught him that there was a": [65535, 0], "him that there was a mystery": [65535, 0], "that there was a mystery here": [65535, 0], "there was a mystery here that": [65535, 0], "was a mystery here that could": [65535, 0], "a mystery here that could not": [65535, 0], "mystery here that could not well": [65535, 0], "here that could not well bear": [65535, 0], "that could not well bear the": [65535, 0], "could not well bear the light": [65535, 0], "not well bear the light perhaps": [65535, 0], "well bear the light perhaps it": [65535, 0], "bear the light perhaps it was": [65535, 0], "the light perhaps it was simply": [65535, 0], "light perhaps it was simply preposterous": [65535, 0], "perhaps it was simply preposterous that": [65535, 0], "it was simply preposterous that this": [65535, 0], "was simply preposterous that this boy": [65535, 0], "simply preposterous that this boy had": [65535, 0], "preposterous that this boy had warehoused": [65535, 0], "that this boy had warehoused two": [65535, 0], "this boy had warehoused two thousand": [65535, 0], "boy had warehoused two thousand sheaves": [65535, 0], "had warehoused two thousand sheaves of": [65535, 0], "warehoused two thousand sheaves of scriptural": [65535, 0], "two thousand sheaves of scriptural wisdom": [65535, 0], "thousand sheaves of scriptural wisdom on": [65535, 0], "sheaves of scriptural wisdom on his": [65535, 0], "of scriptural wisdom on his premises": [65535, 0], "scriptural wisdom on his premises a": [65535, 0], "wisdom on his premises a dozen": [65535, 0], "on his premises a dozen would": [65535, 0], "his premises a dozen would strain": [65535, 0], "premises a dozen would strain his": [65535, 0], "a dozen would strain his capacity": [65535, 0], "dozen would strain his capacity without": [65535, 0], "would strain his capacity without a": [65535, 0], "strain his capacity without a doubt": [65535, 0], "his capacity without a doubt amy": [65535, 0], "capacity without a doubt amy lawrence": [65535, 0], "without a doubt amy lawrence was": [65535, 0], "a doubt amy lawrence was proud": [65535, 0], "doubt amy lawrence was proud and": [65535, 0], "amy lawrence was proud and glad": [65535, 0], "lawrence was proud and glad and": [65535, 0], "was proud and glad and she": [65535, 0], "proud and glad and she tried": [65535, 0], "and glad and she tried to": [65535, 0], "glad and she tried to make": [65535, 0], "and she tried to make tom": [65535, 0], "she tried to make tom see": [65535, 0], "tried to make tom see it": [65535, 0], "to make tom see it in": [65535, 0], "make tom see it in her": [65535, 0], "tom see it in her face": [65535, 0], "see it in her face but": [65535, 0], "it in her face but he": [65535, 0], "in her face but he wouldn't": [65535, 0], "her face but he wouldn't look": [65535, 0], "face but he wouldn't look she": [65535, 0], "but he wouldn't look she wondered": [65535, 0], "he wouldn't look she wondered then": [65535, 0], "wouldn't look she wondered then she": [65535, 0], "look she wondered then she was": [65535, 0], "she wondered then she was just": [65535, 0], "wondered then she was just a": [65535, 0], "then she was just a grain": [65535, 0], "she was just a grain troubled": [65535, 0], "was just a grain troubled next": [65535, 0], "just a grain troubled next a": [65535, 0], "a grain troubled next a dim": [65535, 0], "grain troubled next a dim suspicion": [65535, 0], "troubled next a dim suspicion came": [65535, 0], "next a dim suspicion came and": [65535, 0], "a dim suspicion came and went": [65535, 0], "dim suspicion came and went came": [65535, 0], "suspicion came and went came again": [65535, 0], "came and went came again she": [65535, 0], "and went came again she watched": [65535, 0], "went came again she watched a": [65535, 0], "came again she watched a furtive": [65535, 0], "again she watched a furtive glance": [65535, 0], "she watched a furtive glance told": [65535, 0], "watched a furtive glance told her": [65535, 0], "a furtive glance told her worlds": [65535, 0], "furtive glance told her worlds and": [65535, 0], "glance told her worlds and then": [65535, 0], "told her worlds and then her": [65535, 0], "her worlds and then her heart": [65535, 0], "worlds and then her heart broke": [65535, 0], "and then her heart broke and": [65535, 0], "then her heart broke and she": [65535, 0], "her heart broke and she was": [65535, 0], "heart broke and she was jealous": [65535, 0], "broke and she was jealous and": [65535, 0], "and she was jealous and angry": [65535, 0], "she was jealous and angry and": [65535, 0], "was jealous and angry and the": [65535, 0], "jealous and angry and the tears": [65535, 0], "and angry and the tears came": [65535, 0], "angry and the tears came and": [65535, 0], "and the tears came and she": [65535, 0], "the tears came and she hated": [65535, 0], "tears came and she hated everybody": [65535, 0], "came and she hated everybody tom": [65535, 0], "and she hated everybody tom most": [65535, 0], "she hated everybody tom most of": [65535, 0], "hated everybody tom most of all": [65535, 0], "everybody tom most of all she": [65535, 0], "tom most of all she thought": [65535, 0], "most of all she thought tom": [65535, 0], "of all she thought tom was": [65535, 0], "all she thought tom was introduced": [65535, 0], "she thought tom was introduced to": [65535, 0], "thought tom was introduced to the": [65535, 0], "tom was introduced to the judge": [65535, 0], "was introduced to the judge but": [65535, 0], "introduced to the judge but his": [65535, 0], "to the judge but his tongue": [65535, 0], "the judge but his tongue was": [65535, 0], "judge but his tongue was tied": [65535, 0], "but his tongue was tied his": [65535, 0], "his tongue was tied his breath": [65535, 0], "tongue was tied his breath would": [65535, 0], "was tied his breath would hardly": [65535, 0], "tied his breath would hardly come": [65535, 0], "his breath would hardly come his": [65535, 0], "breath would hardly come his heart": [65535, 0], "would hardly come his heart quaked": [65535, 0], "hardly come his heart quaked partly": [65535, 0], "come his heart quaked partly because": [65535, 0], "his heart quaked partly because of": [65535, 0], "heart quaked partly because of the": [65535, 0], "quaked partly because of the awful": [65535, 0], "partly because of the awful greatness": [65535, 0], "because of the awful greatness of": [65535, 0], "of the awful greatness of the": [65535, 0], "the awful greatness of the man": [65535, 0], "awful greatness of the man but": [65535, 0], "greatness of the man but mainly": [65535, 0], "of the man but mainly because": [65535, 0], "the man but mainly because he": [65535, 0], "man but mainly because he was": [65535, 0], "but mainly because he was her": [65535, 0], "mainly because he was her parent": [65535, 0], "because he was her parent he": [65535, 0], "he was her parent he would": [65535, 0], "was her parent he would have": [65535, 0], "her parent he would have liked": [65535, 0], "parent he would have liked to": [65535, 0], "he would have liked to fall": [65535, 0], "would have liked to fall down": [65535, 0], "have liked to fall down and": [65535, 0], "liked to fall down and worship": [65535, 0], "to fall down and worship him": [65535, 0], "fall down and worship him if": [65535, 0], "down and worship him if it": [65535, 0], "and worship him if it were": [65535, 0], "worship him if it were in": [65535, 0], "him if it were in the": [65535, 0], "if it were in the dark": [65535, 0], "it were in the dark the": [65535, 0], "were in the dark the judge": [65535, 0], "in the dark the judge put": [65535, 0], "the dark the judge put his": [65535, 0], "dark the judge put his hand": [65535, 0], "the judge put his hand on": [65535, 0], "judge put his hand on tom's": [65535, 0], "put his hand on tom's head": [65535, 0], "his hand on tom's head and": [65535, 0], "hand on tom's head and called": [65535, 0], "on tom's head and called him": [65535, 0], "tom's head and called him a": [65535, 0], "head and called him a fine": [65535, 0], "and called him a fine little": [65535, 0], "called him a fine little man": [65535, 0], "him a fine little man and": [65535, 0], "a fine little man and asked": [65535, 0], "fine little man and asked him": [65535, 0], "little man and asked him what": [65535, 0], "man and asked him what his": [65535, 0], "and asked him what his name": [65535, 0], "asked him what his name was": [65535, 0], "him what his name was the": [65535, 0], "what his name was the boy": [65535, 0], "his name was the boy stammered": [65535, 0], "name was the boy stammered gasped": [65535, 0], "was the boy stammered gasped and": [65535, 0], "the boy stammered gasped and got": [65535, 0], "boy stammered gasped and got it": [65535, 0], "stammered gasped and got it out": [65535, 0], "gasped and got it out tom": [65535, 0], "and got it out tom oh": [65535, 0], "got it out tom oh no": [65535, 0], "it out tom oh no not": [65535, 0], "out tom oh no not tom": [65535, 0], "tom oh no not tom it": [65535, 0], "oh no not tom it is": [65535, 0], "no not tom it is thomas": [65535, 0], "not tom it is thomas ah": [65535, 0], "tom it is thomas ah that's": [65535, 0], "it is thomas ah that's it": [65535, 0], "is thomas ah that's it i": [65535, 0], "thomas ah that's it i thought": [65535, 0], "ah that's it i thought there": [65535, 0], "that's it i thought there was": [65535, 0], "it i thought there was more": [65535, 0], "i thought there was more to": [65535, 0], "thought there was more to it": [65535, 0], "there was more to it maybe": [65535, 0], "was more to it maybe that's": [65535, 0], "more to it maybe that's very": [65535, 0], "to it maybe that's very well": [65535, 0], "it maybe that's very well but": [65535, 0], "maybe that's very well but you've": [65535, 0], "that's very well but you've another": [65535, 0], "very well but you've another one": [65535, 0], "well but you've another one i": [65535, 0], "but you've another one i daresay": [65535, 0], "you've another one i daresay and": [65535, 0], "another one i daresay and you'll": [65535, 0], "one i daresay and you'll tell": [65535, 0], "i daresay and you'll tell it": [65535, 0], "daresay and you'll tell it to": [65535, 0], "and you'll tell it to me": [65535, 0], "you'll tell it to me won't": [65535, 0], "tell it to me won't you": [65535, 0], "it to me won't you tell": [65535, 0], "to me won't you tell the": [65535, 0], "me won't you tell the gentleman": [65535, 0], "won't you tell the gentleman your": [65535, 0], "you tell the gentleman your other": [65535, 0], "tell the gentleman your other name": [65535, 0], "the gentleman your other name thomas": [65535, 0], "gentleman your other name thomas said": [65535, 0], "your other name thomas said walters": [65535, 0], "other name thomas said walters and": [65535, 0], "name thomas said walters and say": [65535, 0], "thomas said walters and say sir": [65535, 0], "said walters and say sir you": [65535, 0], "walters and say sir you mustn't": [65535, 0], "and say sir you mustn't forget": [65535, 0], "say sir you mustn't forget your": [65535, 0], "sir you mustn't forget your manners": [65535, 0], "you mustn't forget your manners thomas": [65535, 0], "mustn't forget your manners thomas sawyer": [65535, 0], "forget your manners thomas sawyer sir": [65535, 0], "your manners thomas sawyer sir that's": [65535, 0], "manners thomas sawyer sir that's it": [65535, 0], "thomas sawyer sir that's it that's": [65535, 0], "sawyer sir that's it that's a": [65535, 0], "sir that's it that's a good": [65535, 0], "that's it that's a good boy": [65535, 0], "it that's a good boy fine": [65535, 0], "that's a good boy fine boy": [65535, 0], "a good boy fine boy fine": [65535, 0], "good boy fine boy fine manly": [65535, 0], "boy fine boy fine manly little": [65535, 0], "fine boy fine manly little fellow": [65535, 0], "boy fine manly little fellow two": [65535, 0], "fine manly little fellow two thousand": [65535, 0], "manly little fellow two thousand verses": [65535, 0], "little fellow two thousand verses is": [65535, 0], "fellow two thousand verses is a": [65535, 0], "two thousand verses is a great": [65535, 0], "thousand verses is a great many": [65535, 0], "verses is a great many very": [65535, 0], "is a great many very very": [65535, 0], "a great many very very great": [65535, 0], "great many very very great many": [65535, 0], "many very very great many and": [65535, 0], "very very great many and you": [65535, 0], "very great many and you never": [65535, 0], "great many and you never can": [65535, 0], "many and you never can be": [65535, 0], "and you never can be sorry": [65535, 0], "you never can be sorry for": [65535, 0], "never can be sorry for the": [65535, 0], "can be sorry for the trouble": [65535, 0], "be sorry for the trouble you": [65535, 0], "sorry for the trouble you took": [65535, 0], "for the trouble you took to": [65535, 0], "the trouble you took to learn": [65535, 0], "trouble you took to learn them": [65535, 0], "you took to learn them for": [65535, 0], "took to learn them for knowledge": [65535, 0], "to learn them for knowledge is": [65535, 0], "learn them for knowledge is worth": [65535, 0], "them for knowledge is worth more": [65535, 0], "for knowledge is worth more than": [65535, 0], "knowledge is worth more than anything": [65535, 0], "is worth more than anything there": [65535, 0], "worth more than anything there is": [65535, 0], "more than anything there is in": [65535, 0], "than anything there is in the": [65535, 0], "anything there is in the world": [65535, 0], "there is in the world it's": [65535, 0], "is in the world it's what": [65535, 0], "in the world it's what makes": [65535, 0], "the world it's what makes great": [65535, 0], "world it's what makes great men": [65535, 0], "it's what makes great men and": [65535, 0], "what makes great men and good": [65535, 0], "makes great men and good men": [65535, 0], "great men and good men you'll": [65535, 0], "men and good men you'll be": [65535, 0], "and good men you'll be a": [65535, 0], "good men you'll be a great": [65535, 0], "men you'll be a great man": [65535, 0], "you'll be a great man and": [65535, 0], "be a great man and a": [65535, 0], "a great man and a good": [65535, 0], "great man and a good man": [65535, 0], "man and a good man yourself": [65535, 0], "and a good man yourself some": [65535, 0], "a good man yourself some day": [65535, 0], "good man yourself some day thomas": [65535, 0], "man yourself some day thomas and": [65535, 0], "yourself some day thomas and then": [65535, 0], "some day thomas and then you'll": [65535, 0], "day thomas and then you'll look": [65535, 0], "thomas and then you'll look back": [65535, 0], "and then you'll look back and": [65535, 0], "then you'll look back and say": [65535, 0], "you'll look back and say it's": [65535, 0], "look back and say it's all": [65535, 0], "back and say it's all owing": [65535, 0], "and say it's all owing to": [65535, 0], "say it's all owing to the": [65535, 0], "it's all owing to the precious": [65535, 0], "all owing to the precious sunday": [65535, 0], "owing to the precious sunday school": [65535, 0], "to the precious sunday school privileges": [65535, 0], "the precious sunday school privileges of": [65535, 0], "precious sunday school privileges of my": [65535, 0], "sunday school privileges of my boyhood": [65535, 0], "school privileges of my boyhood it's": [65535, 0], "privileges of my boyhood it's all": [65535, 0], "of my boyhood it's all owing": [65535, 0], "my boyhood it's all owing to": [65535, 0], "boyhood it's all owing to my": [65535, 0], "it's all owing to my dear": [65535, 0], "all owing to my dear teachers": [65535, 0], "owing to my dear teachers that": [65535, 0], "to my dear teachers that taught": [65535, 0], "my dear teachers that taught me": [65535, 0], "dear teachers that taught me to": [65535, 0], "teachers that taught me to learn": [65535, 0], "that taught me to learn it's": [65535, 0], "taught me to learn it's all": [65535, 0], "me to learn it's all owing": [65535, 0], "to learn it's all owing to": [65535, 0], "learn it's all owing to the": [65535, 0], "it's all owing to the good": [65535, 0], "all owing to the good superintendent": [65535, 0], "owing to the good superintendent who": [65535, 0], "to the good superintendent who encouraged": [65535, 0], "the good superintendent who encouraged me": [65535, 0], "good superintendent who encouraged me and": [65535, 0], "superintendent who encouraged me and watched": [65535, 0], "who encouraged me and watched over": [65535, 0], "encouraged me and watched over me": [65535, 0], "me and watched over me and": [65535, 0], "and watched over me and gave": [65535, 0], "watched over me and gave me": [65535, 0], "over me and gave me a": [65535, 0], "me and gave me a beautiful": [65535, 0], "and gave me a beautiful bible": [65535, 0], "gave me a beautiful bible a": [65535, 0], "me a beautiful bible a splendid": [65535, 0], "a beautiful bible a splendid elegant": [65535, 0], "beautiful bible a splendid elegant bible": [65535, 0], "bible a splendid elegant bible to": [65535, 0], "a splendid elegant bible to keep": [65535, 0], "splendid elegant bible to keep and": [65535, 0], "elegant bible to keep and have": [65535, 0], "bible to keep and have it": [65535, 0], "to keep and have it all": [65535, 0], "keep and have it all for": [65535, 0], "and have it all for my": [65535, 0], "have it all for my own": [65535, 0], "it all for my own always": [65535, 0], "all for my own always it's": [65535, 0], "for my own always it's all": [65535, 0], "my own always it's all owing": [65535, 0], "own always it's all owing to": [65535, 0], "always it's all owing to right": [65535, 0], "it's all owing to right bringing": [65535, 0], "all owing to right bringing up": [65535, 0], "owing to right bringing up that": [65535, 0], "to right bringing up that is": [65535, 0], "right bringing up that is what": [65535, 0], "bringing up that is what you": [65535, 0], "up that is what you will": [65535, 0], "that is what you will say": [65535, 0], "is what you will say thomas": [65535, 0], "what you will say thomas and": [65535, 0], "you will say thomas and you": [65535, 0], "will say thomas and you wouldn't": [65535, 0], "say thomas and you wouldn't take": [65535, 0], "thomas and you wouldn't take any": [65535, 0], "and you wouldn't take any money": [65535, 0], "you wouldn't take any money for": [65535, 0], "wouldn't take any money for those": [65535, 0], "take any money for those two": [65535, 0], "any money for those two thousand": [65535, 0], "money for those two thousand verses": [65535, 0], "for those two thousand verses no": [65535, 0], "those two thousand verses no indeed": [65535, 0], "two thousand verses no indeed you": [65535, 0], "thousand verses no indeed you wouldn't": [65535, 0], "verses no indeed you wouldn't and": [65535, 0], "no indeed you wouldn't and now": [65535, 0], "indeed you wouldn't and now you": [65535, 0], "you wouldn't and now you wouldn't": [65535, 0], "wouldn't and now you wouldn't mind": [65535, 0], "and now you wouldn't mind telling": [65535, 0], "now you wouldn't mind telling me": [65535, 0], "you wouldn't mind telling me and": [65535, 0], "wouldn't mind telling me and this": [65535, 0], "mind telling me and this lady": [65535, 0], "telling me and this lady some": [65535, 0], "me and this lady some of": [65535, 0], "and this lady some of the": [65535, 0], "this lady some of the things": [65535, 0], "lady some of the things you've": [65535, 0], "some of the things you've learned": [65535, 0], "of the things you've learned no": [65535, 0], "the things you've learned no i": [65535, 0], "things you've learned no i know": [65535, 0], "you've learned no i know you": [65535, 0], "learned no i know you wouldn't": [65535, 0], "no i know you wouldn't for": [65535, 0], "i know you wouldn't for we": [65535, 0], "know you wouldn't for we are": [65535, 0], "you wouldn't for we are proud": [65535, 0], "wouldn't for we are proud of": [65535, 0], "for we are proud of little": [65535, 0], "we are proud of little boys": [65535, 0], "are proud of little boys that": [65535, 0], "proud of little boys that learn": [65535, 0], "of little boys that learn now": [65535, 0], "little boys that learn now no": [65535, 0], "boys that learn now no doubt": [65535, 0], "that learn now no doubt you": [65535, 0], "learn now no doubt you know": [65535, 0], "now no doubt you know the": [65535, 0], "no doubt you know the names": [65535, 0], "doubt you know the names of": [65535, 0], "you know the names of all": [65535, 0], "know the names of all the": [65535, 0], "the names of all the twelve": [65535, 0], "names of all the twelve disciples": [65535, 0], "of all the twelve disciples won't": [65535, 0], "all the twelve disciples won't you": [65535, 0], "the twelve disciples won't you tell": [65535, 0], "twelve disciples won't you tell us": [65535, 0], "disciples won't you tell us the": [65535, 0], "won't you tell us the names": [65535, 0], "you tell us the names of": [65535, 0], "tell us the names of the": [65535, 0], "us the names of the first": [65535, 0], "the names of the first two": [65535, 0], "names of the first two that": [65535, 0], "of the first two that were": [65535, 0], "the first two that were appointed": [65535, 0], "first two that were appointed tom": [65535, 0], "two that were appointed tom was": [65535, 0], "that were appointed tom was tugging": [65535, 0], "were appointed tom was tugging at": [65535, 0], "appointed tom was tugging at a": [65535, 0], "tom was tugging at a button": [65535, 0], "was tugging at a button hole": [65535, 0], "tugging at a button hole and": [65535, 0], "at a button hole and looking": [65535, 0], "a button hole and looking sheepish": [65535, 0], "button hole and looking sheepish he": [65535, 0], "hole and looking sheepish he blushed": [65535, 0], "and looking sheepish he blushed now": [65535, 0], "looking sheepish he blushed now and": [65535, 0], "sheepish he blushed now and his": [65535, 0], "he blushed now and his eyes": [65535, 0], "blushed now and his eyes fell": [65535, 0], "now and his eyes fell mr": [65535, 0], "and his eyes fell mr walters'": [65535, 0], "his eyes fell mr walters' heart": [65535, 0], "eyes fell mr walters' heart sank": [65535, 0], "fell mr walters' heart sank within": [65535, 0], "mr walters' heart sank within him": [65535, 0], "walters' heart sank within him he": [65535, 0], "heart sank within him he said": [65535, 0], "sank within him he said to": [65535, 0], "within him he said to himself": [65535, 0], "him he said to himself it": [65535, 0], "he said to himself it is": [65535, 0], "said to himself it is not": [65535, 0], "to himself it is not possible": [65535, 0], "himself it is not possible that": [65535, 0], "it is not possible that the": [65535, 0], "is not possible that the boy": [65535, 0], "not possible that the boy can": [65535, 0], "possible that the boy can answer": [65535, 0], "that the boy can answer the": [65535, 0], "the boy can answer the simplest": [65535, 0], "boy can answer the simplest question": [65535, 0], "can answer the simplest question why": [65535, 0], "answer the simplest question why did": [65535, 0], "the simplest question why did the": [65535, 0], "simplest question why did the judge": [65535, 0], "question why did the judge ask": [65535, 0], "why did the judge ask him": [65535, 0], "did the judge ask him yet": [65535, 0], "the judge ask him yet he": [65535, 0], "judge ask him yet he felt": [65535, 0], "ask him yet he felt obliged": [65535, 0], "him yet he felt obliged to": [65535, 0], "yet he felt obliged to speak": [65535, 0], "he felt obliged to speak up": [65535, 0], "felt obliged to speak up and": [65535, 0], "obliged to speak up and say": [65535, 0], "to speak up and say answer": [65535, 0], "speak up and say answer the": [65535, 0], "up and say answer the gentleman": [65535, 0], "and say answer the gentleman thomas": [65535, 0], "say answer the gentleman thomas don't": [65535, 0], "answer the gentleman thomas don't be": [65535, 0], "the gentleman thomas don't be afraid": [65535, 0], "gentleman thomas don't be afraid tom": [65535, 0], "thomas don't be afraid tom still": [65535, 0], "don't be afraid tom still hung": [65535, 0], "be afraid tom still hung fire": [65535, 0], "afraid tom still hung fire now": [65535, 0], "tom still hung fire now i": [65535, 0], "still hung fire now i know": [65535, 0], "hung fire now i know you'll": [65535, 0], "fire now i know you'll tell": [65535, 0], "now i know you'll tell me": [65535, 0], "i know you'll tell me said": [65535, 0], "know you'll tell me said the": [65535, 0], "you'll tell me said the lady": [65535, 0], "tell me said the lady the": [65535, 0], "me said the lady the names": [65535, 0], "said the lady the names of": [65535, 0], "the lady the names of the": [65535, 0], "lady the names of the first": [65535, 0], "names of the first two disciples": [65535, 0], "of the first two disciples were": [65535, 0], "the first two disciples were david": [65535, 0], "first two disciples were david and": [65535, 0], "two disciples were david and goliath": [65535, 0], "disciples were david and goliath let": [65535, 0], "were david and goliath let us": [65535, 0], "david and goliath let us draw": [65535, 0], "and goliath let us draw the": [65535, 0], "goliath let us draw the curtain": [65535, 0], "let us draw the curtain of": [65535, 0], "us draw the curtain of charity": [65535, 0], "draw the curtain of charity over": [65535, 0], "the curtain of charity over the": [65535, 0], "curtain of charity over the rest": [65535, 0], "of charity over the rest of": [65535, 0], "charity over the rest of the": [65535, 0], "over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world": [65535, 0], "sun rose upon a tranquil world and": [65535, 0], "rose upon a tranquil world and beamed": [65535, 0], "upon a tranquil world and beamed down": [65535, 0], "a tranquil world and beamed down upon": [65535, 0], "tranquil world and beamed down upon the": [65535, 0], "world and beamed down upon the peaceful": [65535, 0], "and beamed down upon the peaceful village": [65535, 0], "beamed down upon the peaceful village like": [65535, 0], "down upon the peaceful village like a": [65535, 0], "upon the peaceful village like a benediction": [65535, 0], "the peaceful village like a benediction breakfast": [65535, 0], "peaceful village like a benediction breakfast over": [65535, 0], "village like a benediction breakfast over aunt": [65535, 0], "like a benediction breakfast over aunt polly": [65535, 0], "a benediction breakfast over aunt polly had": [65535, 0], "benediction breakfast over aunt polly had family": [65535, 0], "breakfast over aunt polly had family worship": [65535, 0], "over aunt polly had family worship it": [65535, 0], "aunt polly had family worship it began": [65535, 0], "polly had family worship it began with": [65535, 0], "had family worship it began with a": [65535, 0], "family worship it began with a prayer": [65535, 0], "worship it began with a prayer built": [65535, 0], "it began with a prayer built from": [65535, 0], "began with a prayer built from the": [65535, 0], "with a prayer built from the ground": [65535, 0], "a prayer built from the ground up": [65535, 0], "prayer built from the ground up of": [65535, 0], "built from the ground up of solid": [65535, 0], "from the ground up of solid courses": [65535, 0], "the ground up of solid courses of": [65535, 0], "ground up of solid courses of scriptural": [65535, 0], "up of solid courses of scriptural quotations": [65535, 0], "of solid courses of scriptural quotations welded": [65535, 0], "solid courses of scriptural quotations welded together": [65535, 0], "courses of scriptural quotations welded together with": [65535, 0], "of scriptural quotations welded together with a": [65535, 0], "scriptural quotations welded together with a thin": [65535, 0], "quotations welded together with a thin mortar": [65535, 0], "welded together with a thin mortar of": [65535, 0], "together with a thin mortar of originality": [65535, 0], "with a thin mortar of originality and": [65535, 0], "a thin mortar of originality and from": [65535, 0], "thin mortar of originality and from the": [65535, 0], "mortar of originality and from the summit": [65535, 0], "of originality and from the summit of": [65535, 0], "originality and from the summit of this": [65535, 0], "and from the summit of this she": [65535, 0], "from the summit of this she delivered": [65535, 0], "the summit of this she delivered a": [65535, 0], "summit of this she delivered a grim": [65535, 0], "of this she delivered a grim chapter": [65535, 0], "this she delivered a grim chapter of": [65535, 0], "she delivered a grim chapter of the": [65535, 0], "delivered a grim chapter of the mosaic": [65535, 0], "a grim chapter of the mosaic law": [65535, 0], "grim chapter of the mosaic law as": [65535, 0], "chapter of the mosaic law as from": [65535, 0], "of the mosaic law as from sinai": [65535, 0], "the mosaic law as from sinai then": [65535, 0], "mosaic law as from sinai then tom": [65535, 0], "law as from sinai then tom girded": [65535, 0], "as from sinai then tom girded up": [65535, 0], "from sinai then tom girded up his": [65535, 0], "sinai then tom girded up his loins": [65535, 0], "then tom girded up his loins so": [65535, 0], "tom girded up his loins so to": [65535, 0], "girded up his loins so to speak": [65535, 0], "up his loins so to speak and": [65535, 0], "his loins so to speak and went": [65535, 0], "loins so to speak and went to": [65535, 0], "so to speak and went to work": [65535, 0], "to speak and went to work to": [65535, 0], "speak and went to work to get": [65535, 0], "and went to work to get his": [65535, 0], "went to work to get his verses": [65535, 0], "to work to get his verses sid": [65535, 0], "work to get his verses sid had": [65535, 0], "to get his verses sid had learned": [65535, 0], "get his verses sid had learned his": [65535, 0], "his verses sid had learned his lesson": [65535, 0], "verses sid had learned his lesson days": [65535, 0], "sid had learned his lesson days before": [65535, 0], "had learned his lesson days before tom": [65535, 0], "learned his lesson days before tom bent": [65535, 0], "his lesson days before tom bent all": [65535, 0], "lesson days before tom bent all his": [65535, 0], "days before tom bent all his energies": [65535, 0], "before tom bent all his energies to": [65535, 0], "tom bent all his energies to the": [65535, 0], "bent all his energies to the memorizing": [65535, 0], "all his energies to the memorizing of": [65535, 0], "his energies to the memorizing of five": [65535, 0], "energies to the memorizing of five verses": [65535, 0], "to the memorizing of five verses and": [65535, 0], "the memorizing of five verses and he": [65535, 0], "memorizing of five verses and he chose": [65535, 0], "of five verses and he chose part": [65535, 0], "five verses and he chose part of": [65535, 0], "verses and he chose part of the": [65535, 0], "and he chose part of the sermon": [65535, 0], "he chose part of the sermon on": [65535, 0], "chose part of the sermon on the": [65535, 0], "part of the sermon on the mount": [65535, 0], "of the sermon on the mount because": [65535, 0], "the sermon on the mount because he": [65535, 0], "sermon on the mount because he could": [65535, 0], "on the mount because he could find": [65535, 0], "the mount because he could find no": [65535, 0], "mount because he could find no verses": [65535, 0], "because he could find no verses that": [65535, 0], "he could find no verses that were": [65535, 0], "could find no verses that were shorter": [65535, 0], "find no verses that were shorter at": [65535, 0], "no verses that were shorter at the": [65535, 0], "verses that were shorter at the end": [65535, 0], "that were shorter at the end of": [65535, 0], "were shorter at the end of half": [65535, 0], "shorter at the end of half an": [65535, 0], "at the end of half an hour": [65535, 0], "the end of half an hour tom": [65535, 0], "end of half an hour tom had": [65535, 0], "of half an hour tom had a": [65535, 0], "half an hour tom had a vague": [65535, 0], "an hour tom had a vague general": [65535, 0], "hour tom had a vague general idea": [65535, 0], "tom had a vague general idea of": [65535, 0], "had a vague general idea of his": [65535, 0], "a vague general idea of his lesson": [65535, 0], "vague general idea of his lesson but": [65535, 0], "general idea of his lesson but no": [65535, 0], "idea of his lesson but no more": [65535, 0], "of his lesson but no more for": [65535, 0], "his lesson but no more for his": [65535, 0], "lesson but no more for his mind": [65535, 0], "but no more for his mind was": [65535, 0], "no more for his mind was traversing": [65535, 0], "more for his mind was traversing the": [65535, 0], "for his mind was traversing the whole": [65535, 0], "his mind was traversing the whole field": [65535, 0], "mind was traversing the whole field of": [65535, 0], "was traversing the whole field of human": [65535, 0], "traversing the whole field of human thought": [65535, 0], "the whole field of human thought and": [65535, 0], "whole field of human thought and his": [65535, 0], "field of human thought and his hands": [65535, 0], "of human thought and his hands were": [65535, 0], "human thought and his hands were busy": [65535, 0], "thought and his hands were busy with": [65535, 0], "and his hands were busy with distracting": [65535, 0], "his hands were busy with distracting recreations": [65535, 0], "hands were busy with distracting recreations mary": [65535, 0], "were busy with distracting recreations mary took": [65535, 0], "busy with distracting recreations mary took his": [65535, 0], "with distracting recreations mary took his book": [65535, 0], "distracting recreations mary took his book to": [65535, 0], "recreations mary took his book to hear": [65535, 0], "mary took his book to hear him": [65535, 0], "took his book to hear him recite": [65535, 0], "his book to hear him recite and": [65535, 0], "book to hear him recite and he": [65535, 0], "to hear him recite and he tried": [65535, 0], "hear him recite and he tried to": [65535, 0], "him recite and he tried to find": [65535, 0], "recite and he tried to find his": [65535, 0], "and he tried to find his way": [65535, 0], "he tried to find his way through": [65535, 0], "tried to find his way through the": [65535, 0], "to find his way through the fog": [65535, 0], "find his way through the fog blessed": [65535, 0], "his way through the fog blessed are": [65535, 0], "way through the fog blessed are the": [65535, 0], "through the fog blessed are the a": [65535, 0], "the fog blessed are the a a": [65535, 0], "fog blessed are the a a poor": [65535, 0], "blessed are the a a poor yes": [65535, 0], "are the a a poor yes poor": [65535, 0], "the a a poor yes poor blessed": [65535, 0], "a a poor yes poor blessed are": [65535, 0], "a poor yes poor blessed are the": [65535, 0], "poor yes poor blessed are the poor": [65535, 0], "yes poor blessed are the poor a": [65535, 0], "poor blessed are the poor a a": [65535, 0], "blessed are the poor a a in": [65535, 0], "are the poor a a in spirit": [65535, 0], "the poor a a in spirit in": [65535, 0], "poor a a in spirit in spirit": [65535, 0], "a a in spirit in spirit blessed": [65535, 0], "a in spirit in spirit blessed are": [65535, 0], "in spirit in spirit blessed are the": [65535, 0], "spirit in spirit blessed are the poor": [65535, 0], "in spirit blessed are the poor in": [65535, 0], "spirit blessed are the poor in spirit": [65535, 0], "blessed are the poor in spirit for": [65535, 0], "are the poor in spirit for they": [65535, 0], "the poor in spirit for they they": [65535, 0], "poor in spirit for they they theirs": [65535, 0], "in spirit for they they theirs for": [65535, 0], "spirit for they they theirs for theirs": [65535, 0], "for they they theirs for theirs blessed": [65535, 0], "they they theirs for theirs blessed are": [65535, 0], "they theirs for theirs blessed are the": [65535, 0], "theirs for theirs blessed are the poor": [65535, 0], "for theirs blessed are the poor in": [65535, 0], "theirs blessed are the poor in spirit": [65535, 0], "are the poor in spirit for theirs": [65535, 0], "the poor in spirit for theirs is": [65535, 0], "poor in spirit for theirs is the": [65535, 0], "in spirit for theirs is the kingdom": [65535, 0], "spirit for theirs is the kingdom of": [65535, 0], "for theirs is the kingdom of heaven": [65535, 0], "theirs is the kingdom of heaven blessed": [65535, 0], "is the kingdom of heaven blessed are": [65535, 0], "the kingdom of heaven blessed are they": [65535, 0], "kingdom of heaven blessed are they that": [65535, 0], "of heaven blessed are they that mourn": [65535, 0], "heaven blessed are they that mourn for": [65535, 0], "blessed are they that mourn for they": [65535, 0], "are they that mourn for they they": [65535, 0], "they that mourn for they they sh": [65535, 0], "that mourn for they they sh for": [65535, 0], "mourn for they they sh for they": [65535, 0], "for they they sh for they a": [65535, 0], "they they sh for they a s": [65535, 0], "they sh for they a s h": [65535, 0], "sh for they a s h a": [65535, 0], "for they a s h a for": [65535, 0], "they a s h a for they": [65535, 0], "a s h a for they s": [65535, 0], "s h a for they s h": [65535, 0], "h a for they s h oh": [65535, 0], "a for they s h oh i": [65535, 0], "for they s h oh i don't": [65535, 0], "they s h oh i don't know": [65535, 0], "s h oh i don't know what": [65535, 0], "h oh i don't know what it": [65535, 0], "oh i don't know what it is": [65535, 0], "i don't know what it is shall": [65535, 0], "don't know what it is shall oh": [65535, 0], "know what it is shall oh shall": [65535, 0], "what it is shall oh shall for": [65535, 0], "it is shall oh shall for they": [65535, 0], "is shall oh shall for they shall": [65535, 0], "shall oh shall for they shall for": [65535, 0], "oh shall for they shall for they": [65535, 0], "shall for they shall for they shall": [65535, 0], "for they shall for they shall a": [65535, 0], "they shall for they shall a a": [65535, 0], "shall for they shall a a shall": [65535, 0], "for they shall a a shall mourn": [65535, 0], "they shall a a shall mourn a": [65535, 0], "shall a a shall mourn a a": [65535, 0], "a a shall mourn a a blessed": [65535, 0], "a shall mourn a a blessed are": [65535, 0], "shall mourn a a blessed are they": [65535, 0], "mourn a a blessed are they that": [65535, 0], "a a blessed are they that shall": [65535, 0], "a blessed are they that shall they": [65535, 0], "blessed are they that shall they that": [65535, 0], "are they that shall they that a": [65535, 0], "they that shall they that a they": [65535, 0], "that shall they that a they that": [65535, 0], "shall they that a they that shall": [65535, 0], "they that a they that shall mourn": [65535, 0], "that a they that shall mourn for": [65535, 0], "a they that shall mourn for they": [65535, 0], "they that shall mourn for they shall": [65535, 0], "that shall mourn for they shall a": [65535, 0], "shall mourn for they shall a shall": [65535, 0], "mourn for they shall a shall what": [65535, 0], "for they shall a shall what why": [65535, 0], "they shall a shall what why don't": [65535, 0], "shall a shall what why don't you": [65535, 0], "a shall what why don't you tell": [65535, 0], "shall what why don't you tell me": [65535, 0], "what why don't you tell me mary": [65535, 0], "why don't you tell me mary what": [65535, 0], "don't you tell me mary what do": [65535, 0], "you tell me mary what do you": [65535, 0], "tell me mary what do you want": [65535, 0], "me mary what do you want to": [65535, 0], "mary what do you want to be": [65535, 0], "what do you want to be so": [65535, 0], "do you want to be so mean": [65535, 0], "you want to be so mean for": [65535, 0], "want to be so mean for oh": [65535, 0], "to be so mean for oh tom": [65535, 0], "be so mean for oh tom you": [65535, 0], "so mean for oh tom you poor": [65535, 0], "mean for oh tom you poor thick": [65535, 0], "for oh tom you poor thick headed": [65535, 0], "oh tom you poor thick headed thing": [65535, 0], "tom you poor thick headed thing i'm": [65535, 0], "you poor thick headed thing i'm not": [65535, 0], "poor thick headed thing i'm not teasing": [65535, 0], "thick headed thing i'm not teasing you": [65535, 0], "headed thing i'm not teasing you i": [65535, 0], "thing i'm not teasing you i wouldn't": [65535, 0], "i'm not teasing you i wouldn't do": [65535, 0], "not teasing you i wouldn't do that": [65535, 0], "teasing you i wouldn't do that you": [65535, 0], "you i wouldn't do that you must": [65535, 0], "i wouldn't do that you must go": [65535, 0], "wouldn't do that you must go and": [65535, 0], "do that you must go and learn": [65535, 0], "that you must go and learn it": [65535, 0], "you must go and learn it again": [65535, 0], "must go and learn it again don't": [65535, 0], "go and learn it again don't you": [65535, 0], "and learn it again don't you be": [65535, 0], "learn it again don't you be discouraged": [65535, 0], "it again don't you be discouraged tom": [65535, 0], "again don't you be discouraged tom you'll": [65535, 0], "don't you be discouraged tom you'll manage": [65535, 0], "you be discouraged tom you'll manage it": [65535, 0], "be discouraged tom you'll manage it and": [65535, 0], "discouraged tom you'll manage it and if": [65535, 0], "tom you'll manage it and if you": [65535, 0], "you'll manage it and if you do": [65535, 0], "manage it and if you do i'll": [65535, 0], "it and if you do i'll give": [65535, 0], "and if you do i'll give you": [65535, 0], "if you do i'll give you something": [65535, 0], "you do i'll give you something ever": [65535, 0], "do i'll give you something ever so": [65535, 0], "i'll give you something ever so nice": [65535, 0], "give you something ever so nice there": [65535, 0], "you something ever so nice there now": [65535, 0], "something ever so nice there now that's": [65535, 0], "ever so nice there now that's a": [65535, 0], "so nice there now that's a good": [65535, 0], "nice there now that's a good boy": [65535, 0], "there now that's a good boy all": [65535, 0], "now that's a good boy all right": [65535, 0], "that's a good boy all right what": [65535, 0], "a good boy all right what is": [65535, 0], "good boy all right what is it": [65535, 0], "boy all right what is it mary": [65535, 0], "all right what is it mary tell": [65535, 0], "right what is it mary tell me": [65535, 0], "what is it mary tell me what": [65535, 0], "is it mary tell me what it": [65535, 0], "it mary tell me what it is": [65535, 0], "mary tell me what it is never": [65535, 0], "tell me what it is never you": [65535, 0], "me what it is never you mind": [65535, 0], "what it is never you mind tom": [65535, 0], "it is never you mind tom you": [65535, 0], "is never you mind tom you know": [65535, 0], "never you mind tom you know if": [65535, 0], "you mind tom you know if i": [65535, 0], "mind tom you know if i say": [65535, 0], "tom you know if i say it's": [65535, 0], "you know if i say it's nice": [65535, 0], "know if i say it's nice it": [65535, 0], "if i say it's nice it is": [65535, 0], "i say it's nice it is nice": [65535, 0], "say it's nice it is nice you": [65535, 0], "it's nice it is nice you bet": [65535, 0], "nice it is nice you bet you": [65535, 0], "it is nice you bet you that's": [65535, 0], "is nice you bet you that's so": [65535, 0], "nice you bet you that's so mary": [65535, 0], "you bet you that's so mary all": [65535, 0], "bet you that's so mary all right": [65535, 0], "you that's so mary all right i'll": [65535, 0], "that's so mary all right i'll tackle": [65535, 0], "so mary all right i'll tackle it": [65535, 0], "mary all right i'll tackle it again": [65535, 0], "all right i'll tackle it again and": [65535, 0], "right i'll tackle it again and he": [65535, 0], "i'll tackle it again and he did": [65535, 0], "tackle it again and he did tackle": [65535, 0], "it again and he did tackle it": [65535, 0], "again and he did tackle it again": [65535, 0], "and he did tackle it again and": [65535, 0], "he did tackle it again and under": [65535, 0], "did tackle it again and under the": [65535, 0], "tackle it again and under the double": [65535, 0], "it again and under the double pressure": [65535, 0], "again and under the double pressure of": [65535, 0], "and under the double pressure of curiosity": [65535, 0], "under the double pressure of curiosity and": [65535, 0], "the double pressure of curiosity and prospective": [65535, 0], "double pressure of curiosity and prospective gain": [65535, 0], "pressure of curiosity and prospective gain he": [65535, 0], "of curiosity and prospective gain he did": [65535, 0], "curiosity and prospective gain he did it": [65535, 0], "and prospective gain he did it with": [65535, 0], "prospective gain he did it with such": [65535, 0], "gain he did it with such spirit": [65535, 0], "he did it with such spirit that": [65535, 0], "did it with such spirit that he": [65535, 0], "it with such spirit that he accomplished": [65535, 0], "with such spirit that he accomplished a": [65535, 0], "such spirit that he accomplished a shining": [65535, 0], "spirit that he accomplished a shining success": [65535, 0], "that he accomplished a shining success mary": [65535, 0], "he accomplished a shining success mary gave": [65535, 0], "accomplished a shining success mary gave him": [65535, 0], "a shining success mary gave him a": [65535, 0], "shining success mary gave him a brand": [65535, 0], "success mary gave him a brand new": [65535, 0], "mary gave him a brand new barlow": [65535, 0], "gave him a brand new barlow knife": [65535, 0], "him a brand new barlow knife worth": [65535, 0], "a brand new barlow knife worth twelve": [65535, 0], "brand new barlow knife worth twelve and": [65535, 0], "new barlow knife worth twelve and a": [65535, 0], "barlow knife worth twelve and a half": [65535, 0], "knife worth twelve and a half cents": [65535, 0], "worth twelve and a half cents and": [65535, 0], "twelve and a half cents and the": [65535, 0], "and a half cents and the convulsion": [65535, 0], "a half cents and the convulsion of": [65535, 0], "half cents and the convulsion of delight": [65535, 0], "cents and the convulsion of delight that": [65535, 0], "and the convulsion of delight that swept": [65535, 0], "the convulsion of delight that swept his": [65535, 0], "convulsion of delight that swept his system": [65535, 0], "of delight that swept his system shook": [65535, 0], "delight that swept his system shook him": [65535, 0], "that swept his system shook him to": [65535, 0], "swept his system shook him to his": [65535, 0], "his system shook him to his foundations": [65535, 0], "system shook him to his foundations true": [65535, 0], "shook him to his foundations true the": [65535, 0], "him to his foundations true the knife": [65535, 0], "to his foundations true the knife would": [65535, 0], "his foundations true the knife would not": [65535, 0], "foundations true the knife would not cut": [65535, 0], "true the knife would not cut anything": [65535, 0], "the knife would not cut anything but": [65535, 0], "knife would not cut anything but it": [65535, 0], "would not cut anything but it was": [65535, 0], "not cut anything but it was a": [65535, 0], "cut anything but it was a sure": [65535, 0], "anything but it was a sure enough": [65535, 0], "but it was a sure enough barlow": [65535, 0], "it was a sure enough barlow and": [65535, 0], "was a sure enough barlow and there": [65535, 0], "a sure enough barlow and there was": [65535, 0], "sure enough barlow and there was inconceivable": [65535, 0], "enough barlow and there was inconceivable grandeur": [65535, 0], "barlow and there was inconceivable grandeur in": [65535, 0], "and there was inconceivable grandeur in that": [65535, 0], "there was inconceivable grandeur in that though": [65535, 0], "was inconceivable grandeur in that though where": [65535, 0], "inconceivable grandeur in that though where the": [65535, 0], "grandeur in that though where the western": [65535, 0], "in that though where the western boys": [65535, 0], "that though where the western boys ever": [65535, 0], "though where the western boys ever got": [65535, 0], "where the western boys ever got the": [65535, 0], "the western boys ever got the idea": [65535, 0], "western boys ever got the idea that": [65535, 0], "boys ever got the idea that such": [65535, 0], "ever got the idea that such a": [65535, 0], "got the idea that such a weapon": [65535, 0], "the idea that such a weapon could": [65535, 0], "idea that such a weapon could possibly": [65535, 0], "that such a weapon could possibly be": [65535, 0], "such a weapon could possibly be counterfeited": [65535, 0], "a weapon could possibly be counterfeited to": [65535, 0], "weapon could possibly be counterfeited to its": [65535, 0], "could possibly be counterfeited to its injury": [65535, 0], "possibly be counterfeited to its injury is": [65535, 0], "be counterfeited to its injury is an": [65535, 0], "counterfeited to its injury is an imposing": [65535, 0], "to its injury is an imposing mystery": [65535, 0], "its injury is an imposing mystery and": [65535, 0], "injury is an imposing mystery and will": [65535, 0], "is an imposing mystery and will always": [65535, 0], "an imposing mystery and will always remain": [65535, 0], "imposing mystery and will always remain so": [65535, 0], "mystery and will always remain so perhaps": [65535, 0], "and will always remain so perhaps tom": [65535, 0], "will always remain so perhaps tom contrived": [65535, 0], "always remain so perhaps tom contrived to": [65535, 0], "remain so perhaps tom contrived to scarify": [65535, 0], "so perhaps tom contrived to scarify the": [65535, 0], "perhaps tom contrived to scarify the cupboard": [65535, 0], "tom contrived to scarify the cupboard with": [65535, 0], "contrived to scarify the cupboard with it": [65535, 0], "to scarify the cupboard with it and": [65535, 0], "scarify the cupboard with it and was": [65535, 0], "the cupboard with it and was arranging": [65535, 0], "cupboard with it and was arranging to": [65535, 0], "with it and was arranging to begin": [65535, 0], "it and was arranging to begin on": [65535, 0], "and was arranging to begin on the": [65535, 0], "was arranging to begin on the bureau": [65535, 0], "arranging to begin on the bureau when": [65535, 0], "to begin on the bureau when he": [65535, 0], "begin on the bureau when he was": [65535, 0], "on the bureau when he was called": [65535, 0], "the bureau when he was called off": [65535, 0], "bureau when he was called off to": [65535, 0], "when he was called off to dress": [65535, 0], "he was called off to dress for": [65535, 0], "was called off to dress for sunday": [65535, 0], "called off to dress for sunday school": [65535, 0], "off to dress for sunday school mary": [65535, 0], "to dress for sunday school mary gave": [65535, 0], "dress for sunday school mary gave him": [65535, 0], "for sunday school mary gave him a": [65535, 0], "sunday school mary gave him a tin": [65535, 0], "school mary gave him a tin basin": [65535, 0], "mary gave him a tin basin of": [65535, 0], "gave him a tin basin of water": [65535, 0], "him a tin basin of water and": [65535, 0], "a tin basin of water and a": [65535, 0], "tin basin of water and a piece": [65535, 0], "basin of water and a piece of": [65535, 0], "of water and a piece of soap": [65535, 0], "water and a piece of soap and": [65535, 0], "and a piece of soap and he": [65535, 0], "a piece of soap and he went": [65535, 0], "piece of soap and he went outside": [65535, 0], "of soap and he went outside the": [65535, 0], "soap and he went outside the door": [65535, 0], "and he went outside the door and": [65535, 0], "he went outside the door and set": [65535, 0], "went outside the door and set the": [65535, 0], "outside the door and set the basin": [65535, 0], "the door and set the basin on": [65535, 0], "door and set the basin on a": [65535, 0], "and set the basin on a little": [65535, 0], "set the basin on a little bench": [65535, 0], "the basin on a little bench there": [65535, 0], "basin on a little bench there then": [65535, 0], "on a little bench there then he": [65535, 0], "a little bench there then he dipped": [65535, 0], "little bench there then he dipped the": [65535, 0], "bench there then he dipped the soap": [65535, 0], "there then he dipped the soap in": [65535, 0], "then he dipped the soap in the": [65535, 0], "he dipped the soap in the water": [65535, 0], "dipped the soap in the water and": [65535, 0], "the soap in the water and laid": [65535, 0], "soap in the water and laid it": [65535, 0], "in the water and laid it down": [65535, 0], "the water and laid it down turned": [65535, 0], "water and laid it down turned up": [65535, 0], "and laid it down turned up his": [65535, 0], "laid it down turned up his sleeves": [65535, 0], "it down turned up his sleeves poured": [65535, 0], "down turned up his sleeves poured out": [65535, 0], "turned up his sleeves poured out the": [65535, 0], "up his sleeves poured out the water": [65535, 0], "his sleeves poured out the water on": [65535, 0], "sleeves poured out the water on the": [65535, 0], "poured out the water on the ground": [65535, 0], "out the water on the ground gently": [65535, 0], "the water on the ground gently and": [65535, 0], "water on the ground gently and then": [65535, 0], "on the ground gently and then entered": [65535, 0], "the ground gently and then entered the": [65535, 0], "ground gently and then entered the kitchen": [65535, 0], "gently and then entered the kitchen and": [65535, 0], "and then entered the kitchen and began": [65535, 0], "then entered the kitchen and began to": [65535, 0], "entered the kitchen and began to wipe": [65535, 0], "the kitchen and began to wipe his": [65535, 0], "kitchen and began to wipe his face": [65535, 0], "and began to wipe his face diligently": [65535, 0], "began to wipe his face diligently on": [65535, 0], "to wipe his face diligently on the": [65535, 0], "wipe his face diligently on the towel": [65535, 0], "his face diligently on the towel behind": [65535, 0], "face diligently on the towel behind the": [65535, 0], "diligently on the towel behind the door": [65535, 0], "on the towel behind the door but": [65535, 0], "the towel behind the door but mary": [65535, 0], "towel behind the door but mary removed": [65535, 0], "behind the door but mary removed the": [65535, 0], "the door but mary removed the towel": [65535, 0], "door but mary removed the towel and": [65535, 0], "but mary removed the towel and said": [65535, 0], "mary removed the towel and said now": [65535, 0], "removed the towel and said now ain't": [65535, 0], "the towel and said now ain't you": [65535, 0], "towel and said now ain't you ashamed": [65535, 0], "and said now ain't you ashamed tom": [65535, 0], "said now ain't you ashamed tom you": [65535, 0], "now ain't you ashamed tom you mustn't": [65535, 0], "ain't you ashamed tom you mustn't be": [65535, 0], "you ashamed tom you mustn't be so": [65535, 0], "ashamed tom you mustn't be so bad": [65535, 0], "tom you mustn't be so bad water": [65535, 0], "you mustn't be so bad water won't": [65535, 0], "mustn't be so bad water won't hurt": [65535, 0], "be so bad water won't hurt you": [65535, 0], "so bad water won't hurt you tom": [65535, 0], "bad water won't hurt you tom was": [65535, 0], "water won't hurt you tom was a": [65535, 0], "won't hurt you tom was a trifle": [65535, 0], "hurt you tom was a trifle disconcerted": [65535, 0], "you tom was a trifle disconcerted the": [65535, 0], "tom was a trifle disconcerted the basin": [65535, 0], "was a trifle disconcerted the basin was": [65535, 0], "a trifle disconcerted the basin was refilled": [65535, 0], "trifle disconcerted the basin was refilled and": [65535, 0], "disconcerted the basin was refilled and this": [65535, 0], "the basin was refilled and this time": [65535, 0], "basin was refilled and this time he": [65535, 0], "was refilled and this time he stood": [65535, 0], "refilled and this time he stood over": [65535, 0], "and this time he stood over it": [65535, 0], "this time he stood over it a": [65535, 0], "time he stood over it a little": [65535, 0], "he stood over it a little while": [65535, 0], "stood over it a little while gathering": [65535, 0], "over it a little while gathering resolution": [65535, 0], "it a little while gathering resolution took": [65535, 0], "a little while gathering resolution took in": [65535, 0], "little while gathering resolution took in a": [65535, 0], "while gathering resolution took in a big": [65535, 0], "gathering resolution took in a big breath": [65535, 0], "resolution took in a big breath and": [65535, 0], "took in a big breath and began": [65535, 0], "in a big breath and began when": [65535, 0], "a big breath and began when he": [65535, 0], "big breath and began when he entered": [65535, 0], "breath and began when he entered the": [65535, 0], "and began when he entered the kitchen": [65535, 0], "began when he entered the kitchen presently": [65535, 0], "when he entered the kitchen presently with": [65535, 0], "he entered the kitchen presently with both": [65535, 0], "entered the kitchen presently with both eyes": [65535, 0], "the kitchen presently with both eyes shut": [65535, 0], "kitchen presently with both eyes shut and": [65535, 0], "presently with both eyes shut and groping": [65535, 0], "with both eyes shut and groping for": [65535, 0], "both eyes shut and groping for the": [65535, 0], "eyes shut and groping for the towel": [65535, 0], "shut and groping for the towel with": [65535, 0], "and groping for the towel with his": [65535, 0], "groping for the towel with his hands": [65535, 0], "for the towel with his hands an": [65535, 0], "the towel with his hands an honorable": [65535, 0], "towel with his hands an honorable testimony": [65535, 0], "with his hands an honorable testimony of": [65535, 0], "his hands an honorable testimony of suds": [65535, 0], "hands an honorable testimony of suds and": [65535, 0], "an honorable testimony of suds and water": [65535, 0], "honorable testimony of suds and water was": [65535, 0], "testimony of suds and water was dripping": [65535, 0], "of suds and water was dripping from": [65535, 0], "suds and water was dripping from his": [65535, 0], "and water was dripping from his face": [65535, 0], "water was dripping from his face but": [65535, 0], "was dripping from his face but when": [65535, 0], "dripping from his face but when he": [65535, 0], "from his face but when he emerged": [65535, 0], "his face but when he emerged from": [65535, 0], "face but when he emerged from the": [65535, 0], "but when he emerged from the towel": [65535, 0], "when he emerged from the towel he": [65535, 0], "he emerged from the towel he was": [65535, 0], "emerged from the towel he was not": [65535, 0], "from the towel he was not yet": [65535, 0], "the towel he was not yet satisfactory": [65535, 0], "towel he was not yet satisfactory for": [65535, 0], "he was not yet satisfactory for the": [65535, 0], "was not yet satisfactory for the clean": [65535, 0], "not yet satisfactory for the clean territory": [65535, 0], "yet satisfactory for the clean territory stopped": [65535, 0], "satisfactory for the clean territory stopped short": [65535, 0], "for the clean territory stopped short at": [65535, 0], "the clean territory stopped short at his": [65535, 0], "clean territory stopped short at his chin": [65535, 0], "territory stopped short at his chin and": [65535, 0], "stopped short at his chin and his": [65535, 0], "short at his chin and his jaws": [65535, 0], "at his chin and his jaws like": [65535, 0], "his chin and his jaws like a": [65535, 0], "chin and his jaws like a mask": [65535, 0], "and his jaws like a mask below": [65535, 0], "his jaws like a mask below and": [65535, 0], "jaws like a mask below and beyond": [65535, 0], "like a mask below and beyond this": [65535, 0], "a mask below and beyond this line": [65535, 0], "mask below and beyond this line there": [65535, 0], "below and beyond this line there was": [65535, 0], "and beyond this line there was a": [65535, 0], "beyond this line there was a dark": [65535, 0], "this line there was a dark expanse": [65535, 0], "line there was a dark expanse of": [65535, 0], "there was a dark expanse of unirrigated": [65535, 0], "was a dark expanse of unirrigated soil": [65535, 0], "a dark expanse of unirrigated soil that": [65535, 0], "dark expanse of unirrigated soil that spread": [65535, 0], "expanse of unirrigated soil that spread downward": [65535, 0], "of unirrigated soil that spread downward in": [65535, 0], "unirrigated soil that spread downward in front": [65535, 0], "soil that spread downward in front and": [65535, 0], "that spread downward in front and backward": [65535, 0], "spread downward in front and backward around": [65535, 0], "downward in front and backward around his": [65535, 0], "in front and backward around his neck": [65535, 0], "front and backward around his neck mary": [65535, 0], "and backward around his neck mary took": [65535, 0], "backward around his neck mary took him": [65535, 0], "around his neck mary took him in": [65535, 0], "his neck mary took him in hand": [65535, 0], "neck mary took him in hand and": [65535, 0], "mary took him in hand and when": [65535, 0], "took him in hand and when she": [65535, 0], "him in hand and when she was": [65535, 0], "in hand and when she was done": [65535, 0], "hand and when she was done with": [65535, 0], "and when she was done with him": [65535, 0], "when she was done with him he": [65535, 0], "she was done with him he was": [65535, 0], "was done with him he was a": [65535, 0], "done with him he was a man": [65535, 0], "with him he was a man and": [65535, 0], "him he was a man and a": [65535, 0], "he was a man and a brother": [65535, 0], "was a man and a brother without": [65535, 0], "a man and a brother without distinction": [65535, 0], "man and a brother without distinction of": [65535, 0], "and a brother without distinction of color": [65535, 0], "a brother without distinction of color and": [65535, 0], "brother without distinction of color and his": [65535, 0], "without distinction of color and his saturated": [65535, 0], "distinction of color and his saturated hair": [65535, 0], "of color and his saturated hair was": [65535, 0], "color and his saturated hair was neatly": [65535, 0], "and his saturated hair was neatly brushed": [65535, 0], "his saturated hair was neatly brushed and": [65535, 0], "saturated hair was neatly brushed and its": [65535, 0], "hair was neatly brushed and its short": [65535, 0], "was neatly brushed and its short curls": [65535, 0], "neatly brushed and its short curls wrought": [65535, 0], "brushed and its short curls wrought into": [65535, 0], "and its short curls wrought into a": [65535, 0], "its short curls wrought into a dainty": [65535, 0], "short curls wrought into a dainty and": [65535, 0], "curls wrought into a dainty and symmetrical": [65535, 0], "wrought into a dainty and symmetrical general": [65535, 0], "into a dainty and symmetrical general effect": [65535, 0], "a dainty and symmetrical general effect he": [65535, 0], "dainty and symmetrical general effect he privately": [65535, 0], "and symmetrical general effect he privately smoothed": [65535, 0], "symmetrical general effect he privately smoothed out": [65535, 0], "general effect he privately smoothed out the": [65535, 0], "effect he privately smoothed out the curls": [65535, 0], "he privately smoothed out the curls with": [65535, 0], "privately smoothed out the curls with labor": [65535, 0], "smoothed out the curls with labor and": [65535, 0], "out the curls with labor and difficulty": [65535, 0], "the curls with labor and difficulty and": [65535, 0], "curls with labor and difficulty and plastered": [65535, 0], "with labor and difficulty and plastered his": [65535, 0], "labor and difficulty and plastered his hair": [65535, 0], "and difficulty and plastered his hair close": [65535, 0], "difficulty and plastered his hair close down": [65535, 0], "and plastered his hair close down to": [65535, 0], "plastered his hair close down to his": [65535, 0], "his hair close down to his head": [65535, 0], "hair close down to his head for": [65535, 0], "close down to his head for he": [65535, 0], "down to his head for he held": [65535, 0], "to his head for he held curls": [65535, 0], "his head for he held curls to": [65535, 0], "head for he held curls to be": [65535, 0], "for he held curls to be effeminate": [65535, 0], "he held curls to be effeminate and": [65535, 0], "held curls to be effeminate and his": [65535, 0], "curls to be effeminate and his own": [65535, 0], "to be effeminate and his own filled": [65535, 0], "be effeminate and his own filled his": [65535, 0], "effeminate and his own filled his life": [65535, 0], "and his own filled his life with": [65535, 0], "his own filled his life with bitterness": [65535, 0], "own filled his life with bitterness then": [65535, 0], "filled his life with bitterness then mary": [65535, 0], "his life with bitterness then mary got": [65535, 0], "life with bitterness then mary got out": [65535, 0], "with bitterness then mary got out a": [65535, 0], "bitterness then mary got out a suit": [65535, 0], "then mary got out a suit of": [65535, 0], "mary got out a suit of his": [65535, 0], "got out a suit of his clothing": [65535, 0], "out a suit of his clothing that": [65535, 0], "a suit of his clothing that had": [65535, 0], "suit of his clothing that had been": [65535, 0], "of his clothing that had been used": [65535, 0], "his clothing that had been used only": [65535, 0], "clothing that had been used only on": [65535, 0], "that had been used only on sundays": [65535, 0], "had been used only on sundays during": [65535, 0], "been used only on sundays during two": [65535, 0], "used only on sundays during two years": [65535, 0], "only on sundays during two years they": [65535, 0], "on sundays during two years they were": [65535, 0], "sundays during two years they were simply": [65535, 0], "during two years they were simply called": [65535, 0], "two years they were simply called his": [65535, 0], "years they were simply called his other": [65535, 0], "they were simply called his other clothes": [65535, 0], "were simply called his other clothes and": [65535, 0], "simply called his other clothes and so": [65535, 0], "called his other clothes and so by": [65535, 0], "his other clothes and so by that": [65535, 0], "other clothes and so by that we": [65535, 0], "clothes and so by that we know": [65535, 0], "and so by that we know the": [65535, 0], "so by that we know the size": [65535, 0], "by that we know the size of": [65535, 0], "that we know the size of his": [65535, 0], "we know the size of his wardrobe": [65535, 0], "know the size of his wardrobe the": [65535, 0], "the size of his wardrobe the girl": [65535, 0], "size of his wardrobe the girl put": [65535, 0], "of his wardrobe the girl put him": [65535, 0], "his wardrobe the girl put him to": [65535, 0], "wardrobe the girl put him to rights": [65535, 0], "the girl put him to rights after": [65535, 0], "girl put him to rights after he": [65535, 0], "put him to rights after he had": [65535, 0], "him to rights after he had dressed": [65535, 0], "to rights after he had dressed himself": [65535, 0], "rights after he had dressed himself she": [65535, 0], "after he had dressed himself she buttoned": [65535, 0], "he had dressed himself she buttoned his": [65535, 0], "had dressed himself she buttoned his neat": [65535, 0], "dressed himself she buttoned his neat roundabout": [65535, 0], "himself she buttoned his neat roundabout up": [65535, 0], "she buttoned his neat roundabout up to": [65535, 0], "buttoned his neat roundabout up to his": [65535, 0], "his neat roundabout up to his chin": [65535, 0], "neat roundabout up to his chin turned": [65535, 0], "roundabout up to his chin turned his": [65535, 0], "up to his chin turned his vast": [65535, 0], "to his chin turned his vast shirt": [65535, 0], "his chin turned his vast shirt collar": [65535, 0], "chin turned his vast shirt collar down": [65535, 0], "turned his vast shirt collar down over": [65535, 0], "his vast shirt collar down over his": [65535, 0], "vast shirt collar down over his shoulders": [65535, 0], "shirt collar down over his shoulders brushed": [65535, 0], "collar down over his shoulders brushed him": [65535, 0], "down over his shoulders brushed him off": [65535, 0], "over his shoulders brushed him off and": [65535, 0], "his shoulders brushed him off and crowned": [65535, 0], "shoulders brushed him off and crowned him": [65535, 0], "brushed him off and crowned him with": [65535, 0], "him off and crowned him with his": [65535, 0], "off and crowned him with his speckled": [65535, 0], "and crowned him with his speckled straw": [65535, 0], "crowned him with his speckled straw hat": [65535, 0], "him with his speckled straw hat he": [65535, 0], "with his speckled straw hat he now": [65535, 0], "his speckled straw hat he now looked": [65535, 0], "speckled straw hat he now looked exceedingly": [65535, 0], "straw hat he now looked exceedingly improved": [65535, 0], "hat he now looked exceedingly improved and": [65535, 0], "he now looked exceedingly improved and uncomfortable": [65535, 0], "now looked exceedingly improved and uncomfortable he": [65535, 0], "looked exceedingly improved and uncomfortable he was": [65535, 0], "exceedingly improved and uncomfortable he was fully": [65535, 0], "improved and uncomfortable he was fully as": [65535, 0], "and uncomfortable he was fully as uncomfortable": [65535, 0], "uncomfortable he was fully as uncomfortable as": [65535, 0], "he was fully as uncomfortable as he": [65535, 0], "was fully as uncomfortable as he looked": [65535, 0], "fully as uncomfortable as he looked for": [65535, 0], "as uncomfortable as he looked for there": [65535, 0], "uncomfortable as he looked for there was": [65535, 0], "as he looked for there was a": [65535, 0], "he looked for there was a restraint": [65535, 0], "looked for there was a restraint about": [65535, 0], "for there was a restraint about whole": [65535, 0], "there was a restraint about whole clothes": [65535, 0], "was a restraint about whole clothes and": [65535, 0], "a restraint about whole clothes and cleanliness": [65535, 0], "restraint about whole clothes and cleanliness that": [65535, 0], "about whole clothes and cleanliness that galled": [65535, 0], "whole clothes and cleanliness that galled him": [65535, 0], "clothes and cleanliness that galled him he": [65535, 0], "and cleanliness that galled him he hoped": [65535, 0], "cleanliness that galled him he hoped that": [65535, 0], "that galled him he hoped that mary": [65535, 0], "galled him he hoped that mary would": [65535, 0], "him he hoped that mary would forget": [65535, 0], "he hoped that mary would forget his": [65535, 0], "hoped that mary would forget his shoes": [65535, 0], "that mary would forget his shoes but": [65535, 0], "mary would forget his shoes but the": [65535, 0], "would forget his shoes but the hope": [65535, 0], "forget his shoes but the hope was": [65535, 0], "his shoes but the hope was blighted": [65535, 0], "shoes but the hope was blighted she": [65535, 0], "but the hope was blighted she coated": [65535, 0], "the hope was blighted she coated them": [65535, 0], "hope was blighted she coated them thoroughly": [65535, 0], "was blighted she coated them thoroughly with": [65535, 0], "blighted she coated them thoroughly with tallow": [65535, 0], "she coated them thoroughly with tallow as": [65535, 0], "coated them thoroughly with tallow as was": [65535, 0], "them thoroughly with tallow as was the": [65535, 0], "thoroughly with tallow as was the custom": [65535, 0], "with tallow as was the custom and": [65535, 0], "tallow as was the custom and brought": [65535, 0], "as was the custom and brought them": [65535, 0], "was the custom and brought them out": [65535, 0], "the custom and brought them out he": [65535, 0], "custom and brought them out he lost": [65535, 0], "and brought them out he lost his": [65535, 0], "brought them out he lost his temper": [65535, 0], "them out he lost his temper and": [65535, 0], "out he lost his temper and said": [65535, 0], "he lost his temper and said he": [65535, 0], "lost his temper and said he was": [65535, 0], "his temper and said he was always": [65535, 0], "temper and said he was always being": [65535, 0], "and said he was always being made": [65535, 0], "said he was always being made to": [65535, 0], "he was always being made to do": [65535, 0], "was always being made to do everything": [65535, 0], "always being made to do everything he": [65535, 0], "being made to do everything he didn't": [65535, 0], "made to do everything he didn't want": [65535, 0], "to do everything he didn't want to": [65535, 0], "do everything he didn't want to do": [65535, 0], "everything he didn't want to do but": [65535, 0], "he didn't want to do but mary": [65535, 0], "didn't want to do but mary said": [65535, 0], "want to do but mary said persuasively": [65535, 0], "to do but mary said persuasively please": [65535, 0], "do but mary said persuasively please tom": [65535, 0], "but mary said persuasively please tom that's": [65535, 0], "mary said persuasively please tom that's a": [65535, 0], "said persuasively please tom that's a good": [65535, 0], "persuasively please tom that's a good boy": [65535, 0], "please tom that's a good boy so": [65535, 0], "tom that's a good boy so he": [65535, 0], "that's a good boy so he got": [65535, 0], "a good boy so he got into": [65535, 0], "good boy so he got into the": [65535, 0], "boy so he got into the shoes": [65535, 0], "so he got into the shoes snarling": [65535, 0], "he got into the shoes snarling mary": [65535, 0], "got into the shoes snarling mary was": [65535, 0], "into the shoes snarling mary was soon": [65535, 0], "the shoes snarling mary was soon ready": [65535, 0], "shoes snarling mary was soon ready and": [65535, 0], "snarling mary was soon ready and the": [65535, 0], "mary was soon ready and the three": [65535, 0], "was soon ready and the three children": [65535, 0], "soon ready and the three children set": [65535, 0], "ready and the three children set out": [65535, 0], "and the three children set out for": [65535, 0], "the three children set out for sunday": [65535, 0], "three children set out for sunday school": [65535, 0], "children set out for sunday school a": [65535, 0], "set out for sunday school a place": [65535, 0], "out for sunday school a place that": [65535, 0], "for sunday school a place that tom": [65535, 0], "sunday school a place that tom hated": [65535, 0], "school a place that tom hated with": [65535, 0], "a place that tom hated with his": [65535, 0], "place that tom hated with his whole": [65535, 0], "that tom hated with his whole heart": [65535, 0], "tom hated with his whole heart but": [65535, 0], "hated with his whole heart but sid": [65535, 0], "with his whole heart but sid and": [65535, 0], "his whole heart but sid and mary": [65535, 0], "whole heart but sid and mary were": [65535, 0], "heart but sid and mary were fond": [65535, 0], "but sid and mary were fond of": [65535, 0], "sid and mary were fond of it": [65535, 0], "and mary were fond of it sabbath": [65535, 0], "mary were fond of it sabbath school": [65535, 0], "were fond of it sabbath school hours": [65535, 0], "fond of it sabbath school hours were": [65535, 0], "of it sabbath school hours were from": [65535, 0], "it sabbath school hours were from nine": [65535, 0], "sabbath school hours were from nine to": [65535, 0], "school hours were from nine to half": [65535, 0], "hours were from nine to half past": [65535, 0], "were from nine to half past ten": [65535, 0], "from nine to half past ten and": [65535, 0], "nine to half past ten and then": [65535, 0], "to half past ten and then church": [65535, 0], "half past ten and then church service": [65535, 0], "past ten and then church service two": [65535, 0], "ten and then church service two of": [65535, 0], "and then church service two of the": [65535, 0], "then church service two of the children": [65535, 0], "church service two of the children always": [65535, 0], "service two of the children always remained": [65535, 0], "two of the children always remained for": [65535, 0], "of the children always remained for the": [65535, 0], "the children always remained for the sermon": [65535, 0], "children always remained for the sermon voluntarily": [65535, 0], "always remained for the sermon voluntarily and": [65535, 0], "remained for the sermon voluntarily and the": [65535, 0], "for the sermon voluntarily and the other": [65535, 0], "the sermon voluntarily and the other always": [65535, 0], "sermon voluntarily and the other always remained": [65535, 0], "voluntarily and the other always remained too": [65535, 0], "and the other always remained too for": [65535, 0], "the other always remained too for stronger": [65535, 0], "other always remained too for stronger reasons": [65535, 0], "always remained too for stronger reasons the": [65535, 0], "remained too for stronger reasons the church's": [65535, 0], "too for stronger reasons the church's high": [65535, 0], "for stronger reasons the church's high backed": [65535, 0], "stronger reasons the church's high backed uncushioned": [65535, 0], "reasons the church's high backed uncushioned pews": [65535, 0], "the church's high backed uncushioned pews would": [65535, 0], "church's high backed uncushioned pews would seat": [65535, 0], "high backed uncushioned pews would seat about": [65535, 0], "backed uncushioned pews would seat about three": [65535, 0], "uncushioned pews would seat about three hundred": [65535, 0], "pews would seat about three hundred persons": [65535, 0], "would seat about three hundred persons the": [65535, 0], "seat about three hundred persons the edifice": [65535, 0], "about three hundred persons the edifice was": [65535, 0], "three hundred persons the edifice was but": [65535, 0], "hundred persons the edifice was but a": [65535, 0], "persons the edifice was but a small": [65535, 0], "the edifice was but a small plain": [65535, 0], "edifice was but a small plain affair": [65535, 0], "was but a small plain affair with": [65535, 0], "but a small plain affair with a": [65535, 0], "a small plain affair with a sort": [65535, 0], "small plain affair with a sort of": [65535, 0], "plain affair with a sort of pine": [65535, 0], "affair with a sort of pine board": [65535, 0], "with a sort of pine board tree": [65535, 0], "a sort of pine board tree box": [65535, 0], "sort of pine board tree box on": [65535, 0], "of pine board tree box on top": [65535, 0], "pine board tree box on top of": [65535, 0], "board tree box on top of it": [65535, 0], "tree box on top of it for": [65535, 0], "box on top of it for a": [65535, 0], "on top of it for a steeple": [65535, 0], "top of it for a steeple at": [65535, 0], "of it for a steeple at the": [65535, 0], "it for a steeple at the door": [65535, 0], "for a steeple at the door tom": [65535, 0], "a steeple at the door tom dropped": [65535, 0], "steeple at the door tom dropped back": [65535, 0], "at the door tom dropped back a": [65535, 0], "the door tom dropped back a step": [65535, 0], "door tom dropped back a step and": [65535, 0], "tom dropped back a step and accosted": [65535, 0], "dropped back a step and accosted a": [65535, 0], "back a step and accosted a sunday": [65535, 0], "a step and accosted a sunday dressed": [65535, 0], "step and accosted a sunday dressed comrade": [65535, 0], "and accosted a sunday dressed comrade say": [65535, 0], "accosted a sunday dressed comrade say billy": [65535, 0], "a sunday dressed comrade say billy got": [65535, 0], "sunday dressed comrade say billy got a": [65535, 0], "dressed comrade say billy got a yaller": [65535, 0], "comrade say billy got a yaller ticket": [65535, 0], "say billy got a yaller ticket yes": [65535, 0], "billy got a yaller ticket yes what'll": [65535, 0], "got a yaller ticket yes what'll you": [65535, 0], "a yaller ticket yes what'll you take": [65535, 0], "yaller ticket yes what'll you take for": [65535, 0], "ticket yes what'll you take for her": [65535, 0], "yes what'll you take for her what'll": [65535, 0], "what'll you take for her what'll you": [65535, 0], "you take for her what'll you give": [65535, 0], "take for her what'll you give piece": [65535, 0], "for her what'll you give piece of": [65535, 0], "her what'll you give piece of lickrish": [65535, 0], "what'll you give piece of lickrish and": [65535, 0], "you give piece of lickrish and a": [65535, 0], "give piece of lickrish and a fish": [65535, 0], "piece of lickrish and a fish hook": [65535, 0], "of lickrish and a fish hook less": [65535, 0], "lickrish and a fish hook less see": [65535, 0], "and a fish hook less see 'em": [65535, 0], "a fish hook less see 'em tom": [65535, 0], "fish hook less see 'em tom exhibited": [65535, 0], "hook less see 'em tom exhibited they": [65535, 0], "less see 'em tom exhibited they were": [65535, 0], "see 'em tom exhibited they were satisfactory": [65535, 0], "'em tom exhibited they were satisfactory and": [65535, 0], "tom exhibited they were satisfactory and the": [65535, 0], "exhibited they were satisfactory and the property": [65535, 0], "they were satisfactory and the property changed": [65535, 0], "were satisfactory and the property changed hands": [65535, 0], "satisfactory and the property changed hands then": [65535, 0], "and the property changed hands then tom": [65535, 0], "the property changed hands then tom traded": [65535, 0], "property changed hands then tom traded a": [65535, 0], "changed hands then tom traded a couple": [65535, 0], "hands then tom traded a couple of": [65535, 0], "then tom traded a couple of white": [65535, 0], "tom traded a couple of white alleys": [65535, 0], "traded a couple of white alleys for": [65535, 0], "a couple of white alleys for three": [65535, 0], "couple of white alleys for three red": [65535, 0], "of white alleys for three red tickets": [65535, 0], "white alleys for three red tickets and": [65535, 0], "alleys for three red tickets and some": [65535, 0], "for three red tickets and some small": [65535, 0], "three red tickets and some small trifle": [65535, 0], "red tickets and some small trifle or": [65535, 0], "tickets and some small trifle or other": [65535, 0], "and some small trifle or other for": [65535, 0], "some small trifle or other for a": [65535, 0], "small trifle or other for a couple": [65535, 0], "trifle or other for a couple of": [65535, 0], "or other for a couple of blue": [65535, 0], "other for a couple of blue ones": [65535, 0], "for a couple of blue ones he": [65535, 0], "a couple of blue ones he waylaid": [65535, 0], "couple of blue ones he waylaid other": [65535, 0], "of blue ones he waylaid other boys": [65535, 0], "blue ones he waylaid other boys as": [65535, 0], "ones he waylaid other boys as they": [65535, 0], "he waylaid other boys as they came": [65535, 0], "waylaid other boys as they came and": [65535, 0], "other boys as they came and went": [65535, 0], "boys as they came and went on": [65535, 0], "as they came and went on buying": [65535, 0], "they came and went on buying tickets": [65535, 0], "came and went on buying tickets of": [65535, 0], "and went on buying tickets of various": [65535, 0], "went on buying tickets of various colors": [65535, 0], "on buying tickets of various colors ten": [65535, 0], "buying tickets of various colors ten or": [65535, 0], "tickets of various colors ten or fifteen": [65535, 0], "of various colors ten or fifteen minutes": [65535, 0], "various colors ten or fifteen minutes longer": [65535, 0], "colors ten or fifteen minutes longer he": [65535, 0], "ten or fifteen minutes longer he entered": [65535, 0], "or fifteen minutes longer he entered the": [65535, 0], "fifteen minutes longer he entered the church": [65535, 0], "minutes longer he entered the church now": [65535, 0], "longer he entered the church now with": [65535, 0], "he entered the church now with a": [65535, 0], "entered the church now with a swarm": [65535, 0], "the church now with a swarm of": [65535, 0], "church now with a swarm of clean": [65535, 0], "now with a swarm of clean and": [65535, 0], "with a swarm of clean and noisy": [65535, 0], "a swarm of clean and noisy boys": [65535, 0], "swarm of clean and noisy boys and": [65535, 0], "of clean and noisy boys and girls": [65535, 0], "clean and noisy boys and girls proceeded": [65535, 0], "and noisy boys and girls proceeded to": [65535, 0], "noisy boys and girls proceeded to his": [65535, 0], "boys and girls proceeded to his seat": [65535, 0], "and girls proceeded to his seat and": [65535, 0], "girls proceeded to his seat and started": [65535, 0], "proceeded to his seat and started a": [65535, 0], "to his seat and started a quarrel": [65535, 0], "his seat and started a quarrel with": [65535, 0], "seat and started a quarrel with the": [65535, 0], "and started a quarrel with the first": [65535, 0], "started a quarrel with the first boy": [65535, 0], "a quarrel with the first boy that": [65535, 0], "quarrel with the first boy that came": [65535, 0], "with the first boy that came handy": [65535, 0], "the first boy that came handy the": [65535, 0], "first boy that came handy the teacher": [65535, 0], "boy that came handy the teacher a": [65535, 0], "that came handy the teacher a grave": [65535, 0], "came handy the teacher a grave elderly": [65535, 0], "handy the teacher a grave elderly man": [65535, 0], "the teacher a grave elderly man interfered": [65535, 0], "teacher a grave elderly man interfered then": [65535, 0], "a grave elderly man interfered then turned": [65535, 0], "grave elderly man interfered then turned his": [65535, 0], "elderly man interfered then turned his back": [65535, 0], "man interfered then turned his back a": [65535, 0], "interfered then turned his back a moment": [65535, 0], "then turned his back a moment and": [65535, 0], "turned his back a moment and tom": [65535, 0], "his back a moment and tom pulled": [65535, 0], "back a moment and tom pulled a": [65535, 0], "a moment and tom pulled a boy's": [65535, 0], "moment and tom pulled a boy's hair": [65535, 0], "and tom pulled a boy's hair in": [65535, 0], "tom pulled a boy's hair in the": [65535, 0], "pulled a boy's hair in the next": [65535, 0], "a boy's hair in the next bench": [65535, 0], "boy's hair in the next bench and": [65535, 0], "hair in the next bench and was": [65535, 0], "in the next bench and was absorbed": [65535, 0], "the next bench and was absorbed in": [65535, 0], "next bench and was absorbed in his": [65535, 0], "bench and was absorbed in his book": [65535, 0], "and was absorbed in his book when": [65535, 0], "was absorbed in his book when the": [65535, 0], "absorbed in his book when the boy": [65535, 0], "in his book when the boy turned": [65535, 0], "his book when the boy turned around": [65535, 0], "book when the boy turned around stuck": [65535, 0], "when the boy turned around stuck a": [65535, 0], "the boy turned around stuck a pin": [65535, 0], "boy turned around stuck a pin in": [65535, 0], "turned around stuck a pin in another": [65535, 0], "around stuck a pin in another boy": [65535, 0], "stuck a pin in another boy presently": [65535, 0], "a pin in another boy presently in": [65535, 0], "pin in another boy presently in order": [65535, 0], "in another boy presently in order to": [65535, 0], "another boy presently in order to hear": [65535, 0], "boy presently in order to hear him": [65535, 0], "presently in order to hear him say": [65535, 0], "in order to hear him say ouch": [65535, 0], "order to hear him say ouch and": [65535, 0], "to hear him say ouch and got": [65535, 0], "hear him say ouch and got a": [65535, 0], "him say ouch and got a new": [65535, 0], "say ouch and got a new reprimand": [65535, 0], "ouch and got a new reprimand from": [65535, 0], "and got a new reprimand from his": [65535, 0], "got a new reprimand from his teacher": [65535, 0], "a new reprimand from his teacher tom's": [65535, 0], "new reprimand from his teacher tom's whole": [65535, 0], "reprimand from his teacher tom's whole class": [65535, 0], "from his teacher tom's whole class were": [65535, 0], "his teacher tom's whole class were of": [65535, 0], "teacher tom's whole class were of a": [65535, 0], "tom's whole class were of a pattern": [65535, 0], "whole class were of a pattern restless": [65535, 0], "class were of a pattern restless noisy": [65535, 0], "were of a pattern restless noisy and": [65535, 0], "of a pattern restless noisy and troublesome": [65535, 0], "a pattern restless noisy and troublesome when": [65535, 0], "pattern restless noisy and troublesome when they": [65535, 0], "restless noisy and troublesome when they came": [65535, 0], "noisy and troublesome when they came to": [65535, 0], "and troublesome when they came to recite": [65535, 0], "troublesome when they came to recite their": [65535, 0], "when they came to recite their lessons": [65535, 0], "they came to recite their lessons not": [65535, 0], "came to recite their lessons not one": [65535, 0], "to recite their lessons not one of": [65535, 0], "recite their lessons not one of them": [65535, 0], "their lessons not one of them knew": [65535, 0], "lessons not one of them knew his": [65535, 0], "not one of them knew his verses": [65535, 0], "one of them knew his verses perfectly": [65535, 0], "of them knew his verses perfectly but": [65535, 0], "them knew his verses perfectly but had": [65535, 0], "knew his verses perfectly but had to": [65535, 0], "his verses perfectly but had to be": [65535, 0], "verses perfectly but had to be prompted": [65535, 0], "perfectly but had to be prompted all": [65535, 0], "but had to be prompted all along": [65535, 0], "had to be prompted all along however": [65535, 0], "to be prompted all along however they": [65535, 0], "be prompted all along however they worried": [65535, 0], "prompted all along however they worried through": [65535, 0], "all along however they worried through and": [65535, 0], "along however they worried through and each": [65535, 0], "however they worried through and each got": [65535, 0], "they worried through and each got his": [65535, 0], "worried through and each got his reward": [65535, 0], "through and each got his reward in": [65535, 0], "and each got his reward in small": [65535, 0], "each got his reward in small blue": [65535, 0], "got his reward in small blue tickets": [65535, 0], "his reward in small blue tickets each": [65535, 0], "reward in small blue tickets each with": [65535, 0], "in small blue tickets each with a": [65535, 0], "small blue tickets each with a passage": [65535, 0], "blue tickets each with a passage of": [65535, 0], "tickets each with a passage of scripture": [65535, 0], "each with a passage of scripture on": [65535, 0], "with a passage of scripture on it": [65535, 0], "a passage of scripture on it each": [65535, 0], "passage of scripture on it each blue": [65535, 0], "of scripture on it each blue ticket": [65535, 0], "scripture on it each blue ticket was": [65535, 0], "on it each blue ticket was pay": [65535, 0], "it each blue ticket was pay for": [65535, 0], "each blue ticket was pay for two": [65535, 0], "blue ticket was pay for two verses": [65535, 0], "ticket was pay for two verses of": [65535, 0], "was pay for two verses of the": [65535, 0], "pay for two verses of the recitation": [65535, 0], "for two verses of the recitation ten": [65535, 0], "two verses of the recitation ten blue": [65535, 0], "verses of the recitation ten blue tickets": [65535, 0], "of the recitation ten blue tickets equalled": [65535, 0], "the recitation ten blue tickets equalled a": [65535, 0], "recitation ten blue tickets equalled a red": [65535, 0], "ten blue tickets equalled a red one": [65535, 0], "blue tickets equalled a red one and": [65535, 0], "tickets equalled a red one and could": [65535, 0], "equalled a red one and could be": [65535, 0], "a red one and could be exchanged": [65535, 0], "red one and could be exchanged for": [65535, 0], "one and could be exchanged for it": [65535, 0], "and could be exchanged for it ten": [65535, 0], "could be exchanged for it ten red": [65535, 0], "be exchanged for it ten red tickets": [65535, 0], "exchanged for it ten red tickets equalled": [65535, 0], "for it ten red tickets equalled a": [65535, 0], "it ten red tickets equalled a yellow": [65535, 0], "ten red tickets equalled a yellow one": [65535, 0], "red tickets equalled a yellow one for": [65535, 0], "tickets equalled a yellow one for ten": [65535, 0], "equalled a yellow one for ten yellow": [65535, 0], "a yellow one for ten yellow tickets": [65535, 0], "yellow one for ten yellow tickets the": [65535, 0], "one for ten yellow tickets the superintendent": [65535, 0], "for ten yellow tickets the superintendent gave": [65535, 0], "ten yellow tickets the superintendent gave a": [65535, 0], "yellow tickets the superintendent gave a very": [65535, 0], "tickets the superintendent gave a very plainly": [65535, 0], "the superintendent gave a very plainly bound": [65535, 0], "superintendent gave a very plainly bound bible": [65535, 0], "gave a very plainly bound bible worth": [65535, 0], "a very plainly bound bible worth forty": [65535, 0], "very plainly bound bible worth forty cents": [65535, 0], "plainly bound bible worth forty cents in": [65535, 0], "bound bible worth forty cents in those": [65535, 0], "bible worth forty cents in those easy": [65535, 0], "worth forty cents in those easy times": [65535, 0], "forty cents in those easy times to": [65535, 0], "cents in those easy times to the": [65535, 0], "in those easy times to the pupil": [65535, 0], "those easy times to the pupil how": [65535, 0], "easy times to the pupil how many": [65535, 0], "times to the pupil how many of": [65535, 0], "to the pupil how many of my": [65535, 0], "the pupil how many of my readers": [65535, 0], "pupil how many of my readers would": [65535, 0], "how many of my readers would have": [65535, 0], "many of my readers would have the": [65535, 0], "of my readers would have the industry": [65535, 0], "my readers would have the industry and": [65535, 0], "readers would have the industry and application": [65535, 0], "would have the industry and application to": [65535, 0], "have the industry and application to memorize": [65535, 0], "the industry and application to memorize two": [65535, 0], "industry and application to memorize two thousand": [65535, 0], "and application to memorize two thousand verses": [65535, 0], "application to memorize two thousand verses even": [65535, 0], "to memorize two thousand verses even for": [65535, 0], "memorize two thousand verses even for a": [65535, 0], "two thousand verses even for a dore": [65535, 0], "thousand verses even for a dore bible": [65535, 0], "verses even for a dore bible and": [65535, 0], "even for a dore bible and yet": [65535, 0], "for a dore bible and yet mary": [65535, 0], "a dore bible and yet mary had": [65535, 0], "dore bible and yet mary had acquired": [65535, 0], "bible and yet mary had acquired two": [65535, 0], "and yet mary had acquired two bibles": [65535, 0], "yet mary had acquired two bibles in": [65535, 0], "mary had acquired two bibles in this": [65535, 0], "had acquired two bibles in this way": [65535, 0], "acquired two bibles in this way it": [65535, 0], "two bibles in this way it was": [65535, 0], "bibles in this way it was the": [65535, 0], "in this way it was the patient": [65535, 0], "this way it was the patient work": [65535, 0], "way it was the patient work of": [65535, 0], "it was the patient work of two": [65535, 0], "was the patient work of two years": [65535, 0], "the patient work of two years and": [65535, 0], "patient work of two years and a": [65535, 0], "work of two years and a boy": [65535, 0], "of two years and a boy of": [65535, 0], "two years and a boy of german": [65535, 0], "years and a boy of german parentage": [65535, 0], "and a boy of german parentage had": [65535, 0], "a boy of german parentage had won": [65535, 0], "boy of german parentage had won four": [65535, 0], "of german parentage had won four or": [65535, 0], "german parentage had won four or five": [65535, 0], "parentage had won four or five he": [65535, 0], "had won four or five he once": [65535, 0], "won four or five he once recited": [65535, 0], "four or five he once recited three": [65535, 0], "or five he once recited three thousand": [65535, 0], "five he once recited three thousand verses": [65535, 0], "he once recited three thousand verses without": [65535, 0], "once recited three thousand verses without stopping": [65535, 0], "recited three thousand verses without stopping but": [65535, 0], "three thousand verses without stopping but the": [65535, 0], "thousand verses without stopping but the strain": [65535, 0], "verses without stopping but the strain upon": [65535, 0], "without stopping but the strain upon his": [65535, 0], "stopping but the strain upon his mental": [65535, 0], "but the strain upon his mental faculties": [65535, 0], "the strain upon his mental faculties was": [65535, 0], "strain upon his mental faculties was too": [65535, 0], "upon his mental faculties was too great": [65535, 0], "his mental faculties was too great and": [65535, 0], "mental faculties was too great and he": [65535, 0], "faculties was too great and he was": [65535, 0], "was too great and he was little": [65535, 0], "too great and he was little better": [65535, 0], "great and he was little better than": [65535, 0], "and he was little better than an": [65535, 0], "he was little better than an idiot": [65535, 0], "was little better than an idiot from": [65535, 0], "little better than an idiot from that": [65535, 0], "better than an idiot from that day": [65535, 0], "than an idiot from that day forth": [65535, 0], "an idiot from that day forth a": [65535, 0], "idiot from that day forth a grievous": [65535, 0], "from that day forth a grievous misfortune": [65535, 0], "that day forth a grievous misfortune for": [65535, 0], "day forth a grievous misfortune for the": [65535, 0], "forth a grievous misfortune for the school": [65535, 0], "a grievous misfortune for the school for": [65535, 0], "grievous misfortune for the school for on": [65535, 0], "misfortune for the school for on great": [65535, 0], "for the school for on great occasions": [65535, 0], "the school for on great occasions before": [65535, 0], "school for on great occasions before company": [65535, 0], "for on great occasions before company the": [65535, 0], "on great occasions before company the superintendent": [65535, 0], "great occasions before company the superintendent as": [65535, 0], "occasions before company the superintendent as tom": [65535, 0], "before company the superintendent as tom expressed": [65535, 0], "company the superintendent as tom expressed it": [65535, 0], "the superintendent as tom expressed it had": [65535, 0], "superintendent as tom expressed it had always": [65535, 0], "as tom expressed it had always made": [65535, 0], "tom expressed it had always made this": [65535, 0], "expressed it had always made this boy": [65535, 0], "it had always made this boy come": [65535, 0], "had always made this boy come out": [65535, 0], "always made this boy come out and": [65535, 0], "made this boy come out and spread": [65535, 0], "this boy come out and spread himself": [65535, 0], "boy come out and spread himself only": [65535, 0], "come out and spread himself only the": [65535, 0], "out and spread himself only the older": [65535, 0], "and spread himself only the older pupils": [65535, 0], "spread himself only the older pupils managed": [65535, 0], "himself only the older pupils managed to": [65535, 0], "only the older pupils managed to keep": [65535, 0], "the older pupils managed to keep their": [65535, 0], "older pupils managed to keep their tickets": [65535, 0], "pupils managed to keep their tickets and": [65535, 0], "managed to keep their tickets and stick": [65535, 0], "to keep their tickets and stick to": [65535, 0], "keep their tickets and stick to their": [65535, 0], "their tickets and stick to their tedious": [65535, 0], "tickets and stick to their tedious work": [65535, 0], "and stick to their tedious work long": [65535, 0], "stick to their tedious work long enough": [65535, 0], "to their tedious work long enough to": [65535, 0], "their tedious work long enough to get": [65535, 0], "tedious work long enough to get a": [65535, 0], "work long enough to get a bible": [65535, 0], "long enough to get a bible and": [65535, 0], "enough to get a bible and so": [65535, 0], "to get a bible and so the": [65535, 0], "get a bible and so the delivery": [65535, 0], "a bible and so the delivery of": [65535, 0], "bible and so the delivery of one": [65535, 0], "and so the delivery of one of": [65535, 0], "so the delivery of one of these": [65535, 0], "the delivery of one of these prizes": [65535, 0], "delivery of one of these prizes was": [65535, 0], "of one of these prizes was a": [65535, 0], "one of these prizes was a rare": [65535, 0], "of these prizes was a rare and": [65535, 0], "these prizes was a rare and noteworthy": [65535, 0], "prizes was a rare and noteworthy circumstance": [65535, 0], "was a rare and noteworthy circumstance the": [65535, 0], "a rare and noteworthy circumstance the successful": [65535, 0], "rare and noteworthy circumstance the successful pupil": [65535, 0], "and noteworthy circumstance the successful pupil was": [65535, 0], "noteworthy circumstance the successful pupil was so": [65535, 0], "circumstance the successful pupil was so great": [65535, 0], "the successful pupil was so great and": [65535, 0], "successful pupil was so great and conspicuous": [65535, 0], "pupil was so great and conspicuous for": [65535, 0], "was so great and conspicuous for that": [65535, 0], "so great and conspicuous for that day": [65535, 0], "great and conspicuous for that day that": [65535, 0], "and conspicuous for that day that on": [65535, 0], "conspicuous for that day that on the": [65535, 0], "for that day that on the spot": [65535, 0], "that day that on the spot every": [65535, 0], "day that on the spot every scholar's": [65535, 0], "that on the spot every scholar's heart": [65535, 0], "on the spot every scholar's heart was": [65535, 0], "the spot every scholar's heart was fired": [65535, 0], "spot every scholar's heart was fired with": [65535, 0], "every scholar's heart was fired with a": [65535, 0], "scholar's heart was fired with a fresh": [65535, 0], "heart was fired with a fresh ambition": [65535, 0], "was fired with a fresh ambition that": [65535, 0], "fired with a fresh ambition that often": [65535, 0], "with a fresh ambition that often lasted": [65535, 0], "a fresh ambition that often lasted a": [65535, 0], "fresh ambition that often lasted a couple": [65535, 0], "ambition that often lasted a couple of": [65535, 0], "that often lasted a couple of weeks": [65535, 0], "often lasted a couple of weeks it": [65535, 0], "lasted a couple of weeks it is": [65535, 0], "a couple of weeks it is possible": [65535, 0], "couple of weeks it is possible that": [65535, 0], "of weeks it is possible that tom's": [65535, 0], "weeks it is possible that tom's mental": [65535, 0], "it is possible that tom's mental stomach": [65535, 0], "is possible that tom's mental stomach had": [65535, 0], "possible that tom's mental stomach had never": [65535, 0], "that tom's mental stomach had never really": [65535, 0], "tom's mental stomach had never really hungered": [65535, 0], "mental stomach had never really hungered for": [65535, 0], "stomach had never really hungered for one": [65535, 0], "had never really hungered for one of": [65535, 0], "never really hungered for one of those": [65535, 0], "really hungered for one of those prizes": [65535, 0], "hungered for one of those prizes but": [65535, 0], "for one of those prizes but unquestionably": [65535, 0], "one of those prizes but unquestionably his": [65535, 0], "of those prizes but unquestionably his entire": [65535, 0], "those prizes but unquestionably his entire being": [65535, 0], "prizes but unquestionably his entire being had": [65535, 0], "but unquestionably his entire being had for": [65535, 0], "unquestionably his entire being had for many": [65535, 0], "his entire being had for many a": [65535, 0], "entire being had for many a day": [65535, 0], "being had for many a day longed": [65535, 0], "had for many a day longed for": [65535, 0], "for many a day longed for the": [65535, 0], "many a day longed for the glory": [65535, 0], "a day longed for the glory and": [65535, 0], "day longed for the glory and the": [65535, 0], "longed for the glory and the eclat": [65535, 0], "for the glory and the eclat that": [65535, 0], "the glory and the eclat that came": [65535, 0], "glory and the eclat that came with": [65535, 0], "and the eclat that came with it": [65535, 0], "the eclat that came with it in": [65535, 0], "eclat that came with it in due": [65535, 0], "that came with it in due course": [65535, 0], "came with it in due course the": [65535, 0], "with it in due course the superintendent": [65535, 0], "it in due course the superintendent stood": [65535, 0], "in due course the superintendent stood up": [65535, 0], "due course the superintendent stood up in": [65535, 0], "course the superintendent stood up in front": [65535, 0], "the superintendent stood up in front of": [65535, 0], "superintendent stood up in front of the": [65535, 0], "stood up in front of the pulpit": [65535, 0], "up in front of the pulpit with": [65535, 0], "in front of the pulpit with a": [65535, 0], "front of the pulpit with a closed": [65535, 0], "of the pulpit with a closed hymn": [65535, 0], "the pulpit with a closed hymn book": [65535, 0], "pulpit with a closed hymn book in": [65535, 0], "with a closed hymn book in his": [65535, 0], "a closed hymn book in his hand": [65535, 0], "closed hymn book in his hand and": [65535, 0], "hymn book in his hand and his": [65535, 0], "book in his hand and his forefinger": [65535, 0], "in his hand and his forefinger inserted": [65535, 0], "his hand and his forefinger inserted between": [65535, 0], "hand and his forefinger inserted between its": [65535, 0], "and his forefinger inserted between its leaves": [65535, 0], "his forefinger inserted between its leaves and": [65535, 0], "forefinger inserted between its leaves and commanded": [65535, 0], "inserted between its leaves and commanded attention": [65535, 0], "between its leaves and commanded attention when": [65535, 0], "its leaves and commanded attention when a": [65535, 0], "leaves and commanded attention when a sunday": [65535, 0], "and commanded attention when a sunday school": [65535, 0], "commanded attention when a sunday school superintendent": [65535, 0], "attention when a sunday school superintendent makes": [65535, 0], "when a sunday school superintendent makes his": [65535, 0], "a sunday school superintendent makes his customary": [65535, 0], "sunday school superintendent makes his customary little": [65535, 0], "school superintendent makes his customary little speech": [65535, 0], "superintendent makes his customary little speech a": [65535, 0], "makes his customary little speech a hymn": [65535, 0], "his customary little speech a hymn book": [65535, 0], "customary little speech a hymn book in": [65535, 0], "little speech a hymn book in the": [65535, 0], "speech a hymn book in the hand": [65535, 0], "a hymn book in the hand is": [65535, 0], "hymn book in the hand is as": [65535, 0], "book in the hand is as necessary": [65535, 0], "in the hand is as necessary as": [65535, 0], "the hand is as necessary as is": [65535, 0], "hand is as necessary as is the": [65535, 0], "is as necessary as is the inevitable": [65535, 0], "as necessary as is the inevitable sheet": [65535, 0], "necessary as is the inevitable sheet of": [65535, 0], "as is the inevitable sheet of music": [65535, 0], "is the inevitable sheet of music in": [65535, 0], "the inevitable sheet of music in the": [65535, 0], "inevitable sheet of music in the hand": [65535, 0], "sheet of music in the hand of": [65535, 0], "of music in the hand of a": [65535, 0], "music in the hand of a singer": [65535, 0], "in the hand of a singer who": [65535, 0], "the hand of a singer who stands": [65535, 0], "hand of a singer who stands forward": [65535, 0], "of a singer who stands forward on": [65535, 0], "a singer who stands forward on the": [65535, 0], "singer who stands forward on the platform": [65535, 0], "who stands forward on the platform and": [65535, 0], "stands forward on the platform and sings": [65535, 0], "forward on the platform and sings a": [65535, 0], "on the platform and sings a solo": [65535, 0], "the platform and sings a solo at": [65535, 0], "platform and sings a solo at a": [65535, 0], "and sings a solo at a concert": [65535, 0], "sings a solo at a concert though": [65535, 0], "a solo at a concert though why": [65535, 0], "solo at a concert though why is": [65535, 0], "at a concert though why is a": [65535, 0], "a concert though why is a mystery": [65535, 0], "concert though why is a mystery for": [65535, 0], "though why is a mystery for neither": [65535, 0], "why is a mystery for neither the": [65535, 0], "is a mystery for neither the hymn": [65535, 0], "a mystery for neither the hymn book": [65535, 0], "mystery for neither the hymn book nor": [65535, 0], "for neither the hymn book nor the": [65535, 0], "neither the hymn book nor the sheet": [65535, 0], "the hymn book nor the sheet of": [65535, 0], "hymn book nor the sheet of music": [65535, 0], "book nor the sheet of music is": [65535, 0], "nor the sheet of music is ever": [65535, 0], "the sheet of music is ever referred": [65535, 0], "sheet of music is ever referred to": [65535, 0], "of music is ever referred to by": [65535, 0], "music is ever referred to by the": [65535, 0], "is ever referred to by the sufferer": [65535, 0], "ever referred to by the sufferer this": [65535, 0], "referred to by the sufferer this superintendent": [65535, 0], "to by the sufferer this superintendent was": [65535, 0], "by the sufferer this superintendent was a": [65535, 0], "the sufferer this superintendent was a slim": [65535, 0], "sufferer this superintendent was a slim creature": [65535, 0], "this superintendent was a slim creature of": [65535, 0], "superintendent was a slim creature of thirty": [65535, 0], "was a slim creature of thirty five": [65535, 0], "a slim creature of thirty five with": [65535, 0], "slim creature of thirty five with a": [65535, 0], "creature of thirty five with a sandy": [65535, 0], "of thirty five with a sandy goatee": [65535, 0], "thirty five with a sandy goatee and": [65535, 0], "five with a sandy goatee and short": [65535, 0], "with a sandy goatee and short sandy": [65535, 0], "a sandy goatee and short sandy hair": [65535, 0], "sandy goatee and short sandy hair he": [65535, 0], "goatee and short sandy hair he wore": [65535, 0], "and short sandy hair he wore a": [65535, 0], "short sandy hair he wore a stiff": [65535, 0], "sandy hair he wore a stiff standing": [65535, 0], "hair he wore a stiff standing collar": [65535, 0], "he wore a stiff standing collar whose": [65535, 0], "wore a stiff standing collar whose upper": [65535, 0], "a stiff standing collar whose upper edge": [65535, 0], "stiff standing collar whose upper edge almost": [65535, 0], "standing collar whose upper edge almost reached": [65535, 0], "collar whose upper edge almost reached his": [65535, 0], "whose upper edge almost reached his ears": [65535, 0], "upper edge almost reached his ears and": [65535, 0], "edge almost reached his ears and whose": [65535, 0], "almost reached his ears and whose sharp": [65535, 0], "reached his ears and whose sharp points": [65535, 0], "his ears and whose sharp points curved": [65535, 0], "ears and whose sharp points curved forward": [65535, 0], "and whose sharp points curved forward abreast": [65535, 0], "whose sharp points curved forward abreast the": [65535, 0], "sharp points curved forward abreast the corners": [65535, 0], "points curved forward abreast the corners of": [65535, 0], "curved forward abreast the corners of his": [65535, 0], "forward abreast the corners of his mouth": [65535, 0], "abreast the corners of his mouth a": [65535, 0], "the corners of his mouth a fence": [65535, 0], "corners of his mouth a fence that": [65535, 0], "of his mouth a fence that compelled": [65535, 0], "his mouth a fence that compelled a": [65535, 0], "mouth a fence that compelled a straight": [65535, 0], "a fence that compelled a straight lookout": [65535, 0], "fence that compelled a straight lookout ahead": [65535, 0], "that compelled a straight lookout ahead and": [65535, 0], "compelled a straight lookout ahead and a": [65535, 0], "a straight lookout ahead and a turning": [65535, 0], "straight lookout ahead and a turning of": [65535, 0], "lookout ahead and a turning of the": [65535, 0], "ahead and a turning of the whole": [65535, 0], "and a turning of the whole body": [65535, 0], "a turning of the whole body when": [65535, 0], "turning of the whole body when a": [65535, 0], "of the whole body when a side": [65535, 0], "the whole body when a side view": [65535, 0], "whole body when a side view was": [65535, 0], "body when a side view was required": [65535, 0], "when a side view was required his": [65535, 0], "a side view was required his chin": [65535, 0], "side view was required his chin was": [65535, 0], "view was required his chin was propped": [65535, 0], "was required his chin was propped on": [65535, 0], "required his chin was propped on a": [65535, 0], "his chin was propped on a spreading": [65535, 0], "chin was propped on a spreading cravat": [65535, 0], "was propped on a spreading cravat which": [65535, 0], "propped on a spreading cravat which was": [65535, 0], "on a spreading cravat which was as": [65535, 0], "a spreading cravat which was as broad": [65535, 0], "spreading cravat which was as broad and": [65535, 0], "cravat which was as broad and as": [65535, 0], "which was as broad and as long": [65535, 0], "was as broad and as long as": [65535, 0], "as broad and as long as a": [65535, 0], "broad and as long as a bank": [65535, 0], "and as long as a bank note": [65535, 0], "as long as a bank note and": [65535, 0], "long as a bank note and had": [65535, 0], "as a bank note and had fringed": [65535, 0], "a bank note and had fringed ends": [65535, 0], "bank note and had fringed ends his": [65535, 0], "note and had fringed ends his boot": [65535, 0], "and had fringed ends his boot toes": [65535, 0], "had fringed ends his boot toes were": [65535, 0], "fringed ends his boot toes were turned": [65535, 0], "ends his boot toes were turned sharply": [65535, 0], "his boot toes were turned sharply up": [65535, 0], "boot toes were turned sharply up in": [65535, 0], "toes were turned sharply up in the": [65535, 0], "were turned sharply up in the fashion": [65535, 0], "turned sharply up in the fashion of": [65535, 0], "sharply up in the fashion of the": [65535, 0], "up in the fashion of the day": [65535, 0], "in the fashion of the day like": [65535, 0], "the fashion of the day like sleigh": [65535, 0], "fashion of the day like sleigh runners": [65535, 0], "of the day like sleigh runners an": [65535, 0], "the day like sleigh runners an effect": [65535, 0], "day like sleigh runners an effect patiently": [65535, 0], "like sleigh runners an effect patiently and": [65535, 0], "sleigh runners an effect patiently and laboriously": [65535, 0], "runners an effect patiently and laboriously produced": [65535, 0], "an effect patiently and laboriously produced by": [65535, 0], "effect patiently and laboriously produced by the": [65535, 0], "patiently and laboriously produced by the young": [65535, 0], "and laboriously produced by the young men": [65535, 0], "laboriously produced by the young men by": [65535, 0], "produced by the young men by sitting": [65535, 0], "by the young men by sitting with": [65535, 0], "the young men by sitting with their": [65535, 0], "young men by sitting with their toes": [65535, 0], "men by sitting with their toes pressed": [65535, 0], "by sitting with their toes pressed against": [65535, 0], "sitting with their toes pressed against a": [65535, 0], "with their toes pressed against a wall": [65535, 0], "their toes pressed against a wall for": [65535, 0], "toes pressed against a wall for hours": [65535, 0], "pressed against a wall for hours together": [65535, 0], "against a wall for hours together mr": [65535, 0], "a wall for hours together mr walters": [65535, 0], "wall for hours together mr walters was": [65535, 0], "for hours together mr walters was very": [65535, 0], "hours together mr walters was very earnest": [65535, 0], "together mr walters was very earnest of": [65535, 0], "mr walters was very earnest of mien": [65535, 0], "walters was very earnest of mien and": [65535, 0], "was very earnest of mien and very": [65535, 0], "very earnest of mien and very sincere": [65535, 0], "earnest of mien and very sincere and": [65535, 0], "of mien and very sincere and honest": [65535, 0], "mien and very sincere and honest at": [65535, 0], "and very sincere and honest at heart": [65535, 0], "very sincere and honest at heart and": [65535, 0], "sincere and honest at heart and he": [65535, 0], "and honest at heart and he held": [65535, 0], "honest at heart and he held sacred": [65535, 0], "at heart and he held sacred things": [65535, 0], "heart and he held sacred things and": [65535, 0], "and he held sacred things and places": [65535, 0], "he held sacred things and places in": [65535, 0], "held sacred things and places in such": [65535, 0], "sacred things and places in such reverence": [65535, 0], "things and places in such reverence and": [65535, 0], "and places in such reverence and so": [65535, 0], "places in such reverence and so separated": [65535, 0], "in such reverence and so separated them": [65535, 0], "such reverence and so separated them from": [65535, 0], "reverence and so separated them from worldly": [65535, 0], "and so separated them from worldly matters": [65535, 0], "so separated them from worldly matters that": [65535, 0], "separated them from worldly matters that unconsciously": [65535, 0], "them from worldly matters that unconsciously to": [65535, 0], "from worldly matters that unconsciously to himself": [65535, 0], "worldly matters that unconsciously to himself his": [65535, 0], "matters that unconsciously to himself his sunday": [65535, 0], "that unconsciously to himself his sunday school": [65535, 0], "unconsciously to himself his sunday school voice": [65535, 0], "to himself his sunday school voice had": [65535, 0], "himself his sunday school voice had acquired": [65535, 0], "his sunday school voice had acquired a": [65535, 0], "sunday school voice had acquired a peculiar": [65535, 0], "school voice had acquired a peculiar intonation": [65535, 0], "voice had acquired a peculiar intonation which": [65535, 0], "had acquired a peculiar intonation which was": [65535, 0], "acquired a peculiar intonation which was wholly": [65535, 0], "a peculiar intonation which was wholly absent": [65535, 0], "peculiar intonation which was wholly absent on": [65535, 0], "intonation which was wholly absent on week": [65535, 0], "which was wholly absent on week days": [65535, 0], "was wholly absent on week days he": [65535, 0], "wholly absent on week days he began": [65535, 0], "absent on week days he began after": [65535, 0], "on week days he began after this": [65535, 0], "week days he began after this fashion": [65535, 0], "days he began after this fashion now": [65535, 0], "he began after this fashion now children": [65535, 0], "began after this fashion now children i": [65535, 0], "after this fashion now children i want": [65535, 0], "this fashion now children i want you": [65535, 0], "fashion now children i want you all": [65535, 0], "now children i want you all to": [65535, 0], "children i want you all to sit": [65535, 0], "i want you all to sit up": [65535, 0], "want you all to sit up just": [65535, 0], "you all to sit up just as": [65535, 0], "all to sit up just as straight": [65535, 0], "to sit up just as straight and": [65535, 0], "sit up just as straight and pretty": [65535, 0], "up just as straight and pretty as": [65535, 0], "just as straight and pretty as you": [65535, 0], "as straight and pretty as you can": [65535, 0], "straight and pretty as you can and": [65535, 0], "and pretty as you can and give": [65535, 0], "pretty as you can and give me": [65535, 0], "as you can and give me all": [65535, 0], "you can and give me all your": [65535, 0], "can and give me all your attention": [65535, 0], "and give me all your attention for": [65535, 0], "give me all your attention for a": [65535, 0], "me all your attention for a minute": [65535, 0], "all your attention for a minute or": [65535, 0], "your attention for a minute or two": [65535, 0], "attention for a minute or two there": [65535, 0], "for a minute or two there that": [65535, 0], "a minute or two there that is": [65535, 0], "minute or two there that is it": [65535, 0], "or two there that is it that": [65535, 0], "two there that is it that is": [65535, 0], "there that is it that is the": [65535, 0], "that is it that is the way": [65535, 0], "is it that is the way good": [65535, 0], "it that is the way good little": [65535, 0], "that is the way good little boys": [65535, 0], "is the way good little boys and": [65535, 0], "the way good little boys and girls": [65535, 0], "way good little boys and girls should": [65535, 0], "good little boys and girls should do": [65535, 0], "little boys and girls should do i": [65535, 0], "boys and girls should do i see": [65535, 0], "and girls should do i see one": [65535, 0], "girls should do i see one little": [65535, 0], "should do i see one little girl": [65535, 0], "do i see one little girl who": [65535, 0], "i see one little girl who is": [65535, 0], "see one little girl who is looking": [65535, 0], "one little girl who is looking out": [65535, 0], "little girl who is looking out of": [65535, 0], "girl who is looking out of the": [65535, 0], "who is looking out of the window": [65535, 0], "is looking out of the window i": [65535, 0], "looking out of the window i am": [65535, 0], "out of the window i am afraid": [65535, 0], "of the window i am afraid she": [65535, 0], "the window i am afraid she thinks": [65535, 0], "window i am afraid she thinks i": [65535, 0], "i am afraid she thinks i am": [65535, 0], "am afraid she thinks i am out": [65535, 0], "afraid she thinks i am out there": [65535, 0], "she thinks i am out there somewhere": [65535, 0], "thinks i am out there somewhere perhaps": [65535, 0], "i am out there somewhere perhaps up": [65535, 0], "am out there somewhere perhaps up in": [65535, 0], "out there somewhere perhaps up in one": [65535, 0], "there somewhere perhaps up in one of": [65535, 0], "somewhere perhaps up in one of the": [65535, 0], "perhaps up in one of the trees": [65535, 0], "up in one of the trees making": [65535, 0], "in one of the trees making a": [65535, 0], "one of the trees making a speech": [65535, 0], "of the trees making a speech to": [65535, 0], "the trees making a speech to the": [65535, 0], "trees making a speech to the little": [65535, 0], "making a speech to the little birds": [65535, 0], "a speech to the little birds applausive": [65535, 0], "speech to the little birds applausive titter": [65535, 0], "to the little birds applausive titter i": [65535, 0], "the little birds applausive titter i want": [65535, 0], "little birds applausive titter i want to": [65535, 0], "birds applausive titter i want to tell": [65535, 0], "applausive titter i want to tell you": [65535, 0], "titter i want to tell you how": [65535, 0], "i want to tell you how good": [65535, 0], "want to tell you how good it": [65535, 0], "to tell you how good it makes": [65535, 0], "tell you how good it makes me": [65535, 0], "you how good it makes me feel": [65535, 0], "how good it makes me feel to": [65535, 0], "good it makes me feel to see": [65535, 0], "it makes me feel to see so": [65535, 0], "makes me feel to see so many": [65535, 0], "me feel to see so many bright": [65535, 0], "feel to see so many bright clean": [65535, 0], "to see so many bright clean little": [65535, 0], "see so many bright clean little faces": [65535, 0], "so many bright clean little faces assembled": [65535, 0], "many bright clean little faces assembled in": [65535, 0], "bright clean little faces assembled in a": [65535, 0], "clean little faces assembled in a place": [65535, 0], "little faces assembled in a place like": [65535, 0], "faces assembled in a place like this": [65535, 0], "assembled in a place like this learning": [65535, 0], "in a place like this learning to": [65535, 0], "a place like this learning to do": [65535, 0], "place like this learning to do right": [65535, 0], "like this learning to do right and": [65535, 0], "this learning to do right and be": [65535, 0], "learning to do right and be good": [65535, 0], "to do right and be good and": [65535, 0], "do right and be good and so": [65535, 0], "right and be good and so forth": [65535, 0], "and be good and so forth and": [65535, 0], "be good and so forth and so": [65535, 0], "good and so forth and so on": [65535, 0], "and so forth and so on it": [65535, 0], "so forth and so on it is": [65535, 0], "forth and so on it is not": [65535, 0], "and so on it is not necessary": [65535, 0], "so on it is not necessary to": [65535, 0], "on it is not necessary to set": [65535, 0], "it is not necessary to set down": [65535, 0], "is not necessary to set down the": [65535, 0], "not necessary to set down the rest": [65535, 0], "necessary to set down the rest of": [65535, 0], "to set down the rest of the": [65535, 0], "set down the rest of the oration": [65535, 0], "down the rest of the oration it": [65535, 0], "the rest of the oration it was": [65535, 0], "rest of the oration it was of": [65535, 0], "of the oration it was of a": [65535, 0], "the oration it was of a pattern": [65535, 0], "oration it was of a pattern which": [65535, 0], "it was of a pattern which does": [65535, 0], "was of a pattern which does not": [65535, 0], "of a pattern which does not vary": [65535, 0], "a pattern which does not vary and": [65535, 0], "pattern which does not vary and so": [65535, 0], "which does not vary and so it": [65535, 0], "does not vary and so it is": [65535, 0], "not vary and so it is familiar": [65535, 0], "vary and so it is familiar to": [65535, 0], "and so it is familiar to us": [65535, 0], "so it is familiar to us all": [65535, 0], "it is familiar to us all the": [65535, 0], "is familiar to us all the latter": [65535, 0], "familiar to us all the latter third": [65535, 0], "to us all the latter third of": [65535, 0], "us all the latter third of the": [65535, 0], "all the latter third of the speech": [65535, 0], "the latter third of the speech was": [65535, 0], "latter third of the speech was marred": [65535, 0], "third of the speech was marred by": [65535, 0], "of the speech was marred by the": [65535, 0], "the speech was marred by the resumption": [65535, 0], "speech was marred by the resumption of": [65535, 0], "was marred by the resumption of fights": [65535, 0], "marred by the resumption of fights and": [65535, 0], "by the resumption of fights and other": [65535, 0], "the resumption of fights and other recreations": [65535, 0], "resumption of fights and other recreations among": [65535, 0], "of fights and other recreations among certain": [65535, 0], "fights and other recreations among certain of": [65535, 0], "and other recreations among certain of the": [65535, 0], "other recreations among certain of the bad": [65535, 0], "recreations among certain of the bad boys": [65535, 0], "among certain of the bad boys and": [65535, 0], "certain of the bad boys and by": [65535, 0], "of the bad boys and by fidgetings": [65535, 0], "the bad boys and by fidgetings and": [65535, 0], "bad boys and by fidgetings and whisperings": [65535, 0], "boys and by fidgetings and whisperings that": [65535, 0], "and by fidgetings and whisperings that extended": [65535, 0], "by fidgetings and whisperings that extended far": [65535, 0], "fidgetings and whisperings that extended far and": [65535, 0], "and whisperings that extended far and wide": [65535, 0], "whisperings that extended far and wide washing": [65535, 0], "that extended far and wide washing even": [65535, 0], "extended far and wide washing even to": [65535, 0], "far and wide washing even to the": [65535, 0], "and wide washing even to the bases": [65535, 0], "wide washing even to the bases of": [65535, 0], "washing even to the bases of isolated": [65535, 0], "even to the bases of isolated and": [65535, 0], "to the bases of isolated and incorruptible": [65535, 0], "the bases of isolated and incorruptible rocks": [65535, 0], "bases of isolated and incorruptible rocks like": [65535, 0], "of isolated and incorruptible rocks like sid": [65535, 0], "isolated and incorruptible rocks like sid and": [65535, 0], "and incorruptible rocks like sid and mary": [65535, 0], "incorruptible rocks like sid and mary but": [65535, 0], "rocks like sid and mary but now": [65535, 0], "like sid and mary but now every": [65535, 0], "sid and mary but now every sound": [65535, 0], "and mary but now every sound ceased": [65535, 0], "mary but now every sound ceased suddenly": [65535, 0], "but now every sound ceased suddenly with": [65535, 0], "now every sound ceased suddenly with the": [65535, 0], "every sound ceased suddenly with the subsidence": [65535, 0], "sound ceased suddenly with the subsidence of": [65535, 0], "ceased suddenly with the subsidence of mr": [65535, 0], "suddenly with the subsidence of mr walters'": [65535, 0], "with the subsidence of mr walters' voice": [65535, 0], "the subsidence of mr walters' voice and": [65535, 0], "subsidence of mr walters' voice and the": [65535, 0], "of mr walters' voice and the conclusion": [65535, 0], "mr walters' voice and the conclusion of": [65535, 0], "walters' voice and the conclusion of the": [65535, 0], "voice and the conclusion of the speech": [65535, 0], "and the conclusion of the speech was": [65535, 0], "the conclusion of the speech was received": [65535, 0], "conclusion of the speech was received with": [65535, 0], "of the speech was received with a": [65535, 0], "the speech was received with a burst": [65535, 0], "speech was received with a burst of": [65535, 0], "was received with a burst of silent": [65535, 0], "received with a burst of silent gratitude": [65535, 0], "with a burst of silent gratitude a": [65535, 0], "a burst of silent gratitude a good": [65535, 0], "burst of silent gratitude a good part": [65535, 0], "of silent gratitude a good part of": [65535, 0], "silent gratitude a good part of the": [65535, 0], "gratitude a good part of the whispering": [65535, 0], "a good part of the whispering had": [65535, 0], "good part of the whispering had been": [65535, 0], "part of the whispering had been occasioned": [65535, 0], "of the whispering had been occasioned by": [65535, 0], "the whispering had been occasioned by an": [65535, 0], "whispering had been occasioned by an event": [65535, 0], "had been occasioned by an event which": [65535, 0], "been occasioned by an event which was": [65535, 0], "occasioned by an event which was more": [65535, 0], "by an event which was more or": [65535, 0], "an event which was more or less": [65535, 0], "event which was more or less rare": [65535, 0], "which was more or less rare the": [65535, 0], "was more or less rare the entrance": [65535, 0], "more or less rare the entrance of": [65535, 0], "or less rare the entrance of visitors": [65535, 0], "less rare the entrance of visitors lawyer": [65535, 0], "rare the entrance of visitors lawyer thatcher": [65535, 0], "the entrance of visitors lawyer thatcher accompanied": [65535, 0], "entrance of visitors lawyer thatcher accompanied by": [65535, 0], "of visitors lawyer thatcher accompanied by a": [65535, 0], "visitors lawyer thatcher accompanied by a very": [65535, 0], "lawyer thatcher accompanied by a very feeble": [65535, 0], "thatcher accompanied by a very feeble and": [65535, 0], "accompanied by a very feeble and aged": [65535, 0], "by a very feeble and aged man": [65535, 0], "a very feeble and aged man a": [65535, 0], "very feeble and aged man a fine": [65535, 0], "feeble and aged man a fine portly": [65535, 0], "and aged man a fine portly middle": [65535, 0], "aged man a fine portly middle aged": [65535, 0], "man a fine portly middle aged gentleman": [65535, 0], "a fine portly middle aged gentleman with": [65535, 0], "fine portly middle aged gentleman with iron": [65535, 0], "portly middle aged gentleman with iron gray": [65535, 0], "middle aged gentleman with iron gray hair": [65535, 0], "aged gentleman with iron gray hair and": [65535, 0], "gentleman with iron gray hair and a": [65535, 0], "with iron gray hair and a dignified": [65535, 0], "iron gray hair and a dignified lady": [65535, 0], "gray hair and a dignified lady who": [65535, 0], "hair and a dignified lady who was": [65535, 0], "and a dignified lady who was doubtless": [65535, 0], "a dignified lady who was doubtless the": [65535, 0], "dignified lady who was doubtless the latter's": [65535, 0], "lady who was doubtless the latter's wife": [65535, 0], "who was doubtless the latter's wife the": [65535, 0], "was doubtless the latter's wife the lady": [65535, 0], "doubtless the latter's wife the lady was": [65535, 0], "the latter's wife the lady was leading": [65535, 0], "latter's wife the lady was leading a": [65535, 0], "wife the lady was leading a child": [65535, 0], "the lady was leading a child tom": [65535, 0], "lady was leading a child tom had": [65535, 0], "was leading a child tom had been": [65535, 0], "leading a child tom had been restless": [65535, 0], "a child tom had been restless and": [65535, 0], "child tom had been restless and full": [65535, 0], "tom had been restless and full of": [65535, 0], "had been restless and full of chafings": [65535, 0], "been restless and full of chafings and": [65535, 0], "restless and full of chafings and repinings": [65535, 0], "and full of chafings and repinings conscience": [65535, 0], "full of chafings and repinings conscience smitten": [65535, 0], "of chafings and repinings conscience smitten too": [65535, 0], "chafings and repinings conscience smitten too he": [65535, 0], "and repinings conscience smitten too he could": [65535, 0], "repinings conscience smitten too he could not": [65535, 0], "conscience smitten too he could not meet": [65535, 0], "smitten too he could not meet amy": [65535, 0], "too he could not meet amy lawrence's": [65535, 0], "he could not meet amy lawrence's eye": [65535, 0], "could not meet amy lawrence's eye he": [65535, 0], "not meet amy lawrence's eye he could": [65535, 0], "meet amy lawrence's eye he could not": [65535, 0], "amy lawrence's eye he could not brook": [65535, 0], "lawrence's eye he could not brook her": [65535, 0], "eye he could not brook her loving": [65535, 0], "he could not brook her loving gaze": [65535, 0], "could not brook her loving gaze but": [65535, 0], "not brook her loving gaze but when": [65535, 0], "brook her loving gaze but when he": [65535, 0], "her loving gaze but when he saw": [65535, 0], "loving gaze but when he saw this": [65535, 0], "gaze but when he saw this small": [65535, 0], "but when he saw this small new": [65535, 0], "when he saw this small new comer": [65535, 0], "he saw this small new comer his": [65535, 0], "saw this small new comer his soul": [65535, 0], "this small new comer his soul was": [65535, 0], "small new comer his soul was all": [65535, 0], "new comer his soul was all ablaze": [65535, 0], "comer his soul was all ablaze with": [65535, 0], "his soul was all ablaze with bliss": [65535, 0], "soul was all ablaze with bliss in": [65535, 0], "was all ablaze with bliss in a": [65535, 0], "all ablaze with bliss in a moment": [65535, 0], "ablaze with bliss in a moment the": [65535, 0], "with bliss in a moment the next": [65535, 0], "bliss in a moment the next moment": [65535, 0], "in a moment the next moment he": [65535, 0], "a moment the next moment he was": [65535, 0], "moment the next moment he was showing": [65535, 0], "the next moment he was showing off": [65535, 0], "next moment he was showing off with": [65535, 0], "moment he was showing off with all": [65535, 0], "he was showing off with all his": [65535, 0], "was showing off with all his might": [65535, 0], "showing off with all his might cuffing": [65535, 0], "off with all his might cuffing boys": [65535, 0], "with all his might cuffing boys pulling": [65535, 0], "all his might cuffing boys pulling hair": [65535, 0], "his might cuffing boys pulling hair making": [65535, 0], "might cuffing boys pulling hair making faces": [65535, 0], "cuffing boys pulling hair making faces in": [65535, 0], "boys pulling hair making faces in a": [65535, 0], "pulling hair making faces in a word": [65535, 0], "hair making faces in a word using": [65535, 0], "making faces in a word using every": [65535, 0], "faces in a word using every art": [65535, 0], "in a word using every art that": [65535, 0], "a word using every art that seemed": [65535, 0], "word using every art that seemed likely": [65535, 0], "using every art that seemed likely to": [65535, 0], "every art that seemed likely to fascinate": [65535, 0], "art that seemed likely to fascinate a": [65535, 0], "that seemed likely to fascinate a girl": [65535, 0], "seemed likely to fascinate a girl and": [65535, 0], "likely to fascinate a girl and win": [65535, 0], "to fascinate a girl and win her": [65535, 0], "fascinate a girl and win her applause": [65535, 0], "a girl and win her applause his": [65535, 0], "girl and win her applause his exaltation": [65535, 0], "and win her applause his exaltation had": [65535, 0], "win her applause his exaltation had but": [65535, 0], "her applause his exaltation had but one": [65535, 0], "applause his exaltation had but one alloy": [65535, 0], "his exaltation had but one alloy the": [65535, 0], "exaltation had but one alloy the memory": [65535, 0], "had but one alloy the memory of": [65535, 0], "but one alloy the memory of his": [65535, 0], "one alloy the memory of his humiliation": [65535, 0], "alloy the memory of his humiliation in": [65535, 0], "the memory of his humiliation in this": [65535, 0], "memory of his humiliation in this angel's": [65535, 0], "of his humiliation in this angel's garden": [65535, 0], "his humiliation in this angel's garden and": [65535, 0], "humiliation in this angel's garden and that": [65535, 0], "in this angel's garden and that record": [65535, 0], "this angel's garden and that record in": [65535, 0], "angel's garden and that record in sand": [65535, 0], "garden and that record in sand was": [65535, 0], "and that record in sand was fast": [65535, 0], "that record in sand was fast washing": [65535, 0], "record in sand was fast washing out": [65535, 0], "in sand was fast washing out under": [65535, 0], "sand was fast washing out under the": [65535, 0], "was fast washing out under the waves": [65535, 0], "fast washing out under the waves of": [65535, 0], "washing out under the waves of happiness": [65535, 0], "out under the waves of happiness that": [65535, 0], "under the waves of happiness that were": [65535, 0], "the waves of happiness that were sweeping": [65535, 0], "waves of happiness that were sweeping over": [65535, 0], "of happiness that were sweeping over it": [65535, 0], "happiness that were sweeping over it now": [65535, 0], "that were sweeping over it now the": [65535, 0], "were sweeping over it now the visitors": [65535, 0], "sweeping over it now the visitors were": [65535, 0], "over it now the visitors were given": [65535, 0], "it now the visitors were given the": [65535, 0], "now the visitors were given the highest": [65535, 0], "the visitors were given the highest seat": [65535, 0], "visitors were given the highest seat of": [65535, 0], "were given the highest seat of honor": [65535, 0], "given the highest seat of honor and": [65535, 0], "the highest seat of honor and as": [65535, 0], "highest seat of honor and as soon": [65535, 0], "seat of honor and as soon as": [65535, 0], "of honor and as soon as mr": [65535, 0], "honor and as soon as mr walters'": [65535, 0], "and as soon as mr walters' speech": [65535, 0], "as soon as mr walters' speech was": [65535, 0], "soon as mr walters' speech was finished": [65535, 0], "as mr walters' speech was finished he": [65535, 0], "mr walters' speech was finished he introduced": [65535, 0], "walters' speech was finished he introduced them": [65535, 0], "speech was finished he introduced them to": [65535, 0], "was finished he introduced them to the": [65535, 0], "finished he introduced them to the school": [65535, 0], "he introduced them to the school the": [65535, 0], "introduced them to the school the middle": [65535, 0], "them to the school the middle aged": [65535, 0], "to the school the middle aged man": [65535, 0], "the school the middle aged man turned": [65535, 0], "school the middle aged man turned out": [65535, 0], "the middle aged man turned out to": [65535, 0], "middle aged man turned out to be": [65535, 0], "aged man turned out to be a": [65535, 0], "man turned out to be a prodigious": [65535, 0], "turned out to be a prodigious personage": [65535, 0], "out to be a prodigious personage no": [65535, 0], "to be a prodigious personage no less": [65535, 0], "be a prodigious personage no less a": [65535, 0], "a prodigious personage no less a one": [65535, 0], "prodigious personage no less a one than": [65535, 0], "personage no less a one than the": [65535, 0], "no less a one than the county": [65535, 0], "less a one than the county judge": [65535, 0], "a one than the county judge altogether": [65535, 0], "one than the county judge altogether the": [65535, 0], "than the county judge altogether the most": [65535, 0], "the county judge altogether the most august": [65535, 0], "county judge altogether the most august creation": [65535, 0], "judge altogether the most august creation these": [65535, 0], "altogether the most august creation these children": [65535, 0], "the most august creation these children had": [65535, 0], "most august creation these children had ever": [65535, 0], "august creation these children had ever looked": [65535, 0], "creation these children had ever looked upon": [65535, 0], "these children had ever looked upon and": [65535, 0], "children had ever looked upon and they": [65535, 0], "had ever looked upon and they wondered": [65535, 0], "ever looked upon and they wondered what": [65535, 0], "looked upon and they wondered what kind": [65535, 0], "upon and they wondered what kind of": [65535, 0], "and they wondered what kind of material": [65535, 0], "they wondered what kind of material he": [65535, 0], "wondered what kind of material he was": [65535, 0], "what kind of material he was made": [65535, 0], "kind of material he was made of": [65535, 0], "of material he was made of and": [65535, 0], "material he was made of and they": [65535, 0], "he was made of and they half": [65535, 0], "was made of and they half wanted": [65535, 0], "made of and they half wanted to": [65535, 0], "of and they half wanted to hear": [65535, 0], "and they half wanted to hear him": [65535, 0], "they half wanted to hear him roar": [65535, 0], "half wanted to hear him roar and": [65535, 0], "wanted to hear him roar and were": [65535, 0], "to hear him roar and were half": [65535, 0], "hear him roar and were half afraid": [65535, 0], "him roar and were half afraid he": [65535, 0], "roar and were half afraid he might": [65535, 0], "and were half afraid he might too": [65535, 0], "were half afraid he might too he": [65535, 0], "half afraid he might too he was": [65535, 0], "afraid he might too he was from": [65535, 0], "he might too he was from constantinople": [65535, 0], "might too he was from constantinople twelve": [65535, 0], "too he was from constantinople twelve miles": [65535, 0], "he was from constantinople twelve miles away": [65535, 0], "was from constantinople twelve miles away so": [65535, 0], "from constantinople twelve miles away so he": [65535, 0], "constantinople twelve miles away so he had": [65535, 0], "twelve miles away so he had travelled": [65535, 0], "miles away so he had travelled and": [65535, 0], "away so he had travelled and seen": [65535, 0], "so he had travelled and seen the": [65535, 0], "he had travelled and seen the world": [65535, 0], "had travelled and seen the world these": [65535, 0], "travelled and seen the world these very": [65535, 0], "and seen the world these very eyes": [65535, 0], "seen the world these very eyes had": [65535, 0], "the world these very eyes had looked": [65535, 0], "world these very eyes had looked upon": [65535, 0], "these very eyes had looked upon the": [65535, 0], "very eyes had looked upon the county": [65535, 0], "eyes had looked upon the county court": [65535, 0], "had looked upon the county court house": [65535, 0], "looked upon the county court house which": [65535, 0], "upon the county court house which was": [65535, 0], "the county court house which was said": [65535, 0], "county court house which was said to": [65535, 0], "court house which was said to have": [65535, 0], "house which was said to have a": [65535, 0], "which was said to have a tin": [65535, 0], "was said to have a tin roof": [65535, 0], "said to have a tin roof the": [65535, 0], "to have a tin roof the awe": [65535, 0], "have a tin roof the awe which": [65535, 0], "a tin roof the awe which these": [65535, 0], "tin roof the awe which these reflections": [65535, 0], "roof the awe which these reflections inspired": [65535, 0], "the awe which these reflections inspired was": [65535, 0], "awe which these reflections inspired was attested": [65535, 0], "which these reflections inspired was attested by": [65535, 0], "these reflections inspired was attested by the": [65535, 0], "reflections inspired was attested by the impressive": [65535, 0], "inspired was attested by the impressive silence": [65535, 0], "was attested by the impressive silence and": [65535, 0], "attested by the impressive silence and the": [65535, 0], "by the impressive silence and the ranks": [65535, 0], "the impressive silence and the ranks of": [65535, 0], "impressive silence and the ranks of staring": [65535, 0], "silence and the ranks of staring eyes": [65535, 0], "and the ranks of staring eyes this": [65535, 0], "the ranks of staring eyes this was": [65535, 0], "ranks of staring eyes this was the": [65535, 0], "of staring eyes this was the great": [65535, 0], "staring eyes this was the great judge": [65535, 0], "eyes this was the great judge thatcher": [65535, 0], "this was the great judge thatcher brother": [65535, 0], "was the great judge thatcher brother of": [65535, 0], "the great judge thatcher brother of their": [65535, 0], "great judge thatcher brother of their own": [65535, 0], "judge thatcher brother of their own lawyer": [65535, 0], "thatcher brother of their own lawyer jeff": [65535, 0], "brother of their own lawyer jeff thatcher": [65535, 0], "of their own lawyer jeff thatcher immediately": [65535, 0], "their own lawyer jeff thatcher immediately went": [65535, 0], "own lawyer jeff thatcher immediately went forward": [65535, 0], "lawyer jeff thatcher immediately went forward to": [65535, 0], "jeff thatcher immediately went forward to be": [65535, 0], "thatcher immediately went forward to be familiar": [65535, 0], "immediately went forward to be familiar with": [65535, 0], "went forward to be familiar with the": [65535, 0], "forward to be familiar with the great": [65535, 0], "to be familiar with the great man": [65535, 0], "be familiar with the great man and": [65535, 0], "familiar with the great man and be": [65535, 0], "with the great man and be envied": [65535, 0], "the great man and be envied by": [65535, 0], "great man and be envied by the": [65535, 0], "man and be envied by the school": [65535, 0], "and be envied by the school it": [65535, 0], "be envied by the school it would": [65535, 0], "envied by the school it would have": [65535, 0], "by the school it would have been": [65535, 0], "the school it would have been music": [65535, 0], "school it would have been music to": [65535, 0], "it would have been music to his": [65535, 0], "would have been music to his soul": [65535, 0], "have been music to his soul to": [65535, 0], "been music to his soul to hear": [65535, 0], "music to his soul to hear the": [65535, 0], "to his soul to hear the whisperings": [65535, 0], "his soul to hear the whisperings look": [65535, 0], "soul to hear the whisperings look at": [65535, 0], "to hear the whisperings look at him": [65535, 0], "hear the whisperings look at him jim": [65535, 0], "the whisperings look at him jim he's": [65535, 0], "whisperings look at him jim he's a": [65535, 0], "look at him jim he's a going": [65535, 0], "at him jim he's a going up": [65535, 0], "him jim he's a going up there": [65535, 0], "jim he's a going up there say": [65535, 0], "he's a going up there say look": [65535, 0], "a going up there say look he's": [65535, 0], "going up there say look he's a": [65535, 0], "up there say look he's a going": [65535, 0], "there say look he's a going to": [65535, 0], "say look he's a going to shake": [65535, 0], "look he's a going to shake hands": [65535, 0], "he's a going to shake hands with": [65535, 0], "a going to shake hands with him": [65535, 0], "going to shake hands with him he": [65535, 0], "to shake hands with him he is": [65535, 0], "shake hands with him he is shaking": [65535, 0], "hands with him he is shaking hands": [65535, 0], "with him he is shaking hands with": [65535, 0], "him he is shaking hands with him": [65535, 0], "he is shaking hands with him by": [65535, 0], "is shaking hands with him by jings": [65535, 0], "shaking hands with him by jings don't": [65535, 0], "hands with him by jings don't you": [65535, 0], "with him by jings don't you wish": [65535, 0], "him by jings don't you wish you": [65535, 0], "by jings don't you wish you was": [65535, 0], "jings don't you wish you was jeff": [65535, 0], "don't you wish you was jeff mr": [65535, 0], "you wish you was jeff mr walters": [65535, 0], "wish you was jeff mr walters fell": [65535, 0], "you was jeff mr walters fell to": [65535, 0], "was jeff mr walters fell to showing": [65535, 0], "jeff mr walters fell to showing off": [65535, 0], "mr walters fell to showing off with": [65535, 0], "walters fell to showing off with all": [65535, 0], "fell to showing off with all sorts": [65535, 0], "to showing off with all sorts of": [65535, 0], "showing off with all sorts of official": [65535, 0], "off with all sorts of official bustlings": [65535, 0], "with all sorts of official bustlings and": [65535, 0], "all sorts of official bustlings and activities": [65535, 0], "sorts of official bustlings and activities giving": [65535, 0], "of official bustlings and activities giving orders": [65535, 0], "official bustlings and activities giving orders delivering": [65535, 0], "bustlings and activities giving orders delivering judgments": [65535, 0], "and activities giving orders delivering judgments discharging": [65535, 0], "activities giving orders delivering judgments discharging directions": [65535, 0], "giving orders delivering judgments discharging directions here": [65535, 0], "orders delivering judgments discharging directions here there": [65535, 0], "delivering judgments discharging directions here there everywhere": [65535, 0], "judgments discharging directions here there everywhere that": [65535, 0], "discharging directions here there everywhere that he": [65535, 0], "directions here there everywhere that he could": [65535, 0], "here there everywhere that he could find": [65535, 0], "there everywhere that he could find a": [65535, 0], "everywhere that he could find a target": [65535, 0], "that he could find a target the": [65535, 0], "he could find a target the librarian": [65535, 0], "could find a target the librarian showed": [65535, 0], "find a target the librarian showed off": [65535, 0], "a target the librarian showed off running": [65535, 0], "target the librarian showed off running hither": [65535, 0], "the librarian showed off running hither and": [65535, 0], "librarian showed off running hither and thither": [65535, 0], "showed off running hither and thither with": [65535, 0], "off running hither and thither with his": [65535, 0], "running hither and thither with his arms": [65535, 0], "hither and thither with his arms full": [65535, 0], "and thither with his arms full of": [65535, 0], "thither with his arms full of books": [65535, 0], "with his arms full of books and": [65535, 0], "his arms full of books and making": [65535, 0], "arms full of books and making a": [65535, 0], "full of books and making a deal": [65535, 0], "of books and making a deal of": [65535, 0], "books and making a deal of the": [65535, 0], "and making a deal of the splutter": [65535, 0], "making a deal of the splutter and": [65535, 0], "a deal of the splutter and fuss": [65535, 0], "deal of the splutter and fuss that": [65535, 0], "of the splutter and fuss that insect": [65535, 0], "the splutter and fuss that insect authority": [65535, 0], "splutter and fuss that insect authority delights": [65535, 0], "and fuss that insect authority delights in": [65535, 0], "fuss that insect authority delights in the": [65535, 0], "that insect authority delights in the young": [65535, 0], "insect authority delights in the young lady": [65535, 0], "authority delights in the young lady teachers": [65535, 0], "delights in the young lady teachers showed": [65535, 0], "in the young lady teachers showed off": [65535, 0], "the young lady teachers showed off bending": [65535, 0], "young lady teachers showed off bending sweetly": [65535, 0], "lady teachers showed off bending sweetly over": [65535, 0], "teachers showed off bending sweetly over pupils": [65535, 0], "showed off bending sweetly over pupils that": [65535, 0], "off bending sweetly over pupils that were": [65535, 0], "bending sweetly over pupils that were lately": [65535, 0], "sweetly over pupils that were lately being": [65535, 0], "over pupils that were lately being boxed": [65535, 0], "pupils that were lately being boxed lifting": [65535, 0], "that were lately being boxed lifting pretty": [65535, 0], "were lately being boxed lifting pretty warning": [65535, 0], "lately being boxed lifting pretty warning fingers": [65535, 0], "being boxed lifting pretty warning fingers at": [65535, 0], "boxed lifting pretty warning fingers at bad": [65535, 0], "lifting pretty warning fingers at bad little": [65535, 0], "pretty warning fingers at bad little boys": [65535, 0], "warning fingers at bad little boys and": [65535, 0], "fingers at bad little boys and patting": [65535, 0], "at bad little boys and patting good": [65535, 0], "bad little boys and patting good ones": [65535, 0], "little boys and patting good ones lovingly": [65535, 0], "boys and patting good ones lovingly the": [65535, 0], "and patting good ones lovingly the young": [65535, 0], "patting good ones lovingly the young gentlemen": [65535, 0], "good ones lovingly the young gentlemen teachers": [65535, 0], "ones lovingly the young gentlemen teachers showed": [65535, 0], "lovingly the young gentlemen teachers showed off": [65535, 0], "the young gentlemen teachers showed off with": [65535, 0], "young gentlemen teachers showed off with small": [65535, 0], "gentlemen teachers showed off with small scoldings": [65535, 0], "teachers showed off with small scoldings and": [65535, 0], "showed off with small scoldings and other": [65535, 0], "off with small scoldings and other little": [65535, 0], "with small scoldings and other little displays": [65535, 0], "small scoldings and other little displays of": [65535, 0], "scoldings and other little displays of authority": [65535, 0], "and other little displays of authority and": [65535, 0], "other little displays of authority and fine": [65535, 0], "little displays of authority and fine attention": [65535, 0], "displays of authority and fine attention to": [65535, 0], "of authority and fine attention to discipline": [65535, 0], "authority and fine attention to discipline and": [65535, 0], "and fine attention to discipline and most": [65535, 0], "fine attention to discipline and most of": [65535, 0], "attention to discipline and most of the": [65535, 0], "to discipline and most of the teachers": [65535, 0], "discipline and most of the teachers of": [65535, 0], "and most of the teachers of both": [65535, 0], "most of the teachers of both sexes": [65535, 0], "of the teachers of both sexes found": [65535, 0], "the teachers of both sexes found business": [65535, 0], "teachers of both sexes found business up": [65535, 0], "of both sexes found business up at": [65535, 0], "both sexes found business up at the": [65535, 0], "sexes found business up at the library": [65535, 0], "found business up at the library by": [65535, 0], "business up at the library by the": [65535, 0], "up at the library by the pulpit": [65535, 0], "at the library by the pulpit and": [65535, 0], "the library by the pulpit and it": [65535, 0], "library by the pulpit and it was": [65535, 0], "by the pulpit and it was business": [65535, 0], "the pulpit and it was business that": [65535, 0], "pulpit and it was business that frequently": [65535, 0], "and it was business that frequently had": [65535, 0], "it was business that frequently had to": [65535, 0], "was business that frequently had to be": [65535, 0], "business that frequently had to be done": [65535, 0], "that frequently had to be done over": [65535, 0], "frequently had to be done over again": [65535, 0], "had to be done over again two": [65535, 0], "to be done over again two or": [65535, 0], "be done over again two or three": [65535, 0], "done over again two or three times": [65535, 0], "over again two or three times with": [65535, 0], "again two or three times with much": [65535, 0], "two or three times with much seeming": [65535, 0], "or three times with much seeming vexation": [65535, 0], "three times with much seeming vexation the": [65535, 0], "times with much seeming vexation the little": [65535, 0], "with much seeming vexation the little girls": [65535, 0], "much seeming vexation the little girls showed": [65535, 0], "seeming vexation the little girls showed off": [65535, 0], "vexation the little girls showed off in": [65535, 0], "the little girls showed off in various": [65535, 0], "little girls showed off in various ways": [65535, 0], "girls showed off in various ways and": [65535, 0], "showed off in various ways and the": [65535, 0], "off in various ways and the little": [65535, 0], "in various ways and the little boys": [65535, 0], "various ways and the little boys showed": [65535, 0], "ways and the little boys showed off": [65535, 0], "and the little boys showed off with": [65535, 0], "the little boys showed off with such": [65535, 0], "little boys showed off with such diligence": [65535, 0], "boys showed off with such diligence that": [65535, 0], "showed off with such diligence that the": [65535, 0], "off with such diligence that the air": [65535, 0], "with such diligence that the air was": [65535, 0], "such diligence that the air was thick": [65535, 0], "diligence that the air was thick with": [65535, 0], "that the air was thick with paper": [65535, 0], "the air was thick with paper wads": [65535, 0], "air was thick with paper wads and": [65535, 0], "was thick with paper wads and the": [65535, 0], "thick with paper wads and the murmur": [65535, 0], "with paper wads and the murmur of": [65535, 0], "paper wads and the murmur of scufflings": [65535, 0], "wads and the murmur of scufflings and": [65535, 0], "and the murmur of scufflings and above": [65535, 0], "the murmur of scufflings and above it": [65535, 0], "murmur of scufflings and above it all": [65535, 0], "of scufflings and above it all the": [65535, 0], "scufflings and above it all the great": [65535, 0], "and above it all the great man": [65535, 0], "above it all the great man sat": [65535, 0], "it all the great man sat and": [65535, 0], "all the great man sat and beamed": [65535, 0], "the great man sat and beamed a": [65535, 0], "great man sat and beamed a majestic": [65535, 0], "man sat and beamed a majestic judicial": [65535, 0], "sat and beamed a majestic judicial smile": [65535, 0], "and beamed a majestic judicial smile upon": [65535, 0], "beamed a majestic judicial smile upon all": [65535, 0], "a majestic judicial smile upon all the": [65535, 0], "majestic judicial smile upon all the house": [65535, 0], "judicial smile upon all the house and": [65535, 0], "smile upon all the house and warmed": [65535, 0], "upon all the house and warmed himself": [65535, 0], "all the house and warmed himself in": [65535, 0], "the house and warmed himself in the": [65535, 0], "house and warmed himself in the sun": [65535, 0], "and warmed himself in the sun of": [65535, 0], "warmed himself in the sun of his": [65535, 0], "himself in the sun of his own": [65535, 0], "in the sun of his own grandeur": [65535, 0], "the sun of his own grandeur for": [65535, 0], "sun of his own grandeur for he": [65535, 0], "of his own grandeur for he was": [65535, 0], "his own grandeur for he was showing": [65535, 0], "own grandeur for he was showing off": [65535, 0], "grandeur for he was showing off too": [65535, 0], "for he was showing off too there": [65535, 0], "he was showing off too there was": [65535, 0], "was showing off too there was only": [65535, 0], "showing off too there was only one": [65535, 0], "off too there was only one thing": [65535, 0], "too there was only one thing wanting": [65535, 0], "there was only one thing wanting to": [65535, 0], "was only one thing wanting to make": [65535, 0], "only one thing wanting to make mr": [65535, 0], "one thing wanting to make mr walters'": [65535, 0], "thing wanting to make mr walters' ecstasy": [65535, 0], "wanting to make mr walters' ecstasy complete": [65535, 0], "to make mr walters' ecstasy complete and": [65535, 0], "make mr walters' ecstasy complete and that": [65535, 0], "mr walters' ecstasy complete and that was": [65535, 0], "walters' ecstasy complete and that was a": [65535, 0], "ecstasy complete and that was a chance": [65535, 0], "complete and that was a chance to": [65535, 0], "and that was a chance to deliver": [65535, 0], "that was a chance to deliver a": [65535, 0], "was a chance to deliver a bible": [65535, 0], "a chance to deliver a bible prize": [65535, 0], "chance to deliver a bible prize and": [65535, 0], "to deliver a bible prize and exhibit": [65535, 0], "deliver a bible prize and exhibit a": [65535, 0], "a bible prize and exhibit a prodigy": [65535, 0], "bible prize and exhibit a prodigy several": [65535, 0], "prize and exhibit a prodigy several pupils": [65535, 0], "and exhibit a prodigy several pupils had": [65535, 0], "exhibit a prodigy several pupils had a": [65535, 0], "a prodigy several pupils had a few": [65535, 0], "prodigy several pupils had a few yellow": [65535, 0], "several pupils had a few yellow tickets": [65535, 0], "pupils had a few yellow tickets but": [65535, 0], "had a few yellow tickets but none": [65535, 0], "a few yellow tickets but none had": [65535, 0], "few yellow tickets but none had enough": [65535, 0], "yellow tickets but none had enough he": [65535, 0], "tickets but none had enough he had": [65535, 0], "but none had enough he had been": [65535, 0], "none had enough he had been around": [65535, 0], "had enough he had been around among": [65535, 0], "enough he had been around among the": [65535, 0], "he had been around among the star": [65535, 0], "had been around among the star pupils": [65535, 0], "been around among the star pupils inquiring": [65535, 0], "around among the star pupils inquiring he": [65535, 0], "among the star pupils inquiring he would": [65535, 0], "the star pupils inquiring he would have": [65535, 0], "star pupils inquiring he would have given": [65535, 0], "pupils inquiring he would have given worlds": [65535, 0], "inquiring he would have given worlds now": [65535, 0], "he would have given worlds now to": [65535, 0], "would have given worlds now to have": [65535, 0], "have given worlds now to have that": [65535, 0], "given worlds now to have that german": [65535, 0], "worlds now to have that german lad": [65535, 0], "now to have that german lad back": [65535, 0], "to have that german lad back again": [65535, 0], "have that german lad back again with": [65535, 0], "that german lad back again with a": [65535, 0], "german lad back again with a sound": [65535, 0], "lad back again with a sound mind": [65535, 0], "back again with a sound mind and": [65535, 0], "again with a sound mind and now": [65535, 0], "with a sound mind and now at": [65535, 0], "a sound mind and now at this": [65535, 0], "sound mind and now at this moment": [65535, 0], "mind and now at this moment when": [65535, 0], "and now at this moment when hope": [65535, 0], "now at this moment when hope was": [65535, 0], "at this moment when hope was dead": [65535, 0], "this moment when hope was dead tom": [65535, 0], "moment when hope was dead tom sawyer": [65535, 0], "when hope was dead tom sawyer came": [65535, 0], "hope was dead tom sawyer came forward": [65535, 0], "was dead tom sawyer came forward with": [65535, 0], "dead tom sawyer came forward with nine": [65535, 0], "tom sawyer came forward with nine yellow": [65535, 0], "sawyer came forward with nine yellow tickets": [65535, 0], "came forward with nine yellow tickets nine": [65535, 0], "forward with nine yellow tickets nine red": [65535, 0], "with nine yellow tickets nine red tickets": [65535, 0], "nine yellow tickets nine red tickets and": [65535, 0], "yellow tickets nine red tickets and ten": [65535, 0], "tickets nine red tickets and ten blue": [65535, 0], "nine red tickets and ten blue ones": [65535, 0], "red tickets and ten blue ones and": [65535, 0], "tickets and ten blue ones and demanded": [65535, 0], "and ten blue ones and demanded a": [65535, 0], "ten blue ones and demanded a bible": [65535, 0], "blue ones and demanded a bible this": [65535, 0], "ones and demanded a bible this was": [65535, 0], "and demanded a bible this was a": [65535, 0], "demanded a bible this was a thunderbolt": [65535, 0], "a bible this was a thunderbolt out": [65535, 0], "bible this was a thunderbolt out of": [65535, 0], "this was a thunderbolt out of a": [65535, 0], "was a thunderbolt out of a clear": [65535, 0], "a thunderbolt out of a clear sky": [65535, 0], "thunderbolt out of a clear sky walters": [65535, 0], "out of a clear sky walters was": [65535, 0], "of a clear sky walters was not": [65535, 0], "a clear sky walters was not expecting": [65535, 0], "clear sky walters was not expecting an": [65535, 0], "sky walters was not expecting an application": [65535, 0], "walters was not expecting an application from": [65535, 0], "was not expecting an application from this": [65535, 0], "not expecting an application from this source": [65535, 0], "expecting an application from this source for": [65535, 0], "an application from this source for the": [65535, 0], "application from this source for the next": [65535, 0], "from this source for the next ten": [65535, 0], "this source for the next ten years": [65535, 0], "source for the next ten years but": [65535, 0], "for the next ten years but there": [65535, 0], "the next ten years but there was": [65535, 0], "next ten years but there was no": [65535, 0], "ten years but there was no getting": [65535, 0], "years but there was no getting around": [65535, 0], "but there was no getting around it": [65535, 0], "there was no getting around it here": [65535, 0], "was no getting around it here were": [65535, 0], "no getting around it here were the": [65535, 0], "getting around it here were the certified": [65535, 0], "around it here were the certified checks": [65535, 0], "it here were the certified checks and": [65535, 0], "here were the certified checks and they": [65535, 0], "were the certified checks and they were": [65535, 0], "the certified checks and they were good": [65535, 0], "certified checks and they were good for": [65535, 0], "checks and they were good for their": [65535, 0], "and they were good for their face": [65535, 0], "they were good for their face tom": [65535, 0], "were good for their face tom was": [65535, 0], "good for their face tom was therefore": [65535, 0], "for their face tom was therefore elevated": [65535, 0], "their face tom was therefore elevated to": [65535, 0], "face tom was therefore elevated to a": [65535, 0], "tom was therefore elevated to a place": [65535, 0], "was therefore elevated to a place with": [65535, 0], "therefore elevated to a place with the": [65535, 0], "elevated to a place with the judge": [65535, 0], "to a place with the judge and": [65535, 0], "a place with the judge and the": [65535, 0], "place with the judge and the other": [65535, 0], "with the judge and the other elect": [65535, 0], "the judge and the other elect and": [65535, 0], "judge and the other elect and the": [65535, 0], "and the other elect and the great": [65535, 0], "the other elect and the great news": [65535, 0], "other elect and the great news was": [65535, 0], "elect and the great news was announced": [65535, 0], "and the great news was announced from": [65535, 0], "the great news was announced from headquarters": [65535, 0], "great news was announced from headquarters it": [65535, 0], "news was announced from headquarters it was": [65535, 0], "was announced from headquarters it was the": [65535, 0], "announced from headquarters it was the most": [65535, 0], "from headquarters it was the most stunning": [65535, 0], "headquarters it was the most stunning surprise": [65535, 0], "it was the most stunning surprise of": [65535, 0], "was the most stunning surprise of the": [65535, 0], "the most stunning surprise of the decade": [65535, 0], "most stunning surprise of the decade and": [65535, 0], "stunning surprise of the decade and so": [65535, 0], "surprise of the decade and so profound": [65535, 0], "of the decade and so profound was": [65535, 0], "the decade and so profound was the": [65535, 0], "decade and so profound was the sensation": [65535, 0], "and so profound was the sensation that": [65535, 0], "so profound was the sensation that it": [65535, 0], "profound was the sensation that it lifted": [65535, 0], "was the sensation that it lifted the": [65535, 0], "the sensation that it lifted the new": [65535, 0], "sensation that it lifted the new hero": [65535, 0], "that it lifted the new hero up": [65535, 0], "it lifted the new hero up to": [65535, 0], "lifted the new hero up to the": [65535, 0], "the new hero up to the judicial": [65535, 0], "new hero up to the judicial one's": [65535, 0], "hero up to the judicial one's altitude": [65535, 0], "up to the judicial one's altitude and": [65535, 0], "to the judicial one's altitude and the": [65535, 0], "the judicial one's altitude and the school": [65535, 0], "judicial one's altitude and the school had": [65535, 0], "one's altitude and the school had two": [65535, 0], "altitude and the school had two marvels": [65535, 0], "and the school had two marvels to": [65535, 0], "the school had two marvels to gaze": [65535, 0], "school had two marvels to gaze upon": [65535, 0], "had two marvels to gaze upon in": [65535, 0], "two marvels to gaze upon in place": [65535, 0], "marvels to gaze upon in place of": [65535, 0], "to gaze upon in place of one": [65535, 0], "gaze upon in place of one the": [65535, 0], "upon in place of one the boys": [65535, 0], "in place of one the boys were": [65535, 0], "place of one the boys were all": [65535, 0], "of one the boys were all eaten": [65535, 0], "one the boys were all eaten up": [65535, 0], "the boys were all eaten up with": [65535, 0], "boys were all eaten up with envy": [65535, 0], "were all eaten up with envy but": [65535, 0], "all eaten up with envy but those": [65535, 0], "eaten up with envy but those that": [65535, 0], "up with envy but those that suffered": [65535, 0], "with envy but those that suffered the": [65535, 0], "envy but those that suffered the bitterest": [65535, 0], "but those that suffered the bitterest pangs": [65535, 0], "those that suffered the bitterest pangs were": [65535, 0], "that suffered the bitterest pangs were those": [65535, 0], "suffered the bitterest pangs were those who": [65535, 0], "the bitterest pangs were those who perceived": [65535, 0], "bitterest pangs were those who perceived too": [65535, 0], "pangs were those who perceived too late": [65535, 0], "were those who perceived too late that": [65535, 0], "those who perceived too late that they": [65535, 0], "who perceived too late that they themselves": [65535, 0], "perceived too late that they themselves had": [65535, 0], "too late that they themselves had contributed": [65535, 0], "late that they themselves had contributed to": [65535, 0], "that they themselves had contributed to this": [65535, 0], "they themselves had contributed to this hated": [65535, 0], "themselves had contributed to this hated splendor": [65535, 0], "had contributed to this hated splendor by": [65535, 0], "contributed to this hated splendor by trading": [65535, 0], "to this hated splendor by trading tickets": [65535, 0], "this hated splendor by trading tickets to": [65535, 0], "hated splendor by trading tickets to tom": [65535, 0], "splendor by trading tickets to tom for": [65535, 0], "by trading tickets to tom for the": [65535, 0], "trading tickets to tom for the wealth": [65535, 0], "tickets to tom for the wealth he": [65535, 0], "to tom for the wealth he had": [65535, 0], "tom for the wealth he had amassed": [65535, 0], "for the wealth he had amassed in": [65535, 0], "the wealth he had amassed in selling": [65535, 0], "wealth he had amassed in selling whitewashing": [65535, 0], "he had amassed in selling whitewashing privileges": [65535, 0], "had amassed in selling whitewashing privileges these": [65535, 0], "amassed in selling whitewashing privileges these despised": [65535, 0], "in selling whitewashing privileges these despised themselves": [65535, 0], "selling whitewashing privileges these despised themselves as": [65535, 0], "whitewashing privileges these despised themselves as being": [65535, 0], "privileges these despised themselves as being the": [65535, 0], "these despised themselves as being the dupes": [65535, 0], "despised themselves as being the dupes of": [65535, 0], "themselves as being the dupes of a": [65535, 0], "as being the dupes of a wily": [65535, 0], "being the dupes of a wily fraud": [65535, 0], "the dupes of a wily fraud a": [65535, 0], "dupes of a wily fraud a guileful": [65535, 0], "of a wily fraud a guileful snake": [65535, 0], "a wily fraud a guileful snake in": [65535, 0], "wily fraud a guileful snake in the": [65535, 0], "fraud a guileful snake in the grass": [65535, 0], "a guileful snake in the grass the": [65535, 0], "guileful snake in the grass the prize": [65535, 0], "snake in the grass the prize was": [65535, 0], "in the grass the prize was delivered": [65535, 0], "the grass the prize was delivered to": [65535, 0], "grass the prize was delivered to tom": [65535, 0], "the prize was delivered to tom with": [65535, 0], "prize was delivered to tom with as": [65535, 0], "was delivered to tom with as much": [65535, 0], "delivered to tom with as much effusion": [65535, 0], "to tom with as much effusion as": [65535, 0], "tom with as much effusion as the": [65535, 0], "with as much effusion as the superintendent": [65535, 0], "as much effusion as the superintendent could": [65535, 0], "much effusion as the superintendent could pump": [65535, 0], "effusion as the superintendent could pump up": [65535, 0], "as the superintendent could pump up under": [65535, 0], "the superintendent could pump up under the": [65535, 0], "superintendent could pump up under the circumstances": [65535, 0], "could pump up under the circumstances but": [65535, 0], "pump up under the circumstances but it": [65535, 0], "up under the circumstances but it lacked": [65535, 0], "under the circumstances but it lacked somewhat": [65535, 0], "the circumstances but it lacked somewhat of": [65535, 0], "circumstances but it lacked somewhat of the": [65535, 0], "but it lacked somewhat of the true": [65535, 0], "it lacked somewhat of the true gush": [65535, 0], "lacked somewhat of the true gush for": [65535, 0], "somewhat of the true gush for the": [65535, 0], "of the true gush for the poor": [65535, 0], "the true gush for the poor fellow's": [65535, 0], "true gush for the poor fellow's instinct": [65535, 0], "gush for the poor fellow's instinct taught": [65535, 0], "for the poor fellow's instinct taught him": [65535, 0], "the poor fellow's instinct taught him that": [65535, 0], "poor fellow's instinct taught him that there": [65535, 0], "fellow's instinct taught him that there was": [65535, 0], "instinct taught him that there was a": [65535, 0], "taught him that there was a mystery": [65535, 0], "him that there was a mystery here": [65535, 0], "that there was a mystery here that": [65535, 0], "there was a mystery here that could": [65535, 0], "was a mystery here that could not": [65535, 0], "a mystery here that could not well": [65535, 0], "mystery here that could not well bear": [65535, 0], "here that could not well bear the": [65535, 0], "that could not well bear the light": [65535, 0], "could not well bear the light perhaps": [65535, 0], "not well bear the light perhaps it": [65535, 0], "well bear the light perhaps it was": [65535, 0], "bear the light perhaps it was simply": [65535, 0], "the light perhaps it was simply preposterous": [65535, 0], "light perhaps it was simply preposterous that": [65535, 0], "perhaps it was simply preposterous that this": [65535, 0], "it was simply preposterous that this boy": [65535, 0], "was simply preposterous that this boy had": [65535, 0], "simply preposterous that this boy had warehoused": [65535, 0], "preposterous that this boy had warehoused two": [65535, 0], "that this boy had warehoused two thousand": [65535, 0], "this boy had warehoused two thousand sheaves": [65535, 0], "boy had warehoused two thousand sheaves of": [65535, 0], "had warehoused two thousand sheaves of scriptural": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "two thousand sheaves of scriptural wisdom on": [65535, 0], "thousand sheaves of scriptural wisdom on his": [65535, 0], "sheaves of scriptural wisdom on his premises": [65535, 0], "of scriptural wisdom on his premises a": [65535, 0], "scriptural wisdom on his premises a dozen": [65535, 0], "wisdom on his premises a dozen would": [65535, 0], "on his premises a dozen would strain": [65535, 0], "his premises a dozen would strain his": [65535, 0], "premises a dozen would strain his capacity": [65535, 0], "a dozen would strain his capacity without": [65535, 0], "dozen would strain his capacity without a": [65535, 0], "would strain his capacity without a doubt": [65535, 0], "strain his capacity without a doubt amy": [65535, 0], "his capacity without a doubt amy lawrence": [65535, 0], "capacity without a doubt amy lawrence was": [65535, 0], "without a doubt amy lawrence was proud": [65535, 0], "a doubt amy lawrence was proud and": [65535, 0], "doubt amy lawrence was proud and glad": [65535, 0], "amy lawrence was proud and glad and": [65535, 0], "lawrence was proud and glad and she": [65535, 0], "was proud and glad and she tried": [65535, 0], "proud and glad and she tried to": [65535, 0], "and glad and she tried to make": [65535, 0], "glad and she tried to make tom": [65535, 0], "and she tried to make tom see": [65535, 0], "she tried to make tom see it": [65535, 0], "tried to make tom see it in": [65535, 0], "to make tom see it in her": [65535, 0], "make tom see it in her face": [65535, 0], "tom see it in her face but": [65535, 0], "see it in her face but he": [65535, 0], "it in her face but he wouldn't": [65535, 0], "in her face but he wouldn't look": [65535, 0], "her face but he wouldn't look she": [65535, 0], "face but he wouldn't look she wondered": [65535, 0], "but he wouldn't look she wondered then": [65535, 0], "he wouldn't look she wondered then she": [65535, 0], "wouldn't look she wondered then she was": [65535, 0], "look she wondered then she was just": [65535, 0], "she wondered then she was just a": [65535, 0], "wondered then she was just a grain": [65535, 0], "then she was just a grain troubled": [65535, 0], "she was just a grain troubled next": [65535, 0], "was just a grain troubled next a": [65535, 0], "just a grain troubled next a dim": [65535, 0], "a grain troubled next a dim suspicion": [65535, 0], "grain troubled next a dim suspicion came": [65535, 0], "troubled next a dim suspicion came and": [65535, 0], "next a dim suspicion came and went": [65535, 0], "a dim suspicion came and went came": [65535, 0], "dim suspicion came and went came again": [65535, 0], "suspicion came and went came again she": [65535, 0], "came and went came again she watched": [65535, 0], "and went came again she watched a": [65535, 0], "went came again she watched a furtive": [65535, 0], "came again she watched a furtive glance": [65535, 0], "again she watched a furtive glance told": [65535, 0], "she watched a furtive glance told her": [65535, 0], "watched a furtive glance told her worlds": [65535, 0], "a furtive glance told her worlds and": [65535, 0], "furtive glance told her worlds and then": [65535, 0], "glance told her worlds and then her": [65535, 0], "told her worlds and then her heart": [65535, 0], "her worlds and then her heart broke": [65535, 0], "worlds and then her heart broke and": [65535, 0], "and then her heart broke and she": [65535, 0], "then her heart broke and she was": [65535, 0], "her heart broke and she was jealous": [65535, 0], "heart broke and she was jealous and": [65535, 0], "broke and she was jealous and angry": [65535, 0], "and she was jealous and angry and": [65535, 0], "she was jealous and angry and the": [65535, 0], "was jealous and angry and the tears": [65535, 0], "jealous and angry and the tears came": [65535, 0], "and angry and the tears came and": [65535, 0], "angry and the tears came and she": [65535, 0], "and the tears came and she hated": [65535, 0], "the tears came and she hated everybody": [65535, 0], "tears came and she hated everybody tom": [65535, 0], "came and she hated everybody tom most": [65535, 0], "and she hated everybody tom most of": [65535, 0], "she hated everybody tom most of all": [65535, 0], "hated everybody tom most of all she": [65535, 0], "everybody tom most of all she thought": [65535, 0], "tom most of all she thought tom": [65535, 0], "most of all she thought tom was": [65535, 0], "of all she thought tom was introduced": [65535, 0], "all she thought tom was introduced to": [65535, 0], "she thought tom was introduced to the": [65535, 0], "thought tom was introduced to the judge": [65535, 0], "tom was introduced to the judge but": [65535, 0], "was introduced to the judge but his": [65535, 0], "introduced to the judge but his tongue": [65535, 0], "to the judge but his tongue was": [65535, 0], "the judge but his tongue was tied": [65535, 0], "judge but his tongue was tied his": [65535, 0], "but his tongue was tied his breath": [65535, 0], "his tongue was tied his breath would": [65535, 0], "tongue was tied his breath would hardly": [65535, 0], "was tied his breath would hardly come": [65535, 0], "tied his breath would hardly come his": [65535, 0], "his breath would hardly come his heart": [65535, 0], "breath would hardly come his heart quaked": [65535, 0], "would hardly come his heart quaked partly": [65535, 0], "hardly come his heart quaked partly because": [65535, 0], "come his heart quaked partly because of": [65535, 0], "his heart quaked partly because of the": [65535, 0], "heart quaked partly because of the awful": [65535, 0], "quaked partly because of the awful greatness": [65535, 0], "partly because of the awful greatness of": [65535, 0], "because of the awful greatness of the": [65535, 0], "of the awful greatness of the man": [65535, 0], "the awful greatness of the man but": [65535, 0], "awful greatness of the man but mainly": [65535, 0], "greatness of the man but mainly because": [65535, 0], "of the man but mainly because he": [65535, 0], "the man but mainly because he was": [65535, 0], "man but mainly because he was her": [65535, 0], "but mainly because he was her parent": [65535, 0], "mainly because he was her parent he": [65535, 0], "because he was her parent he would": [65535, 0], "he was her parent he would have": [65535, 0], "was her parent he would have liked": [65535, 0], "her parent he would have liked to": [65535, 0], "parent he would have liked to fall": [65535, 0], "he would have liked to fall down": [65535, 0], "would have liked to fall down and": [65535, 0], "have liked to fall down and worship": [65535, 0], "liked to fall down and worship him": [65535, 0], "to fall down and worship him if": [65535, 0], "fall down and worship him if it": [65535, 0], "down and worship him if it were": [65535, 0], "and worship him if it were in": [65535, 0], "worship him if it were in the": [65535, 0], "him if it were in the dark": [65535, 0], "if it were in the dark the": [65535, 0], "it were in the dark the judge": [65535, 0], "were in the dark the judge put": [65535, 0], "in the dark the judge put his": [65535, 0], "the dark the judge put his hand": [65535, 0], "dark the judge put his hand on": [65535, 0], "the judge put his hand on tom's": [65535, 0], "judge put his hand on tom's head": [65535, 0], "put his hand on tom's head and": [65535, 0], "his hand on tom's head and called": [65535, 0], "hand on tom's head and called him": [65535, 0], "on tom's head and called him a": [65535, 0], "tom's head and called him a fine": [65535, 0], "head and called him a fine little": [65535, 0], "and called him a fine little man": [65535, 0], "called him a fine little man and": [65535, 0], "him a fine little man and asked": [65535, 0], "a fine little man and asked him": [65535, 0], "fine little man and asked him what": [65535, 0], "little man and asked him what his": [65535, 0], "man and asked him what his name": [65535, 0], "and asked him what his name was": [65535, 0], "asked him what his name was the": [65535, 0], "him what his name was the boy": [65535, 0], "what his name was the boy stammered": [65535, 0], "his name was the boy stammered gasped": [65535, 0], "name was the boy stammered gasped and": [65535, 0], "was the boy stammered gasped and got": [65535, 0], "the boy stammered gasped and got it": [65535, 0], "boy stammered gasped and got it out": [65535, 0], "stammered gasped and got it out tom": [65535, 0], "gasped and got it out tom oh": [65535, 0], "and got it out tom oh no": [65535, 0], "got it out tom oh no not": [65535, 0], "it out tom oh no not tom": [65535, 0], "out tom oh no not tom it": [65535, 0], "tom oh no not tom it is": [65535, 0], "oh no not tom it is thomas": [65535, 0], "no not tom it is thomas ah": [65535, 0], "not tom it is thomas ah that's": [65535, 0], "tom it is thomas ah that's it": [65535, 0], "it is thomas ah that's it i": [65535, 0], "is thomas ah that's it i thought": [65535, 0], "thomas ah that's it i thought there": [65535, 0], "ah that's it i thought there was": [65535, 0], "that's it i thought there was more": [65535, 0], "it i thought there was more to": [65535, 0], "i thought there was more to it": [65535, 0], "thought there was more to it maybe": [65535, 0], "there was more to it maybe that's": [65535, 0], "was more to it maybe that's very": [65535, 0], "more to it maybe that's very well": [65535, 0], "to it maybe that's very well but": [65535, 0], "it maybe that's very well but you've": [65535, 0], "maybe that's very well but you've another": [65535, 0], "that's very well but you've another one": [65535, 0], "very well but you've another one i": [65535, 0], "well but you've another one i daresay": [65535, 0], "but you've another one i daresay and": [65535, 0], "you've another one i daresay and you'll": [65535, 0], "another one i daresay and you'll tell": [65535, 0], "one i daresay and you'll tell it": [65535, 0], "i daresay and you'll tell it to": [65535, 0], "daresay and you'll tell it to me": [65535, 0], "and you'll tell it to me won't": [65535, 0], "you'll tell it to me won't you": [65535, 0], "tell it to me won't you tell": [65535, 0], "it to me won't you tell the": [65535, 0], "to me won't you tell the gentleman": [65535, 0], "me won't you tell the gentleman your": [65535, 0], "won't you tell the gentleman your other": [65535, 0], "you tell the gentleman your other name": [65535, 0], "tell the gentleman your other name thomas": [65535, 0], "the gentleman your other name thomas said": [65535, 0], "gentleman your other name thomas said walters": [65535, 0], "your other name thomas said walters and": [65535, 0], "other name thomas said walters and say": [65535, 0], "name thomas said walters and say sir": [65535, 0], "thomas said walters and say sir you": [65535, 0], "said walters and say sir you mustn't": [65535, 0], "walters and say sir you mustn't forget": [65535, 0], "and say sir you mustn't forget your": [65535, 0], "say sir you mustn't forget your manners": [65535, 0], "sir you mustn't forget your manners thomas": [65535, 0], "you mustn't forget your manners thomas sawyer": [65535, 0], "mustn't forget your manners thomas sawyer sir": [65535, 0], "forget your manners thomas sawyer sir that's": [65535, 0], "your manners thomas sawyer sir that's it": [65535, 0], "manners thomas sawyer sir that's it that's": [65535, 0], "thomas sawyer sir that's it that's a": [65535, 0], "sawyer sir that's it that's a good": [65535, 0], "sir that's it that's a good boy": [65535, 0], "that's it that's a good boy fine": [65535, 0], "it that's a good boy fine boy": [65535, 0], "that's a good boy fine boy fine": [65535, 0], "a good boy fine boy fine manly": [65535, 0], "good boy fine boy fine manly little": [65535, 0], "boy fine boy fine manly little fellow": [65535, 0], "fine boy fine manly little fellow two": [65535, 0], "boy fine manly little fellow two thousand": [65535, 0], "fine manly little fellow two thousand verses": [65535, 0], "manly little fellow two thousand verses is": [65535, 0], "little fellow two thousand verses is a": [65535, 0], "fellow two thousand verses is a great": [65535, 0], "two thousand verses is a great many": [65535, 0], "thousand verses is a great many very": [65535, 0], "verses is a great many very very": [65535, 0], "is a great many very very great": [65535, 0], "a great many very very great many": [65535, 0], "great many very very great many and": [65535, 0], "many very very great many and you": [65535, 0], "very very great many and you never": [65535, 0], "very great many and you never can": [65535, 0], "great many and you never can be": [65535, 0], "many and you never can be sorry": [65535, 0], "and you never can be sorry for": [65535, 0], "you never can be sorry for the": [65535, 0], "never can be sorry for the trouble": [65535, 0], "can be sorry for the trouble you": [65535, 0], "be sorry for the trouble you took": [65535, 0], "sorry for the trouble you took to": [65535, 0], "for the trouble you took to learn": [65535, 0], "the trouble you took to learn them": [65535, 0], "trouble you took to learn them for": [65535, 0], "you took to learn them for knowledge": [65535, 0], "took to learn them for knowledge is": [65535, 0], "to learn them for knowledge is worth": [65535, 0], "learn them for knowledge is worth more": [65535, 0], "them for knowledge is worth more than": [65535, 0], "for knowledge is worth more than anything": [65535, 0], "knowledge is worth more than anything there": [65535, 0], "is worth more than anything there is": [65535, 0], "worth more than anything there is in": [65535, 0], "more than anything there is in the": [65535, 0], "than anything there is in the world": [65535, 0], "anything there is in the world it's": [65535, 0], "there is in the world it's what": [65535, 0], "is in the world it's what makes": [65535, 0], "in the world it's what makes great": [65535, 0], "the world it's what makes great men": [65535, 0], "world it's what makes great men and": [65535, 0], "it's what makes great men and good": [65535, 0], "what makes great men and good men": [65535, 0], "makes great men and good men you'll": [65535, 0], "great men and good men you'll be": [65535, 0], "men and good men you'll be a": [65535, 0], "and good men you'll be a great": [65535, 0], "good men you'll be a great man": [65535, 0], "men you'll be a great man and": [65535, 0], "you'll be a great man and a": [65535, 0], "be a great man and a good": [65535, 0], "a great man and a good man": [65535, 0], "great man and a good man yourself": [65535, 0], "man and a good man yourself some": [65535, 0], "and a good man yourself some day": [65535, 0], "a good man yourself some day thomas": [65535, 0], "good man yourself some day thomas and": [65535, 0], "man yourself some day thomas and then": [65535, 0], "yourself some day thomas and then you'll": [65535, 0], "some day thomas and then you'll look": [65535, 0], "day thomas and then you'll look back": [65535, 0], "thomas and then you'll look back and": [65535, 0], "and then you'll look back and say": [65535, 0], "then you'll look back and say it's": [65535, 0], "you'll look back and say it's all": [65535, 0], "look back and say it's all owing": [65535, 0], "back and say it's all owing to": [65535, 0], "and say it's all owing to the": [65535, 0], "say it's all owing to the precious": [65535, 0], "it's all owing to the precious sunday": [65535, 0], "all owing to the precious sunday school": [65535, 0], "owing to the precious sunday school privileges": [65535, 0], "to the precious sunday school privileges of": [65535, 0], "the precious sunday school privileges of my": [65535, 0], "precious sunday school privileges of my boyhood": [65535, 0], "sunday school privileges of my boyhood it's": [65535, 0], "school privileges of my boyhood it's all": [65535, 0], "privileges of my boyhood it's all owing": [65535, 0], "of my boyhood it's all owing to": [65535, 0], "my boyhood it's all owing to my": [65535, 0], "boyhood it's all owing to my dear": [65535, 0], "it's all owing to my dear teachers": [65535, 0], "all owing to my dear teachers that": [65535, 0], "owing to my dear teachers that taught": [65535, 0], "to my dear teachers that taught me": [65535, 0], "my dear teachers that taught me to": [65535, 0], "dear teachers that taught me to learn": [65535, 0], "teachers that taught me to learn it's": [65535, 0], "that taught me to learn it's all": [65535, 0], "taught me to learn it's all owing": [65535, 0], "me to learn it's all owing to": [65535, 0], "to learn it's all owing to the": [65535, 0], "learn it's all owing to the good": [65535, 0], "it's all owing to the good superintendent": [65535, 0], "all owing to the good superintendent who": [65535, 0], "owing to the good superintendent who encouraged": [65535, 0], "to the good superintendent who encouraged me": [65535, 0], "the good superintendent who encouraged me and": [65535, 0], "good superintendent who encouraged me and watched": [65535, 0], "superintendent who encouraged me and watched over": [65535, 0], "who encouraged me and watched over me": [65535, 0], "encouraged me and watched over me and": [65535, 0], "me and watched over me and gave": [65535, 0], "and watched over me and gave me": [65535, 0], "watched over me and gave me a": [65535, 0], "over me and gave me a beautiful": [65535, 0], "me and gave me a beautiful bible": [65535, 0], "and gave me a beautiful bible a": [65535, 0], "gave me a beautiful bible a splendid": [65535, 0], "me a beautiful bible a splendid elegant": [65535, 0], "a beautiful bible a splendid elegant bible": [65535, 0], "beautiful bible a splendid elegant bible to": [65535, 0], "bible a splendid elegant bible to keep": [65535, 0], "a splendid elegant bible to keep and": [65535, 0], "splendid elegant bible to keep and have": [65535, 0], "elegant bible to keep and have it": [65535, 0], "bible to keep and have it all": [65535, 0], "to keep and have it all for": [65535, 0], "keep and have it all for my": [65535, 0], "and have it all for my own": [65535, 0], "have it all for my own always": [65535, 0], "it all for my own always it's": [65535, 0], "all for my own always it's all": [65535, 0], "for my own always it's all owing": [65535, 0], "my own always it's all owing to": [65535, 0], "own always it's all owing to right": [65535, 0], "always it's all owing to right bringing": [65535, 0], "it's all owing to right bringing up": [65535, 0], "all owing to right bringing up that": [65535, 0], "owing to right bringing up that is": [65535, 0], "to right bringing up that is what": [65535, 0], "right bringing up that is what you": [65535, 0], "bringing up that is what you will": [65535, 0], "up that is what you will say": [65535, 0], "that is what you will say thomas": [65535, 0], "is what you will say thomas and": [65535, 0], "what you will say thomas and you": [65535, 0], "you will say thomas and you wouldn't": [65535, 0], "will say thomas and you wouldn't take": [65535, 0], "say thomas and you wouldn't take any": [65535, 0], "thomas and you wouldn't take any money": [65535, 0], "and you wouldn't take any money for": [65535, 0], "you wouldn't take any money for those": [65535, 0], "wouldn't take any money for those two": [65535, 0], "take any money for those two thousand": [65535, 0], "any money for those two thousand verses": [65535, 0], "money for those two thousand verses no": [65535, 0], "for those two thousand verses no indeed": [65535, 0], "those two thousand verses no indeed you": [65535, 0], "two thousand verses no indeed you wouldn't": [65535, 0], "thousand verses no indeed you wouldn't and": [65535, 0], "verses no indeed you wouldn't and now": [65535, 0], "no indeed you wouldn't and now you": [65535, 0], "indeed you wouldn't and now you wouldn't": [65535, 0], "you wouldn't and now you wouldn't mind": [65535, 0], "wouldn't and now you wouldn't mind telling": [65535, 0], "and now you wouldn't mind telling me": [65535, 0], "now you wouldn't mind telling me and": [65535, 0], "you wouldn't mind telling me and this": [65535, 0], "wouldn't mind telling me and this lady": [65535, 0], "mind telling me and this lady some": [65535, 0], "telling me and this lady some of": [65535, 0], "me and this lady some of the": [65535, 0], "and this lady some of the things": [65535, 0], "this lady some of the things you've": [65535, 0], "lady some of the things you've learned": [65535, 0], "some of the things you've learned no": [65535, 0], "of the things you've learned no i": [65535, 0], "the things you've learned no i know": [65535, 0], "things you've learned no i know you": [65535, 0], "you've learned no i know you wouldn't": [65535, 0], "learned no i know you wouldn't for": [65535, 0], "no i know you wouldn't for we": [65535, 0], "i know you wouldn't for we are": [65535, 0], "know you wouldn't for we are proud": [65535, 0], "you wouldn't for we are proud of": [65535, 0], "wouldn't for we are proud of little": [65535, 0], "for we are proud of little boys": [65535, 0], "we are proud of little boys that": [65535, 0], "are proud of little boys that learn": [65535, 0], "proud of little boys that learn now": [65535, 0], "of little boys that learn now no": [65535, 0], "little boys that learn now no doubt": [65535, 0], "boys that learn now no doubt you": [65535, 0], "that learn now no doubt you know": [65535, 0], "learn now no doubt you know the": [65535, 0], "now no doubt you know the names": [65535, 0], "no doubt you know the names of": [65535, 0], "doubt you know the names of all": [65535, 0], "you know the names of all the": [65535, 0], "know the names of all the twelve": [65535, 0], "the names of all the twelve disciples": [65535, 0], "names of all the twelve disciples won't": [65535, 0], "of all the twelve disciples won't you": [65535, 0], "all the twelve disciples won't you tell": [65535, 0], "the twelve disciples won't you tell us": [65535, 0], "twelve disciples won't you tell us the": [65535, 0], "disciples won't you tell us the names": [65535, 0], "won't you tell us the names of": [65535, 0], "you tell us the names of the": [65535, 0], "tell us the names of the first": [65535, 0], "us the names of the first two": [65535, 0], "the names of the first two that": [65535, 0], "names of the first two that were": [65535, 0], "of the first two that were appointed": [65535, 0], "the first two that were appointed tom": [65535, 0], "first two that were appointed tom was": [65535, 0], "two that were appointed tom was tugging": [65535, 0], "that were appointed tom was tugging at": [65535, 0], "were appointed tom was tugging at a": [65535, 0], "appointed tom was tugging at a button": [65535, 0], "tom was tugging at a button hole": [65535, 0], "was tugging at a button hole and": [65535, 0], "tugging at a button hole and looking": [65535, 0], "at a button hole and looking sheepish": [65535, 0], "a button hole and looking sheepish he": [65535, 0], "button hole and looking sheepish he blushed": [65535, 0], "hole and looking sheepish he blushed now": [65535, 0], "and looking sheepish he blushed now and": [65535, 0], "looking sheepish he blushed now and his": [65535, 0], "sheepish he blushed now and his eyes": [65535, 0], "he blushed now and his eyes fell": [65535, 0], "blushed now and his eyes fell mr": [65535, 0], "now and his eyes fell mr walters'": [65535, 0], "and his eyes fell mr walters' heart": [65535, 0], "his eyes fell mr walters' heart sank": [65535, 0], "eyes fell mr walters' heart sank within": [65535, 0], "fell mr walters' heart sank within him": [65535, 0], "mr walters' heart sank within him he": [65535, 0], "walters' heart sank within him he said": [65535, 0], "heart sank within him he said to": [65535, 0], "sank within him he said to himself": [65535, 0], "within him he said to himself it": [65535, 0], "him he said to himself it is": [65535, 0], "he said to himself it is not": [65535, 0], "said to himself it is not possible": [65535, 0], "to himself it is not possible that": [65535, 0], "himself it is not possible that the": [65535, 0], "it is not possible that the boy": [65535, 0], "is not possible that the boy can": [65535, 0], "not possible that the boy can answer": [65535, 0], "possible that the boy can answer the": [65535, 0], "that the boy can answer the simplest": [65535, 0], "the boy can answer the simplest question": [65535, 0], "boy can answer the simplest question why": [65535, 0], "can answer the simplest question why did": [65535, 0], "answer the simplest question why did the": [65535, 0], "the simplest question why did the judge": [65535, 0], "simplest question why did the judge ask": [65535, 0], "question why did the judge ask him": [65535, 0], "why did the judge ask him yet": [65535, 0], "did the judge ask him yet he": [65535, 0], "the judge ask him yet he felt": [65535, 0], "judge ask him yet he felt obliged": [65535, 0], "ask him yet he felt obliged to": [65535, 0], "him yet he felt obliged to speak": [65535, 0], "yet he felt obliged to speak up": [65535, 0], "he felt obliged to speak up and": [65535, 0], "felt obliged to speak up and say": [65535, 0], "obliged to speak up and say answer": [65535, 0], "to speak up and say answer the": [65535, 0], "speak up and say answer the gentleman": [65535, 0], "up and say answer the gentleman thomas": [65535, 0], "and say answer the gentleman thomas don't": [65535, 0], "say answer the gentleman thomas don't be": [65535, 0], "answer the gentleman thomas don't be afraid": [65535, 0], "the gentleman thomas don't be afraid tom": [65535, 0], "gentleman thomas don't be afraid tom still": [65535, 0], "thomas don't be afraid tom still hung": [65535, 0], "don't be afraid tom still hung fire": [65535, 0], "be afraid tom still hung fire now": [65535, 0], "afraid tom still hung fire now i": [65535, 0], "tom still hung fire now i know": [65535, 0], "still hung fire now i know you'll": [65535, 0], "hung fire now i know you'll tell": [65535, 0], "fire now i know you'll tell me": [65535, 0], "now i know you'll tell me said": [65535, 0], "i know you'll tell me said the": [65535, 0], "know you'll tell me said the lady": [65535, 0], "you'll tell me said the lady the": [65535, 0], "tell me said the lady the names": [65535, 0], "me said the lady the names of": [65535, 0], "said the lady the names of the": [65535, 0], "the lady the names of the first": [65535, 0], "lady the names of the first two": [65535, 0], "the names of the first two disciples": [65535, 0], "names of the first two disciples were": [65535, 0], "of the first two disciples were david": [65535, 0], "the first two disciples were david and": [65535, 0], "first two disciples were david and goliath": [65535, 0], "two disciples were david and goliath let": [65535, 0], "disciples were david and goliath let us": [65535, 0], "were david and goliath let us draw": [65535, 0], "david and goliath let us draw the": [65535, 0], "and goliath let us draw the curtain": [65535, 0], "goliath let us draw the curtain of": [65535, 0], "let us draw the curtain of charity": [65535, 0], "us draw the curtain of charity over": [65535, 0], "draw the curtain of charity over the": [65535, 0], "the curtain of charity over the rest": [65535, 0], "curtain of charity over the rest of": [65535, 0], "of charity over the rest of the": [65535, 0], "charity over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world and": [65535, 0], "sun rose upon a tranquil world and beamed": [65535, 0], "rose upon a tranquil world and beamed down": [65535, 0], "upon a tranquil world and beamed down upon": [65535, 0], "a tranquil world and beamed down upon the": [65535, 0], "tranquil world and beamed down upon the peaceful": [65535, 0], "world and beamed down upon the peaceful village": [65535, 0], "and beamed down upon the peaceful village like": [65535, 0], "beamed down upon the peaceful village like a": [65535, 0], "down upon the peaceful village like a benediction": [65535, 0], "upon the peaceful village like a benediction breakfast": [65535, 0], "the peaceful village like a benediction breakfast over": [65535, 0], "peaceful village like a benediction breakfast over aunt": [65535, 0], "village like a benediction breakfast over aunt polly": [65535, 0], "like a benediction breakfast over aunt polly had": [65535, 0], "a benediction breakfast over aunt polly had family": [65535, 0], "benediction breakfast over aunt polly had family worship": [65535, 0], "breakfast over aunt polly had family worship it": [65535, 0], "over aunt polly had family worship it began": [65535, 0], "aunt polly had family worship it began with": [65535, 0], "polly had family worship it began with a": [65535, 0], "had family worship it began with a prayer": [65535, 0], "family worship it began with a prayer built": [65535, 0], "worship it began with a prayer built from": [65535, 0], "it began with a prayer built from the": [65535, 0], "began with a prayer built from the ground": [65535, 0], "with a prayer built from the ground up": [65535, 0], "a prayer built from the ground up of": [65535, 0], "prayer built from the ground up of solid": [65535, 0], "built from the ground up of solid courses": [65535, 0], "from the ground up of solid courses of": [65535, 0], "the ground up of solid courses of scriptural": [65535, 0], "ground up of solid courses of scriptural quotations": [65535, 0], "up of solid courses of scriptural quotations welded": [65535, 0], "of solid courses of scriptural quotations welded together": [65535, 0], "solid courses of scriptural quotations welded together with": [65535, 0], "courses of scriptural quotations welded together with a": [65535, 0], "of scriptural quotations welded together with a thin": [65535, 0], "scriptural quotations welded together with a thin mortar": [65535, 0], "quotations welded together with a thin mortar of": [65535, 0], "welded together with a thin mortar of originality": [65535, 0], "together with a thin mortar of originality and": [65535, 0], "with a thin mortar of originality and from": [65535, 0], "a thin mortar of originality and from the": [65535, 0], "thin mortar of originality and from the summit": [65535, 0], "mortar of originality and from the summit of": [65535, 0], "of originality and from the summit of this": [65535, 0], "originality and from the summit of this she": [65535, 0], "and from the summit of this she delivered": [65535, 0], "from the summit of this she delivered a": [65535, 0], "the summit of this she delivered a grim": [65535, 0], "summit of this she delivered a grim chapter": [65535, 0], "of this she delivered a grim chapter of": [65535, 0], "this she delivered a grim chapter of the": [65535, 0], "she delivered a grim chapter of the mosaic": [65535, 0], "delivered a grim chapter of the mosaic law": [65535, 0], "a grim chapter of the mosaic law as": [65535, 0], "grim chapter of the mosaic law as from": [65535, 0], "chapter of the mosaic law as from sinai": [65535, 0], "of the mosaic law as from sinai then": [65535, 0], "the mosaic law as from sinai then tom": [65535, 0], "mosaic law as from sinai then tom girded": [65535, 0], "law as from sinai then tom girded up": [65535, 0], "as from sinai then tom girded up his": [65535, 0], "from sinai then tom girded up his loins": [65535, 0], "sinai then tom girded up his loins so": [65535, 0], "then tom girded up his loins so to": [65535, 0], "tom girded up his loins so to speak": [65535, 0], "girded up his loins so to speak and": [65535, 0], "up his loins so to speak and went": [65535, 0], "his loins so to speak and went to": [65535, 0], "loins so to speak and went to work": [65535, 0], "so to speak and went to work to": [65535, 0], "to speak and went to work to get": [65535, 0], "speak and went to work to get his": [65535, 0], "and went to work to get his verses": [65535, 0], "went to work to get his verses sid": [65535, 0], "to work to get his verses sid had": [65535, 0], "work to get his verses sid had learned": [65535, 0], "to get his verses sid had learned his": [65535, 0], "get his verses sid had learned his lesson": [65535, 0], "his verses sid had learned his lesson days": [65535, 0], "verses sid had learned his lesson days before": [65535, 0], "sid had learned his lesson days before tom": [65535, 0], "had learned his lesson days before tom bent": [65535, 0], "learned his lesson days before tom bent all": [65535, 0], "his lesson days before tom bent all his": [65535, 0], "lesson days before tom bent all his energies": [65535, 0], "days before tom bent all his energies to": [65535, 0], "before tom bent all his energies to the": [65535, 0], "tom bent all his energies to the memorizing": [65535, 0], "bent all his energies to the memorizing of": [65535, 0], "all his energies to the memorizing of five": [65535, 0], "his energies to the memorizing of five verses": [65535, 0], "energies to the memorizing of five verses and": [65535, 0], "to the memorizing of five verses and he": [65535, 0], "the memorizing of five verses and he chose": [65535, 0], "memorizing of five verses and he chose part": [65535, 0], "of five verses and he chose part of": [65535, 0], "five verses and he chose part of the": [65535, 0], "verses and he chose part of the sermon": [65535, 0], "and he chose part of the sermon on": [65535, 0], "he chose part of the sermon on the": [65535, 0], "chose part of the sermon on the mount": [65535, 0], "part of the sermon on the mount because": [65535, 0], "of the sermon on the mount because he": [65535, 0], "the sermon on the mount because he could": [65535, 0], "sermon on the mount because he could find": [65535, 0], "on the mount because he could find no": [65535, 0], "the mount because he could find no verses": [65535, 0], "mount because he could find no verses that": [65535, 0], "because he could find no verses that were": [65535, 0], "he could find no verses that were shorter": [65535, 0], "could find no verses that were shorter at": [65535, 0], "find no verses that were shorter at the": [65535, 0], "no verses that were shorter at the end": [65535, 0], "verses that were shorter at the end of": [65535, 0], "that were shorter at the end of half": [65535, 0], "were shorter at the end of half an": [65535, 0], "shorter at the end of half an hour": [65535, 0], "at the end of half an hour tom": [65535, 0], "the end of half an hour tom had": [65535, 0], "end of half an hour tom had a": [65535, 0], "of half an hour tom had a vague": [65535, 0], "half an hour tom had a vague general": [65535, 0], "an hour tom had a vague general idea": [65535, 0], "hour tom had a vague general idea of": [65535, 0], "tom had a vague general idea of his": [65535, 0], "had a vague general idea of his lesson": [65535, 0], "a vague general idea of his lesson but": [65535, 0], "vague general idea of his lesson but no": [65535, 0], "general idea of his lesson but no more": [65535, 0], "idea of his lesson but no more for": [65535, 0], "of his lesson but no more for his": [65535, 0], "his lesson but no more for his mind": [65535, 0], "lesson but no more for his mind was": [65535, 0], "but no more for his mind was traversing": [65535, 0], "no more for his mind was traversing the": [65535, 0], "more for his mind was traversing the whole": [65535, 0], "for his mind was traversing the whole field": [65535, 0], "his mind was traversing the whole field of": [65535, 0], "mind was traversing the whole field of human": [65535, 0], "was traversing the whole field of human thought": [65535, 0], "traversing the whole field of human thought and": [65535, 0], "the whole field of human thought and his": [65535, 0], "whole field of human thought and his hands": [65535, 0], "field of human thought and his hands were": [65535, 0], "of human thought and his hands were busy": [65535, 0], "human thought and his hands were busy with": [65535, 0], "thought and his hands were busy with distracting": [65535, 0], "and his hands were busy with distracting recreations": [65535, 0], "his hands were busy with distracting recreations mary": [65535, 0], "hands were busy with distracting recreations mary took": [65535, 0], "were busy with distracting recreations mary took his": [65535, 0], "busy with distracting recreations mary took his book": [65535, 0], "with distracting recreations mary took his book to": [65535, 0], "distracting recreations mary took his book to hear": [65535, 0], "recreations mary took his book to hear him": [65535, 0], "mary took his book to hear him recite": [65535, 0], "took his book to hear him recite and": [65535, 0], "his book to hear him recite and he": [65535, 0], "book to hear him recite and he tried": [65535, 0], "to hear him recite and he tried to": [65535, 0], "hear him recite and he tried to find": [65535, 0], "him recite and he tried to find his": [65535, 0], "recite and he tried to find his way": [65535, 0], "and he tried to find his way through": [65535, 0], "he tried to find his way through the": [65535, 0], "tried to find his way through the fog": [65535, 0], "to find his way through the fog blessed": [65535, 0], "find his way through the fog blessed are": [65535, 0], "his way through the fog blessed are the": [65535, 0], "way through the fog blessed are the a": [65535, 0], "through the fog blessed are the a a": [65535, 0], "the fog blessed are the a a poor": [65535, 0], "fog blessed are the a a poor yes": [65535, 0], "blessed are the a a poor yes poor": [65535, 0], "are the a a poor yes poor blessed": [65535, 0], "the a a poor yes poor blessed are": [65535, 0], "a a poor yes poor blessed are the": [65535, 0], "a poor yes poor blessed are the poor": [65535, 0], "poor yes poor blessed are the poor a": [65535, 0], "yes poor blessed are the poor a a": [65535, 0], "poor blessed are the poor a a in": [65535, 0], "blessed are the poor a a in spirit": [65535, 0], "are the poor a a in spirit in": [65535, 0], "the poor a a in spirit in spirit": [65535, 0], "poor a a in spirit in spirit blessed": [65535, 0], "a a in spirit in spirit blessed are": [65535, 0], "a in spirit in spirit blessed are the": [65535, 0], "in spirit in spirit blessed are the poor": [65535, 0], "spirit in spirit blessed are the poor in": [65535, 0], "in spirit blessed are the poor in spirit": [65535, 0], "spirit blessed are the poor in spirit for": [65535, 0], "blessed are the poor in spirit for they": [65535, 0], "are the poor in spirit for they they": [65535, 0], "the poor in spirit for they they theirs": [65535, 0], "poor in spirit for they they theirs for": [65535, 0], "in spirit for they they theirs for theirs": [65535, 0], "spirit for they they theirs for theirs blessed": [65535, 0], "for they they theirs for theirs blessed are": [65535, 0], "they they theirs for theirs blessed are the": [65535, 0], "they theirs for theirs blessed are the poor": [65535, 0], "theirs for theirs blessed are the poor in": [65535, 0], "for theirs blessed are the poor in spirit": [65535, 0], "theirs blessed are the poor in spirit for": [65535, 0], "blessed are the poor in spirit for theirs": [65535, 0], "are the poor in spirit for theirs is": [65535, 0], "the poor in spirit for theirs is the": [65535, 0], "poor in spirit for theirs is the kingdom": [65535, 0], "in spirit for theirs is the kingdom of": [65535, 0], "spirit for theirs is the kingdom of heaven": [65535, 0], "for theirs is the kingdom of heaven blessed": [65535, 0], "theirs is the kingdom of heaven blessed are": [65535, 0], "is the kingdom of heaven blessed are they": [65535, 0], "the kingdom of heaven blessed are they that": [65535, 0], "kingdom of heaven blessed are they that mourn": [65535, 0], "of heaven blessed are they that mourn for": [65535, 0], "heaven blessed are they that mourn for they": [65535, 0], "blessed are they that mourn for they they": [65535, 0], "are they that mourn for they they sh": [65535, 0], "they that mourn for they they sh for": [65535, 0], "that mourn for they they sh for they": [65535, 0], "mourn for they they sh for they a": [65535, 0], "for they they sh for they a s": [65535, 0], "they they sh for they a s h": [65535, 0], "they sh for they a s h a": [65535, 0], "sh for they a s h a for": [65535, 0], "for they a s h a for they": [65535, 0], "they a s h a for they s": [65535, 0], "a s h a for they s h": [65535, 0], "s h a for they s h oh": [65535, 0], "h a for they s h oh i": [65535, 0], "a for they s h oh i don't": [65535, 0], "for they s h oh i don't know": [65535, 0], "they s h oh i don't know what": [65535, 0], "s h oh i don't know what it": [65535, 0], "h oh i don't know what it is": [65535, 0], "oh i don't know what it is shall": [65535, 0], "i don't know what it is shall oh": [65535, 0], "don't know what it is shall oh shall": [65535, 0], "know what it is shall oh shall for": [65535, 0], "what it is shall oh shall for they": [65535, 0], "it is shall oh shall for they shall": [65535, 0], "is shall oh shall for they shall for": [65535, 0], "shall oh shall for they shall for they": [65535, 0], "oh shall for they shall for they shall": [65535, 0], "shall for they shall for they shall a": [65535, 0], "for they shall for they shall a a": [65535, 0], "they shall for they shall a a shall": [65535, 0], "shall for they shall a a shall mourn": [65535, 0], "for they shall a a shall mourn a": [65535, 0], "they shall a a shall mourn a a": [65535, 0], "shall a a shall mourn a a blessed": [65535, 0], "a a shall mourn a a blessed are": [65535, 0], "a shall mourn a a blessed are they": [65535, 0], "shall mourn a a blessed are they that": [65535, 0], "mourn a a blessed are they that shall": [65535, 0], "a a blessed are they that shall they": [65535, 0], "a blessed are they that shall they that": [65535, 0], "blessed are they that shall they that a": [65535, 0], "are they that shall they that a they": [65535, 0], "they that shall they that a they that": [65535, 0], "that shall they that a they that shall": [65535, 0], "shall they that a they that shall mourn": [65535, 0], "they that a they that shall mourn for": [65535, 0], "that a they that shall mourn for they": [65535, 0], "a they that shall mourn for they shall": [65535, 0], "they that shall mourn for they shall a": [65535, 0], "that shall mourn for they shall a shall": [65535, 0], "shall mourn for they shall a shall what": [65535, 0], "mourn for they shall a shall what why": [65535, 0], "for they shall a shall what why don't": [65535, 0], "they shall a shall what why don't you": [65535, 0], "shall a shall what why don't you tell": [65535, 0], "a shall what why don't you tell me": [65535, 0], "shall what why don't you tell me mary": [65535, 0], "what why don't you tell me mary what": [65535, 0], "why don't you tell me mary what do": [65535, 0], "don't you tell me mary what do you": [65535, 0], "you tell me mary what do you want": [65535, 0], "tell me mary what do you want to": [65535, 0], "me mary what do you want to be": [65535, 0], "mary what do you want to be so": [65535, 0], "what do you want to be so mean": [65535, 0], "do you want to be so mean for": [65535, 0], "you want to be so mean for oh": [65535, 0], "want to be so mean for oh tom": [65535, 0], "to be so mean for oh tom you": [65535, 0], "be so mean for oh tom you poor": [65535, 0], "so mean for oh tom you poor thick": [65535, 0], "mean for oh tom you poor thick headed": [65535, 0], "for oh tom you poor thick headed thing": [65535, 0], "oh tom you poor thick headed thing i'm": [65535, 0], "tom you poor thick headed thing i'm not": [65535, 0], "you poor thick headed thing i'm not teasing": [65535, 0], "poor thick headed thing i'm not teasing you": [65535, 0], "thick headed thing i'm not teasing you i": [65535, 0], "headed thing i'm not teasing you i wouldn't": [65535, 0], "thing i'm not teasing you i wouldn't do": [65535, 0], "i'm not teasing you i wouldn't do that": [65535, 0], "not teasing you i wouldn't do that you": [65535, 0], "teasing you i wouldn't do that you must": [65535, 0], "you i wouldn't do that you must go": [65535, 0], "i wouldn't do that you must go and": [65535, 0], "wouldn't do that you must go and learn": [65535, 0], "do that you must go and learn it": [65535, 0], "that you must go and learn it again": [65535, 0], "you must go and learn it again don't": [65535, 0], "must go and learn it again don't you": [65535, 0], "go and learn it again don't you be": [65535, 0], "and learn it again don't you be discouraged": [65535, 0], "learn it again don't you be discouraged tom": [65535, 0], "it again don't you be discouraged tom you'll": [65535, 0], "again don't you be discouraged tom you'll manage": [65535, 0], "don't you be discouraged tom you'll manage it": [65535, 0], "you be discouraged tom you'll manage it and": [65535, 0], "be discouraged tom you'll manage it and if": [65535, 0], "discouraged tom you'll manage it and if you": [65535, 0], "tom you'll manage it and if you do": [65535, 0], "you'll manage it and if you do i'll": [65535, 0], "manage it and if you do i'll give": [65535, 0], "it and if you do i'll give you": [65535, 0], "and if you do i'll give you something": [65535, 0], "if you do i'll give you something ever": [65535, 0], "you do i'll give you something ever so": [65535, 0], "do i'll give you something ever so nice": [65535, 0], "i'll give you something ever so nice there": [65535, 0], "give you something ever so nice there now": [65535, 0], "you something ever so nice there now that's": [65535, 0], "something ever so nice there now that's a": [65535, 0], "ever so nice there now that's a good": [65535, 0], "so nice there now that's a good boy": [65535, 0], "nice there now that's a good boy all": [65535, 0], "there now that's a good boy all right": [65535, 0], "now that's a good boy all right what": [65535, 0], "that's a good boy all right what is": [65535, 0], "a good boy all right what is it": [65535, 0], "good boy all right what is it mary": [65535, 0], "boy all right what is it mary tell": [65535, 0], "all right what is it mary tell me": [65535, 0], "right what is it mary tell me what": [65535, 0], "what is it mary tell me what it": [65535, 0], "is it mary tell me what it is": [65535, 0], "it mary tell me what it is never": [65535, 0], "mary tell me what it is never you": [65535, 0], "tell me what it is never you mind": [65535, 0], "me what it is never you mind tom": [65535, 0], "what it is never you mind tom you": [65535, 0], "it is never you mind tom you know": [65535, 0], "is never you mind tom you know if": [65535, 0], "never you mind tom you know if i": [65535, 0], "you mind tom you know if i say": [65535, 0], "mind tom you know if i say it's": [65535, 0], "tom you know if i say it's nice": [65535, 0], "you know if i say it's nice it": [65535, 0], "know if i say it's nice it is": [65535, 0], "if i say it's nice it is nice": [65535, 0], "i say it's nice it is nice you": [65535, 0], "say it's nice it is nice you bet": [65535, 0], "it's nice it is nice you bet you": [65535, 0], "nice it is nice you bet you that's": [65535, 0], "it is nice you bet you that's so": [65535, 0], "is nice you bet you that's so mary": [65535, 0], "nice you bet you that's so mary all": [65535, 0], "you bet you that's so mary all right": [65535, 0], "bet you that's so mary all right i'll": [65535, 0], "you that's so mary all right i'll tackle": [65535, 0], "that's so mary all right i'll tackle it": [65535, 0], "so mary all right i'll tackle it again": [65535, 0], "mary all right i'll tackle it again and": [65535, 0], "all right i'll tackle it again and he": [65535, 0], "right i'll tackle it again and he did": [65535, 0], "i'll tackle it again and he did tackle": [65535, 0], "tackle it again and he did tackle it": [65535, 0], "it again and he did tackle it again": [65535, 0], "again and he did tackle it again and": [65535, 0], "and he did tackle it again and under": [65535, 0], "he did tackle it again and under the": [65535, 0], "did tackle it again and under the double": [65535, 0], "tackle it again and under the double pressure": [65535, 0], "it again and under the double pressure of": [65535, 0], "again and under the double pressure of curiosity": [65535, 0], "and under the double pressure of curiosity and": [65535, 0], "under the double pressure of curiosity and prospective": [65535, 0], "the double pressure of curiosity and prospective gain": [65535, 0], "double pressure of curiosity and prospective gain he": [65535, 0], "pressure of curiosity and prospective gain he did": [65535, 0], "of curiosity and prospective gain he did it": [65535, 0], "curiosity and prospective gain he did it with": [65535, 0], "and prospective gain he did it with such": [65535, 0], "prospective gain he did it with such spirit": [65535, 0], "gain he did it with such spirit that": [65535, 0], "he did it with such spirit that he": [65535, 0], "did it with such spirit that he accomplished": [65535, 0], "it with such spirit that he accomplished a": [65535, 0], "with such spirit that he accomplished a shining": [65535, 0], "such spirit that he accomplished a shining success": [65535, 0], "spirit that he accomplished a shining success mary": [65535, 0], "that he accomplished a shining success mary gave": [65535, 0], "he accomplished a shining success mary gave him": [65535, 0], "accomplished a shining success mary gave him a": [65535, 0], "a shining success mary gave him a brand": [65535, 0], "shining success mary gave him a brand new": [65535, 0], "success mary gave him a brand new barlow": [65535, 0], "mary gave him a brand new barlow knife": [65535, 0], "gave him a brand new barlow knife worth": [65535, 0], "him a brand new barlow knife worth twelve": [65535, 0], "a brand new barlow knife worth twelve and": [65535, 0], "brand new barlow knife worth twelve and a": [65535, 0], "new barlow knife worth twelve and a half": [65535, 0], "barlow knife worth twelve and a half cents": [65535, 0], "knife worth twelve and a half cents and": [65535, 0], "worth twelve and a half cents and the": [65535, 0], "twelve and a half cents and the convulsion": [65535, 0], "and a half cents and the convulsion of": [65535, 0], "a half cents and the convulsion of delight": [65535, 0], "half cents and the convulsion of delight that": [65535, 0], "cents and the convulsion of delight that swept": [65535, 0], "and the convulsion of delight that swept his": [65535, 0], "the convulsion of delight that swept his system": [65535, 0], "convulsion of delight that swept his system shook": [65535, 0], "of delight that swept his system shook him": [65535, 0], "delight that swept his system shook him to": [65535, 0], "that swept his system shook him to his": [65535, 0], "swept his system shook him to his foundations": [65535, 0], "his system shook him to his foundations true": [65535, 0], "system shook him to his foundations true the": [65535, 0], "shook him to his foundations true the knife": [65535, 0], "him to his foundations true the knife would": [65535, 0], "to his foundations true the knife would not": [65535, 0], "his foundations true the knife would not cut": [65535, 0], "foundations true the knife would not cut anything": [65535, 0], "true the knife would not cut anything but": [65535, 0], "the knife would not cut anything but it": [65535, 0], "knife would not cut anything but it was": [65535, 0], "would not cut anything but it was a": [65535, 0], "not cut anything but it was a sure": [65535, 0], "cut anything but it was a sure enough": [65535, 0], "anything but it was a sure enough barlow": [65535, 0], "but it was a sure enough barlow and": [65535, 0], "it was a sure enough barlow and there": [65535, 0], "was a sure enough barlow and there was": [65535, 0], "a sure enough barlow and there was inconceivable": [65535, 0], "sure enough barlow and there was inconceivable grandeur": [65535, 0], "enough barlow and there was inconceivable grandeur in": [65535, 0], "barlow and there was inconceivable grandeur in that": [65535, 0], "and there was inconceivable grandeur in that though": [65535, 0], "there was inconceivable grandeur in that though where": [65535, 0], "was inconceivable grandeur in that though where the": [65535, 0], "inconceivable grandeur in that though where the western": [65535, 0], "grandeur in that though where the western boys": [65535, 0], "in that though where the western boys ever": [65535, 0], "that though where the western boys ever got": [65535, 0], "though where the western boys ever got the": [65535, 0], "where the western boys ever got the idea": [65535, 0], "the western boys ever got the idea that": [65535, 0], "western boys ever got the idea that such": [65535, 0], "boys ever got the idea that such a": [65535, 0], "ever got the idea that such a weapon": [65535, 0], "got the idea that such a weapon could": [65535, 0], "the idea that such a weapon could possibly": [65535, 0], "idea that such a weapon could possibly be": [65535, 0], "that such a weapon could possibly be counterfeited": [65535, 0], "such a weapon could possibly be counterfeited to": [65535, 0], "a weapon could possibly be counterfeited to its": [65535, 0], "weapon could possibly be counterfeited to its injury": [65535, 0], "could possibly be counterfeited to its injury is": [65535, 0], "possibly be counterfeited to its injury is an": [65535, 0], "be counterfeited to its injury is an imposing": [65535, 0], "counterfeited to its injury is an imposing mystery": [65535, 0], "to its injury is an imposing mystery and": [65535, 0], "its injury is an imposing mystery and will": [65535, 0], "injury is an imposing mystery and will always": [65535, 0], "is an imposing mystery and will always remain": [65535, 0], "an imposing mystery and will always remain so": [65535, 0], "imposing mystery and will always remain so perhaps": [65535, 0], "mystery and will always remain so perhaps tom": [65535, 0], "and will always remain so perhaps tom contrived": [65535, 0], "will always remain so perhaps tom contrived to": [65535, 0], "always remain so perhaps tom contrived to scarify": [65535, 0], "remain so perhaps tom contrived to scarify the": [65535, 0], "so perhaps tom contrived to scarify the cupboard": [65535, 0], "perhaps tom contrived to scarify the cupboard with": [65535, 0], "tom contrived to scarify the cupboard with it": [65535, 0], "contrived to scarify the cupboard with it and": [65535, 0], "to scarify the cupboard with it and was": [65535, 0], "scarify the cupboard with it and was arranging": [65535, 0], "the cupboard with it and was arranging to": [65535, 0], "cupboard with it and was arranging to begin": [65535, 0], "with it and was arranging to begin on": [65535, 0], "it and was arranging to begin on the": [65535, 0], "and was arranging to begin on the bureau": [65535, 0], "was arranging to begin on the bureau when": [65535, 0], "arranging to begin on the bureau when he": [65535, 0], "to begin on the bureau when he was": [65535, 0], "begin on the bureau when he was called": [65535, 0], "on the bureau when he was called off": [65535, 0], "the bureau when he was called off to": [65535, 0], "bureau when he was called off to dress": [65535, 0], "when he was called off to dress for": [65535, 0], "he was called off to dress for sunday": [65535, 0], "was called off to dress for sunday school": [65535, 0], "called off to dress for sunday school mary": [65535, 0], "off to dress for sunday school mary gave": [65535, 0], "to dress for sunday school mary gave him": [65535, 0], "dress for sunday school mary gave him a": [65535, 0], "for sunday school mary gave him a tin": [65535, 0], "sunday school mary gave him a tin basin": [65535, 0], "school mary gave him a tin basin of": [65535, 0], "mary gave him a tin basin of water": [65535, 0], "gave him a tin basin of water and": [65535, 0], "him a tin basin of water and a": [65535, 0], "a tin basin of water and a piece": [65535, 0], "tin basin of water and a piece of": [65535, 0], "basin of water and a piece of soap": [65535, 0], "of water and a piece of soap and": [65535, 0], "water and a piece of soap and he": [65535, 0], "and a piece of soap and he went": [65535, 0], "a piece of soap and he went outside": [65535, 0], "piece of soap and he went outside the": [65535, 0], "of soap and he went outside the door": [65535, 0], "soap and he went outside the door and": [65535, 0], "and he went outside the door and set": [65535, 0], "he went outside the door and set the": [65535, 0], "went outside the door and set the basin": [65535, 0], "outside the door and set the basin on": [65535, 0], "the door and set the basin on a": [65535, 0], "door and set the basin on a little": [65535, 0], "and set the basin on a little bench": [65535, 0], "set the basin on a little bench there": [65535, 0], "the basin on a little bench there then": [65535, 0], "basin on a little bench there then he": [65535, 0], "on a little bench there then he dipped": [65535, 0], "a little bench there then he dipped the": [65535, 0], "little bench there then he dipped the soap": [65535, 0], "bench there then he dipped the soap in": [65535, 0], "there then he dipped the soap in the": [65535, 0], "then he dipped the soap in the water": [65535, 0], "he dipped the soap in the water and": [65535, 0], "dipped the soap in the water and laid": [65535, 0], "the soap in the water and laid it": [65535, 0], "soap in the water and laid it down": [65535, 0], "in the water and laid it down turned": [65535, 0], "the water and laid it down turned up": [65535, 0], "water and laid it down turned up his": [65535, 0], "and laid it down turned up his sleeves": [65535, 0], "laid it down turned up his sleeves poured": [65535, 0], "it down turned up his sleeves poured out": [65535, 0], "down turned up his sleeves poured out the": [65535, 0], "turned up his sleeves poured out the water": [65535, 0], "up his sleeves poured out the water on": [65535, 0], "his sleeves poured out the water on the": [65535, 0], "sleeves poured out the water on the ground": [65535, 0], "poured out the water on the ground gently": [65535, 0], "out the water on the ground gently and": [65535, 0], "the water on the ground gently and then": [65535, 0], "water on the ground gently and then entered": [65535, 0], "on the ground gently and then entered the": [65535, 0], "the ground gently and then entered the kitchen": [65535, 0], "ground gently and then entered the kitchen and": [65535, 0], "gently and then entered the kitchen and began": [65535, 0], "and then entered the kitchen and began to": [65535, 0], "then entered the kitchen and began to wipe": [65535, 0], "entered the kitchen and began to wipe his": [65535, 0], "the kitchen and began to wipe his face": [65535, 0], "kitchen and began to wipe his face diligently": [65535, 0], "and began to wipe his face diligently on": [65535, 0], "began to wipe his face diligently on the": [65535, 0], "to wipe his face diligently on the towel": [65535, 0], "wipe his face diligently on the towel behind": [65535, 0], "his face diligently on the towel behind the": [65535, 0], "face diligently on the towel behind the door": [65535, 0], "diligently on the towel behind the door but": [65535, 0], "on the towel behind the door but mary": [65535, 0], "the towel behind the door but mary removed": [65535, 0], "towel behind the door but mary removed the": [65535, 0], "behind the door but mary removed the towel": [65535, 0], "the door but mary removed the towel and": [65535, 0], "door but mary removed the towel and said": [65535, 0], "but mary removed the towel and said now": [65535, 0], "mary removed the towel and said now ain't": [65535, 0], "removed the towel and said now ain't you": [65535, 0], "the towel and said now ain't you ashamed": [65535, 0], "towel and said now ain't you ashamed tom": [65535, 0], "and said now ain't you ashamed tom you": [65535, 0], "said now ain't you ashamed tom you mustn't": [65535, 0], "now ain't you ashamed tom you mustn't be": [65535, 0], "ain't you ashamed tom you mustn't be so": [65535, 0], "you ashamed tom you mustn't be so bad": [65535, 0], "ashamed tom you mustn't be so bad water": [65535, 0], "tom you mustn't be so bad water won't": [65535, 0], "you mustn't be so bad water won't hurt": [65535, 0], "mustn't be so bad water won't hurt you": [65535, 0], "be so bad water won't hurt you tom": [65535, 0], "so bad water won't hurt you tom was": [65535, 0], "bad water won't hurt you tom was a": [65535, 0], "water won't hurt you tom was a trifle": [65535, 0], "won't hurt you tom was a trifle disconcerted": [65535, 0], "hurt you tom was a trifle disconcerted the": [65535, 0], "you tom was a trifle disconcerted the basin": [65535, 0], "tom was a trifle disconcerted the basin was": [65535, 0], "was a trifle disconcerted the basin was refilled": [65535, 0], "a trifle disconcerted the basin was refilled and": [65535, 0], "trifle disconcerted the basin was refilled and this": [65535, 0], "disconcerted the basin was refilled and this time": [65535, 0], "the basin was refilled and this time he": [65535, 0], "basin was refilled and this time he stood": [65535, 0], "was refilled and this time he stood over": [65535, 0], "refilled and this time he stood over it": [65535, 0], "and this time he stood over it a": [65535, 0], "this time he stood over it a little": [65535, 0], "time he stood over it a little while": [65535, 0], "he stood over it a little while gathering": [65535, 0], "stood over it a little while gathering resolution": [65535, 0], "over it a little while gathering resolution took": [65535, 0], "it a little while gathering resolution took in": [65535, 0], "a little while gathering resolution took in a": [65535, 0], "little while gathering resolution took in a big": [65535, 0], "while gathering resolution took in a big breath": [65535, 0], "gathering resolution took in a big breath and": [65535, 0], "resolution took in a big breath and began": [65535, 0], "took in a big breath and began when": [65535, 0], "in a big breath and began when he": [65535, 0], "a big breath and began when he entered": [65535, 0], "big breath and began when he entered the": [65535, 0], "breath and began when he entered the kitchen": [65535, 0], "and began when he entered the kitchen presently": [65535, 0], "began when he entered the kitchen presently with": [65535, 0], "when he entered the kitchen presently with both": [65535, 0], "he entered the kitchen presently with both eyes": [65535, 0], "entered the kitchen presently with both eyes shut": [65535, 0], "the kitchen presently with both eyes shut and": [65535, 0], "kitchen presently with both eyes shut and groping": [65535, 0], "presently with both eyes shut and groping for": [65535, 0], "with both eyes shut and groping for the": [65535, 0], "both eyes shut and groping for the towel": [65535, 0], "eyes shut and groping for the towel with": [65535, 0], "shut and groping for the towel with his": [65535, 0], "and groping for the towel with his hands": [65535, 0], "groping for the towel with his hands an": [65535, 0], "for the towel with his hands an honorable": [65535, 0], "the towel with his hands an honorable testimony": [65535, 0], "towel with his hands an honorable testimony of": [65535, 0], "with his hands an honorable testimony of suds": [65535, 0], "his hands an honorable testimony of suds and": [65535, 0], "hands an honorable testimony of suds and water": [65535, 0], "an honorable testimony of suds and water was": [65535, 0], "honorable testimony of suds and water was dripping": [65535, 0], "testimony of suds and water was dripping from": [65535, 0], "of suds and water was dripping from his": [65535, 0], "suds and water was dripping from his face": [65535, 0], "and water was dripping from his face but": [65535, 0], "water was dripping from his face but when": [65535, 0], "was dripping from his face but when he": [65535, 0], "dripping from his face but when he emerged": [65535, 0], "from his face but when he emerged from": [65535, 0], "his face but when he emerged from the": [65535, 0], "face but when he emerged from the towel": [65535, 0], "but when he emerged from the towel he": [65535, 0], "when he emerged from the towel he was": [65535, 0], "he emerged from the towel he was not": [65535, 0], "emerged from the towel he was not yet": [65535, 0], "from the towel he was not yet satisfactory": [65535, 0], "the towel he was not yet satisfactory for": [65535, 0], "towel he was not yet satisfactory for the": [65535, 0], "he was not yet satisfactory for the clean": [65535, 0], "was not yet satisfactory for the clean territory": [65535, 0], "not yet satisfactory for the clean territory stopped": [65535, 0], "yet satisfactory for the clean territory stopped short": [65535, 0], "satisfactory for the clean territory stopped short at": [65535, 0], "for the clean territory stopped short at his": [65535, 0], "the clean territory stopped short at his chin": [65535, 0], "clean territory stopped short at his chin and": [65535, 0], "territory stopped short at his chin and his": [65535, 0], "stopped short at his chin and his jaws": [65535, 0], "short at his chin and his jaws like": [65535, 0], "at his chin and his jaws like a": [65535, 0], "his chin and his jaws like a mask": [65535, 0], "chin and his jaws like a mask below": [65535, 0], "and his jaws like a mask below and": [65535, 0], "his jaws like a mask below and beyond": [65535, 0], "jaws like a mask below and beyond this": [65535, 0], "like a mask below and beyond this line": [65535, 0], "a mask below and beyond this line there": [65535, 0], "mask below and beyond this line there was": [65535, 0], "below and beyond this line there was a": [65535, 0], "and beyond this line there was a dark": [65535, 0], "beyond this line there was a dark expanse": [65535, 0], "this line there was a dark expanse of": [65535, 0], "line there was a dark expanse of unirrigated": [65535, 0], "there was a dark expanse of unirrigated soil": [65535, 0], "was a dark expanse of unirrigated soil that": [65535, 0], "a dark expanse of unirrigated soil that spread": [65535, 0], "dark expanse of unirrigated soil that spread downward": [65535, 0], "expanse of unirrigated soil that spread downward in": [65535, 0], "of unirrigated soil that spread downward in front": [65535, 0], "unirrigated soil that spread downward in front and": [65535, 0], "soil that spread downward in front and backward": [65535, 0], "that spread downward in front and backward around": [65535, 0], "spread downward in front and backward around his": [65535, 0], "downward in front and backward around his neck": [65535, 0], "in front and backward around his neck mary": [65535, 0], "front and backward around his neck mary took": [65535, 0], "and backward around his neck mary took him": [65535, 0], "backward around his neck mary took him in": [65535, 0], "around his neck mary took him in hand": [65535, 0], "his neck mary took him in hand and": [65535, 0], "neck mary took him in hand and when": [65535, 0], "mary took him in hand and when she": [65535, 0], "took him in hand and when she was": [65535, 0], "him in hand and when she was done": [65535, 0], "in hand and when she was done with": [65535, 0], "hand and when she was done with him": [65535, 0], "and when she was done with him he": [65535, 0], "when she was done with him he was": [65535, 0], "she was done with him he was a": [65535, 0], "was done with him he was a man": [65535, 0], "done with him he was a man and": [65535, 0], "with him he was a man and a": [65535, 0], "him he was a man and a brother": [65535, 0], "he was a man and a brother without": [65535, 0], "was a man and a brother without distinction": [65535, 0], "a man and a brother without distinction of": [65535, 0], "man and a brother without distinction of color": [65535, 0], "and a brother without distinction of color and": [65535, 0], "a brother without distinction of color and his": [65535, 0], "brother without distinction of color and his saturated": [65535, 0], "without distinction of color and his saturated hair": [65535, 0], "distinction of color and his saturated hair was": [65535, 0], "of color and his saturated hair was neatly": [65535, 0], "color and his saturated hair was neatly brushed": [65535, 0], "and his saturated hair was neatly brushed and": [65535, 0], "his saturated hair was neatly brushed and its": [65535, 0], "saturated hair was neatly brushed and its short": [65535, 0], "hair was neatly brushed and its short curls": [65535, 0], "was neatly brushed and its short curls wrought": [65535, 0], "neatly brushed and its short curls wrought into": [65535, 0], "brushed and its short curls wrought into a": [65535, 0], "and its short curls wrought into a dainty": [65535, 0], "its short curls wrought into a dainty and": [65535, 0], "short curls wrought into a dainty and symmetrical": [65535, 0], "curls wrought into a dainty and symmetrical general": [65535, 0], "wrought into a dainty and symmetrical general effect": [65535, 0], "into a dainty and symmetrical general effect he": [65535, 0], "a dainty and symmetrical general effect he privately": [65535, 0], "dainty and symmetrical general effect he privately smoothed": [65535, 0], "and symmetrical general effect he privately smoothed out": [65535, 0], "symmetrical general effect he privately smoothed out the": [65535, 0], "general effect he privately smoothed out the curls": [65535, 0], "effect he privately smoothed out the curls with": [65535, 0], "he privately smoothed out the curls with labor": [65535, 0], "privately smoothed out the curls with labor and": [65535, 0], "smoothed out the curls with labor and difficulty": [65535, 0], "out the curls with labor and difficulty and": [65535, 0], "the curls with labor and difficulty and plastered": [65535, 0], "curls with labor and difficulty and plastered his": [65535, 0], "with labor and difficulty and plastered his hair": [65535, 0], "labor and difficulty and plastered his hair close": [65535, 0], "and difficulty and plastered his hair close down": [65535, 0], "difficulty and plastered his hair close down to": [65535, 0], "and plastered his hair close down to his": [65535, 0], "plastered his hair close down to his head": [65535, 0], "his hair close down to his head for": [65535, 0], "hair close down to his head for he": [65535, 0], "close down to his head for he held": [65535, 0], "down to his head for he held curls": [65535, 0], "to his head for he held curls to": [65535, 0], "his head for he held curls to be": [65535, 0], "head for he held curls to be effeminate": [65535, 0], "for he held curls to be effeminate and": [65535, 0], "he held curls to be effeminate and his": [65535, 0], "held curls to be effeminate and his own": [65535, 0], "curls to be effeminate and his own filled": [65535, 0], "to be effeminate and his own filled his": [65535, 0], "be effeminate and his own filled his life": [65535, 0], "effeminate and his own filled his life with": [65535, 0], "and his own filled his life with bitterness": [65535, 0], "his own filled his life with bitterness then": [65535, 0], "own filled his life with bitterness then mary": [65535, 0], "filled his life with bitterness then mary got": [65535, 0], "his life with bitterness then mary got out": [65535, 0], "life with bitterness then mary got out a": [65535, 0], "with bitterness then mary got out a suit": [65535, 0], "bitterness then mary got out a suit of": [65535, 0], "then mary got out a suit of his": [65535, 0], "mary got out a suit of his clothing": [65535, 0], "got out a suit of his clothing that": [65535, 0], "out a suit of his clothing that had": [65535, 0], "a suit of his clothing that had been": [65535, 0], "suit of his clothing that had been used": [65535, 0], "of his clothing that had been used only": [65535, 0], "his clothing that had been used only on": [65535, 0], "clothing that had been used only on sundays": [65535, 0], "that had been used only on sundays during": [65535, 0], "had been used only on sundays during two": [65535, 0], "been used only on sundays during two years": [65535, 0], "used only on sundays during two years they": [65535, 0], "only on sundays during two years they were": [65535, 0], "on sundays during two years they were simply": [65535, 0], "sundays during two years they were simply called": [65535, 0], "during two years they were simply called his": [65535, 0], "two years they were simply called his other": [65535, 0], "years they were simply called his other clothes": [65535, 0], "they were simply called his other clothes and": [65535, 0], "were simply called his other clothes and so": [65535, 0], "simply called his other clothes and so by": [65535, 0], "called his other clothes and so by that": [65535, 0], "his other clothes and so by that we": [65535, 0], "other clothes and so by that we know": [65535, 0], "clothes and so by that we know the": [65535, 0], "and so by that we know the size": [65535, 0], "so by that we know the size of": [65535, 0], "by that we know the size of his": [65535, 0], "that we know the size of his wardrobe": [65535, 0], "we know the size of his wardrobe the": [65535, 0], "know the size of his wardrobe the girl": [65535, 0], "the size of his wardrobe the girl put": [65535, 0], "size of his wardrobe the girl put him": [65535, 0], "of his wardrobe the girl put him to": [65535, 0], "his wardrobe the girl put him to rights": [65535, 0], "wardrobe the girl put him to rights after": [65535, 0], "the girl put him to rights after he": [65535, 0], "girl put him to rights after he had": [65535, 0], "put him to rights after he had dressed": [65535, 0], "him to rights after he had dressed himself": [65535, 0], "to rights after he had dressed himself she": [65535, 0], "rights after he had dressed himself she buttoned": [65535, 0], "after he had dressed himself she buttoned his": [65535, 0], "he had dressed himself she buttoned his neat": [65535, 0], "had dressed himself she buttoned his neat roundabout": [65535, 0], "dressed himself she buttoned his neat roundabout up": [65535, 0], "himself she buttoned his neat roundabout up to": [65535, 0], "she buttoned his neat roundabout up to his": [65535, 0], "buttoned his neat roundabout up to his chin": [65535, 0], "his neat roundabout up to his chin turned": [65535, 0], "neat roundabout up to his chin turned his": [65535, 0], "roundabout up to his chin turned his vast": [65535, 0], "up to his chin turned his vast shirt": [65535, 0], "to his chin turned his vast shirt collar": [65535, 0], "his chin turned his vast shirt collar down": [65535, 0], "chin turned his vast shirt collar down over": [65535, 0], "turned his vast shirt collar down over his": [65535, 0], "his vast shirt collar down over his shoulders": [65535, 0], "vast shirt collar down over his shoulders brushed": [65535, 0], "shirt collar down over his shoulders brushed him": [65535, 0], "collar down over his shoulders brushed him off": [65535, 0], "down over his shoulders brushed him off and": [65535, 0], "over his shoulders brushed him off and crowned": [65535, 0], "his shoulders brushed him off and crowned him": [65535, 0], "shoulders brushed him off and crowned him with": [65535, 0], "brushed him off and crowned him with his": [65535, 0], "him off and crowned him with his speckled": [65535, 0], "off and crowned him with his speckled straw": [65535, 0], "and crowned him with his speckled straw hat": [65535, 0], "crowned him with his speckled straw hat he": [65535, 0], "him with his speckled straw hat he now": [65535, 0], "with his speckled straw hat he now looked": [65535, 0], "his speckled straw hat he now looked exceedingly": [65535, 0], "speckled straw hat he now looked exceedingly improved": [65535, 0], "straw hat he now looked exceedingly improved and": [65535, 0], "hat he now looked exceedingly improved and uncomfortable": [65535, 0], "he now looked exceedingly improved and uncomfortable he": [65535, 0], "now looked exceedingly improved and uncomfortable he was": [65535, 0], "looked exceedingly improved and uncomfortable he was fully": [65535, 0], "exceedingly improved and uncomfortable he was fully as": [65535, 0], "improved and uncomfortable he was fully as uncomfortable": [65535, 0], "and uncomfortable he was fully as uncomfortable as": [65535, 0], "uncomfortable he was fully as uncomfortable as he": [65535, 0], "he was fully as uncomfortable as he looked": [65535, 0], "was fully as uncomfortable as he looked for": [65535, 0], "fully as uncomfortable as he looked for there": [65535, 0], "as uncomfortable as he looked for there was": [65535, 0], "uncomfortable as he looked for there was a": [65535, 0], "as he looked for there was a restraint": [65535, 0], "he looked for there was a restraint about": [65535, 0], "looked for there was a restraint about whole": [65535, 0], "for there was a restraint about whole clothes": [65535, 0], "there was a restraint about whole clothes and": [65535, 0], "was a restraint about whole clothes and cleanliness": [65535, 0], "a restraint about whole clothes and cleanliness that": [65535, 0], "restraint about whole clothes and cleanliness that galled": [65535, 0], "about whole clothes and cleanliness that galled him": [65535, 0], "whole clothes and cleanliness that galled him he": [65535, 0], "clothes and cleanliness that galled him he hoped": [65535, 0], "and cleanliness that galled him he hoped that": [65535, 0], "cleanliness that galled him he hoped that mary": [65535, 0], "that galled him he hoped that mary would": [65535, 0], "galled him he hoped that mary would forget": [65535, 0], "him he hoped that mary would forget his": [65535, 0], "he hoped that mary would forget his shoes": [65535, 0], "hoped that mary would forget his shoes but": [65535, 0], "that mary would forget his shoes but the": [65535, 0], "mary would forget his shoes but the hope": [65535, 0], "would forget his shoes but the hope was": [65535, 0], "forget his shoes but the hope was blighted": [65535, 0], "his shoes but the hope was blighted she": [65535, 0], "shoes but the hope was blighted she coated": [65535, 0], "but the hope was blighted she coated them": [65535, 0], "the hope was blighted she coated them thoroughly": [65535, 0], "hope was blighted she coated them thoroughly with": [65535, 0], "was blighted she coated them thoroughly with tallow": [65535, 0], "blighted she coated them thoroughly with tallow as": [65535, 0], "she coated them thoroughly with tallow as was": [65535, 0], "coated them thoroughly with tallow as was the": [65535, 0], "them thoroughly with tallow as was the custom": [65535, 0], "thoroughly with tallow as was the custom and": [65535, 0], "with tallow as was the custom and brought": [65535, 0], "tallow as was the custom and brought them": [65535, 0], "as was the custom and brought them out": [65535, 0], "was the custom and brought them out he": [65535, 0], "the custom and brought them out he lost": [65535, 0], "custom and brought them out he lost his": [65535, 0], "and brought them out he lost his temper": [65535, 0], "brought them out he lost his temper and": [65535, 0], "them out he lost his temper and said": [65535, 0], "out he lost his temper and said he": [65535, 0], "he lost his temper and said he was": [65535, 0], "lost his temper and said he was always": [65535, 0], "his temper and said he was always being": [65535, 0], "temper and said he was always being made": [65535, 0], "and said he was always being made to": [65535, 0], "said he was always being made to do": [65535, 0], "he was always being made to do everything": [65535, 0], "was always being made to do everything he": [65535, 0], "always being made to do everything he didn't": [65535, 0], "being made to do everything he didn't want": [65535, 0], "made to do everything he didn't want to": [65535, 0], "to do everything he didn't want to do": [65535, 0], "do everything he didn't want to do but": [65535, 0], "everything he didn't want to do but mary": [65535, 0], "he didn't want to do but mary said": [65535, 0], "didn't want to do but mary said persuasively": [65535, 0], "want to do but mary said persuasively please": [65535, 0], "to do but mary said persuasively please tom": [65535, 0], "do but mary said persuasively please tom that's": [65535, 0], "but mary said persuasively please tom that's a": [65535, 0], "mary said persuasively please tom that's a good": [65535, 0], "said persuasively please tom that's a good boy": [65535, 0], "persuasively please tom that's a good boy so": [65535, 0], "please tom that's a good boy so he": [65535, 0], "tom that's a good boy so he got": [65535, 0], "that's a good boy so he got into": [65535, 0], "a good boy so he got into the": [65535, 0], "good boy so he got into the shoes": [65535, 0], "boy so he got into the shoes snarling": [65535, 0], "so he got into the shoes snarling mary": [65535, 0], "he got into the shoes snarling mary was": [65535, 0], "got into the shoes snarling mary was soon": [65535, 0], "into the shoes snarling mary was soon ready": [65535, 0], "the shoes snarling mary was soon ready and": [65535, 0], "shoes snarling mary was soon ready and the": [65535, 0], "snarling mary was soon ready and the three": [65535, 0], "mary was soon ready and the three children": [65535, 0], "was soon ready and the three children set": [65535, 0], "soon ready and the three children set out": [65535, 0], "ready and the three children set out for": [65535, 0], "and the three children set out for sunday": [65535, 0], "the three children set out for sunday school": [65535, 0], "three children set out for sunday school a": [65535, 0], "children set out for sunday school a place": [65535, 0], "set out for sunday school a place that": [65535, 0], "out for sunday school a place that tom": [65535, 0], "for sunday school a place that tom hated": [65535, 0], "sunday school a place that tom hated with": [65535, 0], "school a place that tom hated with his": [65535, 0], "a place that tom hated with his whole": [65535, 0], "place that tom hated with his whole heart": [65535, 0], "that tom hated with his whole heart but": [65535, 0], "tom hated with his whole heart but sid": [65535, 0], "hated with his whole heart but sid and": [65535, 0], "with his whole heart but sid and mary": [65535, 0], "his whole heart but sid and mary were": [65535, 0], "whole heart but sid and mary were fond": [65535, 0], "heart but sid and mary were fond of": [65535, 0], "but sid and mary were fond of it": [65535, 0], "sid and mary were fond of it sabbath": [65535, 0], "and mary were fond of it sabbath school": [65535, 0], "mary were fond of it sabbath school hours": [65535, 0], "were fond of it sabbath school hours were": [65535, 0], "fond of it sabbath school hours were from": [65535, 0], "of it sabbath school hours were from nine": [65535, 0], "it sabbath school hours were from nine to": [65535, 0], "sabbath school hours were from nine to half": [65535, 0], "school hours were from nine to half past": [65535, 0], "hours were from nine to half past ten": [65535, 0], "were from nine to half past ten and": [65535, 0], "from nine to half past ten and then": [65535, 0], "nine to half past ten and then church": [65535, 0], "to half past ten and then church service": [65535, 0], "half past ten and then church service two": [65535, 0], "past ten and then church service two of": [65535, 0], "ten and then church service two of the": [65535, 0], "and then church service two of the children": [65535, 0], "then church service two of the children always": [65535, 0], "church service two of the children always remained": [65535, 0], "service two of the children always remained for": [65535, 0], "two of the children always remained for the": [65535, 0], "of the children always remained for the sermon": [65535, 0], "the children always remained for the sermon voluntarily": [65535, 0], "children always remained for the sermon voluntarily and": [65535, 0], "always remained for the sermon voluntarily and the": [65535, 0], "remained for the sermon voluntarily and the other": [65535, 0], "for the sermon voluntarily and the other always": [65535, 0], "the sermon voluntarily and the other always remained": [65535, 0], "sermon voluntarily and the other always remained too": [65535, 0], "voluntarily and the other always remained too for": [65535, 0], "and the other always remained too for stronger": [65535, 0], "the other always remained too for stronger reasons": [65535, 0], "other always remained too for stronger reasons the": [65535, 0], "always remained too for stronger reasons the church's": [65535, 0], "remained too for stronger reasons the church's high": [65535, 0], "too for stronger reasons the church's high backed": [65535, 0], "for stronger reasons the church's high backed uncushioned": [65535, 0], "stronger reasons the church's high backed uncushioned pews": [65535, 0], "reasons the church's high backed uncushioned pews would": [65535, 0], "the church's high backed uncushioned pews would seat": [65535, 0], "church's high backed uncushioned pews would seat about": [65535, 0], "high backed uncushioned pews would seat about three": [65535, 0], "backed uncushioned pews would seat about three hundred": [65535, 0], "uncushioned pews would seat about three hundred persons": [65535, 0], "pews would seat about three hundred persons the": [65535, 0], "would seat about three hundred persons the edifice": [65535, 0], "seat about three hundred persons the edifice was": [65535, 0], "about three hundred persons the edifice was but": [65535, 0], "three hundred persons the edifice was but a": [65535, 0], "hundred persons the edifice was but a small": [65535, 0], "persons the edifice was but a small plain": [65535, 0], "the edifice was but a small plain affair": [65535, 0], "edifice was but a small plain affair with": [65535, 0], "was but a small plain affair with a": [65535, 0], "but a small plain affair with a sort": [65535, 0], "a small plain affair with a sort of": [65535, 0], "small plain affair with a sort of pine": [65535, 0], "plain affair with a sort of pine board": [65535, 0], "affair with a sort of pine board tree": [65535, 0], "with a sort of pine board tree box": [65535, 0], "a sort of pine board tree box on": [65535, 0], "sort of pine board tree box on top": [65535, 0], "of pine board tree box on top of": [65535, 0], "pine board tree box on top of it": [65535, 0], "board tree box on top of it for": [65535, 0], "tree box on top of it for a": [65535, 0], "box on top of it for a steeple": [65535, 0], "on top of it for a steeple at": [65535, 0], "top of it for a steeple at the": [65535, 0], "of it for a steeple at the door": [65535, 0], "it for a steeple at the door tom": [65535, 0], "for a steeple at the door tom dropped": [65535, 0], "a steeple at the door tom dropped back": [65535, 0], "steeple at the door tom dropped back a": [65535, 0], "at the door tom dropped back a step": [65535, 0], "the door tom dropped back a step and": [65535, 0], "door tom dropped back a step and accosted": [65535, 0], "tom dropped back a step and accosted a": [65535, 0], "dropped back a step and accosted a sunday": [65535, 0], "back a step and accosted a sunday dressed": [65535, 0], "a step and accosted a sunday dressed comrade": [65535, 0], "step and accosted a sunday dressed comrade say": [65535, 0], "and accosted a sunday dressed comrade say billy": [65535, 0], "accosted a sunday dressed comrade say billy got": [65535, 0], "a sunday dressed comrade say billy got a": [65535, 0], "sunday dressed comrade say billy got a yaller": [65535, 0], "dressed comrade say billy got a yaller ticket": [65535, 0], "comrade say billy got a yaller ticket yes": [65535, 0], "say billy got a yaller ticket yes what'll": [65535, 0], "billy got a yaller ticket yes what'll you": [65535, 0], "got a yaller ticket yes what'll you take": [65535, 0], "a yaller ticket yes what'll you take for": [65535, 0], "yaller ticket yes what'll you take for her": [65535, 0], "ticket yes what'll you take for her what'll": [65535, 0], "yes what'll you take for her what'll you": [65535, 0], "what'll you take for her what'll you give": [65535, 0], "you take for her what'll you give piece": [65535, 0], "take for her what'll you give piece of": [65535, 0], "for her what'll you give piece of lickrish": [65535, 0], "her what'll you give piece of lickrish and": [65535, 0], "what'll you give piece of lickrish and a": [65535, 0], "you give piece of lickrish and a fish": [65535, 0], "give piece of lickrish and a fish hook": [65535, 0], "piece of lickrish and a fish hook less": [65535, 0], "of lickrish and a fish hook less see": [65535, 0], "lickrish and a fish hook less see 'em": [65535, 0], "and a fish hook less see 'em tom": [65535, 0], "a fish hook less see 'em tom exhibited": [65535, 0], "fish hook less see 'em tom exhibited they": [65535, 0], "hook less see 'em tom exhibited they were": [65535, 0], "less see 'em tom exhibited they were satisfactory": [65535, 0], "see 'em tom exhibited they were satisfactory and": [65535, 0], "'em tom exhibited they were satisfactory and the": [65535, 0], "tom exhibited they were satisfactory and the property": [65535, 0], "exhibited they were satisfactory and the property changed": [65535, 0], "they were satisfactory and the property changed hands": [65535, 0], "were satisfactory and the property changed hands then": [65535, 0], "satisfactory and the property changed hands then tom": [65535, 0], "and the property changed hands then tom traded": [65535, 0], "the property changed hands then tom traded a": [65535, 0], "property changed hands then tom traded a couple": [65535, 0], "changed hands then tom traded a couple of": [65535, 0], "hands then tom traded a couple of white": [65535, 0], "then tom traded a couple of white alleys": [65535, 0], "tom traded a couple of white alleys for": [65535, 0], "traded a couple of white alleys for three": [65535, 0], "a couple of white alleys for three red": [65535, 0], "couple of white alleys for three red tickets": [65535, 0], "of white alleys for three red tickets and": [65535, 0], "white alleys for three red tickets and some": [65535, 0], "alleys for three red tickets and some small": [65535, 0], "for three red tickets and some small trifle": [65535, 0], "three red tickets and some small trifle or": [65535, 0], "red tickets and some small trifle or other": [65535, 0], "tickets and some small trifle or other for": [65535, 0], "and some small trifle or other for a": [65535, 0], "some small trifle or other for a couple": [65535, 0], "small trifle or other for a couple of": [65535, 0], "trifle or other for a couple of blue": [65535, 0], "or other for a couple of blue ones": [65535, 0], "other for a couple of blue ones he": [65535, 0], "for a couple of blue ones he waylaid": [65535, 0], "a couple of blue ones he waylaid other": [65535, 0], "couple of blue ones he waylaid other boys": [65535, 0], "of blue ones he waylaid other boys as": [65535, 0], "blue ones he waylaid other boys as they": [65535, 0], "ones he waylaid other boys as they came": [65535, 0], "he waylaid other boys as they came and": [65535, 0], "waylaid other boys as they came and went": [65535, 0], "other boys as they came and went on": [65535, 0], "boys as they came and went on buying": [65535, 0], "as they came and went on buying tickets": [65535, 0], "they came and went on buying tickets of": [65535, 0], "came and went on buying tickets of various": [65535, 0], "and went on buying tickets of various colors": [65535, 0], "went on buying tickets of various colors ten": [65535, 0], "on buying tickets of various colors ten or": [65535, 0], "buying tickets of various colors ten or fifteen": [65535, 0], "tickets of various colors ten or fifteen minutes": [65535, 0], "of various colors ten or fifteen minutes longer": [65535, 0], "various colors ten or fifteen minutes longer he": [65535, 0], "colors ten or fifteen minutes longer he entered": [65535, 0], "ten or fifteen minutes longer he entered the": [65535, 0], "or fifteen minutes longer he entered the church": [65535, 0], "fifteen minutes longer he entered the church now": [65535, 0], "minutes longer he entered the church now with": [65535, 0], "longer he entered the church now with a": [65535, 0], "he entered the church now with a swarm": [65535, 0], "entered the church now with a swarm of": [65535, 0], "the church now with a swarm of clean": [65535, 0], "church now with a swarm of clean and": [65535, 0], "now with a swarm of clean and noisy": [65535, 0], "with a swarm of clean and noisy boys": [65535, 0], "a swarm of clean and noisy boys and": [65535, 0], "swarm of clean and noisy boys and girls": [65535, 0], "of clean and noisy boys and girls proceeded": [65535, 0], "clean and noisy boys and girls proceeded to": [65535, 0], "and noisy boys and girls proceeded to his": [65535, 0], "noisy boys and girls proceeded to his seat": [65535, 0], "boys and girls proceeded to his seat and": [65535, 0], "and girls proceeded to his seat and started": [65535, 0], "girls proceeded to his seat and started a": [65535, 0], "proceeded to his seat and started a quarrel": [65535, 0], "to his seat and started a quarrel with": [65535, 0], "his seat and started a quarrel with the": [65535, 0], "seat and started a quarrel with the first": [65535, 0], "and started a quarrel with the first boy": [65535, 0], "started a quarrel with the first boy that": [65535, 0], "a quarrel with the first boy that came": [65535, 0], "quarrel with the first boy that came handy": [65535, 0], "with the first boy that came handy the": [65535, 0], "the first boy that came handy the teacher": [65535, 0], "first boy that came handy the teacher a": [65535, 0], "boy that came handy the teacher a grave": [65535, 0], "that came handy the teacher a grave elderly": [65535, 0], "came handy the teacher a grave elderly man": [65535, 0], "handy the teacher a grave elderly man interfered": [65535, 0], "the teacher a grave elderly man interfered then": [65535, 0], "teacher a grave elderly man interfered then turned": [65535, 0], "a grave elderly man interfered then turned his": [65535, 0], "grave elderly man interfered then turned his back": [65535, 0], "elderly man interfered then turned his back a": [65535, 0], "man interfered then turned his back a moment": [65535, 0], "interfered then turned his back a moment and": [65535, 0], "then turned his back a moment and tom": [65535, 0], "turned his back a moment and tom pulled": [65535, 0], "his back a moment and tom pulled a": [65535, 0], "back a moment and tom pulled a boy's": [65535, 0], "a moment and tom pulled a boy's hair": [65535, 0], "moment and tom pulled a boy's hair in": [65535, 0], "and tom pulled a boy's hair in the": [65535, 0], "tom pulled a boy's hair in the next": [65535, 0], "pulled a boy's hair in the next bench": [65535, 0], "a boy's hair in the next bench and": [65535, 0], "boy's hair in the next bench and was": [65535, 0], "hair in the next bench and was absorbed": [65535, 0], "in the next bench and was absorbed in": [65535, 0], "the next bench and was absorbed in his": [65535, 0], "next bench and was absorbed in his book": [65535, 0], "bench and was absorbed in his book when": [65535, 0], "and was absorbed in his book when the": [65535, 0], "was absorbed in his book when the boy": [65535, 0], "absorbed in his book when the boy turned": [65535, 0], "in his book when the boy turned around": [65535, 0], "his book when the boy turned around stuck": [65535, 0], "book when the boy turned around stuck a": [65535, 0], "when the boy turned around stuck a pin": [65535, 0], "the boy turned around stuck a pin in": [65535, 0], "boy turned around stuck a pin in another": [65535, 0], "turned around stuck a pin in another boy": [65535, 0], "around stuck a pin in another boy presently": [65535, 0], "stuck a pin in another boy presently in": [65535, 0], "a pin in another boy presently in order": [65535, 0], "pin in another boy presently in order to": [65535, 0], "in another boy presently in order to hear": [65535, 0], "another boy presently in order to hear him": [65535, 0], "boy presently in order to hear him say": [65535, 0], "presently in order to hear him say ouch": [65535, 0], "in order to hear him say ouch and": [65535, 0], "order to hear him say ouch and got": [65535, 0], "to hear him say ouch and got a": [65535, 0], "hear him say ouch and got a new": [65535, 0], "him say ouch and got a new reprimand": [65535, 0], "say ouch and got a new reprimand from": [65535, 0], "ouch and got a new reprimand from his": [65535, 0], "and got a new reprimand from his teacher": [65535, 0], "got a new reprimand from his teacher tom's": [65535, 0], "a new reprimand from his teacher tom's whole": [65535, 0], "new reprimand from his teacher tom's whole class": [65535, 0], "reprimand from his teacher tom's whole class were": [65535, 0], "from his teacher tom's whole class were of": [65535, 0], "his teacher tom's whole class were of a": [65535, 0], "teacher tom's whole class were of a pattern": [65535, 0], "tom's whole class were of a pattern restless": [65535, 0], "whole class were of a pattern restless noisy": [65535, 0], "class were of a pattern restless noisy and": [65535, 0], "were of a pattern restless noisy and troublesome": [65535, 0], "of a pattern restless noisy and troublesome when": [65535, 0], "a pattern restless noisy and troublesome when they": [65535, 0], "pattern restless noisy and troublesome when they came": [65535, 0], "restless noisy and troublesome when they came to": [65535, 0], "noisy and troublesome when they came to recite": [65535, 0], "and troublesome when they came to recite their": [65535, 0], "troublesome when they came to recite their lessons": [65535, 0], "when they came to recite their lessons not": [65535, 0], "they came to recite their lessons not one": [65535, 0], "came to recite their lessons not one of": [65535, 0], "to recite their lessons not one of them": [65535, 0], "recite their lessons not one of them knew": [65535, 0], "their lessons not one of them knew his": [65535, 0], "lessons not one of them knew his verses": [65535, 0], "not one of them knew his verses perfectly": [65535, 0], "one of them knew his verses perfectly but": [65535, 0], "of them knew his verses perfectly but had": [65535, 0], "them knew his verses perfectly but had to": [65535, 0], "knew his verses perfectly but had to be": [65535, 0], "his verses perfectly but had to be prompted": [65535, 0], "verses perfectly but had to be prompted all": [65535, 0], "perfectly but had to be prompted all along": [65535, 0], "but had to be prompted all along however": [65535, 0], "had to be prompted all along however they": [65535, 0], "to be prompted all along however they worried": [65535, 0], "be prompted all along however they worried through": [65535, 0], "prompted all along however they worried through and": [65535, 0], "all along however they worried through and each": [65535, 0], "along however they worried through and each got": [65535, 0], "however they worried through and each got his": [65535, 0], "they worried through and each got his reward": [65535, 0], "worried through and each got his reward in": [65535, 0], "through and each got his reward in small": [65535, 0], "and each got his reward in small blue": [65535, 0], "each got his reward in small blue tickets": [65535, 0], "got his reward in small blue tickets each": [65535, 0], "his reward in small blue tickets each with": [65535, 0], "reward in small blue tickets each with a": [65535, 0], "in small blue tickets each with a passage": [65535, 0], "small blue tickets each with a passage of": [65535, 0], "blue tickets each with a passage of scripture": [65535, 0], "tickets each with a passage of scripture on": [65535, 0], "each with a passage of scripture on it": [65535, 0], "with a passage of scripture on it each": [65535, 0], "a passage of scripture on it each blue": [65535, 0], "passage of scripture on it each blue ticket": [65535, 0], "of scripture on it each blue ticket was": [65535, 0], "scripture on it each blue ticket was pay": [65535, 0], "on it each blue ticket was pay for": [65535, 0], "it each blue ticket was pay for two": [65535, 0], "each blue ticket was pay for two verses": [65535, 0], "blue ticket was pay for two verses of": [65535, 0], "ticket was pay for two verses of the": [65535, 0], "was pay for two verses of the recitation": [65535, 0], "pay for two verses of the recitation ten": [65535, 0], "for two verses of the recitation ten blue": [65535, 0], "two verses of the recitation ten blue tickets": [65535, 0], "verses of the recitation ten blue tickets equalled": [65535, 0], "of the recitation ten blue tickets equalled a": [65535, 0], "the recitation ten blue tickets equalled a red": [65535, 0], "recitation ten blue tickets equalled a red one": [65535, 0], "ten blue tickets equalled a red one and": [65535, 0], "blue tickets equalled a red one and could": [65535, 0], "tickets equalled a red one and could be": [65535, 0], "equalled a red one and could be exchanged": [65535, 0], "a red one and could be exchanged for": [65535, 0], "red one and could be exchanged for it": [65535, 0], "one and could be exchanged for it ten": [65535, 0], "and could be exchanged for it ten red": [65535, 0], "could be exchanged for it ten red tickets": [65535, 0], "be exchanged for it ten red tickets equalled": [65535, 0], "exchanged for it ten red tickets equalled a": [65535, 0], "for it ten red tickets equalled a yellow": [65535, 0], "it ten red tickets equalled a yellow one": [65535, 0], "ten red tickets equalled a yellow one for": [65535, 0], "red tickets equalled a yellow one for ten": [65535, 0], "tickets equalled a yellow one for ten yellow": [65535, 0], "equalled a yellow one for ten yellow tickets": [65535, 0], "a yellow one for ten yellow tickets the": [65535, 0], "yellow one for ten yellow tickets the superintendent": [65535, 0], "one for ten yellow tickets the superintendent gave": [65535, 0], "for ten yellow tickets the superintendent gave a": [65535, 0], "ten yellow tickets the superintendent gave a very": [65535, 0], "yellow tickets the superintendent gave a very plainly": [65535, 0], "tickets the superintendent gave a very plainly bound": [65535, 0], "the superintendent gave a very plainly bound bible": [65535, 0], "superintendent gave a very plainly bound bible worth": [65535, 0], "gave a very plainly bound bible worth forty": [65535, 0], "a very plainly bound bible worth forty cents": [65535, 0], "very plainly bound bible worth forty cents in": [65535, 0], "plainly bound bible worth forty cents in those": [65535, 0], "bound bible worth forty cents in those easy": [65535, 0], "bible worth forty cents in those easy times": [65535, 0], "worth forty cents in those easy times to": [65535, 0], "forty cents in those easy times to the": [65535, 0], "cents in those easy times to the pupil": [65535, 0], "in those easy times to the pupil how": [65535, 0], "those easy times to the pupil how many": [65535, 0], "easy times to the pupil how many of": [65535, 0], "times to the pupil how many of my": [65535, 0], "to the pupil how many of my readers": [65535, 0], "the pupil how many of my readers would": [65535, 0], "pupil how many of my readers would have": [65535, 0], "how many of my readers would have the": [65535, 0], "many of my readers would have the industry": [65535, 0], "of my readers would have the industry and": [65535, 0], "my readers would have the industry and application": [65535, 0], "readers would have the industry and application to": [65535, 0], "would have the industry and application to memorize": [65535, 0], "have the industry and application to memorize two": [65535, 0], "the industry and application to memorize two thousand": [65535, 0], "industry and application to memorize two thousand verses": [65535, 0], "and application to memorize two thousand verses even": [65535, 0], "application to memorize two thousand verses even for": [65535, 0], "to memorize two thousand verses even for a": [65535, 0], "memorize two thousand verses even for a dore": [65535, 0], "two thousand verses even for a dore bible": [65535, 0], "thousand verses even for a dore bible and": [65535, 0], "verses even for a dore bible and yet": [65535, 0], "even for a dore bible and yet mary": [65535, 0], "for a dore bible and yet mary had": [65535, 0], "a dore bible and yet mary had acquired": [65535, 0], "dore bible and yet mary had acquired two": [65535, 0], "bible and yet mary had acquired two bibles": [65535, 0], "and yet mary had acquired two bibles in": [65535, 0], "yet mary had acquired two bibles in this": [65535, 0], "mary had acquired two bibles in this way": [65535, 0], "had acquired two bibles in this way it": [65535, 0], "acquired two bibles in this way it was": [65535, 0], "two bibles in this way it was the": [65535, 0], "bibles in this way it was the patient": [65535, 0], "in this way it was the patient work": [65535, 0], "this way it was the patient work of": [65535, 0], "way it was the patient work of two": [65535, 0], "it was the patient work of two years": [65535, 0], "was the patient work of two years and": [65535, 0], "the patient work of two years and a": [65535, 0], "patient work of two years and a boy": [65535, 0], "work of two years and a boy of": [65535, 0], "of two years and a boy of german": [65535, 0], "two years and a boy of german parentage": [65535, 0], "years and a boy of german parentage had": [65535, 0], "and a boy of german parentage had won": [65535, 0], "a boy of german parentage had won four": [65535, 0], "boy of german parentage had won four or": [65535, 0], "of german parentage had won four or five": [65535, 0], "german parentage had won four or five he": [65535, 0], "parentage had won four or five he once": [65535, 0], "had won four or five he once recited": [65535, 0], "won four or five he once recited three": [65535, 0], "four or five he once recited three thousand": [65535, 0], "or five he once recited three thousand verses": [65535, 0], "five he once recited three thousand verses without": [65535, 0], "he once recited three thousand verses without stopping": [65535, 0], "once recited three thousand verses without stopping but": [65535, 0], "recited three thousand verses without stopping but the": [65535, 0], "three thousand verses without stopping but the strain": [65535, 0], "thousand verses without stopping but the strain upon": [65535, 0], "verses without stopping but the strain upon his": [65535, 0], "without stopping but the strain upon his mental": [65535, 0], "stopping but the strain upon his mental faculties": [65535, 0], "but the strain upon his mental faculties was": [65535, 0], "the strain upon his mental faculties was too": [65535, 0], "strain upon his mental faculties was too great": [65535, 0], "upon his mental faculties was too great and": [65535, 0], "his mental faculties was too great and he": [65535, 0], "mental faculties was too great and he was": [65535, 0], "faculties was too great and he was little": [65535, 0], "was too great and he was little better": [65535, 0], "too great and he was little better than": [65535, 0], "great and he was little better than an": [65535, 0], "and he was little better than an idiot": [65535, 0], "he was little better than an idiot from": [65535, 0], "was little better than an idiot from that": [65535, 0], "little better than an idiot from that day": [65535, 0], "better than an idiot from that day forth": [65535, 0], "than an idiot from that day forth a": [65535, 0], "an idiot from that day forth a grievous": [65535, 0], "idiot from that day forth a grievous misfortune": [65535, 0], "from that day forth a grievous misfortune for": [65535, 0], "that day forth a grievous misfortune for the": [65535, 0], "day forth a grievous misfortune for the school": [65535, 0], "forth a grievous misfortune for the school for": [65535, 0], "a grievous misfortune for the school for on": [65535, 0], "grievous misfortune for the school for on great": [65535, 0], "misfortune for the school for on great occasions": [65535, 0], "for the school for on great occasions before": [65535, 0], "the school for on great occasions before company": [65535, 0], "school for on great occasions before company the": [65535, 0], "for on great occasions before company the superintendent": [65535, 0], "on great occasions before company the superintendent as": [65535, 0], "great occasions before company the superintendent as tom": [65535, 0], "occasions before company the superintendent as tom expressed": [65535, 0], "before company the superintendent as tom expressed it": [65535, 0], "company the superintendent as tom expressed it had": [65535, 0], "the superintendent as tom expressed it had always": [65535, 0], "superintendent as tom expressed it had always made": [65535, 0], "as tom expressed it had always made this": [65535, 0], "tom expressed it had always made this boy": [65535, 0], "expressed it had always made this boy come": [65535, 0], "it had always made this boy come out": [65535, 0], "had always made this boy come out and": [65535, 0], "always made this boy come out and spread": [65535, 0], "made this boy come out and spread himself": [65535, 0], "this boy come out and spread himself only": [65535, 0], "boy come out and spread himself only the": [65535, 0], "come out and spread himself only the older": [65535, 0], "out and spread himself only the older pupils": [65535, 0], "and spread himself only the older pupils managed": [65535, 0], "spread himself only the older pupils managed to": [65535, 0], "himself only the older pupils managed to keep": [65535, 0], "only the older pupils managed to keep their": [65535, 0], "the older pupils managed to keep their tickets": [65535, 0], "older pupils managed to keep their tickets and": [65535, 0], "pupils managed to keep their tickets and stick": [65535, 0], "managed to keep their tickets and stick to": [65535, 0], "to keep their tickets and stick to their": [65535, 0], "keep their tickets and stick to their tedious": [65535, 0], "their tickets and stick to their tedious work": [65535, 0], "tickets and stick to their tedious work long": [65535, 0], "and stick to their tedious work long enough": [65535, 0], "stick to their tedious work long enough to": [65535, 0], "to their tedious work long enough to get": [65535, 0], "their tedious work long enough to get a": [65535, 0], "tedious work long enough to get a bible": [65535, 0], "work long enough to get a bible and": [65535, 0], "long enough to get a bible and so": [65535, 0], "enough to get a bible and so the": [65535, 0], "to get a bible and so the delivery": [65535, 0], "get a bible and so the delivery of": [65535, 0], "a bible and so the delivery of one": [65535, 0], "bible and so the delivery of one of": [65535, 0], "and so the delivery of one of these": [65535, 0], "so the delivery of one of these prizes": [65535, 0], "the delivery of one of these prizes was": [65535, 0], "delivery of one of these prizes was a": [65535, 0], "of one of these prizes was a rare": [65535, 0], "one of these prizes was a rare and": [65535, 0], "of these prizes was a rare and noteworthy": [65535, 0], "these prizes was a rare and noteworthy circumstance": [65535, 0], "prizes was a rare and noteworthy circumstance the": [65535, 0], "was a rare and noteworthy circumstance the successful": [65535, 0], "a rare and noteworthy circumstance the successful pupil": [65535, 0], "rare and noteworthy circumstance the successful pupil was": [65535, 0], "and noteworthy circumstance the successful pupil was so": [65535, 0], "noteworthy circumstance the successful pupil was so great": [65535, 0], "circumstance the successful pupil was so great and": [65535, 0], "the successful pupil was so great and conspicuous": [65535, 0], "successful pupil was so great and conspicuous for": [65535, 0], "pupil was so great and conspicuous for that": [65535, 0], "was so great and conspicuous for that day": [65535, 0], "so great and conspicuous for that day that": [65535, 0], "great and conspicuous for that day that on": [65535, 0], "and conspicuous for that day that on the": [65535, 0], "conspicuous for that day that on the spot": [65535, 0], "for that day that on the spot every": [65535, 0], "that day that on the spot every scholar's": [65535, 0], "day that on the spot every scholar's heart": [65535, 0], "that on the spot every scholar's heart was": [65535, 0], "on the spot every scholar's heart was fired": [65535, 0], "the spot every scholar's heart was fired with": [65535, 0], "spot every scholar's heart was fired with a": [65535, 0], "every scholar's heart was fired with a fresh": [65535, 0], "scholar's heart was fired with a fresh ambition": [65535, 0], "heart was fired with a fresh ambition that": [65535, 0], "was fired with a fresh ambition that often": [65535, 0], "fired with a fresh ambition that often lasted": [65535, 0], "with a fresh ambition that often lasted a": [65535, 0], "a fresh ambition that often lasted a couple": [65535, 0], "fresh ambition that often lasted a couple of": [65535, 0], "ambition that often lasted a couple of weeks": [65535, 0], "that often lasted a couple of weeks it": [65535, 0], "often lasted a couple of weeks it is": [65535, 0], "lasted a couple of weeks it is possible": [65535, 0], "a couple of weeks it is possible that": [65535, 0], "couple of weeks it is possible that tom's": [65535, 0], "of weeks it is possible that tom's mental": [65535, 0], "weeks it is possible that tom's mental stomach": [65535, 0], "it is possible that tom's mental stomach had": [65535, 0], "is possible that tom's mental stomach had never": [65535, 0], "possible that tom's mental stomach had never really": [65535, 0], "that tom's mental stomach had never really hungered": [65535, 0], "tom's mental stomach had never really hungered for": [65535, 0], "mental stomach had never really hungered for one": [65535, 0], "stomach had never really hungered for one of": [65535, 0], "had never really hungered for one of those": [65535, 0], "never really hungered for one of those prizes": [65535, 0], "really hungered for one of those prizes but": [65535, 0], "hungered for one of those prizes but unquestionably": [65535, 0], "for one of those prizes but unquestionably his": [65535, 0], "one of those prizes but unquestionably his entire": [65535, 0], "of those prizes but unquestionably his entire being": [65535, 0], "those prizes but unquestionably his entire being had": [65535, 0], "prizes but unquestionably his entire being had for": [65535, 0], "but unquestionably his entire being had for many": [65535, 0], "unquestionably his entire being had for many a": [65535, 0], "his entire being had for many a day": [65535, 0], "entire being had for many a day longed": [65535, 0], "being had for many a day longed for": [65535, 0], "had for many a day longed for the": [65535, 0], "for many a day longed for the glory": [65535, 0], "many a day longed for the glory and": [65535, 0], "a day longed for the glory and the": [65535, 0], "day longed for the glory and the eclat": [65535, 0], "longed for the glory and the eclat that": [65535, 0], "for the glory and the eclat that came": [65535, 0], "the glory and the eclat that came with": [65535, 0], "glory and the eclat that came with it": [65535, 0], "and the eclat that came with it in": [65535, 0], "the eclat that came with it in due": [65535, 0], "eclat that came with it in due course": [65535, 0], "that came with it in due course the": [65535, 0], "came with it in due course the superintendent": [65535, 0], "with it in due course the superintendent stood": [65535, 0], "it in due course the superintendent stood up": [65535, 0], "in due course the superintendent stood up in": [65535, 0], "due course the superintendent stood up in front": [65535, 0], "course the superintendent stood up in front of": [65535, 0], "the superintendent stood up in front of the": [65535, 0], "superintendent stood up in front of the pulpit": [65535, 0], "stood up in front of the pulpit with": [65535, 0], "up in front of the pulpit with a": [65535, 0], "in front of the pulpit with a closed": [65535, 0], "front of the pulpit with a closed hymn": [65535, 0], "of the pulpit with a closed hymn book": [65535, 0], "the pulpit with a closed hymn book in": [65535, 0], "pulpit with a closed hymn book in his": [65535, 0], "with a closed hymn book in his hand": [65535, 0], "a closed hymn book in his hand and": [65535, 0], "closed hymn book in his hand and his": [65535, 0], "hymn book in his hand and his forefinger": [65535, 0], "book in his hand and his forefinger inserted": [65535, 0], "in his hand and his forefinger inserted between": [65535, 0], "his hand and his forefinger inserted between its": [65535, 0], "hand and his forefinger inserted between its leaves": [65535, 0], "and his forefinger inserted between its leaves and": [65535, 0], "his forefinger inserted between its leaves and commanded": [65535, 0], "forefinger inserted between its leaves and commanded attention": [65535, 0], "inserted between its leaves and commanded attention when": [65535, 0], "between its leaves and commanded attention when a": [65535, 0], "its leaves and commanded attention when a sunday": [65535, 0], "leaves and commanded attention when a sunday school": [65535, 0], "and commanded attention when a sunday school superintendent": [65535, 0], "commanded attention when a sunday school superintendent makes": [65535, 0], "attention when a sunday school superintendent makes his": [65535, 0], "when a sunday school superintendent makes his customary": [65535, 0], "a sunday school superintendent makes his customary little": [65535, 0], "sunday school superintendent makes his customary little speech": [65535, 0], "school superintendent makes his customary little speech a": [65535, 0], "superintendent makes his customary little speech a hymn": [65535, 0], "makes his customary little speech a hymn book": [65535, 0], "his customary little speech a hymn book in": [65535, 0], "customary little speech a hymn book in the": [65535, 0], "little speech a hymn book in the hand": [65535, 0], "speech a hymn book in the hand is": [65535, 0], "a hymn book in the hand is as": [65535, 0], "hymn book in the hand is as necessary": [65535, 0], "book in the hand is as necessary as": [65535, 0], "in the hand is as necessary as is": [65535, 0], "the hand is as necessary as is the": [65535, 0], "hand is as necessary as is the inevitable": [65535, 0], "is as necessary as is the inevitable sheet": [65535, 0], "as necessary as is the inevitable sheet of": [65535, 0], "necessary as is the inevitable sheet of music": [65535, 0], "as is the inevitable sheet of music in": [65535, 0], "is the inevitable sheet of music in the": [65535, 0], "the inevitable sheet of music in the hand": [65535, 0], "inevitable sheet of music in the hand of": [65535, 0], "sheet of music in the hand of a": [65535, 0], "of music in the hand of a singer": [65535, 0], "music in the hand of a singer who": [65535, 0], "in the hand of a singer who stands": [65535, 0], "the hand of a singer who stands forward": [65535, 0], "hand of a singer who stands forward on": [65535, 0], "of a singer who stands forward on the": [65535, 0], "a singer who stands forward on the platform": [65535, 0], "singer who stands forward on the platform and": [65535, 0], "who stands forward on the platform and sings": [65535, 0], "stands forward on the platform and sings a": [65535, 0], "forward on the platform and sings a solo": [65535, 0], "on the platform and sings a solo at": [65535, 0], "the platform and sings a solo at a": [65535, 0], "platform and sings a solo at a concert": [65535, 0], "and sings a solo at a concert though": [65535, 0], "sings a solo at a concert though why": [65535, 0], "a solo at a concert though why is": [65535, 0], "solo at a concert though why is a": [65535, 0], "at a concert though why is a mystery": [65535, 0], "a concert though why is a mystery for": [65535, 0], "concert though why is a mystery for neither": [65535, 0], "though why is a mystery for neither the": [65535, 0], "why is a mystery for neither the hymn": [65535, 0], "is a mystery for neither the hymn book": [65535, 0], "a mystery for neither the hymn book nor": [65535, 0], "mystery for neither the hymn book nor the": [65535, 0], "for neither the hymn book nor the sheet": [65535, 0], "neither the hymn book nor the sheet of": [65535, 0], "the hymn book nor the sheet of music": [65535, 0], "hymn book nor the sheet of music is": [65535, 0], "book nor the sheet of music is ever": [65535, 0], "nor the sheet of music is ever referred": [65535, 0], "the sheet of music is ever referred to": [65535, 0], "sheet of music is ever referred to by": [65535, 0], "of music is ever referred to by the": [65535, 0], "music is ever referred to by the sufferer": [65535, 0], "is ever referred to by the sufferer this": [65535, 0], "ever referred to by the sufferer this superintendent": [65535, 0], "referred to by the sufferer this superintendent was": [65535, 0], "to by the sufferer this superintendent was a": [65535, 0], "by the sufferer this superintendent was a slim": [65535, 0], "the sufferer this superintendent was a slim creature": [65535, 0], "sufferer this superintendent was a slim creature of": [65535, 0], "this superintendent was a slim creature of thirty": [65535, 0], "superintendent was a slim creature of thirty five": [65535, 0], "was a slim creature of thirty five with": [65535, 0], "a slim creature of thirty five with a": [65535, 0], "slim creature of thirty five with a sandy": [65535, 0], "creature of thirty five with a sandy goatee": [65535, 0], "of thirty five with a sandy goatee and": [65535, 0], "thirty five with a sandy goatee and short": [65535, 0], "five with a sandy goatee and short sandy": [65535, 0], "with a sandy goatee and short sandy hair": [65535, 0], "a sandy goatee and short sandy hair he": [65535, 0], "sandy goatee and short sandy hair he wore": [65535, 0], "goatee and short sandy hair he wore a": [65535, 0], "and short sandy hair he wore a stiff": [65535, 0], "short sandy hair he wore a stiff standing": [65535, 0], "sandy hair he wore a stiff standing collar": [65535, 0], "hair he wore a stiff standing collar whose": [65535, 0], "he wore a stiff standing collar whose upper": [65535, 0], "wore a stiff standing collar whose upper edge": [65535, 0], "a stiff standing collar whose upper edge almost": [65535, 0], "stiff standing collar whose upper edge almost reached": [65535, 0], "standing collar whose upper edge almost reached his": [65535, 0], "collar whose upper edge almost reached his ears": [65535, 0], "whose upper edge almost reached his ears and": [65535, 0], "upper edge almost reached his ears and whose": [65535, 0], "edge almost reached his ears and whose sharp": [65535, 0], "almost reached his ears and whose sharp points": [65535, 0], "reached his ears and whose sharp points curved": [65535, 0], "his ears and whose sharp points curved forward": [65535, 0], "ears and whose sharp points curved forward abreast": [65535, 0], "and whose sharp points curved forward abreast the": [65535, 0], "whose sharp points curved forward abreast the corners": [65535, 0], "sharp points curved forward abreast the corners of": [65535, 0], "points curved forward abreast the corners of his": [65535, 0], "curved forward abreast the corners of his mouth": [65535, 0], "forward abreast the corners of his mouth a": [65535, 0], "abreast the corners of his mouth a fence": [65535, 0], "the corners of his mouth a fence that": [65535, 0], "corners of his mouth a fence that compelled": [65535, 0], "of his mouth a fence that compelled a": [65535, 0], "his mouth a fence that compelled a straight": [65535, 0], "mouth a fence that compelled a straight lookout": [65535, 0], "a fence that compelled a straight lookout ahead": [65535, 0], "fence that compelled a straight lookout ahead and": [65535, 0], "that compelled a straight lookout ahead and a": [65535, 0], "compelled a straight lookout ahead and a turning": [65535, 0], "a straight lookout ahead and a turning of": [65535, 0], "straight lookout ahead and a turning of the": [65535, 0], "lookout ahead and a turning of the whole": [65535, 0], "ahead and a turning of the whole body": [65535, 0], "and a turning of the whole body when": [65535, 0], "a turning of the whole body when a": [65535, 0], "turning of the whole body when a side": [65535, 0], "of the whole body when a side view": [65535, 0], "the whole body when a side view was": [65535, 0], "whole body when a side view was required": [65535, 0], "body when a side view was required his": [65535, 0], "when a side view was required his chin": [65535, 0], "a side view was required his chin was": [65535, 0], "side view was required his chin was propped": [65535, 0], "view was required his chin was propped on": [65535, 0], "was required his chin was propped on a": [65535, 0], "required his chin was propped on a spreading": [65535, 0], "his chin was propped on a spreading cravat": [65535, 0], "chin was propped on a spreading cravat which": [65535, 0], "was propped on a spreading cravat which was": [65535, 0], "propped on a spreading cravat which was as": [65535, 0], "on a spreading cravat which was as broad": [65535, 0], "a spreading cravat which was as broad and": [65535, 0], "spreading cravat which was as broad and as": [65535, 0], "cravat which was as broad and as long": [65535, 0], "which was as broad and as long as": [65535, 0], "was as broad and as long as a": [65535, 0], "as broad and as long as a bank": [65535, 0], "broad and as long as a bank note": [65535, 0], "and as long as a bank note and": [65535, 0], "as long as a bank note and had": [65535, 0], "long as a bank note and had fringed": [65535, 0], "as a bank note and had fringed ends": [65535, 0], "a bank note and had fringed ends his": [65535, 0], "bank note and had fringed ends his boot": [65535, 0], "note and had fringed ends his boot toes": [65535, 0], "and had fringed ends his boot toes were": [65535, 0], "had fringed ends his boot toes were turned": [65535, 0], "fringed ends his boot toes were turned sharply": [65535, 0], "ends his boot toes were turned sharply up": [65535, 0], "his boot toes were turned sharply up in": [65535, 0], "boot toes were turned sharply up in the": [65535, 0], "toes were turned sharply up in the fashion": [65535, 0], "were turned sharply up in the fashion of": [65535, 0], "turned sharply up in the fashion of the": [65535, 0], "sharply up in the fashion of the day": [65535, 0], "up in the fashion of the day like": [65535, 0], "in the fashion of the day like sleigh": [65535, 0], "the fashion of the day like sleigh runners": [65535, 0], "fashion of the day like sleigh runners an": [65535, 0], "of the day like sleigh runners an effect": [65535, 0], "the day like sleigh runners an effect patiently": [65535, 0], "day like sleigh runners an effect patiently and": [65535, 0], "like sleigh runners an effect patiently and laboriously": [65535, 0], "sleigh runners an effect patiently and laboriously produced": [65535, 0], "runners an effect patiently and laboriously produced by": [65535, 0], "an effect patiently and laboriously produced by the": [65535, 0], "effect patiently and laboriously produced by the young": [65535, 0], "patiently and laboriously produced by the young men": [65535, 0], "and laboriously produced by the young men by": [65535, 0], "laboriously produced by the young men by sitting": [65535, 0], "produced by the young men by sitting with": [65535, 0], "by the young men by sitting with their": [65535, 0], "the young men by sitting with their toes": [65535, 0], "young men by sitting with their toes pressed": [65535, 0], "men by sitting with their toes pressed against": [65535, 0], "by sitting with their toes pressed against a": [65535, 0], "sitting with their toes pressed against a wall": [65535, 0], "with their toes pressed against a wall for": [65535, 0], "their toes pressed against a wall for hours": [65535, 0], "toes pressed against a wall for hours together": [65535, 0], "pressed against a wall for hours together mr": [65535, 0], "against a wall for hours together mr walters": [65535, 0], "a wall for hours together mr walters was": [65535, 0], "wall for hours together mr walters was very": [65535, 0], "for hours together mr walters was very earnest": [65535, 0], "hours together mr walters was very earnest of": [65535, 0], "together mr walters was very earnest of mien": [65535, 0], "mr walters was very earnest of mien and": [65535, 0], "walters was very earnest of mien and very": [65535, 0], "was very earnest of mien and very sincere": [65535, 0], "very earnest of mien and very sincere and": [65535, 0], "earnest of mien and very sincere and honest": [65535, 0], "of mien and very sincere and honest at": [65535, 0], "mien and very sincere and honest at heart": [65535, 0], "and very sincere and honest at heart and": [65535, 0], "very sincere and honest at heart and he": [65535, 0], "sincere and honest at heart and he held": [65535, 0], "and honest at heart and he held sacred": [65535, 0], "honest at heart and he held sacred things": [65535, 0], "at heart and he held sacred things and": [65535, 0], "heart and he held sacred things and places": [65535, 0], "and he held sacred things and places in": [65535, 0], "he held sacred things and places in such": [65535, 0], "held sacred things and places in such reverence": [65535, 0], "sacred things and places in such reverence and": [65535, 0], "things and places in such reverence and so": [65535, 0], "and places in such reverence and so separated": [65535, 0], "places in such reverence and so separated them": [65535, 0], "in such reverence and so separated them from": [65535, 0], "such reverence and so separated them from worldly": [65535, 0], "reverence and so separated them from worldly matters": [65535, 0], "and so separated them from worldly matters that": [65535, 0], "so separated them from worldly matters that unconsciously": [65535, 0], "separated them from worldly matters that unconsciously to": [65535, 0], "them from worldly matters that unconsciously to himself": [65535, 0], "from worldly matters that unconsciously to himself his": [65535, 0], "worldly matters that unconsciously to himself his sunday": [65535, 0], "matters that unconsciously to himself his sunday school": [65535, 0], "that unconsciously to himself his sunday school voice": [65535, 0], "unconsciously to himself his sunday school voice had": [65535, 0], "to himself his sunday school voice had acquired": [65535, 0], "himself his sunday school voice had acquired a": [65535, 0], "his sunday school voice had acquired a peculiar": [65535, 0], "sunday school voice had acquired a peculiar intonation": [65535, 0], "school voice had acquired a peculiar intonation which": [65535, 0], "voice had acquired a peculiar intonation which was": [65535, 0], "had acquired a peculiar intonation which was wholly": [65535, 0], "acquired a peculiar intonation which was wholly absent": [65535, 0], "a peculiar intonation which was wholly absent on": [65535, 0], "peculiar intonation which was wholly absent on week": [65535, 0], "intonation which was wholly absent on week days": [65535, 0], "which was wholly absent on week days he": [65535, 0], "was wholly absent on week days he began": [65535, 0], "wholly absent on week days he began after": [65535, 0], "absent on week days he began after this": [65535, 0], "on week days he began after this fashion": [65535, 0], "week days he began after this fashion now": [65535, 0], "days he began after this fashion now children": [65535, 0], "he began after this fashion now children i": [65535, 0], "began after this fashion now children i want": [65535, 0], "after this fashion now children i want you": [65535, 0], "this fashion now children i want you all": [65535, 0], "fashion now children i want you all to": [65535, 0], "now children i want you all to sit": [65535, 0], "children i want you all to sit up": [65535, 0], "i want you all to sit up just": [65535, 0], "want you all to sit up just as": [65535, 0], "you all to sit up just as straight": [65535, 0], "all to sit up just as straight and": [65535, 0], "to sit up just as straight and pretty": [65535, 0], "sit up just as straight and pretty as": [65535, 0], "up just as straight and pretty as you": [65535, 0], "just as straight and pretty as you can": [65535, 0], "as straight and pretty as you can and": [65535, 0], "straight and pretty as you can and give": [65535, 0], "and pretty as you can and give me": [65535, 0], "pretty as you can and give me all": [65535, 0], "as you can and give me all your": [65535, 0], "you can and give me all your attention": [65535, 0], "can and give me all your attention for": [65535, 0], "and give me all your attention for a": [65535, 0], "give me all your attention for a minute": [65535, 0], "me all your attention for a minute or": [65535, 0], "all your attention for a minute or two": [65535, 0], "your attention for a minute or two there": [65535, 0], "attention for a minute or two there that": [65535, 0], "for a minute or two there that is": [65535, 0], "a minute or two there that is it": [65535, 0], "minute or two there that is it that": [65535, 0], "or two there that is it that is": [65535, 0], "two there that is it that is the": [65535, 0], "there that is it that is the way": [65535, 0], "that is it that is the way good": [65535, 0], "is it that is the way good little": [65535, 0], "it that is the way good little boys": [65535, 0], "that is the way good little boys and": [65535, 0], "is the way good little boys and girls": [65535, 0], "the way good little boys and girls should": [65535, 0], "way good little boys and girls should do": [65535, 0], "good little boys and girls should do i": [65535, 0], "little boys and girls should do i see": [65535, 0], "boys and girls should do i see one": [65535, 0], "and girls should do i see one little": [65535, 0], "girls should do i see one little girl": [65535, 0], "should do i see one little girl who": [65535, 0], "do i see one little girl who is": [65535, 0], "i see one little girl who is looking": [65535, 0], "see one little girl who is looking out": [65535, 0], "one little girl who is looking out of": [65535, 0], "little girl who is looking out of the": [65535, 0], "girl who is looking out of the window": [65535, 0], "who is looking out of the window i": [65535, 0], "is looking out of the window i am": [65535, 0], "looking out of the window i am afraid": [65535, 0], "out of the window i am afraid she": [65535, 0], "of the window i am afraid she thinks": [65535, 0], "the window i am afraid she thinks i": [65535, 0], "window i am afraid she thinks i am": [65535, 0], "i am afraid she thinks i am out": [65535, 0], "am afraid she thinks i am out there": [65535, 0], "afraid she thinks i am out there somewhere": [65535, 0], "she thinks i am out there somewhere perhaps": [65535, 0], "thinks i am out there somewhere perhaps up": [65535, 0], "i am out there somewhere perhaps up in": [65535, 0], "am out there somewhere perhaps up in one": [65535, 0], "out there somewhere perhaps up in one of": [65535, 0], "there somewhere perhaps up in one of the": [65535, 0], "somewhere perhaps up in one of the trees": [65535, 0], "perhaps up in one of the trees making": [65535, 0], "up in one of the trees making a": [65535, 0], "in one of the trees making a speech": [65535, 0], "one of the trees making a speech to": [65535, 0], "of the trees making a speech to the": [65535, 0], "the trees making a speech to the little": [65535, 0], "trees making a speech to the little birds": [65535, 0], "making a speech to the little birds applausive": [65535, 0], "a speech to the little birds applausive titter": [65535, 0], "speech to the little birds applausive titter i": [65535, 0], "to the little birds applausive titter i want": [65535, 0], "the little birds applausive titter i want to": [65535, 0], "little birds applausive titter i want to tell": [65535, 0], "birds applausive titter i want to tell you": [65535, 0], "applausive titter i want to tell you how": [65535, 0], "titter i want to tell you how good": [65535, 0], "i want to tell you how good it": [65535, 0], "want to tell you how good it makes": [65535, 0], "to tell you how good it makes me": [65535, 0], "tell you how good it makes me feel": [65535, 0], "you how good it makes me feel to": [65535, 0], "how good it makes me feel to see": [65535, 0], "good it makes me feel to see so": [65535, 0], "it makes me feel to see so many": [65535, 0], "makes me feel to see so many bright": [65535, 0], "me feel to see so many bright clean": [65535, 0], "feel to see so many bright clean little": [65535, 0], "to see so many bright clean little faces": [65535, 0], "see so many bright clean little faces assembled": [65535, 0], "so many bright clean little faces assembled in": [65535, 0], "many bright clean little faces assembled in a": [65535, 0], "bright clean little faces assembled in a place": [65535, 0], "clean little faces assembled in a place like": [65535, 0], "little faces assembled in a place like this": [65535, 0], "faces assembled in a place like this learning": [65535, 0], "assembled in a place like this learning to": [65535, 0], "in a place like this learning to do": [65535, 0], "a place like this learning to do right": [65535, 0], "place like this learning to do right and": [65535, 0], "like this learning to do right and be": [65535, 0], "this learning to do right and be good": [65535, 0], "learning to do right and be good and": [65535, 0], "to do right and be good and so": [65535, 0], "do right and be good and so forth": [65535, 0], "right and be good and so forth and": [65535, 0], "and be good and so forth and so": [65535, 0], "be good and so forth and so on": [65535, 0], "good and so forth and so on it": [65535, 0], "and so forth and so on it is": [65535, 0], "so forth and so on it is not": [65535, 0], "forth and so on it is not necessary": [65535, 0], "and so on it is not necessary to": [65535, 0], "so on it is not necessary to set": [65535, 0], "on it is not necessary to set down": [65535, 0], "it is not necessary to set down the": [65535, 0], "is not necessary to set down the rest": [65535, 0], "not necessary to set down the rest of": [65535, 0], "necessary to set down the rest of the": [65535, 0], "to set down the rest of the oration": [65535, 0], "set down the rest of the oration it": [65535, 0], "down the rest of the oration it was": [65535, 0], "the rest of the oration it was of": [65535, 0], "rest of the oration it was of a": [65535, 0], "of the oration it was of a pattern": [65535, 0], "the oration it was of a pattern which": [65535, 0], "oration it was of a pattern which does": [65535, 0], "it was of a pattern which does not": [65535, 0], "was of a pattern which does not vary": [65535, 0], "of a pattern which does not vary and": [65535, 0], "a pattern which does not vary and so": [65535, 0], "pattern which does not vary and so it": [65535, 0], "which does not vary and so it is": [65535, 0], "does not vary and so it is familiar": [65535, 0], "not vary and so it is familiar to": [65535, 0], "vary and so it is familiar to us": [65535, 0], "and so it is familiar to us all": [65535, 0], "so it is familiar to us all the": [65535, 0], "it is familiar to us all the latter": [65535, 0], "is familiar to us all the latter third": [65535, 0], "familiar to us all the latter third of": [65535, 0], "to us all the latter third of the": [65535, 0], "us all the latter third of the speech": [65535, 0], "all the latter third of the speech was": [65535, 0], "the latter third of the speech was marred": [65535, 0], "latter third of the speech was marred by": [65535, 0], "third of the speech was marred by the": [65535, 0], "of the speech was marred by the resumption": [65535, 0], "the speech was marred by the resumption of": [65535, 0], "speech was marred by the resumption of fights": [65535, 0], "was marred by the resumption of fights and": [65535, 0], "marred by the resumption of fights and other": [65535, 0], "by the resumption of fights and other recreations": [65535, 0], "the resumption of fights and other recreations among": [65535, 0], "resumption of fights and other recreations among certain": [65535, 0], "of fights and other recreations among certain of": [65535, 0], "fights and other recreations among certain of the": [65535, 0], "and other recreations among certain of the bad": [65535, 0], "other recreations among certain of the bad boys": [65535, 0], "recreations among certain of the bad boys and": [65535, 0], "among certain of the bad boys and by": [65535, 0], "certain of the bad boys and by fidgetings": [65535, 0], "of the bad boys and by fidgetings and": [65535, 0], "the bad boys and by fidgetings and whisperings": [65535, 0], "bad boys and by fidgetings and whisperings that": [65535, 0], "boys and by fidgetings and whisperings that extended": [65535, 0], "and by fidgetings and whisperings that extended far": [65535, 0], "by fidgetings and whisperings that extended far and": [65535, 0], "fidgetings and whisperings that extended far and wide": [65535, 0], "and whisperings that extended far and wide washing": [65535, 0], "whisperings that extended far and wide washing even": [65535, 0], "that extended far and wide washing even to": [65535, 0], "extended far and wide washing even to the": [65535, 0], "far and wide washing even to the bases": [65535, 0], "and wide washing even to the bases of": [65535, 0], "wide washing even to the bases of isolated": [65535, 0], "washing even to the bases of isolated and": [65535, 0], "even to the bases of isolated and incorruptible": [65535, 0], "to the bases of isolated and incorruptible rocks": [65535, 0], "the bases of isolated and incorruptible rocks like": [65535, 0], "bases of isolated and incorruptible rocks like sid": [65535, 0], "of isolated and incorruptible rocks like sid and": [65535, 0], "isolated and incorruptible rocks like sid and mary": [65535, 0], "and incorruptible rocks like sid and mary but": [65535, 0], "incorruptible rocks like sid and mary but now": [65535, 0], "rocks like sid and mary but now every": [65535, 0], "like sid and mary but now every sound": [65535, 0], "sid and mary but now every sound ceased": [65535, 0], "and mary but now every sound ceased suddenly": [65535, 0], "mary but now every sound ceased suddenly with": [65535, 0], "but now every sound ceased suddenly with the": [65535, 0], "now every sound ceased suddenly with the subsidence": [65535, 0], "every sound ceased suddenly with the subsidence of": [65535, 0], "sound ceased suddenly with the subsidence of mr": [65535, 0], "ceased suddenly with the subsidence of mr walters'": [65535, 0], "suddenly with the subsidence of mr walters' voice": [65535, 0], "with the subsidence of mr walters' voice and": [65535, 0], "the subsidence of mr walters' voice and the": [65535, 0], "subsidence of mr walters' voice and the conclusion": [65535, 0], "of mr walters' voice and the conclusion of": [65535, 0], "mr walters' voice and the conclusion of the": [65535, 0], "walters' voice and the conclusion of the speech": [65535, 0], "voice and the conclusion of the speech was": [65535, 0], "and the conclusion of the speech was received": [65535, 0], "the conclusion of the speech was received with": [65535, 0], "conclusion of the speech was received with a": [65535, 0], "of the speech was received with a burst": [65535, 0], "the speech was received with a burst of": [65535, 0], "speech was received with a burst of silent": [65535, 0], "was received with a burst of silent gratitude": [65535, 0], "received with a burst of silent gratitude a": [65535, 0], "with a burst of silent gratitude a good": [65535, 0], "a burst of silent gratitude a good part": [65535, 0], "burst of silent gratitude a good part of": [65535, 0], "of silent gratitude a good part of the": [65535, 0], "silent gratitude a good part of the whispering": [65535, 0], "gratitude a good part of the whispering had": [65535, 0], "a good part of the whispering had been": [65535, 0], "good part of the whispering had been occasioned": [65535, 0], "part of the whispering had been occasioned by": [65535, 0], "of the whispering had been occasioned by an": [65535, 0], "the whispering had been occasioned by an event": [65535, 0], "whispering had been occasioned by an event which": [65535, 0], "had been occasioned by an event which was": [65535, 0], "been occasioned by an event which was more": [65535, 0], "occasioned by an event which was more or": [65535, 0], "by an event which was more or less": [65535, 0], "an event which was more or less rare": [65535, 0], "event which was more or less rare the": [65535, 0], "which was more or less rare the entrance": [65535, 0], "was more or less rare the entrance of": [65535, 0], "more or less rare the entrance of visitors": [65535, 0], "or less rare the entrance of visitors lawyer": [65535, 0], "less rare the entrance of visitors lawyer thatcher": [65535, 0], "rare the entrance of visitors lawyer thatcher accompanied": [65535, 0], "the entrance of visitors lawyer thatcher accompanied by": [65535, 0], "entrance of visitors lawyer thatcher accompanied by a": [65535, 0], "of visitors lawyer thatcher accompanied by a very": [65535, 0], "visitors lawyer thatcher accompanied by a very feeble": [65535, 0], "lawyer thatcher accompanied by a very feeble and": [65535, 0], "thatcher accompanied by a very feeble and aged": [65535, 0], "accompanied by a very feeble and aged man": [65535, 0], "by a very feeble and aged man a": [65535, 0], "a very feeble and aged man a fine": [65535, 0], "very feeble and aged man a fine portly": [65535, 0], "feeble and aged man a fine portly middle": [65535, 0], "and aged man a fine portly middle aged": [65535, 0], "aged man a fine portly middle aged gentleman": [65535, 0], "man a fine portly middle aged gentleman with": [65535, 0], "a fine portly middle aged gentleman with iron": [65535, 0], "fine portly middle aged gentleman with iron gray": [65535, 0], "portly middle aged gentleman with iron gray hair": [65535, 0], "middle aged gentleman with iron gray hair and": [65535, 0], "aged gentleman with iron gray hair and a": [65535, 0], "gentleman with iron gray hair and a dignified": [65535, 0], "with iron gray hair and a dignified lady": [65535, 0], "iron gray hair and a dignified lady who": [65535, 0], "gray hair and a dignified lady who was": [65535, 0], "hair and a dignified lady who was doubtless": [65535, 0], "and a dignified lady who was doubtless the": [65535, 0], "a dignified lady who was doubtless the latter's": [65535, 0], "dignified lady who was doubtless the latter's wife": [65535, 0], "lady who was doubtless the latter's wife the": [65535, 0], "who was doubtless the latter's wife the lady": [65535, 0], "was doubtless the latter's wife the lady was": [65535, 0], "doubtless the latter's wife the lady was leading": [65535, 0], "the latter's wife the lady was leading a": [65535, 0], "latter's wife the lady was leading a child": [65535, 0], "wife the lady was leading a child tom": [65535, 0], "the lady was leading a child tom had": [65535, 0], "lady was leading a child tom had been": [65535, 0], "was leading a child tom had been restless": [65535, 0], "leading a child tom had been restless and": [65535, 0], "a child tom had been restless and full": [65535, 0], "child tom had been restless and full of": [65535, 0], "tom had been restless and full of chafings": [65535, 0], "had been restless and full of chafings and": [65535, 0], "been restless and full of chafings and repinings": [65535, 0], "restless and full of chafings and repinings conscience": [65535, 0], "and full of chafings and repinings conscience smitten": [65535, 0], "full of chafings and repinings conscience smitten too": [65535, 0], "of chafings and repinings conscience smitten too he": [65535, 0], "chafings and repinings conscience smitten too he could": [65535, 0], "and repinings conscience smitten too he could not": [65535, 0], "repinings conscience smitten too he could not meet": [65535, 0], "conscience smitten too he could not meet amy": [65535, 0], "smitten too he could not meet amy lawrence's": [65535, 0], "too he could not meet amy lawrence's eye": [65535, 0], "he could not meet amy lawrence's eye he": [65535, 0], "could not meet amy lawrence's eye he could": [65535, 0], "not meet amy lawrence's eye he could not": [65535, 0], "meet amy lawrence's eye he could not brook": [65535, 0], "amy lawrence's eye he could not brook her": [65535, 0], "lawrence's eye he could not brook her loving": [65535, 0], "eye he could not brook her loving gaze": [65535, 0], "he could not brook her loving gaze but": [65535, 0], "could not brook her loving gaze but when": [65535, 0], "not brook her loving gaze but when he": [65535, 0], "brook her loving gaze but when he saw": [65535, 0], "her loving gaze but when he saw this": [65535, 0], "loving gaze but when he saw this small": [65535, 0], "gaze but when he saw this small new": [65535, 0], "but when he saw this small new comer": [65535, 0], "when he saw this small new comer his": [65535, 0], "he saw this small new comer his soul": [65535, 0], "saw this small new comer his soul was": [65535, 0], "this small new comer his soul was all": [65535, 0], "small new comer his soul was all ablaze": [65535, 0], "new comer his soul was all ablaze with": [65535, 0], "comer his soul was all ablaze with bliss": [65535, 0], "his soul was all ablaze with bliss in": [65535, 0], "soul was all ablaze with bliss in a": [65535, 0], "was all ablaze with bliss in a moment": [65535, 0], "all ablaze with bliss in a moment the": [65535, 0], "ablaze with bliss in a moment the next": [65535, 0], "with bliss in a moment the next moment": [65535, 0], "bliss in a moment the next moment he": [65535, 0], "in a moment the next moment he was": [65535, 0], "a moment the next moment he was showing": [65535, 0], "moment the next moment he was showing off": [65535, 0], "the next moment he was showing off with": [65535, 0], "next moment he was showing off with all": [65535, 0], "moment he was showing off with all his": [65535, 0], "he was showing off with all his might": [65535, 0], "was showing off with all his might cuffing": [65535, 0], "showing off with all his might cuffing boys": [65535, 0], "off with all his might cuffing boys pulling": [65535, 0], "with all his might cuffing boys pulling hair": [65535, 0], "all his might cuffing boys pulling hair making": [65535, 0], "his might cuffing boys pulling hair making faces": [65535, 0], "might cuffing boys pulling hair making faces in": [65535, 0], "cuffing boys pulling hair making faces in a": [65535, 0], "boys pulling hair making faces in a word": [65535, 0], "pulling hair making faces in a word using": [65535, 0], "hair making faces in a word using every": [65535, 0], "making faces in a word using every art": [65535, 0], "faces in a word using every art that": [65535, 0], "in a word using every art that seemed": [65535, 0], "a word using every art that seemed likely": [65535, 0], "word using every art that seemed likely to": [65535, 0], "using every art that seemed likely to fascinate": [65535, 0], "every art that seemed likely to fascinate a": [65535, 0], "art that seemed likely to fascinate a girl": [65535, 0], "that seemed likely to fascinate a girl and": [65535, 0], "seemed likely to fascinate a girl and win": [65535, 0], "likely to fascinate a girl and win her": [65535, 0], "to fascinate a girl and win her applause": [65535, 0], "fascinate a girl and win her applause his": [65535, 0], "a girl and win her applause his exaltation": [65535, 0], "girl and win her applause his exaltation had": [65535, 0], "and win her applause his exaltation had but": [65535, 0], "win her applause his exaltation had but one": [65535, 0], "her applause his exaltation had but one alloy": [65535, 0], "applause his exaltation had but one alloy the": [65535, 0], "his exaltation had but one alloy the memory": [65535, 0], "exaltation had but one alloy the memory of": [65535, 0], "had but one alloy the memory of his": [65535, 0], "but one alloy the memory of his humiliation": [65535, 0], "one alloy the memory of his humiliation in": [65535, 0], "alloy the memory of his humiliation in this": [65535, 0], "the memory of his humiliation in this angel's": [65535, 0], "memory of his humiliation in this angel's garden": [65535, 0], "of his humiliation in this angel's garden and": [65535, 0], "his humiliation in this angel's garden and that": [65535, 0], "humiliation in this angel's garden and that record": [65535, 0], "in this angel's garden and that record in": [65535, 0], "this angel's garden and that record in sand": [65535, 0], "angel's garden and that record in sand was": [65535, 0], "garden and that record in sand was fast": [65535, 0], "and that record in sand was fast washing": [65535, 0], "that record in sand was fast washing out": [65535, 0], "record in sand was fast washing out under": [65535, 0], "in sand was fast washing out under the": [65535, 0], "sand was fast washing out under the waves": [65535, 0], "was fast washing out under the waves of": [65535, 0], "fast washing out under the waves of happiness": [65535, 0], "washing out under the waves of happiness that": [65535, 0], "out under the waves of happiness that were": [65535, 0], "under the waves of happiness that were sweeping": [65535, 0], "the waves of happiness that were sweeping over": [65535, 0], "waves of happiness that were sweeping over it": [65535, 0], "of happiness that were sweeping over it now": [65535, 0], "happiness that were sweeping over it now the": [65535, 0], "that were sweeping over it now the visitors": [65535, 0], "were sweeping over it now the visitors were": [65535, 0], "sweeping over it now the visitors were given": [65535, 0], "over it now the visitors were given the": [65535, 0], "it now the visitors were given the highest": [65535, 0], "now the visitors were given the highest seat": [65535, 0], "the visitors were given the highest seat of": [65535, 0], "visitors were given the highest seat of honor": [65535, 0], "were given the highest seat of honor and": [65535, 0], "given the highest seat of honor and as": [65535, 0], "the highest seat of honor and as soon": [65535, 0], "highest seat of honor and as soon as": [65535, 0], "seat of honor and as soon as mr": [65535, 0], "of honor and as soon as mr walters'": [65535, 0], "honor and as soon as mr walters' speech": [65535, 0], "and as soon as mr walters' speech was": [65535, 0], "as soon as mr walters' speech was finished": [65535, 0], "soon as mr walters' speech was finished he": [65535, 0], "as mr walters' speech was finished he introduced": [65535, 0], "mr walters' speech was finished he introduced them": [65535, 0], "walters' speech was finished he introduced them to": [65535, 0], "speech was finished he introduced them to the": [65535, 0], "was finished he introduced them to the school": [65535, 0], "finished he introduced them to the school the": [65535, 0], "he introduced them to the school the middle": [65535, 0], "introduced them to the school the middle aged": [65535, 0], "them to the school the middle aged man": [65535, 0], "to the school the middle aged man turned": [65535, 0], "the school the middle aged man turned out": [65535, 0], "school the middle aged man turned out to": [65535, 0], "the middle aged man turned out to be": [65535, 0], "middle aged man turned out to be a": [65535, 0], "aged man turned out to be a prodigious": [65535, 0], "man turned out to be a prodigious personage": [65535, 0], "turned out to be a prodigious personage no": [65535, 0], "out to be a prodigious personage no less": [65535, 0], "to be a prodigious personage no less a": [65535, 0], "be a prodigious personage no less a one": [65535, 0], "a prodigious personage no less a one than": [65535, 0], "prodigious personage no less a one than the": [65535, 0], "personage no less a one than the county": [65535, 0], "no less a one than the county judge": [65535, 0], "less a one than the county judge altogether": [65535, 0], "a one than the county judge altogether the": [65535, 0], "one than the county judge altogether the most": [65535, 0], "than the county judge altogether the most august": [65535, 0], "the county judge altogether the most august creation": [65535, 0], "county judge altogether the most august creation these": [65535, 0], "judge altogether the most august creation these children": [65535, 0], "altogether the most august creation these children had": [65535, 0], "the most august creation these children had ever": [65535, 0], "most august creation these children had ever looked": [65535, 0], "august creation these children had ever looked upon": [65535, 0], "creation these children had ever looked upon and": [65535, 0], "these children had ever looked upon and they": [65535, 0], "children had ever looked upon and they wondered": [65535, 0], "had ever looked upon and they wondered what": [65535, 0], "ever looked upon and they wondered what kind": [65535, 0], "looked upon and they wondered what kind of": [65535, 0], "upon and they wondered what kind of material": [65535, 0], "and they wondered what kind of material he": [65535, 0], "they wondered what kind of material he was": [65535, 0], "wondered what kind of material he was made": [65535, 0], "what kind of material he was made of": [65535, 0], "kind of material he was made of and": [65535, 0], "of material he was made of and they": [65535, 0], "material he was made of and they half": [65535, 0], "he was made of and they half wanted": [65535, 0], "was made of and they half wanted to": [65535, 0], "made of and they half wanted to hear": [65535, 0], "of and they half wanted to hear him": [65535, 0], "and they half wanted to hear him roar": [65535, 0], "they half wanted to hear him roar and": [65535, 0], "half wanted to hear him roar and were": [65535, 0], "wanted to hear him roar and were half": [65535, 0], "to hear him roar and were half afraid": [65535, 0], "hear him roar and were half afraid he": [65535, 0], "him roar and were half afraid he might": [65535, 0], "roar and were half afraid he might too": [65535, 0], "and were half afraid he might too he": [65535, 0], "were half afraid he might too he was": [65535, 0], "half afraid he might too he was from": [65535, 0], "afraid he might too he was from constantinople": [65535, 0], "he might too he was from constantinople twelve": [65535, 0], "might too he was from constantinople twelve miles": [65535, 0], "too he was from constantinople twelve miles away": [65535, 0], "he was from constantinople twelve miles away so": [65535, 0], "was from constantinople twelve miles away so he": [65535, 0], "from constantinople twelve miles away so he had": [65535, 0], "constantinople twelve miles away so he had travelled": [65535, 0], "twelve miles away so he had travelled and": [65535, 0], "miles away so he had travelled and seen": [65535, 0], "away so he had travelled and seen the": [65535, 0], "so he had travelled and seen the world": [65535, 0], "he had travelled and seen the world these": [65535, 0], "had travelled and seen the world these very": [65535, 0], "travelled and seen the world these very eyes": [65535, 0], "and seen the world these very eyes had": [65535, 0], "seen the world these very eyes had looked": [65535, 0], "the world these very eyes had looked upon": [65535, 0], "world these very eyes had looked upon the": [65535, 0], "these very eyes had looked upon the county": [65535, 0], "very eyes had looked upon the county court": [65535, 0], "eyes had looked upon the county court house": [65535, 0], "had looked upon the county court house which": [65535, 0], "looked upon the county court house which was": [65535, 0], "upon the county court house which was said": [65535, 0], "the county court house which was said to": [65535, 0], "county court house which was said to have": [65535, 0], "court house which was said to have a": [65535, 0], "house which was said to have a tin": [65535, 0], "which was said to have a tin roof": [65535, 0], "was said to have a tin roof the": [65535, 0], "said to have a tin roof the awe": [65535, 0], "to have a tin roof the awe which": [65535, 0], "have a tin roof the awe which these": [65535, 0], "a tin roof the awe which these reflections": [65535, 0], "tin roof the awe which these reflections inspired": [65535, 0], "roof the awe which these reflections inspired was": [65535, 0], "the awe which these reflections inspired was attested": [65535, 0], "awe which these reflections inspired was attested by": [65535, 0], "which these reflections inspired was attested by the": [65535, 0], "these reflections inspired was attested by the impressive": [65535, 0], "reflections inspired was attested by the impressive silence": [65535, 0], "inspired was attested by the impressive silence and": [65535, 0], "was attested by the impressive silence and the": [65535, 0], "attested by the impressive silence and the ranks": [65535, 0], "by the impressive silence and the ranks of": [65535, 0], "the impressive silence and the ranks of staring": [65535, 0], "impressive silence and the ranks of staring eyes": [65535, 0], "silence and the ranks of staring eyes this": [65535, 0], "and the ranks of staring eyes this was": [65535, 0], "the ranks of staring eyes this was the": [65535, 0], "ranks of staring eyes this was the great": [65535, 0], "of staring eyes this was the great judge": [65535, 0], "staring eyes this was the great judge thatcher": [65535, 0], "eyes this was the great judge thatcher brother": [65535, 0], "this was the great judge thatcher brother of": [65535, 0], "was the great judge thatcher brother of their": [65535, 0], "the great judge thatcher brother of their own": [65535, 0], "great judge thatcher brother of their own lawyer": [65535, 0], "judge thatcher brother of their own lawyer jeff": [65535, 0], "thatcher brother of their own lawyer jeff thatcher": [65535, 0], "brother of their own lawyer jeff thatcher immediately": [65535, 0], "of their own lawyer jeff thatcher immediately went": [65535, 0], "their own lawyer jeff thatcher immediately went forward": [65535, 0], "own lawyer jeff thatcher immediately went forward to": [65535, 0], "lawyer jeff thatcher immediately went forward to be": [65535, 0], "jeff thatcher immediately went forward to be familiar": [65535, 0], "thatcher immediately went forward to be familiar with": [65535, 0], "immediately went forward to be familiar with the": [65535, 0], "went forward to be familiar with the great": [65535, 0], "forward to be familiar with the great man": [65535, 0], "to be familiar with the great man and": [65535, 0], "be familiar with the great man and be": [65535, 0], "familiar with the great man and be envied": [65535, 0], "with the great man and be envied by": [65535, 0], "the great man and be envied by the": [65535, 0], "great man and be envied by the school": [65535, 0], "man and be envied by the school it": [65535, 0], "and be envied by the school it would": [65535, 0], "be envied by the school it would have": [65535, 0], "envied by the school it would have been": [65535, 0], "by the school it would have been music": [65535, 0], "the school it would have been music to": [65535, 0], "school it would have been music to his": [65535, 0], "it would have been music to his soul": [65535, 0], "would have been music to his soul to": [65535, 0], "have been music to his soul to hear": [65535, 0], "been music to his soul to hear the": [65535, 0], "music to his soul to hear the whisperings": [65535, 0], "to his soul to hear the whisperings look": [65535, 0], "his soul to hear the whisperings look at": [65535, 0], "soul to hear the whisperings look at him": [65535, 0], "to hear the whisperings look at him jim": [65535, 0], "hear the whisperings look at him jim he's": [65535, 0], "the whisperings look at him jim he's a": [65535, 0], "whisperings look at him jim he's a going": [65535, 0], "look at him jim he's a going up": [65535, 0], "at him jim he's a going up there": [65535, 0], "him jim he's a going up there say": [65535, 0], "jim he's a going up there say look": [65535, 0], "he's a going up there say look he's": [65535, 0], "a going up there say look he's a": [65535, 0], "going up there say look he's a going": [65535, 0], "up there say look he's a going to": [65535, 0], "there say look he's a going to shake": [65535, 0], "say look he's a going to shake hands": [65535, 0], "look he's a going to shake hands with": [65535, 0], "he's a going to shake hands with him": [65535, 0], "a going to shake hands with him he": [65535, 0], "going to shake hands with him he is": [65535, 0], "to shake hands with him he is shaking": [65535, 0], "shake hands with him he is shaking hands": [65535, 0], "hands with him he is shaking hands with": [65535, 0], "with him he is shaking hands with him": [65535, 0], "him he is shaking hands with him by": [65535, 0], "he is shaking hands with him by jings": [65535, 0], "is shaking hands with him by jings don't": [65535, 0], "shaking hands with him by jings don't you": [65535, 0], "hands with him by jings don't you wish": [65535, 0], "with him by jings don't you wish you": [65535, 0], "him by jings don't you wish you was": [65535, 0], "by jings don't you wish you was jeff": [65535, 0], "jings don't you wish you was jeff mr": [65535, 0], "don't you wish you was jeff mr walters": [65535, 0], "you wish you was jeff mr walters fell": [65535, 0], "wish you was jeff mr walters fell to": [65535, 0], "you was jeff mr walters fell to showing": [65535, 0], "was jeff mr walters fell to showing off": [65535, 0], "jeff mr walters fell to showing off with": [65535, 0], "mr walters fell to showing off with all": [65535, 0], "walters fell to showing off with all sorts": [65535, 0], "fell to showing off with all sorts of": [65535, 0], "to showing off with all sorts of official": [65535, 0], "showing off with all sorts of official bustlings": [65535, 0], "off with all sorts of official bustlings and": [65535, 0], "with all sorts of official bustlings and activities": [65535, 0], "all sorts of official bustlings and activities giving": [65535, 0], "sorts of official bustlings and activities giving orders": [65535, 0], "of official bustlings and activities giving orders delivering": [65535, 0], "official bustlings and activities giving orders delivering judgments": [65535, 0], "bustlings and activities giving orders delivering judgments discharging": [65535, 0], "and activities giving orders delivering judgments discharging directions": [65535, 0], "activities giving orders delivering judgments discharging directions here": [65535, 0], "giving orders delivering judgments discharging directions here there": [65535, 0], "orders delivering judgments discharging directions here there everywhere": [65535, 0], "delivering judgments discharging directions here there everywhere that": [65535, 0], "judgments discharging directions here there everywhere that he": [65535, 0], "discharging directions here there everywhere that he could": [65535, 0], "directions here there everywhere that he could find": [65535, 0], "here there everywhere that he could find a": [65535, 0], "there everywhere that he could find a target": [65535, 0], "everywhere that he could find a target the": [65535, 0], "that he could find a target the librarian": [65535, 0], "he could find a target the librarian showed": [65535, 0], "could find a target the librarian showed off": [65535, 0], "find a target the librarian showed off running": [65535, 0], "a target the librarian showed off running hither": [65535, 0], "target the librarian showed off running hither and": [65535, 0], "the librarian showed off running hither and thither": [65535, 0], "librarian showed off running hither and thither with": [65535, 0], "showed off running hither and thither with his": [65535, 0], "off running hither and thither with his arms": [65535, 0], "running hither and thither with his arms full": [65535, 0], "hither and thither with his arms full of": [65535, 0], "and thither with his arms full of books": [65535, 0], "thither with his arms full of books and": [65535, 0], "with his arms full of books and making": [65535, 0], "his arms full of books and making a": [65535, 0], "arms full of books and making a deal": [65535, 0], "full of books and making a deal of": [65535, 0], "of books and making a deal of the": [65535, 0], "books and making a deal of the splutter": [65535, 0], "and making a deal of the splutter and": [65535, 0], "making a deal of the splutter and fuss": [65535, 0], "a deal of the splutter and fuss that": [65535, 0], "deal of the splutter and fuss that insect": [65535, 0], "of the splutter and fuss that insect authority": [65535, 0], "the splutter and fuss that insect authority delights": [65535, 0], "splutter and fuss that insect authority delights in": [65535, 0], "and fuss that insect authority delights in the": [65535, 0], "fuss that insect authority delights in the young": [65535, 0], "that insect authority delights in the young lady": [65535, 0], "insect authority delights in the young lady teachers": [65535, 0], "authority delights in the young lady teachers showed": [65535, 0], "delights in the young lady teachers showed off": [65535, 0], "in the young lady teachers showed off bending": [65535, 0], "the young lady teachers showed off bending sweetly": [65535, 0], "young lady teachers showed off bending sweetly over": [65535, 0], "lady teachers showed off bending sweetly over pupils": [65535, 0], "teachers showed off bending sweetly over pupils that": [65535, 0], "showed off bending sweetly over pupils that were": [65535, 0], "off bending sweetly over pupils that were lately": [65535, 0], "bending sweetly over pupils that were lately being": [65535, 0], "sweetly over pupils that were lately being boxed": [65535, 0], "over pupils that were lately being boxed lifting": [65535, 0], "pupils that were lately being boxed lifting pretty": [65535, 0], "that were lately being boxed lifting pretty warning": [65535, 0], "were lately being boxed lifting pretty warning fingers": [65535, 0], "lately being boxed lifting pretty warning fingers at": [65535, 0], "being boxed lifting pretty warning fingers at bad": [65535, 0], "boxed lifting pretty warning fingers at bad little": [65535, 0], "lifting pretty warning fingers at bad little boys": [65535, 0], "pretty warning fingers at bad little boys and": [65535, 0], "warning fingers at bad little boys and patting": [65535, 0], "fingers at bad little boys and patting good": [65535, 0], "at bad little boys and patting good ones": [65535, 0], "bad little boys and patting good ones lovingly": [65535, 0], "little boys and patting good ones lovingly the": [65535, 0], "boys and patting good ones lovingly the young": [65535, 0], "and patting good ones lovingly the young gentlemen": [65535, 0], "patting good ones lovingly the young gentlemen teachers": [65535, 0], "good ones lovingly the young gentlemen teachers showed": [65535, 0], "ones lovingly the young gentlemen teachers showed off": [65535, 0], "lovingly the young gentlemen teachers showed off with": [65535, 0], "the young gentlemen teachers showed off with small": [65535, 0], "young gentlemen teachers showed off with small scoldings": [65535, 0], "gentlemen teachers showed off with small scoldings and": [65535, 0], "teachers showed off with small scoldings and other": [65535, 0], "showed off with small scoldings and other little": [65535, 0], "off with small scoldings and other little displays": [65535, 0], "with small scoldings and other little displays of": [65535, 0], "small scoldings and other little displays of authority": [65535, 0], "scoldings and other little displays of authority and": [65535, 0], "and other little displays of authority and fine": [65535, 0], "other little displays of authority and fine attention": [65535, 0], "little displays of authority and fine attention to": [65535, 0], "displays of authority and fine attention to discipline": [65535, 0], "of authority and fine attention to discipline and": [65535, 0], "authority and fine attention to discipline and most": [65535, 0], "and fine attention to discipline and most of": [65535, 0], "fine attention to discipline and most of the": [65535, 0], "attention to discipline and most of the teachers": [65535, 0], "to discipline and most of the teachers of": [65535, 0], "discipline and most of the teachers of both": [65535, 0], "and most of the teachers of both sexes": [65535, 0], "most of the teachers of both sexes found": [65535, 0], "of the teachers of both sexes found business": [65535, 0], "the teachers of both sexes found business up": [65535, 0], "teachers of both sexes found business up at": [65535, 0], "of both sexes found business up at the": [65535, 0], "both sexes found business up at the library": [65535, 0], "sexes found business up at the library by": [65535, 0], "found business up at the library by the": [65535, 0], "business up at the library by the pulpit": [65535, 0], "up at the library by the pulpit and": [65535, 0], "at the library by the pulpit and it": [65535, 0], "the library by the pulpit and it was": [65535, 0], "library by the pulpit and it was business": [65535, 0], "by the pulpit and it was business that": [65535, 0], "the pulpit and it was business that frequently": [65535, 0], "pulpit and it was business that frequently had": [65535, 0], "and it was business that frequently had to": [65535, 0], "it was business that frequently had to be": [65535, 0], "was business that frequently had to be done": [65535, 0], "business that frequently had to be done over": [65535, 0], "that frequently had to be done over again": [65535, 0], "frequently had to be done over again two": [65535, 0], "had to be done over again two or": [65535, 0], "to be done over again two or three": [65535, 0], "be done over again two or three times": [65535, 0], "done over again two or three times with": [65535, 0], "over again two or three times with much": [65535, 0], "again two or three times with much seeming": [65535, 0], "two or three times with much seeming vexation": [65535, 0], "or three times with much seeming vexation the": [65535, 0], "three times with much seeming vexation the little": [65535, 0], "times with much seeming vexation the little girls": [65535, 0], "with much seeming vexation the little girls showed": [65535, 0], "much seeming vexation the little girls showed off": [65535, 0], "seeming vexation the little girls showed off in": [65535, 0], "vexation the little girls showed off in various": [65535, 0], "the little girls showed off in various ways": [65535, 0], "little girls showed off in various ways and": [65535, 0], "girls showed off in various ways and the": [65535, 0], "showed off in various ways and the little": [65535, 0], "off in various ways and the little boys": [65535, 0], "in various ways and the little boys showed": [65535, 0], "various ways and the little boys showed off": [65535, 0], "ways and the little boys showed off with": [65535, 0], "and the little boys showed off with such": [65535, 0], "the little boys showed off with such diligence": [65535, 0], "little boys showed off with such diligence that": [65535, 0], "boys showed off with such diligence that the": [65535, 0], "showed off with such diligence that the air": [65535, 0], "off with such diligence that the air was": [65535, 0], "with such diligence that the air was thick": [65535, 0], "such diligence that the air was thick with": [65535, 0], "diligence that the air was thick with paper": [65535, 0], "that the air was thick with paper wads": [65535, 0], "the air was thick with paper wads and": [65535, 0], "air was thick with paper wads and the": [65535, 0], "was thick with paper wads and the murmur": [65535, 0], "thick with paper wads and the murmur of": [65535, 0], "with paper wads and the murmur of scufflings": [65535, 0], "paper wads and the murmur of scufflings and": [65535, 0], "wads and the murmur of scufflings and above": [65535, 0], "and the murmur of scufflings and above it": [65535, 0], "the murmur of scufflings and above it all": [65535, 0], "murmur of scufflings and above it all the": [65535, 0], "of scufflings and above it all the great": [65535, 0], "scufflings and above it all the great man": [65535, 0], "and above it all the great man sat": [65535, 0], "above it all the great man sat and": [65535, 0], "it all the great man sat and beamed": [65535, 0], "all the great man sat and beamed a": [65535, 0], "the great man sat and beamed a majestic": [65535, 0], "great man sat and beamed a majestic judicial": [65535, 0], "man sat and beamed a majestic judicial smile": [65535, 0], "sat and beamed a majestic judicial smile upon": [65535, 0], "and beamed a majestic judicial smile upon all": [65535, 0], "beamed a majestic judicial smile upon all the": [65535, 0], "a majestic judicial smile upon all the house": [65535, 0], "majestic judicial smile upon all the house and": [65535, 0], "judicial smile upon all the house and warmed": [65535, 0], "smile upon all the house and warmed himself": [65535, 0], "upon all the house and warmed himself in": [65535, 0], "all the house and warmed himself in the": [65535, 0], "the house and warmed himself in the sun": [65535, 0], "house and warmed himself in the sun of": [65535, 0], "and warmed himself in the sun of his": [65535, 0], "warmed himself in the sun of his own": [65535, 0], "himself in the sun of his own grandeur": [65535, 0], "in the sun of his own grandeur for": [65535, 0], "the sun of his own grandeur for he": [65535, 0], "sun of his own grandeur for he was": [65535, 0], "of his own grandeur for he was showing": [65535, 0], "his own grandeur for he was showing off": [65535, 0], "own grandeur for he was showing off too": [65535, 0], "grandeur for he was showing off too there": [65535, 0], "for he was showing off too there was": [65535, 0], "he was showing off too there was only": [65535, 0], "was showing off too there was only one": [65535, 0], "showing off too there was only one thing": [65535, 0], "off too there was only one thing wanting": [65535, 0], "too there was only one thing wanting to": [65535, 0], "there was only one thing wanting to make": [65535, 0], "was only one thing wanting to make mr": [65535, 0], "only one thing wanting to make mr walters'": [65535, 0], "one thing wanting to make mr walters' ecstasy": [65535, 0], "thing wanting to make mr walters' ecstasy complete": [65535, 0], "wanting to make mr walters' ecstasy complete and": [65535, 0], "to make mr walters' ecstasy complete and that": [65535, 0], "make mr walters' ecstasy complete and that was": [65535, 0], "mr walters' ecstasy complete and that was a": [65535, 0], "walters' ecstasy complete and that was a chance": [65535, 0], "ecstasy complete and that was a chance to": [65535, 0], "complete and that was a chance to deliver": [65535, 0], "and that was a chance to deliver a": [65535, 0], "that was a chance to deliver a bible": [65535, 0], "was a chance to deliver a bible prize": [65535, 0], "a chance to deliver a bible prize and": [65535, 0], "chance to deliver a bible prize and exhibit": [65535, 0], "to deliver a bible prize and exhibit a": [65535, 0], "deliver a bible prize and exhibit a prodigy": [65535, 0], "a bible prize and exhibit a prodigy several": [65535, 0], "bible prize and exhibit a prodigy several pupils": [65535, 0], "prize and exhibit a prodigy several pupils had": [65535, 0], "and exhibit a prodigy several pupils had a": [65535, 0], "exhibit a prodigy several pupils had a few": [65535, 0], "a prodigy several pupils had a few yellow": [65535, 0], "prodigy several pupils had a few yellow tickets": [65535, 0], "several pupils had a few yellow tickets but": [65535, 0], "pupils had a few yellow tickets but none": [65535, 0], "had a few yellow tickets but none had": [65535, 0], "a few yellow tickets but none had enough": [65535, 0], "few yellow tickets but none had enough he": [65535, 0], "yellow tickets but none had enough he had": [65535, 0], "tickets but none had enough he had been": [65535, 0], "but none had enough he had been around": [65535, 0], "none had enough he had been around among": [65535, 0], "had enough he had been around among the": [65535, 0], "enough he had been around among the star": [65535, 0], "he had been around among the star pupils": [65535, 0], "had been around among the star pupils inquiring": [65535, 0], "been around among the star pupils inquiring he": [65535, 0], "around among the star pupils inquiring he would": [65535, 0], "among the star pupils inquiring he would have": [65535, 0], "the star pupils inquiring he would have given": [65535, 0], "star pupils inquiring he would have given worlds": [65535, 0], "pupils inquiring he would have given worlds now": [65535, 0], "inquiring he would have given worlds now to": [65535, 0], "he would have given worlds now to have": [65535, 0], "would have given worlds now to have that": [65535, 0], "have given worlds now to have that german": [65535, 0], "given worlds now to have that german lad": [65535, 0], "worlds now to have that german lad back": [65535, 0], "now to have that german lad back again": [65535, 0], "to have that german lad back again with": [65535, 0], "have that german lad back again with a": [65535, 0], "that german lad back again with a sound": [65535, 0], "german lad back again with a sound mind": [65535, 0], "lad back again with a sound mind and": [65535, 0], "back again with a sound mind and now": [65535, 0], "again with a sound mind and now at": [65535, 0], "with a sound mind and now at this": [65535, 0], "a sound mind and now at this moment": [65535, 0], "sound mind and now at this moment when": [65535, 0], "mind and now at this moment when hope": [65535, 0], "and now at this moment when hope was": [65535, 0], "now at this moment when hope was dead": [65535, 0], "at this moment when hope was dead tom": [65535, 0], "this moment when hope was dead tom sawyer": [65535, 0], "moment when hope was dead tom sawyer came": [65535, 0], "when hope was dead tom sawyer came forward": [65535, 0], "hope was dead tom sawyer came forward with": [65535, 0], "was dead tom sawyer came forward with nine": [65535, 0], "dead tom sawyer came forward with nine yellow": [65535, 0], "tom sawyer came forward with nine yellow tickets": [65535, 0], "sawyer came forward with nine yellow tickets nine": [65535, 0], "came forward with nine yellow tickets nine red": [65535, 0], "forward with nine yellow tickets nine red tickets": [65535, 0], "with nine yellow tickets nine red tickets and": [65535, 0], "nine yellow tickets nine red tickets and ten": [65535, 0], "yellow tickets nine red tickets and ten blue": [65535, 0], "tickets nine red tickets and ten blue ones": [65535, 0], "nine red tickets and ten blue ones and": [65535, 0], "red tickets and ten blue ones and demanded": [65535, 0], "tickets and ten blue ones and demanded a": [65535, 0], "and ten blue ones and demanded a bible": [65535, 0], "ten blue ones and demanded a bible this": [65535, 0], "blue ones and demanded a bible this was": [65535, 0], "ones and demanded a bible this was a": [65535, 0], "and demanded a bible this was a thunderbolt": [65535, 0], "demanded a bible this was a thunderbolt out": [65535, 0], "a bible this was a thunderbolt out of": [65535, 0], "bible this was a thunderbolt out of a": [65535, 0], "this was a thunderbolt out of a clear": [65535, 0], "was a thunderbolt out of a clear sky": [65535, 0], "a thunderbolt out of a clear sky walters": [65535, 0], "thunderbolt out of a clear sky walters was": [65535, 0], "out of a clear sky walters was not": [65535, 0], "of a clear sky walters was not expecting": [65535, 0], "a clear sky walters was not expecting an": [65535, 0], "clear sky walters was not expecting an application": [65535, 0], "sky walters was not expecting an application from": [65535, 0], "walters was not expecting an application from this": [65535, 0], "was not expecting an application from this source": [65535, 0], "not expecting an application from this source for": [65535, 0], "expecting an application from this source for the": [65535, 0], "an application from this source for the next": [65535, 0], "application from this source for the next ten": [65535, 0], "from this source for the next ten years": [65535, 0], "this source for the next ten years but": [65535, 0], "source for the next ten years but there": [65535, 0], "for the next ten years but there was": [65535, 0], "the next ten years but there was no": [65535, 0], "next ten years but there was no getting": [65535, 0], "ten years but there was no getting around": [65535, 0], "years but there was no getting around it": [65535, 0], "but there was no getting around it here": [65535, 0], "there was no getting around it here were": [65535, 0], "was no getting around it here were the": [65535, 0], "no getting around it here were the certified": [65535, 0], "getting around it here were the certified checks": [65535, 0], "around it here were the certified checks and": [65535, 0], "it here were the certified checks and they": [65535, 0], "here were the certified checks and they were": [65535, 0], "were the certified checks and they were good": [65535, 0], "the certified checks and they were good for": [65535, 0], "certified checks and they were good for their": [65535, 0], "checks and they were good for their face": [65535, 0], "and they were good for their face tom": [65535, 0], "they were good for their face tom was": [65535, 0], "were good for their face tom was therefore": [65535, 0], "good for their face tom was therefore elevated": [65535, 0], "for their face tom was therefore elevated to": [65535, 0], "their face tom was therefore elevated to a": [65535, 0], "face tom was therefore elevated to a place": [65535, 0], "tom was therefore elevated to a place with": [65535, 0], "was therefore elevated to a place with the": [65535, 0], "therefore elevated to a place with the judge": [65535, 0], "elevated to a place with the judge and": [65535, 0], "to a place with the judge and the": [65535, 0], "a place with the judge and the other": [65535, 0], "place with the judge and the other elect": [65535, 0], "with the judge and the other elect and": [65535, 0], "the judge and the other elect and the": [65535, 0], "judge and the other elect and the great": [65535, 0], "and the other elect and the great news": [65535, 0], "the other elect and the great news was": [65535, 0], "other elect and the great news was announced": [65535, 0], "elect and the great news was announced from": [65535, 0], "and the great news was announced from headquarters": [65535, 0], "the great news was announced from headquarters it": [65535, 0], "great news was announced from headquarters it was": [65535, 0], "news was announced from headquarters it was the": [65535, 0], "was announced from headquarters it was the most": [65535, 0], "announced from headquarters it was the most stunning": [65535, 0], "from headquarters it was the most stunning surprise": [65535, 0], "headquarters it was the most stunning surprise of": [65535, 0], "it was the most stunning surprise of the": [65535, 0], "was the most stunning surprise of the decade": [65535, 0], "the most stunning surprise of the decade and": [65535, 0], "most stunning surprise of the decade and so": [65535, 0], "stunning surprise of the decade and so profound": [65535, 0], "surprise of the decade and so profound was": [65535, 0], "of the decade and so profound was the": [65535, 0], "the decade and so profound was the sensation": [65535, 0], "decade and so profound was the sensation that": [65535, 0], "and so profound was the sensation that it": [65535, 0], "so profound was the sensation that it lifted": [65535, 0], "profound was the sensation that it lifted the": [65535, 0], "was the sensation that it lifted the new": [65535, 0], "the sensation that it lifted the new hero": [65535, 0], "sensation that it lifted the new hero up": [65535, 0], "that it lifted the new hero up to": [65535, 0], "it lifted the new hero up to the": [65535, 0], "lifted the new hero up to the judicial": [65535, 0], "the new hero up to the judicial one's": [65535, 0], "new hero up to the judicial one's altitude": [65535, 0], "hero up to the judicial one's altitude and": [65535, 0], "up to the judicial one's altitude and the": [65535, 0], "to the judicial one's altitude and the school": [65535, 0], "the judicial one's altitude and the school had": [65535, 0], "judicial one's altitude and the school had two": [65535, 0], "one's altitude and the school had two marvels": [65535, 0], "altitude and the school had two marvels to": [65535, 0], "and the school had two marvels to gaze": [65535, 0], "the school had two marvels to gaze upon": [65535, 0], "school had two marvels to gaze upon in": [65535, 0], "had two marvels to gaze upon in place": [65535, 0], "two marvels to gaze upon in place of": [65535, 0], "marvels to gaze upon in place of one": [65535, 0], "to gaze upon in place of one the": [65535, 0], "gaze upon in place of one the boys": [65535, 0], "upon in place of one the boys were": [65535, 0], "in place of one the boys were all": [65535, 0], "place of one the boys were all eaten": [65535, 0], "of one the boys were all eaten up": [65535, 0], "one the boys were all eaten up with": [65535, 0], "the boys were all eaten up with envy": [65535, 0], "boys were all eaten up with envy but": [65535, 0], "were all eaten up with envy but those": [65535, 0], "all eaten up with envy but those that": [65535, 0], "eaten up with envy but those that suffered": [65535, 0], "up with envy but those that suffered the": [65535, 0], "with envy but those that suffered the bitterest": [65535, 0], "envy but those that suffered the bitterest pangs": [65535, 0], "but those that suffered the bitterest pangs were": [65535, 0], "those that suffered the bitterest pangs were those": [65535, 0], "that suffered the bitterest pangs were those who": [65535, 0], "suffered the bitterest pangs were those who perceived": [65535, 0], "the bitterest pangs were those who perceived too": [65535, 0], "bitterest pangs were those who perceived too late": [65535, 0], "pangs were those who perceived too late that": [65535, 0], "were those who perceived too late that they": [65535, 0], "those who perceived too late that they themselves": [65535, 0], "who perceived too late that they themselves had": [65535, 0], "perceived too late that they themselves had contributed": [65535, 0], "too late that they themselves had contributed to": [65535, 0], "late that they themselves had contributed to this": [65535, 0], "that they themselves had contributed to this hated": [65535, 0], "they themselves had contributed to this hated splendor": [65535, 0], "themselves had contributed to this hated splendor by": [65535, 0], "had contributed to this hated splendor by trading": [65535, 0], "contributed to this hated splendor by trading tickets": [65535, 0], "to this hated splendor by trading tickets to": [65535, 0], "this hated splendor by trading tickets to tom": [65535, 0], "hated splendor by trading tickets to tom for": [65535, 0], "splendor by trading tickets to tom for the": [65535, 0], "by trading tickets to tom for the wealth": [65535, 0], "trading tickets to tom for the wealth he": [65535, 0], "tickets to tom for the wealth he had": [65535, 0], "to tom for the wealth he had amassed": [65535, 0], "tom for the wealth he had amassed in": [65535, 0], "for the wealth he had amassed in selling": [65535, 0], "the wealth he had amassed in selling whitewashing": [65535, 0], "wealth he had amassed in selling whitewashing privileges": [65535, 0], "he had amassed in selling whitewashing privileges these": [65535, 0], "had amassed in selling whitewashing privileges these despised": [65535, 0], "amassed in selling whitewashing privileges these despised themselves": [65535, 0], "in selling whitewashing privileges these despised themselves as": [65535, 0], "selling whitewashing privileges these despised themselves as being": [65535, 0], "whitewashing privileges these despised themselves as being the": [65535, 0], "privileges these despised themselves as being the dupes": [65535, 0], "these despised themselves as being the dupes of": [65535, 0], "despised themselves as being the dupes of a": [65535, 0], "themselves as being the dupes of a wily": [65535, 0], "as being the dupes of a wily fraud": [65535, 0], "being the dupes of a wily fraud a": [65535, 0], "the dupes of a wily fraud a guileful": [65535, 0], "dupes of a wily fraud a guileful snake": [65535, 0], "of a wily fraud a guileful snake in": [65535, 0], "a wily fraud a guileful snake in the": [65535, 0], "wily fraud a guileful snake in the grass": [65535, 0], "fraud a guileful snake in the grass the": [65535, 0], "a guileful snake in the grass the prize": [65535, 0], "guileful snake in the grass the prize was": [65535, 0], "snake in the grass the prize was delivered": [65535, 0], "in the grass the prize was delivered to": [65535, 0], "the grass the prize was delivered to tom": [65535, 0], "grass the prize was delivered to tom with": [65535, 0], "the prize was delivered to tom with as": [65535, 0], "prize was delivered to tom with as much": [65535, 0], "was delivered to tom with as much effusion": [65535, 0], "delivered to tom with as much effusion as": [65535, 0], "to tom with as much effusion as the": [65535, 0], "tom with as much effusion as the superintendent": [65535, 0], "with as much effusion as the superintendent could": [65535, 0], "as much effusion as the superintendent could pump": [65535, 0], "much effusion as the superintendent could pump up": [65535, 0], "effusion as the superintendent could pump up under": [65535, 0], "as the superintendent could pump up under the": [65535, 0], "the superintendent could pump up under the circumstances": [65535, 0], "superintendent could pump up under the circumstances but": [65535, 0], "could pump up under the circumstances but it": [65535, 0], "pump up under the circumstances but it lacked": [65535, 0], "up under the circumstances but it lacked somewhat": [65535, 0], "under the circumstances but it lacked somewhat of": [65535, 0], "the circumstances but it lacked somewhat of the": [65535, 0], "circumstances but it lacked somewhat of the true": [65535, 0], "but it lacked somewhat of the true gush": [65535, 0], "it lacked somewhat of the true gush for": [65535, 0], "lacked somewhat of the true gush for the": [65535, 0], "somewhat of the true gush for the poor": [65535, 0], "of the true gush for the poor fellow's": [65535, 0], "the true gush for the poor fellow's instinct": [65535, 0], "true gush for the poor fellow's instinct taught": [65535, 0], "gush for the poor fellow's instinct taught him": [65535, 0], "for the poor fellow's instinct taught him that": [65535, 0], "the poor fellow's instinct taught him that there": [65535, 0], "poor fellow's instinct taught him that there was": [65535, 0], "fellow's instinct taught him that there was a": [65535, 0], "instinct taught him that there was a mystery": [65535, 0], "taught him that there was a mystery here": [65535, 0], "him that there was a mystery here that": [65535, 0], "that there was a mystery here that could": [65535, 0], "there was a mystery here that could not": [65535, 0], "was a mystery here that could not well": [65535, 0], "a mystery here that could not well bear": [65535, 0], "mystery here that could not well bear the": [65535, 0], "here that could not well bear the light": [65535, 0], "that could not well bear the light perhaps": [65535, 0], "could not well bear the light perhaps it": [65535, 0], "not well bear the light perhaps it was": [65535, 0], "well bear the light perhaps it was simply": [65535, 0], "bear the light perhaps it was simply preposterous": [65535, 0], "the light perhaps it was simply preposterous that": [65535, 0], "light perhaps it was simply preposterous that this": [65535, 0], "perhaps it was simply preposterous that this boy": [65535, 0], "it was simply preposterous that this boy had": [65535, 0], "was simply preposterous that this boy had warehoused": [65535, 0], "simply preposterous that this boy had warehoused two": [65535, 0], "preposterous that this boy had warehoused two thousand": [65535, 0], "that this boy had warehoused two thousand sheaves": [65535, 0], "this boy had warehoused two thousand sheaves of": [65535, 0], "boy had warehoused two thousand sheaves of scriptural": [65535, 0], "had warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom on": [65535, 0], "two thousand sheaves of scriptural wisdom on his": [65535, 0], "thousand sheaves of scriptural wisdom on his premises": [65535, 0], "sheaves of scriptural wisdom on his premises a": [65535, 0], "of scriptural wisdom on his premises a dozen": [65535, 0], "scriptural wisdom on his premises a dozen would": [65535, 0], "wisdom on his premises a dozen would strain": [65535, 0], "on his premises a dozen would strain his": [65535, 0], "his premises a dozen would strain his capacity": [65535, 0], "premises a dozen would strain his capacity without": [65535, 0], "a dozen would strain his capacity without a": [65535, 0], "dozen would strain his capacity without a doubt": [65535, 0], "would strain his capacity without a doubt amy": [65535, 0], "strain his capacity without a doubt amy lawrence": [65535, 0], "his capacity without a doubt amy lawrence was": [65535, 0], "capacity without a doubt amy lawrence was proud": [65535, 0], "without a doubt amy lawrence was proud and": [65535, 0], "a doubt amy lawrence was proud and glad": [65535, 0], "doubt amy lawrence was proud and glad and": [65535, 0], "amy lawrence was proud and glad and she": [65535, 0], "lawrence was proud and glad and she tried": [65535, 0], "was proud and glad and she tried to": [65535, 0], "proud and glad and she tried to make": [65535, 0], "and glad and she tried to make tom": [65535, 0], "glad and she tried to make tom see": [65535, 0], "and she tried to make tom see it": [65535, 0], "she tried to make tom see it in": [65535, 0], "tried to make tom see it in her": [65535, 0], "to make tom see it in her face": [65535, 0], "make tom see it in her face but": [65535, 0], "tom see it in her face but he": [65535, 0], "see it in her face but he wouldn't": [65535, 0], "it in her face but he wouldn't look": [65535, 0], "in her face but he wouldn't look she": [65535, 0], "her face but he wouldn't look she wondered": [65535, 0], "face but he wouldn't look she wondered then": [65535, 0], "but he wouldn't look she wondered then she": [65535, 0], "he wouldn't look she wondered then she was": [65535, 0], "wouldn't look she wondered then she was just": [65535, 0], "look she wondered then she was just a": [65535, 0], "she wondered then she was just a grain": [65535, 0], "wondered then she was just a grain troubled": [65535, 0], "then she was just a grain troubled next": [65535, 0], "she was just a grain troubled next a": [65535, 0], "was just a grain troubled next a dim": [65535, 0], "just a grain troubled next a dim suspicion": [65535, 0], "a grain troubled next a dim suspicion came": [65535, 0], "grain troubled next a dim suspicion came and": [65535, 0], "troubled next a dim suspicion came and went": [65535, 0], "next a dim suspicion came and went came": [65535, 0], "a dim suspicion came and went came again": [65535, 0], "dim suspicion came and went came again she": [65535, 0], "suspicion came and went came again she watched": [65535, 0], "came and went came again she watched a": [65535, 0], "and went came again she watched a furtive": [65535, 0], "went came again she watched a furtive glance": [65535, 0], "came again she watched a furtive glance told": [65535, 0], "again she watched a furtive glance told her": [65535, 0], "she watched a furtive glance told her worlds": [65535, 0], "watched a furtive glance told her worlds and": [65535, 0], "a furtive glance told her worlds and then": [65535, 0], "furtive glance told her worlds and then her": [65535, 0], "glance told her worlds and then her heart": [65535, 0], "told her worlds and then her heart broke": [65535, 0], "her worlds and then her heart broke and": [65535, 0], "worlds and then her heart broke and she": [65535, 0], "and then her heart broke and she was": [65535, 0], "then her heart broke and she was jealous": [65535, 0], "her heart broke and she was jealous and": [65535, 0], "heart broke and she was jealous and angry": [65535, 0], "broke and she was jealous and angry and": [65535, 0], "and she was jealous and angry and the": [65535, 0], "she was jealous and angry and the tears": [65535, 0], "was jealous and angry and the tears came": [65535, 0], "jealous and angry and the tears came and": [65535, 0], "and angry and the tears came and she": [65535, 0], "angry and the tears came and she hated": [65535, 0], "and the tears came and she hated everybody": [65535, 0], "the tears came and she hated everybody tom": [65535, 0], "tears came and she hated everybody tom most": [65535, 0], "came and she hated everybody tom most of": [65535, 0], "and she hated everybody tom most of all": [65535, 0], "she hated everybody tom most of all she": [65535, 0], "hated everybody tom most of all she thought": [65535, 0], "everybody tom most of all she thought tom": [65535, 0], "tom most of all she thought tom was": [65535, 0], "most of all she thought tom was introduced": [65535, 0], "of all she thought tom was introduced to": [65535, 0], "all she thought tom was introduced to the": [65535, 0], "she thought tom was introduced to the judge": [65535, 0], "thought tom was introduced to the judge but": [65535, 0], "tom was introduced to the judge but his": [65535, 0], "was introduced to the judge but his tongue": [65535, 0], "introduced to the judge but his tongue was": [65535, 0], "to the judge but his tongue was tied": [65535, 0], "the judge but his tongue was tied his": [65535, 0], "judge but his tongue was tied his breath": [65535, 0], "but his tongue was tied his breath would": [65535, 0], "his tongue was tied his breath would hardly": [65535, 0], "tongue was tied his breath would hardly come": [65535, 0], "was tied his breath would hardly come his": [65535, 0], "tied his breath would hardly come his heart": [65535, 0], "his breath would hardly come his heart quaked": [65535, 0], "breath would hardly come his heart quaked partly": [65535, 0], "would hardly come his heart quaked partly because": [65535, 0], "hardly come his heart quaked partly because of": [65535, 0], "come his heart quaked partly because of the": [65535, 0], "his heart quaked partly because of the awful": [65535, 0], "heart quaked partly because of the awful greatness": [65535, 0], "quaked partly because of the awful greatness of": [65535, 0], "partly because of the awful greatness of the": [65535, 0], "because of the awful greatness of the man": [65535, 0], "of the awful greatness of the man but": [65535, 0], "the awful greatness of the man but mainly": [65535, 0], "awful greatness of the man but mainly because": [65535, 0], "greatness of the man but mainly because he": [65535, 0], "of the man but mainly because he was": [65535, 0], "the man but mainly because he was her": [65535, 0], "man but mainly because he was her parent": [65535, 0], "but mainly because he was her parent he": [65535, 0], "mainly because he was her parent he would": [65535, 0], "because he was her parent he would have": [65535, 0], "he was her parent he would have liked": [65535, 0], "was her parent he would have liked to": [65535, 0], "her parent he would have liked to fall": [65535, 0], "parent he would have liked to fall down": [65535, 0], "he would have liked to fall down and": [65535, 0], "would have liked to fall down and worship": [65535, 0], "have liked to fall down and worship him": [65535, 0], "liked to fall down and worship him if": [65535, 0], "to fall down and worship him if it": [65535, 0], "fall down and worship him if it were": [65535, 0], "down and worship him if it were in": [65535, 0], "and worship him if it were in the": [65535, 0], "worship him if it were in the dark": [65535, 0], "him if it were in the dark the": [65535, 0], "if it were in the dark the judge": [65535, 0], "it were in the dark the judge put": [65535, 0], "were in the dark the judge put his": [65535, 0], "in the dark the judge put his hand": [65535, 0], "the dark the judge put his hand on": [65535, 0], "dark the judge put his hand on tom's": [65535, 0], "the judge put his hand on tom's head": [65535, 0], "judge put his hand on tom's head and": [65535, 0], "put his hand on tom's head and called": [65535, 0], "his hand on tom's head and called him": [65535, 0], "hand on tom's head and called him a": [65535, 0], "on tom's head and called him a fine": [65535, 0], "tom's head and called him a fine little": [65535, 0], "head and called him a fine little man": [65535, 0], "and called him a fine little man and": [65535, 0], "called him a fine little man and asked": [65535, 0], "him a fine little man and asked him": [65535, 0], "a fine little man and asked him what": [65535, 0], "fine little man and asked him what his": [65535, 0], "little man and asked him what his name": [65535, 0], "man and asked him what his name was": [65535, 0], "and asked him what his name was the": [65535, 0], "asked him what his name was the boy": [65535, 0], "him what his name was the boy stammered": [65535, 0], "what his name was the boy stammered gasped": [65535, 0], "his name was the boy stammered gasped and": [65535, 0], "name was the boy stammered gasped and got": [65535, 0], "was the boy stammered gasped and got it": [65535, 0], "the boy stammered gasped and got it out": [65535, 0], "boy stammered gasped and got it out tom": [65535, 0], "stammered gasped and got it out tom oh": [65535, 0], "gasped and got it out tom oh no": [65535, 0], "and got it out tom oh no not": [65535, 0], "got it out tom oh no not tom": [65535, 0], "it out tom oh no not tom it": [65535, 0], "out tom oh no not tom it is": [65535, 0], "tom oh no not tom it is thomas": [65535, 0], "oh no not tom it is thomas ah": [65535, 0], "no not tom it is thomas ah that's": [65535, 0], "not tom it is thomas ah that's it": [65535, 0], "tom it is thomas ah that's it i": [65535, 0], "it is thomas ah that's it i thought": [65535, 0], "is thomas ah that's it i thought there": [65535, 0], "thomas ah that's it i thought there was": [65535, 0], "ah that's it i thought there was more": [65535, 0], "that's it i thought there was more to": [65535, 0], "it i thought there was more to it": [65535, 0], "i thought there was more to it maybe": [65535, 0], "thought there was more to it maybe that's": [65535, 0], "there was more to it maybe that's very": [65535, 0], "was more to it maybe that's very well": [65535, 0], "more to it maybe that's very well but": [65535, 0], "to it maybe that's very well but you've": [65535, 0], "it maybe that's very well but you've another": [65535, 0], "maybe that's very well but you've another one": [65535, 0], "that's very well but you've another one i": [65535, 0], "very well but you've another one i daresay": [65535, 0], "well but you've another one i daresay and": [65535, 0], "but you've another one i daresay and you'll": [65535, 0], "you've another one i daresay and you'll tell": [65535, 0], "another one i daresay and you'll tell it": [65535, 0], "one i daresay and you'll tell it to": [65535, 0], "i daresay and you'll tell it to me": [65535, 0], "daresay and you'll tell it to me won't": [65535, 0], "and you'll tell it to me won't you": [65535, 0], "you'll tell it to me won't you tell": [65535, 0], "tell it to me won't you tell the": [65535, 0], "it to me won't you tell the gentleman": [65535, 0], "to me won't you tell the gentleman your": [65535, 0], "me won't you tell the gentleman your other": [65535, 0], "won't you tell the gentleman your other name": [65535, 0], "you tell the gentleman your other name thomas": [65535, 0], "tell the gentleman your other name thomas said": [65535, 0], "the gentleman your other name thomas said walters": [65535, 0], "gentleman your other name thomas said walters and": [65535, 0], "your other name thomas said walters and say": [65535, 0], "other name thomas said walters and say sir": [65535, 0], "name thomas said walters and say sir you": [65535, 0], "thomas said walters and say sir you mustn't": [65535, 0], "said walters and say sir you mustn't forget": [65535, 0], "walters and say sir you mustn't forget your": [65535, 0], "and say sir you mustn't forget your manners": [65535, 0], "say sir you mustn't forget your manners thomas": [65535, 0], "sir you mustn't forget your manners thomas sawyer": [65535, 0], "you mustn't forget your manners thomas sawyer sir": [65535, 0], "mustn't forget your manners thomas sawyer sir that's": [65535, 0], "forget your manners thomas sawyer sir that's it": [65535, 0], "your manners thomas sawyer sir that's it that's": [65535, 0], "manners thomas sawyer sir that's it that's a": [65535, 0], "thomas sawyer sir that's it that's a good": [65535, 0], "sawyer sir that's it that's a good boy": [65535, 0], "sir that's it that's a good boy fine": [65535, 0], "that's it that's a good boy fine boy": [65535, 0], "it that's a good boy fine boy fine": [65535, 0], "that's a good boy fine boy fine manly": [65535, 0], "a good boy fine boy fine manly little": [65535, 0], "good boy fine boy fine manly little fellow": [65535, 0], "boy fine boy fine manly little fellow two": [65535, 0], "fine boy fine manly little fellow two thousand": [65535, 0], "boy fine manly little fellow two thousand verses": [65535, 0], "fine manly little fellow two thousand verses is": [65535, 0], "manly little fellow two thousand verses is a": [65535, 0], "little fellow two thousand verses is a great": [65535, 0], "fellow two thousand verses is a great many": [65535, 0], "two thousand verses is a great many very": [65535, 0], "thousand verses is a great many very very": [65535, 0], "verses is a great many very very great": [65535, 0], "is a great many very very great many": [65535, 0], "a great many very very great many and": [65535, 0], "great many very very great many and you": [65535, 0], "many very very great many and you never": [65535, 0], "very very great many and you never can": [65535, 0], "very great many and you never can be": [65535, 0], "great many and you never can be sorry": [65535, 0], "many and you never can be sorry for": [65535, 0], "and you never can be sorry for the": [65535, 0], "you never can be sorry for the trouble": [65535, 0], "never can be sorry for the trouble you": [65535, 0], "can be sorry for the trouble you took": [65535, 0], "be sorry for the trouble you took to": [65535, 0], "sorry for the trouble you took to learn": [65535, 0], "for the trouble you took to learn them": [65535, 0], "the trouble you took to learn them for": [65535, 0], "trouble you took to learn them for knowledge": [65535, 0], "you took to learn them for knowledge is": [65535, 0], "took to learn them for knowledge is worth": [65535, 0], "to learn them for knowledge is worth more": [65535, 0], "learn them for knowledge is worth more than": [65535, 0], "them for knowledge is worth more than anything": [65535, 0], "for knowledge is worth more than anything there": [65535, 0], "knowledge is worth more than anything there is": [65535, 0], "is worth more than anything there is in": [65535, 0], "worth more than anything there is in the": [65535, 0], "more than anything there is in the world": [65535, 0], "than anything there is in the world it's": [65535, 0], "anything there is in the world it's what": [65535, 0], "there is in the world it's what makes": [65535, 0], "is in the world it's what makes great": [65535, 0], "in the world it's what makes great men": [65535, 0], "the world it's what makes great men and": [65535, 0], "world it's what makes great men and good": [65535, 0], "it's what makes great men and good men": [65535, 0], "what makes great men and good men you'll": [65535, 0], "makes great men and good men you'll be": [65535, 0], "great men and good men you'll be a": [65535, 0], "men and good men you'll be a great": [65535, 0], "and good men you'll be a great man": [65535, 0], "good men you'll be a great man and": [65535, 0], "men you'll be a great man and a": [65535, 0], "you'll be a great man and a good": [65535, 0], "be a great man and a good man": [65535, 0], "a great man and a good man yourself": [65535, 0], "great man and a good man yourself some": [65535, 0], "man and a good man yourself some day": [65535, 0], "and a good man yourself some day thomas": [65535, 0], "a good man yourself some day thomas and": [65535, 0], "good man yourself some day thomas and then": [65535, 0], "man yourself some day thomas and then you'll": [65535, 0], "yourself some day thomas and then you'll look": [65535, 0], "some day thomas and then you'll look back": [65535, 0], "day thomas and then you'll look back and": [65535, 0], "thomas and then you'll look back and say": [65535, 0], "and then you'll look back and say it's": [65535, 0], "then you'll look back and say it's all": [65535, 0], "you'll look back and say it's all owing": [65535, 0], "look back and say it's all owing to": [65535, 0], "back and say it's all owing to the": [65535, 0], "and say it's all owing to the precious": [65535, 0], "say it's all owing to the precious sunday": [65535, 0], "it's all owing to the precious sunday school": [65535, 0], "all owing to the precious sunday school privileges": [65535, 0], "owing to the precious sunday school privileges of": [65535, 0], "to the precious sunday school privileges of my": [65535, 0], "the precious sunday school privileges of my boyhood": [65535, 0], "precious sunday school privileges of my boyhood it's": [65535, 0], "sunday school privileges of my boyhood it's all": [65535, 0], "school privileges of my boyhood it's all owing": [65535, 0], "privileges of my boyhood it's all owing to": [65535, 0], "of my boyhood it's all owing to my": [65535, 0], "my boyhood it's all owing to my dear": [65535, 0], "boyhood it's all owing to my dear teachers": [65535, 0], "it's all owing to my dear teachers that": [65535, 0], "all owing to my dear teachers that taught": [65535, 0], "owing to my dear teachers that taught me": [65535, 0], "to my dear teachers that taught me to": [65535, 0], "my dear teachers that taught me to learn": [65535, 0], "dear teachers that taught me to learn it's": [65535, 0], "teachers that taught me to learn it's all": [65535, 0], "that taught me to learn it's all owing": [65535, 0], "taught me to learn it's all owing to": [65535, 0], "me to learn it's all owing to the": [65535, 0], "to learn it's all owing to the good": [65535, 0], "learn it's all owing to the good superintendent": [65535, 0], "it's all owing to the good superintendent who": [65535, 0], "all owing to the good superintendent who encouraged": [65535, 0], "owing to the good superintendent who encouraged me": [65535, 0], "to the good superintendent who encouraged me and": [65535, 0], "the good superintendent who encouraged me and watched": [65535, 0], "good superintendent who encouraged me and watched over": [65535, 0], "superintendent who encouraged me and watched over me": [65535, 0], "who encouraged me and watched over me and": [65535, 0], "encouraged me and watched over me and gave": [65535, 0], "me and watched over me and gave me": [65535, 0], "and watched over me and gave me a": [65535, 0], "watched over me and gave me a beautiful": [65535, 0], "over me and gave me a beautiful bible": [65535, 0], "me and gave me a beautiful bible a": [65535, 0], "and gave me a beautiful bible a splendid": [65535, 0], "gave me a beautiful bible a splendid elegant": [65535, 0], "me a beautiful bible a splendid elegant bible": [65535, 0], "a beautiful bible a splendid elegant bible to": [65535, 0], "beautiful bible a splendid elegant bible to keep": [65535, 0], "bible a splendid elegant bible to keep and": [65535, 0], "a splendid elegant bible to keep and have": [65535, 0], "splendid elegant bible to keep and have it": [65535, 0], "elegant bible to keep and have it all": [65535, 0], "bible to keep and have it all for": [65535, 0], "to keep and have it all for my": [65535, 0], "keep and have it all for my own": [65535, 0], "and have it all for my own always": [65535, 0], "have it all for my own always it's": [65535, 0], "it all for my own always it's all": [65535, 0], "all for my own always it's all owing": [65535, 0], "for my own always it's all owing to": [65535, 0], "my own always it's all owing to right": [65535, 0], "own always it's all owing to right bringing": [65535, 0], "always it's all owing to right bringing up": [65535, 0], "it's all owing to right bringing up that": [65535, 0], "all owing to right bringing up that is": [65535, 0], "owing to right bringing up that is what": [65535, 0], "to right bringing up that is what you": [65535, 0], "right bringing up that is what you will": [65535, 0], "bringing up that is what you will say": [65535, 0], "up that is what you will say thomas": [65535, 0], "that is what you will say thomas and": [65535, 0], "is what you will say thomas and you": [65535, 0], "what you will say thomas and you wouldn't": [65535, 0], "you will say thomas and you wouldn't take": [65535, 0], "will say thomas and you wouldn't take any": [65535, 0], "say thomas and you wouldn't take any money": [65535, 0], "thomas and you wouldn't take any money for": [65535, 0], "and you wouldn't take any money for those": [65535, 0], "you wouldn't take any money for those two": [65535, 0], "wouldn't take any money for those two thousand": [65535, 0], "take any money for those two thousand verses": [65535, 0], "any money for those two thousand verses no": [65535, 0], "money for those two thousand verses no indeed": [65535, 0], "for those two thousand verses no indeed you": [65535, 0], "those two thousand verses no indeed you wouldn't": [65535, 0], "two thousand verses no indeed you wouldn't and": [65535, 0], "thousand verses no indeed you wouldn't and now": [65535, 0], "verses no indeed you wouldn't and now you": [65535, 0], "no indeed you wouldn't and now you wouldn't": [65535, 0], "indeed you wouldn't and now you wouldn't mind": [65535, 0], "you wouldn't and now you wouldn't mind telling": [65535, 0], "wouldn't and now you wouldn't mind telling me": [65535, 0], "and now you wouldn't mind telling me and": [65535, 0], "now you wouldn't mind telling me and this": [65535, 0], "you wouldn't mind telling me and this lady": [65535, 0], "wouldn't mind telling me and this lady some": [65535, 0], "mind telling me and this lady some of": [65535, 0], "telling me and this lady some of the": [65535, 0], "me and this lady some of the things": [65535, 0], "and this lady some of the things you've": [65535, 0], "this lady some of the things you've learned": [65535, 0], "lady some of the things you've learned no": [65535, 0], "some of the things you've learned no i": [65535, 0], "of the things you've learned no i know": [65535, 0], "the things you've learned no i know you": [65535, 0], "things you've learned no i know you wouldn't": [65535, 0], "you've learned no i know you wouldn't for": [65535, 0], "learned no i know you wouldn't for we": [65535, 0], "no i know you wouldn't for we are": [65535, 0], "i know you wouldn't for we are proud": [65535, 0], "know you wouldn't for we are proud of": [65535, 0], "you wouldn't for we are proud of little": [65535, 0], "wouldn't for we are proud of little boys": [65535, 0], "for we are proud of little boys that": [65535, 0], "we are proud of little boys that learn": [65535, 0], "are proud of little boys that learn now": [65535, 0], "proud of little boys that learn now no": [65535, 0], "of little boys that learn now no doubt": [65535, 0], "little boys that learn now no doubt you": [65535, 0], "boys that learn now no doubt you know": [65535, 0], "that learn now no doubt you know the": [65535, 0], "learn now no doubt you know the names": [65535, 0], "now no doubt you know the names of": [65535, 0], "no doubt you know the names of all": [65535, 0], "doubt you know the names of all the": [65535, 0], "you know the names of all the twelve": [65535, 0], "know the names of all the twelve disciples": [65535, 0], "the names of all the twelve disciples won't": [65535, 0], "names of all the twelve disciples won't you": [65535, 0], "of all the twelve disciples won't you tell": [65535, 0], "all the twelve disciples won't you tell us": [65535, 0], "the twelve disciples won't you tell us the": [65535, 0], "twelve disciples won't you tell us the names": [65535, 0], "disciples won't you tell us the names of": [65535, 0], "won't you tell us the names of the": [65535, 0], "you tell us the names of the first": [65535, 0], "tell us the names of the first two": [65535, 0], "us the names of the first two that": [65535, 0], "the names of the first two that were": [65535, 0], "names of the first two that were appointed": [65535, 0], "of the first two that were appointed tom": [65535, 0], "the first two that were appointed tom was": [65535, 0], "first two that were appointed tom was tugging": [65535, 0], "two that were appointed tom was tugging at": [65535, 0], "that were appointed tom was tugging at a": [65535, 0], "were appointed tom was tugging at a button": [65535, 0], "appointed tom was tugging at a button hole": [65535, 0], "tom was tugging at a button hole and": [65535, 0], "was tugging at a button hole and looking": [65535, 0], "tugging at a button hole and looking sheepish": [65535, 0], "at a button hole and looking sheepish he": [65535, 0], "a button hole and looking sheepish he blushed": [65535, 0], "button hole and looking sheepish he blushed now": [65535, 0], "hole and looking sheepish he blushed now and": [65535, 0], "and looking sheepish he blushed now and his": [65535, 0], "looking sheepish he blushed now and his eyes": [65535, 0], "sheepish he blushed now and his eyes fell": [65535, 0], "he blushed now and his eyes fell mr": [65535, 0], "blushed now and his eyes fell mr walters'": [65535, 0], "now and his eyes fell mr walters' heart": [65535, 0], "and his eyes fell mr walters' heart sank": [65535, 0], "his eyes fell mr walters' heart sank within": [65535, 0], "eyes fell mr walters' heart sank within him": [65535, 0], "fell mr walters' heart sank within him he": [65535, 0], "mr walters' heart sank within him he said": [65535, 0], "walters' heart sank within him he said to": [65535, 0], "heart sank within him he said to himself": [65535, 0], "sank within him he said to himself it": [65535, 0], "within him he said to himself it is": [65535, 0], "him he said to himself it is not": [65535, 0], "he said to himself it is not possible": [65535, 0], "said to himself it is not possible that": [65535, 0], "to himself it is not possible that the": [65535, 0], "himself it is not possible that the boy": [65535, 0], "it is not possible that the boy can": [65535, 0], "is not possible that the boy can answer": [65535, 0], "not possible that the boy can answer the": [65535, 0], "possible that the boy can answer the simplest": [65535, 0], "that the boy can answer the simplest question": [65535, 0], "the boy can answer the simplest question why": [65535, 0], "boy can answer the simplest question why did": [65535, 0], "can answer the simplest question why did the": [65535, 0], "answer the simplest question why did the judge": [65535, 0], "the simplest question why did the judge ask": [65535, 0], "simplest question why did the judge ask him": [65535, 0], "question why did the judge ask him yet": [65535, 0], "why did the judge ask him yet he": [65535, 0], "did the judge ask him yet he felt": [65535, 0], "the judge ask him yet he felt obliged": [65535, 0], "judge ask him yet he felt obliged to": [65535, 0], "ask him yet he felt obliged to speak": [65535, 0], "him yet he felt obliged to speak up": [65535, 0], "yet he felt obliged to speak up and": [65535, 0], "he felt obliged to speak up and say": [65535, 0], "felt obliged to speak up and say answer": [65535, 0], "obliged to speak up and say answer the": [65535, 0], "to speak up and say answer the gentleman": [65535, 0], "speak up and say answer the gentleman thomas": [65535, 0], "up and say answer the gentleman thomas don't": [65535, 0], "and say answer the gentleman thomas don't be": [65535, 0], "say answer the gentleman thomas don't be afraid": [65535, 0], "answer the gentleman thomas don't be afraid tom": [65535, 0], "the gentleman thomas don't be afraid tom still": [65535, 0], "gentleman thomas don't be afraid tom still hung": [65535, 0], "thomas don't be afraid tom still hung fire": [65535, 0], "don't be afraid tom still hung fire now": [65535, 0], "be afraid tom still hung fire now i": [65535, 0], "afraid tom still hung fire now i know": [65535, 0], "tom still hung fire now i know you'll": [65535, 0], "still hung fire now i know you'll tell": [65535, 0], "hung fire now i know you'll tell me": [65535, 0], "fire now i know you'll tell me said": [65535, 0], "now i know you'll tell me said the": [65535, 0], "i know you'll tell me said the lady": [65535, 0], "know you'll tell me said the lady the": [65535, 0], "you'll tell me said the lady the names": [65535, 0], "tell me said the lady the names of": [65535, 0], "me said the lady the names of the": [65535, 0], "said the lady the names of the first": [65535, 0], "the lady the names of the first two": [65535, 0], "lady the names of the first two disciples": [65535, 0], "the names of the first two disciples were": [65535, 0], "names of the first two disciples were david": [65535, 0], "of the first two disciples were david and": [65535, 0], "the first two disciples were david and goliath": [65535, 0], "first two disciples were david and goliath let": [65535, 0], "two disciples were david and goliath let us": [65535, 0], "disciples were david and goliath let us draw": [65535, 0], "were david and goliath let us draw the": [65535, 0], "david and goliath let us draw the curtain": [65535, 0], "and goliath let us draw the curtain of": [65535, 0], "goliath let us draw the curtain of charity": [65535, 0], "let us draw the curtain of charity over": [65535, 0], "us draw the curtain of charity over the": [65535, 0], "draw the curtain of charity over the rest": [65535, 0], "the curtain of charity over the rest of": [65535, 0], "curtain of charity over the rest of the": [65535, 0], "of charity over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world and beamed": [65535, 0], "sun rose upon a tranquil world and beamed down": [65535, 0], "rose upon a tranquil world and beamed down upon": [65535, 0], "upon a tranquil world and beamed down upon the": [65535, 0], "a tranquil world and beamed down upon the peaceful": [65535, 0], "tranquil world and beamed down upon the peaceful village": [65535, 0], "world and beamed down upon the peaceful village like": [65535, 0], "and beamed down upon the peaceful village like a": [65535, 0], "beamed down upon the peaceful village like a benediction": [65535, 0], "down upon the peaceful village like a benediction breakfast": [65535, 0], "upon the peaceful village like a benediction breakfast over": [65535, 0], "the peaceful village like a benediction breakfast over aunt": [65535, 0], "peaceful village like a benediction breakfast over aunt polly": [65535, 0], "village like a benediction breakfast over aunt polly had": [65535, 0], "like a benediction breakfast over aunt polly had family": [65535, 0], "a benediction breakfast over aunt polly had family worship": [65535, 0], "benediction breakfast over aunt polly had family worship it": [65535, 0], "breakfast over aunt polly had family worship it began": [65535, 0], "over aunt polly had family worship it began with": [65535, 0], "aunt polly had family worship it began with a": [65535, 0], "polly had family worship it began with a prayer": [65535, 0], "had family worship it began with a prayer built": [65535, 0], "family worship it began with a prayer built from": [65535, 0], "worship it began with a prayer built from the": [65535, 0], "it began with a prayer built from the ground": [65535, 0], "began with a prayer built from the ground up": [65535, 0], "with a prayer built from the ground up of": [65535, 0], "a prayer built from the ground up of solid": [65535, 0], "prayer built from the ground up of solid courses": [65535, 0], "built from the ground up of solid courses of": [65535, 0], "from the ground up of solid courses of scriptural": [65535, 0], "the ground up of solid courses of scriptural quotations": [65535, 0], "ground up of solid courses of scriptural quotations welded": [65535, 0], "up of solid courses of scriptural quotations welded together": [65535, 0], "of solid courses of scriptural quotations welded together with": [65535, 0], "solid courses of scriptural quotations welded together with a": [65535, 0], "courses of scriptural quotations welded together with a thin": [65535, 0], "of scriptural quotations welded together with a thin mortar": [65535, 0], "scriptural quotations welded together with a thin mortar of": [65535, 0], "quotations welded together with a thin mortar of originality": [65535, 0], "welded together with a thin mortar of originality and": [65535, 0], "together with a thin mortar of originality and from": [65535, 0], "with a thin mortar of originality and from the": [65535, 0], "a thin mortar of originality and from the summit": [65535, 0], "thin mortar of originality and from the summit of": [65535, 0], "mortar of originality and from the summit of this": [65535, 0], "of originality and from the summit of this she": [65535, 0], "originality and from the summit of this she delivered": [65535, 0], "and from the summit of this she delivered a": [65535, 0], "from the summit of this she delivered a grim": [65535, 0], "the summit of this she delivered a grim chapter": [65535, 0], "summit of this she delivered a grim chapter of": [65535, 0], "of this she delivered a grim chapter of the": [65535, 0], "this she delivered a grim chapter of the mosaic": [65535, 0], "she delivered a grim chapter of the mosaic law": [65535, 0], "delivered a grim chapter of the mosaic law as": [65535, 0], "a grim chapter of the mosaic law as from": [65535, 0], "grim chapter of the mosaic law as from sinai": [65535, 0], "chapter of the mosaic law as from sinai then": [65535, 0], "of the mosaic law as from sinai then tom": [65535, 0], "the mosaic law as from sinai then tom girded": [65535, 0], "mosaic law as from sinai then tom girded up": [65535, 0], "law as from sinai then tom girded up his": [65535, 0], "as from sinai then tom girded up his loins": [65535, 0], "from sinai then tom girded up his loins so": [65535, 0], "sinai then tom girded up his loins so to": [65535, 0], "then tom girded up his loins so to speak": [65535, 0], "tom girded up his loins so to speak and": [65535, 0], "girded up his loins so to speak and went": [65535, 0], "up his loins so to speak and went to": [65535, 0], "his loins so to speak and went to work": [65535, 0], "loins so to speak and went to work to": [65535, 0], "so to speak and went to work to get": [65535, 0], "to speak and went to work to get his": [65535, 0], "speak and went to work to get his verses": [65535, 0], "and went to work to get his verses sid": [65535, 0], "went to work to get his verses sid had": [65535, 0], "to work to get his verses sid had learned": [65535, 0], "work to get his verses sid had learned his": [65535, 0], "to get his verses sid had learned his lesson": [65535, 0], "get his verses sid had learned his lesson days": [65535, 0], "his verses sid had learned his lesson days before": [65535, 0], "verses sid had learned his lesson days before tom": [65535, 0], "sid had learned his lesson days before tom bent": [65535, 0], "had learned his lesson days before tom bent all": [65535, 0], "learned his lesson days before tom bent all his": [65535, 0], "his lesson days before tom bent all his energies": [65535, 0], "lesson days before tom bent all his energies to": [65535, 0], "days before tom bent all his energies to the": [65535, 0], "before tom bent all his energies to the memorizing": [65535, 0], "tom bent all his energies to the memorizing of": [65535, 0], "bent all his energies to the memorizing of five": [65535, 0], "all his energies to the memorizing of five verses": [65535, 0], "his energies to the memorizing of five verses and": [65535, 0], "energies to the memorizing of five verses and he": [65535, 0], "to the memorizing of five verses and he chose": [65535, 0], "the memorizing of five verses and he chose part": [65535, 0], "memorizing of five verses and he chose part of": [65535, 0], "of five verses and he chose part of the": [65535, 0], "five verses and he chose part of the sermon": [65535, 0], "verses and he chose part of the sermon on": [65535, 0], "and he chose part of the sermon on the": [65535, 0], "he chose part of the sermon on the mount": [65535, 0], "chose part of the sermon on the mount because": [65535, 0], "part of the sermon on the mount because he": [65535, 0], "of the sermon on the mount because he could": [65535, 0], "the sermon on the mount because he could find": [65535, 0], "sermon on the mount because he could find no": [65535, 0], "on the mount because he could find no verses": [65535, 0], "the mount because he could find no verses that": [65535, 0], "mount because he could find no verses that were": [65535, 0], "because he could find no verses that were shorter": [65535, 0], "he could find no verses that were shorter at": [65535, 0], "could find no verses that were shorter at the": [65535, 0], "find no verses that were shorter at the end": [65535, 0], "no verses that were shorter at the end of": [65535, 0], "verses that were shorter at the end of half": [65535, 0], "that were shorter at the end of half an": [65535, 0], "were shorter at the end of half an hour": [65535, 0], "shorter at the end of half an hour tom": [65535, 0], "at the end of half an hour tom had": [65535, 0], "the end of half an hour tom had a": [65535, 0], "end of half an hour tom had a vague": [65535, 0], "of half an hour tom had a vague general": [65535, 0], "half an hour tom had a vague general idea": [65535, 0], "an hour tom had a vague general idea of": [65535, 0], "hour tom had a vague general idea of his": [65535, 0], "tom had a vague general idea of his lesson": [65535, 0], "had a vague general idea of his lesson but": [65535, 0], "a vague general idea of his lesson but no": [65535, 0], "vague general idea of his lesson but no more": [65535, 0], "general idea of his lesson but no more for": [65535, 0], "idea of his lesson but no more for his": [65535, 0], "of his lesson but no more for his mind": [65535, 0], "his lesson but no more for his mind was": [65535, 0], "lesson but no more for his mind was traversing": [65535, 0], "but no more for his mind was traversing the": [65535, 0], "no more for his mind was traversing the whole": [65535, 0], "more for his mind was traversing the whole field": [65535, 0], "for his mind was traversing the whole field of": [65535, 0], "his mind was traversing the whole field of human": [65535, 0], "mind was traversing the whole field of human thought": [65535, 0], "was traversing the whole field of human thought and": [65535, 0], "traversing the whole field of human thought and his": [65535, 0], "the whole field of human thought and his hands": [65535, 0], "whole field of human thought and his hands were": [65535, 0], "field of human thought and his hands were busy": [65535, 0], "of human thought and his hands were busy with": [65535, 0], "human thought and his hands were busy with distracting": [65535, 0], "thought and his hands were busy with distracting recreations": [65535, 0], "and his hands were busy with distracting recreations mary": [65535, 0], "his hands were busy with distracting recreations mary took": [65535, 0], "hands were busy with distracting recreations mary took his": [65535, 0], "were busy with distracting recreations mary took his book": [65535, 0], "busy with distracting recreations mary took his book to": [65535, 0], "with distracting recreations mary took his book to hear": [65535, 0], "distracting recreations mary took his book to hear him": [65535, 0], "recreations mary took his book to hear him recite": [65535, 0], "mary took his book to hear him recite and": [65535, 0], "took his book to hear him recite and he": [65535, 0], "his book to hear him recite and he tried": [65535, 0], "book to hear him recite and he tried to": [65535, 0], "to hear him recite and he tried to find": [65535, 0], "hear him recite and he tried to find his": [65535, 0], "him recite and he tried to find his way": [65535, 0], "recite and he tried to find his way through": [65535, 0], "and he tried to find his way through the": [65535, 0], "he tried to find his way through the fog": [65535, 0], "tried to find his way through the fog blessed": [65535, 0], "to find his way through the fog blessed are": [65535, 0], "find his way through the fog blessed are the": [65535, 0], "his way through the fog blessed are the a": [65535, 0], "way through the fog blessed are the a a": [65535, 0], "through the fog blessed are the a a poor": [65535, 0], "the fog blessed are the a a poor yes": [65535, 0], "fog blessed are the a a poor yes poor": [65535, 0], "blessed are the a a poor yes poor blessed": [65535, 0], "are the a a poor yes poor blessed are": [65535, 0], "the a a poor yes poor blessed are the": [65535, 0], "a a poor yes poor blessed are the poor": [65535, 0], "a poor yes poor blessed are the poor a": [65535, 0], "poor yes poor blessed are the poor a a": [65535, 0], "yes poor blessed are the poor a a in": [65535, 0], "poor blessed are the poor a a in spirit": [65535, 0], "blessed are the poor a a in spirit in": [65535, 0], "are the poor a a in spirit in spirit": [65535, 0], "the poor a a in spirit in spirit blessed": [65535, 0], "poor a a in spirit in spirit blessed are": [65535, 0], "a a in spirit in spirit blessed are the": [65535, 0], "a in spirit in spirit blessed are the poor": [65535, 0], "in spirit in spirit blessed are the poor in": [65535, 0], "spirit in spirit blessed are the poor in spirit": [65535, 0], "in spirit blessed are the poor in spirit for": [65535, 0], "spirit blessed are the poor in spirit for they": [65535, 0], "blessed are the poor in spirit for they they": [65535, 0], "are the poor in spirit for they they theirs": [65535, 0], "the poor in spirit for they they theirs for": [65535, 0], "poor in spirit for they they theirs for theirs": [65535, 0], "in spirit for they they theirs for theirs blessed": [65535, 0], "spirit for they they theirs for theirs blessed are": [65535, 0], "for they they theirs for theirs blessed are the": [65535, 0], "they they theirs for theirs blessed are the poor": [65535, 0], "they theirs for theirs blessed are the poor in": [65535, 0], "theirs for theirs blessed are the poor in spirit": [65535, 0], "for theirs blessed are the poor in spirit for": [65535, 0], "theirs blessed are the poor in spirit for theirs": [65535, 0], "blessed are the poor in spirit for theirs is": [65535, 0], "are the poor in spirit for theirs is the": [65535, 0], "the poor in spirit for theirs is the kingdom": [65535, 0], "poor in spirit for theirs is the kingdom of": [65535, 0], "in spirit for theirs is the kingdom of heaven": [65535, 0], "spirit for theirs is the kingdom of heaven blessed": [65535, 0], "for theirs is the kingdom of heaven blessed are": [65535, 0], "theirs is the kingdom of heaven blessed are they": [65535, 0], "is the kingdom of heaven blessed are they that": [65535, 0], "the kingdom of heaven blessed are they that mourn": [65535, 0], "kingdom of heaven blessed are they that mourn for": [65535, 0], "of heaven blessed are they that mourn for they": [65535, 0], "heaven blessed are they that mourn for they they": [65535, 0], "blessed are they that mourn for they they sh": [65535, 0], "are they that mourn for they they sh for": [65535, 0], "they that mourn for they they sh for they": [65535, 0], "that mourn for they they sh for they a": [65535, 0], "mourn for they they sh for they a s": [65535, 0], "for they they sh for they a s h": [65535, 0], "they they sh for they a s h a": [65535, 0], "they sh for they a s h a for": [65535, 0], "sh for they a s h a for they": [65535, 0], "for they a s h a for they s": [65535, 0], "they a s h a for they s h": [65535, 0], "a s h a for they s h oh": [65535, 0], "s h a for they s h oh i": [65535, 0], "h a for they s h oh i don't": [65535, 0], "a for they s h oh i don't know": [65535, 0], "for they s h oh i don't know what": [65535, 0], "they s h oh i don't know what it": [65535, 0], "s h oh i don't know what it is": [65535, 0], "h oh i don't know what it is shall": [65535, 0], "oh i don't know what it is shall oh": [65535, 0], "i don't know what it is shall oh shall": [65535, 0], "don't know what it is shall oh shall for": [65535, 0], "know what it is shall oh shall for they": [65535, 0], "what it is shall oh shall for they shall": [65535, 0], "it is shall oh shall for they shall for": [65535, 0], "is shall oh shall for they shall for they": [65535, 0], "shall oh shall for they shall for they shall": [65535, 0], "oh shall for they shall for they shall a": [65535, 0], "shall for they shall for they shall a a": [65535, 0], "for they shall for they shall a a shall": [65535, 0], "they shall for they shall a a shall mourn": [65535, 0], "shall for they shall a a shall mourn a": [65535, 0], "for they shall a a shall mourn a a": [65535, 0], "they shall a a shall mourn a a blessed": [65535, 0], "shall a a shall mourn a a blessed are": [65535, 0], "a a shall mourn a a blessed are they": [65535, 0], "a shall mourn a a blessed are they that": [65535, 0], "shall mourn a a blessed are they that shall": [65535, 0], "mourn a a blessed are they that shall they": [65535, 0], "a a blessed are they that shall they that": [65535, 0], "a blessed are they that shall they that a": [65535, 0], "blessed are they that shall they that a they": [65535, 0], "are they that shall they that a they that": [65535, 0], "they that shall they that a they that shall": [65535, 0], "that shall they that a they that shall mourn": [65535, 0], "shall they that a they that shall mourn for": [65535, 0], "they that a they that shall mourn for they": [65535, 0], "that a they that shall mourn for they shall": [65535, 0], "a they that shall mourn for they shall a": [65535, 0], "they that shall mourn for they shall a shall": [65535, 0], "that shall mourn for they shall a shall what": [65535, 0], "shall mourn for they shall a shall what why": [65535, 0], "mourn for they shall a shall what why don't": [65535, 0], "for they shall a shall what why don't you": [65535, 0], "they shall a shall what why don't you tell": [65535, 0], "shall a shall what why don't you tell me": [65535, 0], "a shall what why don't you tell me mary": [65535, 0], "shall what why don't you tell me mary what": [65535, 0], "what why don't you tell me mary what do": [65535, 0], "why don't you tell me mary what do you": [65535, 0], "don't you tell me mary what do you want": [65535, 0], "you tell me mary what do you want to": [65535, 0], "tell me mary what do you want to be": [65535, 0], "me mary what do you want to be so": [65535, 0], "mary what do you want to be so mean": [65535, 0], "what do you want to be so mean for": [65535, 0], "do you want to be so mean for oh": [65535, 0], "you want to be so mean for oh tom": [65535, 0], "want to be so mean for oh tom you": [65535, 0], "to be so mean for oh tom you poor": [65535, 0], "be so mean for oh tom you poor thick": [65535, 0], "so mean for oh tom you poor thick headed": [65535, 0], "mean for oh tom you poor thick headed thing": [65535, 0], "for oh tom you poor thick headed thing i'm": [65535, 0], "oh tom you poor thick headed thing i'm not": [65535, 0], "tom you poor thick headed thing i'm not teasing": [65535, 0], "you poor thick headed thing i'm not teasing you": [65535, 0], "poor thick headed thing i'm not teasing you i": [65535, 0], "thick headed thing i'm not teasing you i wouldn't": [65535, 0], "headed thing i'm not teasing you i wouldn't do": [65535, 0], "thing i'm not teasing you i wouldn't do that": [65535, 0], "i'm not teasing you i wouldn't do that you": [65535, 0], "not teasing you i wouldn't do that you must": [65535, 0], "teasing you i wouldn't do that you must go": [65535, 0], "you i wouldn't do that you must go and": [65535, 0], "i wouldn't do that you must go and learn": [65535, 0], "wouldn't do that you must go and learn it": [65535, 0], "do that you must go and learn it again": [65535, 0], "that you must go and learn it again don't": [65535, 0], "you must go and learn it again don't you": [65535, 0], "must go and learn it again don't you be": [65535, 0], "go and learn it again don't you be discouraged": [65535, 0], "and learn it again don't you be discouraged tom": [65535, 0], "learn it again don't you be discouraged tom you'll": [65535, 0], "it again don't you be discouraged tom you'll manage": [65535, 0], "again don't you be discouraged tom you'll manage it": [65535, 0], "don't you be discouraged tom you'll manage it and": [65535, 0], "you be discouraged tom you'll manage it and if": [65535, 0], "be discouraged tom you'll manage it and if you": [65535, 0], "discouraged tom you'll manage it and if you do": [65535, 0], "tom you'll manage it and if you do i'll": [65535, 0], "you'll manage it and if you do i'll give": [65535, 0], "manage it and if you do i'll give you": [65535, 0], "it and if you do i'll give you something": [65535, 0], "and if you do i'll give you something ever": [65535, 0], "if you do i'll give you something ever so": [65535, 0], "you do i'll give you something ever so nice": [65535, 0], "do i'll give you something ever so nice there": [65535, 0], "i'll give you something ever so nice there now": [65535, 0], "give you something ever so nice there now that's": [65535, 0], "you something ever so nice there now that's a": [65535, 0], "something ever so nice there now that's a good": [65535, 0], "ever so nice there now that's a good boy": [65535, 0], "so nice there now that's a good boy all": [65535, 0], "nice there now that's a good boy all right": [65535, 0], "there now that's a good boy all right what": [65535, 0], "now that's a good boy all right what is": [65535, 0], "that's a good boy all right what is it": [65535, 0], "a good boy all right what is it mary": [65535, 0], "good boy all right what is it mary tell": [65535, 0], "boy all right what is it mary tell me": [65535, 0], "all right what is it mary tell me what": [65535, 0], "right what is it mary tell me what it": [65535, 0], "what is it mary tell me what it is": [65535, 0], "is it mary tell me what it is never": [65535, 0], "it mary tell me what it is never you": [65535, 0], "mary tell me what it is never you mind": [65535, 0], "tell me what it is never you mind tom": [65535, 0], "me what it is never you mind tom you": [65535, 0], "what it is never you mind tom you know": [65535, 0], "it is never you mind tom you know if": [65535, 0], "is never you mind tom you know if i": [65535, 0], "never you mind tom you know if i say": [65535, 0], "you mind tom you know if i say it's": [65535, 0], "mind tom you know if i say it's nice": [65535, 0], "tom you know if i say it's nice it": [65535, 0], "you know if i say it's nice it is": [65535, 0], "know if i say it's nice it is nice": [65535, 0], "if i say it's nice it is nice you": [65535, 0], "i say it's nice it is nice you bet": [65535, 0], "say it's nice it is nice you bet you": [65535, 0], "it's nice it is nice you bet you that's": [65535, 0], "nice it is nice you bet you that's so": [65535, 0], "it is nice you bet you that's so mary": [65535, 0], "is nice you bet you that's so mary all": [65535, 0], "nice you bet you that's so mary all right": [65535, 0], "you bet you that's so mary all right i'll": [65535, 0], "bet you that's so mary all right i'll tackle": [65535, 0], "you that's so mary all right i'll tackle it": [65535, 0], "that's so mary all right i'll tackle it again": [65535, 0], "so mary all right i'll tackle it again and": [65535, 0], "mary all right i'll tackle it again and he": [65535, 0], "all right i'll tackle it again and he did": [65535, 0], "right i'll tackle it again and he did tackle": [65535, 0], "i'll tackle it again and he did tackle it": [65535, 0], "tackle it again and he did tackle it again": [65535, 0], "it again and he did tackle it again and": [65535, 0], "again and he did tackle it again and under": [65535, 0], "and he did tackle it again and under the": [65535, 0], "he did tackle it again and under the double": [65535, 0], "did tackle it again and under the double pressure": [65535, 0], "tackle it again and under the double pressure of": [65535, 0], "it again and under the double pressure of curiosity": [65535, 0], "again and under the double pressure of curiosity and": [65535, 0], "and under the double pressure of curiosity and prospective": [65535, 0], "under the double pressure of curiosity and prospective gain": [65535, 0], "the double pressure of curiosity and prospective gain he": [65535, 0], "double pressure of curiosity and prospective gain he did": [65535, 0], "pressure of curiosity and prospective gain he did it": [65535, 0], "of curiosity and prospective gain he did it with": [65535, 0], "curiosity and prospective gain he did it with such": [65535, 0], "and prospective gain he did it with such spirit": [65535, 0], "prospective gain he did it with such spirit that": [65535, 0], "gain he did it with such spirit that he": [65535, 0], "he did it with such spirit that he accomplished": [65535, 0], "did it with such spirit that he accomplished a": [65535, 0], "it with such spirit that he accomplished a shining": [65535, 0], "with such spirit that he accomplished a shining success": [65535, 0], "such spirit that he accomplished a shining success mary": [65535, 0], "spirit that he accomplished a shining success mary gave": [65535, 0], "that he accomplished a shining success mary gave him": [65535, 0], "he accomplished a shining success mary gave him a": [65535, 0], "accomplished a shining success mary gave him a brand": [65535, 0], "a shining success mary gave him a brand new": [65535, 0], "shining success mary gave him a brand new barlow": [65535, 0], "success mary gave him a brand new barlow knife": [65535, 0], "mary gave him a brand new barlow knife worth": [65535, 0], "gave him a brand new barlow knife worth twelve": [65535, 0], "him a brand new barlow knife worth twelve and": [65535, 0], "a brand new barlow knife worth twelve and a": [65535, 0], "brand new barlow knife worth twelve and a half": [65535, 0], "new barlow knife worth twelve and a half cents": [65535, 0], "barlow knife worth twelve and a half cents and": [65535, 0], "knife worth twelve and a half cents and the": [65535, 0], "worth twelve and a half cents and the convulsion": [65535, 0], "twelve and a half cents and the convulsion of": [65535, 0], "and a half cents and the convulsion of delight": [65535, 0], "a half cents and the convulsion of delight that": [65535, 0], "half cents and the convulsion of delight that swept": [65535, 0], "cents and the convulsion of delight that swept his": [65535, 0], "and the convulsion of delight that swept his system": [65535, 0], "the convulsion of delight that swept his system shook": [65535, 0], "convulsion of delight that swept his system shook him": [65535, 0], "of delight that swept his system shook him to": [65535, 0], "delight that swept his system shook him to his": [65535, 0], "that swept his system shook him to his foundations": [65535, 0], "swept his system shook him to his foundations true": [65535, 0], "his system shook him to his foundations true the": [65535, 0], "system shook him to his foundations true the knife": [65535, 0], "shook him to his foundations true the knife would": [65535, 0], "him to his foundations true the knife would not": [65535, 0], "to his foundations true the knife would not cut": [65535, 0], "his foundations true the knife would not cut anything": [65535, 0], "foundations true the knife would not cut anything but": [65535, 0], "true the knife would not cut anything but it": [65535, 0], "the knife would not cut anything but it was": [65535, 0], "knife would not cut anything but it was a": [65535, 0], "would not cut anything but it was a sure": [65535, 0], "not cut anything but it was a sure enough": [65535, 0], "cut anything but it was a sure enough barlow": [65535, 0], "anything but it was a sure enough barlow and": [65535, 0], "but it was a sure enough barlow and there": [65535, 0], "it was a sure enough barlow and there was": [65535, 0], "was a sure enough barlow and there was inconceivable": [65535, 0], "a sure enough barlow and there was inconceivable grandeur": [65535, 0], "sure enough barlow and there was inconceivable grandeur in": [65535, 0], "enough barlow and there was inconceivable grandeur in that": [65535, 0], "barlow and there was inconceivable grandeur in that though": [65535, 0], "and there was inconceivable grandeur in that though where": [65535, 0], "there was inconceivable grandeur in that though where the": [65535, 0], "was inconceivable grandeur in that though where the western": [65535, 0], "inconceivable grandeur in that though where the western boys": [65535, 0], "grandeur in that though where the western boys ever": [65535, 0], "in that though where the western boys ever got": [65535, 0], "that though where the western boys ever got the": [65535, 0], "though where the western boys ever got the idea": [65535, 0], "where the western boys ever got the idea that": [65535, 0], "the western boys ever got the idea that such": [65535, 0], "western boys ever got the idea that such a": [65535, 0], "boys ever got the idea that such a weapon": [65535, 0], "ever got the idea that such a weapon could": [65535, 0], "got the idea that such a weapon could possibly": [65535, 0], "the idea that such a weapon could possibly be": [65535, 0], "idea that such a weapon could possibly be counterfeited": [65535, 0], "that such a weapon could possibly be counterfeited to": [65535, 0], "such a weapon could possibly be counterfeited to its": [65535, 0], "a weapon could possibly be counterfeited to its injury": [65535, 0], "weapon could possibly be counterfeited to its injury is": [65535, 0], "could possibly be counterfeited to its injury is an": [65535, 0], "possibly be counterfeited to its injury is an imposing": [65535, 0], "be counterfeited to its injury is an imposing mystery": [65535, 0], "counterfeited to its injury is an imposing mystery and": [65535, 0], "to its injury is an imposing mystery and will": [65535, 0], "its injury is an imposing mystery and will always": [65535, 0], "injury is an imposing mystery and will always remain": [65535, 0], "is an imposing mystery and will always remain so": [65535, 0], "an imposing mystery and will always remain so perhaps": [65535, 0], "imposing mystery and will always remain so perhaps tom": [65535, 0], "mystery and will always remain so perhaps tom contrived": [65535, 0], "and will always remain so perhaps tom contrived to": [65535, 0], "will always remain so perhaps tom contrived to scarify": [65535, 0], "always remain so perhaps tom contrived to scarify the": [65535, 0], "remain so perhaps tom contrived to scarify the cupboard": [65535, 0], "so perhaps tom contrived to scarify the cupboard with": [65535, 0], "perhaps tom contrived to scarify the cupboard with it": [65535, 0], "tom contrived to scarify the cupboard with it and": [65535, 0], "contrived to scarify the cupboard with it and was": [65535, 0], "to scarify the cupboard with it and was arranging": [65535, 0], "scarify the cupboard with it and was arranging to": [65535, 0], "the cupboard with it and was arranging to begin": [65535, 0], "cupboard with it and was arranging to begin on": [65535, 0], "with it and was arranging to begin on the": [65535, 0], "it and was arranging to begin on the bureau": [65535, 0], "and was arranging to begin on the bureau when": [65535, 0], "was arranging to begin on the bureau when he": [65535, 0], "arranging to begin on the bureau when he was": [65535, 0], "to begin on the bureau when he was called": [65535, 0], "begin on the bureau when he was called off": [65535, 0], "on the bureau when he was called off to": [65535, 0], "the bureau when he was called off to dress": [65535, 0], "bureau when he was called off to dress for": [65535, 0], "when he was called off to dress for sunday": [65535, 0], "he was called off to dress for sunday school": [65535, 0], "was called off to dress for sunday school mary": [65535, 0], "called off to dress for sunday school mary gave": [65535, 0], "off to dress for sunday school mary gave him": [65535, 0], "to dress for sunday school mary gave him a": [65535, 0], "dress for sunday school mary gave him a tin": [65535, 0], "for sunday school mary gave him a tin basin": [65535, 0], "sunday school mary gave him a tin basin of": [65535, 0], "school mary gave him a tin basin of water": [65535, 0], "mary gave him a tin basin of water and": [65535, 0], "gave him a tin basin of water and a": [65535, 0], "him a tin basin of water and a piece": [65535, 0], "a tin basin of water and a piece of": [65535, 0], "tin basin of water and a piece of soap": [65535, 0], "basin of water and a piece of soap and": [65535, 0], "of water and a piece of soap and he": [65535, 0], "water and a piece of soap and he went": [65535, 0], "and a piece of soap and he went outside": [65535, 0], "a piece of soap and he went outside the": [65535, 0], "piece of soap and he went outside the door": [65535, 0], "of soap and he went outside the door and": [65535, 0], "soap and he went outside the door and set": [65535, 0], "and he went outside the door and set the": [65535, 0], "he went outside the door and set the basin": [65535, 0], "went outside the door and set the basin on": [65535, 0], "outside the door and set the basin on a": [65535, 0], "the door and set the basin on a little": [65535, 0], "door and set the basin on a little bench": [65535, 0], "and set the basin on a little bench there": [65535, 0], "set the basin on a little bench there then": [65535, 0], "the basin on a little bench there then he": [65535, 0], "basin on a little bench there then he dipped": [65535, 0], "on a little bench there then he dipped the": [65535, 0], "a little bench there then he dipped the soap": [65535, 0], "little bench there then he dipped the soap in": [65535, 0], "bench there then he dipped the soap in the": [65535, 0], "there then he dipped the soap in the water": [65535, 0], "then he dipped the soap in the water and": [65535, 0], "he dipped the soap in the water and laid": [65535, 0], "dipped the soap in the water and laid it": [65535, 0], "the soap in the water and laid it down": [65535, 0], "soap in the water and laid it down turned": [65535, 0], "in the water and laid it down turned up": [65535, 0], "the water and laid it down turned up his": [65535, 0], "water and laid it down turned up his sleeves": [65535, 0], "and laid it down turned up his sleeves poured": [65535, 0], "laid it down turned up his sleeves poured out": [65535, 0], "it down turned up his sleeves poured out the": [65535, 0], "down turned up his sleeves poured out the water": [65535, 0], "turned up his sleeves poured out the water on": [65535, 0], "up his sleeves poured out the water on the": [65535, 0], "his sleeves poured out the water on the ground": [65535, 0], "sleeves poured out the water on the ground gently": [65535, 0], "poured out the water on the ground gently and": [65535, 0], "out the water on the ground gently and then": [65535, 0], "the water on the ground gently and then entered": [65535, 0], "water on the ground gently and then entered the": [65535, 0], "on the ground gently and then entered the kitchen": [65535, 0], "the ground gently and then entered the kitchen and": [65535, 0], "ground gently and then entered the kitchen and began": [65535, 0], "gently and then entered the kitchen and began to": [65535, 0], "and then entered the kitchen and began to wipe": [65535, 0], "then entered the kitchen and began to wipe his": [65535, 0], "entered the kitchen and began to wipe his face": [65535, 0], "the kitchen and began to wipe his face diligently": [65535, 0], "kitchen and began to wipe his face diligently on": [65535, 0], "and began to wipe his face diligently on the": [65535, 0], "began to wipe his face diligently on the towel": [65535, 0], "to wipe his face diligently on the towel behind": [65535, 0], "wipe his face diligently on the towel behind the": [65535, 0], "his face diligently on the towel behind the door": [65535, 0], "face diligently on the towel behind the door but": [65535, 0], "diligently on the towel behind the door but mary": [65535, 0], "on the towel behind the door but mary removed": [65535, 0], "the towel behind the door but mary removed the": [65535, 0], "towel behind the door but mary removed the towel": [65535, 0], "behind the door but mary removed the towel and": [65535, 0], "the door but mary removed the towel and said": [65535, 0], "door but mary removed the towel and said now": [65535, 0], "but mary removed the towel and said now ain't": [65535, 0], "mary removed the towel and said now ain't you": [65535, 0], "removed the towel and said now ain't you ashamed": [65535, 0], "the towel and said now ain't you ashamed tom": [65535, 0], "towel and said now ain't you ashamed tom you": [65535, 0], "and said now ain't you ashamed tom you mustn't": [65535, 0], "said now ain't you ashamed tom you mustn't be": [65535, 0], "now ain't you ashamed tom you mustn't be so": [65535, 0], "ain't you ashamed tom you mustn't be so bad": [65535, 0], "you ashamed tom you mustn't be so bad water": [65535, 0], "ashamed tom you mustn't be so bad water won't": [65535, 0], "tom you mustn't be so bad water won't hurt": [65535, 0], "you mustn't be so bad water won't hurt you": [65535, 0], "mustn't be so bad water won't hurt you tom": [65535, 0], "be so bad water won't hurt you tom was": [65535, 0], "so bad water won't hurt you tom was a": [65535, 0], "bad water won't hurt you tom was a trifle": [65535, 0], "water won't hurt you tom was a trifle disconcerted": [65535, 0], "won't hurt you tom was a trifle disconcerted the": [65535, 0], "hurt you tom was a trifle disconcerted the basin": [65535, 0], "you tom was a trifle disconcerted the basin was": [65535, 0], "tom was a trifle disconcerted the basin was refilled": [65535, 0], "was a trifle disconcerted the basin was refilled and": [65535, 0], "a trifle disconcerted the basin was refilled and this": [65535, 0], "trifle disconcerted the basin was refilled and this time": [65535, 0], "disconcerted the basin was refilled and this time he": [65535, 0], "the basin was refilled and this time he stood": [65535, 0], "basin was refilled and this time he stood over": [65535, 0], "was refilled and this time he stood over it": [65535, 0], "refilled and this time he stood over it a": [65535, 0], "and this time he stood over it a little": [65535, 0], "this time he stood over it a little while": [65535, 0], "time he stood over it a little while gathering": [65535, 0], "he stood over it a little while gathering resolution": [65535, 0], "stood over it a little while gathering resolution took": [65535, 0], "over it a little while gathering resolution took in": [65535, 0], "it a little while gathering resolution took in a": [65535, 0], "a little while gathering resolution took in a big": [65535, 0], "little while gathering resolution took in a big breath": [65535, 0], "while gathering resolution took in a big breath and": [65535, 0], "gathering resolution took in a big breath and began": [65535, 0], "resolution took in a big breath and began when": [65535, 0], "took in a big breath and began when he": [65535, 0], "in a big breath and began when he entered": [65535, 0], "a big breath and began when he entered the": [65535, 0], "big breath and began when he entered the kitchen": [65535, 0], "breath and began when he entered the kitchen presently": [65535, 0], "and began when he entered the kitchen presently with": [65535, 0], "began when he entered the kitchen presently with both": [65535, 0], "when he entered the kitchen presently with both eyes": [65535, 0], "he entered the kitchen presently with both eyes shut": [65535, 0], "entered the kitchen presently with both eyes shut and": [65535, 0], "the kitchen presently with both eyes shut and groping": [65535, 0], "kitchen presently with both eyes shut and groping for": [65535, 0], "presently with both eyes shut and groping for the": [65535, 0], "with both eyes shut and groping for the towel": [65535, 0], "both eyes shut and groping for the towel with": [65535, 0], "eyes shut and groping for the towel with his": [65535, 0], "shut and groping for the towel with his hands": [65535, 0], "and groping for the towel with his hands an": [65535, 0], "groping for the towel with his hands an honorable": [65535, 0], "for the towel with his hands an honorable testimony": [65535, 0], "the towel with his hands an honorable testimony of": [65535, 0], "towel with his hands an honorable testimony of suds": [65535, 0], "with his hands an honorable testimony of suds and": [65535, 0], "his hands an honorable testimony of suds and water": [65535, 0], "hands an honorable testimony of suds and water was": [65535, 0], "an honorable testimony of suds and water was dripping": [65535, 0], "honorable testimony of suds and water was dripping from": [65535, 0], "testimony of suds and water was dripping from his": [65535, 0], "of suds and water was dripping from his face": [65535, 0], "suds and water was dripping from his face but": [65535, 0], "and water was dripping from his face but when": [65535, 0], "water was dripping from his face but when he": [65535, 0], "was dripping from his face but when he emerged": [65535, 0], "dripping from his face but when he emerged from": [65535, 0], "from his face but when he emerged from the": [65535, 0], "his face but when he emerged from the towel": [65535, 0], "face but when he emerged from the towel he": [65535, 0], "but when he emerged from the towel he was": [65535, 0], "when he emerged from the towel he was not": [65535, 0], "he emerged from the towel he was not yet": [65535, 0], "emerged from the towel he was not yet satisfactory": [65535, 0], "from the towel he was not yet satisfactory for": [65535, 0], "the towel he was not yet satisfactory for the": [65535, 0], "towel he was not yet satisfactory for the clean": [65535, 0], "he was not yet satisfactory for the clean territory": [65535, 0], "was not yet satisfactory for the clean territory stopped": [65535, 0], "not yet satisfactory for the clean territory stopped short": [65535, 0], "yet satisfactory for the clean territory stopped short at": [65535, 0], "satisfactory for the clean territory stopped short at his": [65535, 0], "for the clean territory stopped short at his chin": [65535, 0], "the clean territory stopped short at his chin and": [65535, 0], "clean territory stopped short at his chin and his": [65535, 0], "territory stopped short at his chin and his jaws": [65535, 0], "stopped short at his chin and his jaws like": [65535, 0], "short at his chin and his jaws like a": [65535, 0], "at his chin and his jaws like a mask": [65535, 0], "his chin and his jaws like a mask below": [65535, 0], "chin and his jaws like a mask below and": [65535, 0], "and his jaws like a mask below and beyond": [65535, 0], "his jaws like a mask below and beyond this": [65535, 0], "jaws like a mask below and beyond this line": [65535, 0], "like a mask below and beyond this line there": [65535, 0], "a mask below and beyond this line there was": [65535, 0], "mask below and beyond this line there was a": [65535, 0], "below and beyond this line there was a dark": [65535, 0], "and beyond this line there was a dark expanse": [65535, 0], "beyond this line there was a dark expanse of": [65535, 0], "this line there was a dark expanse of unirrigated": [65535, 0], "line there was a dark expanse of unirrigated soil": [65535, 0], "there was a dark expanse of unirrigated soil that": [65535, 0], "was a dark expanse of unirrigated soil that spread": [65535, 0], "a dark expanse of unirrigated soil that spread downward": [65535, 0], "dark expanse of unirrigated soil that spread downward in": [65535, 0], "expanse of unirrigated soil that spread downward in front": [65535, 0], "of unirrigated soil that spread downward in front and": [65535, 0], "unirrigated soil that spread downward in front and backward": [65535, 0], "soil that spread downward in front and backward around": [65535, 0], "that spread downward in front and backward around his": [65535, 0], "spread downward in front and backward around his neck": [65535, 0], "downward in front and backward around his neck mary": [65535, 0], "in front and backward around his neck mary took": [65535, 0], "front and backward around his neck mary took him": [65535, 0], "and backward around his neck mary took him in": [65535, 0], "backward around his neck mary took him in hand": [65535, 0], "around his neck mary took him in hand and": [65535, 0], "his neck mary took him in hand and when": [65535, 0], "neck mary took him in hand and when she": [65535, 0], "mary took him in hand and when she was": [65535, 0], "took him in hand and when she was done": [65535, 0], "him in hand and when she was done with": [65535, 0], "in hand and when she was done with him": [65535, 0], "hand and when she was done with him he": [65535, 0], "and when she was done with him he was": [65535, 0], "when she was done with him he was a": [65535, 0], "she was done with him he was a man": [65535, 0], "was done with him he was a man and": [65535, 0], "done with him he was a man and a": [65535, 0], "with him he was a man and a brother": [65535, 0], "him he was a man and a brother without": [65535, 0], "he was a man and a brother without distinction": [65535, 0], "was a man and a brother without distinction of": [65535, 0], "a man and a brother without distinction of color": [65535, 0], "man and a brother without distinction of color and": [65535, 0], "and a brother without distinction of color and his": [65535, 0], "a brother without distinction of color and his saturated": [65535, 0], "brother without distinction of color and his saturated hair": [65535, 0], "without distinction of color and his saturated hair was": [65535, 0], "distinction of color and his saturated hair was neatly": [65535, 0], "of color and his saturated hair was neatly brushed": [65535, 0], "color and his saturated hair was neatly brushed and": [65535, 0], "and his saturated hair was neatly brushed and its": [65535, 0], "his saturated hair was neatly brushed and its short": [65535, 0], "saturated hair was neatly brushed and its short curls": [65535, 0], "hair was neatly brushed and its short curls wrought": [65535, 0], "was neatly brushed and its short curls wrought into": [65535, 0], "neatly brushed and its short curls wrought into a": [65535, 0], "brushed and its short curls wrought into a dainty": [65535, 0], "and its short curls wrought into a dainty and": [65535, 0], "its short curls wrought into a dainty and symmetrical": [65535, 0], "short curls wrought into a dainty and symmetrical general": [65535, 0], "curls wrought into a dainty and symmetrical general effect": [65535, 0], "wrought into a dainty and symmetrical general effect he": [65535, 0], "into a dainty and symmetrical general effect he privately": [65535, 0], "a dainty and symmetrical general effect he privately smoothed": [65535, 0], "dainty and symmetrical general effect he privately smoothed out": [65535, 0], "and symmetrical general effect he privately smoothed out the": [65535, 0], "symmetrical general effect he privately smoothed out the curls": [65535, 0], "general effect he privately smoothed out the curls with": [65535, 0], "effect he privately smoothed out the curls with labor": [65535, 0], "he privately smoothed out the curls with labor and": [65535, 0], "privately smoothed out the curls with labor and difficulty": [65535, 0], "smoothed out the curls with labor and difficulty and": [65535, 0], "out the curls with labor and difficulty and plastered": [65535, 0], "the curls with labor and difficulty and plastered his": [65535, 0], "curls with labor and difficulty and plastered his hair": [65535, 0], "with labor and difficulty and plastered his hair close": [65535, 0], "labor and difficulty and plastered his hair close down": [65535, 0], "and difficulty and plastered his hair close down to": [65535, 0], "difficulty and plastered his hair close down to his": [65535, 0], "and plastered his hair close down to his head": [65535, 0], "plastered his hair close down to his head for": [65535, 0], "his hair close down to his head for he": [65535, 0], "hair close down to his head for he held": [65535, 0], "close down to his head for he held curls": [65535, 0], "down to his head for he held curls to": [65535, 0], "to his head for he held curls to be": [65535, 0], "his head for he held curls to be effeminate": [65535, 0], "head for he held curls to be effeminate and": [65535, 0], "for he held curls to be effeminate and his": [65535, 0], "he held curls to be effeminate and his own": [65535, 0], "held curls to be effeminate and his own filled": [65535, 0], "curls to be effeminate and his own filled his": [65535, 0], "to be effeminate and his own filled his life": [65535, 0], "be effeminate and his own filled his life with": [65535, 0], "effeminate and his own filled his life with bitterness": [65535, 0], "and his own filled his life with bitterness then": [65535, 0], "his own filled his life with bitterness then mary": [65535, 0], "own filled his life with bitterness then mary got": [65535, 0], "filled his life with bitterness then mary got out": [65535, 0], "his life with bitterness then mary got out a": [65535, 0], "life with bitterness then mary got out a suit": [65535, 0], "with bitterness then mary got out a suit of": [65535, 0], "bitterness then mary got out a suit of his": [65535, 0], "then mary got out a suit of his clothing": [65535, 0], "mary got out a suit of his clothing that": [65535, 0], "got out a suit of his clothing that had": [65535, 0], "out a suit of his clothing that had been": [65535, 0], "a suit of his clothing that had been used": [65535, 0], "suit of his clothing that had been used only": [65535, 0], "of his clothing that had been used only on": [65535, 0], "his clothing that had been used only on sundays": [65535, 0], "clothing that had been used only on sundays during": [65535, 0], "that had been used only on sundays during two": [65535, 0], "had been used only on sundays during two years": [65535, 0], "been used only on sundays during two years they": [65535, 0], "used only on sundays during two years they were": [65535, 0], "only on sundays during two years they were simply": [65535, 0], "on sundays during two years they were simply called": [65535, 0], "sundays during two years they were simply called his": [65535, 0], "during two years they were simply called his other": [65535, 0], "two years they were simply called his other clothes": [65535, 0], "years they were simply called his other clothes and": [65535, 0], "they were simply called his other clothes and so": [65535, 0], "were simply called his other clothes and so by": [65535, 0], "simply called his other clothes and so by that": [65535, 0], "called his other clothes and so by that we": [65535, 0], "his other clothes and so by that we know": [65535, 0], "other clothes and so by that we know the": [65535, 0], "clothes and so by that we know the size": [65535, 0], "and so by that we know the size of": [65535, 0], "so by that we know the size of his": [65535, 0], "by that we know the size of his wardrobe": [65535, 0], "that we know the size of his wardrobe the": [65535, 0], "we know the size of his wardrobe the girl": [65535, 0], "know the size of his wardrobe the girl put": [65535, 0], "the size of his wardrobe the girl put him": [65535, 0], "size of his wardrobe the girl put him to": [65535, 0], "of his wardrobe the girl put him to rights": [65535, 0], "his wardrobe the girl put him to rights after": [65535, 0], "wardrobe the girl put him to rights after he": [65535, 0], "the girl put him to rights after he had": [65535, 0], "girl put him to rights after he had dressed": [65535, 0], "put him to rights after he had dressed himself": [65535, 0], "him to rights after he had dressed himself she": [65535, 0], "to rights after he had dressed himself she buttoned": [65535, 0], "rights after he had dressed himself she buttoned his": [65535, 0], "after he had dressed himself she buttoned his neat": [65535, 0], "he had dressed himself she buttoned his neat roundabout": [65535, 0], "had dressed himself she buttoned his neat roundabout up": [65535, 0], "dressed himself she buttoned his neat roundabout up to": [65535, 0], "himself she buttoned his neat roundabout up to his": [65535, 0], "she buttoned his neat roundabout up to his chin": [65535, 0], "buttoned his neat roundabout up to his chin turned": [65535, 0], "his neat roundabout up to his chin turned his": [65535, 0], "neat roundabout up to his chin turned his vast": [65535, 0], "roundabout up to his chin turned his vast shirt": [65535, 0], "up to his chin turned his vast shirt collar": [65535, 0], "to his chin turned his vast shirt collar down": [65535, 0], "his chin turned his vast shirt collar down over": [65535, 0], "chin turned his vast shirt collar down over his": [65535, 0], "turned his vast shirt collar down over his shoulders": [65535, 0], "his vast shirt collar down over his shoulders brushed": [65535, 0], "vast shirt collar down over his shoulders brushed him": [65535, 0], "shirt collar down over his shoulders brushed him off": [65535, 0], "collar down over his shoulders brushed him off and": [65535, 0], "down over his shoulders brushed him off and crowned": [65535, 0], "over his shoulders brushed him off and crowned him": [65535, 0], "his shoulders brushed him off and crowned him with": [65535, 0], "shoulders brushed him off and crowned him with his": [65535, 0], "brushed him off and crowned him with his speckled": [65535, 0], "him off and crowned him with his speckled straw": [65535, 0], "off and crowned him with his speckled straw hat": [65535, 0], "and crowned him with his speckled straw hat he": [65535, 0], "crowned him with his speckled straw hat he now": [65535, 0], "him with his speckled straw hat he now looked": [65535, 0], "with his speckled straw hat he now looked exceedingly": [65535, 0], "his speckled straw hat he now looked exceedingly improved": [65535, 0], "speckled straw hat he now looked exceedingly improved and": [65535, 0], "straw hat he now looked exceedingly improved and uncomfortable": [65535, 0], "hat he now looked exceedingly improved and uncomfortable he": [65535, 0], "he now looked exceedingly improved and uncomfortable he was": [65535, 0], "now looked exceedingly improved and uncomfortable he was fully": [65535, 0], "looked exceedingly improved and uncomfortable he was fully as": [65535, 0], "exceedingly improved and uncomfortable he was fully as uncomfortable": [65535, 0], "improved and uncomfortable he was fully as uncomfortable as": [65535, 0], "and uncomfortable he was fully as uncomfortable as he": [65535, 0], "uncomfortable he was fully as uncomfortable as he looked": [65535, 0], "he was fully as uncomfortable as he looked for": [65535, 0], "was fully as uncomfortable as he looked for there": [65535, 0], "fully as uncomfortable as he looked for there was": [65535, 0], "as uncomfortable as he looked for there was a": [65535, 0], "uncomfortable as he looked for there was a restraint": [65535, 0], "as he looked for there was a restraint about": [65535, 0], "he looked for there was a restraint about whole": [65535, 0], "looked for there was a restraint about whole clothes": [65535, 0], "for there was a restraint about whole clothes and": [65535, 0], "there was a restraint about whole clothes and cleanliness": [65535, 0], "was a restraint about whole clothes and cleanliness that": [65535, 0], "a restraint about whole clothes and cleanliness that galled": [65535, 0], "restraint about whole clothes and cleanliness that galled him": [65535, 0], "about whole clothes and cleanliness that galled him he": [65535, 0], "whole clothes and cleanliness that galled him he hoped": [65535, 0], "clothes and cleanliness that galled him he hoped that": [65535, 0], "and cleanliness that galled him he hoped that mary": [65535, 0], "cleanliness that galled him he hoped that mary would": [65535, 0], "that galled him he hoped that mary would forget": [65535, 0], "galled him he hoped that mary would forget his": [65535, 0], "him he hoped that mary would forget his shoes": [65535, 0], "he hoped that mary would forget his shoes but": [65535, 0], "hoped that mary would forget his shoes but the": [65535, 0], "that mary would forget his shoes but the hope": [65535, 0], "mary would forget his shoes but the hope was": [65535, 0], "would forget his shoes but the hope was blighted": [65535, 0], "forget his shoes but the hope was blighted she": [65535, 0], "his shoes but the hope was blighted she coated": [65535, 0], "shoes but the hope was blighted she coated them": [65535, 0], "but the hope was blighted she coated them thoroughly": [65535, 0], "the hope was blighted she coated them thoroughly with": [65535, 0], "hope was blighted she coated them thoroughly with tallow": [65535, 0], "was blighted she coated them thoroughly with tallow as": [65535, 0], "blighted she coated them thoroughly with tallow as was": [65535, 0], "she coated them thoroughly with tallow as was the": [65535, 0], "coated them thoroughly with tallow as was the custom": [65535, 0], "them thoroughly with tallow as was the custom and": [65535, 0], "thoroughly with tallow as was the custom and brought": [65535, 0], "with tallow as was the custom and brought them": [65535, 0], "tallow as was the custom and brought them out": [65535, 0], "as was the custom and brought them out he": [65535, 0], "was the custom and brought them out he lost": [65535, 0], "the custom and brought them out he lost his": [65535, 0], "custom and brought them out he lost his temper": [65535, 0], "and brought them out he lost his temper and": [65535, 0], "brought them out he lost his temper and said": [65535, 0], "them out he lost his temper and said he": [65535, 0], "out he lost his temper and said he was": [65535, 0], "he lost his temper and said he was always": [65535, 0], "lost his temper and said he was always being": [65535, 0], "his temper and said he was always being made": [65535, 0], "temper and said he was always being made to": [65535, 0], "and said he was always being made to do": [65535, 0], "said he was always being made to do everything": [65535, 0], "he was always being made to do everything he": [65535, 0], "was always being made to do everything he didn't": [65535, 0], "always being made to do everything he didn't want": [65535, 0], "being made to do everything he didn't want to": [65535, 0], "made to do everything he didn't want to do": [65535, 0], "to do everything he didn't want to do but": [65535, 0], "do everything he didn't want to do but mary": [65535, 0], "everything he didn't want to do but mary said": [65535, 0], "he didn't want to do but mary said persuasively": [65535, 0], "didn't want to do but mary said persuasively please": [65535, 0], "want to do but mary said persuasively please tom": [65535, 0], "to do but mary said persuasively please tom that's": [65535, 0], "do but mary said persuasively please tom that's a": [65535, 0], "but mary said persuasively please tom that's a good": [65535, 0], "mary said persuasively please tom that's a good boy": [65535, 0], "said persuasively please tom that's a good boy so": [65535, 0], "persuasively please tom that's a good boy so he": [65535, 0], "please tom that's a good boy so he got": [65535, 0], "tom that's a good boy so he got into": [65535, 0], "that's a good boy so he got into the": [65535, 0], "a good boy so he got into the shoes": [65535, 0], "good boy so he got into the shoes snarling": [65535, 0], "boy so he got into the shoes snarling mary": [65535, 0], "so he got into the shoes snarling mary was": [65535, 0], "he got into the shoes snarling mary was soon": [65535, 0], "got into the shoes snarling mary was soon ready": [65535, 0], "into the shoes snarling mary was soon ready and": [65535, 0], "the shoes snarling mary was soon ready and the": [65535, 0], "shoes snarling mary was soon ready and the three": [65535, 0], "snarling mary was soon ready and the three children": [65535, 0], "mary was soon ready and the three children set": [65535, 0], "was soon ready and the three children set out": [65535, 0], "soon ready and the three children set out for": [65535, 0], "ready and the three children set out for sunday": [65535, 0], "and the three children set out for sunday school": [65535, 0], "the three children set out for sunday school a": [65535, 0], "three children set out for sunday school a place": [65535, 0], "children set out for sunday school a place that": [65535, 0], "set out for sunday school a place that tom": [65535, 0], "out for sunday school a place that tom hated": [65535, 0], "for sunday school a place that tom hated with": [65535, 0], "sunday school a place that tom hated with his": [65535, 0], "school a place that tom hated with his whole": [65535, 0], "a place that tom hated with his whole heart": [65535, 0], "place that tom hated with his whole heart but": [65535, 0], "that tom hated with his whole heart but sid": [65535, 0], "tom hated with his whole heart but sid and": [65535, 0], "hated with his whole heart but sid and mary": [65535, 0], "with his whole heart but sid and mary were": [65535, 0], "his whole heart but sid and mary were fond": [65535, 0], "whole heart but sid and mary were fond of": [65535, 0], "heart but sid and mary were fond of it": [65535, 0], "but sid and mary were fond of it sabbath": [65535, 0], "sid and mary were fond of it sabbath school": [65535, 0], "and mary were fond of it sabbath school hours": [65535, 0], "mary were fond of it sabbath school hours were": [65535, 0], "were fond of it sabbath school hours were from": [65535, 0], "fond of it sabbath school hours were from nine": [65535, 0], "of it sabbath school hours were from nine to": [65535, 0], "it sabbath school hours were from nine to half": [65535, 0], "sabbath school hours were from nine to half past": [65535, 0], "school hours were from nine to half past ten": [65535, 0], "hours were from nine to half past ten and": [65535, 0], "were from nine to half past ten and then": [65535, 0], "from nine to half past ten and then church": [65535, 0], "nine to half past ten and then church service": [65535, 0], "to half past ten and then church service two": [65535, 0], "half past ten and then church service two of": [65535, 0], "past ten and then church service two of the": [65535, 0], "ten and then church service two of the children": [65535, 0], "and then church service two of the children always": [65535, 0], "then church service two of the children always remained": [65535, 0], "church service two of the children always remained for": [65535, 0], "service two of the children always remained for the": [65535, 0], "two of the children always remained for the sermon": [65535, 0], "of the children always remained for the sermon voluntarily": [65535, 0], "the children always remained for the sermon voluntarily and": [65535, 0], "children always remained for the sermon voluntarily and the": [65535, 0], "always remained for the sermon voluntarily and the other": [65535, 0], "remained for the sermon voluntarily and the other always": [65535, 0], "for the sermon voluntarily and the other always remained": [65535, 0], "the sermon voluntarily and the other always remained too": [65535, 0], "sermon voluntarily and the other always remained too for": [65535, 0], "voluntarily and the other always remained too for stronger": [65535, 0], "and the other always remained too for stronger reasons": [65535, 0], "the other always remained too for stronger reasons the": [65535, 0], "other always remained too for stronger reasons the church's": [65535, 0], "always remained too for stronger reasons the church's high": [65535, 0], "remained too for stronger reasons the church's high backed": [65535, 0], "too for stronger reasons the church's high backed uncushioned": [65535, 0], "for stronger reasons the church's high backed uncushioned pews": [65535, 0], "stronger reasons the church's high backed uncushioned pews would": [65535, 0], "reasons the church's high backed uncushioned pews would seat": [65535, 0], "the church's high backed uncushioned pews would seat about": [65535, 0], "church's high backed uncushioned pews would seat about three": [65535, 0], "high backed uncushioned pews would seat about three hundred": [65535, 0], "backed uncushioned pews would seat about three hundred persons": [65535, 0], "uncushioned pews would seat about three hundred persons the": [65535, 0], "pews would seat about three hundred persons the edifice": [65535, 0], "would seat about three hundred persons the edifice was": [65535, 0], "seat about three hundred persons the edifice was but": [65535, 0], "about three hundred persons the edifice was but a": [65535, 0], "three hundred persons the edifice was but a small": [65535, 0], "hundred persons the edifice was but a small plain": [65535, 0], "persons the edifice was but a small plain affair": [65535, 0], "the edifice was but a small plain affair with": [65535, 0], "edifice was but a small plain affair with a": [65535, 0], "was but a small plain affair with a sort": [65535, 0], "but a small plain affair with a sort of": [65535, 0], "a small plain affair with a sort of pine": [65535, 0], "small plain affair with a sort of pine board": [65535, 0], "plain affair with a sort of pine board tree": [65535, 0], "affair with a sort of pine board tree box": [65535, 0], "with a sort of pine board tree box on": [65535, 0], "a sort of pine board tree box on top": [65535, 0], "sort of pine board tree box on top of": [65535, 0], "of pine board tree box on top of it": [65535, 0], "pine board tree box on top of it for": [65535, 0], "board tree box on top of it for a": [65535, 0], "tree box on top of it for a steeple": [65535, 0], "box on top of it for a steeple at": [65535, 0], "on top of it for a steeple at the": [65535, 0], "top of it for a steeple at the door": [65535, 0], "of it for a steeple at the door tom": [65535, 0], "it for a steeple at the door tom dropped": [65535, 0], "for a steeple at the door tom dropped back": [65535, 0], "a steeple at the door tom dropped back a": [65535, 0], "steeple at the door tom dropped back a step": [65535, 0], "at the door tom dropped back a step and": [65535, 0], "the door tom dropped back a step and accosted": [65535, 0], "door tom dropped back a step and accosted a": [65535, 0], "tom dropped back a step and accosted a sunday": [65535, 0], "dropped back a step and accosted a sunday dressed": [65535, 0], "back a step and accosted a sunday dressed comrade": [65535, 0], "a step and accosted a sunday dressed comrade say": [65535, 0], "step and accosted a sunday dressed comrade say billy": [65535, 0], "and accosted a sunday dressed comrade say billy got": [65535, 0], "accosted a sunday dressed comrade say billy got a": [65535, 0], "a sunday dressed comrade say billy got a yaller": [65535, 0], "sunday dressed comrade say billy got a yaller ticket": [65535, 0], "dressed comrade say billy got a yaller ticket yes": [65535, 0], "comrade say billy got a yaller ticket yes what'll": [65535, 0], "say billy got a yaller ticket yes what'll you": [65535, 0], "billy got a yaller ticket yes what'll you take": [65535, 0], "got a yaller ticket yes what'll you take for": [65535, 0], "a yaller ticket yes what'll you take for her": [65535, 0], "yaller ticket yes what'll you take for her what'll": [65535, 0], "ticket yes what'll you take for her what'll you": [65535, 0], "yes what'll you take for her what'll you give": [65535, 0], "what'll you take for her what'll you give piece": [65535, 0], "you take for her what'll you give piece of": [65535, 0], "take for her what'll you give piece of lickrish": [65535, 0], "for her what'll you give piece of lickrish and": [65535, 0], "her what'll you give piece of lickrish and a": [65535, 0], "what'll you give piece of lickrish and a fish": [65535, 0], "you give piece of lickrish and a fish hook": [65535, 0], "give piece of lickrish and a fish hook less": [65535, 0], "piece of lickrish and a fish hook less see": [65535, 0], "of lickrish and a fish hook less see 'em": [65535, 0], "lickrish and a fish hook less see 'em tom": [65535, 0], "and a fish hook less see 'em tom exhibited": [65535, 0], "a fish hook less see 'em tom exhibited they": [65535, 0], "fish hook less see 'em tom exhibited they were": [65535, 0], "hook less see 'em tom exhibited they were satisfactory": [65535, 0], "less see 'em tom exhibited they were satisfactory and": [65535, 0], "see 'em tom exhibited they were satisfactory and the": [65535, 0], "'em tom exhibited they were satisfactory and the property": [65535, 0], "tom exhibited they were satisfactory and the property changed": [65535, 0], "exhibited they were satisfactory and the property changed hands": [65535, 0], "they were satisfactory and the property changed hands then": [65535, 0], "were satisfactory and the property changed hands then tom": [65535, 0], "satisfactory and the property changed hands then tom traded": [65535, 0], "and the property changed hands then tom traded a": [65535, 0], "the property changed hands then tom traded a couple": [65535, 0], "property changed hands then tom traded a couple of": [65535, 0], "changed hands then tom traded a couple of white": [65535, 0], "hands then tom traded a couple of white alleys": [65535, 0], "then tom traded a couple of white alleys for": [65535, 0], "tom traded a couple of white alleys for three": [65535, 0], "traded a couple of white alleys for three red": [65535, 0], "a couple of white alleys for three red tickets": [65535, 0], "couple of white alleys for three red tickets and": [65535, 0], "of white alleys for three red tickets and some": [65535, 0], "white alleys for three red tickets and some small": [65535, 0], "alleys for three red tickets and some small trifle": [65535, 0], "for three red tickets and some small trifle or": [65535, 0], "three red tickets and some small trifle or other": [65535, 0], "red tickets and some small trifle or other for": [65535, 0], "tickets and some small trifle or other for a": [65535, 0], "and some small trifle or other for a couple": [65535, 0], "some small trifle or other for a couple of": [65535, 0], "small trifle or other for a couple of blue": [65535, 0], "trifle or other for a couple of blue ones": [65535, 0], "or other for a couple of blue ones he": [65535, 0], "other for a couple of blue ones he waylaid": [65535, 0], "for a couple of blue ones he waylaid other": [65535, 0], "a couple of blue ones he waylaid other boys": [65535, 0], "couple of blue ones he waylaid other boys as": [65535, 0], "of blue ones he waylaid other boys as they": [65535, 0], "blue ones he waylaid other boys as they came": [65535, 0], "ones he waylaid other boys as they came and": [65535, 0], "he waylaid other boys as they came and went": [65535, 0], "waylaid other boys as they came and went on": [65535, 0], "other boys as they came and went on buying": [65535, 0], "boys as they came and went on buying tickets": [65535, 0], "as they came and went on buying tickets of": [65535, 0], "they came and went on buying tickets of various": [65535, 0], "came and went on buying tickets of various colors": [65535, 0], "and went on buying tickets of various colors ten": [65535, 0], "went on buying tickets of various colors ten or": [65535, 0], "on buying tickets of various colors ten or fifteen": [65535, 0], "buying tickets of various colors ten or fifteen minutes": [65535, 0], "tickets of various colors ten or fifteen minutes longer": [65535, 0], "of various colors ten or fifteen minutes longer he": [65535, 0], "various colors ten or fifteen minutes longer he entered": [65535, 0], "colors ten or fifteen minutes longer he entered the": [65535, 0], "ten or fifteen minutes longer he entered the church": [65535, 0], "or fifteen minutes longer he entered the church now": [65535, 0], "fifteen minutes longer he entered the church now with": [65535, 0], "minutes longer he entered the church now with a": [65535, 0], "longer he entered the church now with a swarm": [65535, 0], "he entered the church now with a swarm of": [65535, 0], "entered the church now with a swarm of clean": [65535, 0], "the church now with a swarm of clean and": [65535, 0], "church now with a swarm of clean and noisy": [65535, 0], "now with a swarm of clean and noisy boys": [65535, 0], "with a swarm of clean and noisy boys and": [65535, 0], "a swarm of clean and noisy boys and girls": [65535, 0], "swarm of clean and noisy boys and girls proceeded": [65535, 0], "of clean and noisy boys and girls proceeded to": [65535, 0], "clean and noisy boys and girls proceeded to his": [65535, 0], "and noisy boys and girls proceeded to his seat": [65535, 0], "noisy boys and girls proceeded to his seat and": [65535, 0], "boys and girls proceeded to his seat and started": [65535, 0], "and girls proceeded to his seat and started a": [65535, 0], "girls proceeded to his seat and started a quarrel": [65535, 0], "proceeded to his seat and started a quarrel with": [65535, 0], "to his seat and started a quarrel with the": [65535, 0], "his seat and started a quarrel with the first": [65535, 0], "seat and started a quarrel with the first boy": [65535, 0], "and started a quarrel with the first boy that": [65535, 0], "started a quarrel with the first boy that came": [65535, 0], "a quarrel with the first boy that came handy": [65535, 0], "quarrel with the first boy that came handy the": [65535, 0], "with the first boy that came handy the teacher": [65535, 0], "the first boy that came handy the teacher a": [65535, 0], "first boy that came handy the teacher a grave": [65535, 0], "boy that came handy the teacher a grave elderly": [65535, 0], "that came handy the teacher a grave elderly man": [65535, 0], "came handy the teacher a grave elderly man interfered": [65535, 0], "handy the teacher a grave elderly man interfered then": [65535, 0], "the teacher a grave elderly man interfered then turned": [65535, 0], "teacher a grave elderly man interfered then turned his": [65535, 0], "a grave elderly man interfered then turned his back": [65535, 0], "grave elderly man interfered then turned his back a": [65535, 0], "elderly man interfered then turned his back a moment": [65535, 0], "man interfered then turned his back a moment and": [65535, 0], "interfered then turned his back a moment and tom": [65535, 0], "then turned his back a moment and tom pulled": [65535, 0], "turned his back a moment and tom pulled a": [65535, 0], "his back a moment and tom pulled a boy's": [65535, 0], "back a moment and tom pulled a boy's hair": [65535, 0], "a moment and tom pulled a boy's hair in": [65535, 0], "moment and tom pulled a boy's hair in the": [65535, 0], "and tom pulled a boy's hair in the next": [65535, 0], "tom pulled a boy's hair in the next bench": [65535, 0], "pulled a boy's hair in the next bench and": [65535, 0], "a boy's hair in the next bench and was": [65535, 0], "boy's hair in the next bench and was absorbed": [65535, 0], "hair in the next bench and was absorbed in": [65535, 0], "in the next bench and was absorbed in his": [65535, 0], "the next bench and was absorbed in his book": [65535, 0], "next bench and was absorbed in his book when": [65535, 0], "bench and was absorbed in his book when the": [65535, 0], "and was absorbed in his book when the boy": [65535, 0], "was absorbed in his book when the boy turned": [65535, 0], "absorbed in his book when the boy turned around": [65535, 0], "in his book when the boy turned around stuck": [65535, 0], "his book when the boy turned around stuck a": [65535, 0], "book when the boy turned around stuck a pin": [65535, 0], "when the boy turned around stuck a pin in": [65535, 0], "the boy turned around stuck a pin in another": [65535, 0], "boy turned around stuck a pin in another boy": [65535, 0], "turned around stuck a pin in another boy presently": [65535, 0], "around stuck a pin in another boy presently in": [65535, 0], "stuck a pin in another boy presently in order": [65535, 0], "a pin in another boy presently in order to": [65535, 0], "pin in another boy presently in order to hear": [65535, 0], "in another boy presently in order to hear him": [65535, 0], "another boy presently in order to hear him say": [65535, 0], "boy presently in order to hear him say ouch": [65535, 0], "presently in order to hear him say ouch and": [65535, 0], "in order to hear him say ouch and got": [65535, 0], "order to hear him say ouch and got a": [65535, 0], "to hear him say ouch and got a new": [65535, 0], "hear him say ouch and got a new reprimand": [65535, 0], "him say ouch and got a new reprimand from": [65535, 0], "say ouch and got a new reprimand from his": [65535, 0], "ouch and got a new reprimand from his teacher": [65535, 0], "and got a new reprimand from his teacher tom's": [65535, 0], "got a new reprimand from his teacher tom's whole": [65535, 0], "a new reprimand from his teacher tom's whole class": [65535, 0], "new reprimand from his teacher tom's whole class were": [65535, 0], "reprimand from his teacher tom's whole class were of": [65535, 0], "from his teacher tom's whole class were of a": [65535, 0], "his teacher tom's whole class were of a pattern": [65535, 0], "teacher tom's whole class were of a pattern restless": [65535, 0], "tom's whole class were of a pattern restless noisy": [65535, 0], "whole class were of a pattern restless noisy and": [65535, 0], "class were of a pattern restless noisy and troublesome": [65535, 0], "were of a pattern restless noisy and troublesome when": [65535, 0], "of a pattern restless noisy and troublesome when they": [65535, 0], "a pattern restless noisy and troublesome when they came": [65535, 0], "pattern restless noisy and troublesome when they came to": [65535, 0], "restless noisy and troublesome when they came to recite": [65535, 0], "noisy and troublesome when they came to recite their": [65535, 0], "and troublesome when they came to recite their lessons": [65535, 0], "troublesome when they came to recite their lessons not": [65535, 0], "when they came to recite their lessons not one": [65535, 0], "they came to recite their lessons not one of": [65535, 0], "came to recite their lessons not one of them": [65535, 0], "to recite their lessons not one of them knew": [65535, 0], "recite their lessons not one of them knew his": [65535, 0], "their lessons not one of them knew his verses": [65535, 0], "lessons not one of them knew his verses perfectly": [65535, 0], "not one of them knew his verses perfectly but": [65535, 0], "one of them knew his verses perfectly but had": [65535, 0], "of them knew his verses perfectly but had to": [65535, 0], "them knew his verses perfectly but had to be": [65535, 0], "knew his verses perfectly but had to be prompted": [65535, 0], "his verses perfectly but had to be prompted all": [65535, 0], "verses perfectly but had to be prompted all along": [65535, 0], "perfectly but had to be prompted all along however": [65535, 0], "but had to be prompted all along however they": [65535, 0], "had to be prompted all along however they worried": [65535, 0], "to be prompted all along however they worried through": [65535, 0], "be prompted all along however they worried through and": [65535, 0], "prompted all along however they worried through and each": [65535, 0], "all along however they worried through and each got": [65535, 0], "along however they worried through and each got his": [65535, 0], "however they worried through and each got his reward": [65535, 0], "they worried through and each got his reward in": [65535, 0], "worried through and each got his reward in small": [65535, 0], "through and each got his reward in small blue": [65535, 0], "and each got his reward in small blue tickets": [65535, 0], "each got his reward in small blue tickets each": [65535, 0], "got his reward in small blue tickets each with": [65535, 0], "his reward in small blue tickets each with a": [65535, 0], "reward in small blue tickets each with a passage": [65535, 0], "in small blue tickets each with a passage of": [65535, 0], "small blue tickets each with a passage of scripture": [65535, 0], "blue tickets each with a passage of scripture on": [65535, 0], "tickets each with a passage of scripture on it": [65535, 0], "each with a passage of scripture on it each": [65535, 0], "with a passage of scripture on it each blue": [65535, 0], "a passage of scripture on it each blue ticket": [65535, 0], "passage of scripture on it each blue ticket was": [65535, 0], "of scripture on it each blue ticket was pay": [65535, 0], "scripture on it each blue ticket was pay for": [65535, 0], "on it each blue ticket was pay for two": [65535, 0], "it each blue ticket was pay for two verses": [65535, 0], "each blue ticket was pay for two verses of": [65535, 0], "blue ticket was pay for two verses of the": [65535, 0], "ticket was pay for two verses of the recitation": [65535, 0], "was pay for two verses of the recitation ten": [65535, 0], "pay for two verses of the recitation ten blue": [65535, 0], "for two verses of the recitation ten blue tickets": [65535, 0], "two verses of the recitation ten blue tickets equalled": [65535, 0], "verses of the recitation ten blue tickets equalled a": [65535, 0], "of the recitation ten blue tickets equalled a red": [65535, 0], "the recitation ten blue tickets equalled a red one": [65535, 0], "recitation ten blue tickets equalled a red one and": [65535, 0], "ten blue tickets equalled a red one and could": [65535, 0], "blue tickets equalled a red one and could be": [65535, 0], "tickets equalled a red one and could be exchanged": [65535, 0], "equalled a red one and could be exchanged for": [65535, 0], "a red one and could be exchanged for it": [65535, 0], "red one and could be exchanged for it ten": [65535, 0], "one and could be exchanged for it ten red": [65535, 0], "and could be exchanged for it ten red tickets": [65535, 0], "could be exchanged for it ten red tickets equalled": [65535, 0], "be exchanged for it ten red tickets equalled a": [65535, 0], "exchanged for it ten red tickets equalled a yellow": [65535, 0], "for it ten red tickets equalled a yellow one": [65535, 0], "it ten red tickets equalled a yellow one for": [65535, 0], "ten red tickets equalled a yellow one for ten": [65535, 0], "red tickets equalled a yellow one for ten yellow": [65535, 0], "tickets equalled a yellow one for ten yellow tickets": [65535, 0], "equalled a yellow one for ten yellow tickets the": [65535, 0], "a yellow one for ten yellow tickets the superintendent": [65535, 0], "yellow one for ten yellow tickets the superintendent gave": [65535, 0], "one for ten yellow tickets the superintendent gave a": [65535, 0], "for ten yellow tickets the superintendent gave a very": [65535, 0], "ten yellow tickets the superintendent gave a very plainly": [65535, 0], "yellow tickets the superintendent gave a very plainly bound": [65535, 0], "tickets the superintendent gave a very plainly bound bible": [65535, 0], "the superintendent gave a very plainly bound bible worth": [65535, 0], "superintendent gave a very plainly bound bible worth forty": [65535, 0], "gave a very plainly bound bible worth forty cents": [65535, 0], "a very plainly bound bible worth forty cents in": [65535, 0], "very plainly bound bible worth forty cents in those": [65535, 0], "plainly bound bible worth forty cents in those easy": [65535, 0], "bound bible worth forty cents in those easy times": [65535, 0], "bible worth forty cents in those easy times to": [65535, 0], "worth forty cents in those easy times to the": [65535, 0], "forty cents in those easy times to the pupil": [65535, 0], "cents in those easy times to the pupil how": [65535, 0], "in those easy times to the pupil how many": [65535, 0], "those easy times to the pupil how many of": [65535, 0], "easy times to the pupil how many of my": [65535, 0], "times to the pupil how many of my readers": [65535, 0], "to the pupil how many of my readers would": [65535, 0], "the pupil how many of my readers would have": [65535, 0], "pupil how many of my readers would have the": [65535, 0], "how many of my readers would have the industry": [65535, 0], "many of my readers would have the industry and": [65535, 0], "of my readers would have the industry and application": [65535, 0], "my readers would have the industry and application to": [65535, 0], "readers would have the industry and application to memorize": [65535, 0], "would have the industry and application to memorize two": [65535, 0], "have the industry and application to memorize two thousand": [65535, 0], "the industry and application to memorize two thousand verses": [65535, 0], "industry and application to memorize two thousand verses even": [65535, 0], "and application to memorize two thousand verses even for": [65535, 0], "application to memorize two thousand verses even for a": [65535, 0], "to memorize two thousand verses even for a dore": [65535, 0], "memorize two thousand verses even for a dore bible": [65535, 0], "two thousand verses even for a dore bible and": [65535, 0], "thousand verses even for a dore bible and yet": [65535, 0], "verses even for a dore bible and yet mary": [65535, 0], "even for a dore bible and yet mary had": [65535, 0], "for a dore bible and yet mary had acquired": [65535, 0], "a dore bible and yet mary had acquired two": [65535, 0], "dore bible and yet mary had acquired two bibles": [65535, 0], "bible and yet mary had acquired two bibles in": [65535, 0], "and yet mary had acquired two bibles in this": [65535, 0], "yet mary had acquired two bibles in this way": [65535, 0], "mary had acquired two bibles in this way it": [65535, 0], "had acquired two bibles in this way it was": [65535, 0], "acquired two bibles in this way it was the": [65535, 0], "two bibles in this way it was the patient": [65535, 0], "bibles in this way it was the patient work": [65535, 0], "in this way it was the patient work of": [65535, 0], "this way it was the patient work of two": [65535, 0], "way it was the patient work of two years": [65535, 0], "it was the patient work of two years and": [65535, 0], "was the patient work of two years and a": [65535, 0], "the patient work of two years and a boy": [65535, 0], "patient work of two years and a boy of": [65535, 0], "work of two years and a boy of german": [65535, 0], "of two years and a boy of german parentage": [65535, 0], "two years and a boy of german parentage had": [65535, 0], "years and a boy of german parentage had won": [65535, 0], "and a boy of german parentage had won four": [65535, 0], "a boy of german parentage had won four or": [65535, 0], "boy of german parentage had won four or five": [65535, 0], "of german parentage had won four or five he": [65535, 0], "german parentage had won four or five he once": [65535, 0], "parentage had won four or five he once recited": [65535, 0], "had won four or five he once recited three": [65535, 0], "won four or five he once recited three thousand": [65535, 0], "four or five he once recited three thousand verses": [65535, 0], "or five he once recited three thousand verses without": [65535, 0], "five he once recited three thousand verses without stopping": [65535, 0], "he once recited three thousand verses without stopping but": [65535, 0], "once recited three thousand verses without stopping but the": [65535, 0], "recited three thousand verses without stopping but the strain": [65535, 0], "three thousand verses without stopping but the strain upon": [65535, 0], "thousand verses without stopping but the strain upon his": [65535, 0], "verses without stopping but the strain upon his mental": [65535, 0], "without stopping but the strain upon his mental faculties": [65535, 0], "stopping but the strain upon his mental faculties was": [65535, 0], "but the strain upon his mental faculties was too": [65535, 0], "the strain upon his mental faculties was too great": [65535, 0], "strain upon his mental faculties was too great and": [65535, 0], "upon his mental faculties was too great and he": [65535, 0], "his mental faculties was too great and he was": [65535, 0], "mental faculties was too great and he was little": [65535, 0], "faculties was too great and he was little better": [65535, 0], "was too great and he was little better than": [65535, 0], "too great and he was little better than an": [65535, 0], "great and he was little better than an idiot": [65535, 0], "and he was little better than an idiot from": [65535, 0], "he was little better than an idiot from that": [65535, 0], "was little better than an idiot from that day": [65535, 0], "little better than an idiot from that day forth": [65535, 0], "better than an idiot from that day forth a": [65535, 0], "than an idiot from that day forth a grievous": [65535, 0], "an idiot from that day forth a grievous misfortune": [65535, 0], "idiot from that day forth a grievous misfortune for": [65535, 0], "from that day forth a grievous misfortune for the": [65535, 0], "that day forth a grievous misfortune for the school": [65535, 0], "day forth a grievous misfortune for the school for": [65535, 0], "forth a grievous misfortune for the school for on": [65535, 0], "a grievous misfortune for the school for on great": [65535, 0], "grievous misfortune for the school for on great occasions": [65535, 0], "misfortune for the school for on great occasions before": [65535, 0], "for the school for on great occasions before company": [65535, 0], "the school for on great occasions before company the": [65535, 0], "school for on great occasions before company the superintendent": [65535, 0], "for on great occasions before company the superintendent as": [65535, 0], "on great occasions before company the superintendent as tom": [65535, 0], "great occasions before company the superintendent as tom expressed": [65535, 0], "occasions before company the superintendent as tom expressed it": [65535, 0], "before company the superintendent as tom expressed it had": [65535, 0], "company the superintendent as tom expressed it had always": [65535, 0], "the superintendent as tom expressed it had always made": [65535, 0], "superintendent as tom expressed it had always made this": [65535, 0], "as tom expressed it had always made this boy": [65535, 0], "tom expressed it had always made this boy come": [65535, 0], "expressed it had always made this boy come out": [65535, 0], "it had always made this boy come out and": [65535, 0], "had always made this boy come out and spread": [65535, 0], "always made this boy come out and spread himself": [65535, 0], "made this boy come out and spread himself only": [65535, 0], "this boy come out and spread himself only the": [65535, 0], "boy come out and spread himself only the older": [65535, 0], "come out and spread himself only the older pupils": [65535, 0], "out and spread himself only the older pupils managed": [65535, 0], "and spread himself only the older pupils managed to": [65535, 0], "spread himself only the older pupils managed to keep": [65535, 0], "himself only the older pupils managed to keep their": [65535, 0], "only the older pupils managed to keep their tickets": [65535, 0], "the older pupils managed to keep their tickets and": [65535, 0], "older pupils managed to keep their tickets and stick": [65535, 0], "pupils managed to keep their tickets and stick to": [65535, 0], "managed to keep their tickets and stick to their": [65535, 0], "to keep their tickets and stick to their tedious": [65535, 0], "keep their tickets and stick to their tedious work": [65535, 0], "their tickets and stick to their tedious work long": [65535, 0], "tickets and stick to their tedious work long enough": [65535, 0], "and stick to their tedious work long enough to": [65535, 0], "stick to their tedious work long enough to get": [65535, 0], "to their tedious work long enough to get a": [65535, 0], "their tedious work long enough to get a bible": [65535, 0], "tedious work long enough to get a bible and": [65535, 0], "work long enough to get a bible and so": [65535, 0], "long enough to get a bible and so the": [65535, 0], "enough to get a bible and so the delivery": [65535, 0], "to get a bible and so the delivery of": [65535, 0], "get a bible and so the delivery of one": [65535, 0], "a bible and so the delivery of one of": [65535, 0], "bible and so the delivery of one of these": [65535, 0], "and so the delivery of one of these prizes": [65535, 0], "so the delivery of one of these prizes was": [65535, 0], "the delivery of one of these prizes was a": [65535, 0], "delivery of one of these prizes was a rare": [65535, 0], "of one of these prizes was a rare and": [65535, 0], "one of these prizes was a rare and noteworthy": [65535, 0], "of these prizes was a rare and noteworthy circumstance": [65535, 0], "these prizes was a rare and noteworthy circumstance the": [65535, 0], "prizes was a rare and noteworthy circumstance the successful": [65535, 0], "was a rare and noteworthy circumstance the successful pupil": [65535, 0], "a rare and noteworthy circumstance the successful pupil was": [65535, 0], "rare and noteworthy circumstance the successful pupil was so": [65535, 0], "and noteworthy circumstance the successful pupil was so great": [65535, 0], "noteworthy circumstance the successful pupil was so great and": [65535, 0], "circumstance the successful pupil was so great and conspicuous": [65535, 0], "the successful pupil was so great and conspicuous for": [65535, 0], "successful pupil was so great and conspicuous for that": [65535, 0], "pupil was so great and conspicuous for that day": [65535, 0], "was so great and conspicuous for that day that": [65535, 0], "so great and conspicuous for that day that on": [65535, 0], "great and conspicuous for that day that on the": [65535, 0], "and conspicuous for that day that on the spot": [65535, 0], "conspicuous for that day that on the spot every": [65535, 0], "for that day that on the spot every scholar's": [65535, 0], "that day that on the spot every scholar's heart": [65535, 0], "day that on the spot every scholar's heart was": [65535, 0], "that on the spot every scholar's heart was fired": [65535, 0], "on the spot every scholar's heart was fired with": [65535, 0], "the spot every scholar's heart was fired with a": [65535, 0], "spot every scholar's heart was fired with a fresh": [65535, 0], "every scholar's heart was fired with a fresh ambition": [65535, 0], "scholar's heart was fired with a fresh ambition that": [65535, 0], "heart was fired with a fresh ambition that often": [65535, 0], "was fired with a fresh ambition that often lasted": [65535, 0], "fired with a fresh ambition that often lasted a": [65535, 0], "with a fresh ambition that often lasted a couple": [65535, 0], "a fresh ambition that often lasted a couple of": [65535, 0], "fresh ambition that often lasted a couple of weeks": [65535, 0], "ambition that often lasted a couple of weeks it": [65535, 0], "that often lasted a couple of weeks it is": [65535, 0], "often lasted a couple of weeks it is possible": [65535, 0], "lasted a couple of weeks it is possible that": [65535, 0], "a couple of weeks it is possible that tom's": [65535, 0], "couple of weeks it is possible that tom's mental": [65535, 0], "of weeks it is possible that tom's mental stomach": [65535, 0], "weeks it is possible that tom's mental stomach had": [65535, 0], "it is possible that tom's mental stomach had never": [65535, 0], "is possible that tom's mental stomach had never really": [65535, 0], "possible that tom's mental stomach had never really hungered": [65535, 0], "that tom's mental stomach had never really hungered for": [65535, 0], "tom's mental stomach had never really hungered for one": [65535, 0], "mental stomach had never really hungered for one of": [65535, 0], "stomach had never really hungered for one of those": [65535, 0], "had never really hungered for one of those prizes": [65535, 0], "never really hungered for one of those prizes but": [65535, 0], "really hungered for one of those prizes but unquestionably": [65535, 0], "hungered for one of those prizes but unquestionably his": [65535, 0], "for one of those prizes but unquestionably his entire": [65535, 0], "one of those prizes but unquestionably his entire being": [65535, 0], "of those prizes but unquestionably his entire being had": [65535, 0], "those prizes but unquestionably his entire being had for": [65535, 0], "prizes but unquestionably his entire being had for many": [65535, 0], "but unquestionably his entire being had for many a": [65535, 0], "unquestionably his entire being had for many a day": [65535, 0], "his entire being had for many a day longed": [65535, 0], "entire being had for many a day longed for": [65535, 0], "being had for many a day longed for the": [65535, 0], "had for many a day longed for the glory": [65535, 0], "for many a day longed for the glory and": [65535, 0], "many a day longed for the glory and the": [65535, 0], "a day longed for the glory and the eclat": [65535, 0], "day longed for the glory and the eclat that": [65535, 0], "longed for the glory and the eclat that came": [65535, 0], "for the glory and the eclat that came with": [65535, 0], "the glory and the eclat that came with it": [65535, 0], "glory and the eclat that came with it in": [65535, 0], "and the eclat that came with it in due": [65535, 0], "the eclat that came with it in due course": [65535, 0], "eclat that came with it in due course the": [65535, 0], "that came with it in due course the superintendent": [65535, 0], "came with it in due course the superintendent stood": [65535, 0], "with it in due course the superintendent stood up": [65535, 0], "it in due course the superintendent stood up in": [65535, 0], "in due course the superintendent stood up in front": [65535, 0], "due course the superintendent stood up in front of": [65535, 0], "course the superintendent stood up in front of the": [65535, 0], "the superintendent stood up in front of the pulpit": [65535, 0], "superintendent stood up in front of the pulpit with": [65535, 0], "stood up in front of the pulpit with a": [65535, 0], "up in front of the pulpit with a closed": [65535, 0], "in front of the pulpit with a closed hymn": [65535, 0], "front of the pulpit with a closed hymn book": [65535, 0], "of the pulpit with a closed hymn book in": [65535, 0], "the pulpit with a closed hymn book in his": [65535, 0], "pulpit with a closed hymn book in his hand": [65535, 0], "with a closed hymn book in his hand and": [65535, 0], "a closed hymn book in his hand and his": [65535, 0], "closed hymn book in his hand and his forefinger": [65535, 0], "hymn book in his hand and his forefinger inserted": [65535, 0], "book in his hand and his forefinger inserted between": [65535, 0], "in his hand and his forefinger inserted between its": [65535, 0], "his hand and his forefinger inserted between its leaves": [65535, 0], "hand and his forefinger inserted between its leaves and": [65535, 0], "and his forefinger inserted between its leaves and commanded": [65535, 0], "his forefinger inserted between its leaves and commanded attention": [65535, 0], "forefinger inserted between its leaves and commanded attention when": [65535, 0], "inserted between its leaves and commanded attention when a": [65535, 0], "between its leaves and commanded attention when a sunday": [65535, 0], "its leaves and commanded attention when a sunday school": [65535, 0], "leaves and commanded attention when a sunday school superintendent": [65535, 0], "and commanded attention when a sunday school superintendent makes": [65535, 0], "commanded attention when a sunday school superintendent makes his": [65535, 0], "attention when a sunday school superintendent makes his customary": [65535, 0], "when a sunday school superintendent makes his customary little": [65535, 0], "a sunday school superintendent makes his customary little speech": [65535, 0], "sunday school superintendent makes his customary little speech a": [65535, 0], "school superintendent makes his customary little speech a hymn": [65535, 0], "superintendent makes his customary little speech a hymn book": [65535, 0], "makes his customary little speech a hymn book in": [65535, 0], "his customary little speech a hymn book in the": [65535, 0], "customary little speech a hymn book in the hand": [65535, 0], "little speech a hymn book in the hand is": [65535, 0], "speech a hymn book in the hand is as": [65535, 0], "a hymn book in the hand is as necessary": [65535, 0], "hymn book in the hand is as necessary as": [65535, 0], "book in the hand is as necessary as is": [65535, 0], "in the hand is as necessary as is the": [65535, 0], "the hand is as necessary as is the inevitable": [65535, 0], "hand is as necessary as is the inevitable sheet": [65535, 0], "is as necessary as is the inevitable sheet of": [65535, 0], "as necessary as is the inevitable sheet of music": [65535, 0], "necessary as is the inevitable sheet of music in": [65535, 0], "as is the inevitable sheet of music in the": [65535, 0], "is the inevitable sheet of music in the hand": [65535, 0], "the inevitable sheet of music in the hand of": [65535, 0], "inevitable sheet of music in the hand of a": [65535, 0], "sheet of music in the hand of a singer": [65535, 0], "of music in the hand of a singer who": [65535, 0], "music in the hand of a singer who stands": [65535, 0], "in the hand of a singer who stands forward": [65535, 0], "the hand of a singer who stands forward on": [65535, 0], "hand of a singer who stands forward on the": [65535, 0], "of a singer who stands forward on the platform": [65535, 0], "a singer who stands forward on the platform and": [65535, 0], "singer who stands forward on the platform and sings": [65535, 0], "who stands forward on the platform and sings a": [65535, 0], "stands forward on the platform and sings a solo": [65535, 0], "forward on the platform and sings a solo at": [65535, 0], "on the platform and sings a solo at a": [65535, 0], "the platform and sings a solo at a concert": [65535, 0], "platform and sings a solo at a concert though": [65535, 0], "and sings a solo at a concert though why": [65535, 0], "sings a solo at a concert though why is": [65535, 0], "a solo at a concert though why is a": [65535, 0], "solo at a concert though why is a mystery": [65535, 0], "at a concert though why is a mystery for": [65535, 0], "a concert though why is a mystery for neither": [65535, 0], "concert though why is a mystery for neither the": [65535, 0], "though why is a mystery for neither the hymn": [65535, 0], "why is a mystery for neither the hymn book": [65535, 0], "is a mystery for neither the hymn book nor": [65535, 0], "a mystery for neither the hymn book nor the": [65535, 0], "mystery for neither the hymn book nor the sheet": [65535, 0], "for neither the hymn book nor the sheet of": [65535, 0], "neither the hymn book nor the sheet of music": [65535, 0], "the hymn book nor the sheet of music is": [65535, 0], "hymn book nor the sheet of music is ever": [65535, 0], "book nor the sheet of music is ever referred": [65535, 0], "nor the sheet of music is ever referred to": [65535, 0], "the sheet of music is ever referred to by": [65535, 0], "sheet of music is ever referred to by the": [65535, 0], "of music is ever referred to by the sufferer": [65535, 0], "music is ever referred to by the sufferer this": [65535, 0], "is ever referred to by the sufferer this superintendent": [65535, 0], "ever referred to by the sufferer this superintendent was": [65535, 0], "referred to by the sufferer this superintendent was a": [65535, 0], "to by the sufferer this superintendent was a slim": [65535, 0], "by the sufferer this superintendent was a slim creature": [65535, 0], "the sufferer this superintendent was a slim creature of": [65535, 0], "sufferer this superintendent was a slim creature of thirty": [65535, 0], "this superintendent was a slim creature of thirty five": [65535, 0], "superintendent was a slim creature of thirty five with": [65535, 0], "was a slim creature of thirty five with a": [65535, 0], "a slim creature of thirty five with a sandy": [65535, 0], "slim creature of thirty five with a sandy goatee": [65535, 0], "creature of thirty five with a sandy goatee and": [65535, 0], "of thirty five with a sandy goatee and short": [65535, 0], "thirty five with a sandy goatee and short sandy": [65535, 0], "five with a sandy goatee and short sandy hair": [65535, 0], "with a sandy goatee and short sandy hair he": [65535, 0], "a sandy goatee and short sandy hair he wore": [65535, 0], "sandy goatee and short sandy hair he wore a": [65535, 0], "goatee and short sandy hair he wore a stiff": [65535, 0], "and short sandy hair he wore a stiff standing": [65535, 0], "short sandy hair he wore a stiff standing collar": [65535, 0], "sandy hair he wore a stiff standing collar whose": [65535, 0], "hair he wore a stiff standing collar whose upper": [65535, 0], "he wore a stiff standing collar whose upper edge": [65535, 0], "wore a stiff standing collar whose upper edge almost": [65535, 0], "a stiff standing collar whose upper edge almost reached": [65535, 0], "stiff standing collar whose upper edge almost reached his": [65535, 0], "standing collar whose upper edge almost reached his ears": [65535, 0], "collar whose upper edge almost reached his ears and": [65535, 0], "whose upper edge almost reached his ears and whose": [65535, 0], "upper edge almost reached his ears and whose sharp": [65535, 0], "edge almost reached his ears and whose sharp points": [65535, 0], "almost reached his ears and whose sharp points curved": [65535, 0], "reached his ears and whose sharp points curved forward": [65535, 0], "his ears and whose sharp points curved forward abreast": [65535, 0], "ears and whose sharp points curved forward abreast the": [65535, 0], "and whose sharp points curved forward abreast the corners": [65535, 0], "whose sharp points curved forward abreast the corners of": [65535, 0], "sharp points curved forward abreast the corners of his": [65535, 0], "points curved forward abreast the corners of his mouth": [65535, 0], "curved forward abreast the corners of his mouth a": [65535, 0], "forward abreast the corners of his mouth a fence": [65535, 0], "abreast the corners of his mouth a fence that": [65535, 0], "the corners of his mouth a fence that compelled": [65535, 0], "corners of his mouth a fence that compelled a": [65535, 0], "of his mouth a fence that compelled a straight": [65535, 0], "his mouth a fence that compelled a straight lookout": [65535, 0], "mouth a fence that compelled a straight lookout ahead": [65535, 0], "a fence that compelled a straight lookout ahead and": [65535, 0], "fence that compelled a straight lookout ahead and a": [65535, 0], "that compelled a straight lookout ahead and a turning": [65535, 0], "compelled a straight lookout ahead and a turning of": [65535, 0], "a straight lookout ahead and a turning of the": [65535, 0], "straight lookout ahead and a turning of the whole": [65535, 0], "lookout ahead and a turning of the whole body": [65535, 0], "ahead and a turning of the whole body when": [65535, 0], "and a turning of the whole body when a": [65535, 0], "a turning of the whole body when a side": [65535, 0], "turning of the whole body when a side view": [65535, 0], "of the whole body when a side view was": [65535, 0], "the whole body when a side view was required": [65535, 0], "whole body when a side view was required his": [65535, 0], "body when a side view was required his chin": [65535, 0], "when a side view was required his chin was": [65535, 0], "a side view was required his chin was propped": [65535, 0], "side view was required his chin was propped on": [65535, 0], "view was required his chin was propped on a": [65535, 0], "was required his chin was propped on a spreading": [65535, 0], "required his chin was propped on a spreading cravat": [65535, 0], "his chin was propped on a spreading cravat which": [65535, 0], "chin was propped on a spreading cravat which was": [65535, 0], "was propped on a spreading cravat which was as": [65535, 0], "propped on a spreading cravat which was as broad": [65535, 0], "on a spreading cravat which was as broad and": [65535, 0], "a spreading cravat which was as broad and as": [65535, 0], "spreading cravat which was as broad and as long": [65535, 0], "cravat which was as broad and as long as": [65535, 0], "which was as broad and as long as a": [65535, 0], "was as broad and as long as a bank": [65535, 0], "as broad and as long as a bank note": [65535, 0], "broad and as long as a bank note and": [65535, 0], "and as long as a bank note and had": [65535, 0], "as long as a bank note and had fringed": [65535, 0], "long as a bank note and had fringed ends": [65535, 0], "as a bank note and had fringed ends his": [65535, 0], "a bank note and had fringed ends his boot": [65535, 0], "bank note and had fringed ends his boot toes": [65535, 0], "note and had fringed ends his boot toes were": [65535, 0], "and had fringed ends his boot toes were turned": [65535, 0], "had fringed ends his boot toes were turned sharply": [65535, 0], "fringed ends his boot toes were turned sharply up": [65535, 0], "ends his boot toes were turned sharply up in": [65535, 0], "his boot toes were turned sharply up in the": [65535, 0], "boot toes were turned sharply up in the fashion": [65535, 0], "toes were turned sharply up in the fashion of": [65535, 0], "were turned sharply up in the fashion of the": [65535, 0], "turned sharply up in the fashion of the day": [65535, 0], "sharply up in the fashion of the day like": [65535, 0], "up in the fashion of the day like sleigh": [65535, 0], "in the fashion of the day like sleigh runners": [65535, 0], "the fashion of the day like sleigh runners an": [65535, 0], "fashion of the day like sleigh runners an effect": [65535, 0], "of the day like sleigh runners an effect patiently": [65535, 0], "the day like sleigh runners an effect patiently and": [65535, 0], "day like sleigh runners an effect patiently and laboriously": [65535, 0], "like sleigh runners an effect patiently and laboriously produced": [65535, 0], "sleigh runners an effect patiently and laboriously produced by": [65535, 0], "runners an effect patiently and laboriously produced by the": [65535, 0], "an effect patiently and laboriously produced by the young": [65535, 0], "effect patiently and laboriously produced by the young men": [65535, 0], "patiently and laboriously produced by the young men by": [65535, 0], "and laboriously produced by the young men by sitting": [65535, 0], "laboriously produced by the young men by sitting with": [65535, 0], "produced by the young men by sitting with their": [65535, 0], "by the young men by sitting with their toes": [65535, 0], "the young men by sitting with their toes pressed": [65535, 0], "young men by sitting with their toes pressed against": [65535, 0], "men by sitting with their toes pressed against a": [65535, 0], "by sitting with their toes pressed against a wall": [65535, 0], "sitting with their toes pressed against a wall for": [65535, 0], "with their toes pressed against a wall for hours": [65535, 0], "their toes pressed against a wall for hours together": [65535, 0], "toes pressed against a wall for hours together mr": [65535, 0], "pressed against a wall for hours together mr walters": [65535, 0], "against a wall for hours together mr walters was": [65535, 0], "a wall for hours together mr walters was very": [65535, 0], "wall for hours together mr walters was very earnest": [65535, 0], "for hours together mr walters was very earnest of": [65535, 0], "hours together mr walters was very earnest of mien": [65535, 0], "together mr walters was very earnest of mien and": [65535, 0], "mr walters was very earnest of mien and very": [65535, 0], "walters was very earnest of mien and very sincere": [65535, 0], "was very earnest of mien and very sincere and": [65535, 0], "very earnest of mien and very sincere and honest": [65535, 0], "earnest of mien and very sincere and honest at": [65535, 0], "of mien and very sincere and honest at heart": [65535, 0], "mien and very sincere and honest at heart and": [65535, 0], "and very sincere and honest at heart and he": [65535, 0], "very sincere and honest at heart and he held": [65535, 0], "sincere and honest at heart and he held sacred": [65535, 0], "and honest at heart and he held sacred things": [65535, 0], "honest at heart and he held sacred things and": [65535, 0], "at heart and he held sacred things and places": [65535, 0], "heart and he held sacred things and places in": [65535, 0], "and he held sacred things and places in such": [65535, 0], "he held sacred things and places in such reverence": [65535, 0], "held sacred things and places in such reverence and": [65535, 0], "sacred things and places in such reverence and so": [65535, 0], "things and places in such reverence and so separated": [65535, 0], "and places in such reverence and so separated them": [65535, 0], "places in such reverence and so separated them from": [65535, 0], "in such reverence and so separated them from worldly": [65535, 0], "such reverence and so separated them from worldly matters": [65535, 0], "reverence and so separated them from worldly matters that": [65535, 0], "and so separated them from worldly matters that unconsciously": [65535, 0], "so separated them from worldly matters that unconsciously to": [65535, 0], "separated them from worldly matters that unconsciously to himself": [65535, 0], "them from worldly matters that unconsciously to himself his": [65535, 0], "from worldly matters that unconsciously to himself his sunday": [65535, 0], "worldly matters that unconsciously to himself his sunday school": [65535, 0], "matters that unconsciously to himself his sunday school voice": [65535, 0], "that unconsciously to himself his sunday school voice had": [65535, 0], "unconsciously to himself his sunday school voice had acquired": [65535, 0], "to himself his sunday school voice had acquired a": [65535, 0], "himself his sunday school voice had acquired a peculiar": [65535, 0], "his sunday school voice had acquired a peculiar intonation": [65535, 0], "sunday school voice had acquired a peculiar intonation which": [65535, 0], "school voice had acquired a peculiar intonation which was": [65535, 0], "voice had acquired a peculiar intonation which was wholly": [65535, 0], "had acquired a peculiar intonation which was wholly absent": [65535, 0], "acquired a peculiar intonation which was wholly absent on": [65535, 0], "a peculiar intonation which was wholly absent on week": [65535, 0], "peculiar intonation which was wholly absent on week days": [65535, 0], "intonation which was wholly absent on week days he": [65535, 0], "which was wholly absent on week days he began": [65535, 0], "was wholly absent on week days he began after": [65535, 0], "wholly absent on week days he began after this": [65535, 0], "absent on week days he began after this fashion": [65535, 0], "on week days he began after this fashion now": [65535, 0], "week days he began after this fashion now children": [65535, 0], "days he began after this fashion now children i": [65535, 0], "he began after this fashion now children i want": [65535, 0], "began after this fashion now children i want you": [65535, 0], "after this fashion now children i want you all": [65535, 0], "this fashion now children i want you all to": [65535, 0], "fashion now children i want you all to sit": [65535, 0], "now children i want you all to sit up": [65535, 0], "children i want you all to sit up just": [65535, 0], "i want you all to sit up just as": [65535, 0], "want you all to sit up just as straight": [65535, 0], "you all to sit up just as straight and": [65535, 0], "all to sit up just as straight and pretty": [65535, 0], "to sit up just as straight and pretty as": [65535, 0], "sit up just as straight and pretty as you": [65535, 0], "up just as straight and pretty as you can": [65535, 0], "just as straight and pretty as you can and": [65535, 0], "as straight and pretty as you can and give": [65535, 0], "straight and pretty as you can and give me": [65535, 0], "and pretty as you can and give me all": [65535, 0], "pretty as you can and give me all your": [65535, 0], "as you can and give me all your attention": [65535, 0], "you can and give me all your attention for": [65535, 0], "can and give me all your attention for a": [65535, 0], "and give me all your attention for a minute": [65535, 0], "give me all your attention for a minute or": [65535, 0], "me all your attention for a minute or two": [65535, 0], "all your attention for a minute or two there": [65535, 0], "your attention for a minute or two there that": [65535, 0], "attention for a minute or two there that is": [65535, 0], "for a minute or two there that is it": [65535, 0], "a minute or two there that is it that": [65535, 0], "minute or two there that is it that is": [65535, 0], "or two there that is it that is the": [65535, 0], "two there that is it that is the way": [65535, 0], "there that is it that is the way good": [65535, 0], "that is it that is the way good little": [65535, 0], "is it that is the way good little boys": [65535, 0], "it that is the way good little boys and": [65535, 0], "that is the way good little boys and girls": [65535, 0], "is the way good little boys and girls should": [65535, 0], "the way good little boys and girls should do": [65535, 0], "way good little boys and girls should do i": [65535, 0], "good little boys and girls should do i see": [65535, 0], "little boys and girls should do i see one": [65535, 0], "boys and girls should do i see one little": [65535, 0], "and girls should do i see one little girl": [65535, 0], "girls should do i see one little girl who": [65535, 0], "should do i see one little girl who is": [65535, 0], "do i see one little girl who is looking": [65535, 0], "i see one little girl who is looking out": [65535, 0], "see one little girl who is looking out of": [65535, 0], "one little girl who is looking out of the": [65535, 0], "little girl who is looking out of the window": [65535, 0], "girl who is looking out of the window i": [65535, 0], "who is looking out of the window i am": [65535, 0], "is looking out of the window i am afraid": [65535, 0], "looking out of the window i am afraid she": [65535, 0], "out of the window i am afraid she thinks": [65535, 0], "of the window i am afraid she thinks i": [65535, 0], "the window i am afraid she thinks i am": [65535, 0], "window i am afraid she thinks i am out": [65535, 0], "i am afraid she thinks i am out there": [65535, 0], "am afraid she thinks i am out there somewhere": [65535, 0], "afraid she thinks i am out there somewhere perhaps": [65535, 0], "she thinks i am out there somewhere perhaps up": [65535, 0], "thinks i am out there somewhere perhaps up in": [65535, 0], "i am out there somewhere perhaps up in one": [65535, 0], "am out there somewhere perhaps up in one of": [65535, 0], "out there somewhere perhaps up in one of the": [65535, 0], "there somewhere perhaps up in one of the trees": [65535, 0], "somewhere perhaps up in one of the trees making": [65535, 0], "perhaps up in one of the trees making a": [65535, 0], "up in one of the trees making a speech": [65535, 0], "in one of the trees making a speech to": [65535, 0], "one of the trees making a speech to the": [65535, 0], "of the trees making a speech to the little": [65535, 0], "the trees making a speech to the little birds": [65535, 0], "trees making a speech to the little birds applausive": [65535, 0], "making a speech to the little birds applausive titter": [65535, 0], "a speech to the little birds applausive titter i": [65535, 0], "speech to the little birds applausive titter i want": [65535, 0], "to the little birds applausive titter i want to": [65535, 0], "the little birds applausive titter i want to tell": [65535, 0], "little birds applausive titter i want to tell you": [65535, 0], "birds applausive titter i want to tell you how": [65535, 0], "applausive titter i want to tell you how good": [65535, 0], "titter i want to tell you how good it": [65535, 0], "i want to tell you how good it makes": [65535, 0], "want to tell you how good it makes me": [65535, 0], "to tell you how good it makes me feel": [65535, 0], "tell you how good it makes me feel to": [65535, 0], "you how good it makes me feel to see": [65535, 0], "how good it makes me feel to see so": [65535, 0], "good it makes me feel to see so many": [65535, 0], "it makes me feel to see so many bright": [65535, 0], "makes me feel to see so many bright clean": [65535, 0], "me feel to see so many bright clean little": [65535, 0], "feel to see so many bright clean little faces": [65535, 0], "to see so many bright clean little faces assembled": [65535, 0], "see so many bright clean little faces assembled in": [65535, 0], "so many bright clean little faces assembled in a": [65535, 0], "many bright clean little faces assembled in a place": [65535, 0], "bright clean little faces assembled in a place like": [65535, 0], "clean little faces assembled in a place like this": [65535, 0], "little faces assembled in a place like this learning": [65535, 0], "faces assembled in a place like this learning to": [65535, 0], "assembled in a place like this learning to do": [65535, 0], "in a place like this learning to do right": [65535, 0], "a place like this learning to do right and": [65535, 0], "place like this learning to do right and be": [65535, 0], "like this learning to do right and be good": [65535, 0], "this learning to do right and be good and": [65535, 0], "learning to do right and be good and so": [65535, 0], "to do right and be good and so forth": [65535, 0], "do right and be good and so forth and": [65535, 0], "right and be good and so forth and so": [65535, 0], "and be good and so forth and so on": [65535, 0], "be good and so forth and so on it": [65535, 0], "good and so forth and so on it is": [65535, 0], "and so forth and so on it is not": [65535, 0], "so forth and so on it is not necessary": [65535, 0], "forth and so on it is not necessary to": [65535, 0], "and so on it is not necessary to set": [65535, 0], "so on it is not necessary to set down": [65535, 0], "on it is not necessary to set down the": [65535, 0], "it is not necessary to set down the rest": [65535, 0], "is not necessary to set down the rest of": [65535, 0], "not necessary to set down the rest of the": [65535, 0], "necessary to set down the rest of the oration": [65535, 0], "to set down the rest of the oration it": [65535, 0], "set down the rest of the oration it was": [65535, 0], "down the rest of the oration it was of": [65535, 0], "the rest of the oration it was of a": [65535, 0], "rest of the oration it was of a pattern": [65535, 0], "of the oration it was of a pattern which": [65535, 0], "the oration it was of a pattern which does": [65535, 0], "oration it was of a pattern which does not": [65535, 0], "it was of a pattern which does not vary": [65535, 0], "was of a pattern which does not vary and": [65535, 0], "of a pattern which does not vary and so": [65535, 0], "a pattern which does not vary and so it": [65535, 0], "pattern which does not vary and so it is": [65535, 0], "which does not vary and so it is familiar": [65535, 0], "does not vary and so it is familiar to": [65535, 0], "not vary and so it is familiar to us": [65535, 0], "vary and so it is familiar to us all": [65535, 0], "and so it is familiar to us all the": [65535, 0], "so it is familiar to us all the latter": [65535, 0], "it is familiar to us all the latter third": [65535, 0], "is familiar to us all the latter third of": [65535, 0], "familiar to us all the latter third of the": [65535, 0], "to us all the latter third of the speech": [65535, 0], "us all the latter third of the speech was": [65535, 0], "all the latter third of the speech was marred": [65535, 0], "the latter third of the speech was marred by": [65535, 0], "latter third of the speech was marred by the": [65535, 0], "third of the speech was marred by the resumption": [65535, 0], "of the speech was marred by the resumption of": [65535, 0], "the speech was marred by the resumption of fights": [65535, 0], "speech was marred by the resumption of fights and": [65535, 0], "was marred by the resumption of fights and other": [65535, 0], "marred by the resumption of fights and other recreations": [65535, 0], "by the resumption of fights and other recreations among": [65535, 0], "the resumption of fights and other recreations among certain": [65535, 0], "resumption of fights and other recreations among certain of": [65535, 0], "of fights and other recreations among certain of the": [65535, 0], "fights and other recreations among certain of the bad": [65535, 0], "and other recreations among certain of the bad boys": [65535, 0], "other recreations among certain of the bad boys and": [65535, 0], "recreations among certain of the bad boys and by": [65535, 0], "among certain of the bad boys and by fidgetings": [65535, 0], "certain of the bad boys and by fidgetings and": [65535, 0], "of the bad boys and by fidgetings and whisperings": [65535, 0], "the bad boys and by fidgetings and whisperings that": [65535, 0], "bad boys and by fidgetings and whisperings that extended": [65535, 0], "boys and by fidgetings and whisperings that extended far": [65535, 0], "and by fidgetings and whisperings that extended far and": [65535, 0], "by fidgetings and whisperings that extended far and wide": [65535, 0], "fidgetings and whisperings that extended far and wide washing": [65535, 0], "and whisperings that extended far and wide washing even": [65535, 0], "whisperings that extended far and wide washing even to": [65535, 0], "that extended far and wide washing even to the": [65535, 0], "extended far and wide washing even to the bases": [65535, 0], "far and wide washing even to the bases of": [65535, 0], "and wide washing even to the bases of isolated": [65535, 0], "wide washing even to the bases of isolated and": [65535, 0], "washing even to the bases of isolated and incorruptible": [65535, 0], "even to the bases of isolated and incorruptible rocks": [65535, 0], "to the bases of isolated and incorruptible rocks like": [65535, 0], "the bases of isolated and incorruptible rocks like sid": [65535, 0], "bases of isolated and incorruptible rocks like sid and": [65535, 0], "of isolated and incorruptible rocks like sid and mary": [65535, 0], "isolated and incorruptible rocks like sid and mary but": [65535, 0], "and incorruptible rocks like sid and mary but now": [65535, 0], "incorruptible rocks like sid and mary but now every": [65535, 0], "rocks like sid and mary but now every sound": [65535, 0], "like sid and mary but now every sound ceased": [65535, 0], "sid and mary but now every sound ceased suddenly": [65535, 0], "and mary but now every sound ceased suddenly with": [65535, 0], "mary but now every sound ceased suddenly with the": [65535, 0], "but now every sound ceased suddenly with the subsidence": [65535, 0], "now every sound ceased suddenly with the subsidence of": [65535, 0], "every sound ceased suddenly with the subsidence of mr": [65535, 0], "sound ceased suddenly with the subsidence of mr walters'": [65535, 0], "ceased suddenly with the subsidence of mr walters' voice": [65535, 0], "suddenly with the subsidence of mr walters' voice and": [65535, 0], "with the subsidence of mr walters' voice and the": [65535, 0], "the subsidence of mr walters' voice and the conclusion": [65535, 0], "subsidence of mr walters' voice and the conclusion of": [65535, 0], "of mr walters' voice and the conclusion of the": [65535, 0], "mr walters' voice and the conclusion of the speech": [65535, 0], "walters' voice and the conclusion of the speech was": [65535, 0], "voice and the conclusion of the speech was received": [65535, 0], "and the conclusion of the speech was received with": [65535, 0], "the conclusion of the speech was received with a": [65535, 0], "conclusion of the speech was received with a burst": [65535, 0], "of the speech was received with a burst of": [65535, 0], "the speech was received with a burst of silent": [65535, 0], "speech was received with a burst of silent gratitude": [65535, 0], "was received with a burst of silent gratitude a": [65535, 0], "received with a burst of silent gratitude a good": [65535, 0], "with a burst of silent gratitude a good part": [65535, 0], "a burst of silent gratitude a good part of": [65535, 0], "burst of silent gratitude a good part of the": [65535, 0], "of silent gratitude a good part of the whispering": [65535, 0], "silent gratitude a good part of the whispering had": [65535, 0], "gratitude a good part of the whispering had been": [65535, 0], "a good part of the whispering had been occasioned": [65535, 0], "good part of the whispering had been occasioned by": [65535, 0], "part of the whispering had been occasioned by an": [65535, 0], "of the whispering had been occasioned by an event": [65535, 0], "the whispering had been occasioned by an event which": [65535, 0], "whispering had been occasioned by an event which was": [65535, 0], "had been occasioned by an event which was more": [65535, 0], "been occasioned by an event which was more or": [65535, 0], "occasioned by an event which was more or less": [65535, 0], "by an event which was more or less rare": [65535, 0], "an event which was more or less rare the": [65535, 0], "event which was more or less rare the entrance": [65535, 0], "which was more or less rare the entrance of": [65535, 0], "was more or less rare the entrance of visitors": [65535, 0], "more or less rare the entrance of visitors lawyer": [65535, 0], "or less rare the entrance of visitors lawyer thatcher": [65535, 0], "less rare the entrance of visitors lawyer thatcher accompanied": [65535, 0], "rare the entrance of visitors lawyer thatcher accompanied by": [65535, 0], "the entrance of visitors lawyer thatcher accompanied by a": [65535, 0], "entrance of visitors lawyer thatcher accompanied by a very": [65535, 0], "of visitors lawyer thatcher accompanied by a very feeble": [65535, 0], "visitors lawyer thatcher accompanied by a very feeble and": [65535, 0], "lawyer thatcher accompanied by a very feeble and aged": [65535, 0], "thatcher accompanied by a very feeble and aged man": [65535, 0], "accompanied by a very feeble and aged man a": [65535, 0], "by a very feeble and aged man a fine": [65535, 0], "a very feeble and aged man a fine portly": [65535, 0], "very feeble and aged man a fine portly middle": [65535, 0], "feeble and aged man a fine portly middle aged": [65535, 0], "and aged man a fine portly middle aged gentleman": [65535, 0], "aged man a fine portly middle aged gentleman with": [65535, 0], "man a fine portly middle aged gentleman with iron": [65535, 0], "a fine portly middle aged gentleman with iron gray": [65535, 0], "fine portly middle aged gentleman with iron gray hair": [65535, 0], "portly middle aged gentleman with iron gray hair and": [65535, 0], "middle aged gentleman with iron gray hair and a": [65535, 0], "aged gentleman with iron gray hair and a dignified": [65535, 0], "gentleman with iron gray hair and a dignified lady": [65535, 0], "with iron gray hair and a dignified lady who": [65535, 0], "iron gray hair and a dignified lady who was": [65535, 0], "gray hair and a dignified lady who was doubtless": [65535, 0], "hair and a dignified lady who was doubtless the": [65535, 0], "and a dignified lady who was doubtless the latter's": [65535, 0], "a dignified lady who was doubtless the latter's wife": [65535, 0], "dignified lady who was doubtless the latter's wife the": [65535, 0], "lady who was doubtless the latter's wife the lady": [65535, 0], "who was doubtless the latter's wife the lady was": [65535, 0], "was doubtless the latter's wife the lady was leading": [65535, 0], "doubtless the latter's wife the lady was leading a": [65535, 0], "the latter's wife the lady was leading a child": [65535, 0], "latter's wife the lady was leading a child tom": [65535, 0], "wife the lady was leading a child tom had": [65535, 0], "the lady was leading a child tom had been": [65535, 0], "lady was leading a child tom had been restless": [65535, 0], "was leading a child tom had been restless and": [65535, 0], "leading a child tom had been restless and full": [65535, 0], "a child tom had been restless and full of": [65535, 0], "child tom had been restless and full of chafings": [65535, 0], "tom had been restless and full of chafings and": [65535, 0], "had been restless and full of chafings and repinings": [65535, 0], "been restless and full of chafings and repinings conscience": [65535, 0], "restless and full of chafings and repinings conscience smitten": [65535, 0], "and full of chafings and repinings conscience smitten too": [65535, 0], "full of chafings and repinings conscience smitten too he": [65535, 0], "of chafings and repinings conscience smitten too he could": [65535, 0], "chafings and repinings conscience smitten too he could not": [65535, 0], "and repinings conscience smitten too he could not meet": [65535, 0], "repinings conscience smitten too he could not meet amy": [65535, 0], "conscience smitten too he could not meet amy lawrence's": [65535, 0], "smitten too he could not meet amy lawrence's eye": [65535, 0], "too he could not meet amy lawrence's eye he": [65535, 0], "he could not meet amy lawrence's eye he could": [65535, 0], "could not meet amy lawrence's eye he could not": [65535, 0], "not meet amy lawrence's eye he could not brook": [65535, 0], "meet amy lawrence's eye he could not brook her": [65535, 0], "amy lawrence's eye he could not brook her loving": [65535, 0], "lawrence's eye he could not brook her loving gaze": [65535, 0], "eye he could not brook her loving gaze but": [65535, 0], "he could not brook her loving gaze but when": [65535, 0], "could not brook her loving gaze but when he": [65535, 0], "not brook her loving gaze but when he saw": [65535, 0], "brook her loving gaze but when he saw this": [65535, 0], "her loving gaze but when he saw this small": [65535, 0], "loving gaze but when he saw this small new": [65535, 0], "gaze but when he saw this small new comer": [65535, 0], "but when he saw this small new comer his": [65535, 0], "when he saw this small new comer his soul": [65535, 0], "he saw this small new comer his soul was": [65535, 0], "saw this small new comer his soul was all": [65535, 0], "this small new comer his soul was all ablaze": [65535, 0], "small new comer his soul was all ablaze with": [65535, 0], "new comer his soul was all ablaze with bliss": [65535, 0], "comer his soul was all ablaze with bliss in": [65535, 0], "his soul was all ablaze with bliss in a": [65535, 0], "soul was all ablaze with bliss in a moment": [65535, 0], "was all ablaze with bliss in a moment the": [65535, 0], "all ablaze with bliss in a moment the next": [65535, 0], "ablaze with bliss in a moment the next moment": [65535, 0], "with bliss in a moment the next moment he": [65535, 0], "bliss in a moment the next moment he was": [65535, 0], "in a moment the next moment he was showing": [65535, 0], "a moment the next moment he was showing off": [65535, 0], "moment the next moment he was showing off with": [65535, 0], "the next moment he was showing off with all": [65535, 0], "next moment he was showing off with all his": [65535, 0], "moment he was showing off with all his might": [65535, 0], "he was showing off with all his might cuffing": [65535, 0], "was showing off with all his might cuffing boys": [65535, 0], "showing off with all his might cuffing boys pulling": [65535, 0], "off with all his might cuffing boys pulling hair": [65535, 0], "with all his might cuffing boys pulling hair making": [65535, 0], "all his might cuffing boys pulling hair making faces": [65535, 0], "his might cuffing boys pulling hair making faces in": [65535, 0], "might cuffing boys pulling hair making faces in a": [65535, 0], "cuffing boys pulling hair making faces in a word": [65535, 0], "boys pulling hair making faces in a word using": [65535, 0], "pulling hair making faces in a word using every": [65535, 0], "hair making faces in a word using every art": [65535, 0], "making faces in a word using every art that": [65535, 0], "faces in a word using every art that seemed": [65535, 0], "in a word using every art that seemed likely": [65535, 0], "a word using every art that seemed likely to": [65535, 0], "word using every art that seemed likely to fascinate": [65535, 0], "using every art that seemed likely to fascinate a": [65535, 0], "every art that seemed likely to fascinate a girl": [65535, 0], "art that seemed likely to fascinate a girl and": [65535, 0], "that seemed likely to fascinate a girl and win": [65535, 0], "seemed likely to fascinate a girl and win her": [65535, 0], "likely to fascinate a girl and win her applause": [65535, 0], "to fascinate a girl and win her applause his": [65535, 0], "fascinate a girl and win her applause his exaltation": [65535, 0], "a girl and win her applause his exaltation had": [65535, 0], "girl and win her applause his exaltation had but": [65535, 0], "and win her applause his exaltation had but one": [65535, 0], "win her applause his exaltation had but one alloy": [65535, 0], "her applause his exaltation had but one alloy the": [65535, 0], "applause his exaltation had but one alloy the memory": [65535, 0], "his exaltation had but one alloy the memory of": [65535, 0], "exaltation had but one alloy the memory of his": [65535, 0], "had but one alloy the memory of his humiliation": [65535, 0], "but one alloy the memory of his humiliation in": [65535, 0], "one alloy the memory of his humiliation in this": [65535, 0], "alloy the memory of his humiliation in this angel's": [65535, 0], "the memory of his humiliation in this angel's garden": [65535, 0], "memory of his humiliation in this angel's garden and": [65535, 0], "of his humiliation in this angel's garden and that": [65535, 0], "his humiliation in this angel's garden and that record": [65535, 0], "humiliation in this angel's garden and that record in": [65535, 0], "in this angel's garden and that record in sand": [65535, 0], "this angel's garden and that record in sand was": [65535, 0], "angel's garden and that record in sand was fast": [65535, 0], "garden and that record in sand was fast washing": [65535, 0], "and that record in sand was fast washing out": [65535, 0], "that record in sand was fast washing out under": [65535, 0], "record in sand was fast washing out under the": [65535, 0], "in sand was fast washing out under the waves": [65535, 0], "sand was fast washing out under the waves of": [65535, 0], "was fast washing out under the waves of happiness": [65535, 0], "fast washing out under the waves of happiness that": [65535, 0], "washing out under the waves of happiness that were": [65535, 0], "out under the waves of happiness that were sweeping": [65535, 0], "under the waves of happiness that were sweeping over": [65535, 0], "the waves of happiness that were sweeping over it": [65535, 0], "waves of happiness that were sweeping over it now": [65535, 0], "of happiness that were sweeping over it now the": [65535, 0], "happiness that were sweeping over it now the visitors": [65535, 0], "that were sweeping over it now the visitors were": [65535, 0], "were sweeping over it now the visitors were given": [65535, 0], "sweeping over it now the visitors were given the": [65535, 0], "over it now the visitors were given the highest": [65535, 0], "it now the visitors were given the highest seat": [65535, 0], "now the visitors were given the highest seat of": [65535, 0], "the visitors were given the highest seat of honor": [65535, 0], "visitors were given the highest seat of honor and": [65535, 0], "were given the highest seat of honor and as": [65535, 0], "given the highest seat of honor and as soon": [65535, 0], "the highest seat of honor and as soon as": [65535, 0], "highest seat of honor and as soon as mr": [65535, 0], "seat of honor and as soon as mr walters'": [65535, 0], "of honor and as soon as mr walters' speech": [65535, 0], "honor and as soon as mr walters' speech was": [65535, 0], "and as soon as mr walters' speech was finished": [65535, 0], "as soon as mr walters' speech was finished he": [65535, 0], "soon as mr walters' speech was finished he introduced": [65535, 0], "as mr walters' speech was finished he introduced them": [65535, 0], "mr walters' speech was finished he introduced them to": [65535, 0], "walters' speech was finished he introduced them to the": [65535, 0], "speech was finished he introduced them to the school": [65535, 0], "was finished he introduced them to the school the": [65535, 0], "finished he introduced them to the school the middle": [65535, 0], "he introduced them to the school the middle aged": [65535, 0], "introduced them to the school the middle aged man": [65535, 0], "them to the school the middle aged man turned": [65535, 0], "to the school the middle aged man turned out": [65535, 0], "the school the middle aged man turned out to": [65535, 0], "school the middle aged man turned out to be": [65535, 0], "the middle aged man turned out to be a": [65535, 0], "middle aged man turned out to be a prodigious": [65535, 0], "aged man turned out to be a prodigious personage": [65535, 0], "man turned out to be a prodigious personage no": [65535, 0], "turned out to be a prodigious personage no less": [65535, 0], "out to be a prodigious personage no less a": [65535, 0], "to be a prodigious personage no less a one": [65535, 0], "be a prodigious personage no less a one than": [65535, 0], "a prodigious personage no less a one than the": [65535, 0], "prodigious personage no less a one than the county": [65535, 0], "personage no less a one than the county judge": [65535, 0], "no less a one than the county judge altogether": [65535, 0], "less a one than the county judge altogether the": [65535, 0], "a one than the county judge altogether the most": [65535, 0], "one than the county judge altogether the most august": [65535, 0], "than the county judge altogether the most august creation": [65535, 0], "the county judge altogether the most august creation these": [65535, 0], "county judge altogether the most august creation these children": [65535, 0], "judge altogether the most august creation these children had": [65535, 0], "altogether the most august creation these children had ever": [65535, 0], "the most august creation these children had ever looked": [65535, 0], "most august creation these children had ever looked upon": [65535, 0], "august creation these children had ever looked upon and": [65535, 0], "creation these children had ever looked upon and they": [65535, 0], "these children had ever looked upon and they wondered": [65535, 0], "children had ever looked upon and they wondered what": [65535, 0], "had ever looked upon and they wondered what kind": [65535, 0], "ever looked upon and they wondered what kind of": [65535, 0], "looked upon and they wondered what kind of material": [65535, 0], "upon and they wondered what kind of material he": [65535, 0], "and they wondered what kind of material he was": [65535, 0], "they wondered what kind of material he was made": [65535, 0], "wondered what kind of material he was made of": [65535, 0], "what kind of material he was made of and": [65535, 0], "kind of material he was made of and they": [65535, 0], "of material he was made of and they half": [65535, 0], "material he was made of and they half wanted": [65535, 0], "he was made of and they half wanted to": [65535, 0], "was made of and they half wanted to hear": [65535, 0], "made of and they half wanted to hear him": [65535, 0], "of and they half wanted to hear him roar": [65535, 0], "and they half wanted to hear him roar and": [65535, 0], "they half wanted to hear him roar and were": [65535, 0], "half wanted to hear him roar and were half": [65535, 0], "wanted to hear him roar and were half afraid": [65535, 0], "to hear him roar and were half afraid he": [65535, 0], "hear him roar and were half afraid he might": [65535, 0], "him roar and were half afraid he might too": [65535, 0], "roar and were half afraid he might too he": [65535, 0], "and were half afraid he might too he was": [65535, 0], "were half afraid he might too he was from": [65535, 0], "half afraid he might too he was from constantinople": [65535, 0], "afraid he might too he was from constantinople twelve": [65535, 0], "he might too he was from constantinople twelve miles": [65535, 0], "might too he was from constantinople twelve miles away": [65535, 0], "too he was from constantinople twelve miles away so": [65535, 0], "he was from constantinople twelve miles away so he": [65535, 0], "was from constantinople twelve miles away so he had": [65535, 0], "from constantinople twelve miles away so he had travelled": [65535, 0], "constantinople twelve miles away so he had travelled and": [65535, 0], "twelve miles away so he had travelled and seen": [65535, 0], "miles away so he had travelled and seen the": [65535, 0], "away so he had travelled and seen the world": [65535, 0], "so he had travelled and seen the world these": [65535, 0], "he had travelled and seen the world these very": [65535, 0], "had travelled and seen the world these very eyes": [65535, 0], "travelled and seen the world these very eyes had": [65535, 0], "and seen the world these very eyes had looked": [65535, 0], "seen the world these very eyes had looked upon": [65535, 0], "the world these very eyes had looked upon the": [65535, 0], "world these very eyes had looked upon the county": [65535, 0], "these very eyes had looked upon the county court": [65535, 0], "very eyes had looked upon the county court house": [65535, 0], "eyes had looked upon the county court house which": [65535, 0], "had looked upon the county court house which was": [65535, 0], "looked upon the county court house which was said": [65535, 0], "upon the county court house which was said to": [65535, 0], "the county court house which was said to have": [65535, 0], "county court house which was said to have a": [65535, 0], "court house which was said to have a tin": [65535, 0], "house which was said to have a tin roof": [65535, 0], "which was said to have a tin roof the": [65535, 0], "was said to have a tin roof the awe": [65535, 0], "said to have a tin roof the awe which": [65535, 0], "to have a tin roof the awe which these": [65535, 0], "have a tin roof the awe which these reflections": [65535, 0], "a tin roof the awe which these reflections inspired": [65535, 0], "tin roof the awe which these reflections inspired was": [65535, 0], "roof the awe which these reflections inspired was attested": [65535, 0], "the awe which these reflections inspired was attested by": [65535, 0], "awe which these reflections inspired was attested by the": [65535, 0], "which these reflections inspired was attested by the impressive": [65535, 0], "these reflections inspired was attested by the impressive silence": [65535, 0], "reflections inspired was attested by the impressive silence and": [65535, 0], "inspired was attested by the impressive silence and the": [65535, 0], "was attested by the impressive silence and the ranks": [65535, 0], "attested by the impressive silence and the ranks of": [65535, 0], "by the impressive silence and the ranks of staring": [65535, 0], "the impressive silence and the ranks of staring eyes": [65535, 0], "impressive silence and the ranks of staring eyes this": [65535, 0], "silence and the ranks of staring eyes this was": [65535, 0], "and the ranks of staring eyes this was the": [65535, 0], "the ranks of staring eyes this was the great": [65535, 0], "ranks of staring eyes this was the great judge": [65535, 0], "of staring eyes this was the great judge thatcher": [65535, 0], "staring eyes this was the great judge thatcher brother": [65535, 0], "eyes this was the great judge thatcher brother of": [65535, 0], "this was the great judge thatcher brother of their": [65535, 0], "was the great judge thatcher brother of their own": [65535, 0], "the great judge thatcher brother of their own lawyer": [65535, 0], "great judge thatcher brother of their own lawyer jeff": [65535, 0], "judge thatcher brother of their own lawyer jeff thatcher": [65535, 0], "thatcher brother of their own lawyer jeff thatcher immediately": [65535, 0], "brother of their own lawyer jeff thatcher immediately went": [65535, 0], "of their own lawyer jeff thatcher immediately went forward": [65535, 0], "their own lawyer jeff thatcher immediately went forward to": [65535, 0], "own lawyer jeff thatcher immediately went forward to be": [65535, 0], "lawyer jeff thatcher immediately went forward to be familiar": [65535, 0], "jeff thatcher immediately went forward to be familiar with": [65535, 0], "thatcher immediately went forward to be familiar with the": [65535, 0], "immediately went forward to be familiar with the great": [65535, 0], "went forward to be familiar with the great man": [65535, 0], "forward to be familiar with the great man and": [65535, 0], "to be familiar with the great man and be": [65535, 0], "be familiar with the great man and be envied": [65535, 0], "familiar with the great man and be envied by": [65535, 0], "with the great man and be envied by the": [65535, 0], "the great man and be envied by the school": [65535, 0], "great man and be envied by the school it": [65535, 0], "man and be envied by the school it would": [65535, 0], "and be envied by the school it would have": [65535, 0], "be envied by the school it would have been": [65535, 0], "envied by the school it would have been music": [65535, 0], "by the school it would have been music to": [65535, 0], "the school it would have been music to his": [65535, 0], "school it would have been music to his soul": [65535, 0], "it would have been music to his soul to": [65535, 0], "would have been music to his soul to hear": [65535, 0], "have been music to his soul to hear the": [65535, 0], "been music to his soul to hear the whisperings": [65535, 0], "music to his soul to hear the whisperings look": [65535, 0], "to his soul to hear the whisperings look at": [65535, 0], "his soul to hear the whisperings look at him": [65535, 0], "soul to hear the whisperings look at him jim": [65535, 0], "to hear the whisperings look at him jim he's": [65535, 0], "hear the whisperings look at him jim he's a": [65535, 0], "the whisperings look at him jim he's a going": [65535, 0], "whisperings look at him jim he's a going up": [65535, 0], "look at him jim he's a going up there": [65535, 0], "at him jim he's a going up there say": [65535, 0], "him jim he's a going up there say look": [65535, 0], "jim he's a going up there say look he's": [65535, 0], "he's a going up there say look he's a": [65535, 0], "a going up there say look he's a going": [65535, 0], "going up there say look he's a going to": [65535, 0], "up there say look he's a going to shake": [65535, 0], "there say look he's a going to shake hands": [65535, 0], "say look he's a going to shake hands with": [65535, 0], "look he's a going to shake hands with him": [65535, 0], "he's a going to shake hands with him he": [65535, 0], "a going to shake hands with him he is": [65535, 0], "going to shake hands with him he is shaking": [65535, 0], "to shake hands with him he is shaking hands": [65535, 0], "shake hands with him he is shaking hands with": [65535, 0], "hands with him he is shaking hands with him": [65535, 0], "with him he is shaking hands with him by": [65535, 0], "him he is shaking hands with him by jings": [65535, 0], "he is shaking hands with him by jings don't": [65535, 0], "is shaking hands with him by jings don't you": [65535, 0], "shaking hands with him by jings don't you wish": [65535, 0], "hands with him by jings don't you wish you": [65535, 0], "with him by jings don't you wish you was": [65535, 0], "him by jings don't you wish you was jeff": [65535, 0], "by jings don't you wish you was jeff mr": [65535, 0], "jings don't you wish you was jeff mr walters": [65535, 0], "don't you wish you was jeff mr walters fell": [65535, 0], "you wish you was jeff mr walters fell to": [65535, 0], "wish you was jeff mr walters fell to showing": [65535, 0], "you was jeff mr walters fell to showing off": [65535, 0], "was jeff mr walters fell to showing off with": [65535, 0], "jeff mr walters fell to showing off with all": [65535, 0], "mr walters fell to showing off with all sorts": [65535, 0], "walters fell to showing off with all sorts of": [65535, 0], "fell to showing off with all sorts of official": [65535, 0], "to showing off with all sorts of official bustlings": [65535, 0], "showing off with all sorts of official bustlings and": [65535, 0], "off with all sorts of official bustlings and activities": [65535, 0], "with all sorts of official bustlings and activities giving": [65535, 0], "all sorts of official bustlings and activities giving orders": [65535, 0], "sorts of official bustlings and activities giving orders delivering": [65535, 0], "of official bustlings and activities giving orders delivering judgments": [65535, 0], "official bustlings and activities giving orders delivering judgments discharging": [65535, 0], "bustlings and activities giving orders delivering judgments discharging directions": [65535, 0], "and activities giving orders delivering judgments discharging directions here": [65535, 0], "activities giving orders delivering judgments discharging directions here there": [65535, 0], "giving orders delivering judgments discharging directions here there everywhere": [65535, 0], "orders delivering judgments discharging directions here there everywhere that": [65535, 0], "delivering judgments discharging directions here there everywhere that he": [65535, 0], "judgments discharging directions here there everywhere that he could": [65535, 0], "discharging directions here there everywhere that he could find": [65535, 0], "directions here there everywhere that he could find a": [65535, 0], "here there everywhere that he could find a target": [65535, 0], "there everywhere that he could find a target the": [65535, 0], "everywhere that he could find a target the librarian": [65535, 0], "that he could find a target the librarian showed": [65535, 0], "he could find a target the librarian showed off": [65535, 0], "could find a target the librarian showed off running": [65535, 0], "find a target the librarian showed off running hither": [65535, 0], "a target the librarian showed off running hither and": [65535, 0], "target the librarian showed off running hither and thither": [65535, 0], "the librarian showed off running hither and thither with": [65535, 0], "librarian showed off running hither and thither with his": [65535, 0], "showed off running hither and thither with his arms": [65535, 0], "off running hither and thither with his arms full": [65535, 0], "running hither and thither with his arms full of": [65535, 0], "hither and thither with his arms full of books": [65535, 0], "and thither with his arms full of books and": [65535, 0], "thither with his arms full of books and making": [65535, 0], "with his arms full of books and making a": [65535, 0], "his arms full of books and making a deal": [65535, 0], "arms full of books and making a deal of": [65535, 0], "full of books and making a deal of the": [65535, 0], "of books and making a deal of the splutter": [65535, 0], "books and making a deal of the splutter and": [65535, 0], "and making a deal of the splutter and fuss": [65535, 0], "making a deal of the splutter and fuss that": [65535, 0], "a deal of the splutter and fuss that insect": [65535, 0], "deal of the splutter and fuss that insect authority": [65535, 0], "of the splutter and fuss that insect authority delights": [65535, 0], "the splutter and fuss that insect authority delights in": [65535, 0], "splutter and fuss that insect authority delights in the": [65535, 0], "and fuss that insect authority delights in the young": [65535, 0], "fuss that insect authority delights in the young lady": [65535, 0], "that insect authority delights in the young lady teachers": [65535, 0], "insect authority delights in the young lady teachers showed": [65535, 0], "authority delights in the young lady teachers showed off": [65535, 0], "delights in the young lady teachers showed off bending": [65535, 0], "in the young lady teachers showed off bending sweetly": [65535, 0], "the young lady teachers showed off bending sweetly over": [65535, 0], "young lady teachers showed off bending sweetly over pupils": [65535, 0], "lady teachers showed off bending sweetly over pupils that": [65535, 0], "teachers showed off bending sweetly over pupils that were": [65535, 0], "showed off bending sweetly over pupils that were lately": [65535, 0], "off bending sweetly over pupils that were lately being": [65535, 0], "bending sweetly over pupils that were lately being boxed": [65535, 0], "sweetly over pupils that were lately being boxed lifting": [65535, 0], "over pupils that were lately being boxed lifting pretty": [65535, 0], "pupils that were lately being boxed lifting pretty warning": [65535, 0], "that were lately being boxed lifting pretty warning fingers": [65535, 0], "were lately being boxed lifting pretty warning fingers at": [65535, 0], "lately being boxed lifting pretty warning fingers at bad": [65535, 0], "being boxed lifting pretty warning fingers at bad little": [65535, 0], "boxed lifting pretty warning fingers at bad little boys": [65535, 0], "lifting pretty warning fingers at bad little boys and": [65535, 0], "pretty warning fingers at bad little boys and patting": [65535, 0], "warning fingers at bad little boys and patting good": [65535, 0], "fingers at bad little boys and patting good ones": [65535, 0], "at bad little boys and patting good ones lovingly": [65535, 0], "bad little boys and patting good ones lovingly the": [65535, 0], "little boys and patting good ones lovingly the young": [65535, 0], "boys and patting good ones lovingly the young gentlemen": [65535, 0], "and patting good ones lovingly the young gentlemen teachers": [65535, 0], "patting good ones lovingly the young gentlemen teachers showed": [65535, 0], "good ones lovingly the young gentlemen teachers showed off": [65535, 0], "ones lovingly the young gentlemen teachers showed off with": [65535, 0], "lovingly the young gentlemen teachers showed off with small": [65535, 0], "the young gentlemen teachers showed off with small scoldings": [65535, 0], "young gentlemen teachers showed off with small scoldings and": [65535, 0], "gentlemen teachers showed off with small scoldings and other": [65535, 0], "teachers showed off with small scoldings and other little": [65535, 0], "showed off with small scoldings and other little displays": [65535, 0], "off with small scoldings and other little displays of": [65535, 0], "with small scoldings and other little displays of authority": [65535, 0], "small scoldings and other little displays of authority and": [65535, 0], "scoldings and other little displays of authority and fine": [65535, 0], "and other little displays of authority and fine attention": [65535, 0], "other little displays of authority and fine attention to": [65535, 0], "little displays of authority and fine attention to discipline": [65535, 0], "displays of authority and fine attention to discipline and": [65535, 0], "of authority and fine attention to discipline and most": [65535, 0], "authority and fine attention to discipline and most of": [65535, 0], "and fine attention to discipline and most of the": [65535, 0], "fine attention to discipline and most of the teachers": [65535, 0], "attention to discipline and most of the teachers of": [65535, 0], "to discipline and most of the teachers of both": [65535, 0], "discipline and most of the teachers of both sexes": [65535, 0], "and most of the teachers of both sexes found": [65535, 0], "most of the teachers of both sexes found business": [65535, 0], "of the teachers of both sexes found business up": [65535, 0], "the teachers of both sexes found business up at": [65535, 0], "teachers of both sexes found business up at the": [65535, 0], "of both sexes found business up at the library": [65535, 0], "both sexes found business up at the library by": [65535, 0], "sexes found business up at the library by the": [65535, 0], "found business up at the library by the pulpit": [65535, 0], "business up at the library by the pulpit and": [65535, 0], "up at the library by the pulpit and it": [65535, 0], "at the library by the pulpit and it was": [65535, 0], "the library by the pulpit and it was business": [65535, 0], "library by the pulpit and it was business that": [65535, 0], "by the pulpit and it was business that frequently": [65535, 0], "the pulpit and it was business that frequently had": [65535, 0], "pulpit and it was business that frequently had to": [65535, 0], "and it was business that frequently had to be": [65535, 0], "it was business that frequently had to be done": [65535, 0], "was business that frequently had to be done over": [65535, 0], "business that frequently had to be done over again": [65535, 0], "that frequently had to be done over again two": [65535, 0], "frequently had to be done over again two or": [65535, 0], "had to be done over again two or three": [65535, 0], "to be done over again two or three times": [65535, 0], "be done over again two or three times with": [65535, 0], "done over again two or three times with much": [65535, 0], "over again two or three times with much seeming": [65535, 0], "again two or three times with much seeming vexation": [65535, 0], "two or three times with much seeming vexation the": [65535, 0], "or three times with much seeming vexation the little": [65535, 0], "three times with much seeming vexation the little girls": [65535, 0], "times with much seeming vexation the little girls showed": [65535, 0], "with much seeming vexation the little girls showed off": [65535, 0], "much seeming vexation the little girls showed off in": [65535, 0], "seeming vexation the little girls showed off in various": [65535, 0], "vexation the little girls showed off in various ways": [65535, 0], "the little girls showed off in various ways and": [65535, 0], "little girls showed off in various ways and the": [65535, 0], "girls showed off in various ways and the little": [65535, 0], "showed off in various ways and the little boys": [65535, 0], "off in various ways and the little boys showed": [65535, 0], "in various ways and the little boys showed off": [65535, 0], "various ways and the little boys showed off with": [65535, 0], "ways and the little boys showed off with such": [65535, 0], "and the little boys showed off with such diligence": [65535, 0], "the little boys showed off with such diligence that": [65535, 0], "little boys showed off with such diligence that the": [65535, 0], "boys showed off with such diligence that the air": [65535, 0], "showed off with such diligence that the air was": [65535, 0], "off with such diligence that the air was thick": [65535, 0], "with such diligence that the air was thick with": [65535, 0], "such diligence that the air was thick with paper": [65535, 0], "diligence that the air was thick with paper wads": [65535, 0], "that the air was thick with paper wads and": [65535, 0], "the air was thick with paper wads and the": [65535, 0], "air was thick with paper wads and the murmur": [65535, 0], "was thick with paper wads and the murmur of": [65535, 0], "thick with paper wads and the murmur of scufflings": [65535, 0], "with paper wads and the murmur of scufflings and": [65535, 0], "paper wads and the murmur of scufflings and above": [65535, 0], "wads and the murmur of scufflings and above it": [65535, 0], "and the murmur of scufflings and above it all": [65535, 0], "the murmur of scufflings and above it all the": [65535, 0], "murmur of scufflings and above it all the great": [65535, 0], "of scufflings and above it all the great man": [65535, 0], "scufflings and above it all the great man sat": [65535, 0], "and above it all the great man sat and": [65535, 0], "above it all the great man sat and beamed": [65535, 0], "it all the great man sat and beamed a": [65535, 0], "all the great man sat and beamed a majestic": [65535, 0], "the great man sat and beamed a majestic judicial": [65535, 0], "great man sat and beamed a majestic judicial smile": [65535, 0], "man sat and beamed a majestic judicial smile upon": [65535, 0], "sat and beamed a majestic judicial smile upon all": [65535, 0], "and beamed a majestic judicial smile upon all the": [65535, 0], "beamed a majestic judicial smile upon all the house": [65535, 0], "a majestic judicial smile upon all the house and": [65535, 0], "majestic judicial smile upon all the house and warmed": [65535, 0], "judicial smile upon all the house and warmed himself": [65535, 0], "smile upon all the house and warmed himself in": [65535, 0], "upon all the house and warmed himself in the": [65535, 0], "all the house and warmed himself in the sun": [65535, 0], "the house and warmed himself in the sun of": [65535, 0], "house and warmed himself in the sun of his": [65535, 0], "and warmed himself in the sun of his own": [65535, 0], "warmed himself in the sun of his own grandeur": [65535, 0], "himself in the sun of his own grandeur for": [65535, 0], "in the sun of his own grandeur for he": [65535, 0], "the sun of his own grandeur for he was": [65535, 0], "sun of his own grandeur for he was showing": [65535, 0], "of his own grandeur for he was showing off": [65535, 0], "his own grandeur for he was showing off too": [65535, 0], "own grandeur for he was showing off too there": [65535, 0], "grandeur for he was showing off too there was": [65535, 0], "for he was showing off too there was only": [65535, 0], "he was showing off too there was only one": [65535, 0], "was showing off too there was only one thing": [65535, 0], "showing off too there was only one thing wanting": [65535, 0], "off too there was only one thing wanting to": [65535, 0], "too there was only one thing wanting to make": [65535, 0], "there was only one thing wanting to make mr": [65535, 0], "was only one thing wanting to make mr walters'": [65535, 0], "only one thing wanting to make mr walters' ecstasy": [65535, 0], "one thing wanting to make mr walters' ecstasy complete": [65535, 0], "thing wanting to make mr walters' ecstasy complete and": [65535, 0], "wanting to make mr walters' ecstasy complete and that": [65535, 0], "to make mr walters' ecstasy complete and that was": [65535, 0], "make mr walters' ecstasy complete and that was a": [65535, 0], "mr walters' ecstasy complete and that was a chance": [65535, 0], "walters' ecstasy complete and that was a chance to": [65535, 0], "ecstasy complete and that was a chance to deliver": [65535, 0], "complete and that was a chance to deliver a": [65535, 0], "and that was a chance to deliver a bible": [65535, 0], "that was a chance to deliver a bible prize": [65535, 0], "was a chance to deliver a bible prize and": [65535, 0], "a chance to deliver a bible prize and exhibit": [65535, 0], "chance to deliver a bible prize and exhibit a": [65535, 0], "to deliver a bible prize and exhibit a prodigy": [65535, 0], "deliver a bible prize and exhibit a prodigy several": [65535, 0], "a bible prize and exhibit a prodigy several pupils": [65535, 0], "bible prize and exhibit a prodigy several pupils had": [65535, 0], "prize and exhibit a prodigy several pupils had a": [65535, 0], "and exhibit a prodigy several pupils had a few": [65535, 0], "exhibit a prodigy several pupils had a few yellow": [65535, 0], "a prodigy several pupils had a few yellow tickets": [65535, 0], "prodigy several pupils had a few yellow tickets but": [65535, 0], "several pupils had a few yellow tickets but none": [65535, 0], "pupils had a few yellow tickets but none had": [65535, 0], "had a few yellow tickets but none had enough": [65535, 0], "a few yellow tickets but none had enough he": [65535, 0], "few yellow tickets but none had enough he had": [65535, 0], "yellow tickets but none had enough he had been": [65535, 0], "tickets but none had enough he had been around": [65535, 0], "but none had enough he had been around among": [65535, 0], "none had enough he had been around among the": [65535, 0], "had enough he had been around among the star": [65535, 0], "enough he had been around among the star pupils": [65535, 0], "he had been around among the star pupils inquiring": [65535, 0], "had been around among the star pupils inquiring he": [65535, 0], "been around among the star pupils inquiring he would": [65535, 0], "around among the star pupils inquiring he would have": [65535, 0], "among the star pupils inquiring he would have given": [65535, 0], "the star pupils inquiring he would have given worlds": [65535, 0], "star pupils inquiring he would have given worlds now": [65535, 0], "pupils inquiring he would have given worlds now to": [65535, 0], "inquiring he would have given worlds now to have": [65535, 0], "he would have given worlds now to have that": [65535, 0], "would have given worlds now to have that german": [65535, 0], "have given worlds now to have that german lad": [65535, 0], "given worlds now to have that german lad back": [65535, 0], "worlds now to have that german lad back again": [65535, 0], "now to have that german lad back again with": [65535, 0], "to have that german lad back again with a": [65535, 0], "have that german lad back again with a sound": [65535, 0], "that german lad back again with a sound mind": [65535, 0], "german lad back again with a sound mind and": [65535, 0], "lad back again with a sound mind and now": [65535, 0], "back again with a sound mind and now at": [65535, 0], "again with a sound mind and now at this": [65535, 0], "with a sound mind and now at this moment": [65535, 0], "a sound mind and now at this moment when": [65535, 0], "sound mind and now at this moment when hope": [65535, 0], "mind and now at this moment when hope was": [65535, 0], "and now at this moment when hope was dead": [65535, 0], "now at this moment when hope was dead tom": [65535, 0], "at this moment when hope was dead tom sawyer": [65535, 0], "this moment when hope was dead tom sawyer came": [65535, 0], "moment when hope was dead tom sawyer came forward": [65535, 0], "when hope was dead tom sawyer came forward with": [65535, 0], "hope was dead tom sawyer came forward with nine": [65535, 0], "was dead tom sawyer came forward with nine yellow": [65535, 0], "dead tom sawyer came forward with nine yellow tickets": [65535, 0], "tom sawyer came forward with nine yellow tickets nine": [65535, 0], "sawyer came forward with nine yellow tickets nine red": [65535, 0], "came forward with nine yellow tickets nine red tickets": [65535, 0], "forward with nine yellow tickets nine red tickets and": [65535, 0], "with nine yellow tickets nine red tickets and ten": [65535, 0], "nine yellow tickets nine red tickets and ten blue": [65535, 0], "yellow tickets nine red tickets and ten blue ones": [65535, 0], "tickets nine red tickets and ten blue ones and": [65535, 0], "nine red tickets and ten blue ones and demanded": [65535, 0], "red tickets and ten blue ones and demanded a": [65535, 0], "tickets and ten blue ones and demanded a bible": [65535, 0], "and ten blue ones and demanded a bible this": [65535, 0], "ten blue ones and demanded a bible this was": [65535, 0], "blue ones and demanded a bible this was a": [65535, 0], "ones and demanded a bible this was a thunderbolt": [65535, 0], "and demanded a bible this was a thunderbolt out": [65535, 0], "demanded a bible this was a thunderbolt out of": [65535, 0], "a bible this was a thunderbolt out of a": [65535, 0], "bible this was a thunderbolt out of a clear": [65535, 0], "this was a thunderbolt out of a clear sky": [65535, 0], "was a thunderbolt out of a clear sky walters": [65535, 0], "a thunderbolt out of a clear sky walters was": [65535, 0], "thunderbolt out of a clear sky walters was not": [65535, 0], "out of a clear sky walters was not expecting": [65535, 0], "of a clear sky walters was not expecting an": [65535, 0], "a clear sky walters was not expecting an application": [65535, 0], "clear sky walters was not expecting an application from": [65535, 0], "sky walters was not expecting an application from this": [65535, 0], "walters was not expecting an application from this source": [65535, 0], "was not expecting an application from this source for": [65535, 0], "not expecting an application from this source for the": [65535, 0], "expecting an application from this source for the next": [65535, 0], "an application from this source for the next ten": [65535, 0], "application from this source for the next ten years": [65535, 0], "from this source for the next ten years but": [65535, 0], "this source for the next ten years but there": [65535, 0], "source for the next ten years but there was": [65535, 0], "for the next ten years but there was no": [65535, 0], "the next ten years but there was no getting": [65535, 0], "next ten years but there was no getting around": [65535, 0], "ten years but there was no getting around it": [65535, 0], "years but there was no getting around it here": [65535, 0], "but there was no getting around it here were": [65535, 0], "there was no getting around it here were the": [65535, 0], "was no getting around it here were the certified": [65535, 0], "no getting around it here were the certified checks": [65535, 0], "getting around it here were the certified checks and": [65535, 0], "around it here were the certified checks and they": [65535, 0], "it here were the certified checks and they were": [65535, 0], "here were the certified checks and they were good": [65535, 0], "were the certified checks and they were good for": [65535, 0], "the certified checks and they were good for their": [65535, 0], "certified checks and they were good for their face": [65535, 0], "checks and they were good for their face tom": [65535, 0], "and they were good for their face tom was": [65535, 0], "they were good for their face tom was therefore": [65535, 0], "were good for their face tom was therefore elevated": [65535, 0], "good for their face tom was therefore elevated to": [65535, 0], "for their face tom was therefore elevated to a": [65535, 0], "their face tom was therefore elevated to a place": [65535, 0], "face tom was therefore elevated to a place with": [65535, 0], "tom was therefore elevated to a place with the": [65535, 0], "was therefore elevated to a place with the judge": [65535, 0], "therefore elevated to a place with the judge and": [65535, 0], "elevated to a place with the judge and the": [65535, 0], "to a place with the judge and the other": [65535, 0], "a place with the judge and the other elect": [65535, 0], "place with the judge and the other elect and": [65535, 0], "with the judge and the other elect and the": [65535, 0], "the judge and the other elect and the great": [65535, 0], "judge and the other elect and the great news": [65535, 0], "and the other elect and the great news was": [65535, 0], "the other elect and the great news was announced": [65535, 0], "other elect and the great news was announced from": [65535, 0], "elect and the great news was announced from headquarters": [65535, 0], "and the great news was announced from headquarters it": [65535, 0], "the great news was announced from headquarters it was": [65535, 0], "great news was announced from headquarters it was the": [65535, 0], "news was announced from headquarters it was the most": [65535, 0], "was announced from headquarters it was the most stunning": [65535, 0], "announced from headquarters it was the most stunning surprise": [65535, 0], "from headquarters it was the most stunning surprise of": [65535, 0], "headquarters it was the most stunning surprise of the": [65535, 0], "it was the most stunning surprise of the decade": [65535, 0], "was the most stunning surprise of the decade and": [65535, 0], "the most stunning surprise of the decade and so": [65535, 0], "most stunning surprise of the decade and so profound": [65535, 0], "stunning surprise of the decade and so profound was": [65535, 0], "surprise of the decade and so profound was the": [65535, 0], "of the decade and so profound was the sensation": [65535, 0], "the decade and so profound was the sensation that": [65535, 0], "decade and so profound was the sensation that it": [65535, 0], "and so profound was the sensation that it lifted": [65535, 0], "so profound was the sensation that it lifted the": [65535, 0], "profound was the sensation that it lifted the new": [65535, 0], "was the sensation that it lifted the new hero": [65535, 0], "the sensation that it lifted the new hero up": [65535, 0], "sensation that it lifted the new hero up to": [65535, 0], "that it lifted the new hero up to the": [65535, 0], "it lifted the new hero up to the judicial": [65535, 0], "lifted the new hero up to the judicial one's": [65535, 0], "the new hero up to the judicial one's altitude": [65535, 0], "new hero up to the judicial one's altitude and": [65535, 0], "hero up to the judicial one's altitude and the": [65535, 0], "up to the judicial one's altitude and the school": [65535, 0], "to the judicial one's altitude and the school had": [65535, 0], "the judicial one's altitude and the school had two": [65535, 0], "judicial one's altitude and the school had two marvels": [65535, 0], "one's altitude and the school had two marvels to": [65535, 0], "altitude and the school had two marvels to gaze": [65535, 0], "and the school had two marvels to gaze upon": [65535, 0], "the school had two marvels to gaze upon in": [65535, 0], "school had two marvels to gaze upon in place": [65535, 0], "had two marvels to gaze upon in place of": [65535, 0], "two marvels to gaze upon in place of one": [65535, 0], "marvels to gaze upon in place of one the": [65535, 0], "to gaze upon in place of one the boys": [65535, 0], "gaze upon in place of one the boys were": [65535, 0], "upon in place of one the boys were all": [65535, 0], "in place of one the boys were all eaten": [65535, 0], "place of one the boys were all eaten up": [65535, 0], "of one the boys were all eaten up with": [65535, 0], "one the boys were all eaten up with envy": [65535, 0], "the boys were all eaten up with envy but": [65535, 0], "boys were all eaten up with envy but those": [65535, 0], "were all eaten up with envy but those that": [65535, 0], "all eaten up with envy but those that suffered": [65535, 0], "eaten up with envy but those that suffered the": [65535, 0], "up with envy but those that suffered the bitterest": [65535, 0], "with envy but those that suffered the bitterest pangs": [65535, 0], "envy but those that suffered the bitterest pangs were": [65535, 0], "but those that suffered the bitterest pangs were those": [65535, 0], "those that suffered the bitterest pangs were those who": [65535, 0], "that suffered the bitterest pangs were those who perceived": [65535, 0], "suffered the bitterest pangs were those who perceived too": [65535, 0], "the bitterest pangs were those who perceived too late": [65535, 0], "bitterest pangs were those who perceived too late that": [65535, 0], "pangs were those who perceived too late that they": [65535, 0], "were those who perceived too late that they themselves": [65535, 0], "those who perceived too late that they themselves had": [65535, 0], "who perceived too late that they themselves had contributed": [65535, 0], "perceived too late that they themselves had contributed to": [65535, 0], "too late that they themselves had contributed to this": [65535, 0], "late that they themselves had contributed to this hated": [65535, 0], "that they themselves had contributed to this hated splendor": [65535, 0], "they themselves had contributed to this hated splendor by": [65535, 0], "themselves had contributed to this hated splendor by trading": [65535, 0], "had contributed to this hated splendor by trading tickets": [65535, 0], "contributed to this hated splendor by trading tickets to": [65535, 0], "to this hated splendor by trading tickets to tom": [65535, 0], "this hated splendor by trading tickets to tom for": [65535, 0], "hated splendor by trading tickets to tom for the": [65535, 0], "splendor by trading tickets to tom for the wealth": [65535, 0], "by trading tickets to tom for the wealth he": [65535, 0], "trading tickets to tom for the wealth he had": [65535, 0], "tickets to tom for the wealth he had amassed": [65535, 0], "to tom for the wealth he had amassed in": [65535, 0], "tom for the wealth he had amassed in selling": [65535, 0], "for the wealth he had amassed in selling whitewashing": [65535, 0], "the wealth he had amassed in selling whitewashing privileges": [65535, 0], "wealth he had amassed in selling whitewashing privileges these": [65535, 0], "he had amassed in selling whitewashing privileges these despised": [65535, 0], "had amassed in selling whitewashing privileges these despised themselves": [65535, 0], "amassed in selling whitewashing privileges these despised themselves as": [65535, 0], "in selling whitewashing privileges these despised themselves as being": [65535, 0], "selling whitewashing privileges these despised themselves as being the": [65535, 0], "whitewashing privileges these despised themselves as being the dupes": [65535, 0], "privileges these despised themselves as being the dupes of": [65535, 0], "these despised themselves as being the dupes of a": [65535, 0], "despised themselves as being the dupes of a wily": [65535, 0], "themselves as being the dupes of a wily fraud": [65535, 0], "as being the dupes of a wily fraud a": [65535, 0], "being the dupes of a wily fraud a guileful": [65535, 0], "the dupes of a wily fraud a guileful snake": [65535, 0], "dupes of a wily fraud a guileful snake in": [65535, 0], "of a wily fraud a guileful snake in the": [65535, 0], "a wily fraud a guileful snake in the grass": [65535, 0], "wily fraud a guileful snake in the grass the": [65535, 0], "fraud a guileful snake in the grass the prize": [65535, 0], "a guileful snake in the grass the prize was": [65535, 0], "guileful snake in the grass the prize was delivered": [65535, 0], "snake in the grass the prize was delivered to": [65535, 0], "in the grass the prize was delivered to tom": [65535, 0], "the grass the prize was delivered to tom with": [65535, 0], "grass the prize was delivered to tom with as": [65535, 0], "the prize was delivered to tom with as much": [65535, 0], "prize was delivered to tom with as much effusion": [65535, 0], "was delivered to tom with as much effusion as": [65535, 0], "delivered to tom with as much effusion as the": [65535, 0], "to tom with as much effusion as the superintendent": [65535, 0], "tom with as much effusion as the superintendent could": [65535, 0], "with as much effusion as the superintendent could pump": [65535, 0], "as much effusion as the superintendent could pump up": [65535, 0], "much effusion as the superintendent could pump up under": [65535, 0], "effusion as the superintendent could pump up under the": [65535, 0], "as the superintendent could pump up under the circumstances": [65535, 0], "the superintendent could pump up under the circumstances but": [65535, 0], "superintendent could pump up under the circumstances but it": [65535, 0], "could pump up under the circumstances but it lacked": [65535, 0], "pump up under the circumstances but it lacked somewhat": [65535, 0], "up under the circumstances but it lacked somewhat of": [65535, 0], "under the circumstances but it lacked somewhat of the": [65535, 0], "the circumstances but it lacked somewhat of the true": [65535, 0], "circumstances but it lacked somewhat of the true gush": [65535, 0], "but it lacked somewhat of the true gush for": [65535, 0], "it lacked somewhat of the true gush for the": [65535, 0], "lacked somewhat of the true gush for the poor": [65535, 0], "somewhat of the true gush for the poor fellow's": [65535, 0], "of the true gush for the poor fellow's instinct": [65535, 0], "the true gush for the poor fellow's instinct taught": [65535, 0], "true gush for the poor fellow's instinct taught him": [65535, 0], "gush for the poor fellow's instinct taught him that": [65535, 0], "for the poor fellow's instinct taught him that there": [65535, 0], "the poor fellow's instinct taught him that there was": [65535, 0], "poor fellow's instinct taught him that there was a": [65535, 0], "fellow's instinct taught him that there was a mystery": [65535, 0], "instinct taught him that there was a mystery here": [65535, 0], "taught him that there was a mystery here that": [65535, 0], "him that there was a mystery here that could": [65535, 0], "that there was a mystery here that could not": [65535, 0], "there was a mystery here that could not well": [65535, 0], "was a mystery here that could not well bear": [65535, 0], "a mystery here that could not well bear the": [65535, 0], "mystery here that could not well bear the light": [65535, 0], "here that could not well bear the light perhaps": [65535, 0], "that could not well bear the light perhaps it": [65535, 0], "could not well bear the light perhaps it was": [65535, 0], "not well bear the light perhaps it was simply": [65535, 0], "well bear the light perhaps it was simply preposterous": [65535, 0], "bear the light perhaps it was simply preposterous that": [65535, 0], "the light perhaps it was simply preposterous that this": [65535, 0], "light perhaps it was simply preposterous that this boy": [65535, 0], "perhaps it was simply preposterous that this boy had": [65535, 0], "it was simply preposterous that this boy had warehoused": [65535, 0], "was simply preposterous that this boy had warehoused two": [65535, 0], "simply preposterous that this boy had warehoused two thousand": [65535, 0], "preposterous that this boy had warehoused two thousand sheaves": [65535, 0], "that this boy had warehoused two thousand sheaves of": [65535, 0], "this boy had warehoused two thousand sheaves of scriptural": [65535, 0], "boy had warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "had warehoused two thousand sheaves of scriptural wisdom on": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom on his": [65535, 0], "two thousand sheaves of scriptural wisdom on his premises": [65535, 0], "thousand sheaves of scriptural wisdom on his premises a": [65535, 0], "sheaves of scriptural wisdom on his premises a dozen": [65535, 0], "of scriptural wisdom on his premises a dozen would": [65535, 0], "scriptural wisdom on his premises a dozen would strain": [65535, 0], "wisdom on his premises a dozen would strain his": [65535, 0], "on his premises a dozen would strain his capacity": [65535, 0], "his premises a dozen would strain his capacity without": [65535, 0], "premises a dozen would strain his capacity without a": [65535, 0], "a dozen would strain his capacity without a doubt": [65535, 0], "dozen would strain his capacity without a doubt amy": [65535, 0], "would strain his capacity without a doubt amy lawrence": [65535, 0], "strain his capacity without a doubt amy lawrence was": [65535, 0], "his capacity without a doubt amy lawrence was proud": [65535, 0], "capacity without a doubt amy lawrence was proud and": [65535, 0], "without a doubt amy lawrence was proud and glad": [65535, 0], "a doubt amy lawrence was proud and glad and": [65535, 0], "doubt amy lawrence was proud and glad and she": [65535, 0], "amy lawrence was proud and glad and she tried": [65535, 0], "lawrence was proud and glad and she tried to": [65535, 0], "was proud and glad and she tried to make": [65535, 0], "proud and glad and she tried to make tom": [65535, 0], "and glad and she tried to make tom see": [65535, 0], "glad and she tried to make tom see it": [65535, 0], "and she tried to make tom see it in": [65535, 0], "she tried to make tom see it in her": [65535, 0], "tried to make tom see it in her face": [65535, 0], "to make tom see it in her face but": [65535, 0], "make tom see it in her face but he": [65535, 0], "tom see it in her face but he wouldn't": [65535, 0], "see it in her face but he wouldn't look": [65535, 0], "it in her face but he wouldn't look she": [65535, 0], "in her face but he wouldn't look she wondered": [65535, 0], "her face but he wouldn't look she wondered then": [65535, 0], "face but he wouldn't look she wondered then she": [65535, 0], "but he wouldn't look she wondered then she was": [65535, 0], "he wouldn't look she wondered then she was just": [65535, 0], "wouldn't look she wondered then she was just a": [65535, 0], "look she wondered then she was just a grain": [65535, 0], "she wondered then she was just a grain troubled": [65535, 0], "wondered then she was just a grain troubled next": [65535, 0], "then she was just a grain troubled next a": [65535, 0], "she was just a grain troubled next a dim": [65535, 0], "was just a grain troubled next a dim suspicion": [65535, 0], "just a grain troubled next a dim suspicion came": [65535, 0], "a grain troubled next a dim suspicion came and": [65535, 0], "grain troubled next a dim suspicion came and went": [65535, 0], "troubled next a dim suspicion came and went came": [65535, 0], "next a dim suspicion came and went came again": [65535, 0], "a dim suspicion came and went came again she": [65535, 0], "dim suspicion came and went came again she watched": [65535, 0], "suspicion came and went came again she watched a": [65535, 0], "came and went came again she watched a furtive": [65535, 0], "and went came again she watched a furtive glance": [65535, 0], "went came again she watched a furtive glance told": [65535, 0], "came again she watched a furtive glance told her": [65535, 0], "again she watched a furtive glance told her worlds": [65535, 0], "she watched a furtive glance told her worlds and": [65535, 0], "watched a furtive glance told her worlds and then": [65535, 0], "a furtive glance told her worlds and then her": [65535, 0], "furtive glance told her worlds and then her heart": [65535, 0], "glance told her worlds and then her heart broke": [65535, 0], "told her worlds and then her heart broke and": [65535, 0], "her worlds and then her heart broke and she": [65535, 0], "worlds and then her heart broke and she was": [65535, 0], "and then her heart broke and she was jealous": [65535, 0], "then her heart broke and she was jealous and": [65535, 0], "her heart broke and she was jealous and angry": [65535, 0], "heart broke and she was jealous and angry and": [65535, 0], "broke and she was jealous and angry and the": [65535, 0], "and she was jealous and angry and the tears": [65535, 0], "she was jealous and angry and the tears came": [65535, 0], "was jealous and angry and the tears came and": [65535, 0], "jealous and angry and the tears came and she": [65535, 0], "and angry and the tears came and she hated": [65535, 0], "angry and the tears came and she hated everybody": [65535, 0], "and the tears came and she hated everybody tom": [65535, 0], "the tears came and she hated everybody tom most": [65535, 0], "tears came and she hated everybody tom most of": [65535, 0], "came and she hated everybody tom most of all": [65535, 0], "and she hated everybody tom most of all she": [65535, 0], "she hated everybody tom most of all she thought": [65535, 0], "hated everybody tom most of all she thought tom": [65535, 0], "everybody tom most of all she thought tom was": [65535, 0], "tom most of all she thought tom was introduced": [65535, 0], "most of all she thought tom was introduced to": [65535, 0], "of all she thought tom was introduced to the": [65535, 0], "all she thought tom was introduced to the judge": [65535, 0], "she thought tom was introduced to the judge but": [65535, 0], "thought tom was introduced to the judge but his": [65535, 0], "tom was introduced to the judge but his tongue": [65535, 0], "was introduced to the judge but his tongue was": [65535, 0], "introduced to the judge but his tongue was tied": [65535, 0], "to the judge but his tongue was tied his": [65535, 0], "the judge but his tongue was tied his breath": [65535, 0], "judge but his tongue was tied his breath would": [65535, 0], "but his tongue was tied his breath would hardly": [65535, 0], "his tongue was tied his breath would hardly come": [65535, 0], "tongue was tied his breath would hardly come his": [65535, 0], "was tied his breath would hardly come his heart": [65535, 0], "tied his breath would hardly come his heart quaked": [65535, 0], "his breath would hardly come his heart quaked partly": [65535, 0], "breath would hardly come his heart quaked partly because": [65535, 0], "would hardly come his heart quaked partly because of": [65535, 0], "hardly come his heart quaked partly because of the": [65535, 0], "come his heart quaked partly because of the awful": [65535, 0], "his heart quaked partly because of the awful greatness": [65535, 0], "heart quaked partly because of the awful greatness of": [65535, 0], "quaked partly because of the awful greatness of the": [65535, 0], "partly because of the awful greatness of the man": [65535, 0], "because of the awful greatness of the man but": [65535, 0], "of the awful greatness of the man but mainly": [65535, 0], "the awful greatness of the man but mainly because": [65535, 0], "awful greatness of the man but mainly because he": [65535, 0], "greatness of the man but mainly because he was": [65535, 0], "of the man but mainly because he was her": [65535, 0], "the man but mainly because he was her parent": [65535, 0], "man but mainly because he was her parent he": [65535, 0], "but mainly because he was her parent he would": [65535, 0], "mainly because he was her parent he would have": [65535, 0], "because he was her parent he would have liked": [65535, 0], "he was her parent he would have liked to": [65535, 0], "was her parent he would have liked to fall": [65535, 0], "her parent he would have liked to fall down": [65535, 0], "parent he would have liked to fall down and": [65535, 0], "he would have liked to fall down and worship": [65535, 0], "would have liked to fall down and worship him": [65535, 0], "have liked to fall down and worship him if": [65535, 0], "liked to fall down and worship him if it": [65535, 0], "to fall down and worship him if it were": [65535, 0], "fall down and worship him if it were in": [65535, 0], "down and worship him if it were in the": [65535, 0], "and worship him if it were in the dark": [65535, 0], "worship him if it were in the dark the": [65535, 0], "him if it were in the dark the judge": [65535, 0], "if it were in the dark the judge put": [65535, 0], "it were in the dark the judge put his": [65535, 0], "were in the dark the judge put his hand": [65535, 0], "in the dark the judge put his hand on": [65535, 0], "the dark the judge put his hand on tom's": [65535, 0], "dark the judge put his hand on tom's head": [65535, 0], "the judge put his hand on tom's head and": [65535, 0], "judge put his hand on tom's head and called": [65535, 0], "put his hand on tom's head and called him": [65535, 0], "his hand on tom's head and called him a": [65535, 0], "hand on tom's head and called him a fine": [65535, 0], "on tom's head and called him a fine little": [65535, 0], "tom's head and called him a fine little man": [65535, 0], "head and called him a fine little man and": [65535, 0], "and called him a fine little man and asked": [65535, 0], "called him a fine little man and asked him": [65535, 0], "him a fine little man and asked him what": [65535, 0], "a fine little man and asked him what his": [65535, 0], "fine little man and asked him what his name": [65535, 0], "little man and asked him what his name was": [65535, 0], "man and asked him what his name was the": [65535, 0], "and asked him what his name was the boy": [65535, 0], "asked him what his name was the boy stammered": [65535, 0], "him what his name was the boy stammered gasped": [65535, 0], "what his name was the boy stammered gasped and": [65535, 0], "his name was the boy stammered gasped and got": [65535, 0], "name was the boy stammered gasped and got it": [65535, 0], "was the boy stammered gasped and got it out": [65535, 0], "the boy stammered gasped and got it out tom": [65535, 0], "boy stammered gasped and got it out tom oh": [65535, 0], "stammered gasped and got it out tom oh no": [65535, 0], "gasped and got it out tom oh no not": [65535, 0], "and got it out tom oh no not tom": [65535, 0], "got it out tom oh no not tom it": [65535, 0], "it out tom oh no not tom it is": [65535, 0], "out tom oh no not tom it is thomas": [65535, 0], "tom oh no not tom it is thomas ah": [65535, 0], "oh no not tom it is thomas ah that's": [65535, 0], "no not tom it is thomas ah that's it": [65535, 0], "not tom it is thomas ah that's it i": [65535, 0], "tom it is thomas ah that's it i thought": [65535, 0], "it is thomas ah that's it i thought there": [65535, 0], "is thomas ah that's it i thought there was": [65535, 0], "thomas ah that's it i thought there was more": [65535, 0], "ah that's it i thought there was more to": [65535, 0], "that's it i thought there was more to it": [65535, 0], "it i thought there was more to it maybe": [65535, 0], "i thought there was more to it maybe that's": [65535, 0], "thought there was more to it maybe that's very": [65535, 0], "there was more to it maybe that's very well": [65535, 0], "was more to it maybe that's very well but": [65535, 0], "more to it maybe that's very well but you've": [65535, 0], "to it maybe that's very well but you've another": [65535, 0], "it maybe that's very well but you've another one": [65535, 0], "maybe that's very well but you've another one i": [65535, 0], "that's very well but you've another one i daresay": [65535, 0], "very well but you've another one i daresay and": [65535, 0], "well but you've another one i daresay and you'll": [65535, 0], "but you've another one i daresay and you'll tell": [65535, 0], "you've another one i daresay and you'll tell it": [65535, 0], "another one i daresay and you'll tell it to": [65535, 0], "one i daresay and you'll tell it to me": [65535, 0], "i daresay and you'll tell it to me won't": [65535, 0], "daresay and you'll tell it to me won't you": [65535, 0], "and you'll tell it to me won't you tell": [65535, 0], "you'll tell it to me won't you tell the": [65535, 0], "tell it to me won't you tell the gentleman": [65535, 0], "it to me won't you tell the gentleman your": [65535, 0], "to me won't you tell the gentleman your other": [65535, 0], "me won't you tell the gentleman your other name": [65535, 0], "won't you tell the gentleman your other name thomas": [65535, 0], "you tell the gentleman your other name thomas said": [65535, 0], "tell the gentleman your other name thomas said walters": [65535, 0], "the gentleman your other name thomas said walters and": [65535, 0], "gentleman your other name thomas said walters and say": [65535, 0], "your other name thomas said walters and say sir": [65535, 0], "other name thomas said walters and say sir you": [65535, 0], "name thomas said walters and say sir you mustn't": [65535, 0], "thomas said walters and say sir you mustn't forget": [65535, 0], "said walters and say sir you mustn't forget your": [65535, 0], "walters and say sir you mustn't forget your manners": [65535, 0], "and say sir you mustn't forget your manners thomas": [65535, 0], "say sir you mustn't forget your manners thomas sawyer": [65535, 0], "sir you mustn't forget your manners thomas sawyer sir": [65535, 0], "you mustn't forget your manners thomas sawyer sir that's": [65535, 0], "mustn't forget your manners thomas sawyer sir that's it": [65535, 0], "forget your manners thomas sawyer sir that's it that's": [65535, 0], "your manners thomas sawyer sir that's it that's a": [65535, 0], "manners thomas sawyer sir that's it that's a good": [65535, 0], "thomas sawyer sir that's it that's a good boy": [65535, 0], "sawyer sir that's it that's a good boy fine": [65535, 0], "sir that's it that's a good boy fine boy": [65535, 0], "that's it that's a good boy fine boy fine": [65535, 0], "it that's a good boy fine boy fine manly": [65535, 0], "that's a good boy fine boy fine manly little": [65535, 0], "a good boy fine boy fine manly little fellow": [65535, 0], "good boy fine boy fine manly little fellow two": [65535, 0], "boy fine boy fine manly little fellow two thousand": [65535, 0], "fine boy fine manly little fellow two thousand verses": [65535, 0], "boy fine manly little fellow two thousand verses is": [65535, 0], "fine manly little fellow two thousand verses is a": [65535, 0], "manly little fellow two thousand verses is a great": [65535, 0], "little fellow two thousand verses is a great many": [65535, 0], "fellow two thousand verses is a great many very": [65535, 0], "two thousand verses is a great many very very": [65535, 0], "thousand verses is a great many very very great": [65535, 0], "verses is a great many very very great many": [65535, 0], "is a great many very very great many and": [65535, 0], "a great many very very great many and you": [65535, 0], "great many very very great many and you never": [65535, 0], "many very very great many and you never can": [65535, 0], "very very great many and you never can be": [65535, 0], "very great many and you never can be sorry": [65535, 0], "great many and you never can be sorry for": [65535, 0], "many and you never can be sorry for the": [65535, 0], "and you never can be sorry for the trouble": [65535, 0], "you never can be sorry for the trouble you": [65535, 0], "never can be sorry for the trouble you took": [65535, 0], "can be sorry for the trouble you took to": [65535, 0], "be sorry for the trouble you took to learn": [65535, 0], "sorry for the trouble you took to learn them": [65535, 0], "for the trouble you took to learn them for": [65535, 0], "the trouble you took to learn them for knowledge": [65535, 0], "trouble you took to learn them for knowledge is": [65535, 0], "you took to learn them for knowledge is worth": [65535, 0], "took to learn them for knowledge is worth more": [65535, 0], "to learn them for knowledge is worth more than": [65535, 0], "learn them for knowledge is worth more than anything": [65535, 0], "them for knowledge is worth more than anything there": [65535, 0], "for knowledge is worth more than anything there is": [65535, 0], "knowledge is worth more than anything there is in": [65535, 0], "is worth more than anything there is in the": [65535, 0], "worth more than anything there is in the world": [65535, 0], "more than anything there is in the world it's": [65535, 0], "than anything there is in the world it's what": [65535, 0], "anything there is in the world it's what makes": [65535, 0], "there is in the world it's what makes great": [65535, 0], "is in the world it's what makes great men": [65535, 0], "in the world it's what makes great men and": [65535, 0], "the world it's what makes great men and good": [65535, 0], "world it's what makes great men and good men": [65535, 0], "it's what makes great men and good men you'll": [65535, 0], "what makes great men and good men you'll be": [65535, 0], "makes great men and good men you'll be a": [65535, 0], "great men and good men you'll be a great": [65535, 0], "men and good men you'll be a great man": [65535, 0], "and good men you'll be a great man and": [65535, 0], "good men you'll be a great man and a": [65535, 0], "men you'll be a great man and a good": [65535, 0], "you'll be a great man and a good man": [65535, 0], "be a great man and a good man yourself": [65535, 0], "a great man and a good man yourself some": [65535, 0], "great man and a good man yourself some day": [65535, 0], "man and a good man yourself some day thomas": [65535, 0], "and a good man yourself some day thomas and": [65535, 0], "a good man yourself some day thomas and then": [65535, 0], "good man yourself some day thomas and then you'll": [65535, 0], "man yourself some day thomas and then you'll look": [65535, 0], "yourself some day thomas and then you'll look back": [65535, 0], "some day thomas and then you'll look back and": [65535, 0], "day thomas and then you'll look back and say": [65535, 0], "thomas and then you'll look back and say it's": [65535, 0], "and then you'll look back and say it's all": [65535, 0], "then you'll look back and say it's all owing": [65535, 0], "you'll look back and say it's all owing to": [65535, 0], "look back and say it's all owing to the": [65535, 0], "back and say it's all owing to the precious": [65535, 0], "and say it's all owing to the precious sunday": [65535, 0], "say it's all owing to the precious sunday school": [65535, 0], "it's all owing to the precious sunday school privileges": [65535, 0], "all owing to the precious sunday school privileges of": [65535, 0], "owing to the precious sunday school privileges of my": [65535, 0], "to the precious sunday school privileges of my boyhood": [65535, 0], "the precious sunday school privileges of my boyhood it's": [65535, 0], "precious sunday school privileges of my boyhood it's all": [65535, 0], "sunday school privileges of my boyhood it's all owing": [65535, 0], "school privileges of my boyhood it's all owing to": [65535, 0], "privileges of my boyhood it's all owing to my": [65535, 0], "of my boyhood it's all owing to my dear": [65535, 0], "my boyhood it's all owing to my dear teachers": [65535, 0], "boyhood it's all owing to my dear teachers that": [65535, 0], "it's all owing to my dear teachers that taught": [65535, 0], "all owing to my dear teachers that taught me": [65535, 0], "owing to my dear teachers that taught me to": [65535, 0], "to my dear teachers that taught me to learn": [65535, 0], "my dear teachers that taught me to learn it's": [65535, 0], "dear teachers that taught me to learn it's all": [65535, 0], "teachers that taught me to learn it's all owing": [65535, 0], "that taught me to learn it's all owing to": [65535, 0], "taught me to learn it's all owing to the": [65535, 0], "me to learn it's all owing to the good": [65535, 0], "to learn it's all owing to the good superintendent": [65535, 0], "learn it's all owing to the good superintendent who": [65535, 0], "it's all owing to the good superintendent who encouraged": [65535, 0], "all owing to the good superintendent who encouraged me": [65535, 0], "owing to the good superintendent who encouraged me and": [65535, 0], "to the good superintendent who encouraged me and watched": [65535, 0], "the good superintendent who encouraged me and watched over": [65535, 0], "good superintendent who encouraged me and watched over me": [65535, 0], "superintendent who encouraged me and watched over me and": [65535, 0], "who encouraged me and watched over me and gave": [65535, 0], "encouraged me and watched over me and gave me": [65535, 0], "me and watched over me and gave me a": [65535, 0], "and watched over me and gave me a beautiful": [65535, 0], "watched over me and gave me a beautiful bible": [65535, 0], "over me and gave me a beautiful bible a": [65535, 0], "me and gave me a beautiful bible a splendid": [65535, 0], "and gave me a beautiful bible a splendid elegant": [65535, 0], "gave me a beautiful bible a splendid elegant bible": [65535, 0], "me a beautiful bible a splendid elegant bible to": [65535, 0], "a beautiful bible a splendid elegant bible to keep": [65535, 0], "beautiful bible a splendid elegant bible to keep and": [65535, 0], "bible a splendid elegant bible to keep and have": [65535, 0], "a splendid elegant bible to keep and have it": [65535, 0], "splendid elegant bible to keep and have it all": [65535, 0], "elegant bible to keep and have it all for": [65535, 0], "bible to keep and have it all for my": [65535, 0], "to keep and have it all for my own": [65535, 0], "keep and have it all for my own always": [65535, 0], "and have it all for my own always it's": [65535, 0], "have it all for my own always it's all": [65535, 0], "it all for my own always it's all owing": [65535, 0], "all for my own always it's all owing to": [65535, 0], "for my own always it's all owing to right": [65535, 0], "my own always it's all owing to right bringing": [65535, 0], "own always it's all owing to right bringing up": [65535, 0], "always it's all owing to right bringing up that": [65535, 0], "it's all owing to right bringing up that is": [65535, 0], "all owing to right bringing up that is what": [65535, 0], "owing to right bringing up that is what you": [65535, 0], "to right bringing up that is what you will": [65535, 0], "right bringing up that is what you will say": [65535, 0], "bringing up that is what you will say thomas": [65535, 0], "up that is what you will say thomas and": [65535, 0], "that is what you will say thomas and you": [65535, 0], "is what you will say thomas and you wouldn't": [65535, 0], "what you will say thomas and you wouldn't take": [65535, 0], "you will say thomas and you wouldn't take any": [65535, 0], "will say thomas and you wouldn't take any money": [65535, 0], "say thomas and you wouldn't take any money for": [65535, 0], "thomas and you wouldn't take any money for those": [65535, 0], "and you wouldn't take any money for those two": [65535, 0], "you wouldn't take any money for those two thousand": [65535, 0], "wouldn't take any money for those two thousand verses": [65535, 0], "take any money for those two thousand verses no": [65535, 0], "any money for those two thousand verses no indeed": [65535, 0], "money for those two thousand verses no indeed you": [65535, 0], "for those two thousand verses no indeed you wouldn't": [65535, 0], "those two thousand verses no indeed you wouldn't and": [65535, 0], "two thousand verses no indeed you wouldn't and now": [65535, 0], "thousand verses no indeed you wouldn't and now you": [65535, 0], "verses no indeed you wouldn't and now you wouldn't": [65535, 0], "no indeed you wouldn't and now you wouldn't mind": [65535, 0], "indeed you wouldn't and now you wouldn't mind telling": [65535, 0], "you wouldn't and now you wouldn't mind telling me": [65535, 0], "wouldn't and now you wouldn't mind telling me and": [65535, 0], "and now you wouldn't mind telling me and this": [65535, 0], "now you wouldn't mind telling me and this lady": [65535, 0], "you wouldn't mind telling me and this lady some": [65535, 0], "wouldn't mind telling me and this lady some of": [65535, 0], "mind telling me and this lady some of the": [65535, 0], "telling me and this lady some of the things": [65535, 0], "me and this lady some of the things you've": [65535, 0], "and this lady some of the things you've learned": [65535, 0], "this lady some of the things you've learned no": [65535, 0], "lady some of the things you've learned no i": [65535, 0], "some of the things you've learned no i know": [65535, 0], "of the things you've learned no i know you": [65535, 0], "the things you've learned no i know you wouldn't": [65535, 0], "things you've learned no i know you wouldn't for": [65535, 0], "you've learned no i know you wouldn't for we": [65535, 0], "learned no i know you wouldn't for we are": [65535, 0], "no i know you wouldn't for we are proud": [65535, 0], "i know you wouldn't for we are proud of": [65535, 0], "know you wouldn't for we are proud of little": [65535, 0], "you wouldn't for we are proud of little boys": [65535, 0], "wouldn't for we are proud of little boys that": [65535, 0], "for we are proud of little boys that learn": [65535, 0], "we are proud of little boys that learn now": [65535, 0], "are proud of little boys that learn now no": [65535, 0], "proud of little boys that learn now no doubt": [65535, 0], "of little boys that learn now no doubt you": [65535, 0], "little boys that learn now no doubt you know": [65535, 0], "boys that learn now no doubt you know the": [65535, 0], "that learn now no doubt you know the names": [65535, 0], "learn now no doubt you know the names of": [65535, 0], "now no doubt you know the names of all": [65535, 0], "no doubt you know the names of all the": [65535, 0], "doubt you know the names of all the twelve": [65535, 0], "you know the names of all the twelve disciples": [65535, 0], "know the names of all the twelve disciples won't": [65535, 0], "the names of all the twelve disciples won't you": [65535, 0], "names of all the twelve disciples won't you tell": [65535, 0], "of all the twelve disciples won't you tell us": [65535, 0], "all the twelve disciples won't you tell us the": [65535, 0], "the twelve disciples won't you tell us the names": [65535, 0], "twelve disciples won't you tell us the names of": [65535, 0], "disciples won't you tell us the names of the": [65535, 0], "won't you tell us the names of the first": [65535, 0], "you tell us the names of the first two": [65535, 0], "tell us the names of the first two that": [65535, 0], "us the names of the first two that were": [65535, 0], "the names of the first two that were appointed": [65535, 0], "names of the first two that were appointed tom": [65535, 0], "of the first two that were appointed tom was": [65535, 0], "the first two that were appointed tom was tugging": [65535, 0], "first two that were appointed tom was tugging at": [65535, 0], "two that were appointed tom was tugging at a": [65535, 0], "that were appointed tom was tugging at a button": [65535, 0], "were appointed tom was tugging at a button hole": [65535, 0], "appointed tom was tugging at a button hole and": [65535, 0], "tom was tugging at a button hole and looking": [65535, 0], "was tugging at a button hole and looking sheepish": [65535, 0], "tugging at a button hole and looking sheepish he": [65535, 0], "at a button hole and looking sheepish he blushed": [65535, 0], "a button hole and looking sheepish he blushed now": [65535, 0], "button hole and looking sheepish he blushed now and": [65535, 0], "hole and looking sheepish he blushed now and his": [65535, 0], "and looking sheepish he blushed now and his eyes": [65535, 0], "looking sheepish he blushed now and his eyes fell": [65535, 0], "sheepish he blushed now and his eyes fell mr": [65535, 0], "he blushed now and his eyes fell mr walters'": [65535, 0], "blushed now and his eyes fell mr walters' heart": [65535, 0], "now and his eyes fell mr walters' heart sank": [65535, 0], "and his eyes fell mr walters' heart sank within": [65535, 0], "his eyes fell mr walters' heart sank within him": [65535, 0], "eyes fell mr walters' heart sank within him he": [65535, 0], "fell mr walters' heart sank within him he said": [65535, 0], "mr walters' heart sank within him he said to": [65535, 0], "walters' heart sank within him he said to himself": [65535, 0], "heart sank within him he said to himself it": [65535, 0], "sank within him he said to himself it is": [65535, 0], "within him he said to himself it is not": [65535, 0], "him he said to himself it is not possible": [65535, 0], "he said to himself it is not possible that": [65535, 0], "said to himself it is not possible that the": [65535, 0], "to himself it is not possible that the boy": [65535, 0], "himself it is not possible that the boy can": [65535, 0], "it is not possible that the boy can answer": [65535, 0], "is not possible that the boy can answer the": [65535, 0], "not possible that the boy can answer the simplest": [65535, 0], "possible that the boy can answer the simplest question": [65535, 0], "that the boy can answer the simplest question why": [65535, 0], "the boy can answer the simplest question why did": [65535, 0], "boy can answer the simplest question why did the": [65535, 0], "can answer the simplest question why did the judge": [65535, 0], "answer the simplest question why did the judge ask": [65535, 0], "the simplest question why did the judge ask him": [65535, 0], "simplest question why did the judge ask him yet": [65535, 0], "question why did the judge ask him yet he": [65535, 0], "why did the judge ask him yet he felt": [65535, 0], "did the judge ask him yet he felt obliged": [65535, 0], "the judge ask him yet he felt obliged to": [65535, 0], "judge ask him yet he felt obliged to speak": [65535, 0], "ask him yet he felt obliged to speak up": [65535, 0], "him yet he felt obliged to speak up and": [65535, 0], "yet he felt obliged to speak up and say": [65535, 0], "he felt obliged to speak up and say answer": [65535, 0], "felt obliged to speak up and say answer the": [65535, 0], "obliged to speak up and say answer the gentleman": [65535, 0], "to speak up and say answer the gentleman thomas": [65535, 0], "speak up and say answer the gentleman thomas don't": [65535, 0], "up and say answer the gentleman thomas don't be": [65535, 0], "and say answer the gentleman thomas don't be afraid": [65535, 0], "say answer the gentleman thomas don't be afraid tom": [65535, 0], "answer the gentleman thomas don't be afraid tom still": [65535, 0], "the gentleman thomas don't be afraid tom still hung": [65535, 0], "gentleman thomas don't be afraid tom still hung fire": [65535, 0], "thomas don't be afraid tom still hung fire now": [65535, 0], "don't be afraid tom still hung fire now i": [65535, 0], "be afraid tom still hung fire now i know": [65535, 0], "afraid tom still hung fire now i know you'll": [65535, 0], "tom still hung fire now i know you'll tell": [65535, 0], "still hung fire now i know you'll tell me": [65535, 0], "hung fire now i know you'll tell me said": [65535, 0], "fire now i know you'll tell me said the": [65535, 0], "now i know you'll tell me said the lady": [65535, 0], "i know you'll tell me said the lady the": [65535, 0], "know you'll tell me said the lady the names": [65535, 0], "you'll tell me said the lady the names of": [65535, 0], "tell me said the lady the names of the": [65535, 0], "me said the lady the names of the first": [65535, 0], "said the lady the names of the first two": [65535, 0], "the lady the names of the first two disciples": [65535, 0], "lady the names of the first two disciples were": [65535, 0], "the names of the first two disciples were david": [65535, 0], "names of the first two disciples were david and": [65535, 0], "of the first two disciples were david and goliath": [65535, 0], "the first two disciples were david and goliath let": [65535, 0], "first two disciples were david and goliath let us": [65535, 0], "two disciples were david and goliath let us draw": [65535, 0], "disciples were david and goliath let us draw the": [65535, 0], "were david and goliath let us draw the curtain": [65535, 0], "david and goliath let us draw the curtain of": [65535, 0], "and goliath let us draw the curtain of charity": [65535, 0], "goliath let us draw the curtain of charity over": [65535, 0], "let us draw the curtain of charity over the": [65535, 0], "us draw the curtain of charity over the rest": [65535, 0], "draw the curtain of charity over the rest of": [65535, 0], "the curtain of charity over the rest of the": [65535, 0], "curtain of charity over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world and beamed down": [65535, 0], "sun rose upon a tranquil world and beamed down upon": [65535, 0], "rose upon a tranquil world and beamed down upon the": [65535, 0], "upon a tranquil world and beamed down upon the peaceful": [65535, 0], "a tranquil world and beamed down upon the peaceful village": [65535, 0], "tranquil world and beamed down upon the peaceful village like": [65535, 0], "world and beamed down upon the peaceful village like a": [65535, 0], "and beamed down upon the peaceful village like a benediction": [65535, 0], "beamed down upon the peaceful village like a benediction breakfast": [65535, 0], "down upon the peaceful village like a benediction breakfast over": [65535, 0], "upon the peaceful village like a benediction breakfast over aunt": [65535, 0], "the peaceful village like a benediction breakfast over aunt polly": [65535, 0], "peaceful village like a benediction breakfast over aunt polly had": [65535, 0], "village like a benediction breakfast over aunt polly had family": [65535, 0], "like a benediction breakfast over aunt polly had family worship": [65535, 0], "a benediction breakfast over aunt polly had family worship it": [65535, 0], "benediction breakfast over aunt polly had family worship it began": [65535, 0], "breakfast over aunt polly had family worship it began with": [65535, 0], "over aunt polly had family worship it began with a": [65535, 0], "aunt polly had family worship it began with a prayer": [65535, 0], "polly had family worship it began with a prayer built": [65535, 0], "had family worship it began with a prayer built from": [65535, 0], "family worship it began with a prayer built from the": [65535, 0], "worship it began with a prayer built from the ground": [65535, 0], "it began with a prayer built from the ground up": [65535, 0], "began with a prayer built from the ground up of": [65535, 0], "with a prayer built from the ground up of solid": [65535, 0], "a prayer built from the ground up of solid courses": [65535, 0], "prayer built from the ground up of solid courses of": [65535, 0], "built from the ground up of solid courses of scriptural": [65535, 0], "from the ground up of solid courses of scriptural quotations": [65535, 0], "the ground up of solid courses of scriptural quotations welded": [65535, 0], "ground up of solid courses of scriptural quotations welded together": [65535, 0], "up of solid courses of scriptural quotations welded together with": [65535, 0], "of solid courses of scriptural quotations welded together with a": [65535, 0], "solid courses of scriptural quotations welded together with a thin": [65535, 0], "courses of scriptural quotations welded together with a thin mortar": [65535, 0], "of scriptural quotations welded together with a thin mortar of": [65535, 0], "scriptural quotations welded together with a thin mortar of originality": [65535, 0], "quotations welded together with a thin mortar of originality and": [65535, 0], "welded together with a thin mortar of originality and from": [65535, 0], "together with a thin mortar of originality and from the": [65535, 0], "with a thin mortar of originality and from the summit": [65535, 0], "a thin mortar of originality and from the summit of": [65535, 0], "thin mortar of originality and from the summit of this": [65535, 0], "mortar of originality and from the summit of this she": [65535, 0], "of originality and from the summit of this she delivered": [65535, 0], "originality and from the summit of this she delivered a": [65535, 0], "and from the summit of this she delivered a grim": [65535, 0], "from the summit of this she delivered a grim chapter": [65535, 0], "the summit of this she delivered a grim chapter of": [65535, 0], "summit of this she delivered a grim chapter of the": [65535, 0], "of this she delivered a grim chapter of the mosaic": [65535, 0], "this she delivered a grim chapter of the mosaic law": [65535, 0], "she delivered a grim chapter of the mosaic law as": [65535, 0], "delivered a grim chapter of the mosaic law as from": [65535, 0], "a grim chapter of the mosaic law as from sinai": [65535, 0], "grim chapter of the mosaic law as from sinai then": [65535, 0], "chapter of the mosaic law as from sinai then tom": [65535, 0], "of the mosaic law as from sinai then tom girded": [65535, 0], "the mosaic law as from sinai then tom girded up": [65535, 0], "mosaic law as from sinai then tom girded up his": [65535, 0], "law as from sinai then tom girded up his loins": [65535, 0], "as from sinai then tom girded up his loins so": [65535, 0], "from sinai then tom girded up his loins so to": [65535, 0], "sinai then tom girded up his loins so to speak": [65535, 0], "then tom girded up his loins so to speak and": [65535, 0], "tom girded up his loins so to speak and went": [65535, 0], "girded up his loins so to speak and went to": [65535, 0], "up his loins so to speak and went to work": [65535, 0], "his loins so to speak and went to work to": [65535, 0], "loins so to speak and went to work to get": [65535, 0], "so to speak and went to work to get his": [65535, 0], "to speak and went to work to get his verses": [65535, 0], "speak and went to work to get his verses sid": [65535, 0], "and went to work to get his verses sid had": [65535, 0], "went to work to get his verses sid had learned": [65535, 0], "to work to get his verses sid had learned his": [65535, 0], "work to get his verses sid had learned his lesson": [65535, 0], "to get his verses sid had learned his lesson days": [65535, 0], "get his verses sid had learned his lesson days before": [65535, 0], "his verses sid had learned his lesson days before tom": [65535, 0], "verses sid had learned his lesson days before tom bent": [65535, 0], "sid had learned his lesson days before tom bent all": [65535, 0], "had learned his lesson days before tom bent all his": [65535, 0], "learned his lesson days before tom bent all his energies": [65535, 0], "his lesson days before tom bent all his energies to": [65535, 0], "lesson days before tom bent all his energies to the": [65535, 0], "days before tom bent all his energies to the memorizing": [65535, 0], "before tom bent all his energies to the memorizing of": [65535, 0], "tom bent all his energies to the memorizing of five": [65535, 0], "bent all his energies to the memorizing of five verses": [65535, 0], "all his energies to the memorizing of five verses and": [65535, 0], "his energies to the memorizing of five verses and he": [65535, 0], "energies to the memorizing of five verses and he chose": [65535, 0], "to the memorizing of five verses and he chose part": [65535, 0], "the memorizing of five verses and he chose part of": [65535, 0], "memorizing of five verses and he chose part of the": [65535, 0], "of five verses and he chose part of the sermon": [65535, 0], "five verses and he chose part of the sermon on": [65535, 0], "verses and he chose part of the sermon on the": [65535, 0], "and he chose part of the sermon on the mount": [65535, 0], "he chose part of the sermon on the mount because": [65535, 0], "chose part of the sermon on the mount because he": [65535, 0], "part of the sermon on the mount because he could": [65535, 0], "of the sermon on the mount because he could find": [65535, 0], "the sermon on the mount because he could find no": [65535, 0], "sermon on the mount because he could find no verses": [65535, 0], "on the mount because he could find no verses that": [65535, 0], "the mount because he could find no verses that were": [65535, 0], "mount because he could find no verses that were shorter": [65535, 0], "because he could find no verses that were shorter at": [65535, 0], "he could find no verses that were shorter at the": [65535, 0], "could find no verses that were shorter at the end": [65535, 0], "find no verses that were shorter at the end of": [65535, 0], "no verses that were shorter at the end of half": [65535, 0], "verses that were shorter at the end of half an": [65535, 0], "that were shorter at the end of half an hour": [65535, 0], "were shorter at the end of half an hour tom": [65535, 0], "shorter at the end of half an hour tom had": [65535, 0], "at the end of half an hour tom had a": [65535, 0], "the end of half an hour tom had a vague": [65535, 0], "end of half an hour tom had a vague general": [65535, 0], "of half an hour tom had a vague general idea": [65535, 0], "half an hour tom had a vague general idea of": [65535, 0], "an hour tom had a vague general idea of his": [65535, 0], "hour tom had a vague general idea of his lesson": [65535, 0], "tom had a vague general idea of his lesson but": [65535, 0], "had a vague general idea of his lesson but no": [65535, 0], "a vague general idea of his lesson but no more": [65535, 0], "vague general idea of his lesson but no more for": [65535, 0], "general idea of his lesson but no more for his": [65535, 0], "idea of his lesson but no more for his mind": [65535, 0], "of his lesson but no more for his mind was": [65535, 0], "his lesson but no more for his mind was traversing": [65535, 0], "lesson but no more for his mind was traversing the": [65535, 0], "but no more for his mind was traversing the whole": [65535, 0], "no more for his mind was traversing the whole field": [65535, 0], "more for his mind was traversing the whole field of": [65535, 0], "for his mind was traversing the whole field of human": [65535, 0], "his mind was traversing the whole field of human thought": [65535, 0], "mind was traversing the whole field of human thought and": [65535, 0], "was traversing the whole field of human thought and his": [65535, 0], "traversing the whole field of human thought and his hands": [65535, 0], "the whole field of human thought and his hands were": [65535, 0], "whole field of human thought and his hands were busy": [65535, 0], "field of human thought and his hands were busy with": [65535, 0], "of human thought and his hands were busy with distracting": [65535, 0], "human thought and his hands were busy with distracting recreations": [65535, 0], "thought and his hands were busy with distracting recreations mary": [65535, 0], "and his hands were busy with distracting recreations mary took": [65535, 0], "his hands were busy with distracting recreations mary took his": [65535, 0], "hands were busy with distracting recreations mary took his book": [65535, 0], "were busy with distracting recreations mary took his book to": [65535, 0], "busy with distracting recreations mary took his book to hear": [65535, 0], "with distracting recreations mary took his book to hear him": [65535, 0], "distracting recreations mary took his book to hear him recite": [65535, 0], "recreations mary took his book to hear him recite and": [65535, 0], "mary took his book to hear him recite and he": [65535, 0], "took his book to hear him recite and he tried": [65535, 0], "his book to hear him recite and he tried to": [65535, 0], "book to hear him recite and he tried to find": [65535, 0], "to hear him recite and he tried to find his": [65535, 0], "hear him recite and he tried to find his way": [65535, 0], "him recite and he tried to find his way through": [65535, 0], "recite and he tried to find his way through the": [65535, 0], "and he tried to find his way through the fog": [65535, 0], "he tried to find his way through the fog blessed": [65535, 0], "tried to find his way through the fog blessed are": [65535, 0], "to find his way through the fog blessed are the": [65535, 0], "find his way through the fog blessed are the a": [65535, 0], "his way through the fog blessed are the a a": [65535, 0], "way through the fog blessed are the a a poor": [65535, 0], "through the fog blessed are the a a poor yes": [65535, 0], "the fog blessed are the a a poor yes poor": [65535, 0], "fog blessed are the a a poor yes poor blessed": [65535, 0], "blessed are the a a poor yes poor blessed are": [65535, 0], "are the a a poor yes poor blessed are the": [65535, 0], "the a a poor yes poor blessed are the poor": [65535, 0], "a a poor yes poor blessed are the poor a": [65535, 0], "a poor yes poor blessed are the poor a a": [65535, 0], "poor yes poor blessed are the poor a a in": [65535, 0], "yes poor blessed are the poor a a in spirit": [65535, 0], "poor blessed are the poor a a in spirit in": [65535, 0], "blessed are the poor a a in spirit in spirit": [65535, 0], "are the poor a a in spirit in spirit blessed": [65535, 0], "the poor a a in spirit in spirit blessed are": [65535, 0], "poor a a in spirit in spirit blessed are the": [65535, 0], "a a in spirit in spirit blessed are the poor": [65535, 0], "a in spirit in spirit blessed are the poor in": [65535, 0], "in spirit in spirit blessed are the poor in spirit": [65535, 0], "spirit in spirit blessed are the poor in spirit for": [65535, 0], "in spirit blessed are the poor in spirit for they": [65535, 0], "spirit blessed are the poor in spirit for they they": [65535, 0], "blessed are the poor in spirit for they they theirs": [65535, 0], "are the poor in spirit for they they theirs for": [65535, 0], "the poor in spirit for they they theirs for theirs": [65535, 0], "poor in spirit for they they theirs for theirs blessed": [65535, 0], "in spirit for they they theirs for theirs blessed are": [65535, 0], "spirit for they they theirs for theirs blessed are the": [65535, 0], "for they they theirs for theirs blessed are the poor": [65535, 0], "they they theirs for theirs blessed are the poor in": [65535, 0], "they theirs for theirs blessed are the poor in spirit": [65535, 0], "theirs for theirs blessed are the poor in spirit for": [65535, 0], "for theirs blessed are the poor in spirit for theirs": [65535, 0], "theirs blessed are the poor in spirit for theirs is": [65535, 0], "blessed are the poor in spirit for theirs is the": [65535, 0], "are the poor in spirit for theirs is the kingdom": [65535, 0], "the poor in spirit for theirs is the kingdom of": [65535, 0], "poor in spirit for theirs is the kingdom of heaven": [65535, 0], "in spirit for theirs is the kingdom of heaven blessed": [65535, 0], "spirit for theirs is the kingdom of heaven blessed are": [65535, 0], "for theirs is the kingdom of heaven blessed are they": [65535, 0], "theirs is the kingdom of heaven blessed are they that": [65535, 0], "is the kingdom of heaven blessed are they that mourn": [65535, 0], "the kingdom of heaven blessed are they that mourn for": [65535, 0], "kingdom of heaven blessed are they that mourn for they": [65535, 0], "of heaven blessed are they that mourn for they they": [65535, 0], "heaven blessed are they that mourn for they they sh": [65535, 0], "blessed are they that mourn for they they sh for": [65535, 0], "are they that mourn for they they sh for they": [65535, 0], "they that mourn for they they sh for they a": [65535, 0], "that mourn for they they sh for they a s": [65535, 0], "mourn for they they sh for they a s h": [65535, 0], "for they they sh for they a s h a": [65535, 0], "they they sh for they a s h a for": [65535, 0], "they sh for they a s h a for they": [65535, 0], "sh for they a s h a for they s": [65535, 0], "for they a s h a for they s h": [65535, 0], "they a s h a for they s h oh": [65535, 0], "a s h a for they s h oh i": [65535, 0], "s h a for they s h oh i don't": [65535, 0], "h a for they s h oh i don't know": [65535, 0], "a for they s h oh i don't know what": [65535, 0], "for they s h oh i don't know what it": [65535, 0], "they s h oh i don't know what it is": [65535, 0], "s h oh i don't know what it is shall": [65535, 0], "h oh i don't know what it is shall oh": [65535, 0], "oh i don't know what it is shall oh shall": [65535, 0], "i don't know what it is shall oh shall for": [65535, 0], "don't know what it is shall oh shall for they": [65535, 0], "know what it is shall oh shall for they shall": [65535, 0], "what it is shall oh shall for they shall for": [65535, 0], "it is shall oh shall for they shall for they": [65535, 0], "is shall oh shall for they shall for they shall": [65535, 0], "shall oh shall for they shall for they shall a": [65535, 0], "oh shall for they shall for they shall a a": [65535, 0], "shall for they shall for they shall a a shall": [65535, 0], "for they shall for they shall a a shall mourn": [65535, 0], "they shall for they shall a a shall mourn a": [65535, 0], "shall for they shall a a shall mourn a a": [65535, 0], "for they shall a a shall mourn a a blessed": [65535, 0], "they shall a a shall mourn a a blessed are": [65535, 0], "shall a a shall mourn a a blessed are they": [65535, 0], "a a shall mourn a a blessed are they that": [65535, 0], "a shall mourn a a blessed are they that shall": [65535, 0], "shall mourn a a blessed are they that shall they": [65535, 0], "mourn a a blessed are they that shall they that": [65535, 0], "a a blessed are they that shall they that a": [65535, 0], "a blessed are they that shall they that a they": [65535, 0], "blessed are they that shall they that a they that": [65535, 0], "are they that shall they that a they that shall": [65535, 0], "they that shall they that a they that shall mourn": [65535, 0], "that shall they that a they that shall mourn for": [65535, 0], "shall they that a they that shall mourn for they": [65535, 0], "they that a they that shall mourn for they shall": [65535, 0], "that a they that shall mourn for they shall a": [65535, 0], "a they that shall mourn for they shall a shall": [65535, 0], "they that shall mourn for they shall a shall what": [65535, 0], "that shall mourn for they shall a shall what why": [65535, 0], "shall mourn for they shall a shall what why don't": [65535, 0], "mourn for they shall a shall what why don't you": [65535, 0], "for they shall a shall what why don't you tell": [65535, 0], "they shall a shall what why don't you tell me": [65535, 0], "shall a shall what why don't you tell me mary": [65535, 0], "a shall what why don't you tell me mary what": [65535, 0], "shall what why don't you tell me mary what do": [65535, 0], "what why don't you tell me mary what do you": [65535, 0], "why don't you tell me mary what do you want": [65535, 0], "don't you tell me mary what do you want to": [65535, 0], "you tell me mary what do you want to be": [65535, 0], "tell me mary what do you want to be so": [65535, 0], "me mary what do you want to be so mean": [65535, 0], "mary what do you want to be so mean for": [65535, 0], "what do you want to be so mean for oh": [65535, 0], "do you want to be so mean for oh tom": [65535, 0], "you want to be so mean for oh tom you": [65535, 0], "want to be so mean for oh tom you poor": [65535, 0], "to be so mean for oh tom you poor thick": [65535, 0], "be so mean for oh tom you poor thick headed": [65535, 0], "so mean for oh tom you poor thick headed thing": [65535, 0], "mean for oh tom you poor thick headed thing i'm": [65535, 0], "for oh tom you poor thick headed thing i'm not": [65535, 0], "oh tom you poor thick headed thing i'm not teasing": [65535, 0], "tom you poor thick headed thing i'm not teasing you": [65535, 0], "you poor thick headed thing i'm not teasing you i": [65535, 0], "poor thick headed thing i'm not teasing you i wouldn't": [65535, 0], "thick headed thing i'm not teasing you i wouldn't do": [65535, 0], "headed thing i'm not teasing you i wouldn't do that": [65535, 0], "thing i'm not teasing you i wouldn't do that you": [65535, 0], "i'm not teasing you i wouldn't do that you must": [65535, 0], "not teasing you i wouldn't do that you must go": [65535, 0], "teasing you i wouldn't do that you must go and": [65535, 0], "you i wouldn't do that you must go and learn": [65535, 0], "i wouldn't do that you must go and learn it": [65535, 0], "wouldn't do that you must go and learn it again": [65535, 0], "do that you must go and learn it again don't": [65535, 0], "that you must go and learn it again don't you": [65535, 0], "you must go and learn it again don't you be": [65535, 0], "must go and learn it again don't you be discouraged": [65535, 0], "go and learn it again don't you be discouraged tom": [65535, 0], "and learn it again don't you be discouraged tom you'll": [65535, 0], "learn it again don't you be discouraged tom you'll manage": [65535, 0], "it again don't you be discouraged tom you'll manage it": [65535, 0], "again don't you be discouraged tom you'll manage it and": [65535, 0], "don't you be discouraged tom you'll manage it and if": [65535, 0], "you be discouraged tom you'll manage it and if you": [65535, 0], "be discouraged tom you'll manage it and if you do": [65535, 0], "discouraged tom you'll manage it and if you do i'll": [65535, 0], "tom you'll manage it and if you do i'll give": [65535, 0], "you'll manage it and if you do i'll give you": [65535, 0], "manage it and if you do i'll give you something": [65535, 0], "it and if you do i'll give you something ever": [65535, 0], "and if you do i'll give you something ever so": [65535, 0], "if you do i'll give you something ever so nice": [65535, 0], "you do i'll give you something ever so nice there": [65535, 0], "do i'll give you something ever so nice there now": [65535, 0], "i'll give you something ever so nice there now that's": [65535, 0], "give you something ever so nice there now that's a": [65535, 0], "you something ever so nice there now that's a good": [65535, 0], "something ever so nice there now that's a good boy": [65535, 0], "ever so nice there now that's a good boy all": [65535, 0], "so nice there now that's a good boy all right": [65535, 0], "nice there now that's a good boy all right what": [65535, 0], "there now that's a good boy all right what is": [65535, 0], "now that's a good boy all right what is it": [65535, 0], "that's a good boy all right what is it mary": [65535, 0], "a good boy all right what is it mary tell": [65535, 0], "good boy all right what is it mary tell me": [65535, 0], "boy all right what is it mary tell me what": [65535, 0], "all right what is it mary tell me what it": [65535, 0], "right what is it mary tell me what it is": [65535, 0], "what is it mary tell me what it is never": [65535, 0], "is it mary tell me what it is never you": [65535, 0], "it mary tell me what it is never you mind": [65535, 0], "mary tell me what it is never you mind tom": [65535, 0], "tell me what it is never you mind tom you": [65535, 0], "me what it is never you mind tom you know": [65535, 0], "what it is never you mind tom you know if": [65535, 0], "it is never you mind tom you know if i": [65535, 0], "is never you mind tom you know if i say": [65535, 0], "never you mind tom you know if i say it's": [65535, 0], "you mind tom you know if i say it's nice": [65535, 0], "mind tom you know if i say it's nice it": [65535, 0], "tom you know if i say it's nice it is": [65535, 0], "you know if i say it's nice it is nice": [65535, 0], "know if i say it's nice it is nice you": [65535, 0], "if i say it's nice it is nice you bet": [65535, 0], "i say it's nice it is nice you bet you": [65535, 0], "say it's nice it is nice you bet you that's": [65535, 0], "it's nice it is nice you bet you that's so": [65535, 0], "nice it is nice you bet you that's so mary": [65535, 0], "it is nice you bet you that's so mary all": [65535, 0], "is nice you bet you that's so mary all right": [65535, 0], "nice you bet you that's so mary all right i'll": [65535, 0], "you bet you that's so mary all right i'll tackle": [65535, 0], "bet you that's so mary all right i'll tackle it": [65535, 0], "you that's so mary all right i'll tackle it again": [65535, 0], "that's so mary all right i'll tackle it again and": [65535, 0], "so mary all right i'll tackle it again and he": [65535, 0], "mary all right i'll tackle it again and he did": [65535, 0], "all right i'll tackle it again and he did tackle": [65535, 0], "right i'll tackle it again and he did tackle it": [65535, 0], "i'll tackle it again and he did tackle it again": [65535, 0], "tackle it again and he did tackle it again and": [65535, 0], "it again and he did tackle it again and under": [65535, 0], "again and he did tackle it again and under the": [65535, 0], "and he did tackle it again and under the double": [65535, 0], "he did tackle it again and under the double pressure": [65535, 0], "did tackle it again and under the double pressure of": [65535, 0], "tackle it again and under the double pressure of curiosity": [65535, 0], "it again and under the double pressure of curiosity and": [65535, 0], "again and under the double pressure of curiosity and prospective": [65535, 0], "and under the double pressure of curiosity and prospective gain": [65535, 0], "under the double pressure of curiosity and prospective gain he": [65535, 0], "the double pressure of curiosity and prospective gain he did": [65535, 0], "double pressure of curiosity and prospective gain he did it": [65535, 0], "pressure of curiosity and prospective gain he did it with": [65535, 0], "of curiosity and prospective gain he did it with such": [65535, 0], "curiosity and prospective gain he did it with such spirit": [65535, 0], "and prospective gain he did it with such spirit that": [65535, 0], "prospective gain he did it with such spirit that he": [65535, 0], "gain he did it with such spirit that he accomplished": [65535, 0], "he did it with such spirit that he accomplished a": [65535, 0], "did it with such spirit that he accomplished a shining": [65535, 0], "it with such spirit that he accomplished a shining success": [65535, 0], "with such spirit that he accomplished a shining success mary": [65535, 0], "such spirit that he accomplished a shining success mary gave": [65535, 0], "spirit that he accomplished a shining success mary gave him": [65535, 0], "that he accomplished a shining success mary gave him a": [65535, 0], "he accomplished a shining success mary gave him a brand": [65535, 0], "accomplished a shining success mary gave him a brand new": [65535, 0], "a shining success mary gave him a brand new barlow": [65535, 0], "shining success mary gave him a brand new barlow knife": [65535, 0], "success mary gave him a brand new barlow knife worth": [65535, 0], "mary gave him a brand new barlow knife worth twelve": [65535, 0], "gave him a brand new barlow knife worth twelve and": [65535, 0], "him a brand new barlow knife worth twelve and a": [65535, 0], "a brand new barlow knife worth twelve and a half": [65535, 0], "brand new barlow knife worth twelve and a half cents": [65535, 0], "new barlow knife worth twelve and a half cents and": [65535, 0], "barlow knife worth twelve and a half cents and the": [65535, 0], "knife worth twelve and a half cents and the convulsion": [65535, 0], "worth twelve and a half cents and the convulsion of": [65535, 0], "twelve and a half cents and the convulsion of delight": [65535, 0], "and a half cents and the convulsion of delight that": [65535, 0], "a half cents and the convulsion of delight that swept": [65535, 0], "half cents and the convulsion of delight that swept his": [65535, 0], "cents and the convulsion of delight that swept his system": [65535, 0], "and the convulsion of delight that swept his system shook": [65535, 0], "the convulsion of delight that swept his system shook him": [65535, 0], "convulsion of delight that swept his system shook him to": [65535, 0], "of delight that swept his system shook him to his": [65535, 0], "delight that swept his system shook him to his foundations": [65535, 0], "that swept his system shook him to his foundations true": [65535, 0], "swept his system shook him to his foundations true the": [65535, 0], "his system shook him to his foundations true the knife": [65535, 0], "system shook him to his foundations true the knife would": [65535, 0], "shook him to his foundations true the knife would not": [65535, 0], "him to his foundations true the knife would not cut": [65535, 0], "to his foundations true the knife would not cut anything": [65535, 0], "his foundations true the knife would not cut anything but": [65535, 0], "foundations true the knife would not cut anything but it": [65535, 0], "true the knife would not cut anything but it was": [65535, 0], "the knife would not cut anything but it was a": [65535, 0], "knife would not cut anything but it was a sure": [65535, 0], "would not cut anything but it was a sure enough": [65535, 0], "not cut anything but it was a sure enough barlow": [65535, 0], "cut anything but it was a sure enough barlow and": [65535, 0], "anything but it was a sure enough barlow and there": [65535, 0], "but it was a sure enough barlow and there was": [65535, 0], "it was a sure enough barlow and there was inconceivable": [65535, 0], "was a sure enough barlow and there was inconceivable grandeur": [65535, 0], "a sure enough barlow and there was inconceivable grandeur in": [65535, 0], "sure enough barlow and there was inconceivable grandeur in that": [65535, 0], "enough barlow and there was inconceivable grandeur in that though": [65535, 0], "barlow and there was inconceivable grandeur in that though where": [65535, 0], "and there was inconceivable grandeur in that though where the": [65535, 0], "there was inconceivable grandeur in that though where the western": [65535, 0], "was inconceivable grandeur in that though where the western boys": [65535, 0], "inconceivable grandeur in that though where the western boys ever": [65535, 0], "grandeur in that though where the western boys ever got": [65535, 0], "in that though where the western boys ever got the": [65535, 0], "that though where the western boys ever got the idea": [65535, 0], "though where the western boys ever got the idea that": [65535, 0], "where the western boys ever got the idea that such": [65535, 0], "the western boys ever got the idea that such a": [65535, 0], "western boys ever got the idea that such a weapon": [65535, 0], "boys ever got the idea that such a weapon could": [65535, 0], "ever got the idea that such a weapon could possibly": [65535, 0], "got the idea that such a weapon could possibly be": [65535, 0], "the idea that such a weapon could possibly be counterfeited": [65535, 0], "idea that such a weapon could possibly be counterfeited to": [65535, 0], "that such a weapon could possibly be counterfeited to its": [65535, 0], "such a weapon could possibly be counterfeited to its injury": [65535, 0], "a weapon could possibly be counterfeited to its injury is": [65535, 0], "weapon could possibly be counterfeited to its injury is an": [65535, 0], "could possibly be counterfeited to its injury is an imposing": [65535, 0], "possibly be counterfeited to its injury is an imposing mystery": [65535, 0], "be counterfeited to its injury is an imposing mystery and": [65535, 0], "counterfeited to its injury is an imposing mystery and will": [65535, 0], "to its injury is an imposing mystery and will always": [65535, 0], "its injury is an imposing mystery and will always remain": [65535, 0], "injury is an imposing mystery and will always remain so": [65535, 0], "is an imposing mystery and will always remain so perhaps": [65535, 0], "an imposing mystery and will always remain so perhaps tom": [65535, 0], "imposing mystery and will always remain so perhaps tom contrived": [65535, 0], "mystery and will always remain so perhaps tom contrived to": [65535, 0], "and will always remain so perhaps tom contrived to scarify": [65535, 0], "will always remain so perhaps tom contrived to scarify the": [65535, 0], "always remain so perhaps tom contrived to scarify the cupboard": [65535, 0], "remain so perhaps tom contrived to scarify the cupboard with": [65535, 0], "so perhaps tom contrived to scarify the cupboard with it": [65535, 0], "perhaps tom contrived to scarify the cupboard with it and": [65535, 0], "tom contrived to scarify the cupboard with it and was": [65535, 0], "contrived to scarify the cupboard with it and was arranging": [65535, 0], "to scarify the cupboard with it and was arranging to": [65535, 0], "scarify the cupboard with it and was arranging to begin": [65535, 0], "the cupboard with it and was arranging to begin on": [65535, 0], "cupboard with it and was arranging to begin on the": [65535, 0], "with it and was arranging to begin on the bureau": [65535, 0], "it and was arranging to begin on the bureau when": [65535, 0], "and was arranging to begin on the bureau when he": [65535, 0], "was arranging to begin on the bureau when he was": [65535, 0], "arranging to begin on the bureau when he was called": [65535, 0], "to begin on the bureau when he was called off": [65535, 0], "begin on the bureau when he was called off to": [65535, 0], "on the bureau when he was called off to dress": [65535, 0], "the bureau when he was called off to dress for": [65535, 0], "bureau when he was called off to dress for sunday": [65535, 0], "when he was called off to dress for sunday school": [65535, 0], "he was called off to dress for sunday school mary": [65535, 0], "was called off to dress for sunday school mary gave": [65535, 0], "called off to dress for sunday school mary gave him": [65535, 0], "off to dress for sunday school mary gave him a": [65535, 0], "to dress for sunday school mary gave him a tin": [65535, 0], "dress for sunday school mary gave him a tin basin": [65535, 0], "for sunday school mary gave him a tin basin of": [65535, 0], "sunday school mary gave him a tin basin of water": [65535, 0], "school mary gave him a tin basin of water and": [65535, 0], "mary gave him a tin basin of water and a": [65535, 0], "gave him a tin basin of water and a piece": [65535, 0], "him a tin basin of water and a piece of": [65535, 0], "a tin basin of water and a piece of soap": [65535, 0], "tin basin of water and a piece of soap and": [65535, 0], "basin of water and a piece of soap and he": [65535, 0], "of water and a piece of soap and he went": [65535, 0], "water and a piece of soap and he went outside": [65535, 0], "and a piece of soap and he went outside the": [65535, 0], "a piece of soap and he went outside the door": [65535, 0], "piece of soap and he went outside the door and": [65535, 0], "of soap and he went outside the door and set": [65535, 0], "soap and he went outside the door and set the": [65535, 0], "and he went outside the door and set the basin": [65535, 0], "he went outside the door and set the basin on": [65535, 0], "went outside the door and set the basin on a": [65535, 0], "outside the door and set the basin on a little": [65535, 0], "the door and set the basin on a little bench": [65535, 0], "door and set the basin on a little bench there": [65535, 0], "and set the basin on a little bench there then": [65535, 0], "set the basin on a little bench there then he": [65535, 0], "the basin on a little bench there then he dipped": [65535, 0], "basin on a little bench there then he dipped the": [65535, 0], "on a little bench there then he dipped the soap": [65535, 0], "a little bench there then he dipped the soap in": [65535, 0], "little bench there then he dipped the soap in the": [65535, 0], "bench there then he dipped the soap in the water": [65535, 0], "there then he dipped the soap in the water and": [65535, 0], "then he dipped the soap in the water and laid": [65535, 0], "he dipped the soap in the water and laid it": [65535, 0], "dipped the soap in the water and laid it down": [65535, 0], "the soap in the water and laid it down turned": [65535, 0], "soap in the water and laid it down turned up": [65535, 0], "in the water and laid it down turned up his": [65535, 0], "the water and laid it down turned up his sleeves": [65535, 0], "water and laid it down turned up his sleeves poured": [65535, 0], "and laid it down turned up his sleeves poured out": [65535, 0], "laid it down turned up his sleeves poured out the": [65535, 0], "it down turned up his sleeves poured out the water": [65535, 0], "down turned up his sleeves poured out the water on": [65535, 0], "turned up his sleeves poured out the water on the": [65535, 0], "up his sleeves poured out the water on the ground": [65535, 0], "his sleeves poured out the water on the ground gently": [65535, 0], "sleeves poured out the water on the ground gently and": [65535, 0], "poured out the water on the ground gently and then": [65535, 0], "out the water on the ground gently and then entered": [65535, 0], "the water on the ground gently and then entered the": [65535, 0], "water on the ground gently and then entered the kitchen": [65535, 0], "on the ground gently and then entered the kitchen and": [65535, 0], "the ground gently and then entered the kitchen and began": [65535, 0], "ground gently and then entered the kitchen and began to": [65535, 0], "gently and then entered the kitchen and began to wipe": [65535, 0], "and then entered the kitchen and began to wipe his": [65535, 0], "then entered the kitchen and began to wipe his face": [65535, 0], "entered the kitchen and began to wipe his face diligently": [65535, 0], "the kitchen and began to wipe his face diligently on": [65535, 0], "kitchen and began to wipe his face diligently on the": [65535, 0], "and began to wipe his face diligently on the towel": [65535, 0], "began to wipe his face diligently on the towel behind": [65535, 0], "to wipe his face diligently on the towel behind the": [65535, 0], "wipe his face diligently on the towel behind the door": [65535, 0], "his face diligently on the towel behind the door but": [65535, 0], "face diligently on the towel behind the door but mary": [65535, 0], "diligently on the towel behind the door but mary removed": [65535, 0], "on the towel behind the door but mary removed the": [65535, 0], "the towel behind the door but mary removed the towel": [65535, 0], "towel behind the door but mary removed the towel and": [65535, 0], "behind the door but mary removed the towel and said": [65535, 0], "the door but mary removed the towel and said now": [65535, 0], "door but mary removed the towel and said now ain't": [65535, 0], "but mary removed the towel and said now ain't you": [65535, 0], "mary removed the towel and said now ain't you ashamed": [65535, 0], "removed the towel and said now ain't you ashamed tom": [65535, 0], "the towel and said now ain't you ashamed tom you": [65535, 0], "towel and said now ain't you ashamed tom you mustn't": [65535, 0], "and said now ain't you ashamed tom you mustn't be": [65535, 0], "said now ain't you ashamed tom you mustn't be so": [65535, 0], "now ain't you ashamed tom you mustn't be so bad": [65535, 0], "ain't you ashamed tom you mustn't be so bad water": [65535, 0], "you ashamed tom you mustn't be so bad water won't": [65535, 0], "ashamed tom you mustn't be so bad water won't hurt": [65535, 0], "tom you mustn't be so bad water won't hurt you": [65535, 0], "you mustn't be so bad water won't hurt you tom": [65535, 0], "mustn't be so bad water won't hurt you tom was": [65535, 0], "be so bad water won't hurt you tom was a": [65535, 0], "so bad water won't hurt you tom was a trifle": [65535, 0], "bad water won't hurt you tom was a trifle disconcerted": [65535, 0], "water won't hurt you tom was a trifle disconcerted the": [65535, 0], "won't hurt you tom was a trifle disconcerted the basin": [65535, 0], "hurt you tom was a trifle disconcerted the basin was": [65535, 0], "you tom was a trifle disconcerted the basin was refilled": [65535, 0], "tom was a trifle disconcerted the basin was refilled and": [65535, 0], "was a trifle disconcerted the basin was refilled and this": [65535, 0], "a trifle disconcerted the basin was refilled and this time": [65535, 0], "trifle disconcerted the basin was refilled and this time he": [65535, 0], "disconcerted the basin was refilled and this time he stood": [65535, 0], "the basin was refilled and this time he stood over": [65535, 0], "basin was refilled and this time he stood over it": [65535, 0], "was refilled and this time he stood over it a": [65535, 0], "refilled and this time he stood over it a little": [65535, 0], "and this time he stood over it a little while": [65535, 0], "this time he stood over it a little while gathering": [65535, 0], "time he stood over it a little while gathering resolution": [65535, 0], "he stood over it a little while gathering resolution took": [65535, 0], "stood over it a little while gathering resolution took in": [65535, 0], "over it a little while gathering resolution took in a": [65535, 0], "it a little while gathering resolution took in a big": [65535, 0], "a little while gathering resolution took in a big breath": [65535, 0], "little while gathering resolution took in a big breath and": [65535, 0], "while gathering resolution took in a big breath and began": [65535, 0], "gathering resolution took in a big breath and began when": [65535, 0], "resolution took in a big breath and began when he": [65535, 0], "took in a big breath and began when he entered": [65535, 0], "in a big breath and began when he entered the": [65535, 0], "a big breath and began when he entered the kitchen": [65535, 0], "big breath and began when he entered the kitchen presently": [65535, 0], "breath and began when he entered the kitchen presently with": [65535, 0], "and began when he entered the kitchen presently with both": [65535, 0], "began when he entered the kitchen presently with both eyes": [65535, 0], "when he entered the kitchen presently with both eyes shut": [65535, 0], "he entered the kitchen presently with both eyes shut and": [65535, 0], "entered the kitchen presently with both eyes shut and groping": [65535, 0], "the kitchen presently with both eyes shut and groping for": [65535, 0], "kitchen presently with both eyes shut and groping for the": [65535, 0], "presently with both eyes shut and groping for the towel": [65535, 0], "with both eyes shut and groping for the towel with": [65535, 0], "both eyes shut and groping for the towel with his": [65535, 0], "eyes shut and groping for the towel with his hands": [65535, 0], "shut and groping for the towel with his hands an": [65535, 0], "and groping for the towel with his hands an honorable": [65535, 0], "groping for the towel with his hands an honorable testimony": [65535, 0], "for the towel with his hands an honorable testimony of": [65535, 0], "the towel with his hands an honorable testimony of suds": [65535, 0], "towel with his hands an honorable testimony of suds and": [65535, 0], "with his hands an honorable testimony of suds and water": [65535, 0], "his hands an honorable testimony of suds and water was": [65535, 0], "hands an honorable testimony of suds and water was dripping": [65535, 0], "an honorable testimony of suds and water was dripping from": [65535, 0], "honorable testimony of suds and water was dripping from his": [65535, 0], "testimony of suds and water was dripping from his face": [65535, 0], "of suds and water was dripping from his face but": [65535, 0], "suds and water was dripping from his face but when": [65535, 0], "and water was dripping from his face but when he": [65535, 0], "water was dripping from his face but when he emerged": [65535, 0], "was dripping from his face but when he emerged from": [65535, 0], "dripping from his face but when he emerged from the": [65535, 0], "from his face but when he emerged from the towel": [65535, 0], "his face but when he emerged from the towel he": [65535, 0], "face but when he emerged from the towel he was": [65535, 0], "but when he emerged from the towel he was not": [65535, 0], "when he emerged from the towel he was not yet": [65535, 0], "he emerged from the towel he was not yet satisfactory": [65535, 0], "emerged from the towel he was not yet satisfactory for": [65535, 0], "from the towel he was not yet satisfactory for the": [65535, 0], "the towel he was not yet satisfactory for the clean": [65535, 0], "towel he was not yet satisfactory for the clean territory": [65535, 0], "he was not yet satisfactory for the clean territory stopped": [65535, 0], "was not yet satisfactory for the clean territory stopped short": [65535, 0], "not yet satisfactory for the clean territory stopped short at": [65535, 0], "yet satisfactory for the clean territory stopped short at his": [65535, 0], "satisfactory for the clean territory stopped short at his chin": [65535, 0], "for the clean territory stopped short at his chin and": [65535, 0], "the clean territory stopped short at his chin and his": [65535, 0], "clean territory stopped short at his chin and his jaws": [65535, 0], "territory stopped short at his chin and his jaws like": [65535, 0], "stopped short at his chin and his jaws like a": [65535, 0], "short at his chin and his jaws like a mask": [65535, 0], "at his chin and his jaws like a mask below": [65535, 0], "his chin and his jaws like a mask below and": [65535, 0], "chin and his jaws like a mask below and beyond": [65535, 0], "and his jaws like a mask below and beyond this": [65535, 0], "his jaws like a mask below and beyond this line": [65535, 0], "jaws like a mask below and beyond this line there": [65535, 0], "like a mask below and beyond this line there was": [65535, 0], "a mask below and beyond this line there was a": [65535, 0], "mask below and beyond this line there was a dark": [65535, 0], "below and beyond this line there was a dark expanse": [65535, 0], "and beyond this line there was a dark expanse of": [65535, 0], "beyond this line there was a dark expanse of unirrigated": [65535, 0], "this line there was a dark expanse of unirrigated soil": [65535, 0], "line there was a dark expanse of unirrigated soil that": [65535, 0], "there was a dark expanse of unirrigated soil that spread": [65535, 0], "was a dark expanse of unirrigated soil that spread downward": [65535, 0], "a dark expanse of unirrigated soil that spread downward in": [65535, 0], "dark expanse of unirrigated soil that spread downward in front": [65535, 0], "expanse of unirrigated soil that spread downward in front and": [65535, 0], "of unirrigated soil that spread downward in front and backward": [65535, 0], "unirrigated soil that spread downward in front and backward around": [65535, 0], "soil that spread downward in front and backward around his": [65535, 0], "that spread downward in front and backward around his neck": [65535, 0], "spread downward in front and backward around his neck mary": [65535, 0], "downward in front and backward around his neck mary took": [65535, 0], "in front and backward around his neck mary took him": [65535, 0], "front and backward around his neck mary took him in": [65535, 0], "and backward around his neck mary took him in hand": [65535, 0], "backward around his neck mary took him in hand and": [65535, 0], "around his neck mary took him in hand and when": [65535, 0], "his neck mary took him in hand and when she": [65535, 0], "neck mary took him in hand and when she was": [65535, 0], "mary took him in hand and when she was done": [65535, 0], "took him in hand and when she was done with": [65535, 0], "him in hand and when she was done with him": [65535, 0], "in hand and when she was done with him he": [65535, 0], "hand and when she was done with him he was": [65535, 0], "and when she was done with him he was a": [65535, 0], "when she was done with him he was a man": [65535, 0], "she was done with him he was a man and": [65535, 0], "was done with him he was a man and a": [65535, 0], "done with him he was a man and a brother": [65535, 0], "with him he was a man and a brother without": [65535, 0], "him he was a man and a brother without distinction": [65535, 0], "he was a man and a brother without distinction of": [65535, 0], "was a man and a brother without distinction of color": [65535, 0], "a man and a brother without distinction of color and": [65535, 0], "man and a brother without distinction of color and his": [65535, 0], "and a brother without distinction of color and his saturated": [65535, 0], "a brother without distinction of color and his saturated hair": [65535, 0], "brother without distinction of color and his saturated hair was": [65535, 0], "without distinction of color and his saturated hair was neatly": [65535, 0], "distinction of color and his saturated hair was neatly brushed": [65535, 0], "of color and his saturated hair was neatly brushed and": [65535, 0], "color and his saturated hair was neatly brushed and its": [65535, 0], "and his saturated hair was neatly brushed and its short": [65535, 0], "his saturated hair was neatly brushed and its short curls": [65535, 0], "saturated hair was neatly brushed and its short curls wrought": [65535, 0], "hair was neatly brushed and its short curls wrought into": [65535, 0], "was neatly brushed and its short curls wrought into a": [65535, 0], "neatly brushed and its short curls wrought into a dainty": [65535, 0], "brushed and its short curls wrought into a dainty and": [65535, 0], "and its short curls wrought into a dainty and symmetrical": [65535, 0], "its short curls wrought into a dainty and symmetrical general": [65535, 0], "short curls wrought into a dainty and symmetrical general effect": [65535, 0], "curls wrought into a dainty and symmetrical general effect he": [65535, 0], "wrought into a dainty and symmetrical general effect he privately": [65535, 0], "into a dainty and symmetrical general effect he privately smoothed": [65535, 0], "a dainty and symmetrical general effect he privately smoothed out": [65535, 0], "dainty and symmetrical general effect he privately smoothed out the": [65535, 0], "and symmetrical general effect he privately smoothed out the curls": [65535, 0], "symmetrical general effect he privately smoothed out the curls with": [65535, 0], "general effect he privately smoothed out the curls with labor": [65535, 0], "effect he privately smoothed out the curls with labor and": [65535, 0], "he privately smoothed out the curls with labor and difficulty": [65535, 0], "privately smoothed out the curls with labor and difficulty and": [65535, 0], "smoothed out the curls with labor and difficulty and plastered": [65535, 0], "out the curls with labor and difficulty and plastered his": [65535, 0], "the curls with labor and difficulty and plastered his hair": [65535, 0], "curls with labor and difficulty and plastered his hair close": [65535, 0], "with labor and difficulty and plastered his hair close down": [65535, 0], "labor and difficulty and plastered his hair close down to": [65535, 0], "and difficulty and plastered his hair close down to his": [65535, 0], "difficulty and plastered his hair close down to his head": [65535, 0], "and plastered his hair close down to his head for": [65535, 0], "plastered his hair close down to his head for he": [65535, 0], "his hair close down to his head for he held": [65535, 0], "hair close down to his head for he held curls": [65535, 0], "close down to his head for he held curls to": [65535, 0], "down to his head for he held curls to be": [65535, 0], "to his head for he held curls to be effeminate": [65535, 0], "his head for he held curls to be effeminate and": [65535, 0], "head for he held curls to be effeminate and his": [65535, 0], "for he held curls to be effeminate and his own": [65535, 0], "he held curls to be effeminate and his own filled": [65535, 0], "held curls to be effeminate and his own filled his": [65535, 0], "curls to be effeminate and his own filled his life": [65535, 0], "to be effeminate and his own filled his life with": [65535, 0], "be effeminate and his own filled his life with bitterness": [65535, 0], "effeminate and his own filled his life with bitterness then": [65535, 0], "and his own filled his life with bitterness then mary": [65535, 0], "his own filled his life with bitterness then mary got": [65535, 0], "own filled his life with bitterness then mary got out": [65535, 0], "filled his life with bitterness then mary got out a": [65535, 0], "his life with bitterness then mary got out a suit": [65535, 0], "life with bitterness then mary got out a suit of": [65535, 0], "with bitterness then mary got out a suit of his": [65535, 0], "bitterness then mary got out a suit of his clothing": [65535, 0], "then mary got out a suit of his clothing that": [65535, 0], "mary got out a suit of his clothing that had": [65535, 0], "got out a suit of his clothing that had been": [65535, 0], "out a suit of his clothing that had been used": [65535, 0], "a suit of his clothing that had been used only": [65535, 0], "suit of his clothing that had been used only on": [65535, 0], "of his clothing that had been used only on sundays": [65535, 0], "his clothing that had been used only on sundays during": [65535, 0], "clothing that had been used only on sundays during two": [65535, 0], "that had been used only on sundays during two years": [65535, 0], "had been used only on sundays during two years they": [65535, 0], "been used only on sundays during two years they were": [65535, 0], "used only on sundays during two years they were simply": [65535, 0], "only on sundays during two years they were simply called": [65535, 0], "on sundays during two years they were simply called his": [65535, 0], "sundays during two years they were simply called his other": [65535, 0], "during two years they were simply called his other clothes": [65535, 0], "two years they were simply called his other clothes and": [65535, 0], "years they were simply called his other clothes and so": [65535, 0], "they were simply called his other clothes and so by": [65535, 0], "were simply called his other clothes and so by that": [65535, 0], "simply called his other clothes and so by that we": [65535, 0], "called his other clothes and so by that we know": [65535, 0], "his other clothes and so by that we know the": [65535, 0], "other clothes and so by that we know the size": [65535, 0], "clothes and so by that we know the size of": [65535, 0], "and so by that we know the size of his": [65535, 0], "so by that we know the size of his wardrobe": [65535, 0], "by that we know the size of his wardrobe the": [65535, 0], "that we know the size of his wardrobe the girl": [65535, 0], "we know the size of his wardrobe the girl put": [65535, 0], "know the size of his wardrobe the girl put him": [65535, 0], "the size of his wardrobe the girl put him to": [65535, 0], "size of his wardrobe the girl put him to rights": [65535, 0], "of his wardrobe the girl put him to rights after": [65535, 0], "his wardrobe the girl put him to rights after he": [65535, 0], "wardrobe the girl put him to rights after he had": [65535, 0], "the girl put him to rights after he had dressed": [65535, 0], "girl put him to rights after he had dressed himself": [65535, 0], "put him to rights after he had dressed himself she": [65535, 0], "him to rights after he had dressed himself she buttoned": [65535, 0], "to rights after he had dressed himself she buttoned his": [65535, 0], "rights after he had dressed himself she buttoned his neat": [65535, 0], "after he had dressed himself she buttoned his neat roundabout": [65535, 0], "he had dressed himself she buttoned his neat roundabout up": [65535, 0], "had dressed himself she buttoned his neat roundabout up to": [65535, 0], "dressed himself she buttoned his neat roundabout up to his": [65535, 0], "himself she buttoned his neat roundabout up to his chin": [65535, 0], "she buttoned his neat roundabout up to his chin turned": [65535, 0], "buttoned his neat roundabout up to his chin turned his": [65535, 0], "his neat roundabout up to his chin turned his vast": [65535, 0], "neat roundabout up to his chin turned his vast shirt": [65535, 0], "roundabout up to his chin turned his vast shirt collar": [65535, 0], "up to his chin turned his vast shirt collar down": [65535, 0], "to his chin turned his vast shirt collar down over": [65535, 0], "his chin turned his vast shirt collar down over his": [65535, 0], "chin turned his vast shirt collar down over his shoulders": [65535, 0], "turned his vast shirt collar down over his shoulders brushed": [65535, 0], "his vast shirt collar down over his shoulders brushed him": [65535, 0], "vast shirt collar down over his shoulders brushed him off": [65535, 0], "shirt collar down over his shoulders brushed him off and": [65535, 0], "collar down over his shoulders brushed him off and crowned": [65535, 0], "down over his shoulders brushed him off and crowned him": [65535, 0], "over his shoulders brushed him off and crowned him with": [65535, 0], "his shoulders brushed him off and crowned him with his": [65535, 0], "shoulders brushed him off and crowned him with his speckled": [65535, 0], "brushed him off and crowned him with his speckled straw": [65535, 0], "him off and crowned him with his speckled straw hat": [65535, 0], "off and crowned him with his speckled straw hat he": [65535, 0], "and crowned him with his speckled straw hat he now": [65535, 0], "crowned him with his speckled straw hat he now looked": [65535, 0], "him with his speckled straw hat he now looked exceedingly": [65535, 0], "with his speckled straw hat he now looked exceedingly improved": [65535, 0], "his speckled straw hat he now looked exceedingly improved and": [65535, 0], "speckled straw hat he now looked exceedingly improved and uncomfortable": [65535, 0], "straw hat he now looked exceedingly improved and uncomfortable he": [65535, 0], "hat he now looked exceedingly improved and uncomfortable he was": [65535, 0], "he now looked exceedingly improved and uncomfortable he was fully": [65535, 0], "now looked exceedingly improved and uncomfortable he was fully as": [65535, 0], "looked exceedingly improved and uncomfortable he was fully as uncomfortable": [65535, 0], "exceedingly improved and uncomfortable he was fully as uncomfortable as": [65535, 0], "improved and uncomfortable he was fully as uncomfortable as he": [65535, 0], "and uncomfortable he was fully as uncomfortable as he looked": [65535, 0], "uncomfortable he was fully as uncomfortable as he looked for": [65535, 0], "he was fully as uncomfortable as he looked for there": [65535, 0], "was fully as uncomfortable as he looked for there was": [65535, 0], "fully as uncomfortable as he looked for there was a": [65535, 0], "as uncomfortable as he looked for there was a restraint": [65535, 0], "uncomfortable as he looked for there was a restraint about": [65535, 0], "as he looked for there was a restraint about whole": [65535, 0], "he looked for there was a restraint about whole clothes": [65535, 0], "looked for there was a restraint about whole clothes and": [65535, 0], "for there was a restraint about whole clothes and cleanliness": [65535, 0], "there was a restraint about whole clothes and cleanliness that": [65535, 0], "was a restraint about whole clothes and cleanliness that galled": [65535, 0], "a restraint about whole clothes and cleanliness that galled him": [65535, 0], "restraint about whole clothes and cleanliness that galled him he": [65535, 0], "about whole clothes and cleanliness that galled him he hoped": [65535, 0], "whole clothes and cleanliness that galled him he hoped that": [65535, 0], "clothes and cleanliness that galled him he hoped that mary": [65535, 0], "and cleanliness that galled him he hoped that mary would": [65535, 0], "cleanliness that galled him he hoped that mary would forget": [65535, 0], "that galled him he hoped that mary would forget his": [65535, 0], "galled him he hoped that mary would forget his shoes": [65535, 0], "him he hoped that mary would forget his shoes but": [65535, 0], "he hoped that mary would forget his shoes but the": [65535, 0], "hoped that mary would forget his shoes but the hope": [65535, 0], "that mary would forget his shoes but the hope was": [65535, 0], "mary would forget his shoes but the hope was blighted": [65535, 0], "would forget his shoes but the hope was blighted she": [65535, 0], "forget his shoes but the hope was blighted she coated": [65535, 0], "his shoes but the hope was blighted she coated them": [65535, 0], "shoes but the hope was blighted she coated them thoroughly": [65535, 0], "but the hope was blighted she coated them thoroughly with": [65535, 0], "the hope was blighted she coated them thoroughly with tallow": [65535, 0], "hope was blighted she coated them thoroughly with tallow as": [65535, 0], "was blighted she coated them thoroughly with tallow as was": [65535, 0], "blighted she coated them thoroughly with tallow as was the": [65535, 0], "she coated them thoroughly with tallow as was the custom": [65535, 0], "coated them thoroughly with tallow as was the custom and": [65535, 0], "them thoroughly with tallow as was the custom and brought": [65535, 0], "thoroughly with tallow as was the custom and brought them": [65535, 0], "with tallow as was the custom and brought them out": [65535, 0], "tallow as was the custom and brought them out he": [65535, 0], "as was the custom and brought them out he lost": [65535, 0], "was the custom and brought them out he lost his": [65535, 0], "the custom and brought them out he lost his temper": [65535, 0], "custom and brought them out he lost his temper and": [65535, 0], "and brought them out he lost his temper and said": [65535, 0], "brought them out he lost his temper and said he": [65535, 0], "them out he lost his temper and said he was": [65535, 0], "out he lost his temper and said he was always": [65535, 0], "he lost his temper and said he was always being": [65535, 0], "lost his temper and said he was always being made": [65535, 0], "his temper and said he was always being made to": [65535, 0], "temper and said he was always being made to do": [65535, 0], "and said he was always being made to do everything": [65535, 0], "said he was always being made to do everything he": [65535, 0], "he was always being made to do everything he didn't": [65535, 0], "was always being made to do everything he didn't want": [65535, 0], "always being made to do everything he didn't want to": [65535, 0], "being made to do everything he didn't want to do": [65535, 0], "made to do everything he didn't want to do but": [65535, 0], "to do everything he didn't want to do but mary": [65535, 0], "do everything he didn't want to do but mary said": [65535, 0], "everything he didn't want to do but mary said persuasively": [65535, 0], "he didn't want to do but mary said persuasively please": [65535, 0], "didn't want to do but mary said persuasively please tom": [65535, 0], "want to do but mary said persuasively please tom that's": [65535, 0], "to do but mary said persuasively please tom that's a": [65535, 0], "do but mary said persuasively please tom that's a good": [65535, 0], "but mary said persuasively please tom that's a good boy": [65535, 0], "mary said persuasively please tom that's a good boy so": [65535, 0], "said persuasively please tom that's a good boy so he": [65535, 0], "persuasively please tom that's a good boy so he got": [65535, 0], "please tom that's a good boy so he got into": [65535, 0], "tom that's a good boy so he got into the": [65535, 0], "that's a good boy so he got into the shoes": [65535, 0], "a good boy so he got into the shoes snarling": [65535, 0], "good boy so he got into the shoes snarling mary": [65535, 0], "boy so he got into the shoes snarling mary was": [65535, 0], "so he got into the shoes snarling mary was soon": [65535, 0], "he got into the shoes snarling mary was soon ready": [65535, 0], "got into the shoes snarling mary was soon ready and": [65535, 0], "into the shoes snarling mary was soon ready and the": [65535, 0], "the shoes snarling mary was soon ready and the three": [65535, 0], "shoes snarling mary was soon ready and the three children": [65535, 0], "snarling mary was soon ready and the three children set": [65535, 0], "mary was soon ready and the three children set out": [65535, 0], "was soon ready and the three children set out for": [65535, 0], "soon ready and the three children set out for sunday": [65535, 0], "ready and the three children set out for sunday school": [65535, 0], "and the three children set out for sunday school a": [65535, 0], "the three children set out for sunday school a place": [65535, 0], "three children set out for sunday school a place that": [65535, 0], "children set out for sunday school a place that tom": [65535, 0], "set out for sunday school a place that tom hated": [65535, 0], "out for sunday school a place that tom hated with": [65535, 0], "for sunday school a place that tom hated with his": [65535, 0], "sunday school a place that tom hated with his whole": [65535, 0], "school a place that tom hated with his whole heart": [65535, 0], "a place that tom hated with his whole heart but": [65535, 0], "place that tom hated with his whole heart but sid": [65535, 0], "that tom hated with his whole heart but sid and": [65535, 0], "tom hated with his whole heart but sid and mary": [65535, 0], "hated with his whole heart but sid and mary were": [65535, 0], "with his whole heart but sid and mary were fond": [65535, 0], "his whole heart but sid and mary were fond of": [65535, 0], "whole heart but sid and mary were fond of it": [65535, 0], "heart but sid and mary were fond of it sabbath": [65535, 0], "but sid and mary were fond of it sabbath school": [65535, 0], "sid and mary were fond of it sabbath school hours": [65535, 0], "and mary were fond of it sabbath school hours were": [65535, 0], "mary were fond of it sabbath school hours were from": [65535, 0], "were fond of it sabbath school hours were from nine": [65535, 0], "fond of it sabbath school hours were from nine to": [65535, 0], "of it sabbath school hours were from nine to half": [65535, 0], "it sabbath school hours were from nine to half past": [65535, 0], "sabbath school hours were from nine to half past ten": [65535, 0], "school hours were from nine to half past ten and": [65535, 0], "hours were from nine to half past ten and then": [65535, 0], "were from nine to half past ten and then church": [65535, 0], "from nine to half past ten and then church service": [65535, 0], "nine to half past ten and then church service two": [65535, 0], "to half past ten and then church service two of": [65535, 0], "half past ten and then church service two of the": [65535, 0], "past ten and then church service two of the children": [65535, 0], "ten and then church service two of the children always": [65535, 0], "and then church service two of the children always remained": [65535, 0], "then church service two of the children always remained for": [65535, 0], "church service two of the children always remained for the": [65535, 0], "service two of the children always remained for the sermon": [65535, 0], "two of the children always remained for the sermon voluntarily": [65535, 0], "of the children always remained for the sermon voluntarily and": [65535, 0], "the children always remained for the sermon voluntarily and the": [65535, 0], "children always remained for the sermon voluntarily and the other": [65535, 0], "always remained for the sermon voluntarily and the other always": [65535, 0], "remained for the sermon voluntarily and the other always remained": [65535, 0], "for the sermon voluntarily and the other always remained too": [65535, 0], "the sermon voluntarily and the other always remained too for": [65535, 0], "sermon voluntarily and the other always remained too for stronger": [65535, 0], "voluntarily and the other always remained too for stronger reasons": [65535, 0], "and the other always remained too for stronger reasons the": [65535, 0], "the other always remained too for stronger reasons the church's": [65535, 0], "other always remained too for stronger reasons the church's high": [65535, 0], "always remained too for stronger reasons the church's high backed": [65535, 0], "remained too for stronger reasons the church's high backed uncushioned": [65535, 0], "too for stronger reasons the church's high backed uncushioned pews": [65535, 0], "for stronger reasons the church's high backed uncushioned pews would": [65535, 0], "stronger reasons the church's high backed uncushioned pews would seat": [65535, 0], "reasons the church's high backed uncushioned pews would seat about": [65535, 0], "the church's high backed uncushioned pews would seat about three": [65535, 0], "church's high backed uncushioned pews would seat about three hundred": [65535, 0], "high backed uncushioned pews would seat about three hundred persons": [65535, 0], "backed uncushioned pews would seat about three hundred persons the": [65535, 0], "uncushioned pews would seat about three hundred persons the edifice": [65535, 0], "pews would seat about three hundred persons the edifice was": [65535, 0], "would seat about three hundred persons the edifice was but": [65535, 0], "seat about three hundred persons the edifice was but a": [65535, 0], "about three hundred persons the edifice was but a small": [65535, 0], "three hundred persons the edifice was but a small plain": [65535, 0], "hundred persons the edifice was but a small plain affair": [65535, 0], "persons the edifice was but a small plain affair with": [65535, 0], "the edifice was but a small plain affair with a": [65535, 0], "edifice was but a small plain affair with a sort": [65535, 0], "was but a small plain affair with a sort of": [65535, 0], "but a small plain affair with a sort of pine": [65535, 0], "a small plain affair with a sort of pine board": [65535, 0], "small plain affair with a sort of pine board tree": [65535, 0], "plain affair with a sort of pine board tree box": [65535, 0], "affair with a sort of pine board tree box on": [65535, 0], "with a sort of pine board tree box on top": [65535, 0], "a sort of pine board tree box on top of": [65535, 0], "sort of pine board tree box on top of it": [65535, 0], "of pine board tree box on top of it for": [65535, 0], "pine board tree box on top of it for a": [65535, 0], "board tree box on top of it for a steeple": [65535, 0], "tree box on top of it for a steeple at": [65535, 0], "box on top of it for a steeple at the": [65535, 0], "on top of it for a steeple at the door": [65535, 0], "top of it for a steeple at the door tom": [65535, 0], "of it for a steeple at the door tom dropped": [65535, 0], "it for a steeple at the door tom dropped back": [65535, 0], "for a steeple at the door tom dropped back a": [65535, 0], "a steeple at the door tom dropped back a step": [65535, 0], "steeple at the door tom dropped back a step and": [65535, 0], "at the door tom dropped back a step and accosted": [65535, 0], "the door tom dropped back a step and accosted a": [65535, 0], "door tom dropped back a step and accosted a sunday": [65535, 0], "tom dropped back a step and accosted a sunday dressed": [65535, 0], "dropped back a step and accosted a sunday dressed comrade": [65535, 0], "back a step and accosted a sunday dressed comrade say": [65535, 0], "a step and accosted a sunday dressed comrade say billy": [65535, 0], "step and accosted a sunday dressed comrade say billy got": [65535, 0], "and accosted a sunday dressed comrade say billy got a": [65535, 0], "accosted a sunday dressed comrade say billy got a yaller": [65535, 0], "a sunday dressed comrade say billy got a yaller ticket": [65535, 0], "sunday dressed comrade say billy got a yaller ticket yes": [65535, 0], "dressed comrade say billy got a yaller ticket yes what'll": [65535, 0], "comrade say billy got a yaller ticket yes what'll you": [65535, 0], "say billy got a yaller ticket yes what'll you take": [65535, 0], "billy got a yaller ticket yes what'll you take for": [65535, 0], "got a yaller ticket yes what'll you take for her": [65535, 0], "a yaller ticket yes what'll you take for her what'll": [65535, 0], "yaller ticket yes what'll you take for her what'll you": [65535, 0], "ticket yes what'll you take for her what'll you give": [65535, 0], "yes what'll you take for her what'll you give piece": [65535, 0], "what'll you take for her what'll you give piece of": [65535, 0], "you take for her what'll you give piece of lickrish": [65535, 0], "take for her what'll you give piece of lickrish and": [65535, 0], "for her what'll you give piece of lickrish and a": [65535, 0], "her what'll you give piece of lickrish and a fish": [65535, 0], "what'll you give piece of lickrish and a fish hook": [65535, 0], "you give piece of lickrish and a fish hook less": [65535, 0], "give piece of lickrish and a fish hook less see": [65535, 0], "piece of lickrish and a fish hook less see 'em": [65535, 0], "of lickrish and a fish hook less see 'em tom": [65535, 0], "lickrish and a fish hook less see 'em tom exhibited": [65535, 0], "and a fish hook less see 'em tom exhibited they": [65535, 0], "a fish hook less see 'em tom exhibited they were": [65535, 0], "fish hook less see 'em tom exhibited they were satisfactory": [65535, 0], "hook less see 'em tom exhibited they were satisfactory and": [65535, 0], "less see 'em tom exhibited they were satisfactory and the": [65535, 0], "see 'em tom exhibited they were satisfactory and the property": [65535, 0], "'em tom exhibited they were satisfactory and the property changed": [65535, 0], "tom exhibited they were satisfactory and the property changed hands": [65535, 0], "exhibited they were satisfactory and the property changed hands then": [65535, 0], "they were satisfactory and the property changed hands then tom": [65535, 0], "were satisfactory and the property changed hands then tom traded": [65535, 0], "satisfactory and the property changed hands then tom traded a": [65535, 0], "and the property changed hands then tom traded a couple": [65535, 0], "the property changed hands then tom traded a couple of": [65535, 0], "property changed hands then tom traded a couple of white": [65535, 0], "changed hands then tom traded a couple of white alleys": [65535, 0], "hands then tom traded a couple of white alleys for": [65535, 0], "then tom traded a couple of white alleys for three": [65535, 0], "tom traded a couple of white alleys for three red": [65535, 0], "traded a couple of white alleys for three red tickets": [65535, 0], "a couple of white alleys for three red tickets and": [65535, 0], "couple of white alleys for three red tickets and some": [65535, 0], "of white alleys for three red tickets and some small": [65535, 0], "white alleys for three red tickets and some small trifle": [65535, 0], "alleys for three red tickets and some small trifle or": [65535, 0], "for three red tickets and some small trifle or other": [65535, 0], "three red tickets and some small trifle or other for": [65535, 0], "red tickets and some small trifle or other for a": [65535, 0], "tickets and some small trifle or other for a couple": [65535, 0], "and some small trifle or other for a couple of": [65535, 0], "some small trifle or other for a couple of blue": [65535, 0], "small trifle or other for a couple of blue ones": [65535, 0], "trifle or other for a couple of blue ones he": [65535, 0], "or other for a couple of blue ones he waylaid": [65535, 0], "other for a couple of blue ones he waylaid other": [65535, 0], "for a couple of blue ones he waylaid other boys": [65535, 0], "a couple of blue ones he waylaid other boys as": [65535, 0], "couple of blue ones he waylaid other boys as they": [65535, 0], "of blue ones he waylaid other boys as they came": [65535, 0], "blue ones he waylaid other boys as they came and": [65535, 0], "ones he waylaid other boys as they came and went": [65535, 0], "he waylaid other boys as they came and went on": [65535, 0], "waylaid other boys as they came and went on buying": [65535, 0], "other boys as they came and went on buying tickets": [65535, 0], "boys as they came and went on buying tickets of": [65535, 0], "as they came and went on buying tickets of various": [65535, 0], "they came and went on buying tickets of various colors": [65535, 0], "came and went on buying tickets of various colors ten": [65535, 0], "and went on buying tickets of various colors ten or": [65535, 0], "went on buying tickets of various colors ten or fifteen": [65535, 0], "on buying tickets of various colors ten or fifteen minutes": [65535, 0], "buying tickets of various colors ten or fifteen minutes longer": [65535, 0], "tickets of various colors ten or fifteen minutes longer he": [65535, 0], "of various colors ten or fifteen minutes longer he entered": [65535, 0], "various colors ten or fifteen minutes longer he entered the": [65535, 0], "colors ten or fifteen minutes longer he entered the church": [65535, 0], "ten or fifteen minutes longer he entered the church now": [65535, 0], "or fifteen minutes longer he entered the church now with": [65535, 0], "fifteen minutes longer he entered the church now with a": [65535, 0], "minutes longer he entered the church now with a swarm": [65535, 0], "longer he entered the church now with a swarm of": [65535, 0], "he entered the church now with a swarm of clean": [65535, 0], "entered the church now with a swarm of clean and": [65535, 0], "the church now with a swarm of clean and noisy": [65535, 0], "church now with a swarm of clean and noisy boys": [65535, 0], "now with a swarm of clean and noisy boys and": [65535, 0], "with a swarm of clean and noisy boys and girls": [65535, 0], "a swarm of clean and noisy boys and girls proceeded": [65535, 0], "swarm of clean and noisy boys and girls proceeded to": [65535, 0], "of clean and noisy boys and girls proceeded to his": [65535, 0], "clean and noisy boys and girls proceeded to his seat": [65535, 0], "and noisy boys and girls proceeded to his seat and": [65535, 0], "noisy boys and girls proceeded to his seat and started": [65535, 0], "boys and girls proceeded to his seat and started a": [65535, 0], "and girls proceeded to his seat and started a quarrel": [65535, 0], "girls proceeded to his seat and started a quarrel with": [65535, 0], "proceeded to his seat and started a quarrel with the": [65535, 0], "to his seat and started a quarrel with the first": [65535, 0], "his seat and started a quarrel with the first boy": [65535, 0], "seat and started a quarrel with the first boy that": [65535, 0], "and started a quarrel with the first boy that came": [65535, 0], "started a quarrel with the first boy that came handy": [65535, 0], "a quarrel with the first boy that came handy the": [65535, 0], "quarrel with the first boy that came handy the teacher": [65535, 0], "with the first boy that came handy the teacher a": [65535, 0], "the first boy that came handy the teacher a grave": [65535, 0], "first boy that came handy the teacher a grave elderly": [65535, 0], "boy that came handy the teacher a grave elderly man": [65535, 0], "that came handy the teacher a grave elderly man interfered": [65535, 0], "came handy the teacher a grave elderly man interfered then": [65535, 0], "handy the teacher a grave elderly man interfered then turned": [65535, 0], "the teacher a grave elderly man interfered then turned his": [65535, 0], "teacher a grave elderly man interfered then turned his back": [65535, 0], "a grave elderly man interfered then turned his back a": [65535, 0], "grave elderly man interfered then turned his back a moment": [65535, 0], "elderly man interfered then turned his back a moment and": [65535, 0], "man interfered then turned his back a moment and tom": [65535, 0], "interfered then turned his back a moment and tom pulled": [65535, 0], "then turned his back a moment and tom pulled a": [65535, 0], "turned his back a moment and tom pulled a boy's": [65535, 0], "his back a moment and tom pulled a boy's hair": [65535, 0], "back a moment and tom pulled a boy's hair in": [65535, 0], "a moment and tom pulled a boy's hair in the": [65535, 0], "moment and tom pulled a boy's hair in the next": [65535, 0], "and tom pulled a boy's hair in the next bench": [65535, 0], "tom pulled a boy's hair in the next bench and": [65535, 0], "pulled a boy's hair in the next bench and was": [65535, 0], "a boy's hair in the next bench and was absorbed": [65535, 0], "boy's hair in the next bench and was absorbed in": [65535, 0], "hair in the next bench and was absorbed in his": [65535, 0], "in the next bench and was absorbed in his book": [65535, 0], "the next bench and was absorbed in his book when": [65535, 0], "next bench and was absorbed in his book when the": [65535, 0], "bench and was absorbed in his book when the boy": [65535, 0], "and was absorbed in his book when the boy turned": [65535, 0], "was absorbed in his book when the boy turned around": [65535, 0], "absorbed in his book when the boy turned around stuck": [65535, 0], "in his book when the boy turned around stuck a": [65535, 0], "his book when the boy turned around stuck a pin": [65535, 0], "book when the boy turned around stuck a pin in": [65535, 0], "when the boy turned around stuck a pin in another": [65535, 0], "the boy turned around stuck a pin in another boy": [65535, 0], "boy turned around stuck a pin in another boy presently": [65535, 0], "turned around stuck a pin in another boy presently in": [65535, 0], "around stuck a pin in another boy presently in order": [65535, 0], "stuck a pin in another boy presently in order to": [65535, 0], "a pin in another boy presently in order to hear": [65535, 0], "pin in another boy presently in order to hear him": [65535, 0], "in another boy presently in order to hear him say": [65535, 0], "another boy presently in order to hear him say ouch": [65535, 0], "boy presently in order to hear him say ouch and": [65535, 0], "presently in order to hear him say ouch and got": [65535, 0], "in order to hear him say ouch and got a": [65535, 0], "order to hear him say ouch and got a new": [65535, 0], "to hear him say ouch and got a new reprimand": [65535, 0], "hear him say ouch and got a new reprimand from": [65535, 0], "him say ouch and got a new reprimand from his": [65535, 0], "say ouch and got a new reprimand from his teacher": [65535, 0], "ouch and got a new reprimand from his teacher tom's": [65535, 0], "and got a new reprimand from his teacher tom's whole": [65535, 0], "got a new reprimand from his teacher tom's whole class": [65535, 0], "a new reprimand from his teacher tom's whole class were": [65535, 0], "new reprimand from his teacher tom's whole class were of": [65535, 0], "reprimand from his teacher tom's whole class were of a": [65535, 0], "from his teacher tom's whole class were of a pattern": [65535, 0], "his teacher tom's whole class were of a pattern restless": [65535, 0], "teacher tom's whole class were of a pattern restless noisy": [65535, 0], "tom's whole class were of a pattern restless noisy and": [65535, 0], "whole class were of a pattern restless noisy and troublesome": [65535, 0], "class were of a pattern restless noisy and troublesome when": [65535, 0], "were of a pattern restless noisy and troublesome when they": [65535, 0], "of a pattern restless noisy and troublesome when they came": [65535, 0], "a pattern restless noisy and troublesome when they came to": [65535, 0], "pattern restless noisy and troublesome when they came to recite": [65535, 0], "restless noisy and troublesome when they came to recite their": [65535, 0], "noisy and troublesome when they came to recite their lessons": [65535, 0], "and troublesome when they came to recite their lessons not": [65535, 0], "troublesome when they came to recite their lessons not one": [65535, 0], "when they came to recite their lessons not one of": [65535, 0], "they came to recite their lessons not one of them": [65535, 0], "came to recite their lessons not one of them knew": [65535, 0], "to recite their lessons not one of them knew his": [65535, 0], "recite their lessons not one of them knew his verses": [65535, 0], "their lessons not one of them knew his verses perfectly": [65535, 0], "lessons not one of them knew his verses perfectly but": [65535, 0], "not one of them knew his verses perfectly but had": [65535, 0], "one of them knew his verses perfectly but had to": [65535, 0], "of them knew his verses perfectly but had to be": [65535, 0], "them knew his verses perfectly but had to be prompted": [65535, 0], "knew his verses perfectly but had to be prompted all": [65535, 0], "his verses perfectly but had to be prompted all along": [65535, 0], "verses perfectly but had to be prompted all along however": [65535, 0], "perfectly but had to be prompted all along however they": [65535, 0], "but had to be prompted all along however they worried": [65535, 0], "had to be prompted all along however they worried through": [65535, 0], "to be prompted all along however they worried through and": [65535, 0], "be prompted all along however they worried through and each": [65535, 0], "prompted all along however they worried through and each got": [65535, 0], "all along however they worried through and each got his": [65535, 0], "along however they worried through and each got his reward": [65535, 0], "however they worried through and each got his reward in": [65535, 0], "they worried through and each got his reward in small": [65535, 0], "worried through and each got his reward in small blue": [65535, 0], "through and each got his reward in small blue tickets": [65535, 0], "and each got his reward in small blue tickets each": [65535, 0], "each got his reward in small blue tickets each with": [65535, 0], "got his reward in small blue tickets each with a": [65535, 0], "his reward in small blue tickets each with a passage": [65535, 0], "reward in small blue tickets each with a passage of": [65535, 0], "in small blue tickets each with a passage of scripture": [65535, 0], "small blue tickets each with a passage of scripture on": [65535, 0], "blue tickets each with a passage of scripture on it": [65535, 0], "tickets each with a passage of scripture on it each": [65535, 0], "each with a passage of scripture on it each blue": [65535, 0], "with a passage of scripture on it each blue ticket": [65535, 0], "a passage of scripture on it each blue ticket was": [65535, 0], "passage of scripture on it each blue ticket was pay": [65535, 0], "of scripture on it each blue ticket was pay for": [65535, 0], "scripture on it each blue ticket was pay for two": [65535, 0], "on it each blue ticket was pay for two verses": [65535, 0], "it each blue ticket was pay for two verses of": [65535, 0], "each blue ticket was pay for two verses of the": [65535, 0], "blue ticket was pay for two verses of the recitation": [65535, 0], "ticket was pay for two verses of the recitation ten": [65535, 0], "was pay for two verses of the recitation ten blue": [65535, 0], "pay for two verses of the recitation ten blue tickets": [65535, 0], "for two verses of the recitation ten blue tickets equalled": [65535, 0], "two verses of the recitation ten blue tickets equalled a": [65535, 0], "verses of the recitation ten blue tickets equalled a red": [65535, 0], "of the recitation ten blue tickets equalled a red one": [65535, 0], "the recitation ten blue tickets equalled a red one and": [65535, 0], "recitation ten blue tickets equalled a red one and could": [65535, 0], "ten blue tickets equalled a red one and could be": [65535, 0], "blue tickets equalled a red one and could be exchanged": [65535, 0], "tickets equalled a red one and could be exchanged for": [65535, 0], "equalled a red one and could be exchanged for it": [65535, 0], "a red one and could be exchanged for it ten": [65535, 0], "red one and could be exchanged for it ten red": [65535, 0], "one and could be exchanged for it ten red tickets": [65535, 0], "and could be exchanged for it ten red tickets equalled": [65535, 0], "could be exchanged for it ten red tickets equalled a": [65535, 0], "be exchanged for it ten red tickets equalled a yellow": [65535, 0], "exchanged for it ten red tickets equalled a yellow one": [65535, 0], "for it ten red tickets equalled a yellow one for": [65535, 0], "it ten red tickets equalled a yellow one for ten": [65535, 0], "ten red tickets equalled a yellow one for ten yellow": [65535, 0], "red tickets equalled a yellow one for ten yellow tickets": [65535, 0], "tickets equalled a yellow one for ten yellow tickets the": [65535, 0], "equalled a yellow one for ten yellow tickets the superintendent": [65535, 0], "a yellow one for ten yellow tickets the superintendent gave": [65535, 0], "yellow one for ten yellow tickets the superintendent gave a": [65535, 0], "one for ten yellow tickets the superintendent gave a very": [65535, 0], "for ten yellow tickets the superintendent gave a very plainly": [65535, 0], "ten yellow tickets the superintendent gave a very plainly bound": [65535, 0], "yellow tickets the superintendent gave a very plainly bound bible": [65535, 0], "tickets the superintendent gave a very plainly bound bible worth": [65535, 0], "the superintendent gave a very plainly bound bible worth forty": [65535, 0], "superintendent gave a very plainly bound bible worth forty cents": [65535, 0], "gave a very plainly bound bible worth forty cents in": [65535, 0], "a very plainly bound bible worth forty cents in those": [65535, 0], "very plainly bound bible worth forty cents in those easy": [65535, 0], "plainly bound bible worth forty cents in those easy times": [65535, 0], "bound bible worth forty cents in those easy times to": [65535, 0], "bible worth forty cents in those easy times to the": [65535, 0], "worth forty cents in those easy times to the pupil": [65535, 0], "forty cents in those easy times to the pupil how": [65535, 0], "cents in those easy times to the pupil how many": [65535, 0], "in those easy times to the pupil how many of": [65535, 0], "those easy times to the pupil how many of my": [65535, 0], "easy times to the pupil how many of my readers": [65535, 0], "times to the pupil how many of my readers would": [65535, 0], "to the pupil how many of my readers would have": [65535, 0], "the pupil how many of my readers would have the": [65535, 0], "pupil how many of my readers would have the industry": [65535, 0], "how many of my readers would have the industry and": [65535, 0], "many of my readers would have the industry and application": [65535, 0], "of my readers would have the industry and application to": [65535, 0], "my readers would have the industry and application to memorize": [65535, 0], "readers would have the industry and application to memorize two": [65535, 0], "would have the industry and application to memorize two thousand": [65535, 0], "have the industry and application to memorize two thousand verses": [65535, 0], "the industry and application to memorize two thousand verses even": [65535, 0], "industry and application to memorize two thousand verses even for": [65535, 0], "and application to memorize two thousand verses even for a": [65535, 0], "application to memorize two thousand verses even for a dore": [65535, 0], "to memorize two thousand verses even for a dore bible": [65535, 0], "memorize two thousand verses even for a dore bible and": [65535, 0], "two thousand verses even for a dore bible and yet": [65535, 0], "thousand verses even for a dore bible and yet mary": [65535, 0], "verses even for a dore bible and yet mary had": [65535, 0], "even for a dore bible and yet mary had acquired": [65535, 0], "for a dore bible and yet mary had acquired two": [65535, 0], "a dore bible and yet mary had acquired two bibles": [65535, 0], "dore bible and yet mary had acquired two bibles in": [65535, 0], "bible and yet mary had acquired two bibles in this": [65535, 0], "and yet mary had acquired two bibles in this way": [65535, 0], "yet mary had acquired two bibles in this way it": [65535, 0], "mary had acquired two bibles in this way it was": [65535, 0], "had acquired two bibles in this way it was the": [65535, 0], "acquired two bibles in this way it was the patient": [65535, 0], "two bibles in this way it was the patient work": [65535, 0], "bibles in this way it was the patient work of": [65535, 0], "in this way it was the patient work of two": [65535, 0], "this way it was the patient work of two years": [65535, 0], "way it was the patient work of two years and": [65535, 0], "it was the patient work of two years and a": [65535, 0], "was the patient work of two years and a boy": [65535, 0], "the patient work of two years and a boy of": [65535, 0], "patient work of two years and a boy of german": [65535, 0], "work of two years and a boy of german parentage": [65535, 0], "of two years and a boy of german parentage had": [65535, 0], "two years and a boy of german parentage had won": [65535, 0], "years and a boy of german parentage had won four": [65535, 0], "and a boy of german parentage had won four or": [65535, 0], "a boy of german parentage had won four or five": [65535, 0], "boy of german parentage had won four or five he": [65535, 0], "of german parentage had won four or five he once": [65535, 0], "german parentage had won four or five he once recited": [65535, 0], "parentage had won four or five he once recited three": [65535, 0], "had won four or five he once recited three thousand": [65535, 0], "won four or five he once recited three thousand verses": [65535, 0], "four or five he once recited three thousand verses without": [65535, 0], "or five he once recited three thousand verses without stopping": [65535, 0], "five he once recited three thousand verses without stopping but": [65535, 0], "he once recited three thousand verses without stopping but the": [65535, 0], "once recited three thousand verses without stopping but the strain": [65535, 0], "recited three thousand verses without stopping but the strain upon": [65535, 0], "three thousand verses without stopping but the strain upon his": [65535, 0], "thousand verses without stopping but the strain upon his mental": [65535, 0], "verses without stopping but the strain upon his mental faculties": [65535, 0], "without stopping but the strain upon his mental faculties was": [65535, 0], "stopping but the strain upon his mental faculties was too": [65535, 0], "but the strain upon his mental faculties was too great": [65535, 0], "the strain upon his mental faculties was too great and": [65535, 0], "strain upon his mental faculties was too great and he": [65535, 0], "upon his mental faculties was too great and he was": [65535, 0], "his mental faculties was too great and he was little": [65535, 0], "mental faculties was too great and he was little better": [65535, 0], "faculties was too great and he was little better than": [65535, 0], "was too great and he was little better than an": [65535, 0], "too great and he was little better than an idiot": [65535, 0], "great and he was little better than an idiot from": [65535, 0], "and he was little better than an idiot from that": [65535, 0], "he was little better than an idiot from that day": [65535, 0], "was little better than an idiot from that day forth": [65535, 0], "little better than an idiot from that day forth a": [65535, 0], "better than an idiot from that day forth a grievous": [65535, 0], "than an idiot from that day forth a grievous misfortune": [65535, 0], "an idiot from that day forth a grievous misfortune for": [65535, 0], "idiot from that day forth a grievous misfortune for the": [65535, 0], "from that day forth a grievous misfortune for the school": [65535, 0], "that day forth a grievous misfortune for the school for": [65535, 0], "day forth a grievous misfortune for the school for on": [65535, 0], "forth a grievous misfortune for the school for on great": [65535, 0], "a grievous misfortune for the school for on great occasions": [65535, 0], "grievous misfortune for the school for on great occasions before": [65535, 0], "misfortune for the school for on great occasions before company": [65535, 0], "for the school for on great occasions before company the": [65535, 0], "the school for on great occasions before company the superintendent": [65535, 0], "school for on great occasions before company the superintendent as": [65535, 0], "for on great occasions before company the superintendent as tom": [65535, 0], "on great occasions before company the superintendent as tom expressed": [65535, 0], "great occasions before company the superintendent as tom expressed it": [65535, 0], "occasions before company the superintendent as tom expressed it had": [65535, 0], "before company the superintendent as tom expressed it had always": [65535, 0], "company the superintendent as tom expressed it had always made": [65535, 0], "the superintendent as tom expressed it had always made this": [65535, 0], "superintendent as tom expressed it had always made this boy": [65535, 0], "as tom expressed it had always made this boy come": [65535, 0], "tom expressed it had always made this boy come out": [65535, 0], "expressed it had always made this boy come out and": [65535, 0], "it had always made this boy come out and spread": [65535, 0], "had always made this boy come out and spread himself": [65535, 0], "always made this boy come out and spread himself only": [65535, 0], "made this boy come out and spread himself only the": [65535, 0], "this boy come out and spread himself only the older": [65535, 0], "boy come out and spread himself only the older pupils": [65535, 0], "come out and spread himself only the older pupils managed": [65535, 0], "out and spread himself only the older pupils managed to": [65535, 0], "and spread himself only the older pupils managed to keep": [65535, 0], "spread himself only the older pupils managed to keep their": [65535, 0], "himself only the older pupils managed to keep their tickets": [65535, 0], "only the older pupils managed to keep their tickets and": [65535, 0], "the older pupils managed to keep their tickets and stick": [65535, 0], "older pupils managed to keep their tickets and stick to": [65535, 0], "pupils managed to keep their tickets and stick to their": [65535, 0], "managed to keep their tickets and stick to their tedious": [65535, 0], "to keep their tickets and stick to their tedious work": [65535, 0], "keep their tickets and stick to their tedious work long": [65535, 0], "their tickets and stick to their tedious work long enough": [65535, 0], "tickets and stick to their tedious work long enough to": [65535, 0], "and stick to their tedious work long enough to get": [65535, 0], "stick to their tedious work long enough to get a": [65535, 0], "to their tedious work long enough to get a bible": [65535, 0], "their tedious work long enough to get a bible and": [65535, 0], "tedious work long enough to get a bible and so": [65535, 0], "work long enough to get a bible and so the": [65535, 0], "long enough to get a bible and so the delivery": [65535, 0], "enough to get a bible and so the delivery of": [65535, 0], "to get a bible and so the delivery of one": [65535, 0], "get a bible and so the delivery of one of": [65535, 0], "a bible and so the delivery of one of these": [65535, 0], "bible and so the delivery of one of these prizes": [65535, 0], "and so the delivery of one of these prizes was": [65535, 0], "so the delivery of one of these prizes was a": [65535, 0], "the delivery of one of these prizes was a rare": [65535, 0], "delivery of one of these prizes was a rare and": [65535, 0], "of one of these prizes was a rare and noteworthy": [65535, 0], "one of these prizes was a rare and noteworthy circumstance": [65535, 0], "of these prizes was a rare and noteworthy circumstance the": [65535, 0], "these prizes was a rare and noteworthy circumstance the successful": [65535, 0], "prizes was a rare and noteworthy circumstance the successful pupil": [65535, 0], "was a rare and noteworthy circumstance the successful pupil was": [65535, 0], "a rare and noteworthy circumstance the successful pupil was so": [65535, 0], "rare and noteworthy circumstance the successful pupil was so great": [65535, 0], "and noteworthy circumstance the successful pupil was so great and": [65535, 0], "noteworthy circumstance the successful pupil was so great and conspicuous": [65535, 0], "circumstance the successful pupil was so great and conspicuous for": [65535, 0], "the successful pupil was so great and conspicuous for that": [65535, 0], "successful pupil was so great and conspicuous for that day": [65535, 0], "pupil was so great and conspicuous for that day that": [65535, 0], "was so great and conspicuous for that day that on": [65535, 0], "so great and conspicuous for that day that on the": [65535, 0], "great and conspicuous for that day that on the spot": [65535, 0], "and conspicuous for that day that on the spot every": [65535, 0], "conspicuous for that day that on the spot every scholar's": [65535, 0], "for that day that on the spot every scholar's heart": [65535, 0], "that day that on the spot every scholar's heart was": [65535, 0], "day that on the spot every scholar's heart was fired": [65535, 0], "that on the spot every scholar's heart was fired with": [65535, 0], "on the spot every scholar's heart was fired with a": [65535, 0], "the spot every scholar's heart was fired with a fresh": [65535, 0], "spot every scholar's heart was fired with a fresh ambition": [65535, 0], "every scholar's heart was fired with a fresh ambition that": [65535, 0], "scholar's heart was fired with a fresh ambition that often": [65535, 0], "heart was fired with a fresh ambition that often lasted": [65535, 0], "was fired with a fresh ambition that often lasted a": [65535, 0], "fired with a fresh ambition that often lasted a couple": [65535, 0], "with a fresh ambition that often lasted a couple of": [65535, 0], "a fresh ambition that often lasted a couple of weeks": [65535, 0], "fresh ambition that often lasted a couple of weeks it": [65535, 0], "ambition that often lasted a couple of weeks it is": [65535, 0], "that often lasted a couple of weeks it is possible": [65535, 0], "often lasted a couple of weeks it is possible that": [65535, 0], "lasted a couple of weeks it is possible that tom's": [65535, 0], "a couple of weeks it is possible that tom's mental": [65535, 0], "couple of weeks it is possible that tom's mental stomach": [65535, 0], "of weeks it is possible that tom's mental stomach had": [65535, 0], "weeks it is possible that tom's mental stomach had never": [65535, 0], "it is possible that tom's mental stomach had never really": [65535, 0], "is possible that tom's mental stomach had never really hungered": [65535, 0], "possible that tom's mental stomach had never really hungered for": [65535, 0], "that tom's mental stomach had never really hungered for one": [65535, 0], "tom's mental stomach had never really hungered for one of": [65535, 0], "mental stomach had never really hungered for one of those": [65535, 0], "stomach had never really hungered for one of those prizes": [65535, 0], "had never really hungered for one of those prizes but": [65535, 0], "never really hungered for one of those prizes but unquestionably": [65535, 0], "really hungered for one of those prizes but unquestionably his": [65535, 0], "hungered for one of those prizes but unquestionably his entire": [65535, 0], "for one of those prizes but unquestionably his entire being": [65535, 0], "one of those prizes but unquestionably his entire being had": [65535, 0], "of those prizes but unquestionably his entire being had for": [65535, 0], "those prizes but unquestionably his entire being had for many": [65535, 0], "prizes but unquestionably his entire being had for many a": [65535, 0], "but unquestionably his entire being had for many a day": [65535, 0], "unquestionably his entire being had for many a day longed": [65535, 0], "his entire being had for many a day longed for": [65535, 0], "entire being had for many a day longed for the": [65535, 0], "being had for many a day longed for the glory": [65535, 0], "had for many a day longed for the glory and": [65535, 0], "for many a day longed for the glory and the": [65535, 0], "many a day longed for the glory and the eclat": [65535, 0], "a day longed for the glory and the eclat that": [65535, 0], "day longed for the glory and the eclat that came": [65535, 0], "longed for the glory and the eclat that came with": [65535, 0], "for the glory and the eclat that came with it": [65535, 0], "the glory and the eclat that came with it in": [65535, 0], "glory and the eclat that came with it in due": [65535, 0], "and the eclat that came with it in due course": [65535, 0], "the eclat that came with it in due course the": [65535, 0], "eclat that came with it in due course the superintendent": [65535, 0], "that came with it in due course the superintendent stood": [65535, 0], "came with it in due course the superintendent stood up": [65535, 0], "with it in due course the superintendent stood up in": [65535, 0], "it in due course the superintendent stood up in front": [65535, 0], "in due course the superintendent stood up in front of": [65535, 0], "due course the superintendent stood up in front of the": [65535, 0], "course the superintendent stood up in front of the pulpit": [65535, 0], "the superintendent stood up in front of the pulpit with": [65535, 0], "superintendent stood up in front of the pulpit with a": [65535, 0], "stood up in front of the pulpit with a closed": [65535, 0], "up in front of the pulpit with a closed hymn": [65535, 0], "in front of the pulpit with a closed hymn book": [65535, 0], "front of the pulpit with a closed hymn book in": [65535, 0], "of the pulpit with a closed hymn book in his": [65535, 0], "the pulpit with a closed hymn book in his hand": [65535, 0], "pulpit with a closed hymn book in his hand and": [65535, 0], "with a closed hymn book in his hand and his": [65535, 0], "a closed hymn book in his hand and his forefinger": [65535, 0], "closed hymn book in his hand and his forefinger inserted": [65535, 0], "hymn book in his hand and his forefinger inserted between": [65535, 0], "book in his hand and his forefinger inserted between its": [65535, 0], "in his hand and his forefinger inserted between its leaves": [65535, 0], "his hand and his forefinger inserted between its leaves and": [65535, 0], "hand and his forefinger inserted between its leaves and commanded": [65535, 0], "and his forefinger inserted between its leaves and commanded attention": [65535, 0], "his forefinger inserted between its leaves and commanded attention when": [65535, 0], "forefinger inserted between its leaves and commanded attention when a": [65535, 0], "inserted between its leaves and commanded attention when a sunday": [65535, 0], "between its leaves and commanded attention when a sunday school": [65535, 0], "its leaves and commanded attention when a sunday school superintendent": [65535, 0], "leaves and commanded attention when a sunday school superintendent makes": [65535, 0], "and commanded attention when a sunday school superintendent makes his": [65535, 0], "commanded attention when a sunday school superintendent makes his customary": [65535, 0], "attention when a sunday school superintendent makes his customary little": [65535, 0], "when a sunday school superintendent makes his customary little speech": [65535, 0], "a sunday school superintendent makes his customary little speech a": [65535, 0], "sunday school superintendent makes his customary little speech a hymn": [65535, 0], "school superintendent makes his customary little speech a hymn book": [65535, 0], "superintendent makes his customary little speech a hymn book in": [65535, 0], "makes his customary little speech a hymn book in the": [65535, 0], "his customary little speech a hymn book in the hand": [65535, 0], "customary little speech a hymn book in the hand is": [65535, 0], "little speech a hymn book in the hand is as": [65535, 0], "speech a hymn book in the hand is as necessary": [65535, 0], "a hymn book in the hand is as necessary as": [65535, 0], "hymn book in the hand is as necessary as is": [65535, 0], "book in the hand is as necessary as is the": [65535, 0], "in the hand is as necessary as is the inevitable": [65535, 0], "the hand is as necessary as is the inevitable sheet": [65535, 0], "hand is as necessary as is the inevitable sheet of": [65535, 0], "is as necessary as is the inevitable sheet of music": [65535, 0], "as necessary as is the inevitable sheet of music in": [65535, 0], "necessary as is the inevitable sheet of music in the": [65535, 0], "as is the inevitable sheet of music in the hand": [65535, 0], "is the inevitable sheet of music in the hand of": [65535, 0], "the inevitable sheet of music in the hand of a": [65535, 0], "inevitable sheet of music in the hand of a singer": [65535, 0], "sheet of music in the hand of a singer who": [65535, 0], "of music in the hand of a singer who stands": [65535, 0], "music in the hand of a singer who stands forward": [65535, 0], "in the hand of a singer who stands forward on": [65535, 0], "the hand of a singer who stands forward on the": [65535, 0], "hand of a singer who stands forward on the platform": [65535, 0], "of a singer who stands forward on the platform and": [65535, 0], "a singer who stands forward on the platform and sings": [65535, 0], "singer who stands forward on the platform and sings a": [65535, 0], "who stands forward on the platform and sings a solo": [65535, 0], "stands forward on the platform and sings a solo at": [65535, 0], "forward on the platform and sings a solo at a": [65535, 0], "on the platform and sings a solo at a concert": [65535, 0], "the platform and sings a solo at a concert though": [65535, 0], "platform and sings a solo at a concert though why": [65535, 0], "and sings a solo at a concert though why is": [65535, 0], "sings a solo at a concert though why is a": [65535, 0], "a solo at a concert though why is a mystery": [65535, 0], "solo at a concert though why is a mystery for": [65535, 0], "at a concert though why is a mystery for neither": [65535, 0], "a concert though why is a mystery for neither the": [65535, 0], "concert though why is a mystery for neither the hymn": [65535, 0], "though why is a mystery for neither the hymn book": [65535, 0], "why is a mystery for neither the hymn book nor": [65535, 0], "is a mystery for neither the hymn book nor the": [65535, 0], "a mystery for neither the hymn book nor the sheet": [65535, 0], "mystery for neither the hymn book nor the sheet of": [65535, 0], "for neither the hymn book nor the sheet of music": [65535, 0], "neither the hymn book nor the sheet of music is": [65535, 0], "the hymn book nor the sheet of music is ever": [65535, 0], "hymn book nor the sheet of music is ever referred": [65535, 0], "book nor the sheet of music is ever referred to": [65535, 0], "nor the sheet of music is ever referred to by": [65535, 0], "the sheet of music is ever referred to by the": [65535, 0], "sheet of music is ever referred to by the sufferer": [65535, 0], "of music is ever referred to by the sufferer this": [65535, 0], "music is ever referred to by the sufferer this superintendent": [65535, 0], "is ever referred to by the sufferer this superintendent was": [65535, 0], "ever referred to by the sufferer this superintendent was a": [65535, 0], "referred to by the sufferer this superintendent was a slim": [65535, 0], "to by the sufferer this superintendent was a slim creature": [65535, 0], "by the sufferer this superintendent was a slim creature of": [65535, 0], "the sufferer this superintendent was a slim creature of thirty": [65535, 0], "sufferer this superintendent was a slim creature of thirty five": [65535, 0], "this superintendent was a slim creature of thirty five with": [65535, 0], "superintendent was a slim creature of thirty five with a": [65535, 0], "was a slim creature of thirty five with a sandy": [65535, 0], "a slim creature of thirty five with a sandy goatee": [65535, 0], "slim creature of thirty five with a sandy goatee and": [65535, 0], "creature of thirty five with a sandy goatee and short": [65535, 0], "of thirty five with a sandy goatee and short sandy": [65535, 0], "thirty five with a sandy goatee and short sandy hair": [65535, 0], "five with a sandy goatee and short sandy hair he": [65535, 0], "with a sandy goatee and short sandy hair he wore": [65535, 0], "a sandy goatee and short sandy hair he wore a": [65535, 0], "sandy goatee and short sandy hair he wore a stiff": [65535, 0], "goatee and short sandy hair he wore a stiff standing": [65535, 0], "and short sandy hair he wore a stiff standing collar": [65535, 0], "short sandy hair he wore a stiff standing collar whose": [65535, 0], "sandy hair he wore a stiff standing collar whose upper": [65535, 0], "hair he wore a stiff standing collar whose upper edge": [65535, 0], "he wore a stiff standing collar whose upper edge almost": [65535, 0], "wore a stiff standing collar whose upper edge almost reached": [65535, 0], "a stiff standing collar whose upper edge almost reached his": [65535, 0], "stiff standing collar whose upper edge almost reached his ears": [65535, 0], "standing collar whose upper edge almost reached his ears and": [65535, 0], "collar whose upper edge almost reached his ears and whose": [65535, 0], "whose upper edge almost reached his ears and whose sharp": [65535, 0], "upper edge almost reached his ears and whose sharp points": [65535, 0], "edge almost reached his ears and whose sharp points curved": [65535, 0], "almost reached his ears and whose sharp points curved forward": [65535, 0], "reached his ears and whose sharp points curved forward abreast": [65535, 0], "his ears and whose sharp points curved forward abreast the": [65535, 0], "ears and whose sharp points curved forward abreast the corners": [65535, 0], "and whose sharp points curved forward abreast the corners of": [65535, 0], "whose sharp points curved forward abreast the corners of his": [65535, 0], "sharp points curved forward abreast the corners of his mouth": [65535, 0], "points curved forward abreast the corners of his mouth a": [65535, 0], "curved forward abreast the corners of his mouth a fence": [65535, 0], "forward abreast the corners of his mouth a fence that": [65535, 0], "abreast the corners of his mouth a fence that compelled": [65535, 0], "the corners of his mouth a fence that compelled a": [65535, 0], "corners of his mouth a fence that compelled a straight": [65535, 0], "of his mouth a fence that compelled a straight lookout": [65535, 0], "his mouth a fence that compelled a straight lookout ahead": [65535, 0], "mouth a fence that compelled a straight lookout ahead and": [65535, 0], "a fence that compelled a straight lookout ahead and a": [65535, 0], "fence that compelled a straight lookout ahead and a turning": [65535, 0], "that compelled a straight lookout ahead and a turning of": [65535, 0], "compelled a straight lookout ahead and a turning of the": [65535, 0], "a straight lookout ahead and a turning of the whole": [65535, 0], "straight lookout ahead and a turning of the whole body": [65535, 0], "lookout ahead and a turning of the whole body when": [65535, 0], "ahead and a turning of the whole body when a": [65535, 0], "and a turning of the whole body when a side": [65535, 0], "a turning of the whole body when a side view": [65535, 0], "turning of the whole body when a side view was": [65535, 0], "of the whole body when a side view was required": [65535, 0], "the whole body when a side view was required his": [65535, 0], "whole body when a side view was required his chin": [65535, 0], "body when a side view was required his chin was": [65535, 0], "when a side view was required his chin was propped": [65535, 0], "a side view was required his chin was propped on": [65535, 0], "side view was required his chin was propped on a": [65535, 0], "view was required his chin was propped on a spreading": [65535, 0], "was required his chin was propped on a spreading cravat": [65535, 0], "required his chin was propped on a spreading cravat which": [65535, 0], "his chin was propped on a spreading cravat which was": [65535, 0], "chin was propped on a spreading cravat which was as": [65535, 0], "was propped on a spreading cravat which was as broad": [65535, 0], "propped on a spreading cravat which was as broad and": [65535, 0], "on a spreading cravat which was as broad and as": [65535, 0], "a spreading cravat which was as broad and as long": [65535, 0], "spreading cravat which was as broad and as long as": [65535, 0], "cravat which was as broad and as long as a": [65535, 0], "which was as broad and as long as a bank": [65535, 0], "was as broad and as long as a bank note": [65535, 0], "as broad and as long as a bank note and": [65535, 0], "broad and as long as a bank note and had": [65535, 0], "and as long as a bank note and had fringed": [65535, 0], "as long as a bank note and had fringed ends": [65535, 0], "long as a bank note and had fringed ends his": [65535, 0], "as a bank note and had fringed ends his boot": [65535, 0], "a bank note and had fringed ends his boot toes": [65535, 0], "bank note and had fringed ends his boot toes were": [65535, 0], "note and had fringed ends his boot toes were turned": [65535, 0], "and had fringed ends his boot toes were turned sharply": [65535, 0], "had fringed ends his boot toes were turned sharply up": [65535, 0], "fringed ends his boot toes were turned sharply up in": [65535, 0], "ends his boot toes were turned sharply up in the": [65535, 0], "his boot toes were turned sharply up in the fashion": [65535, 0], "boot toes were turned sharply up in the fashion of": [65535, 0], "toes were turned sharply up in the fashion of the": [65535, 0], "were turned sharply up in the fashion of the day": [65535, 0], "turned sharply up in the fashion of the day like": [65535, 0], "sharply up in the fashion of the day like sleigh": [65535, 0], "up in the fashion of the day like sleigh runners": [65535, 0], "in the fashion of the day like sleigh runners an": [65535, 0], "the fashion of the day like sleigh runners an effect": [65535, 0], "fashion of the day like sleigh runners an effect patiently": [65535, 0], "of the day like sleigh runners an effect patiently and": [65535, 0], "the day like sleigh runners an effect patiently and laboriously": [65535, 0], "day like sleigh runners an effect patiently and laboriously produced": [65535, 0], "like sleigh runners an effect patiently and laboriously produced by": [65535, 0], "sleigh runners an effect patiently and laboriously produced by the": [65535, 0], "runners an effect patiently and laboriously produced by the young": [65535, 0], "an effect patiently and laboriously produced by the young men": [65535, 0], "effect patiently and laboriously produced by the young men by": [65535, 0], "patiently and laboriously produced by the young men by sitting": [65535, 0], "and laboriously produced by the young men by sitting with": [65535, 0], "laboriously produced by the young men by sitting with their": [65535, 0], "produced by the young men by sitting with their toes": [65535, 0], "by the young men by sitting with their toes pressed": [65535, 0], "the young men by sitting with their toes pressed against": [65535, 0], "young men by sitting with their toes pressed against a": [65535, 0], "men by sitting with their toes pressed against a wall": [65535, 0], "by sitting with their toes pressed against a wall for": [65535, 0], "sitting with their toes pressed against a wall for hours": [65535, 0], "with their toes pressed against a wall for hours together": [65535, 0], "their toes pressed against a wall for hours together mr": [65535, 0], "toes pressed against a wall for hours together mr walters": [65535, 0], "pressed against a wall for hours together mr walters was": [65535, 0], "against a wall for hours together mr walters was very": [65535, 0], "a wall for hours together mr walters was very earnest": [65535, 0], "wall for hours together mr walters was very earnest of": [65535, 0], "for hours together mr walters was very earnest of mien": [65535, 0], "hours together mr walters was very earnest of mien and": [65535, 0], "together mr walters was very earnest of mien and very": [65535, 0], "mr walters was very earnest of mien and very sincere": [65535, 0], "walters was very earnest of mien and very sincere and": [65535, 0], "was very earnest of mien and very sincere and honest": [65535, 0], "very earnest of mien and very sincere and honest at": [65535, 0], "earnest of mien and very sincere and honest at heart": [65535, 0], "of mien and very sincere and honest at heart and": [65535, 0], "mien and very sincere and honest at heart and he": [65535, 0], "and very sincere and honest at heart and he held": [65535, 0], "very sincere and honest at heart and he held sacred": [65535, 0], "sincere and honest at heart and he held sacred things": [65535, 0], "and honest at heart and he held sacred things and": [65535, 0], "honest at heart and he held sacred things and places": [65535, 0], "at heart and he held sacred things and places in": [65535, 0], "heart and he held sacred things and places in such": [65535, 0], "and he held sacred things and places in such reverence": [65535, 0], "he held sacred things and places in such reverence and": [65535, 0], "held sacred things and places in such reverence and so": [65535, 0], "sacred things and places in such reverence and so separated": [65535, 0], "things and places in such reverence and so separated them": [65535, 0], "and places in such reverence and so separated them from": [65535, 0], "places in such reverence and so separated them from worldly": [65535, 0], "in such reverence and so separated them from worldly matters": [65535, 0], "such reverence and so separated them from worldly matters that": [65535, 0], "reverence and so separated them from worldly matters that unconsciously": [65535, 0], "and so separated them from worldly matters that unconsciously to": [65535, 0], "so separated them from worldly matters that unconsciously to himself": [65535, 0], "separated them from worldly matters that unconsciously to himself his": [65535, 0], "them from worldly matters that unconsciously to himself his sunday": [65535, 0], "from worldly matters that unconsciously to himself his sunday school": [65535, 0], "worldly matters that unconsciously to himself his sunday school voice": [65535, 0], "matters that unconsciously to himself his sunday school voice had": [65535, 0], "that unconsciously to himself his sunday school voice had acquired": [65535, 0], "unconsciously to himself his sunday school voice had acquired a": [65535, 0], "to himself his sunday school voice had acquired a peculiar": [65535, 0], "himself his sunday school voice had acquired a peculiar intonation": [65535, 0], "his sunday school voice had acquired a peculiar intonation which": [65535, 0], "sunday school voice had acquired a peculiar intonation which was": [65535, 0], "school voice had acquired a peculiar intonation which was wholly": [65535, 0], "voice had acquired a peculiar intonation which was wholly absent": [65535, 0], "had acquired a peculiar intonation which was wholly absent on": [65535, 0], "acquired a peculiar intonation which was wholly absent on week": [65535, 0], "a peculiar intonation which was wholly absent on week days": [65535, 0], "peculiar intonation which was wholly absent on week days he": [65535, 0], "intonation which was wholly absent on week days he began": [65535, 0], "which was wholly absent on week days he began after": [65535, 0], "was wholly absent on week days he began after this": [65535, 0], "wholly absent on week days he began after this fashion": [65535, 0], "absent on week days he began after this fashion now": [65535, 0], "on week days he began after this fashion now children": [65535, 0], "week days he began after this fashion now children i": [65535, 0], "days he began after this fashion now children i want": [65535, 0], "he began after this fashion now children i want you": [65535, 0], "began after this fashion now children i want you all": [65535, 0], "after this fashion now children i want you all to": [65535, 0], "this fashion now children i want you all to sit": [65535, 0], "fashion now children i want you all to sit up": [65535, 0], "now children i want you all to sit up just": [65535, 0], "children i want you all to sit up just as": [65535, 0], "i want you all to sit up just as straight": [65535, 0], "want you all to sit up just as straight and": [65535, 0], "you all to sit up just as straight and pretty": [65535, 0], "all to sit up just as straight and pretty as": [65535, 0], "to sit up just as straight and pretty as you": [65535, 0], "sit up just as straight and pretty as you can": [65535, 0], "up just as straight and pretty as you can and": [65535, 0], "just as straight and pretty as you can and give": [65535, 0], "as straight and pretty as you can and give me": [65535, 0], "straight and pretty as you can and give me all": [65535, 0], "and pretty as you can and give me all your": [65535, 0], "pretty as you can and give me all your attention": [65535, 0], "as you can and give me all your attention for": [65535, 0], "you can and give me all your attention for a": [65535, 0], "can and give me all your attention for a minute": [65535, 0], "and give me all your attention for a minute or": [65535, 0], "give me all your attention for a minute or two": [65535, 0], "me all your attention for a minute or two there": [65535, 0], "all your attention for a minute or two there that": [65535, 0], "your attention for a minute or two there that is": [65535, 0], "attention for a minute or two there that is it": [65535, 0], "for a minute or two there that is it that": [65535, 0], "a minute or two there that is it that is": [65535, 0], "minute or two there that is it that is the": [65535, 0], "or two there that is it that is the way": [65535, 0], "two there that is it that is the way good": [65535, 0], "there that is it that is the way good little": [65535, 0], "that is it that is the way good little boys": [65535, 0], "is it that is the way good little boys and": [65535, 0], "it that is the way good little boys and girls": [65535, 0], "that is the way good little boys and girls should": [65535, 0], "is the way good little boys and girls should do": [65535, 0], "the way good little boys and girls should do i": [65535, 0], "way good little boys and girls should do i see": [65535, 0], "good little boys and girls should do i see one": [65535, 0], "little boys and girls should do i see one little": [65535, 0], "boys and girls should do i see one little girl": [65535, 0], "and girls should do i see one little girl who": [65535, 0], "girls should do i see one little girl who is": [65535, 0], "should do i see one little girl who is looking": [65535, 0], "do i see one little girl who is looking out": [65535, 0], "i see one little girl who is looking out of": [65535, 0], "see one little girl who is looking out of the": [65535, 0], "one little girl who is looking out of the window": [65535, 0], "little girl who is looking out of the window i": [65535, 0], "girl who is looking out of the window i am": [65535, 0], "who is looking out of the window i am afraid": [65535, 0], "is looking out of the window i am afraid she": [65535, 0], "looking out of the window i am afraid she thinks": [65535, 0], "out of the window i am afraid she thinks i": [65535, 0], "of the window i am afraid she thinks i am": [65535, 0], "the window i am afraid she thinks i am out": [65535, 0], "window i am afraid she thinks i am out there": [65535, 0], "i am afraid she thinks i am out there somewhere": [65535, 0], "am afraid she thinks i am out there somewhere perhaps": [65535, 0], "afraid she thinks i am out there somewhere perhaps up": [65535, 0], "she thinks i am out there somewhere perhaps up in": [65535, 0], "thinks i am out there somewhere perhaps up in one": [65535, 0], "i am out there somewhere perhaps up in one of": [65535, 0], "am out there somewhere perhaps up in one of the": [65535, 0], "out there somewhere perhaps up in one of the trees": [65535, 0], "there somewhere perhaps up in one of the trees making": [65535, 0], "somewhere perhaps up in one of the trees making a": [65535, 0], "perhaps up in one of the trees making a speech": [65535, 0], "up in one of the trees making a speech to": [65535, 0], "in one of the trees making a speech to the": [65535, 0], "one of the trees making a speech to the little": [65535, 0], "of the trees making a speech to the little birds": [65535, 0], "the trees making a speech to the little birds applausive": [65535, 0], "trees making a speech to the little birds applausive titter": [65535, 0], "making a speech to the little birds applausive titter i": [65535, 0], "a speech to the little birds applausive titter i want": [65535, 0], "speech to the little birds applausive titter i want to": [65535, 0], "to the little birds applausive titter i want to tell": [65535, 0], "the little birds applausive titter i want to tell you": [65535, 0], "little birds applausive titter i want to tell you how": [65535, 0], "birds applausive titter i want to tell you how good": [65535, 0], "applausive titter i want to tell you how good it": [65535, 0], "titter i want to tell you how good it makes": [65535, 0], "i want to tell you how good it makes me": [65535, 0], "want to tell you how good it makes me feel": [65535, 0], "to tell you how good it makes me feel to": [65535, 0], "tell you how good it makes me feel to see": [65535, 0], "you how good it makes me feel to see so": [65535, 0], "how good it makes me feel to see so many": [65535, 0], "good it makes me feel to see so many bright": [65535, 0], "it makes me feel to see so many bright clean": [65535, 0], "makes me feel to see so many bright clean little": [65535, 0], "me feel to see so many bright clean little faces": [65535, 0], "feel to see so many bright clean little faces assembled": [65535, 0], "to see so many bright clean little faces assembled in": [65535, 0], "see so many bright clean little faces assembled in a": [65535, 0], "so many bright clean little faces assembled in a place": [65535, 0], "many bright clean little faces assembled in a place like": [65535, 0], "bright clean little faces assembled in a place like this": [65535, 0], "clean little faces assembled in a place like this learning": [65535, 0], "little faces assembled in a place like this learning to": [65535, 0], "faces assembled in a place like this learning to do": [65535, 0], "assembled in a place like this learning to do right": [65535, 0], "in a place like this learning to do right and": [65535, 0], "a place like this learning to do right and be": [65535, 0], "place like this learning to do right and be good": [65535, 0], "like this learning to do right and be good and": [65535, 0], "this learning to do right and be good and so": [65535, 0], "learning to do right and be good and so forth": [65535, 0], "to do right and be good and so forth and": [65535, 0], "do right and be good and so forth and so": [65535, 0], "right and be good and so forth and so on": [65535, 0], "and be good and so forth and so on it": [65535, 0], "be good and so forth and so on it is": [65535, 0], "good and so forth and so on it is not": [65535, 0], "and so forth and so on it is not necessary": [65535, 0], "so forth and so on it is not necessary to": [65535, 0], "forth and so on it is not necessary to set": [65535, 0], "and so on it is not necessary to set down": [65535, 0], "so on it is not necessary to set down the": [65535, 0], "on it is not necessary to set down the rest": [65535, 0], "it is not necessary to set down the rest of": [65535, 0], "is not necessary to set down the rest of the": [65535, 0], "not necessary to set down the rest of the oration": [65535, 0], "necessary to set down the rest of the oration it": [65535, 0], "to set down the rest of the oration it was": [65535, 0], "set down the rest of the oration it was of": [65535, 0], "down the rest of the oration it was of a": [65535, 0], "the rest of the oration it was of a pattern": [65535, 0], "rest of the oration it was of a pattern which": [65535, 0], "of the oration it was of a pattern which does": [65535, 0], "the oration it was of a pattern which does not": [65535, 0], "oration it was of a pattern which does not vary": [65535, 0], "it was of a pattern which does not vary and": [65535, 0], "was of a pattern which does not vary and so": [65535, 0], "of a pattern which does not vary and so it": [65535, 0], "a pattern which does not vary and so it is": [65535, 0], "pattern which does not vary and so it is familiar": [65535, 0], "which does not vary and so it is familiar to": [65535, 0], "does not vary and so it is familiar to us": [65535, 0], "not vary and so it is familiar to us all": [65535, 0], "vary and so it is familiar to us all the": [65535, 0], "and so it is familiar to us all the latter": [65535, 0], "so it is familiar to us all the latter third": [65535, 0], "it is familiar to us all the latter third of": [65535, 0], "is familiar to us all the latter third of the": [65535, 0], "familiar to us all the latter third of the speech": [65535, 0], "to us all the latter third of the speech was": [65535, 0], "us all the latter third of the speech was marred": [65535, 0], "all the latter third of the speech was marred by": [65535, 0], "the latter third of the speech was marred by the": [65535, 0], "latter third of the speech was marred by the resumption": [65535, 0], "third of the speech was marred by the resumption of": [65535, 0], "of the speech was marred by the resumption of fights": [65535, 0], "the speech was marred by the resumption of fights and": [65535, 0], "speech was marred by the resumption of fights and other": [65535, 0], "was marred by the resumption of fights and other recreations": [65535, 0], "marred by the resumption of fights and other recreations among": [65535, 0], "by the resumption of fights and other recreations among certain": [65535, 0], "the resumption of fights and other recreations among certain of": [65535, 0], "resumption of fights and other recreations among certain of the": [65535, 0], "of fights and other recreations among certain of the bad": [65535, 0], "fights and other recreations among certain of the bad boys": [65535, 0], "and other recreations among certain of the bad boys and": [65535, 0], "other recreations among certain of the bad boys and by": [65535, 0], "recreations among certain of the bad boys and by fidgetings": [65535, 0], "among certain of the bad boys and by fidgetings and": [65535, 0], "certain of the bad boys and by fidgetings and whisperings": [65535, 0], "of the bad boys and by fidgetings and whisperings that": [65535, 0], "the bad boys and by fidgetings and whisperings that extended": [65535, 0], "bad boys and by fidgetings and whisperings that extended far": [65535, 0], "boys and by fidgetings and whisperings that extended far and": [65535, 0], "and by fidgetings and whisperings that extended far and wide": [65535, 0], "by fidgetings and whisperings that extended far and wide washing": [65535, 0], "fidgetings and whisperings that extended far and wide washing even": [65535, 0], "and whisperings that extended far and wide washing even to": [65535, 0], "whisperings that extended far and wide washing even to the": [65535, 0], "that extended far and wide washing even to the bases": [65535, 0], "extended far and wide washing even to the bases of": [65535, 0], "far and wide washing even to the bases of isolated": [65535, 0], "and wide washing even to the bases of isolated and": [65535, 0], "wide washing even to the bases of isolated and incorruptible": [65535, 0], "washing even to the bases of isolated and incorruptible rocks": [65535, 0], "even to the bases of isolated and incorruptible rocks like": [65535, 0], "to the bases of isolated and incorruptible rocks like sid": [65535, 0], "the bases of isolated and incorruptible rocks like sid and": [65535, 0], "bases of isolated and incorruptible rocks like sid and mary": [65535, 0], "of isolated and incorruptible rocks like sid and mary but": [65535, 0], "isolated and incorruptible rocks like sid and mary but now": [65535, 0], "and incorruptible rocks like sid and mary but now every": [65535, 0], "incorruptible rocks like sid and mary but now every sound": [65535, 0], "rocks like sid and mary but now every sound ceased": [65535, 0], "like sid and mary but now every sound ceased suddenly": [65535, 0], "sid and mary but now every sound ceased suddenly with": [65535, 0], "and mary but now every sound ceased suddenly with the": [65535, 0], "mary but now every sound ceased suddenly with the subsidence": [65535, 0], "but now every sound ceased suddenly with the subsidence of": [65535, 0], "now every sound ceased suddenly with the subsidence of mr": [65535, 0], "every sound ceased suddenly with the subsidence of mr walters'": [65535, 0], "sound ceased suddenly with the subsidence of mr walters' voice": [65535, 0], "ceased suddenly with the subsidence of mr walters' voice and": [65535, 0], "suddenly with the subsidence of mr walters' voice and the": [65535, 0], "with the subsidence of mr walters' voice and the conclusion": [65535, 0], "the subsidence of mr walters' voice and the conclusion of": [65535, 0], "subsidence of mr walters' voice and the conclusion of the": [65535, 0], "of mr walters' voice and the conclusion of the speech": [65535, 0], "mr walters' voice and the conclusion of the speech was": [65535, 0], "walters' voice and the conclusion of the speech was received": [65535, 0], "voice and the conclusion of the speech was received with": [65535, 0], "and the conclusion of the speech was received with a": [65535, 0], "the conclusion of the speech was received with a burst": [65535, 0], "conclusion of the speech was received with a burst of": [65535, 0], "of the speech was received with a burst of silent": [65535, 0], "the speech was received with a burst of silent gratitude": [65535, 0], "speech was received with a burst of silent gratitude a": [65535, 0], "was received with a burst of silent gratitude a good": [65535, 0], "received with a burst of silent gratitude a good part": [65535, 0], "with a burst of silent gratitude a good part of": [65535, 0], "a burst of silent gratitude a good part of the": [65535, 0], "burst of silent gratitude a good part of the whispering": [65535, 0], "of silent gratitude a good part of the whispering had": [65535, 0], "silent gratitude a good part of the whispering had been": [65535, 0], "gratitude a good part of the whispering had been occasioned": [65535, 0], "a good part of the whispering had been occasioned by": [65535, 0], "good part of the whispering had been occasioned by an": [65535, 0], "part of the whispering had been occasioned by an event": [65535, 0], "of the whispering had been occasioned by an event which": [65535, 0], "the whispering had been occasioned by an event which was": [65535, 0], "whispering had been occasioned by an event which was more": [65535, 0], "had been occasioned by an event which was more or": [65535, 0], "been occasioned by an event which was more or less": [65535, 0], "occasioned by an event which was more or less rare": [65535, 0], "by an event which was more or less rare the": [65535, 0], "an event which was more or less rare the entrance": [65535, 0], "event which was more or less rare the entrance of": [65535, 0], "which was more or less rare the entrance of visitors": [65535, 0], "was more or less rare the entrance of visitors lawyer": [65535, 0], "more or less rare the entrance of visitors lawyer thatcher": [65535, 0], "or less rare the entrance of visitors lawyer thatcher accompanied": [65535, 0], "less rare the entrance of visitors lawyer thatcher accompanied by": [65535, 0], "rare the entrance of visitors lawyer thatcher accompanied by a": [65535, 0], "the entrance of visitors lawyer thatcher accompanied by a very": [65535, 0], "entrance of visitors lawyer thatcher accompanied by a very feeble": [65535, 0], "of visitors lawyer thatcher accompanied by a very feeble and": [65535, 0], "visitors lawyer thatcher accompanied by a very feeble and aged": [65535, 0], "lawyer thatcher accompanied by a very feeble and aged man": [65535, 0], "thatcher accompanied by a very feeble and aged man a": [65535, 0], "accompanied by a very feeble and aged man a fine": [65535, 0], "by a very feeble and aged man a fine portly": [65535, 0], "a very feeble and aged man a fine portly middle": [65535, 0], "very feeble and aged man a fine portly middle aged": [65535, 0], "feeble and aged man a fine portly middle aged gentleman": [65535, 0], "and aged man a fine portly middle aged gentleman with": [65535, 0], "aged man a fine portly middle aged gentleman with iron": [65535, 0], "man a fine portly middle aged gentleman with iron gray": [65535, 0], "a fine portly middle aged gentleman with iron gray hair": [65535, 0], "fine portly middle aged gentleman with iron gray hair and": [65535, 0], "portly middle aged gentleman with iron gray hair and a": [65535, 0], "middle aged gentleman with iron gray hair and a dignified": [65535, 0], "aged gentleman with iron gray hair and a dignified lady": [65535, 0], "gentleman with iron gray hair and a dignified lady who": [65535, 0], "with iron gray hair and a dignified lady who was": [65535, 0], "iron gray hair and a dignified lady who was doubtless": [65535, 0], "gray hair and a dignified lady who was doubtless the": [65535, 0], "hair and a dignified lady who was doubtless the latter's": [65535, 0], "and a dignified lady who was doubtless the latter's wife": [65535, 0], "a dignified lady who was doubtless the latter's wife the": [65535, 0], "dignified lady who was doubtless the latter's wife the lady": [65535, 0], "lady who was doubtless the latter's wife the lady was": [65535, 0], "who was doubtless the latter's wife the lady was leading": [65535, 0], "was doubtless the latter's wife the lady was leading a": [65535, 0], "doubtless the latter's wife the lady was leading a child": [65535, 0], "the latter's wife the lady was leading a child tom": [65535, 0], "latter's wife the lady was leading a child tom had": [65535, 0], "wife the lady was leading a child tom had been": [65535, 0], "the lady was leading a child tom had been restless": [65535, 0], "lady was leading a child tom had been restless and": [65535, 0], "was leading a child tom had been restless and full": [65535, 0], "leading a child tom had been restless and full of": [65535, 0], "a child tom had been restless and full of chafings": [65535, 0], "child tom had been restless and full of chafings and": [65535, 0], "tom had been restless and full of chafings and repinings": [65535, 0], "had been restless and full of chafings and repinings conscience": [65535, 0], "been restless and full of chafings and repinings conscience smitten": [65535, 0], "restless and full of chafings and repinings conscience smitten too": [65535, 0], "and full of chafings and repinings conscience smitten too he": [65535, 0], "full of chafings and repinings conscience smitten too he could": [65535, 0], "of chafings and repinings conscience smitten too he could not": [65535, 0], "chafings and repinings conscience smitten too he could not meet": [65535, 0], "and repinings conscience smitten too he could not meet amy": [65535, 0], "repinings conscience smitten too he could not meet amy lawrence's": [65535, 0], "conscience smitten too he could not meet amy lawrence's eye": [65535, 0], "smitten too he could not meet amy lawrence's eye he": [65535, 0], "too he could not meet amy lawrence's eye he could": [65535, 0], "he could not meet amy lawrence's eye he could not": [65535, 0], "could not meet amy lawrence's eye he could not brook": [65535, 0], "not meet amy lawrence's eye he could not brook her": [65535, 0], "meet amy lawrence's eye he could not brook her loving": [65535, 0], "amy lawrence's eye he could not brook her loving gaze": [65535, 0], "lawrence's eye he could not brook her loving gaze but": [65535, 0], "eye he could not brook her loving gaze but when": [65535, 0], "he could not brook her loving gaze but when he": [65535, 0], "could not brook her loving gaze but when he saw": [65535, 0], "not brook her loving gaze but when he saw this": [65535, 0], "brook her loving gaze but when he saw this small": [65535, 0], "her loving gaze but when he saw this small new": [65535, 0], "loving gaze but when he saw this small new comer": [65535, 0], "gaze but when he saw this small new comer his": [65535, 0], "but when he saw this small new comer his soul": [65535, 0], "when he saw this small new comer his soul was": [65535, 0], "he saw this small new comer his soul was all": [65535, 0], "saw this small new comer his soul was all ablaze": [65535, 0], "this small new comer his soul was all ablaze with": [65535, 0], "small new comer his soul was all ablaze with bliss": [65535, 0], "new comer his soul was all ablaze with bliss in": [65535, 0], "comer his soul was all ablaze with bliss in a": [65535, 0], "his soul was all ablaze with bliss in a moment": [65535, 0], "soul was all ablaze with bliss in a moment the": [65535, 0], "was all ablaze with bliss in a moment the next": [65535, 0], "all ablaze with bliss in a moment the next moment": [65535, 0], "ablaze with bliss in a moment the next moment he": [65535, 0], "with bliss in a moment the next moment he was": [65535, 0], "bliss in a moment the next moment he was showing": [65535, 0], "in a moment the next moment he was showing off": [65535, 0], "a moment the next moment he was showing off with": [65535, 0], "moment the next moment he was showing off with all": [65535, 0], "the next moment he was showing off with all his": [65535, 0], "next moment he was showing off with all his might": [65535, 0], "moment he was showing off with all his might cuffing": [65535, 0], "he was showing off with all his might cuffing boys": [65535, 0], "was showing off with all his might cuffing boys pulling": [65535, 0], "showing off with all his might cuffing boys pulling hair": [65535, 0], "off with all his might cuffing boys pulling hair making": [65535, 0], "with all his might cuffing boys pulling hair making faces": [65535, 0], "all his might cuffing boys pulling hair making faces in": [65535, 0], "his might cuffing boys pulling hair making faces in a": [65535, 0], "might cuffing boys pulling hair making faces in a word": [65535, 0], "cuffing boys pulling hair making faces in a word using": [65535, 0], "boys pulling hair making faces in a word using every": [65535, 0], "pulling hair making faces in a word using every art": [65535, 0], "hair making faces in a word using every art that": [65535, 0], "making faces in a word using every art that seemed": [65535, 0], "faces in a word using every art that seemed likely": [65535, 0], "in a word using every art that seemed likely to": [65535, 0], "a word using every art that seemed likely to fascinate": [65535, 0], "word using every art that seemed likely to fascinate a": [65535, 0], "using every art that seemed likely to fascinate a girl": [65535, 0], "every art that seemed likely to fascinate a girl and": [65535, 0], "art that seemed likely to fascinate a girl and win": [65535, 0], "that seemed likely to fascinate a girl and win her": [65535, 0], "seemed likely to fascinate a girl and win her applause": [65535, 0], "likely to fascinate a girl and win her applause his": [65535, 0], "to fascinate a girl and win her applause his exaltation": [65535, 0], "fascinate a girl and win her applause his exaltation had": [65535, 0], "a girl and win her applause his exaltation had but": [65535, 0], "girl and win her applause his exaltation had but one": [65535, 0], "and win her applause his exaltation had but one alloy": [65535, 0], "win her applause his exaltation had but one alloy the": [65535, 0], "her applause his exaltation had but one alloy the memory": [65535, 0], "applause his exaltation had but one alloy the memory of": [65535, 0], "his exaltation had but one alloy the memory of his": [65535, 0], "exaltation had but one alloy the memory of his humiliation": [65535, 0], "had but one alloy the memory of his humiliation in": [65535, 0], "but one alloy the memory of his humiliation in this": [65535, 0], "one alloy the memory of his humiliation in this angel's": [65535, 0], "alloy the memory of his humiliation in this angel's garden": [65535, 0], "the memory of his humiliation in this angel's garden and": [65535, 0], "memory of his humiliation in this angel's garden and that": [65535, 0], "of his humiliation in this angel's garden and that record": [65535, 0], "his humiliation in this angel's garden and that record in": [65535, 0], "humiliation in this angel's garden and that record in sand": [65535, 0], "in this angel's garden and that record in sand was": [65535, 0], "this angel's garden and that record in sand was fast": [65535, 0], "angel's garden and that record in sand was fast washing": [65535, 0], "garden and that record in sand was fast washing out": [65535, 0], "and that record in sand was fast washing out under": [65535, 0], "that record in sand was fast washing out under the": [65535, 0], "record in sand was fast washing out under the waves": [65535, 0], "in sand was fast washing out under the waves of": [65535, 0], "sand was fast washing out under the waves of happiness": [65535, 0], "was fast washing out under the waves of happiness that": [65535, 0], "fast washing out under the waves of happiness that were": [65535, 0], "washing out under the waves of happiness that were sweeping": [65535, 0], "out under the waves of happiness that were sweeping over": [65535, 0], "under the waves of happiness that were sweeping over it": [65535, 0], "the waves of happiness that were sweeping over it now": [65535, 0], "waves of happiness that were sweeping over it now the": [65535, 0], "of happiness that were sweeping over it now the visitors": [65535, 0], "happiness that were sweeping over it now the visitors were": [65535, 0], "that were sweeping over it now the visitors were given": [65535, 0], "were sweeping over it now the visitors were given the": [65535, 0], "sweeping over it now the visitors were given the highest": [65535, 0], "over it now the visitors were given the highest seat": [65535, 0], "it now the visitors were given the highest seat of": [65535, 0], "now the visitors were given the highest seat of honor": [65535, 0], "the visitors were given the highest seat of honor and": [65535, 0], "visitors were given the highest seat of honor and as": [65535, 0], "were given the highest seat of honor and as soon": [65535, 0], "given the highest seat of honor and as soon as": [65535, 0], "the highest seat of honor and as soon as mr": [65535, 0], "highest seat of honor and as soon as mr walters'": [65535, 0], "seat of honor and as soon as mr walters' speech": [65535, 0], "of honor and as soon as mr walters' speech was": [65535, 0], "honor and as soon as mr walters' speech was finished": [65535, 0], "and as soon as mr walters' speech was finished he": [65535, 0], "as soon as mr walters' speech was finished he introduced": [65535, 0], "soon as mr walters' speech was finished he introduced them": [65535, 0], "as mr walters' speech was finished he introduced them to": [65535, 0], "mr walters' speech was finished he introduced them to the": [65535, 0], "walters' speech was finished he introduced them to the school": [65535, 0], "speech was finished he introduced them to the school the": [65535, 0], "was finished he introduced them to the school the middle": [65535, 0], "finished he introduced them to the school the middle aged": [65535, 0], "he introduced them to the school the middle aged man": [65535, 0], "introduced them to the school the middle aged man turned": [65535, 0], "them to the school the middle aged man turned out": [65535, 0], "to the school the middle aged man turned out to": [65535, 0], "the school the middle aged man turned out to be": [65535, 0], "school the middle aged man turned out to be a": [65535, 0], "the middle aged man turned out to be a prodigious": [65535, 0], "middle aged man turned out to be a prodigious personage": [65535, 0], "aged man turned out to be a prodigious personage no": [65535, 0], "man turned out to be a prodigious personage no less": [65535, 0], "turned out to be a prodigious personage no less a": [65535, 0], "out to be a prodigious personage no less a one": [65535, 0], "to be a prodigious personage no less a one than": [65535, 0], "be a prodigious personage no less a one than the": [65535, 0], "a prodigious personage no less a one than the county": [65535, 0], "prodigious personage no less a one than the county judge": [65535, 0], "personage no less a one than the county judge altogether": [65535, 0], "no less a one than the county judge altogether the": [65535, 0], "less a one than the county judge altogether the most": [65535, 0], "a one than the county judge altogether the most august": [65535, 0], "one than the county judge altogether the most august creation": [65535, 0], "than the county judge altogether the most august creation these": [65535, 0], "the county judge altogether the most august creation these children": [65535, 0], "county judge altogether the most august creation these children had": [65535, 0], "judge altogether the most august creation these children had ever": [65535, 0], "altogether the most august creation these children had ever looked": [65535, 0], "the most august creation these children had ever looked upon": [65535, 0], "most august creation these children had ever looked upon and": [65535, 0], "august creation these children had ever looked upon and they": [65535, 0], "creation these children had ever looked upon and they wondered": [65535, 0], "these children had ever looked upon and they wondered what": [65535, 0], "children had ever looked upon and they wondered what kind": [65535, 0], "had ever looked upon and they wondered what kind of": [65535, 0], "ever looked upon and they wondered what kind of material": [65535, 0], "looked upon and they wondered what kind of material he": [65535, 0], "upon and they wondered what kind of material he was": [65535, 0], "and they wondered what kind of material he was made": [65535, 0], "they wondered what kind of material he was made of": [65535, 0], "wondered what kind of material he was made of and": [65535, 0], "what kind of material he was made of and they": [65535, 0], "kind of material he was made of and they half": [65535, 0], "of material he was made of and they half wanted": [65535, 0], "material he was made of and they half wanted to": [65535, 0], "he was made of and they half wanted to hear": [65535, 0], "was made of and they half wanted to hear him": [65535, 0], "made of and they half wanted to hear him roar": [65535, 0], "of and they half wanted to hear him roar and": [65535, 0], "and they half wanted to hear him roar and were": [65535, 0], "they half wanted to hear him roar and were half": [65535, 0], "half wanted to hear him roar and were half afraid": [65535, 0], "wanted to hear him roar and were half afraid he": [65535, 0], "to hear him roar and were half afraid he might": [65535, 0], "hear him roar and were half afraid he might too": [65535, 0], "him roar and were half afraid he might too he": [65535, 0], "roar and were half afraid he might too he was": [65535, 0], "and were half afraid he might too he was from": [65535, 0], "were half afraid he might too he was from constantinople": [65535, 0], "half afraid he might too he was from constantinople twelve": [65535, 0], "afraid he might too he was from constantinople twelve miles": [65535, 0], "he might too he was from constantinople twelve miles away": [65535, 0], "might too he was from constantinople twelve miles away so": [65535, 0], "too he was from constantinople twelve miles away so he": [65535, 0], "he was from constantinople twelve miles away so he had": [65535, 0], "was from constantinople twelve miles away so he had travelled": [65535, 0], "from constantinople twelve miles away so he had travelled and": [65535, 0], "constantinople twelve miles away so he had travelled and seen": [65535, 0], "twelve miles away so he had travelled and seen the": [65535, 0], "miles away so he had travelled and seen the world": [65535, 0], "away so he had travelled and seen the world these": [65535, 0], "so he had travelled and seen the world these very": [65535, 0], "he had travelled and seen the world these very eyes": [65535, 0], "had travelled and seen the world these very eyes had": [65535, 0], "travelled and seen the world these very eyes had looked": [65535, 0], "and seen the world these very eyes had looked upon": [65535, 0], "seen the world these very eyes had looked upon the": [65535, 0], "the world these very eyes had looked upon the county": [65535, 0], "world these very eyes had looked upon the county court": [65535, 0], "these very eyes had looked upon the county court house": [65535, 0], "very eyes had looked upon the county court house which": [65535, 0], "eyes had looked upon the county court house which was": [65535, 0], "had looked upon the county court house which was said": [65535, 0], "looked upon the county court house which was said to": [65535, 0], "upon the county court house which was said to have": [65535, 0], "the county court house which was said to have a": [65535, 0], "county court house which was said to have a tin": [65535, 0], "court house which was said to have a tin roof": [65535, 0], "house which was said to have a tin roof the": [65535, 0], "which was said to have a tin roof the awe": [65535, 0], "was said to have a tin roof the awe which": [65535, 0], "said to have a tin roof the awe which these": [65535, 0], "to have a tin roof the awe which these reflections": [65535, 0], "have a tin roof the awe which these reflections inspired": [65535, 0], "a tin roof the awe which these reflections inspired was": [65535, 0], "tin roof the awe which these reflections inspired was attested": [65535, 0], "roof the awe which these reflections inspired was attested by": [65535, 0], "the awe which these reflections inspired was attested by the": [65535, 0], "awe which these reflections inspired was attested by the impressive": [65535, 0], "which these reflections inspired was attested by the impressive silence": [65535, 0], "these reflections inspired was attested by the impressive silence and": [65535, 0], "reflections inspired was attested by the impressive silence and the": [65535, 0], "inspired was attested by the impressive silence and the ranks": [65535, 0], "was attested by the impressive silence and the ranks of": [65535, 0], "attested by the impressive silence and the ranks of staring": [65535, 0], "by the impressive silence and the ranks of staring eyes": [65535, 0], "the impressive silence and the ranks of staring eyes this": [65535, 0], "impressive silence and the ranks of staring eyes this was": [65535, 0], "silence and the ranks of staring eyes this was the": [65535, 0], "and the ranks of staring eyes this was the great": [65535, 0], "the ranks of staring eyes this was the great judge": [65535, 0], "ranks of staring eyes this was the great judge thatcher": [65535, 0], "of staring eyes this was the great judge thatcher brother": [65535, 0], "staring eyes this was the great judge thatcher brother of": [65535, 0], "eyes this was the great judge thatcher brother of their": [65535, 0], "this was the great judge thatcher brother of their own": [65535, 0], "was the great judge thatcher brother of their own lawyer": [65535, 0], "the great judge thatcher brother of their own lawyer jeff": [65535, 0], "great judge thatcher brother of their own lawyer jeff thatcher": [65535, 0], "judge thatcher brother of their own lawyer jeff thatcher immediately": [65535, 0], "thatcher brother of their own lawyer jeff thatcher immediately went": [65535, 0], "brother of their own lawyer jeff thatcher immediately went forward": [65535, 0], "of their own lawyer jeff thatcher immediately went forward to": [65535, 0], "their own lawyer jeff thatcher immediately went forward to be": [65535, 0], "own lawyer jeff thatcher immediately went forward to be familiar": [65535, 0], "lawyer jeff thatcher immediately went forward to be familiar with": [65535, 0], "jeff thatcher immediately went forward to be familiar with the": [65535, 0], "thatcher immediately went forward to be familiar with the great": [65535, 0], "immediately went forward to be familiar with the great man": [65535, 0], "went forward to be familiar with the great man and": [65535, 0], "forward to be familiar with the great man and be": [65535, 0], "to be familiar with the great man and be envied": [65535, 0], "be familiar with the great man and be envied by": [65535, 0], "familiar with the great man and be envied by the": [65535, 0], "with the great man and be envied by the school": [65535, 0], "the great man and be envied by the school it": [65535, 0], "great man and be envied by the school it would": [65535, 0], "man and be envied by the school it would have": [65535, 0], "and be envied by the school it would have been": [65535, 0], "be envied by the school it would have been music": [65535, 0], "envied by the school it would have been music to": [65535, 0], "by the school it would have been music to his": [65535, 0], "the school it would have been music to his soul": [65535, 0], "school it would have been music to his soul to": [65535, 0], "it would have been music to his soul to hear": [65535, 0], "would have been music to his soul to hear the": [65535, 0], "have been music to his soul to hear the whisperings": [65535, 0], "been music to his soul to hear the whisperings look": [65535, 0], "music to his soul to hear the whisperings look at": [65535, 0], "to his soul to hear the whisperings look at him": [65535, 0], "his soul to hear the whisperings look at him jim": [65535, 0], "soul to hear the whisperings look at him jim he's": [65535, 0], "to hear the whisperings look at him jim he's a": [65535, 0], "hear the whisperings look at him jim he's a going": [65535, 0], "the whisperings look at him jim he's a going up": [65535, 0], "whisperings look at him jim he's a going up there": [65535, 0], "look at him jim he's a going up there say": [65535, 0], "at him jim he's a going up there say look": [65535, 0], "him jim he's a going up there say look he's": [65535, 0], "jim he's a going up there say look he's a": [65535, 0], "he's a going up there say look he's a going": [65535, 0], "a going up there say look he's a going to": [65535, 0], "going up there say look he's a going to shake": [65535, 0], "up there say look he's a going to shake hands": [65535, 0], "there say look he's a going to shake hands with": [65535, 0], "say look he's a going to shake hands with him": [65535, 0], "look he's a going to shake hands with him he": [65535, 0], "he's a going to shake hands with him he is": [65535, 0], "a going to shake hands with him he is shaking": [65535, 0], "going to shake hands with him he is shaking hands": [65535, 0], "to shake hands with him he is shaking hands with": [65535, 0], "shake hands with him he is shaking hands with him": [65535, 0], "hands with him he is shaking hands with him by": [65535, 0], "with him he is shaking hands with him by jings": [65535, 0], "him he is shaking hands with him by jings don't": [65535, 0], "he is shaking hands with him by jings don't you": [65535, 0], "is shaking hands with him by jings don't you wish": [65535, 0], "shaking hands with him by jings don't you wish you": [65535, 0], "hands with him by jings don't you wish you was": [65535, 0], "with him by jings don't you wish you was jeff": [65535, 0], "him by jings don't you wish you was jeff mr": [65535, 0], "by jings don't you wish you was jeff mr walters": [65535, 0], "jings don't you wish you was jeff mr walters fell": [65535, 0], "don't you wish you was jeff mr walters fell to": [65535, 0], "you wish you was jeff mr walters fell to showing": [65535, 0], "wish you was jeff mr walters fell to showing off": [65535, 0], "you was jeff mr walters fell to showing off with": [65535, 0], "was jeff mr walters fell to showing off with all": [65535, 0], "jeff mr walters fell to showing off with all sorts": [65535, 0], "mr walters fell to showing off with all sorts of": [65535, 0], "walters fell to showing off with all sorts of official": [65535, 0], "fell to showing off with all sorts of official bustlings": [65535, 0], "to showing off with all sorts of official bustlings and": [65535, 0], "showing off with all sorts of official bustlings and activities": [65535, 0], "off with all sorts of official bustlings and activities giving": [65535, 0], "with all sorts of official bustlings and activities giving orders": [65535, 0], "all sorts of official bustlings and activities giving orders delivering": [65535, 0], "sorts of official bustlings and activities giving orders delivering judgments": [65535, 0], "of official bustlings and activities giving orders delivering judgments discharging": [65535, 0], "official bustlings and activities giving orders delivering judgments discharging directions": [65535, 0], "bustlings and activities giving orders delivering judgments discharging directions here": [65535, 0], "and activities giving orders delivering judgments discharging directions here there": [65535, 0], "activities giving orders delivering judgments discharging directions here there everywhere": [65535, 0], "giving orders delivering judgments discharging directions here there everywhere that": [65535, 0], "orders delivering judgments discharging directions here there everywhere that he": [65535, 0], "delivering judgments discharging directions here there everywhere that he could": [65535, 0], "judgments discharging directions here there everywhere that he could find": [65535, 0], "discharging directions here there everywhere that he could find a": [65535, 0], "directions here there everywhere that he could find a target": [65535, 0], "here there everywhere that he could find a target the": [65535, 0], "there everywhere that he could find a target the librarian": [65535, 0], "everywhere that he could find a target the librarian showed": [65535, 0], "that he could find a target the librarian showed off": [65535, 0], "he could find a target the librarian showed off running": [65535, 0], "could find a target the librarian showed off running hither": [65535, 0], "find a target the librarian showed off running hither and": [65535, 0], "a target the librarian showed off running hither and thither": [65535, 0], "target the librarian showed off running hither and thither with": [65535, 0], "the librarian showed off running hither and thither with his": [65535, 0], "librarian showed off running hither and thither with his arms": [65535, 0], "showed off running hither and thither with his arms full": [65535, 0], "off running hither and thither with his arms full of": [65535, 0], "running hither and thither with his arms full of books": [65535, 0], "hither and thither with his arms full of books and": [65535, 0], "and thither with his arms full of books and making": [65535, 0], "thither with his arms full of books and making a": [65535, 0], "with his arms full of books and making a deal": [65535, 0], "his arms full of books and making a deal of": [65535, 0], "arms full of books and making a deal of the": [65535, 0], "full of books and making a deal of the splutter": [65535, 0], "of books and making a deal of the splutter and": [65535, 0], "books and making a deal of the splutter and fuss": [65535, 0], "and making a deal of the splutter and fuss that": [65535, 0], "making a deal of the splutter and fuss that insect": [65535, 0], "a deal of the splutter and fuss that insect authority": [65535, 0], "deal of the splutter and fuss that insect authority delights": [65535, 0], "of the splutter and fuss that insect authority delights in": [65535, 0], "the splutter and fuss that insect authority delights in the": [65535, 0], "splutter and fuss that insect authority delights in the young": [65535, 0], "and fuss that insect authority delights in the young lady": [65535, 0], "fuss that insect authority delights in the young lady teachers": [65535, 0], "that insect authority delights in the young lady teachers showed": [65535, 0], "insect authority delights in the young lady teachers showed off": [65535, 0], "authority delights in the young lady teachers showed off bending": [65535, 0], "delights in the young lady teachers showed off bending sweetly": [65535, 0], "in the young lady teachers showed off bending sweetly over": [65535, 0], "the young lady teachers showed off bending sweetly over pupils": [65535, 0], "young lady teachers showed off bending sweetly over pupils that": [65535, 0], "lady teachers showed off bending sweetly over pupils that were": [65535, 0], "teachers showed off bending sweetly over pupils that were lately": [65535, 0], "showed off bending sweetly over pupils that were lately being": [65535, 0], "off bending sweetly over pupils that were lately being boxed": [65535, 0], "bending sweetly over pupils that were lately being boxed lifting": [65535, 0], "sweetly over pupils that were lately being boxed lifting pretty": [65535, 0], "over pupils that were lately being boxed lifting pretty warning": [65535, 0], "pupils that were lately being boxed lifting pretty warning fingers": [65535, 0], "that were lately being boxed lifting pretty warning fingers at": [65535, 0], "were lately being boxed lifting pretty warning fingers at bad": [65535, 0], "lately being boxed lifting pretty warning fingers at bad little": [65535, 0], "being boxed lifting pretty warning fingers at bad little boys": [65535, 0], "boxed lifting pretty warning fingers at bad little boys and": [65535, 0], "lifting pretty warning fingers at bad little boys and patting": [65535, 0], "pretty warning fingers at bad little boys and patting good": [65535, 0], "warning fingers at bad little boys and patting good ones": [65535, 0], "fingers at bad little boys and patting good ones lovingly": [65535, 0], "at bad little boys and patting good ones lovingly the": [65535, 0], "bad little boys and patting good ones lovingly the young": [65535, 0], "little boys and patting good ones lovingly the young gentlemen": [65535, 0], "boys and patting good ones lovingly the young gentlemen teachers": [65535, 0], "and patting good ones lovingly the young gentlemen teachers showed": [65535, 0], "patting good ones lovingly the young gentlemen teachers showed off": [65535, 0], "good ones lovingly the young gentlemen teachers showed off with": [65535, 0], "ones lovingly the young gentlemen teachers showed off with small": [65535, 0], "lovingly the young gentlemen teachers showed off with small scoldings": [65535, 0], "the young gentlemen teachers showed off with small scoldings and": [65535, 0], "young gentlemen teachers showed off with small scoldings and other": [65535, 0], "gentlemen teachers showed off with small scoldings and other little": [65535, 0], "teachers showed off with small scoldings and other little displays": [65535, 0], "showed off with small scoldings and other little displays of": [65535, 0], "off with small scoldings and other little displays of authority": [65535, 0], "with small scoldings and other little displays of authority and": [65535, 0], "small scoldings and other little displays of authority and fine": [65535, 0], "scoldings and other little displays of authority and fine attention": [65535, 0], "and other little displays of authority and fine attention to": [65535, 0], "other little displays of authority and fine attention to discipline": [65535, 0], "little displays of authority and fine attention to discipline and": [65535, 0], "displays of authority and fine attention to discipline and most": [65535, 0], "of authority and fine attention to discipline and most of": [65535, 0], "authority and fine attention to discipline and most of the": [65535, 0], "and fine attention to discipline and most of the teachers": [65535, 0], "fine attention to discipline and most of the teachers of": [65535, 0], "attention to discipline and most of the teachers of both": [65535, 0], "to discipline and most of the teachers of both sexes": [65535, 0], "discipline and most of the teachers of both sexes found": [65535, 0], "and most of the teachers of both sexes found business": [65535, 0], "most of the teachers of both sexes found business up": [65535, 0], "of the teachers of both sexes found business up at": [65535, 0], "the teachers of both sexes found business up at the": [65535, 0], "teachers of both sexes found business up at the library": [65535, 0], "of both sexes found business up at the library by": [65535, 0], "both sexes found business up at the library by the": [65535, 0], "sexes found business up at the library by the pulpit": [65535, 0], "found business up at the library by the pulpit and": [65535, 0], "business up at the library by the pulpit and it": [65535, 0], "up at the library by the pulpit and it was": [65535, 0], "at the library by the pulpit and it was business": [65535, 0], "the library by the pulpit and it was business that": [65535, 0], "library by the pulpit and it was business that frequently": [65535, 0], "by the pulpit and it was business that frequently had": [65535, 0], "the pulpit and it was business that frequently had to": [65535, 0], "pulpit and it was business that frequently had to be": [65535, 0], "and it was business that frequently had to be done": [65535, 0], "it was business that frequently had to be done over": [65535, 0], "was business that frequently had to be done over again": [65535, 0], "business that frequently had to be done over again two": [65535, 0], "that frequently had to be done over again two or": [65535, 0], "frequently had to be done over again two or three": [65535, 0], "had to be done over again two or three times": [65535, 0], "to be done over again two or three times with": [65535, 0], "be done over again two or three times with much": [65535, 0], "done over again two or three times with much seeming": [65535, 0], "over again two or three times with much seeming vexation": [65535, 0], "again two or three times with much seeming vexation the": [65535, 0], "two or three times with much seeming vexation the little": [65535, 0], "or three times with much seeming vexation the little girls": [65535, 0], "three times with much seeming vexation the little girls showed": [65535, 0], "times with much seeming vexation the little girls showed off": [65535, 0], "with much seeming vexation the little girls showed off in": [65535, 0], "much seeming vexation the little girls showed off in various": [65535, 0], "seeming vexation the little girls showed off in various ways": [65535, 0], "vexation the little girls showed off in various ways and": [65535, 0], "the little girls showed off in various ways and the": [65535, 0], "little girls showed off in various ways and the little": [65535, 0], "girls showed off in various ways and the little boys": [65535, 0], "showed off in various ways and the little boys showed": [65535, 0], "off in various ways and the little boys showed off": [65535, 0], "in various ways and the little boys showed off with": [65535, 0], "various ways and the little boys showed off with such": [65535, 0], "ways and the little boys showed off with such diligence": [65535, 0], "and the little boys showed off with such diligence that": [65535, 0], "the little boys showed off with such diligence that the": [65535, 0], "little boys showed off with such diligence that the air": [65535, 0], "boys showed off with such diligence that the air was": [65535, 0], "showed off with such diligence that the air was thick": [65535, 0], "off with such diligence that the air was thick with": [65535, 0], "with such diligence that the air was thick with paper": [65535, 0], "such diligence that the air was thick with paper wads": [65535, 0], "diligence that the air was thick with paper wads and": [65535, 0], "that the air was thick with paper wads and the": [65535, 0], "the air was thick with paper wads and the murmur": [65535, 0], "air was thick with paper wads and the murmur of": [65535, 0], "was thick with paper wads and the murmur of scufflings": [65535, 0], "thick with paper wads and the murmur of scufflings and": [65535, 0], "with paper wads and the murmur of scufflings and above": [65535, 0], "paper wads and the murmur of scufflings and above it": [65535, 0], "wads and the murmur of scufflings and above it all": [65535, 0], "and the murmur of scufflings and above it all the": [65535, 0], "the murmur of scufflings and above it all the great": [65535, 0], "murmur of scufflings and above it all the great man": [65535, 0], "of scufflings and above it all the great man sat": [65535, 0], "scufflings and above it all the great man sat and": [65535, 0], "and above it all the great man sat and beamed": [65535, 0], "above it all the great man sat and beamed a": [65535, 0], "it all the great man sat and beamed a majestic": [65535, 0], "all the great man sat and beamed a majestic judicial": [65535, 0], "the great man sat and beamed a majestic judicial smile": [65535, 0], "great man sat and beamed a majestic judicial smile upon": [65535, 0], "man sat and beamed a majestic judicial smile upon all": [65535, 0], "sat and beamed a majestic judicial smile upon all the": [65535, 0], "and beamed a majestic judicial smile upon all the house": [65535, 0], "beamed a majestic judicial smile upon all the house and": [65535, 0], "a majestic judicial smile upon all the house and warmed": [65535, 0], "majestic judicial smile upon all the house and warmed himself": [65535, 0], "judicial smile upon all the house and warmed himself in": [65535, 0], "smile upon all the house and warmed himself in the": [65535, 0], "upon all the house and warmed himself in the sun": [65535, 0], "all the house and warmed himself in the sun of": [65535, 0], "the house and warmed himself in the sun of his": [65535, 0], "house and warmed himself in the sun of his own": [65535, 0], "and warmed himself in the sun of his own grandeur": [65535, 0], "warmed himself in the sun of his own grandeur for": [65535, 0], "himself in the sun of his own grandeur for he": [65535, 0], "in the sun of his own grandeur for he was": [65535, 0], "the sun of his own grandeur for he was showing": [65535, 0], "sun of his own grandeur for he was showing off": [65535, 0], "of his own grandeur for he was showing off too": [65535, 0], "his own grandeur for he was showing off too there": [65535, 0], "own grandeur for he was showing off too there was": [65535, 0], "grandeur for he was showing off too there was only": [65535, 0], "for he was showing off too there was only one": [65535, 0], "he was showing off too there was only one thing": [65535, 0], "was showing off too there was only one thing wanting": [65535, 0], "showing off too there was only one thing wanting to": [65535, 0], "off too there was only one thing wanting to make": [65535, 0], "too there was only one thing wanting to make mr": [65535, 0], "there was only one thing wanting to make mr walters'": [65535, 0], "was only one thing wanting to make mr walters' ecstasy": [65535, 0], "only one thing wanting to make mr walters' ecstasy complete": [65535, 0], "one thing wanting to make mr walters' ecstasy complete and": [65535, 0], "thing wanting to make mr walters' ecstasy complete and that": [65535, 0], "wanting to make mr walters' ecstasy complete and that was": [65535, 0], "to make mr walters' ecstasy complete and that was a": [65535, 0], "make mr walters' ecstasy complete and that was a chance": [65535, 0], "mr walters' ecstasy complete and that was a chance to": [65535, 0], "walters' ecstasy complete and that was a chance to deliver": [65535, 0], "ecstasy complete and that was a chance to deliver a": [65535, 0], "complete and that was a chance to deliver a bible": [65535, 0], "and that was a chance to deliver a bible prize": [65535, 0], "that was a chance to deliver a bible prize and": [65535, 0], "was a chance to deliver a bible prize and exhibit": [65535, 0], "a chance to deliver a bible prize and exhibit a": [65535, 0], "chance to deliver a bible prize and exhibit a prodigy": [65535, 0], "to deliver a bible prize and exhibit a prodigy several": [65535, 0], "deliver a bible prize and exhibit a prodigy several pupils": [65535, 0], "a bible prize and exhibit a prodigy several pupils had": [65535, 0], "bible prize and exhibit a prodigy several pupils had a": [65535, 0], "prize and exhibit a prodigy several pupils had a few": [65535, 0], "and exhibit a prodigy several pupils had a few yellow": [65535, 0], "exhibit a prodigy several pupils had a few yellow tickets": [65535, 0], "a prodigy several pupils had a few yellow tickets but": [65535, 0], "prodigy several pupils had a few yellow tickets but none": [65535, 0], "several pupils had a few yellow tickets but none had": [65535, 0], "pupils had a few yellow tickets but none had enough": [65535, 0], "had a few yellow tickets but none had enough he": [65535, 0], "a few yellow tickets but none had enough he had": [65535, 0], "few yellow tickets but none had enough he had been": [65535, 0], "yellow tickets but none had enough he had been around": [65535, 0], "tickets but none had enough he had been around among": [65535, 0], "but none had enough he had been around among the": [65535, 0], "none had enough he had been around among the star": [65535, 0], "had enough he had been around among the star pupils": [65535, 0], "enough he had been around among the star pupils inquiring": [65535, 0], "he had been around among the star pupils inquiring he": [65535, 0], "had been around among the star pupils inquiring he would": [65535, 0], "been around among the star pupils inquiring he would have": [65535, 0], "around among the star pupils inquiring he would have given": [65535, 0], "among the star pupils inquiring he would have given worlds": [65535, 0], "the star pupils inquiring he would have given worlds now": [65535, 0], "star pupils inquiring he would have given worlds now to": [65535, 0], "pupils inquiring he would have given worlds now to have": [65535, 0], "inquiring he would have given worlds now to have that": [65535, 0], "he would have given worlds now to have that german": [65535, 0], "would have given worlds now to have that german lad": [65535, 0], "have given worlds now to have that german lad back": [65535, 0], "given worlds now to have that german lad back again": [65535, 0], "worlds now to have that german lad back again with": [65535, 0], "now to have that german lad back again with a": [65535, 0], "to have that german lad back again with a sound": [65535, 0], "have that german lad back again with a sound mind": [65535, 0], "that german lad back again with a sound mind and": [65535, 0], "german lad back again with a sound mind and now": [65535, 0], "lad back again with a sound mind and now at": [65535, 0], "back again with a sound mind and now at this": [65535, 0], "again with a sound mind and now at this moment": [65535, 0], "with a sound mind and now at this moment when": [65535, 0], "a sound mind and now at this moment when hope": [65535, 0], "sound mind and now at this moment when hope was": [65535, 0], "mind and now at this moment when hope was dead": [65535, 0], "and now at this moment when hope was dead tom": [65535, 0], "now at this moment when hope was dead tom sawyer": [65535, 0], "at this moment when hope was dead tom sawyer came": [65535, 0], "this moment when hope was dead tom sawyer came forward": [65535, 0], "moment when hope was dead tom sawyer came forward with": [65535, 0], "when hope was dead tom sawyer came forward with nine": [65535, 0], "hope was dead tom sawyer came forward with nine yellow": [65535, 0], "was dead tom sawyer came forward with nine yellow tickets": [65535, 0], "dead tom sawyer came forward with nine yellow tickets nine": [65535, 0], "tom sawyer came forward with nine yellow tickets nine red": [65535, 0], "sawyer came forward with nine yellow tickets nine red tickets": [65535, 0], "came forward with nine yellow tickets nine red tickets and": [65535, 0], "forward with nine yellow tickets nine red tickets and ten": [65535, 0], "with nine yellow tickets nine red tickets and ten blue": [65535, 0], "nine yellow tickets nine red tickets and ten blue ones": [65535, 0], "yellow tickets nine red tickets and ten blue ones and": [65535, 0], "tickets nine red tickets and ten blue ones and demanded": [65535, 0], "nine red tickets and ten blue ones and demanded a": [65535, 0], "red tickets and ten blue ones and demanded a bible": [65535, 0], "tickets and ten blue ones and demanded a bible this": [65535, 0], "and ten blue ones and demanded a bible this was": [65535, 0], "ten blue ones and demanded a bible this was a": [65535, 0], "blue ones and demanded a bible this was a thunderbolt": [65535, 0], "ones and demanded a bible this was a thunderbolt out": [65535, 0], "and demanded a bible this was a thunderbolt out of": [65535, 0], "demanded a bible this was a thunderbolt out of a": [65535, 0], "a bible this was a thunderbolt out of a clear": [65535, 0], "bible this was a thunderbolt out of a clear sky": [65535, 0], "this was a thunderbolt out of a clear sky walters": [65535, 0], "was a thunderbolt out of a clear sky walters was": [65535, 0], "a thunderbolt out of a clear sky walters was not": [65535, 0], "thunderbolt out of a clear sky walters was not expecting": [65535, 0], "out of a clear sky walters was not expecting an": [65535, 0], "of a clear sky walters was not expecting an application": [65535, 0], "a clear sky walters was not expecting an application from": [65535, 0], "clear sky walters was not expecting an application from this": [65535, 0], "sky walters was not expecting an application from this source": [65535, 0], "walters was not expecting an application from this source for": [65535, 0], "was not expecting an application from this source for the": [65535, 0], "not expecting an application from this source for the next": [65535, 0], "expecting an application from this source for the next ten": [65535, 0], "an application from this source for the next ten years": [65535, 0], "application from this source for the next ten years but": [65535, 0], "from this source for the next ten years but there": [65535, 0], "this source for the next ten years but there was": [65535, 0], "source for the next ten years but there was no": [65535, 0], "for the next ten years but there was no getting": [65535, 0], "the next ten years but there was no getting around": [65535, 0], "next ten years but there was no getting around it": [65535, 0], "ten years but there was no getting around it here": [65535, 0], "years but there was no getting around it here were": [65535, 0], "but there was no getting around it here were the": [65535, 0], "there was no getting around it here were the certified": [65535, 0], "was no getting around it here were the certified checks": [65535, 0], "no getting around it here were the certified checks and": [65535, 0], "getting around it here were the certified checks and they": [65535, 0], "around it here were the certified checks and they were": [65535, 0], "it here were the certified checks and they were good": [65535, 0], "here were the certified checks and they were good for": [65535, 0], "were the certified checks and they were good for their": [65535, 0], "the certified checks and they were good for their face": [65535, 0], "certified checks and they were good for their face tom": [65535, 0], "checks and they were good for their face tom was": [65535, 0], "and they were good for their face tom was therefore": [65535, 0], "they were good for their face tom was therefore elevated": [65535, 0], "were good for their face tom was therefore elevated to": [65535, 0], "good for their face tom was therefore elevated to a": [65535, 0], "for their face tom was therefore elevated to a place": [65535, 0], "their face tom was therefore elevated to a place with": [65535, 0], "face tom was therefore elevated to a place with the": [65535, 0], "tom was therefore elevated to a place with the judge": [65535, 0], "was therefore elevated to a place with the judge and": [65535, 0], "therefore elevated to a place with the judge and the": [65535, 0], "elevated to a place with the judge and the other": [65535, 0], "to a place with the judge and the other elect": [65535, 0], "a place with the judge and the other elect and": [65535, 0], "place with the judge and the other elect and the": [65535, 0], "with the judge and the other elect and the great": [65535, 0], "the judge and the other elect and the great news": [65535, 0], "judge and the other elect and the great news was": [65535, 0], "and the other elect and the great news was announced": [65535, 0], "the other elect and the great news was announced from": [65535, 0], "other elect and the great news was announced from headquarters": [65535, 0], "elect and the great news was announced from headquarters it": [65535, 0], "and the great news was announced from headquarters it was": [65535, 0], "the great news was announced from headquarters it was the": [65535, 0], "great news was announced from headquarters it was the most": [65535, 0], "news was announced from headquarters it was the most stunning": [65535, 0], "was announced from headquarters it was the most stunning surprise": [65535, 0], "announced from headquarters it was the most stunning surprise of": [65535, 0], "from headquarters it was the most stunning surprise of the": [65535, 0], "headquarters it was the most stunning surprise of the decade": [65535, 0], "it was the most stunning surprise of the decade and": [65535, 0], "was the most stunning surprise of the decade and so": [65535, 0], "the most stunning surprise of the decade and so profound": [65535, 0], "most stunning surprise of the decade and so profound was": [65535, 0], "stunning surprise of the decade and so profound was the": [65535, 0], "surprise of the decade and so profound was the sensation": [65535, 0], "of the decade and so profound was the sensation that": [65535, 0], "the decade and so profound was the sensation that it": [65535, 0], "decade and so profound was the sensation that it lifted": [65535, 0], "and so profound was the sensation that it lifted the": [65535, 0], "so profound was the sensation that it lifted the new": [65535, 0], "profound was the sensation that it lifted the new hero": [65535, 0], "was the sensation that it lifted the new hero up": [65535, 0], "the sensation that it lifted the new hero up to": [65535, 0], "sensation that it lifted the new hero up to the": [65535, 0], "that it lifted the new hero up to the judicial": [65535, 0], "it lifted the new hero up to the judicial one's": [65535, 0], "lifted the new hero up to the judicial one's altitude": [65535, 0], "the new hero up to the judicial one's altitude and": [65535, 0], "new hero up to the judicial one's altitude and the": [65535, 0], "hero up to the judicial one's altitude and the school": [65535, 0], "up to the judicial one's altitude and the school had": [65535, 0], "to the judicial one's altitude and the school had two": [65535, 0], "the judicial one's altitude and the school had two marvels": [65535, 0], "judicial one's altitude and the school had two marvels to": [65535, 0], "one's altitude and the school had two marvels to gaze": [65535, 0], "altitude and the school had two marvels to gaze upon": [65535, 0], "and the school had two marvels to gaze upon in": [65535, 0], "the school had two marvels to gaze upon in place": [65535, 0], "school had two marvels to gaze upon in place of": [65535, 0], "had two marvels to gaze upon in place of one": [65535, 0], "two marvels to gaze upon in place of one the": [65535, 0], "marvels to gaze upon in place of one the boys": [65535, 0], "to gaze upon in place of one the boys were": [65535, 0], "gaze upon in place of one the boys were all": [65535, 0], "upon in place of one the boys were all eaten": [65535, 0], "in place of one the boys were all eaten up": [65535, 0], "place of one the boys were all eaten up with": [65535, 0], "of one the boys were all eaten up with envy": [65535, 0], "one the boys were all eaten up with envy but": [65535, 0], "the boys were all eaten up with envy but those": [65535, 0], "boys were all eaten up with envy but those that": [65535, 0], "were all eaten up with envy but those that suffered": [65535, 0], "all eaten up with envy but those that suffered the": [65535, 0], "eaten up with envy but those that suffered the bitterest": [65535, 0], "up with envy but those that suffered the bitterest pangs": [65535, 0], "with envy but those that suffered the bitterest pangs were": [65535, 0], "envy but those that suffered the bitterest pangs were those": [65535, 0], "but those that suffered the bitterest pangs were those who": [65535, 0], "those that suffered the bitterest pangs were those who perceived": [65535, 0], "that suffered the bitterest pangs were those who perceived too": [65535, 0], "suffered the bitterest pangs were those who perceived too late": [65535, 0], "the bitterest pangs were those who perceived too late that": [65535, 0], "bitterest pangs were those who perceived too late that they": [65535, 0], "pangs were those who perceived too late that they themselves": [65535, 0], "were those who perceived too late that they themselves had": [65535, 0], "those who perceived too late that they themselves had contributed": [65535, 0], "who perceived too late that they themselves had contributed to": [65535, 0], "perceived too late that they themselves had contributed to this": [65535, 0], "too late that they themselves had contributed to this hated": [65535, 0], "late that they themselves had contributed to this hated splendor": [65535, 0], "that they themselves had contributed to this hated splendor by": [65535, 0], "they themselves had contributed to this hated splendor by trading": [65535, 0], "themselves had contributed to this hated splendor by trading tickets": [65535, 0], "had contributed to this hated splendor by trading tickets to": [65535, 0], "contributed to this hated splendor by trading tickets to tom": [65535, 0], "to this hated splendor by trading tickets to tom for": [65535, 0], "this hated splendor by trading tickets to tom for the": [65535, 0], "hated splendor by trading tickets to tom for the wealth": [65535, 0], "splendor by trading tickets to tom for the wealth he": [65535, 0], "by trading tickets to tom for the wealth he had": [65535, 0], "trading tickets to tom for the wealth he had amassed": [65535, 0], "tickets to tom for the wealth he had amassed in": [65535, 0], "to tom for the wealth he had amassed in selling": [65535, 0], "tom for the wealth he had amassed in selling whitewashing": [65535, 0], "for the wealth he had amassed in selling whitewashing privileges": [65535, 0], "the wealth he had amassed in selling whitewashing privileges these": [65535, 0], "wealth he had amassed in selling whitewashing privileges these despised": [65535, 0], "he had amassed in selling whitewashing privileges these despised themselves": [65535, 0], "had amassed in selling whitewashing privileges these despised themselves as": [65535, 0], "amassed in selling whitewashing privileges these despised themselves as being": [65535, 0], "in selling whitewashing privileges these despised themselves as being the": [65535, 0], "selling whitewashing privileges these despised themselves as being the dupes": [65535, 0], "whitewashing privileges these despised themselves as being the dupes of": [65535, 0], "privileges these despised themselves as being the dupes of a": [65535, 0], "these despised themselves as being the dupes of a wily": [65535, 0], "despised themselves as being the dupes of a wily fraud": [65535, 0], "themselves as being the dupes of a wily fraud a": [65535, 0], "as being the dupes of a wily fraud a guileful": [65535, 0], "being the dupes of a wily fraud a guileful snake": [65535, 0], "the dupes of a wily fraud a guileful snake in": [65535, 0], "dupes of a wily fraud a guileful snake in the": [65535, 0], "of a wily fraud a guileful snake in the grass": [65535, 0], "a wily fraud a guileful snake in the grass the": [65535, 0], "wily fraud a guileful snake in the grass the prize": [65535, 0], "fraud a guileful snake in the grass the prize was": [65535, 0], "a guileful snake in the grass the prize was delivered": [65535, 0], "guileful snake in the grass the prize was delivered to": [65535, 0], "snake in the grass the prize was delivered to tom": [65535, 0], "in the grass the prize was delivered to tom with": [65535, 0], "the grass the prize was delivered to tom with as": [65535, 0], "grass the prize was delivered to tom with as much": [65535, 0], "the prize was delivered to tom with as much effusion": [65535, 0], "prize was delivered to tom with as much effusion as": [65535, 0], "was delivered to tom with as much effusion as the": [65535, 0], "delivered to tom with as much effusion as the superintendent": [65535, 0], "to tom with as much effusion as the superintendent could": [65535, 0], "tom with as much effusion as the superintendent could pump": [65535, 0], "with as much effusion as the superintendent could pump up": [65535, 0], "as much effusion as the superintendent could pump up under": [65535, 0], "much effusion as the superintendent could pump up under the": [65535, 0], "effusion as the superintendent could pump up under the circumstances": [65535, 0], "as the superintendent could pump up under the circumstances but": [65535, 0], "the superintendent could pump up under the circumstances but it": [65535, 0], "superintendent could pump up under the circumstances but it lacked": [65535, 0], "could pump up under the circumstances but it lacked somewhat": [65535, 0], "pump up under the circumstances but it lacked somewhat of": [65535, 0], "up under the circumstances but it lacked somewhat of the": [65535, 0], "under the circumstances but it lacked somewhat of the true": [65535, 0], "the circumstances but it lacked somewhat of the true gush": [65535, 0], "circumstances but it lacked somewhat of the true gush for": [65535, 0], "but it lacked somewhat of the true gush for the": [65535, 0], "it lacked somewhat of the true gush for the poor": [65535, 0], "lacked somewhat of the true gush for the poor fellow's": [65535, 0], "somewhat of the true gush for the poor fellow's instinct": [65535, 0], "of the true gush for the poor fellow's instinct taught": [65535, 0], "the true gush for the poor fellow's instinct taught him": [65535, 0], "true gush for the poor fellow's instinct taught him that": [65535, 0], "gush for the poor fellow's instinct taught him that there": [65535, 0], "for the poor fellow's instinct taught him that there was": [65535, 0], "the poor fellow's instinct taught him that there was a": [65535, 0], "poor fellow's instinct taught him that there was a mystery": [65535, 0], "fellow's instinct taught him that there was a mystery here": [65535, 0], "instinct taught him that there was a mystery here that": [65535, 0], "taught him that there was a mystery here that could": [65535, 0], "him that there was a mystery here that could not": [65535, 0], "that there was a mystery here that could not well": [65535, 0], "there was a mystery here that could not well bear": [65535, 0], "was a mystery here that could not well bear the": [65535, 0], "a mystery here that could not well bear the light": [65535, 0], "mystery here that could not well bear the light perhaps": [65535, 0], "here that could not well bear the light perhaps it": [65535, 0], "that could not well bear the light perhaps it was": [65535, 0], "could not well bear the light perhaps it was simply": [65535, 0], "not well bear the light perhaps it was simply preposterous": [65535, 0], "well bear the light perhaps it was simply preposterous that": [65535, 0], "bear the light perhaps it was simply preposterous that this": [65535, 0], "the light perhaps it was simply preposterous that this boy": [65535, 0], "light perhaps it was simply preposterous that this boy had": [65535, 0], "perhaps it was simply preposterous that this boy had warehoused": [65535, 0], "it was simply preposterous that this boy had warehoused two": [65535, 0], "was simply preposterous that this boy had warehoused two thousand": [65535, 0], "simply preposterous that this boy had warehoused two thousand sheaves": [65535, 0], "preposterous that this boy had warehoused two thousand sheaves of": [65535, 0], "that this boy had warehoused two thousand sheaves of scriptural": [65535, 0], "this boy had warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "boy had warehoused two thousand sheaves of scriptural wisdom on": [65535, 0], "had warehoused two thousand sheaves of scriptural wisdom on his": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom on his premises": [65535, 0], "two thousand sheaves of scriptural wisdom on his premises a": [65535, 0], "thousand sheaves of scriptural wisdom on his premises a dozen": [65535, 0], "sheaves of scriptural wisdom on his premises a dozen would": [65535, 0], "of scriptural wisdom on his premises a dozen would strain": [65535, 0], "scriptural wisdom on his premises a dozen would strain his": [65535, 0], "wisdom on his premises a dozen would strain his capacity": [65535, 0], "on his premises a dozen would strain his capacity without": [65535, 0], "his premises a dozen would strain his capacity without a": [65535, 0], "premises a dozen would strain his capacity without a doubt": [65535, 0], "a dozen would strain his capacity without a doubt amy": [65535, 0], "dozen would strain his capacity without a doubt amy lawrence": [65535, 0], "would strain his capacity without a doubt amy lawrence was": [65535, 0], "strain his capacity without a doubt amy lawrence was proud": [65535, 0], "his capacity without a doubt amy lawrence was proud and": [65535, 0], "capacity without a doubt amy lawrence was proud and glad": [65535, 0], "without a doubt amy lawrence was proud and glad and": [65535, 0], "a doubt amy lawrence was proud and glad and she": [65535, 0], "doubt amy lawrence was proud and glad and she tried": [65535, 0], "amy lawrence was proud and glad and she tried to": [65535, 0], "lawrence was proud and glad and she tried to make": [65535, 0], "was proud and glad and she tried to make tom": [65535, 0], "proud and glad and she tried to make tom see": [65535, 0], "and glad and she tried to make tom see it": [65535, 0], "glad and she tried to make tom see it in": [65535, 0], "and she tried to make tom see it in her": [65535, 0], "she tried to make tom see it in her face": [65535, 0], "tried to make tom see it in her face but": [65535, 0], "to make tom see it in her face but he": [65535, 0], "make tom see it in her face but he wouldn't": [65535, 0], "tom see it in her face but he wouldn't look": [65535, 0], "see it in her face but he wouldn't look she": [65535, 0], "it in her face but he wouldn't look she wondered": [65535, 0], "in her face but he wouldn't look she wondered then": [65535, 0], "her face but he wouldn't look she wondered then she": [65535, 0], "face but he wouldn't look she wondered then she was": [65535, 0], "but he wouldn't look she wondered then she was just": [65535, 0], "he wouldn't look she wondered then she was just a": [65535, 0], "wouldn't look she wondered then she was just a grain": [65535, 0], "look she wondered then she was just a grain troubled": [65535, 0], "she wondered then she was just a grain troubled next": [65535, 0], "wondered then she was just a grain troubled next a": [65535, 0], "then she was just a grain troubled next a dim": [65535, 0], "she was just a grain troubled next a dim suspicion": [65535, 0], "was just a grain troubled next a dim suspicion came": [65535, 0], "just a grain troubled next a dim suspicion came and": [65535, 0], "a grain troubled next a dim suspicion came and went": [65535, 0], "grain troubled next a dim suspicion came and went came": [65535, 0], "troubled next a dim suspicion came and went came again": [65535, 0], "next a dim suspicion came and went came again she": [65535, 0], "a dim suspicion came and went came again she watched": [65535, 0], "dim suspicion came and went came again she watched a": [65535, 0], "suspicion came and went came again she watched a furtive": [65535, 0], "came and went came again she watched a furtive glance": [65535, 0], "and went came again she watched a furtive glance told": [65535, 0], "went came again she watched a furtive glance told her": [65535, 0], "came again she watched a furtive glance told her worlds": [65535, 0], "again she watched a furtive glance told her worlds and": [65535, 0], "she watched a furtive glance told her worlds and then": [65535, 0], "watched a furtive glance told her worlds and then her": [65535, 0], "a furtive glance told her worlds and then her heart": [65535, 0], "furtive glance told her worlds and then her heart broke": [65535, 0], "glance told her worlds and then her heart broke and": [65535, 0], "told her worlds and then her heart broke and she": [65535, 0], "her worlds and then her heart broke and she was": [65535, 0], "worlds and then her heart broke and she was jealous": [65535, 0], "and then her heart broke and she was jealous and": [65535, 0], "then her heart broke and she was jealous and angry": [65535, 0], "her heart broke and she was jealous and angry and": [65535, 0], "heart broke and she was jealous and angry and the": [65535, 0], "broke and she was jealous and angry and the tears": [65535, 0], "and she was jealous and angry and the tears came": [65535, 0], "she was jealous and angry and the tears came and": [65535, 0], "was jealous and angry and the tears came and she": [65535, 0], "jealous and angry and the tears came and she hated": [65535, 0], "and angry and the tears came and she hated everybody": [65535, 0], "angry and the tears came and she hated everybody tom": [65535, 0], "and the tears came and she hated everybody tom most": [65535, 0], "the tears came and she hated everybody tom most of": [65535, 0], "tears came and she hated everybody tom most of all": [65535, 0], "came and she hated everybody tom most of all she": [65535, 0], "and she hated everybody tom most of all she thought": [65535, 0], "she hated everybody tom most of all she thought tom": [65535, 0], "hated everybody tom most of all she thought tom was": [65535, 0], "everybody tom most of all she thought tom was introduced": [65535, 0], "tom most of all she thought tom was introduced to": [65535, 0], "most of all she thought tom was introduced to the": [65535, 0], "of all she thought tom was introduced to the judge": [65535, 0], "all she thought tom was introduced to the judge but": [65535, 0], "she thought tom was introduced to the judge but his": [65535, 0], "thought tom was introduced to the judge but his tongue": [65535, 0], "tom was introduced to the judge but his tongue was": [65535, 0], "was introduced to the judge but his tongue was tied": [65535, 0], "introduced to the judge but his tongue was tied his": [65535, 0], "to the judge but his tongue was tied his breath": [65535, 0], "the judge but his tongue was tied his breath would": [65535, 0], "judge but his tongue was tied his breath would hardly": [65535, 0], "but his tongue was tied his breath would hardly come": [65535, 0], "his tongue was tied his breath would hardly come his": [65535, 0], "tongue was tied his breath would hardly come his heart": [65535, 0], "was tied his breath would hardly come his heart quaked": [65535, 0], "tied his breath would hardly come his heart quaked partly": [65535, 0], "his breath would hardly come his heart quaked partly because": [65535, 0], "breath would hardly come his heart quaked partly because of": [65535, 0], "would hardly come his heart quaked partly because of the": [65535, 0], "hardly come his heart quaked partly because of the awful": [65535, 0], "come his heart quaked partly because of the awful greatness": [65535, 0], "his heart quaked partly because of the awful greatness of": [65535, 0], "heart quaked partly because of the awful greatness of the": [65535, 0], "quaked partly because of the awful greatness of the man": [65535, 0], "partly because of the awful greatness of the man but": [65535, 0], "because of the awful greatness of the man but mainly": [65535, 0], "of the awful greatness of the man but mainly because": [65535, 0], "the awful greatness of the man but mainly because he": [65535, 0], "awful greatness of the man but mainly because he was": [65535, 0], "greatness of the man but mainly because he was her": [65535, 0], "of the man but mainly because he was her parent": [65535, 0], "the man but mainly because he was her parent he": [65535, 0], "man but mainly because he was her parent he would": [65535, 0], "but mainly because he was her parent he would have": [65535, 0], "mainly because he was her parent he would have liked": [65535, 0], "because he was her parent he would have liked to": [65535, 0], "he was her parent he would have liked to fall": [65535, 0], "was her parent he would have liked to fall down": [65535, 0], "her parent he would have liked to fall down and": [65535, 0], "parent he would have liked to fall down and worship": [65535, 0], "he would have liked to fall down and worship him": [65535, 0], "would have liked to fall down and worship him if": [65535, 0], "have liked to fall down and worship him if it": [65535, 0], "liked to fall down and worship him if it were": [65535, 0], "to fall down and worship him if it were in": [65535, 0], "fall down and worship him if it were in the": [65535, 0], "down and worship him if it were in the dark": [65535, 0], "and worship him if it were in the dark the": [65535, 0], "worship him if it were in the dark the judge": [65535, 0], "him if it were in the dark the judge put": [65535, 0], "if it were in the dark the judge put his": [65535, 0], "it were in the dark the judge put his hand": [65535, 0], "were in the dark the judge put his hand on": [65535, 0], "in the dark the judge put his hand on tom's": [65535, 0], "the dark the judge put his hand on tom's head": [65535, 0], "dark the judge put his hand on tom's head and": [65535, 0], "the judge put his hand on tom's head and called": [65535, 0], "judge put his hand on tom's head and called him": [65535, 0], "put his hand on tom's head and called him a": [65535, 0], "his hand on tom's head and called him a fine": [65535, 0], "hand on tom's head and called him a fine little": [65535, 0], "on tom's head and called him a fine little man": [65535, 0], "tom's head and called him a fine little man and": [65535, 0], "head and called him a fine little man and asked": [65535, 0], "and called him a fine little man and asked him": [65535, 0], "called him a fine little man and asked him what": [65535, 0], "him a fine little man and asked him what his": [65535, 0], "a fine little man and asked him what his name": [65535, 0], "fine little man and asked him what his name was": [65535, 0], "little man and asked him what his name was the": [65535, 0], "man and asked him what his name was the boy": [65535, 0], "and asked him what his name was the boy stammered": [65535, 0], "asked him what his name was the boy stammered gasped": [65535, 0], "him what his name was the boy stammered gasped and": [65535, 0], "what his name was the boy stammered gasped and got": [65535, 0], "his name was the boy stammered gasped and got it": [65535, 0], "name was the boy stammered gasped and got it out": [65535, 0], "was the boy stammered gasped and got it out tom": [65535, 0], "the boy stammered gasped and got it out tom oh": [65535, 0], "boy stammered gasped and got it out tom oh no": [65535, 0], "stammered gasped and got it out tom oh no not": [65535, 0], "gasped and got it out tom oh no not tom": [65535, 0], "and got it out tom oh no not tom it": [65535, 0], "got it out tom oh no not tom it is": [65535, 0], "it out tom oh no not tom it is thomas": [65535, 0], "out tom oh no not tom it is thomas ah": [65535, 0], "tom oh no not tom it is thomas ah that's": [65535, 0], "oh no not tom it is thomas ah that's it": [65535, 0], "no not tom it is thomas ah that's it i": [65535, 0], "not tom it is thomas ah that's it i thought": [65535, 0], "tom it is thomas ah that's it i thought there": [65535, 0], "it is thomas ah that's it i thought there was": [65535, 0], "is thomas ah that's it i thought there was more": [65535, 0], "thomas ah that's it i thought there was more to": [65535, 0], "ah that's it i thought there was more to it": [65535, 0], "that's it i thought there was more to it maybe": [65535, 0], "it i thought there was more to it maybe that's": [65535, 0], "i thought there was more to it maybe that's very": [65535, 0], "thought there was more to it maybe that's very well": [65535, 0], "there was more to it maybe that's very well but": [65535, 0], "was more to it maybe that's very well but you've": [65535, 0], "more to it maybe that's very well but you've another": [65535, 0], "to it maybe that's very well but you've another one": [65535, 0], "it maybe that's very well but you've another one i": [65535, 0], "maybe that's very well but you've another one i daresay": [65535, 0], "that's very well but you've another one i daresay and": [65535, 0], "very well but you've another one i daresay and you'll": [65535, 0], "well but you've another one i daresay and you'll tell": [65535, 0], "but you've another one i daresay and you'll tell it": [65535, 0], "you've another one i daresay and you'll tell it to": [65535, 0], "another one i daresay and you'll tell it to me": [65535, 0], "one i daresay and you'll tell it to me won't": [65535, 0], "i daresay and you'll tell it to me won't you": [65535, 0], "daresay and you'll tell it to me won't you tell": [65535, 0], "and you'll tell it to me won't you tell the": [65535, 0], "you'll tell it to me won't you tell the gentleman": [65535, 0], "tell it to me won't you tell the gentleman your": [65535, 0], "it to me won't you tell the gentleman your other": [65535, 0], "to me won't you tell the gentleman your other name": [65535, 0], "me won't you tell the gentleman your other name thomas": [65535, 0], "won't you tell the gentleman your other name thomas said": [65535, 0], "you tell the gentleman your other name thomas said walters": [65535, 0], "tell the gentleman your other name thomas said walters and": [65535, 0], "the gentleman your other name thomas said walters and say": [65535, 0], "gentleman your other name thomas said walters and say sir": [65535, 0], "your other name thomas said walters and say sir you": [65535, 0], "other name thomas said walters and say sir you mustn't": [65535, 0], "name thomas said walters and say sir you mustn't forget": [65535, 0], "thomas said walters and say sir you mustn't forget your": [65535, 0], "said walters and say sir you mustn't forget your manners": [65535, 0], "walters and say sir you mustn't forget your manners thomas": [65535, 0], "and say sir you mustn't forget your manners thomas sawyer": [65535, 0], "say sir you mustn't forget your manners thomas sawyer sir": [65535, 0], "sir you mustn't forget your manners thomas sawyer sir that's": [65535, 0], "you mustn't forget your manners thomas sawyer sir that's it": [65535, 0], "mustn't forget your manners thomas sawyer sir that's it that's": [65535, 0], "forget your manners thomas sawyer sir that's it that's a": [65535, 0], "your manners thomas sawyer sir that's it that's a good": [65535, 0], "manners thomas sawyer sir that's it that's a good boy": [65535, 0], "thomas sawyer sir that's it that's a good boy fine": [65535, 0], "sawyer sir that's it that's a good boy fine boy": [65535, 0], "sir that's it that's a good boy fine boy fine": [65535, 0], "that's it that's a good boy fine boy fine manly": [65535, 0], "it that's a good boy fine boy fine manly little": [65535, 0], "that's a good boy fine boy fine manly little fellow": [65535, 0], "a good boy fine boy fine manly little fellow two": [65535, 0], "good boy fine boy fine manly little fellow two thousand": [65535, 0], "boy fine boy fine manly little fellow two thousand verses": [65535, 0], "fine boy fine manly little fellow two thousand verses is": [65535, 0], "boy fine manly little fellow two thousand verses is a": [65535, 0], "fine manly little fellow two thousand verses is a great": [65535, 0], "manly little fellow two thousand verses is a great many": [65535, 0], "little fellow two thousand verses is a great many very": [65535, 0], "fellow two thousand verses is a great many very very": [65535, 0], "two thousand verses is a great many very very great": [65535, 0], "thousand verses is a great many very very great many": [65535, 0], "verses is a great many very very great many and": [65535, 0], "is a great many very very great many and you": [65535, 0], "a great many very very great many and you never": [65535, 0], "great many very very great many and you never can": [65535, 0], "many very very great many and you never can be": [65535, 0], "very very great many and you never can be sorry": [65535, 0], "very great many and you never can be sorry for": [65535, 0], "great many and you never can be sorry for the": [65535, 0], "many and you never can be sorry for the trouble": [65535, 0], "and you never can be sorry for the trouble you": [65535, 0], "you never can be sorry for the trouble you took": [65535, 0], "never can be sorry for the trouble you took to": [65535, 0], "can be sorry for the trouble you took to learn": [65535, 0], "be sorry for the trouble you took to learn them": [65535, 0], "sorry for the trouble you took to learn them for": [65535, 0], "for the trouble you took to learn them for knowledge": [65535, 0], "the trouble you took to learn them for knowledge is": [65535, 0], "trouble you took to learn them for knowledge is worth": [65535, 0], "you took to learn them for knowledge is worth more": [65535, 0], "took to learn them for knowledge is worth more than": [65535, 0], "to learn them for knowledge is worth more than anything": [65535, 0], "learn them for knowledge is worth more than anything there": [65535, 0], "them for knowledge is worth more than anything there is": [65535, 0], "for knowledge is worth more than anything there is in": [65535, 0], "knowledge is worth more than anything there is in the": [65535, 0], "is worth more than anything there is in the world": [65535, 0], "worth more than anything there is in the world it's": [65535, 0], "more than anything there is in the world it's what": [65535, 0], "than anything there is in the world it's what makes": [65535, 0], "anything there is in the world it's what makes great": [65535, 0], "there is in the world it's what makes great men": [65535, 0], "is in the world it's what makes great men and": [65535, 0], "in the world it's what makes great men and good": [65535, 0], "the world it's what makes great men and good men": [65535, 0], "world it's what makes great men and good men you'll": [65535, 0], "it's what makes great men and good men you'll be": [65535, 0], "what makes great men and good men you'll be a": [65535, 0], "makes great men and good men you'll be a great": [65535, 0], "great men and good men you'll be a great man": [65535, 0], "men and good men you'll be a great man and": [65535, 0], "and good men you'll be a great man and a": [65535, 0], "good men you'll be a great man and a good": [65535, 0], "men you'll be a great man and a good man": [65535, 0], "you'll be a great man and a good man yourself": [65535, 0], "be a great man and a good man yourself some": [65535, 0], "a great man and a good man yourself some day": [65535, 0], "great man and a good man yourself some day thomas": [65535, 0], "man and a good man yourself some day thomas and": [65535, 0], "and a good man yourself some day thomas and then": [65535, 0], "a good man yourself some day thomas and then you'll": [65535, 0], "good man yourself some day thomas and then you'll look": [65535, 0], "man yourself some day thomas and then you'll look back": [65535, 0], "yourself some day thomas and then you'll look back and": [65535, 0], "some day thomas and then you'll look back and say": [65535, 0], "day thomas and then you'll look back and say it's": [65535, 0], "thomas and then you'll look back and say it's all": [65535, 0], "and then you'll look back and say it's all owing": [65535, 0], "then you'll look back and say it's all owing to": [65535, 0], "you'll look back and say it's all owing to the": [65535, 0], "look back and say it's all owing to the precious": [65535, 0], "back and say it's all owing to the precious sunday": [65535, 0], "and say it's all owing to the precious sunday school": [65535, 0], "say it's all owing to the precious sunday school privileges": [65535, 0], "it's all owing to the precious sunday school privileges of": [65535, 0], "all owing to the precious sunday school privileges of my": [65535, 0], "owing to the precious sunday school privileges of my boyhood": [65535, 0], "to the precious sunday school privileges of my boyhood it's": [65535, 0], "the precious sunday school privileges of my boyhood it's all": [65535, 0], "precious sunday school privileges of my boyhood it's all owing": [65535, 0], "sunday school privileges of my boyhood it's all owing to": [65535, 0], "school privileges of my boyhood it's all owing to my": [65535, 0], "privileges of my boyhood it's all owing to my dear": [65535, 0], "of my boyhood it's all owing to my dear teachers": [65535, 0], "my boyhood it's all owing to my dear teachers that": [65535, 0], "boyhood it's all owing to my dear teachers that taught": [65535, 0], "it's all owing to my dear teachers that taught me": [65535, 0], "all owing to my dear teachers that taught me to": [65535, 0], "owing to my dear teachers that taught me to learn": [65535, 0], "to my dear teachers that taught me to learn it's": [65535, 0], "my dear teachers that taught me to learn it's all": [65535, 0], "dear teachers that taught me to learn it's all owing": [65535, 0], "teachers that taught me to learn it's all owing to": [65535, 0], "that taught me to learn it's all owing to the": [65535, 0], "taught me to learn it's all owing to the good": [65535, 0], "me to learn it's all owing to the good superintendent": [65535, 0], "to learn it's all owing to the good superintendent who": [65535, 0], "learn it's all owing to the good superintendent who encouraged": [65535, 0], "it's all owing to the good superintendent who encouraged me": [65535, 0], "all owing to the good superintendent who encouraged me and": [65535, 0], "owing to the good superintendent who encouraged me and watched": [65535, 0], "to the good superintendent who encouraged me and watched over": [65535, 0], "the good superintendent who encouraged me and watched over me": [65535, 0], "good superintendent who encouraged me and watched over me and": [65535, 0], "superintendent who encouraged me and watched over me and gave": [65535, 0], "who encouraged me and watched over me and gave me": [65535, 0], "encouraged me and watched over me and gave me a": [65535, 0], "me and watched over me and gave me a beautiful": [65535, 0], "and watched over me and gave me a beautiful bible": [65535, 0], "watched over me and gave me a beautiful bible a": [65535, 0], "over me and gave me a beautiful bible a splendid": [65535, 0], "me and gave me a beautiful bible a splendid elegant": [65535, 0], "and gave me a beautiful bible a splendid elegant bible": [65535, 0], "gave me a beautiful bible a splendid elegant bible to": [65535, 0], "me a beautiful bible a splendid elegant bible to keep": [65535, 0], "a beautiful bible a splendid elegant bible to keep and": [65535, 0], "beautiful bible a splendid elegant bible to keep and have": [65535, 0], "bible a splendid elegant bible to keep and have it": [65535, 0], "a splendid elegant bible to keep and have it all": [65535, 0], "splendid elegant bible to keep and have it all for": [65535, 0], "elegant bible to keep and have it all for my": [65535, 0], "bible to keep and have it all for my own": [65535, 0], "to keep and have it all for my own always": [65535, 0], "keep and have it all for my own always it's": [65535, 0], "and have it all for my own always it's all": [65535, 0], "have it all for my own always it's all owing": [65535, 0], "it all for my own always it's all owing to": [65535, 0], "all for my own always it's all owing to right": [65535, 0], "for my own always it's all owing to right bringing": [65535, 0], "my own always it's all owing to right bringing up": [65535, 0], "own always it's all owing to right bringing up that": [65535, 0], "always it's all owing to right bringing up that is": [65535, 0], "it's all owing to right bringing up that is what": [65535, 0], "all owing to right bringing up that is what you": [65535, 0], "owing to right bringing up that is what you will": [65535, 0], "to right bringing up that is what you will say": [65535, 0], "right bringing up that is what you will say thomas": [65535, 0], "bringing up that is what you will say thomas and": [65535, 0], "up that is what you will say thomas and you": [65535, 0], "that is what you will say thomas and you wouldn't": [65535, 0], "is what you will say thomas and you wouldn't take": [65535, 0], "what you will say thomas and you wouldn't take any": [65535, 0], "you will say thomas and you wouldn't take any money": [65535, 0], "will say thomas and you wouldn't take any money for": [65535, 0], "say thomas and you wouldn't take any money for those": [65535, 0], "thomas and you wouldn't take any money for those two": [65535, 0], "and you wouldn't take any money for those two thousand": [65535, 0], "you wouldn't take any money for those two thousand verses": [65535, 0], "wouldn't take any money for those two thousand verses no": [65535, 0], "take any money for those two thousand verses no indeed": [65535, 0], "any money for those two thousand verses no indeed you": [65535, 0], "money for those two thousand verses no indeed you wouldn't": [65535, 0], "for those two thousand verses no indeed you wouldn't and": [65535, 0], "those two thousand verses no indeed you wouldn't and now": [65535, 0], "two thousand verses no indeed you wouldn't and now you": [65535, 0], "thousand verses no indeed you wouldn't and now you wouldn't": [65535, 0], "verses no indeed you wouldn't and now you wouldn't mind": [65535, 0], "no indeed you wouldn't and now you wouldn't mind telling": [65535, 0], "indeed you wouldn't and now you wouldn't mind telling me": [65535, 0], "you wouldn't and now you wouldn't mind telling me and": [65535, 0], "wouldn't and now you wouldn't mind telling me and this": [65535, 0], "and now you wouldn't mind telling me and this lady": [65535, 0], "now you wouldn't mind telling me and this lady some": [65535, 0], "you wouldn't mind telling me and this lady some of": [65535, 0], "wouldn't mind telling me and this lady some of the": [65535, 0], "mind telling me and this lady some of the things": [65535, 0], "telling me and this lady some of the things you've": [65535, 0], "me and this lady some of the things you've learned": [65535, 0], "and this lady some of the things you've learned no": [65535, 0], "this lady some of the things you've learned no i": [65535, 0], "lady some of the things you've learned no i know": [65535, 0], "some of the things you've learned no i know you": [65535, 0], "of the things you've learned no i know you wouldn't": [65535, 0], "the things you've learned no i know you wouldn't for": [65535, 0], "things you've learned no i know you wouldn't for we": [65535, 0], "you've learned no i know you wouldn't for we are": [65535, 0], "learned no i know you wouldn't for we are proud": [65535, 0], "no i know you wouldn't for we are proud of": [65535, 0], "i know you wouldn't for we are proud of little": [65535, 0], "know you wouldn't for we are proud of little boys": [65535, 0], "you wouldn't for we are proud of little boys that": [65535, 0], "wouldn't for we are proud of little boys that learn": [65535, 0], "for we are proud of little boys that learn now": [65535, 0], "we are proud of little boys that learn now no": [65535, 0], "are proud of little boys that learn now no doubt": [65535, 0], "proud of little boys that learn now no doubt you": [65535, 0], "of little boys that learn now no doubt you know": [65535, 0], "little boys that learn now no doubt you know the": [65535, 0], "boys that learn now no doubt you know the names": [65535, 0], "that learn now no doubt you know the names of": [65535, 0], "learn now no doubt you know the names of all": [65535, 0], "now no doubt you know the names of all the": [65535, 0], "no doubt you know the names of all the twelve": [65535, 0], "doubt you know the names of all the twelve disciples": [65535, 0], "you know the names of all the twelve disciples won't": [65535, 0], "know the names of all the twelve disciples won't you": [65535, 0], "the names of all the twelve disciples won't you tell": [65535, 0], "names of all the twelve disciples won't you tell us": [65535, 0], "of all the twelve disciples won't you tell us the": [65535, 0], "all the twelve disciples won't you tell us the names": [65535, 0], "the twelve disciples won't you tell us the names of": [65535, 0], "twelve disciples won't you tell us the names of the": [65535, 0], "disciples won't you tell us the names of the first": [65535, 0], "won't you tell us the names of the first two": [65535, 0], "you tell us the names of the first two that": [65535, 0], "tell us the names of the first two that were": [65535, 0], "us the names of the first two that were appointed": [65535, 0], "the names of the first two that were appointed tom": [65535, 0], "names of the first two that were appointed tom was": [65535, 0], "of the first two that were appointed tom was tugging": [65535, 0], "the first two that were appointed tom was tugging at": [65535, 0], "first two that were appointed tom was tugging at a": [65535, 0], "two that were appointed tom was tugging at a button": [65535, 0], "that were appointed tom was tugging at a button hole": [65535, 0], "were appointed tom was tugging at a button hole and": [65535, 0], "appointed tom was tugging at a button hole and looking": [65535, 0], "tom was tugging at a button hole and looking sheepish": [65535, 0], "was tugging at a button hole and looking sheepish he": [65535, 0], "tugging at a button hole and looking sheepish he blushed": [65535, 0], "at a button hole and looking sheepish he blushed now": [65535, 0], "a button hole and looking sheepish he blushed now and": [65535, 0], "button hole and looking sheepish he blushed now and his": [65535, 0], "hole and looking sheepish he blushed now and his eyes": [65535, 0], "and looking sheepish he blushed now and his eyes fell": [65535, 0], "looking sheepish he blushed now and his eyes fell mr": [65535, 0], "sheepish he blushed now and his eyes fell mr walters'": [65535, 0], "he blushed now and his eyes fell mr walters' heart": [65535, 0], "blushed now and his eyes fell mr walters' heart sank": [65535, 0], "now and his eyes fell mr walters' heart sank within": [65535, 0], "and his eyes fell mr walters' heart sank within him": [65535, 0], "his eyes fell mr walters' heart sank within him he": [65535, 0], "eyes fell mr walters' heart sank within him he said": [65535, 0], "fell mr walters' heart sank within him he said to": [65535, 0], "mr walters' heart sank within him he said to himself": [65535, 0], "walters' heart sank within him he said to himself it": [65535, 0], "heart sank within him he said to himself it is": [65535, 0], "sank within him he said to himself it is not": [65535, 0], "within him he said to himself it is not possible": [65535, 0], "him he said to himself it is not possible that": [65535, 0], "he said to himself it is not possible that the": [65535, 0], "said to himself it is not possible that the boy": [65535, 0], "to himself it is not possible that the boy can": [65535, 0], "himself it is not possible that the boy can answer": [65535, 0], "it is not possible that the boy can answer the": [65535, 0], "is not possible that the boy can answer the simplest": [65535, 0], "not possible that the boy can answer the simplest question": [65535, 0], "possible that the boy can answer the simplest question why": [65535, 0], "that the boy can answer the simplest question why did": [65535, 0], "the boy can answer the simplest question why did the": [65535, 0], "boy can answer the simplest question why did the judge": [65535, 0], "can answer the simplest question why did the judge ask": [65535, 0], "answer the simplest question why did the judge ask him": [65535, 0], "the simplest question why did the judge ask him yet": [65535, 0], "simplest question why did the judge ask him yet he": [65535, 0], "question why did the judge ask him yet he felt": [65535, 0], "why did the judge ask him yet he felt obliged": [65535, 0], "did the judge ask him yet he felt obliged to": [65535, 0], "the judge ask him yet he felt obliged to speak": [65535, 0], "judge ask him yet he felt obliged to speak up": [65535, 0], "ask him yet he felt obliged to speak up and": [65535, 0], "him yet he felt obliged to speak up and say": [65535, 0], "yet he felt obliged to speak up and say answer": [65535, 0], "he felt obliged to speak up and say answer the": [65535, 0], "felt obliged to speak up and say answer the gentleman": [65535, 0], "obliged to speak up and say answer the gentleman thomas": [65535, 0], "to speak up and say answer the gentleman thomas don't": [65535, 0], "speak up and say answer the gentleman thomas don't be": [65535, 0], "up and say answer the gentleman thomas don't be afraid": [65535, 0], "and say answer the gentleman thomas don't be afraid tom": [65535, 0], "say answer the gentleman thomas don't be afraid tom still": [65535, 0], "answer the gentleman thomas don't be afraid tom still hung": [65535, 0], "the gentleman thomas don't be afraid tom still hung fire": [65535, 0], "gentleman thomas don't be afraid tom still hung fire now": [65535, 0], "thomas don't be afraid tom still hung fire now i": [65535, 0], "don't be afraid tom still hung fire now i know": [65535, 0], "be afraid tom still hung fire now i know you'll": [65535, 0], "afraid tom still hung fire now i know you'll tell": [65535, 0], "tom still hung fire now i know you'll tell me": [65535, 0], "still hung fire now i know you'll tell me said": [65535, 0], "hung fire now i know you'll tell me said the": [65535, 0], "fire now i know you'll tell me said the lady": [65535, 0], "now i know you'll tell me said the lady the": [65535, 0], "i know you'll tell me said the lady the names": [65535, 0], "know you'll tell me said the lady the names of": [65535, 0], "you'll tell me said the lady the names of the": [65535, 0], "tell me said the lady the names of the first": [65535, 0], "me said the lady the names of the first two": [65535, 0], "said the lady the names of the first two disciples": [65535, 0], "the lady the names of the first two disciples were": [65535, 0], "lady the names of the first two disciples were david": [65535, 0], "the names of the first two disciples were david and": [65535, 0], "names of the first two disciples were david and goliath": [65535, 0], "of the first two disciples were david and goliath let": [65535, 0], "the first two disciples were david and goliath let us": [65535, 0], "first two disciples were david and goliath let us draw": [65535, 0], "two disciples were david and goliath let us draw the": [65535, 0], "disciples were david and goliath let us draw the curtain": [65535, 0], "were david and goliath let us draw the curtain of": [65535, 0], "david and goliath let us draw the curtain of charity": [65535, 0], "and goliath let us draw the curtain of charity over": [65535, 0], "goliath let us draw the curtain of charity over the": [65535, 0], "let us draw the curtain of charity over the rest": [65535, 0], "us draw the curtain of charity over the rest of": [65535, 0], "draw the curtain of charity over the rest of the": [65535, 0], "the curtain of charity over the rest of the scene": [65535, 0], "presented": [65535, 0], "pleasant": [65535, 0], "apartment": [65535, 0], "bedroom": [65535, 0], "dining": [65535, 0], "balmy": [65535, 0], "restful": [65535, 0], "odor": [65535, 0], "drowsing": [65535, 0], "bees": [65535, 0], "nodding": [65535, 0], "knitting": [65535, 0], "asleep": [65535, 0], "safety": [32706, 32829], "deserted": [65535, 0], "seeing": [65535, 0], "power": [32706, 32829], "intrepid": [65535, 0], "mayn't": [65535, 0], "a'ready": [65535, 0], "trust": [13068, 52467], "content": [21790, 43745], "per": [65535, 0], "cent": [65535, 0], "statement": [65535, 0], "elaborately": [65535, 0], "recoated": [65535, 0], "astonishment": [65535, 0], "unspeakable": [65535, 0], "diluted": [65535, 0], "compliment": [65535, 0], "adding": [65535, 0], "tan": [65535, 0], "overcome": [65535, 0], "achievement": [65535, 0], "selected": [65535, 0], "choice": [65535, 0], "improving": [65535, 0], "lecture": [65535, 0], "value": [65535, 0], "flavor": [65535, 0], "virtuous": [65535, 0], "flourish": [65535, 0], "hooked": [65535, 0], "doughnut": [65535, 0], "skipped": [65535, 0], "starting": [65535, 0], "stairway": [65535, 0], "led": [65535, 0], "rooms": [65535, 0], "second": [32706, 32829], "clods": [65535, 0], "twinkling": [65535, 0], "raged": [65535, 0], "hail": [65535, 0], "storm": [65535, 0], "collect": [65535, 0], "sally": [65535, 0], "rescue": [32706, 32829], "seven": [65535, 0], "personal": [65535, 0], "crowded": [65535, 0], "use": [65535, 0], "calling": [65535, 0], "skirted": [65535, 0], "block": [65535, 0], "muddy": [65535, 0], "aunt's": [65535, 0], "cowstable": [65535, 0], "safely": [65535, 0], "capture": [65535, 0], "punishment": [32706, 32829], "hastened": [65535, 0], "public": [65535, 0], "square": [65535, 0], "military": [65535, 0], "companies": [65535, 0], "conflict": [65535, 0], "according": [32706, 32829], "previous": [65535, 0], "appointment": [65535, 0], "armies": [65535, 0], "bosom": [65535, 0], "friend": [8165, 57370], "commanders": [65535, 0], "condescend": [65535, 0], "smaller": [65535, 0], "fry": [65535, 0], "eminence": [65535, 0], "conducted": [65535, 0], "operations": [65535, 0], "aides": [65535, 0], "camp": [65535, 0], "army": [65535, 0], "victory": [65535, 0], "fought": [65535, 0], "prisoners": [65535, 0], "terms": [65535, 0], "disagreement": [65535, 0], "agreed": [32706, 32829], "marched": [65535, 0], "homeward": [21790, 43745], "passing": [65535, 0], "lovely": [65535, 0], "plaited": [65535, 0], "frock": [65535, 0], "embroidered": [65535, 0], "pantalettes": [65535, 0], "firing": [65535, 0], "distraction": [65535, 0], "passion": [21790, 43745], "adoration": [65535, 0], "behold": [16338, 49197], "evanescent": [65535, 0], "partiality": [65535, 0], "winning": [65535, 0], "confessed": [65535, 0], "happiest": [65535, 0], "proudest": [65535, 0], "casual": [65535, 0], "visit": [43635, 21900], "worshipped": [65535, 0], "angel": [32706, 32829], "pretended": [65535, 0], "absurd": [65535, 0], "boyish": [65535, 0], "admiration": [65535, 0], "grotesque": [65535, 0], "foolishness": [65535, 0], "dangerous": [65535, 0], "gymnastic": [65535, 0], "performances": [65535, 0], "aside": [65535, 0], "wending": [65535, 0], "grieving": [65535, 0], "hoping": [65535, 0], "tarry": [32706, 32829], "halted": [65535, 0], "heaved": [65535, 0], "sigh": [65535, 0], "threshold": [65535, 0], "pansy": [65535, 0], "flower": [65535, 0], "shaded": [65535, 0], "direction": [65535, 0], "picked": [65535, 0], "balance": [65535, 0], "tilted": [65535, 0], "efforts": [65535, 0], "edged": [65535, 0], "nearer": [65535, 0], "bare": [16338, 49197], "rested": [16338, 49197], "pliant": [65535, 0], "hopped": [65535, 0], "corner": [65535, 0], "inside": [65535, 0], "posted": [65535, 0], "anatomy": [65535, 0], "nightfall": [65535, 0], "comforted": [65535, 0], "attentions": [65535, 0], "reluctantly": [65535, 0], "visions": [65535, 0], "spirits": [65535, 0], "scolding": [65535, 0], "clodding": [65535, 0], "knuckles": [65535, 0], "rapped": [65535, 0], "takes": [21790, 43745], "immunity": [65535, 0], "bowl": [65535, 0], "glorying": [65535, 0], "nigh": [65535, 0], "unbearable": [65535, 0], "sid's": [65535, 0], "slipped": [65535, 0], "ecstasies": [65535, 0], "controlled": [65535, 0], "mischief": [65535, 0], "catch": [32706, 32829], "brimful": [65535, 0], "exultation": [65535, 0], "wreck": [65535, 0], "lightnings": [65535, 0], "wrath": [65535, 0], "sprawling": [65535, 0], "potent": [65535, 0], "palm": [65535, 0], "uplifted": [65535, 0], "'er": [65535, 0], "belting": [65535, 0], "paused": [65535, 0], "healing": [65535, 0], "pity": [65535, 0], "umf": [65535, 0], "amiss": [65535, 0], "audacious": [65535, 0], "reproached": [65535, 0], "yearned": [65535, 0], "judged": [65535, 0], "construed": [65535, 0], "wrong": [5442, 60093], "affairs": [65535, 0], "sulked": [65535, 0], "exalted": [65535, 0], "woes": [16338, 49197], "knees": [65535, 0], "morosely": [65535, 0], "gratified": [65535, 0], "consciousness": [65535, 0], "signals": [65535, 0], "yearning": [65535, 0], "film": [65535, 0], "recognition": [65535, 0], "pictured": [65535, 0], "lying": [65535, 0], "unto": [65535, 0], "death": [13068, 52467], "beseeching": [65535, 0], "forgiving": [65535, 0], "unsaid": [65535, 0], "river": [65535, 0], "pray": [3628, 61907], "god": [5024, 60511], "abuse": [65535, 0], "cold": [26155, 39380], "griefs": [65535, 0], "feelings": [65535, 0], "dreams": [65535, 0], "swallowing": [65535, 0], "choke": [65535, 0], "swam": [65535, 0], "blur": [65535, 0], "overflowed": [65535, 0], "winked": [65535, 0], "trickled": [65535, 0], "luxury": [65535, 0], "petting": [65535, 0], "cheeriness": [65535, 0], "grating": [65535, 0], "intrude": [65535, 0], "contact": [65535, 0], "cousin": [65535, 0], "danced": [65535, 0], "alive": [65535, 0], "clouds": [65535, 0], "darkness": [65535, 0], "sunshine": [65535, 0], "haunts": [32706, 32829], "sought": [32706, 32829], "desolate": [65535, 0], "log": [65535, 0], "raft": [65535, 0], "invited": [65535, 0], "outer": [65535, 0], "dreary": [65535, 0], "vastness": [65535, 0], "stream": [65535, 0], "drowned": [32706, 32829], "undergoing": [65535, 0], "routine": [65535, 0], "devised": [65535, 0], "rumpled": [65535, 0], "wilted": [65535, 0], "mightily": [65535, 0], "increased": [65535, 0], "felicity": [65535, 0], "comfort": [16338, 49197], "coldly": [32706, 32829], "pleasurable": [65535, 0], "varied": [65535, 0], "lights": [65535, 0], "threadbare": [65535, 0], "departed": [65535, 0], "o'clock": [65535, 0], "adored": [65535, 0], "candle": [65535, 0], "casting": [65535, 0], "glow": [65535, 0], "story": [32706, 32829], "presence": [16338, 49197], "threaded": [65535, 0], "stealthy": [65535, 0], "plants": [65535, 0], "emotion": [65535, 0], "disposing": [65535, 0], "clasped": [65535, 0], "breast": [65535, 0], "holding": [65535, 0], "shelter": [65535, 0], "homeless": [65535, 0], "friendly": [65535, 0], "damps": [65535, 0], "brow": [32706, 32829], "bend": [32706, 32829], "pityingly": [65535, 0], "drop": [9332, 56203], "tear": [65535, 0], "lifeless": [65535, 0], "rudely": [65535, 0], "untimely": [65535, 0], "maid": [65535, 0], "servant's": [65535, 0], "discordant": [65535, 0], "profaned": [65535, 0], "holy": [13068, 52467], "calm": [65535, 0], "deluge": [65535, 0], "drenched": [65535, 0], "prone": [65535, 0], "martyr's": [65535, 0], "remains": [65535, 0], "strangling": [65535, 0], "relieving": [65535, 0], "whiz": [65535, 0], "missile": [65535, 0], "mingled": [32706, 32829], "curse": [32706, 32829], "shivering": [65535, 0], "gloom": [65535, 0], "undressed": [65535, 0], "surveying": [65535, 0], "garments": [32706, 32829], "dip": [65535, 0], "woke": [65535, 0], "references": [65535, 0], "allusions": [65535, 0], "prayers": [21790, 43745], "omission": [65535, 0], "tom presented": [65535, 0], "presented himself": [65535, 0], "himself before": [65535, 0], "before aunt": [65535, 0], "polly who": [65535, 0], "was sitting": [65535, 0], "sitting by": [65535, 0], "an open": [65535, 0], "window in": [65535, 0], "a pleasant": [65535, 0], "pleasant rearward": [65535, 0], "rearward apartment": [65535, 0], "apartment which": [65535, 0], "was bedroom": [65535, 0], "bedroom breakfast": [65535, 0], "breakfast room": [65535, 0], "room dining": [65535, 0], "dining room": [65535, 0], "room and": [65535, 0], "and library": [65535, 0], "library combined": [65535, 0], "combined the": [65535, 0], "the balmy": [65535, 0], "balmy summer": [65535, 0], "summer air": [65535, 0], "the restful": [65535, 0], "restful quiet": [65535, 0], "quiet the": [65535, 0], "the odor": [65535, 0], "odor of": [65535, 0], "the flowers": [65535, 0], "flowers and": [65535, 0], "the drowsing": [65535, 0], "drowsing murmur": [65535, 0], "the bees": [65535, 0], "bees had": [65535, 0], "had their": [65535, 0], "their effect": [65535, 0], "effect and": [65535, 0], "was nodding": [65535, 0], "nodding over": [65535, 0], "over her": [65535, 0], "her knitting": [65535, 0], "knitting for": [65535, 0], "no company": [65535, 0], "company but": [65535, 0], "was asleep": [65535, 0], "asleep in": [65535, 0], "her lap": [65535, 0], "lap her": [65535, 0], "spectacles were": [65535, 0], "were propped": [65535, 0], "propped up": [65535, 0], "on her": [65535, 0], "her gray": [65535, 0], "gray head": [65535, 0], "for safety": [32706, 32829], "safety she": [65535, 0], "had thought": [65535, 0], "thought that": [65535, 0], "that of": [32706, 32829], "course tom": [65535, 0], "had deserted": [65535, 0], "deserted long": [65535, 0], "long ago": [65535, 0], "wondered at": [65535, 0], "at seeing": [65535, 0], "seeing him": [65535, 0], "him place": [65535, 0], "place himself": [65535, 0], "her power": [65535, 0], "power again": [65535, 0], "again in": [65535, 0], "this intrepid": [65535, 0], "intrepid way": [65535, 0], "said mayn't": [65535, 0], "mayn't i": [65535, 0], "i go": [21790, 43745], "and play": [65535, 0], "play now": [65535, 0], "now aunt": [65535, 0], "aunt what": [65535, 0], "what a'ready": [65535, 0], "a'ready how": [65535, 0], "how much": [32706, 32829], "much have": [65535, 0], "you done": [65535, 0], "done it's": [65535, 0], "all done": [65535, 0], "done aunt": [65535, 0], "aunt tom": [65535, 0], "don't lie": [65535, 0], "lie to": [65535, 0], "can't bear": [65535, 0], "bear it": [65535, 0], "ain't aunt": [65535, 0], "aunt it": [65535, 0], "is all": [65535, 0], "polly placed": [65535, 0], "placed small": [65535, 0], "small trust": [65535, 0], "trust in": [65535, 0], "such evidence": [65535, 0], "evidence she": [65535, 0], "see for": [65535, 0], "for herself": [65535, 0], "herself and": [65535, 0], "been content": [65535, 0], "content to": [65535, 0], "find twenty": [65535, 0], "twenty per": [65535, 0], "per cent": [65535, 0], "cent of": [65535, 0], "tom's statement": [65535, 0], "statement true": [65535, 0], "true when": [65535, 0], "she found": [65535, 0], "found the": [32706, 32829], "the entire": [65535, 0], "entire fence": [65535, 0], "fence whitewashed": [65535, 0], "whitewashed and": [65535, 0], "and not": [21790, 43745], "not only": [65535, 0], "only whitewashed": [65535, 0], "whitewashed but": [65535, 0], "but elaborately": [65535, 0], "elaborately coated": [65535, 0], "coated and": [65535, 0], "and recoated": [65535, 0], "recoated and": [65535, 0], "even a": [65535, 0], "a streak": [65535, 0], "streak added": [65535, 0], "added to": [65535, 0], "ground her": [65535, 0], "her astonishment": [65535, 0], "astonishment was": [65535, 0], "was almost": [65535, 0], "almost unspeakable": [65535, 0], "unspeakable she": [65535, 0], "never there's": [65535, 0], "there's no": [21790, 43745], "getting round": [65535, 0], "round it": [65535, 0], "can work": [65535, 0], "work when": [65535, 0], "a mind": [65535, 0], "mind to": [65535, 0], "she diluted": [65535, 0], "diluted the": [65535, 0], "the compliment": [65535, 0], "compliment by": [65535, 0], "by adding": [65535, 0], "adding but": [65535, 0], "it's powerful": [65535, 0], "powerful seldom": [65535, 0], "seldom you're": [65535, 0], "to i'm": [65535, 0], "i'm bound": [65535, 0], "bound to": [16338, 49197], "say well": [65535, 0], "'long and": [65535, 0], "play but": [65535, 0], "but mind": [65535, 0], "mind you": [65535, 0], "get back": [65535, 0], "back some": [65535, 0], "time in": [65535, 0], "week or": [65535, 0], "i'll tan": [65535, 0], "tan you": [65535, 0], "you she": [65535, 0], "so overcome": [65535, 0], "overcome by": [65535, 0], "the splendor": [65535, 0], "splendor of": [65535, 0], "his achievement": [65535, 0], "achievement that": [65535, 0], "she took": [65535, 0], "the closet": [65535, 0], "closet and": [65535, 0], "and selected": [65535, 0], "selected a": [65535, 0], "a choice": [65535, 0], "choice apple": [65535, 0], "and delivered": [65535, 0], "delivered it": [65535, 0], "him along": [65535, 0], "along with": [32706, 32829], "with an": [16338, 49197], "an improving": [65535, 0], "improving lecture": [65535, 0], "lecture upon": [65535, 0], "the added": [65535, 0], "added value": [65535, 0], "value and": [65535, 0], "and flavor": [65535, 0], "flavor a": [65535, 0], "a treat": [65535, 0], "treat took": [65535, 0], "to itself": [65535, 0], "itself when": [65535, 0], "it came": [65535, 0], "came without": [65535, 0], "without sin": [65535, 0], "sin through": [65535, 0], "through virtuous": [65535, 0], "virtuous effort": [65535, 0], "effort and": [65535, 0], "while she": [32706, 32829], "she closed": [65535, 0], "a happy": [65535, 0], "happy scriptural": [65535, 0], "scriptural flourish": [65535, 0], "flourish he": [65535, 0], "he hooked": [65535, 0], "hooked a": [65535, 0], "a doughnut": [65535, 0], "doughnut then": [65535, 0], "he skipped": [65535, 0], "skipped out": [65535, 0], "and saw": [65535, 0], "saw sid": [65535, 0], "sid just": [65535, 0], "just starting": [65535, 0], "starting up": [65535, 0], "the outside": [65535, 0], "outside stairway": [65535, 0], "stairway that": [65535, 0], "that led": [65535, 0], "led to": [65535, 0], "back rooms": [65535, 0], "rooms on": [65535, 0], "the second": [32706, 32829], "second floor": [65535, 0], "floor clods": [65535, 0], "clods were": [65535, 0], "were handy": [65535, 0], "handy and": [65535, 0], "was full": [65535, 0], "them in": [16338, 49197], "a twinkling": [65535, 0], "twinkling they": [65535, 0], "they raged": [65535, 0], "raged around": [65535, 0], "around sid": [65535, 0], "sid like": [65535, 0], "a hail": [65535, 0], "hail storm": [65535, 0], "storm and": [65535, 0], "and before": [65535, 0], "polly could": [65535, 0], "could collect": [65535, 0], "collect her": [65535, 0], "her surprised": [65535, 0], "surprised faculties": [65535, 0], "faculties and": [65535, 0], "and sally": [65535, 0], "sally to": [65535, 0], "the rescue": [65535, 0], "rescue six": [65535, 0], "six or": [65535, 0], "or seven": [65535, 0], "seven clods": [65535, 0], "clods had": [65535, 0], "taken personal": [65535, 0], "personal effect": [65535, 0], "gone there": [65535, 0], "a gate": [65535, 0], "gate but": [65535, 0], "but as": [65535, 0], "a general": [65535, 0], "general thing": [65535, 0], "thing he": [65535, 0], "too crowded": [65535, 0], "crowded for": [65535, 0], "for time": [65535, 0], "make use": [65535, 0], "use of": [65535, 0], "was at": [32706, 32829], "at peace": [65535, 0], "peace now": [65535, 0], "had settled": [65535, 0], "settled with": [65535, 0], "for calling": [65535, 0], "calling attention": [65535, 0], "his black": [65535, 0], "black thread": [65535, 0], "getting him": [65535, 0], "into trouble": [65535, 0], "trouble tom": [65535, 0], "tom skirted": [65535, 0], "skirted the": [65535, 0], "the block": [65535, 0], "block and": [65535, 0], "and came": [65535, 0], "came round": [65535, 0], "round into": [65535, 0], "a muddy": [65535, 0], "muddy alley": [65535, 0], "alley that": [65535, 0], "led by": [65535, 0], "his aunt's": [65535, 0], "aunt's cowstable": [65535, 0], "cowstable he": [65535, 0], "he presently": [65535, 0], "presently got": [65535, 0], "got safely": [65535, 0], "safely beyond": [65535, 0], "the reach": [65535, 0], "reach of": [65535, 0], "of capture": [65535, 0], "capture and": [65535, 0], "and punishment": [65535, 0], "punishment and": [65535, 0], "and hastened": [65535, 0], "hastened toward": [65535, 0], "the public": [65535, 0], "public square": [65535, 0], "square of": [65535, 0], "village where": [65535, 0], "where two": [65535, 0], "two military": [65535, 0], "military companies": [65535, 0], "companies of": [65535, 0], "of boys": [65535, 0], "boys had": [65535, 0], "had met": [65535, 0], "met for": [65535, 0], "for conflict": [65535, 0], "conflict according": [65535, 0], "according to": [32706, 32829], "to previous": [65535, 0], "previous appointment": [65535, 0], "appointment tom": [65535, 0], "was general": [65535, 0], "general of": [65535, 0], "these armies": [65535, 0], "armies joe": [65535, 0], "harper a": [65535, 0], "a bosom": [65535, 0], "bosom friend": [65535, 0], "friend general": [65535, 0], "other these": [65535, 0], "these two": [21790, 43745], "two great": [65535, 0], "great commanders": [65535, 0], "commanders did": [65535, 0], "not condescend": [65535, 0], "condescend to": [65535, 0], "fight in": [65535, 0], "in person": [16338, 49197], "person that": [65535, 0], "that being": [32706, 32829], "being better": [65535, 0], "better suited": [65535, 0], "suited to": [65535, 0], "the still": [65535, 0], "still smaller": [65535, 0], "smaller fry": [65535, 0], "fry but": [65535, 0], "but sat": [65535, 0], "sat together": [65535, 0], "together on": [65535, 0], "on an": [65535, 0], "an eminence": [65535, 0], "eminence and": [65535, 0], "and conducted": [65535, 0], "conducted the": [65535, 0], "field operations": [65535, 0], "operations by": [65535, 0], "by orders": [65535, 0], "orders delivered": [65535, 0], "delivered through": [65535, 0], "through aides": [65535, 0], "aides de": [65535, 0], "de camp": [65535, 0], "camp tom's": [65535, 0], "tom's army": [65535, 0], "army won": [65535, 0], "won a": [65535, 0], "great victory": [65535, 0], "victory after": [65535, 0], "long and": [65535, 0], "and hard": [65535, 0], "hard fought": [65535, 0], "fought battle": [65535, 0], "battle then": [65535, 0], "the dead": [65535, 0], "dead were": [65535, 0], "were counted": [65535, 0], "counted prisoners": [65535, 0], "prisoners exchanged": [65535, 0], "exchanged the": [65535, 0], "the terms": [65535, 0], "terms of": [65535, 0], "next disagreement": [65535, 0], "disagreement agreed": [65535, 0], "agreed upon": [65535, 0], "day for": [65535, 0], "necessary battle": [65535, 0], "battle appointed": [65535, 0], "appointed after": [65535, 0], "after which": [65535, 0], "which the": [32706, 32829], "the armies": [65535, 0], "armies fell": [65535, 0], "fell into": [65535, 0], "into line": [65535, 0], "line and": [65535, 0], "and marched": [65535, 0], "marched away": [65535, 0], "tom turned": [65535, 0], "turned homeward": [65535, 0], "homeward alone": [65535, 0], "alone as": [65535, 0], "was passing": [65535, 0], "passing by": [65535, 0], "house where": [65535, 0], "where jeff": [65535, 0], "thatcher lived": [65535, 0], "saw a": [65535, 0], "girl in": [65535, 0], "garden a": [65535, 0], "a lovely": [65535, 0], "lovely little": [65535, 0], "little blue": [65535, 0], "blue eyed": [65535, 0], "eyed creature": [65535, 0], "creature with": [65535, 0], "with yellow": [65535, 0], "hair plaited": [65535, 0], "plaited into": [65535, 0], "into two": [65535, 0], "tails white": [65535, 0], "white summer": [65535, 0], "summer frock": [65535, 0], "frock and": [65535, 0], "and embroidered": [65535, 0], "embroidered pantalettes": [65535, 0], "pantalettes the": [65535, 0], "the fresh": [65535, 0], "fresh crowned": [65535, 0], "crowned hero": [65535, 0], "hero fell": [65535, 0], "fell without": [65535, 0], "without firing": [65535, 0], "firing a": [65535, 0], "a shot": [65535, 0], "shot a": [65535, 0], "certain amy": [65535, 0], "lawrence vanished": [65535, 0], "and left": [32706, 32829], "left not": [65535, 0], "not even": [65535, 0], "a memory": [65535, 0], "of herself": [65535, 0], "herself behind": [65535, 0], "behind he": [65535, 0], "he loved": [65535, 0], "loved her": [65535, 0], "to distraction": [65535, 0], "distraction he": [65535, 0], "had regarded": [65535, 0], "regarded his": [65535, 0], "his passion": [32706, 32829], "passion as": [65535, 0], "as adoration": [65535, 0], "adoration and": [65535, 0], "and behold": [65535, 0], "behold it": [65535, 0], "little evanescent": [65535, 0], "evanescent partiality": [65535, 0], "partiality he": [65535, 0], "been months": [65535, 0], "months winning": [65535, 0], "winning her": [65535, 0], "had confessed": [65535, 0], "confessed hardly": [65535, 0], "hardly a": [65535, 0], "week ago": [65535, 0], "ago he": [65535, 0], "the happiest": [65535, 0], "happiest and": [65535, 0], "the proudest": [65535, 0], "proudest boy": [65535, 0], "world only": [65535, 0], "only seven": [65535, 0], "seven short": [65535, 0], "short days": [65535, 0], "and here": [21790, 43745], "one instant": [65535, 0], "instant of": [65535, 0], "of time": [65535, 0], "had gone": [65535, 0], "gone out": [65535, 0], "heart like": [65535, 0], "a casual": [65535, 0], "casual stranger": [65535, 0], "stranger whose": [65535, 0], "whose visit": [65535, 0], "visit is": [65535, 0], "is done": [65535, 0], "done he": [65535, 0], "he worshipped": [65535, 0], "worshipped this": [65535, 0], "new angel": [65535, 0], "angel with": [65535, 0], "with furtive": [65535, 0], "furtive eye": [65535, 0], "eye till": [65535, 0], "saw that": [65535, 0], "discovered him": [65535, 0], "him then": [65535, 0], "he pretended": [65535, 0], "pretended he": [65535, 0], "was present": [65535, 0], "to show": [32706, 32829], "show off": [65535, 0], "in all": [26155, 39380], "of absurd": [65535, 0], "absurd boyish": [65535, 0], "boyish ways": [65535, 0], "ways in": [65535, 0], "her admiration": [65535, 0], "admiration he": [65535, 0], "up this": [65535, 0], "this grotesque": [65535, 0], "grotesque foolishness": [65535, 0], "foolishness for": [65535, 0], "but by": [21790, 43745], "by while": [65535, 0], "while he": [65535, 0], "some dangerous": [65535, 0], "dangerous gymnastic": [65535, 0], "gymnastic performances": [65535, 0], "performances he": [65535, 0], "he glanced": [65535, 0], "glanced aside": [65535, 0], "aside and": [65535, 0], "was wending": [65535, 0], "wending her": [65535, 0], "her way": [65535, 0], "way toward": [65535, 0], "house tom": [65535, 0], "came up": [65535, 0], "and leaned": [65535, 0], "leaned on": [65535, 0], "it grieving": [65535, 0], "grieving and": [65535, 0], "and hoping": [65535, 0], "hoping she": [65535, 0], "would tarry": [65535, 0], "tarry yet": [65535, 0], "yet awhile": [65535, 0], "awhile longer": [65535, 0], "longer she": [65535, 0], "she halted": [65535, 0], "halted a": [65535, 0], "moment on": [65535, 0], "the steps": [65535, 0], "steps and": [65535, 0], "then moved": [65535, 0], "moved toward": [65535, 0], "tom heaved": [65535, 0], "heaved a": [65535, 0], "great sigh": [65535, 0], "sigh as": [65535, 0], "as she": [43635, 21900], "her foot": [65535, 0], "foot on": [65535, 0], "the threshold": [65535, 0], "threshold but": [65535, 0], "lit up": [65535, 0], "up right": [65535, 0], "right away": [65535, 0], "away for": [65535, 0], "she tossed": [65535, 0], "tossed a": [65535, 0], "a pansy": [65535, 0], "pansy over": [65535, 0], "fence a": [65535, 0], "moment before": [65535, 0], "before she": [65535, 0], "she disappeared": [65535, 0], "disappeared the": [65535, 0], "boy ran": [65535, 0], "ran around": [65535, 0], "around and": [65535, 0], "and stopped": [65535, 0], "stopped within": [65535, 0], "within a": [65535, 0], "foot or": [65535, 0], "the flower": [65535, 0], "flower and": [65535, 0], "then shaded": [65535, 0], "shaded his": [65535, 0], "eyes with": [65535, 0], "look down": [65535, 0], "down street": [65535, 0], "street as": [65535, 0], "something of": [65535, 0], "of interest": [65535, 0], "interest going": [65535, 0], "on in": [65535, 0], "that direction": [65535, 0], "direction presently": [65535, 0], "he picked": [65535, 0], "picked up": [65535, 0], "a straw": [65535, 0], "straw and": [65535, 0], "began trying": [65535, 0], "to balance": [65535, 0], "balance it": [65535, 0], "it on": [21790, 43745], "nose with": [65535, 0], "head tilted": [65535, 0], "tilted far": [65535, 0], "far back": [65535, 0], "he moved": [65535, 0], "moved from": [65535, 0], "from side": [65535, 0], "side to": [65535, 0], "to side": [65535, 0], "side in": [65535, 0], "his efforts": [65535, 0], "efforts he": [65535, 0], "he edged": [65535, 0], "edged nearer": [65535, 0], "nearer and": [65535, 0], "and nearer": [65535, 0], "nearer toward": [65535, 0], "the pansy": [65535, 0], "pansy finally": [65535, 0], "finally his": [65535, 0], "his bare": [65535, 0], "bare foot": [65535, 0], "foot rested": [65535, 0], "rested upon": [65535, 0], "upon it": [65535, 0], "his pliant": [65535, 0], "pliant toes": [65535, 0], "toes closed": [65535, 0], "closed upon": [65535, 0], "he hopped": [65535, 0], "hopped away": [65535, 0], "away with": [65535, 0], "the treasure": [65535, 0], "treasure and": [65535, 0], "disappeared round": [65535, 0], "round the": [65535, 0], "the corner": [65535, 0], "corner but": [65535, 0], "only for": [65535, 0], "minute only": [65535, 0], "only while": [65535, 0], "could button": [65535, 0], "button the": [65535, 0], "flower inside": [65535, 0], "inside his": [65535, 0], "jacket next": [65535, 0], "next his": [65535, 0], "heart or": [65535, 0], "or next": [65535, 0], "stomach possibly": [65535, 0], "possibly for": [65535, 0], "not much": [32706, 32829], "much posted": [65535, 0], "posted in": [65535, 0], "in anatomy": [65535, 0], "anatomy and": [65535, 0], "hypercritical anyway": [65535, 0], "anyway he": [65535, 0], "returned now": [65535, 0], "and hung": [65535, 0], "hung about": [65535, 0], "fence till": [65535, 0], "till nightfall": [65535, 0], "nightfall showing": [65535, 0], "off as": [65535, 0], "girl never": [65535, 0], "never exhibited": [65535, 0], "exhibited herself": [65535, 0], "herself again": [65535, 0], "again though": [65535, 0], "though tom": [65535, 0], "tom comforted": [65535, 0], "comforted himself": [65535, 0], "little with": [65535, 0], "hope that": [65535, 0], "been near": [65535, 0], "near some": [65535, 0], "some window": [65535, 0], "window meantime": [65535, 0], "meantime and": [65535, 0], "been aware": [65535, 0], "his attentions": [65535, 0], "attentions finally": [65535, 0], "finally he": [65535, 0], "strode home": [65535, 0], "home reluctantly": [65535, 0], "reluctantly with": [65535, 0], "his poor": [65535, 0], "poor head": [65535, 0], "head full": [65535, 0], "of visions": [65535, 0], "visions all": [65535, 0], "through supper": [65535, 0], "supper his": [65535, 0], "his spirits": [65535, 0], "spirits were": [65535, 0], "were so": [32706, 32829], "so high": [65535, 0], "high that": [65535, 0], "aunt wondered": [65535, 0], "what had": [65535, 0], "had got": [65535, 0], "child he": [65535, 0], "good scolding": [65535, 0], "scolding about": [65535, 0], "about clodding": [65535, 0], "clodding sid": [65535, 0], "and did": [16338, 49197], "not seem": [65535, 0], "to mind": [65535, 0], "mind it": [65535, 0], "the least": [65535, 0], "steal sugar": [65535, 0], "sugar under": [65535, 0], "under his": [65535, 0], "aunt's very": [65535, 0], "very nose": [65535, 0], "his knuckles": [65535, 0], "knuckles rapped": [65535, 0], "rapped for": [65535, 0], "aunt you": [65535, 0], "don't whack": [65535, 0], "whack sid": [65535, 0], "sid when": [65535, 0], "he takes": [32706, 32829], "takes it": [32706, 32829], "well sid": [65535, 0], "don't torment": [65535, 0], "torment a": [65535, 0], "body the": [65535, 0], "do you'd": [65535, 0], "you'd be": [65535, 0], "be always": [65535, 0], "always into": [65535, 0], "into that": [65535, 0], "that sugar": [65535, 0], "sugar if": [65535, 0], "warn't watching": [65535, 0], "watching you": [65535, 0], "you presently": [65535, 0], "presently she": [65535, 0], "she stepped": [65535, 0], "stepped into": [65535, 0], "sid happy": [65535, 0], "happy in": [65535, 0], "his immunity": [65535, 0], "immunity reached": [65535, 0], "reached for": [65535, 0], "the sugar": [65535, 0], "sugar bowl": [65535, 0], "bowl a": [65535, 0], "of glorying": [65535, 0], "glorying over": [65535, 0], "tom which": [65535, 0], "well nigh": [65535, 0], "nigh unbearable": [65535, 0], "unbearable but": [65535, 0], "but sid's": [65535, 0], "sid's fingers": [65535, 0], "fingers slipped": [65535, 0], "slipped and": [65535, 0], "the bowl": [65535, 0], "bowl dropped": [65535, 0], "dropped and": [65535, 0], "broke tom": [65535, 0], "in ecstasies": [65535, 0], "ecstasies in": [65535, 0], "such ecstasies": [65535, 0], "ecstasies that": [65535, 0], "even controlled": [65535, 0], "controlled his": [65535, 0], "tongue and": [65535, 0], "was silent": [65535, 0], "silent he": [65535, 0], "not speak": [65535, 0], "speak a": [32706, 32829], "word even": [65535, 0], "even when": [65535, 0], "aunt came": [65535, 0], "came in": [32706, 32829], "in but": [65535, 0], "but would": [65535, 0], "would sit": [65535, 0], "sit perfectly": [65535, 0], "perfectly still": [65535, 0], "still till": [65535, 0], "till she": [65535, 0], "she asked": [65535, 0], "asked who": [65535, 0], "who did": [65535, 0], "the mischief": [65535, 0], "mischief and": [65535, 0], "would tell": [32706, 32829], "tell and": [65535, 0], "there would": [65535, 0], "be nothing": [65535, 0], "good in": [65535, 0], "world as": [65535, 0], "that pet": [65535, 0], "pet model": [65535, 0], "model catch": [65535, 0], "catch it": [65535, 0], "so brimful": [65535, 0], "brimful of": [65535, 0], "of exultation": [65535, 0], "exultation that": [65535, 0], "could hardly": [65535, 0], "hardly hold": [65535, 0], "hold himself": [65535, 0], "himself when": [65535, 0], "lady came": [65535, 0], "came back": [65535, 0], "stood above": [65535, 0], "above the": [65535, 0], "the wreck": [65535, 0], "wreck discharging": [65535, 0], "discharging lightnings": [65535, 0], "lightnings of": [65535, 0], "of wrath": [65535, 0], "wrath from": [65535, 0], "from over": [65535, 0], "spectacles he": [65535, 0], "himself now": [65535, 0], "now it's": [65535, 0], "it's coming": [65535, 0], "coming and": [65535, 0], "next instant": [65535, 0], "instant he": [65535, 0], "was sprawling": [65535, 0], "sprawling on": [65535, 0], "floor the": [65535, 0], "the potent": [65535, 0], "potent palm": [65535, 0], "palm was": [65535, 0], "was uplifted": [65535, 0], "uplifted to": [65535, 0], "to strike": [65535, 0], "strike again": [65535, 0], "again when": [65535, 0], "tom cried": [65535, 0], "cried out": [65535, 0], "out hold": [65535, 0], "hold on": [32706, 32829], "on now": [65535, 0], "now what": [65535, 0], "what 'er": [65535, 0], "'er you": [65535, 0], "you belting": [65535, 0], "belting me": [65535, 0], "me for": [5937, 59598], "sid broke": [65535, 0], "broke it": [65535, 0], "it aunt": [65535, 0], "polly paused": [65535, 0], "paused perplexed": [65535, 0], "perplexed and": [65535, 0], "tom looked": [65535, 0], "for healing": [65535, 0], "healing pity": [65535, 0], "pity but": [65535, 0], "she got": [65535, 0], "her tongue": [65535, 0], "tongue again": [65535, 0], "she only": [65535, 0], "only said": [65535, 0], "said umf": [65535, 0], "umf well": [65535, 0], "didn't get": [65535, 0], "lick amiss": [65535, 0], "amiss i": [65535, 0], "reckon you": [65535, 0], "been into": [65535, 0], "into some": [65535, 0], "some other": [13068, 52467], "other audacious": [65535, 0], "audacious mischief": [65535, 0], "mischief when": [65535, 0], "when i": [5024, 60511], "i wasn't": [65535, 0], "wasn't around": [65535, 0], "around like": [65535, 0], "like enough": [65535, 0], "enough then": [65535, 0], "her conscience": [65535, 0], "conscience reproached": [65535, 0], "reproached her": [65535, 0], "she yearned": [65535, 0], "yearned to": [65535, 0], "say something": [65535, 0], "something kind": [65535, 0], "kind and": [65535, 0], "and loving": [65535, 0], "loving but": [65535, 0], "she judged": [65535, 0], "judged that": [65535, 0], "be construed": [65535, 0], "construed into": [65535, 0], "a confession": [65535, 0], "confession that": [65535, 0], "been in": [65535, 0], "the wrong": [32706, 32829], "wrong and": [65535, 0], "and discipline": [65535, 0], "discipline forbade": [65535, 0], "forbade that": [65535, 0], "she kept": [65535, 0], "kept silence": [65535, 0], "went about": [65535, 0], "about her": [65535, 0], "her affairs": [65535, 0], "affairs with": [65535, 0], "a troubled": [65535, 0], "troubled heart": [65535, 0], "heart tom": [65535, 0], "tom sulked": [65535, 0], "sulked in": [65535, 0], "a corner": [65535, 0], "corner and": [65535, 0], "and exalted": [65535, 0], "exalted his": [65535, 0], "his woes": [65535, 0], "woes he": [65535, 0], "heart his": [65535, 0], "aunt was": [65535, 0], "was on": [65535, 0], "her knees": [65535, 0], "knees to": [65535, 0], "was morosely": [65535, 0], "morosely gratified": [65535, 0], "gratified by": [65535, 0], "the consciousness": [65535, 0], "consciousness of": [65535, 0], "would hang": [65535, 0], "hang out": [65535, 0], "out no": [65535, 0], "no signals": [65535, 0], "signals he": [65535, 0], "would take": [32706, 32829], "take notice": [65535, 0], "notice of": [65535, 0], "of none": [65535, 0], "none he": [65535, 0], "a yearning": [65535, 0], "yearning glance": [65535, 0], "glance fell": [65535, 0], "him now": [65535, 0], "then through": [65535, 0], "a film": [65535, 0], "film of": [65535, 0], "of tears": [65535, 0], "tears but": [65535, 0], "he refused": [65535, 0], "refused recognition": [65535, 0], "recognition of": [65535, 0], "he pictured": [65535, 0], "pictured himself": [65535, 0], "himself lying": [65535, 0], "lying sick": [65535, 0], "sick unto": [65535, 0], "unto death": [65535, 0], "death and": [21790, 43745], "aunt bending": [65535, 0], "bending over": [65535, 0], "him beseeching": [65535, 0], "beseeching one": [65535, 0], "little forgiving": [65535, 0], "forgiving word": [65535, 0], "the wall": [65535, 0], "wall and": [65535, 0], "and die": [65535, 0], "die with": [65535, 0], "that word": [65535, 0], "word unsaid": [65535, 0], "unsaid ah": [65535, 0], "ah how": [65535, 0], "how would": [65535, 0], "she feel": [65535, 0], "feel then": [65535, 0], "then and": [32706, 32829], "himself brought": [65535, 0], "brought home": [65535, 0], "the river": [65535, 0], "river dead": [65535, 0], "dead with": [65535, 0], "his curls": [65535, 0], "curls all": [65535, 0], "all wet": [65535, 0], "wet and": [65535, 0], "sore heart": [65535, 0], "heart at": [65535, 0], "at rest": [65535, 0], "rest how": [65535, 0], "how she": [65535, 0], "would throw": [65535, 0], "throw herself": [65535, 0], "herself upon": [65535, 0], "how her": [65535, 0], "her tears": [65535, 0], "tears would": [65535, 0], "would fall": [65535, 0], "fall like": [65535, 0], "like rain": [65535, 0], "rain and": [65535, 0], "her lips": [65535, 0], "lips pray": [65535, 0], "pray god": [32706, 32829], "god to": [65535, 0], "to give": [65535, 0], "give her": [65535, 0], "back her": [65535, 0], "her boy": [65535, 0], "would never": [65535, 0], "never never": [65535, 0], "never abuse": [65535, 0], "abuse him": [65535, 0], "him any": [65535, 0], "more but": [65535, 0], "would lie": [65535, 0], "lie there": [65535, 0], "there cold": [65535, 0], "cold and": [65535, 0], "and white": [65535, 0], "and make": [32706, 32829], "make no": [65535, 0], "sign a": [65535, 0], "little sufferer": [65535, 0], "sufferer whose": [65535, 0], "whose griefs": [65535, 0], "griefs were": [65535, 0], "were at": [65535, 0], "end he": [65535, 0], "he so": [65535, 0], "so worked": [65535, 0], "worked upon": [65535, 0], "his feelings": [65535, 0], "feelings with": [65535, 0], "pathos of": [65535, 0], "these dreams": [65535, 0], "dreams that": [65535, 0], "keep swallowing": [65535, 0], "swallowing he": [65535, 0], "so like": [21790, 43745], "to choke": [65535, 0], "choke and": [65535, 0], "eyes swam": [65535, 0], "swam in": [65535, 0], "a blur": [65535, 0], "blur of": [65535, 0], "water which": [65535, 0], "which overflowed": [65535, 0], "overflowed when": [65535, 0], "he winked": [65535, 0], "winked and": [65535, 0], "ran down": [65535, 0], "and trickled": [65535, 0], "trickled from": [65535, 0], "and such": [65535, 0], "a luxury": [65535, 0], "luxury to": [65535, 0], "was this": [65535, 0], "this petting": [65535, 0], "petting of": [65535, 0], "sorrows that": [65535, 0], "not bear": [65535, 0], "bear to": [65535, 0], "have any": [65535, 0], "any worldly": [65535, 0], "worldly cheeriness": [65535, 0], "cheeriness or": [65535, 0], "or any": [32706, 32829], "any grating": [65535, 0], "grating delight": [65535, 0], "delight intrude": [65535, 0], "intrude upon": [65535, 0], "too sacred": [65535, 0], "sacred for": [65535, 0], "such contact": [65535, 0], "contact and": [65535, 0], "so presently": [65535, 0], "presently when": [65535, 0], "his cousin": [65535, 0], "cousin mary": [65535, 0], "mary danced": [65535, 0], "danced in": [65535, 0], "all alive": [65535, 0], "alive with": [65535, 0], "the joy": [65535, 0], "joy of": [65535, 0], "of seeing": [65535, 0], "seeing home": [65535, 0], "home again": [65535, 0], "again after": [65535, 0], "after an": [65535, 0], "an age": [65535, 0], "age long": [65535, 0], "long visit": [65535, 0], "visit of": [65535, 0], "one week": [65535, 0], "week to": [65535, 0], "country he": [65535, 0], "got up": [65535, 0], "and moved": [65535, 0], "moved in": [65535, 0], "in clouds": [65535, 0], "clouds and": [65535, 0], "and darkness": [65535, 0], "darkness out": [65535, 0], "at one": [65535, 0], "one door": [65535, 0], "door as": [65535, 0], "she brought": [65535, 0], "brought song": [65535, 0], "song and": [65535, 0], "and sunshine": [65535, 0], "sunshine in": [65535, 0], "other he": [32706, 32829], "wandered far": [65535, 0], "far from": [65535, 0], "accustomed haunts": [65535, 0], "haunts of": [65535, 0], "and sought": [65535, 0], "sought desolate": [65535, 0], "desolate places": [65535, 0], "places that": [65535, 0], "in harmony": [65535, 0], "harmony with": [65535, 0], "spirit a": [65535, 0], "a log": [65535, 0], "log raft": [65535, 0], "raft in": [65535, 0], "river invited": [65535, 0], "invited him": [65535, 0], "he seated": [65535, 0], "seated himself": [65535, 0], "himself on": [65535, 0], "its outer": [65535, 0], "outer edge": [65535, 0], "edge and": [65535, 0], "and contemplated": [65535, 0], "the dreary": [65535, 0], "dreary vastness": [65535, 0], "vastness of": [65535, 0], "the stream": [65535, 0], "stream wishing": [65535, 0], "wishing the": [65535, 0], "while that": [65535, 0], "could only": [65535, 0], "only be": [65535, 0], "be drowned": [32706, 32829], "drowned all": [65535, 0], "all at": [65535, 0], "at once": [65535, 0], "once and": [65535, 0], "and unconsciously": [65535, 0], "unconsciously without": [65535, 0], "without undergoing": [65535, 0], "undergoing the": [65535, 0], "the uncomfortable": [65535, 0], "uncomfortable routine": [65535, 0], "routine devised": [65535, 0], "devised by": [65535, 0], "by nature": [16338, 49197], "nature then": [65535, 0], "his flower": [65535, 0], "flower he": [65535, 0], "out rumpled": [65535, 0], "rumpled and": [65535, 0], "and wilted": [65535, 0], "wilted and": [65535, 0], "it mightily": [65535, 0], "mightily increased": [65535, 0], "increased his": [65535, 0], "his dismal": [65535, 0], "dismal felicity": [65535, 0], "felicity he": [65535, 0], "he wondered": [65535, 0], "would pity": [65535, 0], "pity him": [65535, 0], "she knew": [65535, 0], "knew would": [65535, 0], "she cry": [65535, 0], "cry and": [65535, 0], "and wish": [65535, 0], "wish that": [65535, 0], "a right": [65535, 0], "right to": [65535, 0], "her arms": [65535, 0], "arms around": [65535, 0], "neck and": [65535, 0], "and comfort": [65535, 0], "comfort him": [65535, 0], "or would": [65535, 0], "she turn": [65535, 0], "turn coldly": [65535, 0], "coldly away": [65535, 0], "away like": [65535, 0], "like all": [65535, 0], "the hollow": [65535, 0], "world this": [65535, 0], "this picture": [65535, 0], "picture brought": [65535, 0], "brought such": [65535, 0], "such an": [65535, 0], "an agony": [65535, 0], "agony of": [65535, 0], "of pleasurable": [65535, 0], "pleasurable suffering": [65535, 0], "suffering that": [65535, 0], "he worked": [65535, 0], "worked it": [65535, 0], "it over": [65535, 0], "and over": [65535, 0], "set it": [65535, 0], "in new": [65535, 0], "and varied": [65535, 0], "varied lights": [65535, 0], "lights till": [65535, 0], "wore it": [65535, 0], "it threadbare": [65535, 0], "threadbare at": [65535, 0], "he rose": [65535, 0], "rose up": [65535, 0], "up sighing": [65535, 0], "sighing and": [65535, 0], "and departed": [65535, 0], "departed in": [65535, 0], "the darkness": [65535, 0], "darkness about": [65535, 0], "past nine": [65535, 0], "nine or": [65535, 0], "or ten": [65535, 0], "ten o'clock": [65535, 0], "o'clock he": [65535, 0], "came along": [65535, 0], "the deserted": [65535, 0], "deserted street": [65535, 0], "street to": [65535, 0], "to where": [65535, 0], "the adored": [65535, 0], "adored unknown": [65535, 0], "unknown lived": [65535, 0], "he paused": [65535, 0], "paused a": [65535, 0], "moment no": [65535, 0], "no sound": [65535, 0], "sound fell": [65535, 0], "his listening": [65535, 0], "listening ear": [65535, 0], "ear a": [65535, 0], "a candle": [65535, 0], "candle was": [65535, 0], "was casting": [65535, 0], "casting a": [65535, 0], "a dull": [65535, 0], "dull glow": [65535, 0], "glow upon": [65535, 0], "a second": [65535, 0], "second story": [65535, 0], "story window": [65535, 0], "window was": [65535, 0], "the sacred": [65535, 0], "sacred presence": [65535, 0], "presence there": [65535, 0], "there he": [65535, 0], "climbed the": [65535, 0], "fence threaded": [65535, 0], "threaded his": [65535, 0], "his stealthy": [65535, 0], "stealthy way": [65535, 0], "the plants": [65535, 0], "plants till": [65535, 0], "stood under": [65535, 0], "under that": [65535, 0], "that window": [65535, 0], "looked up": [65535, 0], "it long": [65535, 0], "with emotion": [65535, 0], "emotion then": [65535, 0], "he laid": [65535, 0], "laid him": [65535, 0], "him down": [65535, 0], "ground under": [65535, 0], "under it": [65535, 0], "it disposing": [65535, 0], "disposing himself": [65535, 0], "himself upon": [65535, 0], "hands clasped": [65535, 0], "clasped upon": [65535, 0], "his breast": [65535, 0], "breast and": [65535, 0], "and holding": [65535, 0], "holding his": [65535, 0], "poor wilted": [65535, 0], "wilted flower": [65535, 0], "thus he": [32706, 32829], "would die": [65535, 0], "die out": [65535, 0], "the cold": [32706, 32829], "cold world": [65535, 0], "world with": [65535, 0], "no shelter": [65535, 0], "shelter over": [65535, 0], "his homeless": [65535, 0], "homeless head": [65535, 0], "head no": [65535, 0], "no friendly": [65535, 0], "friendly hand": [65535, 0], "hand to": [32706, 32829], "wipe the": [65535, 0], "the death": [32706, 32829], "death damps": [65535, 0], "damps from": [65535, 0], "his brow": [65535, 0], "brow no": [65535, 0], "no loving": [65535, 0], "loving face": [65535, 0], "to bend": [65535, 0], "bend pityingly": [65535, 0], "pityingly over": [65535, 0], "him when": [65535, 0], "great agony": [65535, 0], "agony came": [65535, 0], "thus she": [32706, 32829], "would see": [65535, 0], "out upon": [65535, 0], "the glad": [65535, 0], "glad morning": [65535, 0], "morning and": [65535, 0], "and oh": [65535, 0], "oh would": [65535, 0], "she drop": [65535, 0], "drop one": [65535, 0], "little tear": [65535, 0], "tear upon": [65535, 0], "poor lifeless": [65535, 0], "lifeless form": [65535, 0], "form would": [65535, 0], "she heave": [65535, 0], "heave one": [65535, 0], "little sigh": [65535, 0], "sigh to": [65535, 0], "bright young": [65535, 0], "young life": [65535, 0], "life so": [32706, 32829], "so rudely": [65535, 0], "rudely blighted": [65535, 0], "blighted so": [65535, 0], "so untimely": [65535, 0], "untimely cut": [65535, 0], "cut down": [65535, 0], "window went": [65535, 0], "went up": [65535, 0], "a maid": [65535, 0], "maid servant's": [65535, 0], "servant's discordant": [65535, 0], "discordant voice": [65535, 0], "voice profaned": [65535, 0], "profaned the": [65535, 0], "the holy": [65535, 0], "holy calm": [65535, 0], "calm and": [65535, 0], "a deluge": [65535, 0], "deluge of": [65535, 0], "water drenched": [65535, 0], "drenched the": [65535, 0], "the prone": [65535, 0], "prone martyr's": [65535, 0], "martyr's remains": [65535, 0], "remains the": [65535, 0], "the strangling": [65535, 0], "strangling hero": [65535, 0], "hero sprang": [65535, 0], "sprang up": [65535, 0], "a relieving": [65535, 0], "relieving snort": [65535, 0], "snort there": [65535, 0], "a whiz": [65535, 0], "whiz as": [65535, 0], "as of": [65535, 0], "a missile": [65535, 0], "missile in": [65535, 0], "air mingled": [65535, 0], "mingled with": [32706, 32829], "a curse": [65535, 0], "curse a": [65535, 0], "sound as": [65535, 0], "of shivering": [65535, 0], "shivering glass": [65535, 0], "glass followed": [65535, 0], "followed and": [65535, 0], "small vague": [65535, 0], "vague form": [65535, 0], "form went": [65535, 0], "went over": [65535, 0], "and shot": [65535, 0], "shot away": [65535, 0], "away in": [65535, 0], "the gloom": [65535, 0], "gloom not": [65535, 0], "not long": [65535, 0], "long after": [65535, 0], "after as": [65535, 0], "tom all": [65535, 0], "all undressed": [65535, 0], "undressed for": [65535, 0], "for bed": [65535, 0], "bed was": [65535, 0], "was surveying": [65535, 0], "surveying his": [65535, 0], "his drenched": [65535, 0], "drenched garments": [65535, 0], "garments by": [65535, 0], "light of": [65535, 0], "a tallow": [65535, 0], "tallow dip": [65535, 0], "dip sid": [65535, 0], "sid woke": [65535, 0], "woke up": [65535, 0], "up but": [65535, 0], "had any": [65535, 0], "any dim": [65535, 0], "dim idea": [65535, 0], "of making": [65535, 0], "making any": [65535, 0], "any references": [65535, 0], "references to": [65535, 0], "to allusions": [65535, 0], "allusions he": [65535, 0], "thought better": [65535, 0], "better of": [65535, 0], "held his": [65535, 0], "his peace": [65535, 0], "peace for": [65535, 0], "was danger": [65535, 0], "danger in": [65535, 0], "tom's eye": [65535, 0], "eye tom": [65535, 0], "turned in": [65535, 0], "in without": [65535, 0], "without the": [65535, 0], "added vexation": [65535, 0], "vexation of": [65535, 0], "of prayers": [65535, 0], "prayers and": [65535, 0], "sid made": [65535, 0], "made mental": [65535, 0], "mental note": [65535, 0], "note of": [65535, 0], "the omission": [65535, 0], "tom presented himself": [65535, 0], "presented himself before": [65535, 0], "himself before aunt": [65535, 0], "before aunt polly": [65535, 0], "aunt polly who": [65535, 0], "polly who was": [65535, 0], "who was sitting": [65535, 0], "was sitting by": [65535, 0], "sitting by an": [65535, 0], "by an open": [65535, 0], "an open window": [65535, 0], "open window in": [65535, 0], "window in a": [65535, 0], "in a pleasant": [65535, 0], "a pleasant rearward": [65535, 0], "pleasant rearward apartment": [65535, 0], "rearward apartment which": [65535, 0], "apartment which was": [65535, 0], "which was bedroom": [65535, 0], "was bedroom breakfast": [65535, 0], "bedroom breakfast room": [65535, 0], "breakfast room dining": [65535, 0], "room dining room": [65535, 0], "dining room and": [65535, 0], "room and library": [65535, 0], "and library combined": [65535, 0], "library combined the": [65535, 0], "combined the balmy": [65535, 0], "the balmy summer": [65535, 0], "balmy summer air": [65535, 0], "summer air the": [65535, 0], "air the restful": [65535, 0], "the restful quiet": [65535, 0], "restful quiet the": [65535, 0], "quiet the odor": [65535, 0], "the odor of": [65535, 0], "odor of the": [65535, 0], "of the flowers": [65535, 0], "the flowers and": [65535, 0], "flowers and the": [65535, 0], "and the drowsing": [65535, 0], "the drowsing murmur": [65535, 0], "drowsing murmur of": [65535, 0], "murmur of the": [65535, 0], "of the bees": [65535, 0], "the bees had": [65535, 0], "bees had had": [65535, 0], "had had their": [65535, 0], "had their effect": [65535, 0], "their effect and": [65535, 0], "effect and she": [65535, 0], "she was nodding": [65535, 0], "was nodding over": [65535, 0], "nodding over her": [65535, 0], "over her knitting": [65535, 0], "her knitting for": [65535, 0], "knitting for she": [65535, 0], "for she had": [65535, 0], "she had no": [65535, 0], "had no company": [65535, 0], "no company but": [65535, 0], "company but the": [65535, 0], "the cat and": [65535, 0], "cat and it": [65535, 0], "it was asleep": [65535, 0], "was asleep in": [65535, 0], "asleep in her": [65535, 0], "in her lap": [65535, 0], "her lap her": [65535, 0], "lap her spectacles": [65535, 0], "her spectacles were": [65535, 0], "spectacles were propped": [65535, 0], "were propped up": [65535, 0], "propped up on": [65535, 0], "up on her": [65535, 0], "on her gray": [65535, 0], "her gray head": [65535, 0], "gray head for": [65535, 0], "head for safety": [65535, 0], "for safety she": [65535, 0], "safety she had": [65535, 0], "she had thought": [65535, 0], "had thought that": [65535, 0], "thought that of": [65535, 0], "that of course": [65535, 0], "of course tom": [65535, 0], "course tom had": [65535, 0], "tom had deserted": [65535, 0], "had deserted long": [65535, 0], "deserted long ago": [65535, 0], "long ago and": [65535, 0], "ago and she": [65535, 0], "and she wondered": [65535, 0], "she wondered at": [65535, 0], "wondered at seeing": [65535, 0], "at seeing him": [65535, 0], "seeing him place": [65535, 0], "him place himself": [65535, 0], "place himself in": [65535, 0], "himself in her": [65535, 0], "in her power": [65535, 0], "her power again": [65535, 0], "power again in": [65535, 0], "again in this": [65535, 0], "in this intrepid": [65535, 0], "this intrepid way": [65535, 0], "intrepid way he": [65535, 0], "way he said": [65535, 0], "he said mayn't": [65535, 0], "said mayn't i": [65535, 0], "mayn't i go": [65535, 0], "i go and": [65535, 0], "go and play": [65535, 0], "and play now": [65535, 0], "play now aunt": [65535, 0], "now aunt what": [65535, 0], "aunt what a'ready": [65535, 0], "what a'ready how": [65535, 0], "a'ready how much": [65535, 0], "how much have": [65535, 0], "much have you": [65535, 0], "have you done": [65535, 0], "you done it's": [65535, 0], "done it's all": [65535, 0], "it's all done": [65535, 0], "all done aunt": [65535, 0], "done aunt tom": [65535, 0], "aunt tom don't": [65535, 0], "tom don't lie": [65535, 0], "don't lie to": [65535, 0], "lie to me": [65535, 0], "to me i": [21790, 43745], "me i can't": [65535, 0], "i can't bear": [65535, 0], "can't bear it": [65535, 0], "bear it i": [65535, 0], "it i ain't": [65535, 0], "i ain't aunt": [65535, 0], "ain't aunt it": [65535, 0], "aunt it is": [65535, 0], "it is all": [65535, 0], "is all done": [65535, 0], "done aunt polly": [65535, 0], "aunt polly placed": [65535, 0], "polly placed small": [65535, 0], "placed small trust": [65535, 0], "small trust in": [65535, 0], "trust in such": [65535, 0], "in such evidence": [65535, 0], "such evidence she": [65535, 0], "evidence she went": [65535, 0], "she went out": [65535, 0], "went out to": [65535, 0], "out to see": [65535, 0], "to see for": [65535, 0], "see for herself": [65535, 0], "for herself and": [65535, 0], "herself and she": [65535, 0], "and she would": [43635, 21900], "she would have": [65535, 0], "have been content": [65535, 0], "been content to": [65535, 0], "content to find": [65535, 0], "to find twenty": [65535, 0], "find twenty per": [65535, 0], "twenty per cent": [65535, 0], "per cent of": [65535, 0], "cent of tom's": [65535, 0], "of tom's statement": [65535, 0], "tom's statement true": [65535, 0], "statement true when": [65535, 0], "true when she": [65535, 0], "when she found": [65535, 0], "she found the": [65535, 0], "found the entire": [65535, 0], "the entire fence": [65535, 0], "entire fence whitewashed": [65535, 0], "fence whitewashed and": [65535, 0], "whitewashed and not": [65535, 0], "and not only": [65535, 0], "not only whitewashed": [65535, 0], "only whitewashed but": [65535, 0], "whitewashed but elaborately": [65535, 0], "but elaborately coated": [65535, 0], "elaborately coated and": [65535, 0], "coated and recoated": [65535, 0], "and recoated and": [65535, 0], "recoated and even": [65535, 0], "and even a": [65535, 0], "even a streak": [65535, 0], "a streak added": [65535, 0], "streak added to": [65535, 0], "added to the": [65535, 0], "the ground her": [65535, 0], "ground her astonishment": [65535, 0], "her astonishment was": [65535, 0], "astonishment was almost": [65535, 0], "was almost unspeakable": [65535, 0], "almost unspeakable she": [65535, 0], "unspeakable she said": [65535, 0], "she said well": [65535, 0], "said well i": [65535, 0], "well i never": [65535, 0], "i never there's": [65535, 0], "never there's no": [65535, 0], "there's no getting": [65535, 0], "no getting round": [65535, 0], "getting round it": [65535, 0], "round it you": [65535, 0], "it you can": [65535, 0], "you can work": [65535, 0], "can work when": [65535, 0], "work when you're": [65535, 0], "when you're a": [65535, 0], "you're a mind": [65535, 0], "a mind to": [65535, 0], "mind to tom": [65535, 0], "to tom and": [65535, 0], "tom and then": [65535, 0], "and then she": [65535, 0], "then she diluted": [65535, 0], "she diluted the": [65535, 0], "diluted the compliment": [65535, 0], "the compliment by": [65535, 0], "compliment by adding": [65535, 0], "by adding but": [65535, 0], "adding but it's": [65535, 0], "but it's powerful": [65535, 0], "it's powerful seldom": [65535, 0], "powerful seldom you're": [65535, 0], "seldom you're a": [65535, 0], "mind to i'm": [65535, 0], "to i'm bound": [65535, 0], "i'm bound to": [65535, 0], "bound to say": [65535, 0], "to say well": [65535, 0], "say well go": [65535, 0], "go 'long and": [65535, 0], "'long and play": [65535, 0], "and play but": [65535, 0], "play but mind": [65535, 0], "but mind you": [65535, 0], "mind you get": [65535, 0], "you get back": [65535, 0], "get back some": [65535, 0], "back some time": [65535, 0], "some time in": [65535, 0], "time in a": [65535, 0], "in a week": [65535, 0], "a week or": [65535, 0], "week or i'll": [65535, 0], "or i'll tan": [65535, 0], "i'll tan you": [65535, 0], "tan you she": [65535, 0], "you she was": [65535, 0], "she was so": [65535, 0], "was so overcome": [65535, 0], "so overcome by": [65535, 0], "overcome by the": [65535, 0], "by the splendor": [65535, 0], "the splendor of": [65535, 0], "splendor of his": [65535, 0], "of his achievement": [65535, 0], "his achievement that": [65535, 0], "achievement that she": [65535, 0], "that she took": [65535, 0], "she took him": [65535, 0], "took him into": [65535, 0], "him into the": [65535, 0], "into the closet": [65535, 0], "the closet and": [65535, 0], "closet and selected": [65535, 0], "and selected a": [65535, 0], "selected a choice": [65535, 0], "a choice apple": [65535, 0], "choice apple and": [65535, 0], "apple and delivered": [65535, 0], "and delivered it": [65535, 0], "delivered it to": [65535, 0], "it to him": [65535, 0], "to him along": [65535, 0], "him along with": [65535, 0], "along with an": [65535, 0], "with an improving": [65535, 0], "an improving lecture": [65535, 0], "improving lecture upon": [65535, 0], "lecture upon the": [65535, 0], "upon the added": [65535, 0], "the added value": [65535, 0], "added value and": [65535, 0], "value and flavor": [65535, 0], "and flavor a": [65535, 0], "flavor a treat": [65535, 0], "a treat took": [65535, 0], "treat took to": [65535, 0], "took to itself": [65535, 0], "to itself when": [65535, 0], "itself when it": [65535, 0], "when it came": [65535, 0], "it came without": [65535, 0], "came without sin": [65535, 0], "without sin through": [65535, 0], "sin through virtuous": [65535, 0], "through virtuous effort": [65535, 0], "virtuous effort and": [65535, 0], "effort and while": [65535, 0], "and while she": [65535, 0], "while she closed": [65535, 0], "she closed with": [65535, 0], "with a happy": [65535, 0], "a happy scriptural": [65535, 0], "happy scriptural flourish": [65535, 0], "scriptural flourish he": [65535, 0], "flourish he hooked": [65535, 0], "he hooked a": [65535, 0], "hooked a doughnut": [65535, 0], "a doughnut then": [65535, 0], "doughnut then he": [65535, 0], "then he skipped": [65535, 0], "he skipped out": [65535, 0], "skipped out and": [65535, 0], "out and saw": [65535, 0], "and saw sid": [65535, 0], "saw sid just": [65535, 0], "sid just starting": [65535, 0], "just starting up": [65535, 0], "starting up the": [65535, 0], "up the outside": [65535, 0], "the outside stairway": [65535, 0], "outside stairway that": [65535, 0], "stairway that led": [65535, 0], "that led to": [65535, 0], "led to the": [65535, 0], "to the back": [65535, 0], "the back rooms": [65535, 0], "back rooms on": [65535, 0], "rooms on the": [65535, 0], "on the second": [65535, 0], "the second floor": [65535, 0], "second floor clods": [65535, 0], "floor clods were": [65535, 0], "clods were handy": [65535, 0], "were handy and": [65535, 0], "handy and the": [65535, 0], "and the air": [65535, 0], "air was full": [65535, 0], "was full of": [65535, 0], "full of them": [65535, 0], "of them in": [65535, 0], "them in a": [65535, 0], "in a twinkling": [65535, 0], "a twinkling they": [65535, 0], "twinkling they raged": [65535, 0], "they raged around": [65535, 0], "raged around sid": [65535, 0], "around sid like": [65535, 0], "sid like a": [65535, 0], "like a hail": [65535, 0], "a hail storm": [65535, 0], "hail storm and": [65535, 0], "storm and before": [65535, 0], "and before aunt": [65535, 0], "aunt polly could": [65535, 0], "polly could collect": [65535, 0], "could collect her": [65535, 0], "collect her surprised": [65535, 0], "her surprised faculties": [65535, 0], "surprised faculties and": [65535, 0], "faculties and sally": [65535, 0], "and sally to": [65535, 0], "sally to the": [65535, 0], "to the rescue": [65535, 0], "the rescue six": [65535, 0], "rescue six or": [65535, 0], "six or seven": [65535, 0], "or seven clods": [65535, 0], "seven clods had": [65535, 0], "clods had taken": [65535, 0], "had taken personal": [65535, 0], "taken personal effect": [65535, 0], "personal effect and": [65535, 0], "effect and tom": [65535, 0], "tom was over": [65535, 0], "was over the": [65535, 0], "over the fence": [65535, 0], "fence and gone": [65535, 0], "and gone there": [65535, 0], "gone there was": [65535, 0], "was a gate": [65535, 0], "a gate but": [65535, 0], "gate but as": [65535, 0], "but as a": [65535, 0], "as a general": [65535, 0], "a general thing": [65535, 0], "general thing he": [65535, 0], "thing he was": [65535, 0], "he was too": [65535, 0], "was too crowded": [65535, 0], "too crowded for": [65535, 0], "crowded for time": [65535, 0], "for time to": [65535, 0], "time to make": [65535, 0], "to make use": [65535, 0], "make use of": [65535, 0], "use of it": [65535, 0], "of it his": [65535, 0], "it his soul": [65535, 0], "soul was at": [65535, 0], "was at peace": [65535, 0], "at peace now": [65535, 0], "peace now that": [65535, 0], "now that he": [65535, 0], "that he had": [43635, 21900], "he had settled": [65535, 0], "had settled with": [65535, 0], "settled with sid": [65535, 0], "with sid for": [65535, 0], "sid for calling": [65535, 0], "for calling attention": [65535, 0], "calling attention to": [65535, 0], "attention to his": [65535, 0], "to his black": [65535, 0], "his black thread": [65535, 0], "black thread and": [65535, 0], "thread and getting": [65535, 0], "and getting him": [65535, 0], "getting him into": [65535, 0], "him into trouble": [65535, 0], "into trouble tom": [65535, 0], "trouble tom skirted": [65535, 0], "tom skirted the": [65535, 0], "skirted the block": [65535, 0], "the block and": [65535, 0], "block and came": [65535, 0], "and came round": [65535, 0], "came round into": [65535, 0], "round into a": [65535, 0], "into a muddy": [65535, 0], "a muddy alley": [65535, 0], "muddy alley that": [65535, 0], "alley that led": [65535, 0], "that led by": [65535, 0], "led by the": [65535, 0], "by the back": [65535, 0], "back of his": [65535, 0], "of his aunt's": [65535, 0], "his aunt's cowstable": [65535, 0], "aunt's cowstable he": [65535, 0], "cowstable he presently": [65535, 0], "he presently got": [65535, 0], "presently got safely": [65535, 0], "got safely beyond": [65535, 0], "safely beyond the": [65535, 0], "beyond the reach": [65535, 0], "the reach of": [65535, 0], "reach of capture": [65535, 0], "of capture and": [65535, 0], "capture and punishment": [65535, 0], "and punishment and": [65535, 0], "punishment and hastened": [65535, 0], "and hastened toward": [65535, 0], "hastened toward the": [65535, 0], "toward the public": [65535, 0], "the public square": [65535, 0], "public square of": [65535, 0], "square of the": [65535, 0], "the village where": [65535, 0], "village where two": [65535, 0], "where two military": [65535, 0], "two military companies": [65535, 0], "military companies of": [65535, 0], "companies of boys": [65535, 0], "of boys had": [65535, 0], "boys had met": [65535, 0], "had met for": [65535, 0], "met for conflict": [65535, 0], "for conflict according": [65535, 0], "conflict according to": [65535, 0], "according to previous": [65535, 0], "to previous appointment": [65535, 0], "previous appointment tom": [65535, 0], "appointment tom was": [65535, 0], "tom was general": [65535, 0], "was general of": [65535, 0], "general of one": [65535, 0], "of these armies": [65535, 0], "these armies joe": [65535, 0], "armies joe harper": [65535, 0], "joe harper a": [65535, 0], "harper a bosom": [65535, 0], "a bosom friend": [65535, 0], "bosom friend general": [65535, 0], "friend general of": [65535, 0], "general of the": [65535, 0], "of the other": [21790, 43745], "the other these": [65535, 0], "other these two": [65535, 0], "these two great": [65535, 0], "two great commanders": [65535, 0], "great commanders did": [65535, 0], "commanders did not": [65535, 0], "did not condescend": [65535, 0], "not condescend to": [65535, 0], "condescend to fight": [65535, 0], "to fight in": [65535, 0], "fight in person": [65535, 0], "in person that": [65535, 0], "person that being": [65535, 0], "that being better": [65535, 0], "being better suited": [65535, 0], "better suited to": [65535, 0], "suited to the": [65535, 0], "to the still": [65535, 0], "the still smaller": [65535, 0], "still smaller fry": [65535, 0], "smaller fry but": [65535, 0], "fry but sat": [65535, 0], "but sat together": [65535, 0], "sat together on": [65535, 0], "together on an": [65535, 0], "on an eminence": [65535, 0], "an eminence and": [65535, 0], "eminence and conducted": [65535, 0], "and conducted the": [65535, 0], "conducted the field": [65535, 0], "the field operations": [65535, 0], "field operations by": [65535, 0], "operations by orders": [65535, 0], "by orders delivered": [65535, 0], "orders delivered through": [65535, 0], "delivered through aides": [65535, 0], "through aides de": [65535, 0], "aides de camp": [65535, 0], "de camp tom's": [65535, 0], "camp tom's army": [65535, 0], "tom's army won": [65535, 0], "army won a": [65535, 0], "won a great": [65535, 0], "a great victory": [65535, 0], "great victory after": [65535, 0], "victory after a": [65535, 0], "after a long": [65535, 0], "a long and": [65535, 0], "long and hard": [65535, 0], "and hard fought": [65535, 0], "hard fought battle": [65535, 0], "fought battle then": [65535, 0], "battle then the": [65535, 0], "then the dead": [65535, 0], "the dead were": [65535, 0], "dead were counted": [65535, 0], "were counted prisoners": [65535, 0], "counted prisoners exchanged": [65535, 0], "prisoners exchanged the": [65535, 0], "exchanged the terms": [65535, 0], "the terms of": [65535, 0], "terms of the": [65535, 0], "of the next": [65535, 0], "the next disagreement": [65535, 0], "next disagreement agreed": [65535, 0], "disagreement agreed upon": [65535, 0], "agreed upon and": [65535, 0], "upon and the": [65535, 0], "and the day": [65535, 0], "the day for": [65535, 0], "day for the": [65535, 0], "for the necessary": [65535, 0], "the necessary battle": [65535, 0], "necessary battle appointed": [65535, 0], "battle appointed after": [65535, 0], "appointed after which": [65535, 0], "after which the": [65535, 0], "which the armies": [65535, 0], "the armies fell": [65535, 0], "armies fell into": [65535, 0], "fell into line": [65535, 0], "into line and": [65535, 0], "line and marched": [65535, 0], "and marched away": [65535, 0], "marched away and": [65535, 0], "away and tom": [65535, 0], "and tom turned": [65535, 0], "tom turned homeward": [65535, 0], "turned homeward alone": [65535, 0], "homeward alone as": [65535, 0], "alone as he": [65535, 0], "as he was": [65535, 0], "he was passing": [65535, 0], "was passing by": [65535, 0], "passing by the": [65535, 0], "by the house": [65535, 0], "the house where": [65535, 0], "house where jeff": [65535, 0], "where jeff thatcher": [65535, 0], "jeff thatcher lived": [65535, 0], "thatcher lived he": [65535, 0], "lived he saw": [65535, 0], "he saw a": [65535, 0], "saw a new": [65535, 0], "a new girl": [65535, 0], "new girl in": [65535, 0], "girl in the": [65535, 0], "in the garden": [65535, 0], "the garden a": [65535, 0], "garden a lovely": [65535, 0], "a lovely little": [65535, 0], "lovely little blue": [65535, 0], "little blue eyed": [65535, 0], "blue eyed creature": [65535, 0], "eyed creature with": [65535, 0], "creature with yellow": [65535, 0], "with yellow hair": [65535, 0], "yellow hair plaited": [65535, 0], "hair plaited into": [65535, 0], "plaited into two": [65535, 0], "into two long": [65535, 0], "long tails white": [65535, 0], "tails white summer": [65535, 0], "white summer frock": [65535, 0], "summer frock and": [65535, 0], "frock and embroidered": [65535, 0], "and embroidered pantalettes": [65535, 0], "embroidered pantalettes the": [65535, 0], "pantalettes the fresh": [65535, 0], "the fresh crowned": [65535, 0], "fresh crowned hero": [65535, 0], "crowned hero fell": [65535, 0], "hero fell without": [65535, 0], "fell without firing": [65535, 0], "without firing a": [65535, 0], "firing a shot": [65535, 0], "a shot a": [65535, 0], "shot a certain": [65535, 0], "a certain amy": [65535, 0], "certain amy lawrence": [65535, 0], "amy lawrence vanished": [65535, 0], "lawrence vanished out": [65535, 0], "of his heart": [65535, 0], "heart and left": [65535, 0], "and left not": [65535, 0], "left not even": [65535, 0], "not even a": [65535, 0], "even a memory": [65535, 0], "a memory of": [65535, 0], "memory of herself": [65535, 0], "of herself behind": [65535, 0], "herself behind he": [65535, 0], "behind he had": [65535, 0], "he had thought": [65535, 0], "had thought he": [65535, 0], "thought he loved": [65535, 0], "he loved her": [65535, 0], "loved her to": [65535, 0], "her to distraction": [65535, 0], "to distraction he": [65535, 0], "distraction he had": [65535, 0], "he had regarded": [65535, 0], "had regarded his": [65535, 0], "regarded his passion": [65535, 0], "his passion as": [65535, 0], "passion as adoration": [65535, 0], "as adoration and": [65535, 0], "adoration and behold": [65535, 0], "and behold it": [65535, 0], "behold it was": [65535, 0], "only a poor": [65535, 0], "a poor little": [65535, 0], "poor little evanescent": [65535, 0], "little evanescent partiality": [65535, 0], "evanescent partiality he": [65535, 0], "partiality he had": [65535, 0], "had been months": [65535, 0], "been months winning": [65535, 0], "months winning her": [65535, 0], "winning her she": [65535, 0], "her she had": [65535, 0], "she had confessed": [65535, 0], "had confessed hardly": [65535, 0], "confessed hardly a": [65535, 0], "hardly a week": [65535, 0], "a week ago": [65535, 0], "week ago he": [65535, 0], "ago he had": [65535, 0], "had been the": [65535, 0], "been the happiest": [65535, 0], "the happiest and": [65535, 0], "happiest and the": [65535, 0], "and the proudest": [65535, 0], "the proudest boy": [65535, 0], "proudest boy in": [65535, 0], "the world only": [65535, 0], "world only seven": [65535, 0], "only seven short": [65535, 0], "seven short days": [65535, 0], "short days and": [65535, 0], "days and here": [65535, 0], "and here in": [65535, 0], "here in one": [65535, 0], "in one instant": [65535, 0], "one instant of": [65535, 0], "instant of time": [65535, 0], "of time she": [65535, 0], "time she had": [65535, 0], "she had gone": [65535, 0], "had gone out": [65535, 0], "gone out of": [65535, 0], "his heart like": [65535, 0], "heart like a": [65535, 0], "like a casual": [65535, 0], "a casual stranger": [65535, 0], "casual stranger whose": [65535, 0], "stranger whose visit": [65535, 0], "whose visit is": [65535, 0], "visit is done": [65535, 0], "is done he": [65535, 0], "done he worshipped": [65535, 0], "he worshipped this": [65535, 0], "worshipped this new": [65535, 0], "this new angel": [65535, 0], "new angel with": [65535, 0], "angel with furtive": [65535, 0], "with furtive eye": [65535, 0], "furtive eye till": [65535, 0], "eye till he": [65535, 0], "till he saw": [65535, 0], "he saw that": [65535, 0], "saw that she": [65535, 0], "had discovered him": [65535, 0], "discovered him then": [65535, 0], "him then he": [65535, 0], "then he pretended": [65535, 0], "he pretended he": [65535, 0], "pretended he did": [65535, 0], "not know she": [65535, 0], "she was present": [65535, 0], "was present and": [65535, 0], "present and began": [65535, 0], "began to show": [65535, 0], "to show off": [65535, 0], "show off in": [65535, 0], "off in all": [65535, 0], "in all sorts": [65535, 0], "sorts of absurd": [65535, 0], "of absurd boyish": [65535, 0], "absurd boyish ways": [65535, 0], "boyish ways in": [65535, 0], "ways in order": [65535, 0], "order to win": [65535, 0], "to win her": [65535, 0], "win her admiration": [65535, 0], "her admiration he": [65535, 0], "admiration he kept": [65535, 0], "he kept up": [65535, 0], "kept up this": [65535, 0], "up this grotesque": [65535, 0], "this grotesque foolishness": [65535, 0], "grotesque foolishness for": [65535, 0], "foolishness for some": [65535, 0], "some time but": [65535, 0], "time but by": [65535, 0], "but by and": [32706, 32829], "and by while": [65535, 0], "by while he": [65535, 0], "while he was": [65535, 0], "he was in": [65535, 0], "midst of some": [65535, 0], "of some dangerous": [65535, 0], "some dangerous gymnastic": [65535, 0], "dangerous gymnastic performances": [65535, 0], "gymnastic performances he": [65535, 0], "performances he glanced": [65535, 0], "he glanced aside": [65535, 0], "glanced aside and": [65535, 0], "aside and saw": [65535, 0], "and saw that": [65535, 0], "saw that the": [65535, 0], "that the little": [65535, 0], "the little girl": [65535, 0], "little girl was": [65535, 0], "girl was wending": [65535, 0], "was wending her": [65535, 0], "wending her way": [65535, 0], "her way toward": [65535, 0], "way toward the": [65535, 0], "toward the house": [65535, 0], "the house tom": [65535, 0], "house tom came": [65535, 0], "tom came up": [65535, 0], "came up to": [65535, 0], "to the fence": [65535, 0], "fence and leaned": [65535, 0], "and leaned on": [65535, 0], "leaned on it": [65535, 0], "on it grieving": [65535, 0], "it grieving and": [65535, 0], "grieving and hoping": [65535, 0], "and hoping she": [65535, 0], "hoping she would": [65535, 0], "she would tarry": [65535, 0], "would tarry yet": [65535, 0], "tarry yet awhile": [65535, 0], "yet awhile longer": [65535, 0], "awhile longer she": [65535, 0], "longer she halted": [65535, 0], "she halted a": [65535, 0], "halted a moment": [65535, 0], "a moment on": [65535, 0], "moment on the": [65535, 0], "on the steps": [65535, 0], "the steps and": [65535, 0], "steps and then": [65535, 0], "and then moved": [65535, 0], "then moved toward": [65535, 0], "moved toward the": [65535, 0], "toward the door": [65535, 0], "door tom heaved": [65535, 0], "tom heaved a": [65535, 0], "heaved a great": [65535, 0], "a great sigh": [65535, 0], "great sigh as": [65535, 0], "sigh as she": [65535, 0], "as she put": [65535, 0], "put her foot": [65535, 0], "her foot on": [65535, 0], "foot on the": [65535, 0], "on the threshold": [65535, 0], "the threshold but": [65535, 0], "threshold but his": [65535, 0], "but his face": [65535, 0], "face lit up": [65535, 0], "lit up right": [65535, 0], "up right away": [65535, 0], "right away for": [65535, 0], "away for she": [65535, 0], "for she tossed": [65535, 0], "she tossed a": [65535, 0], "tossed a pansy": [65535, 0], "a pansy over": [65535, 0], "pansy over the": [65535, 0], "the fence a": [65535, 0], "fence a moment": [65535, 0], "a moment before": [65535, 0], "moment before she": [65535, 0], "before she disappeared": [65535, 0], "she disappeared the": [65535, 0], "disappeared the boy": [65535, 0], "the boy ran": [65535, 0], "boy ran around": [65535, 0], "ran around and": [65535, 0], "around and stopped": [65535, 0], "and stopped within": [65535, 0], "stopped within a": [65535, 0], "within a foot": [65535, 0], "a foot or": [65535, 0], "foot or two": [65535, 0], "or two of": [65535, 0], "of the flower": [65535, 0], "the flower and": [65535, 0], "flower and then": [65535, 0], "and then shaded": [65535, 0], "then shaded his": [65535, 0], "shaded his eyes": [65535, 0], "his eyes with": [65535, 0], "eyes with his": [65535, 0], "with his hand": [65535, 0], "hand and began": [65535, 0], "began to look": [65535, 0], "to look down": [65535, 0], "look down street": [65535, 0], "down street as": [65535, 0], "street as if": [65535, 0], "as if he": [65535, 0], "had discovered something": [65535, 0], "discovered something of": [65535, 0], "something of interest": [65535, 0], "of interest going": [65535, 0], "interest going on": [65535, 0], "going on in": [65535, 0], "on in that": [65535, 0], "in that direction": [65535, 0], "that direction presently": [65535, 0], "direction presently he": [65535, 0], "presently he picked": [65535, 0], "he picked up": [65535, 0], "picked up a": [65535, 0], "up a straw": [65535, 0], "a straw and": [65535, 0], "straw and began": [65535, 0], "and began trying": [65535, 0], "began trying to": [65535, 0], "trying to balance": [65535, 0], "to balance it": [65535, 0], "balance it on": [65535, 0], "it on his": [65535, 0], "on his nose": [65535, 0], "his nose with": [65535, 0], "nose with his": [65535, 0], "with his head": [65535, 0], "his head tilted": [65535, 0], "head tilted far": [65535, 0], "tilted far back": [65535, 0], "far back and": [65535, 0], "back and as": [65535, 0], "and as he": [65535, 0], "as he moved": [65535, 0], "he moved from": [65535, 0], "moved from side": [65535, 0], "from side to": [65535, 0], "side to side": [65535, 0], "to side in": [65535, 0], "side in his": [65535, 0], "in his efforts": [65535, 0], "his efforts he": [65535, 0], "efforts he edged": [65535, 0], "he edged nearer": [65535, 0], "edged nearer and": [65535, 0], "nearer and nearer": [65535, 0], "and nearer toward": [65535, 0], "nearer toward the": [65535, 0], "toward the pansy": [65535, 0], "the pansy finally": [65535, 0], "pansy finally his": [65535, 0], "finally his bare": [65535, 0], "his bare foot": [65535, 0], "bare foot rested": [65535, 0], "foot rested upon": [65535, 0], "rested upon it": [65535, 0], "upon it his": [65535, 0], "it his pliant": [65535, 0], "his pliant toes": [65535, 0], "pliant toes closed": [65535, 0], "toes closed upon": [65535, 0], "closed upon it": [65535, 0], "upon it and": [65535, 0], "and he hopped": [65535, 0], "he hopped away": [65535, 0], "hopped away with": [65535, 0], "away with the": [65535, 0], "with the treasure": [65535, 0], "the treasure and": [65535, 0], "treasure and disappeared": [65535, 0], "and disappeared round": [65535, 0], "disappeared round the": [65535, 0], "round the corner": [65535, 0], "the corner but": [65535, 0], "corner but only": [65535, 0], "but only for": [65535, 0], "only for a": [65535, 0], "a minute only": [65535, 0], "minute only while": [65535, 0], "only while he": [65535, 0], "while he could": [65535, 0], "he could button": [65535, 0], "could button the": [65535, 0], "button the flower": [65535, 0], "the flower inside": [65535, 0], "flower inside his": [65535, 0], "inside his jacket": [65535, 0], "his jacket next": [65535, 0], "jacket next his": [65535, 0], "next his heart": [65535, 0], "his heart or": [65535, 0], "heart or next": [65535, 0], "or next his": [65535, 0], "next his stomach": [65535, 0], "his stomach possibly": [65535, 0], "stomach possibly for": [65535, 0], "possibly for he": [65535, 0], "was not much": [65535, 0], "not much posted": [65535, 0], "much posted in": [65535, 0], "posted in anatomy": [65535, 0], "in anatomy and": [65535, 0], "anatomy and not": [65535, 0], "and not hypercritical": [65535, 0], "not hypercritical anyway": [65535, 0], "hypercritical anyway he": [65535, 0], "anyway he returned": [65535, 0], "he returned now": [65535, 0], "returned now and": [65535, 0], "now and hung": [65535, 0], "and hung about": [65535, 0], "hung about the": [65535, 0], "about the fence": [65535, 0], "the fence till": [65535, 0], "fence till nightfall": [65535, 0], "till nightfall showing": [65535, 0], "nightfall showing off": [65535, 0], "showing off as": [65535, 0], "off as before": [65535, 0], "as before but": [65535, 0], "before but the": [65535, 0], "the girl never": [65535, 0], "girl never exhibited": [65535, 0], "never exhibited herself": [65535, 0], "exhibited herself again": [65535, 0], "herself again though": [65535, 0], "again though tom": [65535, 0], "though tom comforted": [65535, 0], "tom comforted himself": [65535, 0], "comforted himself a": [65535, 0], "himself a little": [65535, 0], "a little with": [65535, 0], "little with the": [65535, 0], "with the hope": [65535, 0], "the hope that": [65535, 0], "hope that she": [65535, 0], "she had been": [65535, 0], "had been near": [65535, 0], "been near some": [65535, 0], "near some window": [65535, 0], "some window meantime": [65535, 0], "window meantime and": [65535, 0], "meantime and been": [65535, 0], "and been aware": [65535, 0], "been aware of": [65535, 0], "aware of his": [65535, 0], "of his attentions": [65535, 0], "his attentions finally": [65535, 0], "attentions finally he": [65535, 0], "finally he strode": [65535, 0], "he strode home": [65535, 0], "strode home reluctantly": [65535, 0], "home reluctantly with": [65535, 0], "reluctantly with his": [65535, 0], "with his poor": [65535, 0], "his poor head": [65535, 0], "poor head full": [65535, 0], "head full of": [65535, 0], "full of visions": [65535, 0], "of visions all": [65535, 0], "visions all through": [65535, 0], "all through supper": [65535, 0], "through supper his": [65535, 0], "supper his spirits": [65535, 0], "his spirits were": [65535, 0], "spirits were so": [65535, 0], "were so high": [65535, 0], "so high that": [65535, 0], "high that his": [65535, 0], "that his aunt": [65535, 0], "his aunt wondered": [65535, 0], "aunt wondered what": [65535, 0], "wondered what had": [65535, 0], "what had got": [65535, 0], "had got into": [65535, 0], "into the child": [65535, 0], "the child he": [65535, 0], "child he took": [65535, 0], "took a good": [65535, 0], "a good scolding": [65535, 0], "good scolding about": [65535, 0], "scolding about clodding": [65535, 0], "about clodding sid": [65535, 0], "clodding sid and": [65535, 0], "sid and did": [65535, 0], "and did not": [21790, 43745], "did not seem": [65535, 0], "not seem to": [65535, 0], "seem to mind": [65535, 0], "to mind it": [65535, 0], "mind it in": [65535, 0], "it in the": [65535, 0], "in the least": [65535, 0], "the least he": [65535, 0], "least he tried": [65535, 0], "tried to steal": [65535, 0], "to steal sugar": [65535, 0], "steal sugar under": [65535, 0], "sugar under his": [65535, 0], "under his aunt's": [65535, 0], "his aunt's very": [65535, 0], "aunt's very nose": [65535, 0], "very nose and": [65535, 0], "nose and got": [65535, 0], "and got his": [65535, 0], "got his knuckles": [65535, 0], "his knuckles rapped": [65535, 0], "knuckles rapped for": [65535, 0], "rapped for it": [65535, 0], "for it he": [65535, 0], "it he said": [65535, 0], "said aunt you": [65535, 0], "aunt you don't": [65535, 0], "you don't whack": [65535, 0], "don't whack sid": [65535, 0], "whack sid when": [65535, 0], "sid when he": [65535, 0], "when he takes": [65535, 0], "he takes it": [32706, 32829], "takes it well": [65535, 0], "it well sid": [65535, 0], "well sid don't": [65535, 0], "sid don't torment": [65535, 0], "don't torment a": [65535, 0], "torment a body": [65535, 0], "a body the": [65535, 0], "body the way": [65535, 0], "the way you": [65535, 0], "way you do": [65535, 0], "you do you'd": [65535, 0], "do you'd be": [65535, 0], "you'd be always": [65535, 0], "be always into": [65535, 0], "always into that": [65535, 0], "into that sugar": [65535, 0], "that sugar if": [65535, 0], "sugar if i": [65535, 0], "if i warn't": [65535, 0], "i warn't watching": [65535, 0], "warn't watching you": [65535, 0], "watching you presently": [65535, 0], "you presently she": [65535, 0], "presently she stepped": [65535, 0], "she stepped into": [65535, 0], "stepped into the": [65535, 0], "into the kitchen": [65535, 0], "kitchen and sid": [65535, 0], "and sid happy": [65535, 0], "sid happy in": [65535, 0], "happy in his": [65535, 0], "in his immunity": [65535, 0], "his immunity reached": [65535, 0], "immunity reached for": [65535, 0], "reached for the": [65535, 0], "for the sugar": [65535, 0], "the sugar bowl": [65535, 0], "sugar bowl a": [65535, 0], "bowl a sort": [65535, 0], "sort of glorying": [65535, 0], "of glorying over": [65535, 0], "glorying over tom": [65535, 0], "over tom which": [65535, 0], "tom which was": [65535, 0], "which was well": [65535, 0], "was well nigh": [65535, 0], "well nigh unbearable": [65535, 0], "nigh unbearable but": [65535, 0], "unbearable but sid's": [65535, 0], "but sid's fingers": [65535, 0], "sid's fingers slipped": [65535, 0], "fingers slipped and": [65535, 0], "slipped and the": [65535, 0], "and the bowl": [65535, 0], "the bowl dropped": [65535, 0], "bowl dropped and": [65535, 0], "dropped and broke": [65535, 0], "and broke tom": [65535, 0], "broke tom was": [65535, 0], "tom was in": [65535, 0], "was in ecstasies": [65535, 0], "in ecstasies in": [65535, 0], "ecstasies in such": [65535, 0], "in such ecstasies": [65535, 0], "such ecstasies that": [65535, 0], "ecstasies that he": [65535, 0], "that he even": [65535, 0], "he even controlled": [65535, 0], "even controlled his": [65535, 0], "controlled his tongue": [65535, 0], "his tongue and": [65535, 0], "tongue and was": [65535, 0], "and was silent": [65535, 0], "was silent he": [65535, 0], "silent he said": [65535, 0], "that he would": [65535, 0], "he would not": [32706, 32829], "would not speak": [65535, 0], "not speak a": [65535, 0], "speak a word": [32706, 32829], "a word even": [65535, 0], "word even when": [65535, 0], "even when his": [65535, 0], "when his aunt": [65535, 0], "his aunt came": [65535, 0], "aunt came in": [65535, 0], "came in but": [65535, 0], "in but would": [65535, 0], "but would sit": [65535, 0], "would sit perfectly": [65535, 0], "sit perfectly still": [65535, 0], "perfectly still till": [65535, 0], "still till she": [65535, 0], "till she asked": [65535, 0], "she asked who": [65535, 0], "asked who did": [65535, 0], "who did the": [65535, 0], "did the mischief": [65535, 0], "the mischief and": [65535, 0], "mischief and then": [65535, 0], "then he would": [65535, 0], "he would tell": [65535, 0], "would tell and": [65535, 0], "tell and there": [65535, 0], "and there would": [65535, 0], "there would be": [65535, 0], "would be nothing": [65535, 0], "be nothing so": [65535, 0], "nothing so good": [65535, 0], "so good in": [65535, 0], "good in the": [65535, 0], "the world as": [65535, 0], "world as to": [65535, 0], "as to see": [65535, 0], "to see that": [65535, 0], "see that pet": [65535, 0], "that pet model": [65535, 0], "pet model catch": [65535, 0], "model catch it": [65535, 0], "catch it he": [65535, 0], "it he was": [65535, 0], "was so brimful": [65535, 0], "so brimful of": [65535, 0], "brimful of exultation": [65535, 0], "of exultation that": [65535, 0], "exultation that he": [65535, 0], "he could hardly": [65535, 0], "could hardly hold": [65535, 0], "hardly hold himself": [65535, 0], "hold himself when": [65535, 0], "himself when the": [65535, 0], "when the old": [65535, 0], "old lady came": [65535, 0], "lady came back": [65535, 0], "came back and": [65535, 0], "back and stood": [65535, 0], "and stood above": [65535, 0], "stood above the": [65535, 0], "above the wreck": [65535, 0], "the wreck discharging": [65535, 0], "wreck discharging lightnings": [65535, 0], "discharging lightnings of": [65535, 0], "lightnings of wrath": [65535, 0], "of wrath from": [65535, 0], "wrath from over": [65535, 0], "from over her": [65535, 0], "over her spectacles": [65535, 0], "her spectacles he": [65535, 0], "spectacles he said": [65535, 0], "to himself now": [65535, 0], "himself now it's": [65535, 0], "now it's coming": [65535, 0], "it's coming and": [65535, 0], "coming and the": [65535, 0], "and the next": [65535, 0], "the next instant": [65535, 0], "next instant he": [65535, 0], "instant he was": [65535, 0], "he was sprawling": [65535, 0], "was sprawling on": [65535, 0], "sprawling on the": [65535, 0], "on the floor": [65535, 0], "the floor the": [65535, 0], "floor the potent": [65535, 0], "the potent palm": [65535, 0], "potent palm was": [65535, 0], "palm was uplifted": [65535, 0], "was uplifted to": [65535, 0], "uplifted to strike": [65535, 0], "to strike again": [65535, 0], "strike again when": [65535, 0], "again when tom": [65535, 0], "when tom cried": [65535, 0], "tom cried out": [65535, 0], "cried out hold": [65535, 0], "out hold on": [65535, 0], "hold on now": [65535, 0], "on now what": [65535, 0], "now what 'er": [65535, 0], "what 'er you": [65535, 0], "'er you belting": [65535, 0], "you belting me": [65535, 0], "belting me for": [65535, 0], "me for sid": [65535, 0], "for sid broke": [65535, 0], "sid broke it": [65535, 0], "broke it aunt": [65535, 0], "it aunt polly": [65535, 0], "aunt polly paused": [65535, 0], "polly paused perplexed": [65535, 0], "paused perplexed and": [65535, 0], "perplexed and tom": [65535, 0], "and tom looked": [65535, 0], "tom looked for": [65535, 0], "looked for healing": [65535, 0], "for healing pity": [65535, 0], "healing pity but": [65535, 0], "pity but when": [65535, 0], "but when she": [65535, 0], "when she got": [65535, 0], "she got her": [65535, 0], "got her tongue": [65535, 0], "her tongue again": [65535, 0], "tongue again she": [65535, 0], "again she only": [65535, 0], "she only said": [65535, 0], "only said umf": [65535, 0], "said umf well": [65535, 0], "umf well you": [65535, 0], "well you didn't": [65535, 0], "you didn't get": [65535, 0], "didn't get a": [65535, 0], "get a lick": [65535, 0], "a lick amiss": [65535, 0], "lick amiss i": [65535, 0], "amiss i reckon": [65535, 0], "i reckon you": [65535, 0], "reckon you been": [65535, 0], "you been into": [65535, 0], "been into some": [65535, 0], "into some other": [65535, 0], "some other audacious": [65535, 0], "other audacious mischief": [65535, 0], "audacious mischief when": [65535, 0], "mischief when i": [65535, 0], "when i wasn't": [65535, 0], "i wasn't around": [65535, 0], "wasn't around like": [65535, 0], "around like enough": [65535, 0], "like enough then": [65535, 0], "enough then her": [65535, 0], "then her conscience": [65535, 0], "her conscience reproached": [65535, 0], "conscience reproached her": [65535, 0], "reproached her and": [65535, 0], "and she yearned": [65535, 0], "she yearned to": [65535, 0], "yearned to say": [65535, 0], "to say something": [65535, 0], "say something kind": [65535, 0], "something kind and": [65535, 0], "kind and loving": [65535, 0], "and loving but": [65535, 0], "loving but she": [65535, 0], "but she judged": [65535, 0], "she judged that": [65535, 0], "judged that this": [65535, 0], "that this would": [65535, 0], "this would be": [65535, 0], "would be construed": [65535, 0], "be construed into": [65535, 0], "construed into a": [65535, 0], "into a confession": [65535, 0], "a confession that": [65535, 0], "confession that she": [65535, 0], "had been in": [65535, 0], "been in the": [65535, 0], "in the wrong": [65535, 0], "the wrong and": [65535, 0], "wrong and discipline": [65535, 0], "and discipline forbade": [65535, 0], "discipline forbade that": [65535, 0], "forbade that so": [65535, 0], "that so she": [65535, 0], "so she kept": [65535, 0], "she kept silence": [65535, 0], "kept silence and": [65535, 0], "silence and went": [65535, 0], "and went about": [65535, 0], "went about her": [65535, 0], "about her affairs": [65535, 0], "her affairs with": [65535, 0], "affairs with a": [65535, 0], "with a troubled": [65535, 0], "a troubled heart": [65535, 0], "troubled heart tom": [65535, 0], "heart tom sulked": [65535, 0], "tom sulked in": [65535, 0], "sulked in a": [65535, 0], "in a corner": [65535, 0], "a corner and": [65535, 0], "corner and exalted": [65535, 0], "and exalted his": [65535, 0], "exalted his woes": [65535, 0], "his woes he": [65535, 0], "woes he knew": [65535, 0], "he knew that": [65535, 0], "knew that in": [65535, 0], "that in her": [65535, 0], "in her heart": [65535, 0], "her heart his": [65535, 0], "heart his aunt": [65535, 0], "his aunt was": [65535, 0], "aunt was on": [65535, 0], "was on her": [65535, 0], "on her knees": [65535, 0], "her knees to": [65535, 0], "knees to him": [65535, 0], "to him and": [32706, 32829], "him and he": [43635, 21900], "he was morosely": [65535, 0], "was morosely gratified": [65535, 0], "morosely gratified by": [65535, 0], "gratified by the": [65535, 0], "by the consciousness": [65535, 0], "the consciousness of": [65535, 0], "consciousness of it": [65535, 0], "of it he": [65535, 0], "it he would": [65535, 0], "he would hang": [65535, 0], "would hang out": [65535, 0], "hang out no": [65535, 0], "out no signals": [65535, 0], "no signals he": [65535, 0], "signals he would": [65535, 0], "he would take": [65535, 0], "would take notice": [65535, 0], "take notice of": [65535, 0], "notice of none": [65535, 0], "of none he": [65535, 0], "none he knew": [65535, 0], "knew that a": [65535, 0], "that a yearning": [65535, 0], "a yearning glance": [65535, 0], "yearning glance fell": [65535, 0], "glance fell upon": [65535, 0], "fell upon him": [65535, 0], "upon him now": [65535, 0], "him now and": [65535, 0], "now and then": [65535, 0], "and then through": [65535, 0], "then through a": [65535, 0], "through a film": [65535, 0], "a film of": [65535, 0], "film of tears": [65535, 0], "of tears but": [65535, 0], "tears but he": [65535, 0], "but he refused": [65535, 0], "he refused recognition": [65535, 0], "refused recognition of": [65535, 0], "recognition of it": [65535, 0], "it he pictured": [65535, 0], "he pictured himself": [65535, 0], "pictured himself lying": [65535, 0], "himself lying sick": [65535, 0], "lying sick unto": [65535, 0], "sick unto death": [65535, 0], "unto death and": [65535, 0], "death and his": [65535, 0], "and his aunt": [65535, 0], "his aunt bending": [65535, 0], "aunt bending over": [65535, 0], "bending over him": [65535, 0], "over him beseeching": [65535, 0], "him beseeching one": [65535, 0], "beseeching one little": [65535, 0], "one little forgiving": [65535, 0], "little forgiving word": [65535, 0], "forgiving word but": [65535, 0], "word but he": [65535, 0], "but he would": [43635, 21900], "he would turn": [65535, 0], "would turn his": [65535, 0], "turn his face": [65535, 0], "to the wall": [65535, 0], "the wall and": [65535, 0], "wall and die": [65535, 0], "and die with": [65535, 0], "die with that": [65535, 0], "with that word": [65535, 0], "that word unsaid": [65535, 0], "word unsaid ah": [65535, 0], "unsaid ah how": [65535, 0], "ah how would": [65535, 0], "how would she": [65535, 0], "would she feel": [65535, 0], "she feel then": [65535, 0], "feel then and": [65535, 0], "then and he": [65535, 0], "and he pictured": [65535, 0], "pictured himself brought": [65535, 0], "himself brought home": [65535, 0], "brought home from": [65535, 0], "home from the": [65535, 0], "from the river": [65535, 0], "the river dead": [65535, 0], "river dead with": [65535, 0], "dead with his": [65535, 0], "with his curls": [65535, 0], "his curls all": [65535, 0], "curls all wet": [65535, 0], "all wet and": [65535, 0], "wet and his": [65535, 0], "and his sore": [65535, 0], "his sore heart": [65535, 0], "sore heart at": [65535, 0], "heart at rest": [65535, 0], "at rest how": [65535, 0], "rest how she": [65535, 0], "how she would": [65535, 0], "she would throw": [65535, 0], "would throw herself": [65535, 0], "throw herself upon": [65535, 0], "herself upon him": [65535, 0], "upon him and": [65535, 0], "him and how": [65535, 0], "and how her": [65535, 0], "how her tears": [65535, 0], "her tears would": [65535, 0], "tears would fall": [65535, 0], "would fall like": [65535, 0], "fall like rain": [65535, 0], "like rain and": [65535, 0], "rain and her": [65535, 0], "and her lips": [65535, 0], "her lips pray": [65535, 0], "lips pray god": [65535, 0], "pray god to": [65535, 0], "god to give": [65535, 0], "to give her": [65535, 0], "give her back": [65535, 0], "her back her": [65535, 0], "back her boy": [65535, 0], "her boy and": [65535, 0], "boy and she": [65535, 0], "she would never": [65535, 0], "would never never": [65535, 0], "never never abuse": [65535, 0], "never abuse him": [65535, 0], "abuse him any": [65535, 0], "him any more": [65535, 0], "any more but": [65535, 0], "more but he": [65535, 0], "he would lie": [65535, 0], "would lie there": [65535, 0], "lie there cold": [65535, 0], "there cold and": [65535, 0], "cold and white": [65535, 0], "and white and": [65535, 0], "white and make": [65535, 0], "and make no": [65535, 0], "make no sign": [65535, 0], "no sign a": [65535, 0], "sign a poor": [65535, 0], "poor little sufferer": [65535, 0], "little sufferer whose": [65535, 0], "sufferer whose griefs": [65535, 0], "whose griefs were": [65535, 0], "griefs were at": [65535, 0], "were at an": [65535, 0], "an end he": [65535, 0], "end he so": [65535, 0], "he so worked": [65535, 0], "so worked upon": [65535, 0], "worked upon his": [65535, 0], "upon his feelings": [65535, 0], "his feelings with": [65535, 0], "feelings with the": [65535, 0], "with the pathos": [65535, 0], "the pathos of": [65535, 0], "pathos of these": [65535, 0], "of these dreams": [65535, 0], "these dreams that": [65535, 0], "dreams that he": [65535, 0], "had to keep": [65535, 0], "to keep swallowing": [65535, 0], "keep swallowing he": [65535, 0], "swallowing he was": [65535, 0], "was so like": [65535, 0], "so like to": [65535, 0], "like to choke": [65535, 0], "to choke and": [65535, 0], "choke and his": [65535, 0], "his eyes swam": [65535, 0], "eyes swam in": [65535, 0], "swam in a": [65535, 0], "in a blur": [65535, 0], "a blur of": [65535, 0], "blur of water": [65535, 0], "of water which": [65535, 0], "water which overflowed": [65535, 0], "which overflowed when": [65535, 0], "overflowed when he": [65535, 0], "when he winked": [65535, 0], "he winked and": [65535, 0], "winked and ran": [65535, 0], "and ran down": [65535, 0], "ran down and": [65535, 0], "down and trickled": [65535, 0], "and trickled from": [65535, 0], "trickled from the": [65535, 0], "from the end": [65535, 0], "end of his": [65535, 0], "of his nose": [65535, 0], "his nose and": [65535, 0], "nose and such": [65535, 0], "and such a": [65535, 0], "such a luxury": [65535, 0], "a luxury to": [65535, 0], "luxury to him": [65535, 0], "to him was": [65535, 0], "him was this": [65535, 0], "was this petting": [65535, 0], "this petting of": [65535, 0], "petting of his": [65535, 0], "of his sorrows": [65535, 0], "his sorrows that": [65535, 0], "sorrows that he": [65535, 0], "could not bear": [65535, 0], "not bear to": [65535, 0], "bear to have": [65535, 0], "to have any": [65535, 0], "have any worldly": [65535, 0], "any worldly cheeriness": [65535, 0], "worldly cheeriness or": [65535, 0], "cheeriness or any": [65535, 0], "or any grating": [65535, 0], "any grating delight": [65535, 0], "grating delight intrude": [65535, 0], "delight intrude upon": [65535, 0], "intrude upon it": [65535, 0], "upon it it": [65535, 0], "it was too": [65535, 0], "was too sacred": [65535, 0], "too sacred for": [65535, 0], "sacred for such": [65535, 0], "for such contact": [65535, 0], "such contact and": [65535, 0], "contact and so": [65535, 0], "and so presently": [65535, 0], "so presently when": [65535, 0], "presently when his": [65535, 0], "when his cousin": [65535, 0], "his cousin mary": [65535, 0], "cousin mary danced": [65535, 0], "mary danced in": [65535, 0], "danced in all": [65535, 0], "in all alive": [65535, 0], "all alive with": [65535, 0], "alive with the": [65535, 0], "with the joy": [65535, 0], "the joy of": [65535, 0], "joy of seeing": [65535, 0], "of seeing home": [65535, 0], "seeing home again": [65535, 0], "home again after": [65535, 0], "again after an": [65535, 0], "after an age": [65535, 0], "an age long": [65535, 0], "age long visit": [65535, 0], "long visit of": [65535, 0], "visit of one": [65535, 0], "of one week": [65535, 0], "one week to": [65535, 0], "week to the": [65535, 0], "to the country": [65535, 0], "the country he": [65535, 0], "country he got": [65535, 0], "he got up": [65535, 0], "got up and": [65535, 0], "up and moved": [65535, 0], "and moved in": [65535, 0], "moved in clouds": [65535, 0], "in clouds and": [65535, 0], "clouds and darkness": [65535, 0], "and darkness out": [65535, 0], "darkness out at": [65535, 0], "out at one": [65535, 0], "at one door": [65535, 0], "one door as": [65535, 0], "door as she": [65535, 0], "as she brought": [65535, 0], "she brought song": [65535, 0], "brought song and": [65535, 0], "song and sunshine": [65535, 0], "and sunshine in": [65535, 0], "sunshine in at": [65535, 0], "at the other": [65535, 0], "the other he": [65535, 0], "other he wandered": [65535, 0], "he wandered far": [65535, 0], "wandered far from": [65535, 0], "far from the": [65535, 0], "from the accustomed": [65535, 0], "the accustomed haunts": [65535, 0], "accustomed haunts of": [65535, 0], "haunts of boys": [65535, 0], "of boys and": [65535, 0], "boys and sought": [65535, 0], "and sought desolate": [65535, 0], "sought desolate places": [65535, 0], "desolate places that": [65535, 0], "places that were": [65535, 0], "that were in": [65535, 0], "were in harmony": [65535, 0], "in harmony with": [65535, 0], "harmony with his": [65535, 0], "with his spirit": [65535, 0], "his spirit a": [65535, 0], "spirit a log": [65535, 0], "a log raft": [65535, 0], "log raft in": [65535, 0], "raft in the": [65535, 0], "in the river": [65535, 0], "the river invited": [65535, 0], "river invited him": [65535, 0], "invited him and": [65535, 0], "and he seated": [65535, 0], "he seated himself": [65535, 0], "seated himself on": [65535, 0], "himself on its": [65535, 0], "on its outer": [65535, 0], "its outer edge": [65535, 0], "outer edge and": [65535, 0], "edge and contemplated": [65535, 0], "and contemplated the": [65535, 0], "contemplated the dreary": [65535, 0], "the dreary vastness": [65535, 0], "dreary vastness of": [65535, 0], "vastness of the": [65535, 0], "of the stream": [65535, 0], "the stream wishing": [65535, 0], "stream wishing the": [65535, 0], "wishing the while": [65535, 0], "the while that": [65535, 0], "while that he": [65535, 0], "he could only": [65535, 0], "could only be": [65535, 0], "only be drowned": [65535, 0], "be drowned all": [65535, 0], "drowned all at": [65535, 0], "all at once": [65535, 0], "at once and": [65535, 0], "once and unconsciously": [65535, 0], "and unconsciously without": [65535, 0], "unconsciously without undergoing": [65535, 0], "without undergoing the": [65535, 0], "undergoing the uncomfortable": [65535, 0], "the uncomfortable routine": [65535, 0], "uncomfortable routine devised": [65535, 0], "routine devised by": [65535, 0], "devised by nature": [65535, 0], "by nature then": [65535, 0], "nature then he": [65535, 0], "then he thought": [65535, 0], "he thought of": [65535, 0], "thought of his": [65535, 0], "of his flower": [65535, 0], "his flower he": [65535, 0], "flower he got": [65535, 0], "he got it": [65535, 0], "it out rumpled": [65535, 0], "out rumpled and": [65535, 0], "rumpled and wilted": [65535, 0], "and wilted and": [65535, 0], "wilted and it": [65535, 0], "and it mightily": [65535, 0], "it mightily increased": [65535, 0], "mightily increased his": [65535, 0], "increased his dismal": [65535, 0], "his dismal felicity": [65535, 0], "dismal felicity he": [65535, 0], "felicity he wondered": [65535, 0], "he wondered if": [65535, 0], "wondered if she": [65535, 0], "if she would": [65535, 0], "she would pity": [65535, 0], "would pity him": [65535, 0], "pity him if": [65535, 0], "him if she": [65535, 0], "if she knew": [65535, 0], "she knew would": [65535, 0], "knew would she": [65535, 0], "would she cry": [65535, 0], "she cry and": [65535, 0], "cry and wish": [65535, 0], "and wish that": [65535, 0], "wish that she": [65535, 0], "had a right": [65535, 0], "a right to": [65535, 0], "right to put": [65535, 0], "to put her": [32706, 32829], "put her arms": [65535, 0], "her arms around": [65535, 0], "arms around his": [65535, 0], "his neck and": [65535, 0], "neck and comfort": [65535, 0], "and comfort him": [65535, 0], "comfort him or": [65535, 0], "him or would": [65535, 0], "or would she": [65535, 0], "would she turn": [65535, 0], "she turn coldly": [65535, 0], "turn coldly away": [65535, 0], "coldly away like": [65535, 0], "away like all": [65535, 0], "like all the": [65535, 0], "all the hollow": [65535, 0], "the hollow world": [65535, 0], "hollow world this": [65535, 0], "world this picture": [65535, 0], "this picture brought": [65535, 0], "picture brought such": [65535, 0], "brought such an": [65535, 0], "such an agony": [65535, 0], "an agony of": [65535, 0], "agony of pleasurable": [65535, 0], "of pleasurable suffering": [65535, 0], "pleasurable suffering that": [65535, 0], "suffering that he": [65535, 0], "that he worked": [65535, 0], "he worked it": [65535, 0], "worked it over": [65535, 0], "it over and": [65535, 0], "over and over": [65535, 0], "and over again": [65535, 0], "over again in": [65535, 0], "again in his": [65535, 0], "in his mind": [65535, 0], "his mind and": [65535, 0], "mind and set": [65535, 0], "and set it": [65535, 0], "set it up": [65535, 0], "it up in": [65535, 0], "up in new": [65535, 0], "in new and": [65535, 0], "new and varied": [65535, 0], "and varied lights": [65535, 0], "varied lights till": [65535, 0], "lights till he": [65535, 0], "till he wore": [65535, 0], "he wore it": [65535, 0], "wore it threadbare": [65535, 0], "it threadbare at": [65535, 0], "threadbare at last": [65535, 0], "last he rose": [65535, 0], "he rose up": [65535, 0], "rose up sighing": [65535, 0], "up sighing and": [65535, 0], "sighing and departed": [65535, 0], "and departed in": [65535, 0], "departed in the": [65535, 0], "in the darkness": [65535, 0], "the darkness about": [65535, 0], "darkness about half": [65535, 0], "half past nine": [65535, 0], "past nine or": [65535, 0], "nine or ten": [65535, 0], "or ten o'clock": [65535, 0], "ten o'clock he": [65535, 0], "o'clock he came": [65535, 0], "he came along": [65535, 0], "came along the": [65535, 0], "along the deserted": [65535, 0], "the deserted street": [65535, 0], "deserted street to": [65535, 0], "street to where": [65535, 0], "to where the": [65535, 0], "where the adored": [65535, 0], "the adored unknown": [65535, 0], "adored unknown lived": [65535, 0], "unknown lived he": [65535, 0], "lived he paused": [65535, 0], "he paused a": [65535, 0], "paused a moment": [65535, 0], "a moment no": [65535, 0], "moment no sound": [65535, 0], "no sound fell": [65535, 0], "sound fell upon": [65535, 0], "fell upon his": [65535, 0], "upon his listening": [65535, 0], "his listening ear": [65535, 0], "listening ear a": [65535, 0], "ear a candle": [65535, 0], "a candle was": [65535, 0], "candle was casting": [65535, 0], "was casting a": [65535, 0], "casting a dull": [65535, 0], "a dull glow": [65535, 0], "dull glow upon": [65535, 0], "glow upon the": [65535, 0], "upon the curtain": [65535, 0], "curtain of a": [65535, 0], "of a second": [65535, 0], "a second story": [65535, 0], "second story window": [65535, 0], "story window was": [65535, 0], "window was the": [65535, 0], "was the sacred": [65535, 0], "the sacred presence": [65535, 0], "sacred presence there": [65535, 0], "presence there he": [65535, 0], "there he climbed": [65535, 0], "he climbed the": [65535, 0], "climbed the fence": [65535, 0], "the fence threaded": [65535, 0], "fence threaded his": [65535, 0], "threaded his stealthy": [65535, 0], "his stealthy way": [65535, 0], "stealthy way through": [65535, 0], "through the plants": [65535, 0], "the plants till": [65535, 0], "plants till he": [65535, 0], "till he stood": [65535, 0], "he stood under": [65535, 0], "stood under that": [65535, 0], "under that window": [65535, 0], "that window he": [65535, 0], "window he looked": [65535, 0], "he looked up": [65535, 0], "looked up at": [65535, 0], "up at it": [65535, 0], "at it long": [65535, 0], "it long and": [65535, 0], "long and with": [65535, 0], "and with emotion": [65535, 0], "with emotion then": [65535, 0], "emotion then he": [65535, 0], "then he laid": [65535, 0], "he laid him": [65535, 0], "laid him down": [65535, 0], "him down on": [65535, 0], "down on the": [65535, 0], "the ground under": [65535, 0], "ground under it": [65535, 0], "under it disposing": [65535, 0], "it disposing himself": [65535, 0], "disposing himself upon": [65535, 0], "himself upon his": [65535, 0], "upon his back": [65535, 0], "his back with": [65535, 0], "back with his": [65535, 0], "his hands clasped": [65535, 0], "hands clasped upon": [65535, 0], "clasped upon his": [65535, 0], "upon his breast": [65535, 0], "his breast and": [65535, 0], "breast and holding": [65535, 0], "and holding his": [65535, 0], "holding his poor": [65535, 0], "his poor wilted": [65535, 0], "poor wilted flower": [65535, 0], "wilted flower and": [65535, 0], "flower and thus": [65535, 0], "and thus he": [65535, 0], "thus he would": [65535, 0], "he would die": [65535, 0], "would die out": [65535, 0], "die out in": [65535, 0], "in the cold": [32706, 32829], "the cold world": [65535, 0], "cold world with": [65535, 0], "world with no": [65535, 0], "with no shelter": [65535, 0], "no shelter over": [65535, 0], "shelter over his": [65535, 0], "over his homeless": [65535, 0], "his homeless head": [65535, 0], "homeless head no": [65535, 0], "head no friendly": [65535, 0], "no friendly hand": [65535, 0], "friendly hand to": [65535, 0], "hand to wipe": [65535, 0], "to wipe the": [65535, 0], "wipe the death": [65535, 0], "the death damps": [65535, 0], "death damps from": [65535, 0], "damps from his": [65535, 0], "from his brow": [65535, 0], "his brow no": [65535, 0], "brow no loving": [65535, 0], "no loving face": [65535, 0], "loving face to": [65535, 0], "face to bend": [65535, 0], "to bend pityingly": [65535, 0], "bend pityingly over": [65535, 0], "pityingly over him": [65535, 0], "over him when": [65535, 0], "him when the": [65535, 0], "when the great": [65535, 0], "the great agony": [65535, 0], "great agony came": [65535, 0], "agony came and": [65535, 0], "came and thus": [65535, 0], "and thus she": [65535, 0], "thus she would": [65535, 0], "she would see": [65535, 0], "would see him": [65535, 0], "see him when": [65535, 0], "him when she": [65535, 0], "when she looked": [65535, 0], "she looked out": [65535, 0], "looked out upon": [65535, 0], "out upon the": [65535, 0], "upon the glad": [65535, 0], "the glad morning": [65535, 0], "glad morning and": [65535, 0], "morning and oh": [65535, 0], "and oh would": [65535, 0], "oh would she": [65535, 0], "would she drop": [65535, 0], "she drop one": [65535, 0], "drop one little": [65535, 0], "one little tear": [65535, 0], "little tear upon": [65535, 0], "tear upon his": [65535, 0], "upon his poor": [65535, 0], "his poor lifeless": [65535, 0], "poor lifeless form": [65535, 0], "lifeless form would": [65535, 0], "form would she": [65535, 0], "would she heave": [65535, 0], "she heave one": [65535, 0], "heave one little": [65535, 0], "one little sigh": [65535, 0], "little sigh to": [65535, 0], "sigh to see": [65535, 0], "to see a": [21790, 43745], "see a bright": [65535, 0], "a bright young": [65535, 0], "bright young life": [65535, 0], "young life so": [65535, 0], "life so rudely": [65535, 0], "so rudely blighted": [65535, 0], "rudely blighted so": [65535, 0], "blighted so untimely": [65535, 0], "so untimely cut": [65535, 0], "untimely cut down": [65535, 0], "cut down the": [65535, 0], "down the window": [65535, 0], "the window went": [65535, 0], "window went up": [65535, 0], "went up a": [65535, 0], "up a maid": [65535, 0], "a maid servant's": [65535, 0], "maid servant's discordant": [65535, 0], "servant's discordant voice": [65535, 0], "discordant voice profaned": [65535, 0], "voice profaned the": [65535, 0], "profaned the holy": [65535, 0], "the holy calm": [65535, 0], "holy calm and": [65535, 0], "calm and a": [65535, 0], "and a deluge": [65535, 0], "a deluge of": [65535, 0], "deluge of water": [65535, 0], "of water drenched": [65535, 0], "water drenched the": [65535, 0], "drenched the prone": [65535, 0], "the prone martyr's": [65535, 0], "prone martyr's remains": [65535, 0], "martyr's remains the": [65535, 0], "remains the strangling": [65535, 0], "the strangling hero": [65535, 0], "strangling hero sprang": [65535, 0], "hero sprang up": [65535, 0], "sprang up with": [65535, 0], "up with a": [65535, 0], "with a relieving": [65535, 0], "a relieving snort": [65535, 0], "relieving snort there": [65535, 0], "snort there was": [65535, 0], "was a whiz": [65535, 0], "a whiz as": [65535, 0], "whiz as of": [65535, 0], "as of a": [65535, 0], "of a missile": [65535, 0], "a missile in": [65535, 0], "missile in the": [65535, 0], "the air mingled": [65535, 0], "air mingled with": [65535, 0], "mingled with the": [32706, 32829], "with the murmur": [65535, 0], "murmur of a": [65535, 0], "of a curse": [65535, 0], "a curse a": [65535, 0], "curse a sound": [65535, 0], "a sound as": [65535, 0], "sound as of": [65535, 0], "as of shivering": [65535, 0], "of shivering glass": [65535, 0], "shivering glass followed": [65535, 0], "glass followed and": [65535, 0], "followed and a": [65535, 0], "and a small": [65535, 0], "a small vague": [65535, 0], "small vague form": [65535, 0], "vague form went": [65535, 0], "form went over": [65535, 0], "went over the": [65535, 0], "fence and shot": [65535, 0], "and shot away": [65535, 0], "shot away in": [65535, 0], "away in the": [65535, 0], "in the gloom": [65535, 0], "the gloom not": [65535, 0], "gloom not long": [65535, 0], "not long after": [65535, 0], "long after as": [65535, 0], "after as tom": [65535, 0], "as tom all": [65535, 0], "tom all undressed": [65535, 0], "all undressed for": [65535, 0], "undressed for bed": [65535, 0], "for bed was": [65535, 0], "bed was surveying": [65535, 0], "was surveying his": [65535, 0], "surveying his drenched": [65535, 0], "his drenched garments": [65535, 0], "drenched garments by": [65535, 0], "garments by the": [65535, 0], "by the light": [65535, 0], "the light of": [65535, 0], "light of a": [65535, 0], "of a tallow": [65535, 0], "a tallow dip": [65535, 0], "tallow dip sid": [65535, 0], "dip sid woke": [65535, 0], "sid woke up": [65535, 0], "woke up but": [65535, 0], "up but if": [65535, 0], "but if he": [65535, 0], "he had any": [65535, 0], "had any dim": [65535, 0], "any dim idea": [65535, 0], "dim idea of": [65535, 0], "idea of making": [65535, 0], "of making any": [65535, 0], "making any references": [65535, 0], "any references to": [65535, 0], "references to allusions": [65535, 0], "to allusions he": [65535, 0], "allusions he thought": [65535, 0], "he thought better": [65535, 0], "thought better of": [65535, 0], "better of it": [65535, 0], "it and held": [65535, 0], "and held his": [65535, 0], "held his peace": [65535, 0], "his peace for": [65535, 0], "peace for there": [65535, 0], "there was danger": [65535, 0], "was danger in": [65535, 0], "danger in tom's": [65535, 0], "in tom's eye": [65535, 0], "tom's eye tom": [65535, 0], "eye tom turned": [65535, 0], "tom turned in": [65535, 0], "turned in without": [65535, 0], "in without the": [65535, 0], "without the added": [65535, 0], "the added vexation": [65535, 0], "added vexation of": [65535, 0], "vexation of prayers": [65535, 0], "of prayers and": [65535, 0], "prayers and sid": [65535, 0], "and sid made": [65535, 0], "sid made mental": [65535, 0], "made mental note": [65535, 0], "mental note of": [65535, 0], "note of the": [65535, 0], "of the omission": [65535, 0], "tom presented himself before": [65535, 0], "presented himself before aunt": [65535, 0], "himself before aunt polly": [65535, 0], "before aunt polly who": [65535, 0], "aunt polly who was": [65535, 0], "polly who was sitting": [65535, 0], "who was sitting by": [65535, 0], "was sitting by an": [65535, 0], "sitting by an open": [65535, 0], "by an open window": [65535, 0], "an open window in": [65535, 0], "open window in a": [65535, 0], "window in a pleasant": [65535, 0], "in a pleasant rearward": [65535, 0], "a pleasant rearward apartment": [65535, 0], "pleasant rearward apartment which": [65535, 0], "rearward apartment which was": [65535, 0], "apartment which was bedroom": [65535, 0], "which was bedroom breakfast": [65535, 0], "was bedroom breakfast room": [65535, 0], "bedroom breakfast room dining": [65535, 0], "breakfast room dining room": [65535, 0], "room dining room and": [65535, 0], "dining room and library": [65535, 0], "room and library combined": [65535, 0], "and library combined the": [65535, 0], "library combined the balmy": [65535, 0], "combined the balmy summer": [65535, 0], "the balmy summer air": [65535, 0], "balmy summer air the": [65535, 0], "summer air the restful": [65535, 0], "air the restful quiet": [65535, 0], "the restful quiet the": [65535, 0], "restful quiet the odor": [65535, 0], "quiet the odor of": [65535, 0], "the odor of the": [65535, 0], "odor of the flowers": [65535, 0], "of the flowers and": [65535, 0], "the flowers and the": [65535, 0], "flowers and the drowsing": [65535, 0], "and the drowsing murmur": [65535, 0], "the drowsing murmur of": [65535, 0], "drowsing murmur of the": [65535, 0], "murmur of the bees": [65535, 0], "of the bees had": [65535, 0], "the bees had had": [65535, 0], "bees had had their": [65535, 0], "had had their effect": [65535, 0], "had their effect and": [65535, 0], "their effect and she": [65535, 0], "effect and she was": [65535, 0], "and she was nodding": [65535, 0], "she was nodding over": [65535, 0], "was nodding over her": [65535, 0], "nodding over her knitting": [65535, 0], "over her knitting for": [65535, 0], "her knitting for she": [65535, 0], "knitting for she had": [65535, 0], "for she had no": [65535, 0], "she had no company": [65535, 0], "had no company but": [65535, 0], "no company but the": [65535, 0], "company but the cat": [65535, 0], "but the cat and": [65535, 0], "the cat and it": [65535, 0], "cat and it was": [65535, 0], "and it was asleep": [65535, 0], "it was asleep in": [65535, 0], "was asleep in her": [65535, 0], "asleep in her lap": [65535, 0], "in her lap her": [65535, 0], "her lap her spectacles": [65535, 0], "lap her spectacles were": [65535, 0], "her spectacles were propped": [65535, 0], "spectacles were propped up": [65535, 0], "were propped up on": [65535, 0], "propped up on her": [65535, 0], "up on her gray": [65535, 0], "on her gray head": [65535, 0], "her gray head for": [65535, 0], "gray head for safety": [65535, 0], "head for safety she": [65535, 0], "for safety she had": [65535, 0], "safety she had thought": [65535, 0], "she had thought that": [65535, 0], "had thought that of": [65535, 0], "thought that of course": [65535, 0], "that of course tom": [65535, 0], "of course tom had": [65535, 0], "course tom had deserted": [65535, 0], "tom had deserted long": [65535, 0], "had deserted long ago": [65535, 0], "deserted long ago and": [65535, 0], "long ago and she": [65535, 0], "ago and she wondered": [65535, 0], "and she wondered at": [65535, 0], "she wondered at seeing": [65535, 0], "wondered at seeing him": [65535, 0], "at seeing him place": [65535, 0], "seeing him place himself": [65535, 0], "him place himself in": [65535, 0], "place himself in her": [65535, 0], "himself in her power": [65535, 0], "in her power again": [65535, 0], "her power again in": [65535, 0], "power again in this": [65535, 0], "again in this intrepid": [65535, 0], "in this intrepid way": [65535, 0], "this intrepid way he": [65535, 0], "intrepid way he said": [65535, 0], "way he said mayn't": [65535, 0], "he said mayn't i": [65535, 0], "said mayn't i go": [65535, 0], "mayn't i go and": [65535, 0], "i go and play": [65535, 0], "go and play now": [65535, 0], "and play now aunt": [65535, 0], "play now aunt what": [65535, 0], "now aunt what a'ready": [65535, 0], "aunt what a'ready how": [65535, 0], "what a'ready how much": [65535, 0], "a'ready how much have": [65535, 0], "how much have you": [65535, 0], "much have you done": [65535, 0], "have you done it's": [65535, 0], "you done it's all": [65535, 0], "done it's all done": [65535, 0], "it's all done aunt": [65535, 0], "all done aunt tom": [65535, 0], "done aunt tom don't": [65535, 0], "aunt tom don't lie": [65535, 0], "tom don't lie to": [65535, 0], "don't lie to me": [65535, 0], "lie to me i": [65535, 0], "to me i can't": [65535, 0], "me i can't bear": [65535, 0], "i can't bear it": [65535, 0], "can't bear it i": [65535, 0], "bear it i ain't": [65535, 0], "it i ain't aunt": [65535, 0], "i ain't aunt it": [65535, 0], "ain't aunt it is": [65535, 0], "aunt it is all": [65535, 0], "it is all done": [65535, 0], "is all done aunt": [65535, 0], "all done aunt polly": [65535, 0], "done aunt polly placed": [65535, 0], "aunt polly placed small": [65535, 0], "polly placed small trust": [65535, 0], "placed small trust in": [65535, 0], "small trust in such": [65535, 0], "trust in such evidence": [65535, 0], "in such evidence she": [65535, 0], "such evidence she went": [65535, 0], "evidence she went out": [65535, 0], "she went out to": [65535, 0], "went out to see": [65535, 0], "out to see for": [65535, 0], "to see for herself": [65535, 0], "see for herself and": [65535, 0], "for herself and she": [65535, 0], "herself and she would": [65535, 0], "and she would have": [65535, 0], "she would have been": [65535, 0], "would have been content": [65535, 0], "have been content to": [65535, 0], "been content to find": [65535, 0], "content to find twenty": [65535, 0], "to find twenty per": [65535, 0], "find twenty per cent": [65535, 0], "twenty per cent of": [65535, 0], "per cent of tom's": [65535, 0], "cent of tom's statement": [65535, 0], "of tom's statement true": [65535, 0], "tom's statement true when": [65535, 0], "statement true when she": [65535, 0], "true when she found": [65535, 0], "when she found the": [65535, 0], "she found the entire": [65535, 0], "found the entire fence": [65535, 0], "the entire fence whitewashed": [65535, 0], "entire fence whitewashed and": [65535, 0], "fence whitewashed and not": [65535, 0], "whitewashed and not only": [65535, 0], "and not only whitewashed": [65535, 0], "not only whitewashed but": [65535, 0], "only whitewashed but elaborately": [65535, 0], "whitewashed but elaborately coated": [65535, 0], "but elaborately coated and": [65535, 0], "elaborately coated and recoated": [65535, 0], "coated and recoated and": [65535, 0], "and recoated and even": [65535, 0], "recoated and even a": [65535, 0], "and even a streak": [65535, 0], "even a streak added": [65535, 0], "a streak added to": [65535, 0], "streak added to the": [65535, 0], "added to the ground": [65535, 0], "to the ground her": [65535, 0], "the ground her astonishment": [65535, 0], "ground her astonishment was": [65535, 0], "her astonishment was almost": [65535, 0], "astonishment was almost unspeakable": [65535, 0], "was almost unspeakable she": [65535, 0], "almost unspeakable she said": [65535, 0], "unspeakable she said well": [65535, 0], "she said well i": [65535, 0], "said well i never": [65535, 0], "well i never there's": [65535, 0], "i never there's no": [65535, 0], "never there's no getting": [65535, 0], "there's no getting round": [65535, 0], "no getting round it": [65535, 0], "getting round it you": [65535, 0], "round it you can": [65535, 0], "it you can work": [65535, 0], "you can work when": [65535, 0], "can work when you're": [65535, 0], "work when you're a": [65535, 0], "when you're a mind": [65535, 0], "you're a mind to": [65535, 0], "a mind to tom": [65535, 0], "mind to tom and": [65535, 0], "to tom and then": [65535, 0], "tom and then she": [65535, 0], "and then she diluted": [65535, 0], "then she diluted the": [65535, 0], "she diluted the compliment": [65535, 0], "diluted the compliment by": [65535, 0], "the compliment by adding": [65535, 0], "compliment by adding but": [65535, 0], "by adding but it's": [65535, 0], "adding but it's powerful": [65535, 0], "but it's powerful seldom": [65535, 0], "it's powerful seldom you're": [65535, 0], "powerful seldom you're a": [65535, 0], "seldom you're a mind": [65535, 0], "a mind to i'm": [65535, 0], "mind to i'm bound": [65535, 0], "to i'm bound to": [65535, 0], "i'm bound to say": [65535, 0], "bound to say well": [65535, 0], "to say well go": [65535, 0], "say well go 'long": [65535, 0], "well go 'long and": [65535, 0], "go 'long and play": [65535, 0], "'long and play but": [65535, 0], "and play but mind": [65535, 0], "play but mind you": [65535, 0], "but mind you get": [65535, 0], "mind you get back": [65535, 0], "you get back some": [65535, 0], "get back some time": [65535, 0], "back some time in": [65535, 0], "some time in a": [65535, 0], "time in a week": [65535, 0], "in a week or": [65535, 0], "a week or i'll": [65535, 0], "week or i'll tan": [65535, 0], "or i'll tan you": [65535, 0], "i'll tan you she": [65535, 0], "tan you she was": [65535, 0], "you she was so": [65535, 0], "she was so overcome": [65535, 0], "was so overcome by": [65535, 0], "so overcome by the": [65535, 0], "overcome by the splendor": [65535, 0], "by the splendor of": [65535, 0], "the splendor of his": [65535, 0], "splendor of his achievement": [65535, 0], "of his achievement that": [65535, 0], "his achievement that she": [65535, 0], "achievement that she took": [65535, 0], "that she took him": [65535, 0], "she took him into": [65535, 0], "took him into the": [65535, 0], "him into the closet": [65535, 0], "into the closet and": [65535, 0], "the closet and selected": [65535, 0], "closet and selected a": [65535, 0], "and selected a choice": [65535, 0], "selected a choice apple": [65535, 0], "a choice apple and": [65535, 0], "choice apple and delivered": [65535, 0], "apple and delivered it": [65535, 0], "and delivered it to": [65535, 0], "delivered it to him": [65535, 0], "it to him along": [65535, 0], "to him along with": [65535, 0], "him along with an": [65535, 0], "along with an improving": [65535, 0], "with an improving lecture": [65535, 0], "an improving lecture upon": [65535, 0], "improving lecture upon the": [65535, 0], "lecture upon the added": [65535, 0], "upon the added value": [65535, 0], "the added value and": [65535, 0], "added value and flavor": [65535, 0], "value and flavor a": [65535, 0], "and flavor a treat": [65535, 0], "flavor a treat took": [65535, 0], "a treat took to": [65535, 0], "treat took to itself": [65535, 0], "took to itself when": [65535, 0], "to itself when it": [65535, 0], "itself when it came": [65535, 0], "when it came without": [65535, 0], "it came without sin": [65535, 0], "came without sin through": [65535, 0], "without sin through virtuous": [65535, 0], "sin through virtuous effort": [65535, 0], "through virtuous effort and": [65535, 0], "virtuous effort and while": [65535, 0], "effort and while she": [65535, 0], "and while she closed": [65535, 0], "while she closed with": [65535, 0], "she closed with a": [65535, 0], "closed with a happy": [65535, 0], "with a happy scriptural": [65535, 0], "a happy scriptural flourish": [65535, 0], "happy scriptural flourish he": [65535, 0], "scriptural flourish he hooked": [65535, 0], "flourish he hooked a": [65535, 0], "he hooked a doughnut": [65535, 0], "hooked a doughnut then": [65535, 0], "a doughnut then he": [65535, 0], "doughnut then he skipped": [65535, 0], "then he skipped out": [65535, 0], "he skipped out and": [65535, 0], "skipped out and saw": [65535, 0], "out and saw sid": [65535, 0], "and saw sid just": [65535, 0], "saw sid just starting": [65535, 0], "sid just starting up": [65535, 0], "just starting up the": [65535, 0], "starting up the outside": [65535, 0], "up the outside stairway": [65535, 0], "the outside stairway that": [65535, 0], "outside stairway that led": [65535, 0], "stairway that led to": [65535, 0], "that led to the": [65535, 0], "led to the back": [65535, 0], "to the back rooms": [65535, 0], "the back rooms on": [65535, 0], "back rooms on the": [65535, 0], "rooms on the second": [65535, 0], "on the second floor": [65535, 0], "the second floor clods": [65535, 0], "second floor clods were": [65535, 0], "floor clods were handy": [65535, 0], "clods were handy and": [65535, 0], "were handy and the": [65535, 0], "handy and the air": [65535, 0], "and the air was": [65535, 0], "the air was full": [65535, 0], "air was full of": [65535, 0], "was full of them": [65535, 0], "full of them in": [65535, 0], "of them in a": [65535, 0], "them in a twinkling": [65535, 0], "in a twinkling they": [65535, 0], "a twinkling they raged": [65535, 0], "twinkling they raged around": [65535, 0], "they raged around sid": [65535, 0], "raged around sid like": [65535, 0], "around sid like a": [65535, 0], "sid like a hail": [65535, 0], "like a hail storm": [65535, 0], "a hail storm and": [65535, 0], "hail storm and before": [65535, 0], "storm and before aunt": [65535, 0], "and before aunt polly": [65535, 0], "before aunt polly could": [65535, 0], "aunt polly could collect": [65535, 0], "polly could collect her": [65535, 0], "could collect her surprised": [65535, 0], "collect her surprised faculties": [65535, 0], "her surprised faculties and": [65535, 0], "surprised faculties and sally": [65535, 0], "faculties and sally to": [65535, 0], "and sally to the": [65535, 0], "sally to the rescue": [65535, 0], "to the rescue six": [65535, 0], "the rescue six or": [65535, 0], "rescue six or seven": [65535, 0], "six or seven clods": [65535, 0], "or seven clods had": [65535, 0], "seven clods had taken": [65535, 0], "clods had taken personal": [65535, 0], "had taken personal effect": [65535, 0], "taken personal effect and": [65535, 0], "personal effect and tom": [65535, 0], "effect and tom was": [65535, 0], "and tom was over": [65535, 0], "tom was over the": [65535, 0], "was over the fence": [65535, 0], "over the fence and": [65535, 0], "the fence and gone": [65535, 0], "fence and gone there": [65535, 0], "and gone there was": [65535, 0], "gone there was a": [65535, 0], "there was a gate": [65535, 0], "was a gate but": [65535, 0], "a gate but as": [65535, 0], "gate but as a": [65535, 0], "but as a general": [65535, 0], "as a general thing": [65535, 0], "a general thing he": [65535, 0], "general thing he was": [65535, 0], "thing he was too": [65535, 0], "he was too crowded": [65535, 0], "was too crowded for": [65535, 0], "too crowded for time": [65535, 0], "crowded for time to": [65535, 0], "for time to make": [65535, 0], "time to make use": [65535, 0], "to make use of": [65535, 0], "make use of it": [65535, 0], "use of it his": [65535, 0], "of it his soul": [65535, 0], "it his soul was": [65535, 0], "his soul was at": [65535, 0], "soul was at peace": [65535, 0], "was at peace now": [65535, 0], "at peace now that": [65535, 0], "peace now that he": [65535, 0], "now that he had": [65535, 0], "that he had settled": [65535, 0], "he had settled with": [65535, 0], "had settled with sid": [65535, 0], "settled with sid for": [65535, 0], "with sid for calling": [65535, 0], "sid for calling attention": [65535, 0], "for calling attention to": [65535, 0], "calling attention to his": [65535, 0], "attention to his black": [65535, 0], "to his black thread": [65535, 0], "his black thread and": [65535, 0], "black thread and getting": [65535, 0], "thread and getting him": [65535, 0], "and getting him into": [65535, 0], "getting him into trouble": [65535, 0], "him into trouble tom": [65535, 0], "into trouble tom skirted": [65535, 0], "trouble tom skirted the": [65535, 0], "tom skirted the block": [65535, 0], "skirted the block and": [65535, 0], "the block and came": [65535, 0], "block and came round": [65535, 0], "and came round into": [65535, 0], "came round into a": [65535, 0], "round into a muddy": [65535, 0], "into a muddy alley": [65535, 0], "a muddy alley that": [65535, 0], "muddy alley that led": [65535, 0], "alley that led by": [65535, 0], "that led by the": [65535, 0], "led by the back": [65535, 0], "by the back of": [65535, 0], "the back of his": [65535, 0], "back of his aunt's": [65535, 0], "of his aunt's cowstable": [65535, 0], "his aunt's cowstable he": [65535, 0], "aunt's cowstable he presently": [65535, 0], "cowstable he presently got": [65535, 0], "he presently got safely": [65535, 0], "presently got safely beyond": [65535, 0], "got safely beyond the": [65535, 0], "safely beyond the reach": [65535, 0], "beyond the reach of": [65535, 0], "the reach of capture": [65535, 0], "reach of capture and": [65535, 0], "of capture and punishment": [65535, 0], "capture and punishment and": [65535, 0], "and punishment and hastened": [65535, 0], "punishment and hastened toward": [65535, 0], "and hastened toward the": [65535, 0], "hastened toward the public": [65535, 0], "toward the public square": [65535, 0], "the public square of": [65535, 0], "public square of the": [65535, 0], "square of the village": [65535, 0], "of the village where": [65535, 0], "the village where two": [65535, 0], "village where two military": [65535, 0], "where two military companies": [65535, 0], "two military companies of": [65535, 0], "military companies of boys": [65535, 0], "companies of boys had": [65535, 0], "of boys had met": [65535, 0], "boys had met for": [65535, 0], "had met for conflict": [65535, 0], "met for conflict according": [65535, 0], "for conflict according to": [65535, 0], "conflict according to previous": [65535, 0], "according to previous appointment": [65535, 0], "to previous appointment tom": [65535, 0], "previous appointment tom was": [65535, 0], "appointment tom was general": [65535, 0], "tom was general of": [65535, 0], "was general of one": [65535, 0], "general of one of": [65535, 0], "one of these armies": [65535, 0], "of these armies joe": [65535, 0], "these armies joe harper": [65535, 0], "armies joe harper a": [65535, 0], "joe harper a bosom": [65535, 0], "harper a bosom friend": [65535, 0], "a bosom friend general": [65535, 0], "bosom friend general of": [65535, 0], "friend general of the": [65535, 0], "general of the other": [65535, 0], "of the other these": [65535, 0], "the other these two": [65535, 0], "other these two great": [65535, 0], "these two great commanders": [65535, 0], "two great commanders did": [65535, 0], "great commanders did not": [65535, 0], "commanders did not condescend": [65535, 0], "did not condescend to": [65535, 0], "not condescend to fight": [65535, 0], "condescend to fight in": [65535, 0], "to fight in person": [65535, 0], "fight in person that": [65535, 0], "in person that being": [65535, 0], "person that being better": [65535, 0], "that being better suited": [65535, 0], "being better suited to": [65535, 0], "better suited to the": [65535, 0], "suited to the still": [65535, 0], "to the still smaller": [65535, 0], "the still smaller fry": [65535, 0], "still smaller fry but": [65535, 0], "smaller fry but sat": [65535, 0], "fry but sat together": [65535, 0], "but sat together on": [65535, 0], "sat together on an": [65535, 0], "together on an eminence": [65535, 0], "on an eminence and": [65535, 0], "an eminence and conducted": [65535, 0], "eminence and conducted the": [65535, 0], "and conducted the field": [65535, 0], "conducted the field operations": [65535, 0], "the field operations by": [65535, 0], "field operations by orders": [65535, 0], "operations by orders delivered": [65535, 0], "by orders delivered through": [65535, 0], "orders delivered through aides": [65535, 0], "delivered through aides de": [65535, 0], "through aides de camp": [65535, 0], "aides de camp tom's": [65535, 0], "de camp tom's army": [65535, 0], "camp tom's army won": [65535, 0], "tom's army won a": [65535, 0], "army won a great": [65535, 0], "won a great victory": [65535, 0], "a great victory after": [65535, 0], "great victory after a": [65535, 0], "victory after a long": [65535, 0], "after a long and": [65535, 0], "a long and hard": [65535, 0], "long and hard fought": [65535, 0], "and hard fought battle": [65535, 0], "hard fought battle then": [65535, 0], "fought battle then the": [65535, 0], "battle then the dead": [65535, 0], "then the dead were": [65535, 0], "the dead were counted": [65535, 0], "dead were counted prisoners": [65535, 0], "were counted prisoners exchanged": [65535, 0], "counted prisoners exchanged the": [65535, 0], "prisoners exchanged the terms": [65535, 0], "exchanged the terms of": [65535, 0], "the terms of the": [65535, 0], "terms of the next": [65535, 0], "of the next disagreement": [65535, 0], "the next disagreement agreed": [65535, 0], "next disagreement agreed upon": [65535, 0], "disagreement agreed upon and": [65535, 0], "agreed upon and the": [65535, 0], "upon and the day": [65535, 0], "and the day for": [65535, 0], "the day for the": [65535, 0], "day for the necessary": [65535, 0], "for the necessary battle": [65535, 0], "the necessary battle appointed": [65535, 0], "necessary battle appointed after": [65535, 0], "battle appointed after which": [65535, 0], "appointed after which the": [65535, 0], "after which the armies": [65535, 0], "which the armies fell": [65535, 0], "the armies fell into": [65535, 0], "armies fell into line": [65535, 0], "fell into line and": [65535, 0], "into line and marched": [65535, 0], "line and marched away": [65535, 0], "and marched away and": [65535, 0], "marched away and tom": [65535, 0], "away and tom turned": [65535, 0], "and tom turned homeward": [65535, 0], "tom turned homeward alone": [65535, 0], "turned homeward alone as": [65535, 0], "homeward alone as he": [65535, 0], "alone as he was": [65535, 0], "as he was passing": [65535, 0], "he was passing by": [65535, 0], "was passing by the": [65535, 0], "passing by the house": [65535, 0], "by the house where": [65535, 0], "the house where jeff": [65535, 0], "house where jeff thatcher": [65535, 0], "where jeff thatcher lived": [65535, 0], "jeff thatcher lived he": [65535, 0], "thatcher lived he saw": [65535, 0], "lived he saw a": [65535, 0], "he saw a new": [65535, 0], "saw a new girl": [65535, 0], "a new girl in": [65535, 0], "new girl in the": [65535, 0], "girl in the garden": [65535, 0], "in the garden a": [65535, 0], "the garden a lovely": [65535, 0], "garden a lovely little": [65535, 0], "a lovely little blue": [65535, 0], "lovely little blue eyed": [65535, 0], "little blue eyed creature": [65535, 0], "blue eyed creature with": [65535, 0], "eyed creature with yellow": [65535, 0], "creature with yellow hair": [65535, 0], "with yellow hair plaited": [65535, 0], "yellow hair plaited into": [65535, 0], "hair plaited into two": [65535, 0], "plaited into two long": [65535, 0], "into two long tails": [65535, 0], "two long tails white": [65535, 0], "long tails white summer": [65535, 0], "tails white summer frock": [65535, 0], "white summer frock and": [65535, 0], "summer frock and embroidered": [65535, 0], "frock and embroidered pantalettes": [65535, 0], "and embroidered pantalettes the": [65535, 0], "embroidered pantalettes the fresh": [65535, 0], "pantalettes the fresh crowned": [65535, 0], "the fresh crowned hero": [65535, 0], "fresh crowned hero fell": [65535, 0], "crowned hero fell without": [65535, 0], "hero fell without firing": [65535, 0], "fell without firing a": [65535, 0], "without firing a shot": [65535, 0], "firing a shot a": [65535, 0], "a shot a certain": [65535, 0], "shot a certain amy": [65535, 0], "a certain amy lawrence": [65535, 0], "certain amy lawrence vanished": [65535, 0], "amy lawrence vanished out": [65535, 0], "lawrence vanished out of": [65535, 0], "vanished out of his": [65535, 0], "out of his heart": [65535, 0], "of his heart and": [65535, 0], "his heart and left": [65535, 0], "heart and left not": [65535, 0], "and left not even": [65535, 0], "left not even a": [65535, 0], "not even a memory": [65535, 0], "even a memory of": [65535, 0], "a memory of herself": [65535, 0], "memory of herself behind": [65535, 0], "of herself behind he": [65535, 0], "herself behind he had": [65535, 0], "behind he had thought": [65535, 0], "he had thought he": [65535, 0], "had thought he loved": [65535, 0], "thought he loved her": [65535, 0], "he loved her to": [65535, 0], "loved her to distraction": [65535, 0], "her to distraction he": [65535, 0], "to distraction he had": [65535, 0], "distraction he had regarded": [65535, 0], "he had regarded his": [65535, 0], "had regarded his passion": [65535, 0], "regarded his passion as": [65535, 0], "his passion as adoration": [65535, 0], "passion as adoration and": [65535, 0], "as adoration and behold": [65535, 0], "adoration and behold it": [65535, 0], "and behold it was": [65535, 0], "behold it was only": [65535, 0], "it was only a": [65535, 0], "was only a poor": [65535, 0], "only a poor little": [65535, 0], "a poor little evanescent": [65535, 0], "poor little evanescent partiality": [65535, 0], "little evanescent partiality he": [65535, 0], "evanescent partiality he had": [65535, 0], "partiality he had been": [65535, 0], "he had been months": [65535, 0], "had been months winning": [65535, 0], "been months winning her": [65535, 0], "months winning her she": [65535, 0], "winning her she had": [65535, 0], "her she had confessed": [65535, 0], "she had confessed hardly": [65535, 0], "had confessed hardly a": [65535, 0], "confessed hardly a week": [65535, 0], "hardly a week ago": [65535, 0], "a week ago he": [65535, 0], "week ago he had": [65535, 0], "ago he had been": [65535, 0], "he had been the": [65535, 0], "had been the happiest": [65535, 0], "been the happiest and": [65535, 0], "the happiest and the": [65535, 0], "happiest and the proudest": [65535, 0], "and the proudest boy": [65535, 0], "the proudest boy in": [65535, 0], "proudest boy in the": [65535, 0], "boy in the world": [65535, 0], "in the world only": [65535, 0], "the world only seven": [65535, 0], "world only seven short": [65535, 0], "only seven short days": [65535, 0], "seven short days and": [65535, 0], "short days and here": [65535, 0], "days and here in": [65535, 0], "and here in one": [65535, 0], "here in one instant": [65535, 0], "in one instant of": [65535, 0], "one instant of time": [65535, 0], "instant of time she": [65535, 0], "of time she had": [65535, 0], "time she had gone": [65535, 0], "she had gone out": [65535, 0], "had gone out of": [65535, 0], "gone out of his": [65535, 0], "of his heart like": [65535, 0], "his heart like a": [65535, 0], "heart like a casual": [65535, 0], "like a casual stranger": [65535, 0], "a casual stranger whose": [65535, 0], "casual stranger whose visit": [65535, 0], "stranger whose visit is": [65535, 0], "whose visit is done": [65535, 0], "visit is done he": [65535, 0], "is done he worshipped": [65535, 0], "done he worshipped this": [65535, 0], "he worshipped this new": [65535, 0], "worshipped this new angel": [65535, 0], "this new angel with": [65535, 0], "new angel with furtive": [65535, 0], "angel with furtive eye": [65535, 0], "with furtive eye till": [65535, 0], "furtive eye till he": [65535, 0], "eye till he saw": [65535, 0], "till he saw that": [65535, 0], "he saw that she": [65535, 0], "saw that she had": [65535, 0], "she had discovered him": [65535, 0], "had discovered him then": [65535, 0], "discovered him then he": [65535, 0], "him then he pretended": [65535, 0], "then he pretended he": [65535, 0], "he pretended he did": [65535, 0], "pretended he did not": [65535, 0], "did not know she": [65535, 0], "not know she was": [65535, 0], "know she was present": [65535, 0], "she was present and": [65535, 0], "was present and began": [65535, 0], "present and began to": [65535, 0], "and began to show": [65535, 0], "began to show off": [65535, 0], "to show off in": [65535, 0], "show off in all": [65535, 0], "off in all sorts": [65535, 0], "in all sorts of": [65535, 0], "all sorts of absurd": [65535, 0], "sorts of absurd boyish": [65535, 0], "of absurd boyish ways": [65535, 0], "absurd boyish ways in": [65535, 0], "boyish ways in order": [65535, 0], "ways in order to": [65535, 0], "in order to win": [65535, 0], "order to win her": [65535, 0], "to win her admiration": [65535, 0], "win her admiration he": [65535, 0], "her admiration he kept": [65535, 0], "admiration he kept up": [65535, 0], "he kept up this": [65535, 0], "kept up this grotesque": [65535, 0], "up this grotesque foolishness": [65535, 0], "this grotesque foolishness for": [65535, 0], "grotesque foolishness for some": [65535, 0], "foolishness for some time": [65535, 0], "for some time but": [65535, 0], "some time but by": [65535, 0], "time but by and": [65535, 0], "but by and by": [32706, 32829], "by and by while": [65535, 0], "and by while he": [65535, 0], "by while he was": [65535, 0], "while he was in": [65535, 0], "he was in the": [65535, 0], "was in the midst": [65535, 0], "the midst of some": [65535, 0], "midst of some dangerous": [65535, 0], "of some dangerous gymnastic": [65535, 0], "some dangerous gymnastic performances": [65535, 0], "dangerous gymnastic performances he": [65535, 0], "gymnastic performances he glanced": [65535, 0], "performances he glanced aside": [65535, 0], "he glanced aside and": [65535, 0], "glanced aside and saw": [65535, 0], "aside and saw that": [65535, 0], "and saw that the": [65535, 0], "saw that the little": [65535, 0], "that the little girl": [65535, 0], "the little girl was": [65535, 0], "little girl was wending": [65535, 0], "girl was wending her": [65535, 0], "was wending her way": [65535, 0], "wending her way toward": [65535, 0], "her way toward the": [65535, 0], "way toward the house": [65535, 0], "toward the house tom": [65535, 0], "the house tom came": [65535, 0], "house tom came up": [65535, 0], "tom came up to": [65535, 0], "came up to the": [65535, 0], "up to the fence": [65535, 0], "to the fence and": [65535, 0], "the fence and leaned": [65535, 0], "fence and leaned on": [65535, 0], "and leaned on it": [65535, 0], "leaned on it grieving": [65535, 0], "on it grieving and": [65535, 0], "it grieving and hoping": [65535, 0], "grieving and hoping she": [65535, 0], "and hoping she would": [65535, 0], "hoping she would tarry": [65535, 0], "she would tarry yet": [65535, 0], "would tarry yet awhile": [65535, 0], "tarry yet awhile longer": [65535, 0], "yet awhile longer she": [65535, 0], "awhile longer she halted": [65535, 0], "longer she halted a": [65535, 0], "she halted a moment": [65535, 0], "halted a moment on": [65535, 0], "a moment on the": [65535, 0], "moment on the steps": [65535, 0], "on the steps and": [65535, 0], "the steps and then": [65535, 0], "steps and then moved": [65535, 0], "and then moved toward": [65535, 0], "then moved toward the": [65535, 0], "moved toward the door": [65535, 0], "toward the door tom": [65535, 0], "the door tom heaved": [65535, 0], "door tom heaved a": [65535, 0], "tom heaved a great": [65535, 0], "heaved a great sigh": [65535, 0], "a great sigh as": [65535, 0], "great sigh as she": [65535, 0], "sigh as she put": [65535, 0], "as she put her": [65535, 0], "she put her foot": [65535, 0], "put her foot on": [65535, 0], "her foot on the": [65535, 0], "foot on the threshold": [65535, 0], "on the threshold but": [65535, 0], "the threshold but his": [65535, 0], "threshold but his face": [65535, 0], "but his face lit": [65535, 0], "his face lit up": [65535, 0], "face lit up right": [65535, 0], "lit up right away": [65535, 0], "up right away for": [65535, 0], "right away for she": [65535, 0], "away for she tossed": [65535, 0], "for she tossed a": [65535, 0], "she tossed a pansy": [65535, 0], "tossed a pansy over": [65535, 0], "a pansy over the": [65535, 0], "pansy over the fence": [65535, 0], "over the fence a": [65535, 0], "the fence a moment": [65535, 0], "fence a moment before": [65535, 0], "a moment before she": [65535, 0], "moment before she disappeared": [65535, 0], "before she disappeared the": [65535, 0], "she disappeared the boy": [65535, 0], "disappeared the boy ran": [65535, 0], "the boy ran around": [65535, 0], "boy ran around and": [65535, 0], "ran around and stopped": [65535, 0], "around and stopped within": [65535, 0], "and stopped within a": [65535, 0], "stopped within a foot": [65535, 0], "within a foot or": [65535, 0], "a foot or two": [65535, 0], "foot or two of": [65535, 0], "or two of the": [65535, 0], "two of the flower": [65535, 0], "of the flower and": [65535, 0], "the flower and then": [65535, 0], "flower and then shaded": [65535, 0], "and then shaded his": [65535, 0], "then shaded his eyes": [65535, 0], "shaded his eyes with": [65535, 0], "his eyes with his": [65535, 0], "eyes with his hand": [65535, 0], "with his hand and": [65535, 0], "his hand and began": [65535, 0], "hand and began to": [65535, 0], "and began to look": [65535, 0], "began to look down": [65535, 0], "to look down street": [65535, 0], "look down street as": [65535, 0], "down street as if": [65535, 0], "street as if he": [65535, 0], "as if he had": [65535, 0], "if he had discovered": [65535, 0], "he had discovered something": [65535, 0], "had discovered something of": [65535, 0], "discovered something of interest": [65535, 0], "something of interest going": [65535, 0], "of interest going on": [65535, 0], "interest going on in": [65535, 0], "going on in that": [65535, 0], "on in that direction": [65535, 0], "in that direction presently": [65535, 0], "that direction presently he": [65535, 0], "direction presently he picked": [65535, 0], "presently he picked up": [65535, 0], "he picked up a": [65535, 0], "picked up a straw": [65535, 0], "up a straw and": [65535, 0], "a straw and began": [65535, 0], "straw and began trying": [65535, 0], "and began trying to": [65535, 0], "began trying to balance": [65535, 0], "trying to balance it": [65535, 0], "to balance it on": [65535, 0], "balance it on his": [65535, 0], "it on his nose": [65535, 0], "on his nose with": [65535, 0], "his nose with his": [65535, 0], "nose with his head": [65535, 0], "with his head tilted": [65535, 0], "his head tilted far": [65535, 0], "head tilted far back": [65535, 0], "tilted far back and": [65535, 0], "far back and as": [65535, 0], "back and as he": [65535, 0], "and as he moved": [65535, 0], "as he moved from": [65535, 0], "he moved from side": [65535, 0], "moved from side to": [65535, 0], "from side to side": [65535, 0], "side to side in": [65535, 0], "to side in his": [65535, 0], "side in his efforts": [65535, 0], "in his efforts he": [65535, 0], "his efforts he edged": [65535, 0], "efforts he edged nearer": [65535, 0], "he edged nearer and": [65535, 0], "edged nearer and nearer": [65535, 0], "nearer and nearer toward": [65535, 0], "and nearer toward the": [65535, 0], "nearer toward the pansy": [65535, 0], "toward the pansy finally": [65535, 0], "the pansy finally his": [65535, 0], "pansy finally his bare": [65535, 0], "finally his bare foot": [65535, 0], "his bare foot rested": [65535, 0], "bare foot rested upon": [65535, 0], "foot rested upon it": [65535, 0], "rested upon it his": [65535, 0], "upon it his pliant": [65535, 0], "it his pliant toes": [65535, 0], "his pliant toes closed": [65535, 0], "pliant toes closed upon": [65535, 0], "toes closed upon it": [65535, 0], "closed upon it and": [65535, 0], "upon it and he": [65535, 0], "it and he hopped": [65535, 0], "and he hopped away": [65535, 0], "he hopped away with": [65535, 0], "hopped away with the": [65535, 0], "away with the treasure": [65535, 0], "with the treasure and": [65535, 0], "the treasure and disappeared": [65535, 0], "treasure and disappeared round": [65535, 0], "and disappeared round the": [65535, 0], "disappeared round the corner": [65535, 0], "round the corner but": [65535, 0], "the corner but only": [65535, 0], "corner but only for": [65535, 0], "but only for a": [65535, 0], "only for a minute": [65535, 0], "for a minute only": [65535, 0], "a minute only while": [65535, 0], "minute only while he": [65535, 0], "only while he could": [65535, 0], "while he could button": [65535, 0], "he could button the": [65535, 0], "could button the flower": [65535, 0], "button the flower inside": [65535, 0], "the flower inside his": [65535, 0], "flower inside his jacket": [65535, 0], "inside his jacket next": [65535, 0], "his jacket next his": [65535, 0], "jacket next his heart": [65535, 0], "next his heart or": [65535, 0], "his heart or next": [65535, 0], "heart or next his": [65535, 0], "or next his stomach": [65535, 0], "next his stomach possibly": [65535, 0], "his stomach possibly for": [65535, 0], "stomach possibly for he": [65535, 0], "possibly for he was": [65535, 0], "he was not much": [65535, 0], "was not much posted": [65535, 0], "not much posted in": [65535, 0], "much posted in anatomy": [65535, 0], "posted in anatomy and": [65535, 0], "in anatomy and not": [65535, 0], "anatomy and not hypercritical": [65535, 0], "and not hypercritical anyway": [65535, 0], "not hypercritical anyway he": [65535, 0], "hypercritical anyway he returned": [65535, 0], "anyway he returned now": [65535, 0], "he returned now and": [65535, 0], "returned now and hung": [65535, 0], "now and hung about": [65535, 0], "and hung about the": [65535, 0], "hung about the fence": [65535, 0], "about the fence till": [65535, 0], "the fence till nightfall": [65535, 0], "fence till nightfall showing": [65535, 0], "till nightfall showing off": [65535, 0], "nightfall showing off as": [65535, 0], "showing off as before": [65535, 0], "off as before but": [65535, 0], "as before but the": [65535, 0], "before but the girl": [65535, 0], "but the girl never": [65535, 0], "the girl never exhibited": [65535, 0], "girl never exhibited herself": [65535, 0], "never exhibited herself again": [65535, 0], "exhibited herself again though": [65535, 0], "herself again though tom": [65535, 0], "again though tom comforted": [65535, 0], "though tom comforted himself": [65535, 0], "tom comforted himself a": [65535, 0], "comforted himself a little": [65535, 0], "himself a little with": [65535, 0], "a little with the": [65535, 0], "little with the hope": [65535, 0], "with the hope that": [65535, 0], "the hope that she": [65535, 0], "hope that she had": [65535, 0], "that she had been": [65535, 0], "she had been near": [65535, 0], "had been near some": [65535, 0], "been near some window": [65535, 0], "near some window meantime": [65535, 0], "some window meantime and": [65535, 0], "window meantime and been": [65535, 0], "meantime and been aware": [65535, 0], "and been aware of": [65535, 0], "been aware of his": [65535, 0], "aware of his attentions": [65535, 0], "of his attentions finally": [65535, 0], "his attentions finally he": [65535, 0], "attentions finally he strode": [65535, 0], "finally he strode home": [65535, 0], "he strode home reluctantly": [65535, 0], "strode home reluctantly with": [65535, 0], "home reluctantly with his": [65535, 0], "reluctantly with his poor": [65535, 0], "with his poor head": [65535, 0], "his poor head full": [65535, 0], "poor head full of": [65535, 0], "head full of visions": [65535, 0], "full of visions all": [65535, 0], "of visions all through": [65535, 0], "visions all through supper": [65535, 0], "all through supper his": [65535, 0], "through supper his spirits": [65535, 0], "supper his spirits were": [65535, 0], "his spirits were so": [65535, 0], "spirits were so high": [65535, 0], "were so high that": [65535, 0], "so high that his": [65535, 0], "high that his aunt": [65535, 0], "that his aunt wondered": [65535, 0], "his aunt wondered what": [65535, 0], "aunt wondered what had": [65535, 0], "wondered what had got": [65535, 0], "what had got into": [65535, 0], "had got into the": [65535, 0], "got into the child": [65535, 0], "into the child he": [65535, 0], "the child he took": [65535, 0], "child he took a": [65535, 0], "he took a good": [65535, 0], "took a good scolding": [65535, 0], "a good scolding about": [65535, 0], "good scolding about clodding": [65535, 0], "scolding about clodding sid": [65535, 0], "about clodding sid and": [65535, 0], "clodding sid and did": [65535, 0], "sid and did not": [65535, 0], "and did not seem": [65535, 0], "did not seem to": [65535, 0], "not seem to mind": [65535, 0], "seem to mind it": [65535, 0], "to mind it in": [65535, 0], "mind it in the": [65535, 0], "it in the least": [65535, 0], "in the least he": [65535, 0], "the least he tried": [65535, 0], "least he tried to": [65535, 0], "he tried to steal": [65535, 0], "tried to steal sugar": [65535, 0], "to steal sugar under": [65535, 0], "steal sugar under his": [65535, 0], "sugar under his aunt's": [65535, 0], "under his aunt's very": [65535, 0], "his aunt's very nose": [65535, 0], "aunt's very nose and": [65535, 0], "very nose and got": [65535, 0], "nose and got his": [65535, 0], "and got his knuckles": [65535, 0], "got his knuckles rapped": [65535, 0], "his knuckles rapped for": [65535, 0], "knuckles rapped for it": [65535, 0], "rapped for it he": [65535, 0], "for it he said": [65535, 0], "it he said aunt": [65535, 0], "he said aunt you": [65535, 0], "said aunt you don't": [65535, 0], "aunt you don't whack": [65535, 0], "you don't whack sid": [65535, 0], "don't whack sid when": [65535, 0], "whack sid when he": [65535, 0], "sid when he takes": [65535, 0], "when he takes it": [65535, 0], "he takes it well": [65535, 0], "takes it well sid": [65535, 0], "it well sid don't": [65535, 0], "well sid don't torment": [65535, 0], "sid don't torment a": [65535, 0], "don't torment a body": [65535, 0], "torment a body the": [65535, 0], "a body the way": [65535, 0], "body the way you": [65535, 0], "the way you do": [65535, 0], "way you do you'd": [65535, 0], "you do you'd be": [65535, 0], "do you'd be always": [65535, 0], "you'd be always into": [65535, 0], "be always into that": [65535, 0], "always into that sugar": [65535, 0], "into that sugar if": [65535, 0], "that sugar if i": [65535, 0], "sugar if i warn't": [65535, 0], "if i warn't watching": [65535, 0], "i warn't watching you": [65535, 0], "warn't watching you presently": [65535, 0], "watching you presently she": [65535, 0], "you presently she stepped": [65535, 0], "presently she stepped into": [65535, 0], "she stepped into the": [65535, 0], "stepped into the kitchen": [65535, 0], "into the kitchen and": [65535, 0], "the kitchen and sid": [65535, 0], "kitchen and sid happy": [65535, 0], "and sid happy in": [65535, 0], "sid happy in his": [65535, 0], "happy in his immunity": [65535, 0], "in his immunity reached": [65535, 0], "his immunity reached for": [65535, 0], "immunity reached for the": [65535, 0], "reached for the sugar": [65535, 0], "for the sugar bowl": [65535, 0], "the sugar bowl a": [65535, 0], "sugar bowl a sort": [65535, 0], "bowl a sort of": [65535, 0], "a sort of glorying": [65535, 0], "sort of glorying over": [65535, 0], "of glorying over tom": [65535, 0], "glorying over tom which": [65535, 0], "over tom which was": [65535, 0], "tom which was well": [65535, 0], "which was well nigh": [65535, 0], "was well nigh unbearable": [65535, 0], "well nigh unbearable but": [65535, 0], "nigh unbearable but sid's": [65535, 0], "unbearable but sid's fingers": [65535, 0], "but sid's fingers slipped": [65535, 0], "sid's fingers slipped and": [65535, 0], "fingers slipped and the": [65535, 0], "slipped and the bowl": [65535, 0], "and the bowl dropped": [65535, 0], "the bowl dropped and": [65535, 0], "bowl dropped and broke": [65535, 0], "dropped and broke tom": [65535, 0], "and broke tom was": [65535, 0], "broke tom was in": [65535, 0], "tom was in ecstasies": [65535, 0], "was in ecstasies in": [65535, 0], "in ecstasies in such": [65535, 0], "ecstasies in such ecstasies": [65535, 0], "in such ecstasies that": [65535, 0], "such ecstasies that he": [65535, 0], "ecstasies that he even": [65535, 0], "that he even controlled": [65535, 0], "he even controlled his": [65535, 0], "even controlled his tongue": [65535, 0], "controlled his tongue and": [65535, 0], "his tongue and was": [65535, 0], "tongue and was silent": [65535, 0], "and was silent he": [65535, 0], "was silent he said": [65535, 0], "silent he said to": [65535, 0], "himself that he would": [65535, 0], "that he would not": [65535, 0], "he would not speak": [65535, 0], "would not speak a": [65535, 0], "not speak a word": [65535, 0], "speak a word even": [65535, 0], "a word even when": [65535, 0], "word even when his": [65535, 0], "even when his aunt": [65535, 0], "when his aunt came": [65535, 0], "his aunt came in": [65535, 0], "aunt came in but": [65535, 0], "came in but would": [65535, 0], "in but would sit": [65535, 0], "but would sit perfectly": [65535, 0], "would sit perfectly still": [65535, 0], "sit perfectly still till": [65535, 0], "perfectly still till she": [65535, 0], "still till she asked": [65535, 0], "till she asked who": [65535, 0], "she asked who did": [65535, 0], "asked who did the": [65535, 0], "who did the mischief": [65535, 0], "did the mischief and": [65535, 0], "the mischief and then": [65535, 0], "mischief and then he": [65535, 0], "and then he would": [65535, 0], "then he would tell": [65535, 0], "he would tell and": [65535, 0], "would tell and there": [65535, 0], "tell and there would": [65535, 0], "and there would be": [65535, 0], "there would be nothing": [65535, 0], "would be nothing so": [65535, 0], "be nothing so good": [65535, 0], "nothing so good in": [65535, 0], "so good in the": [65535, 0], "good in the world": [65535, 0], "in the world as": [65535, 0], "the world as to": [65535, 0], "world as to see": [65535, 0], "as to see that": [65535, 0], "to see that pet": [65535, 0], "see that pet model": [65535, 0], "that pet model catch": [65535, 0], "pet model catch it": [65535, 0], "model catch it he": [65535, 0], "catch it he was": [65535, 0], "it he was so": [65535, 0], "he was so brimful": [65535, 0], "was so brimful of": [65535, 0], "so brimful of exultation": [65535, 0], "brimful of exultation that": [65535, 0], "of exultation that he": [65535, 0], "exultation that he could": [65535, 0], "that he could hardly": [65535, 0], "he could hardly hold": [65535, 0], "could hardly hold himself": [65535, 0], "hardly hold himself when": [65535, 0], "hold himself when the": [65535, 0], "himself when the old": [65535, 0], "when the old lady": [65535, 0], "the old lady came": [65535, 0], "old lady came back": [65535, 0], "lady came back and": [65535, 0], "came back and stood": [65535, 0], "back and stood above": [65535, 0], "and stood above the": [65535, 0], "stood above the wreck": [65535, 0], "above the wreck discharging": [65535, 0], "the wreck discharging lightnings": [65535, 0], "wreck discharging lightnings of": [65535, 0], "discharging lightnings of wrath": [65535, 0], "lightnings of wrath from": [65535, 0], "of wrath from over": [65535, 0], "wrath from over her": [65535, 0], "from over her spectacles": [65535, 0], "over her spectacles he": [65535, 0], "her spectacles he said": [65535, 0], "spectacles he said to": [65535, 0], "said to himself now": [65535, 0], "to himself now it's": [65535, 0], "himself now it's coming": [65535, 0], "now it's coming and": [65535, 0], "it's coming and the": [65535, 0], "coming and the next": [65535, 0], "and the next instant": [65535, 0], "the next instant he": [65535, 0], "next instant he was": [65535, 0], "instant he was sprawling": [65535, 0], "he was sprawling on": [65535, 0], "was sprawling on the": [65535, 0], "sprawling on the floor": [65535, 0], "on the floor the": [65535, 0], "the floor the potent": [65535, 0], "floor the potent palm": [65535, 0], "the potent palm was": [65535, 0], "potent palm was uplifted": [65535, 0], "palm was uplifted to": [65535, 0], "was uplifted to strike": [65535, 0], "uplifted to strike again": [65535, 0], "to strike again when": [65535, 0], "strike again when tom": [65535, 0], "again when tom cried": [65535, 0], "when tom cried out": [65535, 0], "tom cried out hold": [65535, 0], "cried out hold on": [65535, 0], "out hold on now": [65535, 0], "hold on now what": [65535, 0], "on now what 'er": [65535, 0], "now what 'er you": [65535, 0], "what 'er you belting": [65535, 0], "'er you belting me": [65535, 0], "you belting me for": [65535, 0], "belting me for sid": [65535, 0], "me for sid broke": [65535, 0], "for sid broke it": [65535, 0], "sid broke it aunt": [65535, 0], "broke it aunt polly": [65535, 0], "it aunt polly paused": [65535, 0], "aunt polly paused perplexed": [65535, 0], "polly paused perplexed and": [65535, 0], "paused perplexed and tom": [65535, 0], "perplexed and tom looked": [65535, 0], "and tom looked for": [65535, 0], "tom looked for healing": [65535, 0], "looked for healing pity": [65535, 0], "for healing pity but": [65535, 0], "healing pity but when": [65535, 0], "pity but when she": [65535, 0], "but when she got": [65535, 0], "when she got her": [65535, 0], "she got her tongue": [65535, 0], "got her tongue again": [65535, 0], "her tongue again she": [65535, 0], "tongue again she only": [65535, 0], "again she only said": [65535, 0], "she only said umf": [65535, 0], "only said umf well": [65535, 0], "said umf well you": [65535, 0], "umf well you didn't": [65535, 0], "well you didn't get": [65535, 0], "you didn't get a": [65535, 0], "didn't get a lick": [65535, 0], "get a lick amiss": [65535, 0], "a lick amiss i": [65535, 0], "lick amiss i reckon": [65535, 0], "amiss i reckon you": [65535, 0], "i reckon you been": [65535, 0], "reckon you been into": [65535, 0], "you been into some": [65535, 0], "been into some other": [65535, 0], "into some other audacious": [65535, 0], "some other audacious mischief": [65535, 0], "other audacious mischief when": [65535, 0], "audacious mischief when i": [65535, 0], "mischief when i wasn't": [65535, 0], "when i wasn't around": [65535, 0], "i wasn't around like": [65535, 0], "wasn't around like enough": [65535, 0], "around like enough then": [65535, 0], "like enough then her": [65535, 0], "enough then her conscience": [65535, 0], "then her conscience reproached": [65535, 0], "her conscience reproached her": [65535, 0], "conscience reproached her and": [65535, 0], "reproached her and she": [65535, 0], "her and she yearned": [65535, 0], "and she yearned to": [65535, 0], "she yearned to say": [65535, 0], "yearned to say something": [65535, 0], "to say something kind": [65535, 0], "say something kind and": [65535, 0], "something kind and loving": [65535, 0], "kind and loving but": [65535, 0], "and loving but she": [65535, 0], "loving but she judged": [65535, 0], "but she judged that": [65535, 0], "she judged that this": [65535, 0], "judged that this would": [65535, 0], "that this would be": [65535, 0], "this would be construed": [65535, 0], "would be construed into": [65535, 0], "be construed into a": [65535, 0], "construed into a confession": [65535, 0], "into a confession that": [65535, 0], "a confession that she": [65535, 0], "confession that she had": [65535, 0], "she had been in": [65535, 0], "had been in the": [65535, 0], "been in the wrong": [65535, 0], "in the wrong and": [65535, 0], "the wrong and discipline": [65535, 0], "wrong and discipline forbade": [65535, 0], "and discipline forbade that": [65535, 0], "discipline forbade that so": [65535, 0], "forbade that so she": [65535, 0], "that so she kept": [65535, 0], "so she kept silence": [65535, 0], "she kept silence and": [65535, 0], "kept silence and went": [65535, 0], "silence and went about": [65535, 0], "and went about her": [65535, 0], "went about her affairs": [65535, 0], "about her affairs with": [65535, 0], "her affairs with a": [65535, 0], "affairs with a troubled": [65535, 0], "with a troubled heart": [65535, 0], "a troubled heart tom": [65535, 0], "troubled heart tom sulked": [65535, 0], "heart tom sulked in": [65535, 0], "tom sulked in a": [65535, 0], "sulked in a corner": [65535, 0], "in a corner and": [65535, 0], "a corner and exalted": [65535, 0], "corner and exalted his": [65535, 0], "and exalted his woes": [65535, 0], "exalted his woes he": [65535, 0], "his woes he knew": [65535, 0], "woes he knew that": [65535, 0], "he knew that in": [65535, 0], "knew that in her": [65535, 0], "that in her heart": [65535, 0], "in her heart his": [65535, 0], "her heart his aunt": [65535, 0], "heart his aunt was": [65535, 0], "his aunt was on": [65535, 0], "aunt was on her": [65535, 0], "was on her knees": [65535, 0], "on her knees to": [65535, 0], "her knees to him": [65535, 0], "knees to him and": [65535, 0], "to him and he": [65535, 0], "him and he was": [65535, 0], "and he was morosely": [65535, 0], "he was morosely gratified": [65535, 0], "was morosely gratified by": [65535, 0], "morosely gratified by the": [65535, 0], "gratified by the consciousness": [65535, 0], "by the consciousness of": [65535, 0], "the consciousness of it": [65535, 0], "consciousness of it he": [65535, 0], "of it he would": [65535, 0], "it he would hang": [65535, 0], "he would hang out": [65535, 0], "would hang out no": [65535, 0], "hang out no signals": [65535, 0], "out no signals he": [65535, 0], "no signals he would": [65535, 0], "signals he would take": [65535, 0], "he would take notice": [65535, 0], "would take notice of": [65535, 0], "take notice of none": [65535, 0], "notice of none he": [65535, 0], "of none he knew": [65535, 0], "none he knew that": [65535, 0], "he knew that a": [65535, 0], "knew that a yearning": [65535, 0], "that a yearning glance": [65535, 0], "a yearning glance fell": [65535, 0], "yearning glance fell upon": [65535, 0], "glance fell upon him": [65535, 0], "fell upon him now": [65535, 0], "upon him now and": [65535, 0], "him now and then": [65535, 0], "now and then through": [65535, 0], "and then through a": [65535, 0], "then through a film": [65535, 0], "through a film of": [65535, 0], "a film of tears": [65535, 0], "film of tears but": [65535, 0], "of tears but he": [65535, 0], "tears but he refused": [65535, 0], "but he refused recognition": [65535, 0], "he refused recognition of": [65535, 0], "refused recognition of it": [65535, 0], "recognition of it he": [65535, 0], "of it he pictured": [65535, 0], "it he pictured himself": [65535, 0], "he pictured himself lying": [65535, 0], "pictured himself lying sick": [65535, 0], "himself lying sick unto": [65535, 0], "lying sick unto death": [65535, 0], "sick unto death and": [65535, 0], "unto death and his": [65535, 0], "death and his aunt": [65535, 0], "and his aunt bending": [65535, 0], "his aunt bending over": [65535, 0], "aunt bending over him": [65535, 0], "bending over him beseeching": [65535, 0], "over him beseeching one": [65535, 0], "him beseeching one little": [65535, 0], "beseeching one little forgiving": [65535, 0], "one little forgiving word": [65535, 0], "little forgiving word but": [65535, 0], "forgiving word but he": [65535, 0], "word but he would": [65535, 0], "but he would turn": [65535, 0], "he would turn his": [65535, 0], "would turn his face": [65535, 0], "turn his face to": [65535, 0], "face to the wall": [65535, 0], "to the wall and": [65535, 0], "the wall and die": [65535, 0], "wall and die with": [65535, 0], "and die with that": [65535, 0], "die with that word": [65535, 0], "with that word unsaid": [65535, 0], "that word unsaid ah": [65535, 0], "word unsaid ah how": [65535, 0], "unsaid ah how would": [65535, 0], "ah how would she": [65535, 0], "how would she feel": [65535, 0], "would she feel then": [65535, 0], "she feel then and": [65535, 0], "feel then and he": [65535, 0], "then and he pictured": [65535, 0], "and he pictured himself": [65535, 0], "he pictured himself brought": [65535, 0], "pictured himself brought home": [65535, 0], "himself brought home from": [65535, 0], "brought home from the": [65535, 0], "home from the river": [65535, 0], "from the river dead": [65535, 0], "the river dead with": [65535, 0], "river dead with his": [65535, 0], "dead with his curls": [65535, 0], "with his curls all": [65535, 0], "his curls all wet": [65535, 0], "curls all wet and": [65535, 0], "all wet and his": [65535, 0], "wet and his sore": [65535, 0], "and his sore heart": [65535, 0], "his sore heart at": [65535, 0], "sore heart at rest": [65535, 0], "heart at rest how": [65535, 0], "at rest how she": [65535, 0], "rest how she would": [65535, 0], "how she would throw": [65535, 0], "she would throw herself": [65535, 0], "would throw herself upon": [65535, 0], "throw herself upon him": [65535, 0], "herself upon him and": [65535, 0], "upon him and how": [65535, 0], "him and how her": [65535, 0], "and how her tears": [65535, 0], "how her tears would": [65535, 0], "her tears would fall": [65535, 0], "tears would fall like": [65535, 0], "would fall like rain": [65535, 0], "fall like rain and": [65535, 0], "like rain and her": [65535, 0], "rain and her lips": [65535, 0], "and her lips pray": [65535, 0], "her lips pray god": [65535, 0], "lips pray god to": [65535, 0], "pray god to give": [65535, 0], "god to give her": [65535, 0], "to give her back": [65535, 0], "give her back her": [65535, 0], "her back her boy": [65535, 0], "back her boy and": [65535, 0], "her boy and she": [65535, 0], "boy and she would": [65535, 0], "and she would never": [65535, 0], "she would never never": [65535, 0], "would never never abuse": [65535, 0], "never never abuse him": [65535, 0], "never abuse him any": [65535, 0], "abuse him any more": [65535, 0], "him any more but": [65535, 0], "any more but he": [65535, 0], "more but he would": [65535, 0], "but he would lie": [65535, 0], "he would lie there": [65535, 0], "would lie there cold": [65535, 0], "lie there cold and": [65535, 0], "there cold and white": [65535, 0], "cold and white and": [65535, 0], "and white and make": [65535, 0], "white and make no": [65535, 0], "and make no sign": [65535, 0], "make no sign a": [65535, 0], "no sign a poor": [65535, 0], "sign a poor little": [65535, 0], "a poor little sufferer": [65535, 0], "poor little sufferer whose": [65535, 0], "little sufferer whose griefs": [65535, 0], "sufferer whose griefs were": [65535, 0], "whose griefs were at": [65535, 0], "griefs were at an": [65535, 0], "were at an end": [65535, 0], "at an end he": [65535, 0], "an end he so": [65535, 0], "end he so worked": [65535, 0], "he so worked upon": [65535, 0], "so worked upon his": [65535, 0], "worked upon his feelings": [65535, 0], "upon his feelings with": [65535, 0], "his feelings with the": [65535, 0], "feelings with the pathos": [65535, 0], "with the pathos of": [65535, 0], "the pathos of these": [65535, 0], "pathos of these dreams": [65535, 0], "of these dreams that": [65535, 0], "these dreams that he": [65535, 0], "dreams that he had": [65535, 0], "that he had to": [65535, 0], "he had to keep": [65535, 0], "had to keep swallowing": [65535, 0], "to keep swallowing he": [65535, 0], "keep swallowing he was": [65535, 0], "swallowing he was so": [65535, 0], "he was so like": [65535, 0], "was so like to": [65535, 0], "so like to choke": [65535, 0], "like to choke and": [65535, 0], "to choke and his": [65535, 0], "choke and his eyes": [65535, 0], "and his eyes swam": [65535, 0], "his eyes swam in": [65535, 0], "eyes swam in a": [65535, 0], "swam in a blur": [65535, 0], "in a blur of": [65535, 0], "a blur of water": [65535, 0], "blur of water which": [65535, 0], "of water which overflowed": [65535, 0], "water which overflowed when": [65535, 0], "which overflowed when he": [65535, 0], "overflowed when he winked": [65535, 0], "when he winked and": [65535, 0], "he winked and ran": [65535, 0], "winked and ran down": [65535, 0], "and ran down and": [65535, 0], "ran down and trickled": [65535, 0], "down and trickled from": [65535, 0], "and trickled from the": [65535, 0], "trickled from the end": [65535, 0], "from the end of": [65535, 0], "the end of his": [65535, 0], "end of his nose": [65535, 0], "of his nose and": [65535, 0], "his nose and such": [65535, 0], "nose and such a": [65535, 0], "and such a luxury": [65535, 0], "such a luxury to": [65535, 0], "a luxury to him": [65535, 0], "luxury to him was": [65535, 0], "to him was this": [65535, 0], "him was this petting": [65535, 0], "was this petting of": [65535, 0], "this petting of his": [65535, 0], "petting of his sorrows": [65535, 0], "of his sorrows that": [65535, 0], "his sorrows that he": [65535, 0], "sorrows that he could": [65535, 0], "that he could not": [65535, 0], "he could not bear": [65535, 0], "could not bear to": [65535, 0], "not bear to have": [65535, 0], "bear to have any": [65535, 0], "to have any worldly": [65535, 0], "have any worldly cheeriness": [65535, 0], "any worldly cheeriness or": [65535, 0], "worldly cheeriness or any": [65535, 0], "cheeriness or any grating": [65535, 0], "or any grating delight": [65535, 0], "any grating delight intrude": [65535, 0], "grating delight intrude upon": [65535, 0], "delight intrude upon it": [65535, 0], "intrude upon it it": [65535, 0], "upon it it was": [65535, 0], "it it was too": [65535, 0], "it was too sacred": [65535, 0], "was too sacred for": [65535, 0], "too sacred for such": [65535, 0], "sacred for such contact": [65535, 0], "for such contact and": [65535, 0], "such contact and so": [65535, 0], "contact and so presently": [65535, 0], "and so presently when": [65535, 0], "so presently when his": [65535, 0], "presently when his cousin": [65535, 0], "when his cousin mary": [65535, 0], "his cousin mary danced": [65535, 0], "cousin mary danced in": [65535, 0], "mary danced in all": [65535, 0], "danced in all alive": [65535, 0], "in all alive with": [65535, 0], "all alive with the": [65535, 0], "alive with the joy": [65535, 0], "with the joy of": [65535, 0], "the joy of seeing": [65535, 0], "joy of seeing home": [65535, 0], "of seeing home again": [65535, 0], "seeing home again after": [65535, 0], "home again after an": [65535, 0], "again after an age": [65535, 0], "after an age long": [65535, 0], "an age long visit": [65535, 0], "age long visit of": [65535, 0], "long visit of one": [65535, 0], "visit of one week": [65535, 0], "of one week to": [65535, 0], "one week to the": [65535, 0], "week to the country": [65535, 0], "to the country he": [65535, 0], "the country he got": [65535, 0], "country he got up": [65535, 0], "he got up and": [65535, 0], "got up and moved": [65535, 0], "up and moved in": [65535, 0], "and moved in clouds": [65535, 0], "moved in clouds and": [65535, 0], "in clouds and darkness": [65535, 0], "clouds and darkness out": [65535, 0], "and darkness out at": [65535, 0], "darkness out at one": [65535, 0], "out at one door": [65535, 0], "at one door as": [65535, 0], "one door as she": [65535, 0], "door as she brought": [65535, 0], "as she brought song": [65535, 0], "she brought song and": [65535, 0], "brought song and sunshine": [65535, 0], "song and sunshine in": [65535, 0], "and sunshine in at": [65535, 0], "sunshine in at the": [65535, 0], "in at the other": [65535, 0], "at the other he": [65535, 0], "the other he wandered": [65535, 0], "other he wandered far": [65535, 0], "he wandered far from": [65535, 0], "wandered far from the": [65535, 0], "far from the accustomed": [65535, 0], "from the accustomed haunts": [65535, 0], "the accustomed haunts of": [65535, 0], "accustomed haunts of boys": [65535, 0], "haunts of boys and": [65535, 0], "of boys and sought": [65535, 0], "boys and sought desolate": [65535, 0], "and sought desolate places": [65535, 0], "sought desolate places that": [65535, 0], "desolate places that were": [65535, 0], "places that were in": [65535, 0], "that were in harmony": [65535, 0], "were in harmony with": [65535, 0], "in harmony with his": [65535, 0], "harmony with his spirit": [65535, 0], "with his spirit a": [65535, 0], "his spirit a log": [65535, 0], "spirit a log raft": [65535, 0], "a log raft in": [65535, 0], "log raft in the": [65535, 0], "raft in the river": [65535, 0], "in the river invited": [65535, 0], "the river invited him": [65535, 0], "river invited him and": [65535, 0], "invited him and he": [65535, 0], "him and he seated": [65535, 0], "and he seated himself": [65535, 0], "he seated himself on": [65535, 0], "seated himself on its": [65535, 0], "himself on its outer": [65535, 0], "on its outer edge": [65535, 0], "its outer edge and": [65535, 0], "outer edge and contemplated": [65535, 0], "edge and contemplated the": [65535, 0], "and contemplated the dreary": [65535, 0], "contemplated the dreary vastness": [65535, 0], "the dreary vastness of": [65535, 0], "dreary vastness of the": [65535, 0], "vastness of the stream": [65535, 0], "of the stream wishing": [65535, 0], "the stream wishing the": [65535, 0], "stream wishing the while": [65535, 0], "wishing the while that": [65535, 0], "the while that he": [65535, 0], "while that he could": [65535, 0], "that he could only": [65535, 0], "he could only be": [65535, 0], "could only be drowned": [65535, 0], "only be drowned all": [65535, 0], "be drowned all at": [65535, 0], "drowned all at once": [65535, 0], "all at once and": [65535, 0], "at once and unconsciously": [65535, 0], "once and unconsciously without": [65535, 0], "and unconsciously without undergoing": [65535, 0], "unconsciously without undergoing the": [65535, 0], "without undergoing the uncomfortable": [65535, 0], "undergoing the uncomfortable routine": [65535, 0], "the uncomfortable routine devised": [65535, 0], "uncomfortable routine devised by": [65535, 0], "routine devised by nature": [65535, 0], "devised by nature then": [65535, 0], "by nature then he": [65535, 0], "nature then he thought": [65535, 0], "then he thought of": [65535, 0], "he thought of his": [65535, 0], "thought of his flower": [65535, 0], "of his flower he": [65535, 0], "his flower he got": [65535, 0], "flower he got it": [65535, 0], "he got it out": [65535, 0], "got it out rumpled": [65535, 0], "it out rumpled and": [65535, 0], "out rumpled and wilted": [65535, 0], "rumpled and wilted and": [65535, 0], "and wilted and it": [65535, 0], "wilted and it mightily": [65535, 0], "and it mightily increased": [65535, 0], "it mightily increased his": [65535, 0], "mightily increased his dismal": [65535, 0], "increased his dismal felicity": [65535, 0], "his dismal felicity he": [65535, 0], "dismal felicity he wondered": [65535, 0], "felicity he wondered if": [65535, 0], "he wondered if she": [65535, 0], "wondered if she would": [65535, 0], "if she would pity": [65535, 0], "she would pity him": [65535, 0], "would pity him if": [65535, 0], "pity him if she": [65535, 0], "him if she knew": [65535, 0], "if she knew would": [65535, 0], "she knew would she": [65535, 0], "knew would she cry": [65535, 0], "would she cry and": [65535, 0], "she cry and wish": [65535, 0], "cry and wish that": [65535, 0], "and wish that she": [65535, 0], "wish that she had": [65535, 0], "that she had a": [65535, 0], "she had a right": [65535, 0], "had a right to": [65535, 0], "a right to put": [65535, 0], "right to put her": [65535, 0], "to put her arms": [65535, 0], "put her arms around": [65535, 0], "her arms around his": [65535, 0], "arms around his neck": [65535, 0], "around his neck and": [65535, 0], "his neck and comfort": [65535, 0], "neck and comfort him": [65535, 0], "and comfort him or": [65535, 0], "comfort him or would": [65535, 0], "him or would she": [65535, 0], "or would she turn": [65535, 0], "would she turn coldly": [65535, 0], "she turn coldly away": [65535, 0], "turn coldly away like": [65535, 0], "coldly away like all": [65535, 0], "away like all the": [65535, 0], "like all the hollow": [65535, 0], "all the hollow world": [65535, 0], "the hollow world this": [65535, 0], "hollow world this picture": [65535, 0], "world this picture brought": [65535, 0], "this picture brought such": [65535, 0], "picture brought such an": [65535, 0], "brought such an agony": [65535, 0], "such an agony of": [65535, 0], "an agony of pleasurable": [65535, 0], "agony of pleasurable suffering": [65535, 0], "of pleasurable suffering that": [65535, 0], "pleasurable suffering that he": [65535, 0], "suffering that he worked": [65535, 0], "that he worked it": [65535, 0], "he worked it over": [65535, 0], "worked it over and": [65535, 0], "it over and over": [65535, 0], "over and over again": [65535, 0], "and over again in": [65535, 0], "over again in his": [65535, 0], "again in his mind": [65535, 0], "in his mind and": [65535, 0], "his mind and set": [65535, 0], "mind and set it": [65535, 0], "and set it up": [65535, 0], "set it up in": [65535, 0], "it up in new": [65535, 0], "up in new and": [65535, 0], "in new and varied": [65535, 0], "new and varied lights": [65535, 0], "and varied lights till": [65535, 0], "varied lights till he": [65535, 0], "lights till he wore": [65535, 0], "till he wore it": [65535, 0], "he wore it threadbare": [65535, 0], "wore it threadbare at": [65535, 0], "it threadbare at last": [65535, 0], "threadbare at last he": [65535, 0], "at last he rose": [65535, 0], "last he rose up": [65535, 0], "he rose up sighing": [65535, 0], "rose up sighing and": [65535, 0], "up sighing and departed": [65535, 0], "sighing and departed in": [65535, 0], "and departed in the": [65535, 0], "departed in the darkness": [65535, 0], "in the darkness about": [65535, 0], "the darkness about half": [65535, 0], "darkness about half past": [65535, 0], "about half past nine": [65535, 0], "half past nine or": [65535, 0], "past nine or ten": [65535, 0], "nine or ten o'clock": [65535, 0], "or ten o'clock he": [65535, 0], "ten o'clock he came": [65535, 0], "o'clock he came along": [65535, 0], "he came along the": [65535, 0], "came along the deserted": [65535, 0], "along the deserted street": [65535, 0], "the deserted street to": [65535, 0], "deserted street to where": [65535, 0], "street to where the": [65535, 0], "to where the adored": [65535, 0], "where the adored unknown": [65535, 0], "the adored unknown lived": [65535, 0], "adored unknown lived he": [65535, 0], "unknown lived he paused": [65535, 0], "lived he paused a": [65535, 0], "he paused a moment": [65535, 0], "paused a moment no": [65535, 0], "a moment no sound": [65535, 0], "moment no sound fell": [65535, 0], "no sound fell upon": [65535, 0], "sound fell upon his": [65535, 0], "fell upon his listening": [65535, 0], "upon his listening ear": [65535, 0], "his listening ear a": [65535, 0], "listening ear a candle": [65535, 0], "ear a candle was": [65535, 0], "a candle was casting": [65535, 0], "candle was casting a": [65535, 0], "was casting a dull": [65535, 0], "casting a dull glow": [65535, 0], "a dull glow upon": [65535, 0], "dull glow upon the": [65535, 0], "glow upon the curtain": [65535, 0], "upon the curtain of": [65535, 0], "the curtain of a": [65535, 0], "curtain of a second": [65535, 0], "of a second story": [65535, 0], "a second story window": [65535, 0], "second story window was": [65535, 0], "story window was the": [65535, 0], "window was the sacred": [65535, 0], "was the sacred presence": [65535, 0], "the sacred presence there": [65535, 0], "sacred presence there he": [65535, 0], "presence there he climbed": [65535, 0], "there he climbed the": [65535, 0], "he climbed the fence": [65535, 0], "climbed the fence threaded": [65535, 0], "the fence threaded his": [65535, 0], "fence threaded his stealthy": [65535, 0], "threaded his stealthy way": [65535, 0], "his stealthy way through": [65535, 0], "stealthy way through the": [65535, 0], "way through the plants": [65535, 0], "through the plants till": [65535, 0], "the plants till he": [65535, 0], "plants till he stood": [65535, 0], "till he stood under": [65535, 0], "he stood under that": [65535, 0], "stood under that window": [65535, 0], "under that window he": [65535, 0], "that window he looked": [65535, 0], "window he looked up": [65535, 0], "he looked up at": [65535, 0], "looked up at it": [65535, 0], "up at it long": [65535, 0], "at it long and": [65535, 0], "it long and with": [65535, 0], "long and with emotion": [65535, 0], "and with emotion then": [65535, 0], "with emotion then he": [65535, 0], "emotion then he laid": [65535, 0], "then he laid him": [65535, 0], "he laid him down": [65535, 0], "laid him down on": [65535, 0], "him down on the": [65535, 0], "down on the ground": [65535, 0], "on the ground under": [65535, 0], "the ground under it": [65535, 0], "ground under it disposing": [65535, 0], "under it disposing himself": [65535, 0], "it disposing himself upon": [65535, 0], "disposing himself upon his": [65535, 0], "himself upon his back": [65535, 0], "upon his back with": [65535, 0], "his back with his": [65535, 0], "back with his hands": [65535, 0], "with his hands clasped": [65535, 0], "his hands clasped upon": [65535, 0], "hands clasped upon his": [65535, 0], "clasped upon his breast": [65535, 0], "upon his breast and": [65535, 0], "his breast and holding": [65535, 0], "breast and holding his": [65535, 0], "and holding his poor": [65535, 0], "holding his poor wilted": [65535, 0], "his poor wilted flower": [65535, 0], "poor wilted flower and": [65535, 0], "wilted flower and thus": [65535, 0], "flower and thus he": [65535, 0], "and thus he would": [65535, 0], "thus he would die": [65535, 0], "he would die out": [65535, 0], "would die out in": [65535, 0], "die out in the": [65535, 0], "out in the cold": [65535, 0], "in the cold world": [65535, 0], "the cold world with": [65535, 0], "cold world with no": [65535, 0], "world with no shelter": [65535, 0], "with no shelter over": [65535, 0], "no shelter over his": [65535, 0], "shelter over his homeless": [65535, 0], "over his homeless head": [65535, 0], "his homeless head no": [65535, 0], "homeless head no friendly": [65535, 0], "head no friendly hand": [65535, 0], "no friendly hand to": [65535, 0], "friendly hand to wipe": [65535, 0], "hand to wipe the": [65535, 0], "to wipe the death": [65535, 0], "wipe the death damps": [65535, 0], "the death damps from": [65535, 0], "death damps from his": [65535, 0], "damps from his brow": [65535, 0], "from his brow no": [65535, 0], "his brow no loving": [65535, 0], "brow no loving face": [65535, 0], "no loving face to": [65535, 0], "loving face to bend": [65535, 0], "face to bend pityingly": [65535, 0], "to bend pityingly over": [65535, 0], "bend pityingly over him": [65535, 0], "pityingly over him when": [65535, 0], "over him when the": [65535, 0], "him when the great": [65535, 0], "when the great agony": [65535, 0], "the great agony came": [65535, 0], "great agony came and": [65535, 0], "agony came and thus": [65535, 0], "came and thus she": [65535, 0], "and thus she would": [65535, 0], "thus she would see": [65535, 0], "she would see him": [65535, 0], "would see him when": [65535, 0], "see him when she": [65535, 0], "him when she looked": [65535, 0], "when she looked out": [65535, 0], "she looked out upon": [65535, 0], "looked out upon the": [65535, 0], "out upon the glad": [65535, 0], "upon the glad morning": [65535, 0], "the glad morning and": [65535, 0], "glad morning and oh": [65535, 0], "morning and oh would": [65535, 0], "and oh would she": [65535, 0], "oh would she drop": [65535, 0], "would she drop one": [65535, 0], "she drop one little": [65535, 0], "drop one little tear": [65535, 0], "one little tear upon": [65535, 0], "little tear upon his": [65535, 0], "tear upon his poor": [65535, 0], "upon his poor lifeless": [65535, 0], "his poor lifeless form": [65535, 0], "poor lifeless form would": [65535, 0], "lifeless form would she": [65535, 0], "form would she heave": [65535, 0], "would she heave one": [65535, 0], "she heave one little": [65535, 0], "heave one little sigh": [65535, 0], "one little sigh to": [65535, 0], "little sigh to see": [65535, 0], "sigh to see a": [65535, 0], "to see a bright": [65535, 0], "see a bright young": [65535, 0], "a bright young life": [65535, 0], "bright young life so": [65535, 0], "young life so rudely": [65535, 0], "life so rudely blighted": [65535, 0], "so rudely blighted so": [65535, 0], "rudely blighted so untimely": [65535, 0], "blighted so untimely cut": [65535, 0], "so untimely cut down": [65535, 0], "untimely cut down the": [65535, 0], "cut down the window": [65535, 0], "down the window went": [65535, 0], "the window went up": [65535, 0], "window went up a": [65535, 0], "went up a maid": [65535, 0], "up a maid servant's": [65535, 0], "a maid servant's discordant": [65535, 0], "maid servant's discordant voice": [65535, 0], "servant's discordant voice profaned": [65535, 0], "discordant voice profaned the": [65535, 0], "voice profaned the holy": [65535, 0], "profaned the holy calm": [65535, 0], "the holy calm and": [65535, 0], "holy calm and a": [65535, 0], "calm and a deluge": [65535, 0], "and a deluge of": [65535, 0], "a deluge of water": [65535, 0], "deluge of water drenched": [65535, 0], "of water drenched the": [65535, 0], "water drenched the prone": [65535, 0], "drenched the prone martyr's": [65535, 0], "the prone martyr's remains": [65535, 0], "prone martyr's remains the": [65535, 0], "martyr's remains the strangling": [65535, 0], "remains the strangling hero": [65535, 0], "the strangling hero sprang": [65535, 0], "strangling hero sprang up": [65535, 0], "hero sprang up with": [65535, 0], "sprang up with a": [65535, 0], "up with a relieving": [65535, 0], "with a relieving snort": [65535, 0], "a relieving snort there": [65535, 0], "relieving snort there was": [65535, 0], "snort there was a": [65535, 0], "there was a whiz": [65535, 0], "was a whiz as": [65535, 0], "a whiz as of": [65535, 0], "whiz as of a": [65535, 0], "as of a missile": [65535, 0], "of a missile in": [65535, 0], "a missile in the": [65535, 0], "missile in the air": [65535, 0], "in the air mingled": [65535, 0], "the air mingled with": [65535, 0], "air mingled with the": [65535, 0], "mingled with the murmur": [65535, 0], "with the murmur of": [65535, 0], "the murmur of a": [65535, 0], "murmur of a curse": [65535, 0], "of a curse a": [65535, 0], "a curse a sound": [65535, 0], "curse a sound as": [65535, 0], "a sound as of": [65535, 0], "sound as of shivering": [65535, 0], "as of shivering glass": [65535, 0], "of shivering glass followed": [65535, 0], "shivering glass followed and": [65535, 0], "glass followed and a": [65535, 0], "followed and a small": [65535, 0], "and a small vague": [65535, 0], "a small vague form": [65535, 0], "small vague form went": [65535, 0], "vague form went over": [65535, 0], "form went over the": [65535, 0], "went over the fence": [65535, 0], "the fence and shot": [65535, 0], "fence and shot away": [65535, 0], "and shot away in": [65535, 0], "shot away in the": [65535, 0], "away in the gloom": [65535, 0], "in the gloom not": [65535, 0], "the gloom not long": [65535, 0], "gloom not long after": [65535, 0], "not long after as": [65535, 0], "long after as tom": [65535, 0], "after as tom all": [65535, 0], "as tom all undressed": [65535, 0], "tom all undressed for": [65535, 0], "all undressed for bed": [65535, 0], "undressed for bed was": [65535, 0], "for bed was surveying": [65535, 0], "bed was surveying his": [65535, 0], "was surveying his drenched": [65535, 0], "surveying his drenched garments": [65535, 0], "his drenched garments by": [65535, 0], "drenched garments by the": [65535, 0], "garments by the light": [65535, 0], "by the light of": [65535, 0], "the light of a": [65535, 0], "light of a tallow": [65535, 0], "of a tallow dip": [65535, 0], "a tallow dip sid": [65535, 0], "tallow dip sid woke": [65535, 0], "dip sid woke up": [65535, 0], "sid woke up but": [65535, 0], "woke up but if": [65535, 0], "up but if he": [65535, 0], "but if he had": [65535, 0], "if he had any": [65535, 0], "he had any dim": [65535, 0], "had any dim idea": [65535, 0], "any dim idea of": [65535, 0], "dim idea of making": [65535, 0], "idea of making any": [65535, 0], "of making any references": [65535, 0], "making any references to": [65535, 0], "any references to allusions": [65535, 0], "references to allusions he": [65535, 0], "to allusions he thought": [65535, 0], "allusions he thought better": [65535, 0], "he thought better of": [65535, 0], "thought better of it": [65535, 0], "better of it and": [65535, 0], "of it and held": [65535, 0], "it and held his": [65535, 0], "and held his peace": [65535, 0], "held his peace for": [65535, 0], "his peace for there": [65535, 0], "peace for there was": [65535, 0], "for there was danger": [65535, 0], "there was danger in": [65535, 0], "was danger in tom's": [65535, 0], "danger in tom's eye": [65535, 0], "in tom's eye tom": [65535, 0], "tom's eye tom turned": [65535, 0], "eye tom turned in": [65535, 0], "tom turned in without": [65535, 0], "turned in without the": [65535, 0], "in without the added": [65535, 0], "without the added vexation": [65535, 0], "the added vexation of": [65535, 0], "added vexation of prayers": [65535, 0], "vexation of prayers and": [65535, 0], "of prayers and sid": [65535, 0], "prayers and sid made": [65535, 0], "and sid made mental": [65535, 0], "sid made mental note": [65535, 0], "made mental note of": [65535, 0], "mental note of the": [65535, 0], "note of the omission": [65535, 0], "tom presented himself before aunt": [65535, 0], "presented himself before aunt polly": [65535, 0], "himself before aunt polly who": [65535, 0], "before aunt polly who was": [65535, 0], "aunt polly who was sitting": [65535, 0], "polly who was sitting by": [65535, 0], "who was sitting by an": [65535, 0], "was sitting by an open": [65535, 0], "sitting by an open window": [65535, 0], "by an open window in": [65535, 0], "an open window in a": [65535, 0], "open window in a pleasant": [65535, 0], "window in a pleasant rearward": [65535, 0], "in a pleasant rearward apartment": [65535, 0], "a pleasant rearward apartment which": [65535, 0], "pleasant rearward apartment which was": [65535, 0], "rearward apartment which was bedroom": [65535, 0], "apartment which was bedroom breakfast": [65535, 0], "which was bedroom breakfast room": [65535, 0], "was bedroom breakfast room dining": [65535, 0], "bedroom breakfast room dining room": [65535, 0], "breakfast room dining room and": [65535, 0], "room dining room and library": [65535, 0], "dining room and library combined": [65535, 0], "room and library combined the": [65535, 0], "and library combined the balmy": [65535, 0], "library combined the balmy summer": [65535, 0], "combined the balmy summer air": [65535, 0], "the balmy summer air the": [65535, 0], "balmy summer air the restful": [65535, 0], "summer air the restful quiet": [65535, 0], "air the restful quiet the": [65535, 0], "the restful quiet the odor": [65535, 0], "restful quiet the odor of": [65535, 0], "quiet the odor of the": [65535, 0], "the odor of the flowers": [65535, 0], "odor of the flowers and": [65535, 0], "of the flowers and the": [65535, 0], "the flowers and the drowsing": [65535, 0], "flowers and the drowsing murmur": [65535, 0], "and the drowsing murmur of": [65535, 0], "the drowsing murmur of the": [65535, 0], "drowsing murmur of the bees": [65535, 0], "murmur of the bees had": [65535, 0], "of the bees had had": [65535, 0], "the bees had had their": [65535, 0], "bees had had their effect": [65535, 0], "had had their effect and": [65535, 0], "had their effect and she": [65535, 0], "their effect and she was": [65535, 0], "effect and she was nodding": [65535, 0], "and she was nodding over": [65535, 0], "she was nodding over her": [65535, 0], "was nodding over her knitting": [65535, 0], "nodding over her knitting for": [65535, 0], "over her knitting for she": [65535, 0], "her knitting for she had": [65535, 0], "knitting for she had no": [65535, 0], "for she had no company": [65535, 0], "she had no company but": [65535, 0], "had no company but the": [65535, 0], "no company but the cat": [65535, 0], "company but the cat and": [65535, 0], "but the cat and it": [65535, 0], "the cat and it was": [65535, 0], "cat and it was asleep": [65535, 0], "and it was asleep in": [65535, 0], "it was asleep in her": [65535, 0], "was asleep in her lap": [65535, 0], "asleep in her lap her": [65535, 0], "in her lap her spectacles": [65535, 0], "her lap her spectacles were": [65535, 0], "lap her spectacles were propped": [65535, 0], "her spectacles were propped up": [65535, 0], "spectacles were propped up on": [65535, 0], "were propped up on her": [65535, 0], "propped up on her gray": [65535, 0], "up on her gray head": [65535, 0], "on her gray head for": [65535, 0], "her gray head for safety": [65535, 0], "gray head for safety she": [65535, 0], "head for safety she had": [65535, 0], "for safety she had thought": [65535, 0], "safety she had thought that": [65535, 0], "she had thought that of": [65535, 0], "had thought that of course": [65535, 0], "thought that of course tom": [65535, 0], "that of course tom had": [65535, 0], "of course tom had deserted": [65535, 0], "course tom had deserted long": [65535, 0], "tom had deserted long ago": [65535, 0], "had deserted long ago and": [65535, 0], "deserted long ago and she": [65535, 0], "long ago and she wondered": [65535, 0], "ago and she wondered at": [65535, 0], "and she wondered at seeing": [65535, 0], "she wondered at seeing him": [65535, 0], "wondered at seeing him place": [65535, 0], "at seeing him place himself": [65535, 0], "seeing him place himself in": [65535, 0], "him place himself in her": [65535, 0], "place himself in her power": [65535, 0], "himself in her power again": [65535, 0], "in her power again in": [65535, 0], "her power again in this": [65535, 0], "power again in this intrepid": [65535, 0], "again in this intrepid way": [65535, 0], "in this intrepid way he": [65535, 0], "this intrepid way he said": [65535, 0], "intrepid way he said mayn't": [65535, 0], "way he said mayn't i": [65535, 0], "he said mayn't i go": [65535, 0], "said mayn't i go and": [65535, 0], "mayn't i go and play": [65535, 0], "i go and play now": [65535, 0], "go and play now aunt": [65535, 0], "and play now aunt what": [65535, 0], "play now aunt what a'ready": [65535, 0], "now aunt what a'ready how": [65535, 0], "aunt what a'ready how much": [65535, 0], "what a'ready how much have": [65535, 0], "a'ready how much have you": [65535, 0], "how much have you done": [65535, 0], "much have you done it's": [65535, 0], "have you done it's all": [65535, 0], "you done it's all done": [65535, 0], "done it's all done aunt": [65535, 0], "it's all done aunt tom": [65535, 0], "all done aunt tom don't": [65535, 0], "done aunt tom don't lie": [65535, 0], "aunt tom don't lie to": [65535, 0], "tom don't lie to me": [65535, 0], "don't lie to me i": [65535, 0], "lie to me i can't": [65535, 0], "to me i can't bear": [65535, 0], "me i can't bear it": [65535, 0], "i can't bear it i": [65535, 0], "can't bear it i ain't": [65535, 0], "bear it i ain't aunt": [65535, 0], "it i ain't aunt it": [65535, 0], "i ain't aunt it is": [65535, 0], "ain't aunt it is all": [65535, 0], "aunt it is all done": [65535, 0], "it is all done aunt": [65535, 0], "is all done aunt polly": [65535, 0], "all done aunt polly placed": [65535, 0], "done aunt polly placed small": [65535, 0], "aunt polly placed small trust": [65535, 0], "polly placed small trust in": [65535, 0], "placed small trust in such": [65535, 0], "small trust in such evidence": [65535, 0], "trust in such evidence she": [65535, 0], "in such evidence she went": [65535, 0], "such evidence she went out": [65535, 0], "evidence she went out to": [65535, 0], "she went out to see": [65535, 0], "went out to see for": [65535, 0], "out to see for herself": [65535, 0], "to see for herself and": [65535, 0], "see for herself and she": [65535, 0], "for herself and she would": [65535, 0], "herself and she would have": [65535, 0], "and she would have been": [65535, 0], "she would have been content": [65535, 0], "would have been content to": [65535, 0], "have been content to find": [65535, 0], "been content to find twenty": [65535, 0], "content to find twenty per": [65535, 0], "to find twenty per cent": [65535, 0], "find twenty per cent of": [65535, 0], "twenty per cent of tom's": [65535, 0], "per cent of tom's statement": [65535, 0], "cent of tom's statement true": [65535, 0], "of tom's statement true when": [65535, 0], "tom's statement true when she": [65535, 0], "statement true when she found": [65535, 0], "true when she found the": [65535, 0], "when she found the entire": [65535, 0], "she found the entire fence": [65535, 0], "found the entire fence whitewashed": [65535, 0], "the entire fence whitewashed and": [65535, 0], "entire fence whitewashed and not": [65535, 0], "fence whitewashed and not only": [65535, 0], "whitewashed and not only whitewashed": [65535, 0], "and not only whitewashed but": [65535, 0], "not only whitewashed but elaborately": [65535, 0], "only whitewashed but elaborately coated": [65535, 0], "whitewashed but elaborately coated and": [65535, 0], "but elaborately coated and recoated": [65535, 0], "elaborately coated and recoated and": [65535, 0], "coated and recoated and even": [65535, 0], "and recoated and even a": [65535, 0], "recoated and even a streak": [65535, 0], "and even a streak added": [65535, 0], "even a streak added to": [65535, 0], "a streak added to the": [65535, 0], "streak added to the ground": [65535, 0], "added to the ground her": [65535, 0], "to the ground her astonishment": [65535, 0], "the ground her astonishment was": [65535, 0], "ground her astonishment was almost": [65535, 0], "her astonishment was almost unspeakable": [65535, 0], "astonishment was almost unspeakable she": [65535, 0], "was almost unspeakable she said": [65535, 0], "almost unspeakable she said well": [65535, 0], "unspeakable she said well i": [65535, 0], "she said well i never": [65535, 0], "said well i never there's": [65535, 0], "well i never there's no": [65535, 0], "i never there's no getting": [65535, 0], "never there's no getting round": [65535, 0], "there's no getting round it": [65535, 0], "no getting round it you": [65535, 0], "getting round it you can": [65535, 0], "round it you can work": [65535, 0], "it you can work when": [65535, 0], "you can work when you're": [65535, 0], "can work when you're a": [65535, 0], "work when you're a mind": [65535, 0], "when you're a mind to": [65535, 0], "you're a mind to tom": [65535, 0], "a mind to tom and": [65535, 0], "mind to tom and then": [65535, 0], "to tom and then she": [65535, 0], "tom and then she diluted": [65535, 0], "and then she diluted the": [65535, 0], "then she diluted the compliment": [65535, 0], "she diluted the compliment by": [65535, 0], "diluted the compliment by adding": [65535, 0], "the compliment by adding but": [65535, 0], "compliment by adding but it's": [65535, 0], "by adding but it's powerful": [65535, 0], "adding but it's powerful seldom": [65535, 0], "but it's powerful seldom you're": [65535, 0], "it's powerful seldom you're a": [65535, 0], "powerful seldom you're a mind": [65535, 0], "seldom you're a mind to": [65535, 0], "you're a mind to i'm": [65535, 0], "a mind to i'm bound": [65535, 0], "mind to i'm bound to": [65535, 0], "to i'm bound to say": [65535, 0], "i'm bound to say well": [65535, 0], "bound to say well go": [65535, 0], "to say well go 'long": [65535, 0], "say well go 'long and": [65535, 0], "well go 'long and play": [65535, 0], "go 'long and play but": [65535, 0], "'long and play but mind": [65535, 0], "and play but mind you": [65535, 0], "play but mind you get": [65535, 0], "but mind you get back": [65535, 0], "mind you get back some": [65535, 0], "you get back some time": [65535, 0], "get back some time in": [65535, 0], "back some time in a": [65535, 0], "some time in a week": [65535, 0], "time in a week or": [65535, 0], "in a week or i'll": [65535, 0], "a week or i'll tan": [65535, 0], "week or i'll tan you": [65535, 0], "or i'll tan you she": [65535, 0], "i'll tan you she was": [65535, 0], "tan you she was so": [65535, 0], "you she was so overcome": [65535, 0], "she was so overcome by": [65535, 0], "was so overcome by the": [65535, 0], "so overcome by the splendor": [65535, 0], "overcome by the splendor of": [65535, 0], "by the splendor of his": [65535, 0], "the splendor of his achievement": [65535, 0], "splendor of his achievement that": [65535, 0], "of his achievement that she": [65535, 0], "his achievement that she took": [65535, 0], "achievement that she took him": [65535, 0], "that she took him into": [65535, 0], "she took him into the": [65535, 0], "took him into the closet": [65535, 0], "him into the closet and": [65535, 0], "into the closet and selected": [65535, 0], "the closet and selected a": [65535, 0], "closet and selected a choice": [65535, 0], "and selected a choice apple": [65535, 0], "selected a choice apple and": [65535, 0], "a choice apple and delivered": [65535, 0], "choice apple and delivered it": [65535, 0], "apple and delivered it to": [65535, 0], "and delivered it to him": [65535, 0], "delivered it to him along": [65535, 0], "it to him along with": [65535, 0], "to him along with an": [65535, 0], "him along with an improving": [65535, 0], "along with an improving lecture": [65535, 0], "with an improving lecture upon": [65535, 0], "an improving lecture upon the": [65535, 0], "improving lecture upon the added": [65535, 0], "lecture upon the added value": [65535, 0], "upon the added value and": [65535, 0], "the added value and flavor": [65535, 0], "added value and flavor a": [65535, 0], "value and flavor a treat": [65535, 0], "and flavor a treat took": [65535, 0], "flavor a treat took to": [65535, 0], "a treat took to itself": [65535, 0], "treat took to itself when": [65535, 0], "took to itself when it": [65535, 0], "to itself when it came": [65535, 0], "itself when it came without": [65535, 0], "when it came without sin": [65535, 0], "it came without sin through": [65535, 0], "came without sin through virtuous": [65535, 0], "without sin through virtuous effort": [65535, 0], "sin through virtuous effort and": [65535, 0], "through virtuous effort and while": [65535, 0], "virtuous effort and while she": [65535, 0], "effort and while she closed": [65535, 0], "and while she closed with": [65535, 0], "while she closed with a": [65535, 0], "she closed with a happy": [65535, 0], "closed with a happy scriptural": [65535, 0], "with a happy scriptural flourish": [65535, 0], "a happy scriptural flourish he": [65535, 0], "happy scriptural flourish he hooked": [65535, 0], "scriptural flourish he hooked a": [65535, 0], "flourish he hooked a doughnut": [65535, 0], "he hooked a doughnut then": [65535, 0], "hooked a doughnut then he": [65535, 0], "a doughnut then he skipped": [65535, 0], "doughnut then he skipped out": [65535, 0], "then he skipped out and": [65535, 0], "he skipped out and saw": [65535, 0], "skipped out and saw sid": [65535, 0], "out and saw sid just": [65535, 0], "and saw sid just starting": [65535, 0], "saw sid just starting up": [65535, 0], "sid just starting up the": [65535, 0], "just starting up the outside": [65535, 0], "starting up the outside stairway": [65535, 0], "up the outside stairway that": [65535, 0], "the outside stairway that led": [65535, 0], "outside stairway that led to": [65535, 0], "stairway that led to the": [65535, 0], "that led to the back": [65535, 0], "led to the back rooms": [65535, 0], "to the back rooms on": [65535, 0], "the back rooms on the": [65535, 0], "back rooms on the second": [65535, 0], "rooms on the second floor": [65535, 0], "on the second floor clods": [65535, 0], "the second floor clods were": [65535, 0], "second floor clods were handy": [65535, 0], "floor clods were handy and": [65535, 0], "clods were handy and the": [65535, 0], "were handy and the air": [65535, 0], "handy and the air was": [65535, 0], "and the air was full": [65535, 0], "the air was full of": [65535, 0], "air was full of them": [65535, 0], "was full of them in": [65535, 0], "full of them in a": [65535, 0], "of them in a twinkling": [65535, 0], "them in a twinkling they": [65535, 0], "in a twinkling they raged": [65535, 0], "a twinkling they raged around": [65535, 0], "twinkling they raged around sid": [65535, 0], "they raged around sid like": [65535, 0], "raged around sid like a": [65535, 0], "around sid like a hail": [65535, 0], "sid like a hail storm": [65535, 0], "like a hail storm and": [65535, 0], "a hail storm and before": [65535, 0], "hail storm and before aunt": [65535, 0], "storm and before aunt polly": [65535, 0], "and before aunt polly could": [65535, 0], "before aunt polly could collect": [65535, 0], "aunt polly could collect her": [65535, 0], "polly could collect her surprised": [65535, 0], "could collect her surprised faculties": [65535, 0], "collect her surprised faculties and": [65535, 0], "her surprised faculties and sally": [65535, 0], "surprised faculties and sally to": [65535, 0], "faculties and sally to the": [65535, 0], "and sally to the rescue": [65535, 0], "sally to the rescue six": [65535, 0], "to the rescue six or": [65535, 0], "the rescue six or seven": [65535, 0], "rescue six or seven clods": [65535, 0], "six or seven clods had": [65535, 0], "or seven clods had taken": [65535, 0], "seven clods had taken personal": [65535, 0], "clods had taken personal effect": [65535, 0], "had taken personal effect and": [65535, 0], "taken personal effect and tom": [65535, 0], "personal effect and tom was": [65535, 0], "effect and tom was over": [65535, 0], "and tom was over the": [65535, 0], "tom was over the fence": [65535, 0], "was over the fence and": [65535, 0], "over the fence and gone": [65535, 0], "the fence and gone there": [65535, 0], "fence and gone there was": [65535, 0], "and gone there was a": [65535, 0], "gone there was a gate": [65535, 0], "there was a gate but": [65535, 0], "was a gate but as": [65535, 0], "a gate but as a": [65535, 0], "gate but as a general": [65535, 0], "but as a general thing": [65535, 0], "as a general thing he": [65535, 0], "a general thing he was": [65535, 0], "general thing he was too": [65535, 0], "thing he was too crowded": [65535, 0], "he was too crowded for": [65535, 0], "was too crowded for time": [65535, 0], "too crowded for time to": [65535, 0], "crowded for time to make": [65535, 0], "for time to make use": [65535, 0], "time to make use of": [65535, 0], "to make use of it": [65535, 0], "make use of it his": [65535, 0], "use of it his soul": [65535, 0], "of it his soul was": [65535, 0], "it his soul was at": [65535, 0], "his soul was at peace": [65535, 0], "soul was at peace now": [65535, 0], "was at peace now that": [65535, 0], "at peace now that he": [65535, 0], "peace now that he had": [65535, 0], "now that he had settled": [65535, 0], "that he had settled with": [65535, 0], "he had settled with sid": [65535, 0], "had settled with sid for": [65535, 0], "settled with sid for calling": [65535, 0], "with sid for calling attention": [65535, 0], "sid for calling attention to": [65535, 0], "for calling attention to his": [65535, 0], "calling attention to his black": [65535, 0], "attention to his black thread": [65535, 0], "to his black thread and": [65535, 0], "his black thread and getting": [65535, 0], "black thread and getting him": [65535, 0], "thread and getting him into": [65535, 0], "and getting him into trouble": [65535, 0], "getting him into trouble tom": [65535, 0], "him into trouble tom skirted": [65535, 0], "into trouble tom skirted the": [65535, 0], "trouble tom skirted the block": [65535, 0], "tom skirted the block and": [65535, 0], "skirted the block and came": [65535, 0], "the block and came round": [65535, 0], "block and came round into": [65535, 0], "and came round into a": [65535, 0], "came round into a muddy": [65535, 0], "round into a muddy alley": [65535, 0], "into a muddy alley that": [65535, 0], "a muddy alley that led": [65535, 0], "muddy alley that led by": [65535, 0], "alley that led by the": [65535, 0], "that led by the back": [65535, 0], "led by the back of": [65535, 0], "by the back of his": [65535, 0], "the back of his aunt's": [65535, 0], "back of his aunt's cowstable": [65535, 0], "of his aunt's cowstable he": [65535, 0], "his aunt's cowstable he presently": [65535, 0], "aunt's cowstable he presently got": [65535, 0], "cowstable he presently got safely": [65535, 0], "he presently got safely beyond": [65535, 0], "presently got safely beyond the": [65535, 0], "got safely beyond the reach": [65535, 0], "safely beyond the reach of": [65535, 0], "beyond the reach of capture": [65535, 0], "the reach of capture and": [65535, 0], "reach of capture and punishment": [65535, 0], "of capture and punishment and": [65535, 0], "capture and punishment and hastened": [65535, 0], "and punishment and hastened toward": [65535, 0], "punishment and hastened toward the": [65535, 0], "and hastened toward the public": [65535, 0], "hastened toward the public square": [65535, 0], "toward the public square of": [65535, 0], "the public square of the": [65535, 0], "public square of the village": [65535, 0], "square of the village where": [65535, 0], "of the village where two": [65535, 0], "the village where two military": [65535, 0], "village where two military companies": [65535, 0], "where two military companies of": [65535, 0], "two military companies of boys": [65535, 0], "military companies of boys had": [65535, 0], "companies of boys had met": [65535, 0], "of boys had met for": [65535, 0], "boys had met for conflict": [65535, 0], "had met for conflict according": [65535, 0], "met for conflict according to": [65535, 0], "for conflict according to previous": [65535, 0], "conflict according to previous appointment": [65535, 0], "according to previous appointment tom": [65535, 0], "to previous appointment tom was": [65535, 0], "previous appointment tom was general": [65535, 0], "appointment tom was general of": [65535, 0], "tom was general of one": [65535, 0], "was general of one of": [65535, 0], "general of one of these": [65535, 0], "of one of these armies": [65535, 0], "one of these armies joe": [65535, 0], "of these armies joe harper": [65535, 0], "these armies joe harper a": [65535, 0], "armies joe harper a bosom": [65535, 0], "joe harper a bosom friend": [65535, 0], "harper a bosom friend general": [65535, 0], "a bosom friend general of": [65535, 0], "bosom friend general of the": [65535, 0], "friend general of the other": [65535, 0], "general of the other these": [65535, 0], "of the other these two": [65535, 0], "the other these two great": [65535, 0], "other these two great commanders": [65535, 0], "these two great commanders did": [65535, 0], "two great commanders did not": [65535, 0], "great commanders did not condescend": [65535, 0], "commanders did not condescend to": [65535, 0], "did not condescend to fight": [65535, 0], "not condescend to fight in": [65535, 0], "condescend to fight in person": [65535, 0], "to fight in person that": [65535, 0], "fight in person that being": [65535, 0], "in person that being better": [65535, 0], "person that being better suited": [65535, 0], "that being better suited to": [65535, 0], "being better suited to the": [65535, 0], "better suited to the still": [65535, 0], "suited to the still smaller": [65535, 0], "to the still smaller fry": [65535, 0], "the still smaller fry but": [65535, 0], "still smaller fry but sat": [65535, 0], "smaller fry but sat together": [65535, 0], "fry but sat together on": [65535, 0], "but sat together on an": [65535, 0], "sat together on an eminence": [65535, 0], "together on an eminence and": [65535, 0], "on an eminence and conducted": [65535, 0], "an eminence and conducted the": [65535, 0], "eminence and conducted the field": [65535, 0], "and conducted the field operations": [65535, 0], "conducted the field operations by": [65535, 0], "the field operations by orders": [65535, 0], "field operations by orders delivered": [65535, 0], "operations by orders delivered through": [65535, 0], "by orders delivered through aides": [65535, 0], "orders delivered through aides de": [65535, 0], "delivered through aides de camp": [65535, 0], "through aides de camp tom's": [65535, 0], "aides de camp tom's army": [65535, 0], "de camp tom's army won": [65535, 0], "camp tom's army won a": [65535, 0], "tom's army won a great": [65535, 0], "army won a great victory": [65535, 0], "won a great victory after": [65535, 0], "a great victory after a": [65535, 0], "great victory after a long": [65535, 0], "victory after a long and": [65535, 0], "after a long and hard": [65535, 0], "a long and hard fought": [65535, 0], "long and hard fought battle": [65535, 0], "and hard fought battle then": [65535, 0], "hard fought battle then the": [65535, 0], "fought battle then the dead": [65535, 0], "battle then the dead were": [65535, 0], "then the dead were counted": [65535, 0], "the dead were counted prisoners": [65535, 0], "dead were counted prisoners exchanged": [65535, 0], "were counted prisoners exchanged the": [65535, 0], "counted prisoners exchanged the terms": [65535, 0], "prisoners exchanged the terms of": [65535, 0], "exchanged the terms of the": [65535, 0], "the terms of the next": [65535, 0], "terms of the next disagreement": [65535, 0], "of the next disagreement agreed": [65535, 0], "the next disagreement agreed upon": [65535, 0], "next disagreement agreed upon and": [65535, 0], "disagreement agreed upon and the": [65535, 0], "agreed upon and the day": [65535, 0], "upon and the day for": [65535, 0], "and the day for the": [65535, 0], "the day for the necessary": [65535, 0], "day for the necessary battle": [65535, 0], "for the necessary battle appointed": [65535, 0], "the necessary battle appointed after": [65535, 0], "necessary battle appointed after which": [65535, 0], "battle appointed after which the": [65535, 0], "appointed after which the armies": [65535, 0], "after which the armies fell": [65535, 0], "which the armies fell into": [65535, 0], "the armies fell into line": [65535, 0], "armies fell into line and": [65535, 0], "fell into line and marched": [65535, 0], "into line and marched away": [65535, 0], "line and marched away and": [65535, 0], "and marched away and tom": [65535, 0], "marched away and tom turned": [65535, 0], "away and tom turned homeward": [65535, 0], "and tom turned homeward alone": [65535, 0], "tom turned homeward alone as": [65535, 0], "turned homeward alone as he": [65535, 0], "homeward alone as he was": [65535, 0], "alone as he was passing": [65535, 0], "as he was passing by": [65535, 0], "he was passing by the": [65535, 0], "was passing by the house": [65535, 0], "passing by the house where": [65535, 0], "by the house where jeff": [65535, 0], "the house where jeff thatcher": [65535, 0], "house where jeff thatcher lived": [65535, 0], "where jeff thatcher lived he": [65535, 0], "jeff thatcher lived he saw": [65535, 0], "thatcher lived he saw a": [65535, 0], "lived he saw a new": [65535, 0], "he saw a new girl": [65535, 0], "saw a new girl in": [65535, 0], "a new girl in the": [65535, 0], "new girl in the garden": [65535, 0], "girl in the garden a": [65535, 0], "in the garden a lovely": [65535, 0], "the garden a lovely little": [65535, 0], "garden a lovely little blue": [65535, 0], "a lovely little blue eyed": [65535, 0], "lovely little blue eyed creature": [65535, 0], "little blue eyed creature with": [65535, 0], "blue eyed creature with yellow": [65535, 0], "eyed creature with yellow hair": [65535, 0], "creature with yellow hair plaited": [65535, 0], "with yellow hair plaited into": [65535, 0], "yellow hair plaited into two": [65535, 0], "hair plaited into two long": [65535, 0], "plaited into two long tails": [65535, 0], "into two long tails white": [65535, 0], "two long tails white summer": [65535, 0], "long tails white summer frock": [65535, 0], "tails white summer frock and": [65535, 0], "white summer frock and embroidered": [65535, 0], "summer frock and embroidered pantalettes": [65535, 0], "frock and embroidered pantalettes the": [65535, 0], "and embroidered pantalettes the fresh": [65535, 0], "embroidered pantalettes the fresh crowned": [65535, 0], "pantalettes the fresh crowned hero": [65535, 0], "the fresh crowned hero fell": [65535, 0], "fresh crowned hero fell without": [65535, 0], "crowned hero fell without firing": [65535, 0], "hero fell without firing a": [65535, 0], "fell without firing a shot": [65535, 0], "without firing a shot a": [65535, 0], "firing a shot a certain": [65535, 0], "a shot a certain amy": [65535, 0], "shot a certain amy lawrence": [65535, 0], "a certain amy lawrence vanished": [65535, 0], "certain amy lawrence vanished out": [65535, 0], "amy lawrence vanished out of": [65535, 0], "lawrence vanished out of his": [65535, 0], "vanished out of his heart": [65535, 0], "out of his heart and": [65535, 0], "of his heart and left": [65535, 0], "his heart and left not": [65535, 0], "heart and left not even": [65535, 0], "and left not even a": [65535, 0], "left not even a memory": [65535, 0], "not even a memory of": [65535, 0], "even a memory of herself": [65535, 0], "a memory of herself behind": [65535, 0], "memory of herself behind he": [65535, 0], "of herself behind he had": [65535, 0], "herself behind he had thought": [65535, 0], "behind he had thought he": [65535, 0], "he had thought he loved": [65535, 0], "had thought he loved her": [65535, 0], "thought he loved her to": [65535, 0], "he loved her to distraction": [65535, 0], "loved her to distraction he": [65535, 0], "her to distraction he had": [65535, 0], "to distraction he had regarded": [65535, 0], "distraction he had regarded his": [65535, 0], "he had regarded his passion": [65535, 0], "had regarded his passion as": [65535, 0], "regarded his passion as adoration": [65535, 0], "his passion as adoration and": [65535, 0], "passion as adoration and behold": [65535, 0], "as adoration and behold it": [65535, 0], "adoration and behold it was": [65535, 0], "and behold it was only": [65535, 0], "behold it was only a": [65535, 0], "it was only a poor": [65535, 0], "was only a poor little": [65535, 0], "only a poor little evanescent": [65535, 0], "a poor little evanescent partiality": [65535, 0], "poor little evanescent partiality he": [65535, 0], "little evanescent partiality he had": [65535, 0], "evanescent partiality he had been": [65535, 0], "partiality he had been months": [65535, 0], "he had been months winning": [65535, 0], "had been months winning her": [65535, 0], "been months winning her she": [65535, 0], "months winning her she had": [65535, 0], "winning her she had confessed": [65535, 0], "her she had confessed hardly": [65535, 0], "she had confessed hardly a": [65535, 0], "had confessed hardly a week": [65535, 0], "confessed hardly a week ago": [65535, 0], "hardly a week ago he": [65535, 0], "a week ago he had": [65535, 0], "week ago he had been": [65535, 0], "ago he had been the": [65535, 0], "he had been the happiest": [65535, 0], "had been the happiest and": [65535, 0], "been the happiest and the": [65535, 0], "the happiest and the proudest": [65535, 0], "happiest and the proudest boy": [65535, 0], "and the proudest boy in": [65535, 0], "the proudest boy in the": [65535, 0], "proudest boy in the world": [65535, 0], "boy in the world only": [65535, 0], "in the world only seven": [65535, 0], "the world only seven short": [65535, 0], "world only seven short days": [65535, 0], "only seven short days and": [65535, 0], "seven short days and here": [65535, 0], "short days and here in": [65535, 0], "days and here in one": [65535, 0], "and here in one instant": [65535, 0], "here in one instant of": [65535, 0], "in one instant of time": [65535, 0], "one instant of time she": [65535, 0], "instant of time she had": [65535, 0], "of time she had gone": [65535, 0], "time she had gone out": [65535, 0], "she had gone out of": [65535, 0], "had gone out of his": [65535, 0], "gone out of his heart": [65535, 0], "out of his heart like": [65535, 0], "of his heart like a": [65535, 0], "his heart like a casual": [65535, 0], "heart like a casual stranger": [65535, 0], "like a casual stranger whose": [65535, 0], "a casual stranger whose visit": [65535, 0], "casual stranger whose visit is": [65535, 0], "stranger whose visit is done": [65535, 0], "whose visit is done he": [65535, 0], "visit is done he worshipped": [65535, 0], "is done he worshipped this": [65535, 0], "done he worshipped this new": [65535, 0], "he worshipped this new angel": [65535, 0], "worshipped this new angel with": [65535, 0], "this new angel with furtive": [65535, 0], "new angel with furtive eye": [65535, 0], "angel with furtive eye till": [65535, 0], "with furtive eye till he": [65535, 0], "furtive eye till he saw": [65535, 0], "eye till he saw that": [65535, 0], "till he saw that she": [65535, 0], "he saw that she had": [65535, 0], "saw that she had discovered": [65535, 0], "that she had discovered him": [65535, 0], "she had discovered him then": [65535, 0], "had discovered him then he": [65535, 0], "discovered him then he pretended": [65535, 0], "him then he pretended he": [65535, 0], "then he pretended he did": [65535, 0], "he pretended he did not": [65535, 0], "pretended he did not know": [65535, 0], "he did not know she": [65535, 0], "did not know she was": [65535, 0], "not know she was present": [65535, 0], "know she was present and": [65535, 0], "she was present and began": [65535, 0], "was present and began to": [65535, 0], "present and began to show": [65535, 0], "and began to show off": [65535, 0], "began to show off in": [65535, 0], "to show off in all": [65535, 0], "show off in all sorts": [65535, 0], "off in all sorts of": [65535, 0], "in all sorts of absurd": [65535, 0], "all sorts of absurd boyish": [65535, 0], "sorts of absurd boyish ways": [65535, 0], "of absurd boyish ways in": [65535, 0], "absurd boyish ways in order": [65535, 0], "boyish ways in order to": [65535, 0], "ways in order to win": [65535, 0], "in order to win her": [65535, 0], "order to win her admiration": [65535, 0], "to win her admiration he": [65535, 0], "win her admiration he kept": [65535, 0], "her admiration he kept up": [65535, 0], "admiration he kept up this": [65535, 0], "he kept up this grotesque": [65535, 0], "kept up this grotesque foolishness": [65535, 0], "up this grotesque foolishness for": [65535, 0], "this grotesque foolishness for some": [65535, 0], "grotesque foolishness for some time": [65535, 0], "foolishness for some time but": [65535, 0], "for some time but by": [65535, 0], "some time but by and": [65535, 0], "time but by and by": [65535, 0], "but by and by while": [65535, 0], "by and by while he": [65535, 0], "and by while he was": [65535, 0], "by while he was in": [65535, 0], "while he was in the": [65535, 0], "he was in the midst": [65535, 0], "was in the midst of": [65535, 0], "in the midst of some": [65535, 0], "the midst of some dangerous": [65535, 0], "midst of some dangerous gymnastic": [65535, 0], "of some dangerous gymnastic performances": [65535, 0], "some dangerous gymnastic performances he": [65535, 0], "dangerous gymnastic performances he glanced": [65535, 0], "gymnastic performances he glanced aside": [65535, 0], "performances he glanced aside and": [65535, 0], "he glanced aside and saw": [65535, 0], "glanced aside and saw that": [65535, 0], "aside and saw that the": [65535, 0], "and saw that the little": [65535, 0], "saw that the little girl": [65535, 0], "that the little girl was": [65535, 0], "the little girl was wending": [65535, 0], "little girl was wending her": [65535, 0], "girl was wending her way": [65535, 0], "was wending her way toward": [65535, 0], "wending her way toward the": [65535, 0], "her way toward the house": [65535, 0], "way toward the house tom": [65535, 0], "toward the house tom came": [65535, 0], "the house tom came up": [65535, 0], "house tom came up to": [65535, 0], "tom came up to the": [65535, 0], "came up to the fence": [65535, 0], "up to the fence and": [65535, 0], "to the fence and leaned": [65535, 0], "the fence and leaned on": [65535, 0], "fence and leaned on it": [65535, 0], "and leaned on it grieving": [65535, 0], "leaned on it grieving and": [65535, 0], "on it grieving and hoping": [65535, 0], "it grieving and hoping she": [65535, 0], "grieving and hoping she would": [65535, 0], "and hoping she would tarry": [65535, 0], "hoping she would tarry yet": [65535, 0], "she would tarry yet awhile": [65535, 0], "would tarry yet awhile longer": [65535, 0], "tarry yet awhile longer she": [65535, 0], "yet awhile longer she halted": [65535, 0], "awhile longer she halted a": [65535, 0], "longer she halted a moment": [65535, 0], "she halted a moment on": [65535, 0], "halted a moment on the": [65535, 0], "a moment on the steps": [65535, 0], "moment on the steps and": [65535, 0], "on the steps and then": [65535, 0], "the steps and then moved": [65535, 0], "steps and then moved toward": [65535, 0], "and then moved toward the": [65535, 0], "then moved toward the door": [65535, 0], "moved toward the door tom": [65535, 0], "toward the door tom heaved": [65535, 0], "the door tom heaved a": [65535, 0], "door tom heaved a great": [65535, 0], "tom heaved a great sigh": [65535, 0], "heaved a great sigh as": [65535, 0], "a great sigh as she": [65535, 0], "great sigh as she put": [65535, 0], "sigh as she put her": [65535, 0], "as she put her foot": [65535, 0], "she put her foot on": [65535, 0], "put her foot on the": [65535, 0], "her foot on the threshold": [65535, 0], "foot on the threshold but": [65535, 0], "on the threshold but his": [65535, 0], "the threshold but his face": [65535, 0], "threshold but his face lit": [65535, 0], "but his face lit up": [65535, 0], "his face lit up right": [65535, 0], "face lit up right away": [65535, 0], "lit up right away for": [65535, 0], "up right away for she": [65535, 0], "right away for she tossed": [65535, 0], "away for she tossed a": [65535, 0], "for she tossed a pansy": [65535, 0], "she tossed a pansy over": [65535, 0], "tossed a pansy over the": [65535, 0], "a pansy over the fence": [65535, 0], "pansy over the fence a": [65535, 0], "over the fence a moment": [65535, 0], "the fence a moment before": [65535, 0], "fence a moment before she": [65535, 0], "a moment before she disappeared": [65535, 0], "moment before she disappeared the": [65535, 0], "before she disappeared the boy": [65535, 0], "she disappeared the boy ran": [65535, 0], "disappeared the boy ran around": [65535, 0], "the boy ran around and": [65535, 0], "boy ran around and stopped": [65535, 0], "ran around and stopped within": [65535, 0], "around and stopped within a": [65535, 0], "and stopped within a foot": [65535, 0], "stopped within a foot or": [65535, 0], "within a foot or two": [65535, 0], "a foot or two of": [65535, 0], "foot or two of the": [65535, 0], "or two of the flower": [65535, 0], "two of the flower and": [65535, 0], "of the flower and then": [65535, 0], "the flower and then shaded": [65535, 0], "flower and then shaded his": [65535, 0], "and then shaded his eyes": [65535, 0], "then shaded his eyes with": [65535, 0], "shaded his eyes with his": [65535, 0], "his eyes with his hand": [65535, 0], "eyes with his hand and": [65535, 0], "with his hand and began": [65535, 0], "his hand and began to": [65535, 0], "hand and began to look": [65535, 0], "and began to look down": [65535, 0], "began to look down street": [65535, 0], "to look down street as": [65535, 0], "look down street as if": [65535, 0], "down street as if he": [65535, 0], "street as if he had": [65535, 0], "as if he had discovered": [65535, 0], "if he had discovered something": [65535, 0], "he had discovered something of": [65535, 0], "had discovered something of interest": [65535, 0], "discovered something of interest going": [65535, 0], "something of interest going on": [65535, 0], "of interest going on in": [65535, 0], "interest going on in that": [65535, 0], "going on in that direction": [65535, 0], "on in that direction presently": [65535, 0], "in that direction presently he": [65535, 0], "that direction presently he picked": [65535, 0], "direction presently he picked up": [65535, 0], "presently he picked up a": [65535, 0], "he picked up a straw": [65535, 0], "picked up a straw and": [65535, 0], "up a straw and began": [65535, 0], "a straw and began trying": [65535, 0], "straw and began trying to": [65535, 0], "and began trying to balance": [65535, 0], "began trying to balance it": [65535, 0], "trying to balance it on": [65535, 0], "to balance it on his": [65535, 0], "balance it on his nose": [65535, 0], "it on his nose with": [65535, 0], "on his nose with his": [65535, 0], "his nose with his head": [65535, 0], "nose with his head tilted": [65535, 0], "with his head tilted far": [65535, 0], "his head tilted far back": [65535, 0], "head tilted far back and": [65535, 0], "tilted far back and as": [65535, 0], "far back and as he": [65535, 0], "back and as he moved": [65535, 0], "and as he moved from": [65535, 0], "as he moved from side": [65535, 0], "he moved from side to": [65535, 0], "moved from side to side": [65535, 0], "from side to side in": [65535, 0], "side to side in his": [65535, 0], "to side in his efforts": [65535, 0], "side in his efforts he": [65535, 0], "in his efforts he edged": [65535, 0], "his efforts he edged nearer": [65535, 0], "efforts he edged nearer and": [65535, 0], "he edged nearer and nearer": [65535, 0], "edged nearer and nearer toward": [65535, 0], "nearer and nearer toward the": [65535, 0], "and nearer toward the pansy": [65535, 0], "nearer toward the pansy finally": [65535, 0], "toward the pansy finally his": [65535, 0], "the pansy finally his bare": [65535, 0], "pansy finally his bare foot": [65535, 0], "finally his bare foot rested": [65535, 0], "his bare foot rested upon": [65535, 0], "bare foot rested upon it": [65535, 0], "foot rested upon it his": [65535, 0], "rested upon it his pliant": [65535, 0], "upon it his pliant toes": [65535, 0], "it his pliant toes closed": [65535, 0], "his pliant toes closed upon": [65535, 0], "pliant toes closed upon it": [65535, 0], "toes closed upon it and": [65535, 0], "closed upon it and he": [65535, 0], "upon it and he hopped": [65535, 0], "it and he hopped away": [65535, 0], "and he hopped away with": [65535, 0], "he hopped away with the": [65535, 0], "hopped away with the treasure": [65535, 0], "away with the treasure and": [65535, 0], "with the treasure and disappeared": [65535, 0], "the treasure and disappeared round": [65535, 0], "treasure and disappeared round the": [65535, 0], "and disappeared round the corner": [65535, 0], "disappeared round the corner but": [65535, 0], "round the corner but only": [65535, 0], "the corner but only for": [65535, 0], "corner but only for a": [65535, 0], "but only for a minute": [65535, 0], "only for a minute only": [65535, 0], "for a minute only while": [65535, 0], "a minute only while he": [65535, 0], "minute only while he could": [65535, 0], "only while he could button": [65535, 0], "while he could button the": [65535, 0], "he could button the flower": [65535, 0], "could button the flower inside": [65535, 0], "button the flower inside his": [65535, 0], "the flower inside his jacket": [65535, 0], "flower inside his jacket next": [65535, 0], "inside his jacket next his": [65535, 0], "his jacket next his heart": [65535, 0], "jacket next his heart or": [65535, 0], "next his heart or next": [65535, 0], "his heart or next his": [65535, 0], "heart or next his stomach": [65535, 0], "or next his stomach possibly": [65535, 0], "next his stomach possibly for": [65535, 0], "his stomach possibly for he": [65535, 0], "stomach possibly for he was": [65535, 0], "possibly for he was not": [65535, 0], "for he was not much": [65535, 0], "he was not much posted": [65535, 0], "was not much posted in": [65535, 0], "not much posted in anatomy": [65535, 0], "much posted in anatomy and": [65535, 0], "posted in anatomy and not": [65535, 0], "in anatomy and not hypercritical": [65535, 0], "anatomy and not hypercritical anyway": [65535, 0], "and not hypercritical anyway he": [65535, 0], "not hypercritical anyway he returned": [65535, 0], "hypercritical anyway he returned now": [65535, 0], "anyway he returned now and": [65535, 0], "he returned now and hung": [65535, 0], "returned now and hung about": [65535, 0], "now and hung about the": [65535, 0], "and hung about the fence": [65535, 0], "hung about the fence till": [65535, 0], "about the fence till nightfall": [65535, 0], "the fence till nightfall showing": [65535, 0], "fence till nightfall showing off": [65535, 0], "till nightfall showing off as": [65535, 0], "nightfall showing off as before": [65535, 0], "showing off as before but": [65535, 0], "off as before but the": [65535, 0], "as before but the girl": [65535, 0], "before but the girl never": [65535, 0], "but the girl never exhibited": [65535, 0], "the girl never exhibited herself": [65535, 0], "girl never exhibited herself again": [65535, 0], "never exhibited herself again though": [65535, 0], "exhibited herself again though tom": [65535, 0], "herself again though tom comforted": [65535, 0], "again though tom comforted himself": [65535, 0], "though tom comforted himself a": [65535, 0], "tom comforted himself a little": [65535, 0], "comforted himself a little with": [65535, 0], "himself a little with the": [65535, 0], "a little with the hope": [65535, 0], "little with the hope that": [65535, 0], "with the hope that she": [65535, 0], "the hope that she had": [65535, 0], "hope that she had been": [65535, 0], "that she had been near": [65535, 0], "she had been near some": [65535, 0], "had been near some window": [65535, 0], "been near some window meantime": [65535, 0], "near some window meantime and": [65535, 0], "some window meantime and been": [65535, 0], "window meantime and been aware": [65535, 0], "meantime and been aware of": [65535, 0], "and been aware of his": [65535, 0], "been aware of his attentions": [65535, 0], "aware of his attentions finally": [65535, 0], "of his attentions finally he": [65535, 0], "his attentions finally he strode": [65535, 0], "attentions finally he strode home": [65535, 0], "finally he strode home reluctantly": [65535, 0], "he strode home reluctantly with": [65535, 0], "strode home reluctantly with his": [65535, 0], "home reluctantly with his poor": [65535, 0], "reluctantly with his poor head": [65535, 0], "with his poor head full": [65535, 0], "his poor head full of": [65535, 0], "poor head full of visions": [65535, 0], "head full of visions all": [65535, 0], "full of visions all through": [65535, 0], "of visions all through supper": [65535, 0], "visions all through supper his": [65535, 0], "all through supper his spirits": [65535, 0], "through supper his spirits were": [65535, 0], "supper his spirits were so": [65535, 0], "his spirits were so high": [65535, 0], "spirits were so high that": [65535, 0], "were so high that his": [65535, 0], "so high that his aunt": [65535, 0], "high that his aunt wondered": [65535, 0], "that his aunt wondered what": [65535, 0], "his aunt wondered what had": [65535, 0], "aunt wondered what had got": [65535, 0], "wondered what had got into": [65535, 0], "what had got into the": [65535, 0], "had got into the child": [65535, 0], "got into the child he": [65535, 0], "into the child he took": [65535, 0], "the child he took a": [65535, 0], "child he took a good": [65535, 0], "he took a good scolding": [65535, 0], "took a good scolding about": [65535, 0], "a good scolding about clodding": [65535, 0], "good scolding about clodding sid": [65535, 0], "scolding about clodding sid and": [65535, 0], "about clodding sid and did": [65535, 0], "clodding sid and did not": [65535, 0], "sid and did not seem": [65535, 0], "and did not seem to": [65535, 0], "did not seem to mind": [65535, 0], "not seem to mind it": [65535, 0], "seem to mind it in": [65535, 0], "to mind it in the": [65535, 0], "mind it in the least": [65535, 0], "it in the least he": [65535, 0], "in the least he tried": [65535, 0], "the least he tried to": [65535, 0], "least he tried to steal": [65535, 0], "he tried to steal sugar": [65535, 0], "tried to steal sugar under": [65535, 0], "to steal sugar under his": [65535, 0], "steal sugar under his aunt's": [65535, 0], "sugar under his aunt's very": [65535, 0], "under his aunt's very nose": [65535, 0], "his aunt's very nose and": [65535, 0], "aunt's very nose and got": [65535, 0], "very nose and got his": [65535, 0], "nose and got his knuckles": [65535, 0], "and got his knuckles rapped": [65535, 0], "got his knuckles rapped for": [65535, 0], "his knuckles rapped for it": [65535, 0], "knuckles rapped for it he": [65535, 0], "rapped for it he said": [65535, 0], "for it he said aunt": [65535, 0], "it he said aunt you": [65535, 0], "he said aunt you don't": [65535, 0], "said aunt you don't whack": [65535, 0], "aunt you don't whack sid": [65535, 0], "you don't whack sid when": [65535, 0], "don't whack sid when he": [65535, 0], "whack sid when he takes": [65535, 0], "sid when he takes it": [65535, 0], "when he takes it well": [65535, 0], "he takes it well sid": [65535, 0], "takes it well sid don't": [65535, 0], "it well sid don't torment": [65535, 0], "well sid don't torment a": [65535, 0], "sid don't torment a body": [65535, 0], "don't torment a body the": [65535, 0], "torment a body the way": [65535, 0], "a body the way you": [65535, 0], "body the way you do": [65535, 0], "the way you do you'd": [65535, 0], "way you do you'd be": [65535, 0], "you do you'd be always": [65535, 0], "do you'd be always into": [65535, 0], "you'd be always into that": [65535, 0], "be always into that sugar": [65535, 0], "always into that sugar if": [65535, 0], "into that sugar if i": [65535, 0], "that sugar if i warn't": [65535, 0], "sugar if i warn't watching": [65535, 0], "if i warn't watching you": [65535, 0], "i warn't watching you presently": [65535, 0], "warn't watching you presently she": [65535, 0], "watching you presently she stepped": [65535, 0], "you presently she stepped into": [65535, 0], "presently she stepped into the": [65535, 0], "she stepped into the kitchen": [65535, 0], "stepped into the kitchen and": [65535, 0], "into the kitchen and sid": [65535, 0], "the kitchen and sid happy": [65535, 0], "kitchen and sid happy in": [65535, 0], "and sid happy in his": [65535, 0], "sid happy in his immunity": [65535, 0], "happy in his immunity reached": [65535, 0], "in his immunity reached for": [65535, 0], "his immunity reached for the": [65535, 0], "immunity reached for the sugar": [65535, 0], "reached for the sugar bowl": [65535, 0], "for the sugar bowl a": [65535, 0], "the sugar bowl a sort": [65535, 0], "sugar bowl a sort of": [65535, 0], "bowl a sort of glorying": [65535, 0], "a sort of glorying over": [65535, 0], "sort of glorying over tom": [65535, 0], "of glorying over tom which": [65535, 0], "glorying over tom which was": [65535, 0], "over tom which was well": [65535, 0], "tom which was well nigh": [65535, 0], "which was well nigh unbearable": [65535, 0], "was well nigh unbearable but": [65535, 0], "well nigh unbearable but sid's": [65535, 0], "nigh unbearable but sid's fingers": [65535, 0], "unbearable but sid's fingers slipped": [65535, 0], "but sid's fingers slipped and": [65535, 0], "sid's fingers slipped and the": [65535, 0], "fingers slipped and the bowl": [65535, 0], "slipped and the bowl dropped": [65535, 0], "and the bowl dropped and": [65535, 0], "the bowl dropped and broke": [65535, 0], "bowl dropped and broke tom": [65535, 0], "dropped and broke tom was": [65535, 0], "and broke tom was in": [65535, 0], "broke tom was in ecstasies": [65535, 0], "tom was in ecstasies in": [65535, 0], "was in ecstasies in such": [65535, 0], "in ecstasies in such ecstasies": [65535, 0], "ecstasies in such ecstasies that": [65535, 0], "in such ecstasies that he": [65535, 0], "such ecstasies that he even": [65535, 0], "ecstasies that he even controlled": [65535, 0], "that he even controlled his": [65535, 0], "he even controlled his tongue": [65535, 0], "even controlled his tongue and": [65535, 0], "controlled his tongue and was": [65535, 0], "his tongue and was silent": [65535, 0], "tongue and was silent he": [65535, 0], "and was silent he said": [65535, 0], "was silent he said to": [65535, 0], "silent he said to himself": [65535, 0], "to himself that he would": [65535, 0], "himself that he would not": [65535, 0], "that he would not speak": [65535, 0], "he would not speak a": [65535, 0], "would not speak a word": [65535, 0], "not speak a word even": [65535, 0], "speak a word even when": [65535, 0], "a word even when his": [65535, 0], "word even when his aunt": [65535, 0], "even when his aunt came": [65535, 0], "when his aunt came in": [65535, 0], "his aunt came in but": [65535, 0], "aunt came in but would": [65535, 0], "came in but would sit": [65535, 0], "in but would sit perfectly": [65535, 0], "but would sit perfectly still": [65535, 0], "would sit perfectly still till": [65535, 0], "sit perfectly still till she": [65535, 0], "perfectly still till she asked": [65535, 0], "still till she asked who": [65535, 0], "till she asked who did": [65535, 0], "she asked who did the": [65535, 0], "asked who did the mischief": [65535, 0], "who did the mischief and": [65535, 0], "did the mischief and then": [65535, 0], "the mischief and then he": [65535, 0], "mischief and then he would": [65535, 0], "and then he would tell": [65535, 0], "then he would tell and": [65535, 0], "he would tell and there": [65535, 0], "would tell and there would": [65535, 0], "tell and there would be": [65535, 0], "and there would be nothing": [65535, 0], "there would be nothing so": [65535, 0], "would be nothing so good": [65535, 0], "be nothing so good in": [65535, 0], "nothing so good in the": [65535, 0], "so good in the world": [65535, 0], "good in the world as": [65535, 0], "in the world as to": [65535, 0], "the world as to see": [65535, 0], "world as to see that": [65535, 0], "as to see that pet": [65535, 0], "to see that pet model": [65535, 0], "see that pet model catch": [65535, 0], "that pet model catch it": [65535, 0], "pet model catch it he": [65535, 0], "model catch it he was": [65535, 0], "catch it he was so": [65535, 0], "it he was so brimful": [65535, 0], "he was so brimful of": [65535, 0], "was so brimful of exultation": [65535, 0], "so brimful of exultation that": [65535, 0], "brimful of exultation that he": [65535, 0], "of exultation that he could": [65535, 0], "exultation that he could hardly": [65535, 0], "that he could hardly hold": [65535, 0], "he could hardly hold himself": [65535, 0], "could hardly hold himself when": [65535, 0], "hardly hold himself when the": [65535, 0], "hold himself when the old": [65535, 0], "himself when the old lady": [65535, 0], "when the old lady came": [65535, 0], "the old lady came back": [65535, 0], "old lady came back and": [65535, 0], "lady came back and stood": [65535, 0], "came back and stood above": [65535, 0], "back and stood above the": [65535, 0], "and stood above the wreck": [65535, 0], "stood above the wreck discharging": [65535, 0], "above the wreck discharging lightnings": [65535, 0], "the wreck discharging lightnings of": [65535, 0], "wreck discharging lightnings of wrath": [65535, 0], "discharging lightnings of wrath from": [65535, 0], "lightnings of wrath from over": [65535, 0], "of wrath from over her": [65535, 0], "wrath from over her spectacles": [65535, 0], "from over her spectacles he": [65535, 0], "over her spectacles he said": [65535, 0], "her spectacles he said to": [65535, 0], "spectacles he said to himself": [65535, 0], "he said to himself now": [65535, 0], "said to himself now it's": [65535, 0], "to himself now it's coming": [65535, 0], "himself now it's coming and": [65535, 0], "now it's coming and the": [65535, 0], "it's coming and the next": [65535, 0], "coming and the next instant": [65535, 0], "and the next instant he": [65535, 0], "the next instant he was": [65535, 0], "next instant he was sprawling": [65535, 0], "instant he was sprawling on": [65535, 0], "he was sprawling on the": [65535, 0], "was sprawling on the floor": [65535, 0], "sprawling on the floor the": [65535, 0], "on the floor the potent": [65535, 0], "the floor the potent palm": [65535, 0], "floor the potent palm was": [65535, 0], "the potent palm was uplifted": [65535, 0], "potent palm was uplifted to": [65535, 0], "palm was uplifted to strike": [65535, 0], "was uplifted to strike again": [65535, 0], "uplifted to strike again when": [65535, 0], "to strike again when tom": [65535, 0], "strike again when tom cried": [65535, 0], "again when tom cried out": [65535, 0], "when tom cried out hold": [65535, 0], "tom cried out hold on": [65535, 0], "cried out hold on now": [65535, 0], "out hold on now what": [65535, 0], "hold on now what 'er": [65535, 0], "on now what 'er you": [65535, 0], "now what 'er you belting": [65535, 0], "what 'er you belting me": [65535, 0], "'er you belting me for": [65535, 0], "you belting me for sid": [65535, 0], "belting me for sid broke": [65535, 0], "me for sid broke it": [65535, 0], "for sid broke it aunt": [65535, 0], "sid broke it aunt polly": [65535, 0], "broke it aunt polly paused": [65535, 0], "it aunt polly paused perplexed": [65535, 0], "aunt polly paused perplexed and": [65535, 0], "polly paused perplexed and tom": [65535, 0], "paused perplexed and tom looked": [65535, 0], "perplexed and tom looked for": [65535, 0], "and tom looked for healing": [65535, 0], "tom looked for healing pity": [65535, 0], "looked for healing pity but": [65535, 0], "for healing pity but when": [65535, 0], "healing pity but when she": [65535, 0], "pity but when she got": [65535, 0], "but when she got her": [65535, 0], "when she got her tongue": [65535, 0], "she got her tongue again": [65535, 0], "got her tongue again she": [65535, 0], "her tongue again she only": [65535, 0], "tongue again she only said": [65535, 0], "again she only said umf": [65535, 0], "she only said umf well": [65535, 0], "only said umf well you": [65535, 0], "said umf well you didn't": [65535, 0], "umf well you didn't get": [65535, 0], "well you didn't get a": [65535, 0], "you didn't get a lick": [65535, 0], "didn't get a lick amiss": [65535, 0], "get a lick amiss i": [65535, 0], "a lick amiss i reckon": [65535, 0], "lick amiss i reckon you": [65535, 0], "amiss i reckon you been": [65535, 0], "i reckon you been into": [65535, 0], "reckon you been into some": [65535, 0], "you been into some other": [65535, 0], "been into some other audacious": [65535, 0], "into some other audacious mischief": [65535, 0], "some other audacious mischief when": [65535, 0], "other audacious mischief when i": [65535, 0], "audacious mischief when i wasn't": [65535, 0], "mischief when i wasn't around": [65535, 0], "when i wasn't around like": [65535, 0], "i wasn't around like enough": [65535, 0], "wasn't around like enough then": [65535, 0], "around like enough then her": [65535, 0], "like enough then her conscience": [65535, 0], "enough then her conscience reproached": [65535, 0], "then her conscience reproached her": [65535, 0], "her conscience reproached her and": [65535, 0], "conscience reproached her and she": [65535, 0], "reproached her and she yearned": [65535, 0], "her and she yearned to": [65535, 0], "and she yearned to say": [65535, 0], "she yearned to say something": [65535, 0], "yearned to say something kind": [65535, 0], "to say something kind and": [65535, 0], "say something kind and loving": [65535, 0], "something kind and loving but": [65535, 0], "kind and loving but she": [65535, 0], "and loving but she judged": [65535, 0], "loving but she judged that": [65535, 0], "but she judged that this": [65535, 0], "she judged that this would": [65535, 0], "judged that this would be": [65535, 0], "that this would be construed": [65535, 0], "this would be construed into": [65535, 0], "would be construed into a": [65535, 0], "be construed into a confession": [65535, 0], "construed into a confession that": [65535, 0], "into a confession that she": [65535, 0], "a confession that she had": [65535, 0], "confession that she had been": [65535, 0], "that she had been in": [65535, 0], "she had been in the": [65535, 0], "had been in the wrong": [65535, 0], "been in the wrong and": [65535, 0], "in the wrong and discipline": [65535, 0], "the wrong and discipline forbade": [65535, 0], "wrong and discipline forbade that": [65535, 0], "and discipline forbade that so": [65535, 0], "discipline forbade that so she": [65535, 0], "forbade that so she kept": [65535, 0], "that so she kept silence": [65535, 0], "so she kept silence and": [65535, 0], "she kept silence and went": [65535, 0], "kept silence and went about": [65535, 0], "silence and went about her": [65535, 0], "and went about her affairs": [65535, 0], "went about her affairs with": [65535, 0], "about her affairs with a": [65535, 0], "her affairs with a troubled": [65535, 0], "affairs with a troubled heart": [65535, 0], "with a troubled heart tom": [65535, 0], "a troubled heart tom sulked": [65535, 0], "troubled heart tom sulked in": [65535, 0], "heart tom sulked in a": [65535, 0], "tom sulked in a corner": [65535, 0], "sulked in a corner and": [65535, 0], "in a corner and exalted": [65535, 0], "a corner and exalted his": [65535, 0], "corner and exalted his woes": [65535, 0], "and exalted his woes he": [65535, 0], "exalted his woes he knew": [65535, 0], "his woes he knew that": [65535, 0], "woes he knew that in": [65535, 0], "he knew that in her": [65535, 0], "knew that in her heart": [65535, 0], "that in her heart his": [65535, 0], "in her heart his aunt": [65535, 0], "her heart his aunt was": [65535, 0], "heart his aunt was on": [65535, 0], "his aunt was on her": [65535, 0], "aunt was on her knees": [65535, 0], "was on her knees to": [65535, 0], "on her knees to him": [65535, 0], "her knees to him and": [65535, 0], "knees to him and he": [65535, 0], "to him and he was": [65535, 0], "him and he was morosely": [65535, 0], "and he was morosely gratified": [65535, 0], "he was morosely gratified by": [65535, 0], "was morosely gratified by the": [65535, 0], "morosely gratified by the consciousness": [65535, 0], "gratified by the consciousness of": [65535, 0], "by the consciousness of it": [65535, 0], "the consciousness of it he": [65535, 0], "consciousness of it he would": [65535, 0], "of it he would hang": [65535, 0], "it he would hang out": [65535, 0], "he would hang out no": [65535, 0], "would hang out no signals": [65535, 0], "hang out no signals he": [65535, 0], "out no signals he would": [65535, 0], "no signals he would take": [65535, 0], "signals he would take notice": [65535, 0], "he would take notice of": [65535, 0], "would take notice of none": [65535, 0], "take notice of none he": [65535, 0], "notice of none he knew": [65535, 0], "of none he knew that": [65535, 0], "none he knew that a": [65535, 0], "he knew that a yearning": [65535, 0], "knew that a yearning glance": [65535, 0], "that a yearning glance fell": [65535, 0], "a yearning glance fell upon": [65535, 0], "yearning glance fell upon him": [65535, 0], "glance fell upon him now": [65535, 0], "fell upon him now and": [65535, 0], "upon him now and then": [65535, 0], "him now and then through": [65535, 0], "now and then through a": [65535, 0], "and then through a film": [65535, 0], "then through a film of": [65535, 0], "through a film of tears": [65535, 0], "a film of tears but": [65535, 0], "film of tears but he": [65535, 0], "of tears but he refused": [65535, 0], "tears but he refused recognition": [65535, 0], "but he refused recognition of": [65535, 0], "he refused recognition of it": [65535, 0], "refused recognition of it he": [65535, 0], "recognition of it he pictured": [65535, 0], "of it he pictured himself": [65535, 0], "it he pictured himself lying": [65535, 0], "he pictured himself lying sick": [65535, 0], "pictured himself lying sick unto": [65535, 0], "himself lying sick unto death": [65535, 0], "lying sick unto death and": [65535, 0], "sick unto death and his": [65535, 0], "unto death and his aunt": [65535, 0], "death and his aunt bending": [65535, 0], "and his aunt bending over": [65535, 0], "his aunt bending over him": [65535, 0], "aunt bending over him beseeching": [65535, 0], "bending over him beseeching one": [65535, 0], "over him beseeching one little": [65535, 0], "him beseeching one little forgiving": [65535, 0], "beseeching one little forgiving word": [65535, 0], "one little forgiving word but": [65535, 0], "little forgiving word but he": [65535, 0], "forgiving word but he would": [65535, 0], "word but he would turn": [65535, 0], "but he would turn his": [65535, 0], "he would turn his face": [65535, 0], "would turn his face to": [65535, 0], "turn his face to the": [65535, 0], "his face to the wall": [65535, 0], "face to the wall and": [65535, 0], "to the wall and die": [65535, 0], "the wall and die with": [65535, 0], "wall and die with that": [65535, 0], "and die with that word": [65535, 0], "die with that word unsaid": [65535, 0], "with that word unsaid ah": [65535, 0], "that word unsaid ah how": [65535, 0], "word unsaid ah how would": [65535, 0], "unsaid ah how would she": [65535, 0], "ah how would she feel": [65535, 0], "how would she feel then": [65535, 0], "would she feel then and": [65535, 0], "she feel then and he": [65535, 0], "feel then and he pictured": [65535, 0], "then and he pictured himself": [65535, 0], "and he pictured himself brought": [65535, 0], "he pictured himself brought home": [65535, 0], "pictured himself brought home from": [65535, 0], "himself brought home from the": [65535, 0], "brought home from the river": [65535, 0], "home from the river dead": [65535, 0], "from the river dead with": [65535, 0], "the river dead with his": [65535, 0], "river dead with his curls": [65535, 0], "dead with his curls all": [65535, 0], "with his curls all wet": [65535, 0], "his curls all wet and": [65535, 0], "curls all wet and his": [65535, 0], "all wet and his sore": [65535, 0], "wet and his sore heart": [65535, 0], "and his sore heart at": [65535, 0], "his sore heart at rest": [65535, 0], "sore heart at rest how": [65535, 0], "heart at rest how she": [65535, 0], "at rest how she would": [65535, 0], "rest how she would throw": [65535, 0], "how she would throw herself": [65535, 0], "she would throw herself upon": [65535, 0], "would throw herself upon him": [65535, 0], "throw herself upon him and": [65535, 0], "herself upon him and how": [65535, 0], "upon him and how her": [65535, 0], "him and how her tears": [65535, 0], "and how her tears would": [65535, 0], "how her tears would fall": [65535, 0], "her tears would fall like": [65535, 0], "tears would fall like rain": [65535, 0], "would fall like rain and": [65535, 0], "fall like rain and her": [65535, 0], "like rain and her lips": [65535, 0], "rain and her lips pray": [65535, 0], "and her lips pray god": [65535, 0], "her lips pray god to": [65535, 0], "lips pray god to give": [65535, 0], "pray god to give her": [65535, 0], "god to give her back": [65535, 0], "to give her back her": [65535, 0], "give her back her boy": [65535, 0], "her back her boy and": [65535, 0], "back her boy and she": [65535, 0], "her boy and she would": [65535, 0], "boy and she would never": [65535, 0], "and she would never never": [65535, 0], "she would never never abuse": [65535, 0], "would never never abuse him": [65535, 0], "never never abuse him any": [65535, 0], "never abuse him any more": [65535, 0], "abuse him any more but": [65535, 0], "him any more but he": [65535, 0], "any more but he would": [65535, 0], "more but he would lie": [65535, 0], "but he would lie there": [65535, 0], "he would lie there cold": [65535, 0], "would lie there cold and": [65535, 0], "lie there cold and white": [65535, 0], "there cold and white and": [65535, 0], "cold and white and make": [65535, 0], "and white and make no": [65535, 0], "white and make no sign": [65535, 0], "and make no sign a": [65535, 0], "make no sign a poor": [65535, 0], "no sign a poor little": [65535, 0], "sign a poor little sufferer": [65535, 0], "a poor little sufferer whose": [65535, 0], "poor little sufferer whose griefs": [65535, 0], "little sufferer whose griefs were": [65535, 0], "sufferer whose griefs were at": [65535, 0], "whose griefs were at an": [65535, 0], "griefs were at an end": [65535, 0], "were at an end he": [65535, 0], "at an end he so": [65535, 0], "an end he so worked": [65535, 0], "end he so worked upon": [65535, 0], "he so worked upon his": [65535, 0], "so worked upon his feelings": [65535, 0], "worked upon his feelings with": [65535, 0], "upon his feelings with the": [65535, 0], "his feelings with the pathos": [65535, 0], "feelings with the pathos of": [65535, 0], "with the pathos of these": [65535, 0], "the pathos of these dreams": [65535, 0], "pathos of these dreams that": [65535, 0], "of these dreams that he": [65535, 0], "these dreams that he had": [65535, 0], "dreams that he had to": [65535, 0], "that he had to keep": [65535, 0], "he had to keep swallowing": [65535, 0], "had to keep swallowing he": [65535, 0], "to keep swallowing he was": [65535, 0], "keep swallowing he was so": [65535, 0], "swallowing he was so like": [65535, 0], "he was so like to": [65535, 0], "was so like to choke": [65535, 0], "so like to choke and": [65535, 0], "like to choke and his": [65535, 0], "to choke and his eyes": [65535, 0], "choke and his eyes swam": [65535, 0], "and his eyes swam in": [65535, 0], "his eyes swam in a": [65535, 0], "eyes swam in a blur": [65535, 0], "swam in a blur of": [65535, 0], "in a blur of water": [65535, 0], "a blur of water which": [65535, 0], "blur of water which overflowed": [65535, 0], "of water which overflowed when": [65535, 0], "water which overflowed when he": [65535, 0], "which overflowed when he winked": [65535, 0], "overflowed when he winked and": [65535, 0], "when he winked and ran": [65535, 0], "he winked and ran down": [65535, 0], "winked and ran down and": [65535, 0], "and ran down and trickled": [65535, 0], "ran down and trickled from": [65535, 0], "down and trickled from the": [65535, 0], "and trickled from the end": [65535, 0], "trickled from the end of": [65535, 0], "from the end of his": [65535, 0], "the end of his nose": [65535, 0], "end of his nose and": [65535, 0], "of his nose and such": [65535, 0], "his nose and such a": [65535, 0], "nose and such a luxury": [65535, 0], "and such a luxury to": [65535, 0], "such a luxury to him": [65535, 0], "a luxury to him was": [65535, 0], "luxury to him was this": [65535, 0], "to him was this petting": [65535, 0], "him was this petting of": [65535, 0], "was this petting of his": [65535, 0], "this petting of his sorrows": [65535, 0], "petting of his sorrows that": [65535, 0], "of his sorrows that he": [65535, 0], "his sorrows that he could": [65535, 0], "sorrows that he could not": [65535, 0], "that he could not bear": [65535, 0], "he could not bear to": [65535, 0], "could not bear to have": [65535, 0], "not bear to have any": [65535, 0], "bear to have any worldly": [65535, 0], "to have any worldly cheeriness": [65535, 0], "have any worldly cheeriness or": [65535, 0], "any worldly cheeriness or any": [65535, 0], "worldly cheeriness or any grating": [65535, 0], "cheeriness or any grating delight": [65535, 0], "or any grating delight intrude": [65535, 0], "any grating delight intrude upon": [65535, 0], "grating delight intrude upon it": [65535, 0], "delight intrude upon it it": [65535, 0], "intrude upon it it was": [65535, 0], "upon it it was too": [65535, 0], "it it was too sacred": [65535, 0], "it was too sacred for": [65535, 0], "was too sacred for such": [65535, 0], "too sacred for such contact": [65535, 0], "sacred for such contact and": [65535, 0], "for such contact and so": [65535, 0], "such contact and so presently": [65535, 0], "contact and so presently when": [65535, 0], "and so presently when his": [65535, 0], "so presently when his cousin": [65535, 0], "presently when his cousin mary": [65535, 0], "when his cousin mary danced": [65535, 0], "his cousin mary danced in": [65535, 0], "cousin mary danced in all": [65535, 0], "mary danced in all alive": [65535, 0], "danced in all alive with": [65535, 0], "in all alive with the": [65535, 0], "all alive with the joy": [65535, 0], "alive with the joy of": [65535, 0], "with the joy of seeing": [65535, 0], "the joy of seeing home": [65535, 0], "joy of seeing home again": [65535, 0], "of seeing home again after": [65535, 0], "seeing home again after an": [65535, 0], "home again after an age": [65535, 0], "again after an age long": [65535, 0], "after an age long visit": [65535, 0], "an age long visit of": [65535, 0], "age long visit of one": [65535, 0], "long visit of one week": [65535, 0], "visit of one week to": [65535, 0], "of one week to the": [65535, 0], "one week to the country": [65535, 0], "week to the country he": [65535, 0], "to the country he got": [65535, 0], "the country he got up": [65535, 0], "country he got up and": [65535, 0], "he got up and moved": [65535, 0], "got up and moved in": [65535, 0], "up and moved in clouds": [65535, 0], "and moved in clouds and": [65535, 0], "moved in clouds and darkness": [65535, 0], "in clouds and darkness out": [65535, 0], "clouds and darkness out at": [65535, 0], "and darkness out at one": [65535, 0], "darkness out at one door": [65535, 0], "out at one door as": [65535, 0], "at one door as she": [65535, 0], "one door as she brought": [65535, 0], "door as she brought song": [65535, 0], "as she brought song and": [65535, 0], "she brought song and sunshine": [65535, 0], "brought song and sunshine in": [65535, 0], "song and sunshine in at": [65535, 0], "and sunshine in at the": [65535, 0], "sunshine in at the other": [65535, 0], "in at the other he": [65535, 0], "at the other he wandered": [65535, 0], "the other he wandered far": [65535, 0], "other he wandered far from": [65535, 0], "he wandered far from the": [65535, 0], "wandered far from the accustomed": [65535, 0], "far from the accustomed haunts": [65535, 0], "from the accustomed haunts of": [65535, 0], "the accustomed haunts of boys": [65535, 0], "accustomed haunts of boys and": [65535, 0], "haunts of boys and sought": [65535, 0], "of boys and sought desolate": [65535, 0], "boys and sought desolate places": [65535, 0], "and sought desolate places that": [65535, 0], "sought desolate places that were": [65535, 0], "desolate places that were in": [65535, 0], "places that were in harmony": [65535, 0], "that were in harmony with": [65535, 0], "were in harmony with his": [65535, 0], "in harmony with his spirit": [65535, 0], "harmony with his spirit a": [65535, 0], "with his spirit a log": [65535, 0], "his spirit a log raft": [65535, 0], "spirit a log raft in": [65535, 0], "a log raft in the": [65535, 0], "log raft in the river": [65535, 0], "raft in the river invited": [65535, 0], "in the river invited him": [65535, 0], "the river invited him and": [65535, 0], "river invited him and he": [65535, 0], "invited him and he seated": [65535, 0], "him and he seated himself": [65535, 0], "and he seated himself on": [65535, 0], "he seated himself on its": [65535, 0], "seated himself on its outer": [65535, 0], "himself on its outer edge": [65535, 0], "on its outer edge and": [65535, 0], "its outer edge and contemplated": [65535, 0], "outer edge and contemplated the": [65535, 0], "edge and contemplated the dreary": [65535, 0], "and contemplated the dreary vastness": [65535, 0], "contemplated the dreary vastness of": [65535, 0], "the dreary vastness of the": [65535, 0], "dreary vastness of the stream": [65535, 0], "vastness of the stream wishing": [65535, 0], "of the stream wishing the": [65535, 0], "the stream wishing the while": [65535, 0], "stream wishing the while that": [65535, 0], "wishing the while that he": [65535, 0], "the while that he could": [65535, 0], "while that he could only": [65535, 0], "that he could only be": [65535, 0], "he could only be drowned": [65535, 0], "could only be drowned all": [65535, 0], "only be drowned all at": [65535, 0], "be drowned all at once": [65535, 0], "drowned all at once and": [65535, 0], "all at once and unconsciously": [65535, 0], "at once and unconsciously without": [65535, 0], "once and unconsciously without undergoing": [65535, 0], "and unconsciously without undergoing the": [65535, 0], "unconsciously without undergoing the uncomfortable": [65535, 0], "without undergoing the uncomfortable routine": [65535, 0], "undergoing the uncomfortable routine devised": [65535, 0], "the uncomfortable routine devised by": [65535, 0], "uncomfortable routine devised by nature": [65535, 0], "routine devised by nature then": [65535, 0], "devised by nature then he": [65535, 0], "by nature then he thought": [65535, 0], "nature then he thought of": [65535, 0], "then he thought of his": [65535, 0], "he thought of his flower": [65535, 0], "thought of his flower he": [65535, 0], "of his flower he got": [65535, 0], "his flower he got it": [65535, 0], "flower he got it out": [65535, 0], "he got it out rumpled": [65535, 0], "got it out rumpled and": [65535, 0], "it out rumpled and wilted": [65535, 0], "out rumpled and wilted and": [65535, 0], "rumpled and wilted and it": [65535, 0], "and wilted and it mightily": [65535, 0], "wilted and it mightily increased": [65535, 0], "and it mightily increased his": [65535, 0], "it mightily increased his dismal": [65535, 0], "mightily increased his dismal felicity": [65535, 0], "increased his dismal felicity he": [65535, 0], "his dismal felicity he wondered": [65535, 0], "dismal felicity he wondered if": [65535, 0], "felicity he wondered if she": [65535, 0], "he wondered if she would": [65535, 0], "wondered if she would pity": [65535, 0], "if she would pity him": [65535, 0], "she would pity him if": [65535, 0], "would pity him if she": [65535, 0], "pity him if she knew": [65535, 0], "him if she knew would": [65535, 0], "if she knew would she": [65535, 0], "she knew would she cry": [65535, 0], "knew would she cry and": [65535, 0], "would she cry and wish": [65535, 0], "she cry and wish that": [65535, 0], "cry and wish that she": [65535, 0], "and wish that she had": [65535, 0], "wish that she had a": [65535, 0], "that she had a right": [65535, 0], "she had a right to": [65535, 0], "had a right to put": [65535, 0], "a right to put her": [65535, 0], "right to put her arms": [65535, 0], "to put her arms around": [65535, 0], "put her arms around his": [65535, 0], "her arms around his neck": [65535, 0], "arms around his neck and": [65535, 0], "around his neck and comfort": [65535, 0], "his neck and comfort him": [65535, 0], "neck and comfort him or": [65535, 0], "and comfort him or would": [65535, 0], "comfort him or would she": [65535, 0], "him or would she turn": [65535, 0], "or would she turn coldly": [65535, 0], "would she turn coldly away": [65535, 0], "she turn coldly away like": [65535, 0], "turn coldly away like all": [65535, 0], "coldly away like all the": [65535, 0], "away like all the hollow": [65535, 0], "like all the hollow world": [65535, 0], "all the hollow world this": [65535, 0], "the hollow world this picture": [65535, 0], "hollow world this picture brought": [65535, 0], "world this picture brought such": [65535, 0], "this picture brought such an": [65535, 0], "picture brought such an agony": [65535, 0], "brought such an agony of": [65535, 0], "such an agony of pleasurable": [65535, 0], "an agony of pleasurable suffering": [65535, 0], "agony of pleasurable suffering that": [65535, 0], "of pleasurable suffering that he": [65535, 0], "pleasurable suffering that he worked": [65535, 0], "suffering that he worked it": [65535, 0], "that he worked it over": [65535, 0], "he worked it over and": [65535, 0], "worked it over and over": [65535, 0], "it over and over again": [65535, 0], "over and over again in": [65535, 0], "and over again in his": [65535, 0], "over again in his mind": [65535, 0], "again in his mind and": [65535, 0], "in his mind and set": [65535, 0], "his mind and set it": [65535, 0], "mind and set it up": [65535, 0], "and set it up in": [65535, 0], "set it up in new": [65535, 0], "it up in new and": [65535, 0], "up in new and varied": [65535, 0], "in new and varied lights": [65535, 0], "new and varied lights till": [65535, 0], "and varied lights till he": [65535, 0], "varied lights till he wore": [65535, 0], "lights till he wore it": [65535, 0], "till he wore it threadbare": [65535, 0], "he wore it threadbare at": [65535, 0], "wore it threadbare at last": [65535, 0], "it threadbare at last he": [65535, 0], "threadbare at last he rose": [65535, 0], "at last he rose up": [65535, 0], "last he rose up sighing": [65535, 0], "he rose up sighing and": [65535, 0], "rose up sighing and departed": [65535, 0], "up sighing and departed in": [65535, 0], "sighing and departed in the": [65535, 0], "and departed in the darkness": [65535, 0], "departed in the darkness about": [65535, 0], "in the darkness about half": [65535, 0], "the darkness about half past": [65535, 0], "darkness about half past nine": [65535, 0], "about half past nine or": [65535, 0], "half past nine or ten": [65535, 0], "past nine or ten o'clock": [65535, 0], "nine or ten o'clock he": [65535, 0], "or ten o'clock he came": [65535, 0], "ten o'clock he came along": [65535, 0], "o'clock he came along the": [65535, 0], "he came along the deserted": [65535, 0], "came along the deserted street": [65535, 0], "along the deserted street to": [65535, 0], "the deserted street to where": [65535, 0], "deserted street to where the": [65535, 0], "street to where the adored": [65535, 0], "to where the adored unknown": [65535, 0], "where the adored unknown lived": [65535, 0], "the adored unknown lived he": [65535, 0], "adored unknown lived he paused": [65535, 0], "unknown lived he paused a": [65535, 0], "lived he paused a moment": [65535, 0], "he paused a moment no": [65535, 0], "paused a moment no sound": [65535, 0], "a moment no sound fell": [65535, 0], "moment no sound fell upon": [65535, 0], "no sound fell upon his": [65535, 0], "sound fell upon his listening": [65535, 0], "fell upon his listening ear": [65535, 0], "upon his listening ear a": [65535, 0], "his listening ear a candle": [65535, 0], "listening ear a candle was": [65535, 0], "ear a candle was casting": [65535, 0], "a candle was casting a": [65535, 0], "candle was casting a dull": [65535, 0], "was casting a dull glow": [65535, 0], "casting a dull glow upon": [65535, 0], "a dull glow upon the": [65535, 0], "dull glow upon the curtain": [65535, 0], "glow upon the curtain of": [65535, 0], "upon the curtain of a": [65535, 0], "the curtain of a second": [65535, 0], "curtain of a second story": [65535, 0], "of a second story window": [65535, 0], "a second story window was": [65535, 0], "second story window was the": [65535, 0], "story window was the sacred": [65535, 0], "window was the sacred presence": [65535, 0], "was the sacred presence there": [65535, 0], "the sacred presence there he": [65535, 0], "sacred presence there he climbed": [65535, 0], "presence there he climbed the": [65535, 0], "there he climbed the fence": [65535, 0], "he climbed the fence threaded": [65535, 0], "climbed the fence threaded his": [65535, 0], "the fence threaded his stealthy": [65535, 0], "fence threaded his stealthy way": [65535, 0], "threaded his stealthy way through": [65535, 0], "his stealthy way through the": [65535, 0], "stealthy way through the plants": [65535, 0], "way through the plants till": [65535, 0], "through the plants till he": [65535, 0], "the plants till he stood": [65535, 0], "plants till he stood under": [65535, 0], "till he stood under that": [65535, 0], "he stood under that window": [65535, 0], "stood under that window he": [65535, 0], "under that window he looked": [65535, 0], "that window he looked up": [65535, 0], "window he looked up at": [65535, 0], "he looked up at it": [65535, 0], "looked up at it long": [65535, 0], "up at it long and": [65535, 0], "at it long and with": [65535, 0], "it long and with emotion": [65535, 0], "long and with emotion then": [65535, 0], "and with emotion then he": [65535, 0], "with emotion then he laid": [65535, 0], "emotion then he laid him": [65535, 0], "then he laid him down": [65535, 0], "he laid him down on": [65535, 0], "laid him down on the": [65535, 0], "him down on the ground": [65535, 0], "down on the ground under": [65535, 0], "on the ground under it": [65535, 0], "the ground under it disposing": [65535, 0], "ground under it disposing himself": [65535, 0], "under it disposing himself upon": [65535, 0], "it disposing himself upon his": [65535, 0], "disposing himself upon his back": [65535, 0], "himself upon his back with": [65535, 0], "upon his back with his": [65535, 0], "his back with his hands": [65535, 0], "back with his hands clasped": [65535, 0], "with his hands clasped upon": [65535, 0], "his hands clasped upon his": [65535, 0], "hands clasped upon his breast": [65535, 0], "clasped upon his breast and": [65535, 0], "upon his breast and holding": [65535, 0], "his breast and holding his": [65535, 0], "breast and holding his poor": [65535, 0], "and holding his poor wilted": [65535, 0], "holding his poor wilted flower": [65535, 0], "his poor wilted flower and": [65535, 0], "poor wilted flower and thus": [65535, 0], "wilted flower and thus he": [65535, 0], "flower and thus he would": [65535, 0], "and thus he would die": [65535, 0], "thus he would die out": [65535, 0], "he would die out in": [65535, 0], "would die out in the": [65535, 0], "die out in the cold": [65535, 0], "out in the cold world": [65535, 0], "in the cold world with": [65535, 0], "the cold world with no": [65535, 0], "cold world with no shelter": [65535, 0], "world with no shelter over": [65535, 0], "with no shelter over his": [65535, 0], "no shelter over his homeless": [65535, 0], "shelter over his homeless head": [65535, 0], "over his homeless head no": [65535, 0], "his homeless head no friendly": [65535, 0], "homeless head no friendly hand": [65535, 0], "head no friendly hand to": [65535, 0], "no friendly hand to wipe": [65535, 0], "friendly hand to wipe the": [65535, 0], "hand to wipe the death": [65535, 0], "to wipe the death damps": [65535, 0], "wipe the death damps from": [65535, 0], "the death damps from his": [65535, 0], "death damps from his brow": [65535, 0], "damps from his brow no": [65535, 0], "from his brow no loving": [65535, 0], "his brow no loving face": [65535, 0], "brow no loving face to": [65535, 0], "no loving face to bend": [65535, 0], "loving face to bend pityingly": [65535, 0], "face to bend pityingly over": [65535, 0], "to bend pityingly over him": [65535, 0], "bend pityingly over him when": [65535, 0], "pityingly over him when the": [65535, 0], "over him when the great": [65535, 0], "him when the great agony": [65535, 0], "when the great agony came": [65535, 0], "the great agony came and": [65535, 0], "great agony came and thus": [65535, 0], "agony came and thus she": [65535, 0], "came and thus she would": [65535, 0], "and thus she would see": [65535, 0], "thus she would see him": [65535, 0], "she would see him when": [65535, 0], "would see him when she": [65535, 0], "see him when she looked": [65535, 0], "him when she looked out": [65535, 0], "when she looked out upon": [65535, 0], "she looked out upon the": [65535, 0], "looked out upon the glad": [65535, 0], "out upon the glad morning": [65535, 0], "upon the glad morning and": [65535, 0], "the glad morning and oh": [65535, 0], "glad morning and oh would": [65535, 0], "morning and oh would she": [65535, 0], "and oh would she drop": [65535, 0], "oh would she drop one": [65535, 0], "would she drop one little": [65535, 0], "she drop one little tear": [65535, 0], "drop one little tear upon": [65535, 0], "one little tear upon his": [65535, 0], "little tear upon his poor": [65535, 0], "tear upon his poor lifeless": [65535, 0], "upon his poor lifeless form": [65535, 0], "his poor lifeless form would": [65535, 0], "poor lifeless form would she": [65535, 0], "lifeless form would she heave": [65535, 0], "form would she heave one": [65535, 0], "would she heave one little": [65535, 0], "she heave one little sigh": [65535, 0], "heave one little sigh to": [65535, 0], "one little sigh to see": [65535, 0], "little sigh to see a": [65535, 0], "sigh to see a bright": [65535, 0], "to see a bright young": [65535, 0], "see a bright young life": [65535, 0], "a bright young life so": [65535, 0], "bright young life so rudely": [65535, 0], "young life so rudely blighted": [65535, 0], "life so rudely blighted so": [65535, 0], "so rudely blighted so untimely": [65535, 0], "rudely blighted so untimely cut": [65535, 0], "blighted so untimely cut down": [65535, 0], "so untimely cut down the": [65535, 0], "untimely cut down the window": [65535, 0], "cut down the window went": [65535, 0], "down the window went up": [65535, 0], "the window went up a": [65535, 0], "window went up a maid": [65535, 0], "went up a maid servant's": [65535, 0], "up a maid servant's discordant": [65535, 0], "a maid servant's discordant voice": [65535, 0], "maid servant's discordant voice profaned": [65535, 0], "servant's discordant voice profaned the": [65535, 0], "discordant voice profaned the holy": [65535, 0], "voice profaned the holy calm": [65535, 0], "profaned the holy calm and": [65535, 0], "the holy calm and a": [65535, 0], "holy calm and a deluge": [65535, 0], "calm and a deluge of": [65535, 0], "and a deluge of water": [65535, 0], "a deluge of water drenched": [65535, 0], "deluge of water drenched the": [65535, 0], "of water drenched the prone": [65535, 0], "water drenched the prone martyr's": [65535, 0], "drenched the prone martyr's remains": [65535, 0], "the prone martyr's remains the": [65535, 0], "prone martyr's remains the strangling": [65535, 0], "martyr's remains the strangling hero": [65535, 0], "remains the strangling hero sprang": [65535, 0], "the strangling hero sprang up": [65535, 0], "strangling hero sprang up with": [65535, 0], "hero sprang up with a": [65535, 0], "sprang up with a relieving": [65535, 0], "up with a relieving snort": [65535, 0], "with a relieving snort there": [65535, 0], "a relieving snort there was": [65535, 0], "relieving snort there was a": [65535, 0], "snort there was a whiz": [65535, 0], "there was a whiz as": [65535, 0], "was a whiz as of": [65535, 0], "a whiz as of a": [65535, 0], "whiz as of a missile": [65535, 0], "as of a missile in": [65535, 0], "of a missile in the": [65535, 0], "a missile in the air": [65535, 0], "missile in the air mingled": [65535, 0], "in the air mingled with": [65535, 0], "the air mingled with the": [65535, 0], "air mingled with the murmur": [65535, 0], "mingled with the murmur of": [65535, 0], "with the murmur of a": [65535, 0], "the murmur of a curse": [65535, 0], "murmur of a curse a": [65535, 0], "of a curse a sound": [65535, 0], "a curse a sound as": [65535, 0], "curse a sound as of": [65535, 0], "a sound as of shivering": [65535, 0], "sound as of shivering glass": [65535, 0], "as of shivering glass followed": [65535, 0], "of shivering glass followed and": [65535, 0], "shivering glass followed and a": [65535, 0], "glass followed and a small": [65535, 0], "followed and a small vague": [65535, 0], "and a small vague form": [65535, 0], "a small vague form went": [65535, 0], "small vague form went over": [65535, 0], "vague form went over the": [65535, 0], "form went over the fence": [65535, 0], "went over the fence and": [65535, 0], "over the fence and shot": [65535, 0], "the fence and shot away": [65535, 0], "fence and shot away in": [65535, 0], "and shot away in the": [65535, 0], "shot away in the gloom": [65535, 0], "away in the gloom not": [65535, 0], "in the gloom not long": [65535, 0], "the gloom not long after": [65535, 0], "gloom not long after as": [65535, 0], "not long after as tom": [65535, 0], "long after as tom all": [65535, 0], "after as tom all undressed": [65535, 0], "as tom all undressed for": [65535, 0], "tom all undressed for bed": [65535, 0], "all undressed for bed was": [65535, 0], "undressed for bed was surveying": [65535, 0], "for bed was surveying his": [65535, 0], "bed was surveying his drenched": [65535, 0], "was surveying his drenched garments": [65535, 0], "surveying his drenched garments by": [65535, 0], "his drenched garments by the": [65535, 0], "drenched garments by the light": [65535, 0], "garments by the light of": [65535, 0], "by the light of a": [65535, 0], "the light of a tallow": [65535, 0], "light of a tallow dip": [65535, 0], "of a tallow dip sid": [65535, 0], "a tallow dip sid woke": [65535, 0], "tallow dip sid woke up": [65535, 0], "dip sid woke up but": [65535, 0], "sid woke up but if": [65535, 0], "woke up but if he": [65535, 0], "up but if he had": [65535, 0], "but if he had any": [65535, 0], "if he had any dim": [65535, 0], "he had any dim idea": [65535, 0], "had any dim idea of": [65535, 0], "any dim idea of making": [65535, 0], "dim idea of making any": [65535, 0], "idea of making any references": [65535, 0], "of making any references to": [65535, 0], "making any references to allusions": [65535, 0], "any references to allusions he": [65535, 0], "references to allusions he thought": [65535, 0], "to allusions he thought better": [65535, 0], "allusions he thought better of": [65535, 0], "he thought better of it": [65535, 0], "thought better of it and": [65535, 0], "better of it and held": [65535, 0], "of it and held his": [65535, 0], "it and held his peace": [65535, 0], "and held his peace for": [65535, 0], "held his peace for there": [65535, 0], "his peace for there was": [65535, 0], "peace for there was danger": [65535, 0], "for there was danger in": [65535, 0], "there was danger in tom's": [65535, 0], "was danger in tom's eye": [65535, 0], "danger in tom's eye tom": [65535, 0], "in tom's eye tom turned": [65535, 0], "tom's eye tom turned in": [65535, 0], "eye tom turned in without": [65535, 0], "tom turned in without the": [65535, 0], "turned in without the added": [65535, 0], "in without the added vexation": [65535, 0], "without the added vexation of": [65535, 0], "the added vexation of prayers": [65535, 0], "added vexation of prayers and": [65535, 0], "vexation of prayers and sid": [65535, 0], "of prayers and sid made": [65535, 0], "prayers and sid made mental": [65535, 0], "and sid made mental note": [65535, 0], "sid made mental note of": [65535, 0], "made mental note of the": [65535, 0], "mental note of the omission": [65535, 0], "tom presented himself before aunt polly": [65535, 0], "presented himself before aunt polly who": [65535, 0], "himself before aunt polly who was": [65535, 0], "before aunt polly who was sitting": [65535, 0], "aunt polly who was sitting by": [65535, 0], "polly who was sitting by an": [65535, 0], "who was sitting by an open": [65535, 0], "was sitting by an open window": [65535, 0], "sitting by an open window in": [65535, 0], "by an open window in a": [65535, 0], "an open window in a pleasant": [65535, 0], "open window in a pleasant rearward": [65535, 0], "window in a pleasant rearward apartment": [65535, 0], "in a pleasant rearward apartment which": [65535, 0], "a pleasant rearward apartment which was": [65535, 0], "pleasant rearward apartment which was bedroom": [65535, 0], "rearward apartment which was bedroom breakfast": [65535, 0], "apartment which was bedroom breakfast room": [65535, 0], "which was bedroom breakfast room dining": [65535, 0], "was bedroom breakfast room dining room": [65535, 0], "bedroom breakfast room dining room and": [65535, 0], "breakfast room dining room and library": [65535, 0], "room dining room and library combined": [65535, 0], "dining room and library combined the": [65535, 0], "room and library combined the balmy": [65535, 0], "and library combined the balmy summer": [65535, 0], "library combined the balmy summer air": [65535, 0], "combined the balmy summer air the": [65535, 0], "the balmy summer air the restful": [65535, 0], "balmy summer air the restful quiet": [65535, 0], "summer air the restful quiet the": [65535, 0], "air the restful quiet the odor": [65535, 0], "the restful quiet the odor of": [65535, 0], "restful quiet the odor of the": [65535, 0], "quiet the odor of the flowers": [65535, 0], "the odor of the flowers and": [65535, 0], "odor of the flowers and the": [65535, 0], "of the flowers and the drowsing": [65535, 0], "the flowers and the drowsing murmur": [65535, 0], "flowers and the drowsing murmur of": [65535, 0], "and the drowsing murmur of the": [65535, 0], "the drowsing murmur of the bees": [65535, 0], "drowsing murmur of the bees had": [65535, 0], "murmur of the bees had had": [65535, 0], "of the bees had had their": [65535, 0], "the bees had had their effect": [65535, 0], "bees had had their effect and": [65535, 0], "had had their effect and she": [65535, 0], "had their effect and she was": [65535, 0], "their effect and she was nodding": [65535, 0], "effect and she was nodding over": [65535, 0], "and she was nodding over her": [65535, 0], "she was nodding over her knitting": [65535, 0], "was nodding over her knitting for": [65535, 0], "nodding over her knitting for she": [65535, 0], "over her knitting for she had": [65535, 0], "her knitting for she had no": [65535, 0], "knitting for she had no company": [65535, 0], "for she had no company but": [65535, 0], "she had no company but the": [65535, 0], "had no company but the cat": [65535, 0], "no company but the cat and": [65535, 0], "company but the cat and it": [65535, 0], "but the cat and it was": [65535, 0], "the cat and it was asleep": [65535, 0], "cat and it was asleep in": [65535, 0], "and it was asleep in her": [65535, 0], "it was asleep in her lap": [65535, 0], "was asleep in her lap her": [65535, 0], "asleep in her lap her spectacles": [65535, 0], "in her lap her spectacles were": [65535, 0], "her lap her spectacles were propped": [65535, 0], "lap her spectacles were propped up": [65535, 0], "her spectacles were propped up on": [65535, 0], "spectacles were propped up on her": [65535, 0], "were propped up on her gray": [65535, 0], "propped up on her gray head": [65535, 0], "up on her gray head for": [65535, 0], "on her gray head for safety": [65535, 0], "her gray head for safety she": [65535, 0], "gray head for safety she had": [65535, 0], "head for safety she had thought": [65535, 0], "for safety she had thought that": [65535, 0], "safety she had thought that of": [65535, 0], "she had thought that of course": [65535, 0], "had thought that of course tom": [65535, 0], "thought that of course tom had": [65535, 0], "that of course tom had deserted": [65535, 0], "of course tom had deserted long": [65535, 0], "course tom had deserted long ago": [65535, 0], "tom had deserted long ago and": [65535, 0], "had deserted long ago and she": [65535, 0], "deserted long ago and she wondered": [65535, 0], "long ago and she wondered at": [65535, 0], "ago and she wondered at seeing": [65535, 0], "and she wondered at seeing him": [65535, 0], "she wondered at seeing him place": [65535, 0], "wondered at seeing him place himself": [65535, 0], "at seeing him place himself in": [65535, 0], "seeing him place himself in her": [65535, 0], "him place himself in her power": [65535, 0], "place himself in her power again": [65535, 0], "himself in her power again in": [65535, 0], "in her power again in this": [65535, 0], "her power again in this intrepid": [65535, 0], "power again in this intrepid way": [65535, 0], "again in this intrepid way he": [65535, 0], "in this intrepid way he said": [65535, 0], "this intrepid way he said mayn't": [65535, 0], "intrepid way he said mayn't i": [65535, 0], "way he said mayn't i go": [65535, 0], "he said mayn't i go and": [65535, 0], "said mayn't i go and play": [65535, 0], "mayn't i go and play now": [65535, 0], "i go and play now aunt": [65535, 0], "go and play now aunt what": [65535, 0], "and play now aunt what a'ready": [65535, 0], "play now aunt what a'ready how": [65535, 0], "now aunt what a'ready how much": [65535, 0], "aunt what a'ready how much have": [65535, 0], "what a'ready how much have you": [65535, 0], "a'ready how much have you done": [65535, 0], "how much have you done it's": [65535, 0], "much have you done it's all": [65535, 0], "have you done it's all done": [65535, 0], "you done it's all done aunt": [65535, 0], "done it's all done aunt tom": [65535, 0], "it's all done aunt tom don't": [65535, 0], "all done aunt tom don't lie": [65535, 0], "done aunt tom don't lie to": [65535, 0], "aunt tom don't lie to me": [65535, 0], "tom don't lie to me i": [65535, 0], "don't lie to me i can't": [65535, 0], "lie to me i can't bear": [65535, 0], "to me i can't bear it": [65535, 0], "me i can't bear it i": [65535, 0], "i can't bear it i ain't": [65535, 0], "can't bear it i ain't aunt": [65535, 0], "bear it i ain't aunt it": [65535, 0], "it i ain't aunt it is": [65535, 0], "i ain't aunt it is all": [65535, 0], "ain't aunt it is all done": [65535, 0], "aunt it is all done aunt": [65535, 0], "it is all done aunt polly": [65535, 0], "is all done aunt polly placed": [65535, 0], "all done aunt polly placed small": [65535, 0], "done aunt polly placed small trust": [65535, 0], "aunt polly placed small trust in": [65535, 0], "polly placed small trust in such": [65535, 0], "placed small trust in such evidence": [65535, 0], "small trust in such evidence she": [65535, 0], "trust in such evidence she went": [65535, 0], "in such evidence she went out": [65535, 0], "such evidence she went out to": [65535, 0], "evidence she went out to see": [65535, 0], "she went out to see for": [65535, 0], "went out to see for herself": [65535, 0], "out to see for herself and": [65535, 0], "to see for herself and she": [65535, 0], "see for herself and she would": [65535, 0], "for herself and she would have": [65535, 0], "herself and she would have been": [65535, 0], "and she would have been content": [65535, 0], "she would have been content to": [65535, 0], "would have been content to find": [65535, 0], "have been content to find twenty": [65535, 0], "been content to find twenty per": [65535, 0], "content to find twenty per cent": [65535, 0], "to find twenty per cent of": [65535, 0], "find twenty per cent of tom's": [65535, 0], "twenty per cent of tom's statement": [65535, 0], "per cent of tom's statement true": [65535, 0], "cent of tom's statement true when": [65535, 0], "of tom's statement true when she": [65535, 0], "tom's statement true when she found": [65535, 0], "statement true when she found the": [65535, 0], "true when she found the entire": [65535, 0], "when she found the entire fence": [65535, 0], "she found the entire fence whitewashed": [65535, 0], "found the entire fence whitewashed and": [65535, 0], "the entire fence whitewashed and not": [65535, 0], "entire fence whitewashed and not only": [65535, 0], "fence whitewashed and not only whitewashed": [65535, 0], "whitewashed and not only whitewashed but": [65535, 0], "and not only whitewashed but elaborately": [65535, 0], "not only whitewashed but elaborately coated": [65535, 0], "only whitewashed but elaborately coated and": [65535, 0], "whitewashed but elaborately coated and recoated": [65535, 0], "but elaborately coated and recoated and": [65535, 0], "elaborately coated and recoated and even": [65535, 0], "coated and recoated and even a": [65535, 0], "and recoated and even a streak": [65535, 0], "recoated and even a streak added": [65535, 0], "and even a streak added to": [65535, 0], "even a streak added to the": [65535, 0], "a streak added to the ground": [65535, 0], "streak added to the ground her": [65535, 0], "added to the ground her astonishment": [65535, 0], "to the ground her astonishment was": [65535, 0], "the ground her astonishment was almost": [65535, 0], "ground her astonishment was almost unspeakable": [65535, 0], "her astonishment was almost unspeakable she": [65535, 0], "astonishment was almost unspeakable she said": [65535, 0], "was almost unspeakable she said well": [65535, 0], "almost unspeakable she said well i": [65535, 0], "unspeakable she said well i never": [65535, 0], "she said well i never there's": [65535, 0], "said well i never there's no": [65535, 0], "well i never there's no getting": [65535, 0], "i never there's no getting round": [65535, 0], "never there's no getting round it": [65535, 0], "there's no getting round it you": [65535, 0], "no getting round it you can": [65535, 0], "getting round it you can work": [65535, 0], "round it you can work when": [65535, 0], "it you can work when you're": [65535, 0], "you can work when you're a": [65535, 0], "can work when you're a mind": [65535, 0], "work when you're a mind to": [65535, 0], "when you're a mind to tom": [65535, 0], "you're a mind to tom and": [65535, 0], "a mind to tom and then": [65535, 0], "mind to tom and then she": [65535, 0], "to tom and then she diluted": [65535, 0], "tom and then she diluted the": [65535, 0], "and then she diluted the compliment": [65535, 0], "then she diluted the compliment by": [65535, 0], "she diluted the compliment by adding": [65535, 0], "diluted the compliment by adding but": [65535, 0], "the compliment by adding but it's": [65535, 0], "compliment by adding but it's powerful": [65535, 0], "by adding but it's powerful seldom": [65535, 0], "adding but it's powerful seldom you're": [65535, 0], "but it's powerful seldom you're a": [65535, 0], "it's powerful seldom you're a mind": [65535, 0], "powerful seldom you're a mind to": [65535, 0], "seldom you're a mind to i'm": [65535, 0], "you're a mind to i'm bound": [65535, 0], "a mind to i'm bound to": [65535, 0], "mind to i'm bound to say": [65535, 0], "to i'm bound to say well": [65535, 0], "i'm bound to say well go": [65535, 0], "bound to say well go 'long": [65535, 0], "to say well go 'long and": [65535, 0], "say well go 'long and play": [65535, 0], "well go 'long and play but": [65535, 0], "go 'long and play but mind": [65535, 0], "'long and play but mind you": [65535, 0], "and play but mind you get": [65535, 0], "play but mind you get back": [65535, 0], "but mind you get back some": [65535, 0], "mind you get back some time": [65535, 0], "you get back some time in": [65535, 0], "get back some time in a": [65535, 0], "back some time in a week": [65535, 0], "some time in a week or": [65535, 0], "time in a week or i'll": [65535, 0], "in a week or i'll tan": [65535, 0], "a week or i'll tan you": [65535, 0], "week or i'll tan you she": [65535, 0], "or i'll tan you she was": [65535, 0], "i'll tan you she was so": [65535, 0], "tan you she was so overcome": [65535, 0], "you she was so overcome by": [65535, 0], "she was so overcome by the": [65535, 0], "was so overcome by the splendor": [65535, 0], "so overcome by the splendor of": [65535, 0], "overcome by the splendor of his": [65535, 0], "by the splendor of his achievement": [65535, 0], "the splendor of his achievement that": [65535, 0], "splendor of his achievement that she": [65535, 0], "of his achievement that she took": [65535, 0], "his achievement that she took him": [65535, 0], "achievement that she took him into": [65535, 0], "that she took him into the": [65535, 0], "she took him into the closet": [65535, 0], "took him into the closet and": [65535, 0], "him into the closet and selected": [65535, 0], "into the closet and selected a": [65535, 0], "the closet and selected a choice": [65535, 0], "closet and selected a choice apple": [65535, 0], "and selected a choice apple and": [65535, 0], "selected a choice apple and delivered": [65535, 0], "a choice apple and delivered it": [65535, 0], "choice apple and delivered it to": [65535, 0], "apple and delivered it to him": [65535, 0], "and delivered it to him along": [65535, 0], "delivered it to him along with": [65535, 0], "it to him along with an": [65535, 0], "to him along with an improving": [65535, 0], "him along with an improving lecture": [65535, 0], "along with an improving lecture upon": [65535, 0], "with an improving lecture upon the": [65535, 0], "an improving lecture upon the added": [65535, 0], "improving lecture upon the added value": [65535, 0], "lecture upon the added value and": [65535, 0], "upon the added value and flavor": [65535, 0], "the added value and flavor a": [65535, 0], "added value and flavor a treat": [65535, 0], "value and flavor a treat took": [65535, 0], "and flavor a treat took to": [65535, 0], "flavor a treat took to itself": [65535, 0], "a treat took to itself when": [65535, 0], "treat took to itself when it": [65535, 0], "took to itself when it came": [65535, 0], "to itself when it came without": [65535, 0], "itself when it came without sin": [65535, 0], "when it came without sin through": [65535, 0], "it came without sin through virtuous": [65535, 0], "came without sin through virtuous effort": [65535, 0], "without sin through virtuous effort and": [65535, 0], "sin through virtuous effort and while": [65535, 0], "through virtuous effort and while she": [65535, 0], "virtuous effort and while she closed": [65535, 0], "effort and while she closed with": [65535, 0], "and while she closed with a": [65535, 0], "while she closed with a happy": [65535, 0], "she closed with a happy scriptural": [65535, 0], "closed with a happy scriptural flourish": [65535, 0], "with a happy scriptural flourish he": [65535, 0], "a happy scriptural flourish he hooked": [65535, 0], "happy scriptural flourish he hooked a": [65535, 0], "scriptural flourish he hooked a doughnut": [65535, 0], "flourish he hooked a doughnut then": [65535, 0], "he hooked a doughnut then he": [65535, 0], "hooked a doughnut then he skipped": [65535, 0], "a doughnut then he skipped out": [65535, 0], "doughnut then he skipped out and": [65535, 0], "then he skipped out and saw": [65535, 0], "he skipped out and saw sid": [65535, 0], "skipped out and saw sid just": [65535, 0], "out and saw sid just starting": [65535, 0], "and saw sid just starting up": [65535, 0], "saw sid just starting up the": [65535, 0], "sid just starting up the outside": [65535, 0], "just starting up the outside stairway": [65535, 0], "starting up the outside stairway that": [65535, 0], "up the outside stairway that led": [65535, 0], "the outside stairway that led to": [65535, 0], "outside stairway that led to the": [65535, 0], "stairway that led to the back": [65535, 0], "that led to the back rooms": [65535, 0], "led to the back rooms on": [65535, 0], "to the back rooms on the": [65535, 0], "the back rooms on the second": [65535, 0], "back rooms on the second floor": [65535, 0], "rooms on the second floor clods": [65535, 0], "on the second floor clods were": [65535, 0], "the second floor clods were handy": [65535, 0], "second floor clods were handy and": [65535, 0], "floor clods were handy and the": [65535, 0], "clods were handy and the air": [65535, 0], "were handy and the air was": [65535, 0], "handy and the air was full": [65535, 0], "and the air was full of": [65535, 0], "the air was full of them": [65535, 0], "air was full of them in": [65535, 0], "was full of them in a": [65535, 0], "full of them in a twinkling": [65535, 0], "of them in a twinkling they": [65535, 0], "them in a twinkling they raged": [65535, 0], "in a twinkling they raged around": [65535, 0], "a twinkling they raged around sid": [65535, 0], "twinkling they raged around sid like": [65535, 0], "they raged around sid like a": [65535, 0], "raged around sid like a hail": [65535, 0], "around sid like a hail storm": [65535, 0], "sid like a hail storm and": [65535, 0], "like a hail storm and before": [65535, 0], "a hail storm and before aunt": [65535, 0], "hail storm and before aunt polly": [65535, 0], "storm and before aunt polly could": [65535, 0], "and before aunt polly could collect": [65535, 0], "before aunt polly could collect her": [65535, 0], "aunt polly could collect her surprised": [65535, 0], "polly could collect her surprised faculties": [65535, 0], "could collect her surprised faculties and": [65535, 0], "collect her surprised faculties and sally": [65535, 0], "her surprised faculties and sally to": [65535, 0], "surprised faculties and sally to the": [65535, 0], "faculties and sally to the rescue": [65535, 0], "and sally to the rescue six": [65535, 0], "sally to the rescue six or": [65535, 0], "to the rescue six or seven": [65535, 0], "the rescue six or seven clods": [65535, 0], "rescue six or seven clods had": [65535, 0], "six or seven clods had taken": [65535, 0], "or seven clods had taken personal": [65535, 0], "seven clods had taken personal effect": [65535, 0], "clods had taken personal effect and": [65535, 0], "had taken personal effect and tom": [65535, 0], "taken personal effect and tom was": [65535, 0], "personal effect and tom was over": [65535, 0], "effect and tom was over the": [65535, 0], "and tom was over the fence": [65535, 0], "tom was over the fence and": [65535, 0], "was over the fence and gone": [65535, 0], "over the fence and gone there": [65535, 0], "the fence and gone there was": [65535, 0], "fence and gone there was a": [65535, 0], "and gone there was a gate": [65535, 0], "gone there was a gate but": [65535, 0], "there was a gate but as": [65535, 0], "was a gate but as a": [65535, 0], "a gate but as a general": [65535, 0], "gate but as a general thing": [65535, 0], "but as a general thing he": [65535, 0], "as a general thing he was": [65535, 0], "a general thing he was too": [65535, 0], "general thing he was too crowded": [65535, 0], "thing he was too crowded for": [65535, 0], "he was too crowded for time": [65535, 0], "was too crowded for time to": [65535, 0], "too crowded for time to make": [65535, 0], "crowded for time to make use": [65535, 0], "for time to make use of": [65535, 0], "time to make use of it": [65535, 0], "to make use of it his": [65535, 0], "make use of it his soul": [65535, 0], "use of it his soul was": [65535, 0], "of it his soul was at": [65535, 0], "it his soul was at peace": [65535, 0], "his soul was at peace now": [65535, 0], "soul was at peace now that": [65535, 0], "was at peace now that he": [65535, 0], "at peace now that he had": [65535, 0], "peace now that he had settled": [65535, 0], "now that he had settled with": [65535, 0], "that he had settled with sid": [65535, 0], "he had settled with sid for": [65535, 0], "had settled with sid for calling": [65535, 0], "settled with sid for calling attention": [65535, 0], "with sid for calling attention to": [65535, 0], "sid for calling attention to his": [65535, 0], "for calling attention to his black": [65535, 0], "calling attention to his black thread": [65535, 0], "attention to his black thread and": [65535, 0], "to his black thread and getting": [65535, 0], "his black thread and getting him": [65535, 0], "black thread and getting him into": [65535, 0], "thread and getting him into trouble": [65535, 0], "and getting him into trouble tom": [65535, 0], "getting him into trouble tom skirted": [65535, 0], "him into trouble tom skirted the": [65535, 0], "into trouble tom skirted the block": [65535, 0], "trouble tom skirted the block and": [65535, 0], "tom skirted the block and came": [65535, 0], "skirted the block and came round": [65535, 0], "the block and came round into": [65535, 0], "block and came round into a": [65535, 0], "and came round into a muddy": [65535, 0], "came round into a muddy alley": [65535, 0], "round into a muddy alley that": [65535, 0], "into a muddy alley that led": [65535, 0], "a muddy alley that led by": [65535, 0], "muddy alley that led by the": [65535, 0], "alley that led by the back": [65535, 0], "that led by the back of": [65535, 0], "led by the back of his": [65535, 0], "by the back of his aunt's": [65535, 0], "the back of his aunt's cowstable": [65535, 0], "back of his aunt's cowstable he": [65535, 0], "of his aunt's cowstable he presently": [65535, 0], "his aunt's cowstable he presently got": [65535, 0], "aunt's cowstable he presently got safely": [65535, 0], "cowstable he presently got safely beyond": [65535, 0], "he presently got safely beyond the": [65535, 0], "presently got safely beyond the reach": [65535, 0], "got safely beyond the reach of": [65535, 0], "safely beyond the reach of capture": [65535, 0], "beyond the reach of capture and": [65535, 0], "the reach of capture and punishment": [65535, 0], "reach of capture and punishment and": [65535, 0], "of capture and punishment and hastened": [65535, 0], "capture and punishment and hastened toward": [65535, 0], "and punishment and hastened toward the": [65535, 0], "punishment and hastened toward the public": [65535, 0], "and hastened toward the public square": [65535, 0], "hastened toward the public square of": [65535, 0], "toward the public square of the": [65535, 0], "the public square of the village": [65535, 0], "public square of the village where": [65535, 0], "square of the village where two": [65535, 0], "of the village where two military": [65535, 0], "the village where two military companies": [65535, 0], "village where two military companies of": [65535, 0], "where two military companies of boys": [65535, 0], "two military companies of boys had": [65535, 0], "military companies of boys had met": [65535, 0], "companies of boys had met for": [65535, 0], "of boys had met for conflict": [65535, 0], "boys had met for conflict according": [65535, 0], "had met for conflict according to": [65535, 0], "met for conflict according to previous": [65535, 0], "for conflict according to previous appointment": [65535, 0], "conflict according to previous appointment tom": [65535, 0], "according to previous appointment tom was": [65535, 0], "to previous appointment tom was general": [65535, 0], "previous appointment tom was general of": [65535, 0], "appointment tom was general of one": [65535, 0], "tom was general of one of": [65535, 0], "was general of one of these": [65535, 0], "general of one of these armies": [65535, 0], "of one of these armies joe": [65535, 0], "one of these armies joe harper": [65535, 0], "of these armies joe harper a": [65535, 0], "these armies joe harper a bosom": [65535, 0], "armies joe harper a bosom friend": [65535, 0], "joe harper a bosom friend general": [65535, 0], "harper a bosom friend general of": [65535, 0], "a bosom friend general of the": [65535, 0], "bosom friend general of the other": [65535, 0], "friend general of the other these": [65535, 0], "general of the other these two": [65535, 0], "of the other these two great": [65535, 0], "the other these two great commanders": [65535, 0], "other these two great commanders did": [65535, 0], "these two great commanders did not": [65535, 0], "two great commanders did not condescend": [65535, 0], "great commanders did not condescend to": [65535, 0], "commanders did not condescend to fight": [65535, 0], "did not condescend to fight in": [65535, 0], "not condescend to fight in person": [65535, 0], "condescend to fight in person that": [65535, 0], "to fight in person that being": [65535, 0], "fight in person that being better": [65535, 0], "in person that being better suited": [65535, 0], "person that being better suited to": [65535, 0], "that being better suited to the": [65535, 0], "being better suited to the still": [65535, 0], "better suited to the still smaller": [65535, 0], "suited to the still smaller fry": [65535, 0], "to the still smaller fry but": [65535, 0], "the still smaller fry but sat": [65535, 0], "still smaller fry but sat together": [65535, 0], "smaller fry but sat together on": [65535, 0], "fry but sat together on an": [65535, 0], "but sat together on an eminence": [65535, 0], "sat together on an eminence and": [65535, 0], "together on an eminence and conducted": [65535, 0], "on an eminence and conducted the": [65535, 0], "an eminence and conducted the field": [65535, 0], "eminence and conducted the field operations": [65535, 0], "and conducted the field operations by": [65535, 0], "conducted the field operations by orders": [65535, 0], "the field operations by orders delivered": [65535, 0], "field operations by orders delivered through": [65535, 0], "operations by orders delivered through aides": [65535, 0], "by orders delivered through aides de": [65535, 0], "orders delivered through aides de camp": [65535, 0], "delivered through aides de camp tom's": [65535, 0], "through aides de camp tom's army": [65535, 0], "aides de camp tom's army won": [65535, 0], "de camp tom's army won a": [65535, 0], "camp tom's army won a great": [65535, 0], "tom's army won a great victory": [65535, 0], "army won a great victory after": [65535, 0], "won a great victory after a": [65535, 0], "a great victory after a long": [65535, 0], "great victory after a long and": [65535, 0], "victory after a long and hard": [65535, 0], "after a long and hard fought": [65535, 0], "a long and hard fought battle": [65535, 0], "long and hard fought battle then": [65535, 0], "and hard fought battle then the": [65535, 0], "hard fought battle then the dead": [65535, 0], "fought battle then the dead were": [65535, 0], "battle then the dead were counted": [65535, 0], "then the dead were counted prisoners": [65535, 0], "the dead were counted prisoners exchanged": [65535, 0], "dead were counted prisoners exchanged the": [65535, 0], "were counted prisoners exchanged the terms": [65535, 0], "counted prisoners exchanged the terms of": [65535, 0], "prisoners exchanged the terms of the": [65535, 0], "exchanged the terms of the next": [65535, 0], "the terms of the next disagreement": [65535, 0], "terms of the next disagreement agreed": [65535, 0], "of the next disagreement agreed upon": [65535, 0], "the next disagreement agreed upon and": [65535, 0], "next disagreement agreed upon and the": [65535, 0], "disagreement agreed upon and the day": [65535, 0], "agreed upon and the day for": [65535, 0], "upon and the day for the": [65535, 0], "and the day for the necessary": [65535, 0], "the day for the necessary battle": [65535, 0], "day for the necessary battle appointed": [65535, 0], "for the necessary battle appointed after": [65535, 0], "the necessary battle appointed after which": [65535, 0], "necessary battle appointed after which the": [65535, 0], "battle appointed after which the armies": [65535, 0], "appointed after which the armies fell": [65535, 0], "after which the armies fell into": [65535, 0], "which the armies fell into line": [65535, 0], "the armies fell into line and": [65535, 0], "armies fell into line and marched": [65535, 0], "fell into line and marched away": [65535, 0], "into line and marched away and": [65535, 0], "line and marched away and tom": [65535, 0], "and marched away and tom turned": [65535, 0], "marched away and tom turned homeward": [65535, 0], "away and tom turned homeward alone": [65535, 0], "and tom turned homeward alone as": [65535, 0], "tom turned homeward alone as he": [65535, 0], "turned homeward alone as he was": [65535, 0], "homeward alone as he was passing": [65535, 0], "alone as he was passing by": [65535, 0], "as he was passing by the": [65535, 0], "he was passing by the house": [65535, 0], "was passing by the house where": [65535, 0], "passing by the house where jeff": [65535, 0], "by the house where jeff thatcher": [65535, 0], "the house where jeff thatcher lived": [65535, 0], "house where jeff thatcher lived he": [65535, 0], "where jeff thatcher lived he saw": [65535, 0], "jeff thatcher lived he saw a": [65535, 0], "thatcher lived he saw a new": [65535, 0], "lived he saw a new girl": [65535, 0], "he saw a new girl in": [65535, 0], "saw a new girl in the": [65535, 0], "a new girl in the garden": [65535, 0], "new girl in the garden a": [65535, 0], "girl in the garden a lovely": [65535, 0], "in the garden a lovely little": [65535, 0], "the garden a lovely little blue": [65535, 0], "garden a lovely little blue eyed": [65535, 0], "a lovely little blue eyed creature": [65535, 0], "lovely little blue eyed creature with": [65535, 0], "little blue eyed creature with yellow": [65535, 0], "blue eyed creature with yellow hair": [65535, 0], "eyed creature with yellow hair plaited": [65535, 0], "creature with yellow hair plaited into": [65535, 0], "with yellow hair plaited into two": [65535, 0], "yellow hair plaited into two long": [65535, 0], "hair plaited into two long tails": [65535, 0], "plaited into two long tails white": [65535, 0], "into two long tails white summer": [65535, 0], "two long tails white summer frock": [65535, 0], "long tails white summer frock and": [65535, 0], "tails white summer frock and embroidered": [65535, 0], "white summer frock and embroidered pantalettes": [65535, 0], "summer frock and embroidered pantalettes the": [65535, 0], "frock and embroidered pantalettes the fresh": [65535, 0], "and embroidered pantalettes the fresh crowned": [65535, 0], "embroidered pantalettes the fresh crowned hero": [65535, 0], "pantalettes the fresh crowned hero fell": [65535, 0], "the fresh crowned hero fell without": [65535, 0], "fresh crowned hero fell without firing": [65535, 0], "crowned hero fell without firing a": [65535, 0], "hero fell without firing a shot": [65535, 0], "fell without firing a shot a": [65535, 0], "without firing a shot a certain": [65535, 0], "firing a shot a certain amy": [65535, 0], "a shot a certain amy lawrence": [65535, 0], "shot a certain amy lawrence vanished": [65535, 0], "a certain amy lawrence vanished out": [65535, 0], "certain amy lawrence vanished out of": [65535, 0], "amy lawrence vanished out of his": [65535, 0], "lawrence vanished out of his heart": [65535, 0], "vanished out of his heart and": [65535, 0], "out of his heart and left": [65535, 0], "of his heart and left not": [65535, 0], "his heart and left not even": [65535, 0], "heart and left not even a": [65535, 0], "and left not even a memory": [65535, 0], "left not even a memory of": [65535, 0], "not even a memory of herself": [65535, 0], "even a memory of herself behind": [65535, 0], "a memory of herself behind he": [65535, 0], "memory of herself behind he had": [65535, 0], "of herself behind he had thought": [65535, 0], "herself behind he had thought he": [65535, 0], "behind he had thought he loved": [65535, 0], "he had thought he loved her": [65535, 0], "had thought he loved her to": [65535, 0], "thought he loved her to distraction": [65535, 0], "he loved her to distraction he": [65535, 0], "loved her to distraction he had": [65535, 0], "her to distraction he had regarded": [65535, 0], "to distraction he had regarded his": [65535, 0], "distraction he had regarded his passion": [65535, 0], "he had regarded his passion as": [65535, 0], "had regarded his passion as adoration": [65535, 0], "regarded his passion as adoration and": [65535, 0], "his passion as adoration and behold": [65535, 0], "passion as adoration and behold it": [65535, 0], "as adoration and behold it was": [65535, 0], "adoration and behold it was only": [65535, 0], "and behold it was only a": [65535, 0], "behold it was only a poor": [65535, 0], "it was only a poor little": [65535, 0], "was only a poor little evanescent": [65535, 0], "only a poor little evanescent partiality": [65535, 0], "a poor little evanescent partiality he": [65535, 0], "poor little evanescent partiality he had": [65535, 0], "little evanescent partiality he had been": [65535, 0], "evanescent partiality he had been months": [65535, 0], "partiality he had been months winning": [65535, 0], "he had been months winning her": [65535, 0], "had been months winning her she": [65535, 0], "been months winning her she had": [65535, 0], "months winning her she had confessed": [65535, 0], "winning her she had confessed hardly": [65535, 0], "her she had confessed hardly a": [65535, 0], "she had confessed hardly a week": [65535, 0], "had confessed hardly a week ago": [65535, 0], "confessed hardly a week ago he": [65535, 0], "hardly a week ago he had": [65535, 0], "a week ago he had been": [65535, 0], "week ago he had been the": [65535, 0], "ago he had been the happiest": [65535, 0], "he had been the happiest and": [65535, 0], "had been the happiest and the": [65535, 0], "been the happiest and the proudest": [65535, 0], "the happiest and the proudest boy": [65535, 0], "happiest and the proudest boy in": [65535, 0], "and the proudest boy in the": [65535, 0], "the proudest boy in the world": [65535, 0], "proudest boy in the world only": [65535, 0], "boy in the world only seven": [65535, 0], "in the world only seven short": [65535, 0], "the world only seven short days": [65535, 0], "world only seven short days and": [65535, 0], "only seven short days and here": [65535, 0], "seven short days and here in": [65535, 0], "short days and here in one": [65535, 0], "days and here in one instant": [65535, 0], "and here in one instant of": [65535, 0], "here in one instant of time": [65535, 0], "in one instant of time she": [65535, 0], "one instant of time she had": [65535, 0], "instant of time she had gone": [65535, 0], "of time she had gone out": [65535, 0], "time she had gone out of": [65535, 0], "she had gone out of his": [65535, 0], "had gone out of his heart": [65535, 0], "gone out of his heart like": [65535, 0], "out of his heart like a": [65535, 0], "of his heart like a casual": [65535, 0], "his heart like a casual stranger": [65535, 0], "heart like a casual stranger whose": [65535, 0], "like a casual stranger whose visit": [65535, 0], "a casual stranger whose visit is": [65535, 0], "casual stranger whose visit is done": [65535, 0], "stranger whose visit is done he": [65535, 0], "whose visit is done he worshipped": [65535, 0], "visit is done he worshipped this": [65535, 0], "is done he worshipped this new": [65535, 0], "done he worshipped this new angel": [65535, 0], "he worshipped this new angel with": [65535, 0], "worshipped this new angel with furtive": [65535, 0], "this new angel with furtive eye": [65535, 0], "new angel with furtive eye till": [65535, 0], "angel with furtive eye till he": [65535, 0], "with furtive eye till he saw": [65535, 0], "furtive eye till he saw that": [65535, 0], "eye till he saw that she": [65535, 0], "till he saw that she had": [65535, 0], "he saw that she had discovered": [65535, 0], "saw that she had discovered him": [65535, 0], "that she had discovered him then": [65535, 0], "she had discovered him then he": [65535, 0], "had discovered him then he pretended": [65535, 0], "discovered him then he pretended he": [65535, 0], "him then he pretended he did": [65535, 0], "then he pretended he did not": [65535, 0], "he pretended he did not know": [65535, 0], "pretended he did not know she": [65535, 0], "he did not know she was": [65535, 0], "did not know she was present": [65535, 0], "not know she was present and": [65535, 0], "know she was present and began": [65535, 0], "she was present and began to": [65535, 0], "was present and began to show": [65535, 0], "present and began to show off": [65535, 0], "and began to show off in": [65535, 0], "began to show off in all": [65535, 0], "to show off in all sorts": [65535, 0], "show off in all sorts of": [65535, 0], "off in all sorts of absurd": [65535, 0], "in all sorts of absurd boyish": [65535, 0], "all sorts of absurd boyish ways": [65535, 0], "sorts of absurd boyish ways in": [65535, 0], "of absurd boyish ways in order": [65535, 0], "absurd boyish ways in order to": [65535, 0], "boyish ways in order to win": [65535, 0], "ways in order to win her": [65535, 0], "in order to win her admiration": [65535, 0], "order to win her admiration he": [65535, 0], "to win her admiration he kept": [65535, 0], "win her admiration he kept up": [65535, 0], "her admiration he kept up this": [65535, 0], "admiration he kept up this grotesque": [65535, 0], "he kept up this grotesque foolishness": [65535, 0], "kept up this grotesque foolishness for": [65535, 0], "up this grotesque foolishness for some": [65535, 0], "this grotesque foolishness for some time": [65535, 0], "grotesque foolishness for some time but": [65535, 0], "foolishness for some time but by": [65535, 0], "for some time but by and": [65535, 0], "some time but by and by": [65535, 0], "time but by and by while": [65535, 0], "but by and by while he": [65535, 0], "by and by while he was": [65535, 0], "and by while he was in": [65535, 0], "by while he was in the": [65535, 0], "while he was in the midst": [65535, 0], "he was in the midst of": [65535, 0], "was in the midst of some": [65535, 0], "in the midst of some dangerous": [65535, 0], "the midst of some dangerous gymnastic": [65535, 0], "midst of some dangerous gymnastic performances": [65535, 0], "of some dangerous gymnastic performances he": [65535, 0], "some dangerous gymnastic performances he glanced": [65535, 0], "dangerous gymnastic performances he glanced aside": [65535, 0], "gymnastic performances he glanced aside and": [65535, 0], "performances he glanced aside and saw": [65535, 0], "he glanced aside and saw that": [65535, 0], "glanced aside and saw that the": [65535, 0], "aside and saw that the little": [65535, 0], "and saw that the little girl": [65535, 0], "saw that the little girl was": [65535, 0], "that the little girl was wending": [65535, 0], "the little girl was wending her": [65535, 0], "little girl was wending her way": [65535, 0], "girl was wending her way toward": [65535, 0], "was wending her way toward the": [65535, 0], "wending her way toward the house": [65535, 0], "her way toward the house tom": [65535, 0], "way toward the house tom came": [65535, 0], "toward the house tom came up": [65535, 0], "the house tom came up to": [65535, 0], "house tom came up to the": [65535, 0], "tom came up to the fence": [65535, 0], "came up to the fence and": [65535, 0], "up to the fence and leaned": [65535, 0], "to the fence and leaned on": [65535, 0], "the fence and leaned on it": [65535, 0], "fence and leaned on it grieving": [65535, 0], "and leaned on it grieving and": [65535, 0], "leaned on it grieving and hoping": [65535, 0], "on it grieving and hoping she": [65535, 0], "it grieving and hoping she would": [65535, 0], "grieving and hoping she would tarry": [65535, 0], "and hoping she would tarry yet": [65535, 0], "hoping she would tarry yet awhile": [65535, 0], "she would tarry yet awhile longer": [65535, 0], "would tarry yet awhile longer she": [65535, 0], "tarry yet awhile longer she halted": [65535, 0], "yet awhile longer she halted a": [65535, 0], "awhile longer she halted a moment": [65535, 0], "longer she halted a moment on": [65535, 0], "she halted a moment on the": [65535, 0], "halted a moment on the steps": [65535, 0], "a moment on the steps and": [65535, 0], "moment on the steps and then": [65535, 0], "on the steps and then moved": [65535, 0], "the steps and then moved toward": [65535, 0], "steps and then moved toward the": [65535, 0], "and then moved toward the door": [65535, 0], "then moved toward the door tom": [65535, 0], "moved toward the door tom heaved": [65535, 0], "toward the door tom heaved a": [65535, 0], "the door tom heaved a great": [65535, 0], "door tom heaved a great sigh": [65535, 0], "tom heaved a great sigh as": [65535, 0], "heaved a great sigh as she": [65535, 0], "a great sigh as she put": [65535, 0], "great sigh as she put her": [65535, 0], "sigh as she put her foot": [65535, 0], "as she put her foot on": [65535, 0], "she put her foot on the": [65535, 0], "put her foot on the threshold": [65535, 0], "her foot on the threshold but": [65535, 0], "foot on the threshold but his": [65535, 0], "on the threshold but his face": [65535, 0], "the threshold but his face lit": [65535, 0], "threshold but his face lit up": [65535, 0], "but his face lit up right": [65535, 0], "his face lit up right away": [65535, 0], "face lit up right away for": [65535, 0], "lit up right away for she": [65535, 0], "up right away for she tossed": [65535, 0], "right away for she tossed a": [65535, 0], "away for she tossed a pansy": [65535, 0], "for she tossed a pansy over": [65535, 0], "she tossed a pansy over the": [65535, 0], "tossed a pansy over the fence": [65535, 0], "a pansy over the fence a": [65535, 0], "pansy over the fence a moment": [65535, 0], "over the fence a moment before": [65535, 0], "the fence a moment before she": [65535, 0], "fence a moment before she disappeared": [65535, 0], "a moment before she disappeared the": [65535, 0], "moment before she disappeared the boy": [65535, 0], "before she disappeared the boy ran": [65535, 0], "she disappeared the boy ran around": [65535, 0], "disappeared the boy ran around and": [65535, 0], "the boy ran around and stopped": [65535, 0], "boy ran around and stopped within": [65535, 0], "ran around and stopped within a": [65535, 0], "around and stopped within a foot": [65535, 0], "and stopped within a foot or": [65535, 0], "stopped within a foot or two": [65535, 0], "within a foot or two of": [65535, 0], "a foot or two of the": [65535, 0], "foot or two of the flower": [65535, 0], "or two of the flower and": [65535, 0], "two of the flower and then": [65535, 0], "of the flower and then shaded": [65535, 0], "the flower and then shaded his": [65535, 0], "flower and then shaded his eyes": [65535, 0], "and then shaded his eyes with": [65535, 0], "then shaded his eyes with his": [65535, 0], "shaded his eyes with his hand": [65535, 0], "his eyes with his hand and": [65535, 0], "eyes with his hand and began": [65535, 0], "with his hand and began to": [65535, 0], "his hand and began to look": [65535, 0], "hand and began to look down": [65535, 0], "and began to look down street": [65535, 0], "began to look down street as": [65535, 0], "to look down street as if": [65535, 0], "look down street as if he": [65535, 0], "down street as if he had": [65535, 0], "street as if he had discovered": [65535, 0], "as if he had discovered something": [65535, 0], "if he had discovered something of": [65535, 0], "he had discovered something of interest": [65535, 0], "had discovered something of interest going": [65535, 0], "discovered something of interest going on": [65535, 0], "something of interest going on in": [65535, 0], "of interest going on in that": [65535, 0], "interest going on in that direction": [65535, 0], "going on in that direction presently": [65535, 0], "on in that direction presently he": [65535, 0], "in that direction presently he picked": [65535, 0], "that direction presently he picked up": [65535, 0], "direction presently he picked up a": [65535, 0], "presently he picked up a straw": [65535, 0], "he picked up a straw and": [65535, 0], "picked up a straw and began": [65535, 0], "up a straw and began trying": [65535, 0], "a straw and began trying to": [65535, 0], "straw and began trying to balance": [65535, 0], "and began trying to balance it": [65535, 0], "began trying to balance it on": [65535, 0], "trying to balance it on his": [65535, 0], "to balance it on his nose": [65535, 0], "balance it on his nose with": [65535, 0], "it on his nose with his": [65535, 0], "on his nose with his head": [65535, 0], "his nose with his head tilted": [65535, 0], "nose with his head tilted far": [65535, 0], "with his head tilted far back": [65535, 0], "his head tilted far back and": [65535, 0], "head tilted far back and as": [65535, 0], "tilted far back and as he": [65535, 0], "far back and as he moved": [65535, 0], "back and as he moved from": [65535, 0], "and as he moved from side": [65535, 0], "as he moved from side to": [65535, 0], "he moved from side to side": [65535, 0], "moved from side to side in": [65535, 0], "from side to side in his": [65535, 0], "side to side in his efforts": [65535, 0], "to side in his efforts he": [65535, 0], "side in his efforts he edged": [65535, 0], "in his efforts he edged nearer": [65535, 0], "his efforts he edged nearer and": [65535, 0], "efforts he edged nearer and nearer": [65535, 0], "he edged nearer and nearer toward": [65535, 0], "edged nearer and nearer toward the": [65535, 0], "nearer and nearer toward the pansy": [65535, 0], "and nearer toward the pansy finally": [65535, 0], "nearer toward the pansy finally his": [65535, 0], "toward the pansy finally his bare": [65535, 0], "the pansy finally his bare foot": [65535, 0], "pansy finally his bare foot rested": [65535, 0], "finally his bare foot rested upon": [65535, 0], "his bare foot rested upon it": [65535, 0], "bare foot rested upon it his": [65535, 0], "foot rested upon it his pliant": [65535, 0], "rested upon it his pliant toes": [65535, 0], "upon it his pliant toes closed": [65535, 0], "it his pliant toes closed upon": [65535, 0], "his pliant toes closed upon it": [65535, 0], "pliant toes closed upon it and": [65535, 0], "toes closed upon it and he": [65535, 0], "closed upon it and he hopped": [65535, 0], "upon it and he hopped away": [65535, 0], "it and he hopped away with": [65535, 0], "and he hopped away with the": [65535, 0], "he hopped away with the treasure": [65535, 0], "hopped away with the treasure and": [65535, 0], "away with the treasure and disappeared": [65535, 0], "with the treasure and disappeared round": [65535, 0], "the treasure and disappeared round the": [65535, 0], "treasure and disappeared round the corner": [65535, 0], "and disappeared round the corner but": [65535, 0], "disappeared round the corner but only": [65535, 0], "round the corner but only for": [65535, 0], "the corner but only for a": [65535, 0], "corner but only for a minute": [65535, 0], "but only for a minute only": [65535, 0], "only for a minute only while": [65535, 0], "for a minute only while he": [65535, 0], "a minute only while he could": [65535, 0], "minute only while he could button": [65535, 0], "only while he could button the": [65535, 0], "while he could button the flower": [65535, 0], "he could button the flower inside": [65535, 0], "could button the flower inside his": [65535, 0], "button the flower inside his jacket": [65535, 0], "the flower inside his jacket next": [65535, 0], "flower inside his jacket next his": [65535, 0], "inside his jacket next his heart": [65535, 0], "his jacket next his heart or": [65535, 0], "jacket next his heart or next": [65535, 0], "next his heart or next his": [65535, 0], "his heart or next his stomach": [65535, 0], "heart or next his stomach possibly": [65535, 0], "or next his stomach possibly for": [65535, 0], "next his stomach possibly for he": [65535, 0], "his stomach possibly for he was": [65535, 0], "stomach possibly for he was not": [65535, 0], "possibly for he was not much": [65535, 0], "for he was not much posted": [65535, 0], "he was not much posted in": [65535, 0], "was not much posted in anatomy": [65535, 0], "not much posted in anatomy and": [65535, 0], "much posted in anatomy and not": [65535, 0], "posted in anatomy and not hypercritical": [65535, 0], "in anatomy and not hypercritical anyway": [65535, 0], "anatomy and not hypercritical anyway he": [65535, 0], "and not hypercritical anyway he returned": [65535, 0], "not hypercritical anyway he returned now": [65535, 0], "hypercritical anyway he returned now and": [65535, 0], "anyway he returned now and hung": [65535, 0], "he returned now and hung about": [65535, 0], "returned now and hung about the": [65535, 0], "now and hung about the fence": [65535, 0], "and hung about the fence till": [65535, 0], "hung about the fence till nightfall": [65535, 0], "about the fence till nightfall showing": [65535, 0], "the fence till nightfall showing off": [65535, 0], "fence till nightfall showing off as": [65535, 0], "till nightfall showing off as before": [65535, 0], "nightfall showing off as before but": [65535, 0], "showing off as before but the": [65535, 0], "off as before but the girl": [65535, 0], "as before but the girl never": [65535, 0], "before but the girl never exhibited": [65535, 0], "but the girl never exhibited herself": [65535, 0], "the girl never exhibited herself again": [65535, 0], "girl never exhibited herself again though": [65535, 0], "never exhibited herself again though tom": [65535, 0], "exhibited herself again though tom comforted": [65535, 0], "herself again though tom comforted himself": [65535, 0], "again though tom comforted himself a": [65535, 0], "though tom comforted himself a little": [65535, 0], "tom comforted himself a little with": [65535, 0], "comforted himself a little with the": [65535, 0], "himself a little with the hope": [65535, 0], "a little with the hope that": [65535, 0], "little with the hope that she": [65535, 0], "with the hope that she had": [65535, 0], "the hope that she had been": [65535, 0], "hope that she had been near": [65535, 0], "that she had been near some": [65535, 0], "she had been near some window": [65535, 0], "had been near some window meantime": [65535, 0], "been near some window meantime and": [65535, 0], "near some window meantime and been": [65535, 0], "some window meantime and been aware": [65535, 0], "window meantime and been aware of": [65535, 0], "meantime and been aware of his": [65535, 0], "and been aware of his attentions": [65535, 0], "been aware of his attentions finally": [65535, 0], "aware of his attentions finally he": [65535, 0], "of his attentions finally he strode": [65535, 0], "his attentions finally he strode home": [65535, 0], "attentions finally he strode home reluctantly": [65535, 0], "finally he strode home reluctantly with": [65535, 0], "he strode home reluctantly with his": [65535, 0], "strode home reluctantly with his poor": [65535, 0], "home reluctantly with his poor head": [65535, 0], "reluctantly with his poor head full": [65535, 0], "with his poor head full of": [65535, 0], "his poor head full of visions": [65535, 0], "poor head full of visions all": [65535, 0], "head full of visions all through": [65535, 0], "full of visions all through supper": [65535, 0], "of visions all through supper his": [65535, 0], "visions all through supper his spirits": [65535, 0], "all through supper his spirits were": [65535, 0], "through supper his spirits were so": [65535, 0], "supper his spirits were so high": [65535, 0], "his spirits were so high that": [65535, 0], "spirits were so high that his": [65535, 0], "were so high that his aunt": [65535, 0], "so high that his aunt wondered": [65535, 0], "high that his aunt wondered what": [65535, 0], "that his aunt wondered what had": [65535, 0], "his aunt wondered what had got": [65535, 0], "aunt wondered what had got into": [65535, 0], "wondered what had got into the": [65535, 0], "what had got into the child": [65535, 0], "had got into the child he": [65535, 0], "got into the child he took": [65535, 0], "into the child he took a": [65535, 0], "the child he took a good": [65535, 0], "child he took a good scolding": [65535, 0], "he took a good scolding about": [65535, 0], "took a good scolding about clodding": [65535, 0], "a good scolding about clodding sid": [65535, 0], "good scolding about clodding sid and": [65535, 0], "scolding about clodding sid and did": [65535, 0], "about clodding sid and did not": [65535, 0], "clodding sid and did not seem": [65535, 0], "sid and did not seem to": [65535, 0], "and did not seem to mind": [65535, 0], "did not seem to mind it": [65535, 0], "not seem to mind it in": [65535, 0], "seem to mind it in the": [65535, 0], "to mind it in the least": [65535, 0], "mind it in the least he": [65535, 0], "it in the least he tried": [65535, 0], "in the least he tried to": [65535, 0], "the least he tried to steal": [65535, 0], "least he tried to steal sugar": [65535, 0], "he tried to steal sugar under": [65535, 0], "tried to steal sugar under his": [65535, 0], "to steal sugar under his aunt's": [65535, 0], "steal sugar under his aunt's very": [65535, 0], "sugar under his aunt's very nose": [65535, 0], "under his aunt's very nose and": [65535, 0], "his aunt's very nose and got": [65535, 0], "aunt's very nose and got his": [65535, 0], "very nose and got his knuckles": [65535, 0], "nose and got his knuckles rapped": [65535, 0], "and got his knuckles rapped for": [65535, 0], "got his knuckles rapped for it": [65535, 0], "his knuckles rapped for it he": [65535, 0], "knuckles rapped for it he said": [65535, 0], "rapped for it he said aunt": [65535, 0], "for it he said aunt you": [65535, 0], "it he said aunt you don't": [65535, 0], "he said aunt you don't whack": [65535, 0], "said aunt you don't whack sid": [65535, 0], "aunt you don't whack sid when": [65535, 0], "you don't whack sid when he": [65535, 0], "don't whack sid when he takes": [65535, 0], "whack sid when he takes it": [65535, 0], "sid when he takes it well": [65535, 0], "when he takes it well sid": [65535, 0], "he takes it well sid don't": [65535, 0], "takes it well sid don't torment": [65535, 0], "it well sid don't torment a": [65535, 0], "well sid don't torment a body": [65535, 0], "sid don't torment a body the": [65535, 0], "don't torment a body the way": [65535, 0], "torment a body the way you": [65535, 0], "a body the way you do": [65535, 0], "body the way you do you'd": [65535, 0], "the way you do you'd be": [65535, 0], "way you do you'd be always": [65535, 0], "you do you'd be always into": [65535, 0], "do you'd be always into that": [65535, 0], "you'd be always into that sugar": [65535, 0], "be always into that sugar if": [65535, 0], "always into that sugar if i": [65535, 0], "into that sugar if i warn't": [65535, 0], "that sugar if i warn't watching": [65535, 0], "sugar if i warn't watching you": [65535, 0], "if i warn't watching you presently": [65535, 0], "i warn't watching you presently she": [65535, 0], "warn't watching you presently she stepped": [65535, 0], "watching you presently she stepped into": [65535, 0], "you presently she stepped into the": [65535, 0], "presently she stepped into the kitchen": [65535, 0], "she stepped into the kitchen and": [65535, 0], "stepped into the kitchen and sid": [65535, 0], "into the kitchen and sid happy": [65535, 0], "the kitchen and sid happy in": [65535, 0], "kitchen and sid happy in his": [65535, 0], "and sid happy in his immunity": [65535, 0], "sid happy in his immunity reached": [65535, 0], "happy in his immunity reached for": [65535, 0], "in his immunity reached for the": [65535, 0], "his immunity reached for the sugar": [65535, 0], "immunity reached for the sugar bowl": [65535, 0], "reached for the sugar bowl a": [65535, 0], "for the sugar bowl a sort": [65535, 0], "the sugar bowl a sort of": [65535, 0], "sugar bowl a sort of glorying": [65535, 0], "bowl a sort of glorying over": [65535, 0], "a sort of glorying over tom": [65535, 0], "sort of glorying over tom which": [65535, 0], "of glorying over tom which was": [65535, 0], "glorying over tom which was well": [65535, 0], "over tom which was well nigh": [65535, 0], "tom which was well nigh unbearable": [65535, 0], "which was well nigh unbearable but": [65535, 0], "was well nigh unbearable but sid's": [65535, 0], "well nigh unbearable but sid's fingers": [65535, 0], "nigh unbearable but sid's fingers slipped": [65535, 0], "unbearable but sid's fingers slipped and": [65535, 0], "but sid's fingers slipped and the": [65535, 0], "sid's fingers slipped and the bowl": [65535, 0], "fingers slipped and the bowl dropped": [65535, 0], "slipped and the bowl dropped and": [65535, 0], "and the bowl dropped and broke": [65535, 0], "the bowl dropped and broke tom": [65535, 0], "bowl dropped and broke tom was": [65535, 0], "dropped and broke tom was in": [65535, 0], "and broke tom was in ecstasies": [65535, 0], "broke tom was in ecstasies in": [65535, 0], "tom was in ecstasies in such": [65535, 0], "was in ecstasies in such ecstasies": [65535, 0], "in ecstasies in such ecstasies that": [65535, 0], "ecstasies in such ecstasies that he": [65535, 0], "in such ecstasies that he even": [65535, 0], "such ecstasies that he even controlled": [65535, 0], "ecstasies that he even controlled his": [65535, 0], "that he even controlled his tongue": [65535, 0], "he even controlled his tongue and": [65535, 0], "even controlled his tongue and was": [65535, 0], "controlled his tongue and was silent": [65535, 0], "his tongue and was silent he": [65535, 0], "tongue and was silent he said": [65535, 0], "and was silent he said to": [65535, 0], "was silent he said to himself": [65535, 0], "silent he said to himself that": [65535, 0], "said to himself that he would": [65535, 0], "to himself that he would not": [65535, 0], "himself that he would not speak": [65535, 0], "that he would not speak a": [65535, 0], "he would not speak a word": [65535, 0], "would not speak a word even": [65535, 0], "not speak a word even when": [65535, 0], "speak a word even when his": [65535, 0], "a word even when his aunt": [65535, 0], "word even when his aunt came": [65535, 0], "even when his aunt came in": [65535, 0], "when his aunt came in but": [65535, 0], "his aunt came in but would": [65535, 0], "aunt came in but would sit": [65535, 0], "came in but would sit perfectly": [65535, 0], "in but would sit perfectly still": [65535, 0], "but would sit perfectly still till": [65535, 0], "would sit perfectly still till she": [65535, 0], "sit perfectly still till she asked": [65535, 0], "perfectly still till she asked who": [65535, 0], "still till she asked who did": [65535, 0], "till she asked who did the": [65535, 0], "she asked who did the mischief": [65535, 0], "asked who did the mischief and": [65535, 0], "who did the mischief and then": [65535, 0], "did the mischief and then he": [65535, 0], "the mischief and then he would": [65535, 0], "mischief and then he would tell": [65535, 0], "and then he would tell and": [65535, 0], "then he would tell and there": [65535, 0], "he would tell and there would": [65535, 0], "would tell and there would be": [65535, 0], "tell and there would be nothing": [65535, 0], "and there would be nothing so": [65535, 0], "there would be nothing so good": [65535, 0], "would be nothing so good in": [65535, 0], "be nothing so good in the": [65535, 0], "nothing so good in the world": [65535, 0], "so good in the world as": [65535, 0], "good in the world as to": [65535, 0], "in the world as to see": [65535, 0], "the world as to see that": [65535, 0], "world as to see that pet": [65535, 0], "as to see that pet model": [65535, 0], "to see that pet model catch": [65535, 0], "see that pet model catch it": [65535, 0], "that pet model catch it he": [65535, 0], "pet model catch it he was": [65535, 0], "model catch it he was so": [65535, 0], "catch it he was so brimful": [65535, 0], "it he was so brimful of": [65535, 0], "he was so brimful of exultation": [65535, 0], "was so brimful of exultation that": [65535, 0], "so brimful of exultation that he": [65535, 0], "brimful of exultation that he could": [65535, 0], "of exultation that he could hardly": [65535, 0], "exultation that he could hardly hold": [65535, 0], "that he could hardly hold himself": [65535, 0], "he could hardly hold himself when": [65535, 0], "could hardly hold himself when the": [65535, 0], "hardly hold himself when the old": [65535, 0], "hold himself when the old lady": [65535, 0], "himself when the old lady came": [65535, 0], "when the old lady came back": [65535, 0], "the old lady came back and": [65535, 0], "old lady came back and stood": [65535, 0], "lady came back and stood above": [65535, 0], "came back and stood above the": [65535, 0], "back and stood above the wreck": [65535, 0], "and stood above the wreck discharging": [65535, 0], "stood above the wreck discharging lightnings": [65535, 0], "above the wreck discharging lightnings of": [65535, 0], "the wreck discharging lightnings of wrath": [65535, 0], "wreck discharging lightnings of wrath from": [65535, 0], "discharging lightnings of wrath from over": [65535, 0], "lightnings of wrath from over her": [65535, 0], "of wrath from over her spectacles": [65535, 0], "wrath from over her spectacles he": [65535, 0], "from over her spectacles he said": [65535, 0], "over her spectacles he said to": [65535, 0], "her spectacles he said to himself": [65535, 0], "spectacles he said to himself now": [65535, 0], "he said to himself now it's": [65535, 0], "said to himself now it's coming": [65535, 0], "to himself now it's coming and": [65535, 0], "himself now it's coming and the": [65535, 0], "now it's coming and the next": [65535, 0], "it's coming and the next instant": [65535, 0], "coming and the next instant he": [65535, 0], "and the next instant he was": [65535, 0], "the next instant he was sprawling": [65535, 0], "next instant he was sprawling on": [65535, 0], "instant he was sprawling on the": [65535, 0], "he was sprawling on the floor": [65535, 0], "was sprawling on the floor the": [65535, 0], "sprawling on the floor the potent": [65535, 0], "on the floor the potent palm": [65535, 0], "the floor the potent palm was": [65535, 0], "floor the potent palm was uplifted": [65535, 0], "the potent palm was uplifted to": [65535, 0], "potent palm was uplifted to strike": [65535, 0], "palm was uplifted to strike again": [65535, 0], "was uplifted to strike again when": [65535, 0], "uplifted to strike again when tom": [65535, 0], "to strike again when tom cried": [65535, 0], "strike again when tom cried out": [65535, 0], "again when tom cried out hold": [65535, 0], "when tom cried out hold on": [65535, 0], "tom cried out hold on now": [65535, 0], "cried out hold on now what": [65535, 0], "out hold on now what 'er": [65535, 0], "hold on now what 'er you": [65535, 0], "on now what 'er you belting": [65535, 0], "now what 'er you belting me": [65535, 0], "what 'er you belting me for": [65535, 0], "'er you belting me for sid": [65535, 0], "you belting me for sid broke": [65535, 0], "belting me for sid broke it": [65535, 0], "me for sid broke it aunt": [65535, 0], "for sid broke it aunt polly": [65535, 0], "sid broke it aunt polly paused": [65535, 0], "broke it aunt polly paused perplexed": [65535, 0], "it aunt polly paused perplexed and": [65535, 0], "aunt polly paused perplexed and tom": [65535, 0], "polly paused perplexed and tom looked": [65535, 0], "paused perplexed and tom looked for": [65535, 0], "perplexed and tom looked for healing": [65535, 0], "and tom looked for healing pity": [65535, 0], "tom looked for healing pity but": [65535, 0], "looked for healing pity but when": [65535, 0], "for healing pity but when she": [65535, 0], "healing pity but when she got": [65535, 0], "pity but when she got her": [65535, 0], "but when she got her tongue": [65535, 0], "when she got her tongue again": [65535, 0], "she got her tongue again she": [65535, 0], "got her tongue again she only": [65535, 0], "her tongue again she only said": [65535, 0], "tongue again she only said umf": [65535, 0], "again she only said umf well": [65535, 0], "she only said umf well you": [65535, 0], "only said umf well you didn't": [65535, 0], "said umf well you didn't get": [65535, 0], "umf well you didn't get a": [65535, 0], "well you didn't get a lick": [65535, 0], "you didn't get a lick amiss": [65535, 0], "didn't get a lick amiss i": [65535, 0], "get a lick amiss i reckon": [65535, 0], "a lick amiss i reckon you": [65535, 0], "lick amiss i reckon you been": [65535, 0], "amiss i reckon you been into": [65535, 0], "i reckon you been into some": [65535, 0], "reckon you been into some other": [65535, 0], "you been into some other audacious": [65535, 0], "been into some other audacious mischief": [65535, 0], "into some other audacious mischief when": [65535, 0], "some other audacious mischief when i": [65535, 0], "other audacious mischief when i wasn't": [65535, 0], "audacious mischief when i wasn't around": [65535, 0], "mischief when i wasn't around like": [65535, 0], "when i wasn't around like enough": [65535, 0], "i wasn't around like enough then": [65535, 0], "wasn't around like enough then her": [65535, 0], "around like enough then her conscience": [65535, 0], "like enough then her conscience reproached": [65535, 0], "enough then her conscience reproached her": [65535, 0], "then her conscience reproached her and": [65535, 0], "her conscience reproached her and she": [65535, 0], "conscience reproached her and she yearned": [65535, 0], "reproached her and she yearned to": [65535, 0], "her and she yearned to say": [65535, 0], "and she yearned to say something": [65535, 0], "she yearned to say something kind": [65535, 0], "yearned to say something kind and": [65535, 0], "to say something kind and loving": [65535, 0], "say something kind and loving but": [65535, 0], "something kind and loving but she": [65535, 0], "kind and loving but she judged": [65535, 0], "and loving but she judged that": [65535, 0], "loving but she judged that this": [65535, 0], "but she judged that this would": [65535, 0], "she judged that this would be": [65535, 0], "judged that this would be construed": [65535, 0], "that this would be construed into": [65535, 0], "this would be construed into a": [65535, 0], "would be construed into a confession": [65535, 0], "be construed into a confession that": [65535, 0], "construed into a confession that she": [65535, 0], "into a confession that she had": [65535, 0], "a confession that she had been": [65535, 0], "confession that she had been in": [65535, 0], "that she had been in the": [65535, 0], "she had been in the wrong": [65535, 0], "had been in the wrong and": [65535, 0], "been in the wrong and discipline": [65535, 0], "in the wrong and discipline forbade": [65535, 0], "the wrong and discipline forbade that": [65535, 0], "wrong and discipline forbade that so": [65535, 0], "and discipline forbade that so she": [65535, 0], "discipline forbade that so she kept": [65535, 0], "forbade that so she kept silence": [65535, 0], "that so she kept silence and": [65535, 0], "so she kept silence and went": [65535, 0], "she kept silence and went about": [65535, 0], "kept silence and went about her": [65535, 0], "silence and went about her affairs": [65535, 0], "and went about her affairs with": [65535, 0], "went about her affairs with a": [65535, 0], "about her affairs with a troubled": [65535, 0], "her affairs with a troubled heart": [65535, 0], "affairs with a troubled heart tom": [65535, 0], "with a troubled heart tom sulked": [65535, 0], "a troubled heart tom sulked in": [65535, 0], "troubled heart tom sulked in a": [65535, 0], "heart tom sulked in a corner": [65535, 0], "tom sulked in a corner and": [65535, 0], "sulked in a corner and exalted": [65535, 0], "in a corner and exalted his": [65535, 0], "a corner and exalted his woes": [65535, 0], "corner and exalted his woes he": [65535, 0], "and exalted his woes he knew": [65535, 0], "exalted his woes he knew that": [65535, 0], "his woes he knew that in": [65535, 0], "woes he knew that in her": [65535, 0], "he knew that in her heart": [65535, 0], "knew that in her heart his": [65535, 0], "that in her heart his aunt": [65535, 0], "in her heart his aunt was": [65535, 0], "her heart his aunt was on": [65535, 0], "heart his aunt was on her": [65535, 0], "his aunt was on her knees": [65535, 0], "aunt was on her knees to": [65535, 0], "was on her knees to him": [65535, 0], "on her knees to him and": [65535, 0], "her knees to him and he": [65535, 0], "knees to him and he was": [65535, 0], "to him and he was morosely": [65535, 0], "him and he was morosely gratified": [65535, 0], "and he was morosely gratified by": [65535, 0], "he was morosely gratified by the": [65535, 0], "was morosely gratified by the consciousness": [65535, 0], "morosely gratified by the consciousness of": [65535, 0], "gratified by the consciousness of it": [65535, 0], "by the consciousness of it he": [65535, 0], "the consciousness of it he would": [65535, 0], "consciousness of it he would hang": [65535, 0], "of it he would hang out": [65535, 0], "it he would hang out no": [65535, 0], "he would hang out no signals": [65535, 0], "would hang out no signals he": [65535, 0], "hang out no signals he would": [65535, 0], "out no signals he would take": [65535, 0], "no signals he would take notice": [65535, 0], "signals he would take notice of": [65535, 0], "he would take notice of none": [65535, 0], "would take notice of none he": [65535, 0], "take notice of none he knew": [65535, 0], "notice of none he knew that": [65535, 0], "of none he knew that a": [65535, 0], "none he knew that a yearning": [65535, 0], "he knew that a yearning glance": [65535, 0], "knew that a yearning glance fell": [65535, 0], "that a yearning glance fell upon": [65535, 0], "a yearning glance fell upon him": [65535, 0], "yearning glance fell upon him now": [65535, 0], "glance fell upon him now and": [65535, 0], "fell upon him now and then": [65535, 0], "upon him now and then through": [65535, 0], "him now and then through a": [65535, 0], "now and then through a film": [65535, 0], "and then through a film of": [65535, 0], "then through a film of tears": [65535, 0], "through a film of tears but": [65535, 0], "a film of tears but he": [65535, 0], "film of tears but he refused": [65535, 0], "of tears but he refused recognition": [65535, 0], "tears but he refused recognition of": [65535, 0], "but he refused recognition of it": [65535, 0], "he refused recognition of it he": [65535, 0], "refused recognition of it he pictured": [65535, 0], "recognition of it he pictured himself": [65535, 0], "of it he pictured himself lying": [65535, 0], "it he pictured himself lying sick": [65535, 0], "he pictured himself lying sick unto": [65535, 0], "pictured himself lying sick unto death": [65535, 0], "himself lying sick unto death and": [65535, 0], "lying sick unto death and his": [65535, 0], "sick unto death and his aunt": [65535, 0], "unto death and his aunt bending": [65535, 0], "death and his aunt bending over": [65535, 0], "and his aunt bending over him": [65535, 0], "his aunt bending over him beseeching": [65535, 0], "aunt bending over him beseeching one": [65535, 0], "bending over him beseeching one little": [65535, 0], "over him beseeching one little forgiving": [65535, 0], "him beseeching one little forgiving word": [65535, 0], "beseeching one little forgiving word but": [65535, 0], "one little forgiving word but he": [65535, 0], "little forgiving word but he would": [65535, 0], "forgiving word but he would turn": [65535, 0], "word but he would turn his": [65535, 0], "but he would turn his face": [65535, 0], "he would turn his face to": [65535, 0], "would turn his face to the": [65535, 0], "turn his face to the wall": [65535, 0], "his face to the wall and": [65535, 0], "face to the wall and die": [65535, 0], "to the wall and die with": [65535, 0], "the wall and die with that": [65535, 0], "wall and die with that word": [65535, 0], "and die with that word unsaid": [65535, 0], "die with that word unsaid ah": [65535, 0], "with that word unsaid ah how": [65535, 0], "that word unsaid ah how would": [65535, 0], "word unsaid ah how would she": [65535, 0], "unsaid ah how would she feel": [65535, 0], "ah how would she feel then": [65535, 0], "how would she feel then and": [65535, 0], "would she feel then and he": [65535, 0], "she feel then and he pictured": [65535, 0], "feel then and he pictured himself": [65535, 0], "then and he pictured himself brought": [65535, 0], "and he pictured himself brought home": [65535, 0], "he pictured himself brought home from": [65535, 0], "pictured himself brought home from the": [65535, 0], "himself brought home from the river": [65535, 0], "brought home from the river dead": [65535, 0], "home from the river dead with": [65535, 0], "from the river dead with his": [65535, 0], "the river dead with his curls": [65535, 0], "river dead with his curls all": [65535, 0], "dead with his curls all wet": [65535, 0], "with his curls all wet and": [65535, 0], "his curls all wet and his": [65535, 0], "curls all wet and his sore": [65535, 0], "all wet and his sore heart": [65535, 0], "wet and his sore heart at": [65535, 0], "and his sore heart at rest": [65535, 0], "his sore heart at rest how": [65535, 0], "sore heart at rest how she": [65535, 0], "heart at rest how she would": [65535, 0], "at rest how she would throw": [65535, 0], "rest how she would throw herself": [65535, 0], "how she would throw herself upon": [65535, 0], "she would throw herself upon him": [65535, 0], "would throw herself upon him and": [65535, 0], "throw herself upon him and how": [65535, 0], "herself upon him and how her": [65535, 0], "upon him and how her tears": [65535, 0], "him and how her tears would": [65535, 0], "and how her tears would fall": [65535, 0], "how her tears would fall like": [65535, 0], "her tears would fall like rain": [65535, 0], "tears would fall like rain and": [65535, 0], "would fall like rain and her": [65535, 0], "fall like rain and her lips": [65535, 0], "like rain and her lips pray": [65535, 0], "rain and her lips pray god": [65535, 0], "and her lips pray god to": [65535, 0], "her lips pray god to give": [65535, 0], "lips pray god to give her": [65535, 0], "pray god to give her back": [65535, 0], "god to give her back her": [65535, 0], "to give her back her boy": [65535, 0], "give her back her boy and": [65535, 0], "her back her boy and she": [65535, 0], "back her boy and she would": [65535, 0], "her boy and she would never": [65535, 0], "boy and she would never never": [65535, 0], "and she would never never abuse": [65535, 0], "she would never never abuse him": [65535, 0], "would never never abuse him any": [65535, 0], "never never abuse him any more": [65535, 0], "never abuse him any more but": [65535, 0], "abuse him any more but he": [65535, 0], "him any more but he would": [65535, 0], "any more but he would lie": [65535, 0], "more but he would lie there": [65535, 0], "but he would lie there cold": [65535, 0], "he would lie there cold and": [65535, 0], "would lie there cold and white": [65535, 0], "lie there cold and white and": [65535, 0], "there cold and white and make": [65535, 0], "cold and white and make no": [65535, 0], "and white and make no sign": [65535, 0], "white and make no sign a": [65535, 0], "and make no sign a poor": [65535, 0], "make no sign a poor little": [65535, 0], "no sign a poor little sufferer": [65535, 0], "sign a poor little sufferer whose": [65535, 0], "a poor little sufferer whose griefs": [65535, 0], "poor little sufferer whose griefs were": [65535, 0], "little sufferer whose griefs were at": [65535, 0], "sufferer whose griefs were at an": [65535, 0], "whose griefs were at an end": [65535, 0], "griefs were at an end he": [65535, 0], "were at an end he so": [65535, 0], "at an end he so worked": [65535, 0], "an end he so worked upon": [65535, 0], "end he so worked upon his": [65535, 0], "he so worked upon his feelings": [65535, 0], "so worked upon his feelings with": [65535, 0], "worked upon his feelings with the": [65535, 0], "upon his feelings with the pathos": [65535, 0], "his feelings with the pathos of": [65535, 0], "feelings with the pathos of these": [65535, 0], "with the pathos of these dreams": [65535, 0], "the pathos of these dreams that": [65535, 0], "pathos of these dreams that he": [65535, 0], "of these dreams that he had": [65535, 0], "these dreams that he had to": [65535, 0], "dreams that he had to keep": [65535, 0], "that he had to keep swallowing": [65535, 0], "he had to keep swallowing he": [65535, 0], "had to keep swallowing he was": [65535, 0], "to keep swallowing he was so": [65535, 0], "keep swallowing he was so like": [65535, 0], "swallowing he was so like to": [65535, 0], "he was so like to choke": [65535, 0], "was so like to choke and": [65535, 0], "so like to choke and his": [65535, 0], "like to choke and his eyes": [65535, 0], "to choke and his eyes swam": [65535, 0], "choke and his eyes swam in": [65535, 0], "and his eyes swam in a": [65535, 0], "his eyes swam in a blur": [65535, 0], "eyes swam in a blur of": [65535, 0], "swam in a blur of water": [65535, 0], "in a blur of water which": [65535, 0], "a blur of water which overflowed": [65535, 0], "blur of water which overflowed when": [65535, 0], "of water which overflowed when he": [65535, 0], "water which overflowed when he winked": [65535, 0], "which overflowed when he winked and": [65535, 0], "overflowed when he winked and ran": [65535, 0], "when he winked and ran down": [65535, 0], "he winked and ran down and": [65535, 0], "winked and ran down and trickled": [65535, 0], "and ran down and trickled from": [65535, 0], "ran down and trickled from the": [65535, 0], "down and trickled from the end": [65535, 0], "and trickled from the end of": [65535, 0], "trickled from the end of his": [65535, 0], "from the end of his nose": [65535, 0], "the end of his nose and": [65535, 0], "end of his nose and such": [65535, 0], "of his nose and such a": [65535, 0], "his nose and such a luxury": [65535, 0], "nose and such a luxury to": [65535, 0], "and such a luxury to him": [65535, 0], "such a luxury to him was": [65535, 0], "a luxury to him was this": [65535, 0], "luxury to him was this petting": [65535, 0], "to him was this petting of": [65535, 0], "him was this petting of his": [65535, 0], "was this petting of his sorrows": [65535, 0], "this petting of his sorrows that": [65535, 0], "petting of his sorrows that he": [65535, 0], "of his sorrows that he could": [65535, 0], "his sorrows that he could not": [65535, 0], "sorrows that he could not bear": [65535, 0], "that he could not bear to": [65535, 0], "he could not bear to have": [65535, 0], "could not bear to have any": [65535, 0], "not bear to have any worldly": [65535, 0], "bear to have any worldly cheeriness": [65535, 0], "to have any worldly cheeriness or": [65535, 0], "have any worldly cheeriness or any": [65535, 0], "any worldly cheeriness or any grating": [65535, 0], "worldly cheeriness or any grating delight": [65535, 0], "cheeriness or any grating delight intrude": [65535, 0], "or any grating delight intrude upon": [65535, 0], "any grating delight intrude upon it": [65535, 0], "grating delight intrude upon it it": [65535, 0], "delight intrude upon it it was": [65535, 0], "intrude upon it it was too": [65535, 0], "upon it it was too sacred": [65535, 0], "it it was too sacred for": [65535, 0], "it was too sacred for such": [65535, 0], "was too sacred for such contact": [65535, 0], "too sacred for such contact and": [65535, 0], "sacred for such contact and so": [65535, 0], "for such contact and so presently": [65535, 0], "such contact and so presently when": [65535, 0], "contact and so presently when his": [65535, 0], "and so presently when his cousin": [65535, 0], "so presently when his cousin mary": [65535, 0], "presently when his cousin mary danced": [65535, 0], "when his cousin mary danced in": [65535, 0], "his cousin mary danced in all": [65535, 0], "cousin mary danced in all alive": [65535, 0], "mary danced in all alive with": [65535, 0], "danced in all alive with the": [65535, 0], "in all alive with the joy": [65535, 0], "all alive with the joy of": [65535, 0], "alive with the joy of seeing": [65535, 0], "with the joy of seeing home": [65535, 0], "the joy of seeing home again": [65535, 0], "joy of seeing home again after": [65535, 0], "of seeing home again after an": [65535, 0], "seeing home again after an age": [65535, 0], "home again after an age long": [65535, 0], "again after an age long visit": [65535, 0], "after an age long visit of": [65535, 0], "an age long visit of one": [65535, 0], "age long visit of one week": [65535, 0], "long visit of one week to": [65535, 0], "visit of one week to the": [65535, 0], "of one week to the country": [65535, 0], "one week to the country he": [65535, 0], "week to the country he got": [65535, 0], "to the country he got up": [65535, 0], "the country he got up and": [65535, 0], "country he got up and moved": [65535, 0], "he got up and moved in": [65535, 0], "got up and moved in clouds": [65535, 0], "up and moved in clouds and": [65535, 0], "and moved in clouds and darkness": [65535, 0], "moved in clouds and darkness out": [65535, 0], "in clouds and darkness out at": [65535, 0], "clouds and darkness out at one": [65535, 0], "and darkness out at one door": [65535, 0], "darkness out at one door as": [65535, 0], "out at one door as she": [65535, 0], "at one door as she brought": [65535, 0], "one door as she brought song": [65535, 0], "door as she brought song and": [65535, 0], "as she brought song and sunshine": [65535, 0], "she brought song and sunshine in": [65535, 0], "brought song and sunshine in at": [65535, 0], "song and sunshine in at the": [65535, 0], "and sunshine in at the other": [65535, 0], "sunshine in at the other he": [65535, 0], "in at the other he wandered": [65535, 0], "at the other he wandered far": [65535, 0], "the other he wandered far from": [65535, 0], "other he wandered far from the": [65535, 0], "he wandered far from the accustomed": [65535, 0], "wandered far from the accustomed haunts": [65535, 0], "far from the accustomed haunts of": [65535, 0], "from the accustomed haunts of boys": [65535, 0], "the accustomed haunts of boys and": [65535, 0], "accustomed haunts of boys and sought": [65535, 0], "haunts of boys and sought desolate": [65535, 0], "of boys and sought desolate places": [65535, 0], "boys and sought desolate places that": [65535, 0], "and sought desolate places that were": [65535, 0], "sought desolate places that were in": [65535, 0], "desolate places that were in harmony": [65535, 0], "places that were in harmony with": [65535, 0], "that were in harmony with his": [65535, 0], "were in harmony with his spirit": [65535, 0], "in harmony with his spirit a": [65535, 0], "harmony with his spirit a log": [65535, 0], "with his spirit a log raft": [65535, 0], "his spirit a log raft in": [65535, 0], "spirit a log raft in the": [65535, 0], "a log raft in the river": [65535, 0], "log raft in the river invited": [65535, 0], "raft in the river invited him": [65535, 0], "in the river invited him and": [65535, 0], "the river invited him and he": [65535, 0], "river invited him and he seated": [65535, 0], "invited him and he seated himself": [65535, 0], "him and he seated himself on": [65535, 0], "and he seated himself on its": [65535, 0], "he seated himself on its outer": [65535, 0], "seated himself on its outer edge": [65535, 0], "himself on its outer edge and": [65535, 0], "on its outer edge and contemplated": [65535, 0], "its outer edge and contemplated the": [65535, 0], "outer edge and contemplated the dreary": [65535, 0], "edge and contemplated the dreary vastness": [65535, 0], "and contemplated the dreary vastness of": [65535, 0], "contemplated the dreary vastness of the": [65535, 0], "the dreary vastness of the stream": [65535, 0], "dreary vastness of the stream wishing": [65535, 0], "vastness of the stream wishing the": [65535, 0], "of the stream wishing the while": [65535, 0], "the stream wishing the while that": [65535, 0], "stream wishing the while that he": [65535, 0], "wishing the while that he could": [65535, 0], "the while that he could only": [65535, 0], "while that he could only be": [65535, 0], "that he could only be drowned": [65535, 0], "he could only be drowned all": [65535, 0], "could only be drowned all at": [65535, 0], "only be drowned all at once": [65535, 0], "be drowned all at once and": [65535, 0], "drowned all at once and unconsciously": [65535, 0], "all at once and unconsciously without": [65535, 0], "at once and unconsciously without undergoing": [65535, 0], "once and unconsciously without undergoing the": [65535, 0], "and unconsciously without undergoing the uncomfortable": [65535, 0], "unconsciously without undergoing the uncomfortable routine": [65535, 0], "without undergoing the uncomfortable routine devised": [65535, 0], "undergoing the uncomfortable routine devised by": [65535, 0], "the uncomfortable routine devised by nature": [65535, 0], "uncomfortable routine devised by nature then": [65535, 0], "routine devised by nature then he": [65535, 0], "devised by nature then he thought": [65535, 0], "by nature then he thought of": [65535, 0], "nature then he thought of his": [65535, 0], "then he thought of his flower": [65535, 0], "he thought of his flower he": [65535, 0], "thought of his flower he got": [65535, 0], "of his flower he got it": [65535, 0], "his flower he got it out": [65535, 0], "flower he got it out rumpled": [65535, 0], "he got it out rumpled and": [65535, 0], "got it out rumpled and wilted": [65535, 0], "it out rumpled and wilted and": [65535, 0], "out rumpled and wilted and it": [65535, 0], "rumpled and wilted and it mightily": [65535, 0], "and wilted and it mightily increased": [65535, 0], "wilted and it mightily increased his": [65535, 0], "and it mightily increased his dismal": [65535, 0], "it mightily increased his dismal felicity": [65535, 0], "mightily increased his dismal felicity he": [65535, 0], "increased his dismal felicity he wondered": [65535, 0], "his dismal felicity he wondered if": [65535, 0], "dismal felicity he wondered if she": [65535, 0], "felicity he wondered if she would": [65535, 0], "he wondered if she would pity": [65535, 0], "wondered if she would pity him": [65535, 0], "if she would pity him if": [65535, 0], "she would pity him if she": [65535, 0], "would pity him if she knew": [65535, 0], "pity him if she knew would": [65535, 0], "him if she knew would she": [65535, 0], "if she knew would she cry": [65535, 0], "she knew would she cry and": [65535, 0], "knew would she cry and wish": [65535, 0], "would she cry and wish that": [65535, 0], "she cry and wish that she": [65535, 0], "cry and wish that she had": [65535, 0], "and wish that she had a": [65535, 0], "wish that she had a right": [65535, 0], "that she had a right to": [65535, 0], "she had a right to put": [65535, 0], "had a right to put her": [65535, 0], "a right to put her arms": [65535, 0], "right to put her arms around": [65535, 0], "to put her arms around his": [65535, 0], "put her arms around his neck": [65535, 0], "her arms around his neck and": [65535, 0], "arms around his neck and comfort": [65535, 0], "around his neck and comfort him": [65535, 0], "his neck and comfort him or": [65535, 0], "neck and comfort him or would": [65535, 0], "and comfort him or would she": [65535, 0], "comfort him or would she turn": [65535, 0], "him or would she turn coldly": [65535, 0], "or would she turn coldly away": [65535, 0], "would she turn coldly away like": [65535, 0], "she turn coldly away like all": [65535, 0], "turn coldly away like all the": [65535, 0], "coldly away like all the hollow": [65535, 0], "away like all the hollow world": [65535, 0], "like all the hollow world this": [65535, 0], "all the hollow world this picture": [65535, 0], "the hollow world this picture brought": [65535, 0], "hollow world this picture brought such": [65535, 0], "world this picture brought such an": [65535, 0], "this picture brought such an agony": [65535, 0], "picture brought such an agony of": [65535, 0], "brought such an agony of pleasurable": [65535, 0], "such an agony of pleasurable suffering": [65535, 0], "an agony of pleasurable suffering that": [65535, 0], "agony of pleasurable suffering that he": [65535, 0], "of pleasurable suffering that he worked": [65535, 0], "pleasurable suffering that he worked it": [65535, 0], "suffering that he worked it over": [65535, 0], "that he worked it over and": [65535, 0], "he worked it over and over": [65535, 0], "worked it over and over again": [65535, 0], "it over and over again in": [65535, 0], "over and over again in his": [65535, 0], "and over again in his mind": [65535, 0], "over again in his mind and": [65535, 0], "again in his mind and set": [65535, 0], "in his mind and set it": [65535, 0], "his mind and set it up": [65535, 0], "mind and set it up in": [65535, 0], "and set it up in new": [65535, 0], "set it up in new and": [65535, 0], "it up in new and varied": [65535, 0], "up in new and varied lights": [65535, 0], "in new and varied lights till": [65535, 0], "new and varied lights till he": [65535, 0], "and varied lights till he wore": [65535, 0], "varied lights till he wore it": [65535, 0], "lights till he wore it threadbare": [65535, 0], "till he wore it threadbare at": [65535, 0], "he wore it threadbare at last": [65535, 0], "wore it threadbare at last he": [65535, 0], "it threadbare at last he rose": [65535, 0], "threadbare at last he rose up": [65535, 0], "at last he rose up sighing": [65535, 0], "last he rose up sighing and": [65535, 0], "he rose up sighing and departed": [65535, 0], "rose up sighing and departed in": [65535, 0], "up sighing and departed in the": [65535, 0], "sighing and departed in the darkness": [65535, 0], "and departed in the darkness about": [65535, 0], "departed in the darkness about half": [65535, 0], "in the darkness about half past": [65535, 0], "the darkness about half past nine": [65535, 0], "darkness about half past nine or": [65535, 0], "about half past nine or ten": [65535, 0], "half past nine or ten o'clock": [65535, 0], "past nine or ten o'clock he": [65535, 0], "nine or ten o'clock he came": [65535, 0], "or ten o'clock he came along": [65535, 0], "ten o'clock he came along the": [65535, 0], "o'clock he came along the deserted": [65535, 0], "he came along the deserted street": [65535, 0], "came along the deserted street to": [65535, 0], "along the deserted street to where": [65535, 0], "the deserted street to where the": [65535, 0], "deserted street to where the adored": [65535, 0], "street to where the adored unknown": [65535, 0], "to where the adored unknown lived": [65535, 0], "where the adored unknown lived he": [65535, 0], "the adored unknown lived he paused": [65535, 0], "adored unknown lived he paused a": [65535, 0], "unknown lived he paused a moment": [65535, 0], "lived he paused a moment no": [65535, 0], "he paused a moment no sound": [65535, 0], "paused a moment no sound fell": [65535, 0], "a moment no sound fell upon": [65535, 0], "moment no sound fell upon his": [65535, 0], "no sound fell upon his listening": [65535, 0], "sound fell upon his listening ear": [65535, 0], "fell upon his listening ear a": [65535, 0], "upon his listening ear a candle": [65535, 0], "his listening ear a candle was": [65535, 0], "listening ear a candle was casting": [65535, 0], "ear a candle was casting a": [65535, 0], "a candle was casting a dull": [65535, 0], "candle was casting a dull glow": [65535, 0], "was casting a dull glow upon": [65535, 0], "casting a dull glow upon the": [65535, 0], "a dull glow upon the curtain": [65535, 0], "dull glow upon the curtain of": [65535, 0], "glow upon the curtain of a": [65535, 0], "upon the curtain of a second": [65535, 0], "the curtain of a second story": [65535, 0], "curtain of a second story window": [65535, 0], "of a second story window was": [65535, 0], "a second story window was the": [65535, 0], "second story window was the sacred": [65535, 0], "story window was the sacred presence": [65535, 0], "window was the sacred presence there": [65535, 0], "was the sacred presence there he": [65535, 0], "the sacred presence there he climbed": [65535, 0], "sacred presence there he climbed the": [65535, 0], "presence there he climbed the fence": [65535, 0], "there he climbed the fence threaded": [65535, 0], "he climbed the fence threaded his": [65535, 0], "climbed the fence threaded his stealthy": [65535, 0], "the fence threaded his stealthy way": [65535, 0], "fence threaded his stealthy way through": [65535, 0], "threaded his stealthy way through the": [65535, 0], "his stealthy way through the plants": [65535, 0], "stealthy way through the plants till": [65535, 0], "way through the plants till he": [65535, 0], "through the plants till he stood": [65535, 0], "the plants till he stood under": [65535, 0], "plants till he stood under that": [65535, 0], "till he stood under that window": [65535, 0], "he stood under that window he": [65535, 0], "stood under that window he looked": [65535, 0], "under that window he looked up": [65535, 0], "that window he looked up at": [65535, 0], "window he looked up at it": [65535, 0], "he looked up at it long": [65535, 0], "looked up at it long and": [65535, 0], "up at it long and with": [65535, 0], "at it long and with emotion": [65535, 0], "it long and with emotion then": [65535, 0], "long and with emotion then he": [65535, 0], "and with emotion then he laid": [65535, 0], "with emotion then he laid him": [65535, 0], "emotion then he laid him down": [65535, 0], "then he laid him down on": [65535, 0], "he laid him down on the": [65535, 0], "laid him down on the ground": [65535, 0], "him down on the ground under": [65535, 0], "down on the ground under it": [65535, 0], "on the ground under it disposing": [65535, 0], "the ground under it disposing himself": [65535, 0], "ground under it disposing himself upon": [65535, 0], "under it disposing himself upon his": [65535, 0], "it disposing himself upon his back": [65535, 0], "disposing himself upon his back with": [65535, 0], "himself upon his back with his": [65535, 0], "upon his back with his hands": [65535, 0], "his back with his hands clasped": [65535, 0], "back with his hands clasped upon": [65535, 0], "with his hands clasped upon his": [65535, 0], "his hands clasped upon his breast": [65535, 0], "hands clasped upon his breast and": [65535, 0], "clasped upon his breast and holding": [65535, 0], "upon his breast and holding his": [65535, 0], "his breast and holding his poor": [65535, 0], "breast and holding his poor wilted": [65535, 0], "and holding his poor wilted flower": [65535, 0], "holding his poor wilted flower and": [65535, 0], "his poor wilted flower and thus": [65535, 0], "poor wilted flower and thus he": [65535, 0], "wilted flower and thus he would": [65535, 0], "flower and thus he would die": [65535, 0], "and thus he would die out": [65535, 0], "thus he would die out in": [65535, 0], "he would die out in the": [65535, 0], "would die out in the cold": [65535, 0], "die out in the cold world": [65535, 0], "out in the cold world with": [65535, 0], "in the cold world with no": [65535, 0], "the cold world with no shelter": [65535, 0], "cold world with no shelter over": [65535, 0], "world with no shelter over his": [65535, 0], "with no shelter over his homeless": [65535, 0], "no shelter over his homeless head": [65535, 0], "shelter over his homeless head no": [65535, 0], "over his homeless head no friendly": [65535, 0], "his homeless head no friendly hand": [65535, 0], "homeless head no friendly hand to": [65535, 0], "head no friendly hand to wipe": [65535, 0], "no friendly hand to wipe the": [65535, 0], "friendly hand to wipe the death": [65535, 0], "hand to wipe the death damps": [65535, 0], "to wipe the death damps from": [65535, 0], "wipe the death damps from his": [65535, 0], "the death damps from his brow": [65535, 0], "death damps from his brow no": [65535, 0], "damps from his brow no loving": [65535, 0], "from his brow no loving face": [65535, 0], "his brow no loving face to": [65535, 0], "brow no loving face to bend": [65535, 0], "no loving face to bend pityingly": [65535, 0], "loving face to bend pityingly over": [65535, 0], "face to bend pityingly over him": [65535, 0], "to bend pityingly over him when": [65535, 0], "bend pityingly over him when the": [65535, 0], "pityingly over him when the great": [65535, 0], "over him when the great agony": [65535, 0], "him when the great agony came": [65535, 0], "when the great agony came and": [65535, 0], "the great agony came and thus": [65535, 0], "great agony came and thus she": [65535, 0], "agony came and thus she would": [65535, 0], "came and thus she would see": [65535, 0], "and thus she would see him": [65535, 0], "thus she would see him when": [65535, 0], "she would see him when she": [65535, 0], "would see him when she looked": [65535, 0], "see him when she looked out": [65535, 0], "him when she looked out upon": [65535, 0], "when she looked out upon the": [65535, 0], "she looked out upon the glad": [65535, 0], "looked out upon the glad morning": [65535, 0], "out upon the glad morning and": [65535, 0], "upon the glad morning and oh": [65535, 0], "the glad morning and oh would": [65535, 0], "glad morning and oh would she": [65535, 0], "morning and oh would she drop": [65535, 0], "and oh would she drop one": [65535, 0], "oh would she drop one little": [65535, 0], "would she drop one little tear": [65535, 0], "she drop one little tear upon": [65535, 0], "drop one little tear upon his": [65535, 0], "one little tear upon his poor": [65535, 0], "little tear upon his poor lifeless": [65535, 0], "tear upon his poor lifeless form": [65535, 0], "upon his poor lifeless form would": [65535, 0], "his poor lifeless form would she": [65535, 0], "poor lifeless form would she heave": [65535, 0], "lifeless form would she heave one": [65535, 0], "form would she heave one little": [65535, 0], "would she heave one little sigh": [65535, 0], "she heave one little sigh to": [65535, 0], "heave one little sigh to see": [65535, 0], "one little sigh to see a": [65535, 0], "little sigh to see a bright": [65535, 0], "sigh to see a bright young": [65535, 0], "to see a bright young life": [65535, 0], "see a bright young life so": [65535, 0], "a bright young life so rudely": [65535, 0], "bright young life so rudely blighted": [65535, 0], "young life so rudely blighted so": [65535, 0], "life so rudely blighted so untimely": [65535, 0], "so rudely blighted so untimely cut": [65535, 0], "rudely blighted so untimely cut down": [65535, 0], "blighted so untimely cut down the": [65535, 0], "so untimely cut down the window": [65535, 0], "untimely cut down the window went": [65535, 0], "cut down the window went up": [65535, 0], "down the window went up a": [65535, 0], "the window went up a maid": [65535, 0], "window went up a maid servant's": [65535, 0], "went up a maid servant's discordant": [65535, 0], "up a maid servant's discordant voice": [65535, 0], "a maid servant's discordant voice profaned": [65535, 0], "maid servant's discordant voice profaned the": [65535, 0], "servant's discordant voice profaned the holy": [65535, 0], "discordant voice profaned the holy calm": [65535, 0], "voice profaned the holy calm and": [65535, 0], "profaned the holy calm and a": [65535, 0], "the holy calm and a deluge": [65535, 0], "holy calm and a deluge of": [65535, 0], "calm and a deluge of water": [65535, 0], "and a deluge of water drenched": [65535, 0], "a deluge of water drenched the": [65535, 0], "deluge of water drenched the prone": [65535, 0], "of water drenched the prone martyr's": [65535, 0], "water drenched the prone martyr's remains": [65535, 0], "drenched the prone martyr's remains the": [65535, 0], "the prone martyr's remains the strangling": [65535, 0], "prone martyr's remains the strangling hero": [65535, 0], "martyr's remains the strangling hero sprang": [65535, 0], "remains the strangling hero sprang up": [65535, 0], "the strangling hero sprang up with": [65535, 0], "strangling hero sprang up with a": [65535, 0], "hero sprang up with a relieving": [65535, 0], "sprang up with a relieving snort": [65535, 0], "up with a relieving snort there": [65535, 0], "with a relieving snort there was": [65535, 0], "a relieving snort there was a": [65535, 0], "relieving snort there was a whiz": [65535, 0], "snort there was a whiz as": [65535, 0], "there was a whiz as of": [65535, 0], "was a whiz as of a": [65535, 0], "a whiz as of a missile": [65535, 0], "whiz as of a missile in": [65535, 0], "as of a missile in the": [65535, 0], "of a missile in the air": [65535, 0], "a missile in the air mingled": [65535, 0], "missile in the air mingled with": [65535, 0], "in the air mingled with the": [65535, 0], "the air mingled with the murmur": [65535, 0], "air mingled with the murmur of": [65535, 0], "mingled with the murmur of a": [65535, 0], "with the murmur of a curse": [65535, 0], "the murmur of a curse a": [65535, 0], "murmur of a curse a sound": [65535, 0], "of a curse a sound as": [65535, 0], "a curse a sound as of": [65535, 0], "curse a sound as of shivering": [65535, 0], "a sound as of shivering glass": [65535, 0], "sound as of shivering glass followed": [65535, 0], "as of shivering glass followed and": [65535, 0], "of shivering glass followed and a": [65535, 0], "shivering glass followed and a small": [65535, 0], "glass followed and a small vague": [65535, 0], "followed and a small vague form": [65535, 0], "and a small vague form went": [65535, 0], "a small vague form went over": [65535, 0], "small vague form went over the": [65535, 0], "vague form went over the fence": [65535, 0], "form went over the fence and": [65535, 0], "went over the fence and shot": [65535, 0], "over the fence and shot away": [65535, 0], "the fence and shot away in": [65535, 0], "fence and shot away in the": [65535, 0], "and shot away in the gloom": [65535, 0], "shot away in the gloom not": [65535, 0], "away in the gloom not long": [65535, 0], "in the gloom not long after": [65535, 0], "the gloom not long after as": [65535, 0], "gloom not long after as tom": [65535, 0], "not long after as tom all": [65535, 0], "long after as tom all undressed": [65535, 0], "after as tom all undressed for": [65535, 0], "as tom all undressed for bed": [65535, 0], "tom all undressed for bed was": [65535, 0], "all undressed for bed was surveying": [65535, 0], "undressed for bed was surveying his": [65535, 0], "for bed was surveying his drenched": [65535, 0], "bed was surveying his drenched garments": [65535, 0], "was surveying his drenched garments by": [65535, 0], "surveying his drenched garments by the": [65535, 0], "his drenched garments by the light": [65535, 0], "drenched garments by the light of": [65535, 0], "garments by the light of a": [65535, 0], "by the light of a tallow": [65535, 0], "the light of a tallow dip": [65535, 0], "light of a tallow dip sid": [65535, 0], "of a tallow dip sid woke": [65535, 0], "a tallow dip sid woke up": [65535, 0], "tallow dip sid woke up but": [65535, 0], "dip sid woke up but if": [65535, 0], "sid woke up but if he": [65535, 0], "woke up but if he had": [65535, 0], "up but if he had any": [65535, 0], "but if he had any dim": [65535, 0], "if he had any dim idea": [65535, 0], "he had any dim idea of": [65535, 0], "had any dim idea of making": [65535, 0], "any dim idea of making any": [65535, 0], "dim idea of making any references": [65535, 0], "idea of making any references to": [65535, 0], "of making any references to allusions": [65535, 0], "making any references to allusions he": [65535, 0], "any references to allusions he thought": [65535, 0], "references to allusions he thought better": [65535, 0], "to allusions he thought better of": [65535, 0], "allusions he thought better of it": [65535, 0], "he thought better of it and": [65535, 0], "thought better of it and held": [65535, 0], "better of it and held his": [65535, 0], "of it and held his peace": [65535, 0], "it and held his peace for": [65535, 0], "and held his peace for there": [65535, 0], "held his peace for there was": [65535, 0], "his peace for there was danger": [65535, 0], "peace for there was danger in": [65535, 0], "for there was danger in tom's": [65535, 0], "there was danger in tom's eye": [65535, 0], "was danger in tom's eye tom": [65535, 0], "danger in tom's eye tom turned": [65535, 0], "in tom's eye tom turned in": [65535, 0], "tom's eye tom turned in without": [65535, 0], "eye tom turned in without the": [65535, 0], "tom turned in without the added": [65535, 0], "turned in without the added vexation": [65535, 0], "in without the added vexation of": [65535, 0], "without the added vexation of prayers": [65535, 0], "the added vexation of prayers and": [65535, 0], "added vexation of prayers and sid": [65535, 0], "vexation of prayers and sid made": [65535, 0], "of prayers and sid made mental": [65535, 0], "prayers and sid made mental note": [65535, 0], "and sid made mental note of": [65535, 0], "sid made mental note of the": [65535, 0], "made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who": [65535, 0], "presented himself before aunt polly who was": [65535, 0], "himself before aunt polly who was sitting": [65535, 0], "before aunt polly who was sitting by": [65535, 0], "aunt polly who was sitting by an": [65535, 0], "polly who was sitting by an open": [65535, 0], "who was sitting by an open window": [65535, 0], "was sitting by an open window in": [65535, 0], "sitting by an open window in a": [65535, 0], "by an open window in a pleasant": [65535, 0], "an open window in a pleasant rearward": [65535, 0], "open window in a pleasant rearward apartment": [65535, 0], "window in a pleasant rearward apartment which": [65535, 0], "in a pleasant rearward apartment which was": [65535, 0], "a pleasant rearward apartment which was bedroom": [65535, 0], "pleasant rearward apartment which was bedroom breakfast": [65535, 0], "rearward apartment which was bedroom breakfast room": [65535, 0], "apartment which was bedroom breakfast room dining": [65535, 0], "which was bedroom breakfast room dining room": [65535, 0], "was bedroom breakfast room dining room and": [65535, 0], "bedroom breakfast room dining room and library": [65535, 0], "breakfast room dining room and library combined": [65535, 0], "room dining room and library combined the": [65535, 0], "dining room and library combined the balmy": [65535, 0], "room and library combined the balmy summer": [65535, 0], "and library combined the balmy summer air": [65535, 0], "library combined the balmy summer air the": [65535, 0], "combined the balmy summer air the restful": [65535, 0], "the balmy summer air the restful quiet": [65535, 0], "balmy summer air the restful quiet the": [65535, 0], "summer air the restful quiet the odor": [65535, 0], "air the restful quiet the odor of": [65535, 0], "the restful quiet the odor of the": [65535, 0], "restful quiet the odor of the flowers": [65535, 0], "quiet the odor of the flowers and": [65535, 0], "the odor of the flowers and the": [65535, 0], "odor of the flowers and the drowsing": [65535, 0], "of the flowers and the drowsing murmur": [65535, 0], "the flowers and the drowsing murmur of": [65535, 0], "flowers and the drowsing murmur of the": [65535, 0], "and the drowsing murmur of the bees": [65535, 0], "the drowsing murmur of the bees had": [65535, 0], "drowsing murmur of the bees had had": [65535, 0], "murmur of the bees had had their": [65535, 0], "of the bees had had their effect": [65535, 0], "the bees had had their effect and": [65535, 0], "bees had had their effect and she": [65535, 0], "had had their effect and she was": [65535, 0], "had their effect and she was nodding": [65535, 0], "their effect and she was nodding over": [65535, 0], "effect and she was nodding over her": [65535, 0], "and she was nodding over her knitting": [65535, 0], "she was nodding over her knitting for": [65535, 0], "was nodding over her knitting for she": [65535, 0], "nodding over her knitting for she had": [65535, 0], "over her knitting for she had no": [65535, 0], "her knitting for she had no company": [65535, 0], "knitting for she had no company but": [65535, 0], "for she had no company but the": [65535, 0], "she had no company but the cat": [65535, 0], "had no company but the cat and": [65535, 0], "no company but the cat and it": [65535, 0], "company but the cat and it was": [65535, 0], "but the cat and it was asleep": [65535, 0], "the cat and it was asleep in": [65535, 0], "cat and it was asleep in her": [65535, 0], "and it was asleep in her lap": [65535, 0], "it was asleep in her lap her": [65535, 0], "was asleep in her lap her spectacles": [65535, 0], "asleep in her lap her spectacles were": [65535, 0], "in her lap her spectacles were propped": [65535, 0], "her lap her spectacles were propped up": [65535, 0], "lap her spectacles were propped up on": [65535, 0], "her spectacles were propped up on her": [65535, 0], "spectacles were propped up on her gray": [65535, 0], "were propped up on her gray head": [65535, 0], "propped up on her gray head for": [65535, 0], "up on her gray head for safety": [65535, 0], "on her gray head for safety she": [65535, 0], "her gray head for safety she had": [65535, 0], "gray head for safety she had thought": [65535, 0], "head for safety she had thought that": [65535, 0], "for safety she had thought that of": [65535, 0], "safety she had thought that of course": [65535, 0], "she had thought that of course tom": [65535, 0], "had thought that of course tom had": [65535, 0], "thought that of course tom had deserted": [65535, 0], "that of course tom had deserted long": [65535, 0], "of course tom had deserted long ago": [65535, 0], "course tom had deserted long ago and": [65535, 0], "tom had deserted long ago and she": [65535, 0], "had deserted long ago and she wondered": [65535, 0], "deserted long ago and she wondered at": [65535, 0], "long ago and she wondered at seeing": [65535, 0], "ago and she wondered at seeing him": [65535, 0], "and she wondered at seeing him place": [65535, 0], "she wondered at seeing him place himself": [65535, 0], "wondered at seeing him place himself in": [65535, 0], "at seeing him place himself in her": [65535, 0], "seeing him place himself in her power": [65535, 0], "him place himself in her power again": [65535, 0], "place himself in her power again in": [65535, 0], "himself in her power again in this": [65535, 0], "in her power again in this intrepid": [65535, 0], "her power again in this intrepid way": [65535, 0], "power again in this intrepid way he": [65535, 0], "again in this intrepid way he said": [65535, 0], "in this intrepid way he said mayn't": [65535, 0], "this intrepid way he said mayn't i": [65535, 0], "intrepid way he said mayn't i go": [65535, 0], "way he said mayn't i go and": [65535, 0], "he said mayn't i go and play": [65535, 0], "said mayn't i go and play now": [65535, 0], "mayn't i go and play now aunt": [65535, 0], "i go and play now aunt what": [65535, 0], "go and play now aunt what a'ready": [65535, 0], "and play now aunt what a'ready how": [65535, 0], "play now aunt what a'ready how much": [65535, 0], "now aunt what a'ready how much have": [65535, 0], "aunt what a'ready how much have you": [65535, 0], "what a'ready how much have you done": [65535, 0], "a'ready how much have you done it's": [65535, 0], "how much have you done it's all": [65535, 0], "much have you done it's all done": [65535, 0], "have you done it's all done aunt": [65535, 0], "you done it's all done aunt tom": [65535, 0], "done it's all done aunt tom don't": [65535, 0], "it's all done aunt tom don't lie": [65535, 0], "all done aunt tom don't lie to": [65535, 0], "done aunt tom don't lie to me": [65535, 0], "aunt tom don't lie to me i": [65535, 0], "tom don't lie to me i can't": [65535, 0], "don't lie to me i can't bear": [65535, 0], "lie to me i can't bear it": [65535, 0], "to me i can't bear it i": [65535, 0], "me i can't bear it i ain't": [65535, 0], "i can't bear it i ain't aunt": [65535, 0], "can't bear it i ain't aunt it": [65535, 0], "bear it i ain't aunt it is": [65535, 0], "it i ain't aunt it is all": [65535, 0], "i ain't aunt it is all done": [65535, 0], "ain't aunt it is all done aunt": [65535, 0], "aunt it is all done aunt polly": [65535, 0], "it is all done aunt polly placed": [65535, 0], "is all done aunt polly placed small": [65535, 0], "all done aunt polly placed small trust": [65535, 0], "done aunt polly placed small trust in": [65535, 0], "aunt polly placed small trust in such": [65535, 0], "polly placed small trust in such evidence": [65535, 0], "placed small trust in such evidence she": [65535, 0], "small trust in such evidence she went": [65535, 0], "trust in such evidence she went out": [65535, 0], "in such evidence she went out to": [65535, 0], "such evidence she went out to see": [65535, 0], "evidence she went out to see for": [65535, 0], "she went out to see for herself": [65535, 0], "went out to see for herself and": [65535, 0], "out to see for herself and she": [65535, 0], "to see for herself and she would": [65535, 0], "see for herself and she would have": [65535, 0], "for herself and she would have been": [65535, 0], "herself and she would have been content": [65535, 0], "and she would have been content to": [65535, 0], "she would have been content to find": [65535, 0], "would have been content to find twenty": [65535, 0], "have been content to find twenty per": [65535, 0], "been content to find twenty per cent": [65535, 0], "content to find twenty per cent of": [65535, 0], "to find twenty per cent of tom's": [65535, 0], "find twenty per cent of tom's statement": [65535, 0], "twenty per cent of tom's statement true": [65535, 0], "per cent of tom's statement true when": [65535, 0], "cent of tom's statement true when she": [65535, 0], "of tom's statement true when she found": [65535, 0], "tom's statement true when she found the": [65535, 0], "statement true when she found the entire": [65535, 0], "true when she found the entire fence": [65535, 0], "when she found the entire fence whitewashed": [65535, 0], "she found the entire fence whitewashed and": [65535, 0], "found the entire fence whitewashed and not": [65535, 0], "the entire fence whitewashed and not only": [65535, 0], "entire fence whitewashed and not only whitewashed": [65535, 0], "fence whitewashed and not only whitewashed but": [65535, 0], "whitewashed and not only whitewashed but elaborately": [65535, 0], "and not only whitewashed but elaborately coated": [65535, 0], "not only whitewashed but elaborately coated and": [65535, 0], "only whitewashed but elaborately coated and recoated": [65535, 0], "whitewashed but elaborately coated and recoated and": [65535, 0], "but elaborately coated and recoated and even": [65535, 0], "elaborately coated and recoated and even a": [65535, 0], "coated and recoated and even a streak": [65535, 0], "and recoated and even a streak added": [65535, 0], "recoated and even a streak added to": [65535, 0], "and even a streak added to the": [65535, 0], "even a streak added to the ground": [65535, 0], "a streak added to the ground her": [65535, 0], "streak added to the ground her astonishment": [65535, 0], "added to the ground her astonishment was": [65535, 0], "to the ground her astonishment was almost": [65535, 0], "the ground her astonishment was almost unspeakable": [65535, 0], "ground her astonishment was almost unspeakable she": [65535, 0], "her astonishment was almost unspeakable she said": [65535, 0], "astonishment was almost unspeakable she said well": [65535, 0], "was almost unspeakable she said well i": [65535, 0], "almost unspeakable she said well i never": [65535, 0], "unspeakable she said well i never there's": [65535, 0], "she said well i never there's no": [65535, 0], "said well i never there's no getting": [65535, 0], "well i never there's no getting round": [65535, 0], "i never there's no getting round it": [65535, 0], "never there's no getting round it you": [65535, 0], "there's no getting round it you can": [65535, 0], "no getting round it you can work": [65535, 0], "getting round it you can work when": [65535, 0], "round it you can work when you're": [65535, 0], "it you can work when you're a": [65535, 0], "you can work when you're a mind": [65535, 0], "can work when you're a mind to": [65535, 0], "work when you're a mind to tom": [65535, 0], "when you're a mind to tom and": [65535, 0], "you're a mind to tom and then": [65535, 0], "a mind to tom and then she": [65535, 0], "mind to tom and then she diluted": [65535, 0], "to tom and then she diluted the": [65535, 0], "tom and then she diluted the compliment": [65535, 0], "and then she diluted the compliment by": [65535, 0], "then she diluted the compliment by adding": [65535, 0], "she diluted the compliment by adding but": [65535, 0], "diluted the compliment by adding but it's": [65535, 0], "the compliment by adding but it's powerful": [65535, 0], "compliment by adding but it's powerful seldom": [65535, 0], "by adding but it's powerful seldom you're": [65535, 0], "adding but it's powerful seldom you're a": [65535, 0], "but it's powerful seldom you're a mind": [65535, 0], "it's powerful seldom you're a mind to": [65535, 0], "powerful seldom you're a mind to i'm": [65535, 0], "seldom you're a mind to i'm bound": [65535, 0], "you're a mind to i'm bound to": [65535, 0], "a mind to i'm bound to say": [65535, 0], "mind to i'm bound to say well": [65535, 0], "to i'm bound to say well go": [65535, 0], "i'm bound to say well go 'long": [65535, 0], "bound to say well go 'long and": [65535, 0], "to say well go 'long and play": [65535, 0], "say well go 'long and play but": [65535, 0], "well go 'long and play but mind": [65535, 0], "go 'long and play but mind you": [65535, 0], "'long and play but mind you get": [65535, 0], "and play but mind you get back": [65535, 0], "play but mind you get back some": [65535, 0], "but mind you get back some time": [65535, 0], "mind you get back some time in": [65535, 0], "you get back some time in a": [65535, 0], "get back some time in a week": [65535, 0], "back some time in a week or": [65535, 0], "some time in a week or i'll": [65535, 0], "time in a week or i'll tan": [65535, 0], "in a week or i'll tan you": [65535, 0], "a week or i'll tan you she": [65535, 0], "week or i'll tan you she was": [65535, 0], "or i'll tan you she was so": [65535, 0], "i'll tan you she was so overcome": [65535, 0], "tan you she was so overcome by": [65535, 0], "you she was so overcome by the": [65535, 0], "she was so overcome by the splendor": [65535, 0], "was so overcome by the splendor of": [65535, 0], "so overcome by the splendor of his": [65535, 0], "overcome by the splendor of his achievement": [65535, 0], "by the splendor of his achievement that": [65535, 0], "the splendor of his achievement that she": [65535, 0], "splendor of his achievement that she took": [65535, 0], "of his achievement that she took him": [65535, 0], "his achievement that she took him into": [65535, 0], "achievement that she took him into the": [65535, 0], "that she took him into the closet": [65535, 0], "she took him into the closet and": [65535, 0], "took him into the closet and selected": [65535, 0], "him into the closet and selected a": [65535, 0], "into the closet and selected a choice": [65535, 0], "the closet and selected a choice apple": [65535, 0], "closet and selected a choice apple and": [65535, 0], "and selected a choice apple and delivered": [65535, 0], "selected a choice apple and delivered it": [65535, 0], "a choice apple and delivered it to": [65535, 0], "choice apple and delivered it to him": [65535, 0], "apple and delivered it to him along": [65535, 0], "and delivered it to him along with": [65535, 0], "delivered it to him along with an": [65535, 0], "it to him along with an improving": [65535, 0], "to him along with an improving lecture": [65535, 0], "him along with an improving lecture upon": [65535, 0], "along with an improving lecture upon the": [65535, 0], "with an improving lecture upon the added": [65535, 0], "an improving lecture upon the added value": [65535, 0], "improving lecture upon the added value and": [65535, 0], "lecture upon the added value and flavor": [65535, 0], "upon the added value and flavor a": [65535, 0], "the added value and flavor a treat": [65535, 0], "added value and flavor a treat took": [65535, 0], "value and flavor a treat took to": [65535, 0], "and flavor a treat took to itself": [65535, 0], "flavor a treat took to itself when": [65535, 0], "a treat took to itself when it": [65535, 0], "treat took to itself when it came": [65535, 0], "took to itself when it came without": [65535, 0], "to itself when it came without sin": [65535, 0], "itself when it came without sin through": [65535, 0], "when it came without sin through virtuous": [65535, 0], "it came without sin through virtuous effort": [65535, 0], "came without sin through virtuous effort and": [65535, 0], "without sin through virtuous effort and while": [65535, 0], "sin through virtuous effort and while she": [65535, 0], "through virtuous effort and while she closed": [65535, 0], "virtuous effort and while she closed with": [65535, 0], "effort and while she closed with a": [65535, 0], "and while she closed with a happy": [65535, 0], "while she closed with a happy scriptural": [65535, 0], "she closed with a happy scriptural flourish": [65535, 0], "closed with a happy scriptural flourish he": [65535, 0], "with a happy scriptural flourish he hooked": [65535, 0], "a happy scriptural flourish he hooked a": [65535, 0], "happy scriptural flourish he hooked a doughnut": [65535, 0], "scriptural flourish he hooked a doughnut then": [65535, 0], "flourish he hooked a doughnut then he": [65535, 0], "he hooked a doughnut then he skipped": [65535, 0], "hooked a doughnut then he skipped out": [65535, 0], "a doughnut then he skipped out and": [65535, 0], "doughnut then he skipped out and saw": [65535, 0], "then he skipped out and saw sid": [65535, 0], "he skipped out and saw sid just": [65535, 0], "skipped out and saw sid just starting": [65535, 0], "out and saw sid just starting up": [65535, 0], "and saw sid just starting up the": [65535, 0], "saw sid just starting up the outside": [65535, 0], "sid just starting up the outside stairway": [65535, 0], "just starting up the outside stairway that": [65535, 0], "starting up the outside stairway that led": [65535, 0], "up the outside stairway that led to": [65535, 0], "the outside stairway that led to the": [65535, 0], "outside stairway that led to the back": [65535, 0], "stairway that led to the back rooms": [65535, 0], "that led to the back rooms on": [65535, 0], "led to the back rooms on the": [65535, 0], "to the back rooms on the second": [65535, 0], "the back rooms on the second floor": [65535, 0], "back rooms on the second floor clods": [65535, 0], "rooms on the second floor clods were": [65535, 0], "on the second floor clods were handy": [65535, 0], "the second floor clods were handy and": [65535, 0], "second floor clods were handy and the": [65535, 0], "floor clods were handy and the air": [65535, 0], "clods were handy and the air was": [65535, 0], "were handy and the air was full": [65535, 0], "handy and the air was full of": [65535, 0], "and the air was full of them": [65535, 0], "the air was full of them in": [65535, 0], "air was full of them in a": [65535, 0], "was full of them in a twinkling": [65535, 0], "full of them in a twinkling they": [65535, 0], "of them in a twinkling they raged": [65535, 0], "them in a twinkling they raged around": [65535, 0], "in a twinkling they raged around sid": [65535, 0], "a twinkling they raged around sid like": [65535, 0], "twinkling they raged around sid like a": [65535, 0], "they raged around sid like a hail": [65535, 0], "raged around sid like a hail storm": [65535, 0], "around sid like a hail storm and": [65535, 0], "sid like a hail storm and before": [65535, 0], "like a hail storm and before aunt": [65535, 0], "a hail storm and before aunt polly": [65535, 0], "hail storm and before aunt polly could": [65535, 0], "storm and before aunt polly could collect": [65535, 0], "and before aunt polly could collect her": [65535, 0], "before aunt polly could collect her surprised": [65535, 0], "aunt polly could collect her surprised faculties": [65535, 0], "polly could collect her surprised faculties and": [65535, 0], "could collect her surprised faculties and sally": [65535, 0], "collect her surprised faculties and sally to": [65535, 0], "her surprised faculties and sally to the": [65535, 0], "surprised faculties and sally to the rescue": [65535, 0], "faculties and sally to the rescue six": [65535, 0], "and sally to the rescue six or": [65535, 0], "sally to the rescue six or seven": [65535, 0], "to the rescue six or seven clods": [65535, 0], "the rescue six or seven clods had": [65535, 0], "rescue six or seven clods had taken": [65535, 0], "six or seven clods had taken personal": [65535, 0], "or seven clods had taken personal effect": [65535, 0], "seven clods had taken personal effect and": [65535, 0], "clods had taken personal effect and tom": [65535, 0], "had taken personal effect and tom was": [65535, 0], "taken personal effect and tom was over": [65535, 0], "personal effect and tom was over the": [65535, 0], "effect and tom was over the fence": [65535, 0], "and tom was over the fence and": [65535, 0], "tom was over the fence and gone": [65535, 0], "was over the fence and gone there": [65535, 0], "over the fence and gone there was": [65535, 0], "the fence and gone there was a": [65535, 0], "fence and gone there was a gate": [65535, 0], "and gone there was a gate but": [65535, 0], "gone there was a gate but as": [65535, 0], "there was a gate but as a": [65535, 0], "was a gate but as a general": [65535, 0], "a gate but as a general thing": [65535, 0], "gate but as a general thing he": [65535, 0], "but as a general thing he was": [65535, 0], "as a general thing he was too": [65535, 0], "a general thing he was too crowded": [65535, 0], "general thing he was too crowded for": [65535, 0], "thing he was too crowded for time": [65535, 0], "he was too crowded for time to": [65535, 0], "was too crowded for time to make": [65535, 0], "too crowded for time to make use": [65535, 0], "crowded for time to make use of": [65535, 0], "for time to make use of it": [65535, 0], "time to make use of it his": [65535, 0], "to make use of it his soul": [65535, 0], "make use of it his soul was": [65535, 0], "use of it his soul was at": [65535, 0], "of it his soul was at peace": [65535, 0], "it his soul was at peace now": [65535, 0], "his soul was at peace now that": [65535, 0], "soul was at peace now that he": [65535, 0], "was at peace now that he had": [65535, 0], "at peace now that he had settled": [65535, 0], "peace now that he had settled with": [65535, 0], "now that he had settled with sid": [65535, 0], "that he had settled with sid for": [65535, 0], "he had settled with sid for calling": [65535, 0], "had settled with sid for calling attention": [65535, 0], "settled with sid for calling attention to": [65535, 0], "with sid for calling attention to his": [65535, 0], "sid for calling attention to his black": [65535, 0], "for calling attention to his black thread": [65535, 0], "calling attention to his black thread and": [65535, 0], "attention to his black thread and getting": [65535, 0], "to his black thread and getting him": [65535, 0], "his black thread and getting him into": [65535, 0], "black thread and getting him into trouble": [65535, 0], "thread and getting him into trouble tom": [65535, 0], "and getting him into trouble tom skirted": [65535, 0], "getting him into trouble tom skirted the": [65535, 0], "him into trouble tom skirted the block": [65535, 0], "into trouble tom skirted the block and": [65535, 0], "trouble tom skirted the block and came": [65535, 0], "tom skirted the block and came round": [65535, 0], "skirted the block and came round into": [65535, 0], "the block and came round into a": [65535, 0], "block and came round into a muddy": [65535, 0], "and came round into a muddy alley": [65535, 0], "came round into a muddy alley that": [65535, 0], "round into a muddy alley that led": [65535, 0], "into a muddy alley that led by": [65535, 0], "a muddy alley that led by the": [65535, 0], "muddy alley that led by the back": [65535, 0], "alley that led by the back of": [65535, 0], "that led by the back of his": [65535, 0], "led by the back of his aunt's": [65535, 0], "by the back of his aunt's cowstable": [65535, 0], "the back of his aunt's cowstable he": [65535, 0], "back of his aunt's cowstable he presently": [65535, 0], "of his aunt's cowstable he presently got": [65535, 0], "his aunt's cowstable he presently got safely": [65535, 0], "aunt's cowstable he presently got safely beyond": [65535, 0], "cowstable he presently got safely beyond the": [65535, 0], "he presently got safely beyond the reach": [65535, 0], "presently got safely beyond the reach of": [65535, 0], "got safely beyond the reach of capture": [65535, 0], "safely beyond the reach of capture and": [65535, 0], "beyond the reach of capture and punishment": [65535, 0], "the reach of capture and punishment and": [65535, 0], "reach of capture and punishment and hastened": [65535, 0], "of capture and punishment and hastened toward": [65535, 0], "capture and punishment and hastened toward the": [65535, 0], "and punishment and hastened toward the public": [65535, 0], "punishment and hastened toward the public square": [65535, 0], "and hastened toward the public square of": [65535, 0], "hastened toward the public square of the": [65535, 0], "toward the public square of the village": [65535, 0], "the public square of the village where": [65535, 0], "public square of the village where two": [65535, 0], "square of the village where two military": [65535, 0], "of the village where two military companies": [65535, 0], "the village where two military companies of": [65535, 0], "village where two military companies of boys": [65535, 0], "where two military companies of boys had": [65535, 0], "two military companies of boys had met": [65535, 0], "military companies of boys had met for": [65535, 0], "companies of boys had met for conflict": [65535, 0], "of boys had met for conflict according": [65535, 0], "boys had met for conflict according to": [65535, 0], "had met for conflict according to previous": [65535, 0], "met for conflict according to previous appointment": [65535, 0], "for conflict according to previous appointment tom": [65535, 0], "conflict according to previous appointment tom was": [65535, 0], "according to previous appointment tom was general": [65535, 0], "to previous appointment tom was general of": [65535, 0], "previous appointment tom was general of one": [65535, 0], "appointment tom was general of one of": [65535, 0], "tom was general of one of these": [65535, 0], "was general of one of these armies": [65535, 0], "general of one of these armies joe": [65535, 0], "of one of these armies joe harper": [65535, 0], "one of these armies joe harper a": [65535, 0], "of these armies joe harper a bosom": [65535, 0], "these armies joe harper a bosom friend": [65535, 0], "armies joe harper a bosom friend general": [65535, 0], "joe harper a bosom friend general of": [65535, 0], "harper a bosom friend general of the": [65535, 0], "a bosom friend general of the other": [65535, 0], "bosom friend general of the other these": [65535, 0], "friend general of the other these two": [65535, 0], "general of the other these two great": [65535, 0], "of the other these two great commanders": [65535, 0], "the other these two great commanders did": [65535, 0], "other these two great commanders did not": [65535, 0], "these two great commanders did not condescend": [65535, 0], "two great commanders did not condescend to": [65535, 0], "great commanders did not condescend to fight": [65535, 0], "commanders did not condescend to fight in": [65535, 0], "did not condescend to fight in person": [65535, 0], "not condescend to fight in person that": [65535, 0], "condescend to fight in person that being": [65535, 0], "to fight in person that being better": [65535, 0], "fight in person that being better suited": [65535, 0], "in person that being better suited to": [65535, 0], "person that being better suited to the": [65535, 0], "that being better suited to the still": [65535, 0], "being better suited to the still smaller": [65535, 0], "better suited to the still smaller fry": [65535, 0], "suited to the still smaller fry but": [65535, 0], "to the still smaller fry but sat": [65535, 0], "the still smaller fry but sat together": [65535, 0], "still smaller fry but sat together on": [65535, 0], "smaller fry but sat together on an": [65535, 0], "fry but sat together on an eminence": [65535, 0], "but sat together on an eminence and": [65535, 0], "sat together on an eminence and conducted": [65535, 0], "together on an eminence and conducted the": [65535, 0], "on an eminence and conducted the field": [65535, 0], "an eminence and conducted the field operations": [65535, 0], "eminence and conducted the field operations by": [65535, 0], "and conducted the field operations by orders": [65535, 0], "conducted the field operations by orders delivered": [65535, 0], "the field operations by orders delivered through": [65535, 0], "field operations by orders delivered through aides": [65535, 0], "operations by orders delivered through aides de": [65535, 0], "by orders delivered through aides de camp": [65535, 0], "orders delivered through aides de camp tom's": [65535, 0], "delivered through aides de camp tom's army": [65535, 0], "through aides de camp tom's army won": [65535, 0], "aides de camp tom's army won a": [65535, 0], "de camp tom's army won a great": [65535, 0], "camp tom's army won a great victory": [65535, 0], "tom's army won a great victory after": [65535, 0], "army won a great victory after a": [65535, 0], "won a great victory after a long": [65535, 0], "a great victory after a long and": [65535, 0], "great victory after a long and hard": [65535, 0], "victory after a long and hard fought": [65535, 0], "after a long and hard fought battle": [65535, 0], "a long and hard fought battle then": [65535, 0], "long and hard fought battle then the": [65535, 0], "and hard fought battle then the dead": [65535, 0], "hard fought battle then the dead were": [65535, 0], "fought battle then the dead were counted": [65535, 0], "battle then the dead were counted prisoners": [65535, 0], "then the dead were counted prisoners exchanged": [65535, 0], "the dead were counted prisoners exchanged the": [65535, 0], "dead were counted prisoners exchanged the terms": [65535, 0], "were counted prisoners exchanged the terms of": [65535, 0], "counted prisoners exchanged the terms of the": [65535, 0], "prisoners exchanged the terms of the next": [65535, 0], "exchanged the terms of the next disagreement": [65535, 0], "the terms of the next disagreement agreed": [65535, 0], "terms of the next disagreement agreed upon": [65535, 0], "of the next disagreement agreed upon and": [65535, 0], "the next disagreement agreed upon and the": [65535, 0], "next disagreement agreed upon and the day": [65535, 0], "disagreement agreed upon and the day for": [65535, 0], "agreed upon and the day for the": [65535, 0], "upon and the day for the necessary": [65535, 0], "and the day for the necessary battle": [65535, 0], "the day for the necessary battle appointed": [65535, 0], "day for the necessary battle appointed after": [65535, 0], "for the necessary battle appointed after which": [65535, 0], "the necessary battle appointed after which the": [65535, 0], "necessary battle appointed after which the armies": [65535, 0], "battle appointed after which the armies fell": [65535, 0], "appointed after which the armies fell into": [65535, 0], "after which the armies fell into line": [65535, 0], "which the armies fell into line and": [65535, 0], "the armies fell into line and marched": [65535, 0], "armies fell into line and marched away": [65535, 0], "fell into line and marched away and": [65535, 0], "into line and marched away and tom": [65535, 0], "line and marched away and tom turned": [65535, 0], "and marched away and tom turned homeward": [65535, 0], "marched away and tom turned homeward alone": [65535, 0], "away and tom turned homeward alone as": [65535, 0], "and tom turned homeward alone as he": [65535, 0], "tom turned homeward alone as he was": [65535, 0], "turned homeward alone as he was passing": [65535, 0], "homeward alone as he was passing by": [65535, 0], "alone as he was passing by the": [65535, 0], "as he was passing by the house": [65535, 0], "he was passing by the house where": [65535, 0], "was passing by the house where jeff": [65535, 0], "passing by the house where jeff thatcher": [65535, 0], "by the house where jeff thatcher lived": [65535, 0], "the house where jeff thatcher lived he": [65535, 0], "house where jeff thatcher lived he saw": [65535, 0], "where jeff thatcher lived he saw a": [65535, 0], "jeff thatcher lived he saw a new": [65535, 0], "thatcher lived he saw a new girl": [65535, 0], "lived he saw a new girl in": [65535, 0], "he saw a new girl in the": [65535, 0], "saw a new girl in the garden": [65535, 0], "a new girl in the garden a": [65535, 0], "new girl in the garden a lovely": [65535, 0], "girl in the garden a lovely little": [65535, 0], "in the garden a lovely little blue": [65535, 0], "the garden a lovely little blue eyed": [65535, 0], "garden a lovely little blue eyed creature": [65535, 0], "a lovely little blue eyed creature with": [65535, 0], "lovely little blue eyed creature with yellow": [65535, 0], "little blue eyed creature with yellow hair": [65535, 0], "blue eyed creature with yellow hair plaited": [65535, 0], "eyed creature with yellow hair plaited into": [65535, 0], "creature with yellow hair plaited into two": [65535, 0], "with yellow hair plaited into two long": [65535, 0], "yellow hair plaited into two long tails": [65535, 0], "hair plaited into two long tails white": [65535, 0], "plaited into two long tails white summer": [65535, 0], "into two long tails white summer frock": [65535, 0], "two long tails white summer frock and": [65535, 0], "long tails white summer frock and embroidered": [65535, 0], "tails white summer frock and embroidered pantalettes": [65535, 0], "white summer frock and embroidered pantalettes the": [65535, 0], "summer frock and embroidered pantalettes the fresh": [65535, 0], "frock and embroidered pantalettes the fresh crowned": [65535, 0], "and embroidered pantalettes the fresh crowned hero": [65535, 0], "embroidered pantalettes the fresh crowned hero fell": [65535, 0], "pantalettes the fresh crowned hero fell without": [65535, 0], "the fresh crowned hero fell without firing": [65535, 0], "fresh crowned hero fell without firing a": [65535, 0], "crowned hero fell without firing a shot": [65535, 0], "hero fell without firing a shot a": [65535, 0], "fell without firing a shot a certain": [65535, 0], "without firing a shot a certain amy": [65535, 0], "firing a shot a certain amy lawrence": [65535, 0], "a shot a certain amy lawrence vanished": [65535, 0], "shot a certain amy lawrence vanished out": [65535, 0], "a certain amy lawrence vanished out of": [65535, 0], "certain amy lawrence vanished out of his": [65535, 0], "amy lawrence vanished out of his heart": [65535, 0], "lawrence vanished out of his heart and": [65535, 0], "vanished out of his heart and left": [65535, 0], "out of his heart and left not": [65535, 0], "of his heart and left not even": [65535, 0], "his heart and left not even a": [65535, 0], "heart and left not even a memory": [65535, 0], "and left not even a memory of": [65535, 0], "left not even a memory of herself": [65535, 0], "not even a memory of herself behind": [65535, 0], "even a memory of herself behind he": [65535, 0], "a memory of herself behind he had": [65535, 0], "memory of herself behind he had thought": [65535, 0], "of herself behind he had thought he": [65535, 0], "herself behind he had thought he loved": [65535, 0], "behind he had thought he loved her": [65535, 0], "he had thought he loved her to": [65535, 0], "had thought he loved her to distraction": [65535, 0], "thought he loved her to distraction he": [65535, 0], "he loved her to distraction he had": [65535, 0], "loved her to distraction he had regarded": [65535, 0], "her to distraction he had regarded his": [65535, 0], "to distraction he had regarded his passion": [65535, 0], "distraction he had regarded his passion as": [65535, 0], "he had regarded his passion as adoration": [65535, 0], "had regarded his passion as adoration and": [65535, 0], "regarded his passion as adoration and behold": [65535, 0], "his passion as adoration and behold it": [65535, 0], "passion as adoration and behold it was": [65535, 0], "as adoration and behold it was only": [65535, 0], "adoration and behold it was only a": [65535, 0], "and behold it was only a poor": [65535, 0], "behold it was only a poor little": [65535, 0], "it was only a poor little evanescent": [65535, 0], "was only a poor little evanescent partiality": [65535, 0], "only a poor little evanescent partiality he": [65535, 0], "a poor little evanescent partiality he had": [65535, 0], "poor little evanescent partiality he had been": [65535, 0], "little evanescent partiality he had been months": [65535, 0], "evanescent partiality he had been months winning": [65535, 0], "partiality he had been months winning her": [65535, 0], "he had been months winning her she": [65535, 0], "had been months winning her she had": [65535, 0], "been months winning her she had confessed": [65535, 0], "months winning her she had confessed hardly": [65535, 0], "winning her she had confessed hardly a": [65535, 0], "her she had confessed hardly a week": [65535, 0], "she had confessed hardly a week ago": [65535, 0], "had confessed hardly a week ago he": [65535, 0], "confessed hardly a week ago he had": [65535, 0], "hardly a week ago he had been": [65535, 0], "a week ago he had been the": [65535, 0], "week ago he had been the happiest": [65535, 0], "ago he had been the happiest and": [65535, 0], "he had been the happiest and the": [65535, 0], "had been the happiest and the proudest": [65535, 0], "been the happiest and the proudest boy": [65535, 0], "the happiest and the proudest boy in": [65535, 0], "happiest and the proudest boy in the": [65535, 0], "and the proudest boy in the world": [65535, 0], "the proudest boy in the world only": [65535, 0], "proudest boy in the world only seven": [65535, 0], "boy in the world only seven short": [65535, 0], "in the world only seven short days": [65535, 0], "the world only seven short days and": [65535, 0], "world only seven short days and here": [65535, 0], "only seven short days and here in": [65535, 0], "seven short days and here in one": [65535, 0], "short days and here in one instant": [65535, 0], "days and here in one instant of": [65535, 0], "and here in one instant of time": [65535, 0], "here in one instant of time she": [65535, 0], "in one instant of time she had": [65535, 0], "one instant of time she had gone": [65535, 0], "instant of time she had gone out": [65535, 0], "of time she had gone out of": [65535, 0], "time she had gone out of his": [65535, 0], "she had gone out of his heart": [65535, 0], "had gone out of his heart like": [65535, 0], "gone out of his heart like a": [65535, 0], "out of his heart like a casual": [65535, 0], "of his heart like a casual stranger": [65535, 0], "his heart like a casual stranger whose": [65535, 0], "heart like a casual stranger whose visit": [65535, 0], "like a casual stranger whose visit is": [65535, 0], "a casual stranger whose visit is done": [65535, 0], "casual stranger whose visit is done he": [65535, 0], "stranger whose visit is done he worshipped": [65535, 0], "whose visit is done he worshipped this": [65535, 0], "visit is done he worshipped this new": [65535, 0], "is done he worshipped this new angel": [65535, 0], "done he worshipped this new angel with": [65535, 0], "he worshipped this new angel with furtive": [65535, 0], "worshipped this new angel with furtive eye": [65535, 0], "this new angel with furtive eye till": [65535, 0], "new angel with furtive eye till he": [65535, 0], "angel with furtive eye till he saw": [65535, 0], "with furtive eye till he saw that": [65535, 0], "furtive eye till he saw that she": [65535, 0], "eye till he saw that she had": [65535, 0], "till he saw that she had discovered": [65535, 0], "he saw that she had discovered him": [65535, 0], "saw that she had discovered him then": [65535, 0], "that she had discovered him then he": [65535, 0], "she had discovered him then he pretended": [65535, 0], "had discovered him then he pretended he": [65535, 0], "discovered him then he pretended he did": [65535, 0], "him then he pretended he did not": [65535, 0], "then he pretended he did not know": [65535, 0], "he pretended he did not know she": [65535, 0], "pretended he did not know she was": [65535, 0], "he did not know she was present": [65535, 0], "did not know she was present and": [65535, 0], "not know she was present and began": [65535, 0], "know she was present and began to": [65535, 0], "she was present and began to show": [65535, 0], "was present and began to show off": [65535, 0], "present and began to show off in": [65535, 0], "and began to show off in all": [65535, 0], "began to show off in all sorts": [65535, 0], "to show off in all sorts of": [65535, 0], "show off in all sorts of absurd": [65535, 0], "off in all sorts of absurd boyish": [65535, 0], "in all sorts of absurd boyish ways": [65535, 0], "all sorts of absurd boyish ways in": [65535, 0], "sorts of absurd boyish ways in order": [65535, 0], "of absurd boyish ways in order to": [65535, 0], "absurd boyish ways in order to win": [65535, 0], "boyish ways in order to win her": [65535, 0], "ways in order to win her admiration": [65535, 0], "in order to win her admiration he": [65535, 0], "order to win her admiration he kept": [65535, 0], "to win her admiration he kept up": [65535, 0], "win her admiration he kept up this": [65535, 0], "her admiration he kept up this grotesque": [65535, 0], "admiration he kept up this grotesque foolishness": [65535, 0], "he kept up this grotesque foolishness for": [65535, 0], "kept up this grotesque foolishness for some": [65535, 0], "up this grotesque foolishness for some time": [65535, 0], "this grotesque foolishness for some time but": [65535, 0], "grotesque foolishness for some time but by": [65535, 0], "foolishness for some time but by and": [65535, 0], "for some time but by and by": [65535, 0], "some time but by and by while": [65535, 0], "time but by and by while he": [65535, 0], "but by and by while he was": [65535, 0], "by and by while he was in": [65535, 0], "and by while he was in the": [65535, 0], "by while he was in the midst": [65535, 0], "while he was in the midst of": [65535, 0], "he was in the midst of some": [65535, 0], "was in the midst of some dangerous": [65535, 0], "in the midst of some dangerous gymnastic": [65535, 0], "the midst of some dangerous gymnastic performances": [65535, 0], "midst of some dangerous gymnastic performances he": [65535, 0], "of some dangerous gymnastic performances he glanced": [65535, 0], "some dangerous gymnastic performances he glanced aside": [65535, 0], "dangerous gymnastic performances he glanced aside and": [65535, 0], "gymnastic performances he glanced aside and saw": [65535, 0], "performances he glanced aside and saw that": [65535, 0], "he glanced aside and saw that the": [65535, 0], "glanced aside and saw that the little": [65535, 0], "aside and saw that the little girl": [65535, 0], "and saw that the little girl was": [65535, 0], "saw that the little girl was wending": [65535, 0], "that the little girl was wending her": [65535, 0], "the little girl was wending her way": [65535, 0], "little girl was wending her way toward": [65535, 0], "girl was wending her way toward the": [65535, 0], "was wending her way toward the house": [65535, 0], "wending her way toward the house tom": [65535, 0], "her way toward the house tom came": [65535, 0], "way toward the house tom came up": [65535, 0], "toward the house tom came up to": [65535, 0], "the house tom came up to the": [65535, 0], "house tom came up to the fence": [65535, 0], "tom came up to the fence and": [65535, 0], "came up to the fence and leaned": [65535, 0], "up to the fence and leaned on": [65535, 0], "to the fence and leaned on it": [65535, 0], "the fence and leaned on it grieving": [65535, 0], "fence and leaned on it grieving and": [65535, 0], "and leaned on it grieving and hoping": [65535, 0], "leaned on it grieving and hoping she": [65535, 0], "on it grieving and hoping she would": [65535, 0], "it grieving and hoping she would tarry": [65535, 0], "grieving and hoping she would tarry yet": [65535, 0], "and hoping she would tarry yet awhile": [65535, 0], "hoping she would tarry yet awhile longer": [65535, 0], "she would tarry yet awhile longer she": [65535, 0], "would tarry yet awhile longer she halted": [65535, 0], "tarry yet awhile longer she halted a": [65535, 0], "yet awhile longer she halted a moment": [65535, 0], "awhile longer she halted a moment on": [65535, 0], "longer she halted a moment on the": [65535, 0], "she halted a moment on the steps": [65535, 0], "halted a moment on the steps and": [65535, 0], "a moment on the steps and then": [65535, 0], "moment on the steps and then moved": [65535, 0], "on the steps and then moved toward": [65535, 0], "the steps and then moved toward the": [65535, 0], "steps and then moved toward the door": [65535, 0], "and then moved toward the door tom": [65535, 0], "then moved toward the door tom heaved": [65535, 0], "moved toward the door tom heaved a": [65535, 0], "toward the door tom heaved a great": [65535, 0], "the door tom heaved a great sigh": [65535, 0], "door tom heaved a great sigh as": [65535, 0], "tom heaved a great sigh as she": [65535, 0], "heaved a great sigh as she put": [65535, 0], "a great sigh as she put her": [65535, 0], "great sigh as she put her foot": [65535, 0], "sigh as she put her foot on": [65535, 0], "as she put her foot on the": [65535, 0], "she put her foot on the threshold": [65535, 0], "put her foot on the threshold but": [65535, 0], "her foot on the threshold but his": [65535, 0], "foot on the threshold but his face": [65535, 0], "on the threshold but his face lit": [65535, 0], "the threshold but his face lit up": [65535, 0], "threshold but his face lit up right": [65535, 0], "but his face lit up right away": [65535, 0], "his face lit up right away for": [65535, 0], "face lit up right away for she": [65535, 0], "lit up right away for she tossed": [65535, 0], "up right away for she tossed a": [65535, 0], "right away for she tossed a pansy": [65535, 0], "away for she tossed a pansy over": [65535, 0], "for she tossed a pansy over the": [65535, 0], "she tossed a pansy over the fence": [65535, 0], "tossed a pansy over the fence a": [65535, 0], "a pansy over the fence a moment": [65535, 0], "pansy over the fence a moment before": [65535, 0], "over the fence a moment before she": [65535, 0], "the fence a moment before she disappeared": [65535, 0], "fence a moment before she disappeared the": [65535, 0], "a moment before she disappeared the boy": [65535, 0], "moment before she disappeared the boy ran": [65535, 0], "before she disappeared the boy ran around": [65535, 0], "she disappeared the boy ran around and": [65535, 0], "disappeared the boy ran around and stopped": [65535, 0], "the boy ran around and stopped within": [65535, 0], "boy ran around and stopped within a": [65535, 0], "ran around and stopped within a foot": [65535, 0], "around and stopped within a foot or": [65535, 0], "and stopped within a foot or two": [65535, 0], "stopped within a foot or two of": [65535, 0], "within a foot or two of the": [65535, 0], "a foot or two of the flower": [65535, 0], "foot or two of the flower and": [65535, 0], "or two of the flower and then": [65535, 0], "two of the flower and then shaded": [65535, 0], "of the flower and then shaded his": [65535, 0], "the flower and then shaded his eyes": [65535, 0], "flower and then shaded his eyes with": [65535, 0], "and then shaded his eyes with his": [65535, 0], "then shaded his eyes with his hand": [65535, 0], "shaded his eyes with his hand and": [65535, 0], "his eyes with his hand and began": [65535, 0], "eyes with his hand and began to": [65535, 0], "with his hand and began to look": [65535, 0], "his hand and began to look down": [65535, 0], "hand and began to look down street": [65535, 0], "and began to look down street as": [65535, 0], "began to look down street as if": [65535, 0], "to look down street as if he": [65535, 0], "look down street as if he had": [65535, 0], "down street as if he had discovered": [65535, 0], "street as if he had discovered something": [65535, 0], "as if he had discovered something of": [65535, 0], "if he had discovered something of interest": [65535, 0], "he had discovered something of interest going": [65535, 0], "had discovered something of interest going on": [65535, 0], "discovered something of interest going on in": [65535, 0], "something of interest going on in that": [65535, 0], "of interest going on in that direction": [65535, 0], "interest going on in that direction presently": [65535, 0], "going on in that direction presently he": [65535, 0], "on in that direction presently he picked": [65535, 0], "in that direction presently he picked up": [65535, 0], "that direction presently he picked up a": [65535, 0], "direction presently he picked up a straw": [65535, 0], "presently he picked up a straw and": [65535, 0], "he picked up a straw and began": [65535, 0], "picked up a straw and began trying": [65535, 0], "up a straw and began trying to": [65535, 0], "a straw and began trying to balance": [65535, 0], "straw and began trying to balance it": [65535, 0], "and began trying to balance it on": [65535, 0], "began trying to balance it on his": [65535, 0], "trying to balance it on his nose": [65535, 0], "to balance it on his nose with": [65535, 0], "balance it on his nose with his": [65535, 0], "it on his nose with his head": [65535, 0], "on his nose with his head tilted": [65535, 0], "his nose with his head tilted far": [65535, 0], "nose with his head tilted far back": [65535, 0], "with his head tilted far back and": [65535, 0], "his head tilted far back and as": [65535, 0], "head tilted far back and as he": [65535, 0], "tilted far back and as he moved": [65535, 0], "far back and as he moved from": [65535, 0], "back and as he moved from side": [65535, 0], "and as he moved from side to": [65535, 0], "as he moved from side to side": [65535, 0], "he moved from side to side in": [65535, 0], "moved from side to side in his": [65535, 0], "from side to side in his efforts": [65535, 0], "side to side in his efforts he": [65535, 0], "to side in his efforts he edged": [65535, 0], "side in his efforts he edged nearer": [65535, 0], "in his efforts he edged nearer and": [65535, 0], "his efforts he edged nearer and nearer": [65535, 0], "efforts he edged nearer and nearer toward": [65535, 0], "he edged nearer and nearer toward the": [65535, 0], "edged nearer and nearer toward the pansy": [65535, 0], "nearer and nearer toward the pansy finally": [65535, 0], "and nearer toward the pansy finally his": [65535, 0], "nearer toward the pansy finally his bare": [65535, 0], "toward the pansy finally his bare foot": [65535, 0], "the pansy finally his bare foot rested": [65535, 0], "pansy finally his bare foot rested upon": [65535, 0], "finally his bare foot rested upon it": [65535, 0], "his bare foot rested upon it his": [65535, 0], "bare foot rested upon it his pliant": [65535, 0], "foot rested upon it his pliant toes": [65535, 0], "rested upon it his pliant toes closed": [65535, 0], "upon it his pliant toes closed upon": [65535, 0], "it his pliant toes closed upon it": [65535, 0], "his pliant toes closed upon it and": [65535, 0], "pliant toes closed upon it and he": [65535, 0], "toes closed upon it and he hopped": [65535, 0], "closed upon it and he hopped away": [65535, 0], "upon it and he hopped away with": [65535, 0], "it and he hopped away with the": [65535, 0], "and he hopped away with the treasure": [65535, 0], "he hopped away with the treasure and": [65535, 0], "hopped away with the treasure and disappeared": [65535, 0], "away with the treasure and disappeared round": [65535, 0], "with the treasure and disappeared round the": [65535, 0], "the treasure and disappeared round the corner": [65535, 0], "treasure and disappeared round the corner but": [65535, 0], "and disappeared round the corner but only": [65535, 0], "disappeared round the corner but only for": [65535, 0], "round the corner but only for a": [65535, 0], "the corner but only for a minute": [65535, 0], "corner but only for a minute only": [65535, 0], "but only for a minute only while": [65535, 0], "only for a minute only while he": [65535, 0], "for a minute only while he could": [65535, 0], "a minute only while he could button": [65535, 0], "minute only while he could button the": [65535, 0], "only while he could button the flower": [65535, 0], "while he could button the flower inside": [65535, 0], "he could button the flower inside his": [65535, 0], "could button the flower inside his jacket": [65535, 0], "button the flower inside his jacket next": [65535, 0], "the flower inside his jacket next his": [65535, 0], "flower inside his jacket next his heart": [65535, 0], "inside his jacket next his heart or": [65535, 0], "his jacket next his heart or next": [65535, 0], "jacket next his heart or next his": [65535, 0], "next his heart or next his stomach": [65535, 0], "his heart or next his stomach possibly": [65535, 0], "heart or next his stomach possibly for": [65535, 0], "or next his stomach possibly for he": [65535, 0], "next his stomach possibly for he was": [65535, 0], "his stomach possibly for he was not": [65535, 0], "stomach possibly for he was not much": [65535, 0], "possibly for he was not much posted": [65535, 0], "for he was not much posted in": [65535, 0], "he was not much posted in anatomy": [65535, 0], "was not much posted in anatomy and": [65535, 0], "not much posted in anatomy and not": [65535, 0], "much posted in anatomy and not hypercritical": [65535, 0], "posted in anatomy and not hypercritical anyway": [65535, 0], "in anatomy and not hypercritical anyway he": [65535, 0], "anatomy and not hypercritical anyway he returned": [65535, 0], "and not hypercritical anyway he returned now": [65535, 0], "not hypercritical anyway he returned now and": [65535, 0], "hypercritical anyway he returned now and hung": [65535, 0], "anyway he returned now and hung about": [65535, 0], "he returned now and hung about the": [65535, 0], "returned now and hung about the fence": [65535, 0], "now and hung about the fence till": [65535, 0], "and hung about the fence till nightfall": [65535, 0], "hung about the fence till nightfall showing": [65535, 0], "about the fence till nightfall showing off": [65535, 0], "the fence till nightfall showing off as": [65535, 0], "fence till nightfall showing off as before": [65535, 0], "till nightfall showing off as before but": [65535, 0], "nightfall showing off as before but the": [65535, 0], "showing off as before but the girl": [65535, 0], "off as before but the girl never": [65535, 0], "as before but the girl never exhibited": [65535, 0], "before but the girl never exhibited herself": [65535, 0], "but the girl never exhibited herself again": [65535, 0], "the girl never exhibited herself again though": [65535, 0], "girl never exhibited herself again though tom": [65535, 0], "never exhibited herself again though tom comforted": [65535, 0], "exhibited herself again though tom comforted himself": [65535, 0], "herself again though tom comforted himself a": [65535, 0], "again though tom comforted himself a little": [65535, 0], "though tom comforted himself a little with": [65535, 0], "tom comforted himself a little with the": [65535, 0], "comforted himself a little with the hope": [65535, 0], "himself a little with the hope that": [65535, 0], "a little with the hope that she": [65535, 0], "little with the hope that she had": [65535, 0], "with the hope that she had been": [65535, 0], "the hope that she had been near": [65535, 0], "hope that she had been near some": [65535, 0], "that she had been near some window": [65535, 0], "she had been near some window meantime": [65535, 0], "had been near some window meantime and": [65535, 0], "been near some window meantime and been": [65535, 0], "near some window meantime and been aware": [65535, 0], "some window meantime and been aware of": [65535, 0], "window meantime and been aware of his": [65535, 0], "meantime and been aware of his attentions": [65535, 0], "and been aware of his attentions finally": [65535, 0], "been aware of his attentions finally he": [65535, 0], "aware of his attentions finally he strode": [65535, 0], "of his attentions finally he strode home": [65535, 0], "his attentions finally he strode home reluctantly": [65535, 0], "attentions finally he strode home reluctantly with": [65535, 0], "finally he strode home reluctantly with his": [65535, 0], "he strode home reluctantly with his poor": [65535, 0], "strode home reluctantly with his poor head": [65535, 0], "home reluctantly with his poor head full": [65535, 0], "reluctantly with his poor head full of": [65535, 0], "with his poor head full of visions": [65535, 0], "his poor head full of visions all": [65535, 0], "poor head full of visions all through": [65535, 0], "head full of visions all through supper": [65535, 0], "full of visions all through supper his": [65535, 0], "of visions all through supper his spirits": [65535, 0], "visions all through supper his spirits were": [65535, 0], "all through supper his spirits were so": [65535, 0], "through supper his spirits were so high": [65535, 0], "supper his spirits were so high that": [65535, 0], "his spirits were so high that his": [65535, 0], "spirits were so high that his aunt": [65535, 0], "were so high that his aunt wondered": [65535, 0], "so high that his aunt wondered what": [65535, 0], "high that his aunt wondered what had": [65535, 0], "that his aunt wondered what had got": [65535, 0], "his aunt wondered what had got into": [65535, 0], "aunt wondered what had got into the": [65535, 0], "wondered what had got into the child": [65535, 0], "what had got into the child he": [65535, 0], "had got into the child he took": [65535, 0], "got into the child he took a": [65535, 0], "into the child he took a good": [65535, 0], "the child he took a good scolding": [65535, 0], "child he took a good scolding about": [65535, 0], "he took a good scolding about clodding": [65535, 0], "took a good scolding about clodding sid": [65535, 0], "a good scolding about clodding sid and": [65535, 0], "good scolding about clodding sid and did": [65535, 0], "scolding about clodding sid and did not": [65535, 0], "about clodding sid and did not seem": [65535, 0], "clodding sid and did not seem to": [65535, 0], "sid and did not seem to mind": [65535, 0], "and did not seem to mind it": [65535, 0], "did not seem to mind it in": [65535, 0], "not seem to mind it in the": [65535, 0], "seem to mind it in the least": [65535, 0], "to mind it in the least he": [65535, 0], "mind it in the least he tried": [65535, 0], "it in the least he tried to": [65535, 0], "in the least he tried to steal": [65535, 0], "the least he tried to steal sugar": [65535, 0], "least he tried to steal sugar under": [65535, 0], "he tried to steal sugar under his": [65535, 0], "tried to steal sugar under his aunt's": [65535, 0], "to steal sugar under his aunt's very": [65535, 0], "steal sugar under his aunt's very nose": [65535, 0], "sugar under his aunt's very nose and": [65535, 0], "under his aunt's very nose and got": [65535, 0], "his aunt's very nose and got his": [65535, 0], "aunt's very nose and got his knuckles": [65535, 0], "very nose and got his knuckles rapped": [65535, 0], "nose and got his knuckles rapped for": [65535, 0], "and got his knuckles rapped for it": [65535, 0], "got his knuckles rapped for it he": [65535, 0], "his knuckles rapped for it he said": [65535, 0], "knuckles rapped for it he said aunt": [65535, 0], "rapped for it he said aunt you": [65535, 0], "for it he said aunt you don't": [65535, 0], "it he said aunt you don't whack": [65535, 0], "he said aunt you don't whack sid": [65535, 0], "said aunt you don't whack sid when": [65535, 0], "aunt you don't whack sid when he": [65535, 0], "you don't whack sid when he takes": [65535, 0], "don't whack sid when he takes it": [65535, 0], "whack sid when he takes it well": [65535, 0], "sid when he takes it well sid": [65535, 0], "when he takes it well sid don't": [65535, 0], "he takes it well sid don't torment": [65535, 0], "takes it well sid don't torment a": [65535, 0], "it well sid don't torment a body": [65535, 0], "well sid don't torment a body the": [65535, 0], "sid don't torment a body the way": [65535, 0], "don't torment a body the way you": [65535, 0], "torment a body the way you do": [65535, 0], "a body the way you do you'd": [65535, 0], "body the way you do you'd be": [65535, 0], "the way you do you'd be always": [65535, 0], "way you do you'd be always into": [65535, 0], "you do you'd be always into that": [65535, 0], "do you'd be always into that sugar": [65535, 0], "you'd be always into that sugar if": [65535, 0], "be always into that sugar if i": [65535, 0], "always into that sugar if i warn't": [65535, 0], "into that sugar if i warn't watching": [65535, 0], "that sugar if i warn't watching you": [65535, 0], "sugar if i warn't watching you presently": [65535, 0], "if i warn't watching you presently she": [65535, 0], "i warn't watching you presently she stepped": [65535, 0], "warn't watching you presently she stepped into": [65535, 0], "watching you presently she stepped into the": [65535, 0], "you presently she stepped into the kitchen": [65535, 0], "presently she stepped into the kitchen and": [65535, 0], "she stepped into the kitchen and sid": [65535, 0], "stepped into the kitchen and sid happy": [65535, 0], "into the kitchen and sid happy in": [65535, 0], "the kitchen and sid happy in his": [65535, 0], "kitchen and sid happy in his immunity": [65535, 0], "and sid happy in his immunity reached": [65535, 0], "sid happy in his immunity reached for": [65535, 0], "happy in his immunity reached for the": [65535, 0], "in his immunity reached for the sugar": [65535, 0], "his immunity reached for the sugar bowl": [65535, 0], "immunity reached for the sugar bowl a": [65535, 0], "reached for the sugar bowl a sort": [65535, 0], "for the sugar bowl a sort of": [65535, 0], "the sugar bowl a sort of glorying": [65535, 0], "sugar bowl a sort of glorying over": [65535, 0], "bowl a sort of glorying over tom": [65535, 0], "a sort of glorying over tom which": [65535, 0], "sort of glorying over tom which was": [65535, 0], "of glorying over tom which was well": [65535, 0], "glorying over tom which was well nigh": [65535, 0], "over tom which was well nigh unbearable": [65535, 0], "tom which was well nigh unbearable but": [65535, 0], "which was well nigh unbearable but sid's": [65535, 0], "was well nigh unbearable but sid's fingers": [65535, 0], "well nigh unbearable but sid's fingers slipped": [65535, 0], "nigh unbearable but sid's fingers slipped and": [65535, 0], "unbearable but sid's fingers slipped and the": [65535, 0], "but sid's fingers slipped and the bowl": [65535, 0], "sid's fingers slipped and the bowl dropped": [65535, 0], "fingers slipped and the bowl dropped and": [65535, 0], "slipped and the bowl dropped and broke": [65535, 0], "and the bowl dropped and broke tom": [65535, 0], "the bowl dropped and broke tom was": [65535, 0], "bowl dropped and broke tom was in": [65535, 0], "dropped and broke tom was in ecstasies": [65535, 0], "and broke tom was in ecstasies in": [65535, 0], "broke tom was in ecstasies in such": [65535, 0], "tom was in ecstasies in such ecstasies": [65535, 0], "was in ecstasies in such ecstasies that": [65535, 0], "in ecstasies in such ecstasies that he": [65535, 0], "ecstasies in such ecstasies that he even": [65535, 0], "in such ecstasies that he even controlled": [65535, 0], "such ecstasies that he even controlled his": [65535, 0], "ecstasies that he even controlled his tongue": [65535, 0], "that he even controlled his tongue and": [65535, 0], "he even controlled his tongue and was": [65535, 0], "even controlled his tongue and was silent": [65535, 0], "controlled his tongue and was silent he": [65535, 0], "his tongue and was silent he said": [65535, 0], "tongue and was silent he said to": [65535, 0], "and was silent he said to himself": [65535, 0], "was silent he said to himself that": [65535, 0], "silent he said to himself that he": [65535, 0], "he said to himself that he would": [65535, 0], "said to himself that he would not": [65535, 0], "to himself that he would not speak": [65535, 0], "himself that he would not speak a": [65535, 0], "that he would not speak a word": [65535, 0], "he would not speak a word even": [65535, 0], "would not speak a word even when": [65535, 0], "not speak a word even when his": [65535, 0], "speak a word even when his aunt": [65535, 0], "a word even when his aunt came": [65535, 0], "word even when his aunt came in": [65535, 0], "even when his aunt came in but": [65535, 0], "when his aunt came in but would": [65535, 0], "his aunt came in but would sit": [65535, 0], "aunt came in but would sit perfectly": [65535, 0], "came in but would sit perfectly still": [65535, 0], "in but would sit perfectly still till": [65535, 0], "but would sit perfectly still till she": [65535, 0], "would sit perfectly still till she asked": [65535, 0], "sit perfectly still till she asked who": [65535, 0], "perfectly still till she asked who did": [65535, 0], "still till she asked who did the": [65535, 0], "till she asked who did the mischief": [65535, 0], "she asked who did the mischief and": [65535, 0], "asked who did the mischief and then": [65535, 0], "who did the mischief and then he": [65535, 0], "did the mischief and then he would": [65535, 0], "the mischief and then he would tell": [65535, 0], "mischief and then he would tell and": [65535, 0], "and then he would tell and there": [65535, 0], "then he would tell and there would": [65535, 0], "he would tell and there would be": [65535, 0], "would tell and there would be nothing": [65535, 0], "tell and there would be nothing so": [65535, 0], "and there would be nothing so good": [65535, 0], "there would be nothing so good in": [65535, 0], "would be nothing so good in the": [65535, 0], "be nothing so good in the world": [65535, 0], "nothing so good in the world as": [65535, 0], "so good in the world as to": [65535, 0], "good in the world as to see": [65535, 0], "in the world as to see that": [65535, 0], "the world as to see that pet": [65535, 0], "world as to see that pet model": [65535, 0], "as to see that pet model catch": [65535, 0], "to see that pet model catch it": [65535, 0], "see that pet model catch it he": [65535, 0], "that pet model catch it he was": [65535, 0], "pet model catch it he was so": [65535, 0], "model catch it he was so brimful": [65535, 0], "catch it he was so brimful of": [65535, 0], "it he was so brimful of exultation": [65535, 0], "he was so brimful of exultation that": [65535, 0], "was so brimful of exultation that he": [65535, 0], "so brimful of exultation that he could": [65535, 0], "brimful of exultation that he could hardly": [65535, 0], "of exultation that he could hardly hold": [65535, 0], "exultation that he could hardly hold himself": [65535, 0], "that he could hardly hold himself when": [65535, 0], "he could hardly hold himself when the": [65535, 0], "could hardly hold himself when the old": [65535, 0], "hardly hold himself when the old lady": [65535, 0], "hold himself when the old lady came": [65535, 0], "himself when the old lady came back": [65535, 0], "when the old lady came back and": [65535, 0], "the old lady came back and stood": [65535, 0], "old lady came back and stood above": [65535, 0], "lady came back and stood above the": [65535, 0], "came back and stood above the wreck": [65535, 0], "back and stood above the wreck discharging": [65535, 0], "and stood above the wreck discharging lightnings": [65535, 0], "stood above the wreck discharging lightnings of": [65535, 0], "above the wreck discharging lightnings of wrath": [65535, 0], "the wreck discharging lightnings of wrath from": [65535, 0], "wreck discharging lightnings of wrath from over": [65535, 0], "discharging lightnings of wrath from over her": [65535, 0], "lightnings of wrath from over her spectacles": [65535, 0], "of wrath from over her spectacles he": [65535, 0], "wrath from over her spectacles he said": [65535, 0], "from over her spectacles he said to": [65535, 0], "over her spectacles he said to himself": [65535, 0], "her spectacles he said to himself now": [65535, 0], "spectacles he said to himself now it's": [65535, 0], "he said to himself now it's coming": [65535, 0], "said to himself now it's coming and": [65535, 0], "to himself now it's coming and the": [65535, 0], "himself now it's coming and the next": [65535, 0], "now it's coming and the next instant": [65535, 0], "it's coming and the next instant he": [65535, 0], "coming and the next instant he was": [65535, 0], "and the next instant he was sprawling": [65535, 0], "the next instant he was sprawling on": [65535, 0], "next instant he was sprawling on the": [65535, 0], "instant he was sprawling on the floor": [65535, 0], "he was sprawling on the floor the": [65535, 0], "was sprawling on the floor the potent": [65535, 0], "sprawling on the floor the potent palm": [65535, 0], "on the floor the potent palm was": [65535, 0], "the floor the potent palm was uplifted": [65535, 0], "floor the potent palm was uplifted to": [65535, 0], "the potent palm was uplifted to strike": [65535, 0], "potent palm was uplifted to strike again": [65535, 0], "palm was uplifted to strike again when": [65535, 0], "was uplifted to strike again when tom": [65535, 0], "uplifted to strike again when tom cried": [65535, 0], "to strike again when tom cried out": [65535, 0], "strike again when tom cried out hold": [65535, 0], "again when tom cried out hold on": [65535, 0], "when tom cried out hold on now": [65535, 0], "tom cried out hold on now what": [65535, 0], "cried out hold on now what 'er": [65535, 0], "out hold on now what 'er you": [65535, 0], "hold on now what 'er you belting": [65535, 0], "on now what 'er you belting me": [65535, 0], "now what 'er you belting me for": [65535, 0], "what 'er you belting me for sid": [65535, 0], "'er you belting me for sid broke": [65535, 0], "you belting me for sid broke it": [65535, 0], "belting me for sid broke it aunt": [65535, 0], "me for sid broke it aunt polly": [65535, 0], "for sid broke it aunt polly paused": [65535, 0], "sid broke it aunt polly paused perplexed": [65535, 0], "broke it aunt polly paused perplexed and": [65535, 0], "it aunt polly paused perplexed and tom": [65535, 0], "aunt polly paused perplexed and tom looked": [65535, 0], "polly paused perplexed and tom looked for": [65535, 0], "paused perplexed and tom looked for healing": [65535, 0], "perplexed and tom looked for healing pity": [65535, 0], "and tom looked for healing pity but": [65535, 0], "tom looked for healing pity but when": [65535, 0], "looked for healing pity but when she": [65535, 0], "for healing pity but when she got": [65535, 0], "healing pity but when she got her": [65535, 0], "pity but when she got her tongue": [65535, 0], "but when she got her tongue again": [65535, 0], "when she got her tongue again she": [65535, 0], "she got her tongue again she only": [65535, 0], "got her tongue again she only said": [65535, 0], "her tongue again she only said umf": [65535, 0], "tongue again she only said umf well": [65535, 0], "again she only said umf well you": [65535, 0], "she only said umf well you didn't": [65535, 0], "only said umf well you didn't get": [65535, 0], "said umf well you didn't get a": [65535, 0], "umf well you didn't get a lick": [65535, 0], "well you didn't get a lick amiss": [65535, 0], "you didn't get a lick amiss i": [65535, 0], "didn't get a lick amiss i reckon": [65535, 0], "get a lick amiss i reckon you": [65535, 0], "a lick amiss i reckon you been": [65535, 0], "lick amiss i reckon you been into": [65535, 0], "amiss i reckon you been into some": [65535, 0], "i reckon you been into some other": [65535, 0], "reckon you been into some other audacious": [65535, 0], "you been into some other audacious mischief": [65535, 0], "been into some other audacious mischief when": [65535, 0], "into some other audacious mischief when i": [65535, 0], "some other audacious mischief when i wasn't": [65535, 0], "other audacious mischief when i wasn't around": [65535, 0], "audacious mischief when i wasn't around like": [65535, 0], "mischief when i wasn't around like enough": [65535, 0], "when i wasn't around like enough then": [65535, 0], "i wasn't around like enough then her": [65535, 0], "wasn't around like enough then her conscience": [65535, 0], "around like enough then her conscience reproached": [65535, 0], "like enough then her conscience reproached her": [65535, 0], "enough then her conscience reproached her and": [65535, 0], "then her conscience reproached her and she": [65535, 0], "her conscience reproached her and she yearned": [65535, 0], "conscience reproached her and she yearned to": [65535, 0], "reproached her and she yearned to say": [65535, 0], "her and she yearned to say something": [65535, 0], "and she yearned to say something kind": [65535, 0], "she yearned to say something kind and": [65535, 0], "yearned to say something kind and loving": [65535, 0], "to say something kind and loving but": [65535, 0], "say something kind and loving but she": [65535, 0], "something kind and loving but she judged": [65535, 0], "kind and loving but she judged that": [65535, 0], "and loving but she judged that this": [65535, 0], "loving but she judged that this would": [65535, 0], "but she judged that this would be": [65535, 0], "she judged that this would be construed": [65535, 0], "judged that this would be construed into": [65535, 0], "that this would be construed into a": [65535, 0], "this would be construed into a confession": [65535, 0], "would be construed into a confession that": [65535, 0], "be construed into a confession that she": [65535, 0], "construed into a confession that she had": [65535, 0], "into a confession that she had been": [65535, 0], "a confession that she had been in": [65535, 0], "confession that she had been in the": [65535, 0], "that she had been in the wrong": [65535, 0], "she had been in the wrong and": [65535, 0], "had been in the wrong and discipline": [65535, 0], "been in the wrong and discipline forbade": [65535, 0], "in the wrong and discipline forbade that": [65535, 0], "the wrong and discipline forbade that so": [65535, 0], "wrong and discipline forbade that so she": [65535, 0], "and discipline forbade that so she kept": [65535, 0], "discipline forbade that so she kept silence": [65535, 0], "forbade that so she kept silence and": [65535, 0], "that so she kept silence and went": [65535, 0], "so she kept silence and went about": [65535, 0], "she kept silence and went about her": [65535, 0], "kept silence and went about her affairs": [65535, 0], "silence and went about her affairs with": [65535, 0], "and went about her affairs with a": [65535, 0], "went about her affairs with a troubled": [65535, 0], "about her affairs with a troubled heart": [65535, 0], "her affairs with a troubled heart tom": [65535, 0], "affairs with a troubled heart tom sulked": [65535, 0], "with a troubled heart tom sulked in": [65535, 0], "a troubled heart tom sulked in a": [65535, 0], "troubled heart tom sulked in a corner": [65535, 0], "heart tom sulked in a corner and": [65535, 0], "tom sulked in a corner and exalted": [65535, 0], "sulked in a corner and exalted his": [65535, 0], "in a corner and exalted his woes": [65535, 0], "a corner and exalted his woes he": [65535, 0], "corner and exalted his woes he knew": [65535, 0], "and exalted his woes he knew that": [65535, 0], "exalted his woes he knew that in": [65535, 0], "his woes he knew that in her": [65535, 0], "woes he knew that in her heart": [65535, 0], "he knew that in her heart his": [65535, 0], "knew that in her heart his aunt": [65535, 0], "that in her heart his aunt was": [65535, 0], "in her heart his aunt was on": [65535, 0], "her heart his aunt was on her": [65535, 0], "heart his aunt was on her knees": [65535, 0], "his aunt was on her knees to": [65535, 0], "aunt was on her knees to him": [65535, 0], "was on her knees to him and": [65535, 0], "on her knees to him and he": [65535, 0], "her knees to him and he was": [65535, 0], "knees to him and he was morosely": [65535, 0], "to him and he was morosely gratified": [65535, 0], "him and he was morosely gratified by": [65535, 0], "and he was morosely gratified by the": [65535, 0], "he was morosely gratified by the consciousness": [65535, 0], "was morosely gratified by the consciousness of": [65535, 0], "morosely gratified by the consciousness of it": [65535, 0], "gratified by the consciousness of it he": [65535, 0], "by the consciousness of it he would": [65535, 0], "the consciousness of it he would hang": [65535, 0], "consciousness of it he would hang out": [65535, 0], "of it he would hang out no": [65535, 0], "it he would hang out no signals": [65535, 0], "he would hang out no signals he": [65535, 0], "would hang out no signals he would": [65535, 0], "hang out no signals he would take": [65535, 0], "out no signals he would take notice": [65535, 0], "no signals he would take notice of": [65535, 0], "signals he would take notice of none": [65535, 0], "he would take notice of none he": [65535, 0], "would take notice of none he knew": [65535, 0], "take notice of none he knew that": [65535, 0], "notice of none he knew that a": [65535, 0], "of none he knew that a yearning": [65535, 0], "none he knew that a yearning glance": [65535, 0], "he knew that a yearning glance fell": [65535, 0], "knew that a yearning glance fell upon": [65535, 0], "that a yearning glance fell upon him": [65535, 0], "a yearning glance fell upon him now": [65535, 0], "yearning glance fell upon him now and": [65535, 0], "glance fell upon him now and then": [65535, 0], "fell upon him now and then through": [65535, 0], "upon him now and then through a": [65535, 0], "him now and then through a film": [65535, 0], "now and then through a film of": [65535, 0], "and then through a film of tears": [65535, 0], "then through a film of tears but": [65535, 0], "through a film of tears but he": [65535, 0], "a film of tears but he refused": [65535, 0], "film of tears but he refused recognition": [65535, 0], "of tears but he refused recognition of": [65535, 0], "tears but he refused recognition of it": [65535, 0], "but he refused recognition of it he": [65535, 0], "he refused recognition of it he pictured": [65535, 0], "refused recognition of it he pictured himself": [65535, 0], "recognition of it he pictured himself lying": [65535, 0], "of it he pictured himself lying sick": [65535, 0], "it he pictured himself lying sick unto": [65535, 0], "he pictured himself lying sick unto death": [65535, 0], "pictured himself lying sick unto death and": [65535, 0], "himself lying sick unto death and his": [65535, 0], "lying sick unto death and his aunt": [65535, 0], "sick unto death and his aunt bending": [65535, 0], "unto death and his aunt bending over": [65535, 0], "death and his aunt bending over him": [65535, 0], "and his aunt bending over him beseeching": [65535, 0], "his aunt bending over him beseeching one": [65535, 0], "aunt bending over him beseeching one little": [65535, 0], "bending over him beseeching one little forgiving": [65535, 0], "over him beseeching one little forgiving word": [65535, 0], "him beseeching one little forgiving word but": [65535, 0], "beseeching one little forgiving word but he": [65535, 0], "one little forgiving word but he would": [65535, 0], "little forgiving word but he would turn": [65535, 0], "forgiving word but he would turn his": [65535, 0], "word but he would turn his face": [65535, 0], "but he would turn his face to": [65535, 0], "he would turn his face to the": [65535, 0], "would turn his face to the wall": [65535, 0], "turn his face to the wall and": [65535, 0], "his face to the wall and die": [65535, 0], "face to the wall and die with": [65535, 0], "to the wall and die with that": [65535, 0], "the wall and die with that word": [65535, 0], "wall and die with that word unsaid": [65535, 0], "and die with that word unsaid ah": [65535, 0], "die with that word unsaid ah how": [65535, 0], "with that word unsaid ah how would": [65535, 0], "that word unsaid ah how would she": [65535, 0], "word unsaid ah how would she feel": [65535, 0], "unsaid ah how would she feel then": [65535, 0], "ah how would she feel then and": [65535, 0], "how would she feel then and he": [65535, 0], "would she feel then and he pictured": [65535, 0], "she feel then and he pictured himself": [65535, 0], "feel then and he pictured himself brought": [65535, 0], "then and he pictured himself brought home": [65535, 0], "and he pictured himself brought home from": [65535, 0], "he pictured himself brought home from the": [65535, 0], "pictured himself brought home from the river": [65535, 0], "himself brought home from the river dead": [65535, 0], "brought home from the river dead with": [65535, 0], "home from the river dead with his": [65535, 0], "from the river dead with his curls": [65535, 0], "the river dead with his curls all": [65535, 0], "river dead with his curls all wet": [65535, 0], "dead with his curls all wet and": [65535, 0], "with his curls all wet and his": [65535, 0], "his curls all wet and his sore": [65535, 0], "curls all wet and his sore heart": [65535, 0], "all wet and his sore heart at": [65535, 0], "wet and his sore heart at rest": [65535, 0], "and his sore heart at rest how": [65535, 0], "his sore heart at rest how she": [65535, 0], "sore heart at rest how she would": [65535, 0], "heart at rest how she would throw": [65535, 0], "at rest how she would throw herself": [65535, 0], "rest how she would throw herself upon": [65535, 0], "how she would throw herself upon him": [65535, 0], "she would throw herself upon him and": [65535, 0], "would throw herself upon him and how": [65535, 0], "throw herself upon him and how her": [65535, 0], "herself upon him and how her tears": [65535, 0], "upon him and how her tears would": [65535, 0], "him and how her tears would fall": [65535, 0], "and how her tears would fall like": [65535, 0], "how her tears would fall like rain": [65535, 0], "her tears would fall like rain and": [65535, 0], "tears would fall like rain and her": [65535, 0], "would fall like rain and her lips": [65535, 0], "fall like rain and her lips pray": [65535, 0], "like rain and her lips pray god": [65535, 0], "rain and her lips pray god to": [65535, 0], "and her lips pray god to give": [65535, 0], "her lips pray god to give her": [65535, 0], "lips pray god to give her back": [65535, 0], "pray god to give her back her": [65535, 0], "god to give her back her boy": [65535, 0], "to give her back her boy and": [65535, 0], "give her back her boy and she": [65535, 0], "her back her boy and she would": [65535, 0], "back her boy and she would never": [65535, 0], "her boy and she would never never": [65535, 0], "boy and she would never never abuse": [65535, 0], "and she would never never abuse him": [65535, 0], "she would never never abuse him any": [65535, 0], "would never never abuse him any more": [65535, 0], "never never abuse him any more but": [65535, 0], "never abuse him any more but he": [65535, 0], "abuse him any more but he would": [65535, 0], "him any more but he would lie": [65535, 0], "any more but he would lie there": [65535, 0], "more but he would lie there cold": [65535, 0], "but he would lie there cold and": [65535, 0], "he would lie there cold and white": [65535, 0], "would lie there cold and white and": [65535, 0], "lie there cold and white and make": [65535, 0], "there cold and white and make no": [65535, 0], "cold and white and make no sign": [65535, 0], "and white and make no sign a": [65535, 0], "white and make no sign a poor": [65535, 0], "and make no sign a poor little": [65535, 0], "make no sign a poor little sufferer": [65535, 0], "no sign a poor little sufferer whose": [65535, 0], "sign a poor little sufferer whose griefs": [65535, 0], "a poor little sufferer whose griefs were": [65535, 0], "poor little sufferer whose griefs were at": [65535, 0], "little sufferer whose griefs were at an": [65535, 0], "sufferer whose griefs were at an end": [65535, 0], "whose griefs were at an end he": [65535, 0], "griefs were at an end he so": [65535, 0], "were at an end he so worked": [65535, 0], "at an end he so worked upon": [65535, 0], "an end he so worked upon his": [65535, 0], "end he so worked upon his feelings": [65535, 0], "he so worked upon his feelings with": [65535, 0], "so worked upon his feelings with the": [65535, 0], "worked upon his feelings with the pathos": [65535, 0], "upon his feelings with the pathos of": [65535, 0], "his feelings with the pathos of these": [65535, 0], "feelings with the pathos of these dreams": [65535, 0], "with the pathos of these dreams that": [65535, 0], "the pathos of these dreams that he": [65535, 0], "pathos of these dreams that he had": [65535, 0], "of these dreams that he had to": [65535, 0], "these dreams that he had to keep": [65535, 0], "dreams that he had to keep swallowing": [65535, 0], "that he had to keep swallowing he": [65535, 0], "he had to keep swallowing he was": [65535, 0], "had to keep swallowing he was so": [65535, 0], "to keep swallowing he was so like": [65535, 0], "keep swallowing he was so like to": [65535, 0], "swallowing he was so like to choke": [65535, 0], "he was so like to choke and": [65535, 0], "was so like to choke and his": [65535, 0], "so like to choke and his eyes": [65535, 0], "like to choke and his eyes swam": [65535, 0], "to choke and his eyes swam in": [65535, 0], "choke and his eyes swam in a": [65535, 0], "and his eyes swam in a blur": [65535, 0], "his eyes swam in a blur of": [65535, 0], "eyes swam in a blur of water": [65535, 0], "swam in a blur of water which": [65535, 0], "in a blur of water which overflowed": [65535, 0], "a blur of water which overflowed when": [65535, 0], "blur of water which overflowed when he": [65535, 0], "of water which overflowed when he winked": [65535, 0], "water which overflowed when he winked and": [65535, 0], "which overflowed when he winked and ran": [65535, 0], "overflowed when he winked and ran down": [65535, 0], "when he winked and ran down and": [65535, 0], "he winked and ran down and trickled": [65535, 0], "winked and ran down and trickled from": [65535, 0], "and ran down and trickled from the": [65535, 0], "ran down and trickled from the end": [65535, 0], "down and trickled from the end of": [65535, 0], "and trickled from the end of his": [65535, 0], "trickled from the end of his nose": [65535, 0], "from the end of his nose and": [65535, 0], "the end of his nose and such": [65535, 0], "end of his nose and such a": [65535, 0], "of his nose and such a luxury": [65535, 0], "his nose and such a luxury to": [65535, 0], "nose and such a luxury to him": [65535, 0], "and such a luxury to him was": [65535, 0], "such a luxury to him was this": [65535, 0], "a luxury to him was this petting": [65535, 0], "luxury to him was this petting of": [65535, 0], "to him was this petting of his": [65535, 0], "him was this petting of his sorrows": [65535, 0], "was this petting of his sorrows that": [65535, 0], "this petting of his sorrows that he": [65535, 0], "petting of his sorrows that he could": [65535, 0], "of his sorrows that he could not": [65535, 0], "his sorrows that he could not bear": [65535, 0], "sorrows that he could not bear to": [65535, 0], "that he could not bear to have": [65535, 0], "he could not bear to have any": [65535, 0], "could not bear to have any worldly": [65535, 0], "not bear to have any worldly cheeriness": [65535, 0], "bear to have any worldly cheeriness or": [65535, 0], "to have any worldly cheeriness or any": [65535, 0], "have any worldly cheeriness or any grating": [65535, 0], "any worldly cheeriness or any grating delight": [65535, 0], "worldly cheeriness or any grating delight intrude": [65535, 0], "cheeriness or any grating delight intrude upon": [65535, 0], "or any grating delight intrude upon it": [65535, 0], "any grating delight intrude upon it it": [65535, 0], "grating delight intrude upon it it was": [65535, 0], "delight intrude upon it it was too": [65535, 0], "intrude upon it it was too sacred": [65535, 0], "upon it it was too sacred for": [65535, 0], "it it was too sacred for such": [65535, 0], "it was too sacred for such contact": [65535, 0], "was too sacred for such contact and": [65535, 0], "too sacred for such contact and so": [65535, 0], "sacred for such contact and so presently": [65535, 0], "for such contact and so presently when": [65535, 0], "such contact and so presently when his": [65535, 0], "contact and so presently when his cousin": [65535, 0], "and so presently when his cousin mary": [65535, 0], "so presently when his cousin mary danced": [65535, 0], "presently when his cousin mary danced in": [65535, 0], "when his cousin mary danced in all": [65535, 0], "his cousin mary danced in all alive": [65535, 0], "cousin mary danced in all alive with": [65535, 0], "mary danced in all alive with the": [65535, 0], "danced in all alive with the joy": [65535, 0], "in all alive with the joy of": [65535, 0], "all alive with the joy of seeing": [65535, 0], "alive with the joy of seeing home": [65535, 0], "with the joy of seeing home again": [65535, 0], "the joy of seeing home again after": [65535, 0], "joy of seeing home again after an": [65535, 0], "of seeing home again after an age": [65535, 0], "seeing home again after an age long": [65535, 0], "home again after an age long visit": [65535, 0], "again after an age long visit of": [65535, 0], "after an age long visit of one": [65535, 0], "an age long visit of one week": [65535, 0], "age long visit of one week to": [65535, 0], "long visit of one week to the": [65535, 0], "visit of one week to the country": [65535, 0], "of one week to the country he": [65535, 0], "one week to the country he got": [65535, 0], "week to the country he got up": [65535, 0], "to the country he got up and": [65535, 0], "the country he got up and moved": [65535, 0], "country he got up and moved in": [65535, 0], "he got up and moved in clouds": [65535, 0], "got up and moved in clouds and": [65535, 0], "up and moved in clouds and darkness": [65535, 0], "and moved in clouds and darkness out": [65535, 0], "moved in clouds and darkness out at": [65535, 0], "in clouds and darkness out at one": [65535, 0], "clouds and darkness out at one door": [65535, 0], "and darkness out at one door as": [65535, 0], "darkness out at one door as she": [65535, 0], "out at one door as she brought": [65535, 0], "at one door as she brought song": [65535, 0], "one door as she brought song and": [65535, 0], "door as she brought song and sunshine": [65535, 0], "as she brought song and sunshine in": [65535, 0], "she brought song and sunshine in at": [65535, 0], "brought song and sunshine in at the": [65535, 0], "song and sunshine in at the other": [65535, 0], "and sunshine in at the other he": [65535, 0], "sunshine in at the other he wandered": [65535, 0], "in at the other he wandered far": [65535, 0], "at the other he wandered far from": [65535, 0], "the other he wandered far from the": [65535, 0], "other he wandered far from the accustomed": [65535, 0], "he wandered far from the accustomed haunts": [65535, 0], "wandered far from the accustomed haunts of": [65535, 0], "far from the accustomed haunts of boys": [65535, 0], "from the accustomed haunts of boys and": [65535, 0], "the accustomed haunts of boys and sought": [65535, 0], "accustomed haunts of boys and sought desolate": [65535, 0], "haunts of boys and sought desolate places": [65535, 0], "of boys and sought desolate places that": [65535, 0], "boys and sought desolate places that were": [65535, 0], "and sought desolate places that were in": [65535, 0], "sought desolate places that were in harmony": [65535, 0], "desolate places that were in harmony with": [65535, 0], "places that were in harmony with his": [65535, 0], "that were in harmony with his spirit": [65535, 0], "were in harmony with his spirit a": [65535, 0], "in harmony with his spirit a log": [65535, 0], "harmony with his spirit a log raft": [65535, 0], "with his spirit a log raft in": [65535, 0], "his spirit a log raft in the": [65535, 0], "spirit a log raft in the river": [65535, 0], "a log raft in the river invited": [65535, 0], "log raft in the river invited him": [65535, 0], "raft in the river invited him and": [65535, 0], "in the river invited him and he": [65535, 0], "the river invited him and he seated": [65535, 0], "river invited him and he seated himself": [65535, 0], "invited him and he seated himself on": [65535, 0], "him and he seated himself on its": [65535, 0], "and he seated himself on its outer": [65535, 0], "he seated himself on its outer edge": [65535, 0], "seated himself on its outer edge and": [65535, 0], "himself on its outer edge and contemplated": [65535, 0], "on its outer edge and contemplated the": [65535, 0], "its outer edge and contemplated the dreary": [65535, 0], "outer edge and contemplated the dreary vastness": [65535, 0], "edge and contemplated the dreary vastness of": [65535, 0], "and contemplated the dreary vastness of the": [65535, 0], "contemplated the dreary vastness of the stream": [65535, 0], "the dreary vastness of the stream wishing": [65535, 0], "dreary vastness of the stream wishing the": [65535, 0], "vastness of the stream wishing the while": [65535, 0], "of the stream wishing the while that": [65535, 0], "the stream wishing the while that he": [65535, 0], "stream wishing the while that he could": [65535, 0], "wishing the while that he could only": [65535, 0], "the while that he could only be": [65535, 0], "while that he could only be drowned": [65535, 0], "that he could only be drowned all": [65535, 0], "he could only be drowned all at": [65535, 0], "could only be drowned all at once": [65535, 0], "only be drowned all at once and": [65535, 0], "be drowned all at once and unconsciously": [65535, 0], "drowned all at once and unconsciously without": [65535, 0], "all at once and unconsciously without undergoing": [65535, 0], "at once and unconsciously without undergoing the": [65535, 0], "once and unconsciously without undergoing the uncomfortable": [65535, 0], "and unconsciously without undergoing the uncomfortable routine": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "without undergoing the uncomfortable routine devised by": [65535, 0], "undergoing the uncomfortable routine devised by nature": [65535, 0], "the uncomfortable routine devised by nature then": [65535, 0], "uncomfortable routine devised by nature then he": [65535, 0], "routine devised by nature then he thought": [65535, 0], "devised by nature then he thought of": [65535, 0], "by nature then he thought of his": [65535, 0], "nature then he thought of his flower": [65535, 0], "then he thought of his flower he": [65535, 0], "he thought of his flower he got": [65535, 0], "thought of his flower he got it": [65535, 0], "of his flower he got it out": [65535, 0], "his flower he got it out rumpled": [65535, 0], "flower he got it out rumpled and": [65535, 0], "he got it out rumpled and wilted": [65535, 0], "got it out rumpled and wilted and": [65535, 0], "it out rumpled and wilted and it": [65535, 0], "out rumpled and wilted and it mightily": [65535, 0], "rumpled and wilted and it mightily increased": [65535, 0], "and wilted and it mightily increased his": [65535, 0], "wilted and it mightily increased his dismal": [65535, 0], "and it mightily increased his dismal felicity": [65535, 0], "it mightily increased his dismal felicity he": [65535, 0], "mightily increased his dismal felicity he wondered": [65535, 0], "increased his dismal felicity he wondered if": [65535, 0], "his dismal felicity he wondered if she": [65535, 0], "dismal felicity he wondered if she would": [65535, 0], "felicity he wondered if she would pity": [65535, 0], "he wondered if she would pity him": [65535, 0], "wondered if she would pity him if": [65535, 0], "if she would pity him if she": [65535, 0], "she would pity him if she knew": [65535, 0], "would pity him if she knew would": [65535, 0], "pity him if she knew would she": [65535, 0], "him if she knew would she cry": [65535, 0], "if she knew would she cry and": [65535, 0], "she knew would she cry and wish": [65535, 0], "knew would she cry and wish that": [65535, 0], "would she cry and wish that she": [65535, 0], "she cry and wish that she had": [65535, 0], "cry and wish that she had a": [65535, 0], "and wish that she had a right": [65535, 0], "wish that she had a right to": [65535, 0], "that she had a right to put": [65535, 0], "she had a right to put her": [65535, 0], "had a right to put her arms": [65535, 0], "a right to put her arms around": [65535, 0], "right to put her arms around his": [65535, 0], "to put her arms around his neck": [65535, 0], "put her arms around his neck and": [65535, 0], "her arms around his neck and comfort": [65535, 0], "arms around his neck and comfort him": [65535, 0], "around his neck and comfort him or": [65535, 0], "his neck and comfort him or would": [65535, 0], "neck and comfort him or would she": [65535, 0], "and comfort him or would she turn": [65535, 0], "comfort him or would she turn coldly": [65535, 0], "him or would she turn coldly away": [65535, 0], "or would she turn coldly away like": [65535, 0], "would she turn coldly away like all": [65535, 0], "she turn coldly away like all the": [65535, 0], "turn coldly away like all the hollow": [65535, 0], "coldly away like all the hollow world": [65535, 0], "away like all the hollow world this": [65535, 0], "like all the hollow world this picture": [65535, 0], "all the hollow world this picture brought": [65535, 0], "the hollow world this picture brought such": [65535, 0], "hollow world this picture brought such an": [65535, 0], "world this picture brought such an agony": [65535, 0], "this picture brought such an agony of": [65535, 0], "picture brought such an agony of pleasurable": [65535, 0], "brought such an agony of pleasurable suffering": [65535, 0], "such an agony of pleasurable suffering that": [65535, 0], "an agony of pleasurable suffering that he": [65535, 0], "agony of pleasurable suffering that he worked": [65535, 0], "of pleasurable suffering that he worked it": [65535, 0], "pleasurable suffering that he worked it over": [65535, 0], "suffering that he worked it over and": [65535, 0], "that he worked it over and over": [65535, 0], "he worked it over and over again": [65535, 0], "worked it over and over again in": [65535, 0], "it over and over again in his": [65535, 0], "over and over again in his mind": [65535, 0], "and over again in his mind and": [65535, 0], "over again in his mind and set": [65535, 0], "again in his mind and set it": [65535, 0], "in his mind and set it up": [65535, 0], "his mind and set it up in": [65535, 0], "mind and set it up in new": [65535, 0], "and set it up in new and": [65535, 0], "set it up in new and varied": [65535, 0], "it up in new and varied lights": [65535, 0], "up in new and varied lights till": [65535, 0], "in new and varied lights till he": [65535, 0], "new and varied lights till he wore": [65535, 0], "and varied lights till he wore it": [65535, 0], "varied lights till he wore it threadbare": [65535, 0], "lights till he wore it threadbare at": [65535, 0], "till he wore it threadbare at last": [65535, 0], "he wore it threadbare at last he": [65535, 0], "wore it threadbare at last he rose": [65535, 0], "it threadbare at last he rose up": [65535, 0], "threadbare at last he rose up sighing": [65535, 0], "at last he rose up sighing and": [65535, 0], "last he rose up sighing and departed": [65535, 0], "he rose up sighing and departed in": [65535, 0], "rose up sighing and departed in the": [65535, 0], "up sighing and departed in the darkness": [65535, 0], "sighing and departed in the darkness about": [65535, 0], "and departed in the darkness about half": [65535, 0], "departed in the darkness about half past": [65535, 0], "in the darkness about half past nine": [65535, 0], "the darkness about half past nine or": [65535, 0], "darkness about half past nine or ten": [65535, 0], "about half past nine or ten o'clock": [65535, 0], "half past nine or ten o'clock he": [65535, 0], "past nine or ten o'clock he came": [65535, 0], "nine or ten o'clock he came along": [65535, 0], "or ten o'clock he came along the": [65535, 0], "ten o'clock he came along the deserted": [65535, 0], "o'clock he came along the deserted street": [65535, 0], "he came along the deserted street to": [65535, 0], "came along the deserted street to where": [65535, 0], "along the deserted street to where the": [65535, 0], "the deserted street to where the adored": [65535, 0], "deserted street to where the adored unknown": [65535, 0], "street to where the adored unknown lived": [65535, 0], "to where the adored unknown lived he": [65535, 0], "where the adored unknown lived he paused": [65535, 0], "the adored unknown lived he paused a": [65535, 0], "adored unknown lived he paused a moment": [65535, 0], "unknown lived he paused a moment no": [65535, 0], "lived he paused a moment no sound": [65535, 0], "he paused a moment no sound fell": [65535, 0], "paused a moment no sound fell upon": [65535, 0], "a moment no sound fell upon his": [65535, 0], "moment no sound fell upon his listening": [65535, 0], "no sound fell upon his listening ear": [65535, 0], "sound fell upon his listening ear a": [65535, 0], "fell upon his listening ear a candle": [65535, 0], "upon his listening ear a candle was": [65535, 0], "his listening ear a candle was casting": [65535, 0], "listening ear a candle was casting a": [65535, 0], "ear a candle was casting a dull": [65535, 0], "a candle was casting a dull glow": [65535, 0], "candle was casting a dull glow upon": [65535, 0], "was casting a dull glow upon the": [65535, 0], "casting a dull glow upon the curtain": [65535, 0], "a dull glow upon the curtain of": [65535, 0], "dull glow upon the curtain of a": [65535, 0], "glow upon the curtain of a second": [65535, 0], "upon the curtain of a second story": [65535, 0], "the curtain of a second story window": [65535, 0], "curtain of a second story window was": [65535, 0], "of a second story window was the": [65535, 0], "a second story window was the sacred": [65535, 0], "second story window was the sacred presence": [65535, 0], "story window was the sacred presence there": [65535, 0], "window was the sacred presence there he": [65535, 0], "was the sacred presence there he climbed": [65535, 0], "the sacred presence there he climbed the": [65535, 0], "sacred presence there he climbed the fence": [65535, 0], "presence there he climbed the fence threaded": [65535, 0], "there he climbed the fence threaded his": [65535, 0], "he climbed the fence threaded his stealthy": [65535, 0], "climbed the fence threaded his stealthy way": [65535, 0], "the fence threaded his stealthy way through": [65535, 0], "fence threaded his stealthy way through the": [65535, 0], "threaded his stealthy way through the plants": [65535, 0], "his stealthy way through the plants till": [65535, 0], "stealthy way through the plants till he": [65535, 0], "way through the plants till he stood": [65535, 0], "through the plants till he stood under": [65535, 0], "the plants till he stood under that": [65535, 0], "plants till he stood under that window": [65535, 0], "till he stood under that window he": [65535, 0], "he stood under that window he looked": [65535, 0], "stood under that window he looked up": [65535, 0], "under that window he looked up at": [65535, 0], "that window he looked up at it": [65535, 0], "window he looked up at it long": [65535, 0], "he looked up at it long and": [65535, 0], "looked up at it long and with": [65535, 0], "up at it long and with emotion": [65535, 0], "at it long and with emotion then": [65535, 0], "it long and with emotion then he": [65535, 0], "long and with emotion then he laid": [65535, 0], "and with emotion then he laid him": [65535, 0], "with emotion then he laid him down": [65535, 0], "emotion then he laid him down on": [65535, 0], "then he laid him down on the": [65535, 0], "he laid him down on the ground": [65535, 0], "laid him down on the ground under": [65535, 0], "him down on the ground under it": [65535, 0], "down on the ground under it disposing": [65535, 0], "on the ground under it disposing himself": [65535, 0], "the ground under it disposing himself upon": [65535, 0], "ground under it disposing himself upon his": [65535, 0], "under it disposing himself upon his back": [65535, 0], "it disposing himself upon his back with": [65535, 0], "disposing himself upon his back with his": [65535, 0], "himself upon his back with his hands": [65535, 0], "upon his back with his hands clasped": [65535, 0], "his back with his hands clasped upon": [65535, 0], "back with his hands clasped upon his": [65535, 0], "with his hands clasped upon his breast": [65535, 0], "his hands clasped upon his breast and": [65535, 0], "hands clasped upon his breast and holding": [65535, 0], "clasped upon his breast and holding his": [65535, 0], "upon his breast and holding his poor": [65535, 0], "his breast and holding his poor wilted": [65535, 0], "breast and holding his poor wilted flower": [65535, 0], "and holding his poor wilted flower and": [65535, 0], "holding his poor wilted flower and thus": [65535, 0], "his poor wilted flower and thus he": [65535, 0], "poor wilted flower and thus he would": [65535, 0], "wilted flower and thus he would die": [65535, 0], "flower and thus he would die out": [65535, 0], "and thus he would die out in": [65535, 0], "thus he would die out in the": [65535, 0], "he would die out in the cold": [65535, 0], "would die out in the cold world": [65535, 0], "die out in the cold world with": [65535, 0], "out in the cold world with no": [65535, 0], "in the cold world with no shelter": [65535, 0], "the cold world with no shelter over": [65535, 0], "cold world with no shelter over his": [65535, 0], "world with no shelter over his homeless": [65535, 0], "with no shelter over his homeless head": [65535, 0], "no shelter over his homeless head no": [65535, 0], "shelter over his homeless head no friendly": [65535, 0], "over his homeless head no friendly hand": [65535, 0], "his homeless head no friendly hand to": [65535, 0], "homeless head no friendly hand to wipe": [65535, 0], "head no friendly hand to wipe the": [65535, 0], "no friendly hand to wipe the death": [65535, 0], "friendly hand to wipe the death damps": [65535, 0], "hand to wipe the death damps from": [65535, 0], "to wipe the death damps from his": [65535, 0], "wipe the death damps from his brow": [65535, 0], "the death damps from his brow no": [65535, 0], "death damps from his brow no loving": [65535, 0], "damps from his brow no loving face": [65535, 0], "from his brow no loving face to": [65535, 0], "his brow no loving face to bend": [65535, 0], "brow no loving face to bend pityingly": [65535, 0], "no loving face to bend pityingly over": [65535, 0], "loving face to bend pityingly over him": [65535, 0], "face to bend pityingly over him when": [65535, 0], "to bend pityingly over him when the": [65535, 0], "bend pityingly over him when the great": [65535, 0], "pityingly over him when the great agony": [65535, 0], "over him when the great agony came": [65535, 0], "him when the great agony came and": [65535, 0], "when the great agony came and thus": [65535, 0], "the great agony came and thus she": [65535, 0], "great agony came and thus she would": [65535, 0], "agony came and thus she would see": [65535, 0], "came and thus she would see him": [65535, 0], "and thus she would see him when": [65535, 0], "thus she would see him when she": [65535, 0], "she would see him when she looked": [65535, 0], "would see him when she looked out": [65535, 0], "see him when she looked out upon": [65535, 0], "him when she looked out upon the": [65535, 0], "when she looked out upon the glad": [65535, 0], "she looked out upon the glad morning": [65535, 0], "looked out upon the glad morning and": [65535, 0], "out upon the glad morning and oh": [65535, 0], "upon the glad morning and oh would": [65535, 0], "the glad morning and oh would she": [65535, 0], "glad morning and oh would she drop": [65535, 0], "morning and oh would she drop one": [65535, 0], "and oh would she drop one little": [65535, 0], "oh would she drop one little tear": [65535, 0], "would she drop one little tear upon": [65535, 0], "she drop one little tear upon his": [65535, 0], "drop one little tear upon his poor": [65535, 0], "one little tear upon his poor lifeless": [65535, 0], "little tear upon his poor lifeless form": [65535, 0], "tear upon his poor lifeless form would": [65535, 0], "upon his poor lifeless form would she": [65535, 0], "his poor lifeless form would she heave": [65535, 0], "poor lifeless form would she heave one": [65535, 0], "lifeless form would she heave one little": [65535, 0], "form would she heave one little sigh": [65535, 0], "would she heave one little sigh to": [65535, 0], "she heave one little sigh to see": [65535, 0], "heave one little sigh to see a": [65535, 0], "one little sigh to see a bright": [65535, 0], "little sigh to see a bright young": [65535, 0], "sigh to see a bright young life": [65535, 0], "to see a bright young life so": [65535, 0], "see a bright young life so rudely": [65535, 0], "a bright young life so rudely blighted": [65535, 0], "bright young life so rudely blighted so": [65535, 0], "young life so rudely blighted so untimely": [65535, 0], "life so rudely blighted so untimely cut": [65535, 0], "so rudely blighted so untimely cut down": [65535, 0], "rudely blighted so untimely cut down the": [65535, 0], "blighted so untimely cut down the window": [65535, 0], "so untimely cut down the window went": [65535, 0], "untimely cut down the window went up": [65535, 0], "cut down the window went up a": [65535, 0], "down the window went up a maid": [65535, 0], "the window went up a maid servant's": [65535, 0], "window went up a maid servant's discordant": [65535, 0], "went up a maid servant's discordant voice": [65535, 0], "up a maid servant's discordant voice profaned": [65535, 0], "a maid servant's discordant voice profaned the": [65535, 0], "maid servant's discordant voice profaned the holy": [65535, 0], "servant's discordant voice profaned the holy calm": [65535, 0], "discordant voice profaned the holy calm and": [65535, 0], "voice profaned the holy calm and a": [65535, 0], "profaned the holy calm and a deluge": [65535, 0], "the holy calm and a deluge of": [65535, 0], "holy calm and a deluge of water": [65535, 0], "calm and a deluge of water drenched": [65535, 0], "and a deluge of water drenched the": [65535, 0], "a deluge of water drenched the prone": [65535, 0], "deluge of water drenched the prone martyr's": [65535, 0], "of water drenched the prone martyr's remains": [65535, 0], "water drenched the prone martyr's remains the": [65535, 0], "drenched the prone martyr's remains the strangling": [65535, 0], "the prone martyr's remains the strangling hero": [65535, 0], "prone martyr's remains the strangling hero sprang": [65535, 0], "martyr's remains the strangling hero sprang up": [65535, 0], "remains the strangling hero sprang up with": [65535, 0], "the strangling hero sprang up with a": [65535, 0], "strangling hero sprang up with a relieving": [65535, 0], "hero sprang up with a relieving snort": [65535, 0], "sprang up with a relieving snort there": [65535, 0], "up with a relieving snort there was": [65535, 0], "with a relieving snort there was a": [65535, 0], "a relieving snort there was a whiz": [65535, 0], "relieving snort there was a whiz as": [65535, 0], "snort there was a whiz as of": [65535, 0], "there was a whiz as of a": [65535, 0], "was a whiz as of a missile": [65535, 0], "a whiz as of a missile in": [65535, 0], "whiz as of a missile in the": [65535, 0], "as of a missile in the air": [65535, 0], "of a missile in the air mingled": [65535, 0], "a missile in the air mingled with": [65535, 0], "missile in the air mingled with the": [65535, 0], "in the air mingled with the murmur": [65535, 0], "the air mingled with the murmur of": [65535, 0], "air mingled with the murmur of a": [65535, 0], "mingled with the murmur of a curse": [65535, 0], "with the murmur of a curse a": [65535, 0], "the murmur of a curse a sound": [65535, 0], "murmur of a curse a sound as": [65535, 0], "of a curse a sound as of": [65535, 0], "a curse a sound as of shivering": [65535, 0], "curse a sound as of shivering glass": [65535, 0], "a sound as of shivering glass followed": [65535, 0], "sound as of shivering glass followed and": [65535, 0], "as of shivering glass followed and a": [65535, 0], "of shivering glass followed and a small": [65535, 0], "shivering glass followed and a small vague": [65535, 0], "glass followed and a small vague form": [65535, 0], "followed and a small vague form went": [65535, 0], "and a small vague form went over": [65535, 0], "a small vague form went over the": [65535, 0], "small vague form went over the fence": [65535, 0], "vague form went over the fence and": [65535, 0], "form went over the fence and shot": [65535, 0], "went over the fence and shot away": [65535, 0], "over the fence and shot away in": [65535, 0], "the fence and shot away in the": [65535, 0], "fence and shot away in the gloom": [65535, 0], "and shot away in the gloom not": [65535, 0], "shot away in the gloom not long": [65535, 0], "away in the gloom not long after": [65535, 0], "in the gloom not long after as": [65535, 0], "the gloom not long after as tom": [65535, 0], "gloom not long after as tom all": [65535, 0], "not long after as tom all undressed": [65535, 0], "long after as tom all undressed for": [65535, 0], "after as tom all undressed for bed": [65535, 0], "as tom all undressed for bed was": [65535, 0], "tom all undressed for bed was surveying": [65535, 0], "all undressed for bed was surveying his": [65535, 0], "undressed for bed was surveying his drenched": [65535, 0], "for bed was surveying his drenched garments": [65535, 0], "bed was surveying his drenched garments by": [65535, 0], "was surveying his drenched garments by the": [65535, 0], "surveying his drenched garments by the light": [65535, 0], "his drenched garments by the light of": [65535, 0], "drenched garments by the light of a": [65535, 0], "garments by the light of a tallow": [65535, 0], "by the light of a tallow dip": [65535, 0], "the light of a tallow dip sid": [65535, 0], "light of a tallow dip sid woke": [65535, 0], "of a tallow dip sid woke up": [65535, 0], "a tallow dip sid woke up but": [65535, 0], "tallow dip sid woke up but if": [65535, 0], "dip sid woke up but if he": [65535, 0], "sid woke up but if he had": [65535, 0], "woke up but if he had any": [65535, 0], "up but if he had any dim": [65535, 0], "but if he had any dim idea": [65535, 0], "if he had any dim idea of": [65535, 0], "he had any dim idea of making": [65535, 0], "had any dim idea of making any": [65535, 0], "any dim idea of making any references": [65535, 0], "dim idea of making any references to": [65535, 0], "idea of making any references to allusions": [65535, 0], "of making any references to allusions he": [65535, 0], "making any references to allusions he thought": [65535, 0], "any references to allusions he thought better": [65535, 0], "references to allusions he thought better of": [65535, 0], "to allusions he thought better of it": [65535, 0], "allusions he thought better of it and": [65535, 0], "he thought better of it and held": [65535, 0], "thought better of it and held his": [65535, 0], "better of it and held his peace": [65535, 0], "of it and held his peace for": [65535, 0], "it and held his peace for there": [65535, 0], "and held his peace for there was": [65535, 0], "held his peace for there was danger": [65535, 0], "his peace for there was danger in": [65535, 0], "peace for there was danger in tom's": [65535, 0], "for there was danger in tom's eye": [65535, 0], "there was danger in tom's eye tom": [65535, 0], "was danger in tom's eye tom turned": [65535, 0], "danger in tom's eye tom turned in": [65535, 0], "in tom's eye tom turned in without": [65535, 0], "tom's eye tom turned in without the": [65535, 0], "eye tom turned in without the added": [65535, 0], "tom turned in without the added vexation": [65535, 0], "turned in without the added vexation of": [65535, 0], "in without the added vexation of prayers": [65535, 0], "without the added vexation of prayers and": [65535, 0], "the added vexation of prayers and sid": [65535, 0], "added vexation of prayers and sid made": [65535, 0], "vexation of prayers and sid made mental": [65535, 0], "of prayers and sid made mental note": [65535, 0], "prayers and sid made mental note of": [65535, 0], "and sid made mental note of the": [65535, 0], "sid made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who was": [65535, 0], "presented himself before aunt polly who was sitting": [65535, 0], "himself before aunt polly who was sitting by": [65535, 0], "before aunt polly who was sitting by an": [65535, 0], "aunt polly who was sitting by an open": [65535, 0], "polly who was sitting by an open window": [65535, 0], "who was sitting by an open window in": [65535, 0], "was sitting by an open window in a": [65535, 0], "sitting by an open window in a pleasant": [65535, 0], "by an open window in a pleasant rearward": [65535, 0], "an open window in a pleasant rearward apartment": [65535, 0], "open window in a pleasant rearward apartment which": [65535, 0], "window in a pleasant rearward apartment which was": [65535, 0], "in a pleasant rearward apartment which was bedroom": [65535, 0], "a pleasant rearward apartment which was bedroom breakfast": [65535, 0], "pleasant rearward apartment which was bedroom breakfast room": [65535, 0], "rearward apartment which was bedroom breakfast room dining": [65535, 0], "apartment which was bedroom breakfast room dining room": [65535, 0], "which was bedroom breakfast room dining room and": [65535, 0], "was bedroom breakfast room dining room and library": [65535, 0], "bedroom breakfast room dining room and library combined": [65535, 0], "breakfast room dining room and library combined the": [65535, 0], "room dining room and library combined the balmy": [65535, 0], "dining room and library combined the balmy summer": [65535, 0], "room and library combined the balmy summer air": [65535, 0], "and library combined the balmy summer air the": [65535, 0], "library combined the balmy summer air the restful": [65535, 0], "combined the balmy summer air the restful quiet": [65535, 0], "the balmy summer air the restful quiet the": [65535, 0], "balmy summer air the restful quiet the odor": [65535, 0], "summer air the restful quiet the odor of": [65535, 0], "air the restful quiet the odor of the": [65535, 0], "the restful quiet the odor of the flowers": [65535, 0], "restful quiet the odor of the flowers and": [65535, 0], "quiet the odor of the flowers and the": [65535, 0], "the odor of the flowers and the drowsing": [65535, 0], "odor of the flowers and the drowsing murmur": [65535, 0], "of the flowers and the drowsing murmur of": [65535, 0], "the flowers and the drowsing murmur of the": [65535, 0], "flowers and the drowsing murmur of the bees": [65535, 0], "and the drowsing murmur of the bees had": [65535, 0], "the drowsing murmur of the bees had had": [65535, 0], "drowsing murmur of the bees had had their": [65535, 0], "murmur of the bees had had their effect": [65535, 0], "of the bees had had their effect and": [65535, 0], "the bees had had their effect and she": [65535, 0], "bees had had their effect and she was": [65535, 0], "had had their effect and she was nodding": [65535, 0], "had their effect and she was nodding over": [65535, 0], "their effect and she was nodding over her": [65535, 0], "effect and she was nodding over her knitting": [65535, 0], "and she was nodding over her knitting for": [65535, 0], "she was nodding over her knitting for she": [65535, 0], "was nodding over her knitting for she had": [65535, 0], "nodding over her knitting for she had no": [65535, 0], "over her knitting for she had no company": [65535, 0], "her knitting for she had no company but": [65535, 0], "knitting for she had no company but the": [65535, 0], "for she had no company but the cat": [65535, 0], "she had no company but the cat and": [65535, 0], "had no company but the cat and it": [65535, 0], "no company but the cat and it was": [65535, 0], "company but the cat and it was asleep": [65535, 0], "but the cat and it was asleep in": [65535, 0], "the cat and it was asleep in her": [65535, 0], "cat and it was asleep in her lap": [65535, 0], "and it was asleep in her lap her": [65535, 0], "it was asleep in her lap her spectacles": [65535, 0], "was asleep in her lap her spectacles were": [65535, 0], "asleep in her lap her spectacles were propped": [65535, 0], "in her lap her spectacles were propped up": [65535, 0], "her lap her spectacles were propped up on": [65535, 0], "lap her spectacles were propped up on her": [65535, 0], "her spectacles were propped up on her gray": [65535, 0], "spectacles were propped up on her gray head": [65535, 0], "were propped up on her gray head for": [65535, 0], "propped up on her gray head for safety": [65535, 0], "up on her gray head for safety she": [65535, 0], "on her gray head for safety she had": [65535, 0], "her gray head for safety she had thought": [65535, 0], "gray head for safety she had thought that": [65535, 0], "head for safety she had thought that of": [65535, 0], "for safety she had thought that of course": [65535, 0], "safety she had thought that of course tom": [65535, 0], "she had thought that of course tom had": [65535, 0], "had thought that of course tom had deserted": [65535, 0], "thought that of course tom had deserted long": [65535, 0], "that of course tom had deserted long ago": [65535, 0], "of course tom had deserted long ago and": [65535, 0], "course tom had deserted long ago and she": [65535, 0], "tom had deserted long ago and she wondered": [65535, 0], "had deserted long ago and she wondered at": [65535, 0], "deserted long ago and she wondered at seeing": [65535, 0], "long ago and she wondered at seeing him": [65535, 0], "ago and she wondered at seeing him place": [65535, 0], "and she wondered at seeing him place himself": [65535, 0], "she wondered at seeing him place himself in": [65535, 0], "wondered at seeing him place himself in her": [65535, 0], "at seeing him place himself in her power": [65535, 0], "seeing him place himself in her power again": [65535, 0], "him place himself in her power again in": [65535, 0], "place himself in her power again in this": [65535, 0], "himself in her power again in this intrepid": [65535, 0], "in her power again in this intrepid way": [65535, 0], "her power again in this intrepid way he": [65535, 0], "power again in this intrepid way he said": [65535, 0], "again in this intrepid way he said mayn't": [65535, 0], "in this intrepid way he said mayn't i": [65535, 0], "this intrepid way he said mayn't i go": [65535, 0], "intrepid way he said mayn't i go and": [65535, 0], "way he said mayn't i go and play": [65535, 0], "he said mayn't i go and play now": [65535, 0], "said mayn't i go and play now aunt": [65535, 0], "mayn't i go and play now aunt what": [65535, 0], "i go and play now aunt what a'ready": [65535, 0], "go and play now aunt what a'ready how": [65535, 0], "and play now aunt what a'ready how much": [65535, 0], "play now aunt what a'ready how much have": [65535, 0], "now aunt what a'ready how much have you": [65535, 0], "aunt what a'ready how much have you done": [65535, 0], "what a'ready how much have you done it's": [65535, 0], "a'ready how much have you done it's all": [65535, 0], "how much have you done it's all done": [65535, 0], "much have you done it's all done aunt": [65535, 0], "have you done it's all done aunt tom": [65535, 0], "you done it's all done aunt tom don't": [65535, 0], "done it's all done aunt tom don't lie": [65535, 0], "it's all done aunt tom don't lie to": [65535, 0], "all done aunt tom don't lie to me": [65535, 0], "done aunt tom don't lie to me i": [65535, 0], "aunt tom don't lie to me i can't": [65535, 0], "tom don't lie to me i can't bear": [65535, 0], "don't lie to me i can't bear it": [65535, 0], "lie to me i can't bear it i": [65535, 0], "to me i can't bear it i ain't": [65535, 0], "me i can't bear it i ain't aunt": [65535, 0], "i can't bear it i ain't aunt it": [65535, 0], "can't bear it i ain't aunt it is": [65535, 0], "bear it i ain't aunt it is all": [65535, 0], "it i ain't aunt it is all done": [65535, 0], "i ain't aunt it is all done aunt": [65535, 0], "ain't aunt it is all done aunt polly": [65535, 0], "aunt it is all done aunt polly placed": [65535, 0], "it is all done aunt polly placed small": [65535, 0], "is all done aunt polly placed small trust": [65535, 0], "all done aunt polly placed small trust in": [65535, 0], "done aunt polly placed small trust in such": [65535, 0], "aunt polly placed small trust in such evidence": [65535, 0], "polly placed small trust in such evidence she": [65535, 0], "placed small trust in such evidence she went": [65535, 0], "small trust in such evidence she went out": [65535, 0], "trust in such evidence she went out to": [65535, 0], "in such evidence she went out to see": [65535, 0], "such evidence she went out to see for": [65535, 0], "evidence she went out to see for herself": [65535, 0], "she went out to see for herself and": [65535, 0], "went out to see for herself and she": [65535, 0], "out to see for herself and she would": [65535, 0], "to see for herself and she would have": [65535, 0], "see for herself and she would have been": [65535, 0], "for herself and she would have been content": [65535, 0], "herself and she would have been content to": [65535, 0], "and she would have been content to find": [65535, 0], "she would have been content to find twenty": [65535, 0], "would have been content to find twenty per": [65535, 0], "have been content to find twenty per cent": [65535, 0], "been content to find twenty per cent of": [65535, 0], "content to find twenty per cent of tom's": [65535, 0], "to find twenty per cent of tom's statement": [65535, 0], "find twenty per cent of tom's statement true": [65535, 0], "twenty per cent of tom's statement true when": [65535, 0], "per cent of tom's statement true when she": [65535, 0], "cent of tom's statement true when she found": [65535, 0], "of tom's statement true when she found the": [65535, 0], "tom's statement true when she found the entire": [65535, 0], "statement true when she found the entire fence": [65535, 0], "true when she found the entire fence whitewashed": [65535, 0], "when she found the entire fence whitewashed and": [65535, 0], "she found the entire fence whitewashed and not": [65535, 0], "found the entire fence whitewashed and not only": [65535, 0], "the entire fence whitewashed and not only whitewashed": [65535, 0], "entire fence whitewashed and not only whitewashed but": [65535, 0], "fence whitewashed and not only whitewashed but elaborately": [65535, 0], "whitewashed and not only whitewashed but elaborately coated": [65535, 0], "and not only whitewashed but elaborately coated and": [65535, 0], "not only whitewashed but elaborately coated and recoated": [65535, 0], "only whitewashed but elaborately coated and recoated and": [65535, 0], "whitewashed but elaborately coated and recoated and even": [65535, 0], "but elaborately coated and recoated and even a": [65535, 0], "elaborately coated and recoated and even a streak": [65535, 0], "coated and recoated and even a streak added": [65535, 0], "and recoated and even a streak added to": [65535, 0], "recoated and even a streak added to the": [65535, 0], "and even a streak added to the ground": [65535, 0], "even a streak added to the ground her": [65535, 0], "a streak added to the ground her astonishment": [65535, 0], "streak added to the ground her astonishment was": [65535, 0], "added to the ground her astonishment was almost": [65535, 0], "to the ground her astonishment was almost unspeakable": [65535, 0], "the ground her astonishment was almost unspeakable she": [65535, 0], "ground her astonishment was almost unspeakable she said": [65535, 0], "her astonishment was almost unspeakable she said well": [65535, 0], "astonishment was almost unspeakable she said well i": [65535, 0], "was almost unspeakable she said well i never": [65535, 0], "almost unspeakable she said well i never there's": [65535, 0], "unspeakable she said well i never there's no": [65535, 0], "she said well i never there's no getting": [65535, 0], "said well i never there's no getting round": [65535, 0], "well i never there's no getting round it": [65535, 0], "i never there's no getting round it you": [65535, 0], "never there's no getting round it you can": [65535, 0], "there's no getting round it you can work": [65535, 0], "no getting round it you can work when": [65535, 0], "getting round it you can work when you're": [65535, 0], "round it you can work when you're a": [65535, 0], "it you can work when you're a mind": [65535, 0], "you can work when you're a mind to": [65535, 0], "can work when you're a mind to tom": [65535, 0], "work when you're a mind to tom and": [65535, 0], "when you're a mind to tom and then": [65535, 0], "you're a mind to tom and then she": [65535, 0], "a mind to tom and then she diluted": [65535, 0], "mind to tom and then she diluted the": [65535, 0], "to tom and then she diluted the compliment": [65535, 0], "tom and then she diluted the compliment by": [65535, 0], "and then she diluted the compliment by adding": [65535, 0], "then she diluted the compliment by adding but": [65535, 0], "she diluted the compliment by adding but it's": [65535, 0], "diluted the compliment by adding but it's powerful": [65535, 0], "the compliment by adding but it's powerful seldom": [65535, 0], "compliment by adding but it's powerful seldom you're": [65535, 0], "by adding but it's powerful seldom you're a": [65535, 0], "adding but it's powerful seldom you're a mind": [65535, 0], "but it's powerful seldom you're a mind to": [65535, 0], "it's powerful seldom you're a mind to i'm": [65535, 0], "powerful seldom you're a mind to i'm bound": [65535, 0], "seldom you're a mind to i'm bound to": [65535, 0], "you're a mind to i'm bound to say": [65535, 0], "a mind to i'm bound to say well": [65535, 0], "mind to i'm bound to say well go": [65535, 0], "to i'm bound to say well go 'long": [65535, 0], "i'm bound to say well go 'long and": [65535, 0], "bound to say well go 'long and play": [65535, 0], "to say well go 'long and play but": [65535, 0], "say well go 'long and play but mind": [65535, 0], "well go 'long and play but mind you": [65535, 0], "go 'long and play but mind you get": [65535, 0], "'long and play but mind you get back": [65535, 0], "and play but mind you get back some": [65535, 0], "play but mind you get back some time": [65535, 0], "but mind you get back some time in": [65535, 0], "mind you get back some time in a": [65535, 0], "you get back some time in a week": [65535, 0], "get back some time in a week or": [65535, 0], "back some time in a week or i'll": [65535, 0], "some time in a week or i'll tan": [65535, 0], "time in a week or i'll tan you": [65535, 0], "in a week or i'll tan you she": [65535, 0], "a week or i'll tan you she was": [65535, 0], "week or i'll tan you she was so": [65535, 0], "or i'll tan you she was so overcome": [65535, 0], "i'll tan you she was so overcome by": [65535, 0], "tan you she was so overcome by the": [65535, 0], "you she was so overcome by the splendor": [65535, 0], "she was so overcome by the splendor of": [65535, 0], "was so overcome by the splendor of his": [65535, 0], "so overcome by the splendor of his achievement": [65535, 0], "overcome by the splendor of his achievement that": [65535, 0], "by the splendor of his achievement that she": [65535, 0], "the splendor of his achievement that she took": [65535, 0], "splendor of his achievement that she took him": [65535, 0], "of his achievement that she took him into": [65535, 0], "his achievement that she took him into the": [65535, 0], "achievement that she took him into the closet": [65535, 0], "that she took him into the closet and": [65535, 0], "she took him into the closet and selected": [65535, 0], "took him into the closet and selected a": [65535, 0], "him into the closet and selected a choice": [65535, 0], "into the closet and selected a choice apple": [65535, 0], "the closet and selected a choice apple and": [65535, 0], "closet and selected a choice apple and delivered": [65535, 0], "and selected a choice apple and delivered it": [65535, 0], "selected a choice apple and delivered it to": [65535, 0], "a choice apple and delivered it to him": [65535, 0], "choice apple and delivered it to him along": [65535, 0], "apple and delivered it to him along with": [65535, 0], "and delivered it to him along with an": [65535, 0], "delivered it to him along with an improving": [65535, 0], "it to him along with an improving lecture": [65535, 0], "to him along with an improving lecture upon": [65535, 0], "him along with an improving lecture upon the": [65535, 0], "along with an improving lecture upon the added": [65535, 0], "with an improving lecture upon the added value": [65535, 0], "an improving lecture upon the added value and": [65535, 0], "improving lecture upon the added value and flavor": [65535, 0], "lecture upon the added value and flavor a": [65535, 0], "upon the added value and flavor a treat": [65535, 0], "the added value and flavor a treat took": [65535, 0], "added value and flavor a treat took to": [65535, 0], "value and flavor a treat took to itself": [65535, 0], "and flavor a treat took to itself when": [65535, 0], "flavor a treat took to itself when it": [65535, 0], "a treat took to itself when it came": [65535, 0], "treat took to itself when it came without": [65535, 0], "took to itself when it came without sin": [65535, 0], "to itself when it came without sin through": [65535, 0], "itself when it came without sin through virtuous": [65535, 0], "when it came without sin through virtuous effort": [65535, 0], "it came without sin through virtuous effort and": [65535, 0], "came without sin through virtuous effort and while": [65535, 0], "without sin through virtuous effort and while she": [65535, 0], "sin through virtuous effort and while she closed": [65535, 0], "through virtuous effort and while she closed with": [65535, 0], "virtuous effort and while she closed with a": [65535, 0], "effort and while she closed with a happy": [65535, 0], "and while she closed with a happy scriptural": [65535, 0], "while she closed with a happy scriptural flourish": [65535, 0], "she closed with a happy scriptural flourish he": [65535, 0], "closed with a happy scriptural flourish he hooked": [65535, 0], "with a happy scriptural flourish he hooked a": [65535, 0], "a happy scriptural flourish he hooked a doughnut": [65535, 0], "happy scriptural flourish he hooked a doughnut then": [65535, 0], "scriptural flourish he hooked a doughnut then he": [65535, 0], "flourish he hooked a doughnut then he skipped": [65535, 0], "he hooked a doughnut then he skipped out": [65535, 0], "hooked a doughnut then he skipped out and": [65535, 0], "a doughnut then he skipped out and saw": [65535, 0], "doughnut then he skipped out and saw sid": [65535, 0], "then he skipped out and saw sid just": [65535, 0], "he skipped out and saw sid just starting": [65535, 0], "skipped out and saw sid just starting up": [65535, 0], "out and saw sid just starting up the": [65535, 0], "and saw sid just starting up the outside": [65535, 0], "saw sid just starting up the outside stairway": [65535, 0], "sid just starting up the outside stairway that": [65535, 0], "just starting up the outside stairway that led": [65535, 0], "starting up the outside stairway that led to": [65535, 0], "up the outside stairway that led to the": [65535, 0], "the outside stairway that led to the back": [65535, 0], "outside stairway that led to the back rooms": [65535, 0], "stairway that led to the back rooms on": [65535, 0], "that led to the back rooms on the": [65535, 0], "led to the back rooms on the second": [65535, 0], "to the back rooms on the second floor": [65535, 0], "the back rooms on the second floor clods": [65535, 0], "back rooms on the second floor clods were": [65535, 0], "rooms on the second floor clods were handy": [65535, 0], "on the second floor clods were handy and": [65535, 0], "the second floor clods were handy and the": [65535, 0], "second floor clods were handy and the air": [65535, 0], "floor clods were handy and the air was": [65535, 0], "clods were handy and the air was full": [65535, 0], "were handy and the air was full of": [65535, 0], "handy and the air was full of them": [65535, 0], "and the air was full of them in": [65535, 0], "the air was full of them in a": [65535, 0], "air was full of them in a twinkling": [65535, 0], "was full of them in a twinkling they": [65535, 0], "full of them in a twinkling they raged": [65535, 0], "of them in a twinkling they raged around": [65535, 0], "them in a twinkling they raged around sid": [65535, 0], "in a twinkling they raged around sid like": [65535, 0], "a twinkling they raged around sid like a": [65535, 0], "twinkling they raged around sid like a hail": [65535, 0], "they raged around sid like a hail storm": [65535, 0], "raged around sid like a hail storm and": [65535, 0], "around sid like a hail storm and before": [65535, 0], "sid like a hail storm and before aunt": [65535, 0], "like a hail storm and before aunt polly": [65535, 0], "a hail storm and before aunt polly could": [65535, 0], "hail storm and before aunt polly could collect": [65535, 0], "storm and before aunt polly could collect her": [65535, 0], "and before aunt polly could collect her surprised": [65535, 0], "before aunt polly could collect her surprised faculties": [65535, 0], "aunt polly could collect her surprised faculties and": [65535, 0], "polly could collect her surprised faculties and sally": [65535, 0], "could collect her surprised faculties and sally to": [65535, 0], "collect her surprised faculties and sally to the": [65535, 0], "her surprised faculties and sally to the rescue": [65535, 0], "surprised faculties and sally to the rescue six": [65535, 0], "faculties and sally to the rescue six or": [65535, 0], "and sally to the rescue six or seven": [65535, 0], "sally to the rescue six or seven clods": [65535, 0], "to the rescue six or seven clods had": [65535, 0], "the rescue six or seven clods had taken": [65535, 0], "rescue six or seven clods had taken personal": [65535, 0], "six or seven clods had taken personal effect": [65535, 0], "or seven clods had taken personal effect and": [65535, 0], "seven clods had taken personal effect and tom": [65535, 0], "clods had taken personal effect and tom was": [65535, 0], "had taken personal effect and tom was over": [65535, 0], "taken personal effect and tom was over the": [65535, 0], "personal effect and tom was over the fence": [65535, 0], "effect and tom was over the fence and": [65535, 0], "and tom was over the fence and gone": [65535, 0], "tom was over the fence and gone there": [65535, 0], "was over the fence and gone there was": [65535, 0], "over the fence and gone there was a": [65535, 0], "the fence and gone there was a gate": [65535, 0], "fence and gone there was a gate but": [65535, 0], "and gone there was a gate but as": [65535, 0], "gone there was a gate but as a": [65535, 0], "there was a gate but as a general": [65535, 0], "was a gate but as a general thing": [65535, 0], "a gate but as a general thing he": [65535, 0], "gate but as a general thing he was": [65535, 0], "but as a general thing he was too": [65535, 0], "as a general thing he was too crowded": [65535, 0], "a general thing he was too crowded for": [65535, 0], "general thing he was too crowded for time": [65535, 0], "thing he was too crowded for time to": [65535, 0], "he was too crowded for time to make": [65535, 0], "was too crowded for time to make use": [65535, 0], "too crowded for time to make use of": [65535, 0], "crowded for time to make use of it": [65535, 0], "for time to make use of it his": [65535, 0], "time to make use of it his soul": [65535, 0], "to make use of it his soul was": [65535, 0], "make use of it his soul was at": [65535, 0], "use of it his soul was at peace": [65535, 0], "of it his soul was at peace now": [65535, 0], "it his soul was at peace now that": [65535, 0], "his soul was at peace now that he": [65535, 0], "soul was at peace now that he had": [65535, 0], "was at peace now that he had settled": [65535, 0], "at peace now that he had settled with": [65535, 0], "peace now that he had settled with sid": [65535, 0], "now that he had settled with sid for": [65535, 0], "that he had settled with sid for calling": [65535, 0], "he had settled with sid for calling attention": [65535, 0], "had settled with sid for calling attention to": [65535, 0], "settled with sid for calling attention to his": [65535, 0], "with sid for calling attention to his black": [65535, 0], "sid for calling attention to his black thread": [65535, 0], "for calling attention to his black thread and": [65535, 0], "calling attention to his black thread and getting": [65535, 0], "attention to his black thread and getting him": [65535, 0], "to his black thread and getting him into": [65535, 0], "his black thread and getting him into trouble": [65535, 0], "black thread and getting him into trouble tom": [65535, 0], "thread and getting him into trouble tom skirted": [65535, 0], "and getting him into trouble tom skirted the": [65535, 0], "getting him into trouble tom skirted the block": [65535, 0], "him into trouble tom skirted the block and": [65535, 0], "into trouble tom skirted the block and came": [65535, 0], "trouble tom skirted the block and came round": [65535, 0], "tom skirted the block and came round into": [65535, 0], "skirted the block and came round into a": [65535, 0], "the block and came round into a muddy": [65535, 0], "block and came round into a muddy alley": [65535, 0], "and came round into a muddy alley that": [65535, 0], "came round into a muddy alley that led": [65535, 0], "round into a muddy alley that led by": [65535, 0], "into a muddy alley that led by the": [65535, 0], "a muddy alley that led by the back": [65535, 0], "muddy alley that led by the back of": [65535, 0], "alley that led by the back of his": [65535, 0], "that led by the back of his aunt's": [65535, 0], "led by the back of his aunt's cowstable": [65535, 0], "by the back of his aunt's cowstable he": [65535, 0], "the back of his aunt's cowstable he presently": [65535, 0], "back of his aunt's cowstable he presently got": [65535, 0], "of his aunt's cowstable he presently got safely": [65535, 0], "his aunt's cowstable he presently got safely beyond": [65535, 0], "aunt's cowstable he presently got safely beyond the": [65535, 0], "cowstable he presently got safely beyond the reach": [65535, 0], "he presently got safely beyond the reach of": [65535, 0], "presently got safely beyond the reach of capture": [65535, 0], "got safely beyond the reach of capture and": [65535, 0], "safely beyond the reach of capture and punishment": [65535, 0], "beyond the reach of capture and punishment and": [65535, 0], "the reach of capture and punishment and hastened": [65535, 0], "reach of capture and punishment and hastened toward": [65535, 0], "of capture and punishment and hastened toward the": [65535, 0], "capture and punishment and hastened toward the public": [65535, 0], "and punishment and hastened toward the public square": [65535, 0], "punishment and hastened toward the public square of": [65535, 0], "and hastened toward the public square of the": [65535, 0], "hastened toward the public square of the village": [65535, 0], "toward the public square of the village where": [65535, 0], "the public square of the village where two": [65535, 0], "public square of the village where two military": [65535, 0], "square of the village where two military companies": [65535, 0], "of the village where two military companies of": [65535, 0], "the village where two military companies of boys": [65535, 0], "village where two military companies of boys had": [65535, 0], "where two military companies of boys had met": [65535, 0], "two military companies of boys had met for": [65535, 0], "military companies of boys had met for conflict": [65535, 0], "companies of boys had met for conflict according": [65535, 0], "of boys had met for conflict according to": [65535, 0], "boys had met for conflict according to previous": [65535, 0], "had met for conflict according to previous appointment": [65535, 0], "met for conflict according to previous appointment tom": [65535, 0], "for conflict according to previous appointment tom was": [65535, 0], "conflict according to previous appointment tom was general": [65535, 0], "according to previous appointment tom was general of": [65535, 0], "to previous appointment tom was general of one": [65535, 0], "previous appointment tom was general of one of": [65535, 0], "appointment tom was general of one of these": [65535, 0], "tom was general of one of these armies": [65535, 0], "was general of one of these armies joe": [65535, 0], "general of one of these armies joe harper": [65535, 0], "of one of these armies joe harper a": [65535, 0], "one of these armies joe harper a bosom": [65535, 0], "of these armies joe harper a bosom friend": [65535, 0], "these armies joe harper a bosom friend general": [65535, 0], "armies joe harper a bosom friend general of": [65535, 0], "joe harper a bosom friend general of the": [65535, 0], "harper a bosom friend general of the other": [65535, 0], "a bosom friend general of the other these": [65535, 0], "bosom friend general of the other these two": [65535, 0], "friend general of the other these two great": [65535, 0], "general of the other these two great commanders": [65535, 0], "of the other these two great commanders did": [65535, 0], "the other these two great commanders did not": [65535, 0], "other these two great commanders did not condescend": [65535, 0], "these two great commanders did not condescend to": [65535, 0], "two great commanders did not condescend to fight": [65535, 0], "great commanders did not condescend to fight in": [65535, 0], "commanders did not condescend to fight in person": [65535, 0], "did not condescend to fight in person that": [65535, 0], "not condescend to fight in person that being": [65535, 0], "condescend to fight in person that being better": [65535, 0], "to fight in person that being better suited": [65535, 0], "fight in person that being better suited to": [65535, 0], "in person that being better suited to the": [65535, 0], "person that being better suited to the still": [65535, 0], "that being better suited to the still smaller": [65535, 0], "being better suited to the still smaller fry": [65535, 0], "better suited to the still smaller fry but": [65535, 0], "suited to the still smaller fry but sat": [65535, 0], "to the still smaller fry but sat together": [65535, 0], "the still smaller fry but sat together on": [65535, 0], "still smaller fry but sat together on an": [65535, 0], "smaller fry but sat together on an eminence": [65535, 0], "fry but sat together on an eminence and": [65535, 0], "but sat together on an eminence and conducted": [65535, 0], "sat together on an eminence and conducted the": [65535, 0], "together on an eminence and conducted the field": [65535, 0], "on an eminence and conducted the field operations": [65535, 0], "an eminence and conducted the field operations by": [65535, 0], "eminence and conducted the field operations by orders": [65535, 0], "and conducted the field operations by orders delivered": [65535, 0], "conducted the field operations by orders delivered through": [65535, 0], "the field operations by orders delivered through aides": [65535, 0], "field operations by orders delivered through aides de": [65535, 0], "operations by orders delivered through aides de camp": [65535, 0], "by orders delivered through aides de camp tom's": [65535, 0], "orders delivered through aides de camp tom's army": [65535, 0], "delivered through aides de camp tom's army won": [65535, 0], "through aides de camp tom's army won a": [65535, 0], "aides de camp tom's army won a great": [65535, 0], "de camp tom's army won a great victory": [65535, 0], "camp tom's army won a great victory after": [65535, 0], "tom's army won a great victory after a": [65535, 0], "army won a great victory after a long": [65535, 0], "won a great victory after a long and": [65535, 0], "a great victory after a long and hard": [65535, 0], "great victory after a long and hard fought": [65535, 0], "victory after a long and hard fought battle": [65535, 0], "after a long and hard fought battle then": [65535, 0], "a long and hard fought battle then the": [65535, 0], "long and hard fought battle then the dead": [65535, 0], "and hard fought battle then the dead were": [65535, 0], "hard fought battle then the dead were counted": [65535, 0], "fought battle then the dead were counted prisoners": [65535, 0], "battle then the dead were counted prisoners exchanged": [65535, 0], "then the dead were counted prisoners exchanged the": [65535, 0], "the dead were counted prisoners exchanged the terms": [65535, 0], "dead were counted prisoners exchanged the terms of": [65535, 0], "were counted prisoners exchanged the terms of the": [65535, 0], "counted prisoners exchanged the terms of the next": [65535, 0], "prisoners exchanged the terms of the next disagreement": [65535, 0], "exchanged the terms of the next disagreement agreed": [65535, 0], "the terms of the next disagreement agreed upon": [65535, 0], "terms of the next disagreement agreed upon and": [65535, 0], "of the next disagreement agreed upon and the": [65535, 0], "the next disagreement agreed upon and the day": [65535, 0], "next disagreement agreed upon and the day for": [65535, 0], "disagreement agreed upon and the day for the": [65535, 0], "agreed upon and the day for the necessary": [65535, 0], "upon and the day for the necessary battle": [65535, 0], "and the day for the necessary battle appointed": [65535, 0], "the day for the necessary battle appointed after": [65535, 0], "day for the necessary battle appointed after which": [65535, 0], "for the necessary battle appointed after which the": [65535, 0], "the necessary battle appointed after which the armies": [65535, 0], "necessary battle appointed after which the armies fell": [65535, 0], "battle appointed after which the armies fell into": [65535, 0], "appointed after which the armies fell into line": [65535, 0], "after which the armies fell into line and": [65535, 0], "which the armies fell into line and marched": [65535, 0], "the armies fell into line and marched away": [65535, 0], "armies fell into line and marched away and": [65535, 0], "fell into line and marched away and tom": [65535, 0], "into line and marched away and tom turned": [65535, 0], "line and marched away and tom turned homeward": [65535, 0], "and marched away and tom turned homeward alone": [65535, 0], "marched away and tom turned homeward alone as": [65535, 0], "away and tom turned homeward alone as he": [65535, 0], "and tom turned homeward alone as he was": [65535, 0], "tom turned homeward alone as he was passing": [65535, 0], "turned homeward alone as he was passing by": [65535, 0], "homeward alone as he was passing by the": [65535, 0], "alone as he was passing by the house": [65535, 0], "as he was passing by the house where": [65535, 0], "he was passing by the house where jeff": [65535, 0], "was passing by the house where jeff thatcher": [65535, 0], "passing by the house where jeff thatcher lived": [65535, 0], "by the house where jeff thatcher lived he": [65535, 0], "the house where jeff thatcher lived he saw": [65535, 0], "house where jeff thatcher lived he saw a": [65535, 0], "where jeff thatcher lived he saw a new": [65535, 0], "jeff thatcher lived he saw a new girl": [65535, 0], "thatcher lived he saw a new girl in": [65535, 0], "lived he saw a new girl in the": [65535, 0], "he saw a new girl in the garden": [65535, 0], "saw a new girl in the garden a": [65535, 0], "a new girl in the garden a lovely": [65535, 0], "new girl in the garden a lovely little": [65535, 0], "girl in the garden a lovely little blue": [65535, 0], "in the garden a lovely little blue eyed": [65535, 0], "the garden a lovely little blue eyed creature": [65535, 0], "garden a lovely little blue eyed creature with": [65535, 0], "a lovely little blue eyed creature with yellow": [65535, 0], "lovely little blue eyed creature with yellow hair": [65535, 0], "little blue eyed creature with yellow hair plaited": [65535, 0], "blue eyed creature with yellow hair plaited into": [65535, 0], "eyed creature with yellow hair plaited into two": [65535, 0], "creature with yellow hair plaited into two long": [65535, 0], "with yellow hair plaited into two long tails": [65535, 0], "yellow hair plaited into two long tails white": [65535, 0], "hair plaited into two long tails white summer": [65535, 0], "plaited into two long tails white summer frock": [65535, 0], "into two long tails white summer frock and": [65535, 0], "two long tails white summer frock and embroidered": [65535, 0], "long tails white summer frock and embroidered pantalettes": [65535, 0], "tails white summer frock and embroidered pantalettes the": [65535, 0], "white summer frock and embroidered pantalettes the fresh": [65535, 0], "summer frock and embroidered pantalettes the fresh crowned": [65535, 0], "frock and embroidered pantalettes the fresh crowned hero": [65535, 0], "and embroidered pantalettes the fresh crowned hero fell": [65535, 0], "embroidered pantalettes the fresh crowned hero fell without": [65535, 0], "pantalettes the fresh crowned hero fell without firing": [65535, 0], "the fresh crowned hero fell without firing a": [65535, 0], "fresh crowned hero fell without firing a shot": [65535, 0], "crowned hero fell without firing a shot a": [65535, 0], "hero fell without firing a shot a certain": [65535, 0], "fell without firing a shot a certain amy": [65535, 0], "without firing a shot a certain amy lawrence": [65535, 0], "firing a shot a certain amy lawrence vanished": [65535, 0], "a shot a certain amy lawrence vanished out": [65535, 0], "shot a certain amy lawrence vanished out of": [65535, 0], "a certain amy lawrence vanished out of his": [65535, 0], "certain amy lawrence vanished out of his heart": [65535, 0], "amy lawrence vanished out of his heart and": [65535, 0], "lawrence vanished out of his heart and left": [65535, 0], "vanished out of his heart and left not": [65535, 0], "out of his heart and left not even": [65535, 0], "of his heart and left not even a": [65535, 0], "his heart and left not even a memory": [65535, 0], "heart and left not even a memory of": [65535, 0], "and left not even a memory of herself": [65535, 0], "left not even a memory of herself behind": [65535, 0], "not even a memory of herself behind he": [65535, 0], "even a memory of herself behind he had": [65535, 0], "a memory of herself behind he had thought": [65535, 0], "memory of herself behind he had thought he": [65535, 0], "of herself behind he had thought he loved": [65535, 0], "herself behind he had thought he loved her": [65535, 0], "behind he had thought he loved her to": [65535, 0], "he had thought he loved her to distraction": [65535, 0], "had thought he loved her to distraction he": [65535, 0], "thought he loved her to distraction he had": [65535, 0], "he loved her to distraction he had regarded": [65535, 0], "loved her to distraction he had regarded his": [65535, 0], "her to distraction he had regarded his passion": [65535, 0], "to distraction he had regarded his passion as": [65535, 0], "distraction he had regarded his passion as adoration": [65535, 0], "he had regarded his passion as adoration and": [65535, 0], "had regarded his passion as adoration and behold": [65535, 0], "regarded his passion as adoration and behold it": [65535, 0], "his passion as adoration and behold it was": [65535, 0], "passion as adoration and behold it was only": [65535, 0], "as adoration and behold it was only a": [65535, 0], "adoration and behold it was only a poor": [65535, 0], "and behold it was only a poor little": [65535, 0], "behold it was only a poor little evanescent": [65535, 0], "it was only a poor little evanescent partiality": [65535, 0], "was only a poor little evanescent partiality he": [65535, 0], "only a poor little evanescent partiality he had": [65535, 0], "a poor little evanescent partiality he had been": [65535, 0], "poor little evanescent partiality he had been months": [65535, 0], "little evanescent partiality he had been months winning": [65535, 0], "evanescent partiality he had been months winning her": [65535, 0], "partiality he had been months winning her she": [65535, 0], "he had been months winning her she had": [65535, 0], "had been months winning her she had confessed": [65535, 0], "been months winning her she had confessed hardly": [65535, 0], "months winning her she had confessed hardly a": [65535, 0], "winning her she had confessed hardly a week": [65535, 0], "her she had confessed hardly a week ago": [65535, 0], "she had confessed hardly a week ago he": [65535, 0], "had confessed hardly a week ago he had": [65535, 0], "confessed hardly a week ago he had been": [65535, 0], "hardly a week ago he had been the": [65535, 0], "a week ago he had been the happiest": [65535, 0], "week ago he had been the happiest and": [65535, 0], "ago he had been the happiest and the": [65535, 0], "he had been the happiest and the proudest": [65535, 0], "had been the happiest and the proudest boy": [65535, 0], "been the happiest and the proudest boy in": [65535, 0], "the happiest and the proudest boy in the": [65535, 0], "happiest and the proudest boy in the world": [65535, 0], "and the proudest boy in the world only": [65535, 0], "the proudest boy in the world only seven": [65535, 0], "proudest boy in the world only seven short": [65535, 0], "boy in the world only seven short days": [65535, 0], "in the world only seven short days and": [65535, 0], "the world only seven short days and here": [65535, 0], "world only seven short days and here in": [65535, 0], "only seven short days and here in one": [65535, 0], "seven short days and here in one instant": [65535, 0], "short days and here in one instant of": [65535, 0], "days and here in one instant of time": [65535, 0], "and here in one instant of time she": [65535, 0], "here in one instant of time she had": [65535, 0], "in one instant of time she had gone": [65535, 0], "one instant of time she had gone out": [65535, 0], "instant of time she had gone out of": [65535, 0], "of time she had gone out of his": [65535, 0], "time she had gone out of his heart": [65535, 0], "she had gone out of his heart like": [65535, 0], "had gone out of his heart like a": [65535, 0], "gone out of his heart like a casual": [65535, 0], "out of his heart like a casual stranger": [65535, 0], "of his heart like a casual stranger whose": [65535, 0], "his heart like a casual stranger whose visit": [65535, 0], "heart like a casual stranger whose visit is": [65535, 0], "like a casual stranger whose visit is done": [65535, 0], "a casual stranger whose visit is done he": [65535, 0], "casual stranger whose visit is done he worshipped": [65535, 0], "stranger whose visit is done he worshipped this": [65535, 0], "whose visit is done he worshipped this new": [65535, 0], "visit is done he worshipped this new angel": [65535, 0], "is done he worshipped this new angel with": [65535, 0], "done he worshipped this new angel with furtive": [65535, 0], "he worshipped this new angel with furtive eye": [65535, 0], "worshipped this new angel with furtive eye till": [65535, 0], "this new angel with furtive eye till he": [65535, 0], "new angel with furtive eye till he saw": [65535, 0], "angel with furtive eye till he saw that": [65535, 0], "with furtive eye till he saw that she": [65535, 0], "furtive eye till he saw that she had": [65535, 0], "eye till he saw that she had discovered": [65535, 0], "till he saw that she had discovered him": [65535, 0], "he saw that she had discovered him then": [65535, 0], "saw that she had discovered him then he": [65535, 0], "that she had discovered him then he pretended": [65535, 0], "she had discovered him then he pretended he": [65535, 0], "had discovered him then he pretended he did": [65535, 0], "discovered him then he pretended he did not": [65535, 0], "him then he pretended he did not know": [65535, 0], "then he pretended he did not know she": [65535, 0], "he pretended he did not know she was": [65535, 0], "pretended he did not know she was present": [65535, 0], "he did not know she was present and": [65535, 0], "did not know she was present and began": [65535, 0], "not know she was present and began to": [65535, 0], "know she was present and began to show": [65535, 0], "she was present and began to show off": [65535, 0], "was present and began to show off in": [65535, 0], "present and began to show off in all": [65535, 0], "and began to show off in all sorts": [65535, 0], "began to show off in all sorts of": [65535, 0], "to show off in all sorts of absurd": [65535, 0], "show off in all sorts of absurd boyish": [65535, 0], "off in all sorts of absurd boyish ways": [65535, 0], "in all sorts of absurd boyish ways in": [65535, 0], "all sorts of absurd boyish ways in order": [65535, 0], "sorts of absurd boyish ways in order to": [65535, 0], "of absurd boyish ways in order to win": [65535, 0], "absurd boyish ways in order to win her": [65535, 0], "boyish ways in order to win her admiration": [65535, 0], "ways in order to win her admiration he": [65535, 0], "in order to win her admiration he kept": [65535, 0], "order to win her admiration he kept up": [65535, 0], "to win her admiration he kept up this": [65535, 0], "win her admiration he kept up this grotesque": [65535, 0], "her admiration he kept up this grotesque foolishness": [65535, 0], "admiration he kept up this grotesque foolishness for": [65535, 0], "he kept up this grotesque foolishness for some": [65535, 0], "kept up this grotesque foolishness for some time": [65535, 0], "up this grotesque foolishness for some time but": [65535, 0], "this grotesque foolishness for some time but by": [65535, 0], "grotesque foolishness for some time but by and": [65535, 0], "foolishness for some time but by and by": [65535, 0], "for some time but by and by while": [65535, 0], "some time but by and by while he": [65535, 0], "time but by and by while he was": [65535, 0], "but by and by while he was in": [65535, 0], "by and by while he was in the": [65535, 0], "and by while he was in the midst": [65535, 0], "by while he was in the midst of": [65535, 0], "while he was in the midst of some": [65535, 0], "he was in the midst of some dangerous": [65535, 0], "was in the midst of some dangerous gymnastic": [65535, 0], "in the midst of some dangerous gymnastic performances": [65535, 0], "the midst of some dangerous gymnastic performances he": [65535, 0], "midst of some dangerous gymnastic performances he glanced": [65535, 0], "of some dangerous gymnastic performances he glanced aside": [65535, 0], "some dangerous gymnastic performances he glanced aside and": [65535, 0], "dangerous gymnastic performances he glanced aside and saw": [65535, 0], "gymnastic performances he glanced aside and saw that": [65535, 0], "performances he glanced aside and saw that the": [65535, 0], "he glanced aside and saw that the little": [65535, 0], "glanced aside and saw that the little girl": [65535, 0], "aside and saw that the little girl was": [65535, 0], "and saw that the little girl was wending": [65535, 0], "saw that the little girl was wending her": [65535, 0], "that the little girl was wending her way": [65535, 0], "the little girl was wending her way toward": [65535, 0], "little girl was wending her way toward the": [65535, 0], "girl was wending her way toward the house": [65535, 0], "was wending her way toward the house tom": [65535, 0], "wending her way toward the house tom came": [65535, 0], "her way toward the house tom came up": [65535, 0], "way toward the house tom came up to": [65535, 0], "toward the house tom came up to the": [65535, 0], "the house tom came up to the fence": [65535, 0], "house tom came up to the fence and": [65535, 0], "tom came up to the fence and leaned": [65535, 0], "came up to the fence and leaned on": [65535, 0], "up to the fence and leaned on it": [65535, 0], "to the fence and leaned on it grieving": [65535, 0], "the fence and leaned on it grieving and": [65535, 0], "fence and leaned on it grieving and hoping": [65535, 0], "and leaned on it grieving and hoping she": [65535, 0], "leaned on it grieving and hoping she would": [65535, 0], "on it grieving and hoping she would tarry": [65535, 0], "it grieving and hoping she would tarry yet": [65535, 0], "grieving and hoping she would tarry yet awhile": [65535, 0], "and hoping she would tarry yet awhile longer": [65535, 0], "hoping she would tarry yet awhile longer she": [65535, 0], "she would tarry yet awhile longer she halted": [65535, 0], "would tarry yet awhile longer she halted a": [65535, 0], "tarry yet awhile longer she halted a moment": [65535, 0], "yet awhile longer she halted a moment on": [65535, 0], "awhile longer she halted a moment on the": [65535, 0], "longer she halted a moment on the steps": [65535, 0], "she halted a moment on the steps and": [65535, 0], "halted a moment on the steps and then": [65535, 0], "a moment on the steps and then moved": [65535, 0], "moment on the steps and then moved toward": [65535, 0], "on the steps and then moved toward the": [65535, 0], "the steps and then moved toward the door": [65535, 0], "steps and then moved toward the door tom": [65535, 0], "and then moved toward the door tom heaved": [65535, 0], "then moved toward the door tom heaved a": [65535, 0], "moved toward the door tom heaved a great": [65535, 0], "toward the door tom heaved a great sigh": [65535, 0], "the door tom heaved a great sigh as": [65535, 0], "door tom heaved a great sigh as she": [65535, 0], "tom heaved a great sigh as she put": [65535, 0], "heaved a great sigh as she put her": [65535, 0], "a great sigh as she put her foot": [65535, 0], "great sigh as she put her foot on": [65535, 0], "sigh as she put her foot on the": [65535, 0], "as she put her foot on the threshold": [65535, 0], "she put her foot on the threshold but": [65535, 0], "put her foot on the threshold but his": [65535, 0], "her foot on the threshold but his face": [65535, 0], "foot on the threshold but his face lit": [65535, 0], "on the threshold but his face lit up": [65535, 0], "the threshold but his face lit up right": [65535, 0], "threshold but his face lit up right away": [65535, 0], "but his face lit up right away for": [65535, 0], "his face lit up right away for she": [65535, 0], "face lit up right away for she tossed": [65535, 0], "lit up right away for she tossed a": [65535, 0], "up right away for she tossed a pansy": [65535, 0], "right away for she tossed a pansy over": [65535, 0], "away for she tossed a pansy over the": [65535, 0], "for she tossed a pansy over the fence": [65535, 0], "she tossed a pansy over the fence a": [65535, 0], "tossed a pansy over the fence a moment": [65535, 0], "a pansy over the fence a moment before": [65535, 0], "pansy over the fence a moment before she": [65535, 0], "over the fence a moment before she disappeared": [65535, 0], "the fence a moment before she disappeared the": [65535, 0], "fence a moment before she disappeared the boy": [65535, 0], "a moment before she disappeared the boy ran": [65535, 0], "moment before she disappeared the boy ran around": [65535, 0], "before she disappeared the boy ran around and": [65535, 0], "she disappeared the boy ran around and stopped": [65535, 0], "disappeared the boy ran around and stopped within": [65535, 0], "the boy ran around and stopped within a": [65535, 0], "boy ran around and stopped within a foot": [65535, 0], "ran around and stopped within a foot or": [65535, 0], "around and stopped within a foot or two": [65535, 0], "and stopped within a foot or two of": [65535, 0], "stopped within a foot or two of the": [65535, 0], "within a foot or two of the flower": [65535, 0], "a foot or two of the flower and": [65535, 0], "foot or two of the flower and then": [65535, 0], "or two of the flower and then shaded": [65535, 0], "two of the flower and then shaded his": [65535, 0], "of the flower and then shaded his eyes": [65535, 0], "the flower and then shaded his eyes with": [65535, 0], "flower and then shaded his eyes with his": [65535, 0], "and then shaded his eyes with his hand": [65535, 0], "then shaded his eyes with his hand and": [65535, 0], "shaded his eyes with his hand and began": [65535, 0], "his eyes with his hand and began to": [65535, 0], "eyes with his hand and began to look": [65535, 0], "with his hand and began to look down": [65535, 0], "his hand and began to look down street": [65535, 0], "hand and began to look down street as": [65535, 0], "and began to look down street as if": [65535, 0], "began to look down street as if he": [65535, 0], "to look down street as if he had": [65535, 0], "look down street as if he had discovered": [65535, 0], "down street as if he had discovered something": [65535, 0], "street as if he had discovered something of": [65535, 0], "as if he had discovered something of interest": [65535, 0], "if he had discovered something of interest going": [65535, 0], "he had discovered something of interest going on": [65535, 0], "had discovered something of interest going on in": [65535, 0], "discovered something of interest going on in that": [65535, 0], "something of interest going on in that direction": [65535, 0], "of interest going on in that direction presently": [65535, 0], "interest going on in that direction presently he": [65535, 0], "going on in that direction presently he picked": [65535, 0], "on in that direction presently he picked up": [65535, 0], "in that direction presently he picked up a": [65535, 0], "that direction presently he picked up a straw": [65535, 0], "direction presently he picked up a straw and": [65535, 0], "presently he picked up a straw and began": [65535, 0], "he picked up a straw and began trying": [65535, 0], "picked up a straw and began trying to": [65535, 0], "up a straw and began trying to balance": [65535, 0], "a straw and began trying to balance it": [65535, 0], "straw and began trying to balance it on": [65535, 0], "and began trying to balance it on his": [65535, 0], "began trying to balance it on his nose": [65535, 0], "trying to balance it on his nose with": [65535, 0], "to balance it on his nose with his": [65535, 0], "balance it on his nose with his head": [65535, 0], "it on his nose with his head tilted": [65535, 0], "on his nose with his head tilted far": [65535, 0], "his nose with his head tilted far back": [65535, 0], "nose with his head tilted far back and": [65535, 0], "with his head tilted far back and as": [65535, 0], "his head tilted far back and as he": [65535, 0], "head tilted far back and as he moved": [65535, 0], "tilted far back and as he moved from": [65535, 0], "far back and as he moved from side": [65535, 0], "back and as he moved from side to": [65535, 0], "and as he moved from side to side": [65535, 0], "as he moved from side to side in": [65535, 0], "he moved from side to side in his": [65535, 0], "moved from side to side in his efforts": [65535, 0], "from side to side in his efforts he": [65535, 0], "side to side in his efforts he edged": [65535, 0], "to side in his efforts he edged nearer": [65535, 0], "side in his efforts he edged nearer and": [65535, 0], "in his efforts he edged nearer and nearer": [65535, 0], "his efforts he edged nearer and nearer toward": [65535, 0], "efforts he edged nearer and nearer toward the": [65535, 0], "he edged nearer and nearer toward the pansy": [65535, 0], "edged nearer and nearer toward the pansy finally": [65535, 0], "nearer and nearer toward the pansy finally his": [65535, 0], "and nearer toward the pansy finally his bare": [65535, 0], "nearer toward the pansy finally his bare foot": [65535, 0], "toward the pansy finally his bare foot rested": [65535, 0], "the pansy finally his bare foot rested upon": [65535, 0], "pansy finally his bare foot rested upon it": [65535, 0], "finally his bare foot rested upon it his": [65535, 0], "his bare foot rested upon it his pliant": [65535, 0], "bare foot rested upon it his pliant toes": [65535, 0], "foot rested upon it his pliant toes closed": [65535, 0], "rested upon it his pliant toes closed upon": [65535, 0], "upon it his pliant toes closed upon it": [65535, 0], "it his pliant toes closed upon it and": [65535, 0], "his pliant toes closed upon it and he": [65535, 0], "pliant toes closed upon it and he hopped": [65535, 0], "toes closed upon it and he hopped away": [65535, 0], "closed upon it and he hopped away with": [65535, 0], "upon it and he hopped away with the": [65535, 0], "it and he hopped away with the treasure": [65535, 0], "and he hopped away with the treasure and": [65535, 0], "he hopped away with the treasure and disappeared": [65535, 0], "hopped away with the treasure and disappeared round": [65535, 0], "away with the treasure and disappeared round the": [65535, 0], "with the treasure and disappeared round the corner": [65535, 0], "the treasure and disappeared round the corner but": [65535, 0], "treasure and disappeared round the corner but only": [65535, 0], "and disappeared round the corner but only for": [65535, 0], "disappeared round the corner but only for a": [65535, 0], "round the corner but only for a minute": [65535, 0], "the corner but only for a minute only": [65535, 0], "corner but only for a minute only while": [65535, 0], "but only for a minute only while he": [65535, 0], "only for a minute only while he could": [65535, 0], "for a minute only while he could button": [65535, 0], "a minute only while he could button the": [65535, 0], "minute only while he could button the flower": [65535, 0], "only while he could button the flower inside": [65535, 0], "while he could button the flower inside his": [65535, 0], "he could button the flower inside his jacket": [65535, 0], "could button the flower inside his jacket next": [65535, 0], "button the flower inside his jacket next his": [65535, 0], "the flower inside his jacket next his heart": [65535, 0], "flower inside his jacket next his heart or": [65535, 0], "inside his jacket next his heart or next": [65535, 0], "his jacket next his heart or next his": [65535, 0], "jacket next his heart or next his stomach": [65535, 0], "next his heart or next his stomach possibly": [65535, 0], "his heart or next his stomach possibly for": [65535, 0], "heart or next his stomach possibly for he": [65535, 0], "or next his stomach possibly for he was": [65535, 0], "next his stomach possibly for he was not": [65535, 0], "his stomach possibly for he was not much": [65535, 0], "stomach possibly for he was not much posted": [65535, 0], "possibly for he was not much posted in": [65535, 0], "for he was not much posted in anatomy": [65535, 0], "he was not much posted in anatomy and": [65535, 0], "was not much posted in anatomy and not": [65535, 0], "not much posted in anatomy and not hypercritical": [65535, 0], "much posted in anatomy and not hypercritical anyway": [65535, 0], "posted in anatomy and not hypercritical anyway he": [65535, 0], "in anatomy and not hypercritical anyway he returned": [65535, 0], "anatomy and not hypercritical anyway he returned now": [65535, 0], "and not hypercritical anyway he returned now and": [65535, 0], "not hypercritical anyway he returned now and hung": [65535, 0], "hypercritical anyway he returned now and hung about": [65535, 0], "anyway he returned now and hung about the": [65535, 0], "he returned now and hung about the fence": [65535, 0], "returned now and hung about the fence till": [65535, 0], "now and hung about the fence till nightfall": [65535, 0], "and hung about the fence till nightfall showing": [65535, 0], "hung about the fence till nightfall showing off": [65535, 0], "about the fence till nightfall showing off as": [65535, 0], "the fence till nightfall showing off as before": [65535, 0], "fence till nightfall showing off as before but": [65535, 0], "till nightfall showing off as before but the": [65535, 0], "nightfall showing off as before but the girl": [65535, 0], "showing off as before but the girl never": [65535, 0], "off as before but the girl never exhibited": [65535, 0], "as before but the girl never exhibited herself": [65535, 0], "before but the girl never exhibited herself again": [65535, 0], "but the girl never exhibited herself again though": [65535, 0], "the girl never exhibited herself again though tom": [65535, 0], "girl never exhibited herself again though tom comforted": [65535, 0], "never exhibited herself again though tom comforted himself": [65535, 0], "exhibited herself again though tom comforted himself a": [65535, 0], "herself again though tom comforted himself a little": [65535, 0], "again though tom comforted himself a little with": [65535, 0], "though tom comforted himself a little with the": [65535, 0], "tom comforted himself a little with the hope": [65535, 0], "comforted himself a little with the hope that": [65535, 0], "himself a little with the hope that she": [65535, 0], "a little with the hope that she had": [65535, 0], "little with the hope that she had been": [65535, 0], "with the hope that she had been near": [65535, 0], "the hope that she had been near some": [65535, 0], "hope that she had been near some window": [65535, 0], "that she had been near some window meantime": [65535, 0], "she had been near some window meantime and": [65535, 0], "had been near some window meantime and been": [65535, 0], "been near some window meantime and been aware": [65535, 0], "near some window meantime and been aware of": [65535, 0], "some window meantime and been aware of his": [65535, 0], "window meantime and been aware of his attentions": [65535, 0], "meantime and been aware of his attentions finally": [65535, 0], "and been aware of his attentions finally he": [65535, 0], "been aware of his attentions finally he strode": [65535, 0], "aware of his attentions finally he strode home": [65535, 0], "of his attentions finally he strode home reluctantly": [65535, 0], "his attentions finally he strode home reluctantly with": [65535, 0], "attentions finally he strode home reluctantly with his": [65535, 0], "finally he strode home reluctantly with his poor": [65535, 0], "he strode home reluctantly with his poor head": [65535, 0], "strode home reluctantly with his poor head full": [65535, 0], "home reluctantly with his poor head full of": [65535, 0], "reluctantly with his poor head full of visions": [65535, 0], "with his poor head full of visions all": [65535, 0], "his poor head full of visions all through": [65535, 0], "poor head full of visions all through supper": [65535, 0], "head full of visions all through supper his": [65535, 0], "full of visions all through supper his spirits": [65535, 0], "of visions all through supper his spirits were": [65535, 0], "visions all through supper his spirits were so": [65535, 0], "all through supper his spirits were so high": [65535, 0], "through supper his spirits were so high that": [65535, 0], "supper his spirits were so high that his": [65535, 0], "his spirits were so high that his aunt": [65535, 0], "spirits were so high that his aunt wondered": [65535, 0], "were so high that his aunt wondered what": [65535, 0], "so high that his aunt wondered what had": [65535, 0], "high that his aunt wondered what had got": [65535, 0], "that his aunt wondered what had got into": [65535, 0], "his aunt wondered what had got into the": [65535, 0], "aunt wondered what had got into the child": [65535, 0], "wondered what had got into the child he": [65535, 0], "what had got into the child he took": [65535, 0], "had got into the child he took a": [65535, 0], "got into the child he took a good": [65535, 0], "into the child he took a good scolding": [65535, 0], "the child he took a good scolding about": [65535, 0], "child he took a good scolding about clodding": [65535, 0], "he took a good scolding about clodding sid": [65535, 0], "took a good scolding about clodding sid and": [65535, 0], "a good scolding about clodding sid and did": [65535, 0], "good scolding about clodding sid and did not": [65535, 0], "scolding about clodding sid and did not seem": [65535, 0], "about clodding sid and did not seem to": [65535, 0], "clodding sid and did not seem to mind": [65535, 0], "sid and did not seem to mind it": [65535, 0], "and did not seem to mind it in": [65535, 0], "did not seem to mind it in the": [65535, 0], "not seem to mind it in the least": [65535, 0], "seem to mind it in the least he": [65535, 0], "to mind it in the least he tried": [65535, 0], "mind it in the least he tried to": [65535, 0], "it in the least he tried to steal": [65535, 0], "in the least he tried to steal sugar": [65535, 0], "the least he tried to steal sugar under": [65535, 0], "least he tried to steal sugar under his": [65535, 0], "he tried to steal sugar under his aunt's": [65535, 0], "tried to steal sugar under his aunt's very": [65535, 0], "to steal sugar under his aunt's very nose": [65535, 0], "steal sugar under his aunt's very nose and": [65535, 0], "sugar under his aunt's very nose and got": [65535, 0], "under his aunt's very nose and got his": [65535, 0], "his aunt's very nose and got his knuckles": [65535, 0], "aunt's very nose and got his knuckles rapped": [65535, 0], "very nose and got his knuckles rapped for": [65535, 0], "nose and got his knuckles rapped for it": [65535, 0], "and got his knuckles rapped for it he": [65535, 0], "got his knuckles rapped for it he said": [65535, 0], "his knuckles rapped for it he said aunt": [65535, 0], "knuckles rapped for it he said aunt you": [65535, 0], "rapped for it he said aunt you don't": [65535, 0], "for it he said aunt you don't whack": [65535, 0], "it he said aunt you don't whack sid": [65535, 0], "he said aunt you don't whack sid when": [65535, 0], "said aunt you don't whack sid when he": [65535, 0], "aunt you don't whack sid when he takes": [65535, 0], "you don't whack sid when he takes it": [65535, 0], "don't whack sid when he takes it well": [65535, 0], "whack sid when he takes it well sid": [65535, 0], "sid when he takes it well sid don't": [65535, 0], "when he takes it well sid don't torment": [65535, 0], "he takes it well sid don't torment a": [65535, 0], "takes it well sid don't torment a body": [65535, 0], "it well sid don't torment a body the": [65535, 0], "well sid don't torment a body the way": [65535, 0], "sid don't torment a body the way you": [65535, 0], "don't torment a body the way you do": [65535, 0], "torment a body the way you do you'd": [65535, 0], "a body the way you do you'd be": [65535, 0], "body the way you do you'd be always": [65535, 0], "the way you do you'd be always into": [65535, 0], "way you do you'd be always into that": [65535, 0], "you do you'd be always into that sugar": [65535, 0], "do you'd be always into that sugar if": [65535, 0], "you'd be always into that sugar if i": [65535, 0], "be always into that sugar if i warn't": [65535, 0], "always into that sugar if i warn't watching": [65535, 0], "into that sugar if i warn't watching you": [65535, 0], "that sugar if i warn't watching you presently": [65535, 0], "sugar if i warn't watching you presently she": [65535, 0], "if i warn't watching you presently she stepped": [65535, 0], "i warn't watching you presently she stepped into": [65535, 0], "warn't watching you presently she stepped into the": [65535, 0], "watching you presently she stepped into the kitchen": [65535, 0], "you presently she stepped into the kitchen and": [65535, 0], "presently she stepped into the kitchen and sid": [65535, 0], "she stepped into the kitchen and sid happy": [65535, 0], "stepped into the kitchen and sid happy in": [65535, 0], "into the kitchen and sid happy in his": [65535, 0], "the kitchen and sid happy in his immunity": [65535, 0], "kitchen and sid happy in his immunity reached": [65535, 0], "and sid happy in his immunity reached for": [65535, 0], "sid happy in his immunity reached for the": [65535, 0], "happy in his immunity reached for the sugar": [65535, 0], "in his immunity reached for the sugar bowl": [65535, 0], "his immunity reached for the sugar bowl a": [65535, 0], "immunity reached for the sugar bowl a sort": [65535, 0], "reached for the sugar bowl a sort of": [65535, 0], "for the sugar bowl a sort of glorying": [65535, 0], "the sugar bowl a sort of glorying over": [65535, 0], "sugar bowl a sort of glorying over tom": [65535, 0], "bowl a sort of glorying over tom which": [65535, 0], "a sort of glorying over tom which was": [65535, 0], "sort of glorying over tom which was well": [65535, 0], "of glorying over tom which was well nigh": [65535, 0], "glorying over tom which was well nigh unbearable": [65535, 0], "over tom which was well nigh unbearable but": [65535, 0], "tom which was well nigh unbearable but sid's": [65535, 0], "which was well nigh unbearable but sid's fingers": [65535, 0], "was well nigh unbearable but sid's fingers slipped": [65535, 0], "well nigh unbearable but sid's fingers slipped and": [65535, 0], "nigh unbearable but sid's fingers slipped and the": [65535, 0], "unbearable but sid's fingers slipped and the bowl": [65535, 0], "but sid's fingers slipped and the bowl dropped": [65535, 0], "sid's fingers slipped and the bowl dropped and": [65535, 0], "fingers slipped and the bowl dropped and broke": [65535, 0], "slipped and the bowl dropped and broke tom": [65535, 0], "and the bowl dropped and broke tom was": [65535, 0], "the bowl dropped and broke tom was in": [65535, 0], "bowl dropped and broke tom was in ecstasies": [65535, 0], "dropped and broke tom was in ecstasies in": [65535, 0], "and broke tom was in ecstasies in such": [65535, 0], "broke tom was in ecstasies in such ecstasies": [65535, 0], "tom was in ecstasies in such ecstasies that": [65535, 0], "was in ecstasies in such ecstasies that he": [65535, 0], "in ecstasies in such ecstasies that he even": [65535, 0], "ecstasies in such ecstasies that he even controlled": [65535, 0], "in such ecstasies that he even controlled his": [65535, 0], "such ecstasies that he even controlled his tongue": [65535, 0], "ecstasies that he even controlled his tongue and": [65535, 0], "that he even controlled his tongue and was": [65535, 0], "he even controlled his tongue and was silent": [65535, 0], "even controlled his tongue and was silent he": [65535, 0], "controlled his tongue and was silent he said": [65535, 0], "his tongue and was silent he said to": [65535, 0], "tongue and was silent he said to himself": [65535, 0], "and was silent he said to himself that": [65535, 0], "was silent he said to himself that he": [65535, 0], "silent he said to himself that he would": [65535, 0], "he said to himself that he would not": [65535, 0], "said to himself that he would not speak": [65535, 0], "to himself that he would not speak a": [65535, 0], "himself that he would not speak a word": [65535, 0], "that he would not speak a word even": [65535, 0], "he would not speak a word even when": [65535, 0], "would not speak a word even when his": [65535, 0], "not speak a word even when his aunt": [65535, 0], "speak a word even when his aunt came": [65535, 0], "a word even when his aunt came in": [65535, 0], "word even when his aunt came in but": [65535, 0], "even when his aunt came in but would": [65535, 0], "when his aunt came in but would sit": [65535, 0], "his aunt came in but would sit perfectly": [65535, 0], "aunt came in but would sit perfectly still": [65535, 0], "came in but would sit perfectly still till": [65535, 0], "in but would sit perfectly still till she": [65535, 0], "but would sit perfectly still till she asked": [65535, 0], "would sit perfectly still till she asked who": [65535, 0], "sit perfectly still till she asked who did": [65535, 0], "perfectly still till she asked who did the": [65535, 0], "still till she asked who did the mischief": [65535, 0], "till she asked who did the mischief and": [65535, 0], "she asked who did the mischief and then": [65535, 0], "asked who did the mischief and then he": [65535, 0], "who did the mischief and then he would": [65535, 0], "did the mischief and then he would tell": [65535, 0], "the mischief and then he would tell and": [65535, 0], "mischief and then he would tell and there": [65535, 0], "and then he would tell and there would": [65535, 0], "then he would tell and there would be": [65535, 0], "he would tell and there would be nothing": [65535, 0], "would tell and there would be nothing so": [65535, 0], "tell and there would be nothing so good": [65535, 0], "and there would be nothing so good in": [65535, 0], "there would be nothing so good in the": [65535, 0], "would be nothing so good in the world": [65535, 0], "be nothing so good in the world as": [65535, 0], "nothing so good in the world as to": [65535, 0], "so good in the world as to see": [65535, 0], "good in the world as to see that": [65535, 0], "in the world as to see that pet": [65535, 0], "the world as to see that pet model": [65535, 0], "world as to see that pet model catch": [65535, 0], "as to see that pet model catch it": [65535, 0], "to see that pet model catch it he": [65535, 0], "see that pet model catch it he was": [65535, 0], "that pet model catch it he was so": [65535, 0], "pet model catch it he was so brimful": [65535, 0], "model catch it he was so brimful of": [65535, 0], "catch it he was so brimful of exultation": [65535, 0], "it he was so brimful of exultation that": [65535, 0], "he was so brimful of exultation that he": [65535, 0], "was so brimful of exultation that he could": [65535, 0], "so brimful of exultation that he could hardly": [65535, 0], "brimful of exultation that he could hardly hold": [65535, 0], "of exultation that he could hardly hold himself": [65535, 0], "exultation that he could hardly hold himself when": [65535, 0], "that he could hardly hold himself when the": [65535, 0], "he could hardly hold himself when the old": [65535, 0], "could hardly hold himself when the old lady": [65535, 0], "hardly hold himself when the old lady came": [65535, 0], "hold himself when the old lady came back": [65535, 0], "himself when the old lady came back and": [65535, 0], "when the old lady came back and stood": [65535, 0], "the old lady came back and stood above": [65535, 0], "old lady came back and stood above the": [65535, 0], "lady came back and stood above the wreck": [65535, 0], "came back and stood above the wreck discharging": [65535, 0], "back and stood above the wreck discharging lightnings": [65535, 0], "and stood above the wreck discharging lightnings of": [65535, 0], "stood above the wreck discharging lightnings of wrath": [65535, 0], "above the wreck discharging lightnings of wrath from": [65535, 0], "the wreck discharging lightnings of wrath from over": [65535, 0], "wreck discharging lightnings of wrath from over her": [65535, 0], "discharging lightnings of wrath from over her spectacles": [65535, 0], "lightnings of wrath from over her spectacles he": [65535, 0], "of wrath from over her spectacles he said": [65535, 0], "wrath from over her spectacles he said to": [65535, 0], "from over her spectacles he said to himself": [65535, 0], "over her spectacles he said to himself now": [65535, 0], "her spectacles he said to himself now it's": [65535, 0], "spectacles he said to himself now it's coming": [65535, 0], "he said to himself now it's coming and": [65535, 0], "said to himself now it's coming and the": [65535, 0], "to himself now it's coming and the next": [65535, 0], "himself now it's coming and the next instant": [65535, 0], "now it's coming and the next instant he": [65535, 0], "it's coming and the next instant he was": [65535, 0], "coming and the next instant he was sprawling": [65535, 0], "and the next instant he was sprawling on": [65535, 0], "the next instant he was sprawling on the": [65535, 0], "next instant he was sprawling on the floor": [65535, 0], "instant he was sprawling on the floor the": [65535, 0], "he was sprawling on the floor the potent": [65535, 0], "was sprawling on the floor the potent palm": [65535, 0], "sprawling on the floor the potent palm was": [65535, 0], "on the floor the potent palm was uplifted": [65535, 0], "the floor the potent palm was uplifted to": [65535, 0], "floor the potent palm was uplifted to strike": [65535, 0], "the potent palm was uplifted to strike again": [65535, 0], "potent palm was uplifted to strike again when": [65535, 0], "palm was uplifted to strike again when tom": [65535, 0], "was uplifted to strike again when tom cried": [65535, 0], "uplifted to strike again when tom cried out": [65535, 0], "to strike again when tom cried out hold": [65535, 0], "strike again when tom cried out hold on": [65535, 0], "again when tom cried out hold on now": [65535, 0], "when tom cried out hold on now what": [65535, 0], "tom cried out hold on now what 'er": [65535, 0], "cried out hold on now what 'er you": [65535, 0], "out hold on now what 'er you belting": [65535, 0], "hold on now what 'er you belting me": [65535, 0], "on now what 'er you belting me for": [65535, 0], "now what 'er you belting me for sid": [65535, 0], "what 'er you belting me for sid broke": [65535, 0], "'er you belting me for sid broke it": [65535, 0], "you belting me for sid broke it aunt": [65535, 0], "belting me for sid broke it aunt polly": [65535, 0], "me for sid broke it aunt polly paused": [65535, 0], "for sid broke it aunt polly paused perplexed": [65535, 0], "sid broke it aunt polly paused perplexed and": [65535, 0], "broke it aunt polly paused perplexed and tom": [65535, 0], "it aunt polly paused perplexed and tom looked": [65535, 0], "aunt polly paused perplexed and tom looked for": [65535, 0], "polly paused perplexed and tom looked for healing": [65535, 0], "paused perplexed and tom looked for healing pity": [65535, 0], "perplexed and tom looked for healing pity but": [65535, 0], "and tom looked for healing pity but when": [65535, 0], "tom looked for healing pity but when she": [65535, 0], "looked for healing pity but when she got": [65535, 0], "for healing pity but when she got her": [65535, 0], "healing pity but when she got her tongue": [65535, 0], "pity but when she got her tongue again": [65535, 0], "but when she got her tongue again she": [65535, 0], "when she got her tongue again she only": [65535, 0], "she got her tongue again she only said": [65535, 0], "got her tongue again she only said umf": [65535, 0], "her tongue again she only said umf well": [65535, 0], "tongue again she only said umf well you": [65535, 0], "again she only said umf well you didn't": [65535, 0], "she only said umf well you didn't get": [65535, 0], "only said umf well you didn't get a": [65535, 0], "said umf well you didn't get a lick": [65535, 0], "umf well you didn't get a lick amiss": [65535, 0], "well you didn't get a lick amiss i": [65535, 0], "you didn't get a lick amiss i reckon": [65535, 0], "didn't get a lick amiss i reckon you": [65535, 0], "get a lick amiss i reckon you been": [65535, 0], "a lick amiss i reckon you been into": [65535, 0], "lick amiss i reckon you been into some": [65535, 0], "amiss i reckon you been into some other": [65535, 0], "i reckon you been into some other audacious": [65535, 0], "reckon you been into some other audacious mischief": [65535, 0], "you been into some other audacious mischief when": [65535, 0], "been into some other audacious mischief when i": [65535, 0], "into some other audacious mischief when i wasn't": [65535, 0], "some other audacious mischief when i wasn't around": [65535, 0], "other audacious mischief when i wasn't around like": [65535, 0], "audacious mischief when i wasn't around like enough": [65535, 0], "mischief when i wasn't around like enough then": [65535, 0], "when i wasn't around like enough then her": [65535, 0], "i wasn't around like enough then her conscience": [65535, 0], "wasn't around like enough then her conscience reproached": [65535, 0], "around like enough then her conscience reproached her": [65535, 0], "like enough then her conscience reproached her and": [65535, 0], "enough then her conscience reproached her and she": [65535, 0], "then her conscience reproached her and she yearned": [65535, 0], "her conscience reproached her and she yearned to": [65535, 0], "conscience reproached her and she yearned to say": [65535, 0], "reproached her and she yearned to say something": [65535, 0], "her and she yearned to say something kind": [65535, 0], "and she yearned to say something kind and": [65535, 0], "she yearned to say something kind and loving": [65535, 0], "yearned to say something kind and loving but": [65535, 0], "to say something kind and loving but she": [65535, 0], "say something kind and loving but she judged": [65535, 0], "something kind and loving but she judged that": [65535, 0], "kind and loving but she judged that this": [65535, 0], "and loving but she judged that this would": [65535, 0], "loving but she judged that this would be": [65535, 0], "but she judged that this would be construed": [65535, 0], "she judged that this would be construed into": [65535, 0], "judged that this would be construed into a": [65535, 0], "that this would be construed into a confession": [65535, 0], "this would be construed into a confession that": [65535, 0], "would be construed into a confession that she": [65535, 0], "be construed into a confession that she had": [65535, 0], "construed into a confession that she had been": [65535, 0], "into a confession that she had been in": [65535, 0], "a confession that she had been in the": [65535, 0], "confession that she had been in the wrong": [65535, 0], "that she had been in the wrong and": [65535, 0], "she had been in the wrong and discipline": [65535, 0], "had been in the wrong and discipline forbade": [65535, 0], "been in the wrong and discipline forbade that": [65535, 0], "in the wrong and discipline forbade that so": [65535, 0], "the wrong and discipline forbade that so she": [65535, 0], "wrong and discipline forbade that so she kept": [65535, 0], "and discipline forbade that so she kept silence": [65535, 0], "discipline forbade that so she kept silence and": [65535, 0], "forbade that so she kept silence and went": [65535, 0], "that so she kept silence and went about": [65535, 0], "so she kept silence and went about her": [65535, 0], "she kept silence and went about her affairs": [65535, 0], "kept silence and went about her affairs with": [65535, 0], "silence and went about her affairs with a": [65535, 0], "and went about her affairs with a troubled": [65535, 0], "went about her affairs with a troubled heart": [65535, 0], "about her affairs with a troubled heart tom": [65535, 0], "her affairs with a troubled heart tom sulked": [65535, 0], "affairs with a troubled heart tom sulked in": [65535, 0], "with a troubled heart tom sulked in a": [65535, 0], "a troubled heart tom sulked in a corner": [65535, 0], "troubled heart tom sulked in a corner and": [65535, 0], "heart tom sulked in a corner and exalted": [65535, 0], "tom sulked in a corner and exalted his": [65535, 0], "sulked in a corner and exalted his woes": [65535, 0], "in a corner and exalted his woes he": [65535, 0], "a corner and exalted his woes he knew": [65535, 0], "corner and exalted his woes he knew that": [65535, 0], "and exalted his woes he knew that in": [65535, 0], "exalted his woes he knew that in her": [65535, 0], "his woes he knew that in her heart": [65535, 0], "woes he knew that in her heart his": [65535, 0], "he knew that in her heart his aunt": [65535, 0], "knew that in her heart his aunt was": [65535, 0], "that in her heart his aunt was on": [65535, 0], "in her heart his aunt was on her": [65535, 0], "her heart his aunt was on her knees": [65535, 0], "heart his aunt was on her knees to": [65535, 0], "his aunt was on her knees to him": [65535, 0], "aunt was on her knees to him and": [65535, 0], "was on her knees to him and he": [65535, 0], "on her knees to him and he was": [65535, 0], "her knees to him and he was morosely": [65535, 0], "knees to him and he was morosely gratified": [65535, 0], "to him and he was morosely gratified by": [65535, 0], "him and he was morosely gratified by the": [65535, 0], "and he was morosely gratified by the consciousness": [65535, 0], "he was morosely gratified by the consciousness of": [65535, 0], "was morosely gratified by the consciousness of it": [65535, 0], "morosely gratified by the consciousness of it he": [65535, 0], "gratified by the consciousness of it he would": [65535, 0], "by the consciousness of it he would hang": [65535, 0], "the consciousness of it he would hang out": [65535, 0], "consciousness of it he would hang out no": [65535, 0], "of it he would hang out no signals": [65535, 0], "it he would hang out no signals he": [65535, 0], "he would hang out no signals he would": [65535, 0], "would hang out no signals he would take": [65535, 0], "hang out no signals he would take notice": [65535, 0], "out no signals he would take notice of": [65535, 0], "no signals he would take notice of none": [65535, 0], "signals he would take notice of none he": [65535, 0], "he would take notice of none he knew": [65535, 0], "would take notice of none he knew that": [65535, 0], "take notice of none he knew that a": [65535, 0], "notice of none he knew that a yearning": [65535, 0], "of none he knew that a yearning glance": [65535, 0], "none he knew that a yearning glance fell": [65535, 0], "he knew that a yearning glance fell upon": [65535, 0], "knew that a yearning glance fell upon him": [65535, 0], "that a yearning glance fell upon him now": [65535, 0], "a yearning glance fell upon him now and": [65535, 0], "yearning glance fell upon him now and then": [65535, 0], "glance fell upon him now and then through": [65535, 0], "fell upon him now and then through a": [65535, 0], "upon him now and then through a film": [65535, 0], "him now and then through a film of": [65535, 0], "now and then through a film of tears": [65535, 0], "and then through a film of tears but": [65535, 0], "then through a film of tears but he": [65535, 0], "through a film of tears but he refused": [65535, 0], "a film of tears but he refused recognition": [65535, 0], "film of tears but he refused recognition of": [65535, 0], "of tears but he refused recognition of it": [65535, 0], "tears but he refused recognition of it he": [65535, 0], "but he refused recognition of it he pictured": [65535, 0], "he refused recognition of it he pictured himself": [65535, 0], "refused recognition of it he pictured himself lying": [65535, 0], "recognition of it he pictured himself lying sick": [65535, 0], "of it he pictured himself lying sick unto": [65535, 0], "it he pictured himself lying sick unto death": [65535, 0], "he pictured himself lying sick unto death and": [65535, 0], "pictured himself lying sick unto death and his": [65535, 0], "himself lying sick unto death and his aunt": [65535, 0], "lying sick unto death and his aunt bending": [65535, 0], "sick unto death and his aunt bending over": [65535, 0], "unto death and his aunt bending over him": [65535, 0], "death and his aunt bending over him beseeching": [65535, 0], "and his aunt bending over him beseeching one": [65535, 0], "his aunt bending over him beseeching one little": [65535, 0], "aunt bending over him beseeching one little forgiving": [65535, 0], "bending over him beseeching one little forgiving word": [65535, 0], "over him beseeching one little forgiving word but": [65535, 0], "him beseeching one little forgiving word but he": [65535, 0], "beseeching one little forgiving word but he would": [65535, 0], "one little forgiving word but he would turn": [65535, 0], "little forgiving word but he would turn his": [65535, 0], "forgiving word but he would turn his face": [65535, 0], "word but he would turn his face to": [65535, 0], "but he would turn his face to the": [65535, 0], "he would turn his face to the wall": [65535, 0], "would turn his face to the wall and": [65535, 0], "turn his face to the wall and die": [65535, 0], "his face to the wall and die with": [65535, 0], "face to the wall and die with that": [65535, 0], "to the wall and die with that word": [65535, 0], "the wall and die with that word unsaid": [65535, 0], "wall and die with that word unsaid ah": [65535, 0], "and die with that word unsaid ah how": [65535, 0], "die with that word unsaid ah how would": [65535, 0], "with that word unsaid ah how would she": [65535, 0], "that word unsaid ah how would she feel": [65535, 0], "word unsaid ah how would she feel then": [65535, 0], "unsaid ah how would she feel then and": [65535, 0], "ah how would she feel then and he": [65535, 0], "how would she feel then and he pictured": [65535, 0], "would she feel then and he pictured himself": [65535, 0], "she feel then and he pictured himself brought": [65535, 0], "feel then and he pictured himself brought home": [65535, 0], "then and he pictured himself brought home from": [65535, 0], "and he pictured himself brought home from the": [65535, 0], "he pictured himself brought home from the river": [65535, 0], "pictured himself brought home from the river dead": [65535, 0], "himself brought home from the river dead with": [65535, 0], "brought home from the river dead with his": [65535, 0], "home from the river dead with his curls": [65535, 0], "from the river dead with his curls all": [65535, 0], "the river dead with his curls all wet": [65535, 0], "river dead with his curls all wet and": [65535, 0], "dead with his curls all wet and his": [65535, 0], "with his curls all wet and his sore": [65535, 0], "his curls all wet and his sore heart": [65535, 0], "curls all wet and his sore heart at": [65535, 0], "all wet and his sore heart at rest": [65535, 0], "wet and his sore heart at rest how": [65535, 0], "and his sore heart at rest how she": [65535, 0], "his sore heart at rest how she would": [65535, 0], "sore heart at rest how she would throw": [65535, 0], "heart at rest how she would throw herself": [65535, 0], "at rest how she would throw herself upon": [65535, 0], "rest how she would throw herself upon him": [65535, 0], "how she would throw herself upon him and": [65535, 0], "she would throw herself upon him and how": [65535, 0], "would throw herself upon him and how her": [65535, 0], "throw herself upon him and how her tears": [65535, 0], "herself upon him and how her tears would": [65535, 0], "upon him and how her tears would fall": [65535, 0], "him and how her tears would fall like": [65535, 0], "and how her tears would fall like rain": [65535, 0], "how her tears would fall like rain and": [65535, 0], "her tears would fall like rain and her": [65535, 0], "tears would fall like rain and her lips": [65535, 0], "would fall like rain and her lips pray": [65535, 0], "fall like rain and her lips pray god": [65535, 0], "like rain and her lips pray god to": [65535, 0], "rain and her lips pray god to give": [65535, 0], "and her lips pray god to give her": [65535, 0], "her lips pray god to give her back": [65535, 0], "lips pray god to give her back her": [65535, 0], "pray god to give her back her boy": [65535, 0], "god to give her back her boy and": [65535, 0], "to give her back her boy and she": [65535, 0], "give her back her boy and she would": [65535, 0], "her back her boy and she would never": [65535, 0], "back her boy and she would never never": [65535, 0], "her boy and she would never never abuse": [65535, 0], "boy and she would never never abuse him": [65535, 0], "and she would never never abuse him any": [65535, 0], "she would never never abuse him any more": [65535, 0], "would never never abuse him any more but": [65535, 0], "never never abuse him any more but he": [65535, 0], "never abuse him any more but he would": [65535, 0], "abuse him any more but he would lie": [65535, 0], "him any more but he would lie there": [65535, 0], "any more but he would lie there cold": [65535, 0], "more but he would lie there cold and": [65535, 0], "but he would lie there cold and white": [65535, 0], "he would lie there cold and white and": [65535, 0], "would lie there cold and white and make": [65535, 0], "lie there cold and white and make no": [65535, 0], "there cold and white and make no sign": [65535, 0], "cold and white and make no sign a": [65535, 0], "and white and make no sign a poor": [65535, 0], "white and make no sign a poor little": [65535, 0], "and make no sign a poor little sufferer": [65535, 0], "make no sign a poor little sufferer whose": [65535, 0], "no sign a poor little sufferer whose griefs": [65535, 0], "sign a poor little sufferer whose griefs were": [65535, 0], "a poor little sufferer whose griefs were at": [65535, 0], "poor little sufferer whose griefs were at an": [65535, 0], "little sufferer whose griefs were at an end": [65535, 0], "sufferer whose griefs were at an end he": [65535, 0], "whose griefs were at an end he so": [65535, 0], "griefs were at an end he so worked": [65535, 0], "were at an end he so worked upon": [65535, 0], "at an end he so worked upon his": [65535, 0], "an end he so worked upon his feelings": [65535, 0], "end he so worked upon his feelings with": [65535, 0], "he so worked upon his feelings with the": [65535, 0], "so worked upon his feelings with the pathos": [65535, 0], "worked upon his feelings with the pathos of": [65535, 0], "upon his feelings with the pathos of these": [65535, 0], "his feelings with the pathos of these dreams": [65535, 0], "feelings with the pathos of these dreams that": [65535, 0], "with the pathos of these dreams that he": [65535, 0], "the pathos of these dreams that he had": [65535, 0], "pathos of these dreams that he had to": [65535, 0], "of these dreams that he had to keep": [65535, 0], "these dreams that he had to keep swallowing": [65535, 0], "dreams that he had to keep swallowing he": [65535, 0], "that he had to keep swallowing he was": [65535, 0], "he had to keep swallowing he was so": [65535, 0], "had to keep swallowing he was so like": [65535, 0], "to keep swallowing he was so like to": [65535, 0], "keep swallowing he was so like to choke": [65535, 0], "swallowing he was so like to choke and": [65535, 0], "he was so like to choke and his": [65535, 0], "was so like to choke and his eyes": [65535, 0], "so like to choke and his eyes swam": [65535, 0], "like to choke and his eyes swam in": [65535, 0], "to choke and his eyes swam in a": [65535, 0], "choke and his eyes swam in a blur": [65535, 0], "and his eyes swam in a blur of": [65535, 0], "his eyes swam in a blur of water": [65535, 0], "eyes swam in a blur of water which": [65535, 0], "swam in a blur of water which overflowed": [65535, 0], "in a blur of water which overflowed when": [65535, 0], "a blur of water which overflowed when he": [65535, 0], "blur of water which overflowed when he winked": [65535, 0], "of water which overflowed when he winked and": [65535, 0], "water which overflowed when he winked and ran": [65535, 0], "which overflowed when he winked and ran down": [65535, 0], "overflowed when he winked and ran down and": [65535, 0], "when he winked and ran down and trickled": [65535, 0], "he winked and ran down and trickled from": [65535, 0], "winked and ran down and trickled from the": [65535, 0], "and ran down and trickled from the end": [65535, 0], "ran down and trickled from the end of": [65535, 0], "down and trickled from the end of his": [65535, 0], "and trickled from the end of his nose": [65535, 0], "trickled from the end of his nose and": [65535, 0], "from the end of his nose and such": [65535, 0], "the end of his nose and such a": [65535, 0], "end of his nose and such a luxury": [65535, 0], "of his nose and such a luxury to": [65535, 0], "his nose and such a luxury to him": [65535, 0], "nose and such a luxury to him was": [65535, 0], "and such a luxury to him was this": [65535, 0], "such a luxury to him was this petting": [65535, 0], "a luxury to him was this petting of": [65535, 0], "luxury to him was this petting of his": [65535, 0], "to him was this petting of his sorrows": [65535, 0], "him was this petting of his sorrows that": [65535, 0], "was this petting of his sorrows that he": [65535, 0], "this petting of his sorrows that he could": [65535, 0], "petting of his sorrows that he could not": [65535, 0], "of his sorrows that he could not bear": [65535, 0], "his sorrows that he could not bear to": [65535, 0], "sorrows that he could not bear to have": [65535, 0], "that he could not bear to have any": [65535, 0], "he could not bear to have any worldly": [65535, 0], "could not bear to have any worldly cheeriness": [65535, 0], "not bear to have any worldly cheeriness or": [65535, 0], "bear to have any worldly cheeriness or any": [65535, 0], "to have any worldly cheeriness or any grating": [65535, 0], "have any worldly cheeriness or any grating delight": [65535, 0], "any worldly cheeriness or any grating delight intrude": [65535, 0], "worldly cheeriness or any grating delight intrude upon": [65535, 0], "cheeriness or any grating delight intrude upon it": [65535, 0], "or any grating delight intrude upon it it": [65535, 0], "any grating delight intrude upon it it was": [65535, 0], "grating delight intrude upon it it was too": [65535, 0], "delight intrude upon it it was too sacred": [65535, 0], "intrude upon it it was too sacred for": [65535, 0], "upon it it was too sacred for such": [65535, 0], "it it was too sacred for such contact": [65535, 0], "it was too sacred for such contact and": [65535, 0], "was too sacred for such contact and so": [65535, 0], "too sacred for such contact and so presently": [65535, 0], "sacred for such contact and so presently when": [65535, 0], "for such contact and so presently when his": [65535, 0], "such contact and so presently when his cousin": [65535, 0], "contact and so presently when his cousin mary": [65535, 0], "and so presently when his cousin mary danced": [65535, 0], "so presently when his cousin mary danced in": [65535, 0], "presently when his cousin mary danced in all": [65535, 0], "when his cousin mary danced in all alive": [65535, 0], "his cousin mary danced in all alive with": [65535, 0], "cousin mary danced in all alive with the": [65535, 0], "mary danced in all alive with the joy": [65535, 0], "danced in all alive with the joy of": [65535, 0], "in all alive with the joy of seeing": [65535, 0], "all alive with the joy of seeing home": [65535, 0], "alive with the joy of seeing home again": [65535, 0], "with the joy of seeing home again after": [65535, 0], "the joy of seeing home again after an": [65535, 0], "joy of seeing home again after an age": [65535, 0], "of seeing home again after an age long": [65535, 0], "seeing home again after an age long visit": [65535, 0], "home again after an age long visit of": [65535, 0], "again after an age long visit of one": [65535, 0], "after an age long visit of one week": [65535, 0], "an age long visit of one week to": [65535, 0], "age long visit of one week to the": [65535, 0], "long visit of one week to the country": [65535, 0], "visit of one week to the country he": [65535, 0], "of one week to the country he got": [65535, 0], "one week to the country he got up": [65535, 0], "week to the country he got up and": [65535, 0], "to the country he got up and moved": [65535, 0], "the country he got up and moved in": [65535, 0], "country he got up and moved in clouds": [65535, 0], "he got up and moved in clouds and": [65535, 0], "got up and moved in clouds and darkness": [65535, 0], "up and moved in clouds and darkness out": [65535, 0], "and moved in clouds and darkness out at": [65535, 0], "moved in clouds and darkness out at one": [65535, 0], "in clouds and darkness out at one door": [65535, 0], "clouds and darkness out at one door as": [65535, 0], "and darkness out at one door as she": [65535, 0], "darkness out at one door as she brought": [65535, 0], "out at one door as she brought song": [65535, 0], "at one door as she brought song and": [65535, 0], "one door as she brought song and sunshine": [65535, 0], "door as she brought song and sunshine in": [65535, 0], "as she brought song and sunshine in at": [65535, 0], "she brought song and sunshine in at the": [65535, 0], "brought song and sunshine in at the other": [65535, 0], "song and sunshine in at the other he": [65535, 0], "and sunshine in at the other he wandered": [65535, 0], "sunshine in at the other he wandered far": [65535, 0], "in at the other he wandered far from": [65535, 0], "at the other he wandered far from the": [65535, 0], "the other he wandered far from the accustomed": [65535, 0], "other he wandered far from the accustomed haunts": [65535, 0], "he wandered far from the accustomed haunts of": [65535, 0], "wandered far from the accustomed haunts of boys": [65535, 0], "far from the accustomed haunts of boys and": [65535, 0], "from the accustomed haunts of boys and sought": [65535, 0], "the accustomed haunts of boys and sought desolate": [65535, 0], "accustomed haunts of boys and sought desolate places": [65535, 0], "haunts of boys and sought desolate places that": [65535, 0], "of boys and sought desolate places that were": [65535, 0], "boys and sought desolate places that were in": [65535, 0], "and sought desolate places that were in harmony": [65535, 0], "sought desolate places that were in harmony with": [65535, 0], "desolate places that were in harmony with his": [65535, 0], "places that were in harmony with his spirit": [65535, 0], "that were in harmony with his spirit a": [65535, 0], "were in harmony with his spirit a log": [65535, 0], "in harmony with his spirit a log raft": [65535, 0], "harmony with his spirit a log raft in": [65535, 0], "with his spirit a log raft in the": [65535, 0], "his spirit a log raft in the river": [65535, 0], "spirit a log raft in the river invited": [65535, 0], "a log raft in the river invited him": [65535, 0], "log raft in the river invited him and": [65535, 0], "raft in the river invited him and he": [65535, 0], "in the river invited him and he seated": [65535, 0], "the river invited him and he seated himself": [65535, 0], "river invited him and he seated himself on": [65535, 0], "invited him and he seated himself on its": [65535, 0], "him and he seated himself on its outer": [65535, 0], "and he seated himself on its outer edge": [65535, 0], "he seated himself on its outer edge and": [65535, 0], "seated himself on its outer edge and contemplated": [65535, 0], "himself on its outer edge and contemplated the": [65535, 0], "on its outer edge and contemplated the dreary": [65535, 0], "its outer edge and contemplated the dreary vastness": [65535, 0], "outer edge and contemplated the dreary vastness of": [65535, 0], "edge and contemplated the dreary vastness of the": [65535, 0], "and contemplated the dreary vastness of the stream": [65535, 0], "contemplated the dreary vastness of the stream wishing": [65535, 0], "the dreary vastness of the stream wishing the": [65535, 0], "dreary vastness of the stream wishing the while": [65535, 0], "vastness of the stream wishing the while that": [65535, 0], "of the stream wishing the while that he": [65535, 0], "the stream wishing the while that he could": [65535, 0], "stream wishing the while that he could only": [65535, 0], "wishing the while that he could only be": [65535, 0], "the while that he could only be drowned": [65535, 0], "while that he could only be drowned all": [65535, 0], "that he could only be drowned all at": [65535, 0], "he could only be drowned all at once": [65535, 0], "could only be drowned all at once and": [65535, 0], "only be drowned all at once and unconsciously": [65535, 0], "be drowned all at once and unconsciously without": [65535, 0], "drowned all at once and unconsciously without undergoing": [65535, 0], "all at once and unconsciously without undergoing the": [65535, 0], "at once and unconsciously without undergoing the uncomfortable": [65535, 0], "once and unconsciously without undergoing the uncomfortable routine": [65535, 0], "and unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised by": [65535, 0], "without undergoing the uncomfortable routine devised by nature": [65535, 0], "undergoing the uncomfortable routine devised by nature then": [65535, 0], "the uncomfortable routine devised by nature then he": [65535, 0], "uncomfortable routine devised by nature then he thought": [65535, 0], "routine devised by nature then he thought of": [65535, 0], "devised by nature then he thought of his": [65535, 0], "by nature then he thought of his flower": [65535, 0], "nature then he thought of his flower he": [65535, 0], "then he thought of his flower he got": [65535, 0], "he thought of his flower he got it": [65535, 0], "thought of his flower he got it out": [65535, 0], "of his flower he got it out rumpled": [65535, 0], "his flower he got it out rumpled and": [65535, 0], "flower he got it out rumpled and wilted": [65535, 0], "he got it out rumpled and wilted and": [65535, 0], "got it out rumpled and wilted and it": [65535, 0], "it out rumpled and wilted and it mightily": [65535, 0], "out rumpled and wilted and it mightily increased": [65535, 0], "rumpled and wilted and it mightily increased his": [65535, 0], "and wilted and it mightily increased his dismal": [65535, 0], "wilted and it mightily increased his dismal felicity": [65535, 0], "and it mightily increased his dismal felicity he": [65535, 0], "it mightily increased his dismal felicity he wondered": [65535, 0], "mightily increased his dismal felicity he wondered if": [65535, 0], "increased his dismal felicity he wondered if she": [65535, 0], "his dismal felicity he wondered if she would": [65535, 0], "dismal felicity he wondered if she would pity": [65535, 0], "felicity he wondered if she would pity him": [65535, 0], "he wondered if she would pity him if": [65535, 0], "wondered if she would pity him if she": [65535, 0], "if she would pity him if she knew": [65535, 0], "she would pity him if she knew would": [65535, 0], "would pity him if she knew would she": [65535, 0], "pity him if she knew would she cry": [65535, 0], "him if she knew would she cry and": [65535, 0], "if she knew would she cry and wish": [65535, 0], "she knew would she cry and wish that": [65535, 0], "knew would she cry and wish that she": [65535, 0], "would she cry and wish that she had": [65535, 0], "she cry and wish that she had a": [65535, 0], "cry and wish that she had a right": [65535, 0], "and wish that she had a right to": [65535, 0], "wish that she had a right to put": [65535, 0], "that she had a right to put her": [65535, 0], "she had a right to put her arms": [65535, 0], "had a right to put her arms around": [65535, 0], "a right to put her arms around his": [65535, 0], "right to put her arms around his neck": [65535, 0], "to put her arms around his neck and": [65535, 0], "put her arms around his neck and comfort": [65535, 0], "her arms around his neck and comfort him": [65535, 0], "arms around his neck and comfort him or": [65535, 0], "around his neck and comfort him or would": [65535, 0], "his neck and comfort him or would she": [65535, 0], "neck and comfort him or would she turn": [65535, 0], "and comfort him or would she turn coldly": [65535, 0], "comfort him or would she turn coldly away": [65535, 0], "him or would she turn coldly away like": [65535, 0], "or would she turn coldly away like all": [65535, 0], "would she turn coldly away like all the": [65535, 0], "she turn coldly away like all the hollow": [65535, 0], "turn coldly away like all the hollow world": [65535, 0], "coldly away like all the hollow world this": [65535, 0], "away like all the hollow world this picture": [65535, 0], "like all the hollow world this picture brought": [65535, 0], "all the hollow world this picture brought such": [65535, 0], "the hollow world this picture brought such an": [65535, 0], "hollow world this picture brought such an agony": [65535, 0], "world this picture brought such an agony of": [65535, 0], "this picture brought such an agony of pleasurable": [65535, 0], "picture brought such an agony of pleasurable suffering": [65535, 0], "brought such an agony of pleasurable suffering that": [65535, 0], "such an agony of pleasurable suffering that he": [65535, 0], "an agony of pleasurable suffering that he worked": [65535, 0], "agony of pleasurable suffering that he worked it": [65535, 0], "of pleasurable suffering that he worked it over": [65535, 0], "pleasurable suffering that he worked it over and": [65535, 0], "suffering that he worked it over and over": [65535, 0], "that he worked it over and over again": [65535, 0], "he worked it over and over again in": [65535, 0], "worked it over and over again in his": [65535, 0], "it over and over again in his mind": [65535, 0], "over and over again in his mind and": [65535, 0], "and over again in his mind and set": [65535, 0], "over again in his mind and set it": [65535, 0], "again in his mind and set it up": [65535, 0], "in his mind and set it up in": [65535, 0], "his mind and set it up in new": [65535, 0], "mind and set it up in new and": [65535, 0], "and set it up in new and varied": [65535, 0], "set it up in new and varied lights": [65535, 0], "it up in new and varied lights till": [65535, 0], "up in new and varied lights till he": [65535, 0], "in new and varied lights till he wore": [65535, 0], "new and varied lights till he wore it": [65535, 0], "and varied lights till he wore it threadbare": [65535, 0], "varied lights till he wore it threadbare at": [65535, 0], "lights till he wore it threadbare at last": [65535, 0], "till he wore it threadbare at last he": [65535, 0], "he wore it threadbare at last he rose": [65535, 0], "wore it threadbare at last he rose up": [65535, 0], "it threadbare at last he rose up sighing": [65535, 0], "threadbare at last he rose up sighing and": [65535, 0], "at last he rose up sighing and departed": [65535, 0], "last he rose up sighing and departed in": [65535, 0], "he rose up sighing and departed in the": [65535, 0], "rose up sighing and departed in the darkness": [65535, 0], "up sighing and departed in the darkness about": [65535, 0], "sighing and departed in the darkness about half": [65535, 0], "and departed in the darkness about half past": [65535, 0], "departed in the darkness about half past nine": [65535, 0], "in the darkness about half past nine or": [65535, 0], "the darkness about half past nine or ten": [65535, 0], "darkness about half past nine or ten o'clock": [65535, 0], "about half past nine or ten o'clock he": [65535, 0], "half past nine or ten o'clock he came": [65535, 0], "past nine or ten o'clock he came along": [65535, 0], "nine or ten o'clock he came along the": [65535, 0], "or ten o'clock he came along the deserted": [65535, 0], "ten o'clock he came along the deserted street": [65535, 0], "o'clock he came along the deserted street to": [65535, 0], "he came along the deserted street to where": [65535, 0], "came along the deserted street to where the": [65535, 0], "along the deserted street to where the adored": [65535, 0], "the deserted street to where the adored unknown": [65535, 0], "deserted street to where the adored unknown lived": [65535, 0], "street to where the adored unknown lived he": [65535, 0], "to where the adored unknown lived he paused": [65535, 0], "where the adored unknown lived he paused a": [65535, 0], "the adored unknown lived he paused a moment": [65535, 0], "adored unknown lived he paused a moment no": [65535, 0], "unknown lived he paused a moment no sound": [65535, 0], "lived he paused a moment no sound fell": [65535, 0], "he paused a moment no sound fell upon": [65535, 0], "paused a moment no sound fell upon his": [65535, 0], "a moment no sound fell upon his listening": [65535, 0], "moment no sound fell upon his listening ear": [65535, 0], "no sound fell upon his listening ear a": [65535, 0], "sound fell upon his listening ear a candle": [65535, 0], "fell upon his listening ear a candle was": [65535, 0], "upon his listening ear a candle was casting": [65535, 0], "his listening ear a candle was casting a": [65535, 0], "listening ear a candle was casting a dull": [65535, 0], "ear a candle was casting a dull glow": [65535, 0], "a candle was casting a dull glow upon": [65535, 0], "candle was casting a dull glow upon the": [65535, 0], "was casting a dull glow upon the curtain": [65535, 0], "casting a dull glow upon the curtain of": [65535, 0], "a dull glow upon the curtain of a": [65535, 0], "dull glow upon the curtain of a second": [65535, 0], "glow upon the curtain of a second story": [65535, 0], "upon the curtain of a second story window": [65535, 0], "the curtain of a second story window was": [65535, 0], "curtain of a second story window was the": [65535, 0], "of a second story window was the sacred": [65535, 0], "a second story window was the sacred presence": [65535, 0], "second story window was the sacred presence there": [65535, 0], "story window was the sacred presence there he": [65535, 0], "window was the sacred presence there he climbed": [65535, 0], "was the sacred presence there he climbed the": [65535, 0], "the sacred presence there he climbed the fence": [65535, 0], "sacred presence there he climbed the fence threaded": [65535, 0], "presence there he climbed the fence threaded his": [65535, 0], "there he climbed the fence threaded his stealthy": [65535, 0], "he climbed the fence threaded his stealthy way": [65535, 0], "climbed the fence threaded his stealthy way through": [65535, 0], "the fence threaded his stealthy way through the": [65535, 0], "fence threaded his stealthy way through the plants": [65535, 0], "threaded his stealthy way through the plants till": [65535, 0], "his stealthy way through the plants till he": [65535, 0], "stealthy way through the plants till he stood": [65535, 0], "way through the plants till he stood under": [65535, 0], "through the plants till he stood under that": [65535, 0], "the plants till he stood under that window": [65535, 0], "plants till he stood under that window he": [65535, 0], "till he stood under that window he looked": [65535, 0], "he stood under that window he looked up": [65535, 0], "stood under that window he looked up at": [65535, 0], "under that window he looked up at it": [65535, 0], "that window he looked up at it long": [65535, 0], "window he looked up at it long and": [65535, 0], "he looked up at it long and with": [65535, 0], "looked up at it long and with emotion": [65535, 0], "up at it long and with emotion then": [65535, 0], "at it long and with emotion then he": [65535, 0], "it long and with emotion then he laid": [65535, 0], "long and with emotion then he laid him": [65535, 0], "and with emotion then he laid him down": [65535, 0], "with emotion then he laid him down on": [65535, 0], "emotion then he laid him down on the": [65535, 0], "then he laid him down on the ground": [65535, 0], "he laid him down on the ground under": [65535, 0], "laid him down on the ground under it": [65535, 0], "him down on the ground under it disposing": [65535, 0], "down on the ground under it disposing himself": [65535, 0], "on the ground under it disposing himself upon": [65535, 0], "the ground under it disposing himself upon his": [65535, 0], "ground under it disposing himself upon his back": [65535, 0], "under it disposing himself upon his back with": [65535, 0], "it disposing himself upon his back with his": [65535, 0], "disposing himself upon his back with his hands": [65535, 0], "himself upon his back with his hands clasped": [65535, 0], "upon his back with his hands clasped upon": [65535, 0], "his back with his hands clasped upon his": [65535, 0], "back with his hands clasped upon his breast": [65535, 0], "with his hands clasped upon his breast and": [65535, 0], "his hands clasped upon his breast and holding": [65535, 0], "hands clasped upon his breast and holding his": [65535, 0], "clasped upon his breast and holding his poor": [65535, 0], "upon his breast and holding his poor wilted": [65535, 0], "his breast and holding his poor wilted flower": [65535, 0], "breast and holding his poor wilted flower and": [65535, 0], "and holding his poor wilted flower and thus": [65535, 0], "holding his poor wilted flower and thus he": [65535, 0], "his poor wilted flower and thus he would": [65535, 0], "poor wilted flower and thus he would die": [65535, 0], "wilted flower and thus he would die out": [65535, 0], "flower and thus he would die out in": [65535, 0], "and thus he would die out in the": [65535, 0], "thus he would die out in the cold": [65535, 0], "he would die out in the cold world": [65535, 0], "would die out in the cold world with": [65535, 0], "die out in the cold world with no": [65535, 0], "out in the cold world with no shelter": [65535, 0], "in the cold world with no shelter over": [65535, 0], "the cold world with no shelter over his": [65535, 0], "cold world with no shelter over his homeless": [65535, 0], "world with no shelter over his homeless head": [65535, 0], "with no shelter over his homeless head no": [65535, 0], "no shelter over his homeless head no friendly": [65535, 0], "shelter over his homeless head no friendly hand": [65535, 0], "over his homeless head no friendly hand to": [65535, 0], "his homeless head no friendly hand to wipe": [65535, 0], "homeless head no friendly hand to wipe the": [65535, 0], "head no friendly hand to wipe the death": [65535, 0], "no friendly hand to wipe the death damps": [65535, 0], "friendly hand to wipe the death damps from": [65535, 0], "hand to wipe the death damps from his": [65535, 0], "to wipe the death damps from his brow": [65535, 0], "wipe the death damps from his brow no": [65535, 0], "the death damps from his brow no loving": [65535, 0], "death damps from his brow no loving face": [65535, 0], "damps from his brow no loving face to": [65535, 0], "from his brow no loving face to bend": [65535, 0], "his brow no loving face to bend pityingly": [65535, 0], "brow no loving face to bend pityingly over": [65535, 0], "no loving face to bend pityingly over him": [65535, 0], "loving face to bend pityingly over him when": [65535, 0], "face to bend pityingly over him when the": [65535, 0], "to bend pityingly over him when the great": [65535, 0], "bend pityingly over him when the great agony": [65535, 0], "pityingly over him when the great agony came": [65535, 0], "over him when the great agony came and": [65535, 0], "him when the great agony came and thus": [65535, 0], "when the great agony came and thus she": [65535, 0], "the great agony came and thus she would": [65535, 0], "great agony came and thus she would see": [65535, 0], "agony came and thus she would see him": [65535, 0], "came and thus she would see him when": [65535, 0], "and thus she would see him when she": [65535, 0], "thus she would see him when she looked": [65535, 0], "she would see him when she looked out": [65535, 0], "would see him when she looked out upon": [65535, 0], "see him when she looked out upon the": [65535, 0], "him when she looked out upon the glad": [65535, 0], "when she looked out upon the glad morning": [65535, 0], "she looked out upon the glad morning and": [65535, 0], "looked out upon the glad morning and oh": [65535, 0], "out upon the glad morning and oh would": [65535, 0], "upon the glad morning and oh would she": [65535, 0], "the glad morning and oh would she drop": [65535, 0], "glad morning and oh would she drop one": [65535, 0], "morning and oh would she drop one little": [65535, 0], "and oh would she drop one little tear": [65535, 0], "oh would she drop one little tear upon": [65535, 0], "would she drop one little tear upon his": [65535, 0], "she drop one little tear upon his poor": [65535, 0], "drop one little tear upon his poor lifeless": [65535, 0], "one little tear upon his poor lifeless form": [65535, 0], "little tear upon his poor lifeless form would": [65535, 0], "tear upon his poor lifeless form would she": [65535, 0], "upon his poor lifeless form would she heave": [65535, 0], "his poor lifeless form would she heave one": [65535, 0], "poor lifeless form would she heave one little": [65535, 0], "lifeless form would she heave one little sigh": [65535, 0], "form would she heave one little sigh to": [65535, 0], "would she heave one little sigh to see": [65535, 0], "she heave one little sigh to see a": [65535, 0], "heave one little sigh to see a bright": [65535, 0], "one little sigh to see a bright young": [65535, 0], "little sigh to see a bright young life": [65535, 0], "sigh to see a bright young life so": [65535, 0], "to see a bright young life so rudely": [65535, 0], "see a bright young life so rudely blighted": [65535, 0], "a bright young life so rudely blighted so": [65535, 0], "bright young life so rudely blighted so untimely": [65535, 0], "young life so rudely blighted so untimely cut": [65535, 0], "life so rudely blighted so untimely cut down": [65535, 0], "so rudely blighted so untimely cut down the": [65535, 0], "rudely blighted so untimely cut down the window": [65535, 0], "blighted so untimely cut down the window went": [65535, 0], "so untimely cut down the window went up": [65535, 0], "untimely cut down the window went up a": [65535, 0], "cut down the window went up a maid": [65535, 0], "down the window went up a maid servant's": [65535, 0], "the window went up a maid servant's discordant": [65535, 0], "window went up a maid servant's discordant voice": [65535, 0], "went up a maid servant's discordant voice profaned": [65535, 0], "up a maid servant's discordant voice profaned the": [65535, 0], "a maid servant's discordant voice profaned the holy": [65535, 0], "maid servant's discordant voice profaned the holy calm": [65535, 0], "servant's discordant voice profaned the holy calm and": [65535, 0], "discordant voice profaned the holy calm and a": [65535, 0], "voice profaned the holy calm and a deluge": [65535, 0], "profaned the holy calm and a deluge of": [65535, 0], "the holy calm and a deluge of water": [65535, 0], "holy calm and a deluge of water drenched": [65535, 0], "calm and a deluge of water drenched the": [65535, 0], "and a deluge of water drenched the prone": [65535, 0], "a deluge of water drenched the prone martyr's": [65535, 0], "deluge of water drenched the prone martyr's remains": [65535, 0], "of water drenched the prone martyr's remains the": [65535, 0], "water drenched the prone martyr's remains the strangling": [65535, 0], "drenched the prone martyr's remains the strangling hero": [65535, 0], "the prone martyr's remains the strangling hero sprang": [65535, 0], "prone martyr's remains the strangling hero sprang up": [65535, 0], "martyr's remains the strangling hero sprang up with": [65535, 0], "remains the strangling hero sprang up with a": [65535, 0], "the strangling hero sprang up with a relieving": [65535, 0], "strangling hero sprang up with a relieving snort": [65535, 0], "hero sprang up with a relieving snort there": [65535, 0], "sprang up with a relieving snort there was": [65535, 0], "up with a relieving snort there was a": [65535, 0], "with a relieving snort there was a whiz": [65535, 0], "a relieving snort there was a whiz as": [65535, 0], "relieving snort there was a whiz as of": [65535, 0], "snort there was a whiz as of a": [65535, 0], "there was a whiz as of a missile": [65535, 0], "was a whiz as of a missile in": [65535, 0], "a whiz as of a missile in the": [65535, 0], "whiz as of a missile in the air": [65535, 0], "as of a missile in the air mingled": [65535, 0], "of a missile in the air mingled with": [65535, 0], "a missile in the air mingled with the": [65535, 0], "missile in the air mingled with the murmur": [65535, 0], "in the air mingled with the murmur of": [65535, 0], "the air mingled with the murmur of a": [65535, 0], "air mingled with the murmur of a curse": [65535, 0], "mingled with the murmur of a curse a": [65535, 0], "with the murmur of a curse a sound": [65535, 0], "the murmur of a curse a sound as": [65535, 0], "murmur of a curse a sound as of": [65535, 0], "of a curse a sound as of shivering": [65535, 0], "a curse a sound as of shivering glass": [65535, 0], "curse a sound as of shivering glass followed": [65535, 0], "a sound as of shivering glass followed and": [65535, 0], "sound as of shivering glass followed and a": [65535, 0], "as of shivering glass followed and a small": [65535, 0], "of shivering glass followed and a small vague": [65535, 0], "shivering glass followed and a small vague form": [65535, 0], "glass followed and a small vague form went": [65535, 0], "followed and a small vague form went over": [65535, 0], "and a small vague form went over the": [65535, 0], "a small vague form went over the fence": [65535, 0], "small vague form went over the fence and": [65535, 0], "vague form went over the fence and shot": [65535, 0], "form went over the fence and shot away": [65535, 0], "went over the fence and shot away in": [65535, 0], "over the fence and shot away in the": [65535, 0], "the fence and shot away in the gloom": [65535, 0], "fence and shot away in the gloom not": [65535, 0], "and shot away in the gloom not long": [65535, 0], "shot away in the gloom not long after": [65535, 0], "away in the gloom not long after as": [65535, 0], "in the gloom not long after as tom": [65535, 0], "the gloom not long after as tom all": [65535, 0], "gloom not long after as tom all undressed": [65535, 0], "not long after as tom all undressed for": [65535, 0], "long after as tom all undressed for bed": [65535, 0], "after as tom all undressed for bed was": [65535, 0], "as tom all undressed for bed was surveying": [65535, 0], "tom all undressed for bed was surveying his": [65535, 0], "all undressed for bed was surveying his drenched": [65535, 0], "undressed for bed was surveying his drenched garments": [65535, 0], "for bed was surveying his drenched garments by": [65535, 0], "bed was surveying his drenched garments by the": [65535, 0], "was surveying his drenched garments by the light": [65535, 0], "surveying his drenched garments by the light of": [65535, 0], "his drenched garments by the light of a": [65535, 0], "drenched garments by the light of a tallow": [65535, 0], "garments by the light of a tallow dip": [65535, 0], "by the light of a tallow dip sid": [65535, 0], "the light of a tallow dip sid woke": [65535, 0], "light of a tallow dip sid woke up": [65535, 0], "of a tallow dip sid woke up but": [65535, 0], "a tallow dip sid woke up but if": [65535, 0], "tallow dip sid woke up but if he": [65535, 0], "dip sid woke up but if he had": [65535, 0], "sid woke up but if he had any": [65535, 0], "woke up but if he had any dim": [65535, 0], "up but if he had any dim idea": [65535, 0], "but if he had any dim idea of": [65535, 0], "if he had any dim idea of making": [65535, 0], "he had any dim idea of making any": [65535, 0], "had any dim idea of making any references": [65535, 0], "any dim idea of making any references to": [65535, 0], "dim idea of making any references to allusions": [65535, 0], "idea of making any references to allusions he": [65535, 0], "of making any references to allusions he thought": [65535, 0], "making any references to allusions he thought better": [65535, 0], "any references to allusions he thought better of": [65535, 0], "references to allusions he thought better of it": [65535, 0], "to allusions he thought better of it and": [65535, 0], "allusions he thought better of it and held": [65535, 0], "he thought better of it and held his": [65535, 0], "thought better of it and held his peace": [65535, 0], "better of it and held his peace for": [65535, 0], "of it and held his peace for there": [65535, 0], "it and held his peace for there was": [65535, 0], "and held his peace for there was danger": [65535, 0], "held his peace for there was danger in": [65535, 0], "his peace for there was danger in tom's": [65535, 0], "peace for there was danger in tom's eye": [65535, 0], "for there was danger in tom's eye tom": [65535, 0], "there was danger in tom's eye tom turned": [65535, 0], "was danger in tom's eye tom turned in": [65535, 0], "danger in tom's eye tom turned in without": [65535, 0], "in tom's eye tom turned in without the": [65535, 0], "tom's eye tom turned in without the added": [65535, 0], "eye tom turned in without the added vexation": [65535, 0], "tom turned in without the added vexation of": [65535, 0], "turned in without the added vexation of prayers": [65535, 0], "in without the added vexation of prayers and": [65535, 0], "without the added vexation of prayers and sid": [65535, 0], "the added vexation of prayers and sid made": [65535, 0], "added vexation of prayers and sid made mental": [65535, 0], "vexation of prayers and sid made mental note": [65535, 0], "of prayers and sid made mental note of": [65535, 0], "prayers and sid made mental note of the": [65535, 0], "and sid made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who was sitting": [65535, 0], "presented himself before aunt polly who was sitting by": [65535, 0], "himself before aunt polly who was sitting by an": [65535, 0], "before aunt polly who was sitting by an open": [65535, 0], "aunt polly who was sitting by an open window": [65535, 0], "polly who was sitting by an open window in": [65535, 0], "who was sitting by an open window in a": [65535, 0], "was sitting by an open window in a pleasant": [65535, 0], "sitting by an open window in a pleasant rearward": [65535, 0], "by an open window in a pleasant rearward apartment": [65535, 0], "an open window in a pleasant rearward apartment which": [65535, 0], "open window in a pleasant rearward apartment which was": [65535, 0], "window in a pleasant rearward apartment which was bedroom": [65535, 0], "in a pleasant rearward apartment which was bedroom breakfast": [65535, 0], "a pleasant rearward apartment which was bedroom breakfast room": [65535, 0], "pleasant rearward apartment which was bedroom breakfast room dining": [65535, 0], "rearward apartment which was bedroom breakfast room dining room": [65535, 0], "apartment which was bedroom breakfast room dining room and": [65535, 0], "which was bedroom breakfast room dining room and library": [65535, 0], "was bedroom breakfast room dining room and library combined": [65535, 0], "bedroom breakfast room dining room and library combined the": [65535, 0], "breakfast room dining room and library combined the balmy": [65535, 0], "room dining room and library combined the balmy summer": [65535, 0], "dining room and library combined the balmy summer air": [65535, 0], "room and library combined the balmy summer air the": [65535, 0], "and library combined the balmy summer air the restful": [65535, 0], "library combined the balmy summer air the restful quiet": [65535, 0], "combined the balmy summer air the restful quiet the": [65535, 0], "the balmy summer air the restful quiet the odor": [65535, 0], "balmy summer air the restful quiet the odor of": [65535, 0], "summer air the restful quiet the odor of the": [65535, 0], "air the restful quiet the odor of the flowers": [65535, 0], "the restful quiet the odor of the flowers and": [65535, 0], "restful quiet the odor of the flowers and the": [65535, 0], "quiet the odor of the flowers and the drowsing": [65535, 0], "the odor of the flowers and the drowsing murmur": [65535, 0], "odor of the flowers and the drowsing murmur of": [65535, 0], "of the flowers and the drowsing murmur of the": [65535, 0], "the flowers and the drowsing murmur of the bees": [65535, 0], "flowers and the drowsing murmur of the bees had": [65535, 0], "and the drowsing murmur of the bees had had": [65535, 0], "the drowsing murmur of the bees had had their": [65535, 0], "drowsing murmur of the bees had had their effect": [65535, 0], "murmur of the bees had had their effect and": [65535, 0], "of the bees had had their effect and she": [65535, 0], "the bees had had their effect and she was": [65535, 0], "bees had had their effect and she was nodding": [65535, 0], "had had their effect and she was nodding over": [65535, 0], "had their effect and she was nodding over her": [65535, 0], "their effect and she was nodding over her knitting": [65535, 0], "effect and she was nodding over her knitting for": [65535, 0], "and she was nodding over her knitting for she": [65535, 0], "she was nodding over her knitting for she had": [65535, 0], "was nodding over her knitting for she had no": [65535, 0], "nodding over her knitting for she had no company": [65535, 0], "over her knitting for she had no company but": [65535, 0], "her knitting for she had no company but the": [65535, 0], "knitting for she had no company but the cat": [65535, 0], "for she had no company but the cat and": [65535, 0], "she had no company but the cat and it": [65535, 0], "had no company but the cat and it was": [65535, 0], "no company but the cat and it was asleep": [65535, 0], "company but the cat and it was asleep in": [65535, 0], "but the cat and it was asleep in her": [65535, 0], "the cat and it was asleep in her lap": [65535, 0], "cat and it was asleep in her lap her": [65535, 0], "and it was asleep in her lap her spectacles": [65535, 0], "it was asleep in her lap her spectacles were": [65535, 0], "was asleep in her lap her spectacles were propped": [65535, 0], "asleep in her lap her spectacles were propped up": [65535, 0], "in her lap her spectacles were propped up on": [65535, 0], "her lap her spectacles were propped up on her": [65535, 0], "lap her spectacles were propped up on her gray": [65535, 0], "her spectacles were propped up on her gray head": [65535, 0], "spectacles were propped up on her gray head for": [65535, 0], "were propped up on her gray head for safety": [65535, 0], "propped up on her gray head for safety she": [65535, 0], "up on her gray head for safety she had": [65535, 0], "on her gray head for safety she had thought": [65535, 0], "her gray head for safety she had thought that": [65535, 0], "gray head for safety she had thought that of": [65535, 0], "head for safety she had thought that of course": [65535, 0], "for safety she had thought that of course tom": [65535, 0], "safety she had thought that of course tom had": [65535, 0], "she had thought that of course tom had deserted": [65535, 0], "had thought that of course tom had deserted long": [65535, 0], "thought that of course tom had deserted long ago": [65535, 0], "that of course tom had deserted long ago and": [65535, 0], "of course tom had deserted long ago and she": [65535, 0], "course tom had deserted long ago and she wondered": [65535, 0], "tom had deserted long ago and she wondered at": [65535, 0], "had deserted long ago and she wondered at seeing": [65535, 0], "deserted long ago and she wondered at seeing him": [65535, 0], "long ago and she wondered at seeing him place": [65535, 0], "ago and she wondered at seeing him place himself": [65535, 0], "and she wondered at seeing him place himself in": [65535, 0], "she wondered at seeing him place himself in her": [65535, 0], "wondered at seeing him place himself in her power": [65535, 0], "at seeing him place himself in her power again": [65535, 0], "seeing him place himself in her power again in": [65535, 0], "him place himself in her power again in this": [65535, 0], "place himself in her power again in this intrepid": [65535, 0], "himself in her power again in this intrepid way": [65535, 0], "in her power again in this intrepid way he": [65535, 0], "her power again in this intrepid way he said": [65535, 0], "power again in this intrepid way he said mayn't": [65535, 0], "again in this intrepid way he said mayn't i": [65535, 0], "in this intrepid way he said mayn't i go": [65535, 0], "this intrepid way he said mayn't i go and": [65535, 0], "intrepid way he said mayn't i go and play": [65535, 0], "way he said mayn't i go and play now": [65535, 0], "he said mayn't i go and play now aunt": [65535, 0], "said mayn't i go and play now aunt what": [65535, 0], "mayn't i go and play now aunt what a'ready": [65535, 0], "i go and play now aunt what a'ready how": [65535, 0], "go and play now aunt what a'ready how much": [65535, 0], "and play now aunt what a'ready how much have": [65535, 0], "play now aunt what a'ready how much have you": [65535, 0], "now aunt what a'ready how much have you done": [65535, 0], "aunt what a'ready how much have you done it's": [65535, 0], "what a'ready how much have you done it's all": [65535, 0], "a'ready how much have you done it's all done": [65535, 0], "how much have you done it's all done aunt": [65535, 0], "much have you done it's all done aunt tom": [65535, 0], "have you done it's all done aunt tom don't": [65535, 0], "you done it's all done aunt tom don't lie": [65535, 0], "done it's all done aunt tom don't lie to": [65535, 0], "it's all done aunt tom don't lie to me": [65535, 0], "all done aunt tom don't lie to me i": [65535, 0], "done aunt tom don't lie to me i can't": [65535, 0], "aunt tom don't lie to me i can't bear": [65535, 0], "tom don't lie to me i can't bear it": [65535, 0], "don't lie to me i can't bear it i": [65535, 0], "lie to me i can't bear it i ain't": [65535, 0], "to me i can't bear it i ain't aunt": [65535, 0], "me i can't bear it i ain't aunt it": [65535, 0], "i can't bear it i ain't aunt it is": [65535, 0], "can't bear it i ain't aunt it is all": [65535, 0], "bear it i ain't aunt it is all done": [65535, 0], "it i ain't aunt it is all done aunt": [65535, 0], "i ain't aunt it is all done aunt polly": [65535, 0], "ain't aunt it is all done aunt polly placed": [65535, 0], "aunt it is all done aunt polly placed small": [65535, 0], "it is all done aunt polly placed small trust": [65535, 0], "is all done aunt polly placed small trust in": [65535, 0], "all done aunt polly placed small trust in such": [65535, 0], "done aunt polly placed small trust in such evidence": [65535, 0], "aunt polly placed small trust in such evidence she": [65535, 0], "polly placed small trust in such evidence she went": [65535, 0], "placed small trust in such evidence she went out": [65535, 0], "small trust in such evidence she went out to": [65535, 0], "trust in such evidence she went out to see": [65535, 0], "in such evidence she went out to see for": [65535, 0], "such evidence she went out to see for herself": [65535, 0], "evidence she went out to see for herself and": [65535, 0], "she went out to see for herself and she": [65535, 0], "went out to see for herself and she would": [65535, 0], "out to see for herself and she would have": [65535, 0], "to see for herself and she would have been": [65535, 0], "see for herself and she would have been content": [65535, 0], "for herself and she would have been content to": [65535, 0], "herself and she would have been content to find": [65535, 0], "and she would have been content to find twenty": [65535, 0], "she would have been content to find twenty per": [65535, 0], "would have been content to find twenty per cent": [65535, 0], "have been content to find twenty per cent of": [65535, 0], "been content to find twenty per cent of tom's": [65535, 0], "content to find twenty per cent of tom's statement": [65535, 0], "to find twenty per cent of tom's statement true": [65535, 0], "find twenty per cent of tom's statement true when": [65535, 0], "twenty per cent of tom's statement true when she": [65535, 0], "per cent of tom's statement true when she found": [65535, 0], "cent of tom's statement true when she found the": [65535, 0], "of tom's statement true when she found the entire": [65535, 0], "tom's statement true when she found the entire fence": [65535, 0], "statement true when she found the entire fence whitewashed": [65535, 0], "true when she found the entire fence whitewashed and": [65535, 0], "when she found the entire fence whitewashed and not": [65535, 0], "she found the entire fence whitewashed and not only": [65535, 0], "found the entire fence whitewashed and not only whitewashed": [65535, 0], "the entire fence whitewashed and not only whitewashed but": [65535, 0], "entire fence whitewashed and not only whitewashed but elaborately": [65535, 0], "fence whitewashed and not only whitewashed but elaborately coated": [65535, 0], "whitewashed and not only whitewashed but elaborately coated and": [65535, 0], "and not only whitewashed but elaborately coated and recoated": [65535, 0], "not only whitewashed but elaborately coated and recoated and": [65535, 0], "only whitewashed but elaborately coated and recoated and even": [65535, 0], "whitewashed but elaborately coated and recoated and even a": [65535, 0], "but elaborately coated and recoated and even a streak": [65535, 0], "elaborately coated and recoated and even a streak added": [65535, 0], "coated and recoated and even a streak added to": [65535, 0], "and recoated and even a streak added to the": [65535, 0], "recoated and even a streak added to the ground": [65535, 0], "and even a streak added to the ground her": [65535, 0], "even a streak added to the ground her astonishment": [65535, 0], "a streak added to the ground her astonishment was": [65535, 0], "streak added to the ground her astonishment was almost": [65535, 0], "added to the ground her astonishment was almost unspeakable": [65535, 0], "to the ground her astonishment was almost unspeakable she": [65535, 0], "the ground her astonishment was almost unspeakable she said": [65535, 0], "ground her astonishment was almost unspeakable she said well": [65535, 0], "her astonishment was almost unspeakable she said well i": [65535, 0], "astonishment was almost unspeakable she said well i never": [65535, 0], "was almost unspeakable she said well i never there's": [65535, 0], "almost unspeakable she said well i never there's no": [65535, 0], "unspeakable she said well i never there's no getting": [65535, 0], "she said well i never there's no getting round": [65535, 0], "said well i never there's no getting round it": [65535, 0], "well i never there's no getting round it you": [65535, 0], "i never there's no getting round it you can": [65535, 0], "never there's no getting round it you can work": [65535, 0], "there's no getting round it you can work when": [65535, 0], "no getting round it you can work when you're": [65535, 0], "getting round it you can work when you're a": [65535, 0], "round it you can work when you're a mind": [65535, 0], "it you can work when you're a mind to": [65535, 0], "you can work when you're a mind to tom": [65535, 0], "can work when you're a mind to tom and": [65535, 0], "work when you're a mind to tom and then": [65535, 0], "when you're a mind to tom and then she": [65535, 0], "you're a mind to tom and then she diluted": [65535, 0], "a mind to tom and then she diluted the": [65535, 0], "mind to tom and then she diluted the compliment": [65535, 0], "to tom and then she diluted the compliment by": [65535, 0], "tom and then she diluted the compliment by adding": [65535, 0], "and then she diluted the compliment by adding but": [65535, 0], "then she diluted the compliment by adding but it's": [65535, 0], "she diluted the compliment by adding but it's powerful": [65535, 0], "diluted the compliment by adding but it's powerful seldom": [65535, 0], "the compliment by adding but it's powerful seldom you're": [65535, 0], "compliment by adding but it's powerful seldom you're a": [65535, 0], "by adding but it's powerful seldom you're a mind": [65535, 0], "adding but it's powerful seldom you're a mind to": [65535, 0], "but it's powerful seldom you're a mind to i'm": [65535, 0], "it's powerful seldom you're a mind to i'm bound": [65535, 0], "powerful seldom you're a mind to i'm bound to": [65535, 0], "seldom you're a mind to i'm bound to say": [65535, 0], "you're a mind to i'm bound to say well": [65535, 0], "a mind to i'm bound to say well go": [65535, 0], "mind to i'm bound to say well go 'long": [65535, 0], "to i'm bound to say well go 'long and": [65535, 0], "i'm bound to say well go 'long and play": [65535, 0], "bound to say well go 'long and play but": [65535, 0], "to say well go 'long and play but mind": [65535, 0], "say well go 'long and play but mind you": [65535, 0], "well go 'long and play but mind you get": [65535, 0], "go 'long and play but mind you get back": [65535, 0], "'long and play but mind you get back some": [65535, 0], "and play but mind you get back some time": [65535, 0], "play but mind you get back some time in": [65535, 0], "but mind you get back some time in a": [65535, 0], "mind you get back some time in a week": [65535, 0], "you get back some time in a week or": [65535, 0], "get back some time in a week or i'll": [65535, 0], "back some time in a week or i'll tan": [65535, 0], "some time in a week or i'll tan you": [65535, 0], "time in a week or i'll tan you she": [65535, 0], "in a week or i'll tan you she was": [65535, 0], "a week or i'll tan you she was so": [65535, 0], "week or i'll tan you she was so overcome": [65535, 0], "or i'll tan you she was so overcome by": [65535, 0], "i'll tan you she was so overcome by the": [65535, 0], "tan you she was so overcome by the splendor": [65535, 0], "you she was so overcome by the splendor of": [65535, 0], "she was so overcome by the splendor of his": [65535, 0], "was so overcome by the splendor of his achievement": [65535, 0], "so overcome by the splendor of his achievement that": [65535, 0], "overcome by the splendor of his achievement that she": [65535, 0], "by the splendor of his achievement that she took": [65535, 0], "the splendor of his achievement that she took him": [65535, 0], "splendor of his achievement that she took him into": [65535, 0], "of his achievement that she took him into the": [65535, 0], "his achievement that she took him into the closet": [65535, 0], "achievement that she took him into the closet and": [65535, 0], "that she took him into the closet and selected": [65535, 0], "she took him into the closet and selected a": [65535, 0], "took him into the closet and selected a choice": [65535, 0], "him into the closet and selected a choice apple": [65535, 0], "into the closet and selected a choice apple and": [65535, 0], "the closet and selected a choice apple and delivered": [65535, 0], "closet and selected a choice apple and delivered it": [65535, 0], "and selected a choice apple and delivered it to": [65535, 0], "selected a choice apple and delivered it to him": [65535, 0], "a choice apple and delivered it to him along": [65535, 0], "choice apple and delivered it to him along with": [65535, 0], "apple and delivered it to him along with an": [65535, 0], "and delivered it to him along with an improving": [65535, 0], "delivered it to him along with an improving lecture": [65535, 0], "it to him along with an improving lecture upon": [65535, 0], "to him along with an improving lecture upon the": [65535, 0], "him along with an improving lecture upon the added": [65535, 0], "along with an improving lecture upon the added value": [65535, 0], "with an improving lecture upon the added value and": [65535, 0], "an improving lecture upon the added value and flavor": [65535, 0], "improving lecture upon the added value and flavor a": [65535, 0], "lecture upon the added value and flavor a treat": [65535, 0], "upon the added value and flavor a treat took": [65535, 0], "the added value and flavor a treat took to": [65535, 0], "added value and flavor a treat took to itself": [65535, 0], "value and flavor a treat took to itself when": [65535, 0], "and flavor a treat took to itself when it": [65535, 0], "flavor a treat took to itself when it came": [65535, 0], "a treat took to itself when it came without": [65535, 0], "treat took to itself when it came without sin": [65535, 0], "took to itself when it came without sin through": [65535, 0], "to itself when it came without sin through virtuous": [65535, 0], "itself when it came without sin through virtuous effort": [65535, 0], "when it came without sin through virtuous effort and": [65535, 0], "it came without sin through virtuous effort and while": [65535, 0], "came without sin through virtuous effort and while she": [65535, 0], "without sin through virtuous effort and while she closed": [65535, 0], "sin through virtuous effort and while she closed with": [65535, 0], "through virtuous effort and while she closed with a": [65535, 0], "virtuous effort and while she closed with a happy": [65535, 0], "effort and while she closed with a happy scriptural": [65535, 0], "and while she closed with a happy scriptural flourish": [65535, 0], "while she closed with a happy scriptural flourish he": [65535, 0], "she closed with a happy scriptural flourish he hooked": [65535, 0], "closed with a happy scriptural flourish he hooked a": [65535, 0], "with a happy scriptural flourish he hooked a doughnut": [65535, 0], "a happy scriptural flourish he hooked a doughnut then": [65535, 0], "happy scriptural flourish he hooked a doughnut then he": [65535, 0], "scriptural flourish he hooked a doughnut then he skipped": [65535, 0], "flourish he hooked a doughnut then he skipped out": [65535, 0], "he hooked a doughnut then he skipped out and": [65535, 0], "hooked a doughnut then he skipped out and saw": [65535, 0], "a doughnut then he skipped out and saw sid": [65535, 0], "doughnut then he skipped out and saw sid just": [65535, 0], "then he skipped out and saw sid just starting": [65535, 0], "he skipped out and saw sid just starting up": [65535, 0], "skipped out and saw sid just starting up the": [65535, 0], "out and saw sid just starting up the outside": [65535, 0], "and saw sid just starting up the outside stairway": [65535, 0], "saw sid just starting up the outside stairway that": [65535, 0], "sid just starting up the outside stairway that led": [65535, 0], "just starting up the outside stairway that led to": [65535, 0], "starting up the outside stairway that led to the": [65535, 0], "up the outside stairway that led to the back": [65535, 0], "the outside stairway that led to the back rooms": [65535, 0], "outside stairway that led to the back rooms on": [65535, 0], "stairway that led to the back rooms on the": [65535, 0], "that led to the back rooms on the second": [65535, 0], "led to the back rooms on the second floor": [65535, 0], "to the back rooms on the second floor clods": [65535, 0], "the back rooms on the second floor clods were": [65535, 0], "back rooms on the second floor clods were handy": [65535, 0], "rooms on the second floor clods were handy and": [65535, 0], "on the second floor clods were handy and the": [65535, 0], "the second floor clods were handy and the air": [65535, 0], "second floor clods were handy and the air was": [65535, 0], "floor clods were handy and the air was full": [65535, 0], "clods were handy and the air was full of": [65535, 0], "were handy and the air was full of them": [65535, 0], "handy and the air was full of them in": [65535, 0], "and the air was full of them in a": [65535, 0], "the air was full of them in a twinkling": [65535, 0], "air was full of them in a twinkling they": [65535, 0], "was full of them in a twinkling they raged": [65535, 0], "full of them in a twinkling they raged around": [65535, 0], "of them in a twinkling they raged around sid": [65535, 0], "them in a twinkling they raged around sid like": [65535, 0], "in a twinkling they raged around sid like a": [65535, 0], "a twinkling they raged around sid like a hail": [65535, 0], "twinkling they raged around sid like a hail storm": [65535, 0], "they raged around sid like a hail storm and": [65535, 0], "raged around sid like a hail storm and before": [65535, 0], "around sid like a hail storm and before aunt": [65535, 0], "sid like a hail storm and before aunt polly": [65535, 0], "like a hail storm and before aunt polly could": [65535, 0], "a hail storm and before aunt polly could collect": [65535, 0], "hail storm and before aunt polly could collect her": [65535, 0], "storm and before aunt polly could collect her surprised": [65535, 0], "and before aunt polly could collect her surprised faculties": [65535, 0], "before aunt polly could collect her surprised faculties and": [65535, 0], "aunt polly could collect her surprised faculties and sally": [65535, 0], "polly could collect her surprised faculties and sally to": [65535, 0], "could collect her surprised faculties and sally to the": [65535, 0], "collect her surprised faculties and sally to the rescue": [65535, 0], "her surprised faculties and sally to the rescue six": [65535, 0], "surprised faculties and sally to the rescue six or": [65535, 0], "faculties and sally to the rescue six or seven": [65535, 0], "and sally to the rescue six or seven clods": [65535, 0], "sally to the rescue six or seven clods had": [65535, 0], "to the rescue six or seven clods had taken": [65535, 0], "the rescue six or seven clods had taken personal": [65535, 0], "rescue six or seven clods had taken personal effect": [65535, 0], "six or seven clods had taken personal effect and": [65535, 0], "or seven clods had taken personal effect and tom": [65535, 0], "seven clods had taken personal effect and tom was": [65535, 0], "clods had taken personal effect and tom was over": [65535, 0], "had taken personal effect and tom was over the": [65535, 0], "taken personal effect and tom was over the fence": [65535, 0], "personal effect and tom was over the fence and": [65535, 0], "effect and tom was over the fence and gone": [65535, 0], "and tom was over the fence and gone there": [65535, 0], "tom was over the fence and gone there was": [65535, 0], "was over the fence and gone there was a": [65535, 0], "over the fence and gone there was a gate": [65535, 0], "the fence and gone there was a gate but": [65535, 0], "fence and gone there was a gate but as": [65535, 0], "and gone there was a gate but as a": [65535, 0], "gone there was a gate but as a general": [65535, 0], "there was a gate but as a general thing": [65535, 0], "was a gate but as a general thing he": [65535, 0], "a gate but as a general thing he was": [65535, 0], "gate but as a general thing he was too": [65535, 0], "but as a general thing he was too crowded": [65535, 0], "as a general thing he was too crowded for": [65535, 0], "a general thing he was too crowded for time": [65535, 0], "general thing he was too crowded for time to": [65535, 0], "thing he was too crowded for time to make": [65535, 0], "he was too crowded for time to make use": [65535, 0], "was too crowded for time to make use of": [65535, 0], "too crowded for time to make use of it": [65535, 0], "crowded for time to make use of it his": [65535, 0], "for time to make use of it his soul": [65535, 0], "time to make use of it his soul was": [65535, 0], "to make use of it his soul was at": [65535, 0], "make use of it his soul was at peace": [65535, 0], "use of it his soul was at peace now": [65535, 0], "of it his soul was at peace now that": [65535, 0], "it his soul was at peace now that he": [65535, 0], "his soul was at peace now that he had": [65535, 0], "soul was at peace now that he had settled": [65535, 0], "was at peace now that he had settled with": [65535, 0], "at peace now that he had settled with sid": [65535, 0], "peace now that he had settled with sid for": [65535, 0], "now that he had settled with sid for calling": [65535, 0], "that he had settled with sid for calling attention": [65535, 0], "he had settled with sid for calling attention to": [65535, 0], "had settled with sid for calling attention to his": [65535, 0], "settled with sid for calling attention to his black": [65535, 0], "with sid for calling attention to his black thread": [65535, 0], "sid for calling attention to his black thread and": [65535, 0], "for calling attention to his black thread and getting": [65535, 0], "calling attention to his black thread and getting him": [65535, 0], "attention to his black thread and getting him into": [65535, 0], "to his black thread and getting him into trouble": [65535, 0], "his black thread and getting him into trouble tom": [65535, 0], "black thread and getting him into trouble tom skirted": [65535, 0], "thread and getting him into trouble tom skirted the": [65535, 0], "and getting him into trouble tom skirted the block": [65535, 0], "getting him into trouble tom skirted the block and": [65535, 0], "him into trouble tom skirted the block and came": [65535, 0], "into trouble tom skirted the block and came round": [65535, 0], "trouble tom skirted the block and came round into": [65535, 0], "tom skirted the block and came round into a": [65535, 0], "skirted the block and came round into a muddy": [65535, 0], "the block and came round into a muddy alley": [65535, 0], "block and came round into a muddy alley that": [65535, 0], "and came round into a muddy alley that led": [65535, 0], "came round into a muddy alley that led by": [65535, 0], "round into a muddy alley that led by the": [65535, 0], "into a muddy alley that led by the back": [65535, 0], "a muddy alley that led by the back of": [65535, 0], "muddy alley that led by the back of his": [65535, 0], "alley that led by the back of his aunt's": [65535, 0], "that led by the back of his aunt's cowstable": [65535, 0], "led by the back of his aunt's cowstable he": [65535, 0], "by the back of his aunt's cowstable he presently": [65535, 0], "the back of his aunt's cowstable he presently got": [65535, 0], "back of his aunt's cowstable he presently got safely": [65535, 0], "of his aunt's cowstable he presently got safely beyond": [65535, 0], "his aunt's cowstable he presently got safely beyond the": [65535, 0], "aunt's cowstable he presently got safely beyond the reach": [65535, 0], "cowstable he presently got safely beyond the reach of": [65535, 0], "he presently got safely beyond the reach of capture": [65535, 0], "presently got safely beyond the reach of capture and": [65535, 0], "got safely beyond the reach of capture and punishment": [65535, 0], "safely beyond the reach of capture and punishment and": [65535, 0], "beyond the reach of capture and punishment and hastened": [65535, 0], "the reach of capture and punishment and hastened toward": [65535, 0], "reach of capture and punishment and hastened toward the": [65535, 0], "of capture and punishment and hastened toward the public": [65535, 0], "capture and punishment and hastened toward the public square": [65535, 0], "and punishment and hastened toward the public square of": [65535, 0], "punishment and hastened toward the public square of the": [65535, 0], "and hastened toward the public square of the village": [65535, 0], "hastened toward the public square of the village where": [65535, 0], "toward the public square of the village where two": [65535, 0], "the public square of the village where two military": [65535, 0], "public square of the village where two military companies": [65535, 0], "square of the village where two military companies of": [65535, 0], "of the village where two military companies of boys": [65535, 0], "the village where two military companies of boys had": [65535, 0], "village where two military companies of boys had met": [65535, 0], "where two military companies of boys had met for": [65535, 0], "two military companies of boys had met for conflict": [65535, 0], "military companies of boys had met for conflict according": [65535, 0], "companies of boys had met for conflict according to": [65535, 0], "of boys had met for conflict according to previous": [65535, 0], "boys had met for conflict according to previous appointment": [65535, 0], "had met for conflict according to previous appointment tom": [65535, 0], "met for conflict according to previous appointment tom was": [65535, 0], "for conflict according to previous appointment tom was general": [65535, 0], "conflict according to previous appointment tom was general of": [65535, 0], "according to previous appointment tom was general of one": [65535, 0], "to previous appointment tom was general of one of": [65535, 0], "previous appointment tom was general of one of these": [65535, 0], "appointment tom was general of one of these armies": [65535, 0], "tom was general of one of these armies joe": [65535, 0], "was general of one of these armies joe harper": [65535, 0], "general of one of these armies joe harper a": [65535, 0], "of one of these armies joe harper a bosom": [65535, 0], "one of these armies joe harper a bosom friend": [65535, 0], "of these armies joe harper a bosom friend general": [65535, 0], "these armies joe harper a bosom friend general of": [65535, 0], "armies joe harper a bosom friend general of the": [65535, 0], "joe harper a bosom friend general of the other": [65535, 0], "harper a bosom friend general of the other these": [65535, 0], "a bosom friend general of the other these two": [65535, 0], "bosom friend general of the other these two great": [65535, 0], "friend general of the other these two great commanders": [65535, 0], "general of the other these two great commanders did": [65535, 0], "of the other these two great commanders did not": [65535, 0], "the other these two great commanders did not condescend": [65535, 0], "other these two great commanders did not condescend to": [65535, 0], "these two great commanders did not condescend to fight": [65535, 0], "two great commanders did not condescend to fight in": [65535, 0], "great commanders did not condescend to fight in person": [65535, 0], "commanders did not condescend to fight in person that": [65535, 0], "did not condescend to fight in person that being": [65535, 0], "not condescend to fight in person that being better": [65535, 0], "condescend to fight in person that being better suited": [65535, 0], "to fight in person that being better suited to": [65535, 0], "fight in person that being better suited to the": [65535, 0], "in person that being better suited to the still": [65535, 0], "person that being better suited to the still smaller": [65535, 0], "that being better suited to the still smaller fry": [65535, 0], "being better suited to the still smaller fry but": [65535, 0], "better suited to the still smaller fry but sat": [65535, 0], "suited to the still smaller fry but sat together": [65535, 0], "to the still smaller fry but sat together on": [65535, 0], "the still smaller fry but sat together on an": [65535, 0], "still smaller fry but sat together on an eminence": [65535, 0], "smaller fry but sat together on an eminence and": [65535, 0], "fry but sat together on an eminence and conducted": [65535, 0], "but sat together on an eminence and conducted the": [65535, 0], "sat together on an eminence and conducted the field": [65535, 0], "together on an eminence and conducted the field operations": [65535, 0], "on an eminence and conducted the field operations by": [65535, 0], "an eminence and conducted the field operations by orders": [65535, 0], "eminence and conducted the field operations by orders delivered": [65535, 0], "and conducted the field operations by orders delivered through": [65535, 0], "conducted the field operations by orders delivered through aides": [65535, 0], "the field operations by orders delivered through aides de": [65535, 0], "field operations by orders delivered through aides de camp": [65535, 0], "operations by orders delivered through aides de camp tom's": [65535, 0], "by orders delivered through aides de camp tom's army": [65535, 0], "orders delivered through aides de camp tom's army won": [65535, 0], "delivered through aides de camp tom's army won a": [65535, 0], "through aides de camp tom's army won a great": [65535, 0], "aides de camp tom's army won a great victory": [65535, 0], "de camp tom's army won a great victory after": [65535, 0], "camp tom's army won a great victory after a": [65535, 0], "tom's army won a great victory after a long": [65535, 0], "army won a great victory after a long and": [65535, 0], "won a great victory after a long and hard": [65535, 0], "a great victory after a long and hard fought": [65535, 0], "great victory after a long and hard fought battle": [65535, 0], "victory after a long and hard fought battle then": [65535, 0], "after a long and hard fought battle then the": [65535, 0], "a long and hard fought battle then the dead": [65535, 0], "long and hard fought battle then the dead were": [65535, 0], "and hard fought battle then the dead were counted": [65535, 0], "hard fought battle then the dead were counted prisoners": [65535, 0], "fought battle then the dead were counted prisoners exchanged": [65535, 0], "battle then the dead were counted prisoners exchanged the": [65535, 0], "then the dead were counted prisoners exchanged the terms": [65535, 0], "the dead were counted prisoners exchanged the terms of": [65535, 0], "dead were counted prisoners exchanged the terms of the": [65535, 0], "were counted prisoners exchanged the terms of the next": [65535, 0], "counted prisoners exchanged the terms of the next disagreement": [65535, 0], "prisoners exchanged the terms of the next disagreement agreed": [65535, 0], "exchanged the terms of the next disagreement agreed upon": [65535, 0], "the terms of the next disagreement agreed upon and": [65535, 0], "terms of the next disagreement agreed upon and the": [65535, 0], "of the next disagreement agreed upon and the day": [65535, 0], "the next disagreement agreed upon and the day for": [65535, 0], "next disagreement agreed upon and the day for the": [65535, 0], "disagreement agreed upon and the day for the necessary": [65535, 0], "agreed upon and the day for the necessary battle": [65535, 0], "upon and the day for the necessary battle appointed": [65535, 0], "and the day for the necessary battle appointed after": [65535, 0], "the day for the necessary battle appointed after which": [65535, 0], "day for the necessary battle appointed after which the": [65535, 0], "for the necessary battle appointed after which the armies": [65535, 0], "the necessary battle appointed after which the armies fell": [65535, 0], "necessary battle appointed after which the armies fell into": [65535, 0], "battle appointed after which the armies fell into line": [65535, 0], "appointed after which the armies fell into line and": [65535, 0], "after which the armies fell into line and marched": [65535, 0], "which the armies fell into line and marched away": [65535, 0], "the armies fell into line and marched away and": [65535, 0], "armies fell into line and marched away and tom": [65535, 0], "fell into line and marched away and tom turned": [65535, 0], "into line and marched away and tom turned homeward": [65535, 0], "line and marched away and tom turned homeward alone": [65535, 0], "and marched away and tom turned homeward alone as": [65535, 0], "marched away and tom turned homeward alone as he": [65535, 0], "away and tom turned homeward alone as he was": [65535, 0], "and tom turned homeward alone as he was passing": [65535, 0], "tom turned homeward alone as he was passing by": [65535, 0], "turned homeward alone as he was passing by the": [65535, 0], "homeward alone as he was passing by the house": [65535, 0], "alone as he was passing by the house where": [65535, 0], "as he was passing by the house where jeff": [65535, 0], "he was passing by the house where jeff thatcher": [65535, 0], "was passing by the house where jeff thatcher lived": [65535, 0], "passing by the house where jeff thatcher lived he": [65535, 0], "by the house where jeff thatcher lived he saw": [65535, 0], "the house where jeff thatcher lived he saw a": [65535, 0], "house where jeff thatcher lived he saw a new": [65535, 0], "where jeff thatcher lived he saw a new girl": [65535, 0], "jeff thatcher lived he saw a new girl in": [65535, 0], "thatcher lived he saw a new girl in the": [65535, 0], "lived he saw a new girl in the garden": [65535, 0], "he saw a new girl in the garden a": [65535, 0], "saw a new girl in the garden a lovely": [65535, 0], "a new girl in the garden a lovely little": [65535, 0], "new girl in the garden a lovely little blue": [65535, 0], "girl in the garden a lovely little blue eyed": [65535, 0], "in the garden a lovely little blue eyed creature": [65535, 0], "the garden a lovely little blue eyed creature with": [65535, 0], "garden a lovely little blue eyed creature with yellow": [65535, 0], "a lovely little blue eyed creature with yellow hair": [65535, 0], "lovely little blue eyed creature with yellow hair plaited": [65535, 0], "little blue eyed creature with yellow hair plaited into": [65535, 0], "blue eyed creature with yellow hair plaited into two": [65535, 0], "eyed creature with yellow hair plaited into two long": [65535, 0], "creature with yellow hair plaited into two long tails": [65535, 0], "with yellow hair plaited into two long tails white": [65535, 0], "yellow hair plaited into two long tails white summer": [65535, 0], "hair plaited into two long tails white summer frock": [65535, 0], "plaited into two long tails white summer frock and": [65535, 0], "into two long tails white summer frock and embroidered": [65535, 0], "two long tails white summer frock and embroidered pantalettes": [65535, 0], "long tails white summer frock and embroidered pantalettes the": [65535, 0], "tails white summer frock and embroidered pantalettes the fresh": [65535, 0], "white summer frock and embroidered pantalettes the fresh crowned": [65535, 0], "summer frock and embroidered pantalettes the fresh crowned hero": [65535, 0], "frock and embroidered pantalettes the fresh crowned hero fell": [65535, 0], "and embroidered pantalettes the fresh crowned hero fell without": [65535, 0], "embroidered pantalettes the fresh crowned hero fell without firing": [65535, 0], "pantalettes the fresh crowned hero fell without firing a": [65535, 0], "the fresh crowned hero fell without firing a shot": [65535, 0], "fresh crowned hero fell without firing a shot a": [65535, 0], "crowned hero fell without firing a shot a certain": [65535, 0], "hero fell without firing a shot a certain amy": [65535, 0], "fell without firing a shot a certain amy lawrence": [65535, 0], "without firing a shot a certain amy lawrence vanished": [65535, 0], "firing a shot a certain amy lawrence vanished out": [65535, 0], "a shot a certain amy lawrence vanished out of": [65535, 0], "shot a certain amy lawrence vanished out of his": [65535, 0], "a certain amy lawrence vanished out of his heart": [65535, 0], "certain amy lawrence vanished out of his heart and": [65535, 0], "amy lawrence vanished out of his heart and left": [65535, 0], "lawrence vanished out of his heart and left not": [65535, 0], "vanished out of his heart and left not even": [65535, 0], "out of his heart and left not even a": [65535, 0], "of his heart and left not even a memory": [65535, 0], "his heart and left not even a memory of": [65535, 0], "heart and left not even a memory of herself": [65535, 0], "and left not even a memory of herself behind": [65535, 0], "left not even a memory of herself behind he": [65535, 0], "not even a memory of herself behind he had": [65535, 0], "even a memory of herself behind he had thought": [65535, 0], "a memory of herself behind he had thought he": [65535, 0], "memory of herself behind he had thought he loved": [65535, 0], "of herself behind he had thought he loved her": [65535, 0], "herself behind he had thought he loved her to": [65535, 0], "behind he had thought he loved her to distraction": [65535, 0], "he had thought he loved her to distraction he": [65535, 0], "had thought he loved her to distraction he had": [65535, 0], "thought he loved her to distraction he had regarded": [65535, 0], "he loved her to distraction he had regarded his": [65535, 0], "loved her to distraction he had regarded his passion": [65535, 0], "her to distraction he had regarded his passion as": [65535, 0], "to distraction he had regarded his passion as adoration": [65535, 0], "distraction he had regarded his passion as adoration and": [65535, 0], "he had regarded his passion as adoration and behold": [65535, 0], "had regarded his passion as adoration and behold it": [65535, 0], "regarded his passion as adoration and behold it was": [65535, 0], "his passion as adoration and behold it was only": [65535, 0], "passion as adoration and behold it was only a": [65535, 0], "as adoration and behold it was only a poor": [65535, 0], "adoration and behold it was only a poor little": [65535, 0], "and behold it was only a poor little evanescent": [65535, 0], "behold it was only a poor little evanescent partiality": [65535, 0], "it was only a poor little evanescent partiality he": [65535, 0], "was only a poor little evanescent partiality he had": [65535, 0], "only a poor little evanescent partiality he had been": [65535, 0], "a poor little evanescent partiality he had been months": [65535, 0], "poor little evanescent partiality he had been months winning": [65535, 0], "little evanescent partiality he had been months winning her": [65535, 0], "evanescent partiality he had been months winning her she": [65535, 0], "partiality he had been months winning her she had": [65535, 0], "he had been months winning her she had confessed": [65535, 0], "had been months winning her she had confessed hardly": [65535, 0], "been months winning her she had confessed hardly a": [65535, 0], "months winning her she had confessed hardly a week": [65535, 0], "winning her she had confessed hardly a week ago": [65535, 0], "her she had confessed hardly a week ago he": [65535, 0], "she had confessed hardly a week ago he had": [65535, 0], "had confessed hardly a week ago he had been": [65535, 0], "confessed hardly a week ago he had been the": [65535, 0], "hardly a week ago he had been the happiest": [65535, 0], "a week ago he had been the happiest and": [65535, 0], "week ago he had been the happiest and the": [65535, 0], "ago he had been the happiest and the proudest": [65535, 0], "he had been the happiest and the proudest boy": [65535, 0], "had been the happiest and the proudest boy in": [65535, 0], "been the happiest and the proudest boy in the": [65535, 0], "the happiest and the proudest boy in the world": [65535, 0], "happiest and the proudest boy in the world only": [65535, 0], "and the proudest boy in the world only seven": [65535, 0], "the proudest boy in the world only seven short": [65535, 0], "proudest boy in the world only seven short days": [65535, 0], "boy in the world only seven short days and": [65535, 0], "in the world only seven short days and here": [65535, 0], "the world only seven short days and here in": [65535, 0], "world only seven short days and here in one": [65535, 0], "only seven short days and here in one instant": [65535, 0], "seven short days and here in one instant of": [65535, 0], "short days and here in one instant of time": [65535, 0], "days and here in one instant of time she": [65535, 0], "and here in one instant of time she had": [65535, 0], "here in one instant of time she had gone": [65535, 0], "in one instant of time she had gone out": [65535, 0], "one instant of time she had gone out of": [65535, 0], "instant of time she had gone out of his": [65535, 0], "of time she had gone out of his heart": [65535, 0], "time she had gone out of his heart like": [65535, 0], "she had gone out of his heart like a": [65535, 0], "had gone out of his heart like a casual": [65535, 0], "gone out of his heart like a casual stranger": [65535, 0], "out of his heart like a casual stranger whose": [65535, 0], "of his heart like a casual stranger whose visit": [65535, 0], "his heart like a casual stranger whose visit is": [65535, 0], "heart like a casual stranger whose visit is done": [65535, 0], "like a casual stranger whose visit is done he": [65535, 0], "a casual stranger whose visit is done he worshipped": [65535, 0], "casual stranger whose visit is done he worshipped this": [65535, 0], "stranger whose visit is done he worshipped this new": [65535, 0], "whose visit is done he worshipped this new angel": [65535, 0], "visit is done he worshipped this new angel with": [65535, 0], "is done he worshipped this new angel with furtive": [65535, 0], "done he worshipped this new angel with furtive eye": [65535, 0], "he worshipped this new angel with furtive eye till": [65535, 0], "worshipped this new angel with furtive eye till he": [65535, 0], "this new angel with furtive eye till he saw": [65535, 0], "new angel with furtive eye till he saw that": [65535, 0], "angel with furtive eye till he saw that she": [65535, 0], "with furtive eye till he saw that she had": [65535, 0], "furtive eye till he saw that she had discovered": [65535, 0], "eye till he saw that she had discovered him": [65535, 0], "till he saw that she had discovered him then": [65535, 0], "he saw that she had discovered him then he": [65535, 0], "saw that she had discovered him then he pretended": [65535, 0], "that she had discovered him then he pretended he": [65535, 0], "she had discovered him then he pretended he did": [65535, 0], "had discovered him then he pretended he did not": [65535, 0], "discovered him then he pretended he did not know": [65535, 0], "him then he pretended he did not know she": [65535, 0], "then he pretended he did not know she was": [65535, 0], "he pretended he did not know she was present": [65535, 0], "pretended he did not know she was present and": [65535, 0], "he did not know she was present and began": [65535, 0], "did not know she was present and began to": [65535, 0], "not know she was present and began to show": [65535, 0], "know she was present and began to show off": [65535, 0], "she was present and began to show off in": [65535, 0], "was present and began to show off in all": [65535, 0], "present and began to show off in all sorts": [65535, 0], "and began to show off in all sorts of": [65535, 0], "began to show off in all sorts of absurd": [65535, 0], "to show off in all sorts of absurd boyish": [65535, 0], "show off in all sorts of absurd boyish ways": [65535, 0], "off in all sorts of absurd boyish ways in": [65535, 0], "in all sorts of absurd boyish ways in order": [65535, 0], "all sorts of absurd boyish ways in order to": [65535, 0], "sorts of absurd boyish ways in order to win": [65535, 0], "of absurd boyish ways in order to win her": [65535, 0], "absurd boyish ways in order to win her admiration": [65535, 0], "boyish ways in order to win her admiration he": [65535, 0], "ways in order to win her admiration he kept": [65535, 0], "in order to win her admiration he kept up": [65535, 0], "order to win her admiration he kept up this": [65535, 0], "to win her admiration he kept up this grotesque": [65535, 0], "win her admiration he kept up this grotesque foolishness": [65535, 0], "her admiration he kept up this grotesque foolishness for": [65535, 0], "admiration he kept up this grotesque foolishness for some": [65535, 0], "he kept up this grotesque foolishness for some time": [65535, 0], "kept up this grotesque foolishness for some time but": [65535, 0], "up this grotesque foolishness for some time but by": [65535, 0], "this grotesque foolishness for some time but by and": [65535, 0], "grotesque foolishness for some time but by and by": [65535, 0], "foolishness for some time but by and by while": [65535, 0], "for some time but by and by while he": [65535, 0], "some time but by and by while he was": [65535, 0], "time but by and by while he was in": [65535, 0], "but by and by while he was in the": [65535, 0], "by and by while he was in the midst": [65535, 0], "and by while he was in the midst of": [65535, 0], "by while he was in the midst of some": [65535, 0], "while he was in the midst of some dangerous": [65535, 0], "he was in the midst of some dangerous gymnastic": [65535, 0], "was in the midst of some dangerous gymnastic performances": [65535, 0], "in the midst of some dangerous gymnastic performances he": [65535, 0], "the midst of some dangerous gymnastic performances he glanced": [65535, 0], "midst of some dangerous gymnastic performances he glanced aside": [65535, 0], "of some dangerous gymnastic performances he glanced aside and": [65535, 0], "some dangerous gymnastic performances he glanced aside and saw": [65535, 0], "dangerous gymnastic performances he glanced aside and saw that": [65535, 0], "gymnastic performances he glanced aside and saw that the": [65535, 0], "performances he glanced aside and saw that the little": [65535, 0], "he glanced aside and saw that the little girl": [65535, 0], "glanced aside and saw that the little girl was": [65535, 0], "aside and saw that the little girl was wending": [65535, 0], "and saw that the little girl was wending her": [65535, 0], "saw that the little girl was wending her way": [65535, 0], "that the little girl was wending her way toward": [65535, 0], "the little girl was wending her way toward the": [65535, 0], "little girl was wending her way toward the house": [65535, 0], "girl was wending her way toward the house tom": [65535, 0], "was wending her way toward the house tom came": [65535, 0], "wending her way toward the house tom came up": [65535, 0], "her way toward the house tom came up to": [65535, 0], "way toward the house tom came up to the": [65535, 0], "toward the house tom came up to the fence": [65535, 0], "the house tom came up to the fence and": [65535, 0], "house tom came up to the fence and leaned": [65535, 0], "tom came up to the fence and leaned on": [65535, 0], "came up to the fence and leaned on it": [65535, 0], "up to the fence and leaned on it grieving": [65535, 0], "to the fence and leaned on it grieving and": [65535, 0], "the fence and leaned on it grieving and hoping": [65535, 0], "fence and leaned on it grieving and hoping she": [65535, 0], "and leaned on it grieving and hoping she would": [65535, 0], "leaned on it grieving and hoping she would tarry": [65535, 0], "on it grieving and hoping she would tarry yet": [65535, 0], "it grieving and hoping she would tarry yet awhile": [65535, 0], "grieving and hoping she would tarry yet awhile longer": [65535, 0], "and hoping she would tarry yet awhile longer she": [65535, 0], "hoping she would tarry yet awhile longer she halted": [65535, 0], "she would tarry yet awhile longer she halted a": [65535, 0], "would tarry yet awhile longer she halted a moment": [65535, 0], "tarry yet awhile longer she halted a moment on": [65535, 0], "yet awhile longer she halted a moment on the": [65535, 0], "awhile longer she halted a moment on the steps": [65535, 0], "longer she halted a moment on the steps and": [65535, 0], "she halted a moment on the steps and then": [65535, 0], "halted a moment on the steps and then moved": [65535, 0], "a moment on the steps and then moved toward": [65535, 0], "moment on the steps and then moved toward the": [65535, 0], "on the steps and then moved toward the door": [65535, 0], "the steps and then moved toward the door tom": [65535, 0], "steps and then moved toward the door tom heaved": [65535, 0], "and then moved toward the door tom heaved a": [65535, 0], "then moved toward the door tom heaved a great": [65535, 0], "moved toward the door tom heaved a great sigh": [65535, 0], "toward the door tom heaved a great sigh as": [65535, 0], "the door tom heaved a great sigh as she": [65535, 0], "door tom heaved a great sigh as she put": [65535, 0], "tom heaved a great sigh as she put her": [65535, 0], "heaved a great sigh as she put her foot": [65535, 0], "a great sigh as she put her foot on": [65535, 0], "great sigh as she put her foot on the": [65535, 0], "sigh as she put her foot on the threshold": [65535, 0], "as she put her foot on the threshold but": [65535, 0], "she put her foot on the threshold but his": [65535, 0], "put her foot on the threshold but his face": [65535, 0], "her foot on the threshold but his face lit": [65535, 0], "foot on the threshold but his face lit up": [65535, 0], "on the threshold but his face lit up right": [65535, 0], "the threshold but his face lit up right away": [65535, 0], "threshold but his face lit up right away for": [65535, 0], "but his face lit up right away for she": [65535, 0], "his face lit up right away for she tossed": [65535, 0], "face lit up right away for she tossed a": [65535, 0], "lit up right away for she tossed a pansy": [65535, 0], "up right away for she tossed a pansy over": [65535, 0], "right away for she tossed a pansy over the": [65535, 0], "away for she tossed a pansy over the fence": [65535, 0], "for she tossed a pansy over the fence a": [65535, 0], "she tossed a pansy over the fence a moment": [65535, 0], "tossed a pansy over the fence a moment before": [65535, 0], "a pansy over the fence a moment before she": [65535, 0], "pansy over the fence a moment before she disappeared": [65535, 0], "over the fence a moment before she disappeared the": [65535, 0], "the fence a moment before she disappeared the boy": [65535, 0], "fence a moment before she disappeared the boy ran": [65535, 0], "a moment before she disappeared the boy ran around": [65535, 0], "moment before she disappeared the boy ran around and": [65535, 0], "before she disappeared the boy ran around and stopped": [65535, 0], "she disappeared the boy ran around and stopped within": [65535, 0], "disappeared the boy ran around and stopped within a": [65535, 0], "the boy ran around and stopped within a foot": [65535, 0], "boy ran around and stopped within a foot or": [65535, 0], "ran around and stopped within a foot or two": [65535, 0], "around and stopped within a foot or two of": [65535, 0], "and stopped within a foot or two of the": [65535, 0], "stopped within a foot or two of the flower": [65535, 0], "within a foot or two of the flower and": [65535, 0], "a foot or two of the flower and then": [65535, 0], "foot or two of the flower and then shaded": [65535, 0], "or two of the flower and then shaded his": [65535, 0], "two of the flower and then shaded his eyes": [65535, 0], "of the flower and then shaded his eyes with": [65535, 0], "the flower and then shaded his eyes with his": [65535, 0], "flower and then shaded his eyes with his hand": [65535, 0], "and then shaded his eyes with his hand and": [65535, 0], "then shaded his eyes with his hand and began": [65535, 0], "shaded his eyes with his hand and began to": [65535, 0], "his eyes with his hand and began to look": [65535, 0], "eyes with his hand and began to look down": [65535, 0], "with his hand and began to look down street": [65535, 0], "his hand and began to look down street as": [65535, 0], "hand and began to look down street as if": [65535, 0], "and began to look down street as if he": [65535, 0], "began to look down street as if he had": [65535, 0], "to look down street as if he had discovered": [65535, 0], "look down street as if he had discovered something": [65535, 0], "down street as if he had discovered something of": [65535, 0], "street as if he had discovered something of interest": [65535, 0], "as if he had discovered something of interest going": [65535, 0], "if he had discovered something of interest going on": [65535, 0], "he had discovered something of interest going on in": [65535, 0], "had discovered something of interest going on in that": [65535, 0], "discovered something of interest going on in that direction": [65535, 0], "something of interest going on in that direction presently": [65535, 0], "of interest going on in that direction presently he": [65535, 0], "interest going on in that direction presently he picked": [65535, 0], "going on in that direction presently he picked up": [65535, 0], "on in that direction presently he picked up a": [65535, 0], "in that direction presently he picked up a straw": [65535, 0], "that direction presently he picked up a straw and": [65535, 0], "direction presently he picked up a straw and began": [65535, 0], "presently he picked up a straw and began trying": [65535, 0], "he picked up a straw and began trying to": [65535, 0], "picked up a straw and began trying to balance": [65535, 0], "up a straw and began trying to balance it": [65535, 0], "a straw and began trying to balance it on": [65535, 0], "straw and began trying to balance it on his": [65535, 0], "and began trying to balance it on his nose": [65535, 0], "began trying to balance it on his nose with": [65535, 0], "trying to balance it on his nose with his": [65535, 0], "to balance it on his nose with his head": [65535, 0], "balance it on his nose with his head tilted": [65535, 0], "it on his nose with his head tilted far": [65535, 0], "on his nose with his head tilted far back": [65535, 0], "his nose with his head tilted far back and": [65535, 0], "nose with his head tilted far back and as": [65535, 0], "with his head tilted far back and as he": [65535, 0], "his head tilted far back and as he moved": [65535, 0], "head tilted far back and as he moved from": [65535, 0], "tilted far back and as he moved from side": [65535, 0], "far back and as he moved from side to": [65535, 0], "back and as he moved from side to side": [65535, 0], "and as he moved from side to side in": [65535, 0], "as he moved from side to side in his": [65535, 0], "he moved from side to side in his efforts": [65535, 0], "moved from side to side in his efforts he": [65535, 0], "from side to side in his efforts he edged": [65535, 0], "side to side in his efforts he edged nearer": [65535, 0], "to side in his efforts he edged nearer and": [65535, 0], "side in his efforts he edged nearer and nearer": [65535, 0], "in his efforts he edged nearer and nearer toward": [65535, 0], "his efforts he edged nearer and nearer toward the": [65535, 0], "efforts he edged nearer and nearer toward the pansy": [65535, 0], "he edged nearer and nearer toward the pansy finally": [65535, 0], "edged nearer and nearer toward the pansy finally his": [65535, 0], "nearer and nearer toward the pansy finally his bare": [65535, 0], "and nearer toward the pansy finally his bare foot": [65535, 0], "nearer toward the pansy finally his bare foot rested": [65535, 0], "toward the pansy finally his bare foot rested upon": [65535, 0], "the pansy finally his bare foot rested upon it": [65535, 0], "pansy finally his bare foot rested upon it his": [65535, 0], "finally his bare foot rested upon it his pliant": [65535, 0], "his bare foot rested upon it his pliant toes": [65535, 0], "bare foot rested upon it his pliant toes closed": [65535, 0], "foot rested upon it his pliant toes closed upon": [65535, 0], "rested upon it his pliant toes closed upon it": [65535, 0], "upon it his pliant toes closed upon it and": [65535, 0], "it his pliant toes closed upon it and he": [65535, 0], "his pliant toes closed upon it and he hopped": [65535, 0], "pliant toes closed upon it and he hopped away": [65535, 0], "toes closed upon it and he hopped away with": [65535, 0], "closed upon it and he hopped away with the": [65535, 0], "upon it and he hopped away with the treasure": [65535, 0], "it and he hopped away with the treasure and": [65535, 0], "and he hopped away with the treasure and disappeared": [65535, 0], "he hopped away with the treasure and disappeared round": [65535, 0], "hopped away with the treasure and disappeared round the": [65535, 0], "away with the treasure and disappeared round the corner": [65535, 0], "with the treasure and disappeared round the corner but": [65535, 0], "the treasure and disappeared round the corner but only": [65535, 0], "treasure and disappeared round the corner but only for": [65535, 0], "and disappeared round the corner but only for a": [65535, 0], "disappeared round the corner but only for a minute": [65535, 0], "round the corner but only for a minute only": [65535, 0], "the corner but only for a minute only while": [65535, 0], "corner but only for a minute only while he": [65535, 0], "but only for a minute only while he could": [65535, 0], "only for a minute only while he could button": [65535, 0], "for a minute only while he could button the": [65535, 0], "a minute only while he could button the flower": [65535, 0], "minute only while he could button the flower inside": [65535, 0], "only while he could button the flower inside his": [65535, 0], "while he could button the flower inside his jacket": [65535, 0], "he could button the flower inside his jacket next": [65535, 0], "could button the flower inside his jacket next his": [65535, 0], "button the flower inside his jacket next his heart": [65535, 0], "the flower inside his jacket next his heart or": [65535, 0], "flower inside his jacket next his heart or next": [65535, 0], "inside his jacket next his heart or next his": [65535, 0], "his jacket next his heart or next his stomach": [65535, 0], "jacket next his heart or next his stomach possibly": [65535, 0], "next his heart or next his stomach possibly for": [65535, 0], "his heart or next his stomach possibly for he": [65535, 0], "heart or next his stomach possibly for he was": [65535, 0], "or next his stomach possibly for he was not": [65535, 0], "next his stomach possibly for he was not much": [65535, 0], "his stomach possibly for he was not much posted": [65535, 0], "stomach possibly for he was not much posted in": [65535, 0], "possibly for he was not much posted in anatomy": [65535, 0], "for he was not much posted in anatomy and": [65535, 0], "he was not much posted in anatomy and not": [65535, 0], "was not much posted in anatomy and not hypercritical": [65535, 0], "not much posted in anatomy and not hypercritical anyway": [65535, 0], "much posted in anatomy and not hypercritical anyway he": [65535, 0], "posted in anatomy and not hypercritical anyway he returned": [65535, 0], "in anatomy and not hypercritical anyway he returned now": [65535, 0], "anatomy and not hypercritical anyway he returned now and": [65535, 0], "and not hypercritical anyway he returned now and hung": [65535, 0], "not hypercritical anyway he returned now and hung about": [65535, 0], "hypercritical anyway he returned now and hung about the": [65535, 0], "anyway he returned now and hung about the fence": [65535, 0], "he returned now and hung about the fence till": [65535, 0], "returned now and hung about the fence till nightfall": [65535, 0], "now and hung about the fence till nightfall showing": [65535, 0], "and hung about the fence till nightfall showing off": [65535, 0], "hung about the fence till nightfall showing off as": [65535, 0], "about the fence till nightfall showing off as before": [65535, 0], "the fence till nightfall showing off as before but": [65535, 0], "fence till nightfall showing off as before but the": [65535, 0], "till nightfall showing off as before but the girl": [65535, 0], "nightfall showing off as before but the girl never": [65535, 0], "showing off as before but the girl never exhibited": [65535, 0], "off as before but the girl never exhibited herself": [65535, 0], "as before but the girl never exhibited herself again": [65535, 0], "before but the girl never exhibited herself again though": [65535, 0], "but the girl never exhibited herself again though tom": [65535, 0], "the girl never exhibited herself again though tom comforted": [65535, 0], "girl never exhibited herself again though tom comforted himself": [65535, 0], "never exhibited herself again though tom comforted himself a": [65535, 0], "exhibited herself again though tom comforted himself a little": [65535, 0], "herself again though tom comforted himself a little with": [65535, 0], "again though tom comforted himself a little with the": [65535, 0], "though tom comforted himself a little with the hope": [65535, 0], "tom comforted himself a little with the hope that": [65535, 0], "comforted himself a little with the hope that she": [65535, 0], "himself a little with the hope that she had": [65535, 0], "a little with the hope that she had been": [65535, 0], "little with the hope that she had been near": [65535, 0], "with the hope that she had been near some": [65535, 0], "the hope that she had been near some window": [65535, 0], "hope that she had been near some window meantime": [65535, 0], "that she had been near some window meantime and": [65535, 0], "she had been near some window meantime and been": [65535, 0], "had been near some window meantime and been aware": [65535, 0], "been near some window meantime and been aware of": [65535, 0], "near some window meantime and been aware of his": [65535, 0], "some window meantime and been aware of his attentions": [65535, 0], "window meantime and been aware of his attentions finally": [65535, 0], "meantime and been aware of his attentions finally he": [65535, 0], "and been aware of his attentions finally he strode": [65535, 0], "been aware of his attentions finally he strode home": [65535, 0], "aware of his attentions finally he strode home reluctantly": [65535, 0], "of his attentions finally he strode home reluctantly with": [65535, 0], "his attentions finally he strode home reluctantly with his": [65535, 0], "attentions finally he strode home reluctantly with his poor": [65535, 0], "finally he strode home reluctantly with his poor head": [65535, 0], "he strode home reluctantly with his poor head full": [65535, 0], "strode home reluctantly with his poor head full of": [65535, 0], "home reluctantly with his poor head full of visions": [65535, 0], "reluctantly with his poor head full of visions all": [65535, 0], "with his poor head full of visions all through": [65535, 0], "his poor head full of visions all through supper": [65535, 0], "poor head full of visions all through supper his": [65535, 0], "head full of visions all through supper his spirits": [65535, 0], "full of visions all through supper his spirits were": [65535, 0], "of visions all through supper his spirits were so": [65535, 0], "visions all through supper his spirits were so high": [65535, 0], "all through supper his spirits were so high that": [65535, 0], "through supper his spirits were so high that his": [65535, 0], "supper his spirits were so high that his aunt": [65535, 0], "his spirits were so high that his aunt wondered": [65535, 0], "spirits were so high that his aunt wondered what": [65535, 0], "were so high that his aunt wondered what had": [65535, 0], "so high that his aunt wondered what had got": [65535, 0], "high that his aunt wondered what had got into": [65535, 0], "that his aunt wondered what had got into the": [65535, 0], "his aunt wondered what had got into the child": [65535, 0], "aunt wondered what had got into the child he": [65535, 0], "wondered what had got into the child he took": [65535, 0], "what had got into the child he took a": [65535, 0], "had got into the child he took a good": [65535, 0], "got into the child he took a good scolding": [65535, 0], "into the child he took a good scolding about": [65535, 0], "the child he took a good scolding about clodding": [65535, 0], "child he took a good scolding about clodding sid": [65535, 0], "he took a good scolding about clodding sid and": [65535, 0], "took a good scolding about clodding sid and did": [65535, 0], "a good scolding about clodding sid and did not": [65535, 0], "good scolding about clodding sid and did not seem": [65535, 0], "scolding about clodding sid and did not seem to": [65535, 0], "about clodding sid and did not seem to mind": [65535, 0], "clodding sid and did not seem to mind it": [65535, 0], "sid and did not seem to mind it in": [65535, 0], "and did not seem to mind it in the": [65535, 0], "did not seem to mind it in the least": [65535, 0], "not seem to mind it in the least he": [65535, 0], "seem to mind it in the least he tried": [65535, 0], "to mind it in the least he tried to": [65535, 0], "mind it in the least he tried to steal": [65535, 0], "it in the least he tried to steal sugar": [65535, 0], "in the least he tried to steal sugar under": [65535, 0], "the least he tried to steal sugar under his": [65535, 0], "least he tried to steal sugar under his aunt's": [65535, 0], "he tried to steal sugar under his aunt's very": [65535, 0], "tried to steal sugar under his aunt's very nose": [65535, 0], "to steal sugar under his aunt's very nose and": [65535, 0], "steal sugar under his aunt's very nose and got": [65535, 0], "sugar under his aunt's very nose and got his": [65535, 0], "under his aunt's very nose and got his knuckles": [65535, 0], "his aunt's very nose and got his knuckles rapped": [65535, 0], "aunt's very nose and got his knuckles rapped for": [65535, 0], "very nose and got his knuckles rapped for it": [65535, 0], "nose and got his knuckles rapped for it he": [65535, 0], "and got his knuckles rapped for it he said": [65535, 0], "got his knuckles rapped for it he said aunt": [65535, 0], "his knuckles rapped for it he said aunt you": [65535, 0], "knuckles rapped for it he said aunt you don't": [65535, 0], "rapped for it he said aunt you don't whack": [65535, 0], "for it he said aunt you don't whack sid": [65535, 0], "it he said aunt you don't whack sid when": [65535, 0], "he said aunt you don't whack sid when he": [65535, 0], "said aunt you don't whack sid when he takes": [65535, 0], "aunt you don't whack sid when he takes it": [65535, 0], "you don't whack sid when he takes it well": [65535, 0], "don't whack sid when he takes it well sid": [65535, 0], "whack sid when he takes it well sid don't": [65535, 0], "sid when he takes it well sid don't torment": [65535, 0], "when he takes it well sid don't torment a": [65535, 0], "he takes it well sid don't torment a body": [65535, 0], "takes it well sid don't torment a body the": [65535, 0], "it well sid don't torment a body the way": [65535, 0], "well sid don't torment a body the way you": [65535, 0], "sid don't torment a body the way you do": [65535, 0], "don't torment a body the way you do you'd": [65535, 0], "torment a body the way you do you'd be": [65535, 0], "a body the way you do you'd be always": [65535, 0], "body the way you do you'd be always into": [65535, 0], "the way you do you'd be always into that": [65535, 0], "way you do you'd be always into that sugar": [65535, 0], "you do you'd be always into that sugar if": [65535, 0], "do you'd be always into that sugar if i": [65535, 0], "you'd be always into that sugar if i warn't": [65535, 0], "be always into that sugar if i warn't watching": [65535, 0], "always into that sugar if i warn't watching you": [65535, 0], "into that sugar if i warn't watching you presently": [65535, 0], "that sugar if i warn't watching you presently she": [65535, 0], "sugar if i warn't watching you presently she stepped": [65535, 0], "if i warn't watching you presently she stepped into": [65535, 0], "i warn't watching you presently she stepped into the": [65535, 0], "warn't watching you presently she stepped into the kitchen": [65535, 0], "watching you presently she stepped into the kitchen and": [65535, 0], "you presently she stepped into the kitchen and sid": [65535, 0], "presently she stepped into the kitchen and sid happy": [65535, 0], "she stepped into the kitchen and sid happy in": [65535, 0], "stepped into the kitchen and sid happy in his": [65535, 0], "into the kitchen and sid happy in his immunity": [65535, 0], "the kitchen and sid happy in his immunity reached": [65535, 0], "kitchen and sid happy in his immunity reached for": [65535, 0], "and sid happy in his immunity reached for the": [65535, 0], "sid happy in his immunity reached for the sugar": [65535, 0], "happy in his immunity reached for the sugar bowl": [65535, 0], "in his immunity reached for the sugar bowl a": [65535, 0], "his immunity reached for the sugar bowl a sort": [65535, 0], "immunity reached for the sugar bowl a sort of": [65535, 0], "reached for the sugar bowl a sort of glorying": [65535, 0], "for the sugar bowl a sort of glorying over": [65535, 0], "the sugar bowl a sort of glorying over tom": [65535, 0], "sugar bowl a sort of glorying over tom which": [65535, 0], "bowl a sort of glorying over tom which was": [65535, 0], "a sort of glorying over tom which was well": [65535, 0], "sort of glorying over tom which was well nigh": [65535, 0], "of glorying over tom which was well nigh unbearable": [65535, 0], "glorying over tom which was well nigh unbearable but": [65535, 0], "over tom which was well nigh unbearable but sid's": [65535, 0], "tom which was well nigh unbearable but sid's fingers": [65535, 0], "which was well nigh unbearable but sid's fingers slipped": [65535, 0], "was well nigh unbearable but sid's fingers slipped and": [65535, 0], "well nigh unbearable but sid's fingers slipped and the": [65535, 0], "nigh unbearable but sid's fingers slipped and the bowl": [65535, 0], "unbearable but sid's fingers slipped and the bowl dropped": [65535, 0], "but sid's fingers slipped and the bowl dropped and": [65535, 0], "sid's fingers slipped and the bowl dropped and broke": [65535, 0], "fingers slipped and the bowl dropped and broke tom": [65535, 0], "slipped and the bowl dropped and broke tom was": [65535, 0], "and the bowl dropped and broke tom was in": [65535, 0], "the bowl dropped and broke tom was in ecstasies": [65535, 0], "bowl dropped and broke tom was in ecstasies in": [65535, 0], "dropped and broke tom was in ecstasies in such": [65535, 0], "and broke tom was in ecstasies in such ecstasies": [65535, 0], "broke tom was in ecstasies in such ecstasies that": [65535, 0], "tom was in ecstasies in such ecstasies that he": [65535, 0], "was in ecstasies in such ecstasies that he even": [65535, 0], "in ecstasies in such ecstasies that he even controlled": [65535, 0], "ecstasies in such ecstasies that he even controlled his": [65535, 0], "in such ecstasies that he even controlled his tongue": [65535, 0], "such ecstasies that he even controlled his tongue and": [65535, 0], "ecstasies that he even controlled his tongue and was": [65535, 0], "that he even controlled his tongue and was silent": [65535, 0], "he even controlled his tongue and was silent he": [65535, 0], "even controlled his tongue and was silent he said": [65535, 0], "controlled his tongue and was silent he said to": [65535, 0], "his tongue and was silent he said to himself": [65535, 0], "tongue and was silent he said to himself that": [65535, 0], "and was silent he said to himself that he": [65535, 0], "was silent he said to himself that he would": [65535, 0], "silent he said to himself that he would not": [65535, 0], "he said to himself that he would not speak": [65535, 0], "said to himself that he would not speak a": [65535, 0], "to himself that he would not speak a word": [65535, 0], "himself that he would not speak a word even": [65535, 0], "that he would not speak a word even when": [65535, 0], "he would not speak a word even when his": [65535, 0], "would not speak a word even when his aunt": [65535, 0], "not speak a word even when his aunt came": [65535, 0], "speak a word even when his aunt came in": [65535, 0], "a word even when his aunt came in but": [65535, 0], "word even when his aunt came in but would": [65535, 0], "even when his aunt came in but would sit": [65535, 0], "when his aunt came in but would sit perfectly": [65535, 0], "his aunt came in but would sit perfectly still": [65535, 0], "aunt came in but would sit perfectly still till": [65535, 0], "came in but would sit perfectly still till she": [65535, 0], "in but would sit perfectly still till she asked": [65535, 0], "but would sit perfectly still till she asked who": [65535, 0], "would sit perfectly still till she asked who did": [65535, 0], "sit perfectly still till she asked who did the": [65535, 0], "perfectly still till she asked who did the mischief": [65535, 0], "still till she asked who did the mischief and": [65535, 0], "till she asked who did the mischief and then": [65535, 0], "she asked who did the mischief and then he": [65535, 0], "asked who did the mischief and then he would": [65535, 0], "who did the mischief and then he would tell": [65535, 0], "did the mischief and then he would tell and": [65535, 0], "the mischief and then he would tell and there": [65535, 0], "mischief and then he would tell and there would": [65535, 0], "and then he would tell and there would be": [65535, 0], "then he would tell and there would be nothing": [65535, 0], "he would tell and there would be nothing so": [65535, 0], "would tell and there would be nothing so good": [65535, 0], "tell and there would be nothing so good in": [65535, 0], "and there would be nothing so good in the": [65535, 0], "there would be nothing so good in the world": [65535, 0], "would be nothing so good in the world as": [65535, 0], "be nothing so good in the world as to": [65535, 0], "nothing so good in the world as to see": [65535, 0], "so good in the world as to see that": [65535, 0], "good in the world as to see that pet": [65535, 0], "in the world as to see that pet model": [65535, 0], "the world as to see that pet model catch": [65535, 0], "world as to see that pet model catch it": [65535, 0], "as to see that pet model catch it he": [65535, 0], "to see that pet model catch it he was": [65535, 0], "see that pet model catch it he was so": [65535, 0], "that pet model catch it he was so brimful": [65535, 0], "pet model catch it he was so brimful of": [65535, 0], "model catch it he was so brimful of exultation": [65535, 0], "catch it he was so brimful of exultation that": [65535, 0], "it he was so brimful of exultation that he": [65535, 0], "he was so brimful of exultation that he could": [65535, 0], "was so brimful of exultation that he could hardly": [65535, 0], "so brimful of exultation that he could hardly hold": [65535, 0], "brimful of exultation that he could hardly hold himself": [65535, 0], "of exultation that he could hardly hold himself when": [65535, 0], "exultation that he could hardly hold himself when the": [65535, 0], "that he could hardly hold himself when the old": [65535, 0], "he could hardly hold himself when the old lady": [65535, 0], "could hardly hold himself when the old lady came": [65535, 0], "hardly hold himself when the old lady came back": [65535, 0], "hold himself when the old lady came back and": [65535, 0], "himself when the old lady came back and stood": [65535, 0], "when the old lady came back and stood above": [65535, 0], "the old lady came back and stood above the": [65535, 0], "old lady came back and stood above the wreck": [65535, 0], "lady came back and stood above the wreck discharging": [65535, 0], "came back and stood above the wreck discharging lightnings": [65535, 0], "back and stood above the wreck discharging lightnings of": [65535, 0], "and stood above the wreck discharging lightnings of wrath": [65535, 0], "stood above the wreck discharging lightnings of wrath from": [65535, 0], "above the wreck discharging lightnings of wrath from over": [65535, 0], "the wreck discharging lightnings of wrath from over her": [65535, 0], "wreck discharging lightnings of wrath from over her spectacles": [65535, 0], "discharging lightnings of wrath from over her spectacles he": [65535, 0], "lightnings of wrath from over her spectacles he said": [65535, 0], "of wrath from over her spectacles he said to": [65535, 0], "wrath from over her spectacles he said to himself": [65535, 0], "from over her spectacles he said to himself now": [65535, 0], "over her spectacles he said to himself now it's": [65535, 0], "her spectacles he said to himself now it's coming": [65535, 0], "spectacles he said to himself now it's coming and": [65535, 0], "he said to himself now it's coming and the": [65535, 0], "said to himself now it's coming and the next": [65535, 0], "to himself now it's coming and the next instant": [65535, 0], "himself now it's coming and the next instant he": [65535, 0], "now it's coming and the next instant he was": [65535, 0], "it's coming and the next instant he was sprawling": [65535, 0], "coming and the next instant he was sprawling on": [65535, 0], "and the next instant he was sprawling on the": [65535, 0], "the next instant he was sprawling on the floor": [65535, 0], "next instant he was sprawling on the floor the": [65535, 0], "instant he was sprawling on the floor the potent": [65535, 0], "he was sprawling on the floor the potent palm": [65535, 0], "was sprawling on the floor the potent palm was": [65535, 0], "sprawling on the floor the potent palm was uplifted": [65535, 0], "on the floor the potent palm was uplifted to": [65535, 0], "the floor the potent palm was uplifted to strike": [65535, 0], "floor the potent palm was uplifted to strike again": [65535, 0], "the potent palm was uplifted to strike again when": [65535, 0], "potent palm was uplifted to strike again when tom": [65535, 0], "palm was uplifted to strike again when tom cried": [65535, 0], "was uplifted to strike again when tom cried out": [65535, 0], "uplifted to strike again when tom cried out hold": [65535, 0], "to strike again when tom cried out hold on": [65535, 0], "strike again when tom cried out hold on now": [65535, 0], "again when tom cried out hold on now what": [65535, 0], "when tom cried out hold on now what 'er": [65535, 0], "tom cried out hold on now what 'er you": [65535, 0], "cried out hold on now what 'er you belting": [65535, 0], "out hold on now what 'er you belting me": [65535, 0], "hold on now what 'er you belting me for": [65535, 0], "on now what 'er you belting me for sid": [65535, 0], "now what 'er you belting me for sid broke": [65535, 0], "what 'er you belting me for sid broke it": [65535, 0], "'er you belting me for sid broke it aunt": [65535, 0], "you belting me for sid broke it aunt polly": [65535, 0], "belting me for sid broke it aunt polly paused": [65535, 0], "me for sid broke it aunt polly paused perplexed": [65535, 0], "for sid broke it aunt polly paused perplexed and": [65535, 0], "sid broke it aunt polly paused perplexed and tom": [65535, 0], "broke it aunt polly paused perplexed and tom looked": [65535, 0], "it aunt polly paused perplexed and tom looked for": [65535, 0], "aunt polly paused perplexed and tom looked for healing": [65535, 0], "polly paused perplexed and tom looked for healing pity": [65535, 0], "paused perplexed and tom looked for healing pity but": [65535, 0], "perplexed and tom looked for healing pity but when": [65535, 0], "and tom looked for healing pity but when she": [65535, 0], "tom looked for healing pity but when she got": [65535, 0], "looked for healing pity but when she got her": [65535, 0], "for healing pity but when she got her tongue": [65535, 0], "healing pity but when she got her tongue again": [65535, 0], "pity but when she got her tongue again she": [65535, 0], "but when she got her tongue again she only": [65535, 0], "when she got her tongue again she only said": [65535, 0], "she got her tongue again she only said umf": [65535, 0], "got her tongue again she only said umf well": [65535, 0], "her tongue again she only said umf well you": [65535, 0], "tongue again she only said umf well you didn't": [65535, 0], "again she only said umf well you didn't get": [65535, 0], "she only said umf well you didn't get a": [65535, 0], "only said umf well you didn't get a lick": [65535, 0], "said umf well you didn't get a lick amiss": [65535, 0], "umf well you didn't get a lick amiss i": [65535, 0], "well you didn't get a lick amiss i reckon": [65535, 0], "you didn't get a lick amiss i reckon you": [65535, 0], "didn't get a lick amiss i reckon you been": [65535, 0], "get a lick amiss i reckon you been into": [65535, 0], "a lick amiss i reckon you been into some": [65535, 0], "lick amiss i reckon you been into some other": [65535, 0], "amiss i reckon you been into some other audacious": [65535, 0], "i reckon you been into some other audacious mischief": [65535, 0], "reckon you been into some other audacious mischief when": [65535, 0], "you been into some other audacious mischief when i": [65535, 0], "been into some other audacious mischief when i wasn't": [65535, 0], "into some other audacious mischief when i wasn't around": [65535, 0], "some other audacious mischief when i wasn't around like": [65535, 0], "other audacious mischief when i wasn't around like enough": [65535, 0], "audacious mischief when i wasn't around like enough then": [65535, 0], "mischief when i wasn't around like enough then her": [65535, 0], "when i wasn't around like enough then her conscience": [65535, 0], "i wasn't around like enough then her conscience reproached": [65535, 0], "wasn't around like enough then her conscience reproached her": [65535, 0], "around like enough then her conscience reproached her and": [65535, 0], "like enough then her conscience reproached her and she": [65535, 0], "enough then her conscience reproached her and she yearned": [65535, 0], "then her conscience reproached her and she yearned to": [65535, 0], "her conscience reproached her and she yearned to say": [65535, 0], "conscience reproached her and she yearned to say something": [65535, 0], "reproached her and she yearned to say something kind": [65535, 0], "her and she yearned to say something kind and": [65535, 0], "and she yearned to say something kind and loving": [65535, 0], "she yearned to say something kind and loving but": [65535, 0], "yearned to say something kind and loving but she": [65535, 0], "to say something kind and loving but she judged": [65535, 0], "say something kind and loving but she judged that": [65535, 0], "something kind and loving but she judged that this": [65535, 0], "kind and loving but she judged that this would": [65535, 0], "and loving but she judged that this would be": [65535, 0], "loving but she judged that this would be construed": [65535, 0], "but she judged that this would be construed into": [65535, 0], "she judged that this would be construed into a": [65535, 0], "judged that this would be construed into a confession": [65535, 0], "that this would be construed into a confession that": [65535, 0], "this would be construed into a confession that she": [65535, 0], "would be construed into a confession that she had": [65535, 0], "be construed into a confession that she had been": [65535, 0], "construed into a confession that she had been in": [65535, 0], "into a confession that she had been in the": [65535, 0], "a confession that she had been in the wrong": [65535, 0], "confession that she had been in the wrong and": [65535, 0], "that she had been in the wrong and discipline": [65535, 0], "she had been in the wrong and discipline forbade": [65535, 0], "had been in the wrong and discipline forbade that": [65535, 0], "been in the wrong and discipline forbade that so": [65535, 0], "in the wrong and discipline forbade that so she": [65535, 0], "the wrong and discipline forbade that so she kept": [65535, 0], "wrong and discipline forbade that so she kept silence": [65535, 0], "and discipline forbade that so she kept silence and": [65535, 0], "discipline forbade that so she kept silence and went": [65535, 0], "forbade that so she kept silence and went about": [65535, 0], "that so she kept silence and went about her": [65535, 0], "so she kept silence and went about her affairs": [65535, 0], "she kept silence and went about her affairs with": [65535, 0], "kept silence and went about her affairs with a": [65535, 0], "silence and went about her affairs with a troubled": [65535, 0], "and went about her affairs with a troubled heart": [65535, 0], "went about her affairs with a troubled heart tom": [65535, 0], "about her affairs with a troubled heart tom sulked": [65535, 0], "her affairs with a troubled heart tom sulked in": [65535, 0], "affairs with a troubled heart tom sulked in a": [65535, 0], "with a troubled heart tom sulked in a corner": [65535, 0], "a troubled heart tom sulked in a corner and": [65535, 0], "troubled heart tom sulked in a corner and exalted": [65535, 0], "heart tom sulked in a corner and exalted his": [65535, 0], "tom sulked in a corner and exalted his woes": [65535, 0], "sulked in a corner and exalted his woes he": [65535, 0], "in a corner and exalted his woes he knew": [65535, 0], "a corner and exalted his woes he knew that": [65535, 0], "corner and exalted his woes he knew that in": [65535, 0], "and exalted his woes he knew that in her": [65535, 0], "exalted his woes he knew that in her heart": [65535, 0], "his woes he knew that in her heart his": [65535, 0], "woes he knew that in her heart his aunt": [65535, 0], "he knew that in her heart his aunt was": [65535, 0], "knew that in her heart his aunt was on": [65535, 0], "that in her heart his aunt was on her": [65535, 0], "in her heart his aunt was on her knees": [65535, 0], "her heart his aunt was on her knees to": [65535, 0], "heart his aunt was on her knees to him": [65535, 0], "his aunt was on her knees to him and": [65535, 0], "aunt was on her knees to him and he": [65535, 0], "was on her knees to him and he was": [65535, 0], "on her knees to him and he was morosely": [65535, 0], "her knees to him and he was morosely gratified": [65535, 0], "knees to him and he was morosely gratified by": [65535, 0], "to him and he was morosely gratified by the": [65535, 0], "him and he was morosely gratified by the consciousness": [65535, 0], "and he was morosely gratified by the consciousness of": [65535, 0], "he was morosely gratified by the consciousness of it": [65535, 0], "was morosely gratified by the consciousness of it he": [65535, 0], "morosely gratified by the consciousness of it he would": [65535, 0], "gratified by the consciousness of it he would hang": [65535, 0], "by the consciousness of it he would hang out": [65535, 0], "the consciousness of it he would hang out no": [65535, 0], "consciousness of it he would hang out no signals": [65535, 0], "of it he would hang out no signals he": [65535, 0], "it he would hang out no signals he would": [65535, 0], "he would hang out no signals he would take": [65535, 0], "would hang out no signals he would take notice": [65535, 0], "hang out no signals he would take notice of": [65535, 0], "out no signals he would take notice of none": [65535, 0], "no signals he would take notice of none he": [65535, 0], "signals he would take notice of none he knew": [65535, 0], "he would take notice of none he knew that": [65535, 0], "would take notice of none he knew that a": [65535, 0], "take notice of none he knew that a yearning": [65535, 0], "notice of none he knew that a yearning glance": [65535, 0], "of none he knew that a yearning glance fell": [65535, 0], "none he knew that a yearning glance fell upon": [65535, 0], "he knew that a yearning glance fell upon him": [65535, 0], "knew that a yearning glance fell upon him now": [65535, 0], "that a yearning glance fell upon him now and": [65535, 0], "a yearning glance fell upon him now and then": [65535, 0], "yearning glance fell upon him now and then through": [65535, 0], "glance fell upon him now and then through a": [65535, 0], "fell upon him now and then through a film": [65535, 0], "upon him now and then through a film of": [65535, 0], "him now and then through a film of tears": [65535, 0], "now and then through a film of tears but": [65535, 0], "and then through a film of tears but he": [65535, 0], "then through a film of tears but he refused": [65535, 0], "through a film of tears but he refused recognition": [65535, 0], "a film of tears but he refused recognition of": [65535, 0], "film of tears but he refused recognition of it": [65535, 0], "of tears but he refused recognition of it he": [65535, 0], "tears but he refused recognition of it he pictured": [65535, 0], "but he refused recognition of it he pictured himself": [65535, 0], "he refused recognition of it he pictured himself lying": [65535, 0], "refused recognition of it he pictured himself lying sick": [65535, 0], "recognition of it he pictured himself lying sick unto": [65535, 0], "of it he pictured himself lying sick unto death": [65535, 0], "it he pictured himself lying sick unto death and": [65535, 0], "he pictured himself lying sick unto death and his": [65535, 0], "pictured himself lying sick unto death and his aunt": [65535, 0], "himself lying sick unto death and his aunt bending": [65535, 0], "lying sick unto death and his aunt bending over": [65535, 0], "sick unto death and his aunt bending over him": [65535, 0], "unto death and his aunt bending over him beseeching": [65535, 0], "death and his aunt bending over him beseeching one": [65535, 0], "and his aunt bending over him beseeching one little": [65535, 0], "his aunt bending over him beseeching one little forgiving": [65535, 0], "aunt bending over him beseeching one little forgiving word": [65535, 0], "bending over him beseeching one little forgiving word but": [65535, 0], "over him beseeching one little forgiving word but he": [65535, 0], "him beseeching one little forgiving word but he would": [65535, 0], "beseeching one little forgiving word but he would turn": [65535, 0], "one little forgiving word but he would turn his": [65535, 0], "little forgiving word but he would turn his face": [65535, 0], "forgiving word but he would turn his face to": [65535, 0], "word but he would turn his face to the": [65535, 0], "but he would turn his face to the wall": [65535, 0], "he would turn his face to the wall and": [65535, 0], "would turn his face to the wall and die": [65535, 0], "turn his face to the wall and die with": [65535, 0], "his face to the wall and die with that": [65535, 0], "face to the wall and die with that word": [65535, 0], "to the wall and die with that word unsaid": [65535, 0], "the wall and die with that word unsaid ah": [65535, 0], "wall and die with that word unsaid ah how": [65535, 0], "and die with that word unsaid ah how would": [65535, 0], "die with that word unsaid ah how would she": [65535, 0], "with that word unsaid ah how would she feel": [65535, 0], "that word unsaid ah how would she feel then": [65535, 0], "word unsaid ah how would she feel then and": [65535, 0], "unsaid ah how would she feel then and he": [65535, 0], "ah how would she feel then and he pictured": [65535, 0], "how would she feel then and he pictured himself": [65535, 0], "would she feel then and he pictured himself brought": [65535, 0], "she feel then and he pictured himself brought home": [65535, 0], "feel then and he pictured himself brought home from": [65535, 0], "then and he pictured himself brought home from the": [65535, 0], "and he pictured himself brought home from the river": [65535, 0], "he pictured himself brought home from the river dead": [65535, 0], "pictured himself brought home from the river dead with": [65535, 0], "himself brought home from the river dead with his": [65535, 0], "brought home from the river dead with his curls": [65535, 0], "home from the river dead with his curls all": [65535, 0], "from the river dead with his curls all wet": [65535, 0], "the river dead with his curls all wet and": [65535, 0], "river dead with his curls all wet and his": [65535, 0], "dead with his curls all wet and his sore": [65535, 0], "with his curls all wet and his sore heart": [65535, 0], "his curls all wet and his sore heart at": [65535, 0], "curls all wet and his sore heart at rest": [65535, 0], "all wet and his sore heart at rest how": [65535, 0], "wet and his sore heart at rest how she": [65535, 0], "and his sore heart at rest how she would": [65535, 0], "his sore heart at rest how she would throw": [65535, 0], "sore heart at rest how she would throw herself": [65535, 0], "heart at rest how she would throw herself upon": [65535, 0], "at rest how she would throw herself upon him": [65535, 0], "rest how she would throw herself upon him and": [65535, 0], "how she would throw herself upon him and how": [65535, 0], "she would throw herself upon him and how her": [65535, 0], "would throw herself upon him and how her tears": [65535, 0], "throw herself upon him and how her tears would": [65535, 0], "herself upon him and how her tears would fall": [65535, 0], "upon him and how her tears would fall like": [65535, 0], "him and how her tears would fall like rain": [65535, 0], "and how her tears would fall like rain and": [65535, 0], "how her tears would fall like rain and her": [65535, 0], "her tears would fall like rain and her lips": [65535, 0], "tears would fall like rain and her lips pray": [65535, 0], "would fall like rain and her lips pray god": [65535, 0], "fall like rain and her lips pray god to": [65535, 0], "like rain and her lips pray god to give": [65535, 0], "rain and her lips pray god to give her": [65535, 0], "and her lips pray god to give her back": [65535, 0], "her lips pray god to give her back her": [65535, 0], "lips pray god to give her back her boy": [65535, 0], "pray god to give her back her boy and": [65535, 0], "god to give her back her boy and she": [65535, 0], "to give her back her boy and she would": [65535, 0], "give her back her boy and she would never": [65535, 0], "her back her boy and she would never never": [65535, 0], "back her boy and she would never never abuse": [65535, 0], "her boy and she would never never abuse him": [65535, 0], "boy and she would never never abuse him any": [65535, 0], "and she would never never abuse him any more": [65535, 0], "she would never never abuse him any more but": [65535, 0], "would never never abuse him any more but he": [65535, 0], "never never abuse him any more but he would": [65535, 0], "never abuse him any more but he would lie": [65535, 0], "abuse him any more but he would lie there": [65535, 0], "him any more but he would lie there cold": [65535, 0], "any more but he would lie there cold and": [65535, 0], "more but he would lie there cold and white": [65535, 0], "but he would lie there cold and white and": [65535, 0], "he would lie there cold and white and make": [65535, 0], "would lie there cold and white and make no": [65535, 0], "lie there cold and white and make no sign": [65535, 0], "there cold and white and make no sign a": [65535, 0], "cold and white and make no sign a poor": [65535, 0], "and white and make no sign a poor little": [65535, 0], "white and make no sign a poor little sufferer": [65535, 0], "and make no sign a poor little sufferer whose": [65535, 0], "make no sign a poor little sufferer whose griefs": [65535, 0], "no sign a poor little sufferer whose griefs were": [65535, 0], "sign a poor little sufferer whose griefs were at": [65535, 0], "a poor little sufferer whose griefs were at an": [65535, 0], "poor little sufferer whose griefs were at an end": [65535, 0], "little sufferer whose griefs were at an end he": [65535, 0], "sufferer whose griefs were at an end he so": [65535, 0], "whose griefs were at an end he so worked": [65535, 0], "griefs were at an end he so worked upon": [65535, 0], "were at an end he so worked upon his": [65535, 0], "at an end he so worked upon his feelings": [65535, 0], "an end he so worked upon his feelings with": [65535, 0], "end he so worked upon his feelings with the": [65535, 0], "he so worked upon his feelings with the pathos": [65535, 0], "so worked upon his feelings with the pathos of": [65535, 0], "worked upon his feelings with the pathos of these": [65535, 0], "upon his feelings with the pathos of these dreams": [65535, 0], "his feelings with the pathos of these dreams that": [65535, 0], "feelings with the pathos of these dreams that he": [65535, 0], "with the pathos of these dreams that he had": [65535, 0], "the pathos of these dreams that he had to": [65535, 0], "pathos of these dreams that he had to keep": [65535, 0], "of these dreams that he had to keep swallowing": [65535, 0], "these dreams that he had to keep swallowing he": [65535, 0], "dreams that he had to keep swallowing he was": [65535, 0], "that he had to keep swallowing he was so": [65535, 0], "he had to keep swallowing he was so like": [65535, 0], "had to keep swallowing he was so like to": [65535, 0], "to keep swallowing he was so like to choke": [65535, 0], "keep swallowing he was so like to choke and": [65535, 0], "swallowing he was so like to choke and his": [65535, 0], "he was so like to choke and his eyes": [65535, 0], "was so like to choke and his eyes swam": [65535, 0], "so like to choke and his eyes swam in": [65535, 0], "like to choke and his eyes swam in a": [65535, 0], "to choke and his eyes swam in a blur": [65535, 0], "choke and his eyes swam in a blur of": [65535, 0], "and his eyes swam in a blur of water": [65535, 0], "his eyes swam in a blur of water which": [65535, 0], "eyes swam in a blur of water which overflowed": [65535, 0], "swam in a blur of water which overflowed when": [65535, 0], "in a blur of water which overflowed when he": [65535, 0], "a blur of water which overflowed when he winked": [65535, 0], "blur of water which overflowed when he winked and": [65535, 0], "of water which overflowed when he winked and ran": [65535, 0], "water which overflowed when he winked and ran down": [65535, 0], "which overflowed when he winked and ran down and": [65535, 0], "overflowed when he winked and ran down and trickled": [65535, 0], "when he winked and ran down and trickled from": [65535, 0], "he winked and ran down and trickled from the": [65535, 0], "winked and ran down and trickled from the end": [65535, 0], "and ran down and trickled from the end of": [65535, 0], "ran down and trickled from the end of his": [65535, 0], "down and trickled from the end of his nose": [65535, 0], "and trickled from the end of his nose and": [65535, 0], "trickled from the end of his nose and such": [65535, 0], "from the end of his nose and such a": [65535, 0], "the end of his nose and such a luxury": [65535, 0], "end of his nose and such a luxury to": [65535, 0], "of his nose and such a luxury to him": [65535, 0], "his nose and such a luxury to him was": [65535, 0], "nose and such a luxury to him was this": [65535, 0], "and such a luxury to him was this petting": [65535, 0], "such a luxury to him was this petting of": [65535, 0], "a luxury to him was this petting of his": [65535, 0], "luxury to him was this petting of his sorrows": [65535, 0], "to him was this petting of his sorrows that": [65535, 0], "him was this petting of his sorrows that he": [65535, 0], "was this petting of his sorrows that he could": [65535, 0], "this petting of his sorrows that he could not": [65535, 0], "petting of his sorrows that he could not bear": [65535, 0], "of his sorrows that he could not bear to": [65535, 0], "his sorrows that he could not bear to have": [65535, 0], "sorrows that he could not bear to have any": [65535, 0], "that he could not bear to have any worldly": [65535, 0], "he could not bear to have any worldly cheeriness": [65535, 0], "could not bear to have any worldly cheeriness or": [65535, 0], "not bear to have any worldly cheeriness or any": [65535, 0], "bear to have any worldly cheeriness or any grating": [65535, 0], "to have any worldly cheeriness or any grating delight": [65535, 0], "have any worldly cheeriness or any grating delight intrude": [65535, 0], "any worldly cheeriness or any grating delight intrude upon": [65535, 0], "worldly cheeriness or any grating delight intrude upon it": [65535, 0], "cheeriness or any grating delight intrude upon it it": [65535, 0], "or any grating delight intrude upon it it was": [65535, 0], "any grating delight intrude upon it it was too": [65535, 0], "grating delight intrude upon it it was too sacred": [65535, 0], "delight intrude upon it it was too sacred for": [65535, 0], "intrude upon it it was too sacred for such": [65535, 0], "upon it it was too sacred for such contact": [65535, 0], "it it was too sacred for such contact and": [65535, 0], "it was too sacred for such contact and so": [65535, 0], "was too sacred for such contact and so presently": [65535, 0], "too sacred for such contact and so presently when": [65535, 0], "sacred for such contact and so presently when his": [65535, 0], "for such contact and so presently when his cousin": [65535, 0], "such contact and so presently when his cousin mary": [65535, 0], "contact and so presently when his cousin mary danced": [65535, 0], "and so presently when his cousin mary danced in": [65535, 0], "so presently when his cousin mary danced in all": [65535, 0], "presently when his cousin mary danced in all alive": [65535, 0], "when his cousin mary danced in all alive with": [65535, 0], "his cousin mary danced in all alive with the": [65535, 0], "cousin mary danced in all alive with the joy": [65535, 0], "mary danced in all alive with the joy of": [65535, 0], "danced in all alive with the joy of seeing": [65535, 0], "in all alive with the joy of seeing home": [65535, 0], "all alive with the joy of seeing home again": [65535, 0], "alive with the joy of seeing home again after": [65535, 0], "with the joy of seeing home again after an": [65535, 0], "the joy of seeing home again after an age": [65535, 0], "joy of seeing home again after an age long": [65535, 0], "of seeing home again after an age long visit": [65535, 0], "seeing home again after an age long visit of": [65535, 0], "home again after an age long visit of one": [65535, 0], "again after an age long visit of one week": [65535, 0], "after an age long visit of one week to": [65535, 0], "an age long visit of one week to the": [65535, 0], "age long visit of one week to the country": [65535, 0], "long visit of one week to the country he": [65535, 0], "visit of one week to the country he got": [65535, 0], "of one week to the country he got up": [65535, 0], "one week to the country he got up and": [65535, 0], "week to the country he got up and moved": [65535, 0], "to the country he got up and moved in": [65535, 0], "the country he got up and moved in clouds": [65535, 0], "country he got up and moved in clouds and": [65535, 0], "he got up and moved in clouds and darkness": [65535, 0], "got up and moved in clouds and darkness out": [65535, 0], "up and moved in clouds and darkness out at": [65535, 0], "and moved in clouds and darkness out at one": [65535, 0], "moved in clouds and darkness out at one door": [65535, 0], "in clouds and darkness out at one door as": [65535, 0], "clouds and darkness out at one door as she": [65535, 0], "and darkness out at one door as she brought": [65535, 0], "darkness out at one door as she brought song": [65535, 0], "out at one door as she brought song and": [65535, 0], "at one door as she brought song and sunshine": [65535, 0], "one door as she brought song and sunshine in": [65535, 0], "door as she brought song and sunshine in at": [65535, 0], "as she brought song and sunshine in at the": [65535, 0], "she brought song and sunshine in at the other": [65535, 0], "brought song and sunshine in at the other he": [65535, 0], "song and sunshine in at the other he wandered": [65535, 0], "and sunshine in at the other he wandered far": [65535, 0], "sunshine in at the other he wandered far from": [65535, 0], "in at the other he wandered far from the": [65535, 0], "at the other he wandered far from the accustomed": [65535, 0], "the other he wandered far from the accustomed haunts": [65535, 0], "other he wandered far from the accustomed haunts of": [65535, 0], "he wandered far from the accustomed haunts of boys": [65535, 0], "wandered far from the accustomed haunts of boys and": [65535, 0], "far from the accustomed haunts of boys and sought": [65535, 0], "from the accustomed haunts of boys and sought desolate": [65535, 0], "the accustomed haunts of boys and sought desolate places": [65535, 0], "accustomed haunts of boys and sought desolate places that": [65535, 0], "haunts of boys and sought desolate places that were": [65535, 0], "of boys and sought desolate places that were in": [65535, 0], "boys and sought desolate places that were in harmony": [65535, 0], "and sought desolate places that were in harmony with": [65535, 0], "sought desolate places that were in harmony with his": [65535, 0], "desolate places that were in harmony with his spirit": [65535, 0], "places that were in harmony with his spirit a": [65535, 0], "that were in harmony with his spirit a log": [65535, 0], "were in harmony with his spirit a log raft": [65535, 0], "in harmony with his spirit a log raft in": [65535, 0], "harmony with his spirit a log raft in the": [65535, 0], "with his spirit a log raft in the river": [65535, 0], "his spirit a log raft in the river invited": [65535, 0], "spirit a log raft in the river invited him": [65535, 0], "a log raft in the river invited him and": [65535, 0], "log raft in the river invited him and he": [65535, 0], "raft in the river invited him and he seated": [65535, 0], "in the river invited him and he seated himself": [65535, 0], "the river invited him and he seated himself on": [65535, 0], "river invited him and he seated himself on its": [65535, 0], "invited him and he seated himself on its outer": [65535, 0], "him and he seated himself on its outer edge": [65535, 0], "and he seated himself on its outer edge and": [65535, 0], "he seated himself on its outer edge and contemplated": [65535, 0], "seated himself on its outer edge and contemplated the": [65535, 0], "himself on its outer edge and contemplated the dreary": [65535, 0], "on its outer edge and contemplated the dreary vastness": [65535, 0], "its outer edge and contemplated the dreary vastness of": [65535, 0], "outer edge and contemplated the dreary vastness of the": [65535, 0], "edge and contemplated the dreary vastness of the stream": [65535, 0], "and contemplated the dreary vastness of the stream wishing": [65535, 0], "contemplated the dreary vastness of the stream wishing the": [65535, 0], "the dreary vastness of the stream wishing the while": [65535, 0], "dreary vastness of the stream wishing the while that": [65535, 0], "vastness of the stream wishing the while that he": [65535, 0], "of the stream wishing the while that he could": [65535, 0], "the stream wishing the while that he could only": [65535, 0], "stream wishing the while that he could only be": [65535, 0], "wishing the while that he could only be drowned": [65535, 0], "the while that he could only be drowned all": [65535, 0], "while that he could only be drowned all at": [65535, 0], "that he could only be drowned all at once": [65535, 0], "he could only be drowned all at once and": [65535, 0], "could only be drowned all at once and unconsciously": [65535, 0], "only be drowned all at once and unconsciously without": [65535, 0], "be drowned all at once and unconsciously without undergoing": [65535, 0], "drowned all at once and unconsciously without undergoing the": [65535, 0], "all at once and unconsciously without undergoing the uncomfortable": [65535, 0], "at once and unconsciously without undergoing the uncomfortable routine": [65535, 0], "once and unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "and unconsciously without undergoing the uncomfortable routine devised by": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised by nature": [65535, 0], "without undergoing the uncomfortable routine devised by nature then": [65535, 0], "undergoing the uncomfortable routine devised by nature then he": [65535, 0], "the uncomfortable routine devised by nature then he thought": [65535, 0], "uncomfortable routine devised by nature then he thought of": [65535, 0], "routine devised by nature then he thought of his": [65535, 0], "devised by nature then he thought of his flower": [65535, 0], "by nature then he thought of his flower he": [65535, 0], "nature then he thought of his flower he got": [65535, 0], "then he thought of his flower he got it": [65535, 0], "he thought of his flower he got it out": [65535, 0], "thought of his flower he got it out rumpled": [65535, 0], "of his flower he got it out rumpled and": [65535, 0], "his flower he got it out rumpled and wilted": [65535, 0], "flower he got it out rumpled and wilted and": [65535, 0], "he got it out rumpled and wilted and it": [65535, 0], "got it out rumpled and wilted and it mightily": [65535, 0], "it out rumpled and wilted and it mightily increased": [65535, 0], "out rumpled and wilted and it mightily increased his": [65535, 0], "rumpled and wilted and it mightily increased his dismal": [65535, 0], "and wilted and it mightily increased his dismal felicity": [65535, 0], "wilted and it mightily increased his dismal felicity he": [65535, 0], "and it mightily increased his dismal felicity he wondered": [65535, 0], "it mightily increased his dismal felicity he wondered if": [65535, 0], "mightily increased his dismal felicity he wondered if she": [65535, 0], "increased his dismal felicity he wondered if she would": [65535, 0], "his dismal felicity he wondered if she would pity": [65535, 0], "dismal felicity he wondered if she would pity him": [65535, 0], "felicity he wondered if she would pity him if": [65535, 0], "he wondered if she would pity him if she": [65535, 0], "wondered if she would pity him if she knew": [65535, 0], "if she would pity him if she knew would": [65535, 0], "she would pity him if she knew would she": [65535, 0], "would pity him if she knew would she cry": [65535, 0], "pity him if she knew would she cry and": [65535, 0], "him if she knew would she cry and wish": [65535, 0], "if she knew would she cry and wish that": [65535, 0], "she knew would she cry and wish that she": [65535, 0], "knew would she cry and wish that she had": [65535, 0], "would she cry and wish that she had a": [65535, 0], "she cry and wish that she had a right": [65535, 0], "cry and wish that she had a right to": [65535, 0], "and wish that she had a right to put": [65535, 0], "wish that she had a right to put her": [65535, 0], "that she had a right to put her arms": [65535, 0], "she had a right to put her arms around": [65535, 0], "had a right to put her arms around his": [65535, 0], "a right to put her arms around his neck": [65535, 0], "right to put her arms around his neck and": [65535, 0], "to put her arms around his neck and comfort": [65535, 0], "put her arms around his neck and comfort him": [65535, 0], "her arms around his neck and comfort him or": [65535, 0], "arms around his neck and comfort him or would": [65535, 0], "around his neck and comfort him or would she": [65535, 0], "his neck and comfort him or would she turn": [65535, 0], "neck and comfort him or would she turn coldly": [65535, 0], "and comfort him or would she turn coldly away": [65535, 0], "comfort him or would she turn coldly away like": [65535, 0], "him or would she turn coldly away like all": [65535, 0], "or would she turn coldly away like all the": [65535, 0], "would she turn coldly away like all the hollow": [65535, 0], "she turn coldly away like all the hollow world": [65535, 0], "turn coldly away like all the hollow world this": [65535, 0], "coldly away like all the hollow world this picture": [65535, 0], "away like all the hollow world this picture brought": [65535, 0], "like all the hollow world this picture brought such": [65535, 0], "all the hollow world this picture brought such an": [65535, 0], "the hollow world this picture brought such an agony": [65535, 0], "hollow world this picture brought such an agony of": [65535, 0], "world this picture brought such an agony of pleasurable": [65535, 0], "this picture brought such an agony of pleasurable suffering": [65535, 0], "picture brought such an agony of pleasurable suffering that": [65535, 0], "brought such an agony of pleasurable suffering that he": [65535, 0], "such an agony of pleasurable suffering that he worked": [65535, 0], "an agony of pleasurable suffering that he worked it": [65535, 0], "agony of pleasurable suffering that he worked it over": [65535, 0], "of pleasurable suffering that he worked it over and": [65535, 0], "pleasurable suffering that he worked it over and over": [65535, 0], "suffering that he worked it over and over again": [65535, 0], "that he worked it over and over again in": [65535, 0], "he worked it over and over again in his": [65535, 0], "worked it over and over again in his mind": [65535, 0], "it over and over again in his mind and": [65535, 0], "over and over again in his mind and set": [65535, 0], "and over again in his mind and set it": [65535, 0], "over again in his mind and set it up": [65535, 0], "again in his mind and set it up in": [65535, 0], "in his mind and set it up in new": [65535, 0], "his mind and set it up in new and": [65535, 0], "mind and set it up in new and varied": [65535, 0], "and set it up in new and varied lights": [65535, 0], "set it up in new and varied lights till": [65535, 0], "it up in new and varied lights till he": [65535, 0], "up in new and varied lights till he wore": [65535, 0], "in new and varied lights till he wore it": [65535, 0], "new and varied lights till he wore it threadbare": [65535, 0], "and varied lights till he wore it threadbare at": [65535, 0], "varied lights till he wore it threadbare at last": [65535, 0], "lights till he wore it threadbare at last he": [65535, 0], "till he wore it threadbare at last he rose": [65535, 0], "he wore it threadbare at last he rose up": [65535, 0], "wore it threadbare at last he rose up sighing": [65535, 0], "it threadbare at last he rose up sighing and": [65535, 0], "threadbare at last he rose up sighing and departed": [65535, 0], "at last he rose up sighing and departed in": [65535, 0], "last he rose up sighing and departed in the": [65535, 0], "he rose up sighing and departed in the darkness": [65535, 0], "rose up sighing and departed in the darkness about": [65535, 0], "up sighing and departed in the darkness about half": [65535, 0], "sighing and departed in the darkness about half past": [65535, 0], "and departed in the darkness about half past nine": [65535, 0], "departed in the darkness about half past nine or": [65535, 0], "in the darkness about half past nine or ten": [65535, 0], "the darkness about half past nine or ten o'clock": [65535, 0], "darkness about half past nine or ten o'clock he": [65535, 0], "about half past nine or ten o'clock he came": [65535, 0], "half past nine or ten o'clock he came along": [65535, 0], "past nine or ten o'clock he came along the": [65535, 0], "nine or ten o'clock he came along the deserted": [65535, 0], "or ten o'clock he came along the deserted street": [65535, 0], "ten o'clock he came along the deserted street to": [65535, 0], "o'clock he came along the deserted street to where": [65535, 0], "he came along the deserted street to where the": [65535, 0], "came along the deserted street to where the adored": [65535, 0], "along the deserted street to where the adored unknown": [65535, 0], "the deserted street to where the adored unknown lived": [65535, 0], "deserted street to where the adored unknown lived he": [65535, 0], "street to where the adored unknown lived he paused": [65535, 0], "to where the adored unknown lived he paused a": [65535, 0], "where the adored unknown lived he paused a moment": [65535, 0], "the adored unknown lived he paused a moment no": [65535, 0], "adored unknown lived he paused a moment no sound": [65535, 0], "unknown lived he paused a moment no sound fell": [65535, 0], "lived he paused a moment no sound fell upon": [65535, 0], "he paused a moment no sound fell upon his": [65535, 0], "paused a moment no sound fell upon his listening": [65535, 0], "a moment no sound fell upon his listening ear": [65535, 0], "moment no sound fell upon his listening ear a": [65535, 0], "no sound fell upon his listening ear a candle": [65535, 0], "sound fell upon his listening ear a candle was": [65535, 0], "fell upon his listening ear a candle was casting": [65535, 0], "upon his listening ear a candle was casting a": [65535, 0], "his listening ear a candle was casting a dull": [65535, 0], "listening ear a candle was casting a dull glow": [65535, 0], "ear a candle was casting a dull glow upon": [65535, 0], "a candle was casting a dull glow upon the": [65535, 0], "candle was casting a dull glow upon the curtain": [65535, 0], "was casting a dull glow upon the curtain of": [65535, 0], "casting a dull glow upon the curtain of a": [65535, 0], "a dull glow upon the curtain of a second": [65535, 0], "dull glow upon the curtain of a second story": [65535, 0], "glow upon the curtain of a second story window": [65535, 0], "upon the curtain of a second story window was": [65535, 0], "the curtain of a second story window was the": [65535, 0], "curtain of a second story window was the sacred": [65535, 0], "of a second story window was the sacred presence": [65535, 0], "a second story window was the sacred presence there": [65535, 0], "second story window was the sacred presence there he": [65535, 0], "story window was the sacred presence there he climbed": [65535, 0], "window was the sacred presence there he climbed the": [65535, 0], "was the sacred presence there he climbed the fence": [65535, 0], "the sacred presence there he climbed the fence threaded": [65535, 0], "sacred presence there he climbed the fence threaded his": [65535, 0], "presence there he climbed the fence threaded his stealthy": [65535, 0], "there he climbed the fence threaded his stealthy way": [65535, 0], "he climbed the fence threaded his stealthy way through": [65535, 0], "climbed the fence threaded his stealthy way through the": [65535, 0], "the fence threaded his stealthy way through the plants": [65535, 0], "fence threaded his stealthy way through the plants till": [65535, 0], "threaded his stealthy way through the plants till he": [65535, 0], "his stealthy way through the plants till he stood": [65535, 0], "stealthy way through the plants till he stood under": [65535, 0], "way through the plants till he stood under that": [65535, 0], "through the plants till he stood under that window": [65535, 0], "the plants till he stood under that window he": [65535, 0], "plants till he stood under that window he looked": [65535, 0], "till he stood under that window he looked up": [65535, 0], "he stood under that window he looked up at": [65535, 0], "stood under that window he looked up at it": [65535, 0], "under that window he looked up at it long": [65535, 0], "that window he looked up at it long and": [65535, 0], "window he looked up at it long and with": [65535, 0], "he looked up at it long and with emotion": [65535, 0], "looked up at it long and with emotion then": [65535, 0], "up at it long and with emotion then he": [65535, 0], "at it long and with emotion then he laid": [65535, 0], "it long and with emotion then he laid him": [65535, 0], "long and with emotion then he laid him down": [65535, 0], "and with emotion then he laid him down on": [65535, 0], "with emotion then he laid him down on the": [65535, 0], "emotion then he laid him down on the ground": [65535, 0], "then he laid him down on the ground under": [65535, 0], "he laid him down on the ground under it": [65535, 0], "laid him down on the ground under it disposing": [65535, 0], "him down on the ground under it disposing himself": [65535, 0], "down on the ground under it disposing himself upon": [65535, 0], "on the ground under it disposing himself upon his": [65535, 0], "the ground under it disposing himself upon his back": [65535, 0], "ground under it disposing himself upon his back with": [65535, 0], "under it disposing himself upon his back with his": [65535, 0], "it disposing himself upon his back with his hands": [65535, 0], "disposing himself upon his back with his hands clasped": [65535, 0], "himself upon his back with his hands clasped upon": [65535, 0], "upon his back with his hands clasped upon his": [65535, 0], "his back with his hands clasped upon his breast": [65535, 0], "back with his hands clasped upon his breast and": [65535, 0], "with his hands clasped upon his breast and holding": [65535, 0], "his hands clasped upon his breast and holding his": [65535, 0], "hands clasped upon his breast and holding his poor": [65535, 0], "clasped upon his breast and holding his poor wilted": [65535, 0], "upon his breast and holding his poor wilted flower": [65535, 0], "his breast and holding his poor wilted flower and": [65535, 0], "breast and holding his poor wilted flower and thus": [65535, 0], "and holding his poor wilted flower and thus he": [65535, 0], "holding his poor wilted flower and thus he would": [65535, 0], "his poor wilted flower and thus he would die": [65535, 0], "poor wilted flower and thus he would die out": [65535, 0], "wilted flower and thus he would die out in": [65535, 0], "flower and thus he would die out in the": [65535, 0], "and thus he would die out in the cold": [65535, 0], "thus he would die out in the cold world": [65535, 0], "he would die out in the cold world with": [65535, 0], "would die out in the cold world with no": [65535, 0], "die out in the cold world with no shelter": [65535, 0], "out in the cold world with no shelter over": [65535, 0], "in the cold world with no shelter over his": [65535, 0], "the cold world with no shelter over his homeless": [65535, 0], "cold world with no shelter over his homeless head": [65535, 0], "world with no shelter over his homeless head no": [65535, 0], "with no shelter over his homeless head no friendly": [65535, 0], "no shelter over his homeless head no friendly hand": [65535, 0], "shelter over his homeless head no friendly hand to": [65535, 0], "over his homeless head no friendly hand to wipe": [65535, 0], "his homeless head no friendly hand to wipe the": [65535, 0], "homeless head no friendly hand to wipe the death": [65535, 0], "head no friendly hand to wipe the death damps": [65535, 0], "no friendly hand to wipe the death damps from": [65535, 0], "friendly hand to wipe the death damps from his": [65535, 0], "hand to wipe the death damps from his brow": [65535, 0], "to wipe the death damps from his brow no": [65535, 0], "wipe the death damps from his brow no loving": [65535, 0], "the death damps from his brow no loving face": [65535, 0], "death damps from his brow no loving face to": [65535, 0], "damps from his brow no loving face to bend": [65535, 0], "from his brow no loving face to bend pityingly": [65535, 0], "his brow no loving face to bend pityingly over": [65535, 0], "brow no loving face to bend pityingly over him": [65535, 0], "no loving face to bend pityingly over him when": [65535, 0], "loving face to bend pityingly over him when the": [65535, 0], "face to bend pityingly over him when the great": [65535, 0], "to bend pityingly over him when the great agony": [65535, 0], "bend pityingly over him when the great agony came": [65535, 0], "pityingly over him when the great agony came and": [65535, 0], "over him when the great agony came and thus": [65535, 0], "him when the great agony came and thus she": [65535, 0], "when the great agony came and thus she would": [65535, 0], "the great agony came and thus she would see": [65535, 0], "great agony came and thus she would see him": [65535, 0], "agony came and thus she would see him when": [65535, 0], "came and thus she would see him when she": [65535, 0], "and thus she would see him when she looked": [65535, 0], "thus she would see him when she looked out": [65535, 0], "she would see him when she looked out upon": [65535, 0], "would see him when she looked out upon the": [65535, 0], "see him when she looked out upon the glad": [65535, 0], "him when she looked out upon the glad morning": [65535, 0], "when she looked out upon the glad morning and": [65535, 0], "she looked out upon the glad morning and oh": [65535, 0], "looked out upon the glad morning and oh would": [65535, 0], "out upon the glad morning and oh would she": [65535, 0], "upon the glad morning and oh would she drop": [65535, 0], "the glad morning and oh would she drop one": [65535, 0], "glad morning and oh would she drop one little": [65535, 0], "morning and oh would she drop one little tear": [65535, 0], "and oh would she drop one little tear upon": [65535, 0], "oh would she drop one little tear upon his": [65535, 0], "would she drop one little tear upon his poor": [65535, 0], "she drop one little tear upon his poor lifeless": [65535, 0], "drop one little tear upon his poor lifeless form": [65535, 0], "one little tear upon his poor lifeless form would": [65535, 0], "little tear upon his poor lifeless form would she": [65535, 0], "tear upon his poor lifeless form would she heave": [65535, 0], "upon his poor lifeless form would she heave one": [65535, 0], "his poor lifeless form would she heave one little": [65535, 0], "poor lifeless form would she heave one little sigh": [65535, 0], "lifeless form would she heave one little sigh to": [65535, 0], "form would she heave one little sigh to see": [65535, 0], "would she heave one little sigh to see a": [65535, 0], "she heave one little sigh to see a bright": [65535, 0], "heave one little sigh to see a bright young": [65535, 0], "one little sigh to see a bright young life": [65535, 0], "little sigh to see a bright young life so": [65535, 0], "sigh to see a bright young life so rudely": [65535, 0], "to see a bright young life so rudely blighted": [65535, 0], "see a bright young life so rudely blighted so": [65535, 0], "a bright young life so rudely blighted so untimely": [65535, 0], "bright young life so rudely blighted so untimely cut": [65535, 0], "young life so rudely blighted so untimely cut down": [65535, 0], "life so rudely blighted so untimely cut down the": [65535, 0], "so rudely blighted so untimely cut down the window": [65535, 0], "rudely blighted so untimely cut down the window went": [65535, 0], "blighted so untimely cut down the window went up": [65535, 0], "so untimely cut down the window went up a": [65535, 0], "untimely cut down the window went up a maid": [65535, 0], "cut down the window went up a maid servant's": [65535, 0], "down the window went up a maid servant's discordant": [65535, 0], "the window went up a maid servant's discordant voice": [65535, 0], "window went up a maid servant's discordant voice profaned": [65535, 0], "went up a maid servant's discordant voice profaned the": [65535, 0], "up a maid servant's discordant voice profaned the holy": [65535, 0], "a maid servant's discordant voice profaned the holy calm": [65535, 0], "maid servant's discordant voice profaned the holy calm and": [65535, 0], "servant's discordant voice profaned the holy calm and a": [65535, 0], "discordant voice profaned the holy calm and a deluge": [65535, 0], "voice profaned the holy calm and a deluge of": [65535, 0], "profaned the holy calm and a deluge of water": [65535, 0], "the holy calm and a deluge of water drenched": [65535, 0], "holy calm and a deluge of water drenched the": [65535, 0], "calm and a deluge of water drenched the prone": [65535, 0], "and a deluge of water drenched the prone martyr's": [65535, 0], "a deluge of water drenched the prone martyr's remains": [65535, 0], "deluge of water drenched the prone martyr's remains the": [65535, 0], "of water drenched the prone martyr's remains the strangling": [65535, 0], "water drenched the prone martyr's remains the strangling hero": [65535, 0], "drenched the prone martyr's remains the strangling hero sprang": [65535, 0], "the prone martyr's remains the strangling hero sprang up": [65535, 0], "prone martyr's remains the strangling hero sprang up with": [65535, 0], "martyr's remains the strangling hero sprang up with a": [65535, 0], "remains the strangling hero sprang up with a relieving": [65535, 0], "the strangling hero sprang up with a relieving snort": [65535, 0], "strangling hero sprang up with a relieving snort there": [65535, 0], "hero sprang up with a relieving snort there was": [65535, 0], "sprang up with a relieving snort there was a": [65535, 0], "up with a relieving snort there was a whiz": [65535, 0], "with a relieving snort there was a whiz as": [65535, 0], "a relieving snort there was a whiz as of": [65535, 0], "relieving snort there was a whiz as of a": [65535, 0], "snort there was a whiz as of a missile": [65535, 0], "there was a whiz as of a missile in": [65535, 0], "was a whiz as of a missile in the": [65535, 0], "a whiz as of a missile in the air": [65535, 0], "whiz as of a missile in the air mingled": [65535, 0], "as of a missile in the air mingled with": [65535, 0], "of a missile in the air mingled with the": [65535, 0], "a missile in the air mingled with the murmur": [65535, 0], "missile in the air mingled with the murmur of": [65535, 0], "in the air mingled with the murmur of a": [65535, 0], "the air mingled with the murmur of a curse": [65535, 0], "air mingled with the murmur of a curse a": [65535, 0], "mingled with the murmur of a curse a sound": [65535, 0], "with the murmur of a curse a sound as": [65535, 0], "the murmur of a curse a sound as of": [65535, 0], "murmur of a curse a sound as of shivering": [65535, 0], "of a curse a sound as of shivering glass": [65535, 0], "a curse a sound as of shivering glass followed": [65535, 0], "curse a sound as of shivering glass followed and": [65535, 0], "a sound as of shivering glass followed and a": [65535, 0], "sound as of shivering glass followed and a small": [65535, 0], "as of shivering glass followed and a small vague": [65535, 0], "of shivering glass followed and a small vague form": [65535, 0], "shivering glass followed and a small vague form went": [65535, 0], "glass followed and a small vague form went over": [65535, 0], "followed and a small vague form went over the": [65535, 0], "and a small vague form went over the fence": [65535, 0], "a small vague form went over the fence and": [65535, 0], "small vague form went over the fence and shot": [65535, 0], "vague form went over the fence and shot away": [65535, 0], "form went over the fence and shot away in": [65535, 0], "went over the fence and shot away in the": [65535, 0], "over the fence and shot away in the gloom": [65535, 0], "the fence and shot away in the gloom not": [65535, 0], "fence and shot away in the gloom not long": [65535, 0], "and shot away in the gloom not long after": [65535, 0], "shot away in the gloom not long after as": [65535, 0], "away in the gloom not long after as tom": [65535, 0], "in the gloom not long after as tom all": [65535, 0], "the gloom not long after as tom all undressed": [65535, 0], "gloom not long after as tom all undressed for": [65535, 0], "not long after as tom all undressed for bed": [65535, 0], "long after as tom all undressed for bed was": [65535, 0], "after as tom all undressed for bed was surveying": [65535, 0], "as tom all undressed for bed was surveying his": [65535, 0], "tom all undressed for bed was surveying his drenched": [65535, 0], "all undressed for bed was surveying his drenched garments": [65535, 0], "undressed for bed was surveying his drenched garments by": [65535, 0], "for bed was surveying his drenched garments by the": [65535, 0], "bed was surveying his drenched garments by the light": [65535, 0], "was surveying his drenched garments by the light of": [65535, 0], "surveying his drenched garments by the light of a": [65535, 0], "his drenched garments by the light of a tallow": [65535, 0], "drenched garments by the light of a tallow dip": [65535, 0], "garments by the light of a tallow dip sid": [65535, 0], "by the light of a tallow dip sid woke": [65535, 0], "the light of a tallow dip sid woke up": [65535, 0], "light of a tallow dip sid woke up but": [65535, 0], "of a tallow dip sid woke up but if": [65535, 0], "a tallow dip sid woke up but if he": [65535, 0], "tallow dip sid woke up but if he had": [65535, 0], "dip sid woke up but if he had any": [65535, 0], "sid woke up but if he had any dim": [65535, 0], "woke up but if he had any dim idea": [65535, 0], "up but if he had any dim idea of": [65535, 0], "but if he had any dim idea of making": [65535, 0], "if he had any dim idea of making any": [65535, 0], "he had any dim idea of making any references": [65535, 0], "had any dim idea of making any references to": [65535, 0], "any dim idea of making any references to allusions": [65535, 0], "dim idea of making any references to allusions he": [65535, 0], "idea of making any references to allusions he thought": [65535, 0], "of making any references to allusions he thought better": [65535, 0], "making any references to allusions he thought better of": [65535, 0], "any references to allusions he thought better of it": [65535, 0], "references to allusions he thought better of it and": [65535, 0], "to allusions he thought better of it and held": [65535, 0], "allusions he thought better of it and held his": [65535, 0], "he thought better of it and held his peace": [65535, 0], "thought better of it and held his peace for": [65535, 0], "better of it and held his peace for there": [65535, 0], "of it and held his peace for there was": [65535, 0], "it and held his peace for there was danger": [65535, 0], "and held his peace for there was danger in": [65535, 0], "held his peace for there was danger in tom's": [65535, 0], "his peace for there was danger in tom's eye": [65535, 0], "peace for there was danger in tom's eye tom": [65535, 0], "for there was danger in tom's eye tom turned": [65535, 0], "there was danger in tom's eye tom turned in": [65535, 0], "was danger in tom's eye tom turned in without": [65535, 0], "danger in tom's eye tom turned in without the": [65535, 0], "in tom's eye tom turned in without the added": [65535, 0], "tom's eye tom turned in without the added vexation": [65535, 0], "eye tom turned in without the added vexation of": [65535, 0], "tom turned in without the added vexation of prayers": [65535, 0], "turned in without the added vexation of prayers and": [65535, 0], "in without the added vexation of prayers and sid": [65535, 0], "without the added vexation of prayers and sid made": [65535, 0], "the added vexation of prayers and sid made mental": [65535, 0], "added vexation of prayers and sid made mental note": [65535, 0], "vexation of prayers and sid made mental note of": [65535, 0], "of prayers and sid made mental note of the": [65535, 0], "prayers and sid made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who was sitting by": [65535, 0], "presented himself before aunt polly who was sitting by an": [65535, 0], "himself before aunt polly who was sitting by an open": [65535, 0], "before aunt polly who was sitting by an open window": [65535, 0], "aunt polly who was sitting by an open window in": [65535, 0], "polly who was sitting by an open window in a": [65535, 0], "who was sitting by an open window in a pleasant": [65535, 0], "was sitting by an open window in a pleasant rearward": [65535, 0], "sitting by an open window in a pleasant rearward apartment": [65535, 0], "by an open window in a pleasant rearward apartment which": [65535, 0], "an open window in a pleasant rearward apartment which was": [65535, 0], "open window in a pleasant rearward apartment which was bedroom": [65535, 0], "window in a pleasant rearward apartment which was bedroom breakfast": [65535, 0], "in a pleasant rearward apartment which was bedroom breakfast room": [65535, 0], "a pleasant rearward apartment which was bedroom breakfast room dining": [65535, 0], "pleasant rearward apartment which was bedroom breakfast room dining room": [65535, 0], "rearward apartment which was bedroom breakfast room dining room and": [65535, 0], "apartment which was bedroom breakfast room dining room and library": [65535, 0], "which was bedroom breakfast room dining room and library combined": [65535, 0], "was bedroom breakfast room dining room and library combined the": [65535, 0], "bedroom breakfast room dining room and library combined the balmy": [65535, 0], "breakfast room dining room and library combined the balmy summer": [65535, 0], "room dining room and library combined the balmy summer air": [65535, 0], "dining room and library combined the balmy summer air the": [65535, 0], "room and library combined the balmy summer air the restful": [65535, 0], "and library combined the balmy summer air the restful quiet": [65535, 0], "library combined the balmy summer air the restful quiet the": [65535, 0], "combined the balmy summer air the restful quiet the odor": [65535, 0], "the balmy summer air the restful quiet the odor of": [65535, 0], "balmy summer air the restful quiet the odor of the": [65535, 0], "summer air the restful quiet the odor of the flowers": [65535, 0], "air the restful quiet the odor of the flowers and": [65535, 0], "the restful quiet the odor of the flowers and the": [65535, 0], "restful quiet the odor of the flowers and the drowsing": [65535, 0], "quiet the odor of the flowers and the drowsing murmur": [65535, 0], "the odor of the flowers and the drowsing murmur of": [65535, 0], "odor of the flowers and the drowsing murmur of the": [65535, 0], "of the flowers and the drowsing murmur of the bees": [65535, 0], "the flowers and the drowsing murmur of the bees had": [65535, 0], "flowers and the drowsing murmur of the bees had had": [65535, 0], "and the drowsing murmur of the bees had had their": [65535, 0], "the drowsing murmur of the bees had had their effect": [65535, 0], "drowsing murmur of the bees had had their effect and": [65535, 0], "murmur of the bees had had their effect and she": [65535, 0], "of the bees had had their effect and she was": [65535, 0], "the bees had had their effect and she was nodding": [65535, 0], "bees had had their effect and she was nodding over": [65535, 0], "had had their effect and she was nodding over her": [65535, 0], "had their effect and she was nodding over her knitting": [65535, 0], "their effect and she was nodding over her knitting for": [65535, 0], "effect and she was nodding over her knitting for she": [65535, 0], "and she was nodding over her knitting for she had": [65535, 0], "she was nodding over her knitting for she had no": [65535, 0], "was nodding over her knitting for she had no company": [65535, 0], "nodding over her knitting for she had no company but": [65535, 0], "over her knitting for she had no company but the": [65535, 0], "her knitting for she had no company but the cat": [65535, 0], "knitting for she had no company but the cat and": [65535, 0], "for she had no company but the cat and it": [65535, 0], "she had no company but the cat and it was": [65535, 0], "had no company but the cat and it was asleep": [65535, 0], "no company but the cat and it was asleep in": [65535, 0], "company but the cat and it was asleep in her": [65535, 0], "but the cat and it was asleep in her lap": [65535, 0], "the cat and it was asleep in her lap her": [65535, 0], "cat and it was asleep in her lap her spectacles": [65535, 0], "and it was asleep in her lap her spectacles were": [65535, 0], "it was asleep in her lap her spectacles were propped": [65535, 0], "was asleep in her lap her spectacles were propped up": [65535, 0], "asleep in her lap her spectacles were propped up on": [65535, 0], "in her lap her spectacles were propped up on her": [65535, 0], "her lap her spectacles were propped up on her gray": [65535, 0], "lap her spectacles were propped up on her gray head": [65535, 0], "her spectacles were propped up on her gray head for": [65535, 0], "spectacles were propped up on her gray head for safety": [65535, 0], "were propped up on her gray head for safety she": [65535, 0], "propped up on her gray head for safety she had": [65535, 0], "up on her gray head for safety she had thought": [65535, 0], "on her gray head for safety she had thought that": [65535, 0], "her gray head for safety she had thought that of": [65535, 0], "gray head for safety she had thought that of course": [65535, 0], "head for safety she had thought that of course tom": [65535, 0], "for safety she had thought that of course tom had": [65535, 0], "safety she had thought that of course tom had deserted": [65535, 0], "she had thought that of course tom had deserted long": [65535, 0], "had thought that of course tom had deserted long ago": [65535, 0], "thought that of course tom had deserted long ago and": [65535, 0], "that of course tom had deserted long ago and she": [65535, 0], "of course tom had deserted long ago and she wondered": [65535, 0], "course tom had deserted long ago and she wondered at": [65535, 0], "tom had deserted long ago and she wondered at seeing": [65535, 0], "had deserted long ago and she wondered at seeing him": [65535, 0], "deserted long ago and she wondered at seeing him place": [65535, 0], "long ago and she wondered at seeing him place himself": [65535, 0], "ago and she wondered at seeing him place himself in": [65535, 0], "and she wondered at seeing him place himself in her": [65535, 0], "she wondered at seeing him place himself in her power": [65535, 0], "wondered at seeing him place himself in her power again": [65535, 0], "at seeing him place himself in her power again in": [65535, 0], "seeing him place himself in her power again in this": [65535, 0], "him place himself in her power again in this intrepid": [65535, 0], "place himself in her power again in this intrepid way": [65535, 0], "himself in her power again in this intrepid way he": [65535, 0], "in her power again in this intrepid way he said": [65535, 0], "her power again in this intrepid way he said mayn't": [65535, 0], "power again in this intrepid way he said mayn't i": [65535, 0], "again in this intrepid way he said mayn't i go": [65535, 0], "in this intrepid way he said mayn't i go and": [65535, 0], "this intrepid way he said mayn't i go and play": [65535, 0], "intrepid way he said mayn't i go and play now": [65535, 0], "way he said mayn't i go and play now aunt": [65535, 0], "he said mayn't i go and play now aunt what": [65535, 0], "said mayn't i go and play now aunt what a'ready": [65535, 0], "mayn't i go and play now aunt what a'ready how": [65535, 0], "i go and play now aunt what a'ready how much": [65535, 0], "go and play now aunt what a'ready how much have": [65535, 0], "and play now aunt what a'ready how much have you": [65535, 0], "play now aunt what a'ready how much have you done": [65535, 0], "now aunt what a'ready how much have you done it's": [65535, 0], "aunt what a'ready how much have you done it's all": [65535, 0], "what a'ready how much have you done it's all done": [65535, 0], "a'ready how much have you done it's all done aunt": [65535, 0], "how much have you done it's all done aunt tom": [65535, 0], "much have you done it's all done aunt tom don't": [65535, 0], "have you done it's all done aunt tom don't lie": [65535, 0], "you done it's all done aunt tom don't lie to": [65535, 0], "done it's all done aunt tom don't lie to me": [65535, 0], "it's all done aunt tom don't lie to me i": [65535, 0], "all done aunt tom don't lie to me i can't": [65535, 0], "done aunt tom don't lie to me i can't bear": [65535, 0], "aunt tom don't lie to me i can't bear it": [65535, 0], "tom don't lie to me i can't bear it i": [65535, 0], "don't lie to me i can't bear it i ain't": [65535, 0], "lie to me i can't bear it i ain't aunt": [65535, 0], "to me i can't bear it i ain't aunt it": [65535, 0], "me i can't bear it i ain't aunt it is": [65535, 0], "i can't bear it i ain't aunt it is all": [65535, 0], "can't bear it i ain't aunt it is all done": [65535, 0], "bear it i ain't aunt it is all done aunt": [65535, 0], "it i ain't aunt it is all done aunt polly": [65535, 0], "i ain't aunt it is all done aunt polly placed": [65535, 0], "ain't aunt it is all done aunt polly placed small": [65535, 0], "aunt it is all done aunt polly placed small trust": [65535, 0], "it is all done aunt polly placed small trust in": [65535, 0], "is all done aunt polly placed small trust in such": [65535, 0], "all done aunt polly placed small trust in such evidence": [65535, 0], "done aunt polly placed small trust in such evidence she": [65535, 0], "aunt polly placed small trust in such evidence she went": [65535, 0], "polly placed small trust in such evidence she went out": [65535, 0], "placed small trust in such evidence she went out to": [65535, 0], "small trust in such evidence she went out to see": [65535, 0], "trust in such evidence she went out to see for": [65535, 0], "in such evidence she went out to see for herself": [65535, 0], "such evidence she went out to see for herself and": [65535, 0], "evidence she went out to see for herself and she": [65535, 0], "she went out to see for herself and she would": [65535, 0], "went out to see for herself and she would have": [65535, 0], "out to see for herself and she would have been": [65535, 0], "to see for herself and she would have been content": [65535, 0], "see for herself and she would have been content to": [65535, 0], "for herself and she would have been content to find": [65535, 0], "herself and she would have been content to find twenty": [65535, 0], "and she would have been content to find twenty per": [65535, 0], "she would have been content to find twenty per cent": [65535, 0], "would have been content to find twenty per cent of": [65535, 0], "have been content to find twenty per cent of tom's": [65535, 0], "been content to find twenty per cent of tom's statement": [65535, 0], "content to find twenty per cent of tom's statement true": [65535, 0], "to find twenty per cent of tom's statement true when": [65535, 0], "find twenty per cent of tom's statement true when she": [65535, 0], "twenty per cent of tom's statement true when she found": [65535, 0], "per cent of tom's statement true when she found the": [65535, 0], "cent of tom's statement true when she found the entire": [65535, 0], "of tom's statement true when she found the entire fence": [65535, 0], "tom's statement true when she found the entire fence whitewashed": [65535, 0], "statement true when she found the entire fence whitewashed and": [65535, 0], "true when she found the entire fence whitewashed and not": [65535, 0], "when she found the entire fence whitewashed and not only": [65535, 0], "she found the entire fence whitewashed and not only whitewashed": [65535, 0], "found the entire fence whitewashed and not only whitewashed but": [65535, 0], "the entire fence whitewashed and not only whitewashed but elaborately": [65535, 0], "entire fence whitewashed and not only whitewashed but elaborately coated": [65535, 0], "fence whitewashed and not only whitewashed but elaborately coated and": [65535, 0], "whitewashed and not only whitewashed but elaborately coated and recoated": [65535, 0], "and not only whitewashed but elaborately coated and recoated and": [65535, 0], "not only whitewashed but elaborately coated and recoated and even": [65535, 0], "only whitewashed but elaborately coated and recoated and even a": [65535, 0], "whitewashed but elaborately coated and recoated and even a streak": [65535, 0], "but elaborately coated and recoated and even a streak added": [65535, 0], "elaborately coated and recoated and even a streak added to": [65535, 0], "coated and recoated and even a streak added to the": [65535, 0], "and recoated and even a streak added to the ground": [65535, 0], "recoated and even a streak added to the ground her": [65535, 0], "and even a streak added to the ground her astonishment": [65535, 0], "even a streak added to the ground her astonishment was": [65535, 0], "a streak added to the ground her astonishment was almost": [65535, 0], "streak added to the ground her astonishment was almost unspeakable": [65535, 0], "added to the ground her astonishment was almost unspeakable she": [65535, 0], "to the ground her astonishment was almost unspeakable she said": [65535, 0], "the ground her astonishment was almost unspeakable she said well": [65535, 0], "ground her astonishment was almost unspeakable she said well i": [65535, 0], "her astonishment was almost unspeakable she said well i never": [65535, 0], "astonishment was almost unspeakable she said well i never there's": [65535, 0], "was almost unspeakable she said well i never there's no": [65535, 0], "almost unspeakable she said well i never there's no getting": [65535, 0], "unspeakable she said well i never there's no getting round": [65535, 0], "she said well i never there's no getting round it": [65535, 0], "said well i never there's no getting round it you": [65535, 0], "well i never there's no getting round it you can": [65535, 0], "i never there's no getting round it you can work": [65535, 0], "never there's no getting round it you can work when": [65535, 0], "there's no getting round it you can work when you're": [65535, 0], "no getting round it you can work when you're a": [65535, 0], "getting round it you can work when you're a mind": [65535, 0], "round it you can work when you're a mind to": [65535, 0], "it you can work when you're a mind to tom": [65535, 0], "you can work when you're a mind to tom and": [65535, 0], "can work when you're a mind to tom and then": [65535, 0], "work when you're a mind to tom and then she": [65535, 0], "when you're a mind to tom and then she diluted": [65535, 0], "you're a mind to tom and then she diluted the": [65535, 0], "a mind to tom and then she diluted the compliment": [65535, 0], "mind to tom and then she diluted the compliment by": [65535, 0], "to tom and then she diluted the compliment by adding": [65535, 0], "tom and then she diluted the compliment by adding but": [65535, 0], "and then she diluted the compliment by adding but it's": [65535, 0], "then she diluted the compliment by adding but it's powerful": [65535, 0], "she diluted the compliment by adding but it's powerful seldom": [65535, 0], "diluted the compliment by adding but it's powerful seldom you're": [65535, 0], "the compliment by adding but it's powerful seldom you're a": [65535, 0], "compliment by adding but it's powerful seldom you're a mind": [65535, 0], "by adding but it's powerful seldom you're a mind to": [65535, 0], "adding but it's powerful seldom you're a mind to i'm": [65535, 0], "but it's powerful seldom you're a mind to i'm bound": [65535, 0], "it's powerful seldom you're a mind to i'm bound to": [65535, 0], "powerful seldom you're a mind to i'm bound to say": [65535, 0], "seldom you're a mind to i'm bound to say well": [65535, 0], "you're a mind to i'm bound to say well go": [65535, 0], "a mind to i'm bound to say well go 'long": [65535, 0], "mind to i'm bound to say well go 'long and": [65535, 0], "to i'm bound to say well go 'long and play": [65535, 0], "i'm bound to say well go 'long and play but": [65535, 0], "bound to say well go 'long and play but mind": [65535, 0], "to say well go 'long and play but mind you": [65535, 0], "say well go 'long and play but mind you get": [65535, 0], "well go 'long and play but mind you get back": [65535, 0], "go 'long and play but mind you get back some": [65535, 0], "'long and play but mind you get back some time": [65535, 0], "and play but mind you get back some time in": [65535, 0], "play but mind you get back some time in a": [65535, 0], "but mind you get back some time in a week": [65535, 0], "mind you get back some time in a week or": [65535, 0], "you get back some time in a week or i'll": [65535, 0], "get back some time in a week or i'll tan": [65535, 0], "back some time in a week or i'll tan you": [65535, 0], "some time in a week or i'll tan you she": [65535, 0], "time in a week or i'll tan you she was": [65535, 0], "in a week or i'll tan you she was so": [65535, 0], "a week or i'll tan you she was so overcome": [65535, 0], "week or i'll tan you she was so overcome by": [65535, 0], "or i'll tan you she was so overcome by the": [65535, 0], "i'll tan you she was so overcome by the splendor": [65535, 0], "tan you she was so overcome by the splendor of": [65535, 0], "you she was so overcome by the splendor of his": [65535, 0], "she was so overcome by the splendor of his achievement": [65535, 0], "was so overcome by the splendor of his achievement that": [65535, 0], "so overcome by the splendor of his achievement that she": [65535, 0], "overcome by the splendor of his achievement that she took": [65535, 0], "by the splendor of his achievement that she took him": [65535, 0], "the splendor of his achievement that she took him into": [65535, 0], "splendor of his achievement that she took him into the": [65535, 0], "of his achievement that she took him into the closet": [65535, 0], "his achievement that she took him into the closet and": [65535, 0], "achievement that she took him into the closet and selected": [65535, 0], "that she took him into the closet and selected a": [65535, 0], "she took him into the closet and selected a choice": [65535, 0], "took him into the closet and selected a choice apple": [65535, 0], "him into the closet and selected a choice apple and": [65535, 0], "into the closet and selected a choice apple and delivered": [65535, 0], "the closet and selected a choice apple and delivered it": [65535, 0], "closet and selected a choice apple and delivered it to": [65535, 0], "and selected a choice apple and delivered it to him": [65535, 0], "selected a choice apple and delivered it to him along": [65535, 0], "a choice apple and delivered it to him along with": [65535, 0], "choice apple and delivered it to him along with an": [65535, 0], "apple and delivered it to him along with an improving": [65535, 0], "and delivered it to him along with an improving lecture": [65535, 0], "delivered it to him along with an improving lecture upon": [65535, 0], "it to him along with an improving lecture upon the": [65535, 0], "to him along with an improving lecture upon the added": [65535, 0], "him along with an improving lecture upon the added value": [65535, 0], "along with an improving lecture upon the added value and": [65535, 0], "with an improving lecture upon the added value and flavor": [65535, 0], "an improving lecture upon the added value and flavor a": [65535, 0], "improving lecture upon the added value and flavor a treat": [65535, 0], "lecture upon the added value and flavor a treat took": [65535, 0], "upon the added value and flavor a treat took to": [65535, 0], "the added value and flavor a treat took to itself": [65535, 0], "added value and flavor a treat took to itself when": [65535, 0], "value and flavor a treat took to itself when it": [65535, 0], "and flavor a treat took to itself when it came": [65535, 0], "flavor a treat took to itself when it came without": [65535, 0], "a treat took to itself when it came without sin": [65535, 0], "treat took to itself when it came without sin through": [65535, 0], "took to itself when it came without sin through virtuous": [65535, 0], "to itself when it came without sin through virtuous effort": [65535, 0], "itself when it came without sin through virtuous effort and": [65535, 0], "when it came without sin through virtuous effort and while": [65535, 0], "it came without sin through virtuous effort and while she": [65535, 0], "came without sin through virtuous effort and while she closed": [65535, 0], "without sin through virtuous effort and while she closed with": [65535, 0], "sin through virtuous effort and while she closed with a": [65535, 0], "through virtuous effort and while she closed with a happy": [65535, 0], "virtuous effort and while she closed with a happy scriptural": [65535, 0], "effort and while she closed with a happy scriptural flourish": [65535, 0], "and while she closed with a happy scriptural flourish he": [65535, 0], "while she closed with a happy scriptural flourish he hooked": [65535, 0], "she closed with a happy scriptural flourish he hooked a": [65535, 0], "closed with a happy scriptural flourish he hooked a doughnut": [65535, 0], "with a happy scriptural flourish he hooked a doughnut then": [65535, 0], "a happy scriptural flourish he hooked a doughnut then he": [65535, 0], "happy scriptural flourish he hooked a doughnut then he skipped": [65535, 0], "scriptural flourish he hooked a doughnut then he skipped out": [65535, 0], "flourish he hooked a doughnut then he skipped out and": [65535, 0], "he hooked a doughnut then he skipped out and saw": [65535, 0], "hooked a doughnut then he skipped out and saw sid": [65535, 0], "a doughnut then he skipped out and saw sid just": [65535, 0], "doughnut then he skipped out and saw sid just starting": [65535, 0], "then he skipped out and saw sid just starting up": [65535, 0], "he skipped out and saw sid just starting up the": [65535, 0], "skipped out and saw sid just starting up the outside": [65535, 0], "out and saw sid just starting up the outside stairway": [65535, 0], "and saw sid just starting up the outside stairway that": [65535, 0], "saw sid just starting up the outside stairway that led": [65535, 0], "sid just starting up the outside stairway that led to": [65535, 0], "just starting up the outside stairway that led to the": [65535, 0], "starting up the outside stairway that led to the back": [65535, 0], "up the outside stairway that led to the back rooms": [65535, 0], "the outside stairway that led to the back rooms on": [65535, 0], "outside stairway that led to the back rooms on the": [65535, 0], "stairway that led to the back rooms on the second": [65535, 0], "that led to the back rooms on the second floor": [65535, 0], "led to the back rooms on the second floor clods": [65535, 0], "to the back rooms on the second floor clods were": [65535, 0], "the back rooms on the second floor clods were handy": [65535, 0], "back rooms on the second floor clods were handy and": [65535, 0], "rooms on the second floor clods were handy and the": [65535, 0], "on the second floor clods were handy and the air": [65535, 0], "the second floor clods were handy and the air was": [65535, 0], "second floor clods were handy and the air was full": [65535, 0], "floor clods were handy and the air was full of": [65535, 0], "clods were handy and the air was full of them": [65535, 0], "were handy and the air was full of them in": [65535, 0], "handy and the air was full of them in a": [65535, 0], "and the air was full of them in a twinkling": [65535, 0], "the air was full of them in a twinkling they": [65535, 0], "air was full of them in a twinkling they raged": [65535, 0], "was full of them in a twinkling they raged around": [65535, 0], "full of them in a twinkling they raged around sid": [65535, 0], "of them in a twinkling they raged around sid like": [65535, 0], "them in a twinkling they raged around sid like a": [65535, 0], "in a twinkling they raged around sid like a hail": [65535, 0], "a twinkling they raged around sid like a hail storm": [65535, 0], "twinkling they raged around sid like a hail storm and": [65535, 0], "they raged around sid like a hail storm and before": [65535, 0], "raged around sid like a hail storm and before aunt": [65535, 0], "around sid like a hail storm and before aunt polly": [65535, 0], "sid like a hail storm and before aunt polly could": [65535, 0], "like a hail storm and before aunt polly could collect": [65535, 0], "a hail storm and before aunt polly could collect her": [65535, 0], "hail storm and before aunt polly could collect her surprised": [65535, 0], "storm and before aunt polly could collect her surprised faculties": [65535, 0], "and before aunt polly could collect her surprised faculties and": [65535, 0], "before aunt polly could collect her surprised faculties and sally": [65535, 0], "aunt polly could collect her surprised faculties and sally to": [65535, 0], "polly could collect her surprised faculties and sally to the": [65535, 0], "could collect her surprised faculties and sally to the rescue": [65535, 0], "collect her surprised faculties and sally to the rescue six": [65535, 0], "her surprised faculties and sally to the rescue six or": [65535, 0], "surprised faculties and sally to the rescue six or seven": [65535, 0], "faculties and sally to the rescue six or seven clods": [65535, 0], "and sally to the rescue six or seven clods had": [65535, 0], "sally to the rescue six or seven clods had taken": [65535, 0], "to the rescue six or seven clods had taken personal": [65535, 0], "the rescue six or seven clods had taken personal effect": [65535, 0], "rescue six or seven clods had taken personal effect and": [65535, 0], "six or seven clods had taken personal effect and tom": [65535, 0], "or seven clods had taken personal effect and tom was": [65535, 0], "seven clods had taken personal effect and tom was over": [65535, 0], "clods had taken personal effect and tom was over the": [65535, 0], "had taken personal effect and tom was over the fence": [65535, 0], "taken personal effect and tom was over the fence and": [65535, 0], "personal effect and tom was over the fence and gone": [65535, 0], "effect and tom was over the fence and gone there": [65535, 0], "and tom was over the fence and gone there was": [65535, 0], "tom was over the fence and gone there was a": [65535, 0], "was over the fence and gone there was a gate": [65535, 0], "over the fence and gone there was a gate but": [65535, 0], "the fence and gone there was a gate but as": [65535, 0], "fence and gone there was a gate but as a": [65535, 0], "and gone there was a gate but as a general": [65535, 0], "gone there was a gate but as a general thing": [65535, 0], "there was a gate but as a general thing he": [65535, 0], "was a gate but as a general thing he was": [65535, 0], "a gate but as a general thing he was too": [65535, 0], "gate but as a general thing he was too crowded": [65535, 0], "but as a general thing he was too crowded for": [65535, 0], "as a general thing he was too crowded for time": [65535, 0], "a general thing he was too crowded for time to": [65535, 0], "general thing he was too crowded for time to make": [65535, 0], "thing he was too crowded for time to make use": [65535, 0], "he was too crowded for time to make use of": [65535, 0], "was too crowded for time to make use of it": [65535, 0], "too crowded for time to make use of it his": [65535, 0], "crowded for time to make use of it his soul": [65535, 0], "for time to make use of it his soul was": [65535, 0], "time to make use of it his soul was at": [65535, 0], "to make use of it his soul was at peace": [65535, 0], "make use of it his soul was at peace now": [65535, 0], "use of it his soul was at peace now that": [65535, 0], "of it his soul was at peace now that he": [65535, 0], "it his soul was at peace now that he had": [65535, 0], "his soul was at peace now that he had settled": [65535, 0], "soul was at peace now that he had settled with": [65535, 0], "was at peace now that he had settled with sid": [65535, 0], "at peace now that he had settled with sid for": [65535, 0], "peace now that he had settled with sid for calling": [65535, 0], "now that he had settled with sid for calling attention": [65535, 0], "that he had settled with sid for calling attention to": [65535, 0], "he had settled with sid for calling attention to his": [65535, 0], "had settled with sid for calling attention to his black": [65535, 0], "settled with sid for calling attention to his black thread": [65535, 0], "with sid for calling attention to his black thread and": [65535, 0], "sid for calling attention to his black thread and getting": [65535, 0], "for calling attention to his black thread and getting him": [65535, 0], "calling attention to his black thread and getting him into": [65535, 0], "attention to his black thread and getting him into trouble": [65535, 0], "to his black thread and getting him into trouble tom": [65535, 0], "his black thread and getting him into trouble tom skirted": [65535, 0], "black thread and getting him into trouble tom skirted the": [65535, 0], "thread and getting him into trouble tom skirted the block": [65535, 0], "and getting him into trouble tom skirted the block and": [65535, 0], "getting him into trouble tom skirted the block and came": [65535, 0], "him into trouble tom skirted the block and came round": [65535, 0], "into trouble tom skirted the block and came round into": [65535, 0], "trouble tom skirted the block and came round into a": [65535, 0], "tom skirted the block and came round into a muddy": [65535, 0], "skirted the block and came round into a muddy alley": [65535, 0], "the block and came round into a muddy alley that": [65535, 0], "block and came round into a muddy alley that led": [65535, 0], "and came round into a muddy alley that led by": [65535, 0], "came round into a muddy alley that led by the": [65535, 0], "round into a muddy alley that led by the back": [65535, 0], "into a muddy alley that led by the back of": [65535, 0], "a muddy alley that led by the back of his": [65535, 0], "muddy alley that led by the back of his aunt's": [65535, 0], "alley that led by the back of his aunt's cowstable": [65535, 0], "that led by the back of his aunt's cowstable he": [65535, 0], "led by the back of his aunt's cowstable he presently": [65535, 0], "by the back of his aunt's cowstable he presently got": [65535, 0], "the back of his aunt's cowstable he presently got safely": [65535, 0], "back of his aunt's cowstable he presently got safely beyond": [65535, 0], "of his aunt's cowstable he presently got safely beyond the": [65535, 0], "his aunt's cowstable he presently got safely beyond the reach": [65535, 0], "aunt's cowstable he presently got safely beyond the reach of": [65535, 0], "cowstable he presently got safely beyond the reach of capture": [65535, 0], "he presently got safely beyond the reach of capture and": [65535, 0], "presently got safely beyond the reach of capture and punishment": [65535, 0], "got safely beyond the reach of capture and punishment and": [65535, 0], "safely beyond the reach of capture and punishment and hastened": [65535, 0], "beyond the reach of capture and punishment and hastened toward": [65535, 0], "the reach of capture and punishment and hastened toward the": [65535, 0], "reach of capture and punishment and hastened toward the public": [65535, 0], "of capture and punishment and hastened toward the public square": [65535, 0], "capture and punishment and hastened toward the public square of": [65535, 0], "and punishment and hastened toward the public square of the": [65535, 0], "punishment and hastened toward the public square of the village": [65535, 0], "and hastened toward the public square of the village where": [65535, 0], "hastened toward the public square of the village where two": [65535, 0], "toward the public square of the village where two military": [65535, 0], "the public square of the village where two military companies": [65535, 0], "public square of the village where two military companies of": [65535, 0], "square of the village where two military companies of boys": [65535, 0], "of the village where two military companies of boys had": [65535, 0], "the village where two military companies of boys had met": [65535, 0], "village where two military companies of boys had met for": [65535, 0], "where two military companies of boys had met for conflict": [65535, 0], "two military companies of boys had met for conflict according": [65535, 0], "military companies of boys had met for conflict according to": [65535, 0], "companies of boys had met for conflict according to previous": [65535, 0], "of boys had met for conflict according to previous appointment": [65535, 0], "boys had met for conflict according to previous appointment tom": [65535, 0], "had met for conflict according to previous appointment tom was": [65535, 0], "met for conflict according to previous appointment tom was general": [65535, 0], "for conflict according to previous appointment tom was general of": [65535, 0], "conflict according to previous appointment tom was general of one": [65535, 0], "according to previous appointment tom was general of one of": [65535, 0], "to previous appointment tom was general of one of these": [65535, 0], "previous appointment tom was general of one of these armies": [65535, 0], "appointment tom was general of one of these armies joe": [65535, 0], "tom was general of one of these armies joe harper": [65535, 0], "was general of one of these armies joe harper a": [65535, 0], "general of one of these armies joe harper a bosom": [65535, 0], "of one of these armies joe harper a bosom friend": [65535, 0], "one of these armies joe harper a bosom friend general": [65535, 0], "of these armies joe harper a bosom friend general of": [65535, 0], "these armies joe harper a bosom friend general of the": [65535, 0], "armies joe harper a bosom friend general of the other": [65535, 0], "joe harper a bosom friend general of the other these": [65535, 0], "harper a bosom friend general of the other these two": [65535, 0], "a bosom friend general of the other these two great": [65535, 0], "bosom friend general of the other these two great commanders": [65535, 0], "friend general of the other these two great commanders did": [65535, 0], "general of the other these two great commanders did not": [65535, 0], "of the other these two great commanders did not condescend": [65535, 0], "the other these two great commanders did not condescend to": [65535, 0], "other these two great commanders did not condescend to fight": [65535, 0], "these two great commanders did not condescend to fight in": [65535, 0], "two great commanders did not condescend to fight in person": [65535, 0], "great commanders did not condescend to fight in person that": [65535, 0], "commanders did not condescend to fight in person that being": [65535, 0], "did not condescend to fight in person that being better": [65535, 0], "not condescend to fight in person that being better suited": [65535, 0], "condescend to fight in person that being better suited to": [65535, 0], "to fight in person that being better suited to the": [65535, 0], "fight in person that being better suited to the still": [65535, 0], "in person that being better suited to the still smaller": [65535, 0], "person that being better suited to the still smaller fry": [65535, 0], "that being better suited to the still smaller fry but": [65535, 0], "being better suited to the still smaller fry but sat": [65535, 0], "better suited to the still smaller fry but sat together": [65535, 0], "suited to the still smaller fry but sat together on": [65535, 0], "to the still smaller fry but sat together on an": [65535, 0], "the still smaller fry but sat together on an eminence": [65535, 0], "still smaller fry but sat together on an eminence and": [65535, 0], "smaller fry but sat together on an eminence and conducted": [65535, 0], "fry but sat together on an eminence and conducted the": [65535, 0], "but sat together on an eminence and conducted the field": [65535, 0], "sat together on an eminence and conducted the field operations": [65535, 0], "together on an eminence and conducted the field operations by": [65535, 0], "on an eminence and conducted the field operations by orders": [65535, 0], "an eminence and conducted the field operations by orders delivered": [65535, 0], "eminence and conducted the field operations by orders delivered through": [65535, 0], "and conducted the field operations by orders delivered through aides": [65535, 0], "conducted the field operations by orders delivered through aides de": [65535, 0], "the field operations by orders delivered through aides de camp": [65535, 0], "field operations by orders delivered through aides de camp tom's": [65535, 0], "operations by orders delivered through aides de camp tom's army": [65535, 0], "by orders delivered through aides de camp tom's army won": [65535, 0], "orders delivered through aides de camp tom's army won a": [65535, 0], "delivered through aides de camp tom's army won a great": [65535, 0], "through aides de camp tom's army won a great victory": [65535, 0], "aides de camp tom's army won a great victory after": [65535, 0], "de camp tom's army won a great victory after a": [65535, 0], "camp tom's army won a great victory after a long": [65535, 0], "tom's army won a great victory after a long and": [65535, 0], "army won a great victory after a long and hard": [65535, 0], "won a great victory after a long and hard fought": [65535, 0], "a great victory after a long and hard fought battle": [65535, 0], "great victory after a long and hard fought battle then": [65535, 0], "victory after a long and hard fought battle then the": [65535, 0], "after a long and hard fought battle then the dead": [65535, 0], "a long and hard fought battle then the dead were": [65535, 0], "long and hard fought battle then the dead were counted": [65535, 0], "and hard fought battle then the dead were counted prisoners": [65535, 0], "hard fought battle then the dead were counted prisoners exchanged": [65535, 0], "fought battle then the dead were counted prisoners exchanged the": [65535, 0], "battle then the dead were counted prisoners exchanged the terms": [65535, 0], "then the dead were counted prisoners exchanged the terms of": [65535, 0], "the dead were counted prisoners exchanged the terms of the": [65535, 0], "dead were counted prisoners exchanged the terms of the next": [65535, 0], "were counted prisoners exchanged the terms of the next disagreement": [65535, 0], "counted prisoners exchanged the terms of the next disagreement agreed": [65535, 0], "prisoners exchanged the terms of the next disagreement agreed upon": [65535, 0], "exchanged the terms of the next disagreement agreed upon and": [65535, 0], "the terms of the next disagreement agreed upon and the": [65535, 0], "terms of the next disagreement agreed upon and the day": [65535, 0], "of the next disagreement agreed upon and the day for": [65535, 0], "the next disagreement agreed upon and the day for the": [65535, 0], "next disagreement agreed upon and the day for the necessary": [65535, 0], "disagreement agreed upon and the day for the necessary battle": [65535, 0], "agreed upon and the day for the necessary battle appointed": [65535, 0], "upon and the day for the necessary battle appointed after": [65535, 0], "and the day for the necessary battle appointed after which": [65535, 0], "the day for the necessary battle appointed after which the": [65535, 0], "day for the necessary battle appointed after which the armies": [65535, 0], "for the necessary battle appointed after which the armies fell": [65535, 0], "the necessary battle appointed after which the armies fell into": [65535, 0], "necessary battle appointed after which the armies fell into line": [65535, 0], "battle appointed after which the armies fell into line and": [65535, 0], "appointed after which the armies fell into line and marched": [65535, 0], "after which the armies fell into line and marched away": [65535, 0], "which the armies fell into line and marched away and": [65535, 0], "the armies fell into line and marched away and tom": [65535, 0], "armies fell into line and marched away and tom turned": [65535, 0], "fell into line and marched away and tom turned homeward": [65535, 0], "into line and marched away and tom turned homeward alone": [65535, 0], "line and marched away and tom turned homeward alone as": [65535, 0], "and marched away and tom turned homeward alone as he": [65535, 0], "marched away and tom turned homeward alone as he was": [65535, 0], "away and tom turned homeward alone as he was passing": [65535, 0], "and tom turned homeward alone as he was passing by": [65535, 0], "tom turned homeward alone as he was passing by the": [65535, 0], "turned homeward alone as he was passing by the house": [65535, 0], "homeward alone as he was passing by the house where": [65535, 0], "alone as he was passing by the house where jeff": [65535, 0], "as he was passing by the house where jeff thatcher": [65535, 0], "he was passing by the house where jeff thatcher lived": [65535, 0], "was passing by the house where jeff thatcher lived he": [65535, 0], "passing by the house where jeff thatcher lived he saw": [65535, 0], "by the house where jeff thatcher lived he saw a": [65535, 0], "the house where jeff thatcher lived he saw a new": [65535, 0], "house where jeff thatcher lived he saw a new girl": [65535, 0], "where jeff thatcher lived he saw a new girl in": [65535, 0], "jeff thatcher lived he saw a new girl in the": [65535, 0], "thatcher lived he saw a new girl in the garden": [65535, 0], "lived he saw a new girl in the garden a": [65535, 0], "he saw a new girl in the garden a lovely": [65535, 0], "saw a new girl in the garden a lovely little": [65535, 0], "a new girl in the garden a lovely little blue": [65535, 0], "new girl in the garden a lovely little blue eyed": [65535, 0], "girl in the garden a lovely little blue eyed creature": [65535, 0], "in the garden a lovely little blue eyed creature with": [65535, 0], "the garden a lovely little blue eyed creature with yellow": [65535, 0], "garden a lovely little blue eyed creature with yellow hair": [65535, 0], "a lovely little blue eyed creature with yellow hair plaited": [65535, 0], "lovely little blue eyed creature with yellow hair plaited into": [65535, 0], "little blue eyed creature with yellow hair plaited into two": [65535, 0], "blue eyed creature with yellow hair plaited into two long": [65535, 0], "eyed creature with yellow hair plaited into two long tails": [65535, 0], "creature with yellow hair plaited into two long tails white": [65535, 0], "with yellow hair plaited into two long tails white summer": [65535, 0], "yellow hair plaited into two long tails white summer frock": [65535, 0], "hair plaited into two long tails white summer frock and": [65535, 0], "plaited into two long tails white summer frock and embroidered": [65535, 0], "into two long tails white summer frock and embroidered pantalettes": [65535, 0], "two long tails white summer frock and embroidered pantalettes the": [65535, 0], "long tails white summer frock and embroidered pantalettes the fresh": [65535, 0], "tails white summer frock and embroidered pantalettes the fresh crowned": [65535, 0], "white summer frock and embroidered pantalettes the fresh crowned hero": [65535, 0], "summer frock and embroidered pantalettes the fresh crowned hero fell": [65535, 0], "frock and embroidered pantalettes the fresh crowned hero fell without": [65535, 0], "and embroidered pantalettes the fresh crowned hero fell without firing": [65535, 0], "embroidered pantalettes the fresh crowned hero fell without firing a": [65535, 0], "pantalettes the fresh crowned hero fell without firing a shot": [65535, 0], "the fresh crowned hero fell without firing a shot a": [65535, 0], "fresh crowned hero fell without firing a shot a certain": [65535, 0], "crowned hero fell without firing a shot a certain amy": [65535, 0], "hero fell without firing a shot a certain amy lawrence": [65535, 0], "fell without firing a shot a certain amy lawrence vanished": [65535, 0], "without firing a shot a certain amy lawrence vanished out": [65535, 0], "firing a shot a certain amy lawrence vanished out of": [65535, 0], "a shot a certain amy lawrence vanished out of his": [65535, 0], "shot a certain amy lawrence vanished out of his heart": [65535, 0], "a certain amy lawrence vanished out of his heart and": [65535, 0], "certain amy lawrence vanished out of his heart and left": [65535, 0], "amy lawrence vanished out of his heart and left not": [65535, 0], "lawrence vanished out of his heart and left not even": [65535, 0], "vanished out of his heart and left not even a": [65535, 0], "out of his heart and left not even a memory": [65535, 0], "of his heart and left not even a memory of": [65535, 0], "his heart and left not even a memory of herself": [65535, 0], "heart and left not even a memory of herself behind": [65535, 0], "and left not even a memory of herself behind he": [65535, 0], "left not even a memory of herself behind he had": [65535, 0], "not even a memory of herself behind he had thought": [65535, 0], "even a memory of herself behind he had thought he": [65535, 0], "a memory of herself behind he had thought he loved": [65535, 0], "memory of herself behind he had thought he loved her": [65535, 0], "of herself behind he had thought he loved her to": [65535, 0], "herself behind he had thought he loved her to distraction": [65535, 0], "behind he had thought he loved her to distraction he": [65535, 0], "he had thought he loved her to distraction he had": [65535, 0], "had thought he loved her to distraction he had regarded": [65535, 0], "thought he loved her to distraction he had regarded his": [65535, 0], "he loved her to distraction he had regarded his passion": [65535, 0], "loved her to distraction he had regarded his passion as": [65535, 0], "her to distraction he had regarded his passion as adoration": [65535, 0], "to distraction he had regarded his passion as adoration and": [65535, 0], "distraction he had regarded his passion as adoration and behold": [65535, 0], "he had regarded his passion as adoration and behold it": [65535, 0], "had regarded his passion as adoration and behold it was": [65535, 0], "regarded his passion as adoration and behold it was only": [65535, 0], "his passion as adoration and behold it was only a": [65535, 0], "passion as adoration and behold it was only a poor": [65535, 0], "as adoration and behold it was only a poor little": [65535, 0], "adoration and behold it was only a poor little evanescent": [65535, 0], "and behold it was only a poor little evanescent partiality": [65535, 0], "behold it was only a poor little evanescent partiality he": [65535, 0], "it was only a poor little evanescent partiality he had": [65535, 0], "was only a poor little evanescent partiality he had been": [65535, 0], "only a poor little evanescent partiality he had been months": [65535, 0], "a poor little evanescent partiality he had been months winning": [65535, 0], "poor little evanescent partiality he had been months winning her": [65535, 0], "little evanescent partiality he had been months winning her she": [65535, 0], "evanescent partiality he had been months winning her she had": [65535, 0], "partiality he had been months winning her she had confessed": [65535, 0], "he had been months winning her she had confessed hardly": [65535, 0], "had been months winning her she had confessed hardly a": [65535, 0], "been months winning her she had confessed hardly a week": [65535, 0], "months winning her she had confessed hardly a week ago": [65535, 0], "winning her she had confessed hardly a week ago he": [65535, 0], "her she had confessed hardly a week ago he had": [65535, 0], "she had confessed hardly a week ago he had been": [65535, 0], "had confessed hardly a week ago he had been the": [65535, 0], "confessed hardly a week ago he had been the happiest": [65535, 0], "hardly a week ago he had been the happiest and": [65535, 0], "a week ago he had been the happiest and the": [65535, 0], "week ago he had been the happiest and the proudest": [65535, 0], "ago he had been the happiest and the proudest boy": [65535, 0], "he had been the happiest and the proudest boy in": [65535, 0], "had been the happiest and the proudest boy in the": [65535, 0], "been the happiest and the proudest boy in the world": [65535, 0], "the happiest and the proudest boy in the world only": [65535, 0], "happiest and the proudest boy in the world only seven": [65535, 0], "and the proudest boy in the world only seven short": [65535, 0], "the proudest boy in the world only seven short days": [65535, 0], "proudest boy in the world only seven short days and": [65535, 0], "boy in the world only seven short days and here": [65535, 0], "in the world only seven short days and here in": [65535, 0], "the world only seven short days and here in one": [65535, 0], "world only seven short days and here in one instant": [65535, 0], "only seven short days and here in one instant of": [65535, 0], "seven short days and here in one instant of time": [65535, 0], "short days and here in one instant of time she": [65535, 0], "days and here in one instant of time she had": [65535, 0], "and here in one instant of time she had gone": [65535, 0], "here in one instant of time she had gone out": [65535, 0], "in one instant of time she had gone out of": [65535, 0], "one instant of time she had gone out of his": [65535, 0], "instant of time she had gone out of his heart": [65535, 0], "of time she had gone out of his heart like": [65535, 0], "time she had gone out of his heart like a": [65535, 0], "she had gone out of his heart like a casual": [65535, 0], "had gone out of his heart like a casual stranger": [65535, 0], "gone out of his heart like a casual stranger whose": [65535, 0], "out of his heart like a casual stranger whose visit": [65535, 0], "of his heart like a casual stranger whose visit is": [65535, 0], "his heart like a casual stranger whose visit is done": [65535, 0], "heart like a casual stranger whose visit is done he": [65535, 0], "like a casual stranger whose visit is done he worshipped": [65535, 0], "a casual stranger whose visit is done he worshipped this": [65535, 0], "casual stranger whose visit is done he worshipped this new": [65535, 0], "stranger whose visit is done he worshipped this new angel": [65535, 0], "whose visit is done he worshipped this new angel with": [65535, 0], "visit is done he worshipped this new angel with furtive": [65535, 0], "is done he worshipped this new angel with furtive eye": [65535, 0], "done he worshipped this new angel with furtive eye till": [65535, 0], "he worshipped this new angel with furtive eye till he": [65535, 0], "worshipped this new angel with furtive eye till he saw": [65535, 0], "this new angel with furtive eye till he saw that": [65535, 0], "new angel with furtive eye till he saw that she": [65535, 0], "angel with furtive eye till he saw that she had": [65535, 0], "with furtive eye till he saw that she had discovered": [65535, 0], "furtive eye till he saw that she had discovered him": [65535, 0], "eye till he saw that she had discovered him then": [65535, 0], "till he saw that she had discovered him then he": [65535, 0], "he saw that she had discovered him then he pretended": [65535, 0], "saw that she had discovered him then he pretended he": [65535, 0], "that she had discovered him then he pretended he did": [65535, 0], "she had discovered him then he pretended he did not": [65535, 0], "had discovered him then he pretended he did not know": [65535, 0], "discovered him then he pretended he did not know she": [65535, 0], "him then he pretended he did not know she was": [65535, 0], "then he pretended he did not know she was present": [65535, 0], "he pretended he did not know she was present and": [65535, 0], "pretended he did not know she was present and began": [65535, 0], "he did not know she was present and began to": [65535, 0], "did not know she was present and began to show": [65535, 0], "not know she was present and began to show off": [65535, 0], "know she was present and began to show off in": [65535, 0], "she was present and began to show off in all": [65535, 0], "was present and began to show off in all sorts": [65535, 0], "present and began to show off in all sorts of": [65535, 0], "and began to show off in all sorts of absurd": [65535, 0], "began to show off in all sorts of absurd boyish": [65535, 0], "to show off in all sorts of absurd boyish ways": [65535, 0], "show off in all sorts of absurd boyish ways in": [65535, 0], "off in all sorts of absurd boyish ways in order": [65535, 0], "in all sorts of absurd boyish ways in order to": [65535, 0], "all sorts of absurd boyish ways in order to win": [65535, 0], "sorts of absurd boyish ways in order to win her": [65535, 0], "of absurd boyish ways in order to win her admiration": [65535, 0], "absurd boyish ways in order to win her admiration he": [65535, 0], "boyish ways in order to win her admiration he kept": [65535, 0], "ways in order to win her admiration he kept up": [65535, 0], "in order to win her admiration he kept up this": [65535, 0], "order to win her admiration he kept up this grotesque": [65535, 0], "to win her admiration he kept up this grotesque foolishness": [65535, 0], "win her admiration he kept up this grotesque foolishness for": [65535, 0], "her admiration he kept up this grotesque foolishness for some": [65535, 0], "admiration he kept up this grotesque foolishness for some time": [65535, 0], "he kept up this grotesque foolishness for some time but": [65535, 0], "kept up this grotesque foolishness for some time but by": [65535, 0], "up this grotesque foolishness for some time but by and": [65535, 0], "this grotesque foolishness for some time but by and by": [65535, 0], "grotesque foolishness for some time but by and by while": [65535, 0], "foolishness for some time but by and by while he": [65535, 0], "for some time but by and by while he was": [65535, 0], "some time but by and by while he was in": [65535, 0], "time but by and by while he was in the": [65535, 0], "but by and by while he was in the midst": [65535, 0], "by and by while he was in the midst of": [65535, 0], "and by while he was in the midst of some": [65535, 0], "by while he was in the midst of some dangerous": [65535, 0], "while he was in the midst of some dangerous gymnastic": [65535, 0], "he was in the midst of some dangerous gymnastic performances": [65535, 0], "was in the midst of some dangerous gymnastic performances he": [65535, 0], "in the midst of some dangerous gymnastic performances he glanced": [65535, 0], "the midst of some dangerous gymnastic performances he glanced aside": [65535, 0], "midst of some dangerous gymnastic performances he glanced aside and": [65535, 0], "of some dangerous gymnastic performances he glanced aside and saw": [65535, 0], "some dangerous gymnastic performances he glanced aside and saw that": [65535, 0], "dangerous gymnastic performances he glanced aside and saw that the": [65535, 0], "gymnastic performances he glanced aside and saw that the little": [65535, 0], "performances he glanced aside and saw that the little girl": [65535, 0], "he glanced aside and saw that the little girl was": [65535, 0], "glanced aside and saw that the little girl was wending": [65535, 0], "aside and saw that the little girl was wending her": [65535, 0], "and saw that the little girl was wending her way": [65535, 0], "saw that the little girl was wending her way toward": [65535, 0], "that the little girl was wending her way toward the": [65535, 0], "the little girl was wending her way toward the house": [65535, 0], "little girl was wending her way toward the house tom": [65535, 0], "girl was wending her way toward the house tom came": [65535, 0], "was wending her way toward the house tom came up": [65535, 0], "wending her way toward the house tom came up to": [65535, 0], "her way toward the house tom came up to the": [65535, 0], "way toward the house tom came up to the fence": [65535, 0], "toward the house tom came up to the fence and": [65535, 0], "the house tom came up to the fence and leaned": [65535, 0], "house tom came up to the fence and leaned on": [65535, 0], "tom came up to the fence and leaned on it": [65535, 0], "came up to the fence and leaned on it grieving": [65535, 0], "up to the fence and leaned on it grieving and": [65535, 0], "to the fence and leaned on it grieving and hoping": [65535, 0], "the fence and leaned on it grieving and hoping she": [65535, 0], "fence and leaned on it grieving and hoping she would": [65535, 0], "and leaned on it grieving and hoping she would tarry": [65535, 0], "leaned on it grieving and hoping she would tarry yet": [65535, 0], "on it grieving and hoping she would tarry yet awhile": [65535, 0], "it grieving and hoping she would tarry yet awhile longer": [65535, 0], "grieving and hoping she would tarry yet awhile longer she": [65535, 0], "and hoping she would tarry yet awhile longer she halted": [65535, 0], "hoping she would tarry yet awhile longer she halted a": [65535, 0], "she would tarry yet awhile longer she halted a moment": [65535, 0], "would tarry yet awhile longer she halted a moment on": [65535, 0], "tarry yet awhile longer she halted a moment on the": [65535, 0], "yet awhile longer she halted a moment on the steps": [65535, 0], "awhile longer she halted a moment on the steps and": [65535, 0], "longer she halted a moment on the steps and then": [65535, 0], "she halted a moment on the steps and then moved": [65535, 0], "halted a moment on the steps and then moved toward": [65535, 0], "a moment on the steps and then moved toward the": [65535, 0], "moment on the steps and then moved toward the door": [65535, 0], "on the steps and then moved toward the door tom": [65535, 0], "the steps and then moved toward the door tom heaved": [65535, 0], "steps and then moved toward the door tom heaved a": [65535, 0], "and then moved toward the door tom heaved a great": [65535, 0], "then moved toward the door tom heaved a great sigh": [65535, 0], "moved toward the door tom heaved a great sigh as": [65535, 0], "toward the door tom heaved a great sigh as she": [65535, 0], "the door tom heaved a great sigh as she put": [65535, 0], "door tom heaved a great sigh as she put her": [65535, 0], "tom heaved a great sigh as she put her foot": [65535, 0], "heaved a great sigh as she put her foot on": [65535, 0], "a great sigh as she put her foot on the": [65535, 0], "great sigh as she put her foot on the threshold": [65535, 0], "sigh as she put her foot on the threshold but": [65535, 0], "as she put her foot on the threshold but his": [65535, 0], "she put her foot on the threshold but his face": [65535, 0], "put her foot on the threshold but his face lit": [65535, 0], "her foot on the threshold but his face lit up": [65535, 0], "foot on the threshold but his face lit up right": [65535, 0], "on the threshold but his face lit up right away": [65535, 0], "the threshold but his face lit up right away for": [65535, 0], "threshold but his face lit up right away for she": [65535, 0], "but his face lit up right away for she tossed": [65535, 0], "his face lit up right away for she tossed a": [65535, 0], "face lit up right away for she tossed a pansy": [65535, 0], "lit up right away for she tossed a pansy over": [65535, 0], "up right away for she tossed a pansy over the": [65535, 0], "right away for she tossed a pansy over the fence": [65535, 0], "away for she tossed a pansy over the fence a": [65535, 0], "for she tossed a pansy over the fence a moment": [65535, 0], "she tossed a pansy over the fence a moment before": [65535, 0], "tossed a pansy over the fence a moment before she": [65535, 0], "a pansy over the fence a moment before she disappeared": [65535, 0], "pansy over the fence a moment before she disappeared the": [65535, 0], "over the fence a moment before she disappeared the boy": [65535, 0], "the fence a moment before she disappeared the boy ran": [65535, 0], "fence a moment before she disappeared the boy ran around": [65535, 0], "a moment before she disappeared the boy ran around and": [65535, 0], "moment before she disappeared the boy ran around and stopped": [65535, 0], "before she disappeared the boy ran around and stopped within": [65535, 0], "she disappeared the boy ran around and stopped within a": [65535, 0], "disappeared the boy ran around and stopped within a foot": [65535, 0], "the boy ran around and stopped within a foot or": [65535, 0], "boy ran around and stopped within a foot or two": [65535, 0], "ran around and stopped within a foot or two of": [65535, 0], "around and stopped within a foot or two of the": [65535, 0], "and stopped within a foot or two of the flower": [65535, 0], "stopped within a foot or two of the flower and": [65535, 0], "within a foot or two of the flower and then": [65535, 0], "a foot or two of the flower and then shaded": [65535, 0], "foot or two of the flower and then shaded his": [65535, 0], "or two of the flower and then shaded his eyes": [65535, 0], "two of the flower and then shaded his eyes with": [65535, 0], "of the flower and then shaded his eyes with his": [65535, 0], "the flower and then shaded his eyes with his hand": [65535, 0], "flower and then shaded his eyes with his hand and": [65535, 0], "and then shaded his eyes with his hand and began": [65535, 0], "then shaded his eyes with his hand and began to": [65535, 0], "shaded his eyes with his hand and began to look": [65535, 0], "his eyes with his hand and began to look down": [65535, 0], "eyes with his hand and began to look down street": [65535, 0], "with his hand and began to look down street as": [65535, 0], "his hand and began to look down street as if": [65535, 0], "hand and began to look down street as if he": [65535, 0], "and began to look down street as if he had": [65535, 0], "began to look down street as if he had discovered": [65535, 0], "to look down street as if he had discovered something": [65535, 0], "look down street as if he had discovered something of": [65535, 0], "down street as if he had discovered something of interest": [65535, 0], "street as if he had discovered something of interest going": [65535, 0], "as if he had discovered something of interest going on": [65535, 0], "if he had discovered something of interest going on in": [65535, 0], "he had discovered something of interest going on in that": [65535, 0], "had discovered something of interest going on in that direction": [65535, 0], "discovered something of interest going on in that direction presently": [65535, 0], "something of interest going on in that direction presently he": [65535, 0], "of interest going on in that direction presently he picked": [65535, 0], "interest going on in that direction presently he picked up": [65535, 0], "going on in that direction presently he picked up a": [65535, 0], "on in that direction presently he picked up a straw": [65535, 0], "in that direction presently he picked up a straw and": [65535, 0], "that direction presently he picked up a straw and began": [65535, 0], "direction presently he picked up a straw and began trying": [65535, 0], "presently he picked up a straw and began trying to": [65535, 0], "he picked up a straw and began trying to balance": [65535, 0], "picked up a straw and began trying to balance it": [65535, 0], "up a straw and began trying to balance it on": [65535, 0], "a straw and began trying to balance it on his": [65535, 0], "straw and began trying to balance it on his nose": [65535, 0], "and began trying to balance it on his nose with": [65535, 0], "began trying to balance it on his nose with his": [65535, 0], "trying to balance it on his nose with his head": [65535, 0], "to balance it on his nose with his head tilted": [65535, 0], "balance it on his nose with his head tilted far": [65535, 0], "it on his nose with his head tilted far back": [65535, 0], "on his nose with his head tilted far back and": [65535, 0], "his nose with his head tilted far back and as": [65535, 0], "nose with his head tilted far back and as he": [65535, 0], "with his head tilted far back and as he moved": [65535, 0], "his head tilted far back and as he moved from": [65535, 0], "head tilted far back and as he moved from side": [65535, 0], "tilted far back and as he moved from side to": [65535, 0], "far back and as he moved from side to side": [65535, 0], "back and as he moved from side to side in": [65535, 0], "and as he moved from side to side in his": [65535, 0], "as he moved from side to side in his efforts": [65535, 0], "he moved from side to side in his efforts he": [65535, 0], "moved from side to side in his efforts he edged": [65535, 0], "from side to side in his efforts he edged nearer": [65535, 0], "side to side in his efforts he edged nearer and": [65535, 0], "to side in his efforts he edged nearer and nearer": [65535, 0], "side in his efforts he edged nearer and nearer toward": [65535, 0], "in his efforts he edged nearer and nearer toward the": [65535, 0], "his efforts he edged nearer and nearer toward the pansy": [65535, 0], "efforts he edged nearer and nearer toward the pansy finally": [65535, 0], "he edged nearer and nearer toward the pansy finally his": [65535, 0], "edged nearer and nearer toward the pansy finally his bare": [65535, 0], "nearer and nearer toward the pansy finally his bare foot": [65535, 0], "and nearer toward the pansy finally his bare foot rested": [65535, 0], "nearer toward the pansy finally his bare foot rested upon": [65535, 0], "toward the pansy finally his bare foot rested upon it": [65535, 0], "the pansy finally his bare foot rested upon it his": [65535, 0], "pansy finally his bare foot rested upon it his pliant": [65535, 0], "finally his bare foot rested upon it his pliant toes": [65535, 0], "his bare foot rested upon it his pliant toes closed": [65535, 0], "bare foot rested upon it his pliant toes closed upon": [65535, 0], "foot rested upon it his pliant toes closed upon it": [65535, 0], "rested upon it his pliant toes closed upon it and": [65535, 0], "upon it his pliant toes closed upon it and he": [65535, 0], "it his pliant toes closed upon it and he hopped": [65535, 0], "his pliant toes closed upon it and he hopped away": [65535, 0], "pliant toes closed upon it and he hopped away with": [65535, 0], "toes closed upon it and he hopped away with the": [65535, 0], "closed upon it and he hopped away with the treasure": [65535, 0], "upon it and he hopped away with the treasure and": [65535, 0], "it and he hopped away with the treasure and disappeared": [65535, 0], "and he hopped away with the treasure and disappeared round": [65535, 0], "he hopped away with the treasure and disappeared round the": [65535, 0], "hopped away with the treasure and disappeared round the corner": [65535, 0], "away with the treasure and disappeared round the corner but": [65535, 0], "with the treasure and disappeared round the corner but only": [65535, 0], "the treasure and disappeared round the corner but only for": [65535, 0], "treasure and disappeared round the corner but only for a": [65535, 0], "and disappeared round the corner but only for a minute": [65535, 0], "disappeared round the corner but only for a minute only": [65535, 0], "round the corner but only for a minute only while": [65535, 0], "the corner but only for a minute only while he": [65535, 0], "corner but only for a minute only while he could": [65535, 0], "but only for a minute only while he could button": [65535, 0], "only for a minute only while he could button the": [65535, 0], "for a minute only while he could button the flower": [65535, 0], "a minute only while he could button the flower inside": [65535, 0], "minute only while he could button the flower inside his": [65535, 0], "only while he could button the flower inside his jacket": [65535, 0], "while he could button the flower inside his jacket next": [65535, 0], "he could button the flower inside his jacket next his": [65535, 0], "could button the flower inside his jacket next his heart": [65535, 0], "button the flower inside his jacket next his heart or": [65535, 0], "the flower inside his jacket next his heart or next": [65535, 0], "flower inside his jacket next his heart or next his": [65535, 0], "inside his jacket next his heart or next his stomach": [65535, 0], "his jacket next his heart or next his stomach possibly": [65535, 0], "jacket next his heart or next his stomach possibly for": [65535, 0], "next his heart or next his stomach possibly for he": [65535, 0], "his heart or next his stomach possibly for he was": [65535, 0], "heart or next his stomach possibly for he was not": [65535, 0], "or next his stomach possibly for he was not much": [65535, 0], "next his stomach possibly for he was not much posted": [65535, 0], "his stomach possibly for he was not much posted in": [65535, 0], "stomach possibly for he was not much posted in anatomy": [65535, 0], "possibly for he was not much posted in anatomy and": [65535, 0], "for he was not much posted in anatomy and not": [65535, 0], "he was not much posted in anatomy and not hypercritical": [65535, 0], "was not much posted in anatomy and not hypercritical anyway": [65535, 0], "not much posted in anatomy and not hypercritical anyway he": [65535, 0], "much posted in anatomy and not hypercritical anyway he returned": [65535, 0], "posted in anatomy and not hypercritical anyway he returned now": [65535, 0], "in anatomy and not hypercritical anyway he returned now and": [65535, 0], "anatomy and not hypercritical anyway he returned now and hung": [65535, 0], "and not hypercritical anyway he returned now and hung about": [65535, 0], "not hypercritical anyway he returned now and hung about the": [65535, 0], "hypercritical anyway he returned now and hung about the fence": [65535, 0], "anyway he returned now and hung about the fence till": [65535, 0], "he returned now and hung about the fence till nightfall": [65535, 0], "returned now and hung about the fence till nightfall showing": [65535, 0], "now and hung about the fence till nightfall showing off": [65535, 0], "and hung about the fence till nightfall showing off as": [65535, 0], "hung about the fence till nightfall showing off as before": [65535, 0], "about the fence till nightfall showing off as before but": [65535, 0], "the fence till nightfall showing off as before but the": [65535, 0], "fence till nightfall showing off as before but the girl": [65535, 0], "till nightfall showing off as before but the girl never": [65535, 0], "nightfall showing off as before but the girl never exhibited": [65535, 0], "showing off as before but the girl never exhibited herself": [65535, 0], "off as before but the girl never exhibited herself again": [65535, 0], "as before but the girl never exhibited herself again though": [65535, 0], "before but the girl never exhibited herself again though tom": [65535, 0], "but the girl never exhibited herself again though tom comforted": [65535, 0], "the girl never exhibited herself again though tom comforted himself": [65535, 0], "girl never exhibited herself again though tom comforted himself a": [65535, 0], "never exhibited herself again though tom comforted himself a little": [65535, 0], "exhibited herself again though tom comforted himself a little with": [65535, 0], "herself again though tom comforted himself a little with the": [65535, 0], "again though tom comforted himself a little with the hope": [65535, 0], "though tom comforted himself a little with the hope that": [65535, 0], "tom comforted himself a little with the hope that she": [65535, 0], "comforted himself a little with the hope that she had": [65535, 0], "himself a little with the hope that she had been": [65535, 0], "a little with the hope that she had been near": [65535, 0], "little with the hope that she had been near some": [65535, 0], "with the hope that she had been near some window": [65535, 0], "the hope that she had been near some window meantime": [65535, 0], "hope that she had been near some window meantime and": [65535, 0], "that she had been near some window meantime and been": [65535, 0], "she had been near some window meantime and been aware": [65535, 0], "had been near some window meantime and been aware of": [65535, 0], "been near some window meantime and been aware of his": [65535, 0], "near some window meantime and been aware of his attentions": [65535, 0], "some window meantime and been aware of his attentions finally": [65535, 0], "window meantime and been aware of his attentions finally he": [65535, 0], "meantime and been aware of his attentions finally he strode": [65535, 0], "and been aware of his attentions finally he strode home": [65535, 0], "been aware of his attentions finally he strode home reluctantly": [65535, 0], "aware of his attentions finally he strode home reluctantly with": [65535, 0], "of his attentions finally he strode home reluctantly with his": [65535, 0], "his attentions finally he strode home reluctantly with his poor": [65535, 0], "attentions finally he strode home reluctantly with his poor head": [65535, 0], "finally he strode home reluctantly with his poor head full": [65535, 0], "he strode home reluctantly with his poor head full of": [65535, 0], "strode home reluctantly with his poor head full of visions": [65535, 0], "home reluctantly with his poor head full of visions all": [65535, 0], "reluctantly with his poor head full of visions all through": [65535, 0], "with his poor head full of visions all through supper": [65535, 0], "his poor head full of visions all through supper his": [65535, 0], "poor head full of visions all through supper his spirits": [65535, 0], "head full of visions all through supper his spirits were": [65535, 0], "full of visions all through supper his spirits were so": [65535, 0], "of visions all through supper his spirits were so high": [65535, 0], "visions all through supper his spirits were so high that": [65535, 0], "all through supper his spirits were so high that his": [65535, 0], "through supper his spirits were so high that his aunt": [65535, 0], "supper his spirits were so high that his aunt wondered": [65535, 0], "his spirits were so high that his aunt wondered what": [65535, 0], "spirits were so high that his aunt wondered what had": [65535, 0], "were so high that his aunt wondered what had got": [65535, 0], "so high that his aunt wondered what had got into": [65535, 0], "high that his aunt wondered what had got into the": [65535, 0], "that his aunt wondered what had got into the child": [65535, 0], "his aunt wondered what had got into the child he": [65535, 0], "aunt wondered what had got into the child he took": [65535, 0], "wondered what had got into the child he took a": [65535, 0], "what had got into the child he took a good": [65535, 0], "had got into the child he took a good scolding": [65535, 0], "got into the child he took a good scolding about": [65535, 0], "into the child he took a good scolding about clodding": [65535, 0], "the child he took a good scolding about clodding sid": [65535, 0], "child he took a good scolding about clodding sid and": [65535, 0], "he took a good scolding about clodding sid and did": [65535, 0], "took a good scolding about clodding sid and did not": [65535, 0], "a good scolding about clodding sid and did not seem": [65535, 0], "good scolding about clodding sid and did not seem to": [65535, 0], "scolding about clodding sid and did not seem to mind": [65535, 0], "about clodding sid and did not seem to mind it": [65535, 0], "clodding sid and did not seem to mind it in": [65535, 0], "sid and did not seem to mind it in the": [65535, 0], "and did not seem to mind it in the least": [65535, 0], "did not seem to mind it in the least he": [65535, 0], "not seem to mind it in the least he tried": [65535, 0], "seem to mind it in the least he tried to": [65535, 0], "to mind it in the least he tried to steal": [65535, 0], "mind it in the least he tried to steal sugar": [65535, 0], "it in the least he tried to steal sugar under": [65535, 0], "in the least he tried to steal sugar under his": [65535, 0], "the least he tried to steal sugar under his aunt's": [65535, 0], "least he tried to steal sugar under his aunt's very": [65535, 0], "he tried to steal sugar under his aunt's very nose": [65535, 0], "tried to steal sugar under his aunt's very nose and": [65535, 0], "to steal sugar under his aunt's very nose and got": [65535, 0], "steal sugar under his aunt's very nose and got his": [65535, 0], "sugar under his aunt's very nose and got his knuckles": [65535, 0], "under his aunt's very nose and got his knuckles rapped": [65535, 0], "his aunt's very nose and got his knuckles rapped for": [65535, 0], "aunt's very nose and got his knuckles rapped for it": [65535, 0], "very nose and got his knuckles rapped for it he": [65535, 0], "nose and got his knuckles rapped for it he said": [65535, 0], "and got his knuckles rapped for it he said aunt": [65535, 0], "got his knuckles rapped for it he said aunt you": [65535, 0], "his knuckles rapped for it he said aunt you don't": [65535, 0], "knuckles rapped for it he said aunt you don't whack": [65535, 0], "rapped for it he said aunt you don't whack sid": [65535, 0], "for it he said aunt you don't whack sid when": [65535, 0], "it he said aunt you don't whack sid when he": [65535, 0], "he said aunt you don't whack sid when he takes": [65535, 0], "said aunt you don't whack sid when he takes it": [65535, 0], "aunt you don't whack sid when he takes it well": [65535, 0], "you don't whack sid when he takes it well sid": [65535, 0], "don't whack sid when he takes it well sid don't": [65535, 0], "whack sid when he takes it well sid don't torment": [65535, 0], "sid when he takes it well sid don't torment a": [65535, 0], "when he takes it well sid don't torment a body": [65535, 0], "he takes it well sid don't torment a body the": [65535, 0], "takes it well sid don't torment a body the way": [65535, 0], "it well sid don't torment a body the way you": [65535, 0], "well sid don't torment a body the way you do": [65535, 0], "sid don't torment a body the way you do you'd": [65535, 0], "don't torment a body the way you do you'd be": [65535, 0], "torment a body the way you do you'd be always": [65535, 0], "a body the way you do you'd be always into": [65535, 0], "body the way you do you'd be always into that": [65535, 0], "the way you do you'd be always into that sugar": [65535, 0], "way you do you'd be always into that sugar if": [65535, 0], "you do you'd be always into that sugar if i": [65535, 0], "do you'd be always into that sugar if i warn't": [65535, 0], "you'd be always into that sugar if i warn't watching": [65535, 0], "be always into that sugar if i warn't watching you": [65535, 0], "always into that sugar if i warn't watching you presently": [65535, 0], "into that sugar if i warn't watching you presently she": [65535, 0], "that sugar if i warn't watching you presently she stepped": [65535, 0], "sugar if i warn't watching you presently she stepped into": [65535, 0], "if i warn't watching you presently she stepped into the": [65535, 0], "i warn't watching you presently she stepped into the kitchen": [65535, 0], "warn't watching you presently she stepped into the kitchen and": [65535, 0], "watching you presently she stepped into the kitchen and sid": [65535, 0], "you presently she stepped into the kitchen and sid happy": [65535, 0], "presently she stepped into the kitchen and sid happy in": [65535, 0], "she stepped into the kitchen and sid happy in his": [65535, 0], "stepped into the kitchen and sid happy in his immunity": [65535, 0], "into the kitchen and sid happy in his immunity reached": [65535, 0], "the kitchen and sid happy in his immunity reached for": [65535, 0], "kitchen and sid happy in his immunity reached for the": [65535, 0], "and sid happy in his immunity reached for the sugar": [65535, 0], "sid happy in his immunity reached for the sugar bowl": [65535, 0], "happy in his immunity reached for the sugar bowl a": [65535, 0], "in his immunity reached for the sugar bowl a sort": [65535, 0], "his immunity reached for the sugar bowl a sort of": [65535, 0], "immunity reached for the sugar bowl a sort of glorying": [65535, 0], "reached for the sugar bowl a sort of glorying over": [65535, 0], "for the sugar bowl a sort of glorying over tom": [65535, 0], "the sugar bowl a sort of glorying over tom which": [65535, 0], "sugar bowl a sort of glorying over tom which was": [65535, 0], "bowl a sort of glorying over tom which was well": [65535, 0], "a sort of glorying over tom which was well nigh": [65535, 0], "sort of glorying over tom which was well nigh unbearable": [65535, 0], "of glorying over tom which was well nigh unbearable but": [65535, 0], "glorying over tom which was well nigh unbearable but sid's": [65535, 0], "over tom which was well nigh unbearable but sid's fingers": [65535, 0], "tom which was well nigh unbearable but sid's fingers slipped": [65535, 0], "which was well nigh unbearable but sid's fingers slipped and": [65535, 0], "was well nigh unbearable but sid's fingers slipped and the": [65535, 0], "well nigh unbearable but sid's fingers slipped and the bowl": [65535, 0], "nigh unbearable but sid's fingers slipped and the bowl dropped": [65535, 0], "unbearable but sid's fingers slipped and the bowl dropped and": [65535, 0], "but sid's fingers slipped and the bowl dropped and broke": [65535, 0], "sid's fingers slipped and the bowl dropped and broke tom": [65535, 0], "fingers slipped and the bowl dropped and broke tom was": [65535, 0], "slipped and the bowl dropped and broke tom was in": [65535, 0], "and the bowl dropped and broke tom was in ecstasies": [65535, 0], "the bowl dropped and broke tom was in ecstasies in": [65535, 0], "bowl dropped and broke tom was in ecstasies in such": [65535, 0], "dropped and broke tom was in ecstasies in such ecstasies": [65535, 0], "and broke tom was in ecstasies in such ecstasies that": [65535, 0], "broke tom was in ecstasies in such ecstasies that he": [65535, 0], "tom was in ecstasies in such ecstasies that he even": [65535, 0], "was in ecstasies in such ecstasies that he even controlled": [65535, 0], "in ecstasies in such ecstasies that he even controlled his": [65535, 0], "ecstasies in such ecstasies that he even controlled his tongue": [65535, 0], "in such ecstasies that he even controlled his tongue and": [65535, 0], "such ecstasies that he even controlled his tongue and was": [65535, 0], "ecstasies that he even controlled his tongue and was silent": [65535, 0], "that he even controlled his tongue and was silent he": [65535, 0], "he even controlled his tongue and was silent he said": [65535, 0], "even controlled his tongue and was silent he said to": [65535, 0], "controlled his tongue and was silent he said to himself": [65535, 0], "his tongue and was silent he said to himself that": [65535, 0], "tongue and was silent he said to himself that he": [65535, 0], "and was silent he said to himself that he would": [65535, 0], "was silent he said to himself that he would not": [65535, 0], "silent he said to himself that he would not speak": [65535, 0], "he said to himself that he would not speak a": [65535, 0], "said to himself that he would not speak a word": [65535, 0], "to himself that he would not speak a word even": [65535, 0], "himself that he would not speak a word even when": [65535, 0], "that he would not speak a word even when his": [65535, 0], "he would not speak a word even when his aunt": [65535, 0], "would not speak a word even when his aunt came": [65535, 0], "not speak a word even when his aunt came in": [65535, 0], "speak a word even when his aunt came in but": [65535, 0], "a word even when his aunt came in but would": [65535, 0], "word even when his aunt came in but would sit": [65535, 0], "even when his aunt came in but would sit perfectly": [65535, 0], "when his aunt came in but would sit perfectly still": [65535, 0], "his aunt came in but would sit perfectly still till": [65535, 0], "aunt came in but would sit perfectly still till she": [65535, 0], "came in but would sit perfectly still till she asked": [65535, 0], "in but would sit perfectly still till she asked who": [65535, 0], "but would sit perfectly still till she asked who did": [65535, 0], "would sit perfectly still till she asked who did the": [65535, 0], "sit perfectly still till she asked who did the mischief": [65535, 0], "perfectly still till she asked who did the mischief and": [65535, 0], "still till she asked who did the mischief and then": [65535, 0], "till she asked who did the mischief and then he": [65535, 0], "she asked who did the mischief and then he would": [65535, 0], "asked who did the mischief and then he would tell": [65535, 0], "who did the mischief and then he would tell and": [65535, 0], "did the mischief and then he would tell and there": [65535, 0], "the mischief and then he would tell and there would": [65535, 0], "mischief and then he would tell and there would be": [65535, 0], "and then he would tell and there would be nothing": [65535, 0], "then he would tell and there would be nothing so": [65535, 0], "he would tell and there would be nothing so good": [65535, 0], "would tell and there would be nothing so good in": [65535, 0], "tell and there would be nothing so good in the": [65535, 0], "and there would be nothing so good in the world": [65535, 0], "there would be nothing so good in the world as": [65535, 0], "would be nothing so good in the world as to": [65535, 0], "be nothing so good in the world as to see": [65535, 0], "nothing so good in the world as to see that": [65535, 0], "so good in the world as to see that pet": [65535, 0], "good in the world as to see that pet model": [65535, 0], "in the world as to see that pet model catch": [65535, 0], "the world as to see that pet model catch it": [65535, 0], "world as to see that pet model catch it he": [65535, 0], "as to see that pet model catch it he was": [65535, 0], "to see that pet model catch it he was so": [65535, 0], "see that pet model catch it he was so brimful": [65535, 0], "that pet model catch it he was so brimful of": [65535, 0], "pet model catch it he was so brimful of exultation": [65535, 0], "model catch it he was so brimful of exultation that": [65535, 0], "catch it he was so brimful of exultation that he": [65535, 0], "it he was so brimful of exultation that he could": [65535, 0], "he was so brimful of exultation that he could hardly": [65535, 0], "was so brimful of exultation that he could hardly hold": [65535, 0], "so brimful of exultation that he could hardly hold himself": [65535, 0], "brimful of exultation that he could hardly hold himself when": [65535, 0], "of exultation that he could hardly hold himself when the": [65535, 0], "exultation that he could hardly hold himself when the old": [65535, 0], "that he could hardly hold himself when the old lady": [65535, 0], "he could hardly hold himself when the old lady came": [65535, 0], "could hardly hold himself when the old lady came back": [65535, 0], "hardly hold himself when the old lady came back and": [65535, 0], "hold himself when the old lady came back and stood": [65535, 0], "himself when the old lady came back and stood above": [65535, 0], "when the old lady came back and stood above the": [65535, 0], "the old lady came back and stood above the wreck": [65535, 0], "old lady came back and stood above the wreck discharging": [65535, 0], "lady came back and stood above the wreck discharging lightnings": [65535, 0], "came back and stood above the wreck discharging lightnings of": [65535, 0], "back and stood above the wreck discharging lightnings of wrath": [65535, 0], "and stood above the wreck discharging lightnings of wrath from": [65535, 0], "stood above the wreck discharging lightnings of wrath from over": [65535, 0], "above the wreck discharging lightnings of wrath from over her": [65535, 0], "the wreck discharging lightnings of wrath from over her spectacles": [65535, 0], "wreck discharging lightnings of wrath from over her spectacles he": [65535, 0], "discharging lightnings of wrath from over her spectacles he said": [65535, 0], "lightnings of wrath from over her spectacles he said to": [65535, 0], "of wrath from over her spectacles he said to himself": [65535, 0], "wrath from over her spectacles he said to himself now": [65535, 0], "from over her spectacles he said to himself now it's": [65535, 0], "over her spectacles he said to himself now it's coming": [65535, 0], "her spectacles he said to himself now it's coming and": [65535, 0], "spectacles he said to himself now it's coming and the": [65535, 0], "he said to himself now it's coming and the next": [65535, 0], "said to himself now it's coming and the next instant": [65535, 0], "to himself now it's coming and the next instant he": [65535, 0], "himself now it's coming and the next instant he was": [65535, 0], "now it's coming and the next instant he was sprawling": [65535, 0], "it's coming and the next instant he was sprawling on": [65535, 0], "coming and the next instant he was sprawling on the": [65535, 0], "and the next instant he was sprawling on the floor": [65535, 0], "the next instant he was sprawling on the floor the": [65535, 0], "next instant he was sprawling on the floor the potent": [65535, 0], "instant he was sprawling on the floor the potent palm": [65535, 0], "he was sprawling on the floor the potent palm was": [65535, 0], "was sprawling on the floor the potent palm was uplifted": [65535, 0], "sprawling on the floor the potent palm was uplifted to": [65535, 0], "on the floor the potent palm was uplifted to strike": [65535, 0], "the floor the potent palm was uplifted to strike again": [65535, 0], "floor the potent palm was uplifted to strike again when": [65535, 0], "the potent palm was uplifted to strike again when tom": [65535, 0], "potent palm was uplifted to strike again when tom cried": [65535, 0], "palm was uplifted to strike again when tom cried out": [65535, 0], "was uplifted to strike again when tom cried out hold": [65535, 0], "uplifted to strike again when tom cried out hold on": [65535, 0], "to strike again when tom cried out hold on now": [65535, 0], "strike again when tom cried out hold on now what": [65535, 0], "again when tom cried out hold on now what 'er": [65535, 0], "when tom cried out hold on now what 'er you": [65535, 0], "tom cried out hold on now what 'er you belting": [65535, 0], "cried out hold on now what 'er you belting me": [65535, 0], "out hold on now what 'er you belting me for": [65535, 0], "hold on now what 'er you belting me for sid": [65535, 0], "on now what 'er you belting me for sid broke": [65535, 0], "now what 'er you belting me for sid broke it": [65535, 0], "what 'er you belting me for sid broke it aunt": [65535, 0], "'er you belting me for sid broke it aunt polly": [65535, 0], "you belting me for sid broke it aunt polly paused": [65535, 0], "belting me for sid broke it aunt polly paused perplexed": [65535, 0], "me for sid broke it aunt polly paused perplexed and": [65535, 0], "for sid broke it aunt polly paused perplexed and tom": [65535, 0], "sid broke it aunt polly paused perplexed and tom looked": [65535, 0], "broke it aunt polly paused perplexed and tom looked for": [65535, 0], "it aunt polly paused perplexed and tom looked for healing": [65535, 0], "aunt polly paused perplexed and tom looked for healing pity": [65535, 0], "polly paused perplexed and tom looked for healing pity but": [65535, 0], "paused perplexed and tom looked for healing pity but when": [65535, 0], "perplexed and tom looked for healing pity but when she": [65535, 0], "and tom looked for healing pity but when she got": [65535, 0], "tom looked for healing pity but when she got her": [65535, 0], "looked for healing pity but when she got her tongue": [65535, 0], "for healing pity but when she got her tongue again": [65535, 0], "healing pity but when she got her tongue again she": [65535, 0], "pity but when she got her tongue again she only": [65535, 0], "but when she got her tongue again she only said": [65535, 0], "when she got her tongue again she only said umf": [65535, 0], "she got her tongue again she only said umf well": [65535, 0], "got her tongue again she only said umf well you": [65535, 0], "her tongue again she only said umf well you didn't": [65535, 0], "tongue again she only said umf well you didn't get": [65535, 0], "again she only said umf well you didn't get a": [65535, 0], "she only said umf well you didn't get a lick": [65535, 0], "only said umf well you didn't get a lick amiss": [65535, 0], "said umf well you didn't get a lick amiss i": [65535, 0], "umf well you didn't get a lick amiss i reckon": [65535, 0], "well you didn't get a lick amiss i reckon you": [65535, 0], "you didn't get a lick amiss i reckon you been": [65535, 0], "didn't get a lick amiss i reckon you been into": [65535, 0], "get a lick amiss i reckon you been into some": [65535, 0], "a lick amiss i reckon you been into some other": [65535, 0], "lick amiss i reckon you been into some other audacious": [65535, 0], "amiss i reckon you been into some other audacious mischief": [65535, 0], "i reckon you been into some other audacious mischief when": [65535, 0], "reckon you been into some other audacious mischief when i": [65535, 0], "you been into some other audacious mischief when i wasn't": [65535, 0], "been into some other audacious mischief when i wasn't around": [65535, 0], "into some other audacious mischief when i wasn't around like": [65535, 0], "some other audacious mischief when i wasn't around like enough": [65535, 0], "other audacious mischief when i wasn't around like enough then": [65535, 0], "audacious mischief when i wasn't around like enough then her": [65535, 0], "mischief when i wasn't around like enough then her conscience": [65535, 0], "when i wasn't around like enough then her conscience reproached": [65535, 0], "i wasn't around like enough then her conscience reproached her": [65535, 0], "wasn't around like enough then her conscience reproached her and": [65535, 0], "around like enough then her conscience reproached her and she": [65535, 0], "like enough then her conscience reproached her and she yearned": [65535, 0], "enough then her conscience reproached her and she yearned to": [65535, 0], "then her conscience reproached her and she yearned to say": [65535, 0], "her conscience reproached her and she yearned to say something": [65535, 0], "conscience reproached her and she yearned to say something kind": [65535, 0], "reproached her and she yearned to say something kind and": [65535, 0], "her and she yearned to say something kind and loving": [65535, 0], "and she yearned to say something kind and loving but": [65535, 0], "she yearned to say something kind and loving but she": [65535, 0], "yearned to say something kind and loving but she judged": [65535, 0], "to say something kind and loving but she judged that": [65535, 0], "say something kind and loving but she judged that this": [65535, 0], "something kind and loving but she judged that this would": [65535, 0], "kind and loving but she judged that this would be": [65535, 0], "and loving but she judged that this would be construed": [65535, 0], "loving but she judged that this would be construed into": [65535, 0], "but she judged that this would be construed into a": [65535, 0], "she judged that this would be construed into a confession": [65535, 0], "judged that this would be construed into a confession that": [65535, 0], "that this would be construed into a confession that she": [65535, 0], "this would be construed into a confession that she had": [65535, 0], "would be construed into a confession that she had been": [65535, 0], "be construed into a confession that she had been in": [65535, 0], "construed into a confession that she had been in the": [65535, 0], "into a confession that she had been in the wrong": [65535, 0], "a confession that she had been in the wrong and": [65535, 0], "confession that she had been in the wrong and discipline": [65535, 0], "that she had been in the wrong and discipline forbade": [65535, 0], "she had been in the wrong and discipline forbade that": [65535, 0], "had been in the wrong and discipline forbade that so": [65535, 0], "been in the wrong and discipline forbade that so she": [65535, 0], "in the wrong and discipline forbade that so she kept": [65535, 0], "the wrong and discipline forbade that so she kept silence": [65535, 0], "wrong and discipline forbade that so she kept silence and": [65535, 0], "and discipline forbade that so she kept silence and went": [65535, 0], "discipline forbade that so she kept silence and went about": [65535, 0], "forbade that so she kept silence and went about her": [65535, 0], "that so she kept silence and went about her affairs": [65535, 0], "so she kept silence and went about her affairs with": [65535, 0], "she kept silence and went about her affairs with a": [65535, 0], "kept silence and went about her affairs with a troubled": [65535, 0], "silence and went about her affairs with a troubled heart": [65535, 0], "and went about her affairs with a troubled heart tom": [65535, 0], "went about her affairs with a troubled heart tom sulked": [65535, 0], "about her affairs with a troubled heart tom sulked in": [65535, 0], "her affairs with a troubled heart tom sulked in a": [65535, 0], "affairs with a troubled heart tom sulked in a corner": [65535, 0], "with a troubled heart tom sulked in a corner and": [65535, 0], "a troubled heart tom sulked in a corner and exalted": [65535, 0], "troubled heart tom sulked in a corner and exalted his": [65535, 0], "heart tom sulked in a corner and exalted his woes": [65535, 0], "tom sulked in a corner and exalted his woes he": [65535, 0], "sulked in a corner and exalted his woes he knew": [65535, 0], "in a corner and exalted his woes he knew that": [65535, 0], "a corner and exalted his woes he knew that in": [65535, 0], "corner and exalted his woes he knew that in her": [65535, 0], "and exalted his woes he knew that in her heart": [65535, 0], "exalted his woes he knew that in her heart his": [65535, 0], "his woes he knew that in her heart his aunt": [65535, 0], "woes he knew that in her heart his aunt was": [65535, 0], "he knew that in her heart his aunt was on": [65535, 0], "knew that in her heart his aunt was on her": [65535, 0], "that in her heart his aunt was on her knees": [65535, 0], "in her heart his aunt was on her knees to": [65535, 0], "her heart his aunt was on her knees to him": [65535, 0], "heart his aunt was on her knees to him and": [65535, 0], "his aunt was on her knees to him and he": [65535, 0], "aunt was on her knees to him and he was": [65535, 0], "was on her knees to him and he was morosely": [65535, 0], "on her knees to him and he was morosely gratified": [65535, 0], "her knees to him and he was morosely gratified by": [65535, 0], "knees to him and he was morosely gratified by the": [65535, 0], "to him and he was morosely gratified by the consciousness": [65535, 0], "him and he was morosely gratified by the consciousness of": [65535, 0], "and he was morosely gratified by the consciousness of it": [65535, 0], "he was morosely gratified by the consciousness of it he": [65535, 0], "was morosely gratified by the consciousness of it he would": [65535, 0], "morosely gratified by the consciousness of it he would hang": [65535, 0], "gratified by the consciousness of it he would hang out": [65535, 0], "by the consciousness of it he would hang out no": [65535, 0], "the consciousness of it he would hang out no signals": [65535, 0], "consciousness of it he would hang out no signals he": [65535, 0], "of it he would hang out no signals he would": [65535, 0], "it he would hang out no signals he would take": [65535, 0], "he would hang out no signals he would take notice": [65535, 0], "would hang out no signals he would take notice of": [65535, 0], "hang out no signals he would take notice of none": [65535, 0], "out no signals he would take notice of none he": [65535, 0], "no signals he would take notice of none he knew": [65535, 0], "signals he would take notice of none he knew that": [65535, 0], "he would take notice of none he knew that a": [65535, 0], "would take notice of none he knew that a yearning": [65535, 0], "take notice of none he knew that a yearning glance": [65535, 0], "notice of none he knew that a yearning glance fell": [65535, 0], "of none he knew that a yearning glance fell upon": [65535, 0], "none he knew that a yearning glance fell upon him": [65535, 0], "he knew that a yearning glance fell upon him now": [65535, 0], "knew that a yearning glance fell upon him now and": [65535, 0], "that a yearning glance fell upon him now and then": [65535, 0], "a yearning glance fell upon him now and then through": [65535, 0], "yearning glance fell upon him now and then through a": [65535, 0], "glance fell upon him now and then through a film": [65535, 0], "fell upon him now and then through a film of": [65535, 0], "upon him now and then through a film of tears": [65535, 0], "him now and then through a film of tears but": [65535, 0], "now and then through a film of tears but he": [65535, 0], "and then through a film of tears but he refused": [65535, 0], "then through a film of tears but he refused recognition": [65535, 0], "through a film of tears but he refused recognition of": [65535, 0], "a film of tears but he refused recognition of it": [65535, 0], "film of tears but he refused recognition of it he": [65535, 0], "of tears but he refused recognition of it he pictured": [65535, 0], "tears but he refused recognition of it he pictured himself": [65535, 0], "but he refused recognition of it he pictured himself lying": [65535, 0], "he refused recognition of it he pictured himself lying sick": [65535, 0], "refused recognition of it he pictured himself lying sick unto": [65535, 0], "recognition of it he pictured himself lying sick unto death": [65535, 0], "of it he pictured himself lying sick unto death and": [65535, 0], "it he pictured himself lying sick unto death and his": [65535, 0], "he pictured himself lying sick unto death and his aunt": [65535, 0], "pictured himself lying sick unto death and his aunt bending": [65535, 0], "himself lying sick unto death and his aunt bending over": [65535, 0], "lying sick unto death and his aunt bending over him": [65535, 0], "sick unto death and his aunt bending over him beseeching": [65535, 0], "unto death and his aunt bending over him beseeching one": [65535, 0], "death and his aunt bending over him beseeching one little": [65535, 0], "and his aunt bending over him beseeching one little forgiving": [65535, 0], "his aunt bending over him beseeching one little forgiving word": [65535, 0], "aunt bending over him beseeching one little forgiving word but": [65535, 0], "bending over him beseeching one little forgiving word but he": [65535, 0], "over him beseeching one little forgiving word but he would": [65535, 0], "him beseeching one little forgiving word but he would turn": [65535, 0], "beseeching one little forgiving word but he would turn his": [65535, 0], "one little forgiving word but he would turn his face": [65535, 0], "little forgiving word but he would turn his face to": [65535, 0], "forgiving word but he would turn his face to the": [65535, 0], "word but he would turn his face to the wall": [65535, 0], "but he would turn his face to the wall and": [65535, 0], "he would turn his face to the wall and die": [65535, 0], "would turn his face to the wall and die with": [65535, 0], "turn his face to the wall and die with that": [65535, 0], "his face to the wall and die with that word": [65535, 0], "face to the wall and die with that word unsaid": [65535, 0], "to the wall and die with that word unsaid ah": [65535, 0], "the wall and die with that word unsaid ah how": [65535, 0], "wall and die with that word unsaid ah how would": [65535, 0], "and die with that word unsaid ah how would she": [65535, 0], "die with that word unsaid ah how would she feel": [65535, 0], "with that word unsaid ah how would she feel then": [65535, 0], "that word unsaid ah how would she feel then and": [65535, 0], "word unsaid ah how would she feel then and he": [65535, 0], "unsaid ah how would she feel then and he pictured": [65535, 0], "ah how would she feel then and he pictured himself": [65535, 0], "how would she feel then and he pictured himself brought": [65535, 0], "would she feel then and he pictured himself brought home": [65535, 0], "she feel then and he pictured himself brought home from": [65535, 0], "feel then and he pictured himself brought home from the": [65535, 0], "then and he pictured himself brought home from the river": [65535, 0], "and he pictured himself brought home from the river dead": [65535, 0], "he pictured himself brought home from the river dead with": [65535, 0], "pictured himself brought home from the river dead with his": [65535, 0], "himself brought home from the river dead with his curls": [65535, 0], "brought home from the river dead with his curls all": [65535, 0], "home from the river dead with his curls all wet": [65535, 0], "from the river dead with his curls all wet and": [65535, 0], "the river dead with his curls all wet and his": [65535, 0], "river dead with his curls all wet and his sore": [65535, 0], "dead with his curls all wet and his sore heart": [65535, 0], "with his curls all wet and his sore heart at": [65535, 0], "his curls all wet and his sore heart at rest": [65535, 0], "curls all wet and his sore heart at rest how": [65535, 0], "all wet and his sore heart at rest how she": [65535, 0], "wet and his sore heart at rest how she would": [65535, 0], "and his sore heart at rest how she would throw": [65535, 0], "his sore heart at rest how she would throw herself": [65535, 0], "sore heart at rest how she would throw herself upon": [65535, 0], "heart at rest how she would throw herself upon him": [65535, 0], "at rest how she would throw herself upon him and": [65535, 0], "rest how she would throw herself upon him and how": [65535, 0], "how she would throw herself upon him and how her": [65535, 0], "she would throw herself upon him and how her tears": [65535, 0], "would throw herself upon him and how her tears would": [65535, 0], "throw herself upon him and how her tears would fall": [65535, 0], "herself upon him and how her tears would fall like": [65535, 0], "upon him and how her tears would fall like rain": [65535, 0], "him and how her tears would fall like rain and": [65535, 0], "and how her tears would fall like rain and her": [65535, 0], "how her tears would fall like rain and her lips": [65535, 0], "her tears would fall like rain and her lips pray": [65535, 0], "tears would fall like rain and her lips pray god": [65535, 0], "would fall like rain and her lips pray god to": [65535, 0], "fall like rain and her lips pray god to give": [65535, 0], "like rain and her lips pray god to give her": [65535, 0], "rain and her lips pray god to give her back": [65535, 0], "and her lips pray god to give her back her": [65535, 0], "her lips pray god to give her back her boy": [65535, 0], "lips pray god to give her back her boy and": [65535, 0], "pray god to give her back her boy and she": [65535, 0], "god to give her back her boy and she would": [65535, 0], "to give her back her boy and she would never": [65535, 0], "give her back her boy and she would never never": [65535, 0], "her back her boy and she would never never abuse": [65535, 0], "back her boy and she would never never abuse him": [65535, 0], "her boy and she would never never abuse him any": [65535, 0], "boy and she would never never abuse him any more": [65535, 0], "and she would never never abuse him any more but": [65535, 0], "she would never never abuse him any more but he": [65535, 0], "would never never abuse him any more but he would": [65535, 0], "never never abuse him any more but he would lie": [65535, 0], "never abuse him any more but he would lie there": [65535, 0], "abuse him any more but he would lie there cold": [65535, 0], "him any more but he would lie there cold and": [65535, 0], "any more but he would lie there cold and white": [65535, 0], "more but he would lie there cold and white and": [65535, 0], "but he would lie there cold and white and make": [65535, 0], "he would lie there cold and white and make no": [65535, 0], "would lie there cold and white and make no sign": [65535, 0], "lie there cold and white and make no sign a": [65535, 0], "there cold and white and make no sign a poor": [65535, 0], "cold and white and make no sign a poor little": [65535, 0], "and white and make no sign a poor little sufferer": [65535, 0], "white and make no sign a poor little sufferer whose": [65535, 0], "and make no sign a poor little sufferer whose griefs": [65535, 0], "make no sign a poor little sufferer whose griefs were": [65535, 0], "no sign a poor little sufferer whose griefs were at": [65535, 0], "sign a poor little sufferer whose griefs were at an": [65535, 0], "a poor little sufferer whose griefs were at an end": [65535, 0], "poor little sufferer whose griefs were at an end he": [65535, 0], "little sufferer whose griefs were at an end he so": [65535, 0], "sufferer whose griefs were at an end he so worked": [65535, 0], "whose griefs were at an end he so worked upon": [65535, 0], "griefs were at an end he so worked upon his": [65535, 0], "were at an end he so worked upon his feelings": [65535, 0], "at an end he so worked upon his feelings with": [65535, 0], "an end he so worked upon his feelings with the": [65535, 0], "end he so worked upon his feelings with the pathos": [65535, 0], "he so worked upon his feelings with the pathos of": [65535, 0], "so worked upon his feelings with the pathos of these": [65535, 0], "worked upon his feelings with the pathos of these dreams": [65535, 0], "upon his feelings with the pathos of these dreams that": [65535, 0], "his feelings with the pathos of these dreams that he": [65535, 0], "feelings with the pathos of these dreams that he had": [65535, 0], "with the pathos of these dreams that he had to": [65535, 0], "the pathos of these dreams that he had to keep": [65535, 0], "pathos of these dreams that he had to keep swallowing": [65535, 0], "of these dreams that he had to keep swallowing he": [65535, 0], "these dreams that he had to keep swallowing he was": [65535, 0], "dreams that he had to keep swallowing he was so": [65535, 0], "that he had to keep swallowing he was so like": [65535, 0], "he had to keep swallowing he was so like to": [65535, 0], "had to keep swallowing he was so like to choke": [65535, 0], "to keep swallowing he was so like to choke and": [65535, 0], "keep swallowing he was so like to choke and his": [65535, 0], "swallowing he was so like to choke and his eyes": [65535, 0], "he was so like to choke and his eyes swam": [65535, 0], "was so like to choke and his eyes swam in": [65535, 0], "so like to choke and his eyes swam in a": [65535, 0], "like to choke and his eyes swam in a blur": [65535, 0], "to choke and his eyes swam in a blur of": [65535, 0], "choke and his eyes swam in a blur of water": [65535, 0], "and his eyes swam in a blur of water which": [65535, 0], "his eyes swam in a blur of water which overflowed": [65535, 0], "eyes swam in a blur of water which overflowed when": [65535, 0], "swam in a blur of water which overflowed when he": [65535, 0], "in a blur of water which overflowed when he winked": [65535, 0], "a blur of water which overflowed when he winked and": [65535, 0], "blur of water which overflowed when he winked and ran": [65535, 0], "of water which overflowed when he winked and ran down": [65535, 0], "water which overflowed when he winked and ran down and": [65535, 0], "which overflowed when he winked and ran down and trickled": [65535, 0], "overflowed when he winked and ran down and trickled from": [65535, 0], "when he winked and ran down and trickled from the": [65535, 0], "he winked and ran down and trickled from the end": [65535, 0], "winked and ran down and trickled from the end of": [65535, 0], "and ran down and trickled from the end of his": [65535, 0], "ran down and trickled from the end of his nose": [65535, 0], "down and trickled from the end of his nose and": [65535, 0], "and trickled from the end of his nose and such": [65535, 0], "trickled from the end of his nose and such a": [65535, 0], "from the end of his nose and such a luxury": [65535, 0], "the end of his nose and such a luxury to": [65535, 0], "end of his nose and such a luxury to him": [65535, 0], "of his nose and such a luxury to him was": [65535, 0], "his nose and such a luxury to him was this": [65535, 0], "nose and such a luxury to him was this petting": [65535, 0], "and such a luxury to him was this petting of": [65535, 0], "such a luxury to him was this petting of his": [65535, 0], "a luxury to him was this petting of his sorrows": [65535, 0], "luxury to him was this petting of his sorrows that": [65535, 0], "to him was this petting of his sorrows that he": [65535, 0], "him was this petting of his sorrows that he could": [65535, 0], "was this petting of his sorrows that he could not": [65535, 0], "this petting of his sorrows that he could not bear": [65535, 0], "petting of his sorrows that he could not bear to": [65535, 0], "of his sorrows that he could not bear to have": [65535, 0], "his sorrows that he could not bear to have any": [65535, 0], "sorrows that he could not bear to have any worldly": [65535, 0], "that he could not bear to have any worldly cheeriness": [65535, 0], "he could not bear to have any worldly cheeriness or": [65535, 0], "could not bear to have any worldly cheeriness or any": [65535, 0], "not bear to have any worldly cheeriness or any grating": [65535, 0], "bear to have any worldly cheeriness or any grating delight": [65535, 0], "to have any worldly cheeriness or any grating delight intrude": [65535, 0], "have any worldly cheeriness or any grating delight intrude upon": [65535, 0], "any worldly cheeriness or any grating delight intrude upon it": [65535, 0], "worldly cheeriness or any grating delight intrude upon it it": [65535, 0], "cheeriness or any grating delight intrude upon it it was": [65535, 0], "or any grating delight intrude upon it it was too": [65535, 0], "any grating delight intrude upon it it was too sacred": [65535, 0], "grating delight intrude upon it it was too sacred for": [65535, 0], "delight intrude upon it it was too sacred for such": [65535, 0], "intrude upon it it was too sacred for such contact": [65535, 0], "upon it it was too sacred for such contact and": [65535, 0], "it it was too sacred for such contact and so": [65535, 0], "it was too sacred for such contact and so presently": [65535, 0], "was too sacred for such contact and so presently when": [65535, 0], "too sacred for such contact and so presently when his": [65535, 0], "sacred for such contact and so presently when his cousin": [65535, 0], "for such contact and so presently when his cousin mary": [65535, 0], "such contact and so presently when his cousin mary danced": [65535, 0], "contact and so presently when his cousin mary danced in": [65535, 0], "and so presently when his cousin mary danced in all": [65535, 0], "so presently when his cousin mary danced in all alive": [65535, 0], "presently when his cousin mary danced in all alive with": [65535, 0], "when his cousin mary danced in all alive with the": [65535, 0], "his cousin mary danced in all alive with the joy": [65535, 0], "cousin mary danced in all alive with the joy of": [65535, 0], "mary danced in all alive with the joy of seeing": [65535, 0], "danced in all alive with the joy of seeing home": [65535, 0], "in all alive with the joy of seeing home again": [65535, 0], "all alive with the joy of seeing home again after": [65535, 0], "alive with the joy of seeing home again after an": [65535, 0], "with the joy of seeing home again after an age": [65535, 0], "the joy of seeing home again after an age long": [65535, 0], "joy of seeing home again after an age long visit": [65535, 0], "of seeing home again after an age long visit of": [65535, 0], "seeing home again after an age long visit of one": [65535, 0], "home again after an age long visit of one week": [65535, 0], "again after an age long visit of one week to": [65535, 0], "after an age long visit of one week to the": [65535, 0], "an age long visit of one week to the country": [65535, 0], "age long visit of one week to the country he": [65535, 0], "long visit of one week to the country he got": [65535, 0], "visit of one week to the country he got up": [65535, 0], "of one week to the country he got up and": [65535, 0], "one week to the country he got up and moved": [65535, 0], "week to the country he got up and moved in": [65535, 0], "to the country he got up and moved in clouds": [65535, 0], "the country he got up and moved in clouds and": [65535, 0], "country he got up and moved in clouds and darkness": [65535, 0], "he got up and moved in clouds and darkness out": [65535, 0], "got up and moved in clouds and darkness out at": [65535, 0], "up and moved in clouds and darkness out at one": [65535, 0], "and moved in clouds and darkness out at one door": [65535, 0], "moved in clouds and darkness out at one door as": [65535, 0], "in clouds and darkness out at one door as she": [65535, 0], "clouds and darkness out at one door as she brought": [65535, 0], "and darkness out at one door as she brought song": [65535, 0], "darkness out at one door as she brought song and": [65535, 0], "out at one door as she brought song and sunshine": [65535, 0], "at one door as she brought song and sunshine in": [65535, 0], "one door as she brought song and sunshine in at": [65535, 0], "door as she brought song and sunshine in at the": [65535, 0], "as she brought song and sunshine in at the other": [65535, 0], "she brought song and sunshine in at the other he": [65535, 0], "brought song and sunshine in at the other he wandered": [65535, 0], "song and sunshine in at the other he wandered far": [65535, 0], "and sunshine in at the other he wandered far from": [65535, 0], "sunshine in at the other he wandered far from the": [65535, 0], "in at the other he wandered far from the accustomed": [65535, 0], "at the other he wandered far from the accustomed haunts": [65535, 0], "the other he wandered far from the accustomed haunts of": [65535, 0], "other he wandered far from the accustomed haunts of boys": [65535, 0], "he wandered far from the accustomed haunts of boys and": [65535, 0], "wandered far from the accustomed haunts of boys and sought": [65535, 0], "far from the accustomed haunts of boys and sought desolate": [65535, 0], "from the accustomed haunts of boys and sought desolate places": [65535, 0], "the accustomed haunts of boys and sought desolate places that": [65535, 0], "accustomed haunts of boys and sought desolate places that were": [65535, 0], "haunts of boys and sought desolate places that were in": [65535, 0], "of boys and sought desolate places that were in harmony": [65535, 0], "boys and sought desolate places that were in harmony with": [65535, 0], "and sought desolate places that were in harmony with his": [65535, 0], "sought desolate places that were in harmony with his spirit": [65535, 0], "desolate places that were in harmony with his spirit a": [65535, 0], "places that were in harmony with his spirit a log": [65535, 0], "that were in harmony with his spirit a log raft": [65535, 0], "were in harmony with his spirit a log raft in": [65535, 0], "in harmony with his spirit a log raft in the": [65535, 0], "harmony with his spirit a log raft in the river": [65535, 0], "with his spirit a log raft in the river invited": [65535, 0], "his spirit a log raft in the river invited him": [65535, 0], "spirit a log raft in the river invited him and": [65535, 0], "a log raft in the river invited him and he": [65535, 0], "log raft in the river invited him and he seated": [65535, 0], "raft in the river invited him and he seated himself": [65535, 0], "in the river invited him and he seated himself on": [65535, 0], "the river invited him and he seated himself on its": [65535, 0], "river invited him and he seated himself on its outer": [65535, 0], "invited him and he seated himself on its outer edge": [65535, 0], "him and he seated himself on its outer edge and": [65535, 0], "and he seated himself on its outer edge and contemplated": [65535, 0], "he seated himself on its outer edge and contemplated the": [65535, 0], "seated himself on its outer edge and contemplated the dreary": [65535, 0], "himself on its outer edge and contemplated the dreary vastness": [65535, 0], "on its outer edge and contemplated the dreary vastness of": [65535, 0], "its outer edge and contemplated the dreary vastness of the": [65535, 0], "outer edge and contemplated the dreary vastness of the stream": [65535, 0], "edge and contemplated the dreary vastness of the stream wishing": [65535, 0], "and contemplated the dreary vastness of the stream wishing the": [65535, 0], "contemplated the dreary vastness of the stream wishing the while": [65535, 0], "the dreary vastness of the stream wishing the while that": [65535, 0], "dreary vastness of the stream wishing the while that he": [65535, 0], "vastness of the stream wishing the while that he could": [65535, 0], "of the stream wishing the while that he could only": [65535, 0], "the stream wishing the while that he could only be": [65535, 0], "stream wishing the while that he could only be drowned": [65535, 0], "wishing the while that he could only be drowned all": [65535, 0], "the while that he could only be drowned all at": [65535, 0], "while that he could only be drowned all at once": [65535, 0], "that he could only be drowned all at once and": [65535, 0], "he could only be drowned all at once and unconsciously": [65535, 0], "could only be drowned all at once and unconsciously without": [65535, 0], "only be drowned all at once and unconsciously without undergoing": [65535, 0], "be drowned all at once and unconsciously without undergoing the": [65535, 0], "drowned all at once and unconsciously without undergoing the uncomfortable": [65535, 0], "all at once and unconsciously without undergoing the uncomfortable routine": [65535, 0], "at once and unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "once and unconsciously without undergoing the uncomfortable routine devised by": [65535, 0], "and unconsciously without undergoing the uncomfortable routine devised by nature": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised by nature then": [65535, 0], "without undergoing the uncomfortable routine devised by nature then he": [65535, 0], "undergoing the uncomfortable routine devised by nature then he thought": [65535, 0], "the uncomfortable routine devised by nature then he thought of": [65535, 0], "uncomfortable routine devised by nature then he thought of his": [65535, 0], "routine devised by nature then he thought of his flower": [65535, 0], "devised by nature then he thought of his flower he": [65535, 0], "by nature then he thought of his flower he got": [65535, 0], "nature then he thought of his flower he got it": [65535, 0], "then he thought of his flower he got it out": [65535, 0], "he thought of his flower he got it out rumpled": [65535, 0], "thought of his flower he got it out rumpled and": [65535, 0], "of his flower he got it out rumpled and wilted": [65535, 0], "his flower he got it out rumpled and wilted and": [65535, 0], "flower he got it out rumpled and wilted and it": [65535, 0], "he got it out rumpled and wilted and it mightily": [65535, 0], "got it out rumpled and wilted and it mightily increased": [65535, 0], "it out rumpled and wilted and it mightily increased his": [65535, 0], "out rumpled and wilted and it mightily increased his dismal": [65535, 0], "rumpled and wilted and it mightily increased his dismal felicity": [65535, 0], "and wilted and it mightily increased his dismal felicity he": [65535, 0], "wilted and it mightily increased his dismal felicity he wondered": [65535, 0], "and it mightily increased his dismal felicity he wondered if": [65535, 0], "it mightily increased his dismal felicity he wondered if she": [65535, 0], "mightily increased his dismal felicity he wondered if she would": [65535, 0], "increased his dismal felicity he wondered if she would pity": [65535, 0], "his dismal felicity he wondered if she would pity him": [65535, 0], "dismal felicity he wondered if she would pity him if": [65535, 0], "felicity he wondered if she would pity him if she": [65535, 0], "he wondered if she would pity him if she knew": [65535, 0], "wondered if she would pity him if she knew would": [65535, 0], "if she would pity him if she knew would she": [65535, 0], "she would pity him if she knew would she cry": [65535, 0], "would pity him if she knew would she cry and": [65535, 0], "pity him if she knew would she cry and wish": [65535, 0], "him if she knew would she cry and wish that": [65535, 0], "if she knew would she cry and wish that she": [65535, 0], "she knew would she cry and wish that she had": [65535, 0], "knew would she cry and wish that she had a": [65535, 0], "would she cry and wish that she had a right": [65535, 0], "she cry and wish that she had a right to": [65535, 0], "cry and wish that she had a right to put": [65535, 0], "and wish that she had a right to put her": [65535, 0], "wish that she had a right to put her arms": [65535, 0], "that she had a right to put her arms around": [65535, 0], "she had a right to put her arms around his": [65535, 0], "had a right to put her arms around his neck": [65535, 0], "a right to put her arms around his neck and": [65535, 0], "right to put her arms around his neck and comfort": [65535, 0], "to put her arms around his neck and comfort him": [65535, 0], "put her arms around his neck and comfort him or": [65535, 0], "her arms around his neck and comfort him or would": [65535, 0], "arms around his neck and comfort him or would she": [65535, 0], "around his neck and comfort him or would she turn": [65535, 0], "his neck and comfort him or would she turn coldly": [65535, 0], "neck and comfort him or would she turn coldly away": [65535, 0], "and comfort him or would she turn coldly away like": [65535, 0], "comfort him or would she turn coldly away like all": [65535, 0], "him or would she turn coldly away like all the": [65535, 0], "or would she turn coldly away like all the hollow": [65535, 0], "would she turn coldly away like all the hollow world": [65535, 0], "she turn coldly away like all the hollow world this": [65535, 0], "turn coldly away like all the hollow world this picture": [65535, 0], "coldly away like all the hollow world this picture brought": [65535, 0], "away like all the hollow world this picture brought such": [65535, 0], "like all the hollow world this picture brought such an": [65535, 0], "all the hollow world this picture brought such an agony": [65535, 0], "the hollow world this picture brought such an agony of": [65535, 0], "hollow world this picture brought such an agony of pleasurable": [65535, 0], "world this picture brought such an agony of pleasurable suffering": [65535, 0], "this picture brought such an agony of pleasurable suffering that": [65535, 0], "picture brought such an agony of pleasurable suffering that he": [65535, 0], "brought such an agony of pleasurable suffering that he worked": [65535, 0], "such an agony of pleasurable suffering that he worked it": [65535, 0], "an agony of pleasurable suffering that he worked it over": [65535, 0], "agony of pleasurable suffering that he worked it over and": [65535, 0], "of pleasurable suffering that he worked it over and over": [65535, 0], "pleasurable suffering that he worked it over and over again": [65535, 0], "suffering that he worked it over and over again in": [65535, 0], "that he worked it over and over again in his": [65535, 0], "he worked it over and over again in his mind": [65535, 0], "worked it over and over again in his mind and": [65535, 0], "it over and over again in his mind and set": [65535, 0], "over and over again in his mind and set it": [65535, 0], "and over again in his mind and set it up": [65535, 0], "over again in his mind and set it up in": [65535, 0], "again in his mind and set it up in new": [65535, 0], "in his mind and set it up in new and": [65535, 0], "his mind and set it up in new and varied": [65535, 0], "mind and set it up in new and varied lights": [65535, 0], "and set it up in new and varied lights till": [65535, 0], "set it up in new and varied lights till he": [65535, 0], "it up in new and varied lights till he wore": [65535, 0], "up in new and varied lights till he wore it": [65535, 0], "in new and varied lights till he wore it threadbare": [65535, 0], "new and varied lights till he wore it threadbare at": [65535, 0], "and varied lights till he wore it threadbare at last": [65535, 0], "varied lights till he wore it threadbare at last he": [65535, 0], "lights till he wore it threadbare at last he rose": [65535, 0], "till he wore it threadbare at last he rose up": [65535, 0], "he wore it threadbare at last he rose up sighing": [65535, 0], "wore it threadbare at last he rose up sighing and": [65535, 0], "it threadbare at last he rose up sighing and departed": [65535, 0], "threadbare at last he rose up sighing and departed in": [65535, 0], "at last he rose up sighing and departed in the": [65535, 0], "last he rose up sighing and departed in the darkness": [65535, 0], "he rose up sighing and departed in the darkness about": [65535, 0], "rose up sighing and departed in the darkness about half": [65535, 0], "up sighing and departed in the darkness about half past": [65535, 0], "sighing and departed in the darkness about half past nine": [65535, 0], "and departed in the darkness about half past nine or": [65535, 0], "departed in the darkness about half past nine or ten": [65535, 0], "in the darkness about half past nine or ten o'clock": [65535, 0], "the darkness about half past nine or ten o'clock he": [65535, 0], "darkness about half past nine or ten o'clock he came": [65535, 0], "about half past nine or ten o'clock he came along": [65535, 0], "half past nine or ten o'clock he came along the": [65535, 0], "past nine or ten o'clock he came along the deserted": [65535, 0], "nine or ten o'clock he came along the deserted street": [65535, 0], "or ten o'clock he came along the deserted street to": [65535, 0], "ten o'clock he came along the deserted street to where": [65535, 0], "o'clock he came along the deserted street to where the": [65535, 0], "he came along the deserted street to where the adored": [65535, 0], "came along the deserted street to where the adored unknown": [65535, 0], "along the deserted street to where the adored unknown lived": [65535, 0], "the deserted street to where the adored unknown lived he": [65535, 0], "deserted street to where the adored unknown lived he paused": [65535, 0], "street to where the adored unknown lived he paused a": [65535, 0], "to where the adored unknown lived he paused a moment": [65535, 0], "where the adored unknown lived he paused a moment no": [65535, 0], "the adored unknown lived he paused a moment no sound": [65535, 0], "adored unknown lived he paused a moment no sound fell": [65535, 0], "unknown lived he paused a moment no sound fell upon": [65535, 0], "lived he paused a moment no sound fell upon his": [65535, 0], "he paused a moment no sound fell upon his listening": [65535, 0], "paused a moment no sound fell upon his listening ear": [65535, 0], "a moment no sound fell upon his listening ear a": [65535, 0], "moment no sound fell upon his listening ear a candle": [65535, 0], "no sound fell upon his listening ear a candle was": [65535, 0], "sound fell upon his listening ear a candle was casting": [65535, 0], "fell upon his listening ear a candle was casting a": [65535, 0], "upon his listening ear a candle was casting a dull": [65535, 0], "his listening ear a candle was casting a dull glow": [65535, 0], "listening ear a candle was casting a dull glow upon": [65535, 0], "ear a candle was casting a dull glow upon the": [65535, 0], "a candle was casting a dull glow upon the curtain": [65535, 0], "candle was casting a dull glow upon the curtain of": [65535, 0], "was casting a dull glow upon the curtain of a": [65535, 0], "casting a dull glow upon the curtain of a second": [65535, 0], "a dull glow upon the curtain of a second story": [65535, 0], "dull glow upon the curtain of a second story window": [65535, 0], "glow upon the curtain of a second story window was": [65535, 0], "upon the curtain of a second story window was the": [65535, 0], "the curtain of a second story window was the sacred": [65535, 0], "curtain of a second story window was the sacred presence": [65535, 0], "of a second story window was the sacred presence there": [65535, 0], "a second story window was the sacred presence there he": [65535, 0], "second story window was the sacred presence there he climbed": [65535, 0], "story window was the sacred presence there he climbed the": [65535, 0], "window was the sacred presence there he climbed the fence": [65535, 0], "was the sacred presence there he climbed the fence threaded": [65535, 0], "the sacred presence there he climbed the fence threaded his": [65535, 0], "sacred presence there he climbed the fence threaded his stealthy": [65535, 0], "presence there he climbed the fence threaded his stealthy way": [65535, 0], "there he climbed the fence threaded his stealthy way through": [65535, 0], "he climbed the fence threaded his stealthy way through the": [65535, 0], "climbed the fence threaded his stealthy way through the plants": [65535, 0], "the fence threaded his stealthy way through the plants till": [65535, 0], "fence threaded his stealthy way through the plants till he": [65535, 0], "threaded his stealthy way through the plants till he stood": [65535, 0], "his stealthy way through the plants till he stood under": [65535, 0], "stealthy way through the plants till he stood under that": [65535, 0], "way through the plants till he stood under that window": [65535, 0], "through the plants till he stood under that window he": [65535, 0], "the plants till he stood under that window he looked": [65535, 0], "plants till he stood under that window he looked up": [65535, 0], "till he stood under that window he looked up at": [65535, 0], "he stood under that window he looked up at it": [65535, 0], "stood under that window he looked up at it long": [65535, 0], "under that window he looked up at it long and": [65535, 0], "that window he looked up at it long and with": [65535, 0], "window he looked up at it long and with emotion": [65535, 0], "he looked up at it long and with emotion then": [65535, 0], "looked up at it long and with emotion then he": [65535, 0], "up at it long and with emotion then he laid": [65535, 0], "at it long and with emotion then he laid him": [65535, 0], "it long and with emotion then he laid him down": [65535, 0], "long and with emotion then he laid him down on": [65535, 0], "and with emotion then he laid him down on the": [65535, 0], "with emotion then he laid him down on the ground": [65535, 0], "emotion then he laid him down on the ground under": [65535, 0], "then he laid him down on the ground under it": [65535, 0], "he laid him down on the ground under it disposing": [65535, 0], "laid him down on the ground under it disposing himself": [65535, 0], "him down on the ground under it disposing himself upon": [65535, 0], "down on the ground under it disposing himself upon his": [65535, 0], "on the ground under it disposing himself upon his back": [65535, 0], "the ground under it disposing himself upon his back with": [65535, 0], "ground under it disposing himself upon his back with his": [65535, 0], "under it disposing himself upon his back with his hands": [65535, 0], "it disposing himself upon his back with his hands clasped": [65535, 0], "disposing himself upon his back with his hands clasped upon": [65535, 0], "himself upon his back with his hands clasped upon his": [65535, 0], "upon his back with his hands clasped upon his breast": [65535, 0], "his back with his hands clasped upon his breast and": [65535, 0], "back with his hands clasped upon his breast and holding": [65535, 0], "with his hands clasped upon his breast and holding his": [65535, 0], "his hands clasped upon his breast and holding his poor": [65535, 0], "hands clasped upon his breast and holding his poor wilted": [65535, 0], "clasped upon his breast and holding his poor wilted flower": [65535, 0], "upon his breast and holding his poor wilted flower and": [65535, 0], "his breast and holding his poor wilted flower and thus": [65535, 0], "breast and holding his poor wilted flower and thus he": [65535, 0], "and holding his poor wilted flower and thus he would": [65535, 0], "holding his poor wilted flower and thus he would die": [65535, 0], "his poor wilted flower and thus he would die out": [65535, 0], "poor wilted flower and thus he would die out in": [65535, 0], "wilted flower and thus he would die out in the": [65535, 0], "flower and thus he would die out in the cold": [65535, 0], "and thus he would die out in the cold world": [65535, 0], "thus he would die out in the cold world with": [65535, 0], "he would die out in the cold world with no": [65535, 0], "would die out in the cold world with no shelter": [65535, 0], "die out in the cold world with no shelter over": [65535, 0], "out in the cold world with no shelter over his": [65535, 0], "in the cold world with no shelter over his homeless": [65535, 0], "the cold world with no shelter over his homeless head": [65535, 0], "cold world with no shelter over his homeless head no": [65535, 0], "world with no shelter over his homeless head no friendly": [65535, 0], "with no shelter over his homeless head no friendly hand": [65535, 0], "no shelter over his homeless head no friendly hand to": [65535, 0], "shelter over his homeless head no friendly hand to wipe": [65535, 0], "over his homeless head no friendly hand to wipe the": [65535, 0], "his homeless head no friendly hand to wipe the death": [65535, 0], "homeless head no friendly hand to wipe the death damps": [65535, 0], "head no friendly hand to wipe the death damps from": [65535, 0], "no friendly hand to wipe the death damps from his": [65535, 0], "friendly hand to wipe the death damps from his brow": [65535, 0], "hand to wipe the death damps from his brow no": [65535, 0], "to wipe the death damps from his brow no loving": [65535, 0], "wipe the death damps from his brow no loving face": [65535, 0], "the death damps from his brow no loving face to": [65535, 0], "death damps from his brow no loving face to bend": [65535, 0], "damps from his brow no loving face to bend pityingly": [65535, 0], "from his brow no loving face to bend pityingly over": [65535, 0], "his brow no loving face to bend pityingly over him": [65535, 0], "brow no loving face to bend pityingly over him when": [65535, 0], "no loving face to bend pityingly over him when the": [65535, 0], "loving face to bend pityingly over him when the great": [65535, 0], "face to bend pityingly over him when the great agony": [65535, 0], "to bend pityingly over him when the great agony came": [65535, 0], "bend pityingly over him when the great agony came and": [65535, 0], "pityingly over him when the great agony came and thus": [65535, 0], "over him when the great agony came and thus she": [65535, 0], "him when the great agony came and thus she would": [65535, 0], "when the great agony came and thus she would see": [65535, 0], "the great agony came and thus she would see him": [65535, 0], "great agony came and thus she would see him when": [65535, 0], "agony came and thus she would see him when she": [65535, 0], "came and thus she would see him when she looked": [65535, 0], "and thus she would see him when she looked out": [65535, 0], "thus she would see him when she looked out upon": [65535, 0], "she would see him when she looked out upon the": [65535, 0], "would see him when she looked out upon the glad": [65535, 0], "see him when she looked out upon the glad morning": [65535, 0], "him when she looked out upon the glad morning and": [65535, 0], "when she looked out upon the glad morning and oh": [65535, 0], "she looked out upon the glad morning and oh would": [65535, 0], "looked out upon the glad morning and oh would she": [65535, 0], "out upon the glad morning and oh would she drop": [65535, 0], "upon the glad morning and oh would she drop one": [65535, 0], "the glad morning and oh would she drop one little": [65535, 0], "glad morning and oh would she drop one little tear": [65535, 0], "morning and oh would she drop one little tear upon": [65535, 0], "and oh would she drop one little tear upon his": [65535, 0], "oh would she drop one little tear upon his poor": [65535, 0], "would she drop one little tear upon his poor lifeless": [65535, 0], "she drop one little tear upon his poor lifeless form": [65535, 0], "drop one little tear upon his poor lifeless form would": [65535, 0], "one little tear upon his poor lifeless form would she": [65535, 0], "little tear upon his poor lifeless form would she heave": [65535, 0], "tear upon his poor lifeless form would she heave one": [65535, 0], "upon his poor lifeless form would she heave one little": [65535, 0], "his poor lifeless form would she heave one little sigh": [65535, 0], "poor lifeless form would she heave one little sigh to": [65535, 0], "lifeless form would she heave one little sigh to see": [65535, 0], "form would she heave one little sigh to see a": [65535, 0], "would she heave one little sigh to see a bright": [65535, 0], "she heave one little sigh to see a bright young": [65535, 0], "heave one little sigh to see a bright young life": [65535, 0], "one little sigh to see a bright young life so": [65535, 0], "little sigh to see a bright young life so rudely": [65535, 0], "sigh to see a bright young life so rudely blighted": [65535, 0], "to see a bright young life so rudely blighted so": [65535, 0], "see a bright young life so rudely blighted so untimely": [65535, 0], "a bright young life so rudely blighted so untimely cut": [65535, 0], "bright young life so rudely blighted so untimely cut down": [65535, 0], "young life so rudely blighted so untimely cut down the": [65535, 0], "life so rudely blighted so untimely cut down the window": [65535, 0], "so rudely blighted so untimely cut down the window went": [65535, 0], "rudely blighted so untimely cut down the window went up": [65535, 0], "blighted so untimely cut down the window went up a": [65535, 0], "so untimely cut down the window went up a maid": [65535, 0], "untimely cut down the window went up a maid servant's": [65535, 0], "cut down the window went up a maid servant's discordant": [65535, 0], "down the window went up a maid servant's discordant voice": [65535, 0], "the window went up a maid servant's discordant voice profaned": [65535, 0], "window went up a maid servant's discordant voice profaned the": [65535, 0], "went up a maid servant's discordant voice profaned the holy": [65535, 0], "up a maid servant's discordant voice profaned the holy calm": [65535, 0], "a maid servant's discordant voice profaned the holy calm and": [65535, 0], "maid servant's discordant voice profaned the holy calm and a": [65535, 0], "servant's discordant voice profaned the holy calm and a deluge": [65535, 0], "discordant voice profaned the holy calm and a deluge of": [65535, 0], "voice profaned the holy calm and a deluge of water": [65535, 0], "profaned the holy calm and a deluge of water drenched": [65535, 0], "the holy calm and a deluge of water drenched the": [65535, 0], "holy calm and a deluge of water drenched the prone": [65535, 0], "calm and a deluge of water drenched the prone martyr's": [65535, 0], "and a deluge of water drenched the prone martyr's remains": [65535, 0], "a deluge of water drenched the prone martyr's remains the": [65535, 0], "deluge of water drenched the prone martyr's remains the strangling": [65535, 0], "of water drenched the prone martyr's remains the strangling hero": [65535, 0], "water drenched the prone martyr's remains the strangling hero sprang": [65535, 0], "drenched the prone martyr's remains the strangling hero sprang up": [65535, 0], "the prone martyr's remains the strangling hero sprang up with": [65535, 0], "prone martyr's remains the strangling hero sprang up with a": [65535, 0], "martyr's remains the strangling hero sprang up with a relieving": [65535, 0], "remains the strangling hero sprang up with a relieving snort": [65535, 0], "the strangling hero sprang up with a relieving snort there": [65535, 0], "strangling hero sprang up with a relieving snort there was": [65535, 0], "hero sprang up with a relieving snort there was a": [65535, 0], "sprang up with a relieving snort there was a whiz": [65535, 0], "up with a relieving snort there was a whiz as": [65535, 0], "with a relieving snort there was a whiz as of": [65535, 0], "a relieving snort there was a whiz as of a": [65535, 0], "relieving snort there was a whiz as of a missile": [65535, 0], "snort there was a whiz as of a missile in": [65535, 0], "there was a whiz as of a missile in the": [65535, 0], "was a whiz as of a missile in the air": [65535, 0], "a whiz as of a missile in the air mingled": [65535, 0], "whiz as of a missile in the air mingled with": [65535, 0], "as of a missile in the air mingled with the": [65535, 0], "of a missile in the air mingled with the murmur": [65535, 0], "a missile in the air mingled with the murmur of": [65535, 0], "missile in the air mingled with the murmur of a": [65535, 0], "in the air mingled with the murmur of a curse": [65535, 0], "the air mingled with the murmur of a curse a": [65535, 0], "air mingled with the murmur of a curse a sound": [65535, 0], "mingled with the murmur of a curse a sound as": [65535, 0], "with the murmur of a curse a sound as of": [65535, 0], "the murmur of a curse a sound as of shivering": [65535, 0], "murmur of a curse a sound as of shivering glass": [65535, 0], "of a curse a sound as of shivering glass followed": [65535, 0], "a curse a sound as of shivering glass followed and": [65535, 0], "curse a sound as of shivering glass followed and a": [65535, 0], "a sound as of shivering glass followed and a small": [65535, 0], "sound as of shivering glass followed and a small vague": [65535, 0], "as of shivering glass followed and a small vague form": [65535, 0], "of shivering glass followed and a small vague form went": [65535, 0], "shivering glass followed and a small vague form went over": [65535, 0], "glass followed and a small vague form went over the": [65535, 0], "followed and a small vague form went over the fence": [65535, 0], "and a small vague form went over the fence and": [65535, 0], "a small vague form went over the fence and shot": [65535, 0], "small vague form went over the fence and shot away": [65535, 0], "vague form went over the fence and shot away in": [65535, 0], "form went over the fence and shot away in the": [65535, 0], "went over the fence and shot away in the gloom": [65535, 0], "over the fence and shot away in the gloom not": [65535, 0], "the fence and shot away in the gloom not long": [65535, 0], "fence and shot away in the gloom not long after": [65535, 0], "and shot away in the gloom not long after as": [65535, 0], "shot away in the gloom not long after as tom": [65535, 0], "away in the gloom not long after as tom all": [65535, 0], "in the gloom not long after as tom all undressed": [65535, 0], "the gloom not long after as tom all undressed for": [65535, 0], "gloom not long after as tom all undressed for bed": [65535, 0], "not long after as tom all undressed for bed was": [65535, 0], "long after as tom all undressed for bed was surveying": [65535, 0], "after as tom all undressed for bed was surveying his": [65535, 0], "as tom all undressed for bed was surveying his drenched": [65535, 0], "tom all undressed for bed was surveying his drenched garments": [65535, 0], "all undressed for bed was surveying his drenched garments by": [65535, 0], "undressed for bed was surveying his drenched garments by the": [65535, 0], "for bed was surveying his drenched garments by the light": [65535, 0], "bed was surveying his drenched garments by the light of": [65535, 0], "was surveying his drenched garments by the light of a": [65535, 0], "surveying his drenched garments by the light of a tallow": [65535, 0], "his drenched garments by the light of a tallow dip": [65535, 0], "drenched garments by the light of a tallow dip sid": [65535, 0], "garments by the light of a tallow dip sid woke": [65535, 0], "by the light of a tallow dip sid woke up": [65535, 0], "the light of a tallow dip sid woke up but": [65535, 0], "light of a tallow dip sid woke up but if": [65535, 0], "of a tallow dip sid woke up but if he": [65535, 0], "a tallow dip sid woke up but if he had": [65535, 0], "tallow dip sid woke up but if he had any": [65535, 0], "dip sid woke up but if he had any dim": [65535, 0], "sid woke up but if he had any dim idea": [65535, 0], "woke up but if he had any dim idea of": [65535, 0], "up but if he had any dim idea of making": [65535, 0], "but if he had any dim idea of making any": [65535, 0], "if he had any dim idea of making any references": [65535, 0], "he had any dim idea of making any references to": [65535, 0], "had any dim idea of making any references to allusions": [65535, 0], "any dim idea of making any references to allusions he": [65535, 0], "dim idea of making any references to allusions he thought": [65535, 0], "idea of making any references to allusions he thought better": [65535, 0], "of making any references to allusions he thought better of": [65535, 0], "making any references to allusions he thought better of it": [65535, 0], "any references to allusions he thought better of it and": [65535, 0], "references to allusions he thought better of it and held": [65535, 0], "to allusions he thought better of it and held his": [65535, 0], "allusions he thought better of it and held his peace": [65535, 0], "he thought better of it and held his peace for": [65535, 0], "thought better of it and held his peace for there": [65535, 0], "better of it and held his peace for there was": [65535, 0], "of it and held his peace for there was danger": [65535, 0], "it and held his peace for there was danger in": [65535, 0], "and held his peace for there was danger in tom's": [65535, 0], "held his peace for there was danger in tom's eye": [65535, 0], "his peace for there was danger in tom's eye tom": [65535, 0], "peace for there was danger in tom's eye tom turned": [65535, 0], "for there was danger in tom's eye tom turned in": [65535, 0], "there was danger in tom's eye tom turned in without": [65535, 0], "was danger in tom's eye tom turned in without the": [65535, 0], "danger in tom's eye tom turned in without the added": [65535, 0], "in tom's eye tom turned in without the added vexation": [65535, 0], "tom's eye tom turned in without the added vexation of": [65535, 0], "eye tom turned in without the added vexation of prayers": [65535, 0], "tom turned in without the added vexation of prayers and": [65535, 0], "turned in without the added vexation of prayers and sid": [65535, 0], "in without the added vexation of prayers and sid made": [65535, 0], "without the added vexation of prayers and sid made mental": [65535, 0], "the added vexation of prayers and sid made mental note": [65535, 0], "added vexation of prayers and sid made mental note of": [65535, 0], "vexation of prayers and sid made mental note of the": [65535, 0], "of prayers and sid made mental note of the omission": [65535, 0], "actus": [0, 65535], "tertius": [0, 65535], "scena": [0, 65535], "prima": [0, 65535], "enter": [0, 65535], "antipholus": [0, 65535], "ephesus": [0, 65535], "dromio": [0, 65535], "angelo": [0, 65535], "goldsmith": [0, 65535], "balthaser": [0, 65535], "merchant": [0, 65535], "e": [0, 65535], "anti": [0, 65535], "signior": [0, 65535], "excuse": [0, 65535], "vs": [0, 65535], "shrewish": [0, 65535], "keepe": [0, 65535], "howres": [0, 65535], "lingerd": [0, 65535], "shop": [0, 65535], "carkanet": [0, 65535], "here's": [0, 65535], "villaine": [0, 65535], "downe": [0, 65535], "mart": [0, 65535], "charg'd": [0, 65535], "markes": [0, 65535], "gold": [0, 65535], "denie": [0, 65535], "thou": [0, 65535], "didst": [0, 65535], "meane": [0, 65535], "dro": [0, 65535], "wil": [0, 65535], "haue": [0, 65535], "parchment": [0, 65535], "blows": [0, 65535], "gaue": [0, 65535], "ink": [0, 65535], "owne": [0, 65535], "writing": [0, 65535], "thinke": [0, 65535], "asse": [0, 65535], "marry": [0, 65535], "doth": [0, 65535], "appeare": [0, 65535], "wrongs": [0, 65535], "suffer": [0, 65535], "blowes": [0, 65535], "beare": [0, 65535], "kicke": [0, 65535], "kickt": [0, 65535], "passe": [0, 65535], "heeles": [0, 65535], "beware": [0, 65535], "y'are": [0, 65535], "balthazar": [0, 65535], "welcom": [0, 65535], "bal": [0, 65535], "dainties": [0, 65535], "cheap": [0, 65535], "deer": [0, 65535], "table": [0, 65535], "welcome": [0, 65535], "scarce": [0, 65535], "dish": [0, 65535], "meat": [0, 65535], "co": [0, 65535], "m": [0, 65535], "mon": [0, 65535], "euery": [0, 65535], "churle": [0, 65535], "affords": [0, 65535], "common": [0, 65535], "thats": [0, 65535], "cheere": [0, 65535], "merrie": [0, 65535], "feast": [0, 65535], "niggardly": [0, 65535], "host": [0, 65535], "sparing": [0, 65535], "guest": [0, 65535], "cates": [0, 65535], "hart": [0, 65535], "soft": [0, 65535], "doore": [0, 65535], "lockt": [0, 65535], "goe": [0, 65535], "bid": [0, 65535], "maud": [0, 65535], "briget": [0, 65535], "marian": [0, 65535], "cisley": [0, 65535], "gillian": [0, 65535], "ginn": [0, 65535], "mome": [0, 65535], "malthorse": [0, 65535], "capon": [0, 65535], "coxcombe": [0, 65535], "patch": [0, 65535], "thee": [0, 65535], "hatch": [0, 65535], "dost": [0, 65535], "coniure": [0, 65535], "wenches": [0, 65535], "calst": [0, 65535], "store": [0, 65535], "porter": [0, 65535], "stayes": [0, 65535], "walke": [0, 65535], "whence": [0, 65535], "lest": [0, 65535], "hee": [0, 65535], "on's": [0, 65535], "hoa": [0, 65535], "ile": [0, 65535], "wherefore": [0, 65535], "din'd": [0, 65535], "againe": [0, 65535], "keep'st": [0, 65535], "mee": [0, 65535], "howse": [0, 65535], "owe": [0, 65535], "hast": [0, 65535], "stolne": [0, 65535], "mine": [0, 65535], "office": [0, 65535], "nere": [0, 65535], "credit": [0, 65535], "mickle": [0, 65535], "hadst": [0, 65535], "beene": [0, 65535], "wouldst": [0, 65535], "chang'd": [0, 65535], "thy": [0, 65535], "luce": [0, 65535], "coile": [0, 65535], "faith": [0, 65535], "prouerbe": [0, 65535], "staffe": [0, 65535], "swer'd": [0, 65535], "doe": [0, 65535], "heare": [0, 65535], "minion": [0, 65535], "askt": [0, 65535], "helpe": [0, 65535], "strooke": [0, 65535], "blow": [0, 65535], "baggage": [0, 65535], "sake": [0, 65535], "drom": [0, 65535], "knocke": [0, 65535], "ake": [0, 65535], "crie": [0, 65535], "needs": [0, 65535], "paire": [0, 65535], "stocks": [0, 65535], "towne": [0, 65535], "adriana": [0, 65535], "adr": [0, 65535], "keeps": [0, 65535], "troth": [0, 65535], "vnruly": [0, 65535], "boies": [0, 65535], "adri": [0, 65535], "knaue": [0, 65535], "paine": [0, 65535], "wold": [0, 65535], "heere": [0, 65535], "faine": [0, 65535], "baltz": [0, 65535], "debating": [0, 65535], "best": [0, 65535], "wee": [0, 65535], "winde": [0, 65535], "cake": [0, 65535], "warme": [0, 65535], "mad": [0, 65535], "bucke": [0, 65535], "sold": [0, 65535], "ope": [0, 65535], "breake": [0, 65535], "breaking": [0, 65535], "knaues": [0, 65535], "pate": [0, 65535], "behinde": [0, 65535], "seemes": [0, 65535], "want'st": [0, 65535], "vpon": [0, 65535], "hinde": [0, 65535], "fowles": [0, 65535], "feathers": [0, 65535], "fin": [0, 65535], "borrow": [0, 65535], "crow": [0, 65535], "finne": [0, 65535], "ther's": [0, 65535], "fowle": [0, 65535], "fether": [0, 65535], "sirra": [0, 65535], "wee'll": [0, 65535], "plucke": [0, 65535], "gon": [0, 65535], "balth": [0, 65535], "patience": [0, 65535], "heerein": [0, 65535], "warre": [0, 65535], "reputation": [0, 65535], "compasse": [0, 65535], "suspect": [0, 65535], "th'": [0, 65535], "vnuiolated": [0, 65535], "experience": [0, 65535], "wisedome": [0, 65535], "sober": [0, 65535], "vertue": [0, 65535], "yeares": [0, 65535], "modestie": [0, 65535], "plead": [0, 65535], "cause": [0, 65535], "vnknowne": [0, 65535], "dores": [0, 65535], "rul'd": [0, 65535], "depart": [0, 65535], "tyger": [0, 65535], "euening": [0, 65535], "selfe": [0, 65535], "reason": [0, 65535], "strange": [0, 65535], "offer": [0, 65535], "stirring": [0, 65535], "comment": [0, 65535], "supposed": [0, 65535], "rowt": [0, 65535], "vngalled": [0, 65535], "estimation": [0, 65535], "foule": [0, 65535], "intrusion": [0, 65535], "dwell": [0, 65535], "graue": [0, 65535], "slander": [0, 65535], "liues": [0, 65535], "euer": [0, 65535], "hows'd": [0, 65535], "gets": [0, 65535], "possession": [0, 65535], "preuail'd": [0, 65535], "despight": [0, 65535], "wench": [0, 65535], "excellent": [0, 65535], "prettie": [0, 65535], "wittie": [0, 65535], "wilde": [0, 65535], "dine": [0, 65535], "protest": [0, 65535], "desert": [0, 65535], "hath": [0, 65535], "oftentimes": [0, 65535], "vpbraided": [0, 65535], "withall": [0, 65535], "chaine": [0, 65535], "'tis": [0, 65535], "porpentine": [0, 65535], "bestow": [0, 65535], "spight": [0, 65535], "hostesse": [0, 65535], "haste": [0, 65535], "since": [0, 65535], "doores": [0, 65535], "refuse": [0, 65535], "entertaine": [0, 65535], "disdaine": [0, 65535], "ang": [0, 65535], "houre": [0, 65535], "hence": [0, 65535], "iest": [0, 65535], "cost": [0, 65535], "expence": [0, 65535], "exeunt": [0, 65535], "iuliana": [0, 65535], "siracusia": [0, 65535], "iulia": [0, 65535], "husbands": [0, 65535], "euen": [0, 65535], "loue": [0, 65535], "springs": [0, 65535], "rot": [0, 65535], "buildings": [0, 65535], "ruinate": [0, 65535], "wed": [0, 65535], "sister": [0, 65535], "wealths": [0, 65535], "vse": [0, 65535], "kindnesse": [0, 65535], "stealth": [0, 65535], "muffle": [0, 65535], "false": [0, 65535], "shew": [0, 65535], "blindnesse": [0, 65535], "shames": [0, 65535], "orator": [0, 65535], "looke": [0, 65535], "sweet": [0, 65535], "speake": [0, 65535], "faire": [0, 65535], "become": [0, 65535], "disloyaltie": [0, 65535], "apparell": [0, 65535], "vice": [0, 65535], "vertues": [0, 65535], "harbenger": [0, 65535], "tainted": [0, 65535], "teach": [0, 65535], "sinne": [0, 65535], "carriage": [0, 65535], "saint": [0, 65535], "secret": [0, 65535], "need": [0, 65535], "acquainted": [0, 65535], "thiefe": [0, 65535], "brags": [0, 65535], "attaine": [0, 65535], "truant": [0, 65535], "lookes": [0, 65535], "boord": [0, 65535], "shame": [0, 65535], "bastard": [0, 65535], "fame": [0, 65535], "deeds": [0, 65535], "doubled": [0, 65535], "euill": [0, 65535], "alas": [0, 65535], "poore": [0, 65535], "women": [0, 65535], "beleeue": [0, 65535], "compact": [0, 65535], "arme": [0, 65535], "sleeue": [0, 65535], "motion": [0, 65535], "turne": [0, 65535], "moue": [0, 65535], "sport": [0, 65535], "vaine": [0, 65535], "flatterie": [0, 65535], "conquers": [0, 65535], "strife": [0, 65535], "sweete": [0, 65535], "mistris": [0, 65535], "lesse": [0, 65535], "earths": [0, 65535], "diuine": [0, 65535], "deere": [0, 65535], "earthie": [0, 65535], "grosse": [0, 65535], "conceit": [0, 65535], "smothred": [0, 65535], "errors": [0, 65535], "shallow": [0, 65535], "weake": [0, 65535], "foulded": [0, 65535], "meaning": [0, 65535], "deceit": [0, 65535], "soules": [0, 65535], "labour": [0, 65535], "wander": [0, 65535], "create": [0, 65535], "transforme": [0, 65535], "powre": [0, 65535], "yeeld": [0, 65535], "weeping": [0, 65535], "farre": [0, 65535], "decline": [0, 65535], "traine": [0, 65535], "mermaide": [0, 65535], "drowne": [0, 65535], "floud": [0, 65535], "teares": [0, 65535], "sing": [0, 65535], "siren": [0, 65535], "dote": [0, 65535], "ore": [0, 65535], "siluer": [0, 65535], "waues": [0, 65535], "golden": [0, 65535], "haires": [0, 65535], "bud": [0, 65535], "glorious": [0, 65535], "supposition": [0, 65535], "gaines": [0, 65535], "meanes": [0, 65535], "sinke": [0, 65535], "luc": [0, 65535], "mated": [0, 65535], "fault": [0, 65535], "springeth": [0, 65535], "eie": [0, 65535], "gazing": [0, 65535], "beames": [0, 65535], "cleere": [0, 65535], "winke": [0, 65535], "sisters": [0, 65535], "selfes": [0, 65535], "eies": [0, 65535], "hearts": [0, 65535], "deerer": [0, 65535], "foode": [0, 65535], "hopes": [0, 65535], "aime": [0, 65535], "sole": [0, 65535], "heauen": [0, 65535], "heauens": [0, 65535], "claime": [0, 65535], "husband": [0, 65535], "giue": [0, 65535], "exit": [0, 65535], "run'st": [0, 65535], "womans": [0, 65535], "marrie": [0, 65535], "claimes": [0, 65535], "laies": [0, 65535], "beast": [0, 65535], "beeing": [0, 65535], "verie": [0, 65535], "beastly": [0, 65535], "layes": [0, 65535], "reuerent": [0, 65535], "reuerence": [0, 65535], "leane": [0, 65535], "lucke": [0, 65535], "match": [0, 65535], "wondrous": [0, 65535], "fat": [0, 65535], "marriage": [0, 65535], "kitchin": [0, 65535], "al": [0, 65535], "grease": [0, 65535], "lampe": [0, 65535], "warrant": [0, 65535], "ragges": [0, 65535], "burne": [0, 65535], "poland": [0, 65535], "winter": [0, 65535], "doomesday": [0, 65535], "she'l": [0, 65535], "weeke": [0, 65535], "complexion": [0, 65535], "swart": [0, 65535], "shoo": [0, 65535], "cleane": [0, 65535], "sweats": [0, 65535], "uer": [0, 65535], "shooes": [0, 65535], "grime": [0, 65535], "mend": [0, 65535], "graine": [0, 65535], "noahs": [0, 65535], "flood": [0, 65535], "nell": [0, 65535], "quarters": [0, 65535], "ell": [0, 65535], "measure": [0, 65535], "hip": [0, 65535], "beares": [0, 65535], "bredth": [0, 65535], "hippe": [0, 65535], "sphericall": [0, 65535], "globe": [0, 65535], "countries": [0, 65535], "ireland": [0, 65535], "buttockes": [0, 65535], "bogges": [0, 65535], "scotland": [0, 65535], "barrennesse": [0, 65535], "palme": [0, 65535], "france": [0, 65535], "forhead": [0, 65535], "arm'd": [0, 65535], "reuerted": [0, 65535], "heire": [0, 65535], "look'd": [0, 65535], "chalkle": [0, 65535], "cliffes": [0, 65535], "whitenesse": [0, 65535], "guesse": [0, 65535], "salt": [0, 65535], "rheume": [0, 65535], "ranne": [0, 65535], "betweene": [0, 65535], "spaine": [0, 65535], "breth": [0, 65535], "indies": [0, 65535], "embellished": [0, 65535], "rubies": [0, 65535], "carbuncles": [0, 65535], "saphires": [0, 65535], "declining": [0, 65535], "rich": [0, 65535], "aspect": [0, 65535], "sent": [0, 65535], "armadoes": [0, 65535], "carrects": [0, 65535], "ballast": [0, 65535], "belgia": [0, 65535], "netherlands": [0, 65535], "conclude": [0, 65535], "drudge": [0, 65535], "diuiner": [0, 65535], "layd": [0, 65535], "call'd": [0, 65535], "swore": [0, 65535], "assur'd": [0, 65535], "priuie": [0, 65535], "marke": [0, 65535], "mole": [0, 65535], "necke": [0, 65535], "amaz'd": [0, 65535], "brest": [0, 65535], "steele": [0, 65535], "transform'd": [0, 65535], "curtull": [0, 65535], "i'th": [0, 65535], "wheele": [0, 65535], "hie": [0, 65535], "post": [0, 65535], "rode": [0, 65535], "shore": [0, 65535], "harbour": [0, 65535], "barke": [0, 65535], "returne": [0, 65535], "euerie": [0, 65535], "knowes": [0, 65535], "trudge": [0, 65535], "packe": [0, 65535], "flie": [0, 65535], "witches": [0, 65535], "inhabite": [0, 65535], "soule": [0, 65535], "abhorre": [0, 65535], "possest": [0, 65535], "soueraigne": [0, 65535], "inchanting": [0, 65535], "guilty": [0, 65535], "eares": [0, 65535], "mermaids": [0, 65535], "loe": [0, 65535], "tane": [0, 65535], "vnfinish'd": [0, 65535], "shal": [0, 65535], "bespoke": [0, 65535], "twice": [0, 65535], "twentie": [0, 65535], "soone": [0, 65535], "receiue": [0, 65535], "feare": [0, 65535], "ne're": [0, 65535], "mony": [0, 65535], "merry": [0, 65535], "fare": [0, 65535], "offer'd": [0, 65535], "liue": [0, 65535], "shifts": [0, 65535], "streets": [0, 65535], "meetes": [0, 65535], "gifts": [0, 65535], "actus tertius": [0, 65535], "tertius scena": [0, 65535], "scena prima": [0, 65535], "prima enter": [0, 65535], "enter antipholus": [0, 65535], "antipholus of": [0, 65535], "of ephesus": [0, 65535], "ephesus his": [0, 65535], "his man": [0, 65535], "man dromio": [0, 65535], "dromio angelo": [0, 65535], "angelo the": [0, 65535], "the goldsmith": [0, 65535], "goldsmith and": [0, 65535], "and balthaser": [0, 65535], "balthaser the": [0, 65535], "the merchant": [0, 65535], "merchant e": [0, 65535], "e anti": [0, 65535], "anti good": [0, 65535], "good signior": [0, 65535], "signior angelo": [0, 65535], "angelo you": [0, 65535], "must excuse": [0, 65535], "excuse vs": [0, 65535], "vs all": [0, 65535], "all my": [0, 65535], "my wife": [0, 65535], "wife is": [0, 65535], "is shrewish": [0, 65535], "shrewish when": [0, 65535], "i keepe": [0, 65535], "keepe not": [0, 65535], "not howres": [0, 65535], "howres say": [0, 65535], "say that": [0, 65535], "i lingerd": [0, 65535], "lingerd with": [0, 65535], "you at": [0, 65535], "your shop": [0, 65535], "shop to": [0, 65535], "the making": [0, 65535], "making of": [0, 65535], "her carkanet": [0, 65535], "carkanet and": [0, 65535], "that to": [0, 65535], "morrow you": [0, 65535], "will bring": [0, 65535], "bring it": [0, 65535], "it home": [0, 65535], "home but": [0, 65535], "but here's": [0, 65535], "here's a": [0, 65535], "a villaine": [0, 65535], "villaine that": [0, 65535], "would face": [0, 65535], "face me": [0, 65535], "me downe": [0, 65535], "downe he": [0, 65535], "met me": [0, 65535], "me on": [0, 65535], "the mart": [0, 65535], "mart and": [0, 65535], "i beat": [0, 65535], "beat him": [0, 65535], "and charg'd": [0, 65535], "charg'd him": [0, 65535], "thousand markes": [0, 65535], "markes in": [0, 65535], "in gold": [0, 65535], "gold and": [0, 65535], "did denie": [0, 65535], "denie my": [0, 65535], "wife and": [0, 65535], "and house": [0, 65535], "house thou": [0, 65535], "thou drunkard": [0, 65535], "drunkard thou": [0, 65535], "thou what": [0, 65535], "what didst": [0, 65535], "didst thou": [0, 65535], "thou meane": [0, 65535], "meane by": [0, 65535], "this e": [0, 65535], "e dro": [0, 65535], "dro say": [0, 65535], "you wil": [0, 65535], "wil sir": [0, 65535], "sir but": [0, 65535], "what i": [0, 65535], "know that": [0, 65535], "you beat": [0, 65535], "beat me": [0, 65535], "me at": [0, 65535], "mart i": [0, 65535], "i haue": [0, 65535], "haue your": [0, 65535], "show if": [0, 65535], "the skin": [0, 65535], "skin were": [0, 65535], "were parchment": [0, 65535], "parchment the": [0, 65535], "the blows": [0, 65535], "blows you": [0, 65535], "you gaue": [0, 65535], "gaue were": [0, 65535], "were ink": [0, 65535], "ink your": [0, 65535], "your owne": [0, 65535], "owne hand": [0, 65535], "hand writing": [0, 65535], "writing would": [0, 65535], "i thinke": [0, 65535], "thinke e": [0, 65535], "e ant": [0, 65535], "ant i": [0, 65535], "thinke thou": [0, 65535], "thou art": [0, 65535], "art an": [0, 65535], "an asse": [0, 65535], "asse e": [0, 65535], "dro marry": [0, 65535], "marry so": [0, 65535], "it doth": [0, 65535], "doth appeare": [0, 65535], "appeare by": [0, 65535], "the wrongs": [0, 65535], "wrongs i": [0, 65535], "i suffer": [0, 65535], "suffer and": [0, 65535], "the blowes": [0, 65535], "blowes i": [0, 65535], "i beare": [0, 65535], "beare i": [0, 65535], "i should": [0, 65535], "should kicke": [0, 65535], "kicke being": [0, 65535], "being kickt": [0, 65535], "kickt and": [0, 65535], "and being": [0, 65535], "at that": [0, 65535], "that passe": [0, 65535], "passe you": [0, 65535], "would keepe": [0, 65535], "keepe from": [0, 65535], "from my": [0, 65535], "my heeles": [0, 65535], "heeles and": [0, 65535], "and beware": [0, 65535], "beware of": [0, 65535], "e an": [0, 65535], "an y'are": [0, 65535], "y'are sad": [0, 65535], "sad signior": [0, 65535], "signior balthazar": [0, 65535], "balthazar pray": [0, 65535], "god our": [0, 65535], "our cheer": [0, 65535], "cheer may": [0, 65535], "may answer": [0, 65535], "answer my": [0, 65535], "my good": [0, 65535], "good will": [0, 65535], "will and": [0, 65535], "and your": [0, 65535], "your good": [0, 65535], "good welcom": [0, 65535], "welcom here": [0, 65535], "here bal": [0, 65535], "bal i": [0, 65535], "i hold": [0, 65535], "hold your": [0, 65535], "your dainties": [0, 65535], "dainties cheap": [0, 65535], "cheap sir": [0, 65535], "sir your": [0, 65535], "your welcom": [0, 65535], "welcom deer": [0, 65535], "deer e": [0, 65535], "an oh": [0, 65535], "oh signior": [0, 65535], "balthazar either": [0, 65535], "either at": [0, 65535], "at flesh": [0, 65535], "flesh or": [0, 65535], "or fish": [0, 65535], "fish a": [0, 65535], "a table": [0, 65535], "table full": [0, 65535], "of welcome": [0, 65535], "welcome makes": [0, 65535], "makes scarce": [0, 65535], "scarce one": [0, 65535], "one dainty": [0, 65535], "dainty dish": [0, 65535], "dish bal": [0, 65535], "bal good": [0, 65535], "good meat": [0, 65535], "meat sir": [0, 65535], "sir is": [0, 65535], "is co": [0, 65535], "co m": [0, 65535], "m mon": [0, 65535], "mon that": [0, 65535], "that euery": [0, 65535], "euery churle": [0, 65535], "churle affords": [0, 65535], "affords anti": [0, 65535], "anti and": [0, 65535], "and welcome": [0, 65535], "welcome more": [0, 65535], "more common": [0, 65535], "common for": [0, 65535], "for thats": [0, 65535], "thats nothing": [0, 65535], "but words": [0, 65535], "words bal": [0, 65535], "bal small": [0, 65535], "small cheere": [0, 65535], "cheere and": [0, 65535], "and great": [0, 65535], "great welcome": [0, 65535], "makes a": [0, 65535], "a merrie": [0, 65535], "merrie feast": [0, 65535], "feast anti": [0, 65535], "anti i": [0, 65535], "i to": [0, 65535], "a niggardly": [0, 65535], "niggardly host": [0, 65535], "host and": [0, 65535], "more sparing": [0, 65535], "sparing guest": [0, 65535], "guest but": [0, 65535], "but though": [0, 65535], "though my": [0, 65535], "my cates": [0, 65535], "cates be": [0, 65535], "be meane": [0, 65535], "meane take": [0, 65535], "take them": [0, 65535], "part better": [0, 65535], "better cheere": [0, 65535], "cheere may": [0, 65535], "may you": [0, 65535], "you haue": [0, 65535], "haue but": [0, 65535], "not with": [0, 65535], "with better": [0, 65535], "better hart": [0, 65535], "hart but": [0, 65535], "but soft": [0, 65535], "soft my": [0, 65535], "my doore": [0, 65535], "doore is": [0, 65535], "is lockt": [0, 65535], "lockt goe": [0, 65535], "goe bid": [0, 65535], "bid them": [0, 65535], "them let": [0, 65535], "let vs": [0, 65535], "vs in": [0, 65535], "in e": [0, 65535], "dro maud": [0, 65535], "maud briget": [0, 65535], "briget marian": [0, 65535], "marian cisley": [0, 65535], "cisley gillian": [0, 65535], "gillian ginn": [0, 65535], "ginn s": [0, 65535], "s dro": [0, 65535], "dro mome": [0, 65535], "mome malthorse": [0, 65535], "malthorse capon": [0, 65535], "capon coxcombe": [0, 65535], "coxcombe idiot": [0, 65535], "idiot patch": [0, 65535], "patch either": [0, 65535], "either get": [0, 65535], "get thee": [0, 65535], "thee from": [0, 65535], "the dore": [0, 65535], "dore or": [0, 65535], "or sit": [0, 65535], "sit downe": [0, 65535], "downe at": [0, 65535], "the hatch": [0, 65535], "hatch dost": [0, 65535], "dost thou": [0, 65535], "thou coniure": [0, 65535], "coniure for": [0, 65535], "for wenches": [0, 65535], "wenches that": [0, 65535], "that thou": [0, 65535], "thou calst": [0, 65535], "calst for": [0, 65535], "such store": [0, 65535], "store when": [0, 65535], "when one": [0, 65535], "one is": [0, 65535], "is one": [0, 65535], "one too": [0, 65535], "too many": [0, 65535], "many goe": [0, 65535], "goe get": [0, 65535], "dore e": [0, 65535], "dro what": [0, 65535], "what patch": [0, 65535], "patch is": [0, 65535], "is made": [0, 65535], "made our": [0, 65535], "our porter": [0, 65535], "porter my": [0, 65535], "my master": [0, 65535], "master stayes": [0, 65535], "stayes in": [0, 65535], "street s": [0, 65535], "dro let": [0, 65535], "him walke": [0, 65535], "walke from": [0, 65535], "from whence": [0, 65535], "whence he": [0, 65535], "came lest": [0, 65535], "lest hee": [0, 65535], "hee catch": [0, 65535], "catch cold": [0, 65535], "cold on's": [0, 65535], "on's feet": [0, 65535], "feet e": [0, 65535], "ant who": [0, 65535], "who talks": [0, 65535], "talks within": [0, 65535], "within there": [0, 65535], "there hoa": [0, 65535], "hoa open": [0, 65535], "open the": [0, 65535], "dore s": [0, 65535], "dro right": [0, 65535], "right sir": [0, 65535], "sir ile": [0, 65535], "ile tell": [0, 65535], "me wherefore": [0, 65535], "wherefore ant": [0, 65535], "ant wherefore": [0, 65535], "wherefore for": [0, 65535], "my dinner": [0, 65535], "dinner i": [0, 65535], "haue not": [0, 65535], "not din'd": [0, 65535], "din'd to": [0, 65535], "to day": [0, 65535], "day s": [0, 65535], "dro nor": [0, 65535], "nor to": [0, 65535], "day here": [0, 65535], "here you": [0, 65535], "must not": [0, 65535], "not come": [0, 65535], "come againe": [0, 65535], "againe when": [0, 65535], "you may": [0, 65535], "may anti": [0, 65535], "anti what": [0, 65535], "what art": [0, 65535], "art thou": [0, 65535], "thou that": [0, 65535], "that keep'st": [0, 65535], "keep'st mee": [0, 65535], "mee out": [0, 65535], "out from": [0, 65535], "the howse": [0, 65535], "howse i": [0, 65535], "i owe": [0, 65535], "owe s": [0, 65535], "dro the": [0, 65535], "the porter": [0, 65535], "porter for": [0, 65535], "time sir": [0, 65535], "sir and": [0, 65535], "my name": [0, 65535], "name is": [0, 65535], "is dromio": [0, 65535], "dromio e": [0, 65535], "dro o": [0, 65535], "o villaine": [0, 65535], "villaine thou": [0, 65535], "thou hast": [0, 65535], "hast stolne": [0, 65535], "stolne both": [0, 65535], "both mine": [0, 65535], "mine office": [0, 65535], "office and": [0, 65535], "name the": [0, 65535], "the one": [0, 65535], "one nere": [0, 65535], "nere got": [0, 65535], "got me": [0, 65535], "me credit": [0, 65535], "credit the": [0, 65535], "other mickle": [0, 65535], "mickle blame": [0, 65535], "blame if": [0, 65535], "if thou": [0, 65535], "thou hadst": [0, 65535], "hadst beene": [0, 65535], "beene dromio": [0, 65535], "dromio to": [0, 65535], "day in": [0, 65535], "in my": [0, 65535], "my place": [0, 65535], "place thou": [0, 65535], "thou wouldst": [0, 65535], "wouldst haue": [0, 65535], "haue chang'd": [0, 65535], "chang'd thy": [0, 65535], "thy face": [0, 65535], "face for": [0, 65535], "a name": [0, 65535], "name or": [0, 65535], "or thy": [0, 65535], "thy name": [0, 65535], "name for": [0, 65535], "for an": [0, 65535], "asse enter": [0, 65535], "enter luce": [0, 65535], "luce luce": [0, 65535], "luce what": [0, 65535], "a coile": [0, 65535], "coile is": [0, 65535], "is there": [0, 65535], "there dromio": [0, 65535], "dromio who": [0, 65535], "who are": [0, 65535], "are those": [0, 65535], "those at": [0, 65535], "gate e": [0, 65535], "let my": [0, 65535], "master in": [0, 65535], "in luce": [0, 65535], "luce faith": [0, 65535], "faith no": [0, 65535], "no hee": [0, 65535], "hee comes": [0, 65535], "comes too": [0, 65535], "late and": [0, 65535], "so tell": [0, 65535], "tell your": [0, 65535], "your master": [0, 65535], "master e": [0, 65535], "o lord": [0, 65535], "lord i": [0, 65535], "must laugh": [0, 65535], "laugh haue": [0, 65535], "haue at": [0, 65535], "a prouerbe": [0, 65535], "prouerbe shall": [0, 65535], "i set": [0, 65535], "set in": [0, 65535], "my staffe": [0, 65535], "staffe luce": [0, 65535], "luce haue": [0, 65535], "with another": [0, 65535], "another that's": [0, 65535], "that's when": [0, 65535], "when can": [0, 65535], "tell s": [0, 65535], "dro if": [0, 65535], "if thy": [0, 65535], "name be": [0, 65535], "be called": [0, 65535], "called luce": [0, 65535], "luce thou": [0, 65535], "hast an": [0, 65535], "an swer'd": [0, 65535], "swer'd him": [0, 65535], "him well": [0, 65535], "well anti": [0, 65535], "anti doe": [0, 65535], "doe you": [0, 65535], "you heare": [0, 65535], "heare you": [0, 65535], "you minion": [0, 65535], "minion you'll": [0, 65535], "you'll let": [0, 65535], "in i": [0, 65535], "i hope": [0, 65535], "hope luce": [0, 65535], "luce i": [0, 65535], "thought to": [0, 65535], "to haue": [0, 65535], "haue askt": [0, 65535], "askt you": [0, 65535], "you s": [0, 65535], "dro and": [0, 65535], "said no": [0, 65535], "no e": [0, 65535], "dro so": [0, 65535], "so come": [0, 65535], "come helpe": [0, 65535], "helpe well": [0, 65535], "well strooke": [0, 65535], "strooke there": [0, 65535], "was blow": [0, 65535], "blow for": [0, 65535], "for blow": [0, 65535], "blow anti": [0, 65535], "anti thou": [0, 65535], "thou baggage": [0, 65535], "baggage let": [0, 65535], "me in": [0, 65535], "luce can": [0, 65535], "tell for": [0, 65535], "for whose": [0, 65535], "whose sake": [0, 65535], "sake e": [0, 65535], "e drom": [0, 65535], "drom master": [0, 65535], "master knocke": [0, 65535], "knocke the": [0, 65535], "the doore": [0, 65535], "doore hard": [0, 65535], "hard luce": [0, 65535], "luce let": [0, 65535], "him knocke": [0, 65535], "knocke till": [0, 65535], "it ake": [0, 65535], "ake anti": [0, 65535], "anti you'll": [0, 65535], "you'll crie": [0, 65535], "crie for": [0, 65535], "this minion": [0, 65535], "minion if": [0, 65535], "beat the": [0, 65535], "doore downe": [0, 65535], "downe luce": [0, 65535], "what needs": [0, 65535], "needs all": [0, 65535], "all that": [0, 65535], "a paire": [0, 65535], "paire of": [0, 65535], "of stocks": [0, 65535], "stocks in": [0, 65535], "the towne": [0, 65535], "towne enter": [0, 65535], "enter adriana": [0, 65535], "adriana adr": [0, 65535], "adr who": [0, 65535], "that at": [0, 65535], "doore that": [0, 65535], "that keeps": [0, 65535], "keeps all": [0, 65535], "this noise": [0, 65535], "noise s": [0, 65535], "dro by": [0, 65535], "by my": [0, 65535], "my troth": [0, 65535], "troth your": [0, 65535], "your towne": [0, 65535], "towne is": [0, 65535], "is troubled": [0, 65535], "troubled with": [0, 65535], "with vnruly": [0, 65535], "vnruly boies": [0, 65535], "boies anti": [0, 65535], "anti are": [0, 65535], "you there": [0, 65535], "there wife": [0, 65535], "wife you": [0, 65535], "you might": [0, 65535], "might haue": [0, 65535], "haue come": [0, 65535], "come before": [0, 65535], "before adri": [0, 65535], "adri your": [0, 65535], "your wife": [0, 65535], "wife sir": [0, 65535], "sir knaue": [0, 65535], "knaue go": [0, 65535], "go get": [0, 65535], "get you": [0, 65535], "you from": [0, 65535], "you went": [0, 65535], "went in": [0, 65535], "in paine": [0, 65535], "paine master": [0, 65535], "master this": [0, 65535], "this knaue": [0, 65535], "knaue wold": [0, 65535], "wold goe": [0, 65535], "goe sore": [0, 65535], "sore angelo": [0, 65535], "angelo heere": [0, 65535], "heere is": [0, 65535], "is neither": [0, 65535], "neither cheere": [0, 65535], "cheere sir": [0, 65535], "sir nor": [0, 65535], "nor welcome": [0, 65535], "welcome we": [0, 65535], "we would": [0, 65535], "would faine": [0, 65535], "faine haue": [0, 65535], "haue either": [0, 65535], "either baltz": [0, 65535], "baltz in": [0, 65535], "in debating": [0, 65535], "debating which": [0, 65535], "was best": [0, 65535], "best wee": [0, 65535], "wee shall": [0, 65535], "shall part": [0, 65535], "part with": [0, 65535], "with neither": [0, 65535], "neither e": [0, 65535], "dro they": [0, 65535], "they stand": [0, 65535], "stand at": [0, 65535], "doore master": [0, 65535], "master bid": [0, 65535], "them welcome": [0, 65535], "welcome hither": [0, 65535], "hither anti": [0, 65535], "anti there": [0, 65535], "is something": [0, 65535], "something in": [0, 65535], "the winde": [0, 65535], "winde that": [0, 65535], "we cannot": [0, 65535], "cannot get": [0, 65535], "dro you": [0, 65535], "would say": [0, 65535], "say so": [0, 65535], "so master": [0, 65535], "master if": [0, 65535], "if your": [0, 65535], "your garments": [0, 65535], "garments were": [0, 65535], "were thin": [0, 65535], "thin your": [0, 65535], "your cake": [0, 65535], "cake here": [0, 65535], "here is": [0, 65535], "is warme": [0, 65535], "warme within": [0, 65535], "within you": [0, 65535], "you stand": [0, 65535], "stand here": [0, 65535], "cold it": [0, 65535], "man mad": [0, 65535], "mad as": [0, 65535], "a bucke": [0, 65535], "bucke to": [0, 65535], "so bought": [0, 65535], "bought and": [0, 65535], "and sold": [0, 65535], "sold ant": [0, 65535], "ant go": [0, 65535], "go fetch": [0, 65535], "fetch me": [0, 65535], "me something": [0, 65535], "something ile": [0, 65535], "ile break": [0, 65535], "break ope": [0, 65535], "ope the": [0, 65535], "gate s": [0, 65535], "dro breake": [0, 65535], "breake any": [0, 65535], "any breaking": [0, 65535], "breaking here": [0, 65535], "and ile": [0, 65535], "ile breake": [0, 65535], "breake your": [0, 65535], "your knaues": [0, 65535], "knaues pate": [0, 65535], "pate e": [0, 65535], "dro a": [0, 65535], "man may": [0, 65535], "may breake": [0, 65535], "breake a": [0, 65535], "word with": [0, 65535], "your sir": [0, 65535], "and words": [0, 65535], "words are": [0, 65535], "are but": [0, 65535], "but winde": [0, 65535], "winde i": [0, 65535], "i and": [0, 65535], "and breake": [0, 65535], "breake it": [0, 65535], "in your": [0, 65535], "your face": [0, 65535], "face so": [0, 65535], "he break": [0, 65535], "break it": [0, 65535], "it not": [0, 65535], "not behinde": [0, 65535], "behinde s": [0, 65535], "dro it": [0, 65535], "it seemes": [0, 65535], "seemes thou": [0, 65535], "thou want'st": [0, 65535], "want'st breaking": [0, 65535], "breaking out": [0, 65535], "out vpon": [0, 65535], "vpon thee": [0, 65535], "thee hinde": [0, 65535], "hinde e": [0, 65535], "dro here's": [0, 65535], "here's too": [0, 65535], "much out": [0, 65535], "thee i": [0, 65535], "i pray": [0, 65535], "pray thee": [0, 65535], "thee let": [0, 65535], "in s": [0, 65535], "dro i": [0, 65535], "i when": [0, 65535], "when fowles": [0, 65535], "fowles haue": [0, 65535], "haue no": [0, 65535], "no feathers": [0, 65535], "feathers and": [0, 65535], "and fish": [0, 65535], "fish haue": [0, 65535], "no fin": [0, 65535], "fin ant": [0, 65535], "ant well": [0, 65535], "well ile": [0, 65535], "breake in": [0, 65535], "in go": [0, 65535], "go borrow": [0, 65535], "borrow me": [0, 65535], "a crow": [0, 65535], "crow e": [0, 65535], "crow without": [0, 65535], "without feather": [0, 65535], "feather master": [0, 65535], "master meane": [0, 65535], "meane you": [0, 65535], "so for": [0, 65535], "fish without": [0, 65535], "a finne": [0, 65535], "finne ther's": [0, 65535], "ther's a": [0, 65535], "a fowle": [0, 65535], "fowle without": [0, 65535], "a fether": [0, 65535], "fether if": [0, 65535], "if a": [0, 65535], "crow help": [0, 65535], "help vs": [0, 65535], "in sirra": [0, 65535], "sirra wee'll": [0, 65535], "wee'll plucke": [0, 65535], "plucke a": [0, 65535], "crow together": [0, 65535], "together ant": [0, 65535], "thee gon": [0, 65535], "gon fetch": [0, 65535], "me an": [0, 65535], "an iron": [0, 65535], "iron crow": [0, 65535], "crow balth": [0, 65535], "balth haue": [0, 65535], "haue patience": [0, 65535], "patience sir": [0, 65535], "sir oh": [0, 65535], "oh let": [0, 65535], "not be": [0, 65535], "so heerein": [0, 65535], "heerein you": [0, 65535], "you warre": [0, 65535], "warre against": [0, 65535], "against your": [0, 65535], "your reputation": [0, 65535], "reputation and": [0, 65535], "and draw": [0, 65535], "draw within": [0, 65535], "within the": [0, 65535], "the compasse": [0, 65535], "compasse of": [0, 65535], "of suspect": [0, 65535], "suspect th'": [0, 65535], "th' vnuiolated": [0, 65535], "vnuiolated honor": [0, 65535], "honor of": [0, 65535], "wife once": [0, 65535], "once this": [0, 65535], "this your": [0, 65535], "your long": [0, 65535], "long experience": [0, 65535], "experience of": [0, 65535], "your wisedome": [0, 65535], "wisedome her": [0, 65535], "her sober": [0, 65535], "sober vertue": [0, 65535], "vertue yeares": [0, 65535], "yeares and": [0, 65535], "and modestie": [0, 65535], "modestie plead": [0, 65535], "plead on": [0, 65535], "your part": [0, 65535], "part some": [0, 65535], "some cause": [0, 65535], "cause to": [0, 65535], "you vnknowne": [0, 65535], "vnknowne and": [0, 65535], "and doubt": [0, 65535], "doubt not": [0, 65535], "not sir": [0, 65535], "she will": [0, 65535], "well excuse": [0, 65535], "excuse why": [0, 65535], "why at": [0, 65535], "the dores": [0, 65535], "dores are": [0, 65535], "are made": [0, 65535], "made against": [0, 65535], "against you": [0, 65535], "be rul'd": [0, 65535], "rul'd by": [0, 65535], "by me": [0, 65535], "me depart": [0, 65535], "depart in": [0, 65535], "in patience": [0, 65535], "patience and": [0, 65535], "vs to": [0, 65535], "the tyger": [0, 65535], "tyger all": [0, 65535], "dinner and": [0, 65535], "and about": [0, 65535], "about euening": [0, 65535], "euening come": [0, 65535], "come your": [0, 65535], "your selfe": [0, 65535], "selfe alone": [0, 65535], "alone to": [0, 65535], "the reason": [0, 65535], "reason of": [0, 65535], "this strange": [0, 65535], "strange restraint": [0, 65535], "restraint if": [0, 65535], "if by": [0, 65535], "by strong": [0, 65535], "strong hand": [0, 65535], "hand you": [0, 65535], "you offer": [0, 65535], "offer to": [0, 65535], "to breake": [0, 65535], "in now": [0, 65535], "now in": [0, 65535], "the stirring": [0, 65535], "stirring passage": [0, 65535], "day a": [0, 65535], "a vulgar": [0, 65535], "vulgar comment": [0, 65535], "comment will": [0, 65535], "will be": [0, 65535], "be made": [0, 65535], "that supposed": [0, 65535], "supposed by": [0, 65535], "the common": [0, 65535], "common rowt": [0, 65535], "rowt against": [0, 65535], "your yet": [0, 65535], "yet vngalled": [0, 65535], "vngalled estimation": [0, 65535], "estimation that": [0, 65535], "that may": [0, 65535], "may with": [0, 65535], "with foule": [0, 65535], "foule intrusion": [0, 65535], "intrusion enter": [0, 65535], "enter in": [0, 65535], "and dwell": [0, 65535], "dwell vpon": [0, 65535], "vpon your": [0, 65535], "your graue": [0, 65535], "graue when": [0, 65535], "are dead": [0, 65535], "dead for": [0, 65535], "for slander": [0, 65535], "slander liues": [0, 65535], "liues vpon": [0, 65535], "vpon succession": [0, 65535], "succession for": [0, 65535], "for euer": [0, 65535], "euer hows'd": [0, 65535], "hows'd where": [0, 65535], "it gets": [0, 65535], "gets possession": [0, 65535], "possession anti": [0, 65535], "anti you": [0, 65535], "haue preuail'd": [0, 65535], "preuail'd i": [0, 65535], "will depart": [0, 65535], "in quiet": [0, 65535], "quiet and": [0, 65535], "in despight": [0, 65535], "despight of": [0, 65535], "of mirth": [0, 65535], "mirth meane": [0, 65535], "meane to": [0, 65535], "be merrie": [0, 65535], "merrie i": [0, 65535], "know a": [0, 65535], "a wench": [0, 65535], "wench of": [0, 65535], "of excellent": [0, 65535], "excellent discourse": [0, 65535], "discourse prettie": [0, 65535], "prettie and": [0, 65535], "and wittie": [0, 65535], "wittie wilde": [0, 65535], "wilde and": [0, 65535], "yet too": [0, 65535], "too gentle": [0, 65535], "gentle there": [0, 65535], "there will": [0, 65535], "will we": [0, 65535], "we dine": [0, 65535], "dine this": [0, 65535], "this woman": [0, 65535], "woman that": [0, 65535], "i meane": [0, 65535], "meane my": [0, 65535], "wife but": [0, 65535], "i protest": [0, 65535], "protest without": [0, 65535], "without desert": [0, 65535], "desert hath": [0, 65535], "hath oftentimes": [0, 65535], "oftentimes vpbraided": [0, 65535], "vpbraided me": [0, 65535], "me withall": [0, 65535], "withall to": [0, 65535], "to her": [0, 65535], "her will": [0, 65535], "we to": [0, 65535], "dinner get": [0, 65535], "you home": [0, 65535], "and fetch": [0, 65535], "the chaine": [0, 65535], "chaine by": [0, 65535], "this i": [0, 65535], "know 'tis": [0, 65535], "'tis made": [0, 65535], "made bring": [0, 65535], "pray you": [0, 65535], "the porpentine": [0, 65535], "porpentine for": [0, 65535], "for there's": [0, 65535], "there's the": [0, 65535], "house that": [0, 65535], "that chaine": [0, 65535], "chaine will": [0, 65535], "will i": [0, 65535], "i bestow": [0, 65535], "bestow be": [0, 65535], "be it": [0, 65535], "for nothing": [0, 65535], "but to": [0, 65535], "to spight": [0, 65535], "spight my": [0, 65535], "wife vpon": [0, 65535], "vpon mine": [0, 65535], "mine hostesse": [0, 65535], "hostesse there": [0, 65535], "there good": [0, 65535], "good sir": [0, 65535], "sir make": [0, 65535], "make haste": [0, 65535], "haste since": [0, 65535], "since mine": [0, 65535], "mine owne": [0, 65535], "owne doores": [0, 65535], "doores refuse": [0, 65535], "refuse to": [0, 65535], "to entertaine": [0, 65535], "entertaine me": [0, 65535], "me ile": [0, 65535], "ile knocke": [0, 65535], "knocke else": [0, 65535], "else where": [0, 65535], "where to": [0, 65535], "see if": [0, 65535], "if they'll": [0, 65535], "they'll disdaine": [0, 65535], "disdaine me": [0, 65535], "me ang": [0, 65535], "ang ile": [0, 65535], "ile meet": [0, 65535], "meet you": [0, 65535], "that place": [0, 65535], "place some": [0, 65535], "some houre": [0, 65535], "houre hence": [0, 65535], "hence anti": [0, 65535], "anti do": [0, 65535], "do so": [0, 65535], "so this": [0, 65535], "this iest": [0, 65535], "iest shall": [0, 65535], "shall cost": [0, 65535], "cost me": [0, 65535], "me some": [0, 65535], "some expence": [0, 65535], "expence exeunt": [0, 65535], "exeunt enter": [0, 65535], "enter iuliana": [0, 65535], "iuliana with": [0, 65535], "with antipholus": [0, 65535], "of siracusia": [0, 65535], "siracusia iulia": [0, 65535], "iulia and": [0, 65535], "and may": [0, 65535], "may it": [0, 65535], "it be": [0, 65535], "haue quite": [0, 65535], "quite forgot": [0, 65535], "forgot a": [0, 65535], "a husbands": [0, 65535], "husbands office": [0, 65535], "office shall": [0, 65535], "shall antipholus": [0, 65535], "antipholus euen": [0, 65535], "euen in": [0, 65535], "spring of": [0, 65535], "of loue": [0, 65535], "loue thy": [0, 65535], "thy loue": [0, 65535], "loue springs": [0, 65535], "springs rot": [0, 65535], "rot shall": [0, 65535], "shall loue": [0, 65535], "loue in": [0, 65535], "in buildings": [0, 65535], "buildings grow": [0, 65535], "grow so": [0, 65535], "so ruinate": [0, 65535], "ruinate if": [0, 65535], "did wed": [0, 65535], "wed my": [0, 65535], "my sister": [0, 65535], "sister for": [0, 65535], "her wealth": [0, 65535], "wealth then": [0, 65535], "then for": [0, 65535], "her wealths": [0, 65535], "wealths sake": [0, 65535], "sake vse": [0, 65535], "vse her": [0, 65535], "her with": [0, 65535], "with more": [0, 65535], "more kindnesse": [0, 65535], "kindnesse or": [0, 65535], "or if": [0, 65535], "like else": [0, 65535], "where doe": [0, 65535], "doe it": [0, 65535], "by stealth": [0, 65535], "stealth muffle": [0, 65535], "muffle your": [0, 65535], "your false": [0, 65535], "false loue": [0, 65535], "loue with": [0, 65535], "with some": [0, 65535], "some shew": [0, 65535], "shew of": [0, 65535], "of blindnesse": [0, 65535], "blindnesse let": [0, 65535], "let not": [0, 65535], "not my": [0, 65535], "sister read": [0, 65535], "your eye": [0, 65535], "eye be": [0, 65535], "be not": [0, 65535], "not thy": [0, 65535], "thy tongue": [0, 65535], "tongue thy": [0, 65535], "thy owne": [0, 65535], "owne shames": [0, 65535], "shames orator": [0, 65535], "orator looke": [0, 65535], "looke sweet": [0, 65535], "sweet speake": [0, 65535], "speake faire": [0, 65535], "faire become": [0, 65535], "become disloyaltie": [0, 65535], "disloyaltie apparell": [0, 65535], "apparell vice": [0, 65535], "vice like": [0, 65535], "like vertues": [0, 65535], "vertues harbenger": [0, 65535], "harbenger beare": [0, 65535], "beare a": [0, 65535], "a faire": [0, 65535], "faire presence": [0, 65535], "presence though": [0, 65535], "though your": [0, 65535], "your heart": [0, 65535], "heart be": [0, 65535], "be tainted": [0, 65535], "tainted teach": [0, 65535], "teach sinne": [0, 65535], "sinne the": [0, 65535], "the carriage": [0, 65535], "carriage of": [0, 65535], "a holy": [0, 65535], "holy saint": [0, 65535], "saint be": [0, 65535], "be secret": [0, 65535], "secret false": [0, 65535], "false what": [0, 65535], "what need": [0, 65535], "need she": [0, 65535], "she be": [0, 65535], "be acquainted": [0, 65535], "acquainted what": [0, 65535], "what simple": [0, 65535], "simple thiefe": [0, 65535], "thiefe brags": [0, 65535], "brags of": [0, 65535], "his owne": [0, 65535], "owne attaine": [0, 65535], "attaine 'tis": [0, 65535], "'tis double": [0, 65535], "double wrong": [0, 65535], "wrong to": [0, 65535], "to truant": [0, 65535], "truant with": [0, 65535], "your bed": [0, 65535], "bed and": [0, 65535], "her read": [0, 65535], "in thy": [0, 65535], "thy lookes": [0, 65535], "lookes at": [0, 65535], "at boord": [0, 65535], "boord shame": [0, 65535], "shame hath": [0, 65535], "hath a": [0, 65535], "a bastard": [0, 65535], "bastard fame": [0, 65535], "fame well": [0, 65535], "well managed": [0, 65535], "managed ill": [0, 65535], "ill deeds": [0, 65535], "deeds is": [0, 65535], "is doubled": [0, 65535], "doubled with": [0, 65535], "an euill": [0, 65535], "euill word": [0, 65535], "word alas": [0, 65535], "alas poore": [0, 65535], "poore women": [0, 65535], "women make": [0, 65535], "make vs": [0, 65535], "vs not": [0, 65535], "not beleeue": [0, 65535], "beleeue being": [0, 65535], "being compact": [0, 65535], "compact of": [0, 65535], "of credit": [0, 65535], "credit that": [0, 65535], "you loue": [0, 65535], "loue vs": [0, 65535], "vs though": [0, 65535], "though others": [0, 65535], "others haue": [0, 65535], "haue the": [0, 65535], "the arme": [0, 65535], "arme shew": [0, 65535], "shew vs": [0, 65535], "vs the": [0, 65535], "the sleeue": [0, 65535], "sleeue we": [0, 65535], "we in": [0, 65535], "your motion": [0, 65535], "motion turne": [0, 65535], "turne and": [0, 65535], "may moue": [0, 65535], "moue vs": [0, 65535], "vs then": [0, 65535], "then gentle": [0, 65535], "gentle brother": [0, 65535], "brother get": [0, 65535], "you in": [0, 65535], "in againe": [0, 65535], "againe comfort": [0, 65535], "comfort my": [0, 65535], "sister cheere": [0, 65535], "cheere her": [0, 65535], "her call": [0, 65535], "call her": [0, 65535], "her wise": [0, 65535], "wise 'tis": [0, 65535], "'tis holy": [0, 65535], "holy sport": [0, 65535], "sport to": [0, 65535], "little vaine": [0, 65535], "vaine when": [0, 65535], "the sweet": [0, 65535], "sweet breath": [0, 65535], "breath of": [0, 65535], "of flatterie": [0, 65535], "flatterie conquers": [0, 65535], "conquers strife": [0, 65535], "strife s": [0, 65535], "s anti": [0, 65535], "anti sweete": [0, 65535], "sweete mistris": [0, 65535], "mistris what": [0, 65535], "what your": [0, 65535], "is else": [0, 65535], "else i": [0, 65535], "know not": [0, 65535], "not nor": [0, 65535], "nor by": [0, 65535], "by what": [0, 65535], "what wonder": [0, 65535], "do hit": [0, 65535], "hit of": [0, 65535], "of mine": [0, 65535], "mine lesse": [0, 65535], "lesse in": [0, 65535], "your knowledge": [0, 65535], "knowledge and": [0, 65535], "your grace": [0, 65535], "grace you": [0, 65535], "you show": [0, 65535], "show not": [0, 65535], "not then": [0, 65535], "then our": [0, 65535], "our earths": [0, 65535], "earths wonder": [0, 65535], "wonder more": [0, 65535], "more then": [0, 65535], "then earth": [0, 65535], "earth diuine": [0, 65535], "diuine teach": [0, 65535], "teach me": [0, 65535], "me deere": [0, 65535], "deere creature": [0, 65535], "creature how": [0, 65535], "to thinke": [0, 65535], "thinke and": [0, 65535], "and speake": [0, 65535], "speake lay": [0, 65535], "lay open": [0, 65535], "open to": [0, 65535], "my earthie": [0, 65535], "earthie grosse": [0, 65535], "grosse conceit": [0, 65535], "conceit smothred": [0, 65535], "smothred in": [0, 65535], "in errors": [0, 65535], "errors feeble": [0, 65535], "feeble shallow": [0, 65535], "shallow weake": [0, 65535], "weake the": [0, 65535], "the foulded": [0, 65535], "foulded meaning": [0, 65535], "meaning of": [0, 65535], "your words": [0, 65535], "words deceit": [0, 65535], "deceit against": [0, 65535], "against my": [0, 65535], "my soules": [0, 65535], "soules pure": [0, 65535], "pure truth": [0, 65535], "truth why": [0, 65535], "why labour": [0, 65535], "labour you": [0, 65535], "it wander": [0, 65535], "wander in": [0, 65535], "an vnknowne": [0, 65535], "vnknowne field": [0, 65535], "field are": [0, 65535], "a god": [0, 65535], "god would": [0, 65535], "would you": [0, 65535], "you create": [0, 65535], "create me": [0, 65535], "me new": [0, 65535], "new transforme": [0, 65535], "transforme me": [0, 65535], "me then": [0, 65535], "and to": [0, 65535], "to your": [0, 65535], "your powre": [0, 65535], "powre ile": [0, 65535], "ile yeeld": [0, 65535], "yeeld but": [0, 65535], "if that": [0, 65535], "am i": [0, 65535], "i then": [0, 65535], "then well": [0, 65535], "know your": [0, 65535], "your weeping": [0, 65535], "weeping sister": [0, 65535], "sister is": [0, 65535], "no wife": [0, 65535], "wife of": [0, 65535], "mine nor": [0, 65535], "her bed": [0, 65535], "bed no": [0, 65535], "no homage": [0, 65535], "homage doe": [0, 65535], "doe i": [0, 65535], "owe farre": [0, 65535], "farre more": [0, 65535], "more farre": [0, 65535], "you doe": [0, 65535], "i decline": [0, 65535], "decline oh": [0, 65535], "oh traine": [0, 65535], "traine me": [0, 65535], "me not": [0, 65535], "not sweet": [0, 65535], "sweet mermaide": [0, 65535], "mermaide with": [0, 65535], "with thy": [0, 65535], "thy note": [0, 65535], "note to": [0, 65535], "to drowne": [0, 65535], "drowne me": [0, 65535], "thy sister": [0, 65535], "sister floud": [0, 65535], "floud of": [0, 65535], "of teares": [0, 65535], "teares sing": [0, 65535], "sing siren": [0, 65535], "siren for": [0, 65535], "for thy": [0, 65535], "thy selfe": [0, 65535], "selfe and": [0, 65535], "will dote": [0, 65535], "dote spread": [0, 65535], "spread ore": [0, 65535], "ore the": [0, 65535], "the siluer": [0, 65535], "siluer waues": [0, 65535], "waues thy": [0, 65535], "thy golden": [0, 65535], "golden haires": [0, 65535], "haires and": [0, 65535], "a bud": [0, 65535], "bud ile": [0, 65535], "ile take": [0, 65535], "take thee": [0, 65535], "thee and": [0, 65535], "there lie": [0, 65535], "lie and": [0, 65535], "that glorious": [0, 65535], "glorious supposition": [0, 65535], "supposition thinke": [0, 65535], "thinke he": [0, 65535], "he gaines": [0, 65535], "gaines by": [0, 65535], "by death": [0, 65535], "death that": [0, 65535], "that hath": [0, 65535], "hath such": [0, 65535], "such meanes": [0, 65535], "meanes to": [0, 65535], "die let": [0, 65535], "let loue": [0, 65535], "loue being": [0, 65535], "being light": [0, 65535], "light be": [0, 65535], "drowned if": [0, 65535], "she sinke": [0, 65535], "sinke luc": [0, 65535], "luc what": [0, 65535], "what are": [0, 65535], "you mad": [0, 65535], "mad that": [0, 65535], "doe reason": [0, 65535], "reason so": [0, 65535], "so ant": [0, 65535], "ant not": [0, 65535], "not mad": [0, 65535], "mad but": [0, 65535], "but mated": [0, 65535], "mated how": [0, 65535], "how i": [0, 65535], "i doe": [0, 65535], "doe not": [0, 65535], "know luc": [0, 65535], "luc it": [0, 65535], "a fault": [0, 65535], "fault that": [0, 65535], "that springeth": [0, 65535], "springeth from": [0, 65535], "from your": [0, 65535], "your eie": [0, 65535], "eie ant": [0, 65535], "ant for": [0, 65535], "for gazing": [0, 65535], "gazing on": [0, 65535], "your beames": [0, 65535], "beames faire": [0, 65535], "faire sun": [0, 65535], "sun being": [0, 65535], "being by": [0, 65535], "by luc": [0, 65535], "luc gaze": [0, 65535], "gaze when": [0, 65535], "you should": [0, 65535], "should and": [0, 65535], "that will": [0, 65535], "will cleere": [0, 65535], "cleere your": [0, 65535], "your sight": [0, 65535], "sight ant": [0, 65535], "ant as": [0, 65535], "as good": [0, 65535], "good to": [0, 65535], "to winke": [0, 65535], "winke sweet": [0, 65535], "sweet loue": [0, 65535], "loue as": [0, 65535], "as looke": [0, 65535], "looke on": [0, 65535], "on night": [0, 65535], "night luc": [0, 65535], "luc why": [0, 65535], "why call": [0, 65535], "call you": [0, 65535], "you me": [0, 65535], "me loue": [0, 65535], "loue call": [0, 65535], "call my": [0, 65535], "sister so": [0, 65535], "ant thy": [0, 65535], "thy sisters": [0, 65535], "sisters sister": [0, 65535], "sister luc": [0, 65535], "luc that's": [0, 65535], "that's my": [0, 65535], "sister ant": [0, 65535], "ant no": [0, 65535], "is thy": [0, 65535], "selfe mine": [0, 65535], "owne selfes": [0, 65535], "selfes better": [0, 65535], "better part": [0, 65535], "part mine": [0, 65535], "mine eies": [0, 65535], "eies cleere": [0, 65535], "cleere eie": [0, 65535], "eie my": [0, 65535], "my deere": [0, 65535], "deere hearts": [0, 65535], "hearts deerer": [0, 65535], "deerer heart": [0, 65535], "heart my": [0, 65535], "my foode": [0, 65535], "foode my": [0, 65535], "my fortune": [0, 65535], "fortune and": [0, 65535], "my sweet": [0, 65535], "sweet hopes": [0, 65535], "hopes aime": [0, 65535], "aime my": [0, 65535], "my sole": [0, 65535], "sole earths": [0, 65535], "earths heauen": [0, 65535], "heauen and": [0, 65535], "my heauens": [0, 65535], "heauens claime": [0, 65535], "claime luc": [0, 65535], "luc all": [0, 65535], "this my": [0, 65535], "is or": [0, 65535], "or else": [0, 65535], "else should": [0, 65535], "should be": [0, 65535], "be ant": [0, 65535], "ant call": [0, 65535], "call thy": [0, 65535], "selfe sister": [0, 65535], "sister sweet": [0, 65535], "sweet for": [0, 65535], "for i": [0, 65535], "am thee": [0, 65535], "thee thee": [0, 65535], "thee will": [0, 65535], "i loue": [0, 65535], "loue and": [0, 65535], "with thee": [0, 65535], "thee lead": [0, 65535], "lead my": [0, 65535], "my life": [0, 65535], "life thou": [0, 65535], "hast no": [0, 65535], "no husband": [0, 65535], "husband yet": [0, 65535], "yet nor": [0, 65535], "nor i": [0, 65535], "i no": [0, 65535], "wife giue": [0, 65535], "giue me": [0, 65535], "me thy": [0, 65535], "thy hand": [0, 65535], "hand luc": [0, 65535], "luc oh": [0, 65535], "oh soft": [0, 65535], "soft sir": [0, 65535], "sir hold": [0, 65535], "hold you": [0, 65535], "you still": [0, 65535], "still ile": [0, 65535], "ile fetch": [0, 65535], "fetch my": [0, 65535], "sister to": [0, 65535], "get her": [0, 65535], "her good": [0, 65535], "will exit": [0, 65535], "exit enter": [0, 65535], "enter dromio": [0, 65535], "dromio siracusia": [0, 65535], "siracusia ant": [0, 65535], "ant why": [0, 65535], "how now": [0, 65535], "now dromio": [0, 65535], "dromio where": [0, 65535], "where run'st": [0, 65535], "run'st thou": [0, 65535], "thou so": [0, 65535], "so fast": [0, 65535], "fast s": [0, 65535], "dro doe": [0, 65535], "know me": [0, 65535], "me sir": [0, 65535], "sir am": [0, 65535], "i dromio": [0, 65535], "dromio am": [0, 65535], "i your": [0, 65535], "your man": [0, 65535], "man am": [0, 65535], "i my": [0, 65535], "my selfe": [0, 65535], "selfe ant": [0, 65535], "ant thou": [0, 65535], "art dromio": [0, 65535], "dromio thou": [0, 65535], "art my": [0, 65535], "my man": [0, 65535], "man thou": [0, 65535], "art thy": [0, 65535], "selfe dro": [0, 65535], "am an": [0, 65535], "asse i": [0, 65535], "am a": [0, 65535], "a womans": [0, 65535], "womans man": [0, 65535], "besides my": [0, 65535], "ant what": [0, 65535], "what womans": [0, 65535], "how besides": [0, 65535], "besides thy": [0, 65535], "dro marrie": [0, 65535], "marrie sir": [0, 65535], "sir besides": [0, 65535], "selfe i": [0, 65535], "am due": [0, 65535], "due to": [0, 65535], "a woman": [0, 65535], "woman one": [0, 65535], "that claimes": [0, 65535], "claimes me": [0, 65535], "me one": [0, 65535], "that haunts": [0, 65535], "haunts me": [0, 65535], "will haue": [0, 65535], "haue me": [0, 65535], "me anti": [0, 65535], "what claime": [0, 65535], "claime laies": [0, 65535], "laies she": [0, 65535], "she to": [0, 65535], "to thee": [0, 65535], "thee dro": [0, 65535], "marry sir": [0, 65535], "sir such": [0, 65535], "such claime": [0, 65535], "claime as": [0, 65535], "would lay": [0, 65535], "lay to": [0, 65535], "your horse": [0, 65535], "horse and": [0, 65535], "would haue": [0, 65535], "me as": [0, 65535], "a beast": [0, 65535], "beast not": [0, 65535], "not that": [0, 65535], "i beeing": [0, 65535], "beeing a": [0, 65535], "beast she": [0, 65535], "she being": [0, 65535], "a verie": [0, 65535], "verie beastly": [0, 65535], "beastly creature": [0, 65535], "creature layes": [0, 65535], "layes claime": [0, 65535], "claime to": [0, 65535], "she dro": [0, 65535], "very reuerent": [0, 65535], "reuerent body": [0, 65535], "body i": [0, 65535], "i such": [0, 65535], "one as": [0, 65535], "may not": [0, 65535], "not speake": [0, 65535], "speake of": [0, 65535], "of without": [0, 65535], "without he": [0, 65535], "sir reuerence": [0, 65535], "reuerence i": [0, 65535], "but leane": [0, 65535], "leane lucke": [0, 65535], "lucke in": [0, 65535], "the match": [0, 65535], "match and": [0, 65535], "yet is": [0, 65535], "she a": [0, 65535], "a wondrous": [0, 65535], "wondrous fat": [0, 65535], "fat marriage": [0, 65535], "marriage anti": [0, 65535], "anti how": [0, 65535], "how dost": [0, 65535], "meane a": [0, 65535], "a fat": [0, 65535], "marriage dro": [0, 65535], "sir she's": [0, 65535], "she's the": [0, 65535], "the kitchin": [0, 65535], "kitchin wench": [0, 65535], "wench al": [0, 65535], "al grease": [0, 65535], "grease and": [0, 65535], "not what": [0, 65535], "what vse": [0, 65535], "vse to": [0, 65535], "her too": [0, 65535], "too but": [0, 65535], "a lampe": [0, 65535], "lampe of": [0, 65535], "and run": [0, 65535], "run from": [0, 65535], "from her": [0, 65535], "her by": [0, 65535], "by her": [0, 65535], "her owne": [0, 65535], "owne light": [0, 65535], "light i": [0, 65535], "i warrant": [0, 65535], "warrant her": [0, 65535], "her ragges": [0, 65535], "ragges and": [0, 65535], "the tallow": [0, 65535], "tallow in": [0, 65535], "in them": [0, 65535], "them will": [0, 65535], "will burne": [0, 65535], "burne a": [0, 65535], "a poland": [0, 65535], "poland winter": [0, 65535], "winter if": [0, 65535], "she liues": [0, 65535], "liues till": [0, 65535], "till doomesday": [0, 65535], "doomesday she'l": [0, 65535], "she'l burne": [0, 65535], "a weeke": [0, 65535], "weeke longer": [0, 65535], "longer then": [0, 65535], "whole world": [0, 65535], "world anti": [0, 65535], "what complexion": [0, 65535], "complexion is": [0, 65535], "she of": [0, 65535], "of dro": [0, 65535], "dro swart": [0, 65535], "swart like": [0, 65535], "like my": [0, 65535], "my shoo": [0, 65535], "shoo but": [0, 65535], "face nothing": [0, 65535], "nothing like": [0, 65535], "like so": [0, 65535], "so cleane": [0, 65535], "cleane kept": [0, 65535], "kept for": [0, 65535], "why she": [0, 65535], "she sweats": [0, 65535], "sweats a": [0, 65535], "may goe": [0, 65535], "goe o": [0, 65535], "o uer": [0, 65535], "uer shooes": [0, 65535], "shooes in": [0, 65535], "the grime": [0, 65535], "grime of": [0, 65535], "it anti": [0, 65535], "anti that's": [0, 65535], "that water": [0, 65535], "water will": [0, 65535], "will mend": [0, 65535], "mend dro": [0, 65535], "dro no": [0, 65535], "sir 'tis": [0, 65535], "'tis in": [0, 65535], "in graine": [0, 65535], "graine noahs": [0, 65535], "noahs flood": [0, 65535], "flood could": [0, 65535], "not do": [0, 65535], "anti what's": [0, 65535], "what's her": [0, 65535], "her name": [0, 65535], "name dro": [0, 65535], "dro nell": [0, 65535], "nell sir": [0, 65535], "is three": [0, 65535], "three quarters": [0, 65535], "quarters that's": [0, 65535], "that's an": [0, 65535], "an ell": [0, 65535], "ell and": [0, 65535], "and three": [0, 65535], "quarters will": [0, 65535], "will not": [0, 65535], "not measure": [0, 65535], "measure her": [0, 65535], "her from": [0, 65535], "from hip": [0, 65535], "hip to": [0, 65535], "to hip": [0, 65535], "hip anti": [0, 65535], "anti then": [0, 65535], "she beares": [0, 65535], "beares some": [0, 65535], "some bredth": [0, 65535], "bredth dro": [0, 65535], "no longer": [0, 65535], "longer from": [0, 65535], "from head": [0, 65535], "head to": [0, 65535], "to foot": [0, 65535], "foot then": [0, 65535], "then from": [0, 65535], "from hippe": [0, 65535], "hippe to": [0, 65535], "to hippe": [0, 65535], "hippe she": [0, 65535], "is sphericall": [0, 65535], "sphericall like": [0, 65535], "a globe": [0, 65535], "globe i": [0, 65535], "find out": [0, 65535], "out countries": [0, 65535], "countries in": [0, 65535], "her anti": [0, 65535], "anti in": [0, 65535], "in what": [0, 65535], "what part": [0, 65535], "her body": [0, 65535], "body stands": [0, 65535], "stands ireland": [0, 65535], "ireland dro": [0, 65535], "sir in": [0, 65535], "her buttockes": [0, 65535], "buttockes i": [0, 65535], "i found": [0, 65535], "found it": [0, 65535], "out by": [0, 65535], "the bogges": [0, 65535], "bogges ant": [0, 65535], "ant where": [0, 65535], "where scotland": [0, 65535], "scotland dro": [0, 65535], "the barrennesse": [0, 65535], "barrennesse hard": [0, 65535], "hard in": [0, 65535], "the palme": [0, 65535], "palme of": [0, 65535], "hand ant": [0, 65535], "where france": [0, 65535], "france dro": [0, 65535], "dro in": [0, 65535], "her forhead": [0, 65535], "forhead arm'd": [0, 65535], "arm'd and": [0, 65535], "and reuerted": [0, 65535], "reuerted making": [0, 65535], "making warre": [0, 65535], "against her": [0, 65535], "her heire": [0, 65535], "heire ant": [0, 65535], "where england": [0, 65535], "england dro": [0, 65535], "i look'd": [0, 65535], "look'd for": [0, 65535], "the chalkle": [0, 65535], "chalkle cliffes": [0, 65535], "cliffes but": [0, 65535], "no whitenesse": [0, 65535], "whitenesse in": [0, 65535], "i guesse": [0, 65535], "guesse it": [0, 65535], "it stood": [0, 65535], "her chin": [0, 65535], "chin by": [0, 65535], "the salt": [0, 65535], "salt rheume": [0, 65535], "rheume that": [0, 65535], "that ranne": [0, 65535], "ranne betweene": [0, 65535], "betweene france": [0, 65535], "france and": [0, 65535], "it ant": [0, 65535], "where spaine": [0, 65535], "spaine dro": [0, 65535], "dro faith": [0, 65535], "faith i": [0, 65535], "i saw": [0, 65535], "saw it": [0, 65535], "not but": [0, 65535], "i felt": [0, 65535], "felt it": [0, 65535], "it hot": [0, 65535], "hot in": [0, 65535], "her breth": [0, 65535], "breth ant": [0, 65535], "where america": [0, 65535], "america the": [0, 65535], "the indies": [0, 65535], "indies dro": [0, 65535], "dro oh": [0, 65535], "oh sir": [0, 65535], "sir vpon": [0, 65535], "vpon her": [0, 65535], "her nose": [0, 65535], "nose all": [0, 65535], "all ore": [0, 65535], "ore embellished": [0, 65535], "embellished with": [0, 65535], "with rubies": [0, 65535], "rubies carbuncles": [0, 65535], "carbuncles saphires": [0, 65535], "saphires declining": [0, 65535], "declining their": [0, 65535], "their rich": [0, 65535], "rich aspect": [0, 65535], "aspect to": [0, 65535], "the hot": [0, 65535], "hot breath": [0, 65535], "of spaine": [0, 65535], "spaine who": [0, 65535], "who sent": [0, 65535], "sent whole": [0, 65535], "whole armadoes": [0, 65535], "armadoes of": [0, 65535], "of carrects": [0, 65535], "carrects to": [0, 65535], "be ballast": [0, 65535], "ballast at": [0, 65535], "nose anti": [0, 65535], "anti where": [0, 65535], "where stood": [0, 65535], "stood belgia": [0, 65535], "belgia the": [0, 65535], "the netherlands": [0, 65535], "netherlands dro": [0, 65535], "sir i": [0, 65535], "not looke": [0, 65535], "looke so": [0, 65535], "so low": [0, 65535], "low to": [0, 65535], "to conclude": [0, 65535], "conclude this": [0, 65535], "this drudge": [0, 65535], "drudge or": [0, 65535], "or diuiner": [0, 65535], "diuiner layd": [0, 65535], "layd claime": [0, 65535], "to mee": [0, 65535], "mee call'd": [0, 65535], "call'd mee": [0, 65535], "mee dromio": [0, 65535], "dromio swore": [0, 65535], "swore i": [0, 65535], "i was": [0, 65535], "was assur'd": [0, 65535], "assur'd to": [0, 65535], "her told": [0, 65535], "what priuie": [0, 65535], "priuie markes": [0, 65535], "markes i": [0, 65535], "i had": [0, 65535], "had about": [0, 65535], "about mee": [0, 65535], "mee as": [0, 65535], "the marke": [0, 65535], "marke of": [0, 65535], "my shoulder": [0, 65535], "shoulder the": [0, 65535], "the mole": [0, 65535], "mole in": [0, 65535], "my necke": [0, 65535], "necke the": [0, 65535], "great wart": [0, 65535], "on my": [0, 65535], "my left": [0, 65535], "left arme": [0, 65535], "arme that": [0, 65535], "i amaz'd": [0, 65535], "amaz'd ranne": [0, 65535], "ranne from": [0, 65535], "her as": [0, 65535], "witch and": [0, 65535], "thinke if": [0, 65535], "if my": [0, 65535], "my brest": [0, 65535], "brest had": [0, 65535], "had not": [0, 65535], "not beene": [0, 65535], "beene made": [0, 65535], "of faith": [0, 65535], "faith and": [0, 65535], "my heart": [0, 65535], "heart of": [0, 65535], "of steele": [0, 65535], "steele she": [0, 65535], "had transform'd": [0, 65535], "transform'd me": [0, 65535], "a curtull": [0, 65535], "curtull dog": [0, 65535], "dog made": [0, 65535], "made me": [0, 65535], "me turne": [0, 65535], "turne i'th": [0, 65535], "i'th wheele": [0, 65535], "wheele anti": [0, 65535], "anti go": [0, 65535], "go hie": [0, 65535], "hie thee": [0, 65535], "thee presently": [0, 65535], "presently post": [0, 65535], "post to": [0, 65535], "the rode": [0, 65535], "rode and": [0, 65535], "winde blow": [0, 65535], "blow any": [0, 65535], "any way": [0, 65535], "way from": [0, 65535], "from shore": [0, 65535], "shore i": [0, 65535], "not harbour": [0, 65535], "harbour in": [0, 65535], "this towne": [0, 65535], "towne to": [0, 65535], "night if": [0, 65535], "if any": [0, 65535], "any barke": [0, 65535], "barke put": [0, 65535], "put forth": [0, 65535], "forth come": [0, 65535], "mart where": [0, 65535], "will walke": [0, 65535], "walke till": [0, 65535], "till thou": [0, 65535], "thou returne": [0, 65535], "returne to": [0, 65535], "if euerie": [0, 65535], "euerie one": [0, 65535], "one knowes": [0, 65535], "knowes vs": [0, 65535], "vs and": [0, 65535], "and we": [0, 65535], "know none": [0, 65535], "none 'tis": [0, 65535], "'tis time": [0, 65535], "thinke to": [0, 65535], "to trudge": [0, 65535], "trudge packe": [0, 65535], "packe and": [0, 65535], "gone dro": [0, 65535], "dro as": [0, 65535], "a beare": [0, 65535], "man would": [0, 65535], "would run": [0, 65535], "run for": [0, 65535], "for life": [0, 65535], "so flie": [0, 65535], "flie i": [0, 65535], "i from": [0, 65535], "her that": [0, 65535], "be my": [0, 65535], "wife exit": [0, 65535], "exit anti": [0, 65535], "anti there's": [0, 65535], "there's none": [0, 65535], "none but": [0, 65535], "but witches": [0, 65535], "witches do": [0, 65535], "do inhabite": [0, 65535], "inhabite heere": [0, 65535], "heere and": [0, 65535], "and therefore": [0, 65535], "therefore 'tis": [0, 65535], "'tis hie": [0, 65535], "hie time": [0, 65535], "time that": [0, 65535], "i were": [0, 65535], "were hence": [0, 65535], "hence she": [0, 65535], "she that": [0, 65535], "that doth": [0, 65535], "doth call": [0, 65535], "me husband": [0, 65535], "husband euen": [0, 65535], "euen my": [0, 65535], "my soule": [0, 65535], "soule doth": [0, 65535], "doth for": [0, 65535], "a wife": [0, 65535], "wife abhorre": [0, 65535], "abhorre but": [0, 65535], "her faire": [0, 65535], "faire sister": [0, 65535], "sister possest": [0, 65535], "possest with": [0, 65535], "gentle soueraigne": [0, 65535], "soueraigne grace": [0, 65535], "grace of": [0, 65535], "of such": [0, 65535], "such inchanting": [0, 65535], "inchanting presence": [0, 65535], "presence and": [0, 65535], "and discourse": [0, 65535], "discourse hath": [0, 65535], "hath almost": [0, 65535], "almost made": [0, 65535], "me traitor": [0, 65535], "traitor to": [0, 65535], "selfe but": [0, 65535], "but least": [0, 65535], "least my": [0, 65535], "selfe be": [0, 65535], "be guilty": [0, 65535], "guilty to": [0, 65535], "to selfe": [0, 65535], "selfe wrong": [0, 65535], "wrong ile": [0, 65535], "ile stop": [0, 65535], "stop mine": [0, 65535], "mine eares": [0, 65535], "eares against": [0, 65535], "the mermaids": [0, 65535], "mermaids song": [0, 65535], "song enter": [0, 65535], "enter angelo": [0, 65535], "angelo with": [0, 65535], "chaine ang": [0, 65535], "ang mr": [0, 65535], "mr antipholus": [0, 65535], "antipholus anti": [0, 65535], "i that's": [0, 65535], "name ang": [0, 65535], "ang i": [0, 65535], "know it": [0, 65535], "well sir": [0, 65535], "sir loe": [0, 65535], "loe here's": [0, 65535], "here's the": [0, 65535], "chaine i": [0, 65535], "haue tane": [0, 65535], "tane you": [0, 65535], "porpentine the": [0, 65535], "chaine vnfinish'd": [0, 65535], "vnfinish'd made": [0, 65535], "me stay": [0, 65535], "stay thus": [0, 65535], "thus long": [0, 65535], "long anti": [0, 65535], "is your": [0, 65535], "your will": [0, 65535], "will that": [0, 65535], "i shal": [0, 65535], "shal do": [0, 65535], "do with": [0, 65535], "with this": [0, 65535], "this ang": [0, 65535], "ang what": [0, 65535], "what please": [0, 65535], "please your": [0, 65535], "selfe sir": [0, 65535], "haue made": [0, 65535], "made it": [0, 65535], "for you": [0, 65535], "you anti": [0, 65535], "anti made": [0, 65535], "i bespoke": [0, 65535], "bespoke it": [0, 65535], "not ang": [0, 65535], "ang not": [0, 65535], "not once": [0, 65535], "once nor": [0, 65535], "nor twice": [0, 65535], "twice but": [0, 65535], "but twentie": [0, 65535], "twentie times": [0, 65535], "times you": [0, 65535], "haue go": [0, 65535], "home with": [0, 65535], "and please": [0, 65535], "wife withall": [0, 65535], "withall and": [0, 65535], "and soone": [0, 65535], "soone at": [0, 65535], "at supper": [0, 65535], "supper time": [0, 65535], "time ile": [0, 65535], "ile visit": [0, 65535], "visit you": [0, 65535], "then receiue": [0, 65535], "receiue my": [0, 65535], "my money": [0, 65535], "chaine anti": [0, 65535], "you sir": [0, 65535], "sir receiue": [0, 65535], "receiue the": [0, 65535], "the money": [0, 65535], "money now": [0, 65535], "now for": [0, 65535], "for feare": [0, 65535], "feare you": [0, 65535], "you ne're": [0, 65535], "ne're see": [0, 65535], "see chaine": [0, 65535], "chaine nor": [0, 65535], "nor mony": [0, 65535], "mony more": [0, 65535], "more ang": [0, 65535], "ang you": [0, 65535], "are a": [0, 65535], "a merry": [0, 65535], "merry man": [0, 65535], "man sir": [0, 65535], "sir fare": [0, 65535], "fare you": [0, 65535], "you well": [0, 65535], "well exit": [0, 65535], "exit ant": [0, 65535], "should thinke": [0, 65535], "thinke of": [0, 65535], "i cannot": [0, 65535], "cannot tell": [0, 65535], "tell but": [0, 65535], "but this": [0, 65535], "thinke there's": [0, 65535], "no man": [0, 65535], "man is": [0, 65535], "is so": [0, 65535], "so vaine": [0, 65535], "vaine that": [0, 65535], "would refuse": [0, 65535], "refuse so": [0, 65535], "so faire": [0, 65535], "faire an": [0, 65535], "an offer'd": [0, 65535], "offer'd chaine": [0, 65535], "man heere": [0, 65535], "heere needs": [0, 65535], "needs not": [0, 65535], "not liue": [0, 65535], "liue by": [0, 65535], "by shifts": [0, 65535], "shifts when": [0, 65535], "when in": [0, 65535], "the streets": [0, 65535], "streets he": [0, 65535], "he meetes": [0, 65535], "meetes such": [0, 65535], "such golden": [0, 65535], "golden gifts": [0, 65535], "gifts ile": [0, 65535], "ile to": [0, 65535], "there for": [0, 65535], "for dromio": [0, 65535], "dromio stay": [0, 65535], "any ship": [0, 65535], "ship put": [0, 65535], "put out": [0, 65535], "out then": [0, 65535], "then straight": [0, 65535], "straight away": [0, 65535], "away exit": [0, 65535], "actus tertius scena": [0, 65535], "tertius scena prima": [0, 65535], "scena prima enter": [0, 65535], "prima enter antipholus": [0, 65535], "enter antipholus of": [0, 65535], "antipholus of ephesus": [0, 65535], "of ephesus his": [0, 65535], "ephesus his man": [0, 65535], "his man dromio": [0, 65535], "man dromio angelo": [0, 65535], "dromio angelo the": [0, 65535], "angelo the goldsmith": [0, 65535], "the goldsmith and": [0, 65535], "goldsmith and balthaser": [0, 65535], "and balthaser the": [0, 65535], "balthaser the merchant": [0, 65535], "the merchant e": [0, 65535], "merchant e anti": [0, 65535], "e anti good": [0, 65535], "anti good signior": [0, 65535], "good signior angelo": [0, 65535], "signior angelo you": [0, 65535], "angelo you must": [0, 65535], "you must excuse": [0, 65535], "must excuse vs": [0, 65535], "excuse vs all": [0, 65535], "vs all my": [0, 65535], "all my wife": [0, 65535], "my wife is": [0, 65535], "wife is shrewish": [0, 65535], "is shrewish when": [0, 65535], "shrewish when i": [0, 65535], "when i keepe": [0, 65535], "i keepe not": [0, 65535], "keepe not howres": [0, 65535], "not howres say": [0, 65535], "howres say that": [0, 65535], "say that i": [0, 65535], "that i lingerd": [0, 65535], "i lingerd with": [0, 65535], "lingerd with you": [0, 65535], "with you at": [0, 65535], "you at your": [0, 65535], "at your shop": [0, 65535], "your shop to": [0, 65535], "shop to see": [0, 65535], "to see the": [0, 65535], "see the making": [0, 65535], "the making of": [0, 65535], "making of her": [0, 65535], "of her carkanet": [0, 65535], "her carkanet and": [0, 65535], "carkanet and that": [0, 65535], "and that to": [0, 65535], "that to morrow": [0, 65535], "to morrow you": [0, 65535], "morrow you will": [0, 65535], "you will bring": [0, 65535], "will bring it": [0, 65535], "bring it home": [0, 65535], "it home but": [0, 65535], "home but here's": [0, 65535], "but here's a": [0, 65535], "here's a villaine": [0, 65535], "a villaine that": [0, 65535], "villaine that would": [0, 65535], "that would face": [0, 65535], "would face me": [0, 65535], "face me downe": [0, 65535], "me downe he": [0, 65535], "downe he met": [0, 65535], "he met me": [0, 65535], "met me on": [0, 65535], "me on the": [0, 65535], "on the mart": [0, 65535], "the mart and": [0, 65535], "mart and that": [0, 65535], "and that i": [0, 65535], "that i beat": [0, 65535], "i beat him": [0, 65535], "beat him and": [0, 65535], "him and charg'd": [0, 65535], "and charg'd him": [0, 65535], "charg'd him with": [0, 65535], "with a thousand": [0, 65535], "a thousand markes": [0, 65535], "thousand markes in": [0, 65535], "markes in gold": [0, 65535], "in gold and": [0, 65535], "gold and that": [0, 65535], "that i did": [0, 65535], "i did denie": [0, 65535], "did denie my": [0, 65535], "denie my wife": [0, 65535], "my wife and": [0, 65535], "wife and house": [0, 65535], "and house thou": [0, 65535], "house thou drunkard": [0, 65535], "thou drunkard thou": [0, 65535], "drunkard thou what": [0, 65535], "thou what didst": [0, 65535], "what didst thou": [0, 65535], "didst thou meane": [0, 65535], "thou meane by": [0, 65535], "meane by this": [0, 65535], "by this e": [0, 65535], "this e dro": [0, 65535], "e dro say": [0, 65535], "dro say what": [0, 65535], "say what you": [0, 65535], "what you wil": [0, 65535], "you wil sir": [0, 65535], "wil sir but": [0, 65535], "sir but i": [0, 65535], "but i know": [0, 65535], "i know what": [0, 65535], "know what i": [0, 65535], "what i know": [0, 65535], "i know that": [0, 65535], "know that you": [0, 65535], "that you beat": [0, 65535], "you beat me": [0, 65535], "beat me at": [0, 65535], "me at the": [0, 65535], "at the mart": [0, 65535], "the mart i": [0, 65535], "mart i haue": [0, 65535], "i haue your": [0, 65535], "haue your hand": [0, 65535], "your hand to": [0, 65535], "hand to show": [0, 65535], "to show if": [0, 65535], "show if the": [0, 65535], "if the skin": [0, 65535], "the skin were": [0, 65535], "skin were parchment": [0, 65535], "were parchment the": [0, 65535], "parchment the blows": [0, 65535], "the blows you": [0, 65535], "blows you gaue": [0, 65535], "you gaue were": [0, 65535], "gaue were ink": [0, 65535], "were ink your": [0, 65535], "ink your owne": [0, 65535], "your owne hand": [0, 65535], "owne hand writing": [0, 65535], "hand writing would": [0, 65535], "writing would tell": [0, 65535], "would tell you": [0, 65535], "tell you what": [0, 65535], "you what i": [0, 65535], "what i thinke": [0, 65535], "i thinke e": [0, 65535], "thinke e ant": [0, 65535], "e ant i": [0, 65535], "ant i thinke": [0, 65535], "i thinke thou": [0, 65535], "thinke thou art": [0, 65535], "thou art an": [0, 65535], "art an asse": [0, 65535], "an asse e": [0, 65535], "asse e dro": [0, 65535], "e dro marry": [0, 65535], "dro marry so": [0, 65535], "marry so it": [0, 65535], "so it doth": [0, 65535], "it doth appeare": [0, 65535], "doth appeare by": [0, 65535], "appeare by the": [0, 65535], "by the wrongs": [0, 65535], "the wrongs i": [0, 65535], "wrongs i suffer": [0, 65535], "i suffer and": [0, 65535], "suffer and the": [0, 65535], "and the blowes": [0, 65535], "the blowes i": [0, 65535], "blowes i beare": [0, 65535], "i beare i": [0, 65535], "beare i should": [0, 65535], "i should kicke": [0, 65535], "should kicke being": [0, 65535], "kicke being kickt": [0, 65535], "being kickt and": [0, 65535], "kickt and being": [0, 65535], "and being at": [0, 65535], "being at that": [0, 65535], "at that passe": [0, 65535], "that passe you": [0, 65535], "passe you would": [0, 65535], "you would keepe": [0, 65535], "would keepe from": [0, 65535], "keepe from my": [0, 65535], "from my heeles": [0, 65535], "my heeles and": [0, 65535], "heeles and beware": [0, 65535], "and beware of": [0, 65535], "beware of an": [0, 65535], "of an asse": [0, 65535], "asse e an": [0, 65535], "e an y'are": [0, 65535], "an y'are sad": [0, 65535], "y'are sad signior": [0, 65535], "sad signior balthazar": [0, 65535], "signior balthazar pray": [0, 65535], "balthazar pray god": [0, 65535], "pray god our": [0, 65535], "god our cheer": [0, 65535], "our cheer may": [0, 65535], "cheer may answer": [0, 65535], "may answer my": [0, 65535], "answer my good": [0, 65535], "my good will": [0, 65535], "good will and": [0, 65535], "will and your": [0, 65535], "and your good": [0, 65535], "your good welcom": [0, 65535], "good welcom here": [0, 65535], "welcom here bal": [0, 65535], "here bal i": [0, 65535], "bal i hold": [0, 65535], "i hold your": [0, 65535], "hold your dainties": [0, 65535], "your dainties cheap": [0, 65535], "dainties cheap sir": [0, 65535], "cheap sir your": [0, 65535], "sir your welcom": [0, 65535], "your welcom deer": [0, 65535], "welcom deer e": [0, 65535], "deer e an": [0, 65535], "e an oh": [0, 65535], "an oh signior": [0, 65535], "oh signior balthazar": [0, 65535], "signior balthazar either": [0, 65535], "balthazar either at": [0, 65535], "either at flesh": [0, 65535], "at flesh or": [0, 65535], "flesh or fish": [0, 65535], "or fish a": [0, 65535], "fish a table": [0, 65535], "a table full": [0, 65535], "table full of": [0, 65535], "full of welcome": [0, 65535], "of welcome makes": [0, 65535], "welcome makes scarce": [0, 65535], "makes scarce one": [0, 65535], "scarce one dainty": [0, 65535], "one dainty dish": [0, 65535], "dainty dish bal": [0, 65535], "dish bal good": [0, 65535], "bal good meat": [0, 65535], "good meat sir": [0, 65535], "meat sir is": [0, 65535], "sir is co": [0, 65535], "is co m": [0, 65535], "co m mon": [0, 65535], "m mon that": [0, 65535], "mon that euery": [0, 65535], "that euery churle": [0, 65535], "euery churle affords": [0, 65535], "churle affords anti": [0, 65535], "affords anti and": [0, 65535], "anti and welcome": [0, 65535], "and welcome more": [0, 65535], "welcome more common": [0, 65535], "more common for": [0, 65535], "common for thats": [0, 65535], "for thats nothing": [0, 65535], "thats nothing but": [0, 65535], "nothing but words": [0, 65535], "but words bal": [0, 65535], "words bal small": [0, 65535], "bal small cheere": [0, 65535], "small cheere and": [0, 65535], "cheere and great": [0, 65535], "and great welcome": [0, 65535], "great welcome makes": [0, 65535], "welcome makes a": [0, 65535], "makes a merrie": [0, 65535], "a merrie feast": [0, 65535], "merrie feast anti": [0, 65535], "feast anti i": [0, 65535], "anti i to": [0, 65535], "i to a": [0, 65535], "to a niggardly": [0, 65535], "a niggardly host": [0, 65535], "niggardly host and": [0, 65535], "host and more": [0, 65535], "and more sparing": [0, 65535], "more sparing guest": [0, 65535], "sparing guest but": [0, 65535], "guest but though": [0, 65535], "but though my": [0, 65535], "though my cates": [0, 65535], "my cates be": [0, 65535], "cates be meane": [0, 65535], "be meane take": [0, 65535], "meane take them": [0, 65535], "take them in": [0, 65535], "them in good": [0, 65535], "in good part": [0, 65535], "good part better": [0, 65535], "part better cheere": [0, 65535], "better cheere may": [0, 65535], "cheere may you": [0, 65535], "may you haue": [0, 65535], "you haue but": [0, 65535], "haue but not": [0, 65535], "but not with": [0, 65535], "not with better": [0, 65535], "with better hart": [0, 65535], "better hart but": [0, 65535], "hart but soft": [0, 65535], "but soft my": [0, 65535], "soft my doore": [0, 65535], "my doore is": [0, 65535], "doore is lockt": [0, 65535], "is lockt goe": [0, 65535], "lockt goe bid": [0, 65535], "goe bid them": [0, 65535], "bid them let": [0, 65535], "them let vs": [0, 65535], "let vs in": [0, 65535], "vs in e": [0, 65535], "in e dro": [0, 65535], "e dro maud": [0, 65535], "dro maud briget": [0, 65535], "maud briget marian": [0, 65535], "briget marian cisley": [0, 65535], "marian cisley gillian": [0, 65535], "cisley gillian ginn": [0, 65535], "gillian ginn s": [0, 65535], "ginn s dro": [0, 65535], "s dro mome": [0, 65535], "dro mome malthorse": [0, 65535], "mome malthorse capon": [0, 65535], "malthorse capon coxcombe": [0, 65535], "capon coxcombe idiot": [0, 65535], "coxcombe idiot patch": [0, 65535], "idiot patch either": [0, 65535], "patch either get": [0, 65535], "either get thee": [0, 65535], "get thee from": [0, 65535], "thee from the": [0, 65535], "from the dore": [0, 65535], "the dore or": [0, 65535], "dore or sit": [0, 65535], "or sit downe": [0, 65535], "sit downe at": [0, 65535], "downe at the": [0, 65535], "at the hatch": [0, 65535], "the hatch dost": [0, 65535], "hatch dost thou": [0, 65535], "dost thou coniure": [0, 65535], "thou coniure for": [0, 65535], "coniure for wenches": [0, 65535], "for wenches that": [0, 65535], "wenches that thou": [0, 65535], "that thou calst": [0, 65535], "thou calst for": [0, 65535], "calst for such": [0, 65535], "for such store": [0, 65535], "such store when": [0, 65535], "store when one": [0, 65535], "when one is": [0, 65535], "one is one": [0, 65535], "is one too": [0, 65535], "one too many": [0, 65535], "too many goe": [0, 65535], "many goe get": [0, 65535], "goe get thee": [0, 65535], "the dore e": [0, 65535], "dore e dro": [0, 65535], "e dro what": [0, 65535], "dro what patch": [0, 65535], "what patch is": [0, 65535], "patch is made": [0, 65535], "is made our": [0, 65535], "made our porter": [0, 65535], "our porter my": [0, 65535], "porter my master": [0, 65535], "my master stayes": [0, 65535], "master stayes in": [0, 65535], "stayes in the": [0, 65535], "in the street": [0, 65535], "the street s": [0, 65535], "street s dro": [0, 65535], "s dro let": [0, 65535], "dro let him": [0, 65535], "let him walke": [0, 65535], "him walke from": [0, 65535], "walke from whence": [0, 65535], "from whence he": [0, 65535], "whence he came": [0, 65535], "he came lest": [0, 65535], "came lest hee": [0, 65535], "lest hee catch": [0, 65535], "hee catch cold": [0, 65535], "catch cold on's": [0, 65535], "cold on's feet": [0, 65535], "on's feet e": [0, 65535], "feet e ant": [0, 65535], "e ant who": [0, 65535], "ant who talks": [0, 65535], "who talks within": [0, 65535], "talks within there": [0, 65535], "within there hoa": [0, 65535], "there hoa open": [0, 65535], "hoa open the": [0, 65535], "open the dore": [0, 65535], "the dore s": [0, 65535], "dore s dro": [0, 65535], "s dro right": [0, 65535], "dro right sir": [0, 65535], "right sir ile": [0, 65535], "sir ile tell": [0, 65535], "ile tell you": [0, 65535], "tell you when": [0, 65535], "you when and": [0, 65535], "when and you'll": [0, 65535], "tell me wherefore": [0, 65535], "me wherefore ant": [0, 65535], "wherefore ant wherefore": [0, 65535], "ant wherefore for": [0, 65535], "wherefore for my": [0, 65535], "for my dinner": [0, 65535], "my dinner i": [0, 65535], "dinner i haue": [0, 65535], "i haue not": [0, 65535], "haue not din'd": [0, 65535], "not din'd to": [0, 65535], "din'd to day": [0, 65535], "to day s": [0, 65535], "day s dro": [0, 65535], "s dro nor": [0, 65535], "dro nor to": [0, 65535], "nor to day": [0, 65535], "to day here": [0, 65535], "day here you": [0, 65535], "here you must": [0, 65535], "you must not": [0, 65535], "must not come": [0, 65535], "not come againe": [0, 65535], "come againe when": [0, 65535], "againe when you": [0, 65535], "when you may": [0, 65535], "you may anti": [0, 65535], "may anti what": [0, 65535], "anti what art": [0, 65535], "what art thou": [0, 65535], "art thou that": [0, 65535], "thou that keep'st": [0, 65535], "that keep'st mee": [0, 65535], "keep'st mee out": [0, 65535], "mee out from": [0, 65535], "out from the": [0, 65535], "from the howse": [0, 65535], "the howse i": [0, 65535], "howse i owe": [0, 65535], "i owe s": [0, 65535], "owe s dro": [0, 65535], "s dro the": [0, 65535], "dro the porter": [0, 65535], "the porter for": [0, 65535], "porter for this": [0, 65535], "for this time": [0, 65535], "this time sir": [0, 65535], "time sir and": [0, 65535], "sir and my": [0, 65535], "and my name": [0, 65535], "my name is": [0, 65535], "name is dromio": [0, 65535], "is dromio e": [0, 65535], "dromio e dro": [0, 65535], "e dro o": [0, 65535], "dro o villaine": [0, 65535], "o villaine thou": [0, 65535], "villaine thou hast": [0, 65535], "thou hast stolne": [0, 65535], "hast stolne both": [0, 65535], "stolne both mine": [0, 65535], "both mine office": [0, 65535], "mine office and": [0, 65535], "office and my": [0, 65535], "my name the": [0, 65535], "name the one": [0, 65535], "the one nere": [0, 65535], "one nere got": [0, 65535], "nere got me": [0, 65535], "got me credit": [0, 65535], "me credit the": [0, 65535], "credit the other": [0, 65535], "the other mickle": [0, 65535], "other mickle blame": [0, 65535], "mickle blame if": [0, 65535], "blame if thou": [0, 65535], "if thou hadst": [0, 65535], "thou hadst beene": [0, 65535], "hadst beene dromio": [0, 65535], "beene dromio to": [0, 65535], "dromio to day": [0, 65535], "to day in": [0, 65535], "day in my": [0, 65535], "in my place": [0, 65535], "my place thou": [0, 65535], "place thou wouldst": [0, 65535], "thou wouldst haue": [0, 65535], "wouldst haue chang'd": [0, 65535], "haue chang'd thy": [0, 65535], "chang'd thy face": [0, 65535], "thy face for": [0, 65535], "face for a": [0, 65535], "for a name": [0, 65535], "a name or": [0, 65535], "name or thy": [0, 65535], "or thy name": [0, 65535], "thy name for": [0, 65535], "name for an": [0, 65535], "for an asse": [0, 65535], "an asse enter": [0, 65535], "asse enter luce": [0, 65535], "enter luce luce": [0, 65535], "luce luce what": [0, 65535], "luce what a": [0, 65535], "what a coile": [0, 65535], "a coile is": [0, 65535], "coile is there": [0, 65535], "is there dromio": [0, 65535], "there dromio who": [0, 65535], "dromio who are": [0, 65535], "who are those": [0, 65535], "are those at": [0, 65535], "those at the": [0, 65535], "the gate e": [0, 65535], "gate e dro": [0, 65535], "e dro let": [0, 65535], "dro let my": [0, 65535], "let my master": [0, 65535], "my master in": [0, 65535], "master in luce": [0, 65535], "in luce luce": [0, 65535], "luce luce faith": [0, 65535], "luce faith no": [0, 65535], "faith no hee": [0, 65535], "no hee comes": [0, 65535], "hee comes too": [0, 65535], "comes too late": [0, 65535], "too late and": [0, 65535], "late and so": [0, 65535], "and so tell": [0, 65535], "so tell your": [0, 65535], "tell your master": [0, 65535], "your master e": [0, 65535], "master e dro": [0, 65535], "dro o lord": [0, 65535], "o lord i": [0, 65535], "lord i must": [0, 65535], "i must laugh": [0, 65535], "must laugh haue": [0, 65535], "laugh haue at": [0, 65535], "haue at you": [0, 65535], "at you with": [0, 65535], "you with a": [0, 65535], "with a prouerbe": [0, 65535], "a prouerbe shall": [0, 65535], "prouerbe shall i": [0, 65535], "shall i set": [0, 65535], "i set in": [0, 65535], "set in my": [0, 65535], "in my staffe": [0, 65535], "my staffe luce": [0, 65535], "staffe luce haue": [0, 65535], "luce haue at": [0, 65535], "you with another": [0, 65535], "with another that's": [0, 65535], "another that's when": [0, 65535], "that's when can": [0, 65535], "when can you": [0, 65535], "can you tell": [0, 65535], "you tell s": [0, 65535], "tell s dro": [0, 65535], "s dro if": [0, 65535], "dro if thy": [0, 65535], "if thy name": [0, 65535], "thy name be": [0, 65535], "name be called": [0, 65535], "be called luce": [0, 65535], "called luce luce": [0, 65535], "luce luce thou": [0, 65535], "luce thou hast": [0, 65535], "thou hast an": [0, 65535], "hast an swer'd": [0, 65535], "an swer'd him": [0, 65535], "swer'd him well": [0, 65535], "him well anti": [0, 65535], "well anti doe": [0, 65535], "anti doe you": [0, 65535], "doe you heare": [0, 65535], "you heare you": [0, 65535], "heare you minion": [0, 65535], "you minion you'll": [0, 65535], "minion you'll let": [0, 65535], "you'll let vs": [0, 65535], "vs in i": [0, 65535], "in i hope": [0, 65535], "i hope luce": [0, 65535], "hope luce i": [0, 65535], "luce i thought": [0, 65535], "i thought to": [0, 65535], "thought to haue": [0, 65535], "to haue askt": [0, 65535], "haue askt you": [0, 65535], "askt you s": [0, 65535], "you s dro": [0, 65535], "s dro and": [0, 65535], "dro and you": [0, 65535], "and you said": [0, 65535], "you said no": [0, 65535], "said no e": [0, 65535], "no e dro": [0, 65535], "e dro so": [0, 65535], "dro so come": [0, 65535], "so come helpe": [0, 65535], "come helpe well": [0, 65535], "helpe well strooke": [0, 65535], "well strooke there": [0, 65535], "strooke there was": [0, 65535], "there was blow": [0, 65535], "was blow for": [0, 65535], "blow for blow": [0, 65535], "for blow anti": [0, 65535], "blow anti thou": [0, 65535], "anti thou baggage": [0, 65535], "thou baggage let": [0, 65535], "baggage let me": [0, 65535], "let me in": [0, 65535], "me in luce": [0, 65535], "in luce can": [0, 65535], "luce can you": [0, 65535], "you tell for": [0, 65535], "tell for whose": [0, 65535], "for whose sake": [0, 65535], "whose sake e": [0, 65535], "sake e drom": [0, 65535], "e drom master": [0, 65535], "drom master knocke": [0, 65535], "master knocke the": [0, 65535], "knocke the doore": [0, 65535], "the doore hard": [0, 65535], "doore hard luce": [0, 65535], "hard luce let": [0, 65535], "luce let him": [0, 65535], "let him knocke": [0, 65535], "him knocke till": [0, 65535], "knocke till it": [0, 65535], "till it ake": [0, 65535], "it ake anti": [0, 65535], "ake anti you'll": [0, 65535], "anti you'll crie": [0, 65535], "you'll crie for": [0, 65535], "crie for this": [0, 65535], "for this minion": [0, 65535], "this minion if": [0, 65535], "minion if i": [0, 65535], "if i beat": [0, 65535], "i beat the": [0, 65535], "beat the doore": [0, 65535], "the doore downe": [0, 65535], "doore downe luce": [0, 65535], "downe luce what": [0, 65535], "luce what needs": [0, 65535], "what needs all": [0, 65535], "needs all that": [0, 65535], "all that and": [0, 65535], "that and a": [0, 65535], "and a paire": [0, 65535], "a paire of": [0, 65535], "paire of stocks": [0, 65535], "of stocks in": [0, 65535], "stocks in the": [0, 65535], "in the towne": [0, 65535], "the towne enter": [0, 65535], "towne enter adriana": [0, 65535], "enter adriana adr": [0, 65535], "adriana adr who": [0, 65535], "adr who is": [0, 65535], "who is that": [0, 65535], "is that at": [0, 65535], "that at the": [0, 65535], "at the doore": [0, 65535], "the doore that": [0, 65535], "doore that keeps": [0, 65535], "that keeps all": [0, 65535], "keeps all this": [0, 65535], "all this noise": [0, 65535], "this noise s": [0, 65535], "noise s dro": [0, 65535], "s dro by": [0, 65535], "dro by my": [0, 65535], "by my troth": [0, 65535], "my troth your": [0, 65535], "troth your towne": [0, 65535], "your towne is": [0, 65535], "towne is troubled": [0, 65535], "is troubled with": [0, 65535], "troubled with vnruly": [0, 65535], "with vnruly boies": [0, 65535], "vnruly boies anti": [0, 65535], "boies anti are": [0, 65535], "anti are you": [0, 65535], "are you there": [0, 65535], "you there wife": [0, 65535], "there wife you": [0, 65535], "wife you might": [0, 65535], "you might haue": [0, 65535], "might haue come": [0, 65535], "haue come before": [0, 65535], "come before adri": [0, 65535], "before adri your": [0, 65535], "adri your wife": [0, 65535], "your wife sir": [0, 65535], "wife sir knaue": [0, 65535], "sir knaue go": [0, 65535], "knaue go get": [0, 65535], "go get you": [0, 65535], "get you from": [0, 65535], "you from the": [0, 65535], "e dro if": [0, 65535], "dro if you": [0, 65535], "if you went": [0, 65535], "you went in": [0, 65535], "went in paine": [0, 65535], "in paine master": [0, 65535], "paine master this": [0, 65535], "master this knaue": [0, 65535], "this knaue wold": [0, 65535], "knaue wold goe": [0, 65535], "wold goe sore": [0, 65535], "goe sore angelo": [0, 65535], "sore angelo heere": [0, 65535], "angelo heere is": [0, 65535], "heere is neither": [0, 65535], "is neither cheere": [0, 65535], "neither cheere sir": [0, 65535], "cheere sir nor": [0, 65535], "sir nor welcome": [0, 65535], "nor welcome we": [0, 65535], "welcome we would": [0, 65535], "we would faine": [0, 65535], "would faine haue": [0, 65535], "faine haue either": [0, 65535], "haue either baltz": [0, 65535], "either baltz in": [0, 65535], "baltz in debating": [0, 65535], "in debating which": [0, 65535], "debating which was": [0, 65535], "which was best": [0, 65535], "was best wee": [0, 65535], "best wee shall": [0, 65535], "wee shall part": [0, 65535], "shall part with": [0, 65535], "part with neither": [0, 65535], "with neither e": [0, 65535], "neither e dro": [0, 65535], "e dro they": [0, 65535], "dro they stand": [0, 65535], "they stand at": [0, 65535], "stand at the": [0, 65535], "the doore master": [0, 65535], "doore master bid": [0, 65535], "master bid them": [0, 65535], "bid them welcome": [0, 65535], "them welcome hither": [0, 65535], "welcome hither anti": [0, 65535], "hither anti there": [0, 65535], "anti there is": [0, 65535], "there is something": [0, 65535], "is something in": [0, 65535], "something in the": [0, 65535], "in the winde": [0, 65535], "the winde that": [0, 65535], "winde that we": [0, 65535], "that we cannot": [0, 65535], "we cannot get": [0, 65535], "cannot get in": [0, 65535], "get in e": [0, 65535], "e dro you": [0, 65535], "dro you would": [0, 65535], "you would say": [0, 65535], "would say so": [0, 65535], "say so master": [0, 65535], "so master if": [0, 65535], "master if your": [0, 65535], "if your garments": [0, 65535], "your garments were": [0, 65535], "garments were thin": [0, 65535], "were thin your": [0, 65535], "thin your cake": [0, 65535], "your cake here": [0, 65535], "cake here is": [0, 65535], "here is warme": [0, 65535], "is warme within": [0, 65535], "warme within you": [0, 65535], "within you stand": [0, 65535], "you stand here": [0, 65535], "stand here in": [0, 65535], "here in the": [0, 65535], "the cold it": [0, 65535], "cold it would": [0, 65535], "it would make": [0, 65535], "a man mad": [0, 65535], "man mad as": [0, 65535], "mad as a": [0, 65535], "as a bucke": [0, 65535], "a bucke to": [0, 65535], "bucke to be": [0, 65535], "be so bought": [0, 65535], "so bought and": [0, 65535], "bought and sold": [0, 65535], "and sold ant": [0, 65535], "sold ant go": [0, 65535], "ant go fetch": [0, 65535], "go fetch me": [0, 65535], "fetch me something": [0, 65535], "me something ile": [0, 65535], "something ile break": [0, 65535], "ile break ope": [0, 65535], "break ope the": [0, 65535], "ope the gate": [0, 65535], "the gate s": [0, 65535], "gate s dro": [0, 65535], "s dro breake": [0, 65535], "dro breake any": [0, 65535], "breake any breaking": [0, 65535], "any breaking here": [0, 65535], "breaking here and": [0, 65535], "here and ile": [0, 65535], "and ile breake": [0, 65535], "ile breake your": [0, 65535], "breake your knaues": [0, 65535], "your knaues pate": [0, 65535], "knaues pate e": [0, 65535], "pate e dro": [0, 65535], "e dro a": [0, 65535], "dro a man": [0, 65535], "a man may": [0, 65535], "man may breake": [0, 65535], "may breake a": [0, 65535], "breake a word": [0, 65535], "a word with": [0, 65535], "word with your": [0, 65535], "with your sir": [0, 65535], "your sir and": [0, 65535], "sir and words": [0, 65535], "and words are": [0, 65535], "words are but": [0, 65535], "are but winde": [0, 65535], "but winde i": [0, 65535], "winde i and": [0, 65535], "i and breake": [0, 65535], "and breake it": [0, 65535], "breake it in": [0, 65535], "it in your": [0, 65535], "in your face": [0, 65535], "your face so": [0, 65535], "face so he": [0, 65535], "so he break": [0, 65535], "he break it": [0, 65535], "break it not": [0, 65535], "it not behinde": [0, 65535], "not behinde s": [0, 65535], "behinde s dro": [0, 65535], "s dro it": [0, 65535], "dro it seemes": [0, 65535], "it seemes thou": [0, 65535], "seemes thou want'st": [0, 65535], "thou want'st breaking": [0, 65535], "want'st breaking out": [0, 65535], "breaking out vpon": [0, 65535], "out vpon thee": [0, 65535], "vpon thee hinde": [0, 65535], "thee hinde e": [0, 65535], "hinde e dro": [0, 65535], "e dro here's": [0, 65535], "dro here's too": [0, 65535], "here's too much": [0, 65535], "too much out": [0, 65535], "much out vpon": [0, 65535], "vpon thee i": [0, 65535], "thee i pray": [0, 65535], "i pray thee": [0, 65535], "pray thee let": [0, 65535], "thee let me": [0, 65535], "me in s": [0, 65535], "in s dro": [0, 65535], "s dro i": [0, 65535], "dro i when": [0, 65535], "i when fowles": [0, 65535], "when fowles haue": [0, 65535], "fowles haue no": [0, 65535], "haue no feathers": [0, 65535], "no feathers and": [0, 65535], "feathers and fish": [0, 65535], "and fish haue": [0, 65535], "fish haue no": [0, 65535], "haue no fin": [0, 65535], "no fin ant": [0, 65535], "fin ant well": [0, 65535], "ant well ile": [0, 65535], "well ile breake": [0, 65535], "ile breake in": [0, 65535], "breake in go": [0, 65535], "in go borrow": [0, 65535], "go borrow me": [0, 65535], "borrow me a": [0, 65535], "me a crow": [0, 65535], "a crow e": [0, 65535], "crow e dro": [0, 65535], "dro a crow": [0, 65535], "a crow without": [0, 65535], "crow without feather": [0, 65535], "without feather master": [0, 65535], "feather master meane": [0, 65535], "master meane you": [0, 65535], "meane you so": [0, 65535], "you so for": [0, 65535], "so for a": [0, 65535], "for a fish": [0, 65535], "a fish without": [0, 65535], "fish without a": [0, 65535], "without a finne": [0, 65535], "a finne ther's": [0, 65535], "finne ther's a": [0, 65535], "ther's a fowle": [0, 65535], "a fowle without": [0, 65535], "fowle without a": [0, 65535], "without a fether": [0, 65535], "a fether if": [0, 65535], "fether if a": [0, 65535], "if a crow": [0, 65535], "a crow help": [0, 65535], "crow help vs": [0, 65535], "help vs in": [0, 65535], "vs in sirra": [0, 65535], "in sirra wee'll": [0, 65535], "sirra wee'll plucke": [0, 65535], "wee'll plucke a": [0, 65535], "plucke a crow": [0, 65535], "a crow together": [0, 65535], "crow together ant": [0, 65535], "together ant go": [0, 65535], "ant go get": [0, 65535], "go get thee": [0, 65535], "get thee gon": [0, 65535], "thee gon fetch": [0, 65535], "gon fetch me": [0, 65535], "fetch me an": [0, 65535], "me an iron": [0, 65535], "an iron crow": [0, 65535], "iron crow balth": [0, 65535], "crow balth haue": [0, 65535], "balth haue patience": [0, 65535], "haue patience sir": [0, 65535], "patience sir oh": [0, 65535], "sir oh let": [0, 65535], "oh let it": [0, 65535], "let it not": [0, 65535], "it not be": [0, 65535], "not be so": [0, 65535], "be so heerein": [0, 65535], "so heerein you": [0, 65535], "heerein you warre": [0, 65535], "you warre against": [0, 65535], "warre against your": [0, 65535], "against your reputation": [0, 65535], "your reputation and": [0, 65535], "reputation and draw": [0, 65535], "and draw within": [0, 65535], "draw within the": [0, 65535], "within the compasse": [0, 65535], "the compasse of": [0, 65535], "compasse of suspect": [0, 65535], "of suspect th'": [0, 65535], "suspect th' vnuiolated": [0, 65535], "th' vnuiolated honor": [0, 65535], "vnuiolated honor of": [0, 65535], "honor of your": [0, 65535], "of your wife": [0, 65535], "your wife once": [0, 65535], "wife once this": [0, 65535], "once this your": [0, 65535], "this your long": [0, 65535], "your long experience": [0, 65535], "long experience of": [0, 65535], "experience of your": [0, 65535], "of your wisedome": [0, 65535], "your wisedome her": [0, 65535], "wisedome her sober": [0, 65535], "her sober vertue": [0, 65535], "sober vertue yeares": [0, 65535], "vertue yeares and": [0, 65535], "yeares and modestie": [0, 65535], "and modestie plead": [0, 65535], "modestie plead on": [0, 65535], "plead on your": [0, 65535], "on your part": [0, 65535], "your part some": [0, 65535], "part some cause": [0, 65535], "some cause to": [0, 65535], "cause to you": [0, 65535], "to you vnknowne": [0, 65535], "you vnknowne and": [0, 65535], "vnknowne and doubt": [0, 65535], "and doubt not": [0, 65535], "doubt not sir": [0, 65535], "not sir but": [0, 65535], "sir but she": [0, 65535], "but she will": [0, 65535], "she will well": [0, 65535], "will well excuse": [0, 65535], "well excuse why": [0, 65535], "excuse why at": [0, 65535], "why at this": [0, 65535], "at this time": [0, 65535], "time the dores": [0, 65535], "the dores are": [0, 65535], "dores are made": [0, 65535], "are made against": [0, 65535], "made against you": [0, 65535], "against you be": [0, 65535], "you be rul'd": [0, 65535], "be rul'd by": [0, 65535], "rul'd by me": [0, 65535], "by me depart": [0, 65535], "me depart in": [0, 65535], "depart in patience": [0, 65535], "in patience and": [0, 65535], "patience and let": [0, 65535], "and let vs": [0, 65535], "let vs to": [0, 65535], "vs to the": [0, 65535], "to the tyger": [0, 65535], "the tyger all": [0, 65535], "tyger all to": [0, 65535], "all to dinner": [0, 65535], "to dinner and": [0, 65535], "dinner and about": [0, 65535], "and about euening": [0, 65535], "about euening come": [0, 65535], "euening come your": [0, 65535], "come your selfe": [0, 65535], "your selfe alone": [0, 65535], "selfe alone to": [0, 65535], "alone to know": [0, 65535], "to know the": [0, 65535], "know the reason": [0, 65535], "the reason of": [0, 65535], "reason of this": [0, 65535], "of this strange": [0, 65535], "this strange restraint": [0, 65535], "strange restraint if": [0, 65535], "restraint if by": [0, 65535], "if by strong": [0, 65535], "by strong hand": [0, 65535], "strong hand you": [0, 65535], "hand you offer": [0, 65535], "you offer to": [0, 65535], "offer to breake": [0, 65535], "to breake in": [0, 65535], "breake in now": [0, 65535], "in now in": [0, 65535], "now in the": [0, 65535], "in the stirring": [0, 65535], "the stirring passage": [0, 65535], "stirring passage of": [0, 65535], "passage of the": [0, 65535], "the day a": [0, 65535], "day a vulgar": [0, 65535], "a vulgar comment": [0, 65535], "vulgar comment will": [0, 65535], "comment will be": [0, 65535], "will be made": [0, 65535], "be made of": [0, 65535], "made of it": [0, 65535], "it and that": [0, 65535], "and that supposed": [0, 65535], "that supposed by": [0, 65535], "supposed by the": [0, 65535], "by the common": [0, 65535], "the common rowt": [0, 65535], "common rowt against": [0, 65535], "rowt against your": [0, 65535], "against your yet": [0, 65535], "your yet vngalled": [0, 65535], "yet vngalled estimation": [0, 65535], "vngalled estimation that": [0, 65535], "estimation that may": [0, 65535], "that may with": [0, 65535], "may with foule": [0, 65535], "with foule intrusion": [0, 65535], "foule intrusion enter": [0, 65535], "intrusion enter in": [0, 65535], "enter in and": [0, 65535], "in and dwell": [0, 65535], "and dwell vpon": [0, 65535], "dwell vpon your": [0, 65535], "vpon your graue": [0, 65535], "your graue when": [0, 65535], "graue when you": [0, 65535], "when you are": [0, 65535], "you are dead": [0, 65535], "are dead for": [0, 65535], "dead for slander": [0, 65535], "for slander liues": [0, 65535], "slander liues vpon": [0, 65535], "liues vpon succession": [0, 65535], "vpon succession for": [0, 65535], "succession for euer": [0, 65535], "for euer hows'd": [0, 65535], "euer hows'd where": [0, 65535], "hows'd where it": [0, 65535], "where it gets": [0, 65535], "it gets possession": [0, 65535], "gets possession anti": [0, 65535], "possession anti you": [0, 65535], "anti you haue": [0, 65535], "you haue preuail'd": [0, 65535], "haue preuail'd i": [0, 65535], "preuail'd i will": [0, 65535], "i will depart": [0, 65535], "will depart in": [0, 65535], "depart in quiet": [0, 65535], "in quiet and": [0, 65535], "quiet and in": [0, 65535], "and in despight": [0, 65535], "in despight of": [0, 65535], "despight of mirth": [0, 65535], "of mirth meane": [0, 65535], "mirth meane to": [0, 65535], "meane to be": [0, 65535], "to be merrie": [0, 65535], "be merrie i": [0, 65535], "merrie i know": [0, 65535], "i know a": [0, 65535], "know a wench": [0, 65535], "a wench of": [0, 65535], "wench of excellent": [0, 65535], "of excellent discourse": [0, 65535], "excellent discourse prettie": [0, 65535], "discourse prettie and": [0, 65535], "prettie and wittie": [0, 65535], "and wittie wilde": [0, 65535], "wittie wilde and": [0, 65535], "wilde and yet": [0, 65535], "and yet too": [0, 65535], "yet too gentle": [0, 65535], "too gentle there": [0, 65535], "gentle there will": [0, 65535], "there will we": [0, 65535], "will we dine": [0, 65535], "we dine this": [0, 65535], "dine this woman": [0, 65535], "this woman that": [0, 65535], "woman that i": [0, 65535], "that i meane": [0, 65535], "i meane my": [0, 65535], "meane my wife": [0, 65535], "my wife but": [0, 65535], "wife but i": [0, 65535], "but i protest": [0, 65535], "i protest without": [0, 65535], "protest without desert": [0, 65535], "without desert hath": [0, 65535], "desert hath oftentimes": [0, 65535], "hath oftentimes vpbraided": [0, 65535], "oftentimes vpbraided me": [0, 65535], "vpbraided me withall": [0, 65535], "me withall to": [0, 65535], "withall to her": [0, 65535], "to her will": [0, 65535], "her will we": [0, 65535], "will we to": [0, 65535], "we to dinner": [0, 65535], "to dinner get": [0, 65535], "dinner get you": [0, 65535], "get you home": [0, 65535], "you home and": [0, 65535], "home and fetch": [0, 65535], "and fetch the": [0, 65535], "fetch the chaine": [0, 65535], "the chaine by": [0, 65535], "chaine by this": [0, 65535], "by this i": [0, 65535], "this i know": [0, 65535], "i know 'tis": [0, 65535], "know 'tis made": [0, 65535], "'tis made bring": [0, 65535], "made bring it": [0, 65535], "bring it i": [0, 65535], "it i pray": [0, 65535], "i pray you": [0, 65535], "pray you to": [0, 65535], "you to the": [0, 65535], "to the porpentine": [0, 65535], "the porpentine for": [0, 65535], "porpentine for there's": [0, 65535], "for there's the": [0, 65535], "there's the house": [0, 65535], "the house that": [0, 65535], "house that chaine": [0, 65535], "that chaine will": [0, 65535], "chaine will i": [0, 65535], "will i bestow": [0, 65535], "i bestow be": [0, 65535], "bestow be it": [0, 65535], "be it for": [0, 65535], "it for nothing": [0, 65535], "for nothing but": [0, 65535], "nothing but to": [0, 65535], "but to spight": [0, 65535], "to spight my": [0, 65535], "spight my wife": [0, 65535], "my wife vpon": [0, 65535], "wife vpon mine": [0, 65535], "vpon mine hostesse": [0, 65535], "mine hostesse there": [0, 65535], "hostesse there good": [0, 65535], "there good sir": [0, 65535], "good sir make": [0, 65535], "sir make haste": [0, 65535], "make haste since": [0, 65535], "haste since mine": [0, 65535], "since mine owne": [0, 65535], "mine owne doores": [0, 65535], "owne doores refuse": [0, 65535], "doores refuse to": [0, 65535], "refuse to entertaine": [0, 65535], "to entertaine me": [0, 65535], "entertaine me ile": [0, 65535], "me ile knocke": [0, 65535], "ile knocke else": [0, 65535], "knocke else where": [0, 65535], "else where to": [0, 65535], "where to see": [0, 65535], "to see if": [0, 65535], "see if they'll": [0, 65535], "if they'll disdaine": [0, 65535], "they'll disdaine me": [0, 65535], "disdaine me ang": [0, 65535], "me ang ile": [0, 65535], "ang ile meet": [0, 65535], "ile meet you": [0, 65535], "meet you at": [0, 65535], "you at that": [0, 65535], "at that place": [0, 65535], "that place some": [0, 65535], "place some houre": [0, 65535], "some houre hence": [0, 65535], "houre hence anti": [0, 65535], "hence anti do": [0, 65535], "anti do so": [0, 65535], "do so this": [0, 65535], "so this iest": [0, 65535], "this iest shall": [0, 65535], "iest shall cost": [0, 65535], "shall cost me": [0, 65535], "cost me some": [0, 65535], "me some expence": [0, 65535], "some expence exeunt": [0, 65535], "expence exeunt enter": [0, 65535], "exeunt enter iuliana": [0, 65535], "enter iuliana with": [0, 65535], "iuliana with antipholus": [0, 65535], "with antipholus of": [0, 65535], "antipholus of siracusia": [0, 65535], "of siracusia iulia": [0, 65535], "siracusia iulia and": [0, 65535], "iulia and may": [0, 65535], "and may it": [0, 65535], "may it be": [0, 65535], "it be that": [0, 65535], "be that you": [0, 65535], "that you haue": [0, 65535], "you haue quite": [0, 65535], "haue quite forgot": [0, 65535], "quite forgot a": [0, 65535], "forgot a husbands": [0, 65535], "a husbands office": [0, 65535], "husbands office shall": [0, 65535], "office shall antipholus": [0, 65535], "shall antipholus euen": [0, 65535], "antipholus euen in": [0, 65535], "euen in the": [0, 65535], "the spring of": [0, 65535], "spring of loue": [0, 65535], "of loue thy": [0, 65535], "loue thy loue": [0, 65535], "thy loue springs": [0, 65535], "loue springs rot": [0, 65535], "springs rot shall": [0, 65535], "rot shall loue": [0, 65535], "shall loue in": [0, 65535], "loue in buildings": [0, 65535], "in buildings grow": [0, 65535], "buildings grow so": [0, 65535], "grow so ruinate": [0, 65535], "so ruinate if": [0, 65535], "ruinate if you": [0, 65535], "if you did": [0, 65535], "you did wed": [0, 65535], "did wed my": [0, 65535], "wed my sister": [0, 65535], "my sister for": [0, 65535], "sister for her": [0, 65535], "for her wealth": [0, 65535], "her wealth then": [0, 65535], "wealth then for": [0, 65535], "then for her": [0, 65535], "for her wealths": [0, 65535], "her wealths sake": [0, 65535], "wealths sake vse": [0, 65535], "sake vse her": [0, 65535], "vse her with": [0, 65535], "her with more": [0, 65535], "with more kindnesse": [0, 65535], "more kindnesse or": [0, 65535], "kindnesse or if": [0, 65535], "or if you": [0, 65535], "if you like": [0, 65535], "you like else": [0, 65535], "like else where": [0, 65535], "else where doe": [0, 65535], "where doe it": [0, 65535], "doe it by": [0, 65535], "it by stealth": [0, 65535], "by stealth muffle": [0, 65535], "stealth muffle your": [0, 65535], "muffle your false": [0, 65535], "your false loue": [0, 65535], "false loue with": [0, 65535], "loue with some": [0, 65535], "with some shew": [0, 65535], "some shew of": [0, 65535], "shew of blindnesse": [0, 65535], "of blindnesse let": [0, 65535], "blindnesse let not": [0, 65535], "let not my": [0, 65535], "not my sister": [0, 65535], "my sister read": [0, 65535], "sister read it": [0, 65535], "read it in": [0, 65535], "in your eye": [0, 65535], "your eye be": [0, 65535], "eye be not": [0, 65535], "be not thy": [0, 65535], "not thy tongue": [0, 65535], "thy tongue thy": [0, 65535], "tongue thy owne": [0, 65535], "thy owne shames": [0, 65535], "owne shames orator": [0, 65535], "shames orator looke": [0, 65535], "orator looke sweet": [0, 65535], "looke sweet speake": [0, 65535], "sweet speake faire": [0, 65535], "speake faire become": [0, 65535], "faire become disloyaltie": [0, 65535], "become disloyaltie apparell": [0, 65535], "disloyaltie apparell vice": [0, 65535], "apparell vice like": [0, 65535], "vice like vertues": [0, 65535], "like vertues harbenger": [0, 65535], "vertues harbenger beare": [0, 65535], "harbenger beare a": [0, 65535], "beare a faire": [0, 65535], "a faire presence": [0, 65535], "faire presence though": [0, 65535], "presence though your": [0, 65535], "though your heart": [0, 65535], "your heart be": [0, 65535], "heart be tainted": [0, 65535], "be tainted teach": [0, 65535], "tainted teach sinne": [0, 65535], "teach sinne the": [0, 65535], "sinne the carriage": [0, 65535], "the carriage of": [0, 65535], "carriage of a": [0, 65535], "of a holy": [0, 65535], "a holy saint": [0, 65535], "holy saint be": [0, 65535], "saint be secret": [0, 65535], "be secret false": [0, 65535], "secret false what": [0, 65535], "false what need": [0, 65535], "what need she": [0, 65535], "need she be": [0, 65535], "she be acquainted": [0, 65535], "be acquainted what": [0, 65535], "acquainted what simple": [0, 65535], "what simple thiefe": [0, 65535], "simple thiefe brags": [0, 65535], "thiefe brags of": [0, 65535], "brags of his": [0, 65535], "of his owne": [0, 65535], "his owne attaine": [0, 65535], "owne attaine 'tis": [0, 65535], "attaine 'tis double": [0, 65535], "'tis double wrong": [0, 65535], "double wrong to": [0, 65535], "wrong to truant": [0, 65535], "to truant with": [0, 65535], "truant with your": [0, 65535], "with your bed": [0, 65535], "your bed and": [0, 65535], "bed and let": [0, 65535], "and let her": [0, 65535], "let her read": [0, 65535], "her read it": [0, 65535], "it in thy": [0, 65535], "in thy lookes": [0, 65535], "thy lookes at": [0, 65535], "lookes at boord": [0, 65535], "at boord shame": [0, 65535], "boord shame hath": [0, 65535], "shame hath a": [0, 65535], "hath a bastard": [0, 65535], "a bastard fame": [0, 65535], "bastard fame well": [0, 65535], "fame well managed": [0, 65535], "well managed ill": [0, 65535], "managed ill deeds": [0, 65535], "ill deeds is": [0, 65535], "deeds is doubled": [0, 65535], "is doubled with": [0, 65535], "doubled with an": [0, 65535], "with an euill": [0, 65535], "an euill word": [0, 65535], "euill word alas": [0, 65535], "word alas poore": [0, 65535], "alas poore women": [0, 65535], "poore women make": [0, 65535], "women make vs": [0, 65535], "make vs not": [0, 65535], "vs not beleeue": [0, 65535], "not beleeue being": [0, 65535], "beleeue being compact": [0, 65535], "being compact of": [0, 65535], "compact of credit": [0, 65535], "of credit that": [0, 65535], "credit that you": [0, 65535], "that you loue": [0, 65535], "you loue vs": [0, 65535], "loue vs though": [0, 65535], "vs though others": [0, 65535], "though others haue": [0, 65535], "others haue the": [0, 65535], "haue the arme": [0, 65535], "the arme shew": [0, 65535], "arme shew vs": [0, 65535], "shew vs the": [0, 65535], "vs the sleeue": [0, 65535], "the sleeue we": [0, 65535], "sleeue we in": [0, 65535], "we in your": [0, 65535], "in your motion": [0, 65535], "your motion turne": [0, 65535], "motion turne and": [0, 65535], "turne and you": [0, 65535], "and you may": [0, 65535], "you may moue": [0, 65535], "may moue vs": [0, 65535], "moue vs then": [0, 65535], "vs then gentle": [0, 65535], "then gentle brother": [0, 65535], "gentle brother get": [0, 65535], "brother get you": [0, 65535], "get you in": [0, 65535], "you in againe": [0, 65535], "in againe comfort": [0, 65535], "againe comfort my": [0, 65535], "comfort my sister": [0, 65535], "my sister cheere": [0, 65535], "sister cheere her": [0, 65535], "cheere her call": [0, 65535], "her call her": [0, 65535], "call her wise": [0, 65535], "her wise 'tis": [0, 65535], "wise 'tis holy": [0, 65535], "'tis holy sport": [0, 65535], "holy sport to": [0, 65535], "sport to be": [0, 65535], "be a little": [0, 65535], "a little vaine": [0, 65535], "little vaine when": [0, 65535], "vaine when the": [0, 65535], "when the sweet": [0, 65535], "the sweet breath": [0, 65535], "sweet breath of": [0, 65535], "breath of flatterie": [0, 65535], "of flatterie conquers": [0, 65535], "flatterie conquers strife": [0, 65535], "conquers strife s": [0, 65535], "strife s anti": [0, 65535], "s anti sweete": [0, 65535], "anti sweete mistris": [0, 65535], "sweete mistris what": [0, 65535], "mistris what your": [0, 65535], "what your name": [0, 65535], "your name is": [0, 65535], "name is else": [0, 65535], "is else i": [0, 65535], "else i know": [0, 65535], "i know not": [0, 65535], "know not nor": [0, 65535], "not nor by": [0, 65535], "nor by what": [0, 65535], "by what wonder": [0, 65535], "what wonder you": [0, 65535], "wonder you do": [0, 65535], "you do hit": [0, 65535], "do hit of": [0, 65535], "hit of mine": [0, 65535], "of mine lesse": [0, 65535], "mine lesse in": [0, 65535], "lesse in your": [0, 65535], "in your knowledge": [0, 65535], "your knowledge and": [0, 65535], "knowledge and your": [0, 65535], "and your grace": [0, 65535], "your grace you": [0, 65535], "grace you show": [0, 65535], "you show not": [0, 65535], "show not then": [0, 65535], "not then our": [0, 65535], "then our earths": [0, 65535], "our earths wonder": [0, 65535], "earths wonder more": [0, 65535], "wonder more then": [0, 65535], "more then earth": [0, 65535], "then earth diuine": [0, 65535], "earth diuine teach": [0, 65535], "diuine teach me": [0, 65535], "teach me deere": [0, 65535], "me deere creature": [0, 65535], "deere creature how": [0, 65535], "creature how to": [0, 65535], "how to thinke": [0, 65535], "to thinke and": [0, 65535], "thinke and speake": [0, 65535], "and speake lay": [0, 65535], "speake lay open": [0, 65535], "lay open to": [0, 65535], "open to my": [0, 65535], "to my earthie": [0, 65535], "my earthie grosse": [0, 65535], "earthie grosse conceit": [0, 65535], "grosse conceit smothred": [0, 65535], "conceit smothred in": [0, 65535], "smothred in errors": [0, 65535], "in errors feeble": [0, 65535], "errors feeble shallow": [0, 65535], "feeble shallow weake": [0, 65535], "shallow weake the": [0, 65535], "weake the foulded": [0, 65535], "the foulded meaning": [0, 65535], "foulded meaning of": [0, 65535], "meaning of your": [0, 65535], "of your words": [0, 65535], "your words deceit": [0, 65535], "words deceit against": [0, 65535], "deceit against my": [0, 65535], "against my soules": [0, 65535], "my soules pure": [0, 65535], "soules pure truth": [0, 65535], "pure truth why": [0, 65535], "truth why labour": [0, 65535], "why labour you": [0, 65535], "labour you to": [0, 65535], "you to make": [0, 65535], "to make it": [0, 65535], "make it wander": [0, 65535], "it wander in": [0, 65535], "wander in an": [0, 65535], "in an vnknowne": [0, 65535], "an vnknowne field": [0, 65535], "vnknowne field are": [0, 65535], "field are you": [0, 65535], "are you a": [0, 65535], "you a god": [0, 65535], "a god would": [0, 65535], "god would you": [0, 65535], "would you create": [0, 65535], "you create me": [0, 65535], "create me new": [0, 65535], "me new transforme": [0, 65535], "new transforme me": [0, 65535], "transforme me then": [0, 65535], "me then and": [0, 65535], "then and to": [0, 65535], "and to your": [0, 65535], "to your powre": [0, 65535], "your powre ile": [0, 65535], "powre ile yeeld": [0, 65535], "ile yeeld but": [0, 65535], "yeeld but if": [0, 65535], "but if that": [0, 65535], "if that i": [0, 65535], "that i am": [0, 65535], "i am i": [0, 65535], "am i then": [0, 65535], "i then well": [0, 65535], "then well i": [0, 65535], "i know your": [0, 65535], "know your weeping": [0, 65535], "your weeping sister": [0, 65535], "weeping sister is": [0, 65535], "sister is no": [0, 65535], "is no wife": [0, 65535], "no wife of": [0, 65535], "wife of mine": [0, 65535], "of mine nor": [0, 65535], "mine nor to": [0, 65535], "nor to her": [0, 65535], "to her bed": [0, 65535], "her bed no": [0, 65535], "bed no homage": [0, 65535], "no homage doe": [0, 65535], "homage doe i": [0, 65535], "doe i owe": [0, 65535], "i owe farre": [0, 65535], "owe farre more": [0, 65535], "farre more farre": [0, 65535], "more farre more": [0, 65535], "farre more to": [0, 65535], "more to you": [0, 65535], "to you doe": [0, 65535], "you doe i": [0, 65535], "doe i decline": [0, 65535], "i decline oh": [0, 65535], "decline oh traine": [0, 65535], "oh traine me": [0, 65535], "traine me not": [0, 65535], "me not sweet": [0, 65535], "not sweet mermaide": [0, 65535], "sweet mermaide with": [0, 65535], "mermaide with thy": [0, 65535], "with thy note": [0, 65535], "thy note to": [0, 65535], "note to drowne": [0, 65535], "to drowne me": [0, 65535], "drowne me in": [0, 65535], "me in thy": [0, 65535], "in thy sister": [0, 65535], "thy sister floud": [0, 65535], "sister floud of": [0, 65535], "floud of teares": [0, 65535], "of teares sing": [0, 65535], "teares sing siren": [0, 65535], "sing siren for": [0, 65535], "siren for thy": [0, 65535], "for thy selfe": [0, 65535], "thy selfe and": [0, 65535], "selfe and i": [0, 65535], "and i will": [0, 65535], "i will dote": [0, 65535], "will dote spread": [0, 65535], "dote spread ore": [0, 65535], "spread ore the": [0, 65535], "ore the siluer": [0, 65535], "the siluer waues": [0, 65535], "siluer waues thy": [0, 65535], "waues thy golden": [0, 65535], "thy golden haires": [0, 65535], "golden haires and": [0, 65535], "haires and as": [0, 65535], "and as a": [0, 65535], "as a bud": [0, 65535], "a bud ile": [0, 65535], "bud ile take": [0, 65535], "ile take thee": [0, 65535], "take thee and": [0, 65535], "thee and there": [0, 65535], "and there lie": [0, 65535], "there lie and": [0, 65535], "lie and in": [0, 65535], "and in that": [0, 65535], "in that glorious": [0, 65535], "that glorious supposition": [0, 65535], "glorious supposition thinke": [0, 65535], "supposition thinke he": [0, 65535], "thinke he gaines": [0, 65535], "he gaines by": [0, 65535], "gaines by death": [0, 65535], "by death that": [0, 65535], "death that hath": [0, 65535], "that hath such": [0, 65535], "hath such meanes": [0, 65535], "such meanes to": [0, 65535], "meanes to die": [0, 65535], "to die let": [0, 65535], "die let loue": [0, 65535], "let loue being": [0, 65535], "loue being light": [0, 65535], "being light be": [0, 65535], "light be drowned": [0, 65535], "be drowned if": [0, 65535], "drowned if she": [0, 65535], "if she sinke": [0, 65535], "she sinke luc": [0, 65535], "sinke luc what": [0, 65535], "luc what are": [0, 65535], "what are you": [0, 65535], "are you mad": [0, 65535], "you mad that": [0, 65535], "mad that you": [0, 65535], "that you doe": [0, 65535], "you doe reason": [0, 65535], "doe reason so": [0, 65535], "reason so ant": [0, 65535], "so ant not": [0, 65535], "ant not mad": [0, 65535], "not mad but": [0, 65535], "mad but mated": [0, 65535], "but mated how": [0, 65535], "mated how i": [0, 65535], "how i doe": [0, 65535], "i doe not": [0, 65535], "doe not know": [0, 65535], "not know luc": [0, 65535], "know luc it": [0, 65535], "luc it is": [0, 65535], "it is a": [0, 65535], "is a fault": [0, 65535], "a fault that": [0, 65535], "fault that springeth": [0, 65535], "that springeth from": [0, 65535], "springeth from your": [0, 65535], "from your eie": [0, 65535], "your eie ant": [0, 65535], "eie ant for": [0, 65535], "ant for gazing": [0, 65535], "for gazing on": [0, 65535], "gazing on your": [0, 65535], "on your beames": [0, 65535], "your beames faire": [0, 65535], "beames faire sun": [0, 65535], "faire sun being": [0, 65535], "sun being by": [0, 65535], "being by luc": [0, 65535], "by luc gaze": [0, 65535], "luc gaze when": [0, 65535], "gaze when you": [0, 65535], "when you should": [0, 65535], "you should and": [0, 65535], "should and that": [0, 65535], "and that will": [0, 65535], "that will cleere": [0, 65535], "will cleere your": [0, 65535], "cleere your sight": [0, 65535], "your sight ant": [0, 65535], "sight ant as": [0, 65535], "ant as good": [0, 65535], "as good to": [0, 65535], "good to winke": [0, 65535], "to winke sweet": [0, 65535], "winke sweet loue": [0, 65535], "sweet loue as": [0, 65535], "loue as looke": [0, 65535], "as looke on": [0, 65535], "looke on night": [0, 65535], "on night luc": [0, 65535], "night luc why": [0, 65535], "luc why call": [0, 65535], "why call you": [0, 65535], "call you me": [0, 65535], "you me loue": [0, 65535], "me loue call": [0, 65535], "loue call my": [0, 65535], "call my sister": [0, 65535], "my sister so": [0, 65535], "sister so ant": [0, 65535], "so ant thy": [0, 65535], "ant thy sisters": [0, 65535], "thy sisters sister": [0, 65535], "sisters sister luc": [0, 65535], "sister luc that's": [0, 65535], "luc that's my": [0, 65535], "that's my sister": [0, 65535], "my sister ant": [0, 65535], "sister ant no": [0, 65535], "ant no it": [0, 65535], "no it is": [0, 65535], "it is thy": [0, 65535], "is thy selfe": [0, 65535], "thy selfe mine": [0, 65535], "selfe mine owne": [0, 65535], "mine owne selfes": [0, 65535], "owne selfes better": [0, 65535], "selfes better part": [0, 65535], "better part mine": [0, 65535], "part mine eies": [0, 65535], "mine eies cleere": [0, 65535], "eies cleere eie": [0, 65535], "cleere eie my": [0, 65535], "eie my deere": [0, 65535], "my deere hearts": [0, 65535], "deere hearts deerer": [0, 65535], "hearts deerer heart": [0, 65535], "deerer heart my": [0, 65535], "heart my foode": [0, 65535], "my foode my": [0, 65535], "foode my fortune": [0, 65535], "my fortune and": [0, 65535], "fortune and my": [0, 65535], "and my sweet": [0, 65535], "my sweet hopes": [0, 65535], "sweet hopes aime": [0, 65535], "hopes aime my": [0, 65535], "aime my sole": [0, 65535], "my sole earths": [0, 65535], "sole earths heauen": [0, 65535], "earths heauen and": [0, 65535], "heauen and my": [0, 65535], "and my heauens": [0, 65535], "my heauens claime": [0, 65535], "heauens claime luc": [0, 65535], "claime luc all": [0, 65535], "luc all this": [0, 65535], "all this my": [0, 65535], "this my sister": [0, 65535], "my sister is": [0, 65535], "sister is or": [0, 65535], "is or else": [0, 65535], "or else should": [0, 65535], "else should be": [0, 65535], "should be ant": [0, 65535], "be ant call": [0, 65535], "ant call thy": [0, 65535], "call thy selfe": [0, 65535], "thy selfe sister": [0, 65535], "selfe sister sweet": [0, 65535], "sister sweet for": [0, 65535], "sweet for i": [0, 65535], "for i am": [0, 65535], "i am thee": [0, 65535], "am thee thee": [0, 65535], "thee thee will": [0, 65535], "thee will i": [0, 65535], "will i loue": [0, 65535], "i loue and": [0, 65535], "loue and with": [0, 65535], "and with thee": [0, 65535], "with thee lead": [0, 65535], "thee lead my": [0, 65535], "lead my life": [0, 65535], "my life thou": [0, 65535], "life thou hast": [0, 65535], "thou hast no": [0, 65535], "hast no husband": [0, 65535], "no husband yet": [0, 65535], "husband yet nor": [0, 65535], "yet nor i": [0, 65535], "nor i no": [0, 65535], "i no wife": [0, 65535], "no wife giue": [0, 65535], "wife giue me": [0, 65535], "giue me thy": [0, 65535], "me thy hand": [0, 65535], "thy hand luc": [0, 65535], "hand luc oh": [0, 65535], "luc oh soft": [0, 65535], "oh soft sir": [0, 65535], "soft sir hold": [0, 65535], "sir hold you": [0, 65535], "hold you still": [0, 65535], "you still ile": [0, 65535], "still ile fetch": [0, 65535], "ile fetch my": [0, 65535], "fetch my sister": [0, 65535], "my sister to": [0, 65535], "sister to get": [0, 65535], "to get her": [0, 65535], "get her good": [0, 65535], "her good will": [0, 65535], "good will exit": [0, 65535], "will exit enter": [0, 65535], "exit enter dromio": [0, 65535], "enter dromio siracusia": [0, 65535], "dromio siracusia ant": [0, 65535], "siracusia ant why": [0, 65535], "ant why how": [0, 65535], "why how now": [0, 65535], "how now dromio": [0, 65535], "now dromio where": [0, 65535], "dromio where run'st": [0, 65535], "where run'st thou": [0, 65535], "run'st thou so": [0, 65535], "thou so fast": [0, 65535], "so fast s": [0, 65535], "fast s dro": [0, 65535], "s dro doe": [0, 65535], "dro doe you": [0, 65535], "doe you know": [0, 65535], "you know me": [0, 65535], "know me sir": [0, 65535], "me sir am": [0, 65535], "sir am i": [0, 65535], "am i dromio": [0, 65535], "i dromio am": [0, 65535], "dromio am i": [0, 65535], "am i your": [0, 65535], "i your man": [0, 65535], "your man am": [0, 65535], "man am i": [0, 65535], "am i my": [0, 65535], "i my selfe": [0, 65535], "my selfe ant": [0, 65535], "selfe ant thou": [0, 65535], "ant thou art": [0, 65535], "thou art dromio": [0, 65535], "art dromio thou": [0, 65535], "dromio thou art": [0, 65535], "thou art my": [0, 65535], "art my man": [0, 65535], "my man thou": [0, 65535], "man thou art": [0, 65535], "thou art thy": [0, 65535], "art thy selfe": [0, 65535], "thy selfe dro": [0, 65535], "selfe dro i": [0, 65535], "dro i am": [0, 65535], "i am an": [0, 65535], "am an asse": [0, 65535], "an asse i": [0, 65535], "asse i am": [0, 65535], "i am a": [0, 65535], "am a womans": [0, 65535], "a womans man": [0, 65535], "womans man and": [0, 65535], "man and besides": [0, 65535], "and besides my": [0, 65535], "besides my selfe": [0, 65535], "selfe ant what": [0, 65535], "ant what womans": [0, 65535], "what womans man": [0, 65535], "man and how": [0, 65535], "and how besides": [0, 65535], "how besides thy": [0, 65535], "besides thy selfe": [0, 65535], "selfe dro marrie": [0, 65535], "dro marrie sir": [0, 65535], "marrie sir besides": [0, 65535], "sir besides my": [0, 65535], "my selfe i": [0, 65535], "selfe i am": [0, 65535], "i am due": [0, 65535], "am due to": [0, 65535], "due to a": [0, 65535], "to a woman": [0, 65535], "a woman one": [0, 65535], "woman one that": [0, 65535], "one that claimes": [0, 65535], "that claimes me": [0, 65535], "claimes me one": [0, 65535], "me one that": [0, 65535], "one that haunts": [0, 65535], "that haunts me": [0, 65535], "haunts me one": [0, 65535], "one that will": [0, 65535], "that will haue": [0, 65535], "will haue me": [0, 65535], "haue me anti": [0, 65535], "me anti what": [0, 65535], "anti what claime": [0, 65535], "what claime laies": [0, 65535], "claime laies she": [0, 65535], "laies she to": [0, 65535], "she to thee": [0, 65535], "to thee dro": [0, 65535], "thee dro marry": [0, 65535], "dro marry sir": [0, 65535], "marry sir such": [0, 65535], "sir such claime": [0, 65535], "such claime as": [0, 65535], "claime as you": [0, 65535], "as you would": [0, 65535], "you would lay": [0, 65535], "would lay to": [0, 65535], "lay to your": [0, 65535], "to your horse": [0, 65535], "your horse and": [0, 65535], "horse and she": [0, 65535], "she would haue": [0, 65535], "would haue me": [0, 65535], "haue me as": [0, 65535], "me as a": [0, 65535], "as a beast": [0, 65535], "a beast not": [0, 65535], "beast not that": [0, 65535], "not that i": [0, 65535], "that i beeing": [0, 65535], "i beeing a": [0, 65535], "beeing a beast": [0, 65535], "a beast she": [0, 65535], "beast she would": [0, 65535], "haue me but": [0, 65535], "me but that": [0, 65535], "but that she": [0, 65535], "that she being": [0, 65535], "she being a": [0, 65535], "being a verie": [0, 65535], "a verie beastly": [0, 65535], "verie beastly creature": [0, 65535], "beastly creature layes": [0, 65535], "creature layes claime": [0, 65535], "layes claime to": [0, 65535], "claime to me": [0, 65535], "to me anti": [0, 65535], "anti what is": [0, 65535], "what is she": [0, 65535], "is she dro": [0, 65535], "she dro a": [0, 65535], "dro a very": [0, 65535], "a very reuerent": [0, 65535], "very reuerent body": [0, 65535], "reuerent body i": [0, 65535], "body i such": [0, 65535], "i such a": [0, 65535], "such a one": [0, 65535], "a one as": [0, 65535], "one as a": [0, 65535], "as a man": [0, 65535], "man may not": [0, 65535], "may not speake": [0, 65535], "not speake of": [0, 65535], "speake of without": [0, 65535], "of without he": [0, 65535], "without he say": [0, 65535], "he say sir": [0, 65535], "say sir reuerence": [0, 65535], "sir reuerence i": [0, 65535], "reuerence i haue": [0, 65535], "i haue but": [0, 65535], "haue but leane": [0, 65535], "but leane lucke": [0, 65535], "leane lucke in": [0, 65535], "lucke in the": [0, 65535], "in the match": [0, 65535], "the match and": [0, 65535], "match and yet": [0, 65535], "and yet is": [0, 65535], "yet is she": [0, 65535], "is she a": [0, 65535], "she a wondrous": [0, 65535], "a wondrous fat": [0, 65535], "wondrous fat marriage": [0, 65535], "fat marriage anti": [0, 65535], "marriage anti how": [0, 65535], "anti how dost": [0, 65535], "how dost thou": [0, 65535], "dost thou meane": [0, 65535], "thou meane a": [0, 65535], "meane a fat": [0, 65535], "a fat marriage": [0, 65535], "fat marriage dro": [0, 65535], "marriage dro marry": [0, 65535], "marry sir she's": [0, 65535], "sir she's the": [0, 65535], "she's the kitchin": [0, 65535], "the kitchin wench": [0, 65535], "kitchin wench al": [0, 65535], "wench al grease": [0, 65535], "al grease and": [0, 65535], "grease and i": [0, 65535], "and i know": [0, 65535], "know not what": [0, 65535], "not what vse": [0, 65535], "what vse to": [0, 65535], "vse to put": [0, 65535], "put her too": [0, 65535], "her too but": [0, 65535], "too but to": [0, 65535], "but to make": [0, 65535], "make a lampe": [0, 65535], "a lampe of": [0, 65535], "lampe of her": [0, 65535], "of her and": [0, 65535], "her and run": [0, 65535], "and run from": [0, 65535], "run from her": [0, 65535], "from her by": [0, 65535], "her by her": [0, 65535], "by her owne": [0, 65535], "her owne light": [0, 65535], "owne light i": [0, 65535], "light i warrant": [0, 65535], "i warrant her": [0, 65535], "warrant her ragges": [0, 65535], "her ragges and": [0, 65535], "ragges and the": [0, 65535], "and the tallow": [0, 65535], "the tallow in": [0, 65535], "tallow in them": [0, 65535], "in them will": [0, 65535], "them will burne": [0, 65535], "will burne a": [0, 65535], "burne a poland": [0, 65535], "a poland winter": [0, 65535], "poland winter if": [0, 65535], "winter if she": [0, 65535], "if she liues": [0, 65535], "she liues till": [0, 65535], "liues till doomesday": [0, 65535], "till doomesday she'l": [0, 65535], "doomesday she'l burne": [0, 65535], "she'l burne a": [0, 65535], "burne a weeke": [0, 65535], "a weeke longer": [0, 65535], "weeke longer then": [0, 65535], "longer then the": [0, 65535], "then the whole": [0, 65535], "the whole world": [0, 65535], "whole world anti": [0, 65535], "world anti what": [0, 65535], "anti what complexion": [0, 65535], "what complexion is": [0, 65535], "complexion is she": [0, 65535], "is she of": [0, 65535], "she of dro": [0, 65535], "of dro swart": [0, 65535], "dro swart like": [0, 65535], "swart like my": [0, 65535], "like my shoo": [0, 65535], "my shoo but": [0, 65535], "shoo but her": [0, 65535], "but her face": [0, 65535], "her face nothing": [0, 65535], "face nothing like": [0, 65535], "nothing like so": [0, 65535], "like so cleane": [0, 65535], "so cleane kept": [0, 65535], "cleane kept for": [0, 65535], "kept for why": [0, 65535], "for why she": [0, 65535], "why she sweats": [0, 65535], "she sweats a": [0, 65535], "sweats a man": [0, 65535], "man may goe": [0, 65535], "may goe o": [0, 65535], "goe o uer": [0, 65535], "o uer shooes": [0, 65535], "uer shooes in": [0, 65535], "shooes in the": [0, 65535], "in the grime": [0, 65535], "the grime of": [0, 65535], "grime of it": [0, 65535], "of it anti": [0, 65535], "it anti that's": [0, 65535], "anti that's a": [0, 65535], "that's a fault": [0, 65535], "fault that water": [0, 65535], "that water will": [0, 65535], "water will mend": [0, 65535], "will mend dro": [0, 65535], "mend dro no": [0, 65535], "dro no sir": [0, 65535], "no sir 'tis": [0, 65535], "sir 'tis in": [0, 65535], "'tis in graine": [0, 65535], "in graine noahs": [0, 65535], "graine noahs flood": [0, 65535], "noahs flood could": [0, 65535], "flood could not": [0, 65535], "could not do": [0, 65535], "not do it": [0, 65535], "do it anti": [0, 65535], "it anti what's": [0, 65535], "anti what's her": [0, 65535], "what's her name": [0, 65535], "her name dro": [0, 65535], "name dro nell": [0, 65535], "dro nell sir": [0, 65535], "nell sir but": [0, 65535], "sir but her": [0, 65535], "but her name": [0, 65535], "her name is": [0, 65535], "name is three": [0, 65535], "is three quarters": [0, 65535], "three quarters that's": [0, 65535], "quarters that's an": [0, 65535], "that's an ell": [0, 65535], "an ell and": [0, 65535], "ell and three": [0, 65535], "and three quarters": [0, 65535], "three quarters will": [0, 65535], "quarters will not": [0, 65535], "will not measure": [0, 65535], "not measure her": [0, 65535], "measure her from": [0, 65535], "her from hip": [0, 65535], "from hip to": [0, 65535], "hip to hip": [0, 65535], "to hip anti": [0, 65535], "hip anti then": [0, 65535], "anti then she": [0, 65535], "then she beares": [0, 65535], "she beares some": [0, 65535], "beares some bredth": [0, 65535], "some bredth dro": [0, 65535], "bredth dro no": [0, 65535], "dro no longer": [0, 65535], "no longer from": [0, 65535], "longer from head": [0, 65535], "from head to": [0, 65535], "head to foot": [0, 65535], "to foot then": [0, 65535], "foot then from": [0, 65535], "then from hippe": [0, 65535], "from hippe to": [0, 65535], "hippe to hippe": [0, 65535], "to hippe she": [0, 65535], "hippe she is": [0, 65535], "she is sphericall": [0, 65535], "is sphericall like": [0, 65535], "sphericall like a": [0, 65535], "like a globe": [0, 65535], "a globe i": [0, 65535], "globe i could": [0, 65535], "i could find": [0, 65535], "could find out": [0, 65535], "find out countries": [0, 65535], "out countries in": [0, 65535], "countries in her": [0, 65535], "in her anti": [0, 65535], "her anti in": [0, 65535], "anti in what": [0, 65535], "in what part": [0, 65535], "what part of": [0, 65535], "part of her": [0, 65535], "of her body": [0, 65535], "her body stands": [0, 65535], "body stands ireland": [0, 65535], "stands ireland dro": [0, 65535], "ireland dro marry": [0, 65535], "marry sir in": [0, 65535], "sir in her": [0, 65535], "in her buttockes": [0, 65535], "her buttockes i": [0, 65535], "buttockes i found": [0, 65535], "i found it": [0, 65535], "found it out": [0, 65535], "it out by": [0, 65535], "out by the": [0, 65535], "by the bogges": [0, 65535], "the bogges ant": [0, 65535], "bogges ant where": [0, 65535], "ant where scotland": [0, 65535], "where scotland dro": [0, 65535], "scotland dro i": [0, 65535], "dro i found": [0, 65535], "found it by": [0, 65535], "it by the": [0, 65535], "by the barrennesse": [0, 65535], "the barrennesse hard": [0, 65535], "barrennesse hard in": [0, 65535], "hard in the": [0, 65535], "in the palme": [0, 65535], "the palme of": [0, 65535], "palme of the": [0, 65535], "of the hand": [0, 65535], "the hand ant": [0, 65535], "hand ant where": [0, 65535], "ant where france": [0, 65535], "where france dro": [0, 65535], "france dro in": [0, 65535], "dro in her": [0, 65535], "in her forhead": [0, 65535], "her forhead arm'd": [0, 65535], "forhead arm'd and": [0, 65535], "arm'd and reuerted": [0, 65535], "and reuerted making": [0, 65535], "reuerted making warre": [0, 65535], "making warre against": [0, 65535], "warre against her": [0, 65535], "against her heire": [0, 65535], "her heire ant": [0, 65535], "heire ant where": [0, 65535], "ant where england": [0, 65535], "where england dro": [0, 65535], "england dro i": [0, 65535], "dro i look'd": [0, 65535], "i look'd for": [0, 65535], "look'd for the": [0, 65535], "for the chalkle": [0, 65535], "the chalkle cliffes": [0, 65535], "chalkle cliffes but": [0, 65535], "cliffes but i": [0, 65535], "but i could": [0, 65535], "find no whitenesse": [0, 65535], "no whitenesse in": [0, 65535], "whitenesse in them": [0, 65535], "in them but": [0, 65535], "them but i": [0, 65535], "but i guesse": [0, 65535], "i guesse it": [0, 65535], "guesse it stood": [0, 65535], "it stood in": [0, 65535], "stood in her": [0, 65535], "in her chin": [0, 65535], "her chin by": [0, 65535], "chin by the": [0, 65535], "by the salt": [0, 65535], "the salt rheume": [0, 65535], "salt rheume that": [0, 65535], "rheume that ranne": [0, 65535], "that ranne betweene": [0, 65535], "ranne betweene france": [0, 65535], "betweene france and": [0, 65535], "france and it": [0, 65535], "and it ant": [0, 65535], "it ant where": [0, 65535], "ant where spaine": [0, 65535], "where spaine dro": [0, 65535], "spaine dro faith": [0, 65535], "dro faith i": [0, 65535], "faith i saw": [0, 65535], "i saw it": [0, 65535], "saw it not": [0, 65535], "it not but": [0, 65535], "not but i": [0, 65535], "but i felt": [0, 65535], "i felt it": [0, 65535], "felt it hot": [0, 65535], "it hot in": [0, 65535], "hot in her": [0, 65535], "in her breth": [0, 65535], "her breth ant": [0, 65535], "breth ant where": [0, 65535], "ant where america": [0, 65535], "where america the": [0, 65535], "america the indies": [0, 65535], "the indies dro": [0, 65535], "indies dro oh": [0, 65535], "dro oh sir": [0, 65535], "oh sir vpon": [0, 65535], "sir vpon her": [0, 65535], "vpon her nose": [0, 65535], "her nose all": [0, 65535], "nose all ore": [0, 65535], "all ore embellished": [0, 65535], "ore embellished with": [0, 65535], "embellished with rubies": [0, 65535], "with rubies carbuncles": [0, 65535], "rubies carbuncles saphires": [0, 65535], "carbuncles saphires declining": [0, 65535], "saphires declining their": [0, 65535], "declining their rich": [0, 65535], "their rich aspect": [0, 65535], "rich aspect to": [0, 65535], "aspect to the": [0, 65535], "to the hot": [0, 65535], "the hot breath": [0, 65535], "hot breath of": [0, 65535], "breath of spaine": [0, 65535], "of spaine who": [0, 65535], "spaine who sent": [0, 65535], "who sent whole": [0, 65535], "sent whole armadoes": [0, 65535], "whole armadoes of": [0, 65535], "armadoes of carrects": [0, 65535], "of carrects to": [0, 65535], "carrects to be": [0, 65535], "to be ballast": [0, 65535], "be ballast at": [0, 65535], "ballast at her": [0, 65535], "at her nose": [0, 65535], "her nose anti": [0, 65535], "nose anti where": [0, 65535], "anti where stood": [0, 65535], "where stood belgia": [0, 65535], "stood belgia the": [0, 65535], "belgia the netherlands": [0, 65535], "the netherlands dro": [0, 65535], "netherlands dro oh": [0, 65535], "oh sir i": [0, 65535], "sir i did": [0, 65535], "i did not": [0, 65535], "did not looke": [0, 65535], "not looke so": [0, 65535], "looke so low": [0, 65535], "so low to": [0, 65535], "low to conclude": [0, 65535], "to conclude this": [0, 65535], "conclude this drudge": [0, 65535], "this drudge or": [0, 65535], "drudge or diuiner": [0, 65535], "or diuiner layd": [0, 65535], "diuiner layd claime": [0, 65535], "layd claime to": [0, 65535], "claime to mee": [0, 65535], "to mee call'd": [0, 65535], "mee call'd mee": [0, 65535], "call'd mee dromio": [0, 65535], "mee dromio swore": [0, 65535], "dromio swore i": [0, 65535], "swore i was": [0, 65535], "i was assur'd": [0, 65535], "was assur'd to": [0, 65535], "assur'd to her": [0, 65535], "to her told": [0, 65535], "her told me": [0, 65535], "told me what": [0, 65535], "me what priuie": [0, 65535], "what priuie markes": [0, 65535], "priuie markes i": [0, 65535], "markes i had": [0, 65535], "i had about": [0, 65535], "had about mee": [0, 65535], "about mee as": [0, 65535], "mee as the": [0, 65535], "as the marke": [0, 65535], "the marke of": [0, 65535], "marke of my": [0, 65535], "of my shoulder": [0, 65535], "my shoulder the": [0, 65535], "shoulder the mole": [0, 65535], "the mole in": [0, 65535], "mole in my": [0, 65535], "in my necke": [0, 65535], "my necke the": [0, 65535], "necke the great": [0, 65535], "the great wart": [0, 65535], "great wart on": [0, 65535], "wart on my": [0, 65535], "on my left": [0, 65535], "my left arme": [0, 65535], "left arme that": [0, 65535], "arme that i": [0, 65535], "that i amaz'd": [0, 65535], "i amaz'd ranne": [0, 65535], "amaz'd ranne from": [0, 65535], "ranne from her": [0, 65535], "from her as": [0, 65535], "her as a": [0, 65535], "as a witch": [0, 65535], "a witch and": [0, 65535], "witch and i": [0, 65535], "and i thinke": [0, 65535], "i thinke if": [0, 65535], "thinke if my": [0, 65535], "if my brest": [0, 65535], "my brest had": [0, 65535], "brest had not": [0, 65535], "had not beene": [0, 65535], "not beene made": [0, 65535], "beene made of": [0, 65535], "made of faith": [0, 65535], "of faith and": [0, 65535], "faith and my": [0, 65535], "and my heart": [0, 65535], "my heart of": [0, 65535], "heart of steele": [0, 65535], "of steele she": [0, 65535], "steele she had": [0, 65535], "she had transform'd": [0, 65535], "had transform'd me": [0, 65535], "transform'd me to": [0, 65535], "me to a": [0, 65535], "to a curtull": [0, 65535], "a curtull dog": [0, 65535], "curtull dog made": [0, 65535], "dog made me": [0, 65535], "made me turne": [0, 65535], "me turne i'th": [0, 65535], "turne i'th wheele": [0, 65535], "i'th wheele anti": [0, 65535], "wheele anti go": [0, 65535], "anti go hie": [0, 65535], "go hie thee": [0, 65535], "hie thee presently": [0, 65535], "thee presently post": [0, 65535], "presently post to": [0, 65535], "post to the": [0, 65535], "to the rode": [0, 65535], "the rode and": [0, 65535], "rode and if": [0, 65535], "if the winde": [0, 65535], "the winde blow": [0, 65535], "winde blow any": [0, 65535], "blow any way": [0, 65535], "any way from": [0, 65535], "way from shore": [0, 65535], "from shore i": [0, 65535], "shore i will": [0, 65535], "i will not": [0, 65535], "will not harbour": [0, 65535], "not harbour in": [0, 65535], "harbour in this": [0, 65535], "in this towne": [0, 65535], "this towne to": [0, 65535], "towne to night": [0, 65535], "to night if": [0, 65535], "night if any": [0, 65535], "if any barke": [0, 65535], "any barke put": [0, 65535], "barke put forth": [0, 65535], "put forth come": [0, 65535], "forth come to": [0, 65535], "come to the": [0, 65535], "to the mart": [0, 65535], "the mart where": [0, 65535], "mart where i": [0, 65535], "where i will": [0, 65535], "i will walke": [0, 65535], "will walke till": [0, 65535], "walke till thou": [0, 65535], "till thou returne": [0, 65535], "thou returne to": [0, 65535], "returne to me": [0, 65535], "to me if": [0, 65535], "me if euerie": [0, 65535], "if euerie one": [0, 65535], "euerie one knowes": [0, 65535], "one knowes vs": [0, 65535], "knowes vs and": [0, 65535], "vs and we": [0, 65535], "and we know": [0, 65535], "we know none": [0, 65535], "know none 'tis": [0, 65535], "none 'tis time": [0, 65535], "'tis time i": [0, 65535], "time i thinke": [0, 65535], "i thinke to": [0, 65535], "thinke to trudge": [0, 65535], "to trudge packe": [0, 65535], "trudge packe and": [0, 65535], "packe and be": [0, 65535], "and be gone": [0, 65535], "be gone dro": [0, 65535], "gone dro as": [0, 65535], "dro as from": [0, 65535], "as from a": [0, 65535], "from a beare": [0, 65535], "a beare a": [0, 65535], "beare a man": [0, 65535], "a man would": [0, 65535], "man would run": [0, 65535], "would run for": [0, 65535], "run for life": [0, 65535], "for life so": [0, 65535], "life so flie": [0, 65535], "so flie i": [0, 65535], "flie i from": [0, 65535], "i from her": [0, 65535], "from her that": [0, 65535], "her that would": [0, 65535], "that would be": [0, 65535], "would be my": [0, 65535], "be my wife": [0, 65535], "my wife exit": [0, 65535], "wife exit anti": [0, 65535], "exit anti there's": [0, 65535], "anti there's none": [0, 65535], "there's none but": [0, 65535], "none but witches": [0, 65535], "but witches do": [0, 65535], "witches do inhabite": [0, 65535], "do inhabite heere": [0, 65535], "inhabite heere and": [0, 65535], "heere and therefore": [0, 65535], "and therefore 'tis": [0, 65535], "therefore 'tis hie": [0, 65535], "'tis hie time": [0, 65535], "hie time that": [0, 65535], "time that i": [0, 65535], "that i were": [0, 65535], "i were hence": [0, 65535], "were hence she": [0, 65535], "hence she that": [0, 65535], "she that doth": [0, 65535], "that doth call": [0, 65535], "doth call me": [0, 65535], "call me husband": [0, 65535], "me husband euen": [0, 65535], "husband euen my": [0, 65535], "euen my soule": [0, 65535], "my soule doth": [0, 65535], "soule doth for": [0, 65535], "doth for a": [0, 65535], "for a wife": [0, 65535], "a wife abhorre": [0, 65535], "wife abhorre but": [0, 65535], "abhorre but her": [0, 65535], "but her faire": [0, 65535], "her faire sister": [0, 65535], "faire sister possest": [0, 65535], "sister possest with": [0, 65535], "possest with such": [0, 65535], "with such a": [0, 65535], "such a gentle": [0, 65535], "a gentle soueraigne": [0, 65535], "gentle soueraigne grace": [0, 65535], "soueraigne grace of": [0, 65535], "grace of such": [0, 65535], "of such inchanting": [0, 65535], "such inchanting presence": [0, 65535], "inchanting presence and": [0, 65535], "presence and discourse": [0, 65535], "and discourse hath": [0, 65535], "discourse hath almost": [0, 65535], "hath almost made": [0, 65535], "almost made me": [0, 65535], "made me traitor": [0, 65535], "me traitor to": [0, 65535], "traitor to my": [0, 65535], "to my selfe": [0, 65535], "my selfe but": [0, 65535], "selfe but least": [0, 65535], "but least my": [0, 65535], "least my selfe": [0, 65535], "my selfe be": [0, 65535], "selfe be guilty": [0, 65535], "be guilty to": [0, 65535], "guilty to selfe": [0, 65535], "to selfe wrong": [0, 65535], "selfe wrong ile": [0, 65535], "wrong ile stop": [0, 65535], "ile stop mine": [0, 65535], "stop mine eares": [0, 65535], "mine eares against": [0, 65535], "eares against the": [0, 65535], "against the mermaids": [0, 65535], "the mermaids song": [0, 65535], "mermaids song enter": [0, 65535], "song enter angelo": [0, 65535], "enter angelo with": [0, 65535], "angelo with the": [0, 65535], "with the chaine": [0, 65535], "the chaine ang": [0, 65535], "chaine ang mr": [0, 65535], "ang mr antipholus": [0, 65535], "mr antipholus anti": [0, 65535], "antipholus anti i": [0, 65535], "anti i that's": [0, 65535], "i that's my": [0, 65535], "that's my name": [0, 65535], "my name ang": [0, 65535], "name ang i": [0, 65535], "ang i know": [0, 65535], "i know it": [0, 65535], "know it well": [0, 65535], "it well sir": [0, 65535], "well sir loe": [0, 65535], "sir loe here's": [0, 65535], "loe here's the": [0, 65535], "here's the chaine": [0, 65535], "the chaine i": [0, 65535], "chaine i thought": [0, 65535], "to haue tane": [0, 65535], "haue tane you": [0, 65535], "tane you at": [0, 65535], "you at the": [0, 65535], "at the porpentine": [0, 65535], "the porpentine the": [0, 65535], "porpentine the chaine": [0, 65535], "the chaine vnfinish'd": [0, 65535], "chaine vnfinish'd made": [0, 65535], "vnfinish'd made me": [0, 65535], "made me stay": [0, 65535], "me stay thus": [0, 65535], "stay thus long": [0, 65535], "thus long anti": [0, 65535], "long anti what": [0, 65535], "what is your": [0, 65535], "is your will": [0, 65535], "your will that": [0, 65535], "will that i": [0, 65535], "that i shal": [0, 65535], "i shal do": [0, 65535], "shal do with": [0, 65535], "do with this": [0, 65535], "with this ang": [0, 65535], "this ang what": [0, 65535], "ang what please": [0, 65535], "what please your": [0, 65535], "please your selfe": [0, 65535], "your selfe sir": [0, 65535], "selfe sir i": [0, 65535], "sir i haue": [0, 65535], "i haue made": [0, 65535], "haue made it": [0, 65535], "made it for": [0, 65535], "it for you": [0, 65535], "for you anti": [0, 65535], "you anti made": [0, 65535], "anti made it": [0, 65535], "it for me": [0, 65535], "for me sir": [0, 65535], "me sir i": [0, 65535], "sir i bespoke": [0, 65535], "i bespoke it": [0, 65535], "bespoke it not": [0, 65535], "it not ang": [0, 65535], "not ang not": [0, 65535], "ang not once": [0, 65535], "not once nor": [0, 65535], "once nor twice": [0, 65535], "nor twice but": [0, 65535], "twice but twentie": [0, 65535], "but twentie times": [0, 65535], "twentie times you": [0, 65535], "times you haue": [0, 65535], "you haue go": [0, 65535], "haue go home": [0, 65535], "go home with": [0, 65535], "home with it": [0, 65535], "it and please": [0, 65535], "and please your": [0, 65535], "please your wife": [0, 65535], "your wife withall": [0, 65535], "wife withall and": [0, 65535], "withall and soone": [0, 65535], "and soone at": [0, 65535], "soone at supper": [0, 65535], "at supper time": [0, 65535], "supper time ile": [0, 65535], "time ile visit": [0, 65535], "ile visit you": [0, 65535], "visit you and": [0, 65535], "you and then": [0, 65535], "and then receiue": [0, 65535], "then receiue my": [0, 65535], "receiue my money": [0, 65535], "my money for": [0, 65535], "money for the": [0, 65535], "for the chaine": [0, 65535], "the chaine anti": [0, 65535], "chaine anti i": [0, 65535], "anti i pray": [0, 65535], "pray you sir": [0, 65535], "you sir receiue": [0, 65535], "sir receiue the": [0, 65535], "receiue the money": [0, 65535], "the money now": [0, 65535], "money now for": [0, 65535], "now for feare": [0, 65535], "for feare you": [0, 65535], "feare you ne're": [0, 65535], "you ne're see": [0, 65535], "ne're see chaine": [0, 65535], "see chaine nor": [0, 65535], "chaine nor mony": [0, 65535], "nor mony more": [0, 65535], "mony more ang": [0, 65535], "more ang you": [0, 65535], "ang you are": [0, 65535], "you are a": [0, 65535], "are a merry": [0, 65535], "a merry man": [0, 65535], "merry man sir": [0, 65535], "man sir fare": [0, 65535], "sir fare you": [0, 65535], "fare you well": [0, 65535], "you well exit": [0, 65535], "well exit ant": [0, 65535], "exit ant what": [0, 65535], "ant what i": [0, 65535], "what i should": [0, 65535], "i should thinke": [0, 65535], "should thinke of": [0, 65535], "thinke of this": [0, 65535], "of this i": [0, 65535], "this i cannot": [0, 65535], "i cannot tell": [0, 65535], "cannot tell but": [0, 65535], "tell but this": [0, 65535], "but this i": [0, 65535], "this i thinke": [0, 65535], "i thinke there's": [0, 65535], "thinke there's no": [0, 65535], "there's no man": [0, 65535], "no man is": [0, 65535], "man is so": [0, 65535], "is so vaine": [0, 65535], "so vaine that": [0, 65535], "vaine that would": [0, 65535], "that would refuse": [0, 65535], "would refuse so": [0, 65535], "refuse so faire": [0, 65535], "so faire an": [0, 65535], "faire an offer'd": [0, 65535], "an offer'd chaine": [0, 65535], "offer'd chaine i": [0, 65535], "chaine i see": [0, 65535], "i see a": [0, 65535], "see a man": [0, 65535], "a man heere": [0, 65535], "man heere needs": [0, 65535], "heere needs not": [0, 65535], "needs not liue": [0, 65535], "not liue by": [0, 65535], "liue by shifts": [0, 65535], "by shifts when": [0, 65535], "shifts when in": [0, 65535], "when in the": [0, 65535], "in the streets": [0, 65535], "the streets he": [0, 65535], "streets he meetes": [0, 65535], "he meetes such": [0, 65535], "meetes such golden": [0, 65535], "such golden gifts": [0, 65535], "golden gifts ile": [0, 65535], "gifts ile to": [0, 65535], "ile to the": [0, 65535], "mart and there": [0, 65535], "and there for": [0, 65535], "there for dromio": [0, 65535], "for dromio stay": [0, 65535], "dromio stay if": [0, 65535], "stay if any": [0, 65535], "if any ship": [0, 65535], "any ship put": [0, 65535], "ship put out": [0, 65535], "put out then": [0, 65535], "out then straight": [0, 65535], "then straight away": [0, 65535], "straight away exit": [0, 65535], "actus tertius scena prima": [0, 65535], "tertius scena prima enter": [0, 65535], "scena prima enter antipholus": [0, 65535], "prima enter antipholus of": [0, 65535], "enter antipholus of ephesus": [0, 65535], "antipholus of ephesus his": [0, 65535], "of ephesus his man": [0, 65535], "ephesus his man dromio": [0, 65535], "his man dromio angelo": [0, 65535], "man dromio angelo the": [0, 65535], "dromio angelo the goldsmith": [0, 65535], "angelo the goldsmith and": [0, 65535], "the goldsmith and balthaser": [0, 65535], "goldsmith and balthaser the": [0, 65535], "and balthaser the merchant": [0, 65535], "balthaser the merchant e": [0, 65535], "the merchant e anti": [0, 65535], "merchant e anti good": [0, 65535], "e anti good signior": [0, 65535], "anti good signior angelo": [0, 65535], "good signior angelo you": [0, 65535], "signior angelo you must": [0, 65535], "angelo you must excuse": [0, 65535], "you must excuse vs": [0, 65535], "must excuse vs all": [0, 65535], "excuse vs all my": [0, 65535], "vs all my wife": [0, 65535], "all my wife is": [0, 65535], "my wife is shrewish": [0, 65535], "wife is shrewish when": [0, 65535], "is shrewish when i": [0, 65535], "shrewish when i keepe": [0, 65535], "when i keepe not": [0, 65535], "i keepe not howres": [0, 65535], "keepe not howres say": [0, 65535], "not howres say that": [0, 65535], "howres say that i": [0, 65535], "say that i lingerd": [0, 65535], "that i lingerd with": [0, 65535], "i lingerd with you": [0, 65535], "lingerd with you at": [0, 65535], "with you at your": [0, 65535], "you at your shop": [0, 65535], "at your shop to": [0, 65535], "your shop to see": [0, 65535], "shop to see the": [0, 65535], "to see the making": [0, 65535], "see the making of": [0, 65535], "the making of her": [0, 65535], "making of her carkanet": [0, 65535], "of her carkanet and": [0, 65535], "her carkanet and that": [0, 65535], "carkanet and that to": [0, 65535], "and that to morrow": [0, 65535], "that to morrow you": [0, 65535], "to morrow you will": [0, 65535], "morrow you will bring": [0, 65535], "you will bring it": [0, 65535], "will bring it home": [0, 65535], "bring it home but": [0, 65535], "it home but here's": [0, 65535], "home but here's a": [0, 65535], "but here's a villaine": [0, 65535], "here's a villaine that": [0, 65535], "a villaine that would": [0, 65535], "villaine that would face": [0, 65535], "that would face me": [0, 65535], "would face me downe": [0, 65535], "face me downe he": [0, 65535], "me downe he met": [0, 65535], "downe he met me": [0, 65535], "he met me on": [0, 65535], "met me on the": [0, 65535], "me on the mart": [0, 65535], "on the mart and": [0, 65535], "the mart and that": [0, 65535], "mart and that i": [0, 65535], "and that i beat": [0, 65535], "that i beat him": [0, 65535], "i beat him and": [0, 65535], "beat him and charg'd": [0, 65535], "him and charg'd him": [0, 65535], "and charg'd him with": [0, 65535], "charg'd him with a": [0, 65535], "him with a thousand": [0, 65535], "with a thousand markes": [0, 65535], "a thousand markes in": [0, 65535], "thousand markes in gold": [0, 65535], "markes in gold and": [0, 65535], "in gold and that": [0, 65535], "gold and that i": [0, 65535], "and that i did": [0, 65535], "that i did denie": [0, 65535], "i did denie my": [0, 65535], "did denie my wife": [0, 65535], "denie my wife and": [0, 65535], "my wife and house": [0, 65535], "wife and house thou": [0, 65535], "and house thou drunkard": [0, 65535], "house thou drunkard thou": [0, 65535], "thou drunkard thou what": [0, 65535], "drunkard thou what didst": [0, 65535], "thou what didst thou": [0, 65535], "what didst thou meane": [0, 65535], "didst thou meane by": [0, 65535], "thou meane by this": [0, 65535], "meane by this e": [0, 65535], "by this e dro": [0, 65535], "this e dro say": [0, 65535], "e dro say what": [0, 65535], "dro say what you": [0, 65535], "say what you wil": [0, 65535], "what you wil sir": [0, 65535], "you wil sir but": [0, 65535], "wil sir but i": [0, 65535], "sir but i know": [0, 65535], "but i know what": [0, 65535], "i know what i": [0, 65535], "know what i know": [0, 65535], "what i know that": [0, 65535], "i know that you": [0, 65535], "know that you beat": [0, 65535], "that you beat me": [0, 65535], "you beat me at": [0, 65535], "beat me at the": [0, 65535], "me at the mart": [0, 65535], "at the mart i": [0, 65535], "the mart i haue": [0, 65535], "mart i haue your": [0, 65535], "i haue your hand": [0, 65535], "haue your hand to": [0, 65535], "your hand to show": [0, 65535], "hand to show if": [0, 65535], "to show if the": [0, 65535], "show if the skin": [0, 65535], "if the skin were": [0, 65535], "the skin were parchment": [0, 65535], "skin were parchment the": [0, 65535], "were parchment the blows": [0, 65535], "parchment the blows you": [0, 65535], "the blows you gaue": [0, 65535], "blows you gaue were": [0, 65535], "you gaue were ink": [0, 65535], "gaue were ink your": [0, 65535], "were ink your owne": [0, 65535], "ink your owne hand": [0, 65535], "your owne hand writing": [0, 65535], "owne hand writing would": [0, 65535], "hand writing would tell": [0, 65535], "writing would tell you": [0, 65535], "would tell you what": [0, 65535], "tell you what i": [0, 65535], "you what i thinke": [0, 65535], "what i thinke e": [0, 65535], "i thinke e ant": [0, 65535], "thinke e ant i": [0, 65535], "e ant i thinke": [0, 65535], "ant i thinke thou": [0, 65535], "i thinke thou art": [0, 65535], "thinke thou art an": [0, 65535], "thou art an asse": [0, 65535], "art an asse e": [0, 65535], "an asse e dro": [0, 65535], "asse e dro marry": [0, 65535], "e dro marry so": [0, 65535], "dro marry so it": [0, 65535], "marry so it doth": [0, 65535], "so it doth appeare": [0, 65535], "it doth appeare by": [0, 65535], "doth appeare by the": [0, 65535], "appeare by the wrongs": [0, 65535], "by the wrongs i": [0, 65535], "the wrongs i suffer": [0, 65535], "wrongs i suffer and": [0, 65535], "i suffer and the": [0, 65535], "suffer and the blowes": [0, 65535], "and the blowes i": [0, 65535], "the blowes i beare": [0, 65535], "blowes i beare i": [0, 65535], "i beare i should": [0, 65535], "beare i should kicke": [0, 65535], "i should kicke being": [0, 65535], "should kicke being kickt": [0, 65535], "kicke being kickt and": [0, 65535], "being kickt and being": [0, 65535], "kickt and being at": [0, 65535], "and being at that": [0, 65535], "being at that passe": [0, 65535], "at that passe you": [0, 65535], "that passe you would": [0, 65535], "passe you would keepe": [0, 65535], "you would keepe from": [0, 65535], "would keepe from my": [0, 65535], "keepe from my heeles": [0, 65535], "from my heeles and": [0, 65535], "my heeles and beware": [0, 65535], "heeles and beware of": [0, 65535], "and beware of an": [0, 65535], "beware of an asse": [0, 65535], "of an asse e": [0, 65535], "an asse e an": [0, 65535], "asse e an y'are": [0, 65535], "e an y'are sad": [0, 65535], "an y'are sad signior": [0, 65535], "y'are sad signior balthazar": [0, 65535], "sad signior balthazar pray": [0, 65535], "signior balthazar pray god": [0, 65535], "balthazar pray god our": [0, 65535], "pray god our cheer": [0, 65535], "god our cheer may": [0, 65535], "our cheer may answer": [0, 65535], "cheer may answer my": [0, 65535], "may answer my good": [0, 65535], "answer my good will": [0, 65535], "my good will and": [0, 65535], "good will and your": [0, 65535], "will and your good": [0, 65535], "and your good welcom": [0, 65535], "your good welcom here": [0, 65535], "good welcom here bal": [0, 65535], "welcom here bal i": [0, 65535], "here bal i hold": [0, 65535], "bal i hold your": [0, 65535], "i hold your dainties": [0, 65535], "hold your dainties cheap": [0, 65535], "your dainties cheap sir": [0, 65535], "dainties cheap sir your": [0, 65535], "cheap sir your welcom": [0, 65535], "sir your welcom deer": [0, 65535], "your welcom deer e": [0, 65535], "welcom deer e an": [0, 65535], "deer e an oh": [0, 65535], "e an oh signior": [0, 65535], "an oh signior balthazar": [0, 65535], "oh signior balthazar either": [0, 65535], "signior balthazar either at": [0, 65535], "balthazar either at flesh": [0, 65535], "either at flesh or": [0, 65535], "at flesh or fish": [0, 65535], "flesh or fish a": [0, 65535], "or fish a table": [0, 65535], "fish a table full": [0, 65535], "a table full of": [0, 65535], "table full of welcome": [0, 65535], "full of welcome makes": [0, 65535], "of welcome makes scarce": [0, 65535], "welcome makes scarce one": [0, 65535], "makes scarce one dainty": [0, 65535], "scarce one dainty dish": [0, 65535], "one dainty dish bal": [0, 65535], "dainty dish bal good": [0, 65535], "dish bal good meat": [0, 65535], "bal good meat sir": [0, 65535], "good meat sir is": [0, 65535], "meat sir is co": [0, 65535], "sir is co m": [0, 65535], "is co m mon": [0, 65535], "co m mon that": [0, 65535], "m mon that euery": [0, 65535], "mon that euery churle": [0, 65535], "that euery churle affords": [0, 65535], "euery churle affords anti": [0, 65535], "churle affords anti and": [0, 65535], "affords anti and welcome": [0, 65535], "anti and welcome more": [0, 65535], "and welcome more common": [0, 65535], "welcome more common for": [0, 65535], "more common for thats": [0, 65535], "common for thats nothing": [0, 65535], "for thats nothing but": [0, 65535], "thats nothing but words": [0, 65535], "nothing but words bal": [0, 65535], "but words bal small": [0, 65535], "words bal small cheere": [0, 65535], "bal small cheere and": [0, 65535], "small cheere and great": [0, 65535], "cheere and great welcome": [0, 65535], "and great welcome makes": [0, 65535], "great welcome makes a": [0, 65535], "welcome makes a merrie": [0, 65535], "makes a merrie feast": [0, 65535], "a merrie feast anti": [0, 65535], "merrie feast anti i": [0, 65535], "feast anti i to": [0, 65535], "anti i to a": [0, 65535], "i to a niggardly": [0, 65535], "to a niggardly host": [0, 65535], "a niggardly host and": [0, 65535], "niggardly host and more": [0, 65535], "host and more sparing": [0, 65535], "and more sparing guest": [0, 65535], "more sparing guest but": [0, 65535], "sparing guest but though": [0, 65535], "guest but though my": [0, 65535], "but though my cates": [0, 65535], "though my cates be": [0, 65535], "my cates be meane": [0, 65535], "cates be meane take": [0, 65535], "be meane take them": [0, 65535], "meane take them in": [0, 65535], "take them in good": [0, 65535], "them in good part": [0, 65535], "in good part better": [0, 65535], "good part better cheere": [0, 65535], "part better cheere may": [0, 65535], "better cheere may you": [0, 65535], "cheere may you haue": [0, 65535], "may you haue but": [0, 65535], "you haue but not": [0, 65535], "haue but not with": [0, 65535], "but not with better": [0, 65535], "not with better hart": [0, 65535], "with better hart but": [0, 65535], "better hart but soft": [0, 65535], "hart but soft my": [0, 65535], "but soft my doore": [0, 65535], "soft my doore is": [0, 65535], "my doore is lockt": [0, 65535], "doore is lockt goe": [0, 65535], "is lockt goe bid": [0, 65535], "lockt goe bid them": [0, 65535], "goe bid them let": [0, 65535], "bid them let vs": [0, 65535], "them let vs in": [0, 65535], "let vs in e": [0, 65535], "vs in e dro": [0, 65535], "in e dro maud": [0, 65535], "e dro maud briget": [0, 65535], "dro maud briget marian": [0, 65535], "maud briget marian cisley": [0, 65535], "briget marian cisley gillian": [0, 65535], "marian cisley gillian ginn": [0, 65535], "cisley gillian ginn s": [0, 65535], "gillian ginn s dro": [0, 65535], "ginn s dro mome": [0, 65535], "s dro mome malthorse": [0, 65535], "dro mome malthorse capon": [0, 65535], "mome malthorse capon coxcombe": [0, 65535], "malthorse capon coxcombe idiot": [0, 65535], "capon coxcombe idiot patch": [0, 65535], "coxcombe idiot patch either": [0, 65535], "idiot patch either get": [0, 65535], "patch either get thee": [0, 65535], "either get thee from": [0, 65535], "get thee from the": [0, 65535], "thee from the dore": [0, 65535], "from the dore or": [0, 65535], "the dore or sit": [0, 65535], "dore or sit downe": [0, 65535], "or sit downe at": [0, 65535], "sit downe at the": [0, 65535], "downe at the hatch": [0, 65535], "at the hatch dost": [0, 65535], "the hatch dost thou": [0, 65535], "hatch dost thou coniure": [0, 65535], "dost thou coniure for": [0, 65535], "thou coniure for wenches": [0, 65535], "coniure for wenches that": [0, 65535], "for wenches that thou": [0, 65535], "wenches that thou calst": [0, 65535], "that thou calst for": [0, 65535], "thou calst for such": [0, 65535], "calst for such store": [0, 65535], "for such store when": [0, 65535], "such store when one": [0, 65535], "store when one is": [0, 65535], "when one is one": [0, 65535], "one is one too": [0, 65535], "is one too many": [0, 65535], "one too many goe": [0, 65535], "too many goe get": [0, 65535], "many goe get thee": [0, 65535], "goe get thee from": [0, 65535], "from the dore e": [0, 65535], "the dore e dro": [0, 65535], "dore e dro what": [0, 65535], "e dro what patch": [0, 65535], "dro what patch is": [0, 65535], "what patch is made": [0, 65535], "patch is made our": [0, 65535], "is made our porter": [0, 65535], "made our porter my": [0, 65535], "our porter my master": [0, 65535], "porter my master stayes": [0, 65535], "my master stayes in": [0, 65535], "master stayes in the": [0, 65535], "stayes in the street": [0, 65535], "in the street s": [0, 65535], "the street s dro": [0, 65535], "street s dro let": [0, 65535], "s dro let him": [0, 65535], "dro let him walke": [0, 65535], "let him walke from": [0, 65535], "him walke from whence": [0, 65535], "walke from whence he": [0, 65535], "from whence he came": [0, 65535], "whence he came lest": [0, 65535], "he came lest hee": [0, 65535], "came lest hee catch": [0, 65535], "lest hee catch cold": [0, 65535], "hee catch cold on's": [0, 65535], "catch cold on's feet": [0, 65535], "cold on's feet e": [0, 65535], "on's feet e ant": [0, 65535], "feet e ant who": [0, 65535], "e ant who talks": [0, 65535], "ant who talks within": [0, 65535], "who talks within there": [0, 65535], "talks within there hoa": [0, 65535], "within there hoa open": [0, 65535], "there hoa open the": [0, 65535], "hoa open the dore": [0, 65535], "open the dore s": [0, 65535], "the dore s dro": [0, 65535], "dore s dro right": [0, 65535], "s dro right sir": [0, 65535], "dro right sir ile": [0, 65535], "right sir ile tell": [0, 65535], "sir ile tell you": [0, 65535], "ile tell you when": [0, 65535], "tell you when and": [0, 65535], "you when and you'll": [0, 65535], "when and you'll tell": [0, 65535], "and you'll tell me": [0, 65535], "you'll tell me wherefore": [0, 65535], "tell me wherefore ant": [0, 65535], "me wherefore ant wherefore": [0, 65535], "wherefore ant wherefore for": [0, 65535], "ant wherefore for my": [0, 65535], "wherefore for my dinner": [0, 65535], "for my dinner i": [0, 65535], "my dinner i haue": [0, 65535], "dinner i haue not": [0, 65535], "i haue not din'd": [0, 65535], "haue not din'd to": [0, 65535], "not din'd to day": [0, 65535], "din'd to day s": [0, 65535], "to day s dro": [0, 65535], "day s dro nor": [0, 65535], "s dro nor to": [0, 65535], "dro nor to day": [0, 65535], "nor to day here": [0, 65535], "to day here you": [0, 65535], "day here you must": [0, 65535], "here you must not": [0, 65535], "you must not come": [0, 65535], "must not come againe": [0, 65535], "not come againe when": [0, 65535], "come againe when you": [0, 65535], "againe when you may": [0, 65535], "when you may anti": [0, 65535], "you may anti what": [0, 65535], "may anti what art": [0, 65535], "anti what art thou": [0, 65535], "what art thou that": [0, 65535], "art thou that keep'st": [0, 65535], "thou that keep'st mee": [0, 65535], "that keep'st mee out": [0, 65535], "keep'st mee out from": [0, 65535], "mee out from the": [0, 65535], "out from the howse": [0, 65535], "from the howse i": [0, 65535], "the howse i owe": [0, 65535], "howse i owe s": [0, 65535], "i owe s dro": [0, 65535], "owe s dro the": [0, 65535], "s dro the porter": [0, 65535], "dro the porter for": [0, 65535], "the porter for this": [0, 65535], "porter for this time": [0, 65535], "for this time sir": [0, 65535], "this time sir and": [0, 65535], "time sir and my": [0, 65535], "sir and my name": [0, 65535], "and my name is": [0, 65535], "my name is dromio": [0, 65535], "name is dromio e": [0, 65535], "is dromio e dro": [0, 65535], "dromio e dro o": [0, 65535], "e dro o villaine": [0, 65535], "dro o villaine thou": [0, 65535], "o villaine thou hast": [0, 65535], "villaine thou hast stolne": [0, 65535], "thou hast stolne both": [0, 65535], "hast stolne both mine": [0, 65535], "stolne both mine office": [0, 65535], "both mine office and": [0, 65535], "mine office and my": [0, 65535], "office and my name": [0, 65535], "and my name the": [0, 65535], "my name the one": [0, 65535], "name the one nere": [0, 65535], "the one nere got": [0, 65535], "one nere got me": [0, 65535], "nere got me credit": [0, 65535], "got me credit the": [0, 65535], "me credit the other": [0, 65535], "credit the other mickle": [0, 65535], "the other mickle blame": [0, 65535], "other mickle blame if": [0, 65535], "mickle blame if thou": [0, 65535], "blame if thou hadst": [0, 65535], "if thou hadst beene": [0, 65535], "thou hadst beene dromio": [0, 65535], "hadst beene dromio to": [0, 65535], "beene dromio to day": [0, 65535], "dromio to day in": [0, 65535], "to day in my": [0, 65535], "day in my place": [0, 65535], "in my place thou": [0, 65535], "my place thou wouldst": [0, 65535], "place thou wouldst haue": [0, 65535], "thou wouldst haue chang'd": [0, 65535], "wouldst haue chang'd thy": [0, 65535], "haue chang'd thy face": [0, 65535], "chang'd thy face for": [0, 65535], "thy face for a": [0, 65535], "face for a name": [0, 65535], "for a name or": [0, 65535], "a name or thy": [0, 65535], "name or thy name": [0, 65535], "or thy name for": [0, 65535], "thy name for an": [0, 65535], "name for an asse": [0, 65535], "for an asse enter": [0, 65535], "an asse enter luce": [0, 65535], "asse enter luce luce": [0, 65535], "enter luce luce what": [0, 65535], "luce luce what a": [0, 65535], "luce what a coile": [0, 65535], "what a coile is": [0, 65535], "a coile is there": [0, 65535], "coile is there dromio": [0, 65535], "is there dromio who": [0, 65535], "there dromio who are": [0, 65535], "dromio who are those": [0, 65535], "who are those at": [0, 65535], "are those at the": [0, 65535], "those at the gate": [0, 65535], "at the gate e": [0, 65535], "the gate e dro": [0, 65535], "gate e dro let": [0, 65535], "e dro let my": [0, 65535], "dro let my master": [0, 65535], "let my master in": [0, 65535], "my master in luce": [0, 65535], "master in luce luce": [0, 65535], "in luce luce faith": [0, 65535], "luce luce faith no": [0, 65535], "luce faith no hee": [0, 65535], "faith no hee comes": [0, 65535], "no hee comes too": [0, 65535], "hee comes too late": [0, 65535], "comes too late and": [0, 65535], "too late and so": [0, 65535], "late and so tell": [0, 65535], "and so tell your": [0, 65535], "so tell your master": [0, 65535], "tell your master e": [0, 65535], "your master e dro": [0, 65535], "master e dro o": [0, 65535], "e dro o lord": [0, 65535], "dro o lord i": [0, 65535], "o lord i must": [0, 65535], "lord i must laugh": [0, 65535], "i must laugh haue": [0, 65535], "must laugh haue at": [0, 65535], "laugh haue at you": [0, 65535], "haue at you with": [0, 65535], "at you with a": [0, 65535], "you with a prouerbe": [0, 65535], "with a prouerbe shall": [0, 65535], "a prouerbe shall i": [0, 65535], "prouerbe shall i set": [0, 65535], "shall i set in": [0, 65535], "i set in my": [0, 65535], "set in my staffe": [0, 65535], "in my staffe luce": [0, 65535], "my staffe luce haue": [0, 65535], "staffe luce haue at": [0, 65535], "luce haue at you": [0, 65535], "at you with another": [0, 65535], "you with another that's": [0, 65535], "with another that's when": [0, 65535], "another that's when can": [0, 65535], "that's when can you": [0, 65535], "when can you tell": [0, 65535], "can you tell s": [0, 65535], "you tell s dro": [0, 65535], "tell s dro if": [0, 65535], "s dro if thy": [0, 65535], "dro if thy name": [0, 65535], "if thy name be": [0, 65535], "thy name be called": [0, 65535], "name be called luce": [0, 65535], "be called luce luce": [0, 65535], "called luce luce thou": [0, 65535], "luce luce thou hast": [0, 65535], "luce thou hast an": [0, 65535], "thou hast an swer'd": [0, 65535], "hast an swer'd him": [0, 65535], "an swer'd him well": [0, 65535], "swer'd him well anti": [0, 65535], "him well anti doe": [0, 65535], "well anti doe you": [0, 65535], "anti doe you heare": [0, 65535], "doe you heare you": [0, 65535], "you heare you minion": [0, 65535], "heare you minion you'll": [0, 65535], "you minion you'll let": [0, 65535], "minion you'll let vs": [0, 65535], "you'll let vs in": [0, 65535], "let vs in i": [0, 65535], "vs in i hope": [0, 65535], "in i hope luce": [0, 65535], "i hope luce i": [0, 65535], "hope luce i thought": [0, 65535], "luce i thought to": [0, 65535], "i thought to haue": [0, 65535], "thought to haue askt": [0, 65535], "to haue askt you": [0, 65535], "haue askt you s": [0, 65535], "askt you s dro": [0, 65535], "you s dro and": [0, 65535], "s dro and you": [0, 65535], "dro and you said": [0, 65535], "and you said no": [0, 65535], "you said no e": [0, 65535], "said no e dro": [0, 65535], "no e dro so": [0, 65535], "e dro so come": [0, 65535], "dro so come helpe": [0, 65535], "so come helpe well": [0, 65535], "come helpe well strooke": [0, 65535], "helpe well strooke there": [0, 65535], "well strooke there was": [0, 65535], "strooke there was blow": [0, 65535], "there was blow for": [0, 65535], "was blow for blow": [0, 65535], "blow for blow anti": [0, 65535], "for blow anti thou": [0, 65535], "blow anti thou baggage": [0, 65535], "anti thou baggage let": [0, 65535], "thou baggage let me": [0, 65535], "baggage let me in": [0, 65535], "let me in luce": [0, 65535], "me in luce can": [0, 65535], "in luce can you": [0, 65535], "luce can you tell": [0, 65535], "can you tell for": [0, 65535], "you tell for whose": [0, 65535], "tell for whose sake": [0, 65535], "for whose sake e": [0, 65535], "whose sake e drom": [0, 65535], "sake e drom master": [0, 65535], "e drom master knocke": [0, 65535], "drom master knocke the": [0, 65535], "master knocke the doore": [0, 65535], "knocke the doore hard": [0, 65535], "the doore hard luce": [0, 65535], "doore hard luce let": [0, 65535], "hard luce let him": [0, 65535], "luce let him knocke": [0, 65535], "let him knocke till": [0, 65535], "him knocke till it": [0, 65535], "knocke till it ake": [0, 65535], "till it ake anti": [0, 65535], "it ake anti you'll": [0, 65535], "ake anti you'll crie": [0, 65535], "anti you'll crie for": [0, 65535], "you'll crie for this": [0, 65535], "crie for this minion": [0, 65535], "for this minion if": [0, 65535], "this minion if i": [0, 65535], "minion if i beat": [0, 65535], "if i beat the": [0, 65535], "i beat the doore": [0, 65535], "beat the doore downe": [0, 65535], "the doore downe luce": [0, 65535], "doore downe luce what": [0, 65535], "downe luce what needs": [0, 65535], "luce what needs all": [0, 65535], "what needs all that": [0, 65535], "needs all that and": [0, 65535], "all that and a": [0, 65535], "that and a paire": [0, 65535], "and a paire of": [0, 65535], "a paire of stocks": [0, 65535], "paire of stocks in": [0, 65535], "of stocks in the": [0, 65535], "stocks in the towne": [0, 65535], "in the towne enter": [0, 65535], "the towne enter adriana": [0, 65535], "towne enter adriana adr": [0, 65535], "enter adriana adr who": [0, 65535], "adriana adr who is": [0, 65535], "adr who is that": [0, 65535], "who is that at": [0, 65535], "is that at the": [0, 65535], "that at the doore": [0, 65535], "at the doore that": [0, 65535], "the doore that keeps": [0, 65535], "doore that keeps all": [0, 65535], "that keeps all this": [0, 65535], "keeps all this noise": [0, 65535], "all this noise s": [0, 65535], "this noise s dro": [0, 65535], "noise s dro by": [0, 65535], "s dro by my": [0, 65535], "dro by my troth": [0, 65535], "by my troth your": [0, 65535], "my troth your towne": [0, 65535], "troth your towne is": [0, 65535], "your towne is troubled": [0, 65535], "towne is troubled with": [0, 65535], "is troubled with vnruly": [0, 65535], "troubled with vnruly boies": [0, 65535], "with vnruly boies anti": [0, 65535], "vnruly boies anti are": [0, 65535], "boies anti are you": [0, 65535], "anti are you there": [0, 65535], "are you there wife": [0, 65535], "you there wife you": [0, 65535], "there wife you might": [0, 65535], "wife you might haue": [0, 65535], "you might haue come": [0, 65535], "might haue come before": [0, 65535], "haue come before adri": [0, 65535], "come before adri your": [0, 65535], "before adri your wife": [0, 65535], "adri your wife sir": [0, 65535], "your wife sir knaue": [0, 65535], "wife sir knaue go": [0, 65535], "sir knaue go get": [0, 65535], "knaue go get you": [0, 65535], "go get you from": [0, 65535], "get you from the": [0, 65535], "you from the dore": [0, 65535], "dore e dro if": [0, 65535], "e dro if you": [0, 65535], "dro if you went": [0, 65535], "if you went in": [0, 65535], "you went in paine": [0, 65535], "went in paine master": [0, 65535], "in paine master this": [0, 65535], "paine master this knaue": [0, 65535], "master this knaue wold": [0, 65535], "this knaue wold goe": [0, 65535], "knaue wold goe sore": [0, 65535], "wold goe sore angelo": [0, 65535], "goe sore angelo heere": [0, 65535], "sore angelo heere is": [0, 65535], "angelo heere is neither": [0, 65535], "heere is neither cheere": [0, 65535], "is neither cheere sir": [0, 65535], "neither cheere sir nor": [0, 65535], "cheere sir nor welcome": [0, 65535], "sir nor welcome we": [0, 65535], "nor welcome we would": [0, 65535], "welcome we would faine": [0, 65535], "we would faine haue": [0, 65535], "would faine haue either": [0, 65535], "faine haue either baltz": [0, 65535], "haue either baltz in": [0, 65535], "either baltz in debating": [0, 65535], "baltz in debating which": [0, 65535], "in debating which was": [0, 65535], "debating which was best": [0, 65535], "which was best wee": [0, 65535], "was best wee shall": [0, 65535], "best wee shall part": [0, 65535], "wee shall part with": [0, 65535], "shall part with neither": [0, 65535], "part with neither e": [0, 65535], "with neither e dro": [0, 65535], "neither e dro they": [0, 65535], "e dro they stand": [0, 65535], "dro they stand at": [0, 65535], "they stand at the": [0, 65535], "stand at the doore": [0, 65535], "at the doore master": [0, 65535], "the doore master bid": [0, 65535], "doore master bid them": [0, 65535], "master bid them welcome": [0, 65535], "bid them welcome hither": [0, 65535], "them welcome hither anti": [0, 65535], "welcome hither anti there": [0, 65535], "hither anti there is": [0, 65535], "anti there is something": [0, 65535], "there is something in": [0, 65535], "is something in the": [0, 65535], "something in the winde": [0, 65535], "in the winde that": [0, 65535], "the winde that we": [0, 65535], "winde that we cannot": [0, 65535], "that we cannot get": [0, 65535], "we cannot get in": [0, 65535], "cannot get in e": [0, 65535], "get in e dro": [0, 65535], "in e dro you": [0, 65535], "e dro you would": [0, 65535], "dro you would say": [0, 65535], "you would say so": [0, 65535], "would say so master": [0, 65535], "say so master if": [0, 65535], "so master if your": [0, 65535], "master if your garments": [0, 65535], "if your garments were": [0, 65535], "your garments were thin": [0, 65535], "garments were thin your": [0, 65535], "were thin your cake": [0, 65535], "thin your cake here": [0, 65535], "your cake here is": [0, 65535], "cake here is warme": [0, 65535], "here is warme within": [0, 65535], "is warme within you": [0, 65535], "warme within you stand": [0, 65535], "within you stand here": [0, 65535], "you stand here in": [0, 65535], "stand here in the": [0, 65535], "here in the cold": [0, 65535], "in the cold it": [0, 65535], "the cold it would": [0, 65535], "cold it would make": [0, 65535], "it would make a": [0, 65535], "would make a man": [0, 65535], "make a man mad": [0, 65535], "a man mad as": [0, 65535], "man mad as a": [0, 65535], "mad as a bucke": [0, 65535], "as a bucke to": [0, 65535], "a bucke to be": [0, 65535], "bucke to be so": [0, 65535], "to be so bought": [0, 65535], "be so bought and": [0, 65535], "so bought and sold": [0, 65535], "bought and sold ant": [0, 65535], "and sold ant go": [0, 65535], "sold ant go fetch": [0, 65535], "ant go fetch me": [0, 65535], "go fetch me something": [0, 65535], "fetch me something ile": [0, 65535], "me something ile break": [0, 65535], "something ile break ope": [0, 65535], "ile break ope the": [0, 65535], "break ope the gate": [0, 65535], "ope the gate s": [0, 65535], "the gate s dro": [0, 65535], "gate s dro breake": [0, 65535], "s dro breake any": [0, 65535], "dro breake any breaking": [0, 65535], "breake any breaking here": [0, 65535], "any breaking here and": [0, 65535], "breaking here and ile": [0, 65535], "here and ile breake": [0, 65535], "and ile breake your": [0, 65535], "ile breake your knaues": [0, 65535], "breake your knaues pate": [0, 65535], "your knaues pate e": [0, 65535], "knaues pate e dro": [0, 65535], "pate e dro a": [0, 65535], "e dro a man": [0, 65535], "dro a man may": [0, 65535], "a man may breake": [0, 65535], "man may breake a": [0, 65535], "may breake a word": [0, 65535], "breake a word with": [0, 65535], "a word with your": [0, 65535], "word with your sir": [0, 65535], "with your sir and": [0, 65535], "your sir and words": [0, 65535], "sir and words are": [0, 65535], "and words are but": [0, 65535], "words are but winde": [0, 65535], "are but winde i": [0, 65535], "but winde i and": [0, 65535], "winde i and breake": [0, 65535], "i and breake it": [0, 65535], "and breake it in": [0, 65535], "breake it in your": [0, 65535], "it in your face": [0, 65535], "in your face so": [0, 65535], "your face so he": [0, 65535], "face so he break": [0, 65535], "so he break it": [0, 65535], "he break it not": [0, 65535], "break it not behinde": [0, 65535], "it not behinde s": [0, 65535], "not behinde s dro": [0, 65535], "behinde s dro it": [0, 65535], "s dro it seemes": [0, 65535], "dro it seemes thou": [0, 65535], "it seemes thou want'st": [0, 65535], "seemes thou want'st breaking": [0, 65535], "thou want'st breaking out": [0, 65535], "want'st breaking out vpon": [0, 65535], "breaking out vpon thee": [0, 65535], "out vpon thee hinde": [0, 65535], "vpon thee hinde e": [0, 65535], "thee hinde e dro": [0, 65535], "hinde e dro here's": [0, 65535], "e dro here's too": [0, 65535], "dro here's too much": [0, 65535], "here's too much out": [0, 65535], "too much out vpon": [0, 65535], "much out vpon thee": [0, 65535], "out vpon thee i": [0, 65535], "vpon thee i pray": [0, 65535], "thee i pray thee": [0, 65535], "i pray thee let": [0, 65535], "pray thee let me": [0, 65535], "thee let me in": [0, 65535], "let me in s": [0, 65535], "me in s dro": [0, 65535], "in s dro i": [0, 65535], "s dro i when": [0, 65535], "dro i when fowles": [0, 65535], "i when fowles haue": [0, 65535], "when fowles haue no": [0, 65535], "fowles haue no feathers": [0, 65535], "haue no feathers and": [0, 65535], "no feathers and fish": [0, 65535], "feathers and fish haue": [0, 65535], "and fish haue no": [0, 65535], "fish haue no fin": [0, 65535], "haue no fin ant": [0, 65535], "no fin ant well": [0, 65535], "fin ant well ile": [0, 65535], "ant well ile breake": [0, 65535], "well ile breake in": [0, 65535], "ile breake in go": [0, 65535], "breake in go borrow": [0, 65535], "in go borrow me": [0, 65535], "go borrow me a": [0, 65535], "borrow me a crow": [0, 65535], "me a crow e": [0, 65535], "a crow e dro": [0, 65535], "crow e dro a": [0, 65535], "e dro a crow": [0, 65535], "dro a crow without": [0, 65535], "a crow without feather": [0, 65535], "crow without feather master": [0, 65535], "without feather master meane": [0, 65535], "feather master meane you": [0, 65535], "master meane you so": [0, 65535], "meane you so for": [0, 65535], "you so for a": [0, 65535], "so for a fish": [0, 65535], "for a fish without": [0, 65535], "a fish without a": [0, 65535], "fish without a finne": [0, 65535], "without a finne ther's": [0, 65535], "a finne ther's a": [0, 65535], "finne ther's a fowle": [0, 65535], "ther's a fowle without": [0, 65535], "a fowle without a": [0, 65535], "fowle without a fether": [0, 65535], "without a fether if": [0, 65535], "a fether if a": [0, 65535], "fether if a crow": [0, 65535], "if a crow help": [0, 65535], "a crow help vs": [0, 65535], "crow help vs in": [0, 65535], "help vs in sirra": [0, 65535], "vs in sirra wee'll": [0, 65535], "in sirra wee'll plucke": [0, 65535], "sirra wee'll plucke a": [0, 65535], "wee'll plucke a crow": [0, 65535], "plucke a crow together": [0, 65535], "a crow together ant": [0, 65535], "crow together ant go": [0, 65535], "together ant go get": [0, 65535], "ant go get thee": [0, 65535], "go get thee gon": [0, 65535], "get thee gon fetch": [0, 65535], "thee gon fetch me": [0, 65535], "gon fetch me an": [0, 65535], "fetch me an iron": [0, 65535], "me an iron crow": [0, 65535], "an iron crow balth": [0, 65535], "iron crow balth haue": [0, 65535], "crow balth haue patience": [0, 65535], "balth haue patience sir": [0, 65535], "haue patience sir oh": [0, 65535], "patience sir oh let": [0, 65535], "sir oh let it": [0, 65535], "oh let it not": [0, 65535], "let it not be": [0, 65535], "it not be so": [0, 65535], "not be so heerein": [0, 65535], "be so heerein you": [0, 65535], "so heerein you warre": [0, 65535], "heerein you warre against": [0, 65535], "you warre against your": [0, 65535], "warre against your reputation": [0, 65535], "against your reputation and": [0, 65535], "your reputation and draw": [0, 65535], "reputation and draw within": [0, 65535], "and draw within the": [0, 65535], "draw within the compasse": [0, 65535], "within the compasse of": [0, 65535], "the compasse of suspect": [0, 65535], "compasse of suspect th'": [0, 65535], "of suspect th' vnuiolated": [0, 65535], "suspect th' vnuiolated honor": [0, 65535], "th' vnuiolated honor of": [0, 65535], "vnuiolated honor of your": [0, 65535], "honor of your wife": [0, 65535], "of your wife once": [0, 65535], "your wife once this": [0, 65535], "wife once this your": [0, 65535], "once this your long": [0, 65535], "this your long experience": [0, 65535], "your long experience of": [0, 65535], "long experience of your": [0, 65535], "experience of your wisedome": [0, 65535], "of your wisedome her": [0, 65535], "your wisedome her sober": [0, 65535], "wisedome her sober vertue": [0, 65535], "her sober vertue yeares": [0, 65535], "sober vertue yeares and": [0, 65535], "vertue yeares and modestie": [0, 65535], "yeares and modestie plead": [0, 65535], "and modestie plead on": [0, 65535], "modestie plead on your": [0, 65535], "plead on your part": [0, 65535], "on your part some": [0, 65535], "your part some cause": [0, 65535], "part some cause to": [0, 65535], "some cause to you": [0, 65535], "cause to you vnknowne": [0, 65535], "to you vnknowne and": [0, 65535], "you vnknowne and doubt": [0, 65535], "vnknowne and doubt not": [0, 65535], "and doubt not sir": [0, 65535], "doubt not sir but": [0, 65535], "not sir but she": [0, 65535], "sir but she will": [0, 65535], "but she will well": [0, 65535], "she will well excuse": [0, 65535], "will well excuse why": [0, 65535], "well excuse why at": [0, 65535], "excuse why at this": [0, 65535], "why at this time": [0, 65535], "at this time the": [0, 65535], "this time the dores": [0, 65535], "time the dores are": [0, 65535], "the dores are made": [0, 65535], "dores are made against": [0, 65535], "are made against you": [0, 65535], "made against you be": [0, 65535], "against you be rul'd": [0, 65535], "you be rul'd by": [0, 65535], "be rul'd by me": [0, 65535], "rul'd by me depart": [0, 65535], "by me depart in": [0, 65535], "me depart in patience": [0, 65535], "depart in patience and": [0, 65535], "in patience and let": [0, 65535], "patience and let vs": [0, 65535], "and let vs to": [0, 65535], "let vs to the": [0, 65535], "vs to the tyger": [0, 65535], "to the tyger all": [0, 65535], "the tyger all to": [0, 65535], "tyger all to dinner": [0, 65535], "all to dinner and": [0, 65535], "to dinner and about": [0, 65535], "dinner and about euening": [0, 65535], "and about euening come": [0, 65535], "about euening come your": [0, 65535], "euening come your selfe": [0, 65535], "come your selfe alone": [0, 65535], "your selfe alone to": [0, 65535], "selfe alone to know": [0, 65535], "alone to know the": [0, 65535], "to know the reason": [0, 65535], "know the reason of": [0, 65535], "the reason of this": [0, 65535], "reason of this strange": [0, 65535], "of this strange restraint": [0, 65535], "this strange restraint if": [0, 65535], "strange restraint if by": [0, 65535], "restraint if by strong": [0, 65535], "if by strong hand": [0, 65535], "by strong hand you": [0, 65535], "strong hand you offer": [0, 65535], "hand you offer to": [0, 65535], "you offer to breake": [0, 65535], "offer to breake in": [0, 65535], "to breake in now": [0, 65535], "breake in now in": [0, 65535], "in now in the": [0, 65535], "now in the stirring": [0, 65535], "in the stirring passage": [0, 65535], "the stirring passage of": [0, 65535], "stirring passage of the": [0, 65535], "passage of the day": [0, 65535], "of the day a": [0, 65535], "the day a vulgar": [0, 65535], "day a vulgar comment": [0, 65535], "a vulgar comment will": [0, 65535], "vulgar comment will be": [0, 65535], "comment will be made": [0, 65535], "will be made of": [0, 65535], "be made of it": [0, 65535], "made of it and": [0, 65535], "of it and that": [0, 65535], "it and that supposed": [0, 65535], "and that supposed by": [0, 65535], "that supposed by the": [0, 65535], "supposed by the common": [0, 65535], "by the common rowt": [0, 65535], "the common rowt against": [0, 65535], "common rowt against your": [0, 65535], "rowt against your yet": [0, 65535], "against your yet vngalled": [0, 65535], "your yet vngalled estimation": [0, 65535], "yet vngalled estimation that": [0, 65535], "vngalled estimation that may": [0, 65535], "estimation that may with": [0, 65535], "that may with foule": [0, 65535], "may with foule intrusion": [0, 65535], "with foule intrusion enter": [0, 65535], "foule intrusion enter in": [0, 65535], "intrusion enter in and": [0, 65535], "enter in and dwell": [0, 65535], "in and dwell vpon": [0, 65535], "and dwell vpon your": [0, 65535], "dwell vpon your graue": [0, 65535], "vpon your graue when": [0, 65535], "your graue when you": [0, 65535], "graue when you are": [0, 65535], "when you are dead": [0, 65535], "you are dead for": [0, 65535], "are dead for slander": [0, 65535], "dead for slander liues": [0, 65535], "for slander liues vpon": [0, 65535], "slander liues vpon succession": [0, 65535], "liues vpon succession for": [0, 65535], "vpon succession for euer": [0, 65535], "succession for euer hows'd": [0, 65535], "for euer hows'd where": [0, 65535], "euer hows'd where it": [0, 65535], "hows'd where it gets": [0, 65535], "where it gets possession": [0, 65535], "it gets possession anti": [0, 65535], "gets possession anti you": [0, 65535], "possession anti you haue": [0, 65535], "anti you haue preuail'd": [0, 65535], "you haue preuail'd i": [0, 65535], "haue preuail'd i will": [0, 65535], "preuail'd i will depart": [0, 65535], "i will depart in": [0, 65535], "will depart in quiet": [0, 65535], "depart in quiet and": [0, 65535], "in quiet and in": [0, 65535], "quiet and in despight": [0, 65535], "and in despight of": [0, 65535], "in despight of mirth": [0, 65535], "despight of mirth meane": [0, 65535], "of mirth meane to": [0, 65535], "mirth meane to be": [0, 65535], "meane to be merrie": [0, 65535], "to be merrie i": [0, 65535], "be merrie i know": [0, 65535], "merrie i know a": [0, 65535], "i know a wench": [0, 65535], "know a wench of": [0, 65535], "a wench of excellent": [0, 65535], "wench of excellent discourse": [0, 65535], "of excellent discourse prettie": [0, 65535], "excellent discourse prettie and": [0, 65535], "discourse prettie and wittie": [0, 65535], "prettie and wittie wilde": [0, 65535], "and wittie wilde and": [0, 65535], "wittie wilde and yet": [0, 65535], "wilde and yet too": [0, 65535], "and yet too gentle": [0, 65535], "yet too gentle there": [0, 65535], "too gentle there will": [0, 65535], "gentle there will we": [0, 65535], "there will we dine": [0, 65535], "will we dine this": [0, 65535], "we dine this woman": [0, 65535], "dine this woman that": [0, 65535], "this woman that i": [0, 65535], "woman that i meane": [0, 65535], "that i meane my": [0, 65535], "i meane my wife": [0, 65535], "meane my wife but": [0, 65535], "my wife but i": [0, 65535], "wife but i protest": [0, 65535], "but i protest without": [0, 65535], "i protest without desert": [0, 65535], "protest without desert hath": [0, 65535], "without desert hath oftentimes": [0, 65535], "desert hath oftentimes vpbraided": [0, 65535], "hath oftentimes vpbraided me": [0, 65535], "oftentimes vpbraided me withall": [0, 65535], "vpbraided me withall to": [0, 65535], "me withall to her": [0, 65535], "withall to her will": [0, 65535], "to her will we": [0, 65535], "her will we to": [0, 65535], "will we to dinner": [0, 65535], "we to dinner get": [0, 65535], "to dinner get you": [0, 65535], "dinner get you home": [0, 65535], "get you home and": [0, 65535], "you home and fetch": [0, 65535], "home and fetch the": [0, 65535], "and fetch the chaine": [0, 65535], "fetch the chaine by": [0, 65535], "the chaine by this": [0, 65535], "chaine by this i": [0, 65535], "by this i know": [0, 65535], "this i know 'tis": [0, 65535], "i know 'tis made": [0, 65535], "know 'tis made bring": [0, 65535], "'tis made bring it": [0, 65535], "made bring it i": [0, 65535], "bring it i pray": [0, 65535], "it i pray you": [0, 65535], "i pray you to": [0, 65535], "pray you to the": [0, 65535], "you to the porpentine": [0, 65535], "to the porpentine for": [0, 65535], "the porpentine for there's": [0, 65535], "porpentine for there's the": [0, 65535], "for there's the house": [0, 65535], "there's the house that": [0, 65535], "the house that chaine": [0, 65535], "house that chaine will": [0, 65535], "that chaine will i": [0, 65535], "chaine will i bestow": [0, 65535], "will i bestow be": [0, 65535], "i bestow be it": [0, 65535], "bestow be it for": [0, 65535], "be it for nothing": [0, 65535], "it for nothing but": [0, 65535], "for nothing but to": [0, 65535], "nothing but to spight": [0, 65535], "but to spight my": [0, 65535], "to spight my wife": [0, 65535], "spight my wife vpon": [0, 65535], "my wife vpon mine": [0, 65535], "wife vpon mine hostesse": [0, 65535], "vpon mine hostesse there": [0, 65535], "mine hostesse there good": [0, 65535], "hostesse there good sir": [0, 65535], "there good sir make": [0, 65535], "good sir make haste": [0, 65535], "sir make haste since": [0, 65535], "make haste since mine": [0, 65535], "haste since mine owne": [0, 65535], "since mine owne doores": [0, 65535], "mine owne doores refuse": [0, 65535], "owne doores refuse to": [0, 65535], "doores refuse to entertaine": [0, 65535], "refuse to entertaine me": [0, 65535], "to entertaine me ile": [0, 65535], "entertaine me ile knocke": [0, 65535], "me ile knocke else": [0, 65535], "ile knocke else where": [0, 65535], "knocke else where to": [0, 65535], "else where to see": [0, 65535], "where to see if": [0, 65535], "to see if they'll": [0, 65535], "see if they'll disdaine": [0, 65535], "if they'll disdaine me": [0, 65535], "they'll disdaine me ang": [0, 65535], "disdaine me ang ile": [0, 65535], "me ang ile meet": [0, 65535], "ang ile meet you": [0, 65535], "ile meet you at": [0, 65535], "meet you at that": [0, 65535], "you at that place": [0, 65535], "at that place some": [0, 65535], "that place some houre": [0, 65535], "place some houre hence": [0, 65535], "some houre hence anti": [0, 65535], "houre hence anti do": [0, 65535], "hence anti do so": [0, 65535], "anti do so this": [0, 65535], "do so this iest": [0, 65535], "so this iest shall": [0, 65535], "this iest shall cost": [0, 65535], "iest shall cost me": [0, 65535], "shall cost me some": [0, 65535], "cost me some expence": [0, 65535], "me some expence exeunt": [0, 65535], "some expence exeunt enter": [0, 65535], "expence exeunt enter iuliana": [0, 65535], "exeunt enter iuliana with": [0, 65535], "enter iuliana with antipholus": [0, 65535], "iuliana with antipholus of": [0, 65535], "with antipholus of siracusia": [0, 65535], "antipholus of siracusia iulia": [0, 65535], "of siracusia iulia and": [0, 65535], "siracusia iulia and may": [0, 65535], "iulia and may it": [0, 65535], "and may it be": [0, 65535], "may it be that": [0, 65535], "it be that you": [0, 65535], "be that you haue": [0, 65535], "that you haue quite": [0, 65535], "you haue quite forgot": [0, 65535], "haue quite forgot a": [0, 65535], "quite forgot a husbands": [0, 65535], "forgot a husbands office": [0, 65535], "a husbands office shall": [0, 65535], "husbands office shall antipholus": [0, 65535], "office shall antipholus euen": [0, 65535], "shall antipholus euen in": [0, 65535], "antipholus euen in the": [0, 65535], "euen in the spring": [0, 65535], "in the spring of": [0, 65535], "the spring of loue": [0, 65535], "spring of loue thy": [0, 65535], "of loue thy loue": [0, 65535], "loue thy loue springs": [0, 65535], "thy loue springs rot": [0, 65535], "loue springs rot shall": [0, 65535], "springs rot shall loue": [0, 65535], "rot shall loue in": [0, 65535], "shall loue in buildings": [0, 65535], "loue in buildings grow": [0, 65535], "in buildings grow so": [0, 65535], "buildings grow so ruinate": [0, 65535], "grow so ruinate if": [0, 65535], "so ruinate if you": [0, 65535], "ruinate if you did": [0, 65535], "if you did wed": [0, 65535], "you did wed my": [0, 65535], "did wed my sister": [0, 65535], "wed my sister for": [0, 65535], "my sister for her": [0, 65535], "sister for her wealth": [0, 65535], "for her wealth then": [0, 65535], "her wealth then for": [0, 65535], "wealth then for her": [0, 65535], "then for her wealths": [0, 65535], "for her wealths sake": [0, 65535], "her wealths sake vse": [0, 65535], "wealths sake vse her": [0, 65535], "sake vse her with": [0, 65535], "vse her with more": [0, 65535], "her with more kindnesse": [0, 65535], "with more kindnesse or": [0, 65535], "more kindnesse or if": [0, 65535], "kindnesse or if you": [0, 65535], "or if you like": [0, 65535], "if you like else": [0, 65535], "you like else where": [0, 65535], "like else where doe": [0, 65535], "else where doe it": [0, 65535], "where doe it by": [0, 65535], "doe it by stealth": [0, 65535], "it by stealth muffle": [0, 65535], "by stealth muffle your": [0, 65535], "stealth muffle your false": [0, 65535], "muffle your false loue": [0, 65535], "your false loue with": [0, 65535], "false loue with some": [0, 65535], "loue with some shew": [0, 65535], "with some shew of": [0, 65535], "some shew of blindnesse": [0, 65535], "shew of blindnesse let": [0, 65535], "of blindnesse let not": [0, 65535], "blindnesse let not my": [0, 65535], "let not my sister": [0, 65535], "not my sister read": [0, 65535], "my sister read it": [0, 65535], "sister read it in": [0, 65535], "read it in your": [0, 65535], "it in your eye": [0, 65535], "in your eye be": [0, 65535], "your eye be not": [0, 65535], "eye be not thy": [0, 65535], "be not thy tongue": [0, 65535], "not thy tongue thy": [0, 65535], "thy tongue thy owne": [0, 65535], "tongue thy owne shames": [0, 65535], "thy owne shames orator": [0, 65535], "owne shames orator looke": [0, 65535], "shames orator looke sweet": [0, 65535], "orator looke sweet speake": [0, 65535], "looke sweet speake faire": [0, 65535], "sweet speake faire become": [0, 65535], "speake faire become disloyaltie": [0, 65535], "faire become disloyaltie apparell": [0, 65535], "become disloyaltie apparell vice": [0, 65535], "disloyaltie apparell vice like": [0, 65535], "apparell vice like vertues": [0, 65535], "vice like vertues harbenger": [0, 65535], "like vertues harbenger beare": [0, 65535], "vertues harbenger beare a": [0, 65535], "harbenger beare a faire": [0, 65535], "beare a faire presence": [0, 65535], "a faire presence though": [0, 65535], "faire presence though your": [0, 65535], "presence though your heart": [0, 65535], "though your heart be": [0, 65535], "your heart be tainted": [0, 65535], "heart be tainted teach": [0, 65535], "be tainted teach sinne": [0, 65535], "tainted teach sinne the": [0, 65535], "teach sinne the carriage": [0, 65535], "sinne the carriage of": [0, 65535], "the carriage of a": [0, 65535], "carriage of a holy": [0, 65535], "of a holy saint": [0, 65535], "a holy saint be": [0, 65535], "holy saint be secret": [0, 65535], "saint be secret false": [0, 65535], "be secret false what": [0, 65535], "secret false what need": [0, 65535], "false what need she": [0, 65535], "what need she be": [0, 65535], "need she be acquainted": [0, 65535], "she be acquainted what": [0, 65535], "be acquainted what simple": [0, 65535], "acquainted what simple thiefe": [0, 65535], "what simple thiefe brags": [0, 65535], "simple thiefe brags of": [0, 65535], "thiefe brags of his": [0, 65535], "brags of his owne": [0, 65535], "of his owne attaine": [0, 65535], "his owne attaine 'tis": [0, 65535], "owne attaine 'tis double": [0, 65535], "attaine 'tis double wrong": [0, 65535], "'tis double wrong to": [0, 65535], "double wrong to truant": [0, 65535], "wrong to truant with": [0, 65535], "to truant with your": [0, 65535], "truant with your bed": [0, 65535], "with your bed and": [0, 65535], "your bed and let": [0, 65535], "bed and let her": [0, 65535], "and let her read": [0, 65535], "let her read it": [0, 65535], "her read it in": [0, 65535], "read it in thy": [0, 65535], "it in thy lookes": [0, 65535], "in thy lookes at": [0, 65535], "thy lookes at boord": [0, 65535], "lookes at boord shame": [0, 65535], "at boord shame hath": [0, 65535], "boord shame hath a": [0, 65535], "shame hath a bastard": [0, 65535], "hath a bastard fame": [0, 65535], "a bastard fame well": [0, 65535], "bastard fame well managed": [0, 65535], "fame well managed ill": [0, 65535], "well managed ill deeds": [0, 65535], "managed ill deeds is": [0, 65535], "ill deeds is doubled": [0, 65535], "deeds is doubled with": [0, 65535], "is doubled with an": [0, 65535], "doubled with an euill": [0, 65535], "with an euill word": [0, 65535], "an euill word alas": [0, 65535], "euill word alas poore": [0, 65535], "word alas poore women": [0, 65535], "alas poore women make": [0, 65535], "poore women make vs": [0, 65535], "women make vs not": [0, 65535], "make vs not beleeue": [0, 65535], "vs not beleeue being": [0, 65535], "not beleeue being compact": [0, 65535], "beleeue being compact of": [0, 65535], "being compact of credit": [0, 65535], "compact of credit that": [0, 65535], "of credit that you": [0, 65535], "credit that you loue": [0, 65535], "that you loue vs": [0, 65535], "you loue vs though": [0, 65535], "loue vs though others": [0, 65535], "vs though others haue": [0, 65535], "though others haue the": [0, 65535], "others haue the arme": [0, 65535], "haue the arme shew": [0, 65535], "the arme shew vs": [0, 65535], "arme shew vs the": [0, 65535], "shew vs the sleeue": [0, 65535], "vs the sleeue we": [0, 65535], "the sleeue we in": [0, 65535], "sleeue we in your": [0, 65535], "we in your motion": [0, 65535], "in your motion turne": [0, 65535], "your motion turne and": [0, 65535], "motion turne and you": [0, 65535], "turne and you may": [0, 65535], "and you may moue": [0, 65535], "you may moue vs": [0, 65535], "may moue vs then": [0, 65535], "moue vs then gentle": [0, 65535], "vs then gentle brother": [0, 65535], "then gentle brother get": [0, 65535], "gentle brother get you": [0, 65535], "brother get you in": [0, 65535], "get you in againe": [0, 65535], "you in againe comfort": [0, 65535], "in againe comfort my": [0, 65535], "againe comfort my sister": [0, 65535], "comfort my sister cheere": [0, 65535], "my sister cheere her": [0, 65535], "sister cheere her call": [0, 65535], "cheere her call her": [0, 65535], "her call her wise": [0, 65535], "call her wise 'tis": [0, 65535], "her wise 'tis holy": [0, 65535], "wise 'tis holy sport": [0, 65535], "'tis holy sport to": [0, 65535], "holy sport to be": [0, 65535], "sport to be a": [0, 65535], "to be a little": [0, 65535], "be a little vaine": [0, 65535], "a little vaine when": [0, 65535], "little vaine when the": [0, 65535], "vaine when the sweet": [0, 65535], "when the sweet breath": [0, 65535], "the sweet breath of": [0, 65535], "sweet breath of flatterie": [0, 65535], "breath of flatterie conquers": [0, 65535], "of flatterie conquers strife": [0, 65535], "flatterie conquers strife s": [0, 65535], "conquers strife s anti": [0, 65535], "strife s anti sweete": [0, 65535], "s anti sweete mistris": [0, 65535], "anti sweete mistris what": [0, 65535], "sweete mistris what your": [0, 65535], "mistris what your name": [0, 65535], "what your name is": [0, 65535], "your name is else": [0, 65535], "name is else i": [0, 65535], "is else i know": [0, 65535], "else i know not": [0, 65535], "i know not nor": [0, 65535], "know not nor by": [0, 65535], "not nor by what": [0, 65535], "nor by what wonder": [0, 65535], "by what wonder you": [0, 65535], "what wonder you do": [0, 65535], "wonder you do hit": [0, 65535], "you do hit of": [0, 65535], "do hit of mine": [0, 65535], "hit of mine lesse": [0, 65535], "of mine lesse in": [0, 65535], "mine lesse in your": [0, 65535], "lesse in your knowledge": [0, 65535], "in your knowledge and": [0, 65535], "your knowledge and your": [0, 65535], "knowledge and your grace": [0, 65535], "and your grace you": [0, 65535], "your grace you show": [0, 65535], "grace you show not": [0, 65535], "you show not then": [0, 65535], "show not then our": [0, 65535], "not then our earths": [0, 65535], "then our earths wonder": [0, 65535], "our earths wonder more": [0, 65535], "earths wonder more then": [0, 65535], "wonder more then earth": [0, 65535], "more then earth diuine": [0, 65535], "then earth diuine teach": [0, 65535], "earth diuine teach me": [0, 65535], "diuine teach me deere": [0, 65535], "teach me deere creature": [0, 65535], "me deere creature how": [0, 65535], "deere creature how to": [0, 65535], "creature how to thinke": [0, 65535], "how to thinke and": [0, 65535], "to thinke and speake": [0, 65535], "thinke and speake lay": [0, 65535], "and speake lay open": [0, 65535], "speake lay open to": [0, 65535], "lay open to my": [0, 65535], "open to my earthie": [0, 65535], "to my earthie grosse": [0, 65535], "my earthie grosse conceit": [0, 65535], "earthie grosse conceit smothred": [0, 65535], "grosse conceit smothred in": [0, 65535], "conceit smothred in errors": [0, 65535], "smothred in errors feeble": [0, 65535], "in errors feeble shallow": [0, 65535], "errors feeble shallow weake": [0, 65535], "feeble shallow weake the": [0, 65535], "shallow weake the foulded": [0, 65535], "weake the foulded meaning": [0, 65535], "the foulded meaning of": [0, 65535], "foulded meaning of your": [0, 65535], "meaning of your words": [0, 65535], "of your words deceit": [0, 65535], "your words deceit against": [0, 65535], "words deceit against my": [0, 65535], "deceit against my soules": [0, 65535], "against my soules pure": [0, 65535], "my soules pure truth": [0, 65535], "soules pure truth why": [0, 65535], "pure truth why labour": [0, 65535], "truth why labour you": [0, 65535], "why labour you to": [0, 65535], "labour you to make": [0, 65535], "you to make it": [0, 65535], "to make it wander": [0, 65535], "make it wander in": [0, 65535], "it wander in an": [0, 65535], "wander in an vnknowne": [0, 65535], "in an vnknowne field": [0, 65535], "an vnknowne field are": [0, 65535], "vnknowne field are you": [0, 65535], "field are you a": [0, 65535], "are you a god": [0, 65535], "you a god would": [0, 65535], "a god would you": [0, 65535], "god would you create": [0, 65535], "would you create me": [0, 65535], "you create me new": [0, 65535], "create me new transforme": [0, 65535], "me new transforme me": [0, 65535], "new transforme me then": [0, 65535], "transforme me then and": [0, 65535], "me then and to": [0, 65535], "then and to your": [0, 65535], "and to your powre": [0, 65535], "to your powre ile": [0, 65535], "your powre ile yeeld": [0, 65535], "powre ile yeeld but": [0, 65535], "ile yeeld but if": [0, 65535], "yeeld but if that": [0, 65535], "but if that i": [0, 65535], "if that i am": [0, 65535], "that i am i": [0, 65535], "i am i then": [0, 65535], "am i then well": [0, 65535], "i then well i": [0, 65535], "then well i know": [0, 65535], "well i know your": [0, 65535], "i know your weeping": [0, 65535], "know your weeping sister": [0, 65535], "your weeping sister is": [0, 65535], "weeping sister is no": [0, 65535], "sister is no wife": [0, 65535], "is no wife of": [0, 65535], "no wife of mine": [0, 65535], "wife of mine nor": [0, 65535], "of mine nor to": [0, 65535], "mine nor to her": [0, 65535], "nor to her bed": [0, 65535], "to her bed no": [0, 65535], "her bed no homage": [0, 65535], "bed no homage doe": [0, 65535], "no homage doe i": [0, 65535], "homage doe i owe": [0, 65535], "doe i owe farre": [0, 65535], "i owe farre more": [0, 65535], "owe farre more farre": [0, 65535], "farre more farre more": [0, 65535], "more farre more to": [0, 65535], "farre more to you": [0, 65535], "more to you doe": [0, 65535], "to you doe i": [0, 65535], "you doe i decline": [0, 65535], "doe i decline oh": [0, 65535], "i decline oh traine": [0, 65535], "decline oh traine me": [0, 65535], "oh traine me not": [0, 65535], "traine me not sweet": [0, 65535], "me not sweet mermaide": [0, 65535], "not sweet mermaide with": [0, 65535], "sweet mermaide with thy": [0, 65535], "mermaide with thy note": [0, 65535], "with thy note to": [0, 65535], "thy note to drowne": [0, 65535], "note to drowne me": [0, 65535], "to drowne me in": [0, 65535], "drowne me in thy": [0, 65535], "me in thy sister": [0, 65535], "in thy sister floud": [0, 65535], "thy sister floud of": [0, 65535], "sister floud of teares": [0, 65535], "floud of teares sing": [0, 65535], "of teares sing siren": [0, 65535], "teares sing siren for": [0, 65535], "sing siren for thy": [0, 65535], "siren for thy selfe": [0, 65535], "for thy selfe and": [0, 65535], "thy selfe and i": [0, 65535], "selfe and i will": [0, 65535], "and i will dote": [0, 65535], "i will dote spread": [0, 65535], "will dote spread ore": [0, 65535], "dote spread ore the": [0, 65535], "spread ore the siluer": [0, 65535], "ore the siluer waues": [0, 65535], "the siluer waues thy": [0, 65535], "siluer waues thy golden": [0, 65535], "waues thy golden haires": [0, 65535], "thy golden haires and": [0, 65535], "golden haires and as": [0, 65535], "haires and as a": [0, 65535], "and as a bud": [0, 65535], "as a bud ile": [0, 65535], "a bud ile take": [0, 65535], "bud ile take thee": [0, 65535], "ile take thee and": [0, 65535], "take thee and there": [0, 65535], "thee and there lie": [0, 65535], "and there lie and": [0, 65535], "there lie and in": [0, 65535], "lie and in that": [0, 65535], "and in that glorious": [0, 65535], "in that glorious supposition": [0, 65535], "that glorious supposition thinke": [0, 65535], "glorious supposition thinke he": [0, 65535], "supposition thinke he gaines": [0, 65535], "thinke he gaines by": [0, 65535], "he gaines by death": [0, 65535], "gaines by death that": [0, 65535], "by death that hath": [0, 65535], "death that hath such": [0, 65535], "that hath such meanes": [0, 65535], "hath such meanes to": [0, 65535], "such meanes to die": [0, 65535], "meanes to die let": [0, 65535], "to die let loue": [0, 65535], "die let loue being": [0, 65535], "let loue being light": [0, 65535], "loue being light be": [0, 65535], "being light be drowned": [0, 65535], "light be drowned if": [0, 65535], "be drowned if she": [0, 65535], "drowned if she sinke": [0, 65535], "if she sinke luc": [0, 65535], "she sinke luc what": [0, 65535], "sinke luc what are": [0, 65535], "luc what are you": [0, 65535], "what are you mad": [0, 65535], "are you mad that": [0, 65535], "you mad that you": [0, 65535], "mad that you doe": [0, 65535], "that you doe reason": [0, 65535], "you doe reason so": [0, 65535], "doe reason so ant": [0, 65535], "reason so ant not": [0, 65535], "so ant not mad": [0, 65535], "ant not mad but": [0, 65535], "not mad but mated": [0, 65535], "mad but mated how": [0, 65535], "but mated how i": [0, 65535], "mated how i doe": [0, 65535], "how i doe not": [0, 65535], "i doe not know": [0, 65535], "doe not know luc": [0, 65535], "not know luc it": [0, 65535], "know luc it is": [0, 65535], "luc it is a": [0, 65535], "it is a fault": [0, 65535], "is a fault that": [0, 65535], "a fault that springeth": [0, 65535], "fault that springeth from": [0, 65535], "that springeth from your": [0, 65535], "springeth from your eie": [0, 65535], "from your eie ant": [0, 65535], "your eie ant for": [0, 65535], "eie ant for gazing": [0, 65535], "ant for gazing on": [0, 65535], "for gazing on your": [0, 65535], "gazing on your beames": [0, 65535], "on your beames faire": [0, 65535], "your beames faire sun": [0, 65535], "beames faire sun being": [0, 65535], "faire sun being by": [0, 65535], "sun being by luc": [0, 65535], "being by luc gaze": [0, 65535], "by luc gaze when": [0, 65535], "luc gaze when you": [0, 65535], "gaze when you should": [0, 65535], "when you should and": [0, 65535], "you should and that": [0, 65535], "should and that will": [0, 65535], "and that will cleere": [0, 65535], "that will cleere your": [0, 65535], "will cleere your sight": [0, 65535], "cleere your sight ant": [0, 65535], "your sight ant as": [0, 65535], "sight ant as good": [0, 65535], "ant as good to": [0, 65535], "as good to winke": [0, 65535], "good to winke sweet": [0, 65535], "to winke sweet loue": [0, 65535], "winke sweet loue as": [0, 65535], "sweet loue as looke": [0, 65535], "loue as looke on": [0, 65535], "as looke on night": [0, 65535], "looke on night luc": [0, 65535], "on night luc why": [0, 65535], "night luc why call": [0, 65535], "luc why call you": [0, 65535], "why call you me": [0, 65535], "call you me loue": [0, 65535], "you me loue call": [0, 65535], "me loue call my": [0, 65535], "loue call my sister": [0, 65535], "call my sister so": [0, 65535], "my sister so ant": [0, 65535], "sister so ant thy": [0, 65535], "so ant thy sisters": [0, 65535], "ant thy sisters sister": [0, 65535], "thy sisters sister luc": [0, 65535], "sisters sister luc that's": [0, 65535], "sister luc that's my": [0, 65535], "luc that's my sister": [0, 65535], "that's my sister ant": [0, 65535], "my sister ant no": [0, 65535], "sister ant no it": [0, 65535], "ant no it is": [0, 65535], "no it is thy": [0, 65535], "it is thy selfe": [0, 65535], "is thy selfe mine": [0, 65535], "thy selfe mine owne": [0, 65535], "selfe mine owne selfes": [0, 65535], "mine owne selfes better": [0, 65535], "owne selfes better part": [0, 65535], "selfes better part mine": [0, 65535], "better part mine eies": [0, 65535], "part mine eies cleere": [0, 65535], "mine eies cleere eie": [0, 65535], "eies cleere eie my": [0, 65535], "cleere eie my deere": [0, 65535], "eie my deere hearts": [0, 65535], "my deere hearts deerer": [0, 65535], "deere hearts deerer heart": [0, 65535], "hearts deerer heart my": [0, 65535], "deerer heart my foode": [0, 65535], "heart my foode my": [0, 65535], "my foode my fortune": [0, 65535], "foode my fortune and": [0, 65535], "my fortune and my": [0, 65535], "fortune and my sweet": [0, 65535], "and my sweet hopes": [0, 65535], "my sweet hopes aime": [0, 65535], "sweet hopes aime my": [0, 65535], "hopes aime my sole": [0, 65535], "aime my sole earths": [0, 65535], "my sole earths heauen": [0, 65535], "sole earths heauen and": [0, 65535], "earths heauen and my": [0, 65535], "heauen and my heauens": [0, 65535], "and my heauens claime": [0, 65535], "my heauens claime luc": [0, 65535], "heauens claime luc all": [0, 65535], "claime luc all this": [0, 65535], "luc all this my": [0, 65535], "all this my sister": [0, 65535], "this my sister is": [0, 65535], "my sister is or": [0, 65535], "sister is or else": [0, 65535], "is or else should": [0, 65535], "or else should be": [0, 65535], "else should be ant": [0, 65535], "should be ant call": [0, 65535], "be ant call thy": [0, 65535], "ant call thy selfe": [0, 65535], "call thy selfe sister": [0, 65535], "thy selfe sister sweet": [0, 65535], "selfe sister sweet for": [0, 65535], "sister sweet for i": [0, 65535], "sweet for i am": [0, 65535], "for i am thee": [0, 65535], "i am thee thee": [0, 65535], "am thee thee will": [0, 65535], "thee thee will i": [0, 65535], "thee will i loue": [0, 65535], "will i loue and": [0, 65535], "i loue and with": [0, 65535], "loue and with thee": [0, 65535], "and with thee lead": [0, 65535], "with thee lead my": [0, 65535], "thee lead my life": [0, 65535], "lead my life thou": [0, 65535], "my life thou hast": [0, 65535], "life thou hast no": [0, 65535], "thou hast no husband": [0, 65535], "hast no husband yet": [0, 65535], "no husband yet nor": [0, 65535], "husband yet nor i": [0, 65535], "yet nor i no": [0, 65535], "nor i no wife": [0, 65535], "i no wife giue": [0, 65535], "no wife giue me": [0, 65535], "wife giue me thy": [0, 65535], "giue me thy hand": [0, 65535], "me thy hand luc": [0, 65535], "thy hand luc oh": [0, 65535], "hand luc oh soft": [0, 65535], "luc oh soft sir": [0, 65535], "oh soft sir hold": [0, 65535], "soft sir hold you": [0, 65535], "sir hold you still": [0, 65535], "hold you still ile": [0, 65535], "you still ile fetch": [0, 65535], "still ile fetch my": [0, 65535], "ile fetch my sister": [0, 65535], "fetch my sister to": [0, 65535], "my sister to get": [0, 65535], "sister to get her": [0, 65535], "to get her good": [0, 65535], "get her good will": [0, 65535], "her good will exit": [0, 65535], "good will exit enter": [0, 65535], "will exit enter dromio": [0, 65535], "exit enter dromio siracusia": [0, 65535], "enter dromio siracusia ant": [0, 65535], "dromio siracusia ant why": [0, 65535], "siracusia ant why how": [0, 65535], "ant why how now": [0, 65535], "why how now dromio": [0, 65535], "how now dromio where": [0, 65535], "now dromio where run'st": [0, 65535], "dromio where run'st thou": [0, 65535], "where run'st thou so": [0, 65535], "run'st thou so fast": [0, 65535], "thou so fast s": [0, 65535], "so fast s dro": [0, 65535], "fast s dro doe": [0, 65535], "s dro doe you": [0, 65535], "dro doe you know": [0, 65535], "doe you know me": [0, 65535], "you know me sir": [0, 65535], "know me sir am": [0, 65535], "me sir am i": [0, 65535], "sir am i dromio": [0, 65535], "am i dromio am": [0, 65535], "i dromio am i": [0, 65535], "dromio am i your": [0, 65535], "am i your man": [0, 65535], "i your man am": [0, 65535], "your man am i": [0, 65535], "man am i my": [0, 65535], "am i my selfe": [0, 65535], "i my selfe ant": [0, 65535], "my selfe ant thou": [0, 65535], "selfe ant thou art": [0, 65535], "ant thou art dromio": [0, 65535], "thou art dromio thou": [0, 65535], "art dromio thou art": [0, 65535], "dromio thou art my": [0, 65535], "thou art my man": [0, 65535], "art my man thou": [0, 65535], "my man thou art": [0, 65535], "man thou art thy": [0, 65535], "thou art thy selfe": [0, 65535], "art thy selfe dro": [0, 65535], "thy selfe dro i": [0, 65535], "selfe dro i am": [0, 65535], "dro i am an": [0, 65535], "i am an asse": [0, 65535], "am an asse i": [0, 65535], "an asse i am": [0, 65535], "asse i am a": [0, 65535], "i am a womans": [0, 65535], "am a womans man": [0, 65535], "a womans man and": [0, 65535], "womans man and besides": [0, 65535], "man and besides my": [0, 65535], "and besides my selfe": [0, 65535], "besides my selfe ant": [0, 65535], "my selfe ant what": [0, 65535], "selfe ant what womans": [0, 65535], "ant what womans man": [0, 65535], "what womans man and": [0, 65535], "womans man and how": [0, 65535], "man and how besides": [0, 65535], "and how besides thy": [0, 65535], "how besides thy selfe": [0, 65535], "besides thy selfe dro": [0, 65535], "thy selfe dro marrie": [0, 65535], "selfe dro marrie sir": [0, 65535], "dro marrie sir besides": [0, 65535], "marrie sir besides my": [0, 65535], "sir besides my selfe": [0, 65535], "besides my selfe i": [0, 65535], "my selfe i am": [0, 65535], "selfe i am due": [0, 65535], "i am due to": [0, 65535], "am due to a": [0, 65535], "due to a woman": [0, 65535], "to a woman one": [0, 65535], "a woman one that": [0, 65535], "woman one that claimes": [0, 65535], "one that claimes me": [0, 65535], "that claimes me one": [0, 65535], "claimes me one that": [0, 65535], "me one that haunts": [0, 65535], "one that haunts me": [0, 65535], "that haunts me one": [0, 65535], "haunts me one that": [0, 65535], "me one that will": [0, 65535], "one that will haue": [0, 65535], "that will haue me": [0, 65535], "will haue me anti": [0, 65535], "haue me anti what": [0, 65535], "me anti what claime": [0, 65535], "anti what claime laies": [0, 65535], "what claime laies she": [0, 65535], "claime laies she to": [0, 65535], "laies she to thee": [0, 65535], "she to thee dro": [0, 65535], "to thee dro marry": [0, 65535], "thee dro marry sir": [0, 65535], "dro marry sir such": [0, 65535], "marry sir such claime": [0, 65535], "sir such claime as": [0, 65535], "such claime as you": [0, 65535], "claime as you would": [0, 65535], "as you would lay": [0, 65535], "you would lay to": [0, 65535], "would lay to your": [0, 65535], "lay to your horse": [0, 65535], "to your horse and": [0, 65535], "your horse and she": [0, 65535], "horse and she would": [0, 65535], "and she would haue": [0, 65535], "she would haue me": [0, 65535], "would haue me as": [0, 65535], "haue me as a": [0, 65535], "me as a beast": [0, 65535], "as a beast not": [0, 65535], "a beast not that": [0, 65535], "beast not that i": [0, 65535], "not that i beeing": [0, 65535], "that i beeing a": [0, 65535], "i beeing a beast": [0, 65535], "beeing a beast she": [0, 65535], "a beast she would": [0, 65535], "beast she would haue": [0, 65535], "would haue me but": [0, 65535], "haue me but that": [0, 65535], "me but that she": [0, 65535], "but that she being": [0, 65535], "that she being a": [0, 65535], "she being a verie": [0, 65535], "being a verie beastly": [0, 65535], "a verie beastly creature": [0, 65535], "verie beastly creature layes": [0, 65535], "beastly creature layes claime": [0, 65535], "creature layes claime to": [0, 65535], "layes claime to me": [0, 65535], "claime to me anti": [0, 65535], "to me anti what": [0, 65535], "me anti what is": [0, 65535], "anti what is she": [0, 65535], "what is she dro": [0, 65535], "is she dro a": [0, 65535], "she dro a very": [0, 65535], "dro a very reuerent": [0, 65535], "a very reuerent body": [0, 65535], "very reuerent body i": [0, 65535], "reuerent body i such": [0, 65535], "body i such a": [0, 65535], "i such a one": [0, 65535], "such a one as": [0, 65535], "a one as a": [0, 65535], "one as a man": [0, 65535], "as a man may": [0, 65535], "a man may not": [0, 65535], "man may not speake": [0, 65535], "may not speake of": [0, 65535], "not speake of without": [0, 65535], "speake of without he": [0, 65535], "of without he say": [0, 65535], "without he say sir": [0, 65535], "he say sir reuerence": [0, 65535], "say sir reuerence i": [0, 65535], "sir reuerence i haue": [0, 65535], "reuerence i haue but": [0, 65535], "i haue but leane": [0, 65535], "haue but leane lucke": [0, 65535], "but leane lucke in": [0, 65535], "leane lucke in the": [0, 65535], "lucke in the match": [0, 65535], "in the match and": [0, 65535], "the match and yet": [0, 65535], "match and yet is": [0, 65535], "and yet is she": [0, 65535], "yet is she a": [0, 65535], "is she a wondrous": [0, 65535], "she a wondrous fat": [0, 65535], "a wondrous fat marriage": [0, 65535], "wondrous fat marriage anti": [0, 65535], "fat marriage anti how": [0, 65535], "marriage anti how dost": [0, 65535], "anti how dost thou": [0, 65535], "how dost thou meane": [0, 65535], "dost thou meane a": [0, 65535], "thou meane a fat": [0, 65535], "meane a fat marriage": [0, 65535], "a fat marriage dro": [0, 65535], "fat marriage dro marry": [0, 65535], "marriage dro marry sir": [0, 65535], "dro marry sir she's": [0, 65535], "marry sir she's the": [0, 65535], "sir she's the kitchin": [0, 65535], "she's the kitchin wench": [0, 65535], "the kitchin wench al": [0, 65535], "kitchin wench al grease": [0, 65535], "wench al grease and": [0, 65535], "al grease and i": [0, 65535], "grease and i know": [0, 65535], "and i know not": [0, 65535], "i know not what": [0, 65535], "know not what vse": [0, 65535], "not what vse to": [0, 65535], "what vse to put": [0, 65535], "vse to put her": [0, 65535], "to put her too": [0, 65535], "put her too but": [0, 65535], "her too but to": [0, 65535], "too but to make": [0, 65535], "but to make a": [0, 65535], "to make a lampe": [0, 65535], "make a lampe of": [0, 65535], "a lampe of her": [0, 65535], "lampe of her and": [0, 65535], "of her and run": [0, 65535], "her and run from": [0, 65535], "and run from her": [0, 65535], "run from her by": [0, 65535], "from her by her": [0, 65535], "her by her owne": [0, 65535], "by her owne light": [0, 65535], "her owne light i": [0, 65535], "owne light i warrant": [0, 65535], "light i warrant her": [0, 65535], "i warrant her ragges": [0, 65535], "warrant her ragges and": [0, 65535], "her ragges and the": [0, 65535], "ragges and the tallow": [0, 65535], "and the tallow in": [0, 65535], "the tallow in them": [0, 65535], "tallow in them will": [0, 65535], "in them will burne": [0, 65535], "them will burne a": [0, 65535], "will burne a poland": [0, 65535], "burne a poland winter": [0, 65535], "a poland winter if": [0, 65535], "poland winter if she": [0, 65535], "winter if she liues": [0, 65535], "if she liues till": [0, 65535], "she liues till doomesday": [0, 65535], "liues till doomesday she'l": [0, 65535], "till doomesday she'l burne": [0, 65535], "doomesday she'l burne a": [0, 65535], "she'l burne a weeke": [0, 65535], "burne a weeke longer": [0, 65535], "a weeke longer then": [0, 65535], "weeke longer then the": [0, 65535], "longer then the whole": [0, 65535], "then the whole world": [0, 65535], "the whole world anti": [0, 65535], "whole world anti what": [0, 65535], "world anti what complexion": [0, 65535], "anti what complexion is": [0, 65535], "what complexion is she": [0, 65535], "complexion is she of": [0, 65535], "is she of dro": [0, 65535], "she of dro swart": [0, 65535], "of dro swart like": [0, 65535], "dro swart like my": [0, 65535], "swart like my shoo": [0, 65535], "like my shoo but": [0, 65535], "my shoo but her": [0, 65535], "shoo but her face": [0, 65535], "but her face nothing": [0, 65535], "her face nothing like": [0, 65535], "face nothing like so": [0, 65535], "nothing like so cleane": [0, 65535], "like so cleane kept": [0, 65535], "so cleane kept for": [0, 65535], "cleane kept for why": [0, 65535], "kept for why she": [0, 65535], "for why she sweats": [0, 65535], "why she sweats a": [0, 65535], "she sweats a man": [0, 65535], "sweats a man may": [0, 65535], "a man may goe": [0, 65535], "man may goe o": [0, 65535], "may goe o uer": [0, 65535], "goe o uer shooes": [0, 65535], "o uer shooes in": [0, 65535], "uer shooes in the": [0, 65535], "shooes in the grime": [0, 65535], "in the grime of": [0, 65535], "the grime of it": [0, 65535], "grime of it anti": [0, 65535], "of it anti that's": [0, 65535], "it anti that's a": [0, 65535], "anti that's a fault": [0, 65535], "that's a fault that": [0, 65535], "a fault that water": [0, 65535], "fault that water will": [0, 65535], "that water will mend": [0, 65535], "water will mend dro": [0, 65535], "will mend dro no": [0, 65535], "mend dro no sir": [0, 65535], "dro no sir 'tis": [0, 65535], "no sir 'tis in": [0, 65535], "sir 'tis in graine": [0, 65535], "'tis in graine noahs": [0, 65535], "in graine noahs flood": [0, 65535], "graine noahs flood could": [0, 65535], "noahs flood could not": [0, 65535], "flood could not do": [0, 65535], "could not do it": [0, 65535], "not do it anti": [0, 65535], "do it anti what's": [0, 65535], "it anti what's her": [0, 65535], "anti what's her name": [0, 65535], "what's her name dro": [0, 65535], "her name dro nell": [0, 65535], "name dro nell sir": [0, 65535], "dro nell sir but": [0, 65535], "nell sir but her": [0, 65535], "sir but her name": [0, 65535], "but her name is": [0, 65535], "her name is three": [0, 65535], "name is three quarters": [0, 65535], "is three quarters that's": [0, 65535], "three quarters that's an": [0, 65535], "quarters that's an ell": [0, 65535], "that's an ell and": [0, 65535], "an ell and three": [0, 65535], "ell and three quarters": [0, 65535], "and three quarters will": [0, 65535], "three quarters will not": [0, 65535], "quarters will not measure": [0, 65535], "will not measure her": [0, 65535], "not measure her from": [0, 65535], "measure her from hip": [0, 65535], "her from hip to": [0, 65535], "from hip to hip": [0, 65535], "hip to hip anti": [0, 65535], "to hip anti then": [0, 65535], "hip anti then she": [0, 65535], "anti then she beares": [0, 65535], "then she beares some": [0, 65535], "she beares some bredth": [0, 65535], "beares some bredth dro": [0, 65535], "some bredth dro no": [0, 65535], "bredth dro no longer": [0, 65535], "dro no longer from": [0, 65535], "no longer from head": [0, 65535], "longer from head to": [0, 65535], "from head to foot": [0, 65535], "head to foot then": [0, 65535], "to foot then from": [0, 65535], "foot then from hippe": [0, 65535], "then from hippe to": [0, 65535], "from hippe to hippe": [0, 65535], "hippe to hippe she": [0, 65535], "to hippe she is": [0, 65535], "hippe she is sphericall": [0, 65535], "she is sphericall like": [0, 65535], "is sphericall like a": [0, 65535], "sphericall like a globe": [0, 65535], "like a globe i": [0, 65535], "a globe i could": [0, 65535], "globe i could find": [0, 65535], "i could find out": [0, 65535], "could find out countries": [0, 65535], "find out countries in": [0, 65535], "out countries in her": [0, 65535], "countries in her anti": [0, 65535], "in her anti in": [0, 65535], "her anti in what": [0, 65535], "anti in what part": [0, 65535], "in what part of": [0, 65535], "what part of her": [0, 65535], "part of her body": [0, 65535], "of her body stands": [0, 65535], "her body stands ireland": [0, 65535], "body stands ireland dro": [0, 65535], "stands ireland dro marry": [0, 65535], "ireland dro marry sir": [0, 65535], "dro marry sir in": [0, 65535], "marry sir in her": [0, 65535], "sir in her buttockes": [0, 65535], "in her buttockes i": [0, 65535], "her buttockes i found": [0, 65535], "buttockes i found it": [0, 65535], "i found it out": [0, 65535], "found it out by": [0, 65535], "it out by the": [0, 65535], "out by the bogges": [0, 65535], "by the bogges ant": [0, 65535], "the bogges ant where": [0, 65535], "bogges ant where scotland": [0, 65535], "ant where scotland dro": [0, 65535], "where scotland dro i": [0, 65535], "scotland dro i found": [0, 65535], "dro i found it": [0, 65535], "i found it by": [0, 65535], "found it by the": [0, 65535], "it by the barrennesse": [0, 65535], "by the barrennesse hard": [0, 65535], "the barrennesse hard in": [0, 65535], "barrennesse hard in the": [0, 65535], "hard in the palme": [0, 65535], "in the palme of": [0, 65535], "the palme of the": [0, 65535], "palme of the hand": [0, 65535], "of the hand ant": [0, 65535], "the hand ant where": [0, 65535], "hand ant where france": [0, 65535], "ant where france dro": [0, 65535], "where france dro in": [0, 65535], "france dro in her": [0, 65535], "dro in her forhead": [0, 65535], "in her forhead arm'd": [0, 65535], "her forhead arm'd and": [0, 65535], "forhead arm'd and reuerted": [0, 65535], "arm'd and reuerted making": [0, 65535], "and reuerted making warre": [0, 65535], "reuerted making warre against": [0, 65535], "making warre against her": [0, 65535], "warre against her heire": [0, 65535], "against her heire ant": [0, 65535], "her heire ant where": [0, 65535], "heire ant where england": [0, 65535], "ant where england dro": [0, 65535], "where england dro i": [0, 65535], "england dro i look'd": [0, 65535], "dro i look'd for": [0, 65535], "i look'd for the": [0, 65535], "look'd for the chalkle": [0, 65535], "for the chalkle cliffes": [0, 65535], "the chalkle cliffes but": [0, 65535], "chalkle cliffes but i": [0, 65535], "cliffes but i could": [0, 65535], "but i could find": [0, 65535], "i could find no": [0, 65535], "could find no whitenesse": [0, 65535], "find no whitenesse in": [0, 65535], "no whitenesse in them": [0, 65535], "whitenesse in them but": [0, 65535], "in them but i": [0, 65535], "them but i guesse": [0, 65535], "but i guesse it": [0, 65535], "i guesse it stood": [0, 65535], "guesse it stood in": [0, 65535], "it stood in her": [0, 65535], "stood in her chin": [0, 65535], "in her chin by": [0, 65535], "her chin by the": [0, 65535], "chin by the salt": [0, 65535], "by the salt rheume": [0, 65535], "the salt rheume that": [0, 65535], "salt rheume that ranne": [0, 65535], "rheume that ranne betweene": [0, 65535], "that ranne betweene france": [0, 65535], "ranne betweene france and": [0, 65535], "betweene france and it": [0, 65535], "france and it ant": [0, 65535], "and it ant where": [0, 65535], "it ant where spaine": [0, 65535], "ant where spaine dro": [0, 65535], "where spaine dro faith": [0, 65535], "spaine dro faith i": [0, 65535], "dro faith i saw": [0, 65535], "faith i saw it": [0, 65535], "i saw it not": [0, 65535], "saw it not but": [0, 65535], "it not but i": [0, 65535], "not but i felt": [0, 65535], "but i felt it": [0, 65535], "i felt it hot": [0, 65535], "felt it hot in": [0, 65535], "it hot in her": [0, 65535], "hot in her breth": [0, 65535], "in her breth ant": [0, 65535], "her breth ant where": [0, 65535], "breth ant where america": [0, 65535], "ant where america the": [0, 65535], "where america the indies": [0, 65535], "america the indies dro": [0, 65535], "the indies dro oh": [0, 65535], "indies dro oh sir": [0, 65535], "dro oh sir vpon": [0, 65535], "oh sir vpon her": [0, 65535], "sir vpon her nose": [0, 65535], "vpon her nose all": [0, 65535], "her nose all ore": [0, 65535], "nose all ore embellished": [0, 65535], "all ore embellished with": [0, 65535], "ore embellished with rubies": [0, 65535], "embellished with rubies carbuncles": [0, 65535], "with rubies carbuncles saphires": [0, 65535], "rubies carbuncles saphires declining": [0, 65535], "carbuncles saphires declining their": [0, 65535], "saphires declining their rich": [0, 65535], "declining their rich aspect": [0, 65535], "their rich aspect to": [0, 65535], "rich aspect to the": [0, 65535], "aspect to the hot": [0, 65535], "to the hot breath": [0, 65535], "the hot breath of": [0, 65535], "hot breath of spaine": [0, 65535], "breath of spaine who": [0, 65535], "of spaine who sent": [0, 65535], "spaine who sent whole": [0, 65535], "who sent whole armadoes": [0, 65535], "sent whole armadoes of": [0, 65535], "whole armadoes of carrects": [0, 65535], "armadoes of carrects to": [0, 65535], "of carrects to be": [0, 65535], "carrects to be ballast": [0, 65535], "to be ballast at": [0, 65535], "be ballast at her": [0, 65535], "ballast at her nose": [0, 65535], "at her nose anti": [0, 65535], "her nose anti where": [0, 65535], "nose anti where stood": [0, 65535], "anti where stood belgia": [0, 65535], "where stood belgia the": [0, 65535], "stood belgia the netherlands": [0, 65535], "belgia the netherlands dro": [0, 65535], "the netherlands dro oh": [0, 65535], "netherlands dro oh sir": [0, 65535], "dro oh sir i": [0, 65535], "oh sir i did": [0, 65535], "sir i did not": [0, 65535], "i did not looke": [0, 65535], "did not looke so": [0, 65535], "not looke so low": [0, 65535], "looke so low to": [0, 65535], "so low to conclude": [0, 65535], "low to conclude this": [0, 65535], "to conclude this drudge": [0, 65535], "conclude this drudge or": [0, 65535], "this drudge or diuiner": [0, 65535], "drudge or diuiner layd": [0, 65535], "or diuiner layd claime": [0, 65535], "diuiner layd claime to": [0, 65535], "layd claime to mee": [0, 65535], "claime to mee call'd": [0, 65535], "to mee call'd mee": [0, 65535], "mee call'd mee dromio": [0, 65535], "call'd mee dromio swore": [0, 65535], "mee dromio swore i": [0, 65535], "dromio swore i was": [0, 65535], "swore i was assur'd": [0, 65535], "i was assur'd to": [0, 65535], "was assur'd to her": [0, 65535], "assur'd to her told": [0, 65535], "to her told me": [0, 65535], "her told me what": [0, 65535], "told me what priuie": [0, 65535], "me what priuie markes": [0, 65535], "what priuie markes i": [0, 65535], "priuie markes i had": [0, 65535], "markes i had about": [0, 65535], "i had about mee": [0, 65535], "had about mee as": [0, 65535], "about mee as the": [0, 65535], "mee as the marke": [0, 65535], "as the marke of": [0, 65535], "the marke of my": [0, 65535], "marke of my shoulder": [0, 65535], "of my shoulder the": [0, 65535], "my shoulder the mole": [0, 65535], "shoulder the mole in": [0, 65535], "the mole in my": [0, 65535], "mole in my necke": [0, 65535], "in my necke the": [0, 65535], "my necke the great": [0, 65535], "necke the great wart": [0, 65535], "the great wart on": [0, 65535], "great wart on my": [0, 65535], "wart on my left": [0, 65535], "on my left arme": [0, 65535], "my left arme that": [0, 65535], "left arme that i": [0, 65535], "arme that i amaz'd": [0, 65535], "that i amaz'd ranne": [0, 65535], "i amaz'd ranne from": [0, 65535], "amaz'd ranne from her": [0, 65535], "ranne from her as": [0, 65535], "from her as a": [0, 65535], "her as a witch": [0, 65535], "as a witch and": [0, 65535], "a witch and i": [0, 65535], "witch and i thinke": [0, 65535], "and i thinke if": [0, 65535], "i thinke if my": [0, 65535], "thinke if my brest": [0, 65535], "if my brest had": [0, 65535], "my brest had not": [0, 65535], "brest had not beene": [0, 65535], "had not beene made": [0, 65535], "not beene made of": [0, 65535], "beene made of faith": [0, 65535], "made of faith and": [0, 65535], "of faith and my": [0, 65535], "faith and my heart": [0, 65535], "and my heart of": [0, 65535], "my heart of steele": [0, 65535], "heart of steele she": [0, 65535], "of steele she had": [0, 65535], "steele she had transform'd": [0, 65535], "she had transform'd me": [0, 65535], "had transform'd me to": [0, 65535], "transform'd me to a": [0, 65535], "me to a curtull": [0, 65535], "to a curtull dog": [0, 65535], "a curtull dog made": [0, 65535], "curtull dog made me": [0, 65535], "dog made me turne": [0, 65535], "made me turne i'th": [0, 65535], "me turne i'th wheele": [0, 65535], "turne i'th wheele anti": [0, 65535], "i'th wheele anti go": [0, 65535], "wheele anti go hie": [0, 65535], "anti go hie thee": [0, 65535], "go hie thee presently": [0, 65535], "hie thee presently post": [0, 65535], "thee presently post to": [0, 65535], "presently post to the": [0, 65535], "post to the rode": [0, 65535], "to the rode and": [0, 65535], "the rode and if": [0, 65535], "rode and if the": [0, 65535], "and if the winde": [0, 65535], "if the winde blow": [0, 65535], "the winde blow any": [0, 65535], "winde blow any way": [0, 65535], "blow any way from": [0, 65535], "any way from shore": [0, 65535], "way from shore i": [0, 65535], "from shore i will": [0, 65535], "shore i will not": [0, 65535], "i will not harbour": [0, 65535], "will not harbour in": [0, 65535], "not harbour in this": [0, 65535], "harbour in this towne": [0, 65535], "in this towne to": [0, 65535], "this towne to night": [0, 65535], "towne to night if": [0, 65535], "to night if any": [0, 65535], "night if any barke": [0, 65535], "if any barke put": [0, 65535], "any barke put forth": [0, 65535], "barke put forth come": [0, 65535], "put forth come to": [0, 65535], "forth come to the": [0, 65535], "come to the mart": [0, 65535], "to the mart where": [0, 65535], "the mart where i": [0, 65535], "mart where i will": [0, 65535], "where i will walke": [0, 65535], "i will walke till": [0, 65535], "will walke till thou": [0, 65535], "walke till thou returne": [0, 65535], "till thou returne to": [0, 65535], "thou returne to me": [0, 65535], "returne to me if": [0, 65535], "to me if euerie": [0, 65535], "me if euerie one": [0, 65535], "if euerie one knowes": [0, 65535], "euerie one knowes vs": [0, 65535], "one knowes vs and": [0, 65535], "knowes vs and we": [0, 65535], "vs and we know": [0, 65535], "and we know none": [0, 65535], "we know none 'tis": [0, 65535], "know none 'tis time": [0, 65535], "none 'tis time i": [0, 65535], "'tis time i thinke": [0, 65535], "time i thinke to": [0, 65535], "i thinke to trudge": [0, 65535], "thinke to trudge packe": [0, 65535], "to trudge packe and": [0, 65535], "trudge packe and be": [0, 65535], "packe and be gone": [0, 65535], "and be gone dro": [0, 65535], "be gone dro as": [0, 65535], "gone dro as from": [0, 65535], "dro as from a": [0, 65535], "as from a beare": [0, 65535], "from a beare a": [0, 65535], "a beare a man": [0, 65535], "beare a man would": [0, 65535], "a man would run": [0, 65535], "man would run for": [0, 65535], "would run for life": [0, 65535], "run for life so": [0, 65535], "for life so flie": [0, 65535], "life so flie i": [0, 65535], "so flie i from": [0, 65535], "flie i from her": [0, 65535], "i from her that": [0, 65535], "from her that would": [0, 65535], "her that would be": [0, 65535], "that would be my": [0, 65535], "would be my wife": [0, 65535], "be my wife exit": [0, 65535], "my wife exit anti": [0, 65535], "wife exit anti there's": [0, 65535], "exit anti there's none": [0, 65535], "anti there's none but": [0, 65535], "there's none but witches": [0, 65535], "none but witches do": [0, 65535], "but witches do inhabite": [0, 65535], "witches do inhabite heere": [0, 65535], "do inhabite heere and": [0, 65535], "inhabite heere and therefore": [0, 65535], "heere and therefore 'tis": [0, 65535], "and therefore 'tis hie": [0, 65535], "therefore 'tis hie time": [0, 65535], "'tis hie time that": [0, 65535], "hie time that i": [0, 65535], "time that i were": [0, 65535], "that i were hence": [0, 65535], "i were hence she": [0, 65535], "were hence she that": [0, 65535], "hence she that doth": [0, 65535], "she that doth call": [0, 65535], "that doth call me": [0, 65535], "doth call me husband": [0, 65535], "call me husband euen": [0, 65535], "me husband euen my": [0, 65535], "husband euen my soule": [0, 65535], "euen my soule doth": [0, 65535], "my soule doth for": [0, 65535], "soule doth for a": [0, 65535], "doth for a wife": [0, 65535], "for a wife abhorre": [0, 65535], "a wife abhorre but": [0, 65535], "wife abhorre but her": [0, 65535], "abhorre but her faire": [0, 65535], "but her faire sister": [0, 65535], "her faire sister possest": [0, 65535], "faire sister possest with": [0, 65535], "sister possest with such": [0, 65535], "possest with such a": [0, 65535], "with such a gentle": [0, 65535], "such a gentle soueraigne": [0, 65535], "a gentle soueraigne grace": [0, 65535], "gentle soueraigne grace of": [0, 65535], "soueraigne grace of such": [0, 65535], "grace of such inchanting": [0, 65535], "of such inchanting presence": [0, 65535], "such inchanting presence and": [0, 65535], "inchanting presence and discourse": [0, 65535], "presence and discourse hath": [0, 65535], "and discourse hath almost": [0, 65535], "discourse hath almost made": [0, 65535], "hath almost made me": [0, 65535], "almost made me traitor": [0, 65535], "made me traitor to": [0, 65535], "me traitor to my": [0, 65535], "traitor to my selfe": [0, 65535], "to my selfe but": [0, 65535], "my selfe but least": [0, 65535], "selfe but least my": [0, 65535], "but least my selfe": [0, 65535], "least my selfe be": [0, 65535], "my selfe be guilty": [0, 65535], "selfe be guilty to": [0, 65535], "be guilty to selfe": [0, 65535], "guilty to selfe wrong": [0, 65535], "to selfe wrong ile": [0, 65535], "selfe wrong ile stop": [0, 65535], "wrong ile stop mine": [0, 65535], "ile stop mine eares": [0, 65535], "stop mine eares against": [0, 65535], "mine eares against the": [0, 65535], "eares against the mermaids": [0, 65535], "against the mermaids song": [0, 65535], "the mermaids song enter": [0, 65535], "mermaids song enter angelo": [0, 65535], "song enter angelo with": [0, 65535], "enter angelo with the": [0, 65535], "angelo with the chaine": [0, 65535], "with the chaine ang": [0, 65535], "the chaine ang mr": [0, 65535], "chaine ang mr antipholus": [0, 65535], "ang mr antipholus anti": [0, 65535], "mr antipholus anti i": [0, 65535], "antipholus anti i that's": [0, 65535], "anti i that's my": [0, 65535], "i that's my name": [0, 65535], "that's my name ang": [0, 65535], "my name ang i": [0, 65535], "name ang i know": [0, 65535], "ang i know it": [0, 65535], "i know it well": [0, 65535], "know it well sir": [0, 65535], "it well sir loe": [0, 65535], "well sir loe here's": [0, 65535], "sir loe here's the": [0, 65535], "loe here's the chaine": [0, 65535], "here's the chaine i": [0, 65535], "the chaine i thought": [0, 65535], "chaine i thought to": [0, 65535], "thought to haue tane": [0, 65535], "to haue tane you": [0, 65535], "haue tane you at": [0, 65535], "tane you at the": [0, 65535], "you at the porpentine": [0, 65535], "at the porpentine the": [0, 65535], "the porpentine the chaine": [0, 65535], "porpentine the chaine vnfinish'd": [0, 65535], "the chaine vnfinish'd made": [0, 65535], "chaine vnfinish'd made me": [0, 65535], "vnfinish'd made me stay": [0, 65535], "made me stay thus": [0, 65535], "me stay thus long": [0, 65535], "stay thus long anti": [0, 65535], "thus long anti what": [0, 65535], "long anti what is": [0, 65535], "anti what is your": [0, 65535], "what is your will": [0, 65535], "is your will that": [0, 65535], "your will that i": [0, 65535], "will that i shal": [0, 65535], "that i shal do": [0, 65535], "i shal do with": [0, 65535], "shal do with this": [0, 65535], "do with this ang": [0, 65535], "with this ang what": [0, 65535], "this ang what please": [0, 65535], "ang what please your": [0, 65535], "what please your selfe": [0, 65535], "please your selfe sir": [0, 65535], "your selfe sir i": [0, 65535], "selfe sir i haue": [0, 65535], "sir i haue made": [0, 65535], "i haue made it": [0, 65535], "haue made it for": [0, 65535], "made it for you": [0, 65535], "it for you anti": [0, 65535], "for you anti made": [0, 65535], "you anti made it": [0, 65535], "anti made it for": [0, 65535], "made it for me": [0, 65535], "it for me sir": [0, 65535], "for me sir i": [0, 65535], "me sir i bespoke": [0, 65535], "sir i bespoke it": [0, 65535], "i bespoke it not": [0, 65535], "bespoke it not ang": [0, 65535], "it not ang not": [0, 65535], "not ang not once": [0, 65535], "ang not once nor": [0, 65535], "not once nor twice": [0, 65535], "once nor twice but": [0, 65535], "nor twice but twentie": [0, 65535], "twice but twentie times": [0, 65535], "but twentie times you": [0, 65535], "twentie times you haue": [0, 65535], "times you haue go": [0, 65535], "you haue go home": [0, 65535], "haue go home with": [0, 65535], "go home with it": [0, 65535], "home with it and": [0, 65535], "with it and please": [0, 65535], "it and please your": [0, 65535], "and please your wife": [0, 65535], "please your wife withall": [0, 65535], "your wife withall and": [0, 65535], "wife withall and soone": [0, 65535], "withall and soone at": [0, 65535], "and soone at supper": [0, 65535], "soone at supper time": [0, 65535], "at supper time ile": [0, 65535], "supper time ile visit": [0, 65535], "time ile visit you": [0, 65535], "ile visit you and": [0, 65535], "visit you and then": [0, 65535], "you and then receiue": [0, 65535], "and then receiue my": [0, 65535], "then receiue my money": [0, 65535], "receiue my money for": [0, 65535], "my money for the": [0, 65535], "money for the chaine": [0, 65535], "for the chaine anti": [0, 65535], "the chaine anti i": [0, 65535], "chaine anti i pray": [0, 65535], "anti i pray you": [0, 65535], "i pray you sir": [0, 65535], "pray you sir receiue": [0, 65535], "you sir receiue the": [0, 65535], "sir receiue the money": [0, 65535], "receiue the money now": [0, 65535], "the money now for": [0, 65535], "money now for feare": [0, 65535], "now for feare you": [0, 65535], "for feare you ne're": [0, 65535], "feare you ne're see": [0, 65535], "you ne're see chaine": [0, 65535], "ne're see chaine nor": [0, 65535], "see chaine nor mony": [0, 65535], "chaine nor mony more": [0, 65535], "nor mony more ang": [0, 65535], "mony more ang you": [0, 65535], "more ang you are": [0, 65535], "ang you are a": [0, 65535], "you are a merry": [0, 65535], "are a merry man": [0, 65535], "a merry man sir": [0, 65535], "merry man sir fare": [0, 65535], "man sir fare you": [0, 65535], "sir fare you well": [0, 65535], "fare you well exit": [0, 65535], "you well exit ant": [0, 65535], "well exit ant what": [0, 65535], "exit ant what i": [0, 65535], "ant what i should": [0, 65535], "what i should thinke": [0, 65535], "i should thinke of": [0, 65535], "should thinke of this": [0, 65535], "thinke of this i": [0, 65535], "of this i cannot": [0, 65535], "this i cannot tell": [0, 65535], "i cannot tell but": [0, 65535], "cannot tell but this": [0, 65535], "tell but this i": [0, 65535], "but this i thinke": [0, 65535], "this i thinke there's": [0, 65535], "i thinke there's no": [0, 65535], "thinke there's no man": [0, 65535], "there's no man is": [0, 65535], "no man is so": [0, 65535], "man is so vaine": [0, 65535], "is so vaine that": [0, 65535], "so vaine that would": [0, 65535], "vaine that would refuse": [0, 65535], "that would refuse so": [0, 65535], "would refuse so faire": [0, 65535], "refuse so faire an": [0, 65535], "so faire an offer'd": [0, 65535], "faire an offer'd chaine": [0, 65535], "an offer'd chaine i": [0, 65535], "offer'd chaine i see": [0, 65535], "chaine i see a": [0, 65535], "i see a man": [0, 65535], "see a man heere": [0, 65535], "a man heere needs": [0, 65535], "man heere needs not": [0, 65535], "heere needs not liue": [0, 65535], "needs not liue by": [0, 65535], "not liue by shifts": [0, 65535], "liue by shifts when": [0, 65535], "by shifts when in": [0, 65535], "shifts when in the": [0, 65535], "when in the streets": [0, 65535], "in the streets he": [0, 65535], "the streets he meetes": [0, 65535], "streets he meetes such": [0, 65535], "he meetes such golden": [0, 65535], "meetes such golden gifts": [0, 65535], "such golden gifts ile": [0, 65535], "golden gifts ile to": [0, 65535], "gifts ile to the": [0, 65535], "ile to the mart": [0, 65535], "to the mart and": [0, 65535], "the mart and there": [0, 65535], "mart and there for": [0, 65535], "and there for dromio": [0, 65535], "there for dromio stay": [0, 65535], "for dromio stay if": [0, 65535], "dromio stay if any": [0, 65535], "stay if any ship": [0, 65535], "if any ship put": [0, 65535], "any ship put out": [0, 65535], "ship put out then": [0, 65535], "put out then straight": [0, 65535], "out then straight away": [0, 65535], "then straight away exit": [0, 65535], "actus tertius scena prima enter": [0, 65535], "tertius scena prima enter antipholus": [0, 65535], "scena prima enter antipholus of": [0, 65535], "prima enter antipholus of ephesus": [0, 65535], "enter antipholus of ephesus his": [0, 65535], "antipholus of ephesus his man": [0, 65535], "of ephesus his man dromio": [0, 65535], "ephesus his man dromio angelo": [0, 65535], "his man dromio angelo the": [0, 65535], "man dromio angelo the goldsmith": [0, 65535], "dromio angelo the goldsmith and": [0, 65535], "angelo the goldsmith and balthaser": [0, 65535], "the goldsmith and balthaser the": [0, 65535], "goldsmith and balthaser the merchant": [0, 65535], "and balthaser the merchant e": [0, 65535], "balthaser the merchant e anti": [0, 65535], "the merchant e anti good": [0, 65535], "merchant e anti good signior": [0, 65535], "e anti good signior angelo": [0, 65535], "anti good signior angelo you": [0, 65535], "good signior angelo you must": [0, 65535], "signior angelo you must excuse": [0, 65535], "angelo you must excuse vs": [0, 65535], "you must excuse vs all": [0, 65535], "must excuse vs all my": [0, 65535], "excuse vs all my wife": [0, 65535], "vs all my wife is": [0, 65535], "all my wife is shrewish": [0, 65535], "my wife is shrewish when": [0, 65535], "wife is shrewish when i": [0, 65535], "is shrewish when i keepe": [0, 65535], "shrewish when i keepe not": [0, 65535], "when i keepe not howres": [0, 65535], "i keepe not howres say": [0, 65535], "keepe not howres say that": [0, 65535], "not howres say that i": [0, 65535], "howres say that i lingerd": [0, 65535], "say that i lingerd with": [0, 65535], "that i lingerd with you": [0, 65535], "i lingerd with you at": [0, 65535], "lingerd with you at your": [0, 65535], "with you at your shop": [0, 65535], "you at your shop to": [0, 65535], "at your shop to see": [0, 65535], "your shop to see the": [0, 65535], "shop to see the making": [0, 65535], "to see the making of": [0, 65535], "see the making of her": [0, 65535], "the making of her carkanet": [0, 65535], "making of her carkanet and": [0, 65535], "of her carkanet and that": [0, 65535], "her carkanet and that to": [0, 65535], "carkanet and that to morrow": [0, 65535], "and that to morrow you": [0, 65535], "that to morrow you will": [0, 65535], "to morrow you will bring": [0, 65535], "morrow you will bring it": [0, 65535], "you will bring it home": [0, 65535], "will bring it home but": [0, 65535], "bring it home but here's": [0, 65535], "it home but here's a": [0, 65535], "home but here's a villaine": [0, 65535], "but here's a villaine that": [0, 65535], "here's a villaine that would": [0, 65535], "a villaine that would face": [0, 65535], "villaine that would face me": [0, 65535], "that would face me downe": [0, 65535], "would face me downe he": [0, 65535], "face me downe he met": [0, 65535], "me downe he met me": [0, 65535], "downe he met me on": [0, 65535], "he met me on the": [0, 65535], "met me on the mart": [0, 65535], "me on the mart and": [0, 65535], "on the mart and that": [0, 65535], "the mart and that i": [0, 65535], "mart and that i beat": [0, 65535], "and that i beat him": [0, 65535], "that i beat him and": [0, 65535], "i beat him and charg'd": [0, 65535], "beat him and charg'd him": [0, 65535], "him and charg'd him with": [0, 65535], "and charg'd him with a": [0, 65535], "charg'd him with a thousand": [0, 65535], "him with a thousand markes": [0, 65535], "with a thousand markes in": [0, 65535], "a thousand markes in gold": [0, 65535], "thousand markes in gold and": [0, 65535], "markes in gold and that": [0, 65535], "in gold and that i": [0, 65535], "gold and that i did": [0, 65535], "and that i did denie": [0, 65535], "that i did denie my": [0, 65535], "i did denie my wife": [0, 65535], "did denie my wife and": [0, 65535], "denie my wife and house": [0, 65535], "my wife and house thou": [0, 65535], "wife and house thou drunkard": [0, 65535], "and house thou drunkard thou": [0, 65535], "house thou drunkard thou what": [0, 65535], "thou drunkard thou what didst": [0, 65535], "drunkard thou what didst thou": [0, 65535], "thou what didst thou meane": [0, 65535], "what didst thou meane by": [0, 65535], "didst thou meane by this": [0, 65535], "thou meane by this e": [0, 65535], "meane by this e dro": [0, 65535], "by this e dro say": [0, 65535], "this e dro say what": [0, 65535], "e dro say what you": [0, 65535], "dro say what you wil": [0, 65535], "say what you wil sir": [0, 65535], "what you wil sir but": [0, 65535], "you wil sir but i": [0, 65535], "wil sir but i know": [0, 65535], "sir but i know what": [0, 65535], "but i know what i": [0, 65535], "i know what i know": [0, 65535], "know what i know that": [0, 65535], "what i know that you": [0, 65535], "i know that you beat": [0, 65535], "know that you beat me": [0, 65535], "that you beat me at": [0, 65535], "you beat me at the": [0, 65535], "beat me at the mart": [0, 65535], "me at the mart i": [0, 65535], "at the mart i haue": [0, 65535], "the mart i haue your": [0, 65535], "mart i haue your hand": [0, 65535], "i haue your hand to": [0, 65535], "haue your hand to show": [0, 65535], "your hand to show if": [0, 65535], "hand to show if the": [0, 65535], "to show if the skin": [0, 65535], "show if the skin were": [0, 65535], "if the skin were parchment": [0, 65535], "the skin were parchment the": [0, 65535], "skin were parchment the blows": [0, 65535], "were parchment the blows you": [0, 65535], "parchment the blows you gaue": [0, 65535], "the blows you gaue were": [0, 65535], "blows you gaue were ink": [0, 65535], "you gaue were ink your": [0, 65535], "gaue were ink your owne": [0, 65535], "were ink your owne hand": [0, 65535], "ink your owne hand writing": [0, 65535], "your owne hand writing would": [0, 65535], "owne hand writing would tell": [0, 65535], "hand writing would tell you": [0, 65535], "writing would tell you what": [0, 65535], "would tell you what i": [0, 65535], "tell you what i thinke": [0, 65535], "you what i thinke e": [0, 65535], "what i thinke e ant": [0, 65535], "i thinke e ant i": [0, 65535], "thinke e ant i thinke": [0, 65535], "e ant i thinke thou": [0, 65535], "ant i thinke thou art": [0, 65535], "i thinke thou art an": [0, 65535], "thinke thou art an asse": [0, 65535], "thou art an asse e": [0, 65535], "art an asse e dro": [0, 65535], "an asse e dro marry": [0, 65535], "asse e dro marry so": [0, 65535], "e dro marry so it": [0, 65535], "dro marry so it doth": [0, 65535], "marry so it doth appeare": [0, 65535], "so it doth appeare by": [0, 65535], "it doth appeare by the": [0, 65535], "doth appeare by the wrongs": [0, 65535], "appeare by the wrongs i": [0, 65535], "by the wrongs i suffer": [0, 65535], "the wrongs i suffer and": [0, 65535], "wrongs i suffer and the": [0, 65535], "i suffer and the blowes": [0, 65535], "suffer and the blowes i": [0, 65535], "and the blowes i beare": [0, 65535], "the blowes i beare i": [0, 65535], "blowes i beare i should": [0, 65535], "i beare i should kicke": [0, 65535], "beare i should kicke being": [0, 65535], "i should kicke being kickt": [0, 65535], "should kicke being kickt and": [0, 65535], "kicke being kickt and being": [0, 65535], "being kickt and being at": [0, 65535], "kickt and being at that": [0, 65535], "and being at that passe": [0, 65535], "being at that passe you": [0, 65535], "at that passe you would": [0, 65535], "that passe you would keepe": [0, 65535], "passe you would keepe from": [0, 65535], "you would keepe from my": [0, 65535], "would keepe from my heeles": [0, 65535], "keepe from my heeles and": [0, 65535], "from my heeles and beware": [0, 65535], "my heeles and beware of": [0, 65535], "heeles and beware of an": [0, 65535], "and beware of an asse": [0, 65535], "beware of an asse e": [0, 65535], "of an asse e an": [0, 65535], "an asse e an y'are": [0, 65535], "asse e an y'are sad": [0, 65535], "e an y'are sad signior": [0, 65535], "an y'are sad signior balthazar": [0, 65535], "y'are sad signior balthazar pray": [0, 65535], "sad signior balthazar pray god": [0, 65535], "signior balthazar pray god our": [0, 65535], "balthazar pray god our cheer": [0, 65535], "pray god our cheer may": [0, 65535], "god our cheer may answer": [0, 65535], "our cheer may answer my": [0, 65535], "cheer may answer my good": [0, 65535], "may answer my good will": [0, 65535], "answer my good will and": [0, 65535], "my good will and your": [0, 65535], "good will and your good": [0, 65535], "will and your good welcom": [0, 65535], "and your good welcom here": [0, 65535], "your good welcom here bal": [0, 65535], "good welcom here bal i": [0, 65535], "welcom here bal i hold": [0, 65535], "here bal i hold your": [0, 65535], "bal i hold your dainties": [0, 65535], "i hold your dainties cheap": [0, 65535], "hold your dainties cheap sir": [0, 65535], "your dainties cheap sir your": [0, 65535], "dainties cheap sir your welcom": [0, 65535], "cheap sir your welcom deer": [0, 65535], "sir your welcom deer e": [0, 65535], "your welcom deer e an": [0, 65535], "welcom deer e an oh": [0, 65535], "deer e an oh signior": [0, 65535], "e an oh signior balthazar": [0, 65535], "an oh signior balthazar either": [0, 65535], "oh signior balthazar either at": [0, 65535], "signior balthazar either at flesh": [0, 65535], "balthazar either at flesh or": [0, 65535], "either at flesh or fish": [0, 65535], "at flesh or fish a": [0, 65535], "flesh or fish a table": [0, 65535], "or fish a table full": [0, 65535], "fish a table full of": [0, 65535], "a table full of welcome": [0, 65535], "table full of welcome makes": [0, 65535], "full of welcome makes scarce": [0, 65535], "of welcome makes scarce one": [0, 65535], "welcome makes scarce one dainty": [0, 65535], "makes scarce one dainty dish": [0, 65535], "scarce one dainty dish bal": [0, 65535], "one dainty dish bal good": [0, 65535], "dainty dish bal good meat": [0, 65535], "dish bal good meat sir": [0, 65535], "bal good meat sir is": [0, 65535], "good meat sir is co": [0, 65535], "meat sir is co m": [0, 65535], "sir is co m mon": [0, 65535], "is co m mon that": [0, 65535], "co m mon that euery": [0, 65535], "m mon that euery churle": [0, 65535], "mon that euery churle affords": [0, 65535], "that euery churle affords anti": [0, 65535], "euery churle affords anti and": [0, 65535], "churle affords anti and welcome": [0, 65535], "affords anti and welcome more": [0, 65535], "anti and welcome more common": [0, 65535], "and welcome more common for": [0, 65535], "welcome more common for thats": [0, 65535], "more common for thats nothing": [0, 65535], "common for thats nothing but": [0, 65535], "for thats nothing but words": [0, 65535], "thats nothing but words bal": [0, 65535], "nothing but words bal small": [0, 65535], "but words bal small cheere": [0, 65535], "words bal small cheere and": [0, 65535], "bal small cheere and great": [0, 65535], "small cheere and great welcome": [0, 65535], "cheere and great welcome makes": [0, 65535], "and great welcome makes a": [0, 65535], "great welcome makes a merrie": [0, 65535], "welcome makes a merrie feast": [0, 65535], "makes a merrie feast anti": [0, 65535], "a merrie feast anti i": [0, 65535], "merrie feast anti i to": [0, 65535], "feast anti i to a": [0, 65535], "anti i to a niggardly": [0, 65535], "i to a niggardly host": [0, 65535], "to a niggardly host and": [0, 65535], "a niggardly host and more": [0, 65535], "niggardly host and more sparing": [0, 65535], "host and more sparing guest": [0, 65535], "and more sparing guest but": [0, 65535], "more sparing guest but though": [0, 65535], "sparing guest but though my": [0, 65535], "guest but though my cates": [0, 65535], "but though my cates be": [0, 65535], "though my cates be meane": [0, 65535], "my cates be meane take": [0, 65535], "cates be meane take them": [0, 65535], "be meane take them in": [0, 65535], "meane take them in good": [0, 65535], "take them in good part": [0, 65535], "them in good part better": [0, 65535], "in good part better cheere": [0, 65535], "good part better cheere may": [0, 65535], "part better cheere may you": [0, 65535], "better cheere may you haue": [0, 65535], "cheere may you haue but": [0, 65535], "may you haue but not": [0, 65535], "you haue but not with": [0, 65535], "haue but not with better": [0, 65535], "but not with better hart": [0, 65535], "not with better hart but": [0, 65535], "with better hart but soft": [0, 65535], "better hart but soft my": [0, 65535], "hart but soft my doore": [0, 65535], "but soft my doore is": [0, 65535], "soft my doore is lockt": [0, 65535], "my doore is lockt goe": [0, 65535], "doore is lockt goe bid": [0, 65535], "is lockt goe bid them": [0, 65535], "lockt goe bid them let": [0, 65535], "goe bid them let vs": [0, 65535], "bid them let vs in": [0, 65535], "them let vs in e": [0, 65535], "let vs in e dro": [0, 65535], "vs in e dro maud": [0, 65535], "in e dro maud briget": [0, 65535], "e dro maud briget marian": [0, 65535], "dro maud briget marian cisley": [0, 65535], "maud briget marian cisley gillian": [0, 65535], "briget marian cisley gillian ginn": [0, 65535], "marian cisley gillian ginn s": [0, 65535], "cisley gillian ginn s dro": [0, 65535], "gillian ginn s dro mome": [0, 65535], "ginn s dro mome malthorse": [0, 65535], "s dro mome malthorse capon": [0, 65535], "dro mome malthorse capon coxcombe": [0, 65535], "mome malthorse capon coxcombe idiot": [0, 65535], "malthorse capon coxcombe idiot patch": [0, 65535], "capon coxcombe idiot patch either": [0, 65535], "coxcombe idiot patch either get": [0, 65535], "idiot patch either get thee": [0, 65535], "patch either get thee from": [0, 65535], "either get thee from the": [0, 65535], "get thee from the dore": [0, 65535], "thee from the dore or": [0, 65535], "from the dore or sit": [0, 65535], "the dore or sit downe": [0, 65535], "dore or sit downe at": [0, 65535], "or sit downe at the": [0, 65535], "sit downe at the hatch": [0, 65535], "downe at the hatch dost": [0, 65535], "at the hatch dost thou": [0, 65535], "the hatch dost thou coniure": [0, 65535], "hatch dost thou coniure for": [0, 65535], "dost thou coniure for wenches": [0, 65535], "thou coniure for wenches that": [0, 65535], "coniure for wenches that thou": [0, 65535], "for wenches that thou calst": [0, 65535], "wenches that thou calst for": [0, 65535], "that thou calst for such": [0, 65535], "thou calst for such store": [0, 65535], "calst for such store when": [0, 65535], "for such store when one": [0, 65535], "such store when one is": [0, 65535], "store when one is one": [0, 65535], "when one is one too": [0, 65535], "one is one too many": [0, 65535], "is one too many goe": [0, 65535], "one too many goe get": [0, 65535], "too many goe get thee": [0, 65535], "many goe get thee from": [0, 65535], "goe get thee from the": [0, 65535], "thee from the dore e": [0, 65535], "from the dore e dro": [0, 65535], "the dore e dro what": [0, 65535], "dore e dro what patch": [0, 65535], "e dro what patch is": [0, 65535], "dro what patch is made": [0, 65535], "what patch is made our": [0, 65535], "patch is made our porter": [0, 65535], "is made our porter my": [0, 65535], "made our porter my master": [0, 65535], "our porter my master stayes": [0, 65535], "porter my master stayes in": [0, 65535], "my master stayes in the": [0, 65535], "master stayes in the street": [0, 65535], "stayes in the street s": [0, 65535], "in the street s dro": [0, 65535], "the street s dro let": [0, 65535], "street s dro let him": [0, 65535], "s dro let him walke": [0, 65535], "dro let him walke from": [0, 65535], "let him walke from whence": [0, 65535], "him walke from whence he": [0, 65535], "walke from whence he came": [0, 65535], "from whence he came lest": [0, 65535], "whence he came lest hee": [0, 65535], "he came lest hee catch": [0, 65535], "came lest hee catch cold": [0, 65535], "lest hee catch cold on's": [0, 65535], "hee catch cold on's feet": [0, 65535], "catch cold on's feet e": [0, 65535], "cold on's feet e ant": [0, 65535], "on's feet e ant who": [0, 65535], "feet e ant who talks": [0, 65535], "e ant who talks within": [0, 65535], "ant who talks within there": [0, 65535], "who talks within there hoa": [0, 65535], "talks within there hoa open": [0, 65535], "within there hoa open the": [0, 65535], "there hoa open the dore": [0, 65535], "hoa open the dore s": [0, 65535], "open the dore s dro": [0, 65535], "the dore s dro right": [0, 65535], "dore s dro right sir": [0, 65535], "s dro right sir ile": [0, 65535], "dro right sir ile tell": [0, 65535], "right sir ile tell you": [0, 65535], "sir ile tell you when": [0, 65535], "ile tell you when and": [0, 65535], "tell you when and you'll": [0, 65535], "you when and you'll tell": [0, 65535], "when and you'll tell me": [0, 65535], "and you'll tell me wherefore": [0, 65535], "you'll tell me wherefore ant": [0, 65535], "tell me wherefore ant wherefore": [0, 65535], "me wherefore ant wherefore for": [0, 65535], "wherefore ant wherefore for my": [0, 65535], "ant wherefore for my dinner": [0, 65535], "wherefore for my dinner i": [0, 65535], "for my dinner i haue": [0, 65535], "my dinner i haue not": [0, 65535], "dinner i haue not din'd": [0, 65535], "i haue not din'd to": [0, 65535], "haue not din'd to day": [0, 65535], "not din'd to day s": [0, 65535], "din'd to day s dro": [0, 65535], "to day s dro nor": [0, 65535], "day s dro nor to": [0, 65535], "s dro nor to day": [0, 65535], "dro nor to day here": [0, 65535], "nor to day here you": [0, 65535], "to day here you must": [0, 65535], "day here you must not": [0, 65535], "here you must not come": [0, 65535], "you must not come againe": [0, 65535], "must not come againe when": [0, 65535], "not come againe when you": [0, 65535], "come againe when you may": [0, 65535], "againe when you may anti": [0, 65535], "when you may anti what": [0, 65535], "you may anti what art": [0, 65535], "may anti what art thou": [0, 65535], "anti what art thou that": [0, 65535], "what art thou that keep'st": [0, 65535], "art thou that keep'st mee": [0, 65535], "thou that keep'st mee out": [0, 65535], "that keep'st mee out from": [0, 65535], "keep'st mee out from the": [0, 65535], "mee out from the howse": [0, 65535], "out from the howse i": [0, 65535], "from the howse i owe": [0, 65535], "the howse i owe s": [0, 65535], "howse i owe s dro": [0, 65535], "i owe s dro the": [0, 65535], "owe s dro the porter": [0, 65535], "s dro the porter for": [0, 65535], "dro the porter for this": [0, 65535], "the porter for this time": [0, 65535], "porter for this time sir": [0, 65535], "for this time sir and": [0, 65535], "this time sir and my": [0, 65535], "time sir and my name": [0, 65535], "sir and my name is": [0, 65535], "and my name is dromio": [0, 65535], "my name is dromio e": [0, 65535], "name is dromio e dro": [0, 65535], "is dromio e dro o": [0, 65535], "dromio e dro o villaine": [0, 65535], "e dro o villaine thou": [0, 65535], "dro o villaine thou hast": [0, 65535], "o villaine thou hast stolne": [0, 65535], "villaine thou hast stolne both": [0, 65535], "thou hast stolne both mine": [0, 65535], "hast stolne both mine office": [0, 65535], "stolne both mine office and": [0, 65535], "both mine office and my": [0, 65535], "mine office and my name": [0, 65535], "office and my name the": [0, 65535], "and my name the one": [0, 65535], "my name the one nere": [0, 65535], "name the one nere got": [0, 65535], "the one nere got me": [0, 65535], "one nere got me credit": [0, 65535], "nere got me credit the": [0, 65535], "got me credit the other": [0, 65535], "me credit the other mickle": [0, 65535], "credit the other mickle blame": [0, 65535], "the other mickle blame if": [0, 65535], "other mickle blame if thou": [0, 65535], "mickle blame if thou hadst": [0, 65535], "blame if thou hadst beene": [0, 65535], "if thou hadst beene dromio": [0, 65535], "thou hadst beene dromio to": [0, 65535], "hadst beene dromio to day": [0, 65535], "beene dromio to day in": [0, 65535], "dromio to day in my": [0, 65535], "to day in my place": [0, 65535], "day in my place thou": [0, 65535], "in my place thou wouldst": [0, 65535], "my place thou wouldst haue": [0, 65535], "place thou wouldst haue chang'd": [0, 65535], "thou wouldst haue chang'd thy": [0, 65535], "wouldst haue chang'd thy face": [0, 65535], "haue chang'd thy face for": [0, 65535], "chang'd thy face for a": [0, 65535], "thy face for a name": [0, 65535], "face for a name or": [0, 65535], "for a name or thy": [0, 65535], "a name or thy name": [0, 65535], "name or thy name for": [0, 65535], "or thy name for an": [0, 65535], "thy name for an asse": [0, 65535], "name for an asse enter": [0, 65535], "for an asse enter luce": [0, 65535], "an asse enter luce luce": [0, 65535], "asse enter luce luce what": [0, 65535], "enter luce luce what a": [0, 65535], "luce luce what a coile": [0, 65535], "luce what a coile is": [0, 65535], "what a coile is there": [0, 65535], "a coile is there dromio": [0, 65535], "coile is there dromio who": [0, 65535], "is there dromio who are": [0, 65535], "there dromio who are those": [0, 65535], "dromio who are those at": [0, 65535], "who are those at the": [0, 65535], "are those at the gate": [0, 65535], "those at the gate e": [0, 65535], "at the gate e dro": [0, 65535], "the gate e dro let": [0, 65535], "gate e dro let my": [0, 65535], "e dro let my master": [0, 65535], "dro let my master in": [0, 65535], "let my master in luce": [0, 65535], "my master in luce luce": [0, 65535], "master in luce luce faith": [0, 65535], "in luce luce faith no": [0, 65535], "luce luce faith no hee": [0, 65535], "luce faith no hee comes": [0, 65535], "faith no hee comes too": [0, 65535], "no hee comes too late": [0, 65535], "hee comes too late and": [0, 65535], "comes too late and so": [0, 65535], "too late and so tell": [0, 65535], "late and so tell your": [0, 65535], "and so tell your master": [0, 65535], "so tell your master e": [0, 65535], "tell your master e dro": [0, 65535], "your master e dro o": [0, 65535], "master e dro o lord": [0, 65535], "e dro o lord i": [0, 65535], "dro o lord i must": [0, 65535], "o lord i must laugh": [0, 65535], "lord i must laugh haue": [0, 65535], "i must laugh haue at": [0, 65535], "must laugh haue at you": [0, 65535], "laugh haue at you with": [0, 65535], "haue at you with a": [0, 65535], "at you with a prouerbe": [0, 65535], "you with a prouerbe shall": [0, 65535], "with a prouerbe shall i": [0, 65535], "a prouerbe shall i set": [0, 65535], "prouerbe shall i set in": [0, 65535], "shall i set in my": [0, 65535], "i set in my staffe": [0, 65535], "set in my staffe luce": [0, 65535], "in my staffe luce haue": [0, 65535], "my staffe luce haue at": [0, 65535], "staffe luce haue at you": [0, 65535], "luce haue at you with": [0, 65535], "haue at you with another": [0, 65535], "at you with another that's": [0, 65535], "you with another that's when": [0, 65535], "with another that's when can": [0, 65535], "another that's when can you": [0, 65535], "that's when can you tell": [0, 65535], "when can you tell s": [0, 65535], "can you tell s dro": [0, 65535], "you tell s dro if": [0, 65535], "tell s dro if thy": [0, 65535], "s dro if thy name": [0, 65535], "dro if thy name be": [0, 65535], "if thy name be called": [0, 65535], "thy name be called luce": [0, 65535], "name be called luce luce": [0, 65535], "be called luce luce thou": [0, 65535], "called luce luce thou hast": [0, 65535], "luce luce thou hast an": [0, 65535], "luce thou hast an swer'd": [0, 65535], "thou hast an swer'd him": [0, 65535], "hast an swer'd him well": [0, 65535], "an swer'd him well anti": [0, 65535], "swer'd him well anti doe": [0, 65535], "him well anti doe you": [0, 65535], "well anti doe you heare": [0, 65535], "anti doe you heare you": [0, 65535], "doe you heare you minion": [0, 65535], "you heare you minion you'll": [0, 65535], "heare you minion you'll let": [0, 65535], "you minion you'll let vs": [0, 65535], "minion you'll let vs in": [0, 65535], "you'll let vs in i": [0, 65535], "let vs in i hope": [0, 65535], "vs in i hope luce": [0, 65535], "in i hope luce i": [0, 65535], "i hope luce i thought": [0, 65535], "hope luce i thought to": [0, 65535], "luce i thought to haue": [0, 65535], "i thought to haue askt": [0, 65535], "thought to haue askt you": [0, 65535], "to haue askt you s": [0, 65535], "haue askt you s dro": [0, 65535], "askt you s dro and": [0, 65535], "you s dro and you": [0, 65535], "s dro and you said": [0, 65535], "dro and you said no": [0, 65535], "and you said no e": [0, 65535], "you said no e dro": [0, 65535], "said no e dro so": [0, 65535], "no e dro so come": [0, 65535], "e dro so come helpe": [0, 65535], "dro so come helpe well": [0, 65535], "so come helpe well strooke": [0, 65535], "come helpe well strooke there": [0, 65535], "helpe well strooke there was": [0, 65535], "well strooke there was blow": [0, 65535], "strooke there was blow for": [0, 65535], "there was blow for blow": [0, 65535], "was blow for blow anti": [0, 65535], "blow for blow anti thou": [0, 65535], "for blow anti thou baggage": [0, 65535], "blow anti thou baggage let": [0, 65535], "anti thou baggage let me": [0, 65535], "thou baggage let me in": [0, 65535], "baggage let me in luce": [0, 65535], "let me in luce can": [0, 65535], "me in luce can you": [0, 65535], "in luce can you tell": [0, 65535], "luce can you tell for": [0, 65535], "can you tell for whose": [0, 65535], "you tell for whose sake": [0, 65535], "tell for whose sake e": [0, 65535], "for whose sake e drom": [0, 65535], "whose sake e drom master": [0, 65535], "sake e drom master knocke": [0, 65535], "e drom master knocke the": [0, 65535], "drom master knocke the doore": [0, 65535], "master knocke the doore hard": [0, 65535], "knocke the doore hard luce": [0, 65535], "the doore hard luce let": [0, 65535], "doore hard luce let him": [0, 65535], "hard luce let him knocke": [0, 65535], "luce let him knocke till": [0, 65535], "let him knocke till it": [0, 65535], "him knocke till it ake": [0, 65535], "knocke till it ake anti": [0, 65535], "till it ake anti you'll": [0, 65535], "it ake anti you'll crie": [0, 65535], "ake anti you'll crie for": [0, 65535], "anti you'll crie for this": [0, 65535], "you'll crie for this minion": [0, 65535], "crie for this minion if": [0, 65535], "for this minion if i": [0, 65535], "this minion if i beat": [0, 65535], "minion if i beat the": [0, 65535], "if i beat the doore": [0, 65535], "i beat the doore downe": [0, 65535], "beat the doore downe luce": [0, 65535], "the doore downe luce what": [0, 65535], "doore downe luce what needs": [0, 65535], "downe luce what needs all": [0, 65535], "luce what needs all that": [0, 65535], "what needs all that and": [0, 65535], "needs all that and a": [0, 65535], "all that and a paire": [0, 65535], "that and a paire of": [0, 65535], "and a paire of stocks": [0, 65535], "a paire of stocks in": [0, 65535], "paire of stocks in the": [0, 65535], "of stocks in the towne": [0, 65535], "stocks in the towne enter": [0, 65535], "in the towne enter adriana": [0, 65535], "the towne enter adriana adr": [0, 65535], "towne enter adriana adr who": [0, 65535], "enter adriana adr who is": [0, 65535], "adriana adr who is that": [0, 65535], "adr who is that at": [0, 65535], "who is that at the": [0, 65535], "is that at the doore": [0, 65535], "that at the doore that": [0, 65535], "at the doore that keeps": [0, 65535], "the doore that keeps all": [0, 65535], "doore that keeps all this": [0, 65535], "that keeps all this noise": [0, 65535], "keeps all this noise s": [0, 65535], "all this noise s dro": [0, 65535], "this noise s dro by": [0, 65535], "noise s dro by my": [0, 65535], "s dro by my troth": [0, 65535], "dro by my troth your": [0, 65535], "by my troth your towne": [0, 65535], "my troth your towne is": [0, 65535], "troth your towne is troubled": [0, 65535], "your towne is troubled with": [0, 65535], "towne is troubled with vnruly": [0, 65535], "is troubled with vnruly boies": [0, 65535], "troubled with vnruly boies anti": [0, 65535], "with vnruly boies anti are": [0, 65535], "vnruly boies anti are you": [0, 65535], "boies anti are you there": [0, 65535], "anti are you there wife": [0, 65535], "are you there wife you": [0, 65535], "you there wife you might": [0, 65535], "there wife you might haue": [0, 65535], "wife you might haue come": [0, 65535], "you might haue come before": [0, 65535], "might haue come before adri": [0, 65535], "haue come before adri your": [0, 65535], "come before adri your wife": [0, 65535], "before adri your wife sir": [0, 65535], "adri your wife sir knaue": [0, 65535], "your wife sir knaue go": [0, 65535], "wife sir knaue go get": [0, 65535], "sir knaue go get you": [0, 65535], "knaue go get you from": [0, 65535], "go get you from the": [0, 65535], "get you from the dore": [0, 65535], "you from the dore e": [0, 65535], "the dore e dro if": [0, 65535], "dore e dro if you": [0, 65535], "e dro if you went": [0, 65535], "dro if you went in": [0, 65535], "if you went in paine": [0, 65535], "you went in paine master": [0, 65535], "went in paine master this": [0, 65535], "in paine master this knaue": [0, 65535], "paine master this knaue wold": [0, 65535], "master this knaue wold goe": [0, 65535], "this knaue wold goe sore": [0, 65535], "knaue wold goe sore angelo": [0, 65535], "wold goe sore angelo heere": [0, 65535], "goe sore angelo heere is": [0, 65535], "sore angelo heere is neither": [0, 65535], "angelo heere is neither cheere": [0, 65535], "heere is neither cheere sir": [0, 65535], "is neither cheere sir nor": [0, 65535], "neither cheere sir nor welcome": [0, 65535], "cheere sir nor welcome we": [0, 65535], "sir nor welcome we would": [0, 65535], "nor welcome we would faine": [0, 65535], "welcome we would faine haue": [0, 65535], "we would faine haue either": [0, 65535], "would faine haue either baltz": [0, 65535], "faine haue either baltz in": [0, 65535], "haue either baltz in debating": [0, 65535], "either baltz in debating which": [0, 65535], "baltz in debating which was": [0, 65535], "in debating which was best": [0, 65535], "debating which was best wee": [0, 65535], "which was best wee shall": [0, 65535], "was best wee shall part": [0, 65535], "best wee shall part with": [0, 65535], "wee shall part with neither": [0, 65535], "shall part with neither e": [0, 65535], "part with neither e dro": [0, 65535], "with neither e dro they": [0, 65535], "neither e dro they stand": [0, 65535], "e dro they stand at": [0, 65535], "dro they stand at the": [0, 65535], "they stand at the doore": [0, 65535], "stand at the doore master": [0, 65535], "at the doore master bid": [0, 65535], "the doore master bid them": [0, 65535], "doore master bid them welcome": [0, 65535], "master bid them welcome hither": [0, 65535], "bid them welcome hither anti": [0, 65535], "them welcome hither anti there": [0, 65535], "welcome hither anti there is": [0, 65535], "hither anti there is something": [0, 65535], "anti there is something in": [0, 65535], "there is something in the": [0, 65535], "is something in the winde": [0, 65535], "something in the winde that": [0, 65535], "in the winde that we": [0, 65535], "the winde that we cannot": [0, 65535], "winde that we cannot get": [0, 65535], "that we cannot get in": [0, 65535], "we cannot get in e": [0, 65535], "cannot get in e dro": [0, 65535], "get in e dro you": [0, 65535], "in e dro you would": [0, 65535], "e dro you would say": [0, 65535], "dro you would say so": [0, 65535], "you would say so master": [0, 65535], "would say so master if": [0, 65535], "say so master if your": [0, 65535], "so master if your garments": [0, 65535], "master if your garments were": [0, 65535], "if your garments were thin": [0, 65535], "your garments were thin your": [0, 65535], "garments were thin your cake": [0, 65535], "were thin your cake here": [0, 65535], "thin your cake here is": [0, 65535], "your cake here is warme": [0, 65535], "cake here is warme within": [0, 65535], "here is warme within you": [0, 65535], "is warme within you stand": [0, 65535], "warme within you stand here": [0, 65535], "within you stand here in": [0, 65535], "you stand here in the": [0, 65535], "stand here in the cold": [0, 65535], "here in the cold it": [0, 65535], "in the cold it would": [0, 65535], "the cold it would make": [0, 65535], "cold it would make a": [0, 65535], "it would make a man": [0, 65535], "would make a man mad": [0, 65535], "make a man mad as": [0, 65535], "a man mad as a": [0, 65535], "man mad as a bucke": [0, 65535], "mad as a bucke to": [0, 65535], "as a bucke to be": [0, 65535], "a bucke to be so": [0, 65535], "bucke to be so bought": [0, 65535], "to be so bought and": [0, 65535], "be so bought and sold": [0, 65535], "so bought and sold ant": [0, 65535], "bought and sold ant go": [0, 65535], "and sold ant go fetch": [0, 65535], "sold ant go fetch me": [0, 65535], "ant go fetch me something": [0, 65535], "go fetch me something ile": [0, 65535], "fetch me something ile break": [0, 65535], "me something ile break ope": [0, 65535], "something ile break ope the": [0, 65535], "ile break ope the gate": [0, 65535], "break ope the gate s": [0, 65535], "ope the gate s dro": [0, 65535], "the gate s dro breake": [0, 65535], "gate s dro breake any": [0, 65535], "s dro breake any breaking": [0, 65535], "dro breake any breaking here": [0, 65535], "breake any breaking here and": [0, 65535], "any breaking here and ile": [0, 65535], "breaking here and ile breake": [0, 65535], "here and ile breake your": [0, 65535], "and ile breake your knaues": [0, 65535], "ile breake your knaues pate": [0, 65535], "breake your knaues pate e": [0, 65535], "your knaues pate e dro": [0, 65535], "knaues pate e dro a": [0, 65535], "pate e dro a man": [0, 65535], "e dro a man may": [0, 65535], "dro a man may breake": [0, 65535], "a man may breake a": [0, 65535], "man may breake a word": [0, 65535], "may breake a word with": [0, 65535], "breake a word with your": [0, 65535], "a word with your sir": [0, 65535], "word with your sir and": [0, 65535], "with your sir and words": [0, 65535], "your sir and words are": [0, 65535], "sir and words are but": [0, 65535], "and words are but winde": [0, 65535], "words are but winde i": [0, 65535], "are but winde i and": [0, 65535], "but winde i and breake": [0, 65535], "winde i and breake it": [0, 65535], "i and breake it in": [0, 65535], "and breake it in your": [0, 65535], "breake it in your face": [0, 65535], "it in your face so": [0, 65535], "in your face so he": [0, 65535], "your face so he break": [0, 65535], "face so he break it": [0, 65535], "so he break it not": [0, 65535], "he break it not behinde": [0, 65535], "break it not behinde s": [0, 65535], "it not behinde s dro": [0, 65535], "not behinde s dro it": [0, 65535], "behinde s dro it seemes": [0, 65535], "s dro it seemes thou": [0, 65535], "dro it seemes thou want'st": [0, 65535], "it seemes thou want'st breaking": [0, 65535], "seemes thou want'st breaking out": [0, 65535], "thou want'st breaking out vpon": [0, 65535], "want'st breaking out vpon thee": [0, 65535], "breaking out vpon thee hinde": [0, 65535], "out vpon thee hinde e": [0, 65535], "vpon thee hinde e dro": [0, 65535], "thee hinde e dro here's": [0, 65535], "hinde e dro here's too": [0, 65535], "e dro here's too much": [0, 65535], "dro here's too much out": [0, 65535], "here's too much out vpon": [0, 65535], "too much out vpon thee": [0, 65535], "much out vpon thee i": [0, 65535], "out vpon thee i pray": [0, 65535], "vpon thee i pray thee": [0, 65535], "thee i pray thee let": [0, 65535], "i pray thee let me": [0, 65535], "pray thee let me in": [0, 65535], "thee let me in s": [0, 65535], "let me in s dro": [0, 65535], "me in s dro i": [0, 65535], "in s dro i when": [0, 65535], "s dro i when fowles": [0, 65535], "dro i when fowles haue": [0, 65535], "i when fowles haue no": [0, 65535], "when fowles haue no feathers": [0, 65535], "fowles haue no feathers and": [0, 65535], "haue no feathers and fish": [0, 65535], "no feathers and fish haue": [0, 65535], "feathers and fish haue no": [0, 65535], "and fish haue no fin": [0, 65535], "fish haue no fin ant": [0, 65535], "haue no fin ant well": [0, 65535], "no fin ant well ile": [0, 65535], "fin ant well ile breake": [0, 65535], "ant well ile breake in": [0, 65535], "well ile breake in go": [0, 65535], "ile breake in go borrow": [0, 65535], "breake in go borrow me": [0, 65535], "in go borrow me a": [0, 65535], "go borrow me a crow": [0, 65535], "borrow me a crow e": [0, 65535], "me a crow e dro": [0, 65535], "a crow e dro a": [0, 65535], "crow e dro a crow": [0, 65535], "e dro a crow without": [0, 65535], "dro a crow without feather": [0, 65535], "a crow without feather master": [0, 65535], "crow without feather master meane": [0, 65535], "without feather master meane you": [0, 65535], "feather master meane you so": [0, 65535], "master meane you so for": [0, 65535], "meane you so for a": [0, 65535], "you so for a fish": [0, 65535], "so for a fish without": [0, 65535], "for a fish without a": [0, 65535], "a fish without a finne": [0, 65535], "fish without a finne ther's": [0, 65535], "without a finne ther's a": [0, 65535], "a finne ther's a fowle": [0, 65535], "finne ther's a fowle without": [0, 65535], "ther's a fowle without a": [0, 65535], "a fowle without a fether": [0, 65535], "fowle without a fether if": [0, 65535], "without a fether if a": [0, 65535], "a fether if a crow": [0, 65535], "fether if a crow help": [0, 65535], "if a crow help vs": [0, 65535], "a crow help vs in": [0, 65535], "crow help vs in sirra": [0, 65535], "help vs in sirra wee'll": [0, 65535], "vs in sirra wee'll plucke": [0, 65535], "in sirra wee'll plucke a": [0, 65535], "sirra wee'll plucke a crow": [0, 65535], "wee'll plucke a crow together": [0, 65535], "plucke a crow together ant": [0, 65535], "a crow together ant go": [0, 65535], "crow together ant go get": [0, 65535], "together ant go get thee": [0, 65535], "ant go get thee gon": [0, 65535], "go get thee gon fetch": [0, 65535], "get thee gon fetch me": [0, 65535], "thee gon fetch me an": [0, 65535], "gon fetch me an iron": [0, 65535], "fetch me an iron crow": [0, 65535], "me an iron crow balth": [0, 65535], "an iron crow balth haue": [0, 65535], "iron crow balth haue patience": [0, 65535], "crow balth haue patience sir": [0, 65535], "balth haue patience sir oh": [0, 65535], "haue patience sir oh let": [0, 65535], "patience sir oh let it": [0, 65535], "sir oh let it not": [0, 65535], "oh let it not be": [0, 65535], "let it not be so": [0, 65535], "it not be so heerein": [0, 65535], "not be so heerein you": [0, 65535], "be so heerein you warre": [0, 65535], "so heerein you warre against": [0, 65535], "heerein you warre against your": [0, 65535], "you warre against your reputation": [0, 65535], "warre against your reputation and": [0, 65535], "against your reputation and draw": [0, 65535], "your reputation and draw within": [0, 65535], "reputation and draw within the": [0, 65535], "and draw within the compasse": [0, 65535], "draw within the compasse of": [0, 65535], "within the compasse of suspect": [0, 65535], "the compasse of suspect th'": [0, 65535], "compasse of suspect th' vnuiolated": [0, 65535], "of suspect th' vnuiolated honor": [0, 65535], "suspect th' vnuiolated honor of": [0, 65535], "th' vnuiolated honor of your": [0, 65535], "vnuiolated honor of your wife": [0, 65535], "honor of your wife once": [0, 65535], "of your wife once this": [0, 65535], "your wife once this your": [0, 65535], "wife once this your long": [0, 65535], "once this your long experience": [0, 65535], "this your long experience of": [0, 65535], "your long experience of your": [0, 65535], "long experience of your wisedome": [0, 65535], "experience of your wisedome her": [0, 65535], "of your wisedome her sober": [0, 65535], "your wisedome her sober vertue": [0, 65535], "wisedome her sober vertue yeares": [0, 65535], "her sober vertue yeares and": [0, 65535], "sober vertue yeares and modestie": [0, 65535], "vertue yeares and modestie plead": [0, 65535], "yeares and modestie plead on": [0, 65535], "and modestie plead on your": [0, 65535], "modestie plead on your part": [0, 65535], "plead on your part some": [0, 65535], "on your part some cause": [0, 65535], "your part some cause to": [0, 65535], "part some cause to you": [0, 65535], "some cause to you vnknowne": [0, 65535], "cause to you vnknowne and": [0, 65535], "to you vnknowne and doubt": [0, 65535], "you vnknowne and doubt not": [0, 65535], "vnknowne and doubt not sir": [0, 65535], "and doubt not sir but": [0, 65535], "doubt not sir but she": [0, 65535], "not sir but she will": [0, 65535], "sir but she will well": [0, 65535], "but she will well excuse": [0, 65535], "she will well excuse why": [0, 65535], "will well excuse why at": [0, 65535], "well excuse why at this": [0, 65535], "excuse why at this time": [0, 65535], "why at this time the": [0, 65535], "at this time the dores": [0, 65535], "this time the dores are": [0, 65535], "time the dores are made": [0, 65535], "the dores are made against": [0, 65535], "dores are made against you": [0, 65535], "are made against you be": [0, 65535], "made against you be rul'd": [0, 65535], "against you be rul'd by": [0, 65535], "you be rul'd by me": [0, 65535], "be rul'd by me depart": [0, 65535], "rul'd by me depart in": [0, 65535], "by me depart in patience": [0, 65535], "me depart in patience and": [0, 65535], "depart in patience and let": [0, 65535], "in patience and let vs": [0, 65535], "patience and let vs to": [0, 65535], "and let vs to the": [0, 65535], "let vs to the tyger": [0, 65535], "vs to the tyger all": [0, 65535], "to the tyger all to": [0, 65535], "the tyger all to dinner": [0, 65535], "tyger all to dinner and": [0, 65535], "all to dinner and about": [0, 65535], "to dinner and about euening": [0, 65535], "dinner and about euening come": [0, 65535], "and about euening come your": [0, 65535], "about euening come your selfe": [0, 65535], "euening come your selfe alone": [0, 65535], "come your selfe alone to": [0, 65535], "your selfe alone to know": [0, 65535], "selfe alone to know the": [0, 65535], "alone to know the reason": [0, 65535], "to know the reason of": [0, 65535], "know the reason of this": [0, 65535], "the reason of this strange": [0, 65535], "reason of this strange restraint": [0, 65535], "of this strange restraint if": [0, 65535], "this strange restraint if by": [0, 65535], "strange restraint if by strong": [0, 65535], "restraint if by strong hand": [0, 65535], "if by strong hand you": [0, 65535], "by strong hand you offer": [0, 65535], "strong hand you offer to": [0, 65535], "hand you offer to breake": [0, 65535], "you offer to breake in": [0, 65535], "offer to breake in now": [0, 65535], "to breake in now in": [0, 65535], "breake in now in the": [0, 65535], "in now in the stirring": [0, 65535], "now in the stirring passage": [0, 65535], "in the stirring passage of": [0, 65535], "the stirring passage of the": [0, 65535], "stirring passage of the day": [0, 65535], "passage of the day a": [0, 65535], "of the day a vulgar": [0, 65535], "the day a vulgar comment": [0, 65535], "day a vulgar comment will": [0, 65535], "a vulgar comment will be": [0, 65535], "vulgar comment will be made": [0, 65535], "comment will be made of": [0, 65535], "will be made of it": [0, 65535], "be made of it and": [0, 65535], "made of it and that": [0, 65535], "of it and that supposed": [0, 65535], "it and that supposed by": [0, 65535], "and that supposed by the": [0, 65535], "that supposed by the common": [0, 65535], "supposed by the common rowt": [0, 65535], "by the common rowt against": [0, 65535], "the common rowt against your": [0, 65535], "common rowt against your yet": [0, 65535], "rowt against your yet vngalled": [0, 65535], "against your yet vngalled estimation": [0, 65535], "your yet vngalled estimation that": [0, 65535], "yet vngalled estimation that may": [0, 65535], "vngalled estimation that may with": [0, 65535], "estimation that may with foule": [0, 65535], "that may with foule intrusion": [0, 65535], "may with foule intrusion enter": [0, 65535], "with foule intrusion enter in": [0, 65535], "foule intrusion enter in and": [0, 65535], "intrusion enter in and dwell": [0, 65535], "enter in and dwell vpon": [0, 65535], "in and dwell vpon your": [0, 65535], "and dwell vpon your graue": [0, 65535], "dwell vpon your graue when": [0, 65535], "vpon your graue when you": [0, 65535], "your graue when you are": [0, 65535], "graue when you are dead": [0, 65535], "when you are dead for": [0, 65535], "you are dead for slander": [0, 65535], "are dead for slander liues": [0, 65535], "dead for slander liues vpon": [0, 65535], "for slander liues vpon succession": [0, 65535], "slander liues vpon succession for": [0, 65535], "liues vpon succession for euer": [0, 65535], "vpon succession for euer hows'd": [0, 65535], "succession for euer hows'd where": [0, 65535], "for euer hows'd where it": [0, 65535], "euer hows'd where it gets": [0, 65535], "hows'd where it gets possession": [0, 65535], "where it gets possession anti": [0, 65535], "it gets possession anti you": [0, 65535], "gets possession anti you haue": [0, 65535], "possession anti you haue preuail'd": [0, 65535], "anti you haue preuail'd i": [0, 65535], "you haue preuail'd i will": [0, 65535], "haue preuail'd i will depart": [0, 65535], "preuail'd i will depart in": [0, 65535], "i will depart in quiet": [0, 65535], "will depart in quiet and": [0, 65535], "depart in quiet and in": [0, 65535], "in quiet and in despight": [0, 65535], "quiet and in despight of": [0, 65535], "and in despight of mirth": [0, 65535], "in despight of mirth meane": [0, 65535], "despight of mirth meane to": [0, 65535], "of mirth meane to be": [0, 65535], "mirth meane to be merrie": [0, 65535], "meane to be merrie i": [0, 65535], "to be merrie i know": [0, 65535], "be merrie i know a": [0, 65535], "merrie i know a wench": [0, 65535], "i know a wench of": [0, 65535], "know a wench of excellent": [0, 65535], "a wench of excellent discourse": [0, 65535], "wench of excellent discourse prettie": [0, 65535], "of excellent discourse prettie and": [0, 65535], "excellent discourse prettie and wittie": [0, 65535], "discourse prettie and wittie wilde": [0, 65535], "prettie and wittie wilde and": [0, 65535], "and wittie wilde and yet": [0, 65535], "wittie wilde and yet too": [0, 65535], "wilde and yet too gentle": [0, 65535], "and yet too gentle there": [0, 65535], "yet too gentle there will": [0, 65535], "too gentle there will we": [0, 65535], "gentle there will we dine": [0, 65535], "there will we dine this": [0, 65535], "will we dine this woman": [0, 65535], "we dine this woman that": [0, 65535], "dine this woman that i": [0, 65535], "this woman that i meane": [0, 65535], "woman that i meane my": [0, 65535], "that i meane my wife": [0, 65535], "i meane my wife but": [0, 65535], "meane my wife but i": [0, 65535], "my wife but i protest": [0, 65535], "wife but i protest without": [0, 65535], "but i protest without desert": [0, 65535], "i protest without desert hath": [0, 65535], "protest without desert hath oftentimes": [0, 65535], "without desert hath oftentimes vpbraided": [0, 65535], "desert hath oftentimes vpbraided me": [0, 65535], "hath oftentimes vpbraided me withall": [0, 65535], "oftentimes vpbraided me withall to": [0, 65535], "vpbraided me withall to her": [0, 65535], "me withall to her will": [0, 65535], "withall to her will we": [0, 65535], "to her will we to": [0, 65535], "her will we to dinner": [0, 65535], "will we to dinner get": [0, 65535], "we to dinner get you": [0, 65535], "to dinner get you home": [0, 65535], "dinner get you home and": [0, 65535], "get you home and fetch": [0, 65535], "you home and fetch the": [0, 65535], "home and fetch the chaine": [0, 65535], "and fetch the chaine by": [0, 65535], "fetch the chaine by this": [0, 65535], "the chaine by this i": [0, 65535], "chaine by this i know": [0, 65535], "by this i know 'tis": [0, 65535], "this i know 'tis made": [0, 65535], "i know 'tis made bring": [0, 65535], "know 'tis made bring it": [0, 65535], "'tis made bring it i": [0, 65535], "made bring it i pray": [0, 65535], "bring it i pray you": [0, 65535], "it i pray you to": [0, 65535], "i pray you to the": [0, 65535], "pray you to the porpentine": [0, 65535], "you to the porpentine for": [0, 65535], "to the porpentine for there's": [0, 65535], "the porpentine for there's the": [0, 65535], "porpentine for there's the house": [0, 65535], "for there's the house that": [0, 65535], "there's the house that chaine": [0, 65535], "the house that chaine will": [0, 65535], "house that chaine will i": [0, 65535], "that chaine will i bestow": [0, 65535], "chaine will i bestow be": [0, 65535], "will i bestow be it": [0, 65535], "i bestow be it for": [0, 65535], "bestow be it for nothing": [0, 65535], "be it for nothing but": [0, 65535], "it for nothing but to": [0, 65535], "for nothing but to spight": [0, 65535], "nothing but to spight my": [0, 65535], "but to spight my wife": [0, 65535], "to spight my wife vpon": [0, 65535], "spight my wife vpon mine": [0, 65535], "my wife vpon mine hostesse": [0, 65535], "wife vpon mine hostesse there": [0, 65535], "vpon mine hostesse there good": [0, 65535], "mine hostesse there good sir": [0, 65535], "hostesse there good sir make": [0, 65535], "there good sir make haste": [0, 65535], "good sir make haste since": [0, 65535], "sir make haste since mine": [0, 65535], "make haste since mine owne": [0, 65535], "haste since mine owne doores": [0, 65535], "since mine owne doores refuse": [0, 65535], "mine owne doores refuse to": [0, 65535], "owne doores refuse to entertaine": [0, 65535], "doores refuse to entertaine me": [0, 65535], "refuse to entertaine me ile": [0, 65535], "to entertaine me ile knocke": [0, 65535], "entertaine me ile knocke else": [0, 65535], "me ile knocke else where": [0, 65535], "ile knocke else where to": [0, 65535], "knocke else where to see": [0, 65535], "else where to see if": [0, 65535], "where to see if they'll": [0, 65535], "to see if they'll disdaine": [0, 65535], "see if they'll disdaine me": [0, 65535], "if they'll disdaine me ang": [0, 65535], "they'll disdaine me ang ile": [0, 65535], "disdaine me ang ile meet": [0, 65535], "me ang ile meet you": [0, 65535], "ang ile meet you at": [0, 65535], "ile meet you at that": [0, 65535], "meet you at that place": [0, 65535], "you at that place some": [0, 65535], "at that place some houre": [0, 65535], "that place some houre hence": [0, 65535], "place some houre hence anti": [0, 65535], "some houre hence anti do": [0, 65535], "houre hence anti do so": [0, 65535], "hence anti do so this": [0, 65535], "anti do so this iest": [0, 65535], "do so this iest shall": [0, 65535], "so this iest shall cost": [0, 65535], "this iest shall cost me": [0, 65535], "iest shall cost me some": [0, 65535], "shall cost me some expence": [0, 65535], "cost me some expence exeunt": [0, 65535], "me some expence exeunt enter": [0, 65535], "some expence exeunt enter iuliana": [0, 65535], "expence exeunt enter iuliana with": [0, 65535], "exeunt enter iuliana with antipholus": [0, 65535], "enter iuliana with antipholus of": [0, 65535], "iuliana with antipholus of siracusia": [0, 65535], "with antipholus of siracusia iulia": [0, 65535], "antipholus of siracusia iulia and": [0, 65535], "of siracusia iulia and may": [0, 65535], "siracusia iulia and may it": [0, 65535], "iulia and may it be": [0, 65535], "and may it be that": [0, 65535], "may it be that you": [0, 65535], "it be that you haue": [0, 65535], "be that you haue quite": [0, 65535], "that you haue quite forgot": [0, 65535], "you haue quite forgot a": [0, 65535], "haue quite forgot a husbands": [0, 65535], "quite forgot a husbands office": [0, 65535], "forgot a husbands office shall": [0, 65535], "a husbands office shall antipholus": [0, 65535], "husbands office shall antipholus euen": [0, 65535], "office shall antipholus euen in": [0, 65535], "shall antipholus euen in the": [0, 65535], "antipholus euen in the spring": [0, 65535], "euen in the spring of": [0, 65535], "in the spring of loue": [0, 65535], "the spring of loue thy": [0, 65535], "spring of loue thy loue": [0, 65535], "of loue thy loue springs": [0, 65535], "loue thy loue springs rot": [0, 65535], "thy loue springs rot shall": [0, 65535], "loue springs rot shall loue": [0, 65535], "springs rot shall loue in": [0, 65535], "rot shall loue in buildings": [0, 65535], "shall loue in buildings grow": [0, 65535], "loue in buildings grow so": [0, 65535], "in buildings grow so ruinate": [0, 65535], "buildings grow so ruinate if": [0, 65535], "grow so ruinate if you": [0, 65535], "so ruinate if you did": [0, 65535], "ruinate if you did wed": [0, 65535], "if you did wed my": [0, 65535], "you did wed my sister": [0, 65535], "did wed my sister for": [0, 65535], "wed my sister for her": [0, 65535], "my sister for her wealth": [0, 65535], "sister for her wealth then": [0, 65535], "for her wealth then for": [0, 65535], "her wealth then for her": [0, 65535], "wealth then for her wealths": [0, 65535], "then for her wealths sake": [0, 65535], "for her wealths sake vse": [0, 65535], "her wealths sake vse her": [0, 65535], "wealths sake vse her with": [0, 65535], "sake vse her with more": [0, 65535], "vse her with more kindnesse": [0, 65535], "her with more kindnesse or": [0, 65535], "with more kindnesse or if": [0, 65535], "more kindnesse or if you": [0, 65535], "kindnesse or if you like": [0, 65535], "or if you like else": [0, 65535], "if you like else where": [0, 65535], "you like else where doe": [0, 65535], "like else where doe it": [0, 65535], "else where doe it by": [0, 65535], "where doe it by stealth": [0, 65535], "doe it by stealth muffle": [0, 65535], "it by stealth muffle your": [0, 65535], "by stealth muffle your false": [0, 65535], "stealth muffle your false loue": [0, 65535], "muffle your false loue with": [0, 65535], "your false loue with some": [0, 65535], "false loue with some shew": [0, 65535], "loue with some shew of": [0, 65535], "with some shew of blindnesse": [0, 65535], "some shew of blindnesse let": [0, 65535], "shew of blindnesse let not": [0, 65535], "of blindnesse let not my": [0, 65535], "blindnesse let not my sister": [0, 65535], "let not my sister read": [0, 65535], "not my sister read it": [0, 65535], "my sister read it in": [0, 65535], "sister read it in your": [0, 65535], "read it in your eye": [0, 65535], "it in your eye be": [0, 65535], "in your eye be not": [0, 65535], "your eye be not thy": [0, 65535], "eye be not thy tongue": [0, 65535], "be not thy tongue thy": [0, 65535], "not thy tongue thy owne": [0, 65535], "thy tongue thy owne shames": [0, 65535], "tongue thy owne shames orator": [0, 65535], "thy owne shames orator looke": [0, 65535], "owne shames orator looke sweet": [0, 65535], "shames orator looke sweet speake": [0, 65535], "orator looke sweet speake faire": [0, 65535], "looke sweet speake faire become": [0, 65535], "sweet speake faire become disloyaltie": [0, 65535], "speake faire become disloyaltie apparell": [0, 65535], "faire become disloyaltie apparell vice": [0, 65535], "become disloyaltie apparell vice like": [0, 65535], "disloyaltie apparell vice like vertues": [0, 65535], "apparell vice like vertues harbenger": [0, 65535], "vice like vertues harbenger beare": [0, 65535], "like vertues harbenger beare a": [0, 65535], "vertues harbenger beare a faire": [0, 65535], "harbenger beare a faire presence": [0, 65535], "beare a faire presence though": [0, 65535], "a faire presence though your": [0, 65535], "faire presence though your heart": [0, 65535], "presence though your heart be": [0, 65535], "though your heart be tainted": [0, 65535], "your heart be tainted teach": [0, 65535], "heart be tainted teach sinne": [0, 65535], "be tainted teach sinne the": [0, 65535], "tainted teach sinne the carriage": [0, 65535], "teach sinne the carriage of": [0, 65535], "sinne the carriage of a": [0, 65535], "the carriage of a holy": [0, 65535], "carriage of a holy saint": [0, 65535], "of a holy saint be": [0, 65535], "a holy saint be secret": [0, 65535], "holy saint be secret false": [0, 65535], "saint be secret false what": [0, 65535], "be secret false what need": [0, 65535], "secret false what need she": [0, 65535], "false what need she be": [0, 65535], "what need she be acquainted": [0, 65535], "need she be acquainted what": [0, 65535], "she be acquainted what simple": [0, 65535], "be acquainted what simple thiefe": [0, 65535], "acquainted what simple thiefe brags": [0, 65535], "what simple thiefe brags of": [0, 65535], "simple thiefe brags of his": [0, 65535], "thiefe brags of his owne": [0, 65535], "brags of his owne attaine": [0, 65535], "of his owne attaine 'tis": [0, 65535], "his owne attaine 'tis double": [0, 65535], "owne attaine 'tis double wrong": [0, 65535], "attaine 'tis double wrong to": [0, 65535], "'tis double wrong to truant": [0, 65535], "double wrong to truant with": [0, 65535], "wrong to truant with your": [0, 65535], "to truant with your bed": [0, 65535], "truant with your bed and": [0, 65535], "with your bed and let": [0, 65535], "your bed and let her": [0, 65535], "bed and let her read": [0, 65535], "and let her read it": [0, 65535], "let her read it in": [0, 65535], "her read it in thy": [0, 65535], "read it in thy lookes": [0, 65535], "it in thy lookes at": [0, 65535], "in thy lookes at boord": [0, 65535], "thy lookes at boord shame": [0, 65535], "lookes at boord shame hath": [0, 65535], "at boord shame hath a": [0, 65535], "boord shame hath a bastard": [0, 65535], "shame hath a bastard fame": [0, 65535], "hath a bastard fame well": [0, 65535], "a bastard fame well managed": [0, 65535], "bastard fame well managed ill": [0, 65535], "fame well managed ill deeds": [0, 65535], "well managed ill deeds is": [0, 65535], "managed ill deeds is doubled": [0, 65535], "ill deeds is doubled with": [0, 65535], "deeds is doubled with an": [0, 65535], "is doubled with an euill": [0, 65535], "doubled with an euill word": [0, 65535], "with an euill word alas": [0, 65535], "an euill word alas poore": [0, 65535], "euill word alas poore women": [0, 65535], "word alas poore women make": [0, 65535], "alas poore women make vs": [0, 65535], "poore women make vs not": [0, 65535], "women make vs not beleeue": [0, 65535], "make vs not beleeue being": [0, 65535], "vs not beleeue being compact": [0, 65535], "not beleeue being compact of": [0, 65535], "beleeue being compact of credit": [0, 65535], "being compact of credit that": [0, 65535], "compact of credit that you": [0, 65535], "of credit that you loue": [0, 65535], "credit that you loue vs": [0, 65535], "that you loue vs though": [0, 65535], "you loue vs though others": [0, 65535], "loue vs though others haue": [0, 65535], "vs though others haue the": [0, 65535], "though others haue the arme": [0, 65535], "others haue the arme shew": [0, 65535], "haue the arme shew vs": [0, 65535], "the arme shew vs the": [0, 65535], "arme shew vs the sleeue": [0, 65535], "shew vs the sleeue we": [0, 65535], "vs the sleeue we in": [0, 65535], "the sleeue we in your": [0, 65535], "sleeue we in your motion": [0, 65535], "we in your motion turne": [0, 65535], "in your motion turne and": [0, 65535], "your motion turne and you": [0, 65535], "motion turne and you may": [0, 65535], "turne and you may moue": [0, 65535], "and you may moue vs": [0, 65535], "you may moue vs then": [0, 65535], "may moue vs then gentle": [0, 65535], "moue vs then gentle brother": [0, 65535], "vs then gentle brother get": [0, 65535], "then gentle brother get you": [0, 65535], "gentle brother get you in": [0, 65535], "brother get you in againe": [0, 65535], "get you in againe comfort": [0, 65535], "you in againe comfort my": [0, 65535], "in againe comfort my sister": [0, 65535], "againe comfort my sister cheere": [0, 65535], "comfort my sister cheere her": [0, 65535], "my sister cheere her call": [0, 65535], "sister cheere her call her": [0, 65535], "cheere her call her wise": [0, 65535], "her call her wise 'tis": [0, 65535], "call her wise 'tis holy": [0, 65535], "her wise 'tis holy sport": [0, 65535], "wise 'tis holy sport to": [0, 65535], "'tis holy sport to be": [0, 65535], "holy sport to be a": [0, 65535], "sport to be a little": [0, 65535], "to be a little vaine": [0, 65535], "be a little vaine when": [0, 65535], "a little vaine when the": [0, 65535], "little vaine when the sweet": [0, 65535], "vaine when the sweet breath": [0, 65535], "when the sweet breath of": [0, 65535], "the sweet breath of flatterie": [0, 65535], "sweet breath of flatterie conquers": [0, 65535], "breath of flatterie conquers strife": [0, 65535], "of flatterie conquers strife s": [0, 65535], "flatterie conquers strife s anti": [0, 65535], "conquers strife s anti sweete": [0, 65535], "strife s anti sweete mistris": [0, 65535], "s anti sweete mistris what": [0, 65535], "anti sweete mistris what your": [0, 65535], "sweete mistris what your name": [0, 65535], "mistris what your name is": [0, 65535], "what your name is else": [0, 65535], "your name is else i": [0, 65535], "name is else i know": [0, 65535], "is else i know not": [0, 65535], "else i know not nor": [0, 65535], "i know not nor by": [0, 65535], "know not nor by what": [0, 65535], "not nor by what wonder": [0, 65535], "nor by what wonder you": [0, 65535], "by what wonder you do": [0, 65535], "what wonder you do hit": [0, 65535], "wonder you do hit of": [0, 65535], "you do hit of mine": [0, 65535], "do hit of mine lesse": [0, 65535], "hit of mine lesse in": [0, 65535], "of mine lesse in your": [0, 65535], "mine lesse in your knowledge": [0, 65535], "lesse in your knowledge and": [0, 65535], "in your knowledge and your": [0, 65535], "your knowledge and your grace": [0, 65535], "knowledge and your grace you": [0, 65535], "and your grace you show": [0, 65535], "your grace you show not": [0, 65535], "grace you show not then": [0, 65535], "you show not then our": [0, 65535], "show not then our earths": [0, 65535], "not then our earths wonder": [0, 65535], "then our earths wonder more": [0, 65535], "our earths wonder more then": [0, 65535], "earths wonder more then earth": [0, 65535], "wonder more then earth diuine": [0, 65535], "more then earth diuine teach": [0, 65535], "then earth diuine teach me": [0, 65535], "earth diuine teach me deere": [0, 65535], "diuine teach me deere creature": [0, 65535], "teach me deere creature how": [0, 65535], "me deere creature how to": [0, 65535], "deere creature how to thinke": [0, 65535], "creature how to thinke and": [0, 65535], "how to thinke and speake": [0, 65535], "to thinke and speake lay": [0, 65535], "thinke and speake lay open": [0, 65535], "and speake lay open to": [0, 65535], "speake lay open to my": [0, 65535], "lay open to my earthie": [0, 65535], "open to my earthie grosse": [0, 65535], "to my earthie grosse conceit": [0, 65535], "my earthie grosse conceit smothred": [0, 65535], "earthie grosse conceit smothred in": [0, 65535], "grosse conceit smothred in errors": [0, 65535], "conceit smothred in errors feeble": [0, 65535], "smothred in errors feeble shallow": [0, 65535], "in errors feeble shallow weake": [0, 65535], "errors feeble shallow weake the": [0, 65535], "feeble shallow weake the foulded": [0, 65535], "shallow weake the foulded meaning": [0, 65535], "weake the foulded meaning of": [0, 65535], "the foulded meaning of your": [0, 65535], "foulded meaning of your words": [0, 65535], "meaning of your words deceit": [0, 65535], "of your words deceit against": [0, 65535], "your words deceit against my": [0, 65535], "words deceit against my soules": [0, 65535], "deceit against my soules pure": [0, 65535], "against my soules pure truth": [0, 65535], "my soules pure truth why": [0, 65535], "soules pure truth why labour": [0, 65535], "pure truth why labour you": [0, 65535], "truth why labour you to": [0, 65535], "why labour you to make": [0, 65535], "labour you to make it": [0, 65535], "you to make it wander": [0, 65535], "to make it wander in": [0, 65535], "make it wander in an": [0, 65535], "it wander in an vnknowne": [0, 65535], "wander in an vnknowne field": [0, 65535], "in an vnknowne field are": [0, 65535], "an vnknowne field are you": [0, 65535], "vnknowne field are you a": [0, 65535], "field are you a god": [0, 65535], "are you a god would": [0, 65535], "you a god would you": [0, 65535], "a god would you create": [0, 65535], "god would you create me": [0, 65535], "would you create me new": [0, 65535], "you create me new transforme": [0, 65535], "create me new transforme me": [0, 65535], "me new transforme me then": [0, 65535], "new transforme me then and": [0, 65535], "transforme me then and to": [0, 65535], "me then and to your": [0, 65535], "then and to your powre": [0, 65535], "and to your powre ile": [0, 65535], "to your powre ile yeeld": [0, 65535], "your powre ile yeeld but": [0, 65535], "powre ile yeeld but if": [0, 65535], "ile yeeld but if that": [0, 65535], "yeeld but if that i": [0, 65535], "but if that i am": [0, 65535], "if that i am i": [0, 65535], "that i am i then": [0, 65535], "i am i then well": [0, 65535], "am i then well i": [0, 65535], "i then well i know": [0, 65535], "then well i know your": [0, 65535], "well i know your weeping": [0, 65535], "i know your weeping sister": [0, 65535], "know your weeping sister is": [0, 65535], "your weeping sister is no": [0, 65535], "weeping sister is no wife": [0, 65535], "sister is no wife of": [0, 65535], "is no wife of mine": [0, 65535], "no wife of mine nor": [0, 65535], "wife of mine nor to": [0, 65535], "of mine nor to her": [0, 65535], "mine nor to her bed": [0, 65535], "nor to her bed no": [0, 65535], "to her bed no homage": [0, 65535], "her bed no homage doe": [0, 65535], "bed no homage doe i": [0, 65535], "no homage doe i owe": [0, 65535], "homage doe i owe farre": [0, 65535], "doe i owe farre more": [0, 65535], "i owe farre more farre": [0, 65535], "owe farre more farre more": [0, 65535], "farre more farre more to": [0, 65535], "more farre more to you": [0, 65535], "farre more to you doe": [0, 65535], "more to you doe i": [0, 65535], "to you doe i decline": [0, 65535], "you doe i decline oh": [0, 65535], "doe i decline oh traine": [0, 65535], "i decline oh traine me": [0, 65535], "decline oh traine me not": [0, 65535], "oh traine me not sweet": [0, 65535], "traine me not sweet mermaide": [0, 65535], "me not sweet mermaide with": [0, 65535], "not sweet mermaide with thy": [0, 65535], "sweet mermaide with thy note": [0, 65535], "mermaide with thy note to": [0, 65535], "with thy note to drowne": [0, 65535], "thy note to drowne me": [0, 65535], "note to drowne me in": [0, 65535], "to drowne me in thy": [0, 65535], "drowne me in thy sister": [0, 65535], "me in thy sister floud": [0, 65535], "in thy sister floud of": [0, 65535], "thy sister floud of teares": [0, 65535], "sister floud of teares sing": [0, 65535], "floud of teares sing siren": [0, 65535], "of teares sing siren for": [0, 65535], "teares sing siren for thy": [0, 65535], "sing siren for thy selfe": [0, 65535], "siren for thy selfe and": [0, 65535], "for thy selfe and i": [0, 65535], "thy selfe and i will": [0, 65535], "selfe and i will dote": [0, 65535], "and i will dote spread": [0, 65535], "i will dote spread ore": [0, 65535], "will dote spread ore the": [0, 65535], "dote spread ore the siluer": [0, 65535], "spread ore the siluer waues": [0, 65535], "ore the siluer waues thy": [0, 65535], "the siluer waues thy golden": [0, 65535], "siluer waues thy golden haires": [0, 65535], "waues thy golden haires and": [0, 65535], "thy golden haires and as": [0, 65535], "golden haires and as a": [0, 65535], "haires and as a bud": [0, 65535], "and as a bud ile": [0, 65535], "as a bud ile take": [0, 65535], "a bud ile take thee": [0, 65535], "bud ile take thee and": [0, 65535], "ile take thee and there": [0, 65535], "take thee and there lie": [0, 65535], "thee and there lie and": [0, 65535], "and there lie and in": [0, 65535], "there lie and in that": [0, 65535], "lie and in that glorious": [0, 65535], "and in that glorious supposition": [0, 65535], "in that glorious supposition thinke": [0, 65535], "that glorious supposition thinke he": [0, 65535], "glorious supposition thinke he gaines": [0, 65535], "supposition thinke he gaines by": [0, 65535], "thinke he gaines by death": [0, 65535], "he gaines by death that": [0, 65535], "gaines by death that hath": [0, 65535], "by death that hath such": [0, 65535], "death that hath such meanes": [0, 65535], "that hath such meanes to": [0, 65535], "hath such meanes to die": [0, 65535], "such meanes to die let": [0, 65535], "meanes to die let loue": [0, 65535], "to die let loue being": [0, 65535], "die let loue being light": [0, 65535], "let loue being light be": [0, 65535], "loue being light be drowned": [0, 65535], "being light be drowned if": [0, 65535], "light be drowned if she": [0, 65535], "be drowned if she sinke": [0, 65535], "drowned if she sinke luc": [0, 65535], "if she sinke luc what": [0, 65535], "she sinke luc what are": [0, 65535], "sinke luc what are you": [0, 65535], "luc what are you mad": [0, 65535], "what are you mad that": [0, 65535], "are you mad that you": [0, 65535], "you mad that you doe": [0, 65535], "mad that you doe reason": [0, 65535], "that you doe reason so": [0, 65535], "you doe reason so ant": [0, 65535], "doe reason so ant not": [0, 65535], "reason so ant not mad": [0, 65535], "so ant not mad but": [0, 65535], "ant not mad but mated": [0, 65535], "not mad but mated how": [0, 65535], "mad but mated how i": [0, 65535], "but mated how i doe": [0, 65535], "mated how i doe not": [0, 65535], "how i doe not know": [0, 65535], "i doe not know luc": [0, 65535], "doe not know luc it": [0, 65535], "not know luc it is": [0, 65535], "know luc it is a": [0, 65535], "luc it is a fault": [0, 65535], "it is a fault that": [0, 65535], "is a fault that springeth": [0, 65535], "a fault that springeth from": [0, 65535], "fault that springeth from your": [0, 65535], "that springeth from your eie": [0, 65535], "springeth from your eie ant": [0, 65535], "from your eie ant for": [0, 65535], "your eie ant for gazing": [0, 65535], "eie ant for gazing on": [0, 65535], "ant for gazing on your": [0, 65535], "for gazing on your beames": [0, 65535], "gazing on your beames faire": [0, 65535], "on your beames faire sun": [0, 65535], "your beames faire sun being": [0, 65535], "beames faire sun being by": [0, 65535], "faire sun being by luc": [0, 65535], "sun being by luc gaze": [0, 65535], "being by luc gaze when": [0, 65535], "by luc gaze when you": [0, 65535], "luc gaze when you should": [0, 65535], "gaze when you should and": [0, 65535], "when you should and that": [0, 65535], "you should and that will": [0, 65535], "should and that will cleere": [0, 65535], "and that will cleere your": [0, 65535], "that will cleere your sight": [0, 65535], "will cleere your sight ant": [0, 65535], "cleere your sight ant as": [0, 65535], "your sight ant as good": [0, 65535], "sight ant as good to": [0, 65535], "ant as good to winke": [0, 65535], "as good to winke sweet": [0, 65535], "good to winke sweet loue": [0, 65535], "to winke sweet loue as": [0, 65535], "winke sweet loue as looke": [0, 65535], "sweet loue as looke on": [0, 65535], "loue as looke on night": [0, 65535], "as looke on night luc": [0, 65535], "looke on night luc why": [0, 65535], "on night luc why call": [0, 65535], "night luc why call you": [0, 65535], "luc why call you me": [0, 65535], "why call you me loue": [0, 65535], "call you me loue call": [0, 65535], "you me loue call my": [0, 65535], "me loue call my sister": [0, 65535], "loue call my sister so": [0, 65535], "call my sister so ant": [0, 65535], "my sister so ant thy": [0, 65535], "sister so ant thy sisters": [0, 65535], "so ant thy sisters sister": [0, 65535], "ant thy sisters sister luc": [0, 65535], "thy sisters sister luc that's": [0, 65535], "sisters sister luc that's my": [0, 65535], "sister luc that's my sister": [0, 65535], "luc that's my sister ant": [0, 65535], "that's my sister ant no": [0, 65535], "my sister ant no it": [0, 65535], "sister ant no it is": [0, 65535], "ant no it is thy": [0, 65535], "no it is thy selfe": [0, 65535], "it is thy selfe mine": [0, 65535], "is thy selfe mine owne": [0, 65535], "thy selfe mine owne selfes": [0, 65535], "selfe mine owne selfes better": [0, 65535], "mine owne selfes better part": [0, 65535], "owne selfes better part mine": [0, 65535], "selfes better part mine eies": [0, 65535], "better part mine eies cleere": [0, 65535], "part mine eies cleere eie": [0, 65535], "mine eies cleere eie my": [0, 65535], "eies cleere eie my deere": [0, 65535], "cleere eie my deere hearts": [0, 65535], "eie my deere hearts deerer": [0, 65535], "my deere hearts deerer heart": [0, 65535], "deere hearts deerer heart my": [0, 65535], "hearts deerer heart my foode": [0, 65535], "deerer heart my foode my": [0, 65535], "heart my foode my fortune": [0, 65535], "my foode my fortune and": [0, 65535], "foode my fortune and my": [0, 65535], "my fortune and my sweet": [0, 65535], "fortune and my sweet hopes": [0, 65535], "and my sweet hopes aime": [0, 65535], "my sweet hopes aime my": [0, 65535], "sweet hopes aime my sole": [0, 65535], "hopes aime my sole earths": [0, 65535], "aime my sole earths heauen": [0, 65535], "my sole earths heauen and": [0, 65535], "sole earths heauen and my": [0, 65535], "earths heauen and my heauens": [0, 65535], "heauen and my heauens claime": [0, 65535], "and my heauens claime luc": [0, 65535], "my heauens claime luc all": [0, 65535], "heauens claime luc all this": [0, 65535], "claime luc all this my": [0, 65535], "luc all this my sister": [0, 65535], "all this my sister is": [0, 65535], "this my sister is or": [0, 65535], "my sister is or else": [0, 65535], "sister is or else should": [0, 65535], "is or else should be": [0, 65535], "or else should be ant": [0, 65535], "else should be ant call": [0, 65535], "should be ant call thy": [0, 65535], "be ant call thy selfe": [0, 65535], "ant call thy selfe sister": [0, 65535], "call thy selfe sister sweet": [0, 65535], "thy selfe sister sweet for": [0, 65535], "selfe sister sweet for i": [0, 65535], "sister sweet for i am": [0, 65535], "sweet for i am thee": [0, 65535], "for i am thee thee": [0, 65535], "i am thee thee will": [0, 65535], "am thee thee will i": [0, 65535], "thee thee will i loue": [0, 65535], "thee will i loue and": [0, 65535], "will i loue and with": [0, 65535], "i loue and with thee": [0, 65535], "loue and with thee lead": [0, 65535], "and with thee lead my": [0, 65535], "with thee lead my life": [0, 65535], "thee lead my life thou": [0, 65535], "lead my life thou hast": [0, 65535], "my life thou hast no": [0, 65535], "life thou hast no husband": [0, 65535], "thou hast no husband yet": [0, 65535], "hast no husband yet nor": [0, 65535], "no husband yet nor i": [0, 65535], "husband yet nor i no": [0, 65535], "yet nor i no wife": [0, 65535], "nor i no wife giue": [0, 65535], "i no wife giue me": [0, 65535], "no wife giue me thy": [0, 65535], "wife giue me thy hand": [0, 65535], "giue me thy hand luc": [0, 65535], "me thy hand luc oh": [0, 65535], "thy hand luc oh soft": [0, 65535], "hand luc oh soft sir": [0, 65535], "luc oh soft sir hold": [0, 65535], "oh soft sir hold you": [0, 65535], "soft sir hold you still": [0, 65535], "sir hold you still ile": [0, 65535], "hold you still ile fetch": [0, 65535], "you still ile fetch my": [0, 65535], "still ile fetch my sister": [0, 65535], "ile fetch my sister to": [0, 65535], "fetch my sister to get": [0, 65535], "my sister to get her": [0, 65535], "sister to get her good": [0, 65535], "to get her good will": [0, 65535], "get her good will exit": [0, 65535], "her good will exit enter": [0, 65535], "good will exit enter dromio": [0, 65535], "will exit enter dromio siracusia": [0, 65535], "exit enter dromio siracusia ant": [0, 65535], "enter dromio siracusia ant why": [0, 65535], "dromio siracusia ant why how": [0, 65535], "siracusia ant why how now": [0, 65535], "ant why how now dromio": [0, 65535], "why how now dromio where": [0, 65535], "how now dromio where run'st": [0, 65535], "now dromio where run'st thou": [0, 65535], "dromio where run'st thou so": [0, 65535], "where run'st thou so fast": [0, 65535], "run'st thou so fast s": [0, 65535], "thou so fast s dro": [0, 65535], "so fast s dro doe": [0, 65535], "fast s dro doe you": [0, 65535], "s dro doe you know": [0, 65535], "dro doe you know me": [0, 65535], "doe you know me sir": [0, 65535], "you know me sir am": [0, 65535], "know me sir am i": [0, 65535], "me sir am i dromio": [0, 65535], "sir am i dromio am": [0, 65535], "am i dromio am i": [0, 65535], "i dromio am i your": [0, 65535], "dromio am i your man": [0, 65535], "am i your man am": [0, 65535], "i your man am i": [0, 65535], "your man am i my": [0, 65535], "man am i my selfe": [0, 65535], "am i my selfe ant": [0, 65535], "i my selfe ant thou": [0, 65535], "my selfe ant thou art": [0, 65535], "selfe ant thou art dromio": [0, 65535], "ant thou art dromio thou": [0, 65535], "thou art dromio thou art": [0, 65535], "art dromio thou art my": [0, 65535], "dromio thou art my man": [0, 65535], "thou art my man thou": [0, 65535], "art my man thou art": [0, 65535], "my man thou art thy": [0, 65535], "man thou art thy selfe": [0, 65535], "thou art thy selfe dro": [0, 65535], "art thy selfe dro i": [0, 65535], "thy selfe dro i am": [0, 65535], "selfe dro i am an": [0, 65535], "dro i am an asse": [0, 65535], "i am an asse i": [0, 65535], "am an asse i am": [0, 65535], "an asse i am a": [0, 65535], "asse i am a womans": [0, 65535], "i am a womans man": [0, 65535], "am a womans man and": [0, 65535], "a womans man and besides": [0, 65535], "womans man and besides my": [0, 65535], "man and besides my selfe": [0, 65535], "and besides my selfe ant": [0, 65535], "besides my selfe ant what": [0, 65535], "my selfe ant what womans": [0, 65535], "selfe ant what womans man": [0, 65535], "ant what womans man and": [0, 65535], "what womans man and how": [0, 65535], "womans man and how besides": [0, 65535], "man and how besides thy": [0, 65535], "and how besides thy selfe": [0, 65535], "how besides thy selfe dro": [0, 65535], "besides thy selfe dro marrie": [0, 65535], "thy selfe dro marrie sir": [0, 65535], "selfe dro marrie sir besides": [0, 65535], "dro marrie sir besides my": [0, 65535], "marrie sir besides my selfe": [0, 65535], "sir besides my selfe i": [0, 65535], "besides my selfe i am": [0, 65535], "my selfe i am due": [0, 65535], "selfe i am due to": [0, 65535], "i am due to a": [0, 65535], "am due to a woman": [0, 65535], "due to a woman one": [0, 65535], "to a woman one that": [0, 65535], "a woman one that claimes": [0, 65535], "woman one that claimes me": [0, 65535], "one that claimes me one": [0, 65535], "that claimes me one that": [0, 65535], "claimes me one that haunts": [0, 65535], "me one that haunts me": [0, 65535], "one that haunts me one": [0, 65535], "that haunts me one that": [0, 65535], "haunts me one that will": [0, 65535], "me one that will haue": [0, 65535], "one that will haue me": [0, 65535], "that will haue me anti": [0, 65535], "will haue me anti what": [0, 65535], "haue me anti what claime": [0, 65535], "me anti what claime laies": [0, 65535], "anti what claime laies she": [0, 65535], "what claime laies she to": [0, 65535], "claime laies she to thee": [0, 65535], "laies she to thee dro": [0, 65535], "she to thee dro marry": [0, 65535], "to thee dro marry sir": [0, 65535], "thee dro marry sir such": [0, 65535], "dro marry sir such claime": [0, 65535], "marry sir such claime as": [0, 65535], "sir such claime as you": [0, 65535], "such claime as you would": [0, 65535], "claime as you would lay": [0, 65535], "as you would lay to": [0, 65535], "you would lay to your": [0, 65535], "would lay to your horse": [0, 65535], "lay to your horse and": [0, 65535], "to your horse and she": [0, 65535], "your horse and she would": [0, 65535], "horse and she would haue": [0, 65535], "and she would haue me": [0, 65535], "she would haue me as": [0, 65535], "would haue me as a": [0, 65535], "haue me as a beast": [0, 65535], "me as a beast not": [0, 65535], "as a beast not that": [0, 65535], "a beast not that i": [0, 65535], "beast not that i beeing": [0, 65535], "not that i beeing a": [0, 65535], "that i beeing a beast": [0, 65535], "i beeing a beast she": [0, 65535], "beeing a beast she would": [0, 65535], "a beast she would haue": [0, 65535], "beast she would haue me": [0, 65535], "she would haue me but": [0, 65535], "would haue me but that": [0, 65535], "haue me but that she": [0, 65535], "me but that she being": [0, 65535], "but that she being a": [0, 65535], "that she being a verie": [0, 65535], "she being a verie beastly": [0, 65535], "being a verie beastly creature": [0, 65535], "a verie beastly creature layes": [0, 65535], "verie beastly creature layes claime": [0, 65535], "beastly creature layes claime to": [0, 65535], "creature layes claime to me": [0, 65535], "layes claime to me anti": [0, 65535], "claime to me anti what": [0, 65535], "to me anti what is": [0, 65535], "me anti what is she": [0, 65535], "anti what is she dro": [0, 65535], "what is she dro a": [0, 65535], "is she dro a very": [0, 65535], "she dro a very reuerent": [0, 65535], "dro a very reuerent body": [0, 65535], "a very reuerent body i": [0, 65535], "very reuerent body i such": [0, 65535], "reuerent body i such a": [0, 65535], "body i such a one": [0, 65535], "i such a one as": [0, 65535], "such a one as a": [0, 65535], "a one as a man": [0, 65535], "one as a man may": [0, 65535], "as a man may not": [0, 65535], "a man may not speake": [0, 65535], "man may not speake of": [0, 65535], "may not speake of without": [0, 65535], "not speake of without he": [0, 65535], "speake of without he say": [0, 65535], "of without he say sir": [0, 65535], "without he say sir reuerence": [0, 65535], "he say sir reuerence i": [0, 65535], "say sir reuerence i haue": [0, 65535], "sir reuerence i haue but": [0, 65535], "reuerence i haue but leane": [0, 65535], "i haue but leane lucke": [0, 65535], "haue but leane lucke in": [0, 65535], "but leane lucke in the": [0, 65535], "leane lucke in the match": [0, 65535], "lucke in the match and": [0, 65535], "in the match and yet": [0, 65535], "the match and yet is": [0, 65535], "match and yet is she": [0, 65535], "and yet is she a": [0, 65535], "yet is she a wondrous": [0, 65535], "is she a wondrous fat": [0, 65535], "she a wondrous fat marriage": [0, 65535], "a wondrous fat marriage anti": [0, 65535], "wondrous fat marriage anti how": [0, 65535], "fat marriage anti how dost": [0, 65535], "marriage anti how dost thou": [0, 65535], "anti how dost thou meane": [0, 65535], "how dost thou meane a": [0, 65535], "dost thou meane a fat": [0, 65535], "thou meane a fat marriage": [0, 65535], "meane a fat marriage dro": [0, 65535], "a fat marriage dro marry": [0, 65535], "fat marriage dro marry sir": [0, 65535], "marriage dro marry sir she's": [0, 65535], "dro marry sir she's the": [0, 65535], "marry sir she's the kitchin": [0, 65535], "sir she's the kitchin wench": [0, 65535], "she's the kitchin wench al": [0, 65535], "the kitchin wench al grease": [0, 65535], "kitchin wench al grease and": [0, 65535], "wench al grease and i": [0, 65535], "al grease and i know": [0, 65535], "grease and i know not": [0, 65535], "and i know not what": [0, 65535], "i know not what vse": [0, 65535], "know not what vse to": [0, 65535], "not what vse to put": [0, 65535], "what vse to put her": [0, 65535], "vse to put her too": [0, 65535], "to put her too but": [0, 65535], "put her too but to": [0, 65535], "her too but to make": [0, 65535], "too but to make a": [0, 65535], "but to make a lampe": [0, 65535], "to make a lampe of": [0, 65535], "make a lampe of her": [0, 65535], "a lampe of her and": [0, 65535], "lampe of her and run": [0, 65535], "of her and run from": [0, 65535], "her and run from her": [0, 65535], "and run from her by": [0, 65535], "run from her by her": [0, 65535], "from her by her owne": [0, 65535], "her by her owne light": [0, 65535], "by her owne light i": [0, 65535], "her owne light i warrant": [0, 65535], "owne light i warrant her": [0, 65535], "light i warrant her ragges": [0, 65535], "i warrant her ragges and": [0, 65535], "warrant her ragges and the": [0, 65535], "her ragges and the tallow": [0, 65535], "ragges and the tallow in": [0, 65535], "and the tallow in them": [0, 65535], "the tallow in them will": [0, 65535], "tallow in them will burne": [0, 65535], "in them will burne a": [0, 65535], "them will burne a poland": [0, 65535], "will burne a poland winter": [0, 65535], "burne a poland winter if": [0, 65535], "a poland winter if she": [0, 65535], "poland winter if she liues": [0, 65535], "winter if she liues till": [0, 65535], "if she liues till doomesday": [0, 65535], "she liues till doomesday she'l": [0, 65535], "liues till doomesday she'l burne": [0, 65535], "till doomesday she'l burne a": [0, 65535], "doomesday she'l burne a weeke": [0, 65535], "she'l burne a weeke longer": [0, 65535], "burne a weeke longer then": [0, 65535], "a weeke longer then the": [0, 65535], "weeke longer then the whole": [0, 65535], "longer then the whole world": [0, 65535], "then the whole world anti": [0, 65535], "the whole world anti what": [0, 65535], "whole world anti what complexion": [0, 65535], "world anti what complexion is": [0, 65535], "anti what complexion is she": [0, 65535], "what complexion is she of": [0, 65535], "complexion is she of dro": [0, 65535], "is she of dro swart": [0, 65535], "she of dro swart like": [0, 65535], "of dro swart like my": [0, 65535], "dro swart like my shoo": [0, 65535], "swart like my shoo but": [0, 65535], "like my shoo but her": [0, 65535], "my shoo but her face": [0, 65535], "shoo but her face nothing": [0, 65535], "but her face nothing like": [0, 65535], "her face nothing like so": [0, 65535], "face nothing like so cleane": [0, 65535], "nothing like so cleane kept": [0, 65535], "like so cleane kept for": [0, 65535], "so cleane kept for why": [0, 65535], "cleane kept for why she": [0, 65535], "kept for why she sweats": [0, 65535], "for why she sweats a": [0, 65535], "why she sweats a man": [0, 65535], "she sweats a man may": [0, 65535], "sweats a man may goe": [0, 65535], "a man may goe o": [0, 65535], "man may goe o uer": [0, 65535], "may goe o uer shooes": [0, 65535], "goe o uer shooes in": [0, 65535], "o uer shooes in the": [0, 65535], "uer shooes in the grime": [0, 65535], "shooes in the grime of": [0, 65535], "in the grime of it": [0, 65535], "the grime of it anti": [0, 65535], "grime of it anti that's": [0, 65535], "of it anti that's a": [0, 65535], "it anti that's a fault": [0, 65535], "anti that's a fault that": [0, 65535], "that's a fault that water": [0, 65535], "a fault that water will": [0, 65535], "fault that water will mend": [0, 65535], "that water will mend dro": [0, 65535], "water will mend dro no": [0, 65535], "will mend dro no sir": [0, 65535], "mend dro no sir 'tis": [0, 65535], "dro no sir 'tis in": [0, 65535], "no sir 'tis in graine": [0, 65535], "sir 'tis in graine noahs": [0, 65535], "'tis in graine noahs flood": [0, 65535], "in graine noahs flood could": [0, 65535], "graine noahs flood could not": [0, 65535], "noahs flood could not do": [0, 65535], "flood could not do it": [0, 65535], "could not do it anti": [0, 65535], "not do it anti what's": [0, 65535], "do it anti what's her": [0, 65535], "it anti what's her name": [0, 65535], "anti what's her name dro": [0, 65535], "what's her name dro nell": [0, 65535], "her name dro nell sir": [0, 65535], "name dro nell sir but": [0, 65535], "dro nell sir but her": [0, 65535], "nell sir but her name": [0, 65535], "sir but her name is": [0, 65535], "but her name is three": [0, 65535], "her name is three quarters": [0, 65535], "name is three quarters that's": [0, 65535], "is three quarters that's an": [0, 65535], "three quarters that's an ell": [0, 65535], "quarters that's an ell and": [0, 65535], "that's an ell and three": [0, 65535], "an ell and three quarters": [0, 65535], "ell and three quarters will": [0, 65535], "and three quarters will not": [0, 65535], "three quarters will not measure": [0, 65535], "quarters will not measure her": [0, 65535], "will not measure her from": [0, 65535], "not measure her from hip": [0, 65535], "measure her from hip to": [0, 65535], "her from hip to hip": [0, 65535], "from hip to hip anti": [0, 65535], "hip to hip anti then": [0, 65535], "to hip anti then she": [0, 65535], "hip anti then she beares": [0, 65535], "anti then she beares some": [0, 65535], "then she beares some bredth": [0, 65535], "she beares some bredth dro": [0, 65535], "beares some bredth dro no": [0, 65535], "some bredth dro no longer": [0, 65535], "bredth dro no longer from": [0, 65535], "dro no longer from head": [0, 65535], "no longer from head to": [0, 65535], "longer from head to foot": [0, 65535], "from head to foot then": [0, 65535], "head to foot then from": [0, 65535], "to foot then from hippe": [0, 65535], "foot then from hippe to": [0, 65535], "then from hippe to hippe": [0, 65535], "from hippe to hippe she": [0, 65535], "hippe to hippe she is": [0, 65535], "to hippe she is sphericall": [0, 65535], "hippe she is sphericall like": [0, 65535], "she is sphericall like a": [0, 65535], "is sphericall like a globe": [0, 65535], "sphericall like a globe i": [0, 65535], "like a globe i could": [0, 65535], "a globe i could find": [0, 65535], "globe i could find out": [0, 65535], "i could find out countries": [0, 65535], "could find out countries in": [0, 65535], "find out countries in her": [0, 65535], "out countries in her anti": [0, 65535], "countries in her anti in": [0, 65535], "in her anti in what": [0, 65535], "her anti in what part": [0, 65535], "anti in what part of": [0, 65535], "in what part of her": [0, 65535], "what part of her body": [0, 65535], "part of her body stands": [0, 65535], "of her body stands ireland": [0, 65535], "her body stands ireland dro": [0, 65535], "body stands ireland dro marry": [0, 65535], "stands ireland dro marry sir": [0, 65535], "ireland dro marry sir in": [0, 65535], "dro marry sir in her": [0, 65535], "marry sir in her buttockes": [0, 65535], "sir in her buttockes i": [0, 65535], "in her buttockes i found": [0, 65535], "her buttockes i found it": [0, 65535], "buttockes i found it out": [0, 65535], "i found it out by": [0, 65535], "found it out by the": [0, 65535], "it out by the bogges": [0, 65535], "out by the bogges ant": [0, 65535], "by the bogges ant where": [0, 65535], "the bogges ant where scotland": [0, 65535], "bogges ant where scotland dro": [0, 65535], "ant where scotland dro i": [0, 65535], "where scotland dro i found": [0, 65535], "scotland dro i found it": [0, 65535], "dro i found it by": [0, 65535], "i found it by the": [0, 65535], "found it by the barrennesse": [0, 65535], "it by the barrennesse hard": [0, 65535], "by the barrennesse hard in": [0, 65535], "the barrennesse hard in the": [0, 65535], "barrennesse hard in the palme": [0, 65535], "hard in the palme of": [0, 65535], "in the palme of the": [0, 65535], "the palme of the hand": [0, 65535], "palme of the hand ant": [0, 65535], "of the hand ant where": [0, 65535], "the hand ant where france": [0, 65535], "hand ant where france dro": [0, 65535], "ant where france dro in": [0, 65535], "where france dro in her": [0, 65535], "france dro in her forhead": [0, 65535], "dro in her forhead arm'd": [0, 65535], "in her forhead arm'd and": [0, 65535], "her forhead arm'd and reuerted": [0, 65535], "forhead arm'd and reuerted making": [0, 65535], "arm'd and reuerted making warre": [0, 65535], "and reuerted making warre against": [0, 65535], "reuerted making warre against her": [0, 65535], "making warre against her heire": [0, 65535], "warre against her heire ant": [0, 65535], "against her heire ant where": [0, 65535], "her heire ant where england": [0, 65535], "heire ant where england dro": [0, 65535], "ant where england dro i": [0, 65535], "where england dro i look'd": [0, 65535], "england dro i look'd for": [0, 65535], "dro i look'd for the": [0, 65535], "i look'd for the chalkle": [0, 65535], "look'd for the chalkle cliffes": [0, 65535], "for the chalkle cliffes but": [0, 65535], "the chalkle cliffes but i": [0, 65535], "chalkle cliffes but i could": [0, 65535], "cliffes but i could find": [0, 65535], "but i could find no": [0, 65535], "i could find no whitenesse": [0, 65535], "could find no whitenesse in": [0, 65535], "find no whitenesse in them": [0, 65535], "no whitenesse in them but": [0, 65535], "whitenesse in them but i": [0, 65535], "in them but i guesse": [0, 65535], "them but i guesse it": [0, 65535], "but i guesse it stood": [0, 65535], "i guesse it stood in": [0, 65535], "guesse it stood in her": [0, 65535], "it stood in her chin": [0, 65535], "stood in her chin by": [0, 65535], "in her chin by the": [0, 65535], "her chin by the salt": [0, 65535], "chin by the salt rheume": [0, 65535], "by the salt rheume that": [0, 65535], "the salt rheume that ranne": [0, 65535], "salt rheume that ranne betweene": [0, 65535], "rheume that ranne betweene france": [0, 65535], "that ranne betweene france and": [0, 65535], "ranne betweene france and it": [0, 65535], "betweene france and it ant": [0, 65535], "france and it ant where": [0, 65535], "and it ant where spaine": [0, 65535], "it ant where spaine dro": [0, 65535], "ant where spaine dro faith": [0, 65535], "where spaine dro faith i": [0, 65535], "spaine dro faith i saw": [0, 65535], "dro faith i saw it": [0, 65535], "faith i saw it not": [0, 65535], "i saw it not but": [0, 65535], "saw it not but i": [0, 65535], "it not but i felt": [0, 65535], "not but i felt it": [0, 65535], "but i felt it hot": [0, 65535], "i felt it hot in": [0, 65535], "felt it hot in her": [0, 65535], "it hot in her breth": [0, 65535], "hot in her breth ant": [0, 65535], "in her breth ant where": [0, 65535], "her breth ant where america": [0, 65535], "breth ant where america the": [0, 65535], "ant where america the indies": [0, 65535], "where america the indies dro": [0, 65535], "america the indies dro oh": [0, 65535], "the indies dro oh sir": [0, 65535], "indies dro oh sir vpon": [0, 65535], "dro oh sir vpon her": [0, 65535], "oh sir vpon her nose": [0, 65535], "sir vpon her nose all": [0, 65535], "vpon her nose all ore": [0, 65535], "her nose all ore embellished": [0, 65535], "nose all ore embellished with": [0, 65535], "all ore embellished with rubies": [0, 65535], "ore embellished with rubies carbuncles": [0, 65535], "embellished with rubies carbuncles saphires": [0, 65535], "with rubies carbuncles saphires declining": [0, 65535], "rubies carbuncles saphires declining their": [0, 65535], "carbuncles saphires declining their rich": [0, 65535], "saphires declining their rich aspect": [0, 65535], "declining their rich aspect to": [0, 65535], "their rich aspect to the": [0, 65535], "rich aspect to the hot": [0, 65535], "aspect to the hot breath": [0, 65535], "to the hot breath of": [0, 65535], "the hot breath of spaine": [0, 65535], "hot breath of spaine who": [0, 65535], "breath of spaine who sent": [0, 65535], "of spaine who sent whole": [0, 65535], "spaine who sent whole armadoes": [0, 65535], "who sent whole armadoes of": [0, 65535], "sent whole armadoes of carrects": [0, 65535], "whole armadoes of carrects to": [0, 65535], "armadoes of carrects to be": [0, 65535], "of carrects to be ballast": [0, 65535], "carrects to be ballast at": [0, 65535], "to be ballast at her": [0, 65535], "be ballast at her nose": [0, 65535], "ballast at her nose anti": [0, 65535], "at her nose anti where": [0, 65535], "her nose anti where stood": [0, 65535], "nose anti where stood belgia": [0, 65535], "anti where stood belgia the": [0, 65535], "where stood belgia the netherlands": [0, 65535], "stood belgia the netherlands dro": [0, 65535], "belgia the netherlands dro oh": [0, 65535], "the netherlands dro oh sir": [0, 65535], "netherlands dro oh sir i": [0, 65535], "dro oh sir i did": [0, 65535], "oh sir i did not": [0, 65535], "sir i did not looke": [0, 65535], "i did not looke so": [0, 65535], "did not looke so low": [0, 65535], "not looke so low to": [0, 65535], "looke so low to conclude": [0, 65535], "so low to conclude this": [0, 65535], "low to conclude this drudge": [0, 65535], "to conclude this drudge or": [0, 65535], "conclude this drudge or diuiner": [0, 65535], "this drudge or diuiner layd": [0, 65535], "drudge or diuiner layd claime": [0, 65535], "or diuiner layd claime to": [0, 65535], "diuiner layd claime to mee": [0, 65535], "layd claime to mee call'd": [0, 65535], "claime to mee call'd mee": [0, 65535], "to mee call'd mee dromio": [0, 65535], "mee call'd mee dromio swore": [0, 65535], "call'd mee dromio swore i": [0, 65535], "mee dromio swore i was": [0, 65535], "dromio swore i was assur'd": [0, 65535], "swore i was assur'd to": [0, 65535], "i was assur'd to her": [0, 65535], "was assur'd to her told": [0, 65535], "assur'd to her told me": [0, 65535], "to her told me what": [0, 65535], "her told me what priuie": [0, 65535], "told me what priuie markes": [0, 65535], "me what priuie markes i": [0, 65535], "what priuie markes i had": [0, 65535], "priuie markes i had about": [0, 65535], "markes i had about mee": [0, 65535], "i had about mee as": [0, 65535], "had about mee as the": [0, 65535], "about mee as the marke": [0, 65535], "mee as the marke of": [0, 65535], "as the marke of my": [0, 65535], "the marke of my shoulder": [0, 65535], "marke of my shoulder the": [0, 65535], "of my shoulder the mole": [0, 65535], "my shoulder the mole in": [0, 65535], "shoulder the mole in my": [0, 65535], "the mole in my necke": [0, 65535], "mole in my necke the": [0, 65535], "in my necke the great": [0, 65535], "my necke the great wart": [0, 65535], "necke the great wart on": [0, 65535], "the great wart on my": [0, 65535], "great wart on my left": [0, 65535], "wart on my left arme": [0, 65535], "on my left arme that": [0, 65535], "my left arme that i": [0, 65535], "left arme that i amaz'd": [0, 65535], "arme that i amaz'd ranne": [0, 65535], "that i amaz'd ranne from": [0, 65535], "i amaz'd ranne from her": [0, 65535], "amaz'd ranne from her as": [0, 65535], "ranne from her as a": [0, 65535], "from her as a witch": [0, 65535], "her as a witch and": [0, 65535], "as a witch and i": [0, 65535], "a witch and i thinke": [0, 65535], "witch and i thinke if": [0, 65535], "and i thinke if my": [0, 65535], "i thinke if my brest": [0, 65535], "thinke if my brest had": [0, 65535], "if my brest had not": [0, 65535], "my brest had not beene": [0, 65535], "brest had not beene made": [0, 65535], "had not beene made of": [0, 65535], "not beene made of faith": [0, 65535], "beene made of faith and": [0, 65535], "made of faith and my": [0, 65535], "of faith and my heart": [0, 65535], "faith and my heart of": [0, 65535], "and my heart of steele": [0, 65535], "my heart of steele she": [0, 65535], "heart of steele she had": [0, 65535], "of steele she had transform'd": [0, 65535], "steele she had transform'd me": [0, 65535], "she had transform'd me to": [0, 65535], "had transform'd me to a": [0, 65535], "transform'd me to a curtull": [0, 65535], "me to a curtull dog": [0, 65535], "to a curtull dog made": [0, 65535], "a curtull dog made me": [0, 65535], "curtull dog made me turne": [0, 65535], "dog made me turne i'th": [0, 65535], "made me turne i'th wheele": [0, 65535], "me turne i'th wheele anti": [0, 65535], "turne i'th wheele anti go": [0, 65535], "i'th wheele anti go hie": [0, 65535], "wheele anti go hie thee": [0, 65535], "anti go hie thee presently": [0, 65535], "go hie thee presently post": [0, 65535], "hie thee presently post to": [0, 65535], "thee presently post to the": [0, 65535], "presently post to the rode": [0, 65535], "post to the rode and": [0, 65535], "to the rode and if": [0, 65535], "the rode and if the": [0, 65535], "rode and if the winde": [0, 65535], "and if the winde blow": [0, 65535], "if the winde blow any": [0, 65535], "the winde blow any way": [0, 65535], "winde blow any way from": [0, 65535], "blow any way from shore": [0, 65535], "any way from shore i": [0, 65535], "way from shore i will": [0, 65535], "from shore i will not": [0, 65535], "shore i will not harbour": [0, 65535], "i will not harbour in": [0, 65535], "will not harbour in this": [0, 65535], "not harbour in this towne": [0, 65535], "harbour in this towne to": [0, 65535], "in this towne to night": [0, 65535], "this towne to night if": [0, 65535], "towne to night if any": [0, 65535], "to night if any barke": [0, 65535], "night if any barke put": [0, 65535], "if any barke put forth": [0, 65535], "any barke put forth come": [0, 65535], "barke put forth come to": [0, 65535], "put forth come to the": [0, 65535], "forth come to the mart": [0, 65535], "come to the mart where": [0, 65535], "to the mart where i": [0, 65535], "the mart where i will": [0, 65535], "mart where i will walke": [0, 65535], "where i will walke till": [0, 65535], "i will walke till thou": [0, 65535], "will walke till thou returne": [0, 65535], "walke till thou returne to": [0, 65535], "till thou returne to me": [0, 65535], "thou returne to me if": [0, 65535], "returne to me if euerie": [0, 65535], "to me if euerie one": [0, 65535], "me if euerie one knowes": [0, 65535], "if euerie one knowes vs": [0, 65535], "euerie one knowes vs and": [0, 65535], "one knowes vs and we": [0, 65535], "knowes vs and we know": [0, 65535], "vs and we know none": [0, 65535], "and we know none 'tis": [0, 65535], "we know none 'tis time": [0, 65535], "know none 'tis time i": [0, 65535], "none 'tis time i thinke": [0, 65535], "'tis time i thinke to": [0, 65535], "time i thinke to trudge": [0, 65535], "i thinke to trudge packe": [0, 65535], "thinke to trudge packe and": [0, 65535], "to trudge packe and be": [0, 65535], "trudge packe and be gone": [0, 65535], "packe and be gone dro": [0, 65535], "and be gone dro as": [0, 65535], "be gone dro as from": [0, 65535], "gone dro as from a": [0, 65535], "dro as from a beare": [0, 65535], "as from a beare a": [0, 65535], "from a beare a man": [0, 65535], "a beare a man would": [0, 65535], "beare a man would run": [0, 65535], "a man would run for": [0, 65535], "man would run for life": [0, 65535], "would run for life so": [0, 65535], "run for life so flie": [0, 65535], "for life so flie i": [0, 65535], "life so flie i from": [0, 65535], "so flie i from her": [0, 65535], "flie i from her that": [0, 65535], "i from her that would": [0, 65535], "from her that would be": [0, 65535], "her that would be my": [0, 65535], "that would be my wife": [0, 65535], "would be my wife exit": [0, 65535], "be my wife exit anti": [0, 65535], "my wife exit anti there's": [0, 65535], "wife exit anti there's none": [0, 65535], "exit anti there's none but": [0, 65535], "anti there's none but witches": [0, 65535], "there's none but witches do": [0, 65535], "none but witches do inhabite": [0, 65535], "but witches do inhabite heere": [0, 65535], "witches do inhabite heere and": [0, 65535], "do inhabite heere and therefore": [0, 65535], "inhabite heere and therefore 'tis": [0, 65535], "heere and therefore 'tis hie": [0, 65535], "and therefore 'tis hie time": [0, 65535], "therefore 'tis hie time that": [0, 65535], "'tis hie time that i": [0, 65535], "hie time that i were": [0, 65535], "time that i were hence": [0, 65535], "that i were hence she": [0, 65535], "i were hence she that": [0, 65535], "were hence she that doth": [0, 65535], "hence she that doth call": [0, 65535], "she that doth call me": [0, 65535], "that doth call me husband": [0, 65535], "doth call me husband euen": [0, 65535], "call me husband euen my": [0, 65535], "me husband euen my soule": [0, 65535], "husband euen my soule doth": [0, 65535], "euen my soule doth for": [0, 65535], "my soule doth for a": [0, 65535], "soule doth for a wife": [0, 65535], "doth for a wife abhorre": [0, 65535], "for a wife abhorre but": [0, 65535], "a wife abhorre but her": [0, 65535], "wife abhorre but her faire": [0, 65535], "abhorre but her faire sister": [0, 65535], "but her faire sister possest": [0, 65535], "her faire sister possest with": [0, 65535], "faire sister possest with such": [0, 65535], "sister possest with such a": [0, 65535], "possest with such a gentle": [0, 65535], "with such a gentle soueraigne": [0, 65535], "such a gentle soueraigne grace": [0, 65535], "a gentle soueraigne grace of": [0, 65535], "gentle soueraigne grace of such": [0, 65535], "soueraigne grace of such inchanting": [0, 65535], "grace of such inchanting presence": [0, 65535], "of such inchanting presence and": [0, 65535], "such inchanting presence and discourse": [0, 65535], "inchanting presence and discourse hath": [0, 65535], "presence and discourse hath almost": [0, 65535], "and discourse hath almost made": [0, 65535], "discourse hath almost made me": [0, 65535], "hath almost made me traitor": [0, 65535], "almost made me traitor to": [0, 65535], "made me traitor to my": [0, 65535], "me traitor to my selfe": [0, 65535], "traitor to my selfe but": [0, 65535], "to my selfe but least": [0, 65535], "my selfe but least my": [0, 65535], "selfe but least my selfe": [0, 65535], "but least my selfe be": [0, 65535], "least my selfe be guilty": [0, 65535], "my selfe be guilty to": [0, 65535], "selfe be guilty to selfe": [0, 65535], "be guilty to selfe wrong": [0, 65535], "guilty to selfe wrong ile": [0, 65535], "to selfe wrong ile stop": [0, 65535], "selfe wrong ile stop mine": [0, 65535], "wrong ile stop mine eares": [0, 65535], "ile stop mine eares against": [0, 65535], "stop mine eares against the": [0, 65535], "mine eares against the mermaids": [0, 65535], "eares against the mermaids song": [0, 65535], "against the mermaids song enter": [0, 65535], "the mermaids song enter angelo": [0, 65535], "mermaids song enter angelo with": [0, 65535], "song enter angelo with the": [0, 65535], "enter angelo with the chaine": [0, 65535], "angelo with the chaine ang": [0, 65535], "with the chaine ang mr": [0, 65535], "the chaine ang mr antipholus": [0, 65535], "chaine ang mr antipholus anti": [0, 65535], "ang mr antipholus anti i": [0, 65535], "mr antipholus anti i that's": [0, 65535], "antipholus anti i that's my": [0, 65535], "anti i that's my name": [0, 65535], "i that's my name ang": [0, 65535], "that's my name ang i": [0, 65535], "my name ang i know": [0, 65535], "name ang i know it": [0, 65535], "ang i know it well": [0, 65535], "i know it well sir": [0, 65535], "know it well sir loe": [0, 65535], "it well sir loe here's": [0, 65535], "well sir loe here's the": [0, 65535], "sir loe here's the chaine": [0, 65535], "loe here's the chaine i": [0, 65535], "here's the chaine i thought": [0, 65535], "the chaine i thought to": [0, 65535], "chaine i thought to haue": [0, 65535], "i thought to haue tane": [0, 65535], "thought to haue tane you": [0, 65535], "to haue tane you at": [0, 65535], "haue tane you at the": [0, 65535], "tane you at the porpentine": [0, 65535], "you at the porpentine the": [0, 65535], "at the porpentine the chaine": [0, 65535], "the porpentine the chaine vnfinish'd": [0, 65535], "porpentine the chaine vnfinish'd made": [0, 65535], "the chaine vnfinish'd made me": [0, 65535], "chaine vnfinish'd made me stay": [0, 65535], "vnfinish'd made me stay thus": [0, 65535], "made me stay thus long": [0, 65535], "me stay thus long anti": [0, 65535], "stay thus long anti what": [0, 65535], "thus long anti what is": [0, 65535], "long anti what is your": [0, 65535], "anti what is your will": [0, 65535], "what is your will that": [0, 65535], "is your will that i": [0, 65535], "your will that i shal": [0, 65535], "will that i shal do": [0, 65535], "that i shal do with": [0, 65535], "i shal do with this": [0, 65535], "shal do with this ang": [0, 65535], "do with this ang what": [0, 65535], "with this ang what please": [0, 65535], "this ang what please your": [0, 65535], "ang what please your selfe": [0, 65535], "what please your selfe sir": [0, 65535], "please your selfe sir i": [0, 65535], "your selfe sir i haue": [0, 65535], "selfe sir i haue made": [0, 65535], "sir i haue made it": [0, 65535], "i haue made it for": [0, 65535], "haue made it for you": [0, 65535], "made it for you anti": [0, 65535], "it for you anti made": [0, 65535], "for you anti made it": [0, 65535], "you anti made it for": [0, 65535], "anti made it for me": [0, 65535], "made it for me sir": [0, 65535], "it for me sir i": [0, 65535], "for me sir i bespoke": [0, 65535], "me sir i bespoke it": [0, 65535], "sir i bespoke it not": [0, 65535], "i bespoke it not ang": [0, 65535], "bespoke it not ang not": [0, 65535], "it not ang not once": [0, 65535], "not ang not once nor": [0, 65535], "ang not once nor twice": [0, 65535], "not once nor twice but": [0, 65535], "once nor twice but twentie": [0, 65535], "nor twice but twentie times": [0, 65535], "twice but twentie times you": [0, 65535], "but twentie times you haue": [0, 65535], "twentie times you haue go": [0, 65535], "times you haue go home": [0, 65535], "you haue go home with": [0, 65535], "haue go home with it": [0, 65535], "go home with it and": [0, 65535], "home with it and please": [0, 65535], "with it and please your": [0, 65535], "it and please your wife": [0, 65535], "and please your wife withall": [0, 65535], "please your wife withall and": [0, 65535], "your wife withall and soone": [0, 65535], "wife withall and soone at": [0, 65535], "withall and soone at supper": [0, 65535], "and soone at supper time": [0, 65535], "soone at supper time ile": [0, 65535], "at supper time ile visit": [0, 65535], "supper time ile visit you": [0, 65535], "time ile visit you and": [0, 65535], "ile visit you and then": [0, 65535], "visit you and then receiue": [0, 65535], "you and then receiue my": [0, 65535], "and then receiue my money": [0, 65535], "then receiue my money for": [0, 65535], "receiue my money for the": [0, 65535], "my money for the chaine": [0, 65535], "money for the chaine anti": [0, 65535], "for the chaine anti i": [0, 65535], "the chaine anti i pray": [0, 65535], "chaine anti i pray you": [0, 65535], "anti i pray you sir": [0, 65535], "i pray you sir receiue": [0, 65535], "pray you sir receiue the": [0, 65535], "you sir receiue the money": [0, 65535], "sir receiue the money now": [0, 65535], "receiue the money now for": [0, 65535], "the money now for feare": [0, 65535], "money now for feare you": [0, 65535], "now for feare you ne're": [0, 65535], "for feare you ne're see": [0, 65535], "feare you ne're see chaine": [0, 65535], "you ne're see chaine nor": [0, 65535], "ne're see chaine nor mony": [0, 65535], "see chaine nor mony more": [0, 65535], "chaine nor mony more ang": [0, 65535], "nor mony more ang you": [0, 65535], "mony more ang you are": [0, 65535], "more ang you are a": [0, 65535], "ang you are a merry": [0, 65535], "you are a merry man": [0, 65535], "are a merry man sir": [0, 65535], "a merry man sir fare": [0, 65535], "merry man sir fare you": [0, 65535], "man sir fare you well": [0, 65535], "sir fare you well exit": [0, 65535], "fare you well exit ant": [0, 65535], "you well exit ant what": [0, 65535], "well exit ant what i": [0, 65535], "exit ant what i should": [0, 65535], "ant what i should thinke": [0, 65535], "what i should thinke of": [0, 65535], "i should thinke of this": [0, 65535], "should thinke of this i": [0, 65535], "thinke of this i cannot": [0, 65535], "of this i cannot tell": [0, 65535], "this i cannot tell but": [0, 65535], "i cannot tell but this": [0, 65535], "cannot tell but this i": [0, 65535], "tell but this i thinke": [0, 65535], "but this i thinke there's": [0, 65535], "this i thinke there's no": [0, 65535], "i thinke there's no man": [0, 65535], "thinke there's no man is": [0, 65535], "there's no man is so": [0, 65535], "no man is so vaine": [0, 65535], "man is so vaine that": [0, 65535], "is so vaine that would": [0, 65535], "so vaine that would refuse": [0, 65535], "vaine that would refuse so": [0, 65535], "that would refuse so faire": [0, 65535], "would refuse so faire an": [0, 65535], "refuse so faire an offer'd": [0, 65535], "so faire an offer'd chaine": [0, 65535], "faire an offer'd chaine i": [0, 65535], "an offer'd chaine i see": [0, 65535], "offer'd chaine i see a": [0, 65535], "chaine i see a man": [0, 65535], "i see a man heere": [0, 65535], "see a man heere needs": [0, 65535], "a man heere needs not": [0, 65535], "man heere needs not liue": [0, 65535], "heere needs not liue by": [0, 65535], "needs not liue by shifts": [0, 65535], "not liue by shifts when": [0, 65535], "liue by shifts when in": [0, 65535], "by shifts when in the": [0, 65535], "shifts when in the streets": [0, 65535], "when in the streets he": [0, 65535], "in the streets he meetes": [0, 65535], "the streets he meetes such": [0, 65535], "streets he meetes such golden": [0, 65535], "he meetes such golden gifts": [0, 65535], "meetes such golden gifts ile": [0, 65535], "such golden gifts ile to": [0, 65535], "golden gifts ile to the": [0, 65535], "gifts ile to the mart": [0, 65535], "ile to the mart and": [0, 65535], "to the mart and there": [0, 65535], "the mart and there for": [0, 65535], "mart and there for dromio": [0, 65535], "and there for dromio stay": [0, 65535], "there for dromio stay if": [0, 65535], "for dromio stay if any": [0, 65535], "dromio stay if any ship": [0, 65535], "stay if any ship put": [0, 65535], "if any ship put out": [0, 65535], "any ship put out then": [0, 65535], "ship put out then straight": [0, 65535], "put out then straight away": [0, 65535], "out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus": [0, 65535], "tertius scena prima enter antipholus of": [0, 65535], "scena prima enter antipholus of ephesus": [0, 65535], "prima enter antipholus of ephesus his": [0, 65535], "enter antipholus of ephesus his man": [0, 65535], "antipholus of ephesus his man dromio": [0, 65535], "of ephesus his man dromio angelo": [0, 65535], "ephesus his man dromio angelo the": [0, 65535], "his man dromio angelo the goldsmith": [0, 65535], "man dromio angelo the goldsmith and": [0, 65535], "dromio angelo the goldsmith and balthaser": [0, 65535], "angelo the goldsmith and balthaser the": [0, 65535], "the goldsmith and balthaser the merchant": [0, 65535], "goldsmith and balthaser the merchant e": [0, 65535], "and balthaser the merchant e anti": [0, 65535], "balthaser the merchant e anti good": [0, 65535], "the merchant e anti good signior": [0, 65535], "merchant e anti good signior angelo": [0, 65535], "e anti good signior angelo you": [0, 65535], "anti good signior angelo you must": [0, 65535], "good signior angelo you must excuse": [0, 65535], "signior angelo you must excuse vs": [0, 65535], "angelo you must excuse vs all": [0, 65535], "you must excuse vs all my": [0, 65535], "must excuse vs all my wife": [0, 65535], "excuse vs all my wife is": [0, 65535], "vs all my wife is shrewish": [0, 65535], "all my wife is shrewish when": [0, 65535], "my wife is shrewish when i": [0, 65535], "wife is shrewish when i keepe": [0, 65535], "is shrewish when i keepe not": [0, 65535], "shrewish when i keepe not howres": [0, 65535], "when i keepe not howres say": [0, 65535], "i keepe not howres say that": [0, 65535], "keepe not howres say that i": [0, 65535], "not howres say that i lingerd": [0, 65535], "howres say that i lingerd with": [0, 65535], "say that i lingerd with you": [0, 65535], "that i lingerd with you at": [0, 65535], "i lingerd with you at your": [0, 65535], "lingerd with you at your shop": [0, 65535], "with you at your shop to": [0, 65535], "you at your shop to see": [0, 65535], "at your shop to see the": [0, 65535], "your shop to see the making": [0, 65535], "shop to see the making of": [0, 65535], "to see the making of her": [0, 65535], "see the making of her carkanet": [0, 65535], "the making of her carkanet and": [0, 65535], "making of her carkanet and that": [0, 65535], "of her carkanet and that to": [0, 65535], "her carkanet and that to morrow": [0, 65535], "carkanet and that to morrow you": [0, 65535], "and that to morrow you will": [0, 65535], "that to morrow you will bring": [0, 65535], "to morrow you will bring it": [0, 65535], "morrow you will bring it home": [0, 65535], "you will bring it home but": [0, 65535], "will bring it home but here's": [0, 65535], "bring it home but here's a": [0, 65535], "it home but here's a villaine": [0, 65535], "home but here's a villaine that": [0, 65535], "but here's a villaine that would": [0, 65535], "here's a villaine that would face": [0, 65535], "a villaine that would face me": [0, 65535], "villaine that would face me downe": [0, 65535], "that would face me downe he": [0, 65535], "would face me downe he met": [0, 65535], "face me downe he met me": [0, 65535], "me downe he met me on": [0, 65535], "downe he met me on the": [0, 65535], "he met me on the mart": [0, 65535], "met me on the mart and": [0, 65535], "me on the mart and that": [0, 65535], "on the mart and that i": [0, 65535], "the mart and that i beat": [0, 65535], "mart and that i beat him": [0, 65535], "and that i beat him and": [0, 65535], "that i beat him and charg'd": [0, 65535], "i beat him and charg'd him": [0, 65535], "beat him and charg'd him with": [0, 65535], "him and charg'd him with a": [0, 65535], "and charg'd him with a thousand": [0, 65535], "charg'd him with a thousand markes": [0, 65535], "him with a thousand markes in": [0, 65535], "with a thousand markes in gold": [0, 65535], "a thousand markes in gold and": [0, 65535], "thousand markes in gold and that": [0, 65535], "markes in gold and that i": [0, 65535], "in gold and that i did": [0, 65535], "gold and that i did denie": [0, 65535], "and that i did denie my": [0, 65535], "that i did denie my wife": [0, 65535], "i did denie my wife and": [0, 65535], "did denie my wife and house": [0, 65535], "denie my wife and house thou": [0, 65535], "my wife and house thou drunkard": [0, 65535], "wife and house thou drunkard thou": [0, 65535], "and house thou drunkard thou what": [0, 65535], "house thou drunkard thou what didst": [0, 65535], "thou drunkard thou what didst thou": [0, 65535], "drunkard thou what didst thou meane": [0, 65535], "thou what didst thou meane by": [0, 65535], "what didst thou meane by this": [0, 65535], "didst thou meane by this e": [0, 65535], "thou meane by this e dro": [0, 65535], "meane by this e dro say": [0, 65535], "by this e dro say what": [0, 65535], "this e dro say what you": [0, 65535], "e dro say what you wil": [0, 65535], "dro say what you wil sir": [0, 65535], "say what you wil sir but": [0, 65535], "what you wil sir but i": [0, 65535], "you wil sir but i know": [0, 65535], "wil sir but i know what": [0, 65535], "sir but i know what i": [0, 65535], "but i know what i know": [0, 65535], "i know what i know that": [0, 65535], "know what i know that you": [0, 65535], "what i know that you beat": [0, 65535], "i know that you beat me": [0, 65535], "know that you beat me at": [0, 65535], "that you beat me at the": [0, 65535], "you beat me at the mart": [0, 65535], "beat me at the mart i": [0, 65535], "me at the mart i haue": [0, 65535], "at the mart i haue your": [0, 65535], "the mart i haue your hand": [0, 65535], "mart i haue your hand to": [0, 65535], "i haue your hand to show": [0, 65535], "haue your hand to show if": [0, 65535], "your hand to show if the": [0, 65535], "hand to show if the skin": [0, 65535], "to show if the skin were": [0, 65535], "show if the skin were parchment": [0, 65535], "if the skin were parchment the": [0, 65535], "the skin were parchment the blows": [0, 65535], "skin were parchment the blows you": [0, 65535], "were parchment the blows you gaue": [0, 65535], "parchment the blows you gaue were": [0, 65535], "the blows you gaue were ink": [0, 65535], "blows you gaue were ink your": [0, 65535], "you gaue were ink your owne": [0, 65535], "gaue were ink your owne hand": [0, 65535], "were ink your owne hand writing": [0, 65535], "ink your owne hand writing would": [0, 65535], "your owne hand writing would tell": [0, 65535], "owne hand writing would tell you": [0, 65535], "hand writing would tell you what": [0, 65535], "writing would tell you what i": [0, 65535], "would tell you what i thinke": [0, 65535], "tell you what i thinke e": [0, 65535], "you what i thinke e ant": [0, 65535], "what i thinke e ant i": [0, 65535], "i thinke e ant i thinke": [0, 65535], "thinke e ant i thinke thou": [0, 65535], "e ant i thinke thou art": [0, 65535], "ant i thinke thou art an": [0, 65535], "i thinke thou art an asse": [0, 65535], "thinke thou art an asse e": [0, 65535], "thou art an asse e dro": [0, 65535], "art an asse e dro marry": [0, 65535], "an asse e dro marry so": [0, 65535], "asse e dro marry so it": [0, 65535], "e dro marry so it doth": [0, 65535], "dro marry so it doth appeare": [0, 65535], "marry so it doth appeare by": [0, 65535], "so it doth appeare by the": [0, 65535], "it doth appeare by the wrongs": [0, 65535], "doth appeare by the wrongs i": [0, 65535], "appeare by the wrongs i suffer": [0, 65535], "by the wrongs i suffer and": [0, 65535], "the wrongs i suffer and the": [0, 65535], "wrongs i suffer and the blowes": [0, 65535], "i suffer and the blowes i": [0, 65535], "suffer and the blowes i beare": [0, 65535], "and the blowes i beare i": [0, 65535], "the blowes i beare i should": [0, 65535], "blowes i beare i should kicke": [0, 65535], "i beare i should kicke being": [0, 65535], "beare i should kicke being kickt": [0, 65535], "i should kicke being kickt and": [0, 65535], "should kicke being kickt and being": [0, 65535], "kicke being kickt and being at": [0, 65535], "being kickt and being at that": [0, 65535], "kickt and being at that passe": [0, 65535], "and being at that passe you": [0, 65535], "being at that passe you would": [0, 65535], "at that passe you would keepe": [0, 65535], "that passe you would keepe from": [0, 65535], "passe you would keepe from my": [0, 65535], "you would keepe from my heeles": [0, 65535], "would keepe from my heeles and": [0, 65535], "keepe from my heeles and beware": [0, 65535], "from my heeles and beware of": [0, 65535], "my heeles and beware of an": [0, 65535], "heeles and beware of an asse": [0, 65535], "and beware of an asse e": [0, 65535], "beware of an asse e an": [0, 65535], "of an asse e an y'are": [0, 65535], "an asse e an y'are sad": [0, 65535], "asse e an y'are sad signior": [0, 65535], "e an y'are sad signior balthazar": [0, 65535], "an y'are sad signior balthazar pray": [0, 65535], "y'are sad signior balthazar pray god": [0, 65535], "sad signior balthazar pray god our": [0, 65535], "signior balthazar pray god our cheer": [0, 65535], "balthazar pray god our cheer may": [0, 65535], "pray god our cheer may answer": [0, 65535], "god our cheer may answer my": [0, 65535], "our cheer may answer my good": [0, 65535], "cheer may answer my good will": [0, 65535], "may answer my good will and": [0, 65535], "answer my good will and your": [0, 65535], "my good will and your good": [0, 65535], "good will and your good welcom": [0, 65535], "will and your good welcom here": [0, 65535], "and your good welcom here bal": [0, 65535], "your good welcom here bal i": [0, 65535], "good welcom here bal i hold": [0, 65535], "welcom here bal i hold your": [0, 65535], "here bal i hold your dainties": [0, 65535], "bal i hold your dainties cheap": [0, 65535], "i hold your dainties cheap sir": [0, 65535], "hold your dainties cheap sir your": [0, 65535], "your dainties cheap sir your welcom": [0, 65535], "dainties cheap sir your welcom deer": [0, 65535], "cheap sir your welcom deer e": [0, 65535], "sir your welcom deer e an": [0, 65535], "your welcom deer e an oh": [0, 65535], "welcom deer e an oh signior": [0, 65535], "deer e an oh signior balthazar": [0, 65535], "e an oh signior balthazar either": [0, 65535], "an oh signior balthazar either at": [0, 65535], "oh signior balthazar either at flesh": [0, 65535], "signior balthazar either at flesh or": [0, 65535], "balthazar either at flesh or fish": [0, 65535], "either at flesh or fish a": [0, 65535], "at flesh or fish a table": [0, 65535], "flesh or fish a table full": [0, 65535], "or fish a table full of": [0, 65535], "fish a table full of welcome": [0, 65535], "a table full of welcome makes": [0, 65535], "table full of welcome makes scarce": [0, 65535], "full of welcome makes scarce one": [0, 65535], "of welcome makes scarce one dainty": [0, 65535], "welcome makes scarce one dainty dish": [0, 65535], "makes scarce one dainty dish bal": [0, 65535], "scarce one dainty dish bal good": [0, 65535], "one dainty dish bal good meat": [0, 65535], "dainty dish bal good meat sir": [0, 65535], "dish bal good meat sir is": [0, 65535], "bal good meat sir is co": [0, 65535], "good meat sir is co m": [0, 65535], "meat sir is co m mon": [0, 65535], "sir is co m mon that": [0, 65535], "is co m mon that euery": [0, 65535], "co m mon that euery churle": [0, 65535], "m mon that euery churle affords": [0, 65535], "mon that euery churle affords anti": [0, 65535], "that euery churle affords anti and": [0, 65535], "euery churle affords anti and welcome": [0, 65535], "churle affords anti and welcome more": [0, 65535], "affords anti and welcome more common": [0, 65535], "anti and welcome more common for": [0, 65535], "and welcome more common for thats": [0, 65535], "welcome more common for thats nothing": [0, 65535], "more common for thats nothing but": [0, 65535], "common for thats nothing but words": [0, 65535], "for thats nothing but words bal": [0, 65535], "thats nothing but words bal small": [0, 65535], "nothing but words bal small cheere": [0, 65535], "but words bal small cheere and": [0, 65535], "words bal small cheere and great": [0, 65535], "bal small cheere and great welcome": [0, 65535], "small cheere and great welcome makes": [0, 65535], "cheere and great welcome makes a": [0, 65535], "and great welcome makes a merrie": [0, 65535], "great welcome makes a merrie feast": [0, 65535], "welcome makes a merrie feast anti": [0, 65535], "makes a merrie feast anti i": [0, 65535], "a merrie feast anti i to": [0, 65535], "merrie feast anti i to a": [0, 65535], "feast anti i to a niggardly": [0, 65535], "anti i to a niggardly host": [0, 65535], "i to a niggardly host and": [0, 65535], "to a niggardly host and more": [0, 65535], "a niggardly host and more sparing": [0, 65535], "niggardly host and more sparing guest": [0, 65535], "host and more sparing guest but": [0, 65535], "and more sparing guest but though": [0, 65535], "more sparing guest but though my": [0, 65535], "sparing guest but though my cates": [0, 65535], "guest but though my cates be": [0, 65535], "but though my cates be meane": [0, 65535], "though my cates be meane take": [0, 65535], "my cates be meane take them": [0, 65535], "cates be meane take them in": [0, 65535], "be meane take them in good": [0, 65535], "meane take them in good part": [0, 65535], "take them in good part better": [0, 65535], "them in good part better cheere": [0, 65535], "in good part better cheere may": [0, 65535], "good part better cheere may you": [0, 65535], "part better cheere may you haue": [0, 65535], "better cheere may you haue but": [0, 65535], "cheere may you haue but not": [0, 65535], "may you haue but not with": [0, 65535], "you haue but not with better": [0, 65535], "haue but not with better hart": [0, 65535], "but not with better hart but": [0, 65535], "not with better hart but soft": [0, 65535], "with better hart but soft my": [0, 65535], "better hart but soft my doore": [0, 65535], "hart but soft my doore is": [0, 65535], "but soft my doore is lockt": [0, 65535], "soft my doore is lockt goe": [0, 65535], "my doore is lockt goe bid": [0, 65535], "doore is lockt goe bid them": [0, 65535], "is lockt goe bid them let": [0, 65535], "lockt goe bid them let vs": [0, 65535], "goe bid them let vs in": [0, 65535], "bid them let vs in e": [0, 65535], "them let vs in e dro": [0, 65535], "let vs in e dro maud": [0, 65535], "vs in e dro maud briget": [0, 65535], "in e dro maud briget marian": [0, 65535], "e dro maud briget marian cisley": [0, 65535], "dro maud briget marian cisley gillian": [0, 65535], "maud briget marian cisley gillian ginn": [0, 65535], "briget marian cisley gillian ginn s": [0, 65535], "marian cisley gillian ginn s dro": [0, 65535], "cisley gillian ginn s dro mome": [0, 65535], "gillian ginn s dro mome malthorse": [0, 65535], "ginn s dro mome malthorse capon": [0, 65535], "s dro mome malthorse capon coxcombe": [0, 65535], "dro mome malthorse capon coxcombe idiot": [0, 65535], "mome malthorse capon coxcombe idiot patch": [0, 65535], "malthorse capon coxcombe idiot patch either": [0, 65535], "capon coxcombe idiot patch either get": [0, 65535], "coxcombe idiot patch either get thee": [0, 65535], "idiot patch either get thee from": [0, 65535], "patch either get thee from the": [0, 65535], "either get thee from the dore": [0, 65535], "get thee from the dore or": [0, 65535], "thee from the dore or sit": [0, 65535], "from the dore or sit downe": [0, 65535], "the dore or sit downe at": [0, 65535], "dore or sit downe at the": [0, 65535], "or sit downe at the hatch": [0, 65535], "sit downe at the hatch dost": [0, 65535], "downe at the hatch dost thou": [0, 65535], "at the hatch dost thou coniure": [0, 65535], "the hatch dost thou coniure for": [0, 65535], "hatch dost thou coniure for wenches": [0, 65535], "dost thou coniure for wenches that": [0, 65535], "thou coniure for wenches that thou": [0, 65535], "coniure for wenches that thou calst": [0, 65535], "for wenches that thou calst for": [0, 65535], "wenches that thou calst for such": [0, 65535], "that thou calst for such store": [0, 65535], "thou calst for such store when": [0, 65535], "calst for such store when one": [0, 65535], "for such store when one is": [0, 65535], "such store when one is one": [0, 65535], "store when one is one too": [0, 65535], "when one is one too many": [0, 65535], "one is one too many goe": [0, 65535], "is one too many goe get": [0, 65535], "one too many goe get thee": [0, 65535], "too many goe get thee from": [0, 65535], "many goe get thee from the": [0, 65535], "goe get thee from the dore": [0, 65535], "get thee from the dore e": [0, 65535], "thee from the dore e dro": [0, 65535], "from the dore e dro what": [0, 65535], "the dore e dro what patch": [0, 65535], "dore e dro what patch is": [0, 65535], "e dro what patch is made": [0, 65535], "dro what patch is made our": [0, 65535], "what patch is made our porter": [0, 65535], "patch is made our porter my": [0, 65535], "is made our porter my master": [0, 65535], "made our porter my master stayes": [0, 65535], "our porter my master stayes in": [0, 65535], "porter my master stayes in the": [0, 65535], "my master stayes in the street": [0, 65535], "master stayes in the street s": [0, 65535], "stayes in the street s dro": [0, 65535], "in the street s dro let": [0, 65535], "the street s dro let him": [0, 65535], "street s dro let him walke": [0, 65535], "s dro let him walke from": [0, 65535], "dro let him walke from whence": [0, 65535], "let him walke from whence he": [0, 65535], "him walke from whence he came": [0, 65535], "walke from whence he came lest": [0, 65535], "from whence he came lest hee": [0, 65535], "whence he came lest hee catch": [0, 65535], "he came lest hee catch cold": [0, 65535], "came lest hee catch cold on's": [0, 65535], "lest hee catch cold on's feet": [0, 65535], "hee catch cold on's feet e": [0, 65535], "catch cold on's feet e ant": [0, 65535], "cold on's feet e ant who": [0, 65535], "on's feet e ant who talks": [0, 65535], "feet e ant who talks within": [0, 65535], "e ant who talks within there": [0, 65535], "ant who talks within there hoa": [0, 65535], "who talks within there hoa open": [0, 65535], "talks within there hoa open the": [0, 65535], "within there hoa open the dore": [0, 65535], "there hoa open the dore s": [0, 65535], "hoa open the dore s dro": [0, 65535], "open the dore s dro right": [0, 65535], "the dore s dro right sir": [0, 65535], "dore s dro right sir ile": [0, 65535], "s dro right sir ile tell": [0, 65535], "dro right sir ile tell you": [0, 65535], "right sir ile tell you when": [0, 65535], "sir ile tell you when and": [0, 65535], "ile tell you when and you'll": [0, 65535], "tell you when and you'll tell": [0, 65535], "you when and you'll tell me": [0, 65535], "when and you'll tell me wherefore": [0, 65535], "and you'll tell me wherefore ant": [0, 65535], "you'll tell me wherefore ant wherefore": [0, 65535], "tell me wherefore ant wherefore for": [0, 65535], "me wherefore ant wherefore for my": [0, 65535], "wherefore ant wherefore for my dinner": [0, 65535], "ant wherefore for my dinner i": [0, 65535], "wherefore for my dinner i haue": [0, 65535], "for my dinner i haue not": [0, 65535], "my dinner i haue not din'd": [0, 65535], "dinner i haue not din'd to": [0, 65535], "i haue not din'd to day": [0, 65535], "haue not din'd to day s": [0, 65535], "not din'd to day s dro": [0, 65535], "din'd to day s dro nor": [0, 65535], "to day s dro nor to": [0, 65535], "day s dro nor to day": [0, 65535], "s dro nor to day here": [0, 65535], "dro nor to day here you": [0, 65535], "nor to day here you must": [0, 65535], "to day here you must not": [0, 65535], "day here you must not come": [0, 65535], "here you must not come againe": [0, 65535], "you must not come againe when": [0, 65535], "must not come againe when you": [0, 65535], "not come againe when you may": [0, 65535], "come againe when you may anti": [0, 65535], "againe when you may anti what": [0, 65535], "when you may anti what art": [0, 65535], "you may anti what art thou": [0, 65535], "may anti what art thou that": [0, 65535], "anti what art thou that keep'st": [0, 65535], "what art thou that keep'st mee": [0, 65535], "art thou that keep'st mee out": [0, 65535], "thou that keep'st mee out from": [0, 65535], "that keep'st mee out from the": [0, 65535], "keep'st mee out from the howse": [0, 65535], "mee out from the howse i": [0, 65535], "out from the howse i owe": [0, 65535], "from the howse i owe s": [0, 65535], "the howse i owe s dro": [0, 65535], "howse i owe s dro the": [0, 65535], "i owe s dro the porter": [0, 65535], "owe s dro the porter for": [0, 65535], "s dro the porter for this": [0, 65535], "dro the porter for this time": [0, 65535], "the porter for this time sir": [0, 65535], "porter for this time sir and": [0, 65535], "for this time sir and my": [0, 65535], "this time sir and my name": [0, 65535], "time sir and my name is": [0, 65535], "sir and my name is dromio": [0, 65535], "and my name is dromio e": [0, 65535], "my name is dromio e dro": [0, 65535], "name is dromio e dro o": [0, 65535], "is dromio e dro o villaine": [0, 65535], "dromio e dro o villaine thou": [0, 65535], "e dro o villaine thou hast": [0, 65535], "dro o villaine thou hast stolne": [0, 65535], "o villaine thou hast stolne both": [0, 65535], "villaine thou hast stolne both mine": [0, 65535], "thou hast stolne both mine office": [0, 65535], "hast stolne both mine office and": [0, 65535], "stolne both mine office and my": [0, 65535], "both mine office and my name": [0, 65535], "mine office and my name the": [0, 65535], "office and my name the one": [0, 65535], "and my name the one nere": [0, 65535], "my name the one nere got": [0, 65535], "name the one nere got me": [0, 65535], "the one nere got me credit": [0, 65535], "one nere got me credit the": [0, 65535], "nere got me credit the other": [0, 65535], "got me credit the other mickle": [0, 65535], "me credit the other mickle blame": [0, 65535], "credit the other mickle blame if": [0, 65535], "the other mickle blame if thou": [0, 65535], "other mickle blame if thou hadst": [0, 65535], "mickle blame if thou hadst beene": [0, 65535], "blame if thou hadst beene dromio": [0, 65535], "if thou hadst beene dromio to": [0, 65535], "thou hadst beene dromio to day": [0, 65535], "hadst beene dromio to day in": [0, 65535], "beene dromio to day in my": [0, 65535], "dromio to day in my place": [0, 65535], "to day in my place thou": [0, 65535], "day in my place thou wouldst": [0, 65535], "in my place thou wouldst haue": [0, 65535], "my place thou wouldst haue chang'd": [0, 65535], "place thou wouldst haue chang'd thy": [0, 65535], "thou wouldst haue chang'd thy face": [0, 65535], "wouldst haue chang'd thy face for": [0, 65535], "haue chang'd thy face for a": [0, 65535], "chang'd thy face for a name": [0, 65535], "thy face for a name or": [0, 65535], "face for a name or thy": [0, 65535], "for a name or thy name": [0, 65535], "a name or thy name for": [0, 65535], "name or thy name for an": [0, 65535], "or thy name for an asse": [0, 65535], "thy name for an asse enter": [0, 65535], "name for an asse enter luce": [0, 65535], "for an asse enter luce luce": [0, 65535], "an asse enter luce luce what": [0, 65535], "asse enter luce luce what a": [0, 65535], "enter luce luce what a coile": [0, 65535], "luce luce what a coile is": [0, 65535], "luce what a coile is there": [0, 65535], "what a coile is there dromio": [0, 65535], "a coile is there dromio who": [0, 65535], "coile is there dromio who are": [0, 65535], "is there dromio who are those": [0, 65535], "there dromio who are those at": [0, 65535], "dromio who are those at the": [0, 65535], "who are those at the gate": [0, 65535], "are those at the gate e": [0, 65535], "those at the gate e dro": [0, 65535], "at the gate e dro let": [0, 65535], "the gate e dro let my": [0, 65535], "gate e dro let my master": [0, 65535], "e dro let my master in": [0, 65535], "dro let my master in luce": [0, 65535], "let my master in luce luce": [0, 65535], "my master in luce luce faith": [0, 65535], "master in luce luce faith no": [0, 65535], "in luce luce faith no hee": [0, 65535], "luce luce faith no hee comes": [0, 65535], "luce faith no hee comes too": [0, 65535], "faith no hee comes too late": [0, 65535], "no hee comes too late and": [0, 65535], "hee comes too late and so": [0, 65535], "comes too late and so tell": [0, 65535], "too late and so tell your": [0, 65535], "late and so tell your master": [0, 65535], "and so tell your master e": [0, 65535], "so tell your master e dro": [0, 65535], "tell your master e dro o": [0, 65535], "your master e dro o lord": [0, 65535], "master e dro o lord i": [0, 65535], "e dro o lord i must": [0, 65535], "dro o lord i must laugh": [0, 65535], "o lord i must laugh haue": [0, 65535], "lord i must laugh haue at": [0, 65535], "i must laugh haue at you": [0, 65535], "must laugh haue at you with": [0, 65535], "laugh haue at you with a": [0, 65535], "haue at you with a prouerbe": [0, 65535], "at you with a prouerbe shall": [0, 65535], "you with a prouerbe shall i": [0, 65535], "with a prouerbe shall i set": [0, 65535], "a prouerbe shall i set in": [0, 65535], "prouerbe shall i set in my": [0, 65535], "shall i set in my staffe": [0, 65535], "i set in my staffe luce": [0, 65535], "set in my staffe luce haue": [0, 65535], "in my staffe luce haue at": [0, 65535], "my staffe luce haue at you": [0, 65535], "staffe luce haue at you with": [0, 65535], "luce haue at you with another": [0, 65535], "haue at you with another that's": [0, 65535], "at you with another that's when": [0, 65535], "you with another that's when can": [0, 65535], "with another that's when can you": [0, 65535], "another that's when can you tell": [0, 65535], "that's when can you tell s": [0, 65535], "when can you tell s dro": [0, 65535], "can you tell s dro if": [0, 65535], "you tell s dro if thy": [0, 65535], "tell s dro if thy name": [0, 65535], "s dro if thy name be": [0, 65535], "dro if thy name be called": [0, 65535], "if thy name be called luce": [0, 65535], "thy name be called luce luce": [0, 65535], "name be called luce luce thou": [0, 65535], "be called luce luce thou hast": [0, 65535], "called luce luce thou hast an": [0, 65535], "luce luce thou hast an swer'd": [0, 65535], "luce thou hast an swer'd him": [0, 65535], "thou hast an swer'd him well": [0, 65535], "hast an swer'd him well anti": [0, 65535], "an swer'd him well anti doe": [0, 65535], "swer'd him well anti doe you": [0, 65535], "him well anti doe you heare": [0, 65535], "well anti doe you heare you": [0, 65535], "anti doe you heare you minion": [0, 65535], "doe you heare you minion you'll": [0, 65535], "you heare you minion you'll let": [0, 65535], "heare you minion you'll let vs": [0, 65535], "you minion you'll let vs in": [0, 65535], "minion you'll let vs in i": [0, 65535], "you'll let vs in i hope": [0, 65535], "let vs in i hope luce": [0, 65535], "vs in i hope luce i": [0, 65535], "in i hope luce i thought": [0, 65535], "i hope luce i thought to": [0, 65535], "hope luce i thought to haue": [0, 65535], "luce i thought to haue askt": [0, 65535], "i thought to haue askt you": [0, 65535], "thought to haue askt you s": [0, 65535], "to haue askt you s dro": [0, 65535], "haue askt you s dro and": [0, 65535], "askt you s dro and you": [0, 65535], "you s dro and you said": [0, 65535], "s dro and you said no": [0, 65535], "dro and you said no e": [0, 65535], "and you said no e dro": [0, 65535], "you said no e dro so": [0, 65535], "said no e dro so come": [0, 65535], "no e dro so come helpe": [0, 65535], "e dro so come helpe well": [0, 65535], "dro so come helpe well strooke": [0, 65535], "so come helpe well strooke there": [0, 65535], "come helpe well strooke there was": [0, 65535], "helpe well strooke there was blow": [0, 65535], "well strooke there was blow for": [0, 65535], "strooke there was blow for blow": [0, 65535], "there was blow for blow anti": [0, 65535], "was blow for blow anti thou": [0, 65535], "blow for blow anti thou baggage": [0, 65535], "for blow anti thou baggage let": [0, 65535], "blow anti thou baggage let me": [0, 65535], "anti thou baggage let me in": [0, 65535], "thou baggage let me in luce": [0, 65535], "baggage let me in luce can": [0, 65535], "let me in luce can you": [0, 65535], "me in luce can you tell": [0, 65535], "in luce can you tell for": [0, 65535], "luce can you tell for whose": [0, 65535], "can you tell for whose sake": [0, 65535], "you tell for whose sake e": [0, 65535], "tell for whose sake e drom": [0, 65535], "for whose sake e drom master": [0, 65535], "whose sake e drom master knocke": [0, 65535], "sake e drom master knocke the": [0, 65535], "e drom master knocke the doore": [0, 65535], "drom master knocke the doore hard": [0, 65535], "master knocke the doore hard luce": [0, 65535], "knocke the doore hard luce let": [0, 65535], "the doore hard luce let him": [0, 65535], "doore hard luce let him knocke": [0, 65535], "hard luce let him knocke till": [0, 65535], "luce let him knocke till it": [0, 65535], "let him knocke till it ake": [0, 65535], "him knocke till it ake anti": [0, 65535], "knocke till it ake anti you'll": [0, 65535], "till it ake anti you'll crie": [0, 65535], "it ake anti you'll crie for": [0, 65535], "ake anti you'll crie for this": [0, 65535], "anti you'll crie for this minion": [0, 65535], "you'll crie for this minion if": [0, 65535], "crie for this minion if i": [0, 65535], "for this minion if i beat": [0, 65535], "this minion if i beat the": [0, 65535], "minion if i beat the doore": [0, 65535], "if i beat the doore downe": [0, 65535], "i beat the doore downe luce": [0, 65535], "beat the doore downe luce what": [0, 65535], "the doore downe luce what needs": [0, 65535], "doore downe luce what needs all": [0, 65535], "downe luce what needs all that": [0, 65535], "luce what needs all that and": [0, 65535], "what needs all that and a": [0, 65535], "needs all that and a paire": [0, 65535], "all that and a paire of": [0, 65535], "that and a paire of stocks": [0, 65535], "and a paire of stocks in": [0, 65535], "a paire of stocks in the": [0, 65535], "paire of stocks in the towne": [0, 65535], "of stocks in the towne enter": [0, 65535], "stocks in the towne enter adriana": [0, 65535], "in the towne enter adriana adr": [0, 65535], "the towne enter adriana adr who": [0, 65535], "towne enter adriana adr who is": [0, 65535], "enter adriana adr who is that": [0, 65535], "adriana adr who is that at": [0, 65535], "adr who is that at the": [0, 65535], "who is that at the doore": [0, 65535], "is that at the doore that": [0, 65535], "that at the doore that keeps": [0, 65535], "at the doore that keeps all": [0, 65535], "the doore that keeps all this": [0, 65535], "doore that keeps all this noise": [0, 65535], "that keeps all this noise s": [0, 65535], "keeps all this noise s dro": [0, 65535], "all this noise s dro by": [0, 65535], "this noise s dro by my": [0, 65535], "noise s dro by my troth": [0, 65535], "s dro by my troth your": [0, 65535], "dro by my troth your towne": [0, 65535], "by my troth your towne is": [0, 65535], "my troth your towne is troubled": [0, 65535], "troth your towne is troubled with": [0, 65535], "your towne is troubled with vnruly": [0, 65535], "towne is troubled with vnruly boies": [0, 65535], "is troubled with vnruly boies anti": [0, 65535], "troubled with vnruly boies anti are": [0, 65535], "with vnruly boies anti are you": [0, 65535], "vnruly boies anti are you there": [0, 65535], "boies anti are you there wife": [0, 65535], "anti are you there wife you": [0, 65535], "are you there wife you might": [0, 65535], "you there wife you might haue": [0, 65535], "there wife you might haue come": [0, 65535], "wife you might haue come before": [0, 65535], "you might haue come before adri": [0, 65535], "might haue come before adri your": [0, 65535], "haue come before adri your wife": [0, 65535], "come before adri your wife sir": [0, 65535], "before adri your wife sir knaue": [0, 65535], "adri your wife sir knaue go": [0, 65535], "your wife sir knaue go get": [0, 65535], "wife sir knaue go get you": [0, 65535], "sir knaue go get you from": [0, 65535], "knaue go get you from the": [0, 65535], "go get you from the dore": [0, 65535], "get you from the dore e": [0, 65535], "you from the dore e dro": [0, 65535], "from the dore e dro if": [0, 65535], "the dore e dro if you": [0, 65535], "dore e dro if you went": [0, 65535], "e dro if you went in": [0, 65535], "dro if you went in paine": [0, 65535], "if you went in paine master": [0, 65535], "you went in paine master this": [0, 65535], "went in paine master this knaue": [0, 65535], "in paine master this knaue wold": [0, 65535], "paine master this knaue wold goe": [0, 65535], "master this knaue wold goe sore": [0, 65535], "this knaue wold goe sore angelo": [0, 65535], "knaue wold goe sore angelo heere": [0, 65535], "wold goe sore angelo heere is": [0, 65535], "goe sore angelo heere is neither": [0, 65535], "sore angelo heere is neither cheere": [0, 65535], "angelo heere is neither cheere sir": [0, 65535], "heere is neither cheere sir nor": [0, 65535], "is neither cheere sir nor welcome": [0, 65535], "neither cheere sir nor welcome we": [0, 65535], "cheere sir nor welcome we would": [0, 65535], "sir nor welcome we would faine": [0, 65535], "nor welcome we would faine haue": [0, 65535], "welcome we would faine haue either": [0, 65535], "we would faine haue either baltz": [0, 65535], "would faine haue either baltz in": [0, 65535], "faine haue either baltz in debating": [0, 65535], "haue either baltz in debating which": [0, 65535], "either baltz in debating which was": [0, 65535], "baltz in debating which was best": [0, 65535], "in debating which was best wee": [0, 65535], "debating which was best wee shall": [0, 65535], "which was best wee shall part": [0, 65535], "was best wee shall part with": [0, 65535], "best wee shall part with neither": [0, 65535], "wee shall part with neither e": [0, 65535], "shall part with neither e dro": [0, 65535], "part with neither e dro they": [0, 65535], "with neither e dro they stand": [0, 65535], "neither e dro they stand at": [0, 65535], "e dro they stand at the": [0, 65535], "dro they stand at the doore": [0, 65535], "they stand at the doore master": [0, 65535], "stand at the doore master bid": [0, 65535], "at the doore master bid them": [0, 65535], "the doore master bid them welcome": [0, 65535], "doore master bid them welcome hither": [0, 65535], "master bid them welcome hither anti": [0, 65535], "bid them welcome hither anti there": [0, 65535], "them welcome hither anti there is": [0, 65535], "welcome hither anti there is something": [0, 65535], "hither anti there is something in": [0, 65535], "anti there is something in the": [0, 65535], "there is something in the winde": [0, 65535], "is something in the winde that": [0, 65535], "something in the winde that we": [0, 65535], "in the winde that we cannot": [0, 65535], "the winde that we cannot get": [0, 65535], "winde that we cannot get in": [0, 65535], "that we cannot get in e": [0, 65535], "we cannot get in e dro": [0, 65535], "cannot get in e dro you": [0, 65535], "get in e dro you would": [0, 65535], "in e dro you would say": [0, 65535], "e dro you would say so": [0, 65535], "dro you would say so master": [0, 65535], "you would say so master if": [0, 65535], "would say so master if your": [0, 65535], "say so master if your garments": [0, 65535], "so master if your garments were": [0, 65535], "master if your garments were thin": [0, 65535], "if your garments were thin your": [0, 65535], "your garments were thin your cake": [0, 65535], "garments were thin your cake here": [0, 65535], "were thin your cake here is": [0, 65535], "thin your cake here is warme": [0, 65535], "your cake here is warme within": [0, 65535], "cake here is warme within you": [0, 65535], "here is warme within you stand": [0, 65535], "is warme within you stand here": [0, 65535], "warme within you stand here in": [0, 65535], "within you stand here in the": [0, 65535], "you stand here in the cold": [0, 65535], "stand here in the cold it": [0, 65535], "here in the cold it would": [0, 65535], "in the cold it would make": [0, 65535], "the cold it would make a": [0, 65535], "cold it would make a man": [0, 65535], "it would make a man mad": [0, 65535], "would make a man mad as": [0, 65535], "make a man mad as a": [0, 65535], "a man mad as a bucke": [0, 65535], "man mad as a bucke to": [0, 65535], "mad as a bucke to be": [0, 65535], "as a bucke to be so": [0, 65535], "a bucke to be so bought": [0, 65535], "bucke to be so bought and": [0, 65535], "to be so bought and sold": [0, 65535], "be so bought and sold ant": [0, 65535], "so bought and sold ant go": [0, 65535], "bought and sold ant go fetch": [0, 65535], "and sold ant go fetch me": [0, 65535], "sold ant go fetch me something": [0, 65535], "ant go fetch me something ile": [0, 65535], "go fetch me something ile break": [0, 65535], "fetch me something ile break ope": [0, 65535], "me something ile break ope the": [0, 65535], "something ile break ope the gate": [0, 65535], "ile break ope the gate s": [0, 65535], "break ope the gate s dro": [0, 65535], "ope the gate s dro breake": [0, 65535], "the gate s dro breake any": [0, 65535], "gate s dro breake any breaking": [0, 65535], "s dro breake any breaking here": [0, 65535], "dro breake any breaking here and": [0, 65535], "breake any breaking here and ile": [0, 65535], "any breaking here and ile breake": [0, 65535], "breaking here and ile breake your": [0, 65535], "here and ile breake your knaues": [0, 65535], "and ile breake your knaues pate": [0, 65535], "ile breake your knaues pate e": [0, 65535], "breake your knaues pate e dro": [0, 65535], "your knaues pate e dro a": [0, 65535], "knaues pate e dro a man": [0, 65535], "pate e dro a man may": [0, 65535], "e dro a man may breake": [0, 65535], "dro a man may breake a": [0, 65535], "a man may breake a word": [0, 65535], "man may breake a word with": [0, 65535], "may breake a word with your": [0, 65535], "breake a word with your sir": [0, 65535], "a word with your sir and": [0, 65535], "word with your sir and words": [0, 65535], "with your sir and words are": [0, 65535], "your sir and words are but": [0, 65535], "sir and words are but winde": [0, 65535], "and words are but winde i": [0, 65535], "words are but winde i and": [0, 65535], "are but winde i and breake": [0, 65535], "but winde i and breake it": [0, 65535], "winde i and breake it in": [0, 65535], "i and breake it in your": [0, 65535], "and breake it in your face": [0, 65535], "breake it in your face so": [0, 65535], "it in your face so he": [0, 65535], "in your face so he break": [0, 65535], "your face so he break it": [0, 65535], "face so he break it not": [0, 65535], "so he break it not behinde": [0, 65535], "he break it not behinde s": [0, 65535], "break it not behinde s dro": [0, 65535], "it not behinde s dro it": [0, 65535], "not behinde s dro it seemes": [0, 65535], "behinde s dro it seemes thou": [0, 65535], "s dro it seemes thou want'st": [0, 65535], "dro it seemes thou want'st breaking": [0, 65535], "it seemes thou want'st breaking out": [0, 65535], "seemes thou want'st breaking out vpon": [0, 65535], "thou want'st breaking out vpon thee": [0, 65535], "want'st breaking out vpon thee hinde": [0, 65535], "breaking out vpon thee hinde e": [0, 65535], "out vpon thee hinde e dro": [0, 65535], "vpon thee hinde e dro here's": [0, 65535], "thee hinde e dro here's too": [0, 65535], "hinde e dro here's too much": [0, 65535], "e dro here's too much out": [0, 65535], "dro here's too much out vpon": [0, 65535], "here's too much out vpon thee": [0, 65535], "too much out vpon thee i": [0, 65535], "much out vpon thee i pray": [0, 65535], "out vpon thee i pray thee": [0, 65535], "vpon thee i pray thee let": [0, 65535], "thee i pray thee let me": [0, 65535], "i pray thee let me in": [0, 65535], "pray thee let me in s": [0, 65535], "thee let me in s dro": [0, 65535], "let me in s dro i": [0, 65535], "me in s dro i when": [0, 65535], "in s dro i when fowles": [0, 65535], "s dro i when fowles haue": [0, 65535], "dro i when fowles haue no": [0, 65535], "i when fowles haue no feathers": [0, 65535], "when fowles haue no feathers and": [0, 65535], "fowles haue no feathers and fish": [0, 65535], "haue no feathers and fish haue": [0, 65535], "no feathers and fish haue no": [0, 65535], "feathers and fish haue no fin": [0, 65535], "and fish haue no fin ant": [0, 65535], "fish haue no fin ant well": [0, 65535], "haue no fin ant well ile": [0, 65535], "no fin ant well ile breake": [0, 65535], "fin ant well ile breake in": [0, 65535], "ant well ile breake in go": [0, 65535], "well ile breake in go borrow": [0, 65535], "ile breake in go borrow me": [0, 65535], "breake in go borrow me a": [0, 65535], "in go borrow me a crow": [0, 65535], "go borrow me a crow e": [0, 65535], "borrow me a crow e dro": [0, 65535], "me a crow e dro a": [0, 65535], "a crow e dro a crow": [0, 65535], "crow e dro a crow without": [0, 65535], "e dro a crow without feather": [0, 65535], "dro a crow without feather master": [0, 65535], "a crow without feather master meane": [0, 65535], "crow without feather master meane you": [0, 65535], "without feather master meane you so": [0, 65535], "feather master meane you so for": [0, 65535], "master meane you so for a": [0, 65535], "meane you so for a fish": [0, 65535], "you so for a fish without": [0, 65535], "so for a fish without a": [0, 65535], "for a fish without a finne": [0, 65535], "a fish without a finne ther's": [0, 65535], "fish without a finne ther's a": [0, 65535], "without a finne ther's a fowle": [0, 65535], "a finne ther's a fowle without": [0, 65535], "finne ther's a fowle without a": [0, 65535], "ther's a fowle without a fether": [0, 65535], "a fowle without a fether if": [0, 65535], "fowle without a fether if a": [0, 65535], "without a fether if a crow": [0, 65535], "a fether if a crow help": [0, 65535], "fether if a crow help vs": [0, 65535], "if a crow help vs in": [0, 65535], "a crow help vs in sirra": [0, 65535], "crow help vs in sirra wee'll": [0, 65535], "help vs in sirra wee'll plucke": [0, 65535], "vs in sirra wee'll plucke a": [0, 65535], "in sirra wee'll plucke a crow": [0, 65535], "sirra wee'll plucke a crow together": [0, 65535], "wee'll plucke a crow together ant": [0, 65535], "plucke a crow together ant go": [0, 65535], "a crow together ant go get": [0, 65535], "crow together ant go get thee": [0, 65535], "together ant go get thee gon": [0, 65535], "ant go get thee gon fetch": [0, 65535], "go get thee gon fetch me": [0, 65535], "get thee gon fetch me an": [0, 65535], "thee gon fetch me an iron": [0, 65535], "gon fetch me an iron crow": [0, 65535], "fetch me an iron crow balth": [0, 65535], "me an iron crow balth haue": [0, 65535], "an iron crow balth haue patience": [0, 65535], "iron crow balth haue patience sir": [0, 65535], "crow balth haue patience sir oh": [0, 65535], "balth haue patience sir oh let": [0, 65535], "haue patience sir oh let it": [0, 65535], "patience sir oh let it not": [0, 65535], "sir oh let it not be": [0, 65535], "oh let it not be so": [0, 65535], "let it not be so heerein": [0, 65535], "it not be so heerein you": [0, 65535], "not be so heerein you warre": [0, 65535], "be so heerein you warre against": [0, 65535], "so heerein you warre against your": [0, 65535], "heerein you warre against your reputation": [0, 65535], "you warre against your reputation and": [0, 65535], "warre against your reputation and draw": [0, 65535], "against your reputation and draw within": [0, 65535], "your reputation and draw within the": [0, 65535], "reputation and draw within the compasse": [0, 65535], "and draw within the compasse of": [0, 65535], "draw within the compasse of suspect": [0, 65535], "within the compasse of suspect th'": [0, 65535], "the compasse of suspect th' vnuiolated": [0, 65535], "compasse of suspect th' vnuiolated honor": [0, 65535], "of suspect th' vnuiolated honor of": [0, 65535], "suspect th' vnuiolated honor of your": [0, 65535], "th' vnuiolated honor of your wife": [0, 65535], "vnuiolated honor of your wife once": [0, 65535], "honor of your wife once this": [0, 65535], "of your wife once this your": [0, 65535], "your wife once this your long": [0, 65535], "wife once this your long experience": [0, 65535], "once this your long experience of": [0, 65535], "this your long experience of your": [0, 65535], "your long experience of your wisedome": [0, 65535], "long experience of your wisedome her": [0, 65535], "experience of your wisedome her sober": [0, 65535], "of your wisedome her sober vertue": [0, 65535], "your wisedome her sober vertue yeares": [0, 65535], "wisedome her sober vertue yeares and": [0, 65535], "her sober vertue yeares and modestie": [0, 65535], "sober vertue yeares and modestie plead": [0, 65535], "vertue yeares and modestie plead on": [0, 65535], "yeares and modestie plead on your": [0, 65535], "and modestie plead on your part": [0, 65535], "modestie plead on your part some": [0, 65535], "plead on your part some cause": [0, 65535], "on your part some cause to": [0, 65535], "your part some cause to you": [0, 65535], "part some cause to you vnknowne": [0, 65535], "some cause to you vnknowne and": [0, 65535], "cause to you vnknowne and doubt": [0, 65535], "to you vnknowne and doubt not": [0, 65535], "you vnknowne and doubt not sir": [0, 65535], "vnknowne and doubt not sir but": [0, 65535], "and doubt not sir but she": [0, 65535], "doubt not sir but she will": [0, 65535], "not sir but she will well": [0, 65535], "sir but she will well excuse": [0, 65535], "but she will well excuse why": [0, 65535], "she will well excuse why at": [0, 65535], "will well excuse why at this": [0, 65535], "well excuse why at this time": [0, 65535], "excuse why at this time the": [0, 65535], "why at this time the dores": [0, 65535], "at this time the dores are": [0, 65535], "this time the dores are made": [0, 65535], "time the dores are made against": [0, 65535], "the dores are made against you": [0, 65535], "dores are made against you be": [0, 65535], "are made against you be rul'd": [0, 65535], "made against you be rul'd by": [0, 65535], "against you be rul'd by me": [0, 65535], "you be rul'd by me depart": [0, 65535], "be rul'd by me depart in": [0, 65535], "rul'd by me depart in patience": [0, 65535], "by me depart in patience and": [0, 65535], "me depart in patience and let": [0, 65535], "depart in patience and let vs": [0, 65535], "in patience and let vs to": [0, 65535], "patience and let vs to the": [0, 65535], "and let vs to the tyger": [0, 65535], "let vs to the tyger all": [0, 65535], "vs to the tyger all to": [0, 65535], "to the tyger all to dinner": [0, 65535], "the tyger all to dinner and": [0, 65535], "tyger all to dinner and about": [0, 65535], "all to dinner and about euening": [0, 65535], "to dinner and about euening come": [0, 65535], "dinner and about euening come your": [0, 65535], "and about euening come your selfe": [0, 65535], "about euening come your selfe alone": [0, 65535], "euening come your selfe alone to": [0, 65535], "come your selfe alone to know": [0, 65535], "your selfe alone to know the": [0, 65535], "selfe alone to know the reason": [0, 65535], "alone to know the reason of": [0, 65535], "to know the reason of this": [0, 65535], "know the reason of this strange": [0, 65535], "the reason of this strange restraint": [0, 65535], "reason of this strange restraint if": [0, 65535], "of this strange restraint if by": [0, 65535], "this strange restraint if by strong": [0, 65535], "strange restraint if by strong hand": [0, 65535], "restraint if by strong hand you": [0, 65535], "if by strong hand you offer": [0, 65535], "by strong hand you offer to": [0, 65535], "strong hand you offer to breake": [0, 65535], "hand you offer to breake in": [0, 65535], "you offer to breake in now": [0, 65535], "offer to breake in now in": [0, 65535], "to breake in now in the": [0, 65535], "breake in now in the stirring": [0, 65535], "in now in the stirring passage": [0, 65535], "now in the stirring passage of": [0, 65535], "in the stirring passage of the": [0, 65535], "the stirring passage of the day": [0, 65535], "stirring passage of the day a": [0, 65535], "passage of the day a vulgar": [0, 65535], "of the day a vulgar comment": [0, 65535], "the day a vulgar comment will": [0, 65535], "day a vulgar comment will be": [0, 65535], "a vulgar comment will be made": [0, 65535], "vulgar comment will be made of": [0, 65535], "comment will be made of it": [0, 65535], "will be made of it and": [0, 65535], "be made of it and that": [0, 65535], "made of it and that supposed": [0, 65535], "of it and that supposed by": [0, 65535], "it and that supposed by the": [0, 65535], "and that supposed by the common": [0, 65535], "that supposed by the common rowt": [0, 65535], "supposed by the common rowt against": [0, 65535], "by the common rowt against your": [0, 65535], "the common rowt against your yet": [0, 65535], "common rowt against your yet vngalled": [0, 65535], "rowt against your yet vngalled estimation": [0, 65535], "against your yet vngalled estimation that": [0, 65535], "your yet vngalled estimation that may": [0, 65535], "yet vngalled estimation that may with": [0, 65535], "vngalled estimation that may with foule": [0, 65535], "estimation that may with foule intrusion": [0, 65535], "that may with foule intrusion enter": [0, 65535], "may with foule intrusion enter in": [0, 65535], "with foule intrusion enter in and": [0, 65535], "foule intrusion enter in and dwell": [0, 65535], "intrusion enter in and dwell vpon": [0, 65535], "enter in and dwell vpon your": [0, 65535], "in and dwell vpon your graue": [0, 65535], "and dwell vpon your graue when": [0, 65535], "dwell vpon your graue when you": [0, 65535], "vpon your graue when you are": [0, 65535], "your graue when you are dead": [0, 65535], "graue when you are dead for": [0, 65535], "when you are dead for slander": [0, 65535], "you are dead for slander liues": [0, 65535], "are dead for slander liues vpon": [0, 65535], "dead for slander liues vpon succession": [0, 65535], "for slander liues vpon succession for": [0, 65535], "slander liues vpon succession for euer": [0, 65535], "liues vpon succession for euer hows'd": [0, 65535], "vpon succession for euer hows'd where": [0, 65535], "succession for euer hows'd where it": [0, 65535], "for euer hows'd where it gets": [0, 65535], "euer hows'd where it gets possession": [0, 65535], "hows'd where it gets possession anti": [0, 65535], "where it gets possession anti you": [0, 65535], "it gets possession anti you haue": [0, 65535], "gets possession anti you haue preuail'd": [0, 65535], "possession anti you haue preuail'd i": [0, 65535], "anti you haue preuail'd i will": [0, 65535], "you haue preuail'd i will depart": [0, 65535], "haue preuail'd i will depart in": [0, 65535], "preuail'd i will depart in quiet": [0, 65535], "i will depart in quiet and": [0, 65535], "will depart in quiet and in": [0, 65535], "depart in quiet and in despight": [0, 65535], "in quiet and in despight of": [0, 65535], "quiet and in despight of mirth": [0, 65535], "and in despight of mirth meane": [0, 65535], "in despight of mirth meane to": [0, 65535], "despight of mirth meane to be": [0, 65535], "of mirth meane to be merrie": [0, 65535], "mirth meane to be merrie i": [0, 65535], "meane to be merrie i know": [0, 65535], "to be merrie i know a": [0, 65535], "be merrie i know a wench": [0, 65535], "merrie i know a wench of": [0, 65535], "i know a wench of excellent": [0, 65535], "know a wench of excellent discourse": [0, 65535], "a wench of excellent discourse prettie": [0, 65535], "wench of excellent discourse prettie and": [0, 65535], "of excellent discourse prettie and wittie": [0, 65535], "excellent discourse prettie and wittie wilde": [0, 65535], "discourse prettie and wittie wilde and": [0, 65535], "prettie and wittie wilde and yet": [0, 65535], "and wittie wilde and yet too": [0, 65535], "wittie wilde and yet too gentle": [0, 65535], "wilde and yet too gentle there": [0, 65535], "and yet too gentle there will": [0, 65535], "yet too gentle there will we": [0, 65535], "too gentle there will we dine": [0, 65535], "gentle there will we dine this": [0, 65535], "there will we dine this woman": [0, 65535], "will we dine this woman that": [0, 65535], "we dine this woman that i": [0, 65535], "dine this woman that i meane": [0, 65535], "this woman that i meane my": [0, 65535], "woman that i meane my wife": [0, 65535], "that i meane my wife but": [0, 65535], "i meane my wife but i": [0, 65535], "meane my wife but i protest": [0, 65535], "my wife but i protest without": [0, 65535], "wife but i protest without desert": [0, 65535], "but i protest without desert hath": [0, 65535], "i protest without desert hath oftentimes": [0, 65535], "protest without desert hath oftentimes vpbraided": [0, 65535], "without desert hath oftentimes vpbraided me": [0, 65535], "desert hath oftentimes vpbraided me withall": [0, 65535], "hath oftentimes vpbraided me withall to": [0, 65535], "oftentimes vpbraided me withall to her": [0, 65535], "vpbraided me withall to her will": [0, 65535], "me withall to her will we": [0, 65535], "withall to her will we to": [0, 65535], "to her will we to dinner": [0, 65535], "her will we to dinner get": [0, 65535], "will we to dinner get you": [0, 65535], "we to dinner get you home": [0, 65535], "to dinner get you home and": [0, 65535], "dinner get you home and fetch": [0, 65535], "get you home and fetch the": [0, 65535], "you home and fetch the chaine": [0, 65535], "home and fetch the chaine by": [0, 65535], "and fetch the chaine by this": [0, 65535], "fetch the chaine by this i": [0, 65535], "the chaine by this i know": [0, 65535], "chaine by this i know 'tis": [0, 65535], "by this i know 'tis made": [0, 65535], "this i know 'tis made bring": [0, 65535], "i know 'tis made bring it": [0, 65535], "know 'tis made bring it i": [0, 65535], "'tis made bring it i pray": [0, 65535], "made bring it i pray you": [0, 65535], "bring it i pray you to": [0, 65535], "it i pray you to the": [0, 65535], "i pray you to the porpentine": [0, 65535], "pray you to the porpentine for": [0, 65535], "you to the porpentine for there's": [0, 65535], "to the porpentine for there's the": [0, 65535], "the porpentine for there's the house": [0, 65535], "porpentine for there's the house that": [0, 65535], "for there's the house that chaine": [0, 65535], "there's the house that chaine will": [0, 65535], "the house that chaine will i": [0, 65535], "house that chaine will i bestow": [0, 65535], "that chaine will i bestow be": [0, 65535], "chaine will i bestow be it": [0, 65535], "will i bestow be it for": [0, 65535], "i bestow be it for nothing": [0, 65535], "bestow be it for nothing but": [0, 65535], "be it for nothing but to": [0, 65535], "it for nothing but to spight": [0, 65535], "for nothing but to spight my": [0, 65535], "nothing but to spight my wife": [0, 65535], "but to spight my wife vpon": [0, 65535], "to spight my wife vpon mine": [0, 65535], "spight my wife vpon mine hostesse": [0, 65535], "my wife vpon mine hostesse there": [0, 65535], "wife vpon mine hostesse there good": [0, 65535], "vpon mine hostesse there good sir": [0, 65535], "mine hostesse there good sir make": [0, 65535], "hostesse there good sir make haste": [0, 65535], "there good sir make haste since": [0, 65535], "good sir make haste since mine": [0, 65535], "sir make haste since mine owne": [0, 65535], "make haste since mine owne doores": [0, 65535], "haste since mine owne doores refuse": [0, 65535], "since mine owne doores refuse to": [0, 65535], "mine owne doores refuse to entertaine": [0, 65535], "owne doores refuse to entertaine me": [0, 65535], "doores refuse to entertaine me ile": [0, 65535], "refuse to entertaine me ile knocke": [0, 65535], "to entertaine me ile knocke else": [0, 65535], "entertaine me ile knocke else where": [0, 65535], "me ile knocke else where to": [0, 65535], "ile knocke else where to see": [0, 65535], "knocke else where to see if": [0, 65535], "else where to see if they'll": [0, 65535], "where to see if they'll disdaine": [0, 65535], "to see if they'll disdaine me": [0, 65535], "see if they'll disdaine me ang": [0, 65535], "if they'll disdaine me ang ile": [0, 65535], "they'll disdaine me ang ile meet": [0, 65535], "disdaine me ang ile meet you": [0, 65535], "me ang ile meet you at": [0, 65535], "ang ile meet you at that": [0, 65535], "ile meet you at that place": [0, 65535], "meet you at that place some": [0, 65535], "you at that place some houre": [0, 65535], "at that place some houre hence": [0, 65535], "that place some houre hence anti": [0, 65535], "place some houre hence anti do": [0, 65535], "some houre hence anti do so": [0, 65535], "houre hence anti do so this": [0, 65535], "hence anti do so this iest": [0, 65535], "anti do so this iest shall": [0, 65535], "do so this iest shall cost": [0, 65535], "so this iest shall cost me": [0, 65535], "this iest shall cost me some": [0, 65535], "iest shall cost me some expence": [0, 65535], "shall cost me some expence exeunt": [0, 65535], "cost me some expence exeunt enter": [0, 65535], "me some expence exeunt enter iuliana": [0, 65535], "some expence exeunt enter iuliana with": [0, 65535], "expence exeunt enter iuliana with antipholus": [0, 65535], "exeunt enter iuliana with antipholus of": [0, 65535], "enter iuliana with antipholus of siracusia": [0, 65535], "iuliana with antipholus of siracusia iulia": [0, 65535], "with antipholus of siracusia iulia and": [0, 65535], "antipholus of siracusia iulia and may": [0, 65535], "of siracusia iulia and may it": [0, 65535], "siracusia iulia and may it be": [0, 65535], "iulia and may it be that": [0, 65535], "and may it be that you": [0, 65535], "may it be that you haue": [0, 65535], "it be that you haue quite": [0, 65535], "be that you haue quite forgot": [0, 65535], "that you haue quite forgot a": [0, 65535], "you haue quite forgot a husbands": [0, 65535], "haue quite forgot a husbands office": [0, 65535], "quite forgot a husbands office shall": [0, 65535], "forgot a husbands office shall antipholus": [0, 65535], "a husbands office shall antipholus euen": [0, 65535], "husbands office shall antipholus euen in": [0, 65535], "office shall antipholus euen in the": [0, 65535], "shall antipholus euen in the spring": [0, 65535], "antipholus euen in the spring of": [0, 65535], "euen in the spring of loue": [0, 65535], "in the spring of loue thy": [0, 65535], "the spring of loue thy loue": [0, 65535], "spring of loue thy loue springs": [0, 65535], "of loue thy loue springs rot": [0, 65535], "loue thy loue springs rot shall": [0, 65535], "thy loue springs rot shall loue": [0, 65535], "loue springs rot shall loue in": [0, 65535], "springs rot shall loue in buildings": [0, 65535], "rot shall loue in buildings grow": [0, 65535], "shall loue in buildings grow so": [0, 65535], "loue in buildings grow so ruinate": [0, 65535], "in buildings grow so ruinate if": [0, 65535], "buildings grow so ruinate if you": [0, 65535], "grow so ruinate if you did": [0, 65535], "so ruinate if you did wed": [0, 65535], "ruinate if you did wed my": [0, 65535], "if you did wed my sister": [0, 65535], "you did wed my sister for": [0, 65535], "did wed my sister for her": [0, 65535], "wed my sister for her wealth": [0, 65535], "my sister for her wealth then": [0, 65535], "sister for her wealth then for": [0, 65535], "for her wealth then for her": [0, 65535], "her wealth then for her wealths": [0, 65535], "wealth then for her wealths sake": [0, 65535], "then for her wealths sake vse": [0, 65535], "for her wealths sake vse her": [0, 65535], "her wealths sake vse her with": [0, 65535], "wealths sake vse her with more": [0, 65535], "sake vse her with more kindnesse": [0, 65535], "vse her with more kindnesse or": [0, 65535], "her with more kindnesse or if": [0, 65535], "with more kindnesse or if you": [0, 65535], "more kindnesse or if you like": [0, 65535], "kindnesse or if you like else": [0, 65535], "or if you like else where": [0, 65535], "if you like else where doe": [0, 65535], "you like else where doe it": [0, 65535], "like else where doe it by": [0, 65535], "else where doe it by stealth": [0, 65535], "where doe it by stealth muffle": [0, 65535], "doe it by stealth muffle your": [0, 65535], "it by stealth muffle your false": [0, 65535], "by stealth muffle your false loue": [0, 65535], "stealth muffle your false loue with": [0, 65535], "muffle your false loue with some": [0, 65535], "your false loue with some shew": [0, 65535], "false loue with some shew of": [0, 65535], "loue with some shew of blindnesse": [0, 65535], "with some shew of blindnesse let": [0, 65535], "some shew of blindnesse let not": [0, 65535], "shew of blindnesse let not my": [0, 65535], "of blindnesse let not my sister": [0, 65535], "blindnesse let not my sister read": [0, 65535], "let not my sister read it": [0, 65535], "not my sister read it in": [0, 65535], "my sister read it in your": [0, 65535], "sister read it in your eye": [0, 65535], "read it in your eye be": [0, 65535], "it in your eye be not": [0, 65535], "in your eye be not thy": [0, 65535], "your eye be not thy tongue": [0, 65535], "eye be not thy tongue thy": [0, 65535], "be not thy tongue thy owne": [0, 65535], "not thy tongue thy owne shames": [0, 65535], "thy tongue thy owne shames orator": [0, 65535], "tongue thy owne shames orator looke": [0, 65535], "thy owne shames orator looke sweet": [0, 65535], "owne shames orator looke sweet speake": [0, 65535], "shames orator looke sweet speake faire": [0, 65535], "orator looke sweet speake faire become": [0, 65535], "looke sweet speake faire become disloyaltie": [0, 65535], "sweet speake faire become disloyaltie apparell": [0, 65535], "speake faire become disloyaltie apparell vice": [0, 65535], "faire become disloyaltie apparell vice like": [0, 65535], "become disloyaltie apparell vice like vertues": [0, 65535], "disloyaltie apparell vice like vertues harbenger": [0, 65535], "apparell vice like vertues harbenger beare": [0, 65535], "vice like vertues harbenger beare a": [0, 65535], "like vertues harbenger beare a faire": [0, 65535], "vertues harbenger beare a faire presence": [0, 65535], "harbenger beare a faire presence though": [0, 65535], "beare a faire presence though your": [0, 65535], "a faire presence though your heart": [0, 65535], "faire presence though your heart be": [0, 65535], "presence though your heart be tainted": [0, 65535], "though your heart be tainted teach": [0, 65535], "your heart be tainted teach sinne": [0, 65535], "heart be tainted teach sinne the": [0, 65535], "be tainted teach sinne the carriage": [0, 65535], "tainted teach sinne the carriage of": [0, 65535], "teach sinne the carriage of a": [0, 65535], "sinne the carriage of a holy": [0, 65535], "the carriage of a holy saint": [0, 65535], "carriage of a holy saint be": [0, 65535], "of a holy saint be secret": [0, 65535], "a holy saint be secret false": [0, 65535], "holy saint be secret false what": [0, 65535], "saint be secret false what need": [0, 65535], "be secret false what need she": [0, 65535], "secret false what need she be": [0, 65535], "false what need she be acquainted": [0, 65535], "what need she be acquainted what": [0, 65535], "need she be acquainted what simple": [0, 65535], "she be acquainted what simple thiefe": [0, 65535], "be acquainted what simple thiefe brags": [0, 65535], "acquainted what simple thiefe brags of": [0, 65535], "what simple thiefe brags of his": [0, 65535], "simple thiefe brags of his owne": [0, 65535], "thiefe brags of his owne attaine": [0, 65535], "brags of his owne attaine 'tis": [0, 65535], "of his owne attaine 'tis double": [0, 65535], "his owne attaine 'tis double wrong": [0, 65535], "owne attaine 'tis double wrong to": [0, 65535], "attaine 'tis double wrong to truant": [0, 65535], "'tis double wrong to truant with": [0, 65535], "double wrong to truant with your": [0, 65535], "wrong to truant with your bed": [0, 65535], "to truant with your bed and": [0, 65535], "truant with your bed and let": [0, 65535], "with your bed and let her": [0, 65535], "your bed and let her read": [0, 65535], "bed and let her read it": [0, 65535], "and let her read it in": [0, 65535], "let her read it in thy": [0, 65535], "her read it in thy lookes": [0, 65535], "read it in thy lookes at": [0, 65535], "it in thy lookes at boord": [0, 65535], "in thy lookes at boord shame": [0, 65535], "thy lookes at boord shame hath": [0, 65535], "lookes at boord shame hath a": [0, 65535], "at boord shame hath a bastard": [0, 65535], "boord shame hath a bastard fame": [0, 65535], "shame hath a bastard fame well": [0, 65535], "hath a bastard fame well managed": [0, 65535], "a bastard fame well managed ill": [0, 65535], "bastard fame well managed ill deeds": [0, 65535], "fame well managed ill deeds is": [0, 65535], "well managed ill deeds is doubled": [0, 65535], "managed ill deeds is doubled with": [0, 65535], "ill deeds is doubled with an": [0, 65535], "deeds is doubled with an euill": [0, 65535], "is doubled with an euill word": [0, 65535], "doubled with an euill word alas": [0, 65535], "with an euill word alas poore": [0, 65535], "an euill word alas poore women": [0, 65535], "euill word alas poore women make": [0, 65535], "word alas poore women make vs": [0, 65535], "alas poore women make vs not": [0, 65535], "poore women make vs not beleeue": [0, 65535], "women make vs not beleeue being": [0, 65535], "make vs not beleeue being compact": [0, 65535], "vs not beleeue being compact of": [0, 65535], "not beleeue being compact of credit": [0, 65535], "beleeue being compact of credit that": [0, 65535], "being compact of credit that you": [0, 65535], "compact of credit that you loue": [0, 65535], "of credit that you loue vs": [0, 65535], "credit that you loue vs though": [0, 65535], "that you loue vs though others": [0, 65535], "you loue vs though others haue": [0, 65535], "loue vs though others haue the": [0, 65535], "vs though others haue the arme": [0, 65535], "though others haue the arme shew": [0, 65535], "others haue the arme shew vs": [0, 65535], "haue the arme shew vs the": [0, 65535], "the arme shew vs the sleeue": [0, 65535], "arme shew vs the sleeue we": [0, 65535], "shew vs the sleeue we in": [0, 65535], "vs the sleeue we in your": [0, 65535], "the sleeue we in your motion": [0, 65535], "sleeue we in your motion turne": [0, 65535], "we in your motion turne and": [0, 65535], "in your motion turne and you": [0, 65535], "your motion turne and you may": [0, 65535], "motion turne and you may moue": [0, 65535], "turne and you may moue vs": [0, 65535], "and you may moue vs then": [0, 65535], "you may moue vs then gentle": [0, 65535], "may moue vs then gentle brother": [0, 65535], "moue vs then gentle brother get": [0, 65535], "vs then gentle brother get you": [0, 65535], "then gentle brother get you in": [0, 65535], "gentle brother get you in againe": [0, 65535], "brother get you in againe comfort": [0, 65535], "get you in againe comfort my": [0, 65535], "you in againe comfort my sister": [0, 65535], "in againe comfort my sister cheere": [0, 65535], "againe comfort my sister cheere her": [0, 65535], "comfort my sister cheere her call": [0, 65535], "my sister cheere her call her": [0, 65535], "sister cheere her call her wise": [0, 65535], "cheere her call her wise 'tis": [0, 65535], "her call her wise 'tis holy": [0, 65535], "call her wise 'tis holy sport": [0, 65535], "her wise 'tis holy sport to": [0, 65535], "wise 'tis holy sport to be": [0, 65535], "'tis holy sport to be a": [0, 65535], "holy sport to be a little": [0, 65535], "sport to be a little vaine": [0, 65535], "to be a little vaine when": [0, 65535], "be a little vaine when the": [0, 65535], "a little vaine when the sweet": [0, 65535], "little vaine when the sweet breath": [0, 65535], "vaine when the sweet breath of": [0, 65535], "when the sweet breath of flatterie": [0, 65535], "the sweet breath of flatterie conquers": [0, 65535], "sweet breath of flatterie conquers strife": [0, 65535], "breath of flatterie conquers strife s": [0, 65535], "of flatterie conquers strife s anti": [0, 65535], "flatterie conquers strife s anti sweete": [0, 65535], "conquers strife s anti sweete mistris": [0, 65535], "strife s anti sweete mistris what": [0, 65535], "s anti sweete mistris what your": [0, 65535], "anti sweete mistris what your name": [0, 65535], "sweete mistris what your name is": [0, 65535], "mistris what your name is else": [0, 65535], "what your name is else i": [0, 65535], "your name is else i know": [0, 65535], "name is else i know not": [0, 65535], "is else i know not nor": [0, 65535], "else i know not nor by": [0, 65535], "i know not nor by what": [0, 65535], "know not nor by what wonder": [0, 65535], "not nor by what wonder you": [0, 65535], "nor by what wonder you do": [0, 65535], "by what wonder you do hit": [0, 65535], "what wonder you do hit of": [0, 65535], "wonder you do hit of mine": [0, 65535], "you do hit of mine lesse": [0, 65535], "do hit of mine lesse in": [0, 65535], "hit of mine lesse in your": [0, 65535], "of mine lesse in your knowledge": [0, 65535], "mine lesse in your knowledge and": [0, 65535], "lesse in your knowledge and your": [0, 65535], "in your knowledge and your grace": [0, 65535], "your knowledge and your grace you": [0, 65535], "knowledge and your grace you show": [0, 65535], "and your grace you show not": [0, 65535], "your grace you show not then": [0, 65535], "grace you show not then our": [0, 65535], "you show not then our earths": [0, 65535], "show not then our earths wonder": [0, 65535], "not then our earths wonder more": [0, 65535], "then our earths wonder more then": [0, 65535], "our earths wonder more then earth": [0, 65535], "earths wonder more then earth diuine": [0, 65535], "wonder more then earth diuine teach": [0, 65535], "more then earth diuine teach me": [0, 65535], "then earth diuine teach me deere": [0, 65535], "earth diuine teach me deere creature": [0, 65535], "diuine teach me deere creature how": [0, 65535], "teach me deere creature how to": [0, 65535], "me deere creature how to thinke": [0, 65535], "deere creature how to thinke and": [0, 65535], "creature how to thinke and speake": [0, 65535], "how to thinke and speake lay": [0, 65535], "to thinke and speake lay open": [0, 65535], "thinke and speake lay open to": [0, 65535], "and speake lay open to my": [0, 65535], "speake lay open to my earthie": [0, 65535], "lay open to my earthie grosse": [0, 65535], "open to my earthie grosse conceit": [0, 65535], "to my earthie grosse conceit smothred": [0, 65535], "my earthie grosse conceit smothred in": [0, 65535], "earthie grosse conceit smothred in errors": [0, 65535], "grosse conceit smothred in errors feeble": [0, 65535], "conceit smothred in errors feeble shallow": [0, 65535], "smothred in errors feeble shallow weake": [0, 65535], "in errors feeble shallow weake the": [0, 65535], "errors feeble shallow weake the foulded": [0, 65535], "feeble shallow weake the foulded meaning": [0, 65535], "shallow weake the foulded meaning of": [0, 65535], "weake the foulded meaning of your": [0, 65535], "the foulded meaning of your words": [0, 65535], "foulded meaning of your words deceit": [0, 65535], "meaning of your words deceit against": [0, 65535], "of your words deceit against my": [0, 65535], "your words deceit against my soules": [0, 65535], "words deceit against my soules pure": [0, 65535], "deceit against my soules pure truth": [0, 65535], "against my soules pure truth why": [0, 65535], "my soules pure truth why labour": [0, 65535], "soules pure truth why labour you": [0, 65535], "pure truth why labour you to": [0, 65535], "truth why labour you to make": [0, 65535], "why labour you to make it": [0, 65535], "labour you to make it wander": [0, 65535], "you to make it wander in": [0, 65535], "to make it wander in an": [0, 65535], "make it wander in an vnknowne": [0, 65535], "it wander in an vnknowne field": [0, 65535], "wander in an vnknowne field are": [0, 65535], "in an vnknowne field are you": [0, 65535], "an vnknowne field are you a": [0, 65535], "vnknowne field are you a god": [0, 65535], "field are you a god would": [0, 65535], "are you a god would you": [0, 65535], "you a god would you create": [0, 65535], "a god would you create me": [0, 65535], "god would you create me new": [0, 65535], "would you create me new transforme": [0, 65535], "you create me new transforme me": [0, 65535], "create me new transforme me then": [0, 65535], "me new transforme me then and": [0, 65535], "new transforme me then and to": [0, 65535], "transforme me then and to your": [0, 65535], "me then and to your powre": [0, 65535], "then and to your powre ile": [0, 65535], "and to your powre ile yeeld": [0, 65535], "to your powre ile yeeld but": [0, 65535], "your powre ile yeeld but if": [0, 65535], "powre ile yeeld but if that": [0, 65535], "ile yeeld but if that i": [0, 65535], "yeeld but if that i am": [0, 65535], "but if that i am i": [0, 65535], "if that i am i then": [0, 65535], "that i am i then well": [0, 65535], "i am i then well i": [0, 65535], "am i then well i know": [0, 65535], "i then well i know your": [0, 65535], "then well i know your weeping": [0, 65535], "well i know your weeping sister": [0, 65535], "i know your weeping sister is": [0, 65535], "know your weeping sister is no": [0, 65535], "your weeping sister is no wife": [0, 65535], "weeping sister is no wife of": [0, 65535], "sister is no wife of mine": [0, 65535], "is no wife of mine nor": [0, 65535], "no wife of mine nor to": [0, 65535], "wife of mine nor to her": [0, 65535], "of mine nor to her bed": [0, 65535], "mine nor to her bed no": [0, 65535], "nor to her bed no homage": [0, 65535], "to her bed no homage doe": [0, 65535], "her bed no homage doe i": [0, 65535], "bed no homage doe i owe": [0, 65535], "no homage doe i owe farre": [0, 65535], "homage doe i owe farre more": [0, 65535], "doe i owe farre more farre": [0, 65535], "i owe farre more farre more": [0, 65535], "owe farre more farre more to": [0, 65535], "farre more farre more to you": [0, 65535], "more farre more to you doe": [0, 65535], "farre more to you doe i": [0, 65535], "more to you doe i decline": [0, 65535], "to you doe i decline oh": [0, 65535], "you doe i decline oh traine": [0, 65535], "doe i decline oh traine me": [0, 65535], "i decline oh traine me not": [0, 65535], "decline oh traine me not sweet": [0, 65535], "oh traine me not sweet mermaide": [0, 65535], "traine me not sweet mermaide with": [0, 65535], "me not sweet mermaide with thy": [0, 65535], "not sweet mermaide with thy note": [0, 65535], "sweet mermaide with thy note to": [0, 65535], "mermaide with thy note to drowne": [0, 65535], "with thy note to drowne me": [0, 65535], "thy note to drowne me in": [0, 65535], "note to drowne me in thy": [0, 65535], "to drowne me in thy sister": [0, 65535], "drowne me in thy sister floud": [0, 65535], "me in thy sister floud of": [0, 65535], "in thy sister floud of teares": [0, 65535], "thy sister floud of teares sing": [0, 65535], "sister floud of teares sing siren": [0, 65535], "floud of teares sing siren for": [0, 65535], "of teares sing siren for thy": [0, 65535], "teares sing siren for thy selfe": [0, 65535], "sing siren for thy selfe and": [0, 65535], "siren for thy selfe and i": [0, 65535], "for thy selfe and i will": [0, 65535], "thy selfe and i will dote": [0, 65535], "selfe and i will dote spread": [0, 65535], "and i will dote spread ore": [0, 65535], "i will dote spread ore the": [0, 65535], "will dote spread ore the siluer": [0, 65535], "dote spread ore the siluer waues": [0, 65535], "spread ore the siluer waues thy": [0, 65535], "ore the siluer waues thy golden": [0, 65535], "the siluer waues thy golden haires": [0, 65535], "siluer waues thy golden haires and": [0, 65535], "waues thy golden haires and as": [0, 65535], "thy golden haires and as a": [0, 65535], "golden haires and as a bud": [0, 65535], "haires and as a bud ile": [0, 65535], "and as a bud ile take": [0, 65535], "as a bud ile take thee": [0, 65535], "a bud ile take thee and": [0, 65535], "bud ile take thee and there": [0, 65535], "ile take thee and there lie": [0, 65535], "take thee and there lie and": [0, 65535], "thee and there lie and in": [0, 65535], "and there lie and in that": [0, 65535], "there lie and in that glorious": [0, 65535], "lie and in that glorious supposition": [0, 65535], "and in that glorious supposition thinke": [0, 65535], "in that glorious supposition thinke he": [0, 65535], "that glorious supposition thinke he gaines": [0, 65535], "glorious supposition thinke he gaines by": [0, 65535], "supposition thinke he gaines by death": [0, 65535], "thinke he gaines by death that": [0, 65535], "he gaines by death that hath": [0, 65535], "gaines by death that hath such": [0, 65535], "by death that hath such meanes": [0, 65535], "death that hath such meanes to": [0, 65535], "that hath such meanes to die": [0, 65535], "hath such meanes to die let": [0, 65535], "such meanes to die let loue": [0, 65535], "meanes to die let loue being": [0, 65535], "to die let loue being light": [0, 65535], "die let loue being light be": [0, 65535], "let loue being light be drowned": [0, 65535], "loue being light be drowned if": [0, 65535], "being light be drowned if she": [0, 65535], "light be drowned if she sinke": [0, 65535], "be drowned if she sinke luc": [0, 65535], "drowned if she sinke luc what": [0, 65535], "if she sinke luc what are": [0, 65535], "she sinke luc what are you": [0, 65535], "sinke luc what are you mad": [0, 65535], "luc what are you mad that": [0, 65535], "what are you mad that you": [0, 65535], "are you mad that you doe": [0, 65535], "you mad that you doe reason": [0, 65535], "mad that you doe reason so": [0, 65535], "that you doe reason so ant": [0, 65535], "you doe reason so ant not": [0, 65535], "doe reason so ant not mad": [0, 65535], "reason so ant not mad but": [0, 65535], "so ant not mad but mated": [0, 65535], "ant not mad but mated how": [0, 65535], "not mad but mated how i": [0, 65535], "mad but mated how i doe": [0, 65535], "but mated how i doe not": [0, 65535], "mated how i doe not know": [0, 65535], "how i doe not know luc": [0, 65535], "i doe not know luc it": [0, 65535], "doe not know luc it is": [0, 65535], "not know luc it is a": [0, 65535], "know luc it is a fault": [0, 65535], "luc it is a fault that": [0, 65535], "it is a fault that springeth": [0, 65535], "is a fault that springeth from": [0, 65535], "a fault that springeth from your": [0, 65535], "fault that springeth from your eie": [0, 65535], "that springeth from your eie ant": [0, 65535], "springeth from your eie ant for": [0, 65535], "from your eie ant for gazing": [0, 65535], "your eie ant for gazing on": [0, 65535], "eie ant for gazing on your": [0, 65535], "ant for gazing on your beames": [0, 65535], "for gazing on your beames faire": [0, 65535], "gazing on your beames faire sun": [0, 65535], "on your beames faire sun being": [0, 65535], "your beames faire sun being by": [0, 65535], "beames faire sun being by luc": [0, 65535], "faire sun being by luc gaze": [0, 65535], "sun being by luc gaze when": [0, 65535], "being by luc gaze when you": [0, 65535], "by luc gaze when you should": [0, 65535], "luc gaze when you should and": [0, 65535], "gaze when you should and that": [0, 65535], "when you should and that will": [0, 65535], "you should and that will cleere": [0, 65535], "should and that will cleere your": [0, 65535], "and that will cleere your sight": [0, 65535], "that will cleere your sight ant": [0, 65535], "will cleere your sight ant as": [0, 65535], "cleere your sight ant as good": [0, 65535], "your sight ant as good to": [0, 65535], "sight ant as good to winke": [0, 65535], "ant as good to winke sweet": [0, 65535], "as good to winke sweet loue": [0, 65535], "good to winke sweet loue as": [0, 65535], "to winke sweet loue as looke": [0, 65535], "winke sweet loue as looke on": [0, 65535], "sweet loue as looke on night": [0, 65535], "loue as looke on night luc": [0, 65535], "as looke on night luc why": [0, 65535], "looke on night luc why call": [0, 65535], "on night luc why call you": [0, 65535], "night luc why call you me": [0, 65535], "luc why call you me loue": [0, 65535], "why call you me loue call": [0, 65535], "call you me loue call my": [0, 65535], "you me loue call my sister": [0, 65535], "me loue call my sister so": [0, 65535], "loue call my sister so ant": [0, 65535], "call my sister so ant thy": [0, 65535], "my sister so ant thy sisters": [0, 65535], "sister so ant thy sisters sister": [0, 65535], "so ant thy sisters sister luc": [0, 65535], "ant thy sisters sister luc that's": [0, 65535], "thy sisters sister luc that's my": [0, 65535], "sisters sister luc that's my sister": [0, 65535], "sister luc that's my sister ant": [0, 65535], "luc that's my sister ant no": [0, 65535], "that's my sister ant no it": [0, 65535], "my sister ant no it is": [0, 65535], "sister ant no it is thy": [0, 65535], "ant no it is thy selfe": [0, 65535], "no it is thy selfe mine": [0, 65535], "it is thy selfe mine owne": [0, 65535], "is thy selfe mine owne selfes": [0, 65535], "thy selfe mine owne selfes better": [0, 65535], "selfe mine owne selfes better part": [0, 65535], "mine owne selfes better part mine": [0, 65535], "owne selfes better part mine eies": [0, 65535], "selfes better part mine eies cleere": [0, 65535], "better part mine eies cleere eie": [0, 65535], "part mine eies cleere eie my": [0, 65535], "mine eies cleere eie my deere": [0, 65535], "eies cleere eie my deere hearts": [0, 65535], "cleere eie my deere hearts deerer": [0, 65535], "eie my deere hearts deerer heart": [0, 65535], "my deere hearts deerer heart my": [0, 65535], "deere hearts deerer heart my foode": [0, 65535], "hearts deerer heart my foode my": [0, 65535], "deerer heart my foode my fortune": [0, 65535], "heart my foode my fortune and": [0, 65535], "my foode my fortune and my": [0, 65535], "foode my fortune and my sweet": [0, 65535], "my fortune and my sweet hopes": [0, 65535], "fortune and my sweet hopes aime": [0, 65535], "and my sweet hopes aime my": [0, 65535], "my sweet hopes aime my sole": [0, 65535], "sweet hopes aime my sole earths": [0, 65535], "hopes aime my sole earths heauen": [0, 65535], "aime my sole earths heauen and": [0, 65535], "my sole earths heauen and my": [0, 65535], "sole earths heauen and my heauens": [0, 65535], "earths heauen and my heauens claime": [0, 65535], "heauen and my heauens claime luc": [0, 65535], "and my heauens claime luc all": [0, 65535], "my heauens claime luc all this": [0, 65535], "heauens claime luc all this my": [0, 65535], "claime luc all this my sister": [0, 65535], "luc all this my sister is": [0, 65535], "all this my sister is or": [0, 65535], "this my sister is or else": [0, 65535], "my sister is or else should": [0, 65535], "sister is or else should be": [0, 65535], "is or else should be ant": [0, 65535], "or else should be ant call": [0, 65535], "else should be ant call thy": [0, 65535], "should be ant call thy selfe": [0, 65535], "be ant call thy selfe sister": [0, 65535], "ant call thy selfe sister sweet": [0, 65535], "call thy selfe sister sweet for": [0, 65535], "thy selfe sister sweet for i": [0, 65535], "selfe sister sweet for i am": [0, 65535], "sister sweet for i am thee": [0, 65535], "sweet for i am thee thee": [0, 65535], "for i am thee thee will": [0, 65535], "i am thee thee will i": [0, 65535], "am thee thee will i loue": [0, 65535], "thee thee will i loue and": [0, 65535], "thee will i loue and with": [0, 65535], "will i loue and with thee": [0, 65535], "i loue and with thee lead": [0, 65535], "loue and with thee lead my": [0, 65535], "and with thee lead my life": [0, 65535], "with thee lead my life thou": [0, 65535], "thee lead my life thou hast": [0, 65535], "lead my life thou hast no": [0, 65535], "my life thou hast no husband": [0, 65535], "life thou hast no husband yet": [0, 65535], "thou hast no husband yet nor": [0, 65535], "hast no husband yet nor i": [0, 65535], "no husband yet nor i no": [0, 65535], "husband yet nor i no wife": [0, 65535], "yet nor i no wife giue": [0, 65535], "nor i no wife giue me": [0, 65535], "i no wife giue me thy": [0, 65535], "no wife giue me thy hand": [0, 65535], "wife giue me thy hand luc": [0, 65535], "giue me thy hand luc oh": [0, 65535], "me thy hand luc oh soft": [0, 65535], "thy hand luc oh soft sir": [0, 65535], "hand luc oh soft sir hold": [0, 65535], "luc oh soft sir hold you": [0, 65535], "oh soft sir hold you still": [0, 65535], "soft sir hold you still ile": [0, 65535], "sir hold you still ile fetch": [0, 65535], "hold you still ile fetch my": [0, 65535], "you still ile fetch my sister": [0, 65535], "still ile fetch my sister to": [0, 65535], "ile fetch my sister to get": [0, 65535], "fetch my sister to get her": [0, 65535], "my sister to get her good": [0, 65535], "sister to get her good will": [0, 65535], "to get her good will exit": [0, 65535], "get her good will exit enter": [0, 65535], "her good will exit enter dromio": [0, 65535], "good will exit enter dromio siracusia": [0, 65535], "will exit enter dromio siracusia ant": [0, 65535], "exit enter dromio siracusia ant why": [0, 65535], "enter dromio siracusia ant why how": [0, 65535], "dromio siracusia ant why how now": [0, 65535], "siracusia ant why how now dromio": [0, 65535], "ant why how now dromio where": [0, 65535], "why how now dromio where run'st": [0, 65535], "how now dromio where run'st thou": [0, 65535], "now dromio where run'st thou so": [0, 65535], "dromio where run'st thou so fast": [0, 65535], "where run'st thou so fast s": [0, 65535], "run'st thou so fast s dro": [0, 65535], "thou so fast s dro doe": [0, 65535], "so fast s dro doe you": [0, 65535], "fast s dro doe you know": [0, 65535], "s dro doe you know me": [0, 65535], "dro doe you know me sir": [0, 65535], "doe you know me sir am": [0, 65535], "you know me sir am i": [0, 65535], "know me sir am i dromio": [0, 65535], "me sir am i dromio am": [0, 65535], "sir am i dromio am i": [0, 65535], "am i dromio am i your": [0, 65535], "i dromio am i your man": [0, 65535], "dromio am i your man am": [0, 65535], "am i your man am i": [0, 65535], "i your man am i my": [0, 65535], "your man am i my selfe": [0, 65535], "man am i my selfe ant": [0, 65535], "am i my selfe ant thou": [0, 65535], "i my selfe ant thou art": [0, 65535], "my selfe ant thou art dromio": [0, 65535], "selfe ant thou art dromio thou": [0, 65535], "ant thou art dromio thou art": [0, 65535], "thou art dromio thou art my": [0, 65535], "art dromio thou art my man": [0, 65535], "dromio thou art my man thou": [0, 65535], "thou art my man thou art": [0, 65535], "art my man thou art thy": [0, 65535], "my man thou art thy selfe": [0, 65535], "man thou art thy selfe dro": [0, 65535], "thou art thy selfe dro i": [0, 65535], "art thy selfe dro i am": [0, 65535], "thy selfe dro i am an": [0, 65535], "selfe dro i am an asse": [0, 65535], "dro i am an asse i": [0, 65535], "i am an asse i am": [0, 65535], "am an asse i am a": [0, 65535], "an asse i am a womans": [0, 65535], "asse i am a womans man": [0, 65535], "i am a womans man and": [0, 65535], "am a womans man and besides": [0, 65535], "a womans man and besides my": [0, 65535], "womans man and besides my selfe": [0, 65535], "man and besides my selfe ant": [0, 65535], "and besides my selfe ant what": [0, 65535], "besides my selfe ant what womans": [0, 65535], "my selfe ant what womans man": [0, 65535], "selfe ant what womans man and": [0, 65535], "ant what womans man and how": [0, 65535], "what womans man and how besides": [0, 65535], "womans man and how besides thy": [0, 65535], "man and how besides thy selfe": [0, 65535], "and how besides thy selfe dro": [0, 65535], "how besides thy selfe dro marrie": [0, 65535], "besides thy selfe dro marrie sir": [0, 65535], "thy selfe dro marrie sir besides": [0, 65535], "selfe dro marrie sir besides my": [0, 65535], "dro marrie sir besides my selfe": [0, 65535], "marrie sir besides my selfe i": [0, 65535], "sir besides my selfe i am": [0, 65535], "besides my selfe i am due": [0, 65535], "my selfe i am due to": [0, 65535], "selfe i am due to a": [0, 65535], "i am due to a woman": [0, 65535], "am due to a woman one": [0, 65535], "due to a woman one that": [0, 65535], "to a woman one that claimes": [0, 65535], "a woman one that claimes me": [0, 65535], "woman one that claimes me one": [0, 65535], "one that claimes me one that": [0, 65535], "that claimes me one that haunts": [0, 65535], "claimes me one that haunts me": [0, 65535], "me one that haunts me one": [0, 65535], "one that haunts me one that": [0, 65535], "that haunts me one that will": [0, 65535], "haunts me one that will haue": [0, 65535], "me one that will haue me": [0, 65535], "one that will haue me anti": [0, 65535], "that will haue me anti what": [0, 65535], "will haue me anti what claime": [0, 65535], "haue me anti what claime laies": [0, 65535], "me anti what claime laies she": [0, 65535], "anti what claime laies she to": [0, 65535], "what claime laies she to thee": [0, 65535], "claime laies she to thee dro": [0, 65535], "laies she to thee dro marry": [0, 65535], "she to thee dro marry sir": [0, 65535], "to thee dro marry sir such": [0, 65535], "thee dro marry sir such claime": [0, 65535], "dro marry sir such claime as": [0, 65535], "marry sir such claime as you": [0, 65535], "sir such claime as you would": [0, 65535], "such claime as you would lay": [0, 65535], "claime as you would lay to": [0, 65535], "as you would lay to your": [0, 65535], "you would lay to your horse": [0, 65535], "would lay to your horse and": [0, 65535], "lay to your horse and she": [0, 65535], "to your horse and she would": [0, 65535], "your horse and she would haue": [0, 65535], "horse and she would haue me": [0, 65535], "and she would haue me as": [0, 65535], "she would haue me as a": [0, 65535], "would haue me as a beast": [0, 65535], "haue me as a beast not": [0, 65535], "me as a beast not that": [0, 65535], "as a beast not that i": [0, 65535], "a beast not that i beeing": [0, 65535], "beast not that i beeing a": [0, 65535], "not that i beeing a beast": [0, 65535], "that i beeing a beast she": [0, 65535], "i beeing a beast she would": [0, 65535], "beeing a beast she would haue": [0, 65535], "a beast she would haue me": [0, 65535], "beast she would haue me but": [0, 65535], "she would haue me but that": [0, 65535], "would haue me but that she": [0, 65535], "haue me but that she being": [0, 65535], "me but that she being a": [0, 65535], "but that she being a verie": [0, 65535], "that she being a verie beastly": [0, 65535], "she being a verie beastly creature": [0, 65535], "being a verie beastly creature layes": [0, 65535], "a verie beastly creature layes claime": [0, 65535], "verie beastly creature layes claime to": [0, 65535], "beastly creature layes claime to me": [0, 65535], "creature layes claime to me anti": [0, 65535], "layes claime to me anti what": [0, 65535], "claime to me anti what is": [0, 65535], "to me anti what is she": [0, 65535], "me anti what is she dro": [0, 65535], "anti what is she dro a": [0, 65535], "what is she dro a very": [0, 65535], "is she dro a very reuerent": [0, 65535], "she dro a very reuerent body": [0, 65535], "dro a very reuerent body i": [0, 65535], "a very reuerent body i such": [0, 65535], "very reuerent body i such a": [0, 65535], "reuerent body i such a one": [0, 65535], "body i such a one as": [0, 65535], "i such a one as a": [0, 65535], "such a one as a man": [0, 65535], "a one as a man may": [0, 65535], "one as a man may not": [0, 65535], "as a man may not speake": [0, 65535], "a man may not speake of": [0, 65535], "man may not speake of without": [0, 65535], "may not speake of without he": [0, 65535], "not speake of without he say": [0, 65535], "speake of without he say sir": [0, 65535], "of without he say sir reuerence": [0, 65535], "without he say sir reuerence i": [0, 65535], "he say sir reuerence i haue": [0, 65535], "say sir reuerence i haue but": [0, 65535], "sir reuerence i haue but leane": [0, 65535], "reuerence i haue but leane lucke": [0, 65535], "i haue but leane lucke in": [0, 65535], "haue but leane lucke in the": [0, 65535], "but leane lucke in the match": [0, 65535], "leane lucke in the match and": [0, 65535], "lucke in the match and yet": [0, 65535], "in the match and yet is": [0, 65535], "the match and yet is she": [0, 65535], "match and yet is she a": [0, 65535], "and yet is she a wondrous": [0, 65535], "yet is she a wondrous fat": [0, 65535], "is she a wondrous fat marriage": [0, 65535], "she a wondrous fat marriage anti": [0, 65535], "a wondrous fat marriage anti how": [0, 65535], "wondrous fat marriage anti how dost": [0, 65535], "fat marriage anti how dost thou": [0, 65535], "marriage anti how dost thou meane": [0, 65535], "anti how dost thou meane a": [0, 65535], "how dost thou meane a fat": [0, 65535], "dost thou meane a fat marriage": [0, 65535], "thou meane a fat marriage dro": [0, 65535], "meane a fat marriage dro marry": [0, 65535], "a fat marriage dro marry sir": [0, 65535], "fat marriage dro marry sir she's": [0, 65535], "marriage dro marry sir she's the": [0, 65535], "dro marry sir she's the kitchin": [0, 65535], "marry sir she's the kitchin wench": [0, 65535], "sir she's the kitchin wench al": [0, 65535], "she's the kitchin wench al grease": [0, 65535], "the kitchin wench al grease and": [0, 65535], "kitchin wench al grease and i": [0, 65535], "wench al grease and i know": [0, 65535], "al grease and i know not": [0, 65535], "grease and i know not what": [0, 65535], "and i know not what vse": [0, 65535], "i know not what vse to": [0, 65535], "know not what vse to put": [0, 65535], "not what vse to put her": [0, 65535], "what vse to put her too": [0, 65535], "vse to put her too but": [0, 65535], "to put her too but to": [0, 65535], "put her too but to make": [0, 65535], "her too but to make a": [0, 65535], "too but to make a lampe": [0, 65535], "but to make a lampe of": [0, 65535], "to make a lampe of her": [0, 65535], "make a lampe of her and": [0, 65535], "a lampe of her and run": [0, 65535], "lampe of her and run from": [0, 65535], "of her and run from her": [0, 65535], "her and run from her by": [0, 65535], "and run from her by her": [0, 65535], "run from her by her owne": [0, 65535], "from her by her owne light": [0, 65535], "her by her owne light i": [0, 65535], "by her owne light i warrant": [0, 65535], "her owne light i warrant her": [0, 65535], "owne light i warrant her ragges": [0, 65535], "light i warrant her ragges and": [0, 65535], "i warrant her ragges and the": [0, 65535], "warrant her ragges and the tallow": [0, 65535], "her ragges and the tallow in": [0, 65535], "ragges and the tallow in them": [0, 65535], "and the tallow in them will": [0, 65535], "the tallow in them will burne": [0, 65535], "tallow in them will burne a": [0, 65535], "in them will burne a poland": [0, 65535], "them will burne a poland winter": [0, 65535], "will burne a poland winter if": [0, 65535], "burne a poland winter if she": [0, 65535], "a poland winter if she liues": [0, 65535], "poland winter if she liues till": [0, 65535], "winter if she liues till doomesday": [0, 65535], "if she liues till doomesday she'l": [0, 65535], "she liues till doomesday she'l burne": [0, 65535], "liues till doomesday she'l burne a": [0, 65535], "till doomesday she'l burne a weeke": [0, 65535], "doomesday she'l burne a weeke longer": [0, 65535], "she'l burne a weeke longer then": [0, 65535], "burne a weeke longer then the": [0, 65535], "a weeke longer then the whole": [0, 65535], "weeke longer then the whole world": [0, 65535], "longer then the whole world anti": [0, 65535], "then the whole world anti what": [0, 65535], "the whole world anti what complexion": [0, 65535], "whole world anti what complexion is": [0, 65535], "world anti what complexion is she": [0, 65535], "anti what complexion is she of": [0, 65535], "what complexion is she of dro": [0, 65535], "complexion is she of dro swart": [0, 65535], "is she of dro swart like": [0, 65535], "she of dro swart like my": [0, 65535], "of dro swart like my shoo": [0, 65535], "dro swart like my shoo but": [0, 65535], "swart like my shoo but her": [0, 65535], "like my shoo but her face": [0, 65535], "my shoo but her face nothing": [0, 65535], "shoo but her face nothing like": [0, 65535], "but her face nothing like so": [0, 65535], "her face nothing like so cleane": [0, 65535], "face nothing like so cleane kept": [0, 65535], "nothing like so cleane kept for": [0, 65535], "like so cleane kept for why": [0, 65535], "so cleane kept for why she": [0, 65535], "cleane kept for why she sweats": [0, 65535], "kept for why she sweats a": [0, 65535], "for why she sweats a man": [0, 65535], "why she sweats a man may": [0, 65535], "she sweats a man may goe": [0, 65535], "sweats a man may goe o": [0, 65535], "a man may goe o uer": [0, 65535], "man may goe o uer shooes": [0, 65535], "may goe o uer shooes in": [0, 65535], "goe o uer shooes in the": [0, 65535], "o uer shooes in the grime": [0, 65535], "uer shooes in the grime of": [0, 65535], "shooes in the grime of it": [0, 65535], "in the grime of it anti": [0, 65535], "the grime of it anti that's": [0, 65535], "grime of it anti that's a": [0, 65535], "of it anti that's a fault": [0, 65535], "it anti that's a fault that": [0, 65535], "anti that's a fault that water": [0, 65535], "that's a fault that water will": [0, 65535], "a fault that water will mend": [0, 65535], "fault that water will mend dro": [0, 65535], "that water will mend dro no": [0, 65535], "water will mend dro no sir": [0, 65535], "will mend dro no sir 'tis": [0, 65535], "mend dro no sir 'tis in": [0, 65535], "dro no sir 'tis in graine": [0, 65535], "no sir 'tis in graine noahs": [0, 65535], "sir 'tis in graine noahs flood": [0, 65535], "'tis in graine noahs flood could": [0, 65535], "in graine noahs flood could not": [0, 65535], "graine noahs flood could not do": [0, 65535], "noahs flood could not do it": [0, 65535], "flood could not do it anti": [0, 65535], "could not do it anti what's": [0, 65535], "not do it anti what's her": [0, 65535], "do it anti what's her name": [0, 65535], "it anti what's her name dro": [0, 65535], "anti what's her name dro nell": [0, 65535], "what's her name dro nell sir": [0, 65535], "her name dro nell sir but": [0, 65535], "name dro nell sir but her": [0, 65535], "dro nell sir but her name": [0, 65535], "nell sir but her name is": [0, 65535], "sir but her name is three": [0, 65535], "but her name is three quarters": [0, 65535], "her name is three quarters that's": [0, 65535], "name is three quarters that's an": [0, 65535], "is three quarters that's an ell": [0, 65535], "three quarters that's an ell and": [0, 65535], "quarters that's an ell and three": [0, 65535], "that's an ell and three quarters": [0, 65535], "an ell and three quarters will": [0, 65535], "ell and three quarters will not": [0, 65535], "and three quarters will not measure": [0, 65535], "three quarters will not measure her": [0, 65535], "quarters will not measure her from": [0, 65535], "will not measure her from hip": [0, 65535], "not measure her from hip to": [0, 65535], "measure her from hip to hip": [0, 65535], "her from hip to hip anti": [0, 65535], "from hip to hip anti then": [0, 65535], "hip to hip anti then she": [0, 65535], "to hip anti then she beares": [0, 65535], "hip anti then she beares some": [0, 65535], "anti then she beares some bredth": [0, 65535], "then she beares some bredth dro": [0, 65535], "she beares some bredth dro no": [0, 65535], "beares some bredth dro no longer": [0, 65535], "some bredth dro no longer from": [0, 65535], "bredth dro no longer from head": [0, 65535], "dro no longer from head to": [0, 65535], "no longer from head to foot": [0, 65535], "longer from head to foot then": [0, 65535], "from head to foot then from": [0, 65535], "head to foot then from hippe": [0, 65535], "to foot then from hippe to": [0, 65535], "foot then from hippe to hippe": [0, 65535], "then from hippe to hippe she": [0, 65535], "from hippe to hippe she is": [0, 65535], "hippe to hippe she is sphericall": [0, 65535], "to hippe she is sphericall like": [0, 65535], "hippe she is sphericall like a": [0, 65535], "she is sphericall like a globe": [0, 65535], "is sphericall like a globe i": [0, 65535], "sphericall like a globe i could": [0, 65535], "like a globe i could find": [0, 65535], "a globe i could find out": [0, 65535], "globe i could find out countries": [0, 65535], "i could find out countries in": [0, 65535], "could find out countries in her": [0, 65535], "find out countries in her anti": [0, 65535], "out countries in her anti in": [0, 65535], "countries in her anti in what": [0, 65535], "in her anti in what part": [0, 65535], "her anti in what part of": [0, 65535], "anti in what part of her": [0, 65535], "in what part of her body": [0, 65535], "what part of her body stands": [0, 65535], "part of her body stands ireland": [0, 65535], "of her body stands ireland dro": [0, 65535], "her body stands ireland dro marry": [0, 65535], "body stands ireland dro marry sir": [0, 65535], "stands ireland dro marry sir in": [0, 65535], "ireland dro marry sir in her": [0, 65535], "dro marry sir in her buttockes": [0, 65535], "marry sir in her buttockes i": [0, 65535], "sir in her buttockes i found": [0, 65535], "in her buttockes i found it": [0, 65535], "her buttockes i found it out": [0, 65535], "buttockes i found it out by": [0, 65535], "i found it out by the": [0, 65535], "found it out by the bogges": [0, 65535], "it out by the bogges ant": [0, 65535], "out by the bogges ant where": [0, 65535], "by the bogges ant where scotland": [0, 65535], "the bogges ant where scotland dro": [0, 65535], "bogges ant where scotland dro i": [0, 65535], "ant where scotland dro i found": [0, 65535], "where scotland dro i found it": [0, 65535], "scotland dro i found it by": [0, 65535], "dro i found it by the": [0, 65535], "i found it by the barrennesse": [0, 65535], "found it by the barrennesse hard": [0, 65535], "it by the barrennesse hard in": [0, 65535], "by the barrennesse hard in the": [0, 65535], "the barrennesse hard in the palme": [0, 65535], "barrennesse hard in the palme of": [0, 65535], "hard in the palme of the": [0, 65535], "in the palme of the hand": [0, 65535], "the palme of the hand ant": [0, 65535], "palme of the hand ant where": [0, 65535], "of the hand ant where france": [0, 65535], "the hand ant where france dro": [0, 65535], "hand ant where france dro in": [0, 65535], "ant where france dro in her": [0, 65535], "where france dro in her forhead": [0, 65535], "france dro in her forhead arm'd": [0, 65535], "dro in her forhead arm'd and": [0, 65535], "in her forhead arm'd and reuerted": [0, 65535], "her forhead arm'd and reuerted making": [0, 65535], "forhead arm'd and reuerted making warre": [0, 65535], "arm'd and reuerted making warre against": [0, 65535], "and reuerted making warre against her": [0, 65535], "reuerted making warre against her heire": [0, 65535], "making warre against her heire ant": [0, 65535], "warre against her heire ant where": [0, 65535], "against her heire ant where england": [0, 65535], "her heire ant where england dro": [0, 65535], "heire ant where england dro i": [0, 65535], "ant where england dro i look'd": [0, 65535], "where england dro i look'd for": [0, 65535], "england dro i look'd for the": [0, 65535], "dro i look'd for the chalkle": [0, 65535], "i look'd for the chalkle cliffes": [0, 65535], "look'd for the chalkle cliffes but": [0, 65535], "for the chalkle cliffes but i": [0, 65535], "the chalkle cliffes but i could": [0, 65535], "chalkle cliffes but i could find": [0, 65535], "cliffes but i could find no": [0, 65535], "but i could find no whitenesse": [0, 65535], "i could find no whitenesse in": [0, 65535], "could find no whitenesse in them": [0, 65535], "find no whitenesse in them but": [0, 65535], "no whitenesse in them but i": [0, 65535], "whitenesse in them but i guesse": [0, 65535], "in them but i guesse it": [0, 65535], "them but i guesse it stood": [0, 65535], "but i guesse it stood in": [0, 65535], "i guesse it stood in her": [0, 65535], "guesse it stood in her chin": [0, 65535], "it stood in her chin by": [0, 65535], "stood in her chin by the": [0, 65535], "in her chin by the salt": [0, 65535], "her chin by the salt rheume": [0, 65535], "chin by the salt rheume that": [0, 65535], "by the salt rheume that ranne": [0, 65535], "the salt rheume that ranne betweene": [0, 65535], "salt rheume that ranne betweene france": [0, 65535], "rheume that ranne betweene france and": [0, 65535], "that ranne betweene france and it": [0, 65535], "ranne betweene france and it ant": [0, 65535], "betweene france and it ant where": [0, 65535], "france and it ant where spaine": [0, 65535], "and it ant where spaine dro": [0, 65535], "it ant where spaine dro faith": [0, 65535], "ant where spaine dro faith i": [0, 65535], "where spaine dro faith i saw": [0, 65535], "spaine dro faith i saw it": [0, 65535], "dro faith i saw it not": [0, 65535], "faith i saw it not but": [0, 65535], "i saw it not but i": [0, 65535], "saw it not but i felt": [0, 65535], "it not but i felt it": [0, 65535], "not but i felt it hot": [0, 65535], "but i felt it hot in": [0, 65535], "i felt it hot in her": [0, 65535], "felt it hot in her breth": [0, 65535], "it hot in her breth ant": [0, 65535], "hot in her breth ant where": [0, 65535], "in her breth ant where america": [0, 65535], "her breth ant where america the": [0, 65535], "breth ant where america the indies": [0, 65535], "ant where america the indies dro": [0, 65535], "where america the indies dro oh": [0, 65535], "america the indies dro oh sir": [0, 65535], "the indies dro oh sir vpon": [0, 65535], "indies dro oh sir vpon her": [0, 65535], "dro oh sir vpon her nose": [0, 65535], "oh sir vpon her nose all": [0, 65535], "sir vpon her nose all ore": [0, 65535], "vpon her nose all ore embellished": [0, 65535], "her nose all ore embellished with": [0, 65535], "nose all ore embellished with rubies": [0, 65535], "all ore embellished with rubies carbuncles": [0, 65535], "ore embellished with rubies carbuncles saphires": [0, 65535], "embellished with rubies carbuncles saphires declining": [0, 65535], "with rubies carbuncles saphires declining their": [0, 65535], "rubies carbuncles saphires declining their rich": [0, 65535], "carbuncles saphires declining their rich aspect": [0, 65535], "saphires declining their rich aspect to": [0, 65535], "declining their rich aspect to the": [0, 65535], "their rich aspect to the hot": [0, 65535], "rich aspect to the hot breath": [0, 65535], "aspect to the hot breath of": [0, 65535], "to the hot breath of spaine": [0, 65535], "the hot breath of spaine who": [0, 65535], "hot breath of spaine who sent": [0, 65535], "breath of spaine who sent whole": [0, 65535], "of spaine who sent whole armadoes": [0, 65535], "spaine who sent whole armadoes of": [0, 65535], "who sent whole armadoes of carrects": [0, 65535], "sent whole armadoes of carrects to": [0, 65535], "whole armadoes of carrects to be": [0, 65535], "armadoes of carrects to be ballast": [0, 65535], "of carrects to be ballast at": [0, 65535], "carrects to be ballast at her": [0, 65535], "to be ballast at her nose": [0, 65535], "be ballast at her nose anti": [0, 65535], "ballast at her nose anti where": [0, 65535], "at her nose anti where stood": [0, 65535], "her nose anti where stood belgia": [0, 65535], "nose anti where stood belgia the": [0, 65535], "anti where stood belgia the netherlands": [0, 65535], "where stood belgia the netherlands dro": [0, 65535], "stood belgia the netherlands dro oh": [0, 65535], "belgia the netherlands dro oh sir": [0, 65535], "the netherlands dro oh sir i": [0, 65535], "netherlands dro oh sir i did": [0, 65535], "dro oh sir i did not": [0, 65535], "oh sir i did not looke": [0, 65535], "sir i did not looke so": [0, 65535], "i did not looke so low": [0, 65535], "did not looke so low to": [0, 65535], "not looke so low to conclude": [0, 65535], "looke so low to conclude this": [0, 65535], "so low to conclude this drudge": [0, 65535], "low to conclude this drudge or": [0, 65535], "to conclude this drudge or diuiner": [0, 65535], "conclude this drudge or diuiner layd": [0, 65535], "this drudge or diuiner layd claime": [0, 65535], "drudge or diuiner layd claime to": [0, 65535], "or diuiner layd claime to mee": [0, 65535], "diuiner layd claime to mee call'd": [0, 65535], "layd claime to mee call'd mee": [0, 65535], "claime to mee call'd mee dromio": [0, 65535], "to mee call'd mee dromio swore": [0, 65535], "mee call'd mee dromio swore i": [0, 65535], "call'd mee dromio swore i was": [0, 65535], "mee dromio swore i was assur'd": [0, 65535], "dromio swore i was assur'd to": [0, 65535], "swore i was assur'd to her": [0, 65535], "i was assur'd to her told": [0, 65535], "was assur'd to her told me": [0, 65535], "assur'd to her told me what": [0, 65535], "to her told me what priuie": [0, 65535], "her told me what priuie markes": [0, 65535], "told me what priuie markes i": [0, 65535], "me what priuie markes i had": [0, 65535], "what priuie markes i had about": [0, 65535], "priuie markes i had about mee": [0, 65535], "markes i had about mee as": [0, 65535], "i had about mee as the": [0, 65535], "had about mee as the marke": [0, 65535], "about mee as the marke of": [0, 65535], "mee as the marke of my": [0, 65535], "as the marke of my shoulder": [0, 65535], "the marke of my shoulder the": [0, 65535], "marke of my shoulder the mole": [0, 65535], "of my shoulder the mole in": [0, 65535], "my shoulder the mole in my": [0, 65535], "shoulder the mole in my necke": [0, 65535], "the mole in my necke the": [0, 65535], "mole in my necke the great": [0, 65535], "in my necke the great wart": [0, 65535], "my necke the great wart on": [0, 65535], "necke the great wart on my": [0, 65535], "the great wart on my left": [0, 65535], "great wart on my left arme": [0, 65535], "wart on my left arme that": [0, 65535], "on my left arme that i": [0, 65535], "my left arme that i amaz'd": [0, 65535], "left arme that i amaz'd ranne": [0, 65535], "arme that i amaz'd ranne from": [0, 65535], "that i amaz'd ranne from her": [0, 65535], "i amaz'd ranne from her as": [0, 65535], "amaz'd ranne from her as a": [0, 65535], "ranne from her as a witch": [0, 65535], "from her as a witch and": [0, 65535], "her as a witch and i": [0, 65535], "as a witch and i thinke": [0, 65535], "a witch and i thinke if": [0, 65535], "witch and i thinke if my": [0, 65535], "and i thinke if my brest": [0, 65535], "i thinke if my brest had": [0, 65535], "thinke if my brest had not": [0, 65535], "if my brest had not beene": [0, 65535], "my brest had not beene made": [0, 65535], "brest had not beene made of": [0, 65535], "had not beene made of faith": [0, 65535], "not beene made of faith and": [0, 65535], "beene made of faith and my": [0, 65535], "made of faith and my heart": [0, 65535], "of faith and my heart of": [0, 65535], "faith and my heart of steele": [0, 65535], "and my heart of steele she": [0, 65535], "my heart of steele she had": [0, 65535], "heart of steele she had transform'd": [0, 65535], "of steele she had transform'd me": [0, 65535], "steele she had transform'd me to": [0, 65535], "she had transform'd me to a": [0, 65535], "had transform'd me to a curtull": [0, 65535], "transform'd me to a curtull dog": [0, 65535], "me to a curtull dog made": [0, 65535], "to a curtull dog made me": [0, 65535], "a curtull dog made me turne": [0, 65535], "curtull dog made me turne i'th": [0, 65535], "dog made me turne i'th wheele": [0, 65535], "made me turne i'th wheele anti": [0, 65535], "me turne i'th wheele anti go": [0, 65535], "turne i'th wheele anti go hie": [0, 65535], "i'th wheele anti go hie thee": [0, 65535], "wheele anti go hie thee presently": [0, 65535], "anti go hie thee presently post": [0, 65535], "go hie thee presently post to": [0, 65535], "hie thee presently post to the": [0, 65535], "thee presently post to the rode": [0, 65535], "presently post to the rode and": [0, 65535], "post to the rode and if": [0, 65535], "to the rode and if the": [0, 65535], "the rode and if the winde": [0, 65535], "rode and if the winde blow": [0, 65535], "and if the winde blow any": [0, 65535], "if the winde blow any way": [0, 65535], "the winde blow any way from": [0, 65535], "winde blow any way from shore": [0, 65535], "blow any way from shore i": [0, 65535], "any way from shore i will": [0, 65535], "way from shore i will not": [0, 65535], "from shore i will not harbour": [0, 65535], "shore i will not harbour in": [0, 65535], "i will not harbour in this": [0, 65535], "will not harbour in this towne": [0, 65535], "not harbour in this towne to": [0, 65535], "harbour in this towne to night": [0, 65535], "in this towne to night if": [0, 65535], "this towne to night if any": [0, 65535], "towne to night if any barke": [0, 65535], "to night if any barke put": [0, 65535], "night if any barke put forth": [0, 65535], "if any barke put forth come": [0, 65535], "any barke put forth come to": [0, 65535], "barke put forth come to the": [0, 65535], "put forth come to the mart": [0, 65535], "forth come to the mart where": [0, 65535], "come to the mart where i": [0, 65535], "to the mart where i will": [0, 65535], "the mart where i will walke": [0, 65535], "mart where i will walke till": [0, 65535], "where i will walke till thou": [0, 65535], "i will walke till thou returne": [0, 65535], "will walke till thou returne to": [0, 65535], "walke till thou returne to me": [0, 65535], "till thou returne to me if": [0, 65535], "thou returne to me if euerie": [0, 65535], "returne to me if euerie one": [0, 65535], "to me if euerie one knowes": [0, 65535], "me if euerie one knowes vs": [0, 65535], "if euerie one knowes vs and": [0, 65535], "euerie one knowes vs and we": [0, 65535], "one knowes vs and we know": [0, 65535], "knowes vs and we know none": [0, 65535], "vs and we know none 'tis": [0, 65535], "and we know none 'tis time": [0, 65535], "we know none 'tis time i": [0, 65535], "know none 'tis time i thinke": [0, 65535], "none 'tis time i thinke to": [0, 65535], "'tis time i thinke to trudge": [0, 65535], "time i thinke to trudge packe": [0, 65535], "i thinke to trudge packe and": [0, 65535], "thinke to trudge packe and be": [0, 65535], "to trudge packe and be gone": [0, 65535], "trudge packe and be gone dro": [0, 65535], "packe and be gone dro as": [0, 65535], "and be gone dro as from": [0, 65535], "be gone dro as from a": [0, 65535], "gone dro as from a beare": [0, 65535], "dro as from a beare a": [0, 65535], "as from a beare a man": [0, 65535], "from a beare a man would": [0, 65535], "a beare a man would run": [0, 65535], "beare a man would run for": [0, 65535], "a man would run for life": [0, 65535], "man would run for life so": [0, 65535], "would run for life so flie": [0, 65535], "run for life so flie i": [0, 65535], "for life so flie i from": [0, 65535], "life so flie i from her": [0, 65535], "so flie i from her that": [0, 65535], "flie i from her that would": [0, 65535], "i from her that would be": [0, 65535], "from her that would be my": [0, 65535], "her that would be my wife": [0, 65535], "that would be my wife exit": [0, 65535], "would be my wife exit anti": [0, 65535], "be my wife exit anti there's": [0, 65535], "my wife exit anti there's none": [0, 65535], "wife exit anti there's none but": [0, 65535], "exit anti there's none but witches": [0, 65535], "anti there's none but witches do": [0, 65535], "there's none but witches do inhabite": [0, 65535], "none but witches do inhabite heere": [0, 65535], "but witches do inhabite heere and": [0, 65535], "witches do inhabite heere and therefore": [0, 65535], "do inhabite heere and therefore 'tis": [0, 65535], "inhabite heere and therefore 'tis hie": [0, 65535], "heere and therefore 'tis hie time": [0, 65535], "and therefore 'tis hie time that": [0, 65535], "therefore 'tis hie time that i": [0, 65535], "'tis hie time that i were": [0, 65535], "hie time that i were hence": [0, 65535], "time that i were hence she": [0, 65535], "that i were hence she that": [0, 65535], "i were hence she that doth": [0, 65535], "were hence she that doth call": [0, 65535], "hence she that doth call me": [0, 65535], "she that doth call me husband": [0, 65535], "that doth call me husband euen": [0, 65535], "doth call me husband euen my": [0, 65535], "call me husband euen my soule": [0, 65535], "me husband euen my soule doth": [0, 65535], "husband euen my soule doth for": [0, 65535], "euen my soule doth for a": [0, 65535], "my soule doth for a wife": [0, 65535], "soule doth for a wife abhorre": [0, 65535], "doth for a wife abhorre but": [0, 65535], "for a wife abhorre but her": [0, 65535], "a wife abhorre but her faire": [0, 65535], "wife abhorre but her faire sister": [0, 65535], "abhorre but her faire sister possest": [0, 65535], "but her faire sister possest with": [0, 65535], "her faire sister possest with such": [0, 65535], "faire sister possest with such a": [0, 65535], "sister possest with such a gentle": [0, 65535], "possest with such a gentle soueraigne": [0, 65535], "with such a gentle soueraigne grace": [0, 65535], "such a gentle soueraigne grace of": [0, 65535], "a gentle soueraigne grace of such": [0, 65535], "gentle soueraigne grace of such inchanting": [0, 65535], "soueraigne grace of such inchanting presence": [0, 65535], "grace of such inchanting presence and": [0, 65535], "of such inchanting presence and discourse": [0, 65535], "such inchanting presence and discourse hath": [0, 65535], "inchanting presence and discourse hath almost": [0, 65535], "presence and discourse hath almost made": [0, 65535], "and discourse hath almost made me": [0, 65535], "discourse hath almost made me traitor": [0, 65535], "hath almost made me traitor to": [0, 65535], "almost made me traitor to my": [0, 65535], "made me traitor to my selfe": [0, 65535], "me traitor to my selfe but": [0, 65535], "traitor to my selfe but least": [0, 65535], "to my selfe but least my": [0, 65535], "my selfe but least my selfe": [0, 65535], "selfe but least my selfe be": [0, 65535], "but least my selfe be guilty": [0, 65535], "least my selfe be guilty to": [0, 65535], "my selfe be guilty to selfe": [0, 65535], "selfe be guilty to selfe wrong": [0, 65535], "be guilty to selfe wrong ile": [0, 65535], "guilty to selfe wrong ile stop": [0, 65535], "to selfe wrong ile stop mine": [0, 65535], "selfe wrong ile stop mine eares": [0, 65535], "wrong ile stop mine eares against": [0, 65535], "ile stop mine eares against the": [0, 65535], "stop mine eares against the mermaids": [0, 65535], "mine eares against the mermaids song": [0, 65535], "eares against the mermaids song enter": [0, 65535], "against the mermaids song enter angelo": [0, 65535], "the mermaids song enter angelo with": [0, 65535], "mermaids song enter angelo with the": [0, 65535], "song enter angelo with the chaine": [0, 65535], "enter angelo with the chaine ang": [0, 65535], "angelo with the chaine ang mr": [0, 65535], "with the chaine ang mr antipholus": [0, 65535], "the chaine ang mr antipholus anti": [0, 65535], "chaine ang mr antipholus anti i": [0, 65535], "ang mr antipholus anti i that's": [0, 65535], "mr antipholus anti i that's my": [0, 65535], "antipholus anti i that's my name": [0, 65535], "anti i that's my name ang": [0, 65535], "i that's my name ang i": [0, 65535], "that's my name ang i know": [0, 65535], "my name ang i know it": [0, 65535], "name ang i know it well": [0, 65535], "ang i know it well sir": [0, 65535], "i know it well sir loe": [0, 65535], "know it well sir loe here's": [0, 65535], "it well sir loe here's the": [0, 65535], "well sir loe here's the chaine": [0, 65535], "sir loe here's the chaine i": [0, 65535], "loe here's the chaine i thought": [0, 65535], "here's the chaine i thought to": [0, 65535], "the chaine i thought to haue": [0, 65535], "chaine i thought to haue tane": [0, 65535], "i thought to haue tane you": [0, 65535], "thought to haue tane you at": [0, 65535], "to haue tane you at the": [0, 65535], "haue tane you at the porpentine": [0, 65535], "tane you at the porpentine the": [0, 65535], "you at the porpentine the chaine": [0, 65535], "at the porpentine the chaine vnfinish'd": [0, 65535], "the porpentine the chaine vnfinish'd made": [0, 65535], "porpentine the chaine vnfinish'd made me": [0, 65535], "the chaine vnfinish'd made me stay": [0, 65535], "chaine vnfinish'd made me stay thus": [0, 65535], "vnfinish'd made me stay thus long": [0, 65535], "made me stay thus long anti": [0, 65535], "me stay thus long anti what": [0, 65535], "stay thus long anti what is": [0, 65535], "thus long anti what is your": [0, 65535], "long anti what is your will": [0, 65535], "anti what is your will that": [0, 65535], "what is your will that i": [0, 65535], "is your will that i shal": [0, 65535], "your will that i shal do": [0, 65535], "will that i shal do with": [0, 65535], "that i shal do with this": [0, 65535], "i shal do with this ang": [0, 65535], "shal do with this ang what": [0, 65535], "do with this ang what please": [0, 65535], "with this ang what please your": [0, 65535], "this ang what please your selfe": [0, 65535], "ang what please your selfe sir": [0, 65535], "what please your selfe sir i": [0, 65535], "please your selfe sir i haue": [0, 65535], "your selfe sir i haue made": [0, 65535], "selfe sir i haue made it": [0, 65535], "sir i haue made it for": [0, 65535], "i haue made it for you": [0, 65535], "haue made it for you anti": [0, 65535], "made it for you anti made": [0, 65535], "it for you anti made it": [0, 65535], "for you anti made it for": [0, 65535], "you anti made it for me": [0, 65535], "anti made it for me sir": [0, 65535], "made it for me sir i": [0, 65535], "it for me sir i bespoke": [0, 65535], "for me sir i bespoke it": [0, 65535], "me sir i bespoke it not": [0, 65535], "sir i bespoke it not ang": [0, 65535], "i bespoke it not ang not": [0, 65535], "bespoke it not ang not once": [0, 65535], "it not ang not once nor": [0, 65535], "not ang not once nor twice": [0, 65535], "ang not once nor twice but": [0, 65535], "not once nor twice but twentie": [0, 65535], "once nor twice but twentie times": [0, 65535], "nor twice but twentie times you": [0, 65535], "twice but twentie times you haue": [0, 65535], "but twentie times you haue go": [0, 65535], "twentie times you haue go home": [0, 65535], "times you haue go home with": [0, 65535], "you haue go home with it": [0, 65535], "haue go home with it and": [0, 65535], "go home with it and please": [0, 65535], "home with it and please your": [0, 65535], "with it and please your wife": [0, 65535], "it and please your wife withall": [0, 65535], "and please your wife withall and": [0, 65535], "please your wife withall and soone": [0, 65535], "your wife withall and soone at": [0, 65535], "wife withall and soone at supper": [0, 65535], "withall and soone at supper time": [0, 65535], "and soone at supper time ile": [0, 65535], "soone at supper time ile visit": [0, 65535], "at supper time ile visit you": [0, 65535], "supper time ile visit you and": [0, 65535], "time ile visit you and then": [0, 65535], "ile visit you and then receiue": [0, 65535], "visit you and then receiue my": [0, 65535], "you and then receiue my money": [0, 65535], "and then receiue my money for": [0, 65535], "then receiue my money for the": [0, 65535], "receiue my money for the chaine": [0, 65535], "my money for the chaine anti": [0, 65535], "money for the chaine anti i": [0, 65535], "for the chaine anti i pray": [0, 65535], "the chaine anti i pray you": [0, 65535], "chaine anti i pray you sir": [0, 65535], "anti i pray you sir receiue": [0, 65535], "i pray you sir receiue the": [0, 65535], "pray you sir receiue the money": [0, 65535], "you sir receiue the money now": [0, 65535], "sir receiue the money now for": [0, 65535], "receiue the money now for feare": [0, 65535], "the money now for feare you": [0, 65535], "money now for feare you ne're": [0, 65535], "now for feare you ne're see": [0, 65535], "for feare you ne're see chaine": [0, 65535], "feare you ne're see chaine nor": [0, 65535], "you ne're see chaine nor mony": [0, 65535], "ne're see chaine nor mony more": [0, 65535], "see chaine nor mony more ang": [0, 65535], "chaine nor mony more ang you": [0, 65535], "nor mony more ang you are": [0, 65535], "mony more ang you are a": [0, 65535], "more ang you are a merry": [0, 65535], "ang you are a merry man": [0, 65535], "you are a merry man sir": [0, 65535], "are a merry man sir fare": [0, 65535], "a merry man sir fare you": [0, 65535], "merry man sir fare you well": [0, 65535], "man sir fare you well exit": [0, 65535], "sir fare you well exit ant": [0, 65535], "fare you well exit ant what": [0, 65535], "you well exit ant what i": [0, 65535], "well exit ant what i should": [0, 65535], "exit ant what i should thinke": [0, 65535], "ant what i should thinke of": [0, 65535], "what i should thinke of this": [0, 65535], "i should thinke of this i": [0, 65535], "should thinke of this i cannot": [0, 65535], "thinke of this i cannot tell": [0, 65535], "of this i cannot tell but": [0, 65535], "this i cannot tell but this": [0, 65535], "i cannot tell but this i": [0, 65535], "cannot tell but this i thinke": [0, 65535], "tell but this i thinke there's": [0, 65535], "but this i thinke there's no": [0, 65535], "this i thinke there's no man": [0, 65535], "i thinke there's no man is": [0, 65535], "thinke there's no man is so": [0, 65535], "there's no man is so vaine": [0, 65535], "no man is so vaine that": [0, 65535], "man is so vaine that would": [0, 65535], "is so vaine that would refuse": [0, 65535], "so vaine that would refuse so": [0, 65535], "vaine that would refuse so faire": [0, 65535], "that would refuse so faire an": [0, 65535], "would refuse so faire an offer'd": [0, 65535], "refuse so faire an offer'd chaine": [0, 65535], "so faire an offer'd chaine i": [0, 65535], "faire an offer'd chaine i see": [0, 65535], "an offer'd chaine i see a": [0, 65535], "offer'd chaine i see a man": [0, 65535], "chaine i see a man heere": [0, 65535], "i see a man heere needs": [0, 65535], "see a man heere needs not": [0, 65535], "a man heere needs not liue": [0, 65535], "man heere needs not liue by": [0, 65535], "heere needs not liue by shifts": [0, 65535], "needs not liue by shifts when": [0, 65535], "not liue by shifts when in": [0, 65535], "liue by shifts when in the": [0, 65535], "by shifts when in the streets": [0, 65535], "shifts when in the streets he": [0, 65535], "when in the streets he meetes": [0, 65535], "in the streets he meetes such": [0, 65535], "the streets he meetes such golden": [0, 65535], "streets he meetes such golden gifts": [0, 65535], "he meetes such golden gifts ile": [0, 65535], "meetes such golden gifts ile to": [0, 65535], "such golden gifts ile to the": [0, 65535], "golden gifts ile to the mart": [0, 65535], "gifts ile to the mart and": [0, 65535], "ile to the mart and there": [0, 65535], "to the mart and there for": [0, 65535], "the mart and there for dromio": [0, 65535], "mart and there for dromio stay": [0, 65535], "and there for dromio stay if": [0, 65535], "there for dromio stay if any": [0, 65535], "for dromio stay if any ship": [0, 65535], "dromio stay if any ship put": [0, 65535], "stay if any ship put out": [0, 65535], "if any ship put out then": [0, 65535], "any ship put out then straight": [0, 65535], "ship put out then straight away": [0, 65535], "put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of": [0, 65535], "tertius scena prima enter antipholus of ephesus": [0, 65535], "scena prima enter antipholus of ephesus his": [0, 65535], "prima enter antipholus of ephesus his man": [0, 65535], "enter antipholus of ephesus his man dromio": [0, 65535], "antipholus of ephesus his man dromio angelo": [0, 65535], "of ephesus his man dromio angelo the": [0, 65535], "ephesus his man dromio angelo the goldsmith": [0, 65535], "his man dromio angelo the goldsmith and": [0, 65535], "man dromio angelo the goldsmith and balthaser": [0, 65535], "dromio angelo the goldsmith and balthaser the": [0, 65535], "angelo the goldsmith and balthaser the merchant": [0, 65535], "the goldsmith and balthaser the merchant e": [0, 65535], "goldsmith and balthaser the merchant e anti": [0, 65535], "and balthaser the merchant e anti good": [0, 65535], "balthaser the merchant e anti good signior": [0, 65535], "the merchant e anti good signior angelo": [0, 65535], "merchant e anti good signior angelo you": [0, 65535], "e anti good signior angelo you must": [0, 65535], "anti good signior angelo you must excuse": [0, 65535], "good signior angelo you must excuse vs": [0, 65535], "signior angelo you must excuse vs all": [0, 65535], "angelo you must excuse vs all my": [0, 65535], "you must excuse vs all my wife": [0, 65535], "must excuse vs all my wife is": [0, 65535], "excuse vs all my wife is shrewish": [0, 65535], "vs all my wife is shrewish when": [0, 65535], "all my wife is shrewish when i": [0, 65535], "my wife is shrewish when i keepe": [0, 65535], "wife is shrewish when i keepe not": [0, 65535], "is shrewish when i keepe not howres": [0, 65535], "shrewish when i keepe not howres say": [0, 65535], "when i keepe not howres say that": [0, 65535], "i keepe not howres say that i": [0, 65535], "keepe not howres say that i lingerd": [0, 65535], "not howres say that i lingerd with": [0, 65535], "howres say that i lingerd with you": [0, 65535], "say that i lingerd with you at": [0, 65535], "that i lingerd with you at your": [0, 65535], "i lingerd with you at your shop": [0, 65535], "lingerd with you at your shop to": [0, 65535], "with you at your shop to see": [0, 65535], "you at your shop to see the": [0, 65535], "at your shop to see the making": [0, 65535], "your shop to see the making of": [0, 65535], "shop to see the making of her": [0, 65535], "to see the making of her carkanet": [0, 65535], "see the making of her carkanet and": [0, 65535], "the making of her carkanet and that": [0, 65535], "making of her carkanet and that to": [0, 65535], "of her carkanet and that to morrow": [0, 65535], "her carkanet and that to morrow you": [0, 65535], "carkanet and that to morrow you will": [0, 65535], "and that to morrow you will bring": [0, 65535], "that to morrow you will bring it": [0, 65535], "to morrow you will bring it home": [0, 65535], "morrow you will bring it home but": [0, 65535], "you will bring it home but here's": [0, 65535], "will bring it home but here's a": [0, 65535], "bring it home but here's a villaine": [0, 65535], "it home but here's a villaine that": [0, 65535], "home but here's a villaine that would": [0, 65535], "but here's a villaine that would face": [0, 65535], "here's a villaine that would face me": [0, 65535], "a villaine that would face me downe": [0, 65535], "villaine that would face me downe he": [0, 65535], "that would face me downe he met": [0, 65535], "would face me downe he met me": [0, 65535], "face me downe he met me on": [0, 65535], "me downe he met me on the": [0, 65535], "downe he met me on the mart": [0, 65535], "he met me on the mart and": [0, 65535], "met me on the mart and that": [0, 65535], "me on the mart and that i": [0, 65535], "on the mart and that i beat": [0, 65535], "the mart and that i beat him": [0, 65535], "mart and that i beat him and": [0, 65535], "and that i beat him and charg'd": [0, 65535], "that i beat him and charg'd him": [0, 65535], "i beat him and charg'd him with": [0, 65535], "beat him and charg'd him with a": [0, 65535], "him and charg'd him with a thousand": [0, 65535], "and charg'd him with a thousand markes": [0, 65535], "charg'd him with a thousand markes in": [0, 65535], "him with a thousand markes in gold": [0, 65535], "with a thousand markes in gold and": [0, 65535], "a thousand markes in gold and that": [0, 65535], "thousand markes in gold and that i": [0, 65535], "markes in gold and that i did": [0, 65535], "in gold and that i did denie": [0, 65535], "gold and that i did denie my": [0, 65535], "and that i did denie my wife": [0, 65535], "that i did denie my wife and": [0, 65535], "i did denie my wife and house": [0, 65535], "did denie my wife and house thou": [0, 65535], "denie my wife and house thou drunkard": [0, 65535], "my wife and house thou drunkard thou": [0, 65535], "wife and house thou drunkard thou what": [0, 65535], "and house thou drunkard thou what didst": [0, 65535], "house thou drunkard thou what didst thou": [0, 65535], "thou drunkard thou what didst thou meane": [0, 65535], "drunkard thou what didst thou meane by": [0, 65535], "thou what didst thou meane by this": [0, 65535], "what didst thou meane by this e": [0, 65535], "didst thou meane by this e dro": [0, 65535], "thou meane by this e dro say": [0, 65535], "meane by this e dro say what": [0, 65535], "by this e dro say what you": [0, 65535], "this e dro say what you wil": [0, 65535], "e dro say what you wil sir": [0, 65535], "dro say what you wil sir but": [0, 65535], "say what you wil sir but i": [0, 65535], "what you wil sir but i know": [0, 65535], "you wil sir but i know what": [0, 65535], "wil sir but i know what i": [0, 65535], "sir but i know what i know": [0, 65535], "but i know what i know that": [0, 65535], "i know what i know that you": [0, 65535], "know what i know that you beat": [0, 65535], "what i know that you beat me": [0, 65535], "i know that you beat me at": [0, 65535], "know that you beat me at the": [0, 65535], "that you beat me at the mart": [0, 65535], "you beat me at the mart i": [0, 65535], "beat me at the mart i haue": [0, 65535], "me at the mart i haue your": [0, 65535], "at the mart i haue your hand": [0, 65535], "the mart i haue your hand to": [0, 65535], "mart i haue your hand to show": [0, 65535], "i haue your hand to show if": [0, 65535], "haue your hand to show if the": [0, 65535], "your hand to show if the skin": [0, 65535], "hand to show if the skin were": [0, 65535], "to show if the skin were parchment": [0, 65535], "show if the skin were parchment the": [0, 65535], "if the skin were parchment the blows": [0, 65535], "the skin were parchment the blows you": [0, 65535], "skin were parchment the blows you gaue": [0, 65535], "were parchment the blows you gaue were": [0, 65535], "parchment the blows you gaue were ink": [0, 65535], "the blows you gaue were ink your": [0, 65535], "blows you gaue were ink your owne": [0, 65535], "you gaue were ink your owne hand": [0, 65535], "gaue were ink your owne hand writing": [0, 65535], "were ink your owne hand writing would": [0, 65535], "ink your owne hand writing would tell": [0, 65535], "your owne hand writing would tell you": [0, 65535], "owne hand writing would tell you what": [0, 65535], "hand writing would tell you what i": [0, 65535], "writing would tell you what i thinke": [0, 65535], "would tell you what i thinke e": [0, 65535], "tell you what i thinke e ant": [0, 65535], "you what i thinke e ant i": [0, 65535], "what i thinke e ant i thinke": [0, 65535], "i thinke e ant i thinke thou": [0, 65535], "thinke e ant i thinke thou art": [0, 65535], "e ant i thinke thou art an": [0, 65535], "ant i thinke thou art an asse": [0, 65535], "i thinke thou art an asse e": [0, 65535], "thinke thou art an asse e dro": [0, 65535], "thou art an asse e dro marry": [0, 65535], "art an asse e dro marry so": [0, 65535], "an asse e dro marry so it": [0, 65535], "asse e dro marry so it doth": [0, 65535], "e dro marry so it doth appeare": [0, 65535], "dro marry so it doth appeare by": [0, 65535], "marry so it doth appeare by the": [0, 65535], "so it doth appeare by the wrongs": [0, 65535], "it doth appeare by the wrongs i": [0, 65535], "doth appeare by the wrongs i suffer": [0, 65535], "appeare by the wrongs i suffer and": [0, 65535], "by the wrongs i suffer and the": [0, 65535], "the wrongs i suffer and the blowes": [0, 65535], "wrongs i suffer and the blowes i": [0, 65535], "i suffer and the blowes i beare": [0, 65535], "suffer and the blowes i beare i": [0, 65535], "and the blowes i beare i should": [0, 65535], "the blowes i beare i should kicke": [0, 65535], "blowes i beare i should kicke being": [0, 65535], "i beare i should kicke being kickt": [0, 65535], "beare i should kicke being kickt and": [0, 65535], "i should kicke being kickt and being": [0, 65535], "should kicke being kickt and being at": [0, 65535], "kicke being kickt and being at that": [0, 65535], "being kickt and being at that passe": [0, 65535], "kickt and being at that passe you": [0, 65535], "and being at that passe you would": [0, 65535], "being at that passe you would keepe": [0, 65535], "at that passe you would keepe from": [0, 65535], "that passe you would keepe from my": [0, 65535], "passe you would keepe from my heeles": [0, 65535], "you would keepe from my heeles and": [0, 65535], "would keepe from my heeles and beware": [0, 65535], "keepe from my heeles and beware of": [0, 65535], "from my heeles and beware of an": [0, 65535], "my heeles and beware of an asse": [0, 65535], "heeles and beware of an asse e": [0, 65535], "and beware of an asse e an": [0, 65535], "beware of an asse e an y'are": [0, 65535], "of an asse e an y'are sad": [0, 65535], "an asse e an y'are sad signior": [0, 65535], "asse e an y'are sad signior balthazar": [0, 65535], "e an y'are sad signior balthazar pray": [0, 65535], "an y'are sad signior balthazar pray god": [0, 65535], "y'are sad signior balthazar pray god our": [0, 65535], "sad signior balthazar pray god our cheer": [0, 65535], "signior balthazar pray god our cheer may": [0, 65535], "balthazar pray god our cheer may answer": [0, 65535], "pray god our cheer may answer my": [0, 65535], "god our cheer may answer my good": [0, 65535], "our cheer may answer my good will": [0, 65535], "cheer may answer my good will and": [0, 65535], "may answer my good will and your": [0, 65535], "answer my good will and your good": [0, 65535], "my good will and your good welcom": [0, 65535], "good will and your good welcom here": [0, 65535], "will and your good welcom here bal": [0, 65535], "and your good welcom here bal i": [0, 65535], "your good welcom here bal i hold": [0, 65535], "good welcom here bal i hold your": [0, 65535], "welcom here bal i hold your dainties": [0, 65535], "here bal i hold your dainties cheap": [0, 65535], "bal i hold your dainties cheap sir": [0, 65535], "i hold your dainties cheap sir your": [0, 65535], "hold your dainties cheap sir your welcom": [0, 65535], "your dainties cheap sir your welcom deer": [0, 65535], "dainties cheap sir your welcom deer e": [0, 65535], "cheap sir your welcom deer e an": [0, 65535], "sir your welcom deer e an oh": [0, 65535], "your welcom deer e an oh signior": [0, 65535], "welcom deer e an oh signior balthazar": [0, 65535], "deer e an oh signior balthazar either": [0, 65535], "e an oh signior balthazar either at": [0, 65535], "an oh signior balthazar either at flesh": [0, 65535], "oh signior balthazar either at flesh or": [0, 65535], "signior balthazar either at flesh or fish": [0, 65535], "balthazar either at flesh or fish a": [0, 65535], "either at flesh or fish a table": [0, 65535], "at flesh or fish a table full": [0, 65535], "flesh or fish a table full of": [0, 65535], "or fish a table full of welcome": [0, 65535], "fish a table full of welcome makes": [0, 65535], "a table full of welcome makes scarce": [0, 65535], "table full of welcome makes scarce one": [0, 65535], "full of welcome makes scarce one dainty": [0, 65535], "of welcome makes scarce one dainty dish": [0, 65535], "welcome makes scarce one dainty dish bal": [0, 65535], "makes scarce one dainty dish bal good": [0, 65535], "scarce one dainty dish bal good meat": [0, 65535], "one dainty dish bal good meat sir": [0, 65535], "dainty dish bal good meat sir is": [0, 65535], "dish bal good meat sir is co": [0, 65535], "bal good meat sir is co m": [0, 65535], "good meat sir is co m mon": [0, 65535], "meat sir is co m mon that": [0, 65535], "sir is co m mon that euery": [0, 65535], "is co m mon that euery churle": [0, 65535], "co m mon that euery churle affords": [0, 65535], "m mon that euery churle affords anti": [0, 65535], "mon that euery churle affords anti and": [0, 65535], "that euery churle affords anti and welcome": [0, 65535], "euery churle affords anti and welcome more": [0, 65535], "churle affords anti and welcome more common": [0, 65535], "affords anti and welcome more common for": [0, 65535], "anti and welcome more common for thats": [0, 65535], "and welcome more common for thats nothing": [0, 65535], "welcome more common for thats nothing but": [0, 65535], "more common for thats nothing but words": [0, 65535], "common for thats nothing but words bal": [0, 65535], "for thats nothing but words bal small": [0, 65535], "thats nothing but words bal small cheere": [0, 65535], "nothing but words bal small cheere and": [0, 65535], "but words bal small cheere and great": [0, 65535], "words bal small cheere and great welcome": [0, 65535], "bal small cheere and great welcome makes": [0, 65535], "small cheere and great welcome makes a": [0, 65535], "cheere and great welcome makes a merrie": [0, 65535], "and great welcome makes a merrie feast": [0, 65535], "great welcome makes a merrie feast anti": [0, 65535], "welcome makes a merrie feast anti i": [0, 65535], "makes a merrie feast anti i to": [0, 65535], "a merrie feast anti i to a": [0, 65535], "merrie feast anti i to a niggardly": [0, 65535], "feast anti i to a niggardly host": [0, 65535], "anti i to a niggardly host and": [0, 65535], "i to a niggardly host and more": [0, 65535], "to a niggardly host and more sparing": [0, 65535], "a niggardly host and more sparing guest": [0, 65535], "niggardly host and more sparing guest but": [0, 65535], "host and more sparing guest but though": [0, 65535], "and more sparing guest but though my": [0, 65535], "more sparing guest but though my cates": [0, 65535], "sparing guest but though my cates be": [0, 65535], "guest but though my cates be meane": [0, 65535], "but though my cates be meane take": [0, 65535], "though my cates be meane take them": [0, 65535], "my cates be meane take them in": [0, 65535], "cates be meane take them in good": [0, 65535], "be meane take them in good part": [0, 65535], "meane take them in good part better": [0, 65535], "take them in good part better cheere": [0, 65535], "them in good part better cheere may": [0, 65535], "in good part better cheere may you": [0, 65535], "good part better cheere may you haue": [0, 65535], "part better cheere may you haue but": [0, 65535], "better cheere may you haue but not": [0, 65535], "cheere may you haue but not with": [0, 65535], "may you haue but not with better": [0, 65535], "you haue but not with better hart": [0, 65535], "haue but not with better hart but": [0, 65535], "but not with better hart but soft": [0, 65535], "not with better hart but soft my": [0, 65535], "with better hart but soft my doore": [0, 65535], "better hart but soft my doore is": [0, 65535], "hart but soft my doore is lockt": [0, 65535], "but soft my doore is lockt goe": [0, 65535], "soft my doore is lockt goe bid": [0, 65535], "my doore is lockt goe bid them": [0, 65535], "doore is lockt goe bid them let": [0, 65535], "is lockt goe bid them let vs": [0, 65535], "lockt goe bid them let vs in": [0, 65535], "goe bid them let vs in e": [0, 65535], "bid them let vs in e dro": [0, 65535], "them let vs in e dro maud": [0, 65535], "let vs in e dro maud briget": [0, 65535], "vs in e dro maud briget marian": [0, 65535], "in e dro maud briget marian cisley": [0, 65535], "e dro maud briget marian cisley gillian": [0, 65535], "dro maud briget marian cisley gillian ginn": [0, 65535], "maud briget marian cisley gillian ginn s": [0, 65535], "briget marian cisley gillian ginn s dro": [0, 65535], "marian cisley gillian ginn s dro mome": [0, 65535], "cisley gillian ginn s dro mome malthorse": [0, 65535], "gillian ginn s dro mome malthorse capon": [0, 65535], "ginn s dro mome malthorse capon coxcombe": [0, 65535], "s dro mome malthorse capon coxcombe idiot": [0, 65535], "dro mome malthorse capon coxcombe idiot patch": [0, 65535], "mome malthorse capon coxcombe idiot patch either": [0, 65535], "malthorse capon coxcombe idiot patch either get": [0, 65535], "capon coxcombe idiot patch either get thee": [0, 65535], "coxcombe idiot patch either get thee from": [0, 65535], "idiot patch either get thee from the": [0, 65535], "patch either get thee from the dore": [0, 65535], "either get thee from the dore or": [0, 65535], "get thee from the dore or sit": [0, 65535], "thee from the dore or sit downe": [0, 65535], "from the dore or sit downe at": [0, 65535], "the dore or sit downe at the": [0, 65535], "dore or sit downe at the hatch": [0, 65535], "or sit downe at the hatch dost": [0, 65535], "sit downe at the hatch dost thou": [0, 65535], "downe at the hatch dost thou coniure": [0, 65535], "at the hatch dost thou coniure for": [0, 65535], "the hatch dost thou coniure for wenches": [0, 65535], "hatch dost thou coniure for wenches that": [0, 65535], "dost thou coniure for wenches that thou": [0, 65535], "thou coniure for wenches that thou calst": [0, 65535], "coniure for wenches that thou calst for": [0, 65535], "for wenches that thou calst for such": [0, 65535], "wenches that thou calst for such store": [0, 65535], "that thou calst for such store when": [0, 65535], "thou calst for such store when one": [0, 65535], "calst for such store when one is": [0, 65535], "for such store when one is one": [0, 65535], "such store when one is one too": [0, 65535], "store when one is one too many": [0, 65535], "when one is one too many goe": [0, 65535], "one is one too many goe get": [0, 65535], "is one too many goe get thee": [0, 65535], "one too many goe get thee from": [0, 65535], "too many goe get thee from the": [0, 65535], "many goe get thee from the dore": [0, 65535], "goe get thee from the dore e": [0, 65535], "get thee from the dore e dro": [0, 65535], "thee from the dore e dro what": [0, 65535], "from the dore e dro what patch": [0, 65535], "the dore e dro what patch is": [0, 65535], "dore e dro what patch is made": [0, 65535], "e dro what patch is made our": [0, 65535], "dro what patch is made our porter": [0, 65535], "what patch is made our porter my": [0, 65535], "patch is made our porter my master": [0, 65535], "is made our porter my master stayes": [0, 65535], "made our porter my master stayes in": [0, 65535], "our porter my master stayes in the": [0, 65535], "porter my master stayes in the street": [0, 65535], "my master stayes in the street s": [0, 65535], "master stayes in the street s dro": [0, 65535], "stayes in the street s dro let": [0, 65535], "in the street s dro let him": [0, 65535], "the street s dro let him walke": [0, 65535], "street s dro let him walke from": [0, 65535], "s dro let him walke from whence": [0, 65535], "dro let him walke from whence he": [0, 65535], "let him walke from whence he came": [0, 65535], "him walke from whence he came lest": [0, 65535], "walke from whence he came lest hee": [0, 65535], "from whence he came lest hee catch": [0, 65535], "whence he came lest hee catch cold": [0, 65535], "he came lest hee catch cold on's": [0, 65535], "came lest hee catch cold on's feet": [0, 65535], "lest hee catch cold on's feet e": [0, 65535], "hee catch cold on's feet e ant": [0, 65535], "catch cold on's feet e ant who": [0, 65535], "cold on's feet e ant who talks": [0, 65535], "on's feet e ant who talks within": [0, 65535], "feet e ant who talks within there": [0, 65535], "e ant who talks within there hoa": [0, 65535], "ant who talks within there hoa open": [0, 65535], "who talks within there hoa open the": [0, 65535], "talks within there hoa open the dore": [0, 65535], "within there hoa open the dore s": [0, 65535], "there hoa open the dore s dro": [0, 65535], "hoa open the dore s dro right": [0, 65535], "open the dore s dro right sir": [0, 65535], "the dore s dro right sir ile": [0, 65535], "dore s dro right sir ile tell": [0, 65535], "s dro right sir ile tell you": [0, 65535], "dro right sir ile tell you when": [0, 65535], "right sir ile tell you when and": [0, 65535], "sir ile tell you when and you'll": [0, 65535], "ile tell you when and you'll tell": [0, 65535], "tell you when and you'll tell me": [0, 65535], "you when and you'll tell me wherefore": [0, 65535], "when and you'll tell me wherefore ant": [0, 65535], "and you'll tell me wherefore ant wherefore": [0, 65535], "you'll tell me wherefore ant wherefore for": [0, 65535], "tell me wherefore ant wherefore for my": [0, 65535], "me wherefore ant wherefore for my dinner": [0, 65535], "wherefore ant wherefore for my dinner i": [0, 65535], "ant wherefore for my dinner i haue": [0, 65535], "wherefore for my dinner i haue not": [0, 65535], "for my dinner i haue not din'd": [0, 65535], "my dinner i haue not din'd to": [0, 65535], "dinner i haue not din'd to day": [0, 65535], "i haue not din'd to day s": [0, 65535], "haue not din'd to day s dro": [0, 65535], "not din'd to day s dro nor": [0, 65535], "din'd to day s dro nor to": [0, 65535], "to day s dro nor to day": [0, 65535], "day s dro nor to day here": [0, 65535], "s dro nor to day here you": [0, 65535], "dro nor to day here you must": [0, 65535], "nor to day here you must not": [0, 65535], "to day here you must not come": [0, 65535], "day here you must not come againe": [0, 65535], "here you must not come againe when": [0, 65535], "you must not come againe when you": [0, 65535], "must not come againe when you may": [0, 65535], "not come againe when you may anti": [0, 65535], "come againe when you may anti what": [0, 65535], "againe when you may anti what art": [0, 65535], "when you may anti what art thou": [0, 65535], "you may anti what art thou that": [0, 65535], "may anti what art thou that keep'st": [0, 65535], "anti what art thou that keep'st mee": [0, 65535], "what art thou that keep'st mee out": [0, 65535], "art thou that keep'st mee out from": [0, 65535], "thou that keep'st mee out from the": [0, 65535], "that keep'st mee out from the howse": [0, 65535], "keep'st mee out from the howse i": [0, 65535], "mee out from the howse i owe": [0, 65535], "out from the howse i owe s": [0, 65535], "from the howse i owe s dro": [0, 65535], "the howse i owe s dro the": [0, 65535], "howse i owe s dro the porter": [0, 65535], "i owe s dro the porter for": [0, 65535], "owe s dro the porter for this": [0, 65535], "s dro the porter for this time": [0, 65535], "dro the porter for this time sir": [0, 65535], "the porter for this time sir and": [0, 65535], "porter for this time sir and my": [0, 65535], "for this time sir and my name": [0, 65535], "this time sir and my name is": [0, 65535], "time sir and my name is dromio": [0, 65535], "sir and my name is dromio e": [0, 65535], "and my name is dromio e dro": [0, 65535], "my name is dromio e dro o": [0, 65535], "name is dromio e dro o villaine": [0, 65535], "is dromio e dro o villaine thou": [0, 65535], "dromio e dro o villaine thou hast": [0, 65535], "e dro o villaine thou hast stolne": [0, 65535], "dro o villaine thou hast stolne both": [0, 65535], "o villaine thou hast stolne both mine": [0, 65535], "villaine thou hast stolne both mine office": [0, 65535], "thou hast stolne both mine office and": [0, 65535], "hast stolne both mine office and my": [0, 65535], "stolne both mine office and my name": [0, 65535], "both mine office and my name the": [0, 65535], "mine office and my name the one": [0, 65535], "office and my name the one nere": [0, 65535], "and my name the one nere got": [0, 65535], "my name the one nere got me": [0, 65535], "name the one nere got me credit": [0, 65535], "the one nere got me credit the": [0, 65535], "one nere got me credit the other": [0, 65535], "nere got me credit the other mickle": [0, 65535], "got me credit the other mickle blame": [0, 65535], "me credit the other mickle blame if": [0, 65535], "credit the other mickle blame if thou": [0, 65535], "the other mickle blame if thou hadst": [0, 65535], "other mickle blame if thou hadst beene": [0, 65535], "mickle blame if thou hadst beene dromio": [0, 65535], "blame if thou hadst beene dromio to": [0, 65535], "if thou hadst beene dromio to day": [0, 65535], "thou hadst beene dromio to day in": [0, 65535], "hadst beene dromio to day in my": [0, 65535], "beene dromio to day in my place": [0, 65535], "dromio to day in my place thou": [0, 65535], "to day in my place thou wouldst": [0, 65535], "day in my place thou wouldst haue": [0, 65535], "in my place thou wouldst haue chang'd": [0, 65535], "my place thou wouldst haue chang'd thy": [0, 65535], "place thou wouldst haue chang'd thy face": [0, 65535], "thou wouldst haue chang'd thy face for": [0, 65535], "wouldst haue chang'd thy face for a": [0, 65535], "haue chang'd thy face for a name": [0, 65535], "chang'd thy face for a name or": [0, 65535], "thy face for a name or thy": [0, 65535], "face for a name or thy name": [0, 65535], "for a name or thy name for": [0, 65535], "a name or thy name for an": [0, 65535], "name or thy name for an asse": [0, 65535], "or thy name for an asse enter": [0, 65535], "thy name for an asse enter luce": [0, 65535], "name for an asse enter luce luce": [0, 65535], "for an asse enter luce luce what": [0, 65535], "an asse enter luce luce what a": [0, 65535], "asse enter luce luce what a coile": [0, 65535], "enter luce luce what a coile is": [0, 65535], "luce luce what a coile is there": [0, 65535], "luce what a coile is there dromio": [0, 65535], "what a coile is there dromio who": [0, 65535], "a coile is there dromio who are": [0, 65535], "coile is there dromio who are those": [0, 65535], "is there dromio who are those at": [0, 65535], "there dromio who are those at the": [0, 65535], "dromio who are those at the gate": [0, 65535], "who are those at the gate e": [0, 65535], "are those at the gate e dro": [0, 65535], "those at the gate e dro let": [0, 65535], "at the gate e dro let my": [0, 65535], "the gate e dro let my master": [0, 65535], "gate e dro let my master in": [0, 65535], "e dro let my master in luce": [0, 65535], "dro let my master in luce luce": [0, 65535], "let my master in luce luce faith": [0, 65535], "my master in luce luce faith no": [0, 65535], "master in luce luce faith no hee": [0, 65535], "in luce luce faith no hee comes": [0, 65535], "luce luce faith no hee comes too": [0, 65535], "luce faith no hee comes too late": [0, 65535], "faith no hee comes too late and": [0, 65535], "no hee comes too late and so": [0, 65535], "hee comes too late and so tell": [0, 65535], "comes too late and so tell your": [0, 65535], "too late and so tell your master": [0, 65535], "late and so tell your master e": [0, 65535], "and so tell your master e dro": [0, 65535], "so tell your master e dro o": [0, 65535], "tell your master e dro o lord": [0, 65535], "your master e dro o lord i": [0, 65535], "master e dro o lord i must": [0, 65535], "e dro o lord i must laugh": [0, 65535], "dro o lord i must laugh haue": [0, 65535], "o lord i must laugh haue at": [0, 65535], "lord i must laugh haue at you": [0, 65535], "i must laugh haue at you with": [0, 65535], "must laugh haue at you with a": [0, 65535], "laugh haue at you with a prouerbe": [0, 65535], "haue at you with a prouerbe shall": [0, 65535], "at you with a prouerbe shall i": [0, 65535], "you with a prouerbe shall i set": [0, 65535], "with a prouerbe shall i set in": [0, 65535], "a prouerbe shall i set in my": [0, 65535], "prouerbe shall i set in my staffe": [0, 65535], "shall i set in my staffe luce": [0, 65535], "i set in my staffe luce haue": [0, 65535], "set in my staffe luce haue at": [0, 65535], "in my staffe luce haue at you": [0, 65535], "my staffe luce haue at you with": [0, 65535], "staffe luce haue at you with another": [0, 65535], "luce haue at you with another that's": [0, 65535], "haue at you with another that's when": [0, 65535], "at you with another that's when can": [0, 65535], "you with another that's when can you": [0, 65535], "with another that's when can you tell": [0, 65535], "another that's when can you tell s": [0, 65535], "that's when can you tell s dro": [0, 65535], "when can you tell s dro if": [0, 65535], "can you tell s dro if thy": [0, 65535], "you tell s dro if thy name": [0, 65535], "tell s dro if thy name be": [0, 65535], "s dro if thy name be called": [0, 65535], "dro if thy name be called luce": [0, 65535], "if thy name be called luce luce": [0, 65535], "thy name be called luce luce thou": [0, 65535], "name be called luce luce thou hast": [0, 65535], "be called luce luce thou hast an": [0, 65535], "called luce luce thou hast an swer'd": [0, 65535], "luce luce thou hast an swer'd him": [0, 65535], "luce thou hast an swer'd him well": [0, 65535], "thou hast an swer'd him well anti": [0, 65535], "hast an swer'd him well anti doe": [0, 65535], "an swer'd him well anti doe you": [0, 65535], "swer'd him well anti doe you heare": [0, 65535], "him well anti doe you heare you": [0, 65535], "well anti doe you heare you minion": [0, 65535], "anti doe you heare you minion you'll": [0, 65535], "doe you heare you minion you'll let": [0, 65535], "you heare you minion you'll let vs": [0, 65535], "heare you minion you'll let vs in": [0, 65535], "you minion you'll let vs in i": [0, 65535], "minion you'll let vs in i hope": [0, 65535], "you'll let vs in i hope luce": [0, 65535], "let vs in i hope luce i": [0, 65535], "vs in i hope luce i thought": [0, 65535], "in i hope luce i thought to": [0, 65535], "i hope luce i thought to haue": [0, 65535], "hope luce i thought to haue askt": [0, 65535], "luce i thought to haue askt you": [0, 65535], "i thought to haue askt you s": [0, 65535], "thought to haue askt you s dro": [0, 65535], "to haue askt you s dro and": [0, 65535], "haue askt you s dro and you": [0, 65535], "askt you s dro and you said": [0, 65535], "you s dro and you said no": [0, 65535], "s dro and you said no e": [0, 65535], "dro and you said no e dro": [0, 65535], "and you said no e dro so": [0, 65535], "you said no e dro so come": [0, 65535], "said no e dro so come helpe": [0, 65535], "no e dro so come helpe well": [0, 65535], "e dro so come helpe well strooke": [0, 65535], "dro so come helpe well strooke there": [0, 65535], "so come helpe well strooke there was": [0, 65535], "come helpe well strooke there was blow": [0, 65535], "helpe well strooke there was blow for": [0, 65535], "well strooke there was blow for blow": [0, 65535], "strooke there was blow for blow anti": [0, 65535], "there was blow for blow anti thou": [0, 65535], "was blow for blow anti thou baggage": [0, 65535], "blow for blow anti thou baggage let": [0, 65535], "for blow anti thou baggage let me": [0, 65535], "blow anti thou baggage let me in": [0, 65535], "anti thou baggage let me in luce": [0, 65535], "thou baggage let me in luce can": [0, 65535], "baggage let me in luce can you": [0, 65535], "let me in luce can you tell": [0, 65535], "me in luce can you tell for": [0, 65535], "in luce can you tell for whose": [0, 65535], "luce can you tell for whose sake": [0, 65535], "can you tell for whose sake e": [0, 65535], "you tell for whose sake e drom": [0, 65535], "tell for whose sake e drom master": [0, 65535], "for whose sake e drom master knocke": [0, 65535], "whose sake e drom master knocke the": [0, 65535], "sake e drom master knocke the doore": [0, 65535], "e drom master knocke the doore hard": [0, 65535], "drom master knocke the doore hard luce": [0, 65535], "master knocke the doore hard luce let": [0, 65535], "knocke the doore hard luce let him": [0, 65535], "the doore hard luce let him knocke": [0, 65535], "doore hard luce let him knocke till": [0, 65535], "hard luce let him knocke till it": [0, 65535], "luce let him knocke till it ake": [0, 65535], "let him knocke till it ake anti": [0, 65535], "him knocke till it ake anti you'll": [0, 65535], "knocke till it ake anti you'll crie": [0, 65535], "till it ake anti you'll crie for": [0, 65535], "it ake anti you'll crie for this": [0, 65535], "ake anti you'll crie for this minion": [0, 65535], "anti you'll crie for this minion if": [0, 65535], "you'll crie for this minion if i": [0, 65535], "crie for this minion if i beat": [0, 65535], "for this minion if i beat the": [0, 65535], "this minion if i beat the doore": [0, 65535], "minion if i beat the doore downe": [0, 65535], "if i beat the doore downe luce": [0, 65535], "i beat the doore downe luce what": [0, 65535], "beat the doore downe luce what needs": [0, 65535], "the doore downe luce what needs all": [0, 65535], "doore downe luce what needs all that": [0, 65535], "downe luce what needs all that and": [0, 65535], "luce what needs all that and a": [0, 65535], "what needs all that and a paire": [0, 65535], "needs all that and a paire of": [0, 65535], "all that and a paire of stocks": [0, 65535], "that and a paire of stocks in": [0, 65535], "and a paire of stocks in the": [0, 65535], "a paire of stocks in the towne": [0, 65535], "paire of stocks in the towne enter": [0, 65535], "of stocks in the towne enter adriana": [0, 65535], "stocks in the towne enter adriana adr": [0, 65535], "in the towne enter adriana adr who": [0, 65535], "the towne enter adriana adr who is": [0, 65535], "towne enter adriana adr who is that": [0, 65535], "enter adriana adr who is that at": [0, 65535], "adriana adr who is that at the": [0, 65535], "adr who is that at the doore": [0, 65535], "who is that at the doore that": [0, 65535], "is that at the doore that keeps": [0, 65535], "that at the doore that keeps all": [0, 65535], "at the doore that keeps all this": [0, 65535], "the doore that keeps all this noise": [0, 65535], "doore that keeps all this noise s": [0, 65535], "that keeps all this noise s dro": [0, 65535], "keeps all this noise s dro by": [0, 65535], "all this noise s dro by my": [0, 65535], "this noise s dro by my troth": [0, 65535], "noise s dro by my troth your": [0, 65535], "s dro by my troth your towne": [0, 65535], "dro by my troth your towne is": [0, 65535], "by my troth your towne is troubled": [0, 65535], "my troth your towne is troubled with": [0, 65535], "troth your towne is troubled with vnruly": [0, 65535], "your towne is troubled with vnruly boies": [0, 65535], "towne is troubled with vnruly boies anti": [0, 65535], "is troubled with vnruly boies anti are": [0, 65535], "troubled with vnruly boies anti are you": [0, 65535], "with vnruly boies anti are you there": [0, 65535], "vnruly boies anti are you there wife": [0, 65535], "boies anti are you there wife you": [0, 65535], "anti are you there wife you might": [0, 65535], "are you there wife you might haue": [0, 65535], "you there wife you might haue come": [0, 65535], "there wife you might haue come before": [0, 65535], "wife you might haue come before adri": [0, 65535], "you might haue come before adri your": [0, 65535], "might haue come before adri your wife": [0, 65535], "haue come before adri your wife sir": [0, 65535], "come before adri your wife sir knaue": [0, 65535], "before adri your wife sir knaue go": [0, 65535], "adri your wife sir knaue go get": [0, 65535], "your wife sir knaue go get you": [0, 65535], "wife sir knaue go get you from": [0, 65535], "sir knaue go get you from the": [0, 65535], "knaue go get you from the dore": [0, 65535], "go get you from the dore e": [0, 65535], "get you from the dore e dro": [0, 65535], "you from the dore e dro if": [0, 65535], "from the dore e dro if you": [0, 65535], "the dore e dro if you went": [0, 65535], "dore e dro if you went in": [0, 65535], "e dro if you went in paine": [0, 65535], "dro if you went in paine master": [0, 65535], "if you went in paine master this": [0, 65535], "you went in paine master this knaue": [0, 65535], "went in paine master this knaue wold": [0, 65535], "in paine master this knaue wold goe": [0, 65535], "paine master this knaue wold goe sore": [0, 65535], "master this knaue wold goe sore angelo": [0, 65535], "this knaue wold goe sore angelo heere": [0, 65535], "knaue wold goe sore angelo heere is": [0, 65535], "wold goe sore angelo heere is neither": [0, 65535], "goe sore angelo heere is neither cheere": [0, 65535], "sore angelo heere is neither cheere sir": [0, 65535], "angelo heere is neither cheere sir nor": [0, 65535], "heere is neither cheere sir nor welcome": [0, 65535], "is neither cheere sir nor welcome we": [0, 65535], "neither cheere sir nor welcome we would": [0, 65535], "cheere sir nor welcome we would faine": [0, 65535], "sir nor welcome we would faine haue": [0, 65535], "nor welcome we would faine haue either": [0, 65535], "welcome we would faine haue either baltz": [0, 65535], "we would faine haue either baltz in": [0, 65535], "would faine haue either baltz in debating": [0, 65535], "faine haue either baltz in debating which": [0, 65535], "haue either baltz in debating which was": [0, 65535], "either baltz in debating which was best": [0, 65535], "baltz in debating which was best wee": [0, 65535], "in debating which was best wee shall": [0, 65535], "debating which was best wee shall part": [0, 65535], "which was best wee shall part with": [0, 65535], "was best wee shall part with neither": [0, 65535], "best wee shall part with neither e": [0, 65535], "wee shall part with neither e dro": [0, 65535], "shall part with neither e dro they": [0, 65535], "part with neither e dro they stand": [0, 65535], "with neither e dro they stand at": [0, 65535], "neither e dro they stand at the": [0, 65535], "e dro they stand at the doore": [0, 65535], "dro they stand at the doore master": [0, 65535], "they stand at the doore master bid": [0, 65535], "stand at the doore master bid them": [0, 65535], "at the doore master bid them welcome": [0, 65535], "the doore master bid them welcome hither": [0, 65535], "doore master bid them welcome hither anti": [0, 65535], "master bid them welcome hither anti there": [0, 65535], "bid them welcome hither anti there is": [0, 65535], "them welcome hither anti there is something": [0, 65535], "welcome hither anti there is something in": [0, 65535], "hither anti there is something in the": [0, 65535], "anti there is something in the winde": [0, 65535], "there is something in the winde that": [0, 65535], "is something in the winde that we": [0, 65535], "something in the winde that we cannot": [0, 65535], "in the winde that we cannot get": [0, 65535], "the winde that we cannot get in": [0, 65535], "winde that we cannot get in e": [0, 65535], "that we cannot get in e dro": [0, 65535], "we cannot get in e dro you": [0, 65535], "cannot get in e dro you would": [0, 65535], "get in e dro you would say": [0, 65535], "in e dro you would say so": [0, 65535], "e dro you would say so master": [0, 65535], "dro you would say so master if": [0, 65535], "you would say so master if your": [0, 65535], "would say so master if your garments": [0, 65535], "say so master if your garments were": [0, 65535], "so master if your garments were thin": [0, 65535], "master if your garments were thin your": [0, 65535], "if your garments were thin your cake": [0, 65535], "your garments were thin your cake here": [0, 65535], "garments were thin your cake here is": [0, 65535], "were thin your cake here is warme": [0, 65535], "thin your cake here is warme within": [0, 65535], "your cake here is warme within you": [0, 65535], "cake here is warme within you stand": [0, 65535], "here is warme within you stand here": [0, 65535], "is warme within you stand here in": [0, 65535], "warme within you stand here in the": [0, 65535], "within you stand here in the cold": [0, 65535], "you stand here in the cold it": [0, 65535], "stand here in the cold it would": [0, 65535], "here in the cold it would make": [0, 65535], "in the cold it would make a": [0, 65535], "the cold it would make a man": [0, 65535], "cold it would make a man mad": [0, 65535], "it would make a man mad as": [0, 65535], "would make a man mad as a": [0, 65535], "make a man mad as a bucke": [0, 65535], "a man mad as a bucke to": [0, 65535], "man mad as a bucke to be": [0, 65535], "mad as a bucke to be so": [0, 65535], "as a bucke to be so bought": [0, 65535], "a bucke to be so bought and": [0, 65535], "bucke to be so bought and sold": [0, 65535], "to be so bought and sold ant": [0, 65535], "be so bought and sold ant go": [0, 65535], "so bought and sold ant go fetch": [0, 65535], "bought and sold ant go fetch me": [0, 65535], "and sold ant go fetch me something": [0, 65535], "sold ant go fetch me something ile": [0, 65535], "ant go fetch me something ile break": [0, 65535], "go fetch me something ile break ope": [0, 65535], "fetch me something ile break ope the": [0, 65535], "me something ile break ope the gate": [0, 65535], "something ile break ope the gate s": [0, 65535], "ile break ope the gate s dro": [0, 65535], "break ope the gate s dro breake": [0, 65535], "ope the gate s dro breake any": [0, 65535], "the gate s dro breake any breaking": [0, 65535], "gate s dro breake any breaking here": [0, 65535], "s dro breake any breaking here and": [0, 65535], "dro breake any breaking here and ile": [0, 65535], "breake any breaking here and ile breake": [0, 65535], "any breaking here and ile breake your": [0, 65535], "breaking here and ile breake your knaues": [0, 65535], "here and ile breake your knaues pate": [0, 65535], "and ile breake your knaues pate e": [0, 65535], "ile breake your knaues pate e dro": [0, 65535], "breake your knaues pate e dro a": [0, 65535], "your knaues pate e dro a man": [0, 65535], "knaues pate e dro a man may": [0, 65535], "pate e dro a man may breake": [0, 65535], "e dro a man may breake a": [0, 65535], "dro a man may breake a word": [0, 65535], "a man may breake a word with": [0, 65535], "man may breake a word with your": [0, 65535], "may breake a word with your sir": [0, 65535], "breake a word with your sir and": [0, 65535], "a word with your sir and words": [0, 65535], "word with your sir and words are": [0, 65535], "with your sir and words are but": [0, 65535], "your sir and words are but winde": [0, 65535], "sir and words are but winde i": [0, 65535], "and words are but winde i and": [0, 65535], "words are but winde i and breake": [0, 65535], "are but winde i and breake it": [0, 65535], "but winde i and breake it in": [0, 65535], "winde i and breake it in your": [0, 65535], "i and breake it in your face": [0, 65535], "and breake it in your face so": [0, 65535], "breake it in your face so he": [0, 65535], "it in your face so he break": [0, 65535], "in your face so he break it": [0, 65535], "your face so he break it not": [0, 65535], "face so he break it not behinde": [0, 65535], "so he break it not behinde s": [0, 65535], "he break it not behinde s dro": [0, 65535], "break it not behinde s dro it": [0, 65535], "it not behinde s dro it seemes": [0, 65535], "not behinde s dro it seemes thou": [0, 65535], "behinde s dro it seemes thou want'st": [0, 65535], "s dro it seemes thou want'st breaking": [0, 65535], "dro it seemes thou want'st breaking out": [0, 65535], "it seemes thou want'st breaking out vpon": [0, 65535], "seemes thou want'st breaking out vpon thee": [0, 65535], "thou want'st breaking out vpon thee hinde": [0, 65535], "want'st breaking out vpon thee hinde e": [0, 65535], "breaking out vpon thee hinde e dro": [0, 65535], "out vpon thee hinde e dro here's": [0, 65535], "vpon thee hinde e dro here's too": [0, 65535], "thee hinde e dro here's too much": [0, 65535], "hinde e dro here's too much out": [0, 65535], "e dro here's too much out vpon": [0, 65535], "dro here's too much out vpon thee": [0, 65535], "here's too much out vpon thee i": [0, 65535], "too much out vpon thee i pray": [0, 65535], "much out vpon thee i pray thee": [0, 65535], "out vpon thee i pray thee let": [0, 65535], "vpon thee i pray thee let me": [0, 65535], "thee i pray thee let me in": [0, 65535], "i pray thee let me in s": [0, 65535], "pray thee let me in s dro": [0, 65535], "thee let me in s dro i": [0, 65535], "let me in s dro i when": [0, 65535], "me in s dro i when fowles": [0, 65535], "in s dro i when fowles haue": [0, 65535], "s dro i when fowles haue no": [0, 65535], "dro i when fowles haue no feathers": [0, 65535], "i when fowles haue no feathers and": [0, 65535], "when fowles haue no feathers and fish": [0, 65535], "fowles haue no feathers and fish haue": [0, 65535], "haue no feathers and fish haue no": [0, 65535], "no feathers and fish haue no fin": [0, 65535], "feathers and fish haue no fin ant": [0, 65535], "and fish haue no fin ant well": [0, 65535], "fish haue no fin ant well ile": [0, 65535], "haue no fin ant well ile breake": [0, 65535], "no fin ant well ile breake in": [0, 65535], "fin ant well ile breake in go": [0, 65535], "ant well ile breake in go borrow": [0, 65535], "well ile breake in go borrow me": [0, 65535], "ile breake in go borrow me a": [0, 65535], "breake in go borrow me a crow": [0, 65535], "in go borrow me a crow e": [0, 65535], "go borrow me a crow e dro": [0, 65535], "borrow me a crow e dro a": [0, 65535], "me a crow e dro a crow": [0, 65535], "a crow e dro a crow without": [0, 65535], "crow e dro a crow without feather": [0, 65535], "e dro a crow without feather master": [0, 65535], "dro a crow without feather master meane": [0, 65535], "a crow without feather master meane you": [0, 65535], "crow without feather master meane you so": [0, 65535], "without feather master meane you so for": [0, 65535], "feather master meane you so for a": [0, 65535], "master meane you so for a fish": [0, 65535], "meane you so for a fish without": [0, 65535], "you so for a fish without a": [0, 65535], "so for a fish without a finne": [0, 65535], "for a fish without a finne ther's": [0, 65535], "a fish without a finne ther's a": [0, 65535], "fish without a finne ther's a fowle": [0, 65535], "without a finne ther's a fowle without": [0, 65535], "a finne ther's a fowle without a": [0, 65535], "finne ther's a fowle without a fether": [0, 65535], "ther's a fowle without a fether if": [0, 65535], "a fowle without a fether if a": [0, 65535], "fowle without a fether if a crow": [0, 65535], "without a fether if a crow help": [0, 65535], "a fether if a crow help vs": [0, 65535], "fether if a crow help vs in": [0, 65535], "if a crow help vs in sirra": [0, 65535], "a crow help vs in sirra wee'll": [0, 65535], "crow help vs in sirra wee'll plucke": [0, 65535], "help vs in sirra wee'll plucke a": [0, 65535], "vs in sirra wee'll plucke a crow": [0, 65535], "in sirra wee'll plucke a crow together": [0, 65535], "sirra wee'll plucke a crow together ant": [0, 65535], "wee'll plucke a crow together ant go": [0, 65535], "plucke a crow together ant go get": [0, 65535], "a crow together ant go get thee": [0, 65535], "crow together ant go get thee gon": [0, 65535], "together ant go get thee gon fetch": [0, 65535], "ant go get thee gon fetch me": [0, 65535], "go get thee gon fetch me an": [0, 65535], "get thee gon fetch me an iron": [0, 65535], "thee gon fetch me an iron crow": [0, 65535], "gon fetch me an iron crow balth": [0, 65535], "fetch me an iron crow balth haue": [0, 65535], "me an iron crow balth haue patience": [0, 65535], "an iron crow balth haue patience sir": [0, 65535], "iron crow balth haue patience sir oh": [0, 65535], "crow balth haue patience sir oh let": [0, 65535], "balth haue patience sir oh let it": [0, 65535], "haue patience sir oh let it not": [0, 65535], "patience sir oh let it not be": [0, 65535], "sir oh let it not be so": [0, 65535], "oh let it not be so heerein": [0, 65535], "let it not be so heerein you": [0, 65535], "it not be so heerein you warre": [0, 65535], "not be so heerein you warre against": [0, 65535], "be so heerein you warre against your": [0, 65535], "so heerein you warre against your reputation": [0, 65535], "heerein you warre against your reputation and": [0, 65535], "you warre against your reputation and draw": [0, 65535], "warre against your reputation and draw within": [0, 65535], "against your reputation and draw within the": [0, 65535], "your reputation and draw within the compasse": [0, 65535], "reputation and draw within the compasse of": [0, 65535], "and draw within the compasse of suspect": [0, 65535], "draw within the compasse of suspect th'": [0, 65535], "within the compasse of suspect th' vnuiolated": [0, 65535], "the compasse of suspect th' vnuiolated honor": [0, 65535], "compasse of suspect th' vnuiolated honor of": [0, 65535], "of suspect th' vnuiolated honor of your": [0, 65535], "suspect th' vnuiolated honor of your wife": [0, 65535], "th' vnuiolated honor of your wife once": [0, 65535], "vnuiolated honor of your wife once this": [0, 65535], "honor of your wife once this your": [0, 65535], "of your wife once this your long": [0, 65535], "your wife once this your long experience": [0, 65535], "wife once this your long experience of": [0, 65535], "once this your long experience of your": [0, 65535], "this your long experience of your wisedome": [0, 65535], "your long experience of your wisedome her": [0, 65535], "long experience of your wisedome her sober": [0, 65535], "experience of your wisedome her sober vertue": [0, 65535], "of your wisedome her sober vertue yeares": [0, 65535], "your wisedome her sober vertue yeares and": [0, 65535], "wisedome her sober vertue yeares and modestie": [0, 65535], "her sober vertue yeares and modestie plead": [0, 65535], "sober vertue yeares and modestie plead on": [0, 65535], "vertue yeares and modestie plead on your": [0, 65535], "yeares and modestie plead on your part": [0, 65535], "and modestie plead on your part some": [0, 65535], "modestie plead on your part some cause": [0, 65535], "plead on your part some cause to": [0, 65535], "on your part some cause to you": [0, 65535], "your part some cause to you vnknowne": [0, 65535], "part some cause to you vnknowne and": [0, 65535], "some cause to you vnknowne and doubt": [0, 65535], "cause to you vnknowne and doubt not": [0, 65535], "to you vnknowne and doubt not sir": [0, 65535], "you vnknowne and doubt not sir but": [0, 65535], "vnknowne and doubt not sir but she": [0, 65535], "and doubt not sir but she will": [0, 65535], "doubt not sir but she will well": [0, 65535], "not sir but she will well excuse": [0, 65535], "sir but she will well excuse why": [0, 65535], "but she will well excuse why at": [0, 65535], "she will well excuse why at this": [0, 65535], "will well excuse why at this time": [0, 65535], "well excuse why at this time the": [0, 65535], "excuse why at this time the dores": [0, 65535], "why at this time the dores are": [0, 65535], "at this time the dores are made": [0, 65535], "this time the dores are made against": [0, 65535], "time the dores are made against you": [0, 65535], "the dores are made against you be": [0, 65535], "dores are made against you be rul'd": [0, 65535], "are made against you be rul'd by": [0, 65535], "made against you be rul'd by me": [0, 65535], "against you be rul'd by me depart": [0, 65535], "you be rul'd by me depart in": [0, 65535], "be rul'd by me depart in patience": [0, 65535], "rul'd by me depart in patience and": [0, 65535], "by me depart in patience and let": [0, 65535], "me depart in patience and let vs": [0, 65535], "depart in patience and let vs to": [0, 65535], "in patience and let vs to the": [0, 65535], "patience and let vs to the tyger": [0, 65535], "and let vs to the tyger all": [0, 65535], "let vs to the tyger all to": [0, 65535], "vs to the tyger all to dinner": [0, 65535], "to the tyger all to dinner and": [0, 65535], "the tyger all to dinner and about": [0, 65535], "tyger all to dinner and about euening": [0, 65535], "all to dinner and about euening come": [0, 65535], "to dinner and about euening come your": [0, 65535], "dinner and about euening come your selfe": [0, 65535], "and about euening come your selfe alone": [0, 65535], "about euening come your selfe alone to": [0, 65535], "euening come your selfe alone to know": [0, 65535], "come your selfe alone to know the": [0, 65535], "your selfe alone to know the reason": [0, 65535], "selfe alone to know the reason of": [0, 65535], "alone to know the reason of this": [0, 65535], "to know the reason of this strange": [0, 65535], "know the reason of this strange restraint": [0, 65535], "the reason of this strange restraint if": [0, 65535], "reason of this strange restraint if by": [0, 65535], "of this strange restraint if by strong": [0, 65535], "this strange restraint if by strong hand": [0, 65535], "strange restraint if by strong hand you": [0, 65535], "restraint if by strong hand you offer": [0, 65535], "if by strong hand you offer to": [0, 65535], "by strong hand you offer to breake": [0, 65535], "strong hand you offer to breake in": [0, 65535], "hand you offer to breake in now": [0, 65535], "you offer to breake in now in": [0, 65535], "offer to breake in now in the": [0, 65535], "to breake in now in the stirring": [0, 65535], "breake in now in the stirring passage": [0, 65535], "in now in the stirring passage of": [0, 65535], "now in the stirring passage of the": [0, 65535], "in the stirring passage of the day": [0, 65535], "the stirring passage of the day a": [0, 65535], "stirring passage of the day a vulgar": [0, 65535], "passage of the day a vulgar comment": [0, 65535], "of the day a vulgar comment will": [0, 65535], "the day a vulgar comment will be": [0, 65535], "day a vulgar comment will be made": [0, 65535], "a vulgar comment will be made of": [0, 65535], "vulgar comment will be made of it": [0, 65535], "comment will be made of it and": [0, 65535], "will be made of it and that": [0, 65535], "be made of it and that supposed": [0, 65535], "made of it and that supposed by": [0, 65535], "of it and that supposed by the": [0, 65535], "it and that supposed by the common": [0, 65535], "and that supposed by the common rowt": [0, 65535], "that supposed by the common rowt against": [0, 65535], "supposed by the common rowt against your": [0, 65535], "by the common rowt against your yet": [0, 65535], "the common rowt against your yet vngalled": [0, 65535], "common rowt against your yet vngalled estimation": [0, 65535], "rowt against your yet vngalled estimation that": [0, 65535], "against your yet vngalled estimation that may": [0, 65535], "your yet vngalled estimation that may with": [0, 65535], "yet vngalled estimation that may with foule": [0, 65535], "vngalled estimation that may with foule intrusion": [0, 65535], "estimation that may with foule intrusion enter": [0, 65535], "that may with foule intrusion enter in": [0, 65535], "may with foule intrusion enter in and": [0, 65535], "with foule intrusion enter in and dwell": [0, 65535], "foule intrusion enter in and dwell vpon": [0, 65535], "intrusion enter in and dwell vpon your": [0, 65535], "enter in and dwell vpon your graue": [0, 65535], "in and dwell vpon your graue when": [0, 65535], "and dwell vpon your graue when you": [0, 65535], "dwell vpon your graue when you are": [0, 65535], "vpon your graue when you are dead": [0, 65535], "your graue when you are dead for": [0, 65535], "graue when you are dead for slander": [0, 65535], "when you are dead for slander liues": [0, 65535], "you are dead for slander liues vpon": [0, 65535], "are dead for slander liues vpon succession": [0, 65535], "dead for slander liues vpon succession for": [0, 65535], "for slander liues vpon succession for euer": [0, 65535], "slander liues vpon succession for euer hows'd": [0, 65535], "liues vpon succession for euer hows'd where": [0, 65535], "vpon succession for euer hows'd where it": [0, 65535], "succession for euer hows'd where it gets": [0, 65535], "for euer hows'd where it gets possession": [0, 65535], "euer hows'd where it gets possession anti": [0, 65535], "hows'd where it gets possession anti you": [0, 65535], "where it gets possession anti you haue": [0, 65535], "it gets possession anti you haue preuail'd": [0, 65535], "gets possession anti you haue preuail'd i": [0, 65535], "possession anti you haue preuail'd i will": [0, 65535], "anti you haue preuail'd i will depart": [0, 65535], "you haue preuail'd i will depart in": [0, 65535], "haue preuail'd i will depart in quiet": [0, 65535], "preuail'd i will depart in quiet and": [0, 65535], "i will depart in quiet and in": [0, 65535], "will depart in quiet and in despight": [0, 65535], "depart in quiet and in despight of": [0, 65535], "in quiet and in despight of mirth": [0, 65535], "quiet and in despight of mirth meane": [0, 65535], "and in despight of mirth meane to": [0, 65535], "in despight of mirth meane to be": [0, 65535], "despight of mirth meane to be merrie": [0, 65535], "of mirth meane to be merrie i": [0, 65535], "mirth meane to be merrie i know": [0, 65535], "meane to be merrie i know a": [0, 65535], "to be merrie i know a wench": [0, 65535], "be merrie i know a wench of": [0, 65535], "merrie i know a wench of excellent": [0, 65535], "i know a wench of excellent discourse": [0, 65535], "know a wench of excellent discourse prettie": [0, 65535], "a wench of excellent discourse prettie and": [0, 65535], "wench of excellent discourse prettie and wittie": [0, 65535], "of excellent discourse prettie and wittie wilde": [0, 65535], "excellent discourse prettie and wittie wilde and": [0, 65535], "discourse prettie and wittie wilde and yet": [0, 65535], "prettie and wittie wilde and yet too": [0, 65535], "and wittie wilde and yet too gentle": [0, 65535], "wittie wilde and yet too gentle there": [0, 65535], "wilde and yet too gentle there will": [0, 65535], "and yet too gentle there will we": [0, 65535], "yet too gentle there will we dine": [0, 65535], "too gentle there will we dine this": [0, 65535], "gentle there will we dine this woman": [0, 65535], "there will we dine this woman that": [0, 65535], "will we dine this woman that i": [0, 65535], "we dine this woman that i meane": [0, 65535], "dine this woman that i meane my": [0, 65535], "this woman that i meane my wife": [0, 65535], "woman that i meane my wife but": [0, 65535], "that i meane my wife but i": [0, 65535], "i meane my wife but i protest": [0, 65535], "meane my wife but i protest without": [0, 65535], "my wife but i protest without desert": [0, 65535], "wife but i protest without desert hath": [0, 65535], "but i protest without desert hath oftentimes": [0, 65535], "i protest without desert hath oftentimes vpbraided": [0, 65535], "protest without desert hath oftentimes vpbraided me": [0, 65535], "without desert hath oftentimes vpbraided me withall": [0, 65535], "desert hath oftentimes vpbraided me withall to": [0, 65535], "hath oftentimes vpbraided me withall to her": [0, 65535], "oftentimes vpbraided me withall to her will": [0, 65535], "vpbraided me withall to her will we": [0, 65535], "me withall to her will we to": [0, 65535], "withall to her will we to dinner": [0, 65535], "to her will we to dinner get": [0, 65535], "her will we to dinner get you": [0, 65535], "will we to dinner get you home": [0, 65535], "we to dinner get you home and": [0, 65535], "to dinner get you home and fetch": [0, 65535], "dinner get you home and fetch the": [0, 65535], "get you home and fetch the chaine": [0, 65535], "you home and fetch the chaine by": [0, 65535], "home and fetch the chaine by this": [0, 65535], "and fetch the chaine by this i": [0, 65535], "fetch the chaine by this i know": [0, 65535], "the chaine by this i know 'tis": [0, 65535], "chaine by this i know 'tis made": [0, 65535], "by this i know 'tis made bring": [0, 65535], "this i know 'tis made bring it": [0, 65535], "i know 'tis made bring it i": [0, 65535], "know 'tis made bring it i pray": [0, 65535], "'tis made bring it i pray you": [0, 65535], "made bring it i pray you to": [0, 65535], "bring it i pray you to the": [0, 65535], "it i pray you to the porpentine": [0, 65535], "i pray you to the porpentine for": [0, 65535], "pray you to the porpentine for there's": [0, 65535], "you to the porpentine for there's the": [0, 65535], "to the porpentine for there's the house": [0, 65535], "the porpentine for there's the house that": [0, 65535], "porpentine for there's the house that chaine": [0, 65535], "for there's the house that chaine will": [0, 65535], "there's the house that chaine will i": [0, 65535], "the house that chaine will i bestow": [0, 65535], "house that chaine will i bestow be": [0, 65535], "that chaine will i bestow be it": [0, 65535], "chaine will i bestow be it for": [0, 65535], "will i bestow be it for nothing": [0, 65535], "i bestow be it for nothing but": [0, 65535], "bestow be it for nothing but to": [0, 65535], "be it for nothing but to spight": [0, 65535], "it for nothing but to spight my": [0, 65535], "for nothing but to spight my wife": [0, 65535], "nothing but to spight my wife vpon": [0, 65535], "but to spight my wife vpon mine": [0, 65535], "to spight my wife vpon mine hostesse": [0, 65535], "spight my wife vpon mine hostesse there": [0, 65535], "my wife vpon mine hostesse there good": [0, 65535], "wife vpon mine hostesse there good sir": [0, 65535], "vpon mine hostesse there good sir make": [0, 65535], "mine hostesse there good sir make haste": [0, 65535], "hostesse there good sir make haste since": [0, 65535], "there good sir make haste since mine": [0, 65535], "good sir make haste since mine owne": [0, 65535], "sir make haste since mine owne doores": [0, 65535], "make haste since mine owne doores refuse": [0, 65535], "haste since mine owne doores refuse to": [0, 65535], "since mine owne doores refuse to entertaine": [0, 65535], "mine owne doores refuse to entertaine me": [0, 65535], "owne doores refuse to entertaine me ile": [0, 65535], "doores refuse to entertaine me ile knocke": [0, 65535], "refuse to entertaine me ile knocke else": [0, 65535], "to entertaine me ile knocke else where": [0, 65535], "entertaine me ile knocke else where to": [0, 65535], "me ile knocke else where to see": [0, 65535], "ile knocke else where to see if": [0, 65535], "knocke else where to see if they'll": [0, 65535], "else where to see if they'll disdaine": [0, 65535], "where to see if they'll disdaine me": [0, 65535], "to see if they'll disdaine me ang": [0, 65535], "see if they'll disdaine me ang ile": [0, 65535], "if they'll disdaine me ang ile meet": [0, 65535], "they'll disdaine me ang ile meet you": [0, 65535], "disdaine me ang ile meet you at": [0, 65535], "me ang ile meet you at that": [0, 65535], "ang ile meet you at that place": [0, 65535], "ile meet you at that place some": [0, 65535], "meet you at that place some houre": [0, 65535], "you at that place some houre hence": [0, 65535], "at that place some houre hence anti": [0, 65535], "that place some houre hence anti do": [0, 65535], "place some houre hence anti do so": [0, 65535], "some houre hence anti do so this": [0, 65535], "houre hence anti do so this iest": [0, 65535], "hence anti do so this iest shall": [0, 65535], "anti do so this iest shall cost": [0, 65535], "do so this iest shall cost me": [0, 65535], "so this iest shall cost me some": [0, 65535], "this iest shall cost me some expence": [0, 65535], "iest shall cost me some expence exeunt": [0, 65535], "shall cost me some expence exeunt enter": [0, 65535], "cost me some expence exeunt enter iuliana": [0, 65535], "me some expence exeunt enter iuliana with": [0, 65535], "some expence exeunt enter iuliana with antipholus": [0, 65535], "expence exeunt enter iuliana with antipholus of": [0, 65535], "exeunt enter iuliana with antipholus of siracusia": [0, 65535], "enter iuliana with antipholus of siracusia iulia": [0, 65535], "iuliana with antipholus of siracusia iulia and": [0, 65535], "with antipholus of siracusia iulia and may": [0, 65535], "antipholus of siracusia iulia and may it": [0, 65535], "of siracusia iulia and may it be": [0, 65535], "siracusia iulia and may it be that": [0, 65535], "iulia and may it be that you": [0, 65535], "and may it be that you haue": [0, 65535], "may it be that you haue quite": [0, 65535], "it be that you haue quite forgot": [0, 65535], "be that you haue quite forgot a": [0, 65535], "that you haue quite forgot a husbands": [0, 65535], "you haue quite forgot a husbands office": [0, 65535], "haue quite forgot a husbands office shall": [0, 65535], "quite forgot a husbands office shall antipholus": [0, 65535], "forgot a husbands office shall antipholus euen": [0, 65535], "a husbands office shall antipholus euen in": [0, 65535], "husbands office shall antipholus euen in the": [0, 65535], "office shall antipholus euen in the spring": [0, 65535], "shall antipholus euen in the spring of": [0, 65535], "antipholus euen in the spring of loue": [0, 65535], "euen in the spring of loue thy": [0, 65535], "in the spring of loue thy loue": [0, 65535], "the spring of loue thy loue springs": [0, 65535], "spring of loue thy loue springs rot": [0, 65535], "of loue thy loue springs rot shall": [0, 65535], "loue thy loue springs rot shall loue": [0, 65535], "thy loue springs rot shall loue in": [0, 65535], "loue springs rot shall loue in buildings": [0, 65535], "springs rot shall loue in buildings grow": [0, 65535], "rot shall loue in buildings grow so": [0, 65535], "shall loue in buildings grow so ruinate": [0, 65535], "loue in buildings grow so ruinate if": [0, 65535], "in buildings grow so ruinate if you": [0, 65535], "buildings grow so ruinate if you did": [0, 65535], "grow so ruinate if you did wed": [0, 65535], "so ruinate if you did wed my": [0, 65535], "ruinate if you did wed my sister": [0, 65535], "if you did wed my sister for": [0, 65535], "you did wed my sister for her": [0, 65535], "did wed my sister for her wealth": [0, 65535], "wed my sister for her wealth then": [0, 65535], "my sister for her wealth then for": [0, 65535], "sister for her wealth then for her": [0, 65535], "for her wealth then for her wealths": [0, 65535], "her wealth then for her wealths sake": [0, 65535], "wealth then for her wealths sake vse": [0, 65535], "then for her wealths sake vse her": [0, 65535], "for her wealths sake vse her with": [0, 65535], "her wealths sake vse her with more": [0, 65535], "wealths sake vse her with more kindnesse": [0, 65535], "sake vse her with more kindnesse or": [0, 65535], "vse her with more kindnesse or if": [0, 65535], "her with more kindnesse or if you": [0, 65535], "with more kindnesse or if you like": [0, 65535], "more kindnesse or if you like else": [0, 65535], "kindnesse or if you like else where": [0, 65535], "or if you like else where doe": [0, 65535], "if you like else where doe it": [0, 65535], "you like else where doe it by": [0, 65535], "like else where doe it by stealth": [0, 65535], "else where doe it by stealth muffle": [0, 65535], "where doe it by stealth muffle your": [0, 65535], "doe it by stealth muffle your false": [0, 65535], "it by stealth muffle your false loue": [0, 65535], "by stealth muffle your false loue with": [0, 65535], "stealth muffle your false loue with some": [0, 65535], "muffle your false loue with some shew": [0, 65535], "your false loue with some shew of": [0, 65535], "false loue with some shew of blindnesse": [0, 65535], "loue with some shew of blindnesse let": [0, 65535], "with some shew of blindnesse let not": [0, 65535], "some shew of blindnesse let not my": [0, 65535], "shew of blindnesse let not my sister": [0, 65535], "of blindnesse let not my sister read": [0, 65535], "blindnesse let not my sister read it": [0, 65535], "let not my sister read it in": [0, 65535], "not my sister read it in your": [0, 65535], "my sister read it in your eye": [0, 65535], "sister read it in your eye be": [0, 65535], "read it in your eye be not": [0, 65535], "it in your eye be not thy": [0, 65535], "in your eye be not thy tongue": [0, 65535], "your eye be not thy tongue thy": [0, 65535], "eye be not thy tongue thy owne": [0, 65535], "be not thy tongue thy owne shames": [0, 65535], "not thy tongue thy owne shames orator": [0, 65535], "thy tongue thy owne shames orator looke": [0, 65535], "tongue thy owne shames orator looke sweet": [0, 65535], "thy owne shames orator looke sweet speake": [0, 65535], "owne shames orator looke sweet speake faire": [0, 65535], "shames orator looke sweet speake faire become": [0, 65535], "orator looke sweet speake faire become disloyaltie": [0, 65535], "looke sweet speake faire become disloyaltie apparell": [0, 65535], "sweet speake faire become disloyaltie apparell vice": [0, 65535], "speake faire become disloyaltie apparell vice like": [0, 65535], "faire become disloyaltie apparell vice like vertues": [0, 65535], "become disloyaltie apparell vice like vertues harbenger": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "apparell vice like vertues harbenger beare a": [0, 65535], "vice like vertues harbenger beare a faire": [0, 65535], "like vertues harbenger beare a faire presence": [0, 65535], "vertues harbenger beare a faire presence though": [0, 65535], "harbenger beare a faire presence though your": [0, 65535], "beare a faire presence though your heart": [0, 65535], "a faire presence though your heart be": [0, 65535], "faire presence though your heart be tainted": [0, 65535], "presence though your heart be tainted teach": [0, 65535], "though your heart be tainted teach sinne": [0, 65535], "your heart be tainted teach sinne the": [0, 65535], "heart be tainted teach sinne the carriage": [0, 65535], "be tainted teach sinne the carriage of": [0, 65535], "tainted teach sinne the carriage of a": [0, 65535], "teach sinne the carriage of a holy": [0, 65535], "sinne the carriage of a holy saint": [0, 65535], "the carriage of a holy saint be": [0, 65535], "carriage of a holy saint be secret": [0, 65535], "of a holy saint be secret false": [0, 65535], "a holy saint be secret false what": [0, 65535], "holy saint be secret false what need": [0, 65535], "saint be secret false what need she": [0, 65535], "be secret false what need she be": [0, 65535], "secret false what need she be acquainted": [0, 65535], "false what need she be acquainted what": [0, 65535], "what need she be acquainted what simple": [0, 65535], "need she be acquainted what simple thiefe": [0, 65535], "she be acquainted what simple thiefe brags": [0, 65535], "be acquainted what simple thiefe brags of": [0, 65535], "acquainted what simple thiefe brags of his": [0, 65535], "what simple thiefe brags of his owne": [0, 65535], "simple thiefe brags of his owne attaine": [0, 65535], "thiefe brags of his owne attaine 'tis": [0, 65535], "brags of his owne attaine 'tis double": [0, 65535], "of his owne attaine 'tis double wrong": [0, 65535], "his owne attaine 'tis double wrong to": [0, 65535], "owne attaine 'tis double wrong to truant": [0, 65535], "attaine 'tis double wrong to truant with": [0, 65535], "'tis double wrong to truant with your": [0, 65535], "double wrong to truant with your bed": [0, 65535], "wrong to truant with your bed and": [0, 65535], "to truant with your bed and let": [0, 65535], "truant with your bed and let her": [0, 65535], "with your bed and let her read": [0, 65535], "your bed and let her read it": [0, 65535], "bed and let her read it in": [0, 65535], "and let her read it in thy": [0, 65535], "let her read it in thy lookes": [0, 65535], "her read it in thy lookes at": [0, 65535], "read it in thy lookes at boord": [0, 65535], "it in thy lookes at boord shame": [0, 65535], "in thy lookes at boord shame hath": [0, 65535], "thy lookes at boord shame hath a": [0, 65535], "lookes at boord shame hath a bastard": [0, 65535], "at boord shame hath a bastard fame": [0, 65535], "boord shame hath a bastard fame well": [0, 65535], "shame hath a bastard fame well managed": [0, 65535], "hath a bastard fame well managed ill": [0, 65535], "a bastard fame well managed ill deeds": [0, 65535], "bastard fame well managed ill deeds is": [0, 65535], "fame well managed ill deeds is doubled": [0, 65535], "well managed ill deeds is doubled with": [0, 65535], "managed ill deeds is doubled with an": [0, 65535], "ill deeds is doubled with an euill": [0, 65535], "deeds is doubled with an euill word": [0, 65535], "is doubled with an euill word alas": [0, 65535], "doubled with an euill word alas poore": [0, 65535], "with an euill word alas poore women": [0, 65535], "an euill word alas poore women make": [0, 65535], "euill word alas poore women make vs": [0, 65535], "word alas poore women make vs not": [0, 65535], "alas poore women make vs not beleeue": [0, 65535], "poore women make vs not beleeue being": [0, 65535], "women make vs not beleeue being compact": [0, 65535], "make vs not beleeue being compact of": [0, 65535], "vs not beleeue being compact of credit": [0, 65535], "not beleeue being compact of credit that": [0, 65535], "beleeue being compact of credit that you": [0, 65535], "being compact of credit that you loue": [0, 65535], "compact of credit that you loue vs": [0, 65535], "of credit that you loue vs though": [0, 65535], "credit that you loue vs though others": [0, 65535], "that you loue vs though others haue": [0, 65535], "you loue vs though others haue the": [0, 65535], "loue vs though others haue the arme": [0, 65535], "vs though others haue the arme shew": [0, 65535], "though others haue the arme shew vs": [0, 65535], "others haue the arme shew vs the": [0, 65535], "haue the arme shew vs the sleeue": [0, 65535], "the arme shew vs the sleeue we": [0, 65535], "arme shew vs the sleeue we in": [0, 65535], "shew vs the sleeue we in your": [0, 65535], "vs the sleeue we in your motion": [0, 65535], "the sleeue we in your motion turne": [0, 65535], "sleeue we in your motion turne and": [0, 65535], "we in your motion turne and you": [0, 65535], "in your motion turne and you may": [0, 65535], "your motion turne and you may moue": [0, 65535], "motion turne and you may moue vs": [0, 65535], "turne and you may moue vs then": [0, 65535], "and you may moue vs then gentle": [0, 65535], "you may moue vs then gentle brother": [0, 65535], "may moue vs then gentle brother get": [0, 65535], "moue vs then gentle brother get you": [0, 65535], "vs then gentle brother get you in": [0, 65535], "then gentle brother get you in againe": [0, 65535], "gentle brother get you in againe comfort": [0, 65535], "brother get you in againe comfort my": [0, 65535], "get you in againe comfort my sister": [0, 65535], "you in againe comfort my sister cheere": [0, 65535], "in againe comfort my sister cheere her": [0, 65535], "againe comfort my sister cheere her call": [0, 65535], "comfort my sister cheere her call her": [0, 65535], "my sister cheere her call her wise": [0, 65535], "sister cheere her call her wise 'tis": [0, 65535], "cheere her call her wise 'tis holy": [0, 65535], "her call her wise 'tis holy sport": [0, 65535], "call her wise 'tis holy sport to": [0, 65535], "her wise 'tis holy sport to be": [0, 65535], "wise 'tis holy sport to be a": [0, 65535], "'tis holy sport to be a little": [0, 65535], "holy sport to be a little vaine": [0, 65535], "sport to be a little vaine when": [0, 65535], "to be a little vaine when the": [0, 65535], "be a little vaine when the sweet": [0, 65535], "a little vaine when the sweet breath": [0, 65535], "little vaine when the sweet breath of": [0, 65535], "vaine when the sweet breath of flatterie": [0, 65535], "when the sweet breath of flatterie conquers": [0, 65535], "the sweet breath of flatterie conquers strife": [0, 65535], "sweet breath of flatterie conquers strife s": [0, 65535], "breath of flatterie conquers strife s anti": [0, 65535], "of flatterie conquers strife s anti sweete": [0, 65535], "flatterie conquers strife s anti sweete mistris": [0, 65535], "conquers strife s anti sweete mistris what": [0, 65535], "strife s anti sweete mistris what your": [0, 65535], "s anti sweete mistris what your name": [0, 65535], "anti sweete mistris what your name is": [0, 65535], "sweete mistris what your name is else": [0, 65535], "mistris what your name is else i": [0, 65535], "what your name is else i know": [0, 65535], "your name is else i know not": [0, 65535], "name is else i know not nor": [0, 65535], "is else i know not nor by": [0, 65535], "else i know not nor by what": [0, 65535], "i know not nor by what wonder": [0, 65535], "know not nor by what wonder you": [0, 65535], "not nor by what wonder you do": [0, 65535], "nor by what wonder you do hit": [0, 65535], "by what wonder you do hit of": [0, 65535], "what wonder you do hit of mine": [0, 65535], "wonder you do hit of mine lesse": [0, 65535], "you do hit of mine lesse in": [0, 65535], "do hit of mine lesse in your": [0, 65535], "hit of mine lesse in your knowledge": [0, 65535], "of mine lesse in your knowledge and": [0, 65535], "mine lesse in your knowledge and your": [0, 65535], "lesse in your knowledge and your grace": [0, 65535], "in your knowledge and your grace you": [0, 65535], "your knowledge and your grace you show": [0, 65535], "knowledge and your grace you show not": [0, 65535], "and your grace you show not then": [0, 65535], "your grace you show not then our": [0, 65535], "grace you show not then our earths": [0, 65535], "you show not then our earths wonder": [0, 65535], "show not then our earths wonder more": [0, 65535], "not then our earths wonder more then": [0, 65535], "then our earths wonder more then earth": [0, 65535], "our earths wonder more then earth diuine": [0, 65535], "earths wonder more then earth diuine teach": [0, 65535], "wonder more then earth diuine teach me": [0, 65535], "more then earth diuine teach me deere": [0, 65535], "then earth diuine teach me deere creature": [0, 65535], "earth diuine teach me deere creature how": [0, 65535], "diuine teach me deere creature how to": [0, 65535], "teach me deere creature how to thinke": [0, 65535], "me deere creature how to thinke and": [0, 65535], "deere creature how to thinke and speake": [0, 65535], "creature how to thinke and speake lay": [0, 65535], "how to thinke and speake lay open": [0, 65535], "to thinke and speake lay open to": [0, 65535], "thinke and speake lay open to my": [0, 65535], "and speake lay open to my earthie": [0, 65535], "speake lay open to my earthie grosse": [0, 65535], "lay open to my earthie grosse conceit": [0, 65535], "open to my earthie grosse conceit smothred": [0, 65535], "to my earthie grosse conceit smothred in": [0, 65535], "my earthie grosse conceit smothred in errors": [0, 65535], "earthie grosse conceit smothred in errors feeble": [0, 65535], "grosse conceit smothred in errors feeble shallow": [0, 65535], "conceit smothred in errors feeble shallow weake": [0, 65535], "smothred in errors feeble shallow weake the": [0, 65535], "in errors feeble shallow weake the foulded": [0, 65535], "errors feeble shallow weake the foulded meaning": [0, 65535], "feeble shallow weake the foulded meaning of": [0, 65535], "shallow weake the foulded meaning of your": [0, 65535], "weake the foulded meaning of your words": [0, 65535], "the foulded meaning of your words deceit": [0, 65535], "foulded meaning of your words deceit against": [0, 65535], "meaning of your words deceit against my": [0, 65535], "of your words deceit against my soules": [0, 65535], "your words deceit against my soules pure": [0, 65535], "words deceit against my soules pure truth": [0, 65535], "deceit against my soules pure truth why": [0, 65535], "against my soules pure truth why labour": [0, 65535], "my soules pure truth why labour you": [0, 65535], "soules pure truth why labour you to": [0, 65535], "pure truth why labour you to make": [0, 65535], "truth why labour you to make it": [0, 65535], "why labour you to make it wander": [0, 65535], "labour you to make it wander in": [0, 65535], "you to make it wander in an": [0, 65535], "to make it wander in an vnknowne": [0, 65535], "make it wander in an vnknowne field": [0, 65535], "it wander in an vnknowne field are": [0, 65535], "wander in an vnknowne field are you": [0, 65535], "in an vnknowne field are you a": [0, 65535], "an vnknowne field are you a god": [0, 65535], "vnknowne field are you a god would": [0, 65535], "field are you a god would you": [0, 65535], "are you a god would you create": [0, 65535], "you a god would you create me": [0, 65535], "a god would you create me new": [0, 65535], "god would you create me new transforme": [0, 65535], "would you create me new transforme me": [0, 65535], "you create me new transforme me then": [0, 65535], "create me new transforme me then and": [0, 65535], "me new transforme me then and to": [0, 65535], "new transforme me then and to your": [0, 65535], "transforme me then and to your powre": [0, 65535], "me then and to your powre ile": [0, 65535], "then and to your powre ile yeeld": [0, 65535], "and to your powre ile yeeld but": [0, 65535], "to your powre ile yeeld but if": [0, 65535], "your powre ile yeeld but if that": [0, 65535], "powre ile yeeld but if that i": [0, 65535], "ile yeeld but if that i am": [0, 65535], "yeeld but if that i am i": [0, 65535], "but if that i am i then": [0, 65535], "if that i am i then well": [0, 65535], "that i am i then well i": [0, 65535], "i am i then well i know": [0, 65535], "am i then well i know your": [0, 65535], "i then well i know your weeping": [0, 65535], "then well i know your weeping sister": [0, 65535], "well i know your weeping sister is": [0, 65535], "i know your weeping sister is no": [0, 65535], "know your weeping sister is no wife": [0, 65535], "your weeping sister is no wife of": [0, 65535], "weeping sister is no wife of mine": [0, 65535], "sister is no wife of mine nor": [0, 65535], "is no wife of mine nor to": [0, 65535], "no wife of mine nor to her": [0, 65535], "wife of mine nor to her bed": [0, 65535], "of mine nor to her bed no": [0, 65535], "mine nor to her bed no homage": [0, 65535], "nor to her bed no homage doe": [0, 65535], "to her bed no homage doe i": [0, 65535], "her bed no homage doe i owe": [0, 65535], "bed no homage doe i owe farre": [0, 65535], "no homage doe i owe farre more": [0, 65535], "homage doe i owe farre more farre": [0, 65535], "doe i owe farre more farre more": [0, 65535], "i owe farre more farre more to": [0, 65535], "owe farre more farre more to you": [0, 65535], "farre more farre more to you doe": [0, 65535], "more farre more to you doe i": [0, 65535], "farre more to you doe i decline": [0, 65535], "more to you doe i decline oh": [0, 65535], "to you doe i decline oh traine": [0, 65535], "you doe i decline oh traine me": [0, 65535], "doe i decline oh traine me not": [0, 65535], "i decline oh traine me not sweet": [0, 65535], "decline oh traine me not sweet mermaide": [0, 65535], "oh traine me not sweet mermaide with": [0, 65535], "traine me not sweet mermaide with thy": [0, 65535], "me not sweet mermaide with thy note": [0, 65535], "not sweet mermaide with thy note to": [0, 65535], "sweet mermaide with thy note to drowne": [0, 65535], "mermaide with thy note to drowne me": [0, 65535], "with thy note to drowne me in": [0, 65535], "thy note to drowne me in thy": [0, 65535], "note to drowne me in thy sister": [0, 65535], "to drowne me in thy sister floud": [0, 65535], "drowne me in thy sister floud of": [0, 65535], "me in thy sister floud of teares": [0, 65535], "in thy sister floud of teares sing": [0, 65535], "thy sister floud of teares sing siren": [0, 65535], "sister floud of teares sing siren for": [0, 65535], "floud of teares sing siren for thy": [0, 65535], "of teares sing siren for thy selfe": [0, 65535], "teares sing siren for thy selfe and": [0, 65535], "sing siren for thy selfe and i": [0, 65535], "siren for thy selfe and i will": [0, 65535], "for thy selfe and i will dote": [0, 65535], "thy selfe and i will dote spread": [0, 65535], "selfe and i will dote spread ore": [0, 65535], "and i will dote spread ore the": [0, 65535], "i will dote spread ore the siluer": [0, 65535], "will dote spread ore the siluer waues": [0, 65535], "dote spread ore the siluer waues thy": [0, 65535], "spread ore the siluer waues thy golden": [0, 65535], "ore the siluer waues thy golden haires": [0, 65535], "the siluer waues thy golden haires and": [0, 65535], "siluer waues thy golden haires and as": [0, 65535], "waues thy golden haires and as a": [0, 65535], "thy golden haires and as a bud": [0, 65535], "golden haires and as a bud ile": [0, 65535], "haires and as a bud ile take": [0, 65535], "and as a bud ile take thee": [0, 65535], "as a bud ile take thee and": [0, 65535], "a bud ile take thee and there": [0, 65535], "bud ile take thee and there lie": [0, 65535], "ile take thee and there lie and": [0, 65535], "take thee and there lie and in": [0, 65535], "thee and there lie and in that": [0, 65535], "and there lie and in that glorious": [0, 65535], "there lie and in that glorious supposition": [0, 65535], "lie and in that glorious supposition thinke": [0, 65535], "and in that glorious supposition thinke he": [0, 65535], "in that glorious supposition thinke he gaines": [0, 65535], "that glorious supposition thinke he gaines by": [0, 65535], "glorious supposition thinke he gaines by death": [0, 65535], "supposition thinke he gaines by death that": [0, 65535], "thinke he gaines by death that hath": [0, 65535], "he gaines by death that hath such": [0, 65535], "gaines by death that hath such meanes": [0, 65535], "by death that hath such meanes to": [0, 65535], "death that hath such meanes to die": [0, 65535], "that hath such meanes to die let": [0, 65535], "hath such meanes to die let loue": [0, 65535], "such meanes to die let loue being": [0, 65535], "meanes to die let loue being light": [0, 65535], "to die let loue being light be": [0, 65535], "die let loue being light be drowned": [0, 65535], "let loue being light be drowned if": [0, 65535], "loue being light be drowned if she": [0, 65535], "being light be drowned if she sinke": [0, 65535], "light be drowned if she sinke luc": [0, 65535], "be drowned if she sinke luc what": [0, 65535], "drowned if she sinke luc what are": [0, 65535], "if she sinke luc what are you": [0, 65535], "she sinke luc what are you mad": [0, 65535], "sinke luc what are you mad that": [0, 65535], "luc what are you mad that you": [0, 65535], "what are you mad that you doe": [0, 65535], "are you mad that you doe reason": [0, 65535], "you mad that you doe reason so": [0, 65535], "mad that you doe reason so ant": [0, 65535], "that you doe reason so ant not": [0, 65535], "you doe reason so ant not mad": [0, 65535], "doe reason so ant not mad but": [0, 65535], "reason so ant not mad but mated": [0, 65535], "so ant not mad but mated how": [0, 65535], "ant not mad but mated how i": [0, 65535], "not mad but mated how i doe": [0, 65535], "mad but mated how i doe not": [0, 65535], "but mated how i doe not know": [0, 65535], "mated how i doe not know luc": [0, 65535], "how i doe not know luc it": [0, 65535], "i doe not know luc it is": [0, 65535], "doe not know luc it is a": [0, 65535], "not know luc it is a fault": [0, 65535], "know luc it is a fault that": [0, 65535], "luc it is a fault that springeth": [0, 65535], "it is a fault that springeth from": [0, 65535], "is a fault that springeth from your": [0, 65535], "a fault that springeth from your eie": [0, 65535], "fault that springeth from your eie ant": [0, 65535], "that springeth from your eie ant for": [0, 65535], "springeth from your eie ant for gazing": [0, 65535], "from your eie ant for gazing on": [0, 65535], "your eie ant for gazing on your": [0, 65535], "eie ant for gazing on your beames": [0, 65535], "ant for gazing on your beames faire": [0, 65535], "for gazing on your beames faire sun": [0, 65535], "gazing on your beames faire sun being": [0, 65535], "on your beames faire sun being by": [0, 65535], "your beames faire sun being by luc": [0, 65535], "beames faire sun being by luc gaze": [0, 65535], "faire sun being by luc gaze when": [0, 65535], "sun being by luc gaze when you": [0, 65535], "being by luc gaze when you should": [0, 65535], "by luc gaze when you should and": [0, 65535], "luc gaze when you should and that": [0, 65535], "gaze when you should and that will": [0, 65535], "when you should and that will cleere": [0, 65535], "you should and that will cleere your": [0, 65535], "should and that will cleere your sight": [0, 65535], "and that will cleere your sight ant": [0, 65535], "that will cleere your sight ant as": [0, 65535], "will cleere your sight ant as good": [0, 65535], "cleere your sight ant as good to": [0, 65535], "your sight ant as good to winke": [0, 65535], "sight ant as good to winke sweet": [0, 65535], "ant as good to winke sweet loue": [0, 65535], "as good to winke sweet loue as": [0, 65535], "good to winke sweet loue as looke": [0, 65535], "to winke sweet loue as looke on": [0, 65535], "winke sweet loue as looke on night": [0, 65535], "sweet loue as looke on night luc": [0, 65535], "loue as looke on night luc why": [0, 65535], "as looke on night luc why call": [0, 65535], "looke on night luc why call you": [0, 65535], "on night luc why call you me": [0, 65535], "night luc why call you me loue": [0, 65535], "luc why call you me loue call": [0, 65535], "why call you me loue call my": [0, 65535], "call you me loue call my sister": [0, 65535], "you me loue call my sister so": [0, 65535], "me loue call my sister so ant": [0, 65535], "loue call my sister so ant thy": [0, 65535], "call my sister so ant thy sisters": [0, 65535], "my sister so ant thy sisters sister": [0, 65535], "sister so ant thy sisters sister luc": [0, 65535], "so ant thy sisters sister luc that's": [0, 65535], "ant thy sisters sister luc that's my": [0, 65535], "thy sisters sister luc that's my sister": [0, 65535], "sisters sister luc that's my sister ant": [0, 65535], "sister luc that's my sister ant no": [0, 65535], "luc that's my sister ant no it": [0, 65535], "that's my sister ant no it is": [0, 65535], "my sister ant no it is thy": [0, 65535], "sister ant no it is thy selfe": [0, 65535], "ant no it is thy selfe mine": [0, 65535], "no it is thy selfe mine owne": [0, 65535], "it is thy selfe mine owne selfes": [0, 65535], "is thy selfe mine owne selfes better": [0, 65535], "thy selfe mine owne selfes better part": [0, 65535], "selfe mine owne selfes better part mine": [0, 65535], "mine owne selfes better part mine eies": [0, 65535], "owne selfes better part mine eies cleere": [0, 65535], "selfes better part mine eies cleere eie": [0, 65535], "better part mine eies cleere eie my": [0, 65535], "part mine eies cleere eie my deere": [0, 65535], "mine eies cleere eie my deere hearts": [0, 65535], "eies cleere eie my deere hearts deerer": [0, 65535], "cleere eie my deere hearts deerer heart": [0, 65535], "eie my deere hearts deerer heart my": [0, 65535], "my deere hearts deerer heart my foode": [0, 65535], "deere hearts deerer heart my foode my": [0, 65535], "hearts deerer heart my foode my fortune": [0, 65535], "deerer heart my foode my fortune and": [0, 65535], "heart my foode my fortune and my": [0, 65535], "my foode my fortune and my sweet": [0, 65535], "foode my fortune and my sweet hopes": [0, 65535], "my fortune and my sweet hopes aime": [0, 65535], "fortune and my sweet hopes aime my": [0, 65535], "and my sweet hopes aime my sole": [0, 65535], "my sweet hopes aime my sole earths": [0, 65535], "sweet hopes aime my sole earths heauen": [0, 65535], "hopes aime my sole earths heauen and": [0, 65535], "aime my sole earths heauen and my": [0, 65535], "my sole earths heauen and my heauens": [0, 65535], "sole earths heauen and my heauens claime": [0, 65535], "earths heauen and my heauens claime luc": [0, 65535], "heauen and my heauens claime luc all": [0, 65535], "and my heauens claime luc all this": [0, 65535], "my heauens claime luc all this my": [0, 65535], "heauens claime luc all this my sister": [0, 65535], "claime luc all this my sister is": [0, 65535], "luc all this my sister is or": [0, 65535], "all this my sister is or else": [0, 65535], "this my sister is or else should": [0, 65535], "my sister is or else should be": [0, 65535], "sister is or else should be ant": [0, 65535], "is or else should be ant call": [0, 65535], "or else should be ant call thy": [0, 65535], "else should be ant call thy selfe": [0, 65535], "should be ant call thy selfe sister": [0, 65535], "be ant call thy selfe sister sweet": [0, 65535], "ant call thy selfe sister sweet for": [0, 65535], "call thy selfe sister sweet for i": [0, 65535], "thy selfe sister sweet for i am": [0, 65535], "selfe sister sweet for i am thee": [0, 65535], "sister sweet for i am thee thee": [0, 65535], "sweet for i am thee thee will": [0, 65535], "for i am thee thee will i": [0, 65535], "i am thee thee will i loue": [0, 65535], "am thee thee will i loue and": [0, 65535], "thee thee will i loue and with": [0, 65535], "thee will i loue and with thee": [0, 65535], "will i loue and with thee lead": [0, 65535], "i loue and with thee lead my": [0, 65535], "loue and with thee lead my life": [0, 65535], "and with thee lead my life thou": [0, 65535], "with thee lead my life thou hast": [0, 65535], "thee lead my life thou hast no": [0, 65535], "lead my life thou hast no husband": [0, 65535], "my life thou hast no husband yet": [0, 65535], "life thou hast no husband yet nor": [0, 65535], "thou hast no husband yet nor i": [0, 65535], "hast no husband yet nor i no": [0, 65535], "no husband yet nor i no wife": [0, 65535], "husband yet nor i no wife giue": [0, 65535], "yet nor i no wife giue me": [0, 65535], "nor i no wife giue me thy": [0, 65535], "i no wife giue me thy hand": [0, 65535], "no wife giue me thy hand luc": [0, 65535], "wife giue me thy hand luc oh": [0, 65535], "giue me thy hand luc oh soft": [0, 65535], "me thy hand luc oh soft sir": [0, 65535], "thy hand luc oh soft sir hold": [0, 65535], "hand luc oh soft sir hold you": [0, 65535], "luc oh soft sir hold you still": [0, 65535], "oh soft sir hold you still ile": [0, 65535], "soft sir hold you still ile fetch": [0, 65535], "sir hold you still ile fetch my": [0, 65535], "hold you still ile fetch my sister": [0, 65535], "you still ile fetch my sister to": [0, 65535], "still ile fetch my sister to get": [0, 65535], "ile fetch my sister to get her": [0, 65535], "fetch my sister to get her good": [0, 65535], "my sister to get her good will": [0, 65535], "sister to get her good will exit": [0, 65535], "to get her good will exit enter": [0, 65535], "get her good will exit enter dromio": [0, 65535], "her good will exit enter dromio siracusia": [0, 65535], "good will exit enter dromio siracusia ant": [0, 65535], "will exit enter dromio siracusia ant why": [0, 65535], "exit enter dromio siracusia ant why how": [0, 65535], "enter dromio siracusia ant why how now": [0, 65535], "dromio siracusia ant why how now dromio": [0, 65535], "siracusia ant why how now dromio where": [0, 65535], "ant why how now dromio where run'st": [0, 65535], "why how now dromio where run'st thou": [0, 65535], "how now dromio where run'st thou so": [0, 65535], "now dromio where run'st thou so fast": [0, 65535], "dromio where run'st thou so fast s": [0, 65535], "where run'st thou so fast s dro": [0, 65535], "run'st thou so fast s dro doe": [0, 65535], "thou so fast s dro doe you": [0, 65535], "so fast s dro doe you know": [0, 65535], "fast s dro doe you know me": [0, 65535], "s dro doe you know me sir": [0, 65535], "dro doe you know me sir am": [0, 65535], "doe you know me sir am i": [0, 65535], "you know me sir am i dromio": [0, 65535], "know me sir am i dromio am": [0, 65535], "me sir am i dromio am i": [0, 65535], "sir am i dromio am i your": [0, 65535], "am i dromio am i your man": [0, 65535], "i dromio am i your man am": [0, 65535], "dromio am i your man am i": [0, 65535], "am i your man am i my": [0, 65535], "i your man am i my selfe": [0, 65535], "your man am i my selfe ant": [0, 65535], "man am i my selfe ant thou": [0, 65535], "am i my selfe ant thou art": [0, 65535], "i my selfe ant thou art dromio": [0, 65535], "my selfe ant thou art dromio thou": [0, 65535], "selfe ant thou art dromio thou art": [0, 65535], "ant thou art dromio thou art my": [0, 65535], "thou art dromio thou art my man": [0, 65535], "art dromio thou art my man thou": [0, 65535], "dromio thou art my man thou art": [0, 65535], "thou art my man thou art thy": [0, 65535], "art my man thou art thy selfe": [0, 65535], "my man thou art thy selfe dro": [0, 65535], "man thou art thy selfe dro i": [0, 65535], "thou art thy selfe dro i am": [0, 65535], "art thy selfe dro i am an": [0, 65535], "thy selfe dro i am an asse": [0, 65535], "selfe dro i am an asse i": [0, 65535], "dro i am an asse i am": [0, 65535], "i am an asse i am a": [0, 65535], "am an asse i am a womans": [0, 65535], "an asse i am a womans man": [0, 65535], "asse i am a womans man and": [0, 65535], "i am a womans man and besides": [0, 65535], "am a womans man and besides my": [0, 65535], "a womans man and besides my selfe": [0, 65535], "womans man and besides my selfe ant": [0, 65535], "man and besides my selfe ant what": [0, 65535], "and besides my selfe ant what womans": [0, 65535], "besides my selfe ant what womans man": [0, 65535], "my selfe ant what womans man and": [0, 65535], "selfe ant what womans man and how": [0, 65535], "ant what womans man and how besides": [0, 65535], "what womans man and how besides thy": [0, 65535], "womans man and how besides thy selfe": [0, 65535], "man and how besides thy selfe dro": [0, 65535], "and how besides thy selfe dro marrie": [0, 65535], "how besides thy selfe dro marrie sir": [0, 65535], "besides thy selfe dro marrie sir besides": [0, 65535], "thy selfe dro marrie sir besides my": [0, 65535], "selfe dro marrie sir besides my selfe": [0, 65535], "dro marrie sir besides my selfe i": [0, 65535], "marrie sir besides my selfe i am": [0, 65535], "sir besides my selfe i am due": [0, 65535], "besides my selfe i am due to": [0, 65535], "my selfe i am due to a": [0, 65535], "selfe i am due to a woman": [0, 65535], "i am due to a woman one": [0, 65535], "am due to a woman one that": [0, 65535], "due to a woman one that claimes": [0, 65535], "to a woman one that claimes me": [0, 65535], "a woman one that claimes me one": [0, 65535], "woman one that claimes me one that": [0, 65535], "one that claimes me one that haunts": [0, 65535], "that claimes me one that haunts me": [0, 65535], "claimes me one that haunts me one": [0, 65535], "me one that haunts me one that": [0, 65535], "one that haunts me one that will": [0, 65535], "that haunts me one that will haue": [0, 65535], "haunts me one that will haue me": [0, 65535], "me one that will haue me anti": [0, 65535], "one that will haue me anti what": [0, 65535], "that will haue me anti what claime": [0, 65535], "will haue me anti what claime laies": [0, 65535], "haue me anti what claime laies she": [0, 65535], "me anti what claime laies she to": [0, 65535], "anti what claime laies she to thee": [0, 65535], "what claime laies she to thee dro": [0, 65535], "claime laies she to thee dro marry": [0, 65535], "laies she to thee dro marry sir": [0, 65535], "she to thee dro marry sir such": [0, 65535], "to thee dro marry sir such claime": [0, 65535], "thee dro marry sir such claime as": [0, 65535], "dro marry sir such claime as you": [0, 65535], "marry sir such claime as you would": [0, 65535], "sir such claime as you would lay": [0, 65535], "such claime as you would lay to": [0, 65535], "claime as you would lay to your": [0, 65535], "as you would lay to your horse": [0, 65535], "you would lay to your horse and": [0, 65535], "would lay to your horse and she": [0, 65535], "lay to your horse and she would": [0, 65535], "to your horse and she would haue": [0, 65535], "your horse and she would haue me": [0, 65535], "horse and she would haue me as": [0, 65535], "and she would haue me as a": [0, 65535], "she would haue me as a beast": [0, 65535], "would haue me as a beast not": [0, 65535], "haue me as a beast not that": [0, 65535], "me as a beast not that i": [0, 65535], "as a beast not that i beeing": [0, 65535], "a beast not that i beeing a": [0, 65535], "beast not that i beeing a beast": [0, 65535], "not that i beeing a beast she": [0, 65535], "that i beeing a beast she would": [0, 65535], "i beeing a beast she would haue": [0, 65535], "beeing a beast she would haue me": [0, 65535], "a beast she would haue me but": [0, 65535], "beast she would haue me but that": [0, 65535], "she would haue me but that she": [0, 65535], "would haue me but that she being": [0, 65535], "haue me but that she being a": [0, 65535], "me but that she being a verie": [0, 65535], "but that she being a verie beastly": [0, 65535], "that she being a verie beastly creature": [0, 65535], "she being a verie beastly creature layes": [0, 65535], "being a verie beastly creature layes claime": [0, 65535], "a verie beastly creature layes claime to": [0, 65535], "verie beastly creature layes claime to me": [0, 65535], "beastly creature layes claime to me anti": [0, 65535], "creature layes claime to me anti what": [0, 65535], "layes claime to me anti what is": [0, 65535], "claime to me anti what is she": [0, 65535], "to me anti what is she dro": [0, 65535], "me anti what is she dro a": [0, 65535], "anti what is she dro a very": [0, 65535], "what is she dro a very reuerent": [0, 65535], "is she dro a very reuerent body": [0, 65535], "she dro a very reuerent body i": [0, 65535], "dro a very reuerent body i such": [0, 65535], "a very reuerent body i such a": [0, 65535], "very reuerent body i such a one": [0, 65535], "reuerent body i such a one as": [0, 65535], "body i such a one as a": [0, 65535], "i such a one as a man": [0, 65535], "such a one as a man may": [0, 65535], "a one as a man may not": [0, 65535], "one as a man may not speake": [0, 65535], "as a man may not speake of": [0, 65535], "a man may not speake of without": [0, 65535], "man may not speake of without he": [0, 65535], "may not speake of without he say": [0, 65535], "not speake of without he say sir": [0, 65535], "speake of without he say sir reuerence": [0, 65535], "of without he say sir reuerence i": [0, 65535], "without he say sir reuerence i haue": [0, 65535], "he say sir reuerence i haue but": [0, 65535], "say sir reuerence i haue but leane": [0, 65535], "sir reuerence i haue but leane lucke": [0, 65535], "reuerence i haue but leane lucke in": [0, 65535], "i haue but leane lucke in the": [0, 65535], "haue but leane lucke in the match": [0, 65535], "but leane lucke in the match and": [0, 65535], "leane lucke in the match and yet": [0, 65535], "lucke in the match and yet is": [0, 65535], "in the match and yet is she": [0, 65535], "the match and yet is she a": [0, 65535], "match and yet is she a wondrous": [0, 65535], "and yet is she a wondrous fat": [0, 65535], "yet is she a wondrous fat marriage": [0, 65535], "is she a wondrous fat marriage anti": [0, 65535], "she a wondrous fat marriage anti how": [0, 65535], "a wondrous fat marriage anti how dost": [0, 65535], "wondrous fat marriage anti how dost thou": [0, 65535], "fat marriage anti how dost thou meane": [0, 65535], "marriage anti how dost thou meane a": [0, 65535], "anti how dost thou meane a fat": [0, 65535], "how dost thou meane a fat marriage": [0, 65535], "dost thou meane a fat marriage dro": [0, 65535], "thou meane a fat marriage dro marry": [0, 65535], "meane a fat marriage dro marry sir": [0, 65535], "a fat marriage dro marry sir she's": [0, 65535], "fat marriage dro marry sir she's the": [0, 65535], "marriage dro marry sir she's the kitchin": [0, 65535], "dro marry sir she's the kitchin wench": [0, 65535], "marry sir she's the kitchin wench al": [0, 65535], "sir she's the kitchin wench al grease": [0, 65535], "she's the kitchin wench al grease and": [0, 65535], "the kitchin wench al grease and i": [0, 65535], "kitchin wench al grease and i know": [0, 65535], "wench al grease and i know not": [0, 65535], "al grease and i know not what": [0, 65535], "grease and i know not what vse": [0, 65535], "and i know not what vse to": [0, 65535], "i know not what vse to put": [0, 65535], "know not what vse to put her": [0, 65535], "not what vse to put her too": [0, 65535], "what vse to put her too but": [0, 65535], "vse to put her too but to": [0, 65535], "to put her too but to make": [0, 65535], "put her too but to make a": [0, 65535], "her too but to make a lampe": [0, 65535], "too but to make a lampe of": [0, 65535], "but to make a lampe of her": [0, 65535], "to make a lampe of her and": [0, 65535], "make a lampe of her and run": [0, 65535], "a lampe of her and run from": [0, 65535], "lampe of her and run from her": [0, 65535], "of her and run from her by": [0, 65535], "her and run from her by her": [0, 65535], "and run from her by her owne": [0, 65535], "run from her by her owne light": [0, 65535], "from her by her owne light i": [0, 65535], "her by her owne light i warrant": [0, 65535], "by her owne light i warrant her": [0, 65535], "her owne light i warrant her ragges": [0, 65535], "owne light i warrant her ragges and": [0, 65535], "light i warrant her ragges and the": [0, 65535], "i warrant her ragges and the tallow": [0, 65535], "warrant her ragges and the tallow in": [0, 65535], "her ragges and the tallow in them": [0, 65535], "ragges and the tallow in them will": [0, 65535], "and the tallow in them will burne": [0, 65535], "the tallow in them will burne a": [0, 65535], "tallow in them will burne a poland": [0, 65535], "in them will burne a poland winter": [0, 65535], "them will burne a poland winter if": [0, 65535], "will burne a poland winter if she": [0, 65535], "burne a poland winter if she liues": [0, 65535], "a poland winter if she liues till": [0, 65535], "poland winter if she liues till doomesday": [0, 65535], "winter if she liues till doomesday she'l": [0, 65535], "if she liues till doomesday she'l burne": [0, 65535], "she liues till doomesday she'l burne a": [0, 65535], "liues till doomesday she'l burne a weeke": [0, 65535], "till doomesday she'l burne a weeke longer": [0, 65535], "doomesday she'l burne a weeke longer then": [0, 65535], "she'l burne a weeke longer then the": [0, 65535], "burne a weeke longer then the whole": [0, 65535], "a weeke longer then the whole world": [0, 65535], "weeke longer then the whole world anti": [0, 65535], "longer then the whole world anti what": [0, 65535], "then the whole world anti what complexion": [0, 65535], "the whole world anti what complexion is": [0, 65535], "whole world anti what complexion is she": [0, 65535], "world anti what complexion is she of": [0, 65535], "anti what complexion is she of dro": [0, 65535], "what complexion is she of dro swart": [0, 65535], "complexion is she of dro swart like": [0, 65535], "is she of dro swart like my": [0, 65535], "she of dro swart like my shoo": [0, 65535], "of dro swart like my shoo but": [0, 65535], "dro swart like my shoo but her": [0, 65535], "swart like my shoo but her face": [0, 65535], "like my shoo but her face nothing": [0, 65535], "my shoo but her face nothing like": [0, 65535], "shoo but her face nothing like so": [0, 65535], "but her face nothing like so cleane": [0, 65535], "her face nothing like so cleane kept": [0, 65535], "face nothing like so cleane kept for": [0, 65535], "nothing like so cleane kept for why": [0, 65535], "like so cleane kept for why she": [0, 65535], "so cleane kept for why she sweats": [0, 65535], "cleane kept for why she sweats a": [0, 65535], "kept for why she sweats a man": [0, 65535], "for why she sweats a man may": [0, 65535], "why she sweats a man may goe": [0, 65535], "she sweats a man may goe o": [0, 65535], "sweats a man may goe o uer": [0, 65535], "a man may goe o uer shooes": [0, 65535], "man may goe o uer shooes in": [0, 65535], "may goe o uer shooes in the": [0, 65535], "goe o uer shooes in the grime": [0, 65535], "o uer shooes in the grime of": [0, 65535], "uer shooes in the grime of it": [0, 65535], "shooes in the grime of it anti": [0, 65535], "in the grime of it anti that's": [0, 65535], "the grime of it anti that's a": [0, 65535], "grime of it anti that's a fault": [0, 65535], "of it anti that's a fault that": [0, 65535], "it anti that's a fault that water": [0, 65535], "anti that's a fault that water will": [0, 65535], "that's a fault that water will mend": [0, 65535], "a fault that water will mend dro": [0, 65535], "fault that water will mend dro no": [0, 65535], "that water will mend dro no sir": [0, 65535], "water will mend dro no sir 'tis": [0, 65535], "will mend dro no sir 'tis in": [0, 65535], "mend dro no sir 'tis in graine": [0, 65535], "dro no sir 'tis in graine noahs": [0, 65535], "no sir 'tis in graine noahs flood": [0, 65535], "sir 'tis in graine noahs flood could": [0, 65535], "'tis in graine noahs flood could not": [0, 65535], "in graine noahs flood could not do": [0, 65535], "graine noahs flood could not do it": [0, 65535], "noahs flood could not do it anti": [0, 65535], "flood could not do it anti what's": [0, 65535], "could not do it anti what's her": [0, 65535], "not do it anti what's her name": [0, 65535], "do it anti what's her name dro": [0, 65535], "it anti what's her name dro nell": [0, 65535], "anti what's her name dro nell sir": [0, 65535], "what's her name dro nell sir but": [0, 65535], "her name dro nell sir but her": [0, 65535], "name dro nell sir but her name": [0, 65535], "dro nell sir but her name is": [0, 65535], "nell sir but her name is three": [0, 65535], "sir but her name is three quarters": [0, 65535], "but her name is three quarters that's": [0, 65535], "her name is three quarters that's an": [0, 65535], "name is three quarters that's an ell": [0, 65535], "is three quarters that's an ell and": [0, 65535], "three quarters that's an ell and three": [0, 65535], "quarters that's an ell and three quarters": [0, 65535], "that's an ell and three quarters will": [0, 65535], "an ell and three quarters will not": [0, 65535], "ell and three quarters will not measure": [0, 65535], "and three quarters will not measure her": [0, 65535], "three quarters will not measure her from": [0, 65535], "quarters will not measure her from hip": [0, 65535], "will not measure her from hip to": [0, 65535], "not measure her from hip to hip": [0, 65535], "measure her from hip to hip anti": [0, 65535], "her from hip to hip anti then": [0, 65535], "from hip to hip anti then she": [0, 65535], "hip to hip anti then she beares": [0, 65535], "to hip anti then she beares some": [0, 65535], "hip anti then she beares some bredth": [0, 65535], "anti then she beares some bredth dro": [0, 65535], "then she beares some bredth dro no": [0, 65535], "she beares some bredth dro no longer": [0, 65535], "beares some bredth dro no longer from": [0, 65535], "some bredth dro no longer from head": [0, 65535], "bredth dro no longer from head to": [0, 65535], "dro no longer from head to foot": [0, 65535], "no longer from head to foot then": [0, 65535], "longer from head to foot then from": [0, 65535], "from head to foot then from hippe": [0, 65535], "head to foot then from hippe to": [0, 65535], "to foot then from hippe to hippe": [0, 65535], "foot then from hippe to hippe she": [0, 65535], "then from hippe to hippe she is": [0, 65535], "from hippe to hippe she is sphericall": [0, 65535], "hippe to hippe she is sphericall like": [0, 65535], "to hippe she is sphericall like a": [0, 65535], "hippe she is sphericall like a globe": [0, 65535], "she is sphericall like a globe i": [0, 65535], "is sphericall like a globe i could": [0, 65535], "sphericall like a globe i could find": [0, 65535], "like a globe i could find out": [0, 65535], "a globe i could find out countries": [0, 65535], "globe i could find out countries in": [0, 65535], "i could find out countries in her": [0, 65535], "could find out countries in her anti": [0, 65535], "find out countries in her anti in": [0, 65535], "out countries in her anti in what": [0, 65535], "countries in her anti in what part": [0, 65535], "in her anti in what part of": [0, 65535], "her anti in what part of her": [0, 65535], "anti in what part of her body": [0, 65535], "in what part of her body stands": [0, 65535], "what part of her body stands ireland": [0, 65535], "part of her body stands ireland dro": [0, 65535], "of her body stands ireland dro marry": [0, 65535], "her body stands ireland dro marry sir": [0, 65535], "body stands ireland dro marry sir in": [0, 65535], "stands ireland dro marry sir in her": [0, 65535], "ireland dro marry sir in her buttockes": [0, 65535], "dro marry sir in her buttockes i": [0, 65535], "marry sir in her buttockes i found": [0, 65535], "sir in her buttockes i found it": [0, 65535], "in her buttockes i found it out": [0, 65535], "her buttockes i found it out by": [0, 65535], "buttockes i found it out by the": [0, 65535], "i found it out by the bogges": [0, 65535], "found it out by the bogges ant": [0, 65535], "it out by the bogges ant where": [0, 65535], "out by the bogges ant where scotland": [0, 65535], "by the bogges ant where scotland dro": [0, 65535], "the bogges ant where scotland dro i": [0, 65535], "bogges ant where scotland dro i found": [0, 65535], "ant where scotland dro i found it": [0, 65535], "where scotland dro i found it by": [0, 65535], "scotland dro i found it by the": [0, 65535], "dro i found it by the barrennesse": [0, 65535], "i found it by the barrennesse hard": [0, 65535], "found it by the barrennesse hard in": [0, 65535], "it by the barrennesse hard in the": [0, 65535], "by the barrennesse hard in the palme": [0, 65535], "the barrennesse hard in the palme of": [0, 65535], "barrennesse hard in the palme of the": [0, 65535], "hard in the palme of the hand": [0, 65535], "in the palme of the hand ant": [0, 65535], "the palme of the hand ant where": [0, 65535], "palme of the hand ant where france": [0, 65535], "of the hand ant where france dro": [0, 65535], "the hand ant where france dro in": [0, 65535], "hand ant where france dro in her": [0, 65535], "ant where france dro in her forhead": [0, 65535], "where france dro in her forhead arm'd": [0, 65535], "france dro in her forhead arm'd and": [0, 65535], "dro in her forhead arm'd and reuerted": [0, 65535], "in her forhead arm'd and reuerted making": [0, 65535], "her forhead arm'd and reuerted making warre": [0, 65535], "forhead arm'd and reuerted making warre against": [0, 65535], "arm'd and reuerted making warre against her": [0, 65535], "and reuerted making warre against her heire": [0, 65535], "reuerted making warre against her heire ant": [0, 65535], "making warre against her heire ant where": [0, 65535], "warre against her heire ant where england": [0, 65535], "against her heire ant where england dro": [0, 65535], "her heire ant where england dro i": [0, 65535], "heire ant where england dro i look'd": [0, 65535], "ant where england dro i look'd for": [0, 65535], "where england dro i look'd for the": [0, 65535], "england dro i look'd for the chalkle": [0, 65535], "dro i look'd for the chalkle cliffes": [0, 65535], "i look'd for the chalkle cliffes but": [0, 65535], "look'd for the chalkle cliffes but i": [0, 65535], "for the chalkle cliffes but i could": [0, 65535], "the chalkle cliffes but i could find": [0, 65535], "chalkle cliffes but i could find no": [0, 65535], "cliffes but i could find no whitenesse": [0, 65535], "but i could find no whitenesse in": [0, 65535], "i could find no whitenesse in them": [0, 65535], "could find no whitenesse in them but": [0, 65535], "find no whitenesse in them but i": [0, 65535], "no whitenesse in them but i guesse": [0, 65535], "whitenesse in them but i guesse it": [0, 65535], "in them but i guesse it stood": [0, 65535], "them but i guesse it stood in": [0, 65535], "but i guesse it stood in her": [0, 65535], "i guesse it stood in her chin": [0, 65535], "guesse it stood in her chin by": [0, 65535], "it stood in her chin by the": [0, 65535], "stood in her chin by the salt": [0, 65535], "in her chin by the salt rheume": [0, 65535], "her chin by the salt rheume that": [0, 65535], "chin by the salt rheume that ranne": [0, 65535], "by the salt rheume that ranne betweene": [0, 65535], "the salt rheume that ranne betweene france": [0, 65535], "salt rheume that ranne betweene france and": [0, 65535], "rheume that ranne betweene france and it": [0, 65535], "that ranne betweene france and it ant": [0, 65535], "ranne betweene france and it ant where": [0, 65535], "betweene france and it ant where spaine": [0, 65535], "france and it ant where spaine dro": [0, 65535], "and it ant where spaine dro faith": [0, 65535], "it ant where spaine dro faith i": [0, 65535], "ant where spaine dro faith i saw": [0, 65535], "where spaine dro faith i saw it": [0, 65535], "spaine dro faith i saw it not": [0, 65535], "dro faith i saw it not but": [0, 65535], "faith i saw it not but i": [0, 65535], "i saw it not but i felt": [0, 65535], "saw it not but i felt it": [0, 65535], "it not but i felt it hot": [0, 65535], "not but i felt it hot in": [0, 65535], "but i felt it hot in her": [0, 65535], "i felt it hot in her breth": [0, 65535], "felt it hot in her breth ant": [0, 65535], "it hot in her breth ant where": [0, 65535], "hot in her breth ant where america": [0, 65535], "in her breth ant where america the": [0, 65535], "her breth ant where america the indies": [0, 65535], "breth ant where america the indies dro": [0, 65535], "ant where america the indies dro oh": [0, 65535], "where america the indies dro oh sir": [0, 65535], "america the indies dro oh sir vpon": [0, 65535], "the indies dro oh sir vpon her": [0, 65535], "indies dro oh sir vpon her nose": [0, 65535], "dro oh sir vpon her nose all": [0, 65535], "oh sir vpon her nose all ore": [0, 65535], "sir vpon her nose all ore embellished": [0, 65535], "vpon her nose all ore embellished with": [0, 65535], "her nose all ore embellished with rubies": [0, 65535], "nose all ore embellished with rubies carbuncles": [0, 65535], "all ore embellished with rubies carbuncles saphires": [0, 65535], "ore embellished with rubies carbuncles saphires declining": [0, 65535], "embellished with rubies carbuncles saphires declining their": [0, 65535], "with rubies carbuncles saphires declining their rich": [0, 65535], "rubies carbuncles saphires declining their rich aspect": [0, 65535], "carbuncles saphires declining their rich aspect to": [0, 65535], "saphires declining their rich aspect to the": [0, 65535], "declining their rich aspect to the hot": [0, 65535], "their rich aspect to the hot breath": [0, 65535], "rich aspect to the hot breath of": [0, 65535], "aspect to the hot breath of spaine": [0, 65535], "to the hot breath of spaine who": [0, 65535], "the hot breath of spaine who sent": [0, 65535], "hot breath of spaine who sent whole": [0, 65535], "breath of spaine who sent whole armadoes": [0, 65535], "of spaine who sent whole armadoes of": [0, 65535], "spaine who sent whole armadoes of carrects": [0, 65535], "who sent whole armadoes of carrects to": [0, 65535], "sent whole armadoes of carrects to be": [0, 65535], "whole armadoes of carrects to be ballast": [0, 65535], "armadoes of carrects to be ballast at": [0, 65535], "of carrects to be ballast at her": [0, 65535], "carrects to be ballast at her nose": [0, 65535], "to be ballast at her nose anti": [0, 65535], "be ballast at her nose anti where": [0, 65535], "ballast at her nose anti where stood": [0, 65535], "at her nose anti where stood belgia": [0, 65535], "her nose anti where stood belgia the": [0, 65535], "nose anti where stood belgia the netherlands": [0, 65535], "anti where stood belgia the netherlands dro": [0, 65535], "where stood belgia the netherlands dro oh": [0, 65535], "stood belgia the netherlands dro oh sir": [0, 65535], "belgia the netherlands dro oh sir i": [0, 65535], "the netherlands dro oh sir i did": [0, 65535], "netherlands dro oh sir i did not": [0, 65535], "dro oh sir i did not looke": [0, 65535], "oh sir i did not looke so": [0, 65535], "sir i did not looke so low": [0, 65535], "i did not looke so low to": [0, 65535], "did not looke so low to conclude": [0, 65535], "not looke so low to conclude this": [0, 65535], "looke so low to conclude this drudge": [0, 65535], "so low to conclude this drudge or": [0, 65535], "low to conclude this drudge or diuiner": [0, 65535], "to conclude this drudge or diuiner layd": [0, 65535], "conclude this drudge or diuiner layd claime": [0, 65535], "this drudge or diuiner layd claime to": [0, 65535], "drudge or diuiner layd claime to mee": [0, 65535], "or diuiner layd claime to mee call'd": [0, 65535], "diuiner layd claime to mee call'd mee": [0, 65535], "layd claime to mee call'd mee dromio": [0, 65535], "claime to mee call'd mee dromio swore": [0, 65535], "to mee call'd mee dromio swore i": [0, 65535], "mee call'd mee dromio swore i was": [0, 65535], "call'd mee dromio swore i was assur'd": [0, 65535], "mee dromio swore i was assur'd to": [0, 65535], "dromio swore i was assur'd to her": [0, 65535], "swore i was assur'd to her told": [0, 65535], "i was assur'd to her told me": [0, 65535], "was assur'd to her told me what": [0, 65535], "assur'd to her told me what priuie": [0, 65535], "to her told me what priuie markes": [0, 65535], "her told me what priuie markes i": [0, 65535], "told me what priuie markes i had": [0, 65535], "me what priuie markes i had about": [0, 65535], "what priuie markes i had about mee": [0, 65535], "priuie markes i had about mee as": [0, 65535], "markes i had about mee as the": [0, 65535], "i had about mee as the marke": [0, 65535], "had about mee as the marke of": [0, 65535], "about mee as the marke of my": [0, 65535], "mee as the marke of my shoulder": [0, 65535], "as the marke of my shoulder the": [0, 65535], "the marke of my shoulder the mole": [0, 65535], "marke of my shoulder the mole in": [0, 65535], "of my shoulder the mole in my": [0, 65535], "my shoulder the mole in my necke": [0, 65535], "shoulder the mole in my necke the": [0, 65535], "the mole in my necke the great": [0, 65535], "mole in my necke the great wart": [0, 65535], "in my necke the great wart on": [0, 65535], "my necke the great wart on my": [0, 65535], "necke the great wart on my left": [0, 65535], "the great wart on my left arme": [0, 65535], "great wart on my left arme that": [0, 65535], "wart on my left arme that i": [0, 65535], "on my left arme that i amaz'd": [0, 65535], "my left arme that i amaz'd ranne": [0, 65535], "left arme that i amaz'd ranne from": [0, 65535], "arme that i amaz'd ranne from her": [0, 65535], "that i amaz'd ranne from her as": [0, 65535], "i amaz'd ranne from her as a": [0, 65535], "amaz'd ranne from her as a witch": [0, 65535], "ranne from her as a witch and": [0, 65535], "from her as a witch and i": [0, 65535], "her as a witch and i thinke": [0, 65535], "as a witch and i thinke if": [0, 65535], "a witch and i thinke if my": [0, 65535], "witch and i thinke if my brest": [0, 65535], "and i thinke if my brest had": [0, 65535], "i thinke if my brest had not": [0, 65535], "thinke if my brest had not beene": [0, 65535], "if my brest had not beene made": [0, 65535], "my brest had not beene made of": [0, 65535], "brest had not beene made of faith": [0, 65535], "had not beene made of faith and": [0, 65535], "not beene made of faith and my": [0, 65535], "beene made of faith and my heart": [0, 65535], "made of faith and my heart of": [0, 65535], "of faith and my heart of steele": [0, 65535], "faith and my heart of steele she": [0, 65535], "and my heart of steele she had": [0, 65535], "my heart of steele she had transform'd": [0, 65535], "heart of steele she had transform'd me": [0, 65535], "of steele she had transform'd me to": [0, 65535], "steele she had transform'd me to a": [0, 65535], "she had transform'd me to a curtull": [0, 65535], "had transform'd me to a curtull dog": [0, 65535], "transform'd me to a curtull dog made": [0, 65535], "me to a curtull dog made me": [0, 65535], "to a curtull dog made me turne": [0, 65535], "a curtull dog made me turne i'th": [0, 65535], "curtull dog made me turne i'th wheele": [0, 65535], "dog made me turne i'th wheele anti": [0, 65535], "made me turne i'th wheele anti go": [0, 65535], "me turne i'th wheele anti go hie": [0, 65535], "turne i'th wheele anti go hie thee": [0, 65535], "i'th wheele anti go hie thee presently": [0, 65535], "wheele anti go hie thee presently post": [0, 65535], "anti go hie thee presently post to": [0, 65535], "go hie thee presently post to the": [0, 65535], "hie thee presently post to the rode": [0, 65535], "thee presently post to the rode and": [0, 65535], "presently post to the rode and if": [0, 65535], "post to the rode and if the": [0, 65535], "to the rode and if the winde": [0, 65535], "the rode and if the winde blow": [0, 65535], "rode and if the winde blow any": [0, 65535], "and if the winde blow any way": [0, 65535], "if the winde blow any way from": [0, 65535], "the winde blow any way from shore": [0, 65535], "winde blow any way from shore i": [0, 65535], "blow any way from shore i will": [0, 65535], "any way from shore i will not": [0, 65535], "way from shore i will not harbour": [0, 65535], "from shore i will not harbour in": [0, 65535], "shore i will not harbour in this": [0, 65535], "i will not harbour in this towne": [0, 65535], "will not harbour in this towne to": [0, 65535], "not harbour in this towne to night": [0, 65535], "harbour in this towne to night if": [0, 65535], "in this towne to night if any": [0, 65535], "this towne to night if any barke": [0, 65535], "towne to night if any barke put": [0, 65535], "to night if any barke put forth": [0, 65535], "night if any barke put forth come": [0, 65535], "if any barke put forth come to": [0, 65535], "any barke put forth come to the": [0, 65535], "barke put forth come to the mart": [0, 65535], "put forth come to the mart where": [0, 65535], "forth come to the mart where i": [0, 65535], "come to the mart where i will": [0, 65535], "to the mart where i will walke": [0, 65535], "the mart where i will walke till": [0, 65535], "mart where i will walke till thou": [0, 65535], "where i will walke till thou returne": [0, 65535], "i will walke till thou returne to": [0, 65535], "will walke till thou returne to me": [0, 65535], "walke till thou returne to me if": [0, 65535], "till thou returne to me if euerie": [0, 65535], "thou returne to me if euerie one": [0, 65535], "returne to me if euerie one knowes": [0, 65535], "to me if euerie one knowes vs": [0, 65535], "me if euerie one knowes vs and": [0, 65535], "if euerie one knowes vs and we": [0, 65535], "euerie one knowes vs and we know": [0, 65535], "one knowes vs and we know none": [0, 65535], "knowes vs and we know none 'tis": [0, 65535], "vs and we know none 'tis time": [0, 65535], "and we know none 'tis time i": [0, 65535], "we know none 'tis time i thinke": [0, 65535], "know none 'tis time i thinke to": [0, 65535], "none 'tis time i thinke to trudge": [0, 65535], "'tis time i thinke to trudge packe": [0, 65535], "time i thinke to trudge packe and": [0, 65535], "i thinke to trudge packe and be": [0, 65535], "thinke to trudge packe and be gone": [0, 65535], "to trudge packe and be gone dro": [0, 65535], "trudge packe and be gone dro as": [0, 65535], "packe and be gone dro as from": [0, 65535], "and be gone dro as from a": [0, 65535], "be gone dro as from a beare": [0, 65535], "gone dro as from a beare a": [0, 65535], "dro as from a beare a man": [0, 65535], "as from a beare a man would": [0, 65535], "from a beare a man would run": [0, 65535], "a beare a man would run for": [0, 65535], "beare a man would run for life": [0, 65535], "a man would run for life so": [0, 65535], "man would run for life so flie": [0, 65535], "would run for life so flie i": [0, 65535], "run for life so flie i from": [0, 65535], "for life so flie i from her": [0, 65535], "life so flie i from her that": [0, 65535], "so flie i from her that would": [0, 65535], "flie i from her that would be": [0, 65535], "i from her that would be my": [0, 65535], "from her that would be my wife": [0, 65535], "her that would be my wife exit": [0, 65535], "that would be my wife exit anti": [0, 65535], "would be my wife exit anti there's": [0, 65535], "be my wife exit anti there's none": [0, 65535], "my wife exit anti there's none but": [0, 65535], "wife exit anti there's none but witches": [0, 65535], "exit anti there's none but witches do": [0, 65535], "anti there's none but witches do inhabite": [0, 65535], "there's none but witches do inhabite heere": [0, 65535], "none but witches do inhabite heere and": [0, 65535], "but witches do inhabite heere and therefore": [0, 65535], "witches do inhabite heere and therefore 'tis": [0, 65535], "do inhabite heere and therefore 'tis hie": [0, 65535], "inhabite heere and therefore 'tis hie time": [0, 65535], "heere and therefore 'tis hie time that": [0, 65535], "and therefore 'tis hie time that i": [0, 65535], "therefore 'tis hie time that i were": [0, 65535], "'tis hie time that i were hence": [0, 65535], "hie time that i were hence she": [0, 65535], "time that i were hence she that": [0, 65535], "that i were hence she that doth": [0, 65535], "i were hence she that doth call": [0, 65535], "were hence she that doth call me": [0, 65535], "hence she that doth call me husband": [0, 65535], "she that doth call me husband euen": [0, 65535], "that doth call me husband euen my": [0, 65535], "doth call me husband euen my soule": [0, 65535], "call me husband euen my soule doth": [0, 65535], "me husband euen my soule doth for": [0, 65535], "husband euen my soule doth for a": [0, 65535], "euen my soule doth for a wife": [0, 65535], "my soule doth for a wife abhorre": [0, 65535], "soule doth for a wife abhorre but": [0, 65535], "doth for a wife abhorre but her": [0, 65535], "for a wife abhorre but her faire": [0, 65535], "a wife abhorre but her faire sister": [0, 65535], "wife abhorre but her faire sister possest": [0, 65535], "abhorre but her faire sister possest with": [0, 65535], "but her faire sister possest with such": [0, 65535], "her faire sister possest with such a": [0, 65535], "faire sister possest with such a gentle": [0, 65535], "sister possest with such a gentle soueraigne": [0, 65535], "possest with such a gentle soueraigne grace": [0, 65535], "with such a gentle soueraigne grace of": [0, 65535], "such a gentle soueraigne grace of such": [0, 65535], "a gentle soueraigne grace of such inchanting": [0, 65535], "gentle soueraigne grace of such inchanting presence": [0, 65535], "soueraigne grace of such inchanting presence and": [0, 65535], "grace of such inchanting presence and discourse": [0, 65535], "of such inchanting presence and discourse hath": [0, 65535], "such inchanting presence and discourse hath almost": [0, 65535], "inchanting presence and discourse hath almost made": [0, 65535], "presence and discourse hath almost made me": [0, 65535], "and discourse hath almost made me traitor": [0, 65535], "discourse hath almost made me traitor to": [0, 65535], "hath almost made me traitor to my": [0, 65535], "almost made me traitor to my selfe": [0, 65535], "made me traitor to my selfe but": [0, 65535], "me traitor to my selfe but least": [0, 65535], "traitor to my selfe but least my": [0, 65535], "to my selfe but least my selfe": [0, 65535], "my selfe but least my selfe be": [0, 65535], "selfe but least my selfe be guilty": [0, 65535], "but least my selfe be guilty to": [0, 65535], "least my selfe be guilty to selfe": [0, 65535], "my selfe be guilty to selfe wrong": [0, 65535], "selfe be guilty to selfe wrong ile": [0, 65535], "be guilty to selfe wrong ile stop": [0, 65535], "guilty to selfe wrong ile stop mine": [0, 65535], "to selfe wrong ile stop mine eares": [0, 65535], "selfe wrong ile stop mine eares against": [0, 65535], "wrong ile stop mine eares against the": [0, 65535], "ile stop mine eares against the mermaids": [0, 65535], "stop mine eares against the mermaids song": [0, 65535], "mine eares against the mermaids song enter": [0, 65535], "eares against the mermaids song enter angelo": [0, 65535], "against the mermaids song enter angelo with": [0, 65535], "the mermaids song enter angelo with the": [0, 65535], "mermaids song enter angelo with the chaine": [0, 65535], "song enter angelo with the chaine ang": [0, 65535], "enter angelo with the chaine ang mr": [0, 65535], "angelo with the chaine ang mr antipholus": [0, 65535], "with the chaine ang mr antipholus anti": [0, 65535], "the chaine ang mr antipholus anti i": [0, 65535], "chaine ang mr antipholus anti i that's": [0, 65535], "ang mr antipholus anti i that's my": [0, 65535], "mr antipholus anti i that's my name": [0, 65535], "antipholus anti i that's my name ang": [0, 65535], "anti i that's my name ang i": [0, 65535], "i that's my name ang i know": [0, 65535], "that's my name ang i know it": [0, 65535], "my name ang i know it well": [0, 65535], "name ang i know it well sir": [0, 65535], "ang i know it well sir loe": [0, 65535], "i know it well sir loe here's": [0, 65535], "know it well sir loe here's the": [0, 65535], "it well sir loe here's the chaine": [0, 65535], "well sir loe here's the chaine i": [0, 65535], "sir loe here's the chaine i thought": [0, 65535], "loe here's the chaine i thought to": [0, 65535], "here's the chaine i thought to haue": [0, 65535], "the chaine i thought to haue tane": [0, 65535], "chaine i thought to haue tane you": [0, 65535], "i thought to haue tane you at": [0, 65535], "thought to haue tane you at the": [0, 65535], "to haue tane you at the porpentine": [0, 65535], "haue tane you at the porpentine the": [0, 65535], "tane you at the porpentine the chaine": [0, 65535], "you at the porpentine the chaine vnfinish'd": [0, 65535], "at the porpentine the chaine vnfinish'd made": [0, 65535], "the porpentine the chaine vnfinish'd made me": [0, 65535], "porpentine the chaine vnfinish'd made me stay": [0, 65535], "the chaine vnfinish'd made me stay thus": [0, 65535], "chaine vnfinish'd made me stay thus long": [0, 65535], "vnfinish'd made me stay thus long anti": [0, 65535], "made me stay thus long anti what": [0, 65535], "me stay thus long anti what is": [0, 65535], "stay thus long anti what is your": [0, 65535], "thus long anti what is your will": [0, 65535], "long anti what is your will that": [0, 65535], "anti what is your will that i": [0, 65535], "what is your will that i shal": [0, 65535], "is your will that i shal do": [0, 65535], "your will that i shal do with": [0, 65535], "will that i shal do with this": [0, 65535], "that i shal do with this ang": [0, 65535], "i shal do with this ang what": [0, 65535], "shal do with this ang what please": [0, 65535], "do with this ang what please your": [0, 65535], "with this ang what please your selfe": [0, 65535], "this ang what please your selfe sir": [0, 65535], "ang what please your selfe sir i": [0, 65535], "what please your selfe sir i haue": [0, 65535], "please your selfe sir i haue made": [0, 65535], "your selfe sir i haue made it": [0, 65535], "selfe sir i haue made it for": [0, 65535], "sir i haue made it for you": [0, 65535], "i haue made it for you anti": [0, 65535], "haue made it for you anti made": [0, 65535], "made it for you anti made it": [0, 65535], "it for you anti made it for": [0, 65535], "for you anti made it for me": [0, 65535], "you anti made it for me sir": [0, 65535], "anti made it for me sir i": [0, 65535], "made it for me sir i bespoke": [0, 65535], "it for me sir i bespoke it": [0, 65535], "for me sir i bespoke it not": [0, 65535], "me sir i bespoke it not ang": [0, 65535], "sir i bespoke it not ang not": [0, 65535], "i bespoke it not ang not once": [0, 65535], "bespoke it not ang not once nor": [0, 65535], "it not ang not once nor twice": [0, 65535], "not ang not once nor twice but": [0, 65535], "ang not once nor twice but twentie": [0, 65535], "not once nor twice but twentie times": [0, 65535], "once nor twice but twentie times you": [0, 65535], "nor twice but twentie times you haue": [0, 65535], "twice but twentie times you haue go": [0, 65535], "but twentie times you haue go home": [0, 65535], "twentie times you haue go home with": [0, 65535], "times you haue go home with it": [0, 65535], "you haue go home with it and": [0, 65535], "haue go home with it and please": [0, 65535], "go home with it and please your": [0, 65535], "home with it and please your wife": [0, 65535], "with it and please your wife withall": [0, 65535], "it and please your wife withall and": [0, 65535], "and please your wife withall and soone": [0, 65535], "please your wife withall and soone at": [0, 65535], "your wife withall and soone at supper": [0, 65535], "wife withall and soone at supper time": [0, 65535], "withall and soone at supper time ile": [0, 65535], "and soone at supper time ile visit": [0, 65535], "soone at supper time ile visit you": [0, 65535], "at supper time ile visit you and": [0, 65535], "supper time ile visit you and then": [0, 65535], "time ile visit you and then receiue": [0, 65535], "ile visit you and then receiue my": [0, 65535], "visit you and then receiue my money": [0, 65535], "you and then receiue my money for": [0, 65535], "and then receiue my money for the": [0, 65535], "then receiue my money for the chaine": [0, 65535], "receiue my money for the chaine anti": [0, 65535], "my money for the chaine anti i": [0, 65535], "money for the chaine anti i pray": [0, 65535], "for the chaine anti i pray you": [0, 65535], "the chaine anti i pray you sir": [0, 65535], "chaine anti i pray you sir receiue": [0, 65535], "anti i pray you sir receiue the": [0, 65535], "i pray you sir receiue the money": [0, 65535], "pray you sir receiue the money now": [0, 65535], "you sir receiue the money now for": [0, 65535], "sir receiue the money now for feare": [0, 65535], "receiue the money now for feare you": [0, 65535], "the money now for feare you ne're": [0, 65535], "money now for feare you ne're see": [0, 65535], "now for feare you ne're see chaine": [0, 65535], "for feare you ne're see chaine nor": [0, 65535], "feare you ne're see chaine nor mony": [0, 65535], "you ne're see chaine nor mony more": [0, 65535], "ne're see chaine nor mony more ang": [0, 65535], "see chaine nor mony more ang you": [0, 65535], "chaine nor mony more ang you are": [0, 65535], "nor mony more ang you are a": [0, 65535], "mony more ang you are a merry": [0, 65535], "more ang you are a merry man": [0, 65535], "ang you are a merry man sir": [0, 65535], "you are a merry man sir fare": [0, 65535], "are a merry man sir fare you": [0, 65535], "a merry man sir fare you well": [0, 65535], "merry man sir fare you well exit": [0, 65535], "man sir fare you well exit ant": [0, 65535], "sir fare you well exit ant what": [0, 65535], "fare you well exit ant what i": [0, 65535], "you well exit ant what i should": [0, 65535], "well exit ant what i should thinke": [0, 65535], "exit ant what i should thinke of": [0, 65535], "ant what i should thinke of this": [0, 65535], "what i should thinke of this i": [0, 65535], "i should thinke of this i cannot": [0, 65535], "should thinke of this i cannot tell": [0, 65535], "thinke of this i cannot tell but": [0, 65535], "of this i cannot tell but this": [0, 65535], "this i cannot tell but this i": [0, 65535], "i cannot tell but this i thinke": [0, 65535], "cannot tell but this i thinke there's": [0, 65535], "tell but this i thinke there's no": [0, 65535], "but this i thinke there's no man": [0, 65535], "this i thinke there's no man is": [0, 65535], "i thinke there's no man is so": [0, 65535], "thinke there's no man is so vaine": [0, 65535], "there's no man is so vaine that": [0, 65535], "no man is so vaine that would": [0, 65535], "man is so vaine that would refuse": [0, 65535], "is so vaine that would refuse so": [0, 65535], "so vaine that would refuse so faire": [0, 65535], "vaine that would refuse so faire an": [0, 65535], "that would refuse so faire an offer'd": [0, 65535], "would refuse so faire an offer'd chaine": [0, 65535], "refuse so faire an offer'd chaine i": [0, 65535], "so faire an offer'd chaine i see": [0, 65535], "faire an offer'd chaine i see a": [0, 65535], "an offer'd chaine i see a man": [0, 65535], "offer'd chaine i see a man heere": [0, 65535], "chaine i see a man heere needs": [0, 65535], "i see a man heere needs not": [0, 65535], "see a man heere needs not liue": [0, 65535], "a man heere needs not liue by": [0, 65535], "man heere needs not liue by shifts": [0, 65535], "heere needs not liue by shifts when": [0, 65535], "needs not liue by shifts when in": [0, 65535], "not liue by shifts when in the": [0, 65535], "liue by shifts when in the streets": [0, 65535], "by shifts when in the streets he": [0, 65535], "shifts when in the streets he meetes": [0, 65535], "when in the streets he meetes such": [0, 65535], "in the streets he meetes such golden": [0, 65535], "the streets he meetes such golden gifts": [0, 65535], "streets he meetes such golden gifts ile": [0, 65535], "he meetes such golden gifts ile to": [0, 65535], "meetes such golden gifts ile to the": [0, 65535], "such golden gifts ile to the mart": [0, 65535], "golden gifts ile to the mart and": [0, 65535], "gifts ile to the mart and there": [0, 65535], "ile to the mart and there for": [0, 65535], "to the mart and there for dromio": [0, 65535], "the mart and there for dromio stay": [0, 65535], "mart and there for dromio stay if": [0, 65535], "and there for dromio stay if any": [0, 65535], "there for dromio stay if any ship": [0, 65535], "for dromio stay if any ship put": [0, 65535], "dromio stay if any ship put out": [0, 65535], "stay if any ship put out then": [0, 65535], "if any ship put out then straight": [0, 65535], "any ship put out then straight away": [0, 65535], "ship put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of ephesus": [0, 65535], "tertius scena prima enter antipholus of ephesus his": [0, 65535], "scena prima enter antipholus of ephesus his man": [0, 65535], "prima enter antipholus of ephesus his man dromio": [0, 65535], "enter antipholus of ephesus his man dromio angelo": [0, 65535], "antipholus of ephesus his man dromio angelo the": [0, 65535], "of ephesus his man dromio angelo the goldsmith": [0, 65535], "ephesus his man dromio angelo the goldsmith and": [0, 65535], "his man dromio angelo the goldsmith and balthaser": [0, 65535], "man dromio angelo the goldsmith and balthaser the": [0, 65535], "dromio angelo the goldsmith and balthaser the merchant": [0, 65535], "angelo the goldsmith and balthaser the merchant e": [0, 65535], "the goldsmith and balthaser the merchant e anti": [0, 65535], "goldsmith and balthaser the merchant e anti good": [0, 65535], "and balthaser the merchant e anti good signior": [0, 65535], "balthaser the merchant e anti good signior angelo": [0, 65535], "the merchant e anti good signior angelo you": [0, 65535], "merchant e anti good signior angelo you must": [0, 65535], "e anti good signior angelo you must excuse": [0, 65535], "anti good signior angelo you must excuse vs": [0, 65535], "good signior angelo you must excuse vs all": [0, 65535], "signior angelo you must excuse vs all my": [0, 65535], "angelo you must excuse vs all my wife": [0, 65535], "you must excuse vs all my wife is": [0, 65535], "must excuse vs all my wife is shrewish": [0, 65535], "excuse vs all my wife is shrewish when": [0, 65535], "vs all my wife is shrewish when i": [0, 65535], "all my wife is shrewish when i keepe": [0, 65535], "my wife is shrewish when i keepe not": [0, 65535], "wife is shrewish when i keepe not howres": [0, 65535], "is shrewish when i keepe not howres say": [0, 65535], "shrewish when i keepe not howres say that": [0, 65535], "when i keepe not howres say that i": [0, 65535], "i keepe not howres say that i lingerd": [0, 65535], "keepe not howres say that i lingerd with": [0, 65535], "not howres say that i lingerd with you": [0, 65535], "howres say that i lingerd with you at": [0, 65535], "say that i lingerd with you at your": [0, 65535], "that i lingerd with you at your shop": [0, 65535], "i lingerd with you at your shop to": [0, 65535], "lingerd with you at your shop to see": [0, 65535], "with you at your shop to see the": [0, 65535], "you at your shop to see the making": [0, 65535], "at your shop to see the making of": [0, 65535], "your shop to see the making of her": [0, 65535], "shop to see the making of her carkanet": [0, 65535], "to see the making of her carkanet and": [0, 65535], "see the making of her carkanet and that": [0, 65535], "the making of her carkanet and that to": [0, 65535], "making of her carkanet and that to morrow": [0, 65535], "of her carkanet and that to morrow you": [0, 65535], "her carkanet and that to morrow you will": [0, 65535], "carkanet and that to morrow you will bring": [0, 65535], "and that to morrow you will bring it": [0, 65535], "that to morrow you will bring it home": [0, 65535], "to morrow you will bring it home but": [0, 65535], "morrow you will bring it home but here's": [0, 65535], "you will bring it home but here's a": [0, 65535], "will bring it home but here's a villaine": [0, 65535], "bring it home but here's a villaine that": [0, 65535], "it home but here's a villaine that would": [0, 65535], "home but here's a villaine that would face": [0, 65535], "but here's a villaine that would face me": [0, 65535], "here's a villaine that would face me downe": [0, 65535], "a villaine that would face me downe he": [0, 65535], "villaine that would face me downe he met": [0, 65535], "that would face me downe he met me": [0, 65535], "would face me downe he met me on": [0, 65535], "face me downe he met me on the": [0, 65535], "me downe he met me on the mart": [0, 65535], "downe he met me on the mart and": [0, 65535], "he met me on the mart and that": [0, 65535], "met me on the mart and that i": [0, 65535], "me on the mart and that i beat": [0, 65535], "on the mart and that i beat him": [0, 65535], "the mart and that i beat him and": [0, 65535], "mart and that i beat him and charg'd": [0, 65535], "and that i beat him and charg'd him": [0, 65535], "that i beat him and charg'd him with": [0, 65535], "i beat him and charg'd him with a": [0, 65535], "beat him and charg'd him with a thousand": [0, 65535], "him and charg'd him with a thousand markes": [0, 65535], "and charg'd him with a thousand markes in": [0, 65535], "charg'd him with a thousand markes in gold": [0, 65535], "him with a thousand markes in gold and": [0, 65535], "with a thousand markes in gold and that": [0, 65535], "a thousand markes in gold and that i": [0, 65535], "thousand markes in gold and that i did": [0, 65535], "markes in gold and that i did denie": [0, 65535], "in gold and that i did denie my": [0, 65535], "gold and that i did denie my wife": [0, 65535], "and that i did denie my wife and": [0, 65535], "that i did denie my wife and house": [0, 65535], "i did denie my wife and house thou": [0, 65535], "did denie my wife and house thou drunkard": [0, 65535], "denie my wife and house thou drunkard thou": [0, 65535], "my wife and house thou drunkard thou what": [0, 65535], "wife and house thou drunkard thou what didst": [0, 65535], "and house thou drunkard thou what didst thou": [0, 65535], "house thou drunkard thou what didst thou meane": [0, 65535], "thou drunkard thou what didst thou meane by": [0, 65535], "drunkard thou what didst thou meane by this": [0, 65535], "thou what didst thou meane by this e": [0, 65535], "what didst thou meane by this e dro": [0, 65535], "didst thou meane by this e dro say": [0, 65535], "thou meane by this e dro say what": [0, 65535], "meane by this e dro say what you": [0, 65535], "by this e dro say what you wil": [0, 65535], "this e dro say what you wil sir": [0, 65535], "e dro say what you wil sir but": [0, 65535], "dro say what you wil sir but i": [0, 65535], "say what you wil sir but i know": [0, 65535], "what you wil sir but i know what": [0, 65535], "you wil sir but i know what i": [0, 65535], "wil sir but i know what i know": [0, 65535], "sir but i know what i know that": [0, 65535], "but i know what i know that you": [0, 65535], "i know what i know that you beat": [0, 65535], "know what i know that you beat me": [0, 65535], "what i know that you beat me at": [0, 65535], "i know that you beat me at the": [0, 65535], "know that you beat me at the mart": [0, 65535], "that you beat me at the mart i": [0, 65535], "you beat me at the mart i haue": [0, 65535], "beat me at the mart i haue your": [0, 65535], "me at the mart i haue your hand": [0, 65535], "at the mart i haue your hand to": [0, 65535], "the mart i haue your hand to show": [0, 65535], "mart i haue your hand to show if": [0, 65535], "i haue your hand to show if the": [0, 65535], "haue your hand to show if the skin": [0, 65535], "your hand to show if the skin were": [0, 65535], "hand to show if the skin were parchment": [0, 65535], "to show if the skin were parchment the": [0, 65535], "show if the skin were parchment the blows": [0, 65535], "if the skin were parchment the blows you": [0, 65535], "the skin were parchment the blows you gaue": [0, 65535], "skin were parchment the blows you gaue were": [0, 65535], "were parchment the blows you gaue were ink": [0, 65535], "parchment the blows you gaue were ink your": [0, 65535], "the blows you gaue were ink your owne": [0, 65535], "blows you gaue were ink your owne hand": [0, 65535], "you gaue were ink your owne hand writing": [0, 65535], "gaue were ink your owne hand writing would": [0, 65535], "were ink your owne hand writing would tell": [0, 65535], "ink your owne hand writing would tell you": [0, 65535], "your owne hand writing would tell you what": [0, 65535], "owne hand writing would tell you what i": [0, 65535], "hand writing would tell you what i thinke": [0, 65535], "writing would tell you what i thinke e": [0, 65535], "would tell you what i thinke e ant": [0, 65535], "tell you what i thinke e ant i": [0, 65535], "you what i thinke e ant i thinke": [0, 65535], "what i thinke e ant i thinke thou": [0, 65535], "i thinke e ant i thinke thou art": [0, 65535], "thinke e ant i thinke thou art an": [0, 65535], "e ant i thinke thou art an asse": [0, 65535], "ant i thinke thou art an asse e": [0, 65535], "i thinke thou art an asse e dro": [0, 65535], "thinke thou art an asse e dro marry": [0, 65535], "thou art an asse e dro marry so": [0, 65535], "art an asse e dro marry so it": [0, 65535], "an asse e dro marry so it doth": [0, 65535], "asse e dro marry so it doth appeare": [0, 65535], "e dro marry so it doth appeare by": [0, 65535], "dro marry so it doth appeare by the": [0, 65535], "marry so it doth appeare by the wrongs": [0, 65535], "so it doth appeare by the wrongs i": [0, 65535], "it doth appeare by the wrongs i suffer": [0, 65535], "doth appeare by the wrongs i suffer and": [0, 65535], "appeare by the wrongs i suffer and the": [0, 65535], "by the wrongs i suffer and the blowes": [0, 65535], "the wrongs i suffer and the blowes i": [0, 65535], "wrongs i suffer and the blowes i beare": [0, 65535], "i suffer and the blowes i beare i": [0, 65535], "suffer and the blowes i beare i should": [0, 65535], "and the blowes i beare i should kicke": [0, 65535], "the blowes i beare i should kicke being": [0, 65535], "blowes i beare i should kicke being kickt": [0, 65535], "i beare i should kicke being kickt and": [0, 65535], "beare i should kicke being kickt and being": [0, 65535], "i should kicke being kickt and being at": [0, 65535], "should kicke being kickt and being at that": [0, 65535], "kicke being kickt and being at that passe": [0, 65535], "being kickt and being at that passe you": [0, 65535], "kickt and being at that passe you would": [0, 65535], "and being at that passe you would keepe": [0, 65535], "being at that passe you would keepe from": [0, 65535], "at that passe you would keepe from my": [0, 65535], "that passe you would keepe from my heeles": [0, 65535], "passe you would keepe from my heeles and": [0, 65535], "you would keepe from my heeles and beware": [0, 65535], "would keepe from my heeles and beware of": [0, 65535], "keepe from my heeles and beware of an": [0, 65535], "from my heeles and beware of an asse": [0, 65535], "my heeles and beware of an asse e": [0, 65535], "heeles and beware of an asse e an": [0, 65535], "and beware of an asse e an y'are": [0, 65535], "beware of an asse e an y'are sad": [0, 65535], "of an asse e an y'are sad signior": [0, 65535], "an asse e an y'are sad signior balthazar": [0, 65535], "asse e an y'are sad signior balthazar pray": [0, 65535], "e an y'are sad signior balthazar pray god": [0, 65535], "an y'are sad signior balthazar pray god our": [0, 65535], "y'are sad signior balthazar pray god our cheer": [0, 65535], "sad signior balthazar pray god our cheer may": [0, 65535], "signior balthazar pray god our cheer may answer": [0, 65535], "balthazar pray god our cheer may answer my": [0, 65535], "pray god our cheer may answer my good": [0, 65535], "god our cheer may answer my good will": [0, 65535], "our cheer may answer my good will and": [0, 65535], "cheer may answer my good will and your": [0, 65535], "may answer my good will and your good": [0, 65535], "answer my good will and your good welcom": [0, 65535], "my good will and your good welcom here": [0, 65535], "good will and your good welcom here bal": [0, 65535], "will and your good welcom here bal i": [0, 65535], "and your good welcom here bal i hold": [0, 65535], "your good welcom here bal i hold your": [0, 65535], "good welcom here bal i hold your dainties": [0, 65535], "welcom here bal i hold your dainties cheap": [0, 65535], "here bal i hold your dainties cheap sir": [0, 65535], "bal i hold your dainties cheap sir your": [0, 65535], "i hold your dainties cheap sir your welcom": [0, 65535], "hold your dainties cheap sir your welcom deer": [0, 65535], "your dainties cheap sir your welcom deer e": [0, 65535], "dainties cheap sir your welcom deer e an": [0, 65535], "cheap sir your welcom deer e an oh": [0, 65535], "sir your welcom deer e an oh signior": [0, 65535], "your welcom deer e an oh signior balthazar": [0, 65535], "welcom deer e an oh signior balthazar either": [0, 65535], "deer e an oh signior balthazar either at": [0, 65535], "e an oh signior balthazar either at flesh": [0, 65535], "an oh signior balthazar either at flesh or": [0, 65535], "oh signior balthazar either at flesh or fish": [0, 65535], "signior balthazar either at flesh or fish a": [0, 65535], "balthazar either at flesh or fish a table": [0, 65535], "either at flesh or fish a table full": [0, 65535], "at flesh or fish a table full of": [0, 65535], "flesh or fish a table full of welcome": [0, 65535], "or fish a table full of welcome makes": [0, 65535], "fish a table full of welcome makes scarce": [0, 65535], "a table full of welcome makes scarce one": [0, 65535], "table full of welcome makes scarce one dainty": [0, 65535], "full of welcome makes scarce one dainty dish": [0, 65535], "of welcome makes scarce one dainty dish bal": [0, 65535], "welcome makes scarce one dainty dish bal good": [0, 65535], "makes scarce one dainty dish bal good meat": [0, 65535], "scarce one dainty dish bal good meat sir": [0, 65535], "one dainty dish bal good meat sir is": [0, 65535], "dainty dish bal good meat sir is co": [0, 65535], "dish bal good meat sir is co m": [0, 65535], "bal good meat sir is co m mon": [0, 65535], "good meat sir is co m mon that": [0, 65535], "meat sir is co m mon that euery": [0, 65535], "sir is co m mon that euery churle": [0, 65535], "is co m mon that euery churle affords": [0, 65535], "co m mon that euery churle affords anti": [0, 65535], "m mon that euery churle affords anti and": [0, 65535], "mon that euery churle affords anti and welcome": [0, 65535], "that euery churle affords anti and welcome more": [0, 65535], "euery churle affords anti and welcome more common": [0, 65535], "churle affords anti and welcome more common for": [0, 65535], "affords anti and welcome more common for thats": [0, 65535], "anti and welcome more common for thats nothing": [0, 65535], "and welcome more common for thats nothing but": [0, 65535], "welcome more common for thats nothing but words": [0, 65535], "more common for thats nothing but words bal": [0, 65535], "common for thats nothing but words bal small": [0, 65535], "for thats nothing but words bal small cheere": [0, 65535], "thats nothing but words bal small cheere and": [0, 65535], "nothing but words bal small cheere and great": [0, 65535], "but words bal small cheere and great welcome": [0, 65535], "words bal small cheere and great welcome makes": [0, 65535], "bal small cheere and great welcome makes a": [0, 65535], "small cheere and great welcome makes a merrie": [0, 65535], "cheere and great welcome makes a merrie feast": [0, 65535], "and great welcome makes a merrie feast anti": [0, 65535], "great welcome makes a merrie feast anti i": [0, 65535], "welcome makes a merrie feast anti i to": [0, 65535], "makes a merrie feast anti i to a": [0, 65535], "a merrie feast anti i to a niggardly": [0, 65535], "merrie feast anti i to a niggardly host": [0, 65535], "feast anti i to a niggardly host and": [0, 65535], "anti i to a niggardly host and more": [0, 65535], "i to a niggardly host and more sparing": [0, 65535], "to a niggardly host and more sparing guest": [0, 65535], "a niggardly host and more sparing guest but": [0, 65535], "niggardly host and more sparing guest but though": [0, 65535], "host and more sparing guest but though my": [0, 65535], "and more sparing guest but though my cates": [0, 65535], "more sparing guest but though my cates be": [0, 65535], "sparing guest but though my cates be meane": [0, 65535], "guest but though my cates be meane take": [0, 65535], "but though my cates be meane take them": [0, 65535], "though my cates be meane take them in": [0, 65535], "my cates be meane take them in good": [0, 65535], "cates be meane take them in good part": [0, 65535], "be meane take them in good part better": [0, 65535], "meane take them in good part better cheere": [0, 65535], "take them in good part better cheere may": [0, 65535], "them in good part better cheere may you": [0, 65535], "in good part better cheere may you haue": [0, 65535], "good part better cheere may you haue but": [0, 65535], "part better cheere may you haue but not": [0, 65535], "better cheere may you haue but not with": [0, 65535], "cheere may you haue but not with better": [0, 65535], "may you haue but not with better hart": [0, 65535], "you haue but not with better hart but": [0, 65535], "haue but not with better hart but soft": [0, 65535], "but not with better hart but soft my": [0, 65535], "not with better hart but soft my doore": [0, 65535], "with better hart but soft my doore is": [0, 65535], "better hart but soft my doore is lockt": [0, 65535], "hart but soft my doore is lockt goe": [0, 65535], "but soft my doore is lockt goe bid": [0, 65535], "soft my doore is lockt goe bid them": [0, 65535], "my doore is lockt goe bid them let": [0, 65535], "doore is lockt goe bid them let vs": [0, 65535], "is lockt goe bid them let vs in": [0, 65535], "lockt goe bid them let vs in e": [0, 65535], "goe bid them let vs in e dro": [0, 65535], "bid them let vs in e dro maud": [0, 65535], "them let vs in e dro maud briget": [0, 65535], "let vs in e dro maud briget marian": [0, 65535], "vs in e dro maud briget marian cisley": [0, 65535], "in e dro maud briget marian cisley gillian": [0, 65535], "e dro maud briget marian cisley gillian ginn": [0, 65535], "dro maud briget marian cisley gillian ginn s": [0, 65535], "maud briget marian cisley gillian ginn s dro": [0, 65535], "briget marian cisley gillian ginn s dro mome": [0, 65535], "marian cisley gillian ginn s dro mome malthorse": [0, 65535], "cisley gillian ginn s dro mome malthorse capon": [0, 65535], "gillian ginn s dro mome malthorse capon coxcombe": [0, 65535], "ginn s dro mome malthorse capon coxcombe idiot": [0, 65535], "s dro mome malthorse capon coxcombe idiot patch": [0, 65535], "dro mome malthorse capon coxcombe idiot patch either": [0, 65535], "mome malthorse capon coxcombe idiot patch either get": [0, 65535], "malthorse capon coxcombe idiot patch either get thee": [0, 65535], "capon coxcombe idiot patch either get thee from": [0, 65535], "coxcombe idiot patch either get thee from the": [0, 65535], "idiot patch either get thee from the dore": [0, 65535], "patch either get thee from the dore or": [0, 65535], "either get thee from the dore or sit": [0, 65535], "get thee from the dore or sit downe": [0, 65535], "thee from the dore or sit downe at": [0, 65535], "from the dore or sit downe at the": [0, 65535], "the dore or sit downe at the hatch": [0, 65535], "dore or sit downe at the hatch dost": [0, 65535], "or sit downe at the hatch dost thou": [0, 65535], "sit downe at the hatch dost thou coniure": [0, 65535], "downe at the hatch dost thou coniure for": [0, 65535], "at the hatch dost thou coniure for wenches": [0, 65535], "the hatch dost thou coniure for wenches that": [0, 65535], "hatch dost thou coniure for wenches that thou": [0, 65535], "dost thou coniure for wenches that thou calst": [0, 65535], "thou coniure for wenches that thou calst for": [0, 65535], "coniure for wenches that thou calst for such": [0, 65535], "for wenches that thou calst for such store": [0, 65535], "wenches that thou calst for such store when": [0, 65535], "that thou calst for such store when one": [0, 65535], "thou calst for such store when one is": [0, 65535], "calst for such store when one is one": [0, 65535], "for such store when one is one too": [0, 65535], "such store when one is one too many": [0, 65535], "store when one is one too many goe": [0, 65535], "when one is one too many goe get": [0, 65535], "one is one too many goe get thee": [0, 65535], "is one too many goe get thee from": [0, 65535], "one too many goe get thee from the": [0, 65535], "too many goe get thee from the dore": [0, 65535], "many goe get thee from the dore e": [0, 65535], "goe get thee from the dore e dro": [0, 65535], "get thee from the dore e dro what": [0, 65535], "thee from the dore e dro what patch": [0, 65535], "from the dore e dro what patch is": [0, 65535], "the dore e dro what patch is made": [0, 65535], "dore e dro what patch is made our": [0, 65535], "e dro what patch is made our porter": [0, 65535], "dro what patch is made our porter my": [0, 65535], "what patch is made our porter my master": [0, 65535], "patch is made our porter my master stayes": [0, 65535], "is made our porter my master stayes in": [0, 65535], "made our porter my master stayes in the": [0, 65535], "our porter my master stayes in the street": [0, 65535], "porter my master stayes in the street s": [0, 65535], "my master stayes in the street s dro": [0, 65535], "master stayes in the street s dro let": [0, 65535], "stayes in the street s dro let him": [0, 65535], "in the street s dro let him walke": [0, 65535], "the street s dro let him walke from": [0, 65535], "street s dro let him walke from whence": [0, 65535], "s dro let him walke from whence he": [0, 65535], "dro let him walke from whence he came": [0, 65535], "let him walke from whence he came lest": [0, 65535], "him walke from whence he came lest hee": [0, 65535], "walke from whence he came lest hee catch": [0, 65535], "from whence he came lest hee catch cold": [0, 65535], "whence he came lest hee catch cold on's": [0, 65535], "he came lest hee catch cold on's feet": [0, 65535], "came lest hee catch cold on's feet e": [0, 65535], "lest hee catch cold on's feet e ant": [0, 65535], "hee catch cold on's feet e ant who": [0, 65535], "catch cold on's feet e ant who talks": [0, 65535], "cold on's feet e ant who talks within": [0, 65535], "on's feet e ant who talks within there": [0, 65535], "feet e ant who talks within there hoa": [0, 65535], "e ant who talks within there hoa open": [0, 65535], "ant who talks within there hoa open the": [0, 65535], "who talks within there hoa open the dore": [0, 65535], "talks within there hoa open the dore s": [0, 65535], "within there hoa open the dore s dro": [0, 65535], "there hoa open the dore s dro right": [0, 65535], "hoa open the dore s dro right sir": [0, 65535], "open the dore s dro right sir ile": [0, 65535], "the dore s dro right sir ile tell": [0, 65535], "dore s dro right sir ile tell you": [0, 65535], "s dro right sir ile tell you when": [0, 65535], "dro right sir ile tell you when and": [0, 65535], "right sir ile tell you when and you'll": [0, 65535], "sir ile tell you when and you'll tell": [0, 65535], "ile tell you when and you'll tell me": [0, 65535], "tell you when and you'll tell me wherefore": [0, 65535], "you when and you'll tell me wherefore ant": [0, 65535], "when and you'll tell me wherefore ant wherefore": [0, 65535], "and you'll tell me wherefore ant wherefore for": [0, 65535], "you'll tell me wherefore ant wherefore for my": [0, 65535], "tell me wherefore ant wherefore for my dinner": [0, 65535], "me wherefore ant wherefore for my dinner i": [0, 65535], "wherefore ant wherefore for my dinner i haue": [0, 65535], "ant wherefore for my dinner i haue not": [0, 65535], "wherefore for my dinner i haue not din'd": [0, 65535], "for my dinner i haue not din'd to": [0, 65535], "my dinner i haue not din'd to day": [0, 65535], "dinner i haue not din'd to day s": [0, 65535], "i haue not din'd to day s dro": [0, 65535], "haue not din'd to day s dro nor": [0, 65535], "not din'd to day s dro nor to": [0, 65535], "din'd to day s dro nor to day": [0, 65535], "to day s dro nor to day here": [0, 65535], "day s dro nor to day here you": [0, 65535], "s dro nor to day here you must": [0, 65535], "dro nor to day here you must not": [0, 65535], "nor to day here you must not come": [0, 65535], "to day here you must not come againe": [0, 65535], "day here you must not come againe when": [0, 65535], "here you must not come againe when you": [0, 65535], "you must not come againe when you may": [0, 65535], "must not come againe when you may anti": [0, 65535], "not come againe when you may anti what": [0, 65535], "come againe when you may anti what art": [0, 65535], "againe when you may anti what art thou": [0, 65535], "when you may anti what art thou that": [0, 65535], "you may anti what art thou that keep'st": [0, 65535], "may anti what art thou that keep'st mee": [0, 65535], "anti what art thou that keep'st mee out": [0, 65535], "what art thou that keep'st mee out from": [0, 65535], "art thou that keep'st mee out from the": [0, 65535], "thou that keep'st mee out from the howse": [0, 65535], "that keep'st mee out from the howse i": [0, 65535], "keep'st mee out from the howse i owe": [0, 65535], "mee out from the howse i owe s": [0, 65535], "out from the howse i owe s dro": [0, 65535], "from the howse i owe s dro the": [0, 65535], "the howse i owe s dro the porter": [0, 65535], "howse i owe s dro the porter for": [0, 65535], "i owe s dro the porter for this": [0, 65535], "owe s dro the porter for this time": [0, 65535], "s dro the porter for this time sir": [0, 65535], "dro the porter for this time sir and": [0, 65535], "the porter for this time sir and my": [0, 65535], "porter for this time sir and my name": [0, 65535], "for this time sir and my name is": [0, 65535], "this time sir and my name is dromio": [0, 65535], "time sir and my name is dromio e": [0, 65535], "sir and my name is dromio e dro": [0, 65535], "and my name is dromio e dro o": [0, 65535], "my name is dromio e dro o villaine": [0, 65535], "name is dromio e dro o villaine thou": [0, 65535], "is dromio e dro o villaine thou hast": [0, 65535], "dromio e dro o villaine thou hast stolne": [0, 65535], "e dro o villaine thou hast stolne both": [0, 65535], "dro o villaine thou hast stolne both mine": [0, 65535], "o villaine thou hast stolne both mine office": [0, 65535], "villaine thou hast stolne both mine office and": [0, 65535], "thou hast stolne both mine office and my": [0, 65535], "hast stolne both mine office and my name": [0, 65535], "stolne both mine office and my name the": [0, 65535], "both mine office and my name the one": [0, 65535], "mine office and my name the one nere": [0, 65535], "office and my name the one nere got": [0, 65535], "and my name the one nere got me": [0, 65535], "my name the one nere got me credit": [0, 65535], "name the one nere got me credit the": [0, 65535], "the one nere got me credit the other": [0, 65535], "one nere got me credit the other mickle": [0, 65535], "nere got me credit the other mickle blame": [0, 65535], "got me credit the other mickle blame if": [0, 65535], "me credit the other mickle blame if thou": [0, 65535], "credit the other mickle blame if thou hadst": [0, 65535], "the other mickle blame if thou hadst beene": [0, 65535], "other mickle blame if thou hadst beene dromio": [0, 65535], "mickle blame if thou hadst beene dromio to": [0, 65535], "blame if thou hadst beene dromio to day": [0, 65535], "if thou hadst beene dromio to day in": [0, 65535], "thou hadst beene dromio to day in my": [0, 65535], "hadst beene dromio to day in my place": [0, 65535], "beene dromio to day in my place thou": [0, 65535], "dromio to day in my place thou wouldst": [0, 65535], "to day in my place thou wouldst haue": [0, 65535], "day in my place thou wouldst haue chang'd": [0, 65535], "in my place thou wouldst haue chang'd thy": [0, 65535], "my place thou wouldst haue chang'd thy face": [0, 65535], "place thou wouldst haue chang'd thy face for": [0, 65535], "thou wouldst haue chang'd thy face for a": [0, 65535], "wouldst haue chang'd thy face for a name": [0, 65535], "haue chang'd thy face for a name or": [0, 65535], "chang'd thy face for a name or thy": [0, 65535], "thy face for a name or thy name": [0, 65535], "face for a name or thy name for": [0, 65535], "for a name or thy name for an": [0, 65535], "a name or thy name for an asse": [0, 65535], "name or thy name for an asse enter": [0, 65535], "or thy name for an asse enter luce": [0, 65535], "thy name for an asse enter luce luce": [0, 65535], "name for an asse enter luce luce what": [0, 65535], "for an asse enter luce luce what a": [0, 65535], "an asse enter luce luce what a coile": [0, 65535], "asse enter luce luce what a coile is": [0, 65535], "enter luce luce what a coile is there": [0, 65535], "luce luce what a coile is there dromio": [0, 65535], "luce what a coile is there dromio who": [0, 65535], "what a coile is there dromio who are": [0, 65535], "a coile is there dromio who are those": [0, 65535], "coile is there dromio who are those at": [0, 65535], "is there dromio who are those at the": [0, 65535], "there dromio who are those at the gate": [0, 65535], "dromio who are those at the gate e": [0, 65535], "who are those at the gate e dro": [0, 65535], "are those at the gate e dro let": [0, 65535], "those at the gate e dro let my": [0, 65535], "at the gate e dro let my master": [0, 65535], "the gate e dro let my master in": [0, 65535], "gate e dro let my master in luce": [0, 65535], "e dro let my master in luce luce": [0, 65535], "dro let my master in luce luce faith": [0, 65535], "let my master in luce luce faith no": [0, 65535], "my master in luce luce faith no hee": [0, 65535], "master in luce luce faith no hee comes": [0, 65535], "in luce luce faith no hee comes too": [0, 65535], "luce luce faith no hee comes too late": [0, 65535], "luce faith no hee comes too late and": [0, 65535], "faith no hee comes too late and so": [0, 65535], "no hee comes too late and so tell": [0, 65535], "hee comes too late and so tell your": [0, 65535], "comes too late and so tell your master": [0, 65535], "too late and so tell your master e": [0, 65535], "late and so tell your master e dro": [0, 65535], "and so tell your master e dro o": [0, 65535], "so tell your master e dro o lord": [0, 65535], "tell your master e dro o lord i": [0, 65535], "your master e dro o lord i must": [0, 65535], "master e dro o lord i must laugh": [0, 65535], "e dro o lord i must laugh haue": [0, 65535], "dro o lord i must laugh haue at": [0, 65535], "o lord i must laugh haue at you": [0, 65535], "lord i must laugh haue at you with": [0, 65535], "i must laugh haue at you with a": [0, 65535], "must laugh haue at you with a prouerbe": [0, 65535], "laugh haue at you with a prouerbe shall": [0, 65535], "haue at you with a prouerbe shall i": [0, 65535], "at you with a prouerbe shall i set": [0, 65535], "you with a prouerbe shall i set in": [0, 65535], "with a prouerbe shall i set in my": [0, 65535], "a prouerbe shall i set in my staffe": [0, 65535], "prouerbe shall i set in my staffe luce": [0, 65535], "shall i set in my staffe luce haue": [0, 65535], "i set in my staffe luce haue at": [0, 65535], "set in my staffe luce haue at you": [0, 65535], "in my staffe luce haue at you with": [0, 65535], "my staffe luce haue at you with another": [0, 65535], "staffe luce haue at you with another that's": [0, 65535], "luce haue at you with another that's when": [0, 65535], "haue at you with another that's when can": [0, 65535], "at you with another that's when can you": [0, 65535], "you with another that's when can you tell": [0, 65535], "with another that's when can you tell s": [0, 65535], "another that's when can you tell s dro": [0, 65535], "that's when can you tell s dro if": [0, 65535], "when can you tell s dro if thy": [0, 65535], "can you tell s dro if thy name": [0, 65535], "you tell s dro if thy name be": [0, 65535], "tell s dro if thy name be called": [0, 65535], "s dro if thy name be called luce": [0, 65535], "dro if thy name be called luce luce": [0, 65535], "if thy name be called luce luce thou": [0, 65535], "thy name be called luce luce thou hast": [0, 65535], "name be called luce luce thou hast an": [0, 65535], "be called luce luce thou hast an swer'd": [0, 65535], "called luce luce thou hast an swer'd him": [0, 65535], "luce luce thou hast an swer'd him well": [0, 65535], "luce thou hast an swer'd him well anti": [0, 65535], "thou hast an swer'd him well anti doe": [0, 65535], "hast an swer'd him well anti doe you": [0, 65535], "an swer'd him well anti doe you heare": [0, 65535], "swer'd him well anti doe you heare you": [0, 65535], "him well anti doe you heare you minion": [0, 65535], "well anti doe you heare you minion you'll": [0, 65535], "anti doe you heare you minion you'll let": [0, 65535], "doe you heare you minion you'll let vs": [0, 65535], "you heare you minion you'll let vs in": [0, 65535], "heare you minion you'll let vs in i": [0, 65535], "you minion you'll let vs in i hope": [0, 65535], "minion you'll let vs in i hope luce": [0, 65535], "you'll let vs in i hope luce i": [0, 65535], "let vs in i hope luce i thought": [0, 65535], "vs in i hope luce i thought to": [0, 65535], "in i hope luce i thought to haue": [0, 65535], "i hope luce i thought to haue askt": [0, 65535], "hope luce i thought to haue askt you": [0, 65535], "luce i thought to haue askt you s": [0, 65535], "i thought to haue askt you s dro": [0, 65535], "thought to haue askt you s dro and": [0, 65535], "to haue askt you s dro and you": [0, 65535], "haue askt you s dro and you said": [0, 65535], "askt you s dro and you said no": [0, 65535], "you s dro and you said no e": [0, 65535], "s dro and you said no e dro": [0, 65535], "dro and you said no e dro so": [0, 65535], "and you said no e dro so come": [0, 65535], "you said no e dro so come helpe": [0, 65535], "said no e dro so come helpe well": [0, 65535], "no e dro so come helpe well strooke": [0, 65535], "e dro so come helpe well strooke there": [0, 65535], "dro so come helpe well strooke there was": [0, 65535], "so come helpe well strooke there was blow": [0, 65535], "come helpe well strooke there was blow for": [0, 65535], "helpe well strooke there was blow for blow": [0, 65535], "well strooke there was blow for blow anti": [0, 65535], "strooke there was blow for blow anti thou": [0, 65535], "there was blow for blow anti thou baggage": [0, 65535], "was blow for blow anti thou baggage let": [0, 65535], "blow for blow anti thou baggage let me": [0, 65535], "for blow anti thou baggage let me in": [0, 65535], "blow anti thou baggage let me in luce": [0, 65535], "anti thou baggage let me in luce can": [0, 65535], "thou baggage let me in luce can you": [0, 65535], "baggage let me in luce can you tell": [0, 65535], "let me in luce can you tell for": [0, 65535], "me in luce can you tell for whose": [0, 65535], "in luce can you tell for whose sake": [0, 65535], "luce can you tell for whose sake e": [0, 65535], "can you tell for whose sake e drom": [0, 65535], "you tell for whose sake e drom master": [0, 65535], "tell for whose sake e drom master knocke": [0, 65535], "for whose sake e drom master knocke the": [0, 65535], "whose sake e drom master knocke the doore": [0, 65535], "sake e drom master knocke the doore hard": [0, 65535], "e drom master knocke the doore hard luce": [0, 65535], "drom master knocke the doore hard luce let": [0, 65535], "master knocke the doore hard luce let him": [0, 65535], "knocke the doore hard luce let him knocke": [0, 65535], "the doore hard luce let him knocke till": [0, 65535], "doore hard luce let him knocke till it": [0, 65535], "hard luce let him knocke till it ake": [0, 65535], "luce let him knocke till it ake anti": [0, 65535], "let him knocke till it ake anti you'll": [0, 65535], "him knocke till it ake anti you'll crie": [0, 65535], "knocke till it ake anti you'll crie for": [0, 65535], "till it ake anti you'll crie for this": [0, 65535], "it ake anti you'll crie for this minion": [0, 65535], "ake anti you'll crie for this minion if": [0, 65535], "anti you'll crie for this minion if i": [0, 65535], "you'll crie for this minion if i beat": [0, 65535], "crie for this minion if i beat the": [0, 65535], "for this minion if i beat the doore": [0, 65535], "this minion if i beat the doore downe": [0, 65535], "minion if i beat the doore downe luce": [0, 65535], "if i beat the doore downe luce what": [0, 65535], "i beat the doore downe luce what needs": [0, 65535], "beat the doore downe luce what needs all": [0, 65535], "the doore downe luce what needs all that": [0, 65535], "doore downe luce what needs all that and": [0, 65535], "downe luce what needs all that and a": [0, 65535], "luce what needs all that and a paire": [0, 65535], "what needs all that and a paire of": [0, 65535], "needs all that and a paire of stocks": [0, 65535], "all that and a paire of stocks in": [0, 65535], "that and a paire of stocks in the": [0, 65535], "and a paire of stocks in the towne": [0, 65535], "a paire of stocks in the towne enter": [0, 65535], "paire of stocks in the towne enter adriana": [0, 65535], "of stocks in the towne enter adriana adr": [0, 65535], "stocks in the towne enter adriana adr who": [0, 65535], "in the towne enter adriana adr who is": [0, 65535], "the towne enter adriana adr who is that": [0, 65535], "towne enter adriana adr who is that at": [0, 65535], "enter adriana adr who is that at the": [0, 65535], "adriana adr who is that at the doore": [0, 65535], "adr who is that at the doore that": [0, 65535], "who is that at the doore that keeps": [0, 65535], "is that at the doore that keeps all": [0, 65535], "that at the doore that keeps all this": [0, 65535], "at the doore that keeps all this noise": [0, 65535], "the doore that keeps all this noise s": [0, 65535], "doore that keeps all this noise s dro": [0, 65535], "that keeps all this noise s dro by": [0, 65535], "keeps all this noise s dro by my": [0, 65535], "all this noise s dro by my troth": [0, 65535], "this noise s dro by my troth your": [0, 65535], "noise s dro by my troth your towne": [0, 65535], "s dro by my troth your towne is": [0, 65535], "dro by my troth your towne is troubled": [0, 65535], "by my troth your towne is troubled with": [0, 65535], "my troth your towne is troubled with vnruly": [0, 65535], "troth your towne is troubled with vnruly boies": [0, 65535], "your towne is troubled with vnruly boies anti": [0, 65535], "towne is troubled with vnruly boies anti are": [0, 65535], "is troubled with vnruly boies anti are you": [0, 65535], "troubled with vnruly boies anti are you there": [0, 65535], "with vnruly boies anti are you there wife": [0, 65535], "vnruly boies anti are you there wife you": [0, 65535], "boies anti are you there wife you might": [0, 65535], "anti are you there wife you might haue": [0, 65535], "are you there wife you might haue come": [0, 65535], "you there wife you might haue come before": [0, 65535], "there wife you might haue come before adri": [0, 65535], "wife you might haue come before adri your": [0, 65535], "you might haue come before adri your wife": [0, 65535], "might haue come before adri your wife sir": [0, 65535], "haue come before adri your wife sir knaue": [0, 65535], "come before adri your wife sir knaue go": [0, 65535], "before adri your wife sir knaue go get": [0, 65535], "adri your wife sir knaue go get you": [0, 65535], "your wife sir knaue go get you from": [0, 65535], "wife sir knaue go get you from the": [0, 65535], "sir knaue go get you from the dore": [0, 65535], "knaue go get you from the dore e": [0, 65535], "go get you from the dore e dro": [0, 65535], "get you from the dore e dro if": [0, 65535], "you from the dore e dro if you": [0, 65535], "from the dore e dro if you went": [0, 65535], "the dore e dro if you went in": [0, 65535], "dore e dro if you went in paine": [0, 65535], "e dro if you went in paine master": [0, 65535], "dro if you went in paine master this": [0, 65535], "if you went in paine master this knaue": [0, 65535], "you went in paine master this knaue wold": [0, 65535], "went in paine master this knaue wold goe": [0, 65535], "in paine master this knaue wold goe sore": [0, 65535], "paine master this knaue wold goe sore angelo": [0, 65535], "master this knaue wold goe sore angelo heere": [0, 65535], "this knaue wold goe sore angelo heere is": [0, 65535], "knaue wold goe sore angelo heere is neither": [0, 65535], "wold goe sore angelo heere is neither cheere": [0, 65535], "goe sore angelo heere is neither cheere sir": [0, 65535], "sore angelo heere is neither cheere sir nor": [0, 65535], "angelo heere is neither cheere sir nor welcome": [0, 65535], "heere is neither cheere sir nor welcome we": [0, 65535], "is neither cheere sir nor welcome we would": [0, 65535], "neither cheere sir nor welcome we would faine": [0, 65535], "cheere sir nor welcome we would faine haue": [0, 65535], "sir nor welcome we would faine haue either": [0, 65535], "nor welcome we would faine haue either baltz": [0, 65535], "welcome we would faine haue either baltz in": [0, 65535], "we would faine haue either baltz in debating": [0, 65535], "would faine haue either baltz in debating which": [0, 65535], "faine haue either baltz in debating which was": [0, 65535], "haue either baltz in debating which was best": [0, 65535], "either baltz in debating which was best wee": [0, 65535], "baltz in debating which was best wee shall": [0, 65535], "in debating which was best wee shall part": [0, 65535], "debating which was best wee shall part with": [0, 65535], "which was best wee shall part with neither": [0, 65535], "was best wee shall part with neither e": [0, 65535], "best wee shall part with neither e dro": [0, 65535], "wee shall part with neither e dro they": [0, 65535], "shall part with neither e dro they stand": [0, 65535], "part with neither e dro they stand at": [0, 65535], "with neither e dro they stand at the": [0, 65535], "neither e dro they stand at the doore": [0, 65535], "e dro they stand at the doore master": [0, 65535], "dro they stand at the doore master bid": [0, 65535], "they stand at the doore master bid them": [0, 65535], "stand at the doore master bid them welcome": [0, 65535], "at the doore master bid them welcome hither": [0, 65535], "the doore master bid them welcome hither anti": [0, 65535], "doore master bid them welcome hither anti there": [0, 65535], "master bid them welcome hither anti there is": [0, 65535], "bid them welcome hither anti there is something": [0, 65535], "them welcome hither anti there is something in": [0, 65535], "welcome hither anti there is something in the": [0, 65535], "hither anti there is something in the winde": [0, 65535], "anti there is something in the winde that": [0, 65535], "there is something in the winde that we": [0, 65535], "is something in the winde that we cannot": [0, 65535], "something in the winde that we cannot get": [0, 65535], "in the winde that we cannot get in": [0, 65535], "the winde that we cannot get in e": [0, 65535], "winde that we cannot get in e dro": [0, 65535], "that we cannot get in e dro you": [0, 65535], "we cannot get in e dro you would": [0, 65535], "cannot get in e dro you would say": [0, 65535], "get in e dro you would say so": [0, 65535], "in e dro you would say so master": [0, 65535], "e dro you would say so master if": [0, 65535], "dro you would say so master if your": [0, 65535], "you would say so master if your garments": [0, 65535], "would say so master if your garments were": [0, 65535], "say so master if your garments were thin": [0, 65535], "so master if your garments were thin your": [0, 65535], "master if your garments were thin your cake": [0, 65535], "if your garments were thin your cake here": [0, 65535], "your garments were thin your cake here is": [0, 65535], "garments were thin your cake here is warme": [0, 65535], "were thin your cake here is warme within": [0, 65535], "thin your cake here is warme within you": [0, 65535], "your cake here is warme within you stand": [0, 65535], "cake here is warme within you stand here": [0, 65535], "here is warme within you stand here in": [0, 65535], "is warme within you stand here in the": [0, 65535], "warme within you stand here in the cold": [0, 65535], "within you stand here in the cold it": [0, 65535], "you stand here in the cold it would": [0, 65535], "stand here in the cold it would make": [0, 65535], "here in the cold it would make a": [0, 65535], "in the cold it would make a man": [0, 65535], "the cold it would make a man mad": [0, 65535], "cold it would make a man mad as": [0, 65535], "it would make a man mad as a": [0, 65535], "would make a man mad as a bucke": [0, 65535], "make a man mad as a bucke to": [0, 65535], "a man mad as a bucke to be": [0, 65535], "man mad as a bucke to be so": [0, 65535], "mad as a bucke to be so bought": [0, 65535], "as a bucke to be so bought and": [0, 65535], "a bucke to be so bought and sold": [0, 65535], "bucke to be so bought and sold ant": [0, 65535], "to be so bought and sold ant go": [0, 65535], "be so bought and sold ant go fetch": [0, 65535], "so bought and sold ant go fetch me": [0, 65535], "bought and sold ant go fetch me something": [0, 65535], "and sold ant go fetch me something ile": [0, 65535], "sold ant go fetch me something ile break": [0, 65535], "ant go fetch me something ile break ope": [0, 65535], "go fetch me something ile break ope the": [0, 65535], "fetch me something ile break ope the gate": [0, 65535], "me something ile break ope the gate s": [0, 65535], "something ile break ope the gate s dro": [0, 65535], "ile break ope the gate s dro breake": [0, 65535], "break ope the gate s dro breake any": [0, 65535], "ope the gate s dro breake any breaking": [0, 65535], "the gate s dro breake any breaking here": [0, 65535], "gate s dro breake any breaking here and": [0, 65535], "s dro breake any breaking here and ile": [0, 65535], "dro breake any breaking here and ile breake": [0, 65535], "breake any breaking here and ile breake your": [0, 65535], "any breaking here and ile breake your knaues": [0, 65535], "breaking here and ile breake your knaues pate": [0, 65535], "here and ile breake your knaues pate e": [0, 65535], "and ile breake your knaues pate e dro": [0, 65535], "ile breake your knaues pate e dro a": [0, 65535], "breake your knaues pate e dro a man": [0, 65535], "your knaues pate e dro a man may": [0, 65535], "knaues pate e dro a man may breake": [0, 65535], "pate e dro a man may breake a": [0, 65535], "e dro a man may breake a word": [0, 65535], "dro a man may breake a word with": [0, 65535], "a man may breake a word with your": [0, 65535], "man may breake a word with your sir": [0, 65535], "may breake a word with your sir and": [0, 65535], "breake a word with your sir and words": [0, 65535], "a word with your sir and words are": [0, 65535], "word with your sir and words are but": [0, 65535], "with your sir and words are but winde": [0, 65535], "your sir and words are but winde i": [0, 65535], "sir and words are but winde i and": [0, 65535], "and words are but winde i and breake": [0, 65535], "words are but winde i and breake it": [0, 65535], "are but winde i and breake it in": [0, 65535], "but winde i and breake it in your": [0, 65535], "winde i and breake it in your face": [0, 65535], "i and breake it in your face so": [0, 65535], "and breake it in your face so he": [0, 65535], "breake it in your face so he break": [0, 65535], "it in your face so he break it": [0, 65535], "in your face so he break it not": [0, 65535], "your face so he break it not behinde": [0, 65535], "face so he break it not behinde s": [0, 65535], "so he break it not behinde s dro": [0, 65535], "he break it not behinde s dro it": [0, 65535], "break it not behinde s dro it seemes": [0, 65535], "it not behinde s dro it seemes thou": [0, 65535], "not behinde s dro it seemes thou want'st": [0, 65535], "behinde s dro it seemes thou want'st breaking": [0, 65535], "s dro it seemes thou want'st breaking out": [0, 65535], "dro it seemes thou want'st breaking out vpon": [0, 65535], "it seemes thou want'st breaking out vpon thee": [0, 65535], "seemes thou want'st breaking out vpon thee hinde": [0, 65535], "thou want'st breaking out vpon thee hinde e": [0, 65535], "want'st breaking out vpon thee hinde e dro": [0, 65535], "breaking out vpon thee hinde e dro here's": [0, 65535], "out vpon thee hinde e dro here's too": [0, 65535], "vpon thee hinde e dro here's too much": [0, 65535], "thee hinde e dro here's too much out": [0, 65535], "hinde e dro here's too much out vpon": [0, 65535], "e dro here's too much out vpon thee": [0, 65535], "dro here's too much out vpon thee i": [0, 65535], "here's too much out vpon thee i pray": [0, 65535], "too much out vpon thee i pray thee": [0, 65535], "much out vpon thee i pray thee let": [0, 65535], "out vpon thee i pray thee let me": [0, 65535], "vpon thee i pray thee let me in": [0, 65535], "thee i pray thee let me in s": [0, 65535], "i pray thee let me in s dro": [0, 65535], "pray thee let me in s dro i": [0, 65535], "thee let me in s dro i when": [0, 65535], "let me in s dro i when fowles": [0, 65535], "me in s dro i when fowles haue": [0, 65535], "in s dro i when fowles haue no": [0, 65535], "s dro i when fowles haue no feathers": [0, 65535], "dro i when fowles haue no feathers and": [0, 65535], "i when fowles haue no feathers and fish": [0, 65535], "when fowles haue no feathers and fish haue": [0, 65535], "fowles haue no feathers and fish haue no": [0, 65535], "haue no feathers and fish haue no fin": [0, 65535], "no feathers and fish haue no fin ant": [0, 65535], "feathers and fish haue no fin ant well": [0, 65535], "and fish haue no fin ant well ile": [0, 65535], "fish haue no fin ant well ile breake": [0, 65535], "haue no fin ant well ile breake in": [0, 65535], "no fin ant well ile breake in go": [0, 65535], "fin ant well ile breake in go borrow": [0, 65535], "ant well ile breake in go borrow me": [0, 65535], "well ile breake in go borrow me a": [0, 65535], "ile breake in go borrow me a crow": [0, 65535], "breake in go borrow me a crow e": [0, 65535], "in go borrow me a crow e dro": [0, 65535], "go borrow me a crow e dro a": [0, 65535], "borrow me a crow e dro a crow": [0, 65535], "me a crow e dro a crow without": [0, 65535], "a crow e dro a crow without feather": [0, 65535], "crow e dro a crow without feather master": [0, 65535], "e dro a crow without feather master meane": [0, 65535], "dro a crow without feather master meane you": [0, 65535], "a crow without feather master meane you so": [0, 65535], "crow without feather master meane you so for": [0, 65535], "without feather master meane you so for a": [0, 65535], "feather master meane you so for a fish": [0, 65535], "master meane you so for a fish without": [0, 65535], "meane you so for a fish without a": [0, 65535], "you so for a fish without a finne": [0, 65535], "so for a fish without a finne ther's": [0, 65535], "for a fish without a finne ther's a": [0, 65535], "a fish without a finne ther's a fowle": [0, 65535], "fish without a finne ther's a fowle without": [0, 65535], "without a finne ther's a fowle without a": [0, 65535], "a finne ther's a fowle without a fether": [0, 65535], "finne ther's a fowle without a fether if": [0, 65535], "ther's a fowle without a fether if a": [0, 65535], "a fowle without a fether if a crow": [0, 65535], "fowle without a fether if a crow help": [0, 65535], "without a fether if a crow help vs": [0, 65535], "a fether if a crow help vs in": [0, 65535], "fether if a crow help vs in sirra": [0, 65535], "if a crow help vs in sirra wee'll": [0, 65535], "a crow help vs in sirra wee'll plucke": [0, 65535], "crow help vs in sirra wee'll plucke a": [0, 65535], "help vs in sirra wee'll plucke a crow": [0, 65535], "vs in sirra wee'll plucke a crow together": [0, 65535], "in sirra wee'll plucke a crow together ant": [0, 65535], "sirra wee'll plucke a crow together ant go": [0, 65535], "wee'll plucke a crow together ant go get": [0, 65535], "plucke a crow together ant go get thee": [0, 65535], "a crow together ant go get thee gon": [0, 65535], "crow together ant go get thee gon fetch": [0, 65535], "together ant go get thee gon fetch me": [0, 65535], "ant go get thee gon fetch me an": [0, 65535], "go get thee gon fetch me an iron": [0, 65535], "get thee gon fetch me an iron crow": [0, 65535], "thee gon fetch me an iron crow balth": [0, 65535], "gon fetch me an iron crow balth haue": [0, 65535], "fetch me an iron crow balth haue patience": [0, 65535], "me an iron crow balth haue patience sir": [0, 65535], "an iron crow balth haue patience sir oh": [0, 65535], "iron crow balth haue patience sir oh let": [0, 65535], "crow balth haue patience sir oh let it": [0, 65535], "balth haue patience sir oh let it not": [0, 65535], "haue patience sir oh let it not be": [0, 65535], "patience sir oh let it not be so": [0, 65535], "sir oh let it not be so heerein": [0, 65535], "oh let it not be so heerein you": [0, 65535], "let it not be so heerein you warre": [0, 65535], "it not be so heerein you warre against": [0, 65535], "not be so heerein you warre against your": [0, 65535], "be so heerein you warre against your reputation": [0, 65535], "so heerein you warre against your reputation and": [0, 65535], "heerein you warre against your reputation and draw": [0, 65535], "you warre against your reputation and draw within": [0, 65535], "warre against your reputation and draw within the": [0, 65535], "against your reputation and draw within the compasse": [0, 65535], "your reputation and draw within the compasse of": [0, 65535], "reputation and draw within the compasse of suspect": [0, 65535], "and draw within the compasse of suspect th'": [0, 65535], "draw within the compasse of suspect th' vnuiolated": [0, 65535], "within the compasse of suspect th' vnuiolated honor": [0, 65535], "the compasse of suspect th' vnuiolated honor of": [0, 65535], "compasse of suspect th' vnuiolated honor of your": [0, 65535], "of suspect th' vnuiolated honor of your wife": [0, 65535], "suspect th' vnuiolated honor of your wife once": [0, 65535], "th' vnuiolated honor of your wife once this": [0, 65535], "vnuiolated honor of your wife once this your": [0, 65535], "honor of your wife once this your long": [0, 65535], "of your wife once this your long experience": [0, 65535], "your wife once this your long experience of": [0, 65535], "wife once this your long experience of your": [0, 65535], "once this your long experience of your wisedome": [0, 65535], "this your long experience of your wisedome her": [0, 65535], "your long experience of your wisedome her sober": [0, 65535], "long experience of your wisedome her sober vertue": [0, 65535], "experience of your wisedome her sober vertue yeares": [0, 65535], "of your wisedome her sober vertue yeares and": [0, 65535], "your wisedome her sober vertue yeares and modestie": [0, 65535], "wisedome her sober vertue yeares and modestie plead": [0, 65535], "her sober vertue yeares and modestie plead on": [0, 65535], "sober vertue yeares and modestie plead on your": [0, 65535], "vertue yeares and modestie plead on your part": [0, 65535], "yeares and modestie plead on your part some": [0, 65535], "and modestie plead on your part some cause": [0, 65535], "modestie plead on your part some cause to": [0, 65535], "plead on your part some cause to you": [0, 65535], "on your part some cause to you vnknowne": [0, 65535], "your part some cause to you vnknowne and": [0, 65535], "part some cause to you vnknowne and doubt": [0, 65535], "some cause to you vnknowne and doubt not": [0, 65535], "cause to you vnknowne and doubt not sir": [0, 65535], "to you vnknowne and doubt not sir but": [0, 65535], "you vnknowne and doubt not sir but she": [0, 65535], "vnknowne and doubt not sir but she will": [0, 65535], "and doubt not sir but she will well": [0, 65535], "doubt not sir but she will well excuse": [0, 65535], "not sir but she will well excuse why": [0, 65535], "sir but she will well excuse why at": [0, 65535], "but she will well excuse why at this": [0, 65535], "she will well excuse why at this time": [0, 65535], "will well excuse why at this time the": [0, 65535], "well excuse why at this time the dores": [0, 65535], "excuse why at this time the dores are": [0, 65535], "why at this time the dores are made": [0, 65535], "at this time the dores are made against": [0, 65535], "this time the dores are made against you": [0, 65535], "time the dores are made against you be": [0, 65535], "the dores are made against you be rul'd": [0, 65535], "dores are made against you be rul'd by": [0, 65535], "are made against you be rul'd by me": [0, 65535], "made against you be rul'd by me depart": [0, 65535], "against you be rul'd by me depart in": [0, 65535], "you be rul'd by me depart in patience": [0, 65535], "be rul'd by me depart in patience and": [0, 65535], "rul'd by me depart in patience and let": [0, 65535], "by me depart in patience and let vs": [0, 65535], "me depart in patience and let vs to": [0, 65535], "depart in patience and let vs to the": [0, 65535], "in patience and let vs to the tyger": [0, 65535], "patience and let vs to the tyger all": [0, 65535], "and let vs to the tyger all to": [0, 65535], "let vs to the tyger all to dinner": [0, 65535], "vs to the tyger all to dinner and": [0, 65535], "to the tyger all to dinner and about": [0, 65535], "the tyger all to dinner and about euening": [0, 65535], "tyger all to dinner and about euening come": [0, 65535], "all to dinner and about euening come your": [0, 65535], "to dinner and about euening come your selfe": [0, 65535], "dinner and about euening come your selfe alone": [0, 65535], "and about euening come your selfe alone to": [0, 65535], "about euening come your selfe alone to know": [0, 65535], "euening come your selfe alone to know the": [0, 65535], "come your selfe alone to know the reason": [0, 65535], "your selfe alone to know the reason of": [0, 65535], "selfe alone to know the reason of this": [0, 65535], "alone to know the reason of this strange": [0, 65535], "to know the reason of this strange restraint": [0, 65535], "know the reason of this strange restraint if": [0, 65535], "the reason of this strange restraint if by": [0, 65535], "reason of this strange restraint if by strong": [0, 65535], "of this strange restraint if by strong hand": [0, 65535], "this strange restraint if by strong hand you": [0, 65535], "strange restraint if by strong hand you offer": [0, 65535], "restraint if by strong hand you offer to": [0, 65535], "if by strong hand you offer to breake": [0, 65535], "by strong hand you offer to breake in": [0, 65535], "strong hand you offer to breake in now": [0, 65535], "hand you offer to breake in now in": [0, 65535], "you offer to breake in now in the": [0, 65535], "offer to breake in now in the stirring": [0, 65535], "to breake in now in the stirring passage": [0, 65535], "breake in now in the stirring passage of": [0, 65535], "in now in the stirring passage of the": [0, 65535], "now in the stirring passage of the day": [0, 65535], "in the stirring passage of the day a": [0, 65535], "the stirring passage of the day a vulgar": [0, 65535], "stirring passage of the day a vulgar comment": [0, 65535], "passage of the day a vulgar comment will": [0, 65535], "of the day a vulgar comment will be": [0, 65535], "the day a vulgar comment will be made": [0, 65535], "day a vulgar comment will be made of": [0, 65535], "a vulgar comment will be made of it": [0, 65535], "vulgar comment will be made of it and": [0, 65535], "comment will be made of it and that": [0, 65535], "will be made of it and that supposed": [0, 65535], "be made of it and that supposed by": [0, 65535], "made of it and that supposed by the": [0, 65535], "of it and that supposed by the common": [0, 65535], "it and that supposed by the common rowt": [0, 65535], "and that supposed by the common rowt against": [0, 65535], "that supposed by the common rowt against your": [0, 65535], "supposed by the common rowt against your yet": [0, 65535], "by the common rowt against your yet vngalled": [0, 65535], "the common rowt against your yet vngalled estimation": [0, 65535], "common rowt against your yet vngalled estimation that": [0, 65535], "rowt against your yet vngalled estimation that may": [0, 65535], "against your yet vngalled estimation that may with": [0, 65535], "your yet vngalled estimation that may with foule": [0, 65535], "yet vngalled estimation that may with foule intrusion": [0, 65535], "vngalled estimation that may with foule intrusion enter": [0, 65535], "estimation that may with foule intrusion enter in": [0, 65535], "that may with foule intrusion enter in and": [0, 65535], "may with foule intrusion enter in and dwell": [0, 65535], "with foule intrusion enter in and dwell vpon": [0, 65535], "foule intrusion enter in and dwell vpon your": [0, 65535], "intrusion enter in and dwell vpon your graue": [0, 65535], "enter in and dwell vpon your graue when": [0, 65535], "in and dwell vpon your graue when you": [0, 65535], "and dwell vpon your graue when you are": [0, 65535], "dwell vpon your graue when you are dead": [0, 65535], "vpon your graue when you are dead for": [0, 65535], "your graue when you are dead for slander": [0, 65535], "graue when you are dead for slander liues": [0, 65535], "when you are dead for slander liues vpon": [0, 65535], "you are dead for slander liues vpon succession": [0, 65535], "are dead for slander liues vpon succession for": [0, 65535], "dead for slander liues vpon succession for euer": [0, 65535], "for slander liues vpon succession for euer hows'd": [0, 65535], "slander liues vpon succession for euer hows'd where": [0, 65535], "liues vpon succession for euer hows'd where it": [0, 65535], "vpon succession for euer hows'd where it gets": [0, 65535], "succession for euer hows'd where it gets possession": [0, 65535], "for euer hows'd where it gets possession anti": [0, 65535], "euer hows'd where it gets possession anti you": [0, 65535], "hows'd where it gets possession anti you haue": [0, 65535], "where it gets possession anti you haue preuail'd": [0, 65535], "it gets possession anti you haue preuail'd i": [0, 65535], "gets possession anti you haue preuail'd i will": [0, 65535], "possession anti you haue preuail'd i will depart": [0, 65535], "anti you haue preuail'd i will depart in": [0, 65535], "you haue preuail'd i will depart in quiet": [0, 65535], "haue preuail'd i will depart in quiet and": [0, 65535], "preuail'd i will depart in quiet and in": [0, 65535], "i will depart in quiet and in despight": [0, 65535], "will depart in quiet and in despight of": [0, 65535], "depart in quiet and in despight of mirth": [0, 65535], "in quiet and in despight of mirth meane": [0, 65535], "quiet and in despight of mirth meane to": [0, 65535], "and in despight of mirth meane to be": [0, 65535], "in despight of mirth meane to be merrie": [0, 65535], "despight of mirth meane to be merrie i": [0, 65535], "of mirth meane to be merrie i know": [0, 65535], "mirth meane to be merrie i know a": [0, 65535], "meane to be merrie i know a wench": [0, 65535], "to be merrie i know a wench of": [0, 65535], "be merrie i know a wench of excellent": [0, 65535], "merrie i know a wench of excellent discourse": [0, 65535], "i know a wench of excellent discourse prettie": [0, 65535], "know a wench of excellent discourse prettie and": [0, 65535], "a wench of excellent discourse prettie and wittie": [0, 65535], "wench of excellent discourse prettie and wittie wilde": [0, 65535], "of excellent discourse prettie and wittie wilde and": [0, 65535], "excellent discourse prettie and wittie wilde and yet": [0, 65535], "discourse prettie and wittie wilde and yet too": [0, 65535], "prettie and wittie wilde and yet too gentle": [0, 65535], "and wittie wilde and yet too gentle there": [0, 65535], "wittie wilde and yet too gentle there will": [0, 65535], "wilde and yet too gentle there will we": [0, 65535], "and yet too gentle there will we dine": [0, 65535], "yet too gentle there will we dine this": [0, 65535], "too gentle there will we dine this woman": [0, 65535], "gentle there will we dine this woman that": [0, 65535], "there will we dine this woman that i": [0, 65535], "will we dine this woman that i meane": [0, 65535], "we dine this woman that i meane my": [0, 65535], "dine this woman that i meane my wife": [0, 65535], "this woman that i meane my wife but": [0, 65535], "woman that i meane my wife but i": [0, 65535], "that i meane my wife but i protest": [0, 65535], "i meane my wife but i protest without": [0, 65535], "meane my wife but i protest without desert": [0, 65535], "my wife but i protest without desert hath": [0, 65535], "wife but i protest without desert hath oftentimes": [0, 65535], "but i protest without desert hath oftentimes vpbraided": [0, 65535], "i protest without desert hath oftentimes vpbraided me": [0, 65535], "protest without desert hath oftentimes vpbraided me withall": [0, 65535], "without desert hath oftentimes vpbraided me withall to": [0, 65535], "desert hath oftentimes vpbraided me withall to her": [0, 65535], "hath oftentimes vpbraided me withall to her will": [0, 65535], "oftentimes vpbraided me withall to her will we": [0, 65535], "vpbraided me withall to her will we to": [0, 65535], "me withall to her will we to dinner": [0, 65535], "withall to her will we to dinner get": [0, 65535], "to her will we to dinner get you": [0, 65535], "her will we to dinner get you home": [0, 65535], "will we to dinner get you home and": [0, 65535], "we to dinner get you home and fetch": [0, 65535], "to dinner get you home and fetch the": [0, 65535], "dinner get you home and fetch the chaine": [0, 65535], "get you home and fetch the chaine by": [0, 65535], "you home and fetch the chaine by this": [0, 65535], "home and fetch the chaine by this i": [0, 65535], "and fetch the chaine by this i know": [0, 65535], "fetch the chaine by this i know 'tis": [0, 65535], "the chaine by this i know 'tis made": [0, 65535], "chaine by this i know 'tis made bring": [0, 65535], "by this i know 'tis made bring it": [0, 65535], "this i know 'tis made bring it i": [0, 65535], "i know 'tis made bring it i pray": [0, 65535], "know 'tis made bring it i pray you": [0, 65535], "'tis made bring it i pray you to": [0, 65535], "made bring it i pray you to the": [0, 65535], "bring it i pray you to the porpentine": [0, 65535], "it i pray you to the porpentine for": [0, 65535], "i pray you to the porpentine for there's": [0, 65535], "pray you to the porpentine for there's the": [0, 65535], "you to the porpentine for there's the house": [0, 65535], "to the porpentine for there's the house that": [0, 65535], "the porpentine for there's the house that chaine": [0, 65535], "porpentine for there's the house that chaine will": [0, 65535], "for there's the house that chaine will i": [0, 65535], "there's the house that chaine will i bestow": [0, 65535], "the house that chaine will i bestow be": [0, 65535], "house that chaine will i bestow be it": [0, 65535], "that chaine will i bestow be it for": [0, 65535], "chaine will i bestow be it for nothing": [0, 65535], "will i bestow be it for nothing but": [0, 65535], "i bestow be it for nothing but to": [0, 65535], "bestow be it for nothing but to spight": [0, 65535], "be it for nothing but to spight my": [0, 65535], "it for nothing but to spight my wife": [0, 65535], "for nothing but to spight my wife vpon": [0, 65535], "nothing but to spight my wife vpon mine": [0, 65535], "but to spight my wife vpon mine hostesse": [0, 65535], "to spight my wife vpon mine hostesse there": [0, 65535], "spight my wife vpon mine hostesse there good": [0, 65535], "my wife vpon mine hostesse there good sir": [0, 65535], "wife vpon mine hostesse there good sir make": [0, 65535], "vpon mine hostesse there good sir make haste": [0, 65535], "mine hostesse there good sir make haste since": [0, 65535], "hostesse there good sir make haste since mine": [0, 65535], "there good sir make haste since mine owne": [0, 65535], "good sir make haste since mine owne doores": [0, 65535], "sir make haste since mine owne doores refuse": [0, 65535], "make haste since mine owne doores refuse to": [0, 65535], "haste since mine owne doores refuse to entertaine": [0, 65535], "since mine owne doores refuse to entertaine me": [0, 65535], "mine owne doores refuse to entertaine me ile": [0, 65535], "owne doores refuse to entertaine me ile knocke": [0, 65535], "doores refuse to entertaine me ile knocke else": [0, 65535], "refuse to entertaine me ile knocke else where": [0, 65535], "to entertaine me ile knocke else where to": [0, 65535], "entertaine me ile knocke else where to see": [0, 65535], "me ile knocke else where to see if": [0, 65535], "ile knocke else where to see if they'll": [0, 65535], "knocke else where to see if they'll disdaine": [0, 65535], "else where to see if they'll disdaine me": [0, 65535], "where to see if they'll disdaine me ang": [0, 65535], "to see if they'll disdaine me ang ile": [0, 65535], "see if they'll disdaine me ang ile meet": [0, 65535], "if they'll disdaine me ang ile meet you": [0, 65535], "they'll disdaine me ang ile meet you at": [0, 65535], "disdaine me ang ile meet you at that": [0, 65535], "me ang ile meet you at that place": [0, 65535], "ang ile meet you at that place some": [0, 65535], "ile meet you at that place some houre": [0, 65535], "meet you at that place some houre hence": [0, 65535], "you at that place some houre hence anti": [0, 65535], "at that place some houre hence anti do": [0, 65535], "that place some houre hence anti do so": [0, 65535], "place some houre hence anti do so this": [0, 65535], "some houre hence anti do so this iest": [0, 65535], "houre hence anti do so this iest shall": [0, 65535], "hence anti do so this iest shall cost": [0, 65535], "anti do so this iest shall cost me": [0, 65535], "do so this iest shall cost me some": [0, 65535], "so this iest shall cost me some expence": [0, 65535], "this iest shall cost me some expence exeunt": [0, 65535], "iest shall cost me some expence exeunt enter": [0, 65535], "shall cost me some expence exeunt enter iuliana": [0, 65535], "cost me some expence exeunt enter iuliana with": [0, 65535], "me some expence exeunt enter iuliana with antipholus": [0, 65535], "some expence exeunt enter iuliana with antipholus of": [0, 65535], "expence exeunt enter iuliana with antipholus of siracusia": [0, 65535], "exeunt enter iuliana with antipholus of siracusia iulia": [0, 65535], "enter iuliana with antipholus of siracusia iulia and": [0, 65535], "iuliana with antipholus of siracusia iulia and may": [0, 65535], "with antipholus of siracusia iulia and may it": [0, 65535], "antipholus of siracusia iulia and may it be": [0, 65535], "of siracusia iulia and may it be that": [0, 65535], "siracusia iulia and may it be that you": [0, 65535], "iulia and may it be that you haue": [0, 65535], "and may it be that you haue quite": [0, 65535], "may it be that you haue quite forgot": [0, 65535], "it be that you haue quite forgot a": [0, 65535], "be that you haue quite forgot a husbands": [0, 65535], "that you haue quite forgot a husbands office": [0, 65535], "you haue quite forgot a husbands office shall": [0, 65535], "haue quite forgot a husbands office shall antipholus": [0, 65535], "quite forgot a husbands office shall antipholus euen": [0, 65535], "forgot a husbands office shall antipholus euen in": [0, 65535], "a husbands office shall antipholus euen in the": [0, 65535], "husbands office shall antipholus euen in the spring": [0, 65535], "office shall antipholus euen in the spring of": [0, 65535], "shall antipholus euen in the spring of loue": [0, 65535], "antipholus euen in the spring of loue thy": [0, 65535], "euen in the spring of loue thy loue": [0, 65535], "in the spring of loue thy loue springs": [0, 65535], "the spring of loue thy loue springs rot": [0, 65535], "spring of loue thy loue springs rot shall": [0, 65535], "of loue thy loue springs rot shall loue": [0, 65535], "loue thy loue springs rot shall loue in": [0, 65535], "thy loue springs rot shall loue in buildings": [0, 65535], "loue springs rot shall loue in buildings grow": [0, 65535], "springs rot shall loue in buildings grow so": [0, 65535], "rot shall loue in buildings grow so ruinate": [0, 65535], "shall loue in buildings grow so ruinate if": [0, 65535], "loue in buildings grow so ruinate if you": [0, 65535], "in buildings grow so ruinate if you did": [0, 65535], "buildings grow so ruinate if you did wed": [0, 65535], "grow so ruinate if you did wed my": [0, 65535], "so ruinate if you did wed my sister": [0, 65535], "ruinate if you did wed my sister for": [0, 65535], "if you did wed my sister for her": [0, 65535], "you did wed my sister for her wealth": [0, 65535], "did wed my sister for her wealth then": [0, 65535], "wed my sister for her wealth then for": [0, 65535], "my sister for her wealth then for her": [0, 65535], "sister for her wealth then for her wealths": [0, 65535], "for her wealth then for her wealths sake": [0, 65535], "her wealth then for her wealths sake vse": [0, 65535], "wealth then for her wealths sake vse her": [0, 65535], "then for her wealths sake vse her with": [0, 65535], "for her wealths sake vse her with more": [0, 65535], "her wealths sake vse her with more kindnesse": [0, 65535], "wealths sake vse her with more kindnesse or": [0, 65535], "sake vse her with more kindnesse or if": [0, 65535], "vse her with more kindnesse or if you": [0, 65535], "her with more kindnesse or if you like": [0, 65535], "with more kindnesse or if you like else": [0, 65535], "more kindnesse or if you like else where": [0, 65535], "kindnesse or if you like else where doe": [0, 65535], "or if you like else where doe it": [0, 65535], "if you like else where doe it by": [0, 65535], "you like else where doe it by stealth": [0, 65535], "like else where doe it by stealth muffle": [0, 65535], "else where doe it by stealth muffle your": [0, 65535], "where doe it by stealth muffle your false": [0, 65535], "doe it by stealth muffle your false loue": [0, 65535], "it by stealth muffle your false loue with": [0, 65535], "by stealth muffle your false loue with some": [0, 65535], "stealth muffle your false loue with some shew": [0, 65535], "muffle your false loue with some shew of": [0, 65535], "your false loue with some shew of blindnesse": [0, 65535], "false loue with some shew of blindnesse let": [0, 65535], "loue with some shew of blindnesse let not": [0, 65535], "with some shew of blindnesse let not my": [0, 65535], "some shew of blindnesse let not my sister": [0, 65535], "shew of blindnesse let not my sister read": [0, 65535], "of blindnesse let not my sister read it": [0, 65535], "blindnesse let not my sister read it in": [0, 65535], "let not my sister read it in your": [0, 65535], "not my sister read it in your eye": [0, 65535], "my sister read it in your eye be": [0, 65535], "sister read it in your eye be not": [0, 65535], "read it in your eye be not thy": [0, 65535], "it in your eye be not thy tongue": [0, 65535], "in your eye be not thy tongue thy": [0, 65535], "your eye be not thy tongue thy owne": [0, 65535], "eye be not thy tongue thy owne shames": [0, 65535], "be not thy tongue thy owne shames orator": [0, 65535], "not thy tongue thy owne shames orator looke": [0, 65535], "thy tongue thy owne shames orator looke sweet": [0, 65535], "tongue thy owne shames orator looke sweet speake": [0, 65535], "thy owne shames orator looke sweet speake faire": [0, 65535], "owne shames orator looke sweet speake faire become": [0, 65535], "shames orator looke sweet speake faire become disloyaltie": [0, 65535], "orator looke sweet speake faire become disloyaltie apparell": [0, 65535], "looke sweet speake faire become disloyaltie apparell vice": [0, 65535], "sweet speake faire become disloyaltie apparell vice like": [0, 65535], "speake faire become disloyaltie apparell vice like vertues": [0, 65535], "faire become disloyaltie apparell vice like vertues harbenger": [0, 65535], "become disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare a": [0, 65535], "apparell vice like vertues harbenger beare a faire": [0, 65535], "vice like vertues harbenger beare a faire presence": [0, 65535], "like vertues harbenger beare a faire presence though": [0, 65535], "vertues harbenger beare a faire presence though your": [0, 65535], "harbenger beare a faire presence though your heart": [0, 65535], "beare a faire presence though your heart be": [0, 65535], "a faire presence though your heart be tainted": [0, 65535], "faire presence though your heart be tainted teach": [0, 65535], "presence though your heart be tainted teach sinne": [0, 65535], "though your heart be tainted teach sinne the": [0, 65535], "your heart be tainted teach sinne the carriage": [0, 65535], "heart be tainted teach sinne the carriage of": [0, 65535], "be tainted teach sinne the carriage of a": [0, 65535], "tainted teach sinne the carriage of a holy": [0, 65535], "teach sinne the carriage of a holy saint": [0, 65535], "sinne the carriage of a holy saint be": [0, 65535], "the carriage of a holy saint be secret": [0, 65535], "carriage of a holy saint be secret false": [0, 65535], "of a holy saint be secret false what": [0, 65535], "a holy saint be secret false what need": [0, 65535], "holy saint be secret false what need she": [0, 65535], "saint be secret false what need she be": [0, 65535], "be secret false what need she be acquainted": [0, 65535], "secret false what need she be acquainted what": [0, 65535], "false what need she be acquainted what simple": [0, 65535], "what need she be acquainted what simple thiefe": [0, 65535], "need she be acquainted what simple thiefe brags": [0, 65535], "she be acquainted what simple thiefe brags of": [0, 65535], "be acquainted what simple thiefe brags of his": [0, 65535], "acquainted what simple thiefe brags of his owne": [0, 65535], "what simple thiefe brags of his owne attaine": [0, 65535], "simple thiefe brags of his owne attaine 'tis": [0, 65535], "thiefe brags of his owne attaine 'tis double": [0, 65535], "brags of his owne attaine 'tis double wrong": [0, 65535], "of his owne attaine 'tis double wrong to": [0, 65535], "his owne attaine 'tis double wrong to truant": [0, 65535], "owne attaine 'tis double wrong to truant with": [0, 65535], "attaine 'tis double wrong to truant with your": [0, 65535], "'tis double wrong to truant with your bed": [0, 65535], "double wrong to truant with your bed and": [0, 65535], "wrong to truant with your bed and let": [0, 65535], "to truant with your bed and let her": [0, 65535], "truant with your bed and let her read": [0, 65535], "with your bed and let her read it": [0, 65535], "your bed and let her read it in": [0, 65535], "bed and let her read it in thy": [0, 65535], "and let her read it in thy lookes": [0, 65535], "let her read it in thy lookes at": [0, 65535], "her read it in thy lookes at boord": [0, 65535], "read it in thy lookes at boord shame": [0, 65535], "it in thy lookes at boord shame hath": [0, 65535], "in thy lookes at boord shame hath a": [0, 65535], "thy lookes at boord shame hath a bastard": [0, 65535], "lookes at boord shame hath a bastard fame": [0, 65535], "at boord shame hath a bastard fame well": [0, 65535], "boord shame hath a bastard fame well managed": [0, 65535], "shame hath a bastard fame well managed ill": [0, 65535], "hath a bastard fame well managed ill deeds": [0, 65535], "a bastard fame well managed ill deeds is": [0, 65535], "bastard fame well managed ill deeds is doubled": [0, 65535], "fame well managed ill deeds is doubled with": [0, 65535], "well managed ill deeds is doubled with an": [0, 65535], "managed ill deeds is doubled with an euill": [0, 65535], "ill deeds is doubled with an euill word": [0, 65535], "deeds is doubled with an euill word alas": [0, 65535], "is doubled with an euill word alas poore": [0, 65535], "doubled with an euill word alas poore women": [0, 65535], "with an euill word alas poore women make": [0, 65535], "an euill word alas poore women make vs": [0, 65535], "euill word alas poore women make vs not": [0, 65535], "word alas poore women make vs not beleeue": [0, 65535], "alas poore women make vs not beleeue being": [0, 65535], "poore women make vs not beleeue being compact": [0, 65535], "women make vs not beleeue being compact of": [0, 65535], "make vs not beleeue being compact of credit": [0, 65535], "vs not beleeue being compact of credit that": [0, 65535], "not beleeue being compact of credit that you": [0, 65535], "beleeue being compact of credit that you loue": [0, 65535], "being compact of credit that you loue vs": [0, 65535], "compact of credit that you loue vs though": [0, 65535], "of credit that you loue vs though others": [0, 65535], "credit that you loue vs though others haue": [0, 65535], "that you loue vs though others haue the": [0, 65535], "you loue vs though others haue the arme": [0, 65535], "loue vs though others haue the arme shew": [0, 65535], "vs though others haue the arme shew vs": [0, 65535], "though others haue the arme shew vs the": [0, 65535], "others haue the arme shew vs the sleeue": [0, 65535], "haue the arme shew vs the sleeue we": [0, 65535], "the arme shew vs the sleeue we in": [0, 65535], "arme shew vs the sleeue we in your": [0, 65535], "shew vs the sleeue we in your motion": [0, 65535], "vs the sleeue we in your motion turne": [0, 65535], "the sleeue we in your motion turne and": [0, 65535], "sleeue we in your motion turne and you": [0, 65535], "we in your motion turne and you may": [0, 65535], "in your motion turne and you may moue": [0, 65535], "your motion turne and you may moue vs": [0, 65535], "motion turne and you may moue vs then": [0, 65535], "turne and you may moue vs then gentle": [0, 65535], "and you may moue vs then gentle brother": [0, 65535], "you may moue vs then gentle brother get": [0, 65535], "may moue vs then gentle brother get you": [0, 65535], "moue vs then gentle brother get you in": [0, 65535], "vs then gentle brother get you in againe": [0, 65535], "then gentle brother get you in againe comfort": [0, 65535], "gentle brother get you in againe comfort my": [0, 65535], "brother get you in againe comfort my sister": [0, 65535], "get you in againe comfort my sister cheere": [0, 65535], "you in againe comfort my sister cheere her": [0, 65535], "in againe comfort my sister cheere her call": [0, 65535], "againe comfort my sister cheere her call her": [0, 65535], "comfort my sister cheere her call her wise": [0, 65535], "my sister cheere her call her wise 'tis": [0, 65535], "sister cheere her call her wise 'tis holy": [0, 65535], "cheere her call her wise 'tis holy sport": [0, 65535], "her call her wise 'tis holy sport to": [0, 65535], "call her wise 'tis holy sport to be": [0, 65535], "her wise 'tis holy sport to be a": [0, 65535], "wise 'tis holy sport to be a little": [0, 65535], "'tis holy sport to be a little vaine": [0, 65535], "holy sport to be a little vaine when": [0, 65535], "sport to be a little vaine when the": [0, 65535], "to be a little vaine when the sweet": [0, 65535], "be a little vaine when the sweet breath": [0, 65535], "a little vaine when the sweet breath of": [0, 65535], "little vaine when the sweet breath of flatterie": [0, 65535], "vaine when the sweet breath of flatterie conquers": [0, 65535], "when the sweet breath of flatterie conquers strife": [0, 65535], "the sweet breath of flatterie conquers strife s": [0, 65535], "sweet breath of flatterie conquers strife s anti": [0, 65535], "breath of flatterie conquers strife s anti sweete": [0, 65535], "of flatterie conquers strife s anti sweete mistris": [0, 65535], "flatterie conquers strife s anti sweete mistris what": [0, 65535], "conquers strife s anti sweete mistris what your": [0, 65535], "strife s anti sweete mistris what your name": [0, 65535], "s anti sweete mistris what your name is": [0, 65535], "anti sweete mistris what your name is else": [0, 65535], "sweete mistris what your name is else i": [0, 65535], "mistris what your name is else i know": [0, 65535], "what your name is else i know not": [0, 65535], "your name is else i know not nor": [0, 65535], "name is else i know not nor by": [0, 65535], "is else i know not nor by what": [0, 65535], "else i know not nor by what wonder": [0, 65535], "i know not nor by what wonder you": [0, 65535], "know not nor by what wonder you do": [0, 65535], "not nor by what wonder you do hit": [0, 65535], "nor by what wonder you do hit of": [0, 65535], "by what wonder you do hit of mine": [0, 65535], "what wonder you do hit of mine lesse": [0, 65535], "wonder you do hit of mine lesse in": [0, 65535], "you do hit of mine lesse in your": [0, 65535], "do hit of mine lesse in your knowledge": [0, 65535], "hit of mine lesse in your knowledge and": [0, 65535], "of mine lesse in your knowledge and your": [0, 65535], "mine lesse in your knowledge and your grace": [0, 65535], "lesse in your knowledge and your grace you": [0, 65535], "in your knowledge and your grace you show": [0, 65535], "your knowledge and your grace you show not": [0, 65535], "knowledge and your grace you show not then": [0, 65535], "and your grace you show not then our": [0, 65535], "your grace you show not then our earths": [0, 65535], "grace you show not then our earths wonder": [0, 65535], "you show not then our earths wonder more": [0, 65535], "show not then our earths wonder more then": [0, 65535], "not then our earths wonder more then earth": [0, 65535], "then our earths wonder more then earth diuine": [0, 65535], "our earths wonder more then earth diuine teach": [0, 65535], "earths wonder more then earth diuine teach me": [0, 65535], "wonder more then earth diuine teach me deere": [0, 65535], "more then earth diuine teach me deere creature": [0, 65535], "then earth diuine teach me deere creature how": [0, 65535], "earth diuine teach me deere creature how to": [0, 65535], "diuine teach me deere creature how to thinke": [0, 65535], "teach me deere creature how to thinke and": [0, 65535], "me deere creature how to thinke and speake": [0, 65535], "deere creature how to thinke and speake lay": [0, 65535], "creature how to thinke and speake lay open": [0, 65535], "how to thinke and speake lay open to": [0, 65535], "to thinke and speake lay open to my": [0, 65535], "thinke and speake lay open to my earthie": [0, 65535], "and speake lay open to my earthie grosse": [0, 65535], "speake lay open to my earthie grosse conceit": [0, 65535], "lay open to my earthie grosse conceit smothred": [0, 65535], "open to my earthie grosse conceit smothred in": [0, 65535], "to my earthie grosse conceit smothred in errors": [0, 65535], "my earthie grosse conceit smothred in errors feeble": [0, 65535], "earthie grosse conceit smothred in errors feeble shallow": [0, 65535], "grosse conceit smothred in errors feeble shallow weake": [0, 65535], "conceit smothred in errors feeble shallow weake the": [0, 65535], "smothred in errors feeble shallow weake the foulded": [0, 65535], "in errors feeble shallow weake the foulded meaning": [0, 65535], "errors feeble shallow weake the foulded meaning of": [0, 65535], "feeble shallow weake the foulded meaning of your": [0, 65535], "shallow weake the foulded meaning of your words": [0, 65535], "weake the foulded meaning of your words deceit": [0, 65535], "the foulded meaning of your words deceit against": [0, 65535], "foulded meaning of your words deceit against my": [0, 65535], "meaning of your words deceit against my soules": [0, 65535], "of your words deceit against my soules pure": [0, 65535], "your words deceit against my soules pure truth": [0, 65535], "words deceit against my soules pure truth why": [0, 65535], "deceit against my soules pure truth why labour": [0, 65535], "against my soules pure truth why labour you": [0, 65535], "my soules pure truth why labour you to": [0, 65535], "soules pure truth why labour you to make": [0, 65535], "pure truth why labour you to make it": [0, 65535], "truth why labour you to make it wander": [0, 65535], "why labour you to make it wander in": [0, 65535], "labour you to make it wander in an": [0, 65535], "you to make it wander in an vnknowne": [0, 65535], "to make it wander in an vnknowne field": [0, 65535], "make it wander in an vnknowne field are": [0, 65535], "it wander in an vnknowne field are you": [0, 65535], "wander in an vnknowne field are you a": [0, 65535], "in an vnknowne field are you a god": [0, 65535], "an vnknowne field are you a god would": [0, 65535], "vnknowne field are you a god would you": [0, 65535], "field are you a god would you create": [0, 65535], "are you a god would you create me": [0, 65535], "you a god would you create me new": [0, 65535], "a god would you create me new transforme": [0, 65535], "god would you create me new transforme me": [0, 65535], "would you create me new transforme me then": [0, 65535], "you create me new transforme me then and": [0, 65535], "create me new transforme me then and to": [0, 65535], "me new transforme me then and to your": [0, 65535], "new transforme me then and to your powre": [0, 65535], "transforme me then and to your powre ile": [0, 65535], "me then and to your powre ile yeeld": [0, 65535], "then and to your powre ile yeeld but": [0, 65535], "and to your powre ile yeeld but if": [0, 65535], "to your powre ile yeeld but if that": [0, 65535], "your powre ile yeeld but if that i": [0, 65535], "powre ile yeeld but if that i am": [0, 65535], "ile yeeld but if that i am i": [0, 65535], "yeeld but if that i am i then": [0, 65535], "but if that i am i then well": [0, 65535], "if that i am i then well i": [0, 65535], "that i am i then well i know": [0, 65535], "i am i then well i know your": [0, 65535], "am i then well i know your weeping": [0, 65535], "i then well i know your weeping sister": [0, 65535], "then well i know your weeping sister is": [0, 65535], "well i know your weeping sister is no": [0, 65535], "i know your weeping sister is no wife": [0, 65535], "know your weeping sister is no wife of": [0, 65535], "your weeping sister is no wife of mine": [0, 65535], "weeping sister is no wife of mine nor": [0, 65535], "sister is no wife of mine nor to": [0, 65535], "is no wife of mine nor to her": [0, 65535], "no wife of mine nor to her bed": [0, 65535], "wife of mine nor to her bed no": [0, 65535], "of mine nor to her bed no homage": [0, 65535], "mine nor to her bed no homage doe": [0, 65535], "nor to her bed no homage doe i": [0, 65535], "to her bed no homage doe i owe": [0, 65535], "her bed no homage doe i owe farre": [0, 65535], "bed no homage doe i owe farre more": [0, 65535], "no homage doe i owe farre more farre": [0, 65535], "homage doe i owe farre more farre more": [0, 65535], "doe i owe farre more farre more to": [0, 65535], "i owe farre more farre more to you": [0, 65535], "owe farre more farre more to you doe": [0, 65535], "farre more farre more to you doe i": [0, 65535], "more farre more to you doe i decline": [0, 65535], "farre more to you doe i decline oh": [0, 65535], "more to you doe i decline oh traine": [0, 65535], "to you doe i decline oh traine me": [0, 65535], "you doe i decline oh traine me not": [0, 65535], "doe i decline oh traine me not sweet": [0, 65535], "i decline oh traine me not sweet mermaide": [0, 65535], "decline oh traine me not sweet mermaide with": [0, 65535], "oh traine me not sweet mermaide with thy": [0, 65535], "traine me not sweet mermaide with thy note": [0, 65535], "me not sweet mermaide with thy note to": [0, 65535], "not sweet mermaide with thy note to drowne": [0, 65535], "sweet mermaide with thy note to drowne me": [0, 65535], "mermaide with thy note to drowne me in": [0, 65535], "with thy note to drowne me in thy": [0, 65535], "thy note to drowne me in thy sister": [0, 65535], "note to drowne me in thy sister floud": [0, 65535], "to drowne me in thy sister floud of": [0, 65535], "drowne me in thy sister floud of teares": [0, 65535], "me in thy sister floud of teares sing": [0, 65535], "in thy sister floud of teares sing siren": [0, 65535], "thy sister floud of teares sing siren for": [0, 65535], "sister floud of teares sing siren for thy": [0, 65535], "floud of teares sing siren for thy selfe": [0, 65535], "of teares sing siren for thy selfe and": [0, 65535], "teares sing siren for thy selfe and i": [0, 65535], "sing siren for thy selfe and i will": [0, 65535], "siren for thy selfe and i will dote": [0, 65535], "for thy selfe and i will dote spread": [0, 65535], "thy selfe and i will dote spread ore": [0, 65535], "selfe and i will dote spread ore the": [0, 65535], "and i will dote spread ore the siluer": [0, 65535], "i will dote spread ore the siluer waues": [0, 65535], "will dote spread ore the siluer waues thy": [0, 65535], "dote spread ore the siluer waues thy golden": [0, 65535], "spread ore the siluer waues thy golden haires": [0, 65535], "ore the siluer waues thy golden haires and": [0, 65535], "the siluer waues thy golden haires and as": [0, 65535], "siluer waues thy golden haires and as a": [0, 65535], "waues thy golden haires and as a bud": [0, 65535], "thy golden haires and as a bud ile": [0, 65535], "golden haires and as a bud ile take": [0, 65535], "haires and as a bud ile take thee": [0, 65535], "and as a bud ile take thee and": [0, 65535], "as a bud ile take thee and there": [0, 65535], "a bud ile take thee and there lie": [0, 65535], "bud ile take thee and there lie and": [0, 65535], "ile take thee and there lie and in": [0, 65535], "take thee and there lie and in that": [0, 65535], "thee and there lie and in that glorious": [0, 65535], "and there lie and in that glorious supposition": [0, 65535], "there lie and in that glorious supposition thinke": [0, 65535], "lie and in that glorious supposition thinke he": [0, 65535], "and in that glorious supposition thinke he gaines": [0, 65535], "in that glorious supposition thinke he gaines by": [0, 65535], "that glorious supposition thinke he gaines by death": [0, 65535], "glorious supposition thinke he gaines by death that": [0, 65535], "supposition thinke he gaines by death that hath": [0, 65535], "thinke he gaines by death that hath such": [0, 65535], "he gaines by death that hath such meanes": [0, 65535], "gaines by death that hath such meanes to": [0, 65535], "by death that hath such meanes to die": [0, 65535], "death that hath such meanes to die let": [0, 65535], "that hath such meanes to die let loue": [0, 65535], "hath such meanes to die let loue being": [0, 65535], "such meanes to die let loue being light": [0, 65535], "meanes to die let loue being light be": [0, 65535], "to die let loue being light be drowned": [0, 65535], "die let loue being light be drowned if": [0, 65535], "let loue being light be drowned if she": [0, 65535], "loue being light be drowned if she sinke": [0, 65535], "being light be drowned if she sinke luc": [0, 65535], "light be drowned if she sinke luc what": [0, 65535], "be drowned if she sinke luc what are": [0, 65535], "drowned if she sinke luc what are you": [0, 65535], "if she sinke luc what are you mad": [0, 65535], "she sinke luc what are you mad that": [0, 65535], "sinke luc what are you mad that you": [0, 65535], "luc what are you mad that you doe": [0, 65535], "what are you mad that you doe reason": [0, 65535], "are you mad that you doe reason so": [0, 65535], "you mad that you doe reason so ant": [0, 65535], "mad that you doe reason so ant not": [0, 65535], "that you doe reason so ant not mad": [0, 65535], "you doe reason so ant not mad but": [0, 65535], "doe reason so ant not mad but mated": [0, 65535], "reason so ant not mad but mated how": [0, 65535], "so ant not mad but mated how i": [0, 65535], "ant not mad but mated how i doe": [0, 65535], "not mad but mated how i doe not": [0, 65535], "mad but mated how i doe not know": [0, 65535], "but mated how i doe not know luc": [0, 65535], "mated how i doe not know luc it": [0, 65535], "how i doe not know luc it is": [0, 65535], "i doe not know luc it is a": [0, 65535], "doe not know luc it is a fault": [0, 65535], "not know luc it is a fault that": [0, 65535], "know luc it is a fault that springeth": [0, 65535], "luc it is a fault that springeth from": [0, 65535], "it is a fault that springeth from your": [0, 65535], "is a fault that springeth from your eie": [0, 65535], "a fault that springeth from your eie ant": [0, 65535], "fault that springeth from your eie ant for": [0, 65535], "that springeth from your eie ant for gazing": [0, 65535], "springeth from your eie ant for gazing on": [0, 65535], "from your eie ant for gazing on your": [0, 65535], "your eie ant for gazing on your beames": [0, 65535], "eie ant for gazing on your beames faire": [0, 65535], "ant for gazing on your beames faire sun": [0, 65535], "for gazing on your beames faire sun being": [0, 65535], "gazing on your beames faire sun being by": [0, 65535], "on your beames faire sun being by luc": [0, 65535], "your beames faire sun being by luc gaze": [0, 65535], "beames faire sun being by luc gaze when": [0, 65535], "faire sun being by luc gaze when you": [0, 65535], "sun being by luc gaze when you should": [0, 65535], "being by luc gaze when you should and": [0, 65535], "by luc gaze when you should and that": [0, 65535], "luc gaze when you should and that will": [0, 65535], "gaze when you should and that will cleere": [0, 65535], "when you should and that will cleere your": [0, 65535], "you should and that will cleere your sight": [0, 65535], "should and that will cleere your sight ant": [0, 65535], "and that will cleere your sight ant as": [0, 65535], "that will cleere your sight ant as good": [0, 65535], "will cleere your sight ant as good to": [0, 65535], "cleere your sight ant as good to winke": [0, 65535], "your sight ant as good to winke sweet": [0, 65535], "sight ant as good to winke sweet loue": [0, 65535], "ant as good to winke sweet loue as": [0, 65535], "as good to winke sweet loue as looke": [0, 65535], "good to winke sweet loue as looke on": [0, 65535], "to winke sweet loue as looke on night": [0, 65535], "winke sweet loue as looke on night luc": [0, 65535], "sweet loue as looke on night luc why": [0, 65535], "loue as looke on night luc why call": [0, 65535], "as looke on night luc why call you": [0, 65535], "looke on night luc why call you me": [0, 65535], "on night luc why call you me loue": [0, 65535], "night luc why call you me loue call": [0, 65535], "luc why call you me loue call my": [0, 65535], "why call you me loue call my sister": [0, 65535], "call you me loue call my sister so": [0, 65535], "you me loue call my sister so ant": [0, 65535], "me loue call my sister so ant thy": [0, 65535], "loue call my sister so ant thy sisters": [0, 65535], "call my sister so ant thy sisters sister": [0, 65535], "my sister so ant thy sisters sister luc": [0, 65535], "sister so ant thy sisters sister luc that's": [0, 65535], "so ant thy sisters sister luc that's my": [0, 65535], "ant thy sisters sister luc that's my sister": [0, 65535], "thy sisters sister luc that's my sister ant": [0, 65535], "sisters sister luc that's my sister ant no": [0, 65535], "sister luc that's my sister ant no it": [0, 65535], "luc that's my sister ant no it is": [0, 65535], "that's my sister ant no it is thy": [0, 65535], "my sister ant no it is thy selfe": [0, 65535], "sister ant no it is thy selfe mine": [0, 65535], "ant no it is thy selfe mine owne": [0, 65535], "no it is thy selfe mine owne selfes": [0, 65535], "it is thy selfe mine owne selfes better": [0, 65535], "is thy selfe mine owne selfes better part": [0, 65535], "thy selfe mine owne selfes better part mine": [0, 65535], "selfe mine owne selfes better part mine eies": [0, 65535], "mine owne selfes better part mine eies cleere": [0, 65535], "owne selfes better part mine eies cleere eie": [0, 65535], "selfes better part mine eies cleere eie my": [0, 65535], "better part mine eies cleere eie my deere": [0, 65535], "part mine eies cleere eie my deere hearts": [0, 65535], "mine eies cleere eie my deere hearts deerer": [0, 65535], "eies cleere eie my deere hearts deerer heart": [0, 65535], "cleere eie my deere hearts deerer heart my": [0, 65535], "eie my deere hearts deerer heart my foode": [0, 65535], "my deere hearts deerer heart my foode my": [0, 65535], "deere hearts deerer heart my foode my fortune": [0, 65535], "hearts deerer heart my foode my fortune and": [0, 65535], "deerer heart my foode my fortune and my": [0, 65535], "heart my foode my fortune and my sweet": [0, 65535], "my foode my fortune and my sweet hopes": [0, 65535], "foode my fortune and my sweet hopes aime": [0, 65535], "my fortune and my sweet hopes aime my": [0, 65535], "fortune and my sweet hopes aime my sole": [0, 65535], "and my sweet hopes aime my sole earths": [0, 65535], "my sweet hopes aime my sole earths heauen": [0, 65535], "sweet hopes aime my sole earths heauen and": [0, 65535], "hopes aime my sole earths heauen and my": [0, 65535], "aime my sole earths heauen and my heauens": [0, 65535], "my sole earths heauen and my heauens claime": [0, 65535], "sole earths heauen and my heauens claime luc": [0, 65535], "earths heauen and my heauens claime luc all": [0, 65535], "heauen and my heauens claime luc all this": [0, 65535], "and my heauens claime luc all this my": [0, 65535], "my heauens claime luc all this my sister": [0, 65535], "heauens claime luc all this my sister is": [0, 65535], "claime luc all this my sister is or": [0, 65535], "luc all this my sister is or else": [0, 65535], "all this my sister is or else should": [0, 65535], "this my sister is or else should be": [0, 65535], "my sister is or else should be ant": [0, 65535], "sister is or else should be ant call": [0, 65535], "is or else should be ant call thy": [0, 65535], "or else should be ant call thy selfe": [0, 65535], "else should be ant call thy selfe sister": [0, 65535], "should be ant call thy selfe sister sweet": [0, 65535], "be ant call thy selfe sister sweet for": [0, 65535], "ant call thy selfe sister sweet for i": [0, 65535], "call thy selfe sister sweet for i am": [0, 65535], "thy selfe sister sweet for i am thee": [0, 65535], "selfe sister sweet for i am thee thee": [0, 65535], "sister sweet for i am thee thee will": [0, 65535], "sweet for i am thee thee will i": [0, 65535], "for i am thee thee will i loue": [0, 65535], "i am thee thee will i loue and": [0, 65535], "am thee thee will i loue and with": [0, 65535], "thee thee will i loue and with thee": [0, 65535], "thee will i loue and with thee lead": [0, 65535], "will i loue and with thee lead my": [0, 65535], "i loue and with thee lead my life": [0, 65535], "loue and with thee lead my life thou": [0, 65535], "and with thee lead my life thou hast": [0, 65535], "with thee lead my life thou hast no": [0, 65535], "thee lead my life thou hast no husband": [0, 65535], "lead my life thou hast no husband yet": [0, 65535], "my life thou hast no husband yet nor": [0, 65535], "life thou hast no husband yet nor i": [0, 65535], "thou hast no husband yet nor i no": [0, 65535], "hast no husband yet nor i no wife": [0, 65535], "no husband yet nor i no wife giue": [0, 65535], "husband yet nor i no wife giue me": [0, 65535], "yet nor i no wife giue me thy": [0, 65535], "nor i no wife giue me thy hand": [0, 65535], "i no wife giue me thy hand luc": [0, 65535], "no wife giue me thy hand luc oh": [0, 65535], "wife giue me thy hand luc oh soft": [0, 65535], "giue me thy hand luc oh soft sir": [0, 65535], "me thy hand luc oh soft sir hold": [0, 65535], "thy hand luc oh soft sir hold you": [0, 65535], "hand luc oh soft sir hold you still": [0, 65535], "luc oh soft sir hold you still ile": [0, 65535], "oh soft sir hold you still ile fetch": [0, 65535], "soft sir hold you still ile fetch my": [0, 65535], "sir hold you still ile fetch my sister": [0, 65535], "hold you still ile fetch my sister to": [0, 65535], "you still ile fetch my sister to get": [0, 65535], "still ile fetch my sister to get her": [0, 65535], "ile fetch my sister to get her good": [0, 65535], "fetch my sister to get her good will": [0, 65535], "my sister to get her good will exit": [0, 65535], "sister to get her good will exit enter": [0, 65535], "to get her good will exit enter dromio": [0, 65535], "get her good will exit enter dromio siracusia": [0, 65535], "her good will exit enter dromio siracusia ant": [0, 65535], "good will exit enter dromio siracusia ant why": [0, 65535], "will exit enter dromio siracusia ant why how": [0, 65535], "exit enter dromio siracusia ant why how now": [0, 65535], "enter dromio siracusia ant why how now dromio": [0, 65535], "dromio siracusia ant why how now dromio where": [0, 65535], "siracusia ant why how now dromio where run'st": [0, 65535], "ant why how now dromio where run'st thou": [0, 65535], "why how now dromio where run'st thou so": [0, 65535], "how now dromio where run'st thou so fast": [0, 65535], "now dromio where run'st thou so fast s": [0, 65535], "dromio where run'st thou so fast s dro": [0, 65535], "where run'st thou so fast s dro doe": [0, 65535], "run'st thou so fast s dro doe you": [0, 65535], "thou so fast s dro doe you know": [0, 65535], "so fast s dro doe you know me": [0, 65535], "fast s dro doe you know me sir": [0, 65535], "s dro doe you know me sir am": [0, 65535], "dro doe you know me sir am i": [0, 65535], "doe you know me sir am i dromio": [0, 65535], "you know me sir am i dromio am": [0, 65535], "know me sir am i dromio am i": [0, 65535], "me sir am i dromio am i your": [0, 65535], "sir am i dromio am i your man": [0, 65535], "am i dromio am i your man am": [0, 65535], "i dromio am i your man am i": [0, 65535], "dromio am i your man am i my": [0, 65535], "am i your man am i my selfe": [0, 65535], "i your man am i my selfe ant": [0, 65535], "your man am i my selfe ant thou": [0, 65535], "man am i my selfe ant thou art": [0, 65535], "am i my selfe ant thou art dromio": [0, 65535], "i my selfe ant thou art dromio thou": [0, 65535], "my selfe ant thou art dromio thou art": [0, 65535], "selfe ant thou art dromio thou art my": [0, 65535], "ant thou art dromio thou art my man": [0, 65535], "thou art dromio thou art my man thou": [0, 65535], "art dromio thou art my man thou art": [0, 65535], "dromio thou art my man thou art thy": [0, 65535], "thou art my man thou art thy selfe": [0, 65535], "art my man thou art thy selfe dro": [0, 65535], "my man thou art thy selfe dro i": [0, 65535], "man thou art thy selfe dro i am": [0, 65535], "thou art thy selfe dro i am an": [0, 65535], "art thy selfe dro i am an asse": [0, 65535], "thy selfe dro i am an asse i": [0, 65535], "selfe dro i am an asse i am": [0, 65535], "dro i am an asse i am a": [0, 65535], "i am an asse i am a womans": [0, 65535], "am an asse i am a womans man": [0, 65535], "an asse i am a womans man and": [0, 65535], "asse i am a womans man and besides": [0, 65535], "i am a womans man and besides my": [0, 65535], "am a womans man and besides my selfe": [0, 65535], "a womans man and besides my selfe ant": [0, 65535], "womans man and besides my selfe ant what": [0, 65535], "man and besides my selfe ant what womans": [0, 65535], "and besides my selfe ant what womans man": [0, 65535], "besides my selfe ant what womans man and": [0, 65535], "my selfe ant what womans man and how": [0, 65535], "selfe ant what womans man and how besides": [0, 65535], "ant what womans man and how besides thy": [0, 65535], "what womans man and how besides thy selfe": [0, 65535], "womans man and how besides thy selfe dro": [0, 65535], "man and how besides thy selfe dro marrie": [0, 65535], "and how besides thy selfe dro marrie sir": [0, 65535], "how besides thy selfe dro marrie sir besides": [0, 65535], "besides thy selfe dro marrie sir besides my": [0, 65535], "thy selfe dro marrie sir besides my selfe": [0, 65535], "selfe dro marrie sir besides my selfe i": [0, 65535], "dro marrie sir besides my selfe i am": [0, 65535], "marrie sir besides my selfe i am due": [0, 65535], "sir besides my selfe i am due to": [0, 65535], "besides my selfe i am due to a": [0, 65535], "my selfe i am due to a woman": [0, 65535], "selfe i am due to a woman one": [0, 65535], "i am due to a woman one that": [0, 65535], "am due to a woman one that claimes": [0, 65535], "due to a woman one that claimes me": [0, 65535], "to a woman one that claimes me one": [0, 65535], "a woman one that claimes me one that": [0, 65535], "woman one that claimes me one that haunts": [0, 65535], "one that claimes me one that haunts me": [0, 65535], "that claimes me one that haunts me one": [0, 65535], "claimes me one that haunts me one that": [0, 65535], "me one that haunts me one that will": [0, 65535], "one that haunts me one that will haue": [0, 65535], "that haunts me one that will haue me": [0, 65535], "haunts me one that will haue me anti": [0, 65535], "me one that will haue me anti what": [0, 65535], "one that will haue me anti what claime": [0, 65535], "that will haue me anti what claime laies": [0, 65535], "will haue me anti what claime laies she": [0, 65535], "haue me anti what claime laies she to": [0, 65535], "me anti what claime laies she to thee": [0, 65535], "anti what claime laies she to thee dro": [0, 65535], "what claime laies she to thee dro marry": [0, 65535], "claime laies she to thee dro marry sir": [0, 65535], "laies she to thee dro marry sir such": [0, 65535], "she to thee dro marry sir such claime": [0, 65535], "to thee dro marry sir such claime as": [0, 65535], "thee dro marry sir such claime as you": [0, 65535], "dro marry sir such claime as you would": [0, 65535], "marry sir such claime as you would lay": [0, 65535], "sir such claime as you would lay to": [0, 65535], "such claime as you would lay to your": [0, 65535], "claime as you would lay to your horse": [0, 65535], "as you would lay to your horse and": [0, 65535], "you would lay to your horse and she": [0, 65535], "would lay to your horse and she would": [0, 65535], "lay to your horse and she would haue": [0, 65535], "to your horse and she would haue me": [0, 65535], "your horse and she would haue me as": [0, 65535], "horse and she would haue me as a": [0, 65535], "and she would haue me as a beast": [0, 65535], "she would haue me as a beast not": [0, 65535], "would haue me as a beast not that": [0, 65535], "haue me as a beast not that i": [0, 65535], "me as a beast not that i beeing": [0, 65535], "as a beast not that i beeing a": [0, 65535], "a beast not that i beeing a beast": [0, 65535], "beast not that i beeing a beast she": [0, 65535], "not that i beeing a beast she would": [0, 65535], "that i beeing a beast she would haue": [0, 65535], "i beeing a beast she would haue me": [0, 65535], "beeing a beast she would haue me but": [0, 65535], "a beast she would haue me but that": [0, 65535], "beast she would haue me but that she": [0, 65535], "she would haue me but that she being": [0, 65535], "would haue me but that she being a": [0, 65535], "haue me but that she being a verie": [0, 65535], "me but that she being a verie beastly": [0, 65535], "but that she being a verie beastly creature": [0, 65535], "that she being a verie beastly creature layes": [0, 65535], "she being a verie beastly creature layes claime": [0, 65535], "being a verie beastly creature layes claime to": [0, 65535], "a verie beastly creature layes claime to me": [0, 65535], "verie beastly creature layes claime to me anti": [0, 65535], "beastly creature layes claime to me anti what": [0, 65535], "creature layes claime to me anti what is": [0, 65535], "layes claime to me anti what is she": [0, 65535], "claime to me anti what is she dro": [0, 65535], "to me anti what is she dro a": [0, 65535], "me anti what is she dro a very": [0, 65535], "anti what is she dro a very reuerent": [0, 65535], "what is she dro a very reuerent body": [0, 65535], "is she dro a very reuerent body i": [0, 65535], "she dro a very reuerent body i such": [0, 65535], "dro a very reuerent body i such a": [0, 65535], "a very reuerent body i such a one": [0, 65535], "very reuerent body i such a one as": [0, 65535], "reuerent body i such a one as a": [0, 65535], "body i such a one as a man": [0, 65535], "i such a one as a man may": [0, 65535], "such a one as a man may not": [0, 65535], "a one as a man may not speake": [0, 65535], "one as a man may not speake of": [0, 65535], "as a man may not speake of without": [0, 65535], "a man may not speake of without he": [0, 65535], "man may not speake of without he say": [0, 65535], "may not speake of without he say sir": [0, 65535], "not speake of without he say sir reuerence": [0, 65535], "speake of without he say sir reuerence i": [0, 65535], "of without he say sir reuerence i haue": [0, 65535], "without he say sir reuerence i haue but": [0, 65535], "he say sir reuerence i haue but leane": [0, 65535], "say sir reuerence i haue but leane lucke": [0, 65535], "sir reuerence i haue but leane lucke in": [0, 65535], "reuerence i haue but leane lucke in the": [0, 65535], "i haue but leane lucke in the match": [0, 65535], "haue but leane lucke in the match and": [0, 65535], "but leane lucke in the match and yet": [0, 65535], "leane lucke in the match and yet is": [0, 65535], "lucke in the match and yet is she": [0, 65535], "in the match and yet is she a": [0, 65535], "the match and yet is she a wondrous": [0, 65535], "match and yet is she a wondrous fat": [0, 65535], "and yet is she a wondrous fat marriage": [0, 65535], "yet is she a wondrous fat marriage anti": [0, 65535], "is she a wondrous fat marriage anti how": [0, 65535], "she a wondrous fat marriage anti how dost": [0, 65535], "a wondrous fat marriage anti how dost thou": [0, 65535], "wondrous fat marriage anti how dost thou meane": [0, 65535], "fat marriage anti how dost thou meane a": [0, 65535], "marriage anti how dost thou meane a fat": [0, 65535], "anti how dost thou meane a fat marriage": [0, 65535], "how dost thou meane a fat marriage dro": [0, 65535], "dost thou meane a fat marriage dro marry": [0, 65535], "thou meane a fat marriage dro marry sir": [0, 65535], "meane a fat marriage dro marry sir she's": [0, 65535], "a fat marriage dro marry sir she's the": [0, 65535], "fat marriage dro marry sir she's the kitchin": [0, 65535], "marriage dro marry sir she's the kitchin wench": [0, 65535], "dro marry sir she's the kitchin wench al": [0, 65535], "marry sir she's the kitchin wench al grease": [0, 65535], "sir she's the kitchin wench al grease and": [0, 65535], "she's the kitchin wench al grease and i": [0, 65535], "the kitchin wench al grease and i know": [0, 65535], "kitchin wench al grease and i know not": [0, 65535], "wench al grease and i know not what": [0, 65535], "al grease and i know not what vse": [0, 65535], "grease and i know not what vse to": [0, 65535], "and i know not what vse to put": [0, 65535], "i know not what vse to put her": [0, 65535], "know not what vse to put her too": [0, 65535], "not what vse to put her too but": [0, 65535], "what vse to put her too but to": [0, 65535], "vse to put her too but to make": [0, 65535], "to put her too but to make a": [0, 65535], "put her too but to make a lampe": [0, 65535], "her too but to make a lampe of": [0, 65535], "too but to make a lampe of her": [0, 65535], "but to make a lampe of her and": [0, 65535], "to make a lampe of her and run": [0, 65535], "make a lampe of her and run from": [0, 65535], "a lampe of her and run from her": [0, 65535], "lampe of her and run from her by": [0, 65535], "of her and run from her by her": [0, 65535], "her and run from her by her owne": [0, 65535], "and run from her by her owne light": [0, 65535], "run from her by her owne light i": [0, 65535], "from her by her owne light i warrant": [0, 65535], "her by her owne light i warrant her": [0, 65535], "by her owne light i warrant her ragges": [0, 65535], "her owne light i warrant her ragges and": [0, 65535], "owne light i warrant her ragges and the": [0, 65535], "light i warrant her ragges and the tallow": [0, 65535], "i warrant her ragges and the tallow in": [0, 65535], "warrant her ragges and the tallow in them": [0, 65535], "her ragges and the tallow in them will": [0, 65535], "ragges and the tallow in them will burne": [0, 65535], "and the tallow in them will burne a": [0, 65535], "the tallow in them will burne a poland": [0, 65535], "tallow in them will burne a poland winter": [0, 65535], "in them will burne a poland winter if": [0, 65535], "them will burne a poland winter if she": [0, 65535], "will burne a poland winter if she liues": [0, 65535], "burne a poland winter if she liues till": [0, 65535], "a poland winter if she liues till doomesday": [0, 65535], "poland winter if she liues till doomesday she'l": [0, 65535], "winter if she liues till doomesday she'l burne": [0, 65535], "if she liues till doomesday she'l burne a": [0, 65535], "she liues till doomesday she'l burne a weeke": [0, 65535], "liues till doomesday she'l burne a weeke longer": [0, 65535], "till doomesday she'l burne a weeke longer then": [0, 65535], "doomesday she'l burne a weeke longer then the": [0, 65535], "she'l burne a weeke longer then the whole": [0, 65535], "burne a weeke longer then the whole world": [0, 65535], "a weeke longer then the whole world anti": [0, 65535], "weeke longer then the whole world anti what": [0, 65535], "longer then the whole world anti what complexion": [0, 65535], "then the whole world anti what complexion is": [0, 65535], "the whole world anti what complexion is she": [0, 65535], "whole world anti what complexion is she of": [0, 65535], "world anti what complexion is she of dro": [0, 65535], "anti what complexion is she of dro swart": [0, 65535], "what complexion is she of dro swart like": [0, 65535], "complexion is she of dro swart like my": [0, 65535], "is she of dro swart like my shoo": [0, 65535], "she of dro swart like my shoo but": [0, 65535], "of dro swart like my shoo but her": [0, 65535], "dro swart like my shoo but her face": [0, 65535], "swart like my shoo but her face nothing": [0, 65535], "like my shoo but her face nothing like": [0, 65535], "my shoo but her face nothing like so": [0, 65535], "shoo but her face nothing like so cleane": [0, 65535], "but her face nothing like so cleane kept": [0, 65535], "her face nothing like so cleane kept for": [0, 65535], "face nothing like so cleane kept for why": [0, 65535], "nothing like so cleane kept for why she": [0, 65535], "like so cleane kept for why she sweats": [0, 65535], "so cleane kept for why she sweats a": [0, 65535], "cleane kept for why she sweats a man": [0, 65535], "kept for why she sweats a man may": [0, 65535], "for why she sweats a man may goe": [0, 65535], "why she sweats a man may goe o": [0, 65535], "she sweats a man may goe o uer": [0, 65535], "sweats a man may goe o uer shooes": [0, 65535], "a man may goe o uer shooes in": [0, 65535], "man may goe o uer shooes in the": [0, 65535], "may goe o uer shooes in the grime": [0, 65535], "goe o uer shooes in the grime of": [0, 65535], "o uer shooes in the grime of it": [0, 65535], "uer shooes in the grime of it anti": [0, 65535], "shooes in the grime of it anti that's": [0, 65535], "in the grime of it anti that's a": [0, 65535], "the grime of it anti that's a fault": [0, 65535], "grime of it anti that's a fault that": [0, 65535], "of it anti that's a fault that water": [0, 65535], "it anti that's a fault that water will": [0, 65535], "anti that's a fault that water will mend": [0, 65535], "that's a fault that water will mend dro": [0, 65535], "a fault that water will mend dro no": [0, 65535], "fault that water will mend dro no sir": [0, 65535], "that water will mend dro no sir 'tis": [0, 65535], "water will mend dro no sir 'tis in": [0, 65535], "will mend dro no sir 'tis in graine": [0, 65535], "mend dro no sir 'tis in graine noahs": [0, 65535], "dro no sir 'tis in graine noahs flood": [0, 65535], "no sir 'tis in graine noahs flood could": [0, 65535], "sir 'tis in graine noahs flood could not": [0, 65535], "'tis in graine noahs flood could not do": [0, 65535], "in graine noahs flood could not do it": [0, 65535], "graine noahs flood could not do it anti": [0, 65535], "noahs flood could not do it anti what's": [0, 65535], "flood could not do it anti what's her": [0, 65535], "could not do it anti what's her name": [0, 65535], "not do it anti what's her name dro": [0, 65535], "do it anti what's her name dro nell": [0, 65535], "it anti what's her name dro nell sir": [0, 65535], "anti what's her name dro nell sir but": [0, 65535], "what's her name dro nell sir but her": [0, 65535], "her name dro nell sir but her name": [0, 65535], "name dro nell sir but her name is": [0, 65535], "dro nell sir but her name is three": [0, 65535], "nell sir but her name is three quarters": [0, 65535], "sir but her name is three quarters that's": [0, 65535], "but her name is three quarters that's an": [0, 65535], "her name is three quarters that's an ell": [0, 65535], "name is three quarters that's an ell and": [0, 65535], "is three quarters that's an ell and three": [0, 65535], "three quarters that's an ell and three quarters": [0, 65535], "quarters that's an ell and three quarters will": [0, 65535], "that's an ell and three quarters will not": [0, 65535], "an ell and three quarters will not measure": [0, 65535], "ell and three quarters will not measure her": [0, 65535], "and three quarters will not measure her from": [0, 65535], "three quarters will not measure her from hip": [0, 65535], "quarters will not measure her from hip to": [0, 65535], "will not measure her from hip to hip": [0, 65535], "not measure her from hip to hip anti": [0, 65535], "measure her from hip to hip anti then": [0, 65535], "her from hip to hip anti then she": [0, 65535], "from hip to hip anti then she beares": [0, 65535], "hip to hip anti then she beares some": [0, 65535], "to hip anti then she beares some bredth": [0, 65535], "hip anti then she beares some bredth dro": [0, 65535], "anti then she beares some bredth dro no": [0, 65535], "then she beares some bredth dro no longer": [0, 65535], "she beares some bredth dro no longer from": [0, 65535], "beares some bredth dro no longer from head": [0, 65535], "some bredth dro no longer from head to": [0, 65535], "bredth dro no longer from head to foot": [0, 65535], "dro no longer from head to foot then": [0, 65535], "no longer from head to foot then from": [0, 65535], "longer from head to foot then from hippe": [0, 65535], "from head to foot then from hippe to": [0, 65535], "head to foot then from hippe to hippe": [0, 65535], "to foot then from hippe to hippe she": [0, 65535], "foot then from hippe to hippe she is": [0, 65535], "then from hippe to hippe she is sphericall": [0, 65535], "from hippe to hippe she is sphericall like": [0, 65535], "hippe to hippe she is sphericall like a": [0, 65535], "to hippe she is sphericall like a globe": [0, 65535], "hippe she is sphericall like a globe i": [0, 65535], "she is sphericall like a globe i could": [0, 65535], "is sphericall like a globe i could find": [0, 65535], "sphericall like a globe i could find out": [0, 65535], "like a globe i could find out countries": [0, 65535], "a globe i could find out countries in": [0, 65535], "globe i could find out countries in her": [0, 65535], "i could find out countries in her anti": [0, 65535], "could find out countries in her anti in": [0, 65535], "find out countries in her anti in what": [0, 65535], "out countries in her anti in what part": [0, 65535], "countries in her anti in what part of": [0, 65535], "in her anti in what part of her": [0, 65535], "her anti in what part of her body": [0, 65535], "anti in what part of her body stands": [0, 65535], "in what part of her body stands ireland": [0, 65535], "what part of her body stands ireland dro": [0, 65535], "part of her body stands ireland dro marry": [0, 65535], "of her body stands ireland dro marry sir": [0, 65535], "her body stands ireland dro marry sir in": [0, 65535], "body stands ireland dro marry sir in her": [0, 65535], "stands ireland dro marry sir in her buttockes": [0, 65535], "ireland dro marry sir in her buttockes i": [0, 65535], "dro marry sir in her buttockes i found": [0, 65535], "marry sir in her buttockes i found it": [0, 65535], "sir in her buttockes i found it out": [0, 65535], "in her buttockes i found it out by": [0, 65535], "her buttockes i found it out by the": [0, 65535], "buttockes i found it out by the bogges": [0, 65535], "i found it out by the bogges ant": [0, 65535], "found it out by the bogges ant where": [0, 65535], "it out by the bogges ant where scotland": [0, 65535], "out by the bogges ant where scotland dro": [0, 65535], "by the bogges ant where scotland dro i": [0, 65535], "the bogges ant where scotland dro i found": [0, 65535], "bogges ant where scotland dro i found it": [0, 65535], "ant where scotland dro i found it by": [0, 65535], "where scotland dro i found it by the": [0, 65535], "scotland dro i found it by the barrennesse": [0, 65535], "dro i found it by the barrennesse hard": [0, 65535], "i found it by the barrennesse hard in": [0, 65535], "found it by the barrennesse hard in the": [0, 65535], "it by the barrennesse hard in the palme": [0, 65535], "by the barrennesse hard in the palme of": [0, 65535], "the barrennesse hard in the palme of the": [0, 65535], "barrennesse hard in the palme of the hand": [0, 65535], "hard in the palme of the hand ant": [0, 65535], "in the palme of the hand ant where": [0, 65535], "the palme of the hand ant where france": [0, 65535], "palme of the hand ant where france dro": [0, 65535], "of the hand ant where france dro in": [0, 65535], "the hand ant where france dro in her": [0, 65535], "hand ant where france dro in her forhead": [0, 65535], "ant where france dro in her forhead arm'd": [0, 65535], "where france dro in her forhead arm'd and": [0, 65535], "france dro in her forhead arm'd and reuerted": [0, 65535], "dro in her forhead arm'd and reuerted making": [0, 65535], "in her forhead arm'd and reuerted making warre": [0, 65535], "her forhead arm'd and reuerted making warre against": [0, 65535], "forhead arm'd and reuerted making warre against her": [0, 65535], "arm'd and reuerted making warre against her heire": [0, 65535], "and reuerted making warre against her heire ant": [0, 65535], "reuerted making warre against her heire ant where": [0, 65535], "making warre against her heire ant where england": [0, 65535], "warre against her heire ant where england dro": [0, 65535], "against her heire ant where england dro i": [0, 65535], "her heire ant where england dro i look'd": [0, 65535], "heire ant where england dro i look'd for": [0, 65535], "ant where england dro i look'd for the": [0, 65535], "where england dro i look'd for the chalkle": [0, 65535], "england dro i look'd for the chalkle cliffes": [0, 65535], "dro i look'd for the chalkle cliffes but": [0, 65535], "i look'd for the chalkle cliffes but i": [0, 65535], "look'd for the chalkle cliffes but i could": [0, 65535], "for the chalkle cliffes but i could find": [0, 65535], "the chalkle cliffes but i could find no": [0, 65535], "chalkle cliffes but i could find no whitenesse": [0, 65535], "cliffes but i could find no whitenesse in": [0, 65535], "but i could find no whitenesse in them": [0, 65535], "i could find no whitenesse in them but": [0, 65535], "could find no whitenesse in them but i": [0, 65535], "find no whitenesse in them but i guesse": [0, 65535], "no whitenesse in them but i guesse it": [0, 65535], "whitenesse in them but i guesse it stood": [0, 65535], "in them but i guesse it stood in": [0, 65535], "them but i guesse it stood in her": [0, 65535], "but i guesse it stood in her chin": [0, 65535], "i guesse it stood in her chin by": [0, 65535], "guesse it stood in her chin by the": [0, 65535], "it stood in her chin by the salt": [0, 65535], "stood in her chin by the salt rheume": [0, 65535], "in her chin by the salt rheume that": [0, 65535], "her chin by the salt rheume that ranne": [0, 65535], "chin by the salt rheume that ranne betweene": [0, 65535], "by the salt rheume that ranne betweene france": [0, 65535], "the salt rheume that ranne betweene france and": [0, 65535], "salt rheume that ranne betweene france and it": [0, 65535], "rheume that ranne betweene france and it ant": [0, 65535], "that ranne betweene france and it ant where": [0, 65535], "ranne betweene france and it ant where spaine": [0, 65535], "betweene france and it ant where spaine dro": [0, 65535], "france and it ant where spaine dro faith": [0, 65535], "and it ant where spaine dro faith i": [0, 65535], "it ant where spaine dro faith i saw": [0, 65535], "ant where spaine dro faith i saw it": [0, 65535], "where spaine dro faith i saw it not": [0, 65535], "spaine dro faith i saw it not but": [0, 65535], "dro faith i saw it not but i": [0, 65535], "faith i saw it not but i felt": [0, 65535], "i saw it not but i felt it": [0, 65535], "saw it not but i felt it hot": [0, 65535], "it not but i felt it hot in": [0, 65535], "not but i felt it hot in her": [0, 65535], "but i felt it hot in her breth": [0, 65535], "i felt it hot in her breth ant": [0, 65535], "felt it hot in her breth ant where": [0, 65535], "it hot in her breth ant where america": [0, 65535], "hot in her breth ant where america the": [0, 65535], "in her breth ant where america the indies": [0, 65535], "her breth ant where america the indies dro": [0, 65535], "breth ant where america the indies dro oh": [0, 65535], "ant where america the indies dro oh sir": [0, 65535], "where america the indies dro oh sir vpon": [0, 65535], "america the indies dro oh sir vpon her": [0, 65535], "the indies dro oh sir vpon her nose": [0, 65535], "indies dro oh sir vpon her nose all": [0, 65535], "dro oh sir vpon her nose all ore": [0, 65535], "oh sir vpon her nose all ore embellished": [0, 65535], "sir vpon her nose all ore embellished with": [0, 65535], "vpon her nose all ore embellished with rubies": [0, 65535], "her nose all ore embellished with rubies carbuncles": [0, 65535], "nose all ore embellished with rubies carbuncles saphires": [0, 65535], "all ore embellished with rubies carbuncles saphires declining": [0, 65535], "ore embellished with rubies carbuncles saphires declining their": [0, 65535], "embellished with rubies carbuncles saphires declining their rich": [0, 65535], "with rubies carbuncles saphires declining their rich aspect": [0, 65535], "rubies carbuncles saphires declining their rich aspect to": [0, 65535], "carbuncles saphires declining their rich aspect to the": [0, 65535], "saphires declining their rich aspect to the hot": [0, 65535], "declining their rich aspect to the hot breath": [0, 65535], "their rich aspect to the hot breath of": [0, 65535], "rich aspect to the hot breath of spaine": [0, 65535], "aspect to the hot breath of spaine who": [0, 65535], "to the hot breath of spaine who sent": [0, 65535], "the hot breath of spaine who sent whole": [0, 65535], "hot breath of spaine who sent whole armadoes": [0, 65535], "breath of spaine who sent whole armadoes of": [0, 65535], "of spaine who sent whole armadoes of carrects": [0, 65535], "spaine who sent whole armadoes of carrects to": [0, 65535], "who sent whole armadoes of carrects to be": [0, 65535], "sent whole armadoes of carrects to be ballast": [0, 65535], "whole armadoes of carrects to be ballast at": [0, 65535], "armadoes of carrects to be ballast at her": [0, 65535], "of carrects to be ballast at her nose": [0, 65535], "carrects to be ballast at her nose anti": [0, 65535], "to be ballast at her nose anti where": [0, 65535], "be ballast at her nose anti where stood": [0, 65535], "ballast at her nose anti where stood belgia": [0, 65535], "at her nose anti where stood belgia the": [0, 65535], "her nose anti where stood belgia the netherlands": [0, 65535], "nose anti where stood belgia the netherlands dro": [0, 65535], "anti where stood belgia the netherlands dro oh": [0, 65535], "where stood belgia the netherlands dro oh sir": [0, 65535], "stood belgia the netherlands dro oh sir i": [0, 65535], "belgia the netherlands dro oh sir i did": [0, 65535], "the netherlands dro oh sir i did not": [0, 65535], "netherlands dro oh sir i did not looke": [0, 65535], "dro oh sir i did not looke so": [0, 65535], "oh sir i did not looke so low": [0, 65535], "sir i did not looke so low to": [0, 65535], "i did not looke so low to conclude": [0, 65535], "did not looke so low to conclude this": [0, 65535], "not looke so low to conclude this drudge": [0, 65535], "looke so low to conclude this drudge or": [0, 65535], "so low to conclude this drudge or diuiner": [0, 65535], "low to conclude this drudge or diuiner layd": [0, 65535], "to conclude this drudge or diuiner layd claime": [0, 65535], "conclude this drudge or diuiner layd claime to": [0, 65535], "this drudge or diuiner layd claime to mee": [0, 65535], "drudge or diuiner layd claime to mee call'd": [0, 65535], "or diuiner layd claime to mee call'd mee": [0, 65535], "diuiner layd claime to mee call'd mee dromio": [0, 65535], "layd claime to mee call'd mee dromio swore": [0, 65535], "claime to mee call'd mee dromio swore i": [0, 65535], "to mee call'd mee dromio swore i was": [0, 65535], "mee call'd mee dromio swore i was assur'd": [0, 65535], "call'd mee dromio swore i was assur'd to": [0, 65535], "mee dromio swore i was assur'd to her": [0, 65535], "dromio swore i was assur'd to her told": [0, 65535], "swore i was assur'd to her told me": [0, 65535], "i was assur'd to her told me what": [0, 65535], "was assur'd to her told me what priuie": [0, 65535], "assur'd to her told me what priuie markes": [0, 65535], "to her told me what priuie markes i": [0, 65535], "her told me what priuie markes i had": [0, 65535], "told me what priuie markes i had about": [0, 65535], "me what priuie markes i had about mee": [0, 65535], "what priuie markes i had about mee as": [0, 65535], "priuie markes i had about mee as the": [0, 65535], "markes i had about mee as the marke": [0, 65535], "i had about mee as the marke of": [0, 65535], "had about mee as the marke of my": [0, 65535], "about mee as the marke of my shoulder": [0, 65535], "mee as the marke of my shoulder the": [0, 65535], "as the marke of my shoulder the mole": [0, 65535], "the marke of my shoulder the mole in": [0, 65535], "marke of my shoulder the mole in my": [0, 65535], "of my shoulder the mole in my necke": [0, 65535], "my shoulder the mole in my necke the": [0, 65535], "shoulder the mole in my necke the great": [0, 65535], "the mole in my necke the great wart": [0, 65535], "mole in my necke the great wart on": [0, 65535], "in my necke the great wart on my": [0, 65535], "my necke the great wart on my left": [0, 65535], "necke the great wart on my left arme": [0, 65535], "the great wart on my left arme that": [0, 65535], "great wart on my left arme that i": [0, 65535], "wart on my left arme that i amaz'd": [0, 65535], "on my left arme that i amaz'd ranne": [0, 65535], "my left arme that i amaz'd ranne from": [0, 65535], "left arme that i amaz'd ranne from her": [0, 65535], "arme that i amaz'd ranne from her as": [0, 65535], "that i amaz'd ranne from her as a": [0, 65535], "i amaz'd ranne from her as a witch": [0, 65535], "amaz'd ranne from her as a witch and": [0, 65535], "ranne from her as a witch and i": [0, 65535], "from her as a witch and i thinke": [0, 65535], "her as a witch and i thinke if": [0, 65535], "as a witch and i thinke if my": [0, 65535], "a witch and i thinke if my brest": [0, 65535], "witch and i thinke if my brest had": [0, 65535], "and i thinke if my brest had not": [0, 65535], "i thinke if my brest had not beene": [0, 65535], "thinke if my brest had not beene made": [0, 65535], "if my brest had not beene made of": [0, 65535], "my brest had not beene made of faith": [0, 65535], "brest had not beene made of faith and": [0, 65535], "had not beene made of faith and my": [0, 65535], "not beene made of faith and my heart": [0, 65535], "beene made of faith and my heart of": [0, 65535], "made of faith and my heart of steele": [0, 65535], "of faith and my heart of steele she": [0, 65535], "faith and my heart of steele she had": [0, 65535], "and my heart of steele she had transform'd": [0, 65535], "my heart of steele she had transform'd me": [0, 65535], "heart of steele she had transform'd me to": [0, 65535], "of steele she had transform'd me to a": [0, 65535], "steele she had transform'd me to a curtull": [0, 65535], "she had transform'd me to a curtull dog": [0, 65535], "had transform'd me to a curtull dog made": [0, 65535], "transform'd me to a curtull dog made me": [0, 65535], "me to a curtull dog made me turne": [0, 65535], "to a curtull dog made me turne i'th": [0, 65535], "a curtull dog made me turne i'th wheele": [0, 65535], "curtull dog made me turne i'th wheele anti": [0, 65535], "dog made me turne i'th wheele anti go": [0, 65535], "made me turne i'th wheele anti go hie": [0, 65535], "me turne i'th wheele anti go hie thee": [0, 65535], "turne i'th wheele anti go hie thee presently": [0, 65535], "i'th wheele anti go hie thee presently post": [0, 65535], "wheele anti go hie thee presently post to": [0, 65535], "anti go hie thee presently post to the": [0, 65535], "go hie thee presently post to the rode": [0, 65535], "hie thee presently post to the rode and": [0, 65535], "thee presently post to the rode and if": [0, 65535], "presently post to the rode and if the": [0, 65535], "post to the rode and if the winde": [0, 65535], "to the rode and if the winde blow": [0, 65535], "the rode and if the winde blow any": [0, 65535], "rode and if the winde blow any way": [0, 65535], "and if the winde blow any way from": [0, 65535], "if the winde blow any way from shore": [0, 65535], "the winde blow any way from shore i": [0, 65535], "winde blow any way from shore i will": [0, 65535], "blow any way from shore i will not": [0, 65535], "any way from shore i will not harbour": [0, 65535], "way from shore i will not harbour in": [0, 65535], "from shore i will not harbour in this": [0, 65535], "shore i will not harbour in this towne": [0, 65535], "i will not harbour in this towne to": [0, 65535], "will not harbour in this towne to night": [0, 65535], "not harbour in this towne to night if": [0, 65535], "harbour in this towne to night if any": [0, 65535], "in this towne to night if any barke": [0, 65535], "this towne to night if any barke put": [0, 65535], "towne to night if any barke put forth": [0, 65535], "to night if any barke put forth come": [0, 65535], "night if any barke put forth come to": [0, 65535], "if any barke put forth come to the": [0, 65535], "any barke put forth come to the mart": [0, 65535], "barke put forth come to the mart where": [0, 65535], "put forth come to the mart where i": [0, 65535], "forth come to the mart where i will": [0, 65535], "come to the mart where i will walke": [0, 65535], "to the mart where i will walke till": [0, 65535], "the mart where i will walke till thou": [0, 65535], "mart where i will walke till thou returne": [0, 65535], "where i will walke till thou returne to": [0, 65535], "i will walke till thou returne to me": [0, 65535], "will walke till thou returne to me if": [0, 65535], "walke till thou returne to me if euerie": [0, 65535], "till thou returne to me if euerie one": [0, 65535], "thou returne to me if euerie one knowes": [0, 65535], "returne to me if euerie one knowes vs": [0, 65535], "to me if euerie one knowes vs and": [0, 65535], "me if euerie one knowes vs and we": [0, 65535], "if euerie one knowes vs and we know": [0, 65535], "euerie one knowes vs and we know none": [0, 65535], "one knowes vs and we know none 'tis": [0, 65535], "knowes vs and we know none 'tis time": [0, 65535], "vs and we know none 'tis time i": [0, 65535], "and we know none 'tis time i thinke": [0, 65535], "we know none 'tis time i thinke to": [0, 65535], "know none 'tis time i thinke to trudge": [0, 65535], "none 'tis time i thinke to trudge packe": [0, 65535], "'tis time i thinke to trudge packe and": [0, 65535], "time i thinke to trudge packe and be": [0, 65535], "i thinke to trudge packe and be gone": [0, 65535], "thinke to trudge packe and be gone dro": [0, 65535], "to trudge packe and be gone dro as": [0, 65535], "trudge packe and be gone dro as from": [0, 65535], "packe and be gone dro as from a": [0, 65535], "and be gone dro as from a beare": [0, 65535], "be gone dro as from a beare a": [0, 65535], "gone dro as from a beare a man": [0, 65535], "dro as from a beare a man would": [0, 65535], "as from a beare a man would run": [0, 65535], "from a beare a man would run for": [0, 65535], "a beare a man would run for life": [0, 65535], "beare a man would run for life so": [0, 65535], "a man would run for life so flie": [0, 65535], "man would run for life so flie i": [0, 65535], "would run for life so flie i from": [0, 65535], "run for life so flie i from her": [0, 65535], "for life so flie i from her that": [0, 65535], "life so flie i from her that would": [0, 65535], "so flie i from her that would be": [0, 65535], "flie i from her that would be my": [0, 65535], "i from her that would be my wife": [0, 65535], "from her that would be my wife exit": [0, 65535], "her that would be my wife exit anti": [0, 65535], "that would be my wife exit anti there's": [0, 65535], "would be my wife exit anti there's none": [0, 65535], "be my wife exit anti there's none but": [0, 65535], "my wife exit anti there's none but witches": [0, 65535], "wife exit anti there's none but witches do": [0, 65535], "exit anti there's none but witches do inhabite": [0, 65535], "anti there's none but witches do inhabite heere": [0, 65535], "there's none but witches do inhabite heere and": [0, 65535], "none but witches do inhabite heere and therefore": [0, 65535], "but witches do inhabite heere and therefore 'tis": [0, 65535], "witches do inhabite heere and therefore 'tis hie": [0, 65535], "do inhabite heere and therefore 'tis hie time": [0, 65535], "inhabite heere and therefore 'tis hie time that": [0, 65535], "heere and therefore 'tis hie time that i": [0, 65535], "and therefore 'tis hie time that i were": [0, 65535], "therefore 'tis hie time that i were hence": [0, 65535], "'tis hie time that i were hence she": [0, 65535], "hie time that i were hence she that": [0, 65535], "time that i were hence she that doth": [0, 65535], "that i were hence she that doth call": [0, 65535], "i were hence she that doth call me": [0, 65535], "were hence she that doth call me husband": [0, 65535], "hence she that doth call me husband euen": [0, 65535], "she that doth call me husband euen my": [0, 65535], "that doth call me husband euen my soule": [0, 65535], "doth call me husband euen my soule doth": [0, 65535], "call me husband euen my soule doth for": [0, 65535], "me husband euen my soule doth for a": [0, 65535], "husband euen my soule doth for a wife": [0, 65535], "euen my soule doth for a wife abhorre": [0, 65535], "my soule doth for a wife abhorre but": [0, 65535], "soule doth for a wife abhorre but her": [0, 65535], "doth for a wife abhorre but her faire": [0, 65535], "for a wife abhorre but her faire sister": [0, 65535], "a wife abhorre but her faire sister possest": [0, 65535], "wife abhorre but her faire sister possest with": [0, 65535], "abhorre but her faire sister possest with such": [0, 65535], "but her faire sister possest with such a": [0, 65535], "her faire sister possest with such a gentle": [0, 65535], "faire sister possest with such a gentle soueraigne": [0, 65535], "sister possest with such a gentle soueraigne grace": [0, 65535], "possest with such a gentle soueraigne grace of": [0, 65535], "with such a gentle soueraigne grace of such": [0, 65535], "such a gentle soueraigne grace of such inchanting": [0, 65535], "a gentle soueraigne grace of such inchanting presence": [0, 65535], "gentle soueraigne grace of such inchanting presence and": [0, 65535], "soueraigne grace of such inchanting presence and discourse": [0, 65535], "grace of such inchanting presence and discourse hath": [0, 65535], "of such inchanting presence and discourse hath almost": [0, 65535], "such inchanting presence and discourse hath almost made": [0, 65535], "inchanting presence and discourse hath almost made me": [0, 65535], "presence and discourse hath almost made me traitor": [0, 65535], "and discourse hath almost made me traitor to": [0, 65535], "discourse hath almost made me traitor to my": [0, 65535], "hath almost made me traitor to my selfe": [0, 65535], "almost made me traitor to my selfe but": [0, 65535], "made me traitor to my selfe but least": [0, 65535], "me traitor to my selfe but least my": [0, 65535], "traitor to my selfe but least my selfe": [0, 65535], "to my selfe but least my selfe be": [0, 65535], "my selfe but least my selfe be guilty": [0, 65535], "selfe but least my selfe be guilty to": [0, 65535], "but least my selfe be guilty to selfe": [0, 65535], "least my selfe be guilty to selfe wrong": [0, 65535], "my selfe be guilty to selfe wrong ile": [0, 65535], "selfe be guilty to selfe wrong ile stop": [0, 65535], "be guilty to selfe wrong ile stop mine": [0, 65535], "guilty to selfe wrong ile stop mine eares": [0, 65535], "to selfe wrong ile stop mine eares against": [0, 65535], "selfe wrong ile stop mine eares against the": [0, 65535], "wrong ile stop mine eares against the mermaids": [0, 65535], "ile stop mine eares against the mermaids song": [0, 65535], "stop mine eares against the mermaids song enter": [0, 65535], "mine eares against the mermaids song enter angelo": [0, 65535], "eares against the mermaids song enter angelo with": [0, 65535], "against the mermaids song enter angelo with the": [0, 65535], "the mermaids song enter angelo with the chaine": [0, 65535], "mermaids song enter angelo with the chaine ang": [0, 65535], "song enter angelo with the chaine ang mr": [0, 65535], "enter angelo with the chaine ang mr antipholus": [0, 65535], "angelo with the chaine ang mr antipholus anti": [0, 65535], "with the chaine ang mr antipholus anti i": [0, 65535], "the chaine ang mr antipholus anti i that's": [0, 65535], "chaine ang mr antipholus anti i that's my": [0, 65535], "ang mr antipholus anti i that's my name": [0, 65535], "mr antipholus anti i that's my name ang": [0, 65535], "antipholus anti i that's my name ang i": [0, 65535], "anti i that's my name ang i know": [0, 65535], "i that's my name ang i know it": [0, 65535], "that's my name ang i know it well": [0, 65535], "my name ang i know it well sir": [0, 65535], "name ang i know it well sir loe": [0, 65535], "ang i know it well sir loe here's": [0, 65535], "i know it well sir loe here's the": [0, 65535], "know it well sir loe here's the chaine": [0, 65535], "it well sir loe here's the chaine i": [0, 65535], "well sir loe here's the chaine i thought": [0, 65535], "sir loe here's the chaine i thought to": [0, 65535], "loe here's the chaine i thought to haue": [0, 65535], "here's the chaine i thought to haue tane": [0, 65535], "the chaine i thought to haue tane you": [0, 65535], "chaine i thought to haue tane you at": [0, 65535], "i thought to haue tane you at the": [0, 65535], "thought to haue tane you at the porpentine": [0, 65535], "to haue tane you at the porpentine the": [0, 65535], "haue tane you at the porpentine the chaine": [0, 65535], "tane you at the porpentine the chaine vnfinish'd": [0, 65535], "you at the porpentine the chaine vnfinish'd made": [0, 65535], "at the porpentine the chaine vnfinish'd made me": [0, 65535], "the porpentine the chaine vnfinish'd made me stay": [0, 65535], "porpentine the chaine vnfinish'd made me stay thus": [0, 65535], "the chaine vnfinish'd made me stay thus long": [0, 65535], "chaine vnfinish'd made me stay thus long anti": [0, 65535], "vnfinish'd made me stay thus long anti what": [0, 65535], "made me stay thus long anti what is": [0, 65535], "me stay thus long anti what is your": [0, 65535], "stay thus long anti what is your will": [0, 65535], "thus long anti what is your will that": [0, 65535], "long anti what is your will that i": [0, 65535], "anti what is your will that i shal": [0, 65535], "what is your will that i shal do": [0, 65535], "is your will that i shal do with": [0, 65535], "your will that i shal do with this": [0, 65535], "will that i shal do with this ang": [0, 65535], "that i shal do with this ang what": [0, 65535], "i shal do with this ang what please": [0, 65535], "shal do with this ang what please your": [0, 65535], "do with this ang what please your selfe": [0, 65535], "with this ang what please your selfe sir": [0, 65535], "this ang what please your selfe sir i": [0, 65535], "ang what please your selfe sir i haue": [0, 65535], "what please your selfe sir i haue made": [0, 65535], "please your selfe sir i haue made it": [0, 65535], "your selfe sir i haue made it for": [0, 65535], "selfe sir i haue made it for you": [0, 65535], "sir i haue made it for you anti": [0, 65535], "i haue made it for you anti made": [0, 65535], "haue made it for you anti made it": [0, 65535], "made it for you anti made it for": [0, 65535], "it for you anti made it for me": [0, 65535], "for you anti made it for me sir": [0, 65535], "you anti made it for me sir i": [0, 65535], "anti made it for me sir i bespoke": [0, 65535], "made it for me sir i bespoke it": [0, 65535], "it for me sir i bespoke it not": [0, 65535], "for me sir i bespoke it not ang": [0, 65535], "me sir i bespoke it not ang not": [0, 65535], "sir i bespoke it not ang not once": [0, 65535], "i bespoke it not ang not once nor": [0, 65535], "bespoke it not ang not once nor twice": [0, 65535], "it not ang not once nor twice but": [0, 65535], "not ang not once nor twice but twentie": [0, 65535], "ang not once nor twice but twentie times": [0, 65535], "not once nor twice but twentie times you": [0, 65535], "once nor twice but twentie times you haue": [0, 65535], "nor twice but twentie times you haue go": [0, 65535], "twice but twentie times you haue go home": [0, 65535], "but twentie times you haue go home with": [0, 65535], "twentie times you haue go home with it": [0, 65535], "times you haue go home with it and": [0, 65535], "you haue go home with it and please": [0, 65535], "haue go home with it and please your": [0, 65535], "go home with it and please your wife": [0, 65535], "home with it and please your wife withall": [0, 65535], "with it and please your wife withall and": [0, 65535], "it and please your wife withall and soone": [0, 65535], "and please your wife withall and soone at": [0, 65535], "please your wife withall and soone at supper": [0, 65535], "your wife withall and soone at supper time": [0, 65535], "wife withall and soone at supper time ile": [0, 65535], "withall and soone at supper time ile visit": [0, 65535], "and soone at supper time ile visit you": [0, 65535], "soone at supper time ile visit you and": [0, 65535], "at supper time ile visit you and then": [0, 65535], "supper time ile visit you and then receiue": [0, 65535], "time ile visit you and then receiue my": [0, 65535], "ile visit you and then receiue my money": [0, 65535], "visit you and then receiue my money for": [0, 65535], "you and then receiue my money for the": [0, 65535], "and then receiue my money for the chaine": [0, 65535], "then receiue my money for the chaine anti": [0, 65535], "receiue my money for the chaine anti i": [0, 65535], "my money for the chaine anti i pray": [0, 65535], "money for the chaine anti i pray you": [0, 65535], "for the chaine anti i pray you sir": [0, 65535], "the chaine anti i pray you sir receiue": [0, 65535], "chaine anti i pray you sir receiue the": [0, 65535], "anti i pray you sir receiue the money": [0, 65535], "i pray you sir receiue the money now": [0, 65535], "pray you sir receiue the money now for": [0, 65535], "you sir receiue the money now for feare": [0, 65535], "sir receiue the money now for feare you": [0, 65535], "receiue the money now for feare you ne're": [0, 65535], "the money now for feare you ne're see": [0, 65535], "money now for feare you ne're see chaine": [0, 65535], "now for feare you ne're see chaine nor": [0, 65535], "for feare you ne're see chaine nor mony": [0, 65535], "feare you ne're see chaine nor mony more": [0, 65535], "you ne're see chaine nor mony more ang": [0, 65535], "ne're see chaine nor mony more ang you": [0, 65535], "see chaine nor mony more ang you are": [0, 65535], "chaine nor mony more ang you are a": [0, 65535], "nor mony more ang you are a merry": [0, 65535], "mony more ang you are a merry man": [0, 65535], "more ang you are a merry man sir": [0, 65535], "ang you are a merry man sir fare": [0, 65535], "you are a merry man sir fare you": [0, 65535], "are a merry man sir fare you well": [0, 65535], "a merry man sir fare you well exit": [0, 65535], "merry man sir fare you well exit ant": [0, 65535], "man sir fare you well exit ant what": [0, 65535], "sir fare you well exit ant what i": [0, 65535], "fare you well exit ant what i should": [0, 65535], "you well exit ant what i should thinke": [0, 65535], "well exit ant what i should thinke of": [0, 65535], "exit ant what i should thinke of this": [0, 65535], "ant what i should thinke of this i": [0, 65535], "what i should thinke of this i cannot": [0, 65535], "i should thinke of this i cannot tell": [0, 65535], "should thinke of this i cannot tell but": [0, 65535], "thinke of this i cannot tell but this": [0, 65535], "of this i cannot tell but this i": [0, 65535], "this i cannot tell but this i thinke": [0, 65535], "i cannot tell but this i thinke there's": [0, 65535], "cannot tell but this i thinke there's no": [0, 65535], "tell but this i thinke there's no man": [0, 65535], "but this i thinke there's no man is": [0, 65535], "this i thinke there's no man is so": [0, 65535], "i thinke there's no man is so vaine": [0, 65535], "thinke there's no man is so vaine that": [0, 65535], "there's no man is so vaine that would": [0, 65535], "no man is so vaine that would refuse": [0, 65535], "man is so vaine that would refuse so": [0, 65535], "is so vaine that would refuse so faire": [0, 65535], "so vaine that would refuse so faire an": [0, 65535], "vaine that would refuse so faire an offer'd": [0, 65535], "that would refuse so faire an offer'd chaine": [0, 65535], "would refuse so faire an offer'd chaine i": [0, 65535], "refuse so faire an offer'd chaine i see": [0, 65535], "so faire an offer'd chaine i see a": [0, 65535], "faire an offer'd chaine i see a man": [0, 65535], "an offer'd chaine i see a man heere": [0, 65535], "offer'd chaine i see a man heere needs": [0, 65535], "chaine i see a man heere needs not": [0, 65535], "i see a man heere needs not liue": [0, 65535], "see a man heere needs not liue by": [0, 65535], "a man heere needs not liue by shifts": [0, 65535], "man heere needs not liue by shifts when": [0, 65535], "heere needs not liue by shifts when in": [0, 65535], "needs not liue by shifts when in the": [0, 65535], "not liue by shifts when in the streets": [0, 65535], "liue by shifts when in the streets he": [0, 65535], "by shifts when in the streets he meetes": [0, 65535], "shifts when in the streets he meetes such": [0, 65535], "when in the streets he meetes such golden": [0, 65535], "in the streets he meetes such golden gifts": [0, 65535], "the streets he meetes such golden gifts ile": [0, 65535], "streets he meetes such golden gifts ile to": [0, 65535], "he meetes such golden gifts ile to the": [0, 65535], "meetes such golden gifts ile to the mart": [0, 65535], "such golden gifts ile to the mart and": [0, 65535], "golden gifts ile to the mart and there": [0, 65535], "gifts ile to the mart and there for": [0, 65535], "ile to the mart and there for dromio": [0, 65535], "to the mart and there for dromio stay": [0, 65535], "the mart and there for dromio stay if": [0, 65535], "mart and there for dromio stay if any": [0, 65535], "and there for dromio stay if any ship": [0, 65535], "there for dromio stay if any ship put": [0, 65535], "for dromio stay if any ship put out": [0, 65535], "dromio stay if any ship put out then": [0, 65535], "stay if any ship put out then straight": [0, 65535], "if any ship put out then straight away": [0, 65535], "any ship put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of ephesus his": [0, 65535], "tertius scena prima enter antipholus of ephesus his man": [0, 65535], "scena prima enter antipholus of ephesus his man dromio": [0, 65535], "prima enter antipholus of ephesus his man dromio angelo": [0, 65535], "enter antipholus of ephesus his man dromio angelo the": [0, 65535], "antipholus of ephesus his man dromio angelo the goldsmith": [0, 65535], "of ephesus his man dromio angelo the goldsmith and": [0, 65535], "ephesus his man dromio angelo the goldsmith and balthaser": [0, 65535], "his man dromio angelo the goldsmith and balthaser the": [0, 65535], "man dromio angelo the goldsmith and balthaser the merchant": [0, 65535], "dromio angelo the goldsmith and balthaser the merchant e": [0, 65535], "angelo the goldsmith and balthaser the merchant e anti": [0, 65535], "the goldsmith and balthaser the merchant e anti good": [0, 65535], "goldsmith and balthaser the merchant e anti good signior": [0, 65535], "and balthaser the merchant e anti good signior angelo": [0, 65535], "balthaser the merchant e anti good signior angelo you": [0, 65535], "the merchant e anti good signior angelo you must": [0, 65535], "merchant e anti good signior angelo you must excuse": [0, 65535], "e anti good signior angelo you must excuse vs": [0, 65535], "anti good signior angelo you must excuse vs all": [0, 65535], "good signior angelo you must excuse vs all my": [0, 65535], "signior angelo you must excuse vs all my wife": [0, 65535], "angelo you must excuse vs all my wife is": [0, 65535], "you must excuse vs all my wife is shrewish": [0, 65535], "must excuse vs all my wife is shrewish when": [0, 65535], "excuse vs all my wife is shrewish when i": [0, 65535], "vs all my wife is shrewish when i keepe": [0, 65535], "all my wife is shrewish when i keepe not": [0, 65535], "my wife is shrewish when i keepe not howres": [0, 65535], "wife is shrewish when i keepe not howres say": [0, 65535], "is shrewish when i keepe not howres say that": [0, 65535], "shrewish when i keepe not howres say that i": [0, 65535], "when i keepe not howres say that i lingerd": [0, 65535], "i keepe not howres say that i lingerd with": [0, 65535], "keepe not howres say that i lingerd with you": [0, 65535], "not howres say that i lingerd with you at": [0, 65535], "howres say that i lingerd with you at your": [0, 65535], "say that i lingerd with you at your shop": [0, 65535], "that i lingerd with you at your shop to": [0, 65535], "i lingerd with you at your shop to see": [0, 65535], "lingerd with you at your shop to see the": [0, 65535], "with you at your shop to see the making": [0, 65535], "you at your shop to see the making of": [0, 65535], "at your shop to see the making of her": [0, 65535], "your shop to see the making of her carkanet": [0, 65535], "shop to see the making of her carkanet and": [0, 65535], "to see the making of her carkanet and that": [0, 65535], "see the making of her carkanet and that to": [0, 65535], "the making of her carkanet and that to morrow": [0, 65535], "making of her carkanet and that to morrow you": [0, 65535], "of her carkanet and that to morrow you will": [0, 65535], "her carkanet and that to morrow you will bring": [0, 65535], "carkanet and that to morrow you will bring it": [0, 65535], "and that to morrow you will bring it home": [0, 65535], "that to morrow you will bring it home but": [0, 65535], "to morrow you will bring it home but here's": [0, 65535], "morrow you will bring it home but here's a": [0, 65535], "you will bring it home but here's a villaine": [0, 65535], "will bring it home but here's a villaine that": [0, 65535], "bring it home but here's a villaine that would": [0, 65535], "it home but here's a villaine that would face": [0, 65535], "home but here's a villaine that would face me": [0, 65535], "but here's a villaine that would face me downe": [0, 65535], "here's a villaine that would face me downe he": [0, 65535], "a villaine that would face me downe he met": [0, 65535], "villaine that would face me downe he met me": [0, 65535], "that would face me downe he met me on": [0, 65535], "would face me downe he met me on the": [0, 65535], "face me downe he met me on the mart": [0, 65535], "me downe he met me on the mart and": [0, 65535], "downe he met me on the mart and that": [0, 65535], "he met me on the mart and that i": [0, 65535], "met me on the mart and that i beat": [0, 65535], "me on the mart and that i beat him": [0, 65535], "on the mart and that i beat him and": [0, 65535], "the mart and that i beat him and charg'd": [0, 65535], "mart and that i beat him and charg'd him": [0, 65535], "and that i beat him and charg'd him with": [0, 65535], "that i beat him and charg'd him with a": [0, 65535], "i beat him and charg'd him with a thousand": [0, 65535], "beat him and charg'd him with a thousand markes": [0, 65535], "him and charg'd him with a thousand markes in": [0, 65535], "and charg'd him with a thousand markes in gold": [0, 65535], "charg'd him with a thousand markes in gold and": [0, 65535], "him with a thousand markes in gold and that": [0, 65535], "with a thousand markes in gold and that i": [0, 65535], "a thousand markes in gold and that i did": [0, 65535], "thousand markes in gold and that i did denie": [0, 65535], "markes in gold and that i did denie my": [0, 65535], "in gold and that i did denie my wife": [0, 65535], "gold and that i did denie my wife and": [0, 65535], "and that i did denie my wife and house": [0, 65535], "that i did denie my wife and house thou": [0, 65535], "i did denie my wife and house thou drunkard": [0, 65535], "did denie my wife and house thou drunkard thou": [0, 65535], "denie my wife and house thou drunkard thou what": [0, 65535], "my wife and house thou drunkard thou what didst": [0, 65535], "wife and house thou drunkard thou what didst thou": [0, 65535], "and house thou drunkard thou what didst thou meane": [0, 65535], "house thou drunkard thou what didst thou meane by": [0, 65535], "thou drunkard thou what didst thou meane by this": [0, 65535], "drunkard thou what didst thou meane by this e": [0, 65535], "thou what didst thou meane by this e dro": [0, 65535], "what didst thou meane by this e dro say": [0, 65535], "didst thou meane by this e dro say what": [0, 65535], "thou meane by this e dro say what you": [0, 65535], "meane by this e dro say what you wil": [0, 65535], "by this e dro say what you wil sir": [0, 65535], "this e dro say what you wil sir but": [0, 65535], "e dro say what you wil sir but i": [0, 65535], "dro say what you wil sir but i know": [0, 65535], "say what you wil sir but i know what": [0, 65535], "what you wil sir but i know what i": [0, 65535], "you wil sir but i know what i know": [0, 65535], "wil sir but i know what i know that": [0, 65535], "sir but i know what i know that you": [0, 65535], "but i know what i know that you beat": [0, 65535], "i know what i know that you beat me": [0, 65535], "know what i know that you beat me at": [0, 65535], "what i know that you beat me at the": [0, 65535], "i know that you beat me at the mart": [0, 65535], "know that you beat me at the mart i": [0, 65535], "that you beat me at the mart i haue": [0, 65535], "you beat me at the mart i haue your": [0, 65535], "beat me at the mart i haue your hand": [0, 65535], "me at the mart i haue your hand to": [0, 65535], "at the mart i haue your hand to show": [0, 65535], "the mart i haue your hand to show if": [0, 65535], "mart i haue your hand to show if the": [0, 65535], "i haue your hand to show if the skin": [0, 65535], "haue your hand to show if the skin were": [0, 65535], "your hand to show if the skin were parchment": [0, 65535], "hand to show if the skin were parchment the": [0, 65535], "to show if the skin were parchment the blows": [0, 65535], "show if the skin were parchment the blows you": [0, 65535], "if the skin were parchment the blows you gaue": [0, 65535], "the skin were parchment the blows you gaue were": [0, 65535], "skin were parchment the blows you gaue were ink": [0, 65535], "were parchment the blows you gaue were ink your": [0, 65535], "parchment the blows you gaue were ink your owne": [0, 65535], "the blows you gaue were ink your owne hand": [0, 65535], "blows you gaue were ink your owne hand writing": [0, 65535], "you gaue were ink your owne hand writing would": [0, 65535], "gaue were ink your owne hand writing would tell": [0, 65535], "were ink your owne hand writing would tell you": [0, 65535], "ink your owne hand writing would tell you what": [0, 65535], "your owne hand writing would tell you what i": [0, 65535], "owne hand writing would tell you what i thinke": [0, 65535], "hand writing would tell you what i thinke e": [0, 65535], "writing would tell you what i thinke e ant": [0, 65535], "would tell you what i thinke e ant i": [0, 65535], "tell you what i thinke e ant i thinke": [0, 65535], "you what i thinke e ant i thinke thou": [0, 65535], "what i thinke e ant i thinke thou art": [0, 65535], "i thinke e ant i thinke thou art an": [0, 65535], "thinke e ant i thinke thou art an asse": [0, 65535], "e ant i thinke thou art an asse e": [0, 65535], "ant i thinke thou art an asse e dro": [0, 65535], "i thinke thou art an asse e dro marry": [0, 65535], "thinke thou art an asse e dro marry so": [0, 65535], "thou art an asse e dro marry so it": [0, 65535], "art an asse e dro marry so it doth": [0, 65535], "an asse e dro marry so it doth appeare": [0, 65535], "asse e dro marry so it doth appeare by": [0, 65535], "e dro marry so it doth appeare by the": [0, 65535], "dro marry so it doth appeare by the wrongs": [0, 65535], "marry so it doth appeare by the wrongs i": [0, 65535], "so it doth appeare by the wrongs i suffer": [0, 65535], "it doth appeare by the wrongs i suffer and": [0, 65535], "doth appeare by the wrongs i suffer and the": [0, 65535], "appeare by the wrongs i suffer and the blowes": [0, 65535], "by the wrongs i suffer and the blowes i": [0, 65535], "the wrongs i suffer and the blowes i beare": [0, 65535], "wrongs i suffer and the blowes i beare i": [0, 65535], "i suffer and the blowes i beare i should": [0, 65535], "suffer and the blowes i beare i should kicke": [0, 65535], "and the blowes i beare i should kicke being": [0, 65535], "the blowes i beare i should kicke being kickt": [0, 65535], "blowes i beare i should kicke being kickt and": [0, 65535], "i beare i should kicke being kickt and being": [0, 65535], "beare i should kicke being kickt and being at": [0, 65535], "i should kicke being kickt and being at that": [0, 65535], "should kicke being kickt and being at that passe": [0, 65535], "kicke being kickt and being at that passe you": [0, 65535], "being kickt and being at that passe you would": [0, 65535], "kickt and being at that passe you would keepe": [0, 65535], "and being at that passe you would keepe from": [0, 65535], "being at that passe you would keepe from my": [0, 65535], "at that passe you would keepe from my heeles": [0, 65535], "that passe you would keepe from my heeles and": [0, 65535], "passe you would keepe from my heeles and beware": [0, 65535], "you would keepe from my heeles and beware of": [0, 65535], "would keepe from my heeles and beware of an": [0, 65535], "keepe from my heeles and beware of an asse": [0, 65535], "from my heeles and beware of an asse e": [0, 65535], "my heeles and beware of an asse e an": [0, 65535], "heeles and beware of an asse e an y'are": [0, 65535], "and beware of an asse e an y'are sad": [0, 65535], "beware of an asse e an y'are sad signior": [0, 65535], "of an asse e an y'are sad signior balthazar": [0, 65535], "an asse e an y'are sad signior balthazar pray": [0, 65535], "asse e an y'are sad signior balthazar pray god": [0, 65535], "e an y'are sad signior balthazar pray god our": [0, 65535], "an y'are sad signior balthazar pray god our cheer": [0, 65535], "y'are sad signior balthazar pray god our cheer may": [0, 65535], "sad signior balthazar pray god our cheer may answer": [0, 65535], "signior balthazar pray god our cheer may answer my": [0, 65535], "balthazar pray god our cheer may answer my good": [0, 65535], "pray god our cheer may answer my good will": [0, 65535], "god our cheer may answer my good will and": [0, 65535], "our cheer may answer my good will and your": [0, 65535], "cheer may answer my good will and your good": [0, 65535], "may answer my good will and your good welcom": [0, 65535], "answer my good will and your good welcom here": [0, 65535], "my good will and your good welcom here bal": [0, 65535], "good will and your good welcom here bal i": [0, 65535], "will and your good welcom here bal i hold": [0, 65535], "and your good welcom here bal i hold your": [0, 65535], "your good welcom here bal i hold your dainties": [0, 65535], "good welcom here bal i hold your dainties cheap": [0, 65535], "welcom here bal i hold your dainties cheap sir": [0, 65535], "here bal i hold your dainties cheap sir your": [0, 65535], "bal i hold your dainties cheap sir your welcom": [0, 65535], "i hold your dainties cheap sir your welcom deer": [0, 65535], "hold your dainties cheap sir your welcom deer e": [0, 65535], "your dainties cheap sir your welcom deer e an": [0, 65535], "dainties cheap sir your welcom deer e an oh": [0, 65535], "cheap sir your welcom deer e an oh signior": [0, 65535], "sir your welcom deer e an oh signior balthazar": [0, 65535], "your welcom deer e an oh signior balthazar either": [0, 65535], "welcom deer e an oh signior balthazar either at": [0, 65535], "deer e an oh signior balthazar either at flesh": [0, 65535], "e an oh signior balthazar either at flesh or": [0, 65535], "an oh signior balthazar either at flesh or fish": [0, 65535], "oh signior balthazar either at flesh or fish a": [0, 65535], "signior balthazar either at flesh or fish a table": [0, 65535], "balthazar either at flesh or fish a table full": [0, 65535], "either at flesh or fish a table full of": [0, 65535], "at flesh or fish a table full of welcome": [0, 65535], "flesh or fish a table full of welcome makes": [0, 65535], "or fish a table full of welcome makes scarce": [0, 65535], "fish a table full of welcome makes scarce one": [0, 65535], "a table full of welcome makes scarce one dainty": [0, 65535], "table full of welcome makes scarce one dainty dish": [0, 65535], "full of welcome makes scarce one dainty dish bal": [0, 65535], "of welcome makes scarce one dainty dish bal good": [0, 65535], "welcome makes scarce one dainty dish bal good meat": [0, 65535], "makes scarce one dainty dish bal good meat sir": [0, 65535], "scarce one dainty dish bal good meat sir is": [0, 65535], "one dainty dish bal good meat sir is co": [0, 65535], "dainty dish bal good meat sir is co m": [0, 65535], "dish bal good meat sir is co m mon": [0, 65535], "bal good meat sir is co m mon that": [0, 65535], "good meat sir is co m mon that euery": [0, 65535], "meat sir is co m mon that euery churle": [0, 65535], "sir is co m mon that euery churle affords": [0, 65535], "is co m mon that euery churle affords anti": [0, 65535], "co m mon that euery churle affords anti and": [0, 65535], "m mon that euery churle affords anti and welcome": [0, 65535], "mon that euery churle affords anti and welcome more": [0, 65535], "that euery churle affords anti and welcome more common": [0, 65535], "euery churle affords anti and welcome more common for": [0, 65535], "churle affords anti and welcome more common for thats": [0, 65535], "affords anti and welcome more common for thats nothing": [0, 65535], "anti and welcome more common for thats nothing but": [0, 65535], "and welcome more common for thats nothing but words": [0, 65535], "welcome more common for thats nothing but words bal": [0, 65535], "more common for thats nothing but words bal small": [0, 65535], "common for thats nothing but words bal small cheere": [0, 65535], "for thats nothing but words bal small cheere and": [0, 65535], "thats nothing but words bal small cheere and great": [0, 65535], "nothing but words bal small cheere and great welcome": [0, 65535], "but words bal small cheere and great welcome makes": [0, 65535], "words bal small cheere and great welcome makes a": [0, 65535], "bal small cheere and great welcome makes a merrie": [0, 65535], "small cheere and great welcome makes a merrie feast": [0, 65535], "cheere and great welcome makes a merrie feast anti": [0, 65535], "and great welcome makes a merrie feast anti i": [0, 65535], "great welcome makes a merrie feast anti i to": [0, 65535], "welcome makes a merrie feast anti i to a": [0, 65535], "makes a merrie feast anti i to a niggardly": [0, 65535], "a merrie feast anti i to a niggardly host": [0, 65535], "merrie feast anti i to a niggardly host and": [0, 65535], "feast anti i to a niggardly host and more": [0, 65535], "anti i to a niggardly host and more sparing": [0, 65535], "i to a niggardly host and more sparing guest": [0, 65535], "to a niggardly host and more sparing guest but": [0, 65535], "a niggardly host and more sparing guest but though": [0, 65535], "niggardly host and more sparing guest but though my": [0, 65535], "host and more sparing guest but though my cates": [0, 65535], "and more sparing guest but though my cates be": [0, 65535], "more sparing guest but though my cates be meane": [0, 65535], "sparing guest but though my cates be meane take": [0, 65535], "guest but though my cates be meane take them": [0, 65535], "but though my cates be meane take them in": [0, 65535], "though my cates be meane take them in good": [0, 65535], "my cates be meane take them in good part": [0, 65535], "cates be meane take them in good part better": [0, 65535], "be meane take them in good part better cheere": [0, 65535], "meane take them in good part better cheere may": [0, 65535], "take them in good part better cheere may you": [0, 65535], "them in good part better cheere may you haue": [0, 65535], "in good part better cheere may you haue but": [0, 65535], "good part better cheere may you haue but not": [0, 65535], "part better cheere may you haue but not with": [0, 65535], "better cheere may you haue but not with better": [0, 65535], "cheere may you haue but not with better hart": [0, 65535], "may you haue but not with better hart but": [0, 65535], "you haue but not with better hart but soft": [0, 65535], "haue but not with better hart but soft my": [0, 65535], "but not with better hart but soft my doore": [0, 65535], "not with better hart but soft my doore is": [0, 65535], "with better hart but soft my doore is lockt": [0, 65535], "better hart but soft my doore is lockt goe": [0, 65535], "hart but soft my doore is lockt goe bid": [0, 65535], "but soft my doore is lockt goe bid them": [0, 65535], "soft my doore is lockt goe bid them let": [0, 65535], "my doore is lockt goe bid them let vs": [0, 65535], "doore is lockt goe bid them let vs in": [0, 65535], "is lockt goe bid them let vs in e": [0, 65535], "lockt goe bid them let vs in e dro": [0, 65535], "goe bid them let vs in e dro maud": [0, 65535], "bid them let vs in e dro maud briget": [0, 65535], "them let vs in e dro maud briget marian": [0, 65535], "let vs in e dro maud briget marian cisley": [0, 65535], "vs in e dro maud briget marian cisley gillian": [0, 65535], "in e dro maud briget marian cisley gillian ginn": [0, 65535], "e dro maud briget marian cisley gillian ginn s": [0, 65535], "dro maud briget marian cisley gillian ginn s dro": [0, 65535], "maud briget marian cisley gillian ginn s dro mome": [0, 65535], "briget marian cisley gillian ginn s dro mome malthorse": [0, 65535], "marian cisley gillian ginn s dro mome malthorse capon": [0, 65535], "cisley gillian ginn s dro mome malthorse capon coxcombe": [0, 65535], "gillian ginn s dro mome malthorse capon coxcombe idiot": [0, 65535], "ginn s dro mome malthorse capon coxcombe idiot patch": [0, 65535], "s dro mome malthorse capon coxcombe idiot patch either": [0, 65535], "dro mome malthorse capon coxcombe idiot patch either get": [0, 65535], "mome malthorse capon coxcombe idiot patch either get thee": [0, 65535], "malthorse capon coxcombe idiot patch either get thee from": [0, 65535], "capon coxcombe idiot patch either get thee from the": [0, 65535], "coxcombe idiot patch either get thee from the dore": [0, 65535], "idiot patch either get thee from the dore or": [0, 65535], "patch either get thee from the dore or sit": [0, 65535], "either get thee from the dore or sit downe": [0, 65535], "get thee from the dore or sit downe at": [0, 65535], "thee from the dore or sit downe at the": [0, 65535], "from the dore or sit downe at the hatch": [0, 65535], "the dore or sit downe at the hatch dost": [0, 65535], "dore or sit downe at the hatch dost thou": [0, 65535], "or sit downe at the hatch dost thou coniure": [0, 65535], "sit downe at the hatch dost thou coniure for": [0, 65535], "downe at the hatch dost thou coniure for wenches": [0, 65535], "at the hatch dost thou coniure for wenches that": [0, 65535], "the hatch dost thou coniure for wenches that thou": [0, 65535], "hatch dost thou coniure for wenches that thou calst": [0, 65535], "dost thou coniure for wenches that thou calst for": [0, 65535], "thou coniure for wenches that thou calst for such": [0, 65535], "coniure for wenches that thou calst for such store": [0, 65535], "for wenches that thou calst for such store when": [0, 65535], "wenches that thou calst for such store when one": [0, 65535], "that thou calst for such store when one is": [0, 65535], "thou calst for such store when one is one": [0, 65535], "calst for such store when one is one too": [0, 65535], "for such store when one is one too many": [0, 65535], "such store when one is one too many goe": [0, 65535], "store when one is one too many goe get": [0, 65535], "when one is one too many goe get thee": [0, 65535], "one is one too many goe get thee from": [0, 65535], "is one too many goe get thee from the": [0, 65535], "one too many goe get thee from the dore": [0, 65535], "too many goe get thee from the dore e": [0, 65535], "many goe get thee from the dore e dro": [0, 65535], "goe get thee from the dore e dro what": [0, 65535], "get thee from the dore e dro what patch": [0, 65535], "thee from the dore e dro what patch is": [0, 65535], "from the dore e dro what patch is made": [0, 65535], "the dore e dro what patch is made our": [0, 65535], "dore e dro what patch is made our porter": [0, 65535], "e dro what patch is made our porter my": [0, 65535], "dro what patch is made our porter my master": [0, 65535], "what patch is made our porter my master stayes": [0, 65535], "patch is made our porter my master stayes in": [0, 65535], "is made our porter my master stayes in the": [0, 65535], "made our porter my master stayes in the street": [0, 65535], "our porter my master stayes in the street s": [0, 65535], "porter my master stayes in the street s dro": [0, 65535], "my master stayes in the street s dro let": [0, 65535], "master stayes in the street s dro let him": [0, 65535], "stayes in the street s dro let him walke": [0, 65535], "in the street s dro let him walke from": [0, 65535], "the street s dro let him walke from whence": [0, 65535], "street s dro let him walke from whence he": [0, 65535], "s dro let him walke from whence he came": [0, 65535], "dro let him walke from whence he came lest": [0, 65535], "let him walke from whence he came lest hee": [0, 65535], "him walke from whence he came lest hee catch": [0, 65535], "walke from whence he came lest hee catch cold": [0, 65535], "from whence he came lest hee catch cold on's": [0, 65535], "whence he came lest hee catch cold on's feet": [0, 65535], "he came lest hee catch cold on's feet e": [0, 65535], "came lest hee catch cold on's feet e ant": [0, 65535], "lest hee catch cold on's feet e ant who": [0, 65535], "hee catch cold on's feet e ant who talks": [0, 65535], "catch cold on's feet e ant who talks within": [0, 65535], "cold on's feet e ant who talks within there": [0, 65535], "on's feet e ant who talks within there hoa": [0, 65535], "feet e ant who talks within there hoa open": [0, 65535], "e ant who talks within there hoa open the": [0, 65535], "ant who talks within there hoa open the dore": [0, 65535], "who talks within there hoa open the dore s": [0, 65535], "talks within there hoa open the dore s dro": [0, 65535], "within there hoa open the dore s dro right": [0, 65535], "there hoa open the dore s dro right sir": [0, 65535], "hoa open the dore s dro right sir ile": [0, 65535], "open the dore s dro right sir ile tell": [0, 65535], "the dore s dro right sir ile tell you": [0, 65535], "dore s dro right sir ile tell you when": [0, 65535], "s dro right sir ile tell you when and": [0, 65535], "dro right sir ile tell you when and you'll": [0, 65535], "right sir ile tell you when and you'll tell": [0, 65535], "sir ile tell you when and you'll tell me": [0, 65535], "ile tell you when and you'll tell me wherefore": [0, 65535], "tell you when and you'll tell me wherefore ant": [0, 65535], "you when and you'll tell me wherefore ant wherefore": [0, 65535], "when and you'll tell me wherefore ant wherefore for": [0, 65535], "and you'll tell me wherefore ant wherefore for my": [0, 65535], "you'll tell me wherefore ant wherefore for my dinner": [0, 65535], "tell me wherefore ant wherefore for my dinner i": [0, 65535], "me wherefore ant wherefore for my dinner i haue": [0, 65535], "wherefore ant wherefore for my dinner i haue not": [0, 65535], "ant wherefore for my dinner i haue not din'd": [0, 65535], "wherefore for my dinner i haue not din'd to": [0, 65535], "for my dinner i haue not din'd to day": [0, 65535], "my dinner i haue not din'd to day s": [0, 65535], "dinner i haue not din'd to day s dro": [0, 65535], "i haue not din'd to day s dro nor": [0, 65535], "haue not din'd to day s dro nor to": [0, 65535], "not din'd to day s dro nor to day": [0, 65535], "din'd to day s dro nor to day here": [0, 65535], "to day s dro nor to day here you": [0, 65535], "day s dro nor to day here you must": [0, 65535], "s dro nor to day here you must not": [0, 65535], "dro nor to day here you must not come": [0, 65535], "nor to day here you must not come againe": [0, 65535], "to day here you must not come againe when": [0, 65535], "day here you must not come againe when you": [0, 65535], "here you must not come againe when you may": [0, 65535], "you must not come againe when you may anti": [0, 65535], "must not come againe when you may anti what": [0, 65535], "not come againe when you may anti what art": [0, 65535], "come againe when you may anti what art thou": [0, 65535], "againe when you may anti what art thou that": [0, 65535], "when you may anti what art thou that keep'st": [0, 65535], "you may anti what art thou that keep'st mee": [0, 65535], "may anti what art thou that keep'st mee out": [0, 65535], "anti what art thou that keep'st mee out from": [0, 65535], "what art thou that keep'st mee out from the": [0, 65535], "art thou that keep'st mee out from the howse": [0, 65535], "thou that keep'st mee out from the howse i": [0, 65535], "that keep'st mee out from the howse i owe": [0, 65535], "keep'st mee out from the howse i owe s": [0, 65535], "mee out from the howse i owe s dro": [0, 65535], "out from the howse i owe s dro the": [0, 65535], "from the howse i owe s dro the porter": [0, 65535], "the howse i owe s dro the porter for": [0, 65535], "howse i owe s dro the porter for this": [0, 65535], "i owe s dro the porter for this time": [0, 65535], "owe s dro the porter for this time sir": [0, 65535], "s dro the porter for this time sir and": [0, 65535], "dro the porter for this time sir and my": [0, 65535], "the porter for this time sir and my name": [0, 65535], "porter for this time sir and my name is": [0, 65535], "for this time sir and my name is dromio": [0, 65535], "this time sir and my name is dromio e": [0, 65535], "time sir and my name is dromio e dro": [0, 65535], "sir and my name is dromio e dro o": [0, 65535], "and my name is dromio e dro o villaine": [0, 65535], "my name is dromio e dro o villaine thou": [0, 65535], "name is dromio e dro o villaine thou hast": [0, 65535], "is dromio e dro o villaine thou hast stolne": [0, 65535], "dromio e dro o villaine thou hast stolne both": [0, 65535], "e dro o villaine thou hast stolne both mine": [0, 65535], "dro o villaine thou hast stolne both mine office": [0, 65535], "o villaine thou hast stolne both mine office and": [0, 65535], "villaine thou hast stolne both mine office and my": [0, 65535], "thou hast stolne both mine office and my name": [0, 65535], "hast stolne both mine office and my name the": [0, 65535], "stolne both mine office and my name the one": [0, 65535], "both mine office and my name the one nere": [0, 65535], "mine office and my name the one nere got": [0, 65535], "office and my name the one nere got me": [0, 65535], "and my name the one nere got me credit": [0, 65535], "my name the one nere got me credit the": [0, 65535], "name the one nere got me credit the other": [0, 65535], "the one nere got me credit the other mickle": [0, 65535], "one nere got me credit the other mickle blame": [0, 65535], "nere got me credit the other mickle blame if": [0, 65535], "got me credit the other mickle blame if thou": [0, 65535], "me credit the other mickle blame if thou hadst": [0, 65535], "credit the other mickle blame if thou hadst beene": [0, 65535], "the other mickle blame if thou hadst beene dromio": [0, 65535], "other mickle blame if thou hadst beene dromio to": [0, 65535], "mickle blame if thou hadst beene dromio to day": [0, 65535], "blame if thou hadst beene dromio to day in": [0, 65535], "if thou hadst beene dromio to day in my": [0, 65535], "thou hadst beene dromio to day in my place": [0, 65535], "hadst beene dromio to day in my place thou": [0, 65535], "beene dromio to day in my place thou wouldst": [0, 65535], "dromio to day in my place thou wouldst haue": [0, 65535], "to day in my place thou wouldst haue chang'd": [0, 65535], "day in my place thou wouldst haue chang'd thy": [0, 65535], "in my place thou wouldst haue chang'd thy face": [0, 65535], "my place thou wouldst haue chang'd thy face for": [0, 65535], "place thou wouldst haue chang'd thy face for a": [0, 65535], "thou wouldst haue chang'd thy face for a name": [0, 65535], "wouldst haue chang'd thy face for a name or": [0, 65535], "haue chang'd thy face for a name or thy": [0, 65535], "chang'd thy face for a name or thy name": [0, 65535], "thy face for a name or thy name for": [0, 65535], "face for a name or thy name for an": [0, 65535], "for a name or thy name for an asse": [0, 65535], "a name or thy name for an asse enter": [0, 65535], "name or thy name for an asse enter luce": [0, 65535], "or thy name for an asse enter luce luce": [0, 65535], "thy name for an asse enter luce luce what": [0, 65535], "name for an asse enter luce luce what a": [0, 65535], "for an asse enter luce luce what a coile": [0, 65535], "an asse enter luce luce what a coile is": [0, 65535], "asse enter luce luce what a coile is there": [0, 65535], "enter luce luce what a coile is there dromio": [0, 65535], "luce luce what a coile is there dromio who": [0, 65535], "luce what a coile is there dromio who are": [0, 65535], "what a coile is there dromio who are those": [0, 65535], "a coile is there dromio who are those at": [0, 65535], "coile is there dromio who are those at the": [0, 65535], "is there dromio who are those at the gate": [0, 65535], "there dromio who are those at the gate e": [0, 65535], "dromio who are those at the gate e dro": [0, 65535], "who are those at the gate e dro let": [0, 65535], "are those at the gate e dro let my": [0, 65535], "those at the gate e dro let my master": [0, 65535], "at the gate e dro let my master in": [0, 65535], "the gate e dro let my master in luce": [0, 65535], "gate e dro let my master in luce luce": [0, 65535], "e dro let my master in luce luce faith": [0, 65535], "dro let my master in luce luce faith no": [0, 65535], "let my master in luce luce faith no hee": [0, 65535], "my master in luce luce faith no hee comes": [0, 65535], "master in luce luce faith no hee comes too": [0, 65535], "in luce luce faith no hee comes too late": [0, 65535], "luce luce faith no hee comes too late and": [0, 65535], "luce faith no hee comes too late and so": [0, 65535], "faith no hee comes too late and so tell": [0, 65535], "no hee comes too late and so tell your": [0, 65535], "hee comes too late and so tell your master": [0, 65535], "comes too late and so tell your master e": [0, 65535], "too late and so tell your master e dro": [0, 65535], "late and so tell your master e dro o": [0, 65535], "and so tell your master e dro o lord": [0, 65535], "so tell your master e dro o lord i": [0, 65535], "tell your master e dro o lord i must": [0, 65535], "your master e dro o lord i must laugh": [0, 65535], "master e dro o lord i must laugh haue": [0, 65535], "e dro o lord i must laugh haue at": [0, 65535], "dro o lord i must laugh haue at you": [0, 65535], "o lord i must laugh haue at you with": [0, 65535], "lord i must laugh haue at you with a": [0, 65535], "i must laugh haue at you with a prouerbe": [0, 65535], "must laugh haue at you with a prouerbe shall": [0, 65535], "laugh haue at you with a prouerbe shall i": [0, 65535], "haue at you with a prouerbe shall i set": [0, 65535], "at you with a prouerbe shall i set in": [0, 65535], "you with a prouerbe shall i set in my": [0, 65535], "with a prouerbe shall i set in my staffe": [0, 65535], "a prouerbe shall i set in my staffe luce": [0, 65535], "prouerbe shall i set in my staffe luce haue": [0, 65535], "shall i set in my staffe luce haue at": [0, 65535], "i set in my staffe luce haue at you": [0, 65535], "set in my staffe luce haue at you with": [0, 65535], "in my staffe luce haue at you with another": [0, 65535], "my staffe luce haue at you with another that's": [0, 65535], "staffe luce haue at you with another that's when": [0, 65535], "luce haue at you with another that's when can": [0, 65535], "haue at you with another that's when can you": [0, 65535], "at you with another that's when can you tell": [0, 65535], "you with another that's when can you tell s": [0, 65535], "with another that's when can you tell s dro": [0, 65535], "another that's when can you tell s dro if": [0, 65535], "that's when can you tell s dro if thy": [0, 65535], "when can you tell s dro if thy name": [0, 65535], "can you tell s dro if thy name be": [0, 65535], "you tell s dro if thy name be called": [0, 65535], "tell s dro if thy name be called luce": [0, 65535], "s dro if thy name be called luce luce": [0, 65535], "dro if thy name be called luce luce thou": [0, 65535], "if thy name be called luce luce thou hast": [0, 65535], "thy name be called luce luce thou hast an": [0, 65535], "name be called luce luce thou hast an swer'd": [0, 65535], "be called luce luce thou hast an swer'd him": [0, 65535], "called luce luce thou hast an swer'd him well": [0, 65535], "luce luce thou hast an swer'd him well anti": [0, 65535], "luce thou hast an swer'd him well anti doe": [0, 65535], "thou hast an swer'd him well anti doe you": [0, 65535], "hast an swer'd him well anti doe you heare": [0, 65535], "an swer'd him well anti doe you heare you": [0, 65535], "swer'd him well anti doe you heare you minion": [0, 65535], "him well anti doe you heare you minion you'll": [0, 65535], "well anti doe you heare you minion you'll let": [0, 65535], "anti doe you heare you minion you'll let vs": [0, 65535], "doe you heare you minion you'll let vs in": [0, 65535], "you heare you minion you'll let vs in i": [0, 65535], "heare you minion you'll let vs in i hope": [0, 65535], "you minion you'll let vs in i hope luce": [0, 65535], "minion you'll let vs in i hope luce i": [0, 65535], "you'll let vs in i hope luce i thought": [0, 65535], "let vs in i hope luce i thought to": [0, 65535], "vs in i hope luce i thought to haue": [0, 65535], "in i hope luce i thought to haue askt": [0, 65535], "i hope luce i thought to haue askt you": [0, 65535], "hope luce i thought to haue askt you s": [0, 65535], "luce i thought to haue askt you s dro": [0, 65535], "i thought to haue askt you s dro and": [0, 65535], "thought to haue askt you s dro and you": [0, 65535], "to haue askt you s dro and you said": [0, 65535], "haue askt you s dro and you said no": [0, 65535], "askt you s dro and you said no e": [0, 65535], "you s dro and you said no e dro": [0, 65535], "s dro and you said no e dro so": [0, 65535], "dro and you said no e dro so come": [0, 65535], "and you said no e dro so come helpe": [0, 65535], "you said no e dro so come helpe well": [0, 65535], "said no e dro so come helpe well strooke": [0, 65535], "no e dro so come helpe well strooke there": [0, 65535], "e dro so come helpe well strooke there was": [0, 65535], "dro so come helpe well strooke there was blow": [0, 65535], "so come helpe well strooke there was blow for": [0, 65535], "come helpe well strooke there was blow for blow": [0, 65535], "helpe well strooke there was blow for blow anti": [0, 65535], "well strooke there was blow for blow anti thou": [0, 65535], "strooke there was blow for blow anti thou baggage": [0, 65535], "there was blow for blow anti thou baggage let": [0, 65535], "was blow for blow anti thou baggage let me": [0, 65535], "blow for blow anti thou baggage let me in": [0, 65535], "for blow anti thou baggage let me in luce": [0, 65535], "blow anti thou baggage let me in luce can": [0, 65535], "anti thou baggage let me in luce can you": [0, 65535], "thou baggage let me in luce can you tell": [0, 65535], "baggage let me in luce can you tell for": [0, 65535], "let me in luce can you tell for whose": [0, 65535], "me in luce can you tell for whose sake": [0, 65535], "in luce can you tell for whose sake e": [0, 65535], "luce can you tell for whose sake e drom": [0, 65535], "can you tell for whose sake e drom master": [0, 65535], "you tell for whose sake e drom master knocke": [0, 65535], "tell for whose sake e drom master knocke the": [0, 65535], "for whose sake e drom master knocke the doore": [0, 65535], "whose sake e drom master knocke the doore hard": [0, 65535], "sake e drom master knocke the doore hard luce": [0, 65535], "e drom master knocke the doore hard luce let": [0, 65535], "drom master knocke the doore hard luce let him": [0, 65535], "master knocke the doore hard luce let him knocke": [0, 65535], "knocke the doore hard luce let him knocke till": [0, 65535], "the doore hard luce let him knocke till it": [0, 65535], "doore hard luce let him knocke till it ake": [0, 65535], "hard luce let him knocke till it ake anti": [0, 65535], "luce let him knocke till it ake anti you'll": [0, 65535], "let him knocke till it ake anti you'll crie": [0, 65535], "him knocke till it ake anti you'll crie for": [0, 65535], "knocke till it ake anti you'll crie for this": [0, 65535], "till it ake anti you'll crie for this minion": [0, 65535], "it ake anti you'll crie for this minion if": [0, 65535], "ake anti you'll crie for this minion if i": [0, 65535], "anti you'll crie for this minion if i beat": [0, 65535], "you'll crie for this minion if i beat the": [0, 65535], "crie for this minion if i beat the doore": [0, 65535], "for this minion if i beat the doore downe": [0, 65535], "this minion if i beat the doore downe luce": [0, 65535], "minion if i beat the doore downe luce what": [0, 65535], "if i beat the doore downe luce what needs": [0, 65535], "i beat the doore downe luce what needs all": [0, 65535], "beat the doore downe luce what needs all that": [0, 65535], "the doore downe luce what needs all that and": [0, 65535], "doore downe luce what needs all that and a": [0, 65535], "downe luce what needs all that and a paire": [0, 65535], "luce what needs all that and a paire of": [0, 65535], "what needs all that and a paire of stocks": [0, 65535], "needs all that and a paire of stocks in": [0, 65535], "all that and a paire of stocks in the": [0, 65535], "that and a paire of stocks in the towne": [0, 65535], "and a paire of stocks in the towne enter": [0, 65535], "a paire of stocks in the towne enter adriana": [0, 65535], "paire of stocks in the towne enter adriana adr": [0, 65535], "of stocks in the towne enter adriana adr who": [0, 65535], "stocks in the towne enter adriana adr who is": [0, 65535], "in the towne enter adriana adr who is that": [0, 65535], "the towne enter adriana adr who is that at": [0, 65535], "towne enter adriana adr who is that at the": [0, 65535], "enter adriana adr who is that at the doore": [0, 65535], "adriana adr who is that at the doore that": [0, 65535], "adr who is that at the doore that keeps": [0, 65535], "who is that at the doore that keeps all": [0, 65535], "is that at the doore that keeps all this": [0, 65535], "that at the doore that keeps all this noise": [0, 65535], "at the doore that keeps all this noise s": [0, 65535], "the doore that keeps all this noise s dro": [0, 65535], "doore that keeps all this noise s dro by": [0, 65535], "that keeps all this noise s dro by my": [0, 65535], "keeps all this noise s dro by my troth": [0, 65535], "all this noise s dro by my troth your": [0, 65535], "this noise s dro by my troth your towne": [0, 65535], "noise s dro by my troth your towne is": [0, 65535], "s dro by my troth your towne is troubled": [0, 65535], "dro by my troth your towne is troubled with": [0, 65535], "by my troth your towne is troubled with vnruly": [0, 65535], "my troth your towne is troubled with vnruly boies": [0, 65535], "troth your towne is troubled with vnruly boies anti": [0, 65535], "your towne is troubled with vnruly boies anti are": [0, 65535], "towne is troubled with vnruly boies anti are you": [0, 65535], "is troubled with vnruly boies anti are you there": [0, 65535], "troubled with vnruly boies anti are you there wife": [0, 65535], "with vnruly boies anti are you there wife you": [0, 65535], "vnruly boies anti are you there wife you might": [0, 65535], "boies anti are you there wife you might haue": [0, 65535], "anti are you there wife you might haue come": [0, 65535], "are you there wife you might haue come before": [0, 65535], "you there wife you might haue come before adri": [0, 65535], "there wife you might haue come before adri your": [0, 65535], "wife you might haue come before adri your wife": [0, 65535], "you might haue come before adri your wife sir": [0, 65535], "might haue come before adri your wife sir knaue": [0, 65535], "haue come before adri your wife sir knaue go": [0, 65535], "come before adri your wife sir knaue go get": [0, 65535], "before adri your wife sir knaue go get you": [0, 65535], "adri your wife sir knaue go get you from": [0, 65535], "your wife sir knaue go get you from the": [0, 65535], "wife sir knaue go get you from the dore": [0, 65535], "sir knaue go get you from the dore e": [0, 65535], "knaue go get you from the dore e dro": [0, 65535], "go get you from the dore e dro if": [0, 65535], "get you from the dore e dro if you": [0, 65535], "you from the dore e dro if you went": [0, 65535], "from the dore e dro if you went in": [0, 65535], "the dore e dro if you went in paine": [0, 65535], "dore e dro if you went in paine master": [0, 65535], "e dro if you went in paine master this": [0, 65535], "dro if you went in paine master this knaue": [0, 65535], "if you went in paine master this knaue wold": [0, 65535], "you went in paine master this knaue wold goe": [0, 65535], "went in paine master this knaue wold goe sore": [0, 65535], "in paine master this knaue wold goe sore angelo": [0, 65535], "paine master this knaue wold goe sore angelo heere": [0, 65535], "master this knaue wold goe sore angelo heere is": [0, 65535], "this knaue wold goe sore angelo heere is neither": [0, 65535], "knaue wold goe sore angelo heere is neither cheere": [0, 65535], "wold goe sore angelo heere is neither cheere sir": [0, 65535], "goe sore angelo heere is neither cheere sir nor": [0, 65535], "sore angelo heere is neither cheere sir nor welcome": [0, 65535], "angelo heere is neither cheere sir nor welcome we": [0, 65535], "heere is neither cheere sir nor welcome we would": [0, 65535], "is neither cheere sir nor welcome we would faine": [0, 65535], "neither cheere sir nor welcome we would faine haue": [0, 65535], "cheere sir nor welcome we would faine haue either": [0, 65535], "sir nor welcome we would faine haue either baltz": [0, 65535], "nor welcome we would faine haue either baltz in": [0, 65535], "welcome we would faine haue either baltz in debating": [0, 65535], "we would faine haue either baltz in debating which": [0, 65535], "would faine haue either baltz in debating which was": [0, 65535], "faine haue either baltz in debating which was best": [0, 65535], "haue either baltz in debating which was best wee": [0, 65535], "either baltz in debating which was best wee shall": [0, 65535], "baltz in debating which was best wee shall part": [0, 65535], "in debating which was best wee shall part with": [0, 65535], "debating which was best wee shall part with neither": [0, 65535], "which was best wee shall part with neither e": [0, 65535], "was best wee shall part with neither e dro": [0, 65535], "best wee shall part with neither e dro they": [0, 65535], "wee shall part with neither e dro they stand": [0, 65535], "shall part with neither e dro they stand at": [0, 65535], "part with neither e dro they stand at the": [0, 65535], "with neither e dro they stand at the doore": [0, 65535], "neither e dro they stand at the doore master": [0, 65535], "e dro they stand at the doore master bid": [0, 65535], "dro they stand at the doore master bid them": [0, 65535], "they stand at the doore master bid them welcome": [0, 65535], "stand at the doore master bid them welcome hither": [0, 65535], "at the doore master bid them welcome hither anti": [0, 65535], "the doore master bid them welcome hither anti there": [0, 65535], "doore master bid them welcome hither anti there is": [0, 65535], "master bid them welcome hither anti there is something": [0, 65535], "bid them welcome hither anti there is something in": [0, 65535], "them welcome hither anti there is something in the": [0, 65535], "welcome hither anti there is something in the winde": [0, 65535], "hither anti there is something in the winde that": [0, 65535], "anti there is something in the winde that we": [0, 65535], "there is something in the winde that we cannot": [0, 65535], "is something in the winde that we cannot get": [0, 65535], "something in the winde that we cannot get in": [0, 65535], "in the winde that we cannot get in e": [0, 65535], "the winde that we cannot get in e dro": [0, 65535], "winde that we cannot get in e dro you": [0, 65535], "that we cannot get in e dro you would": [0, 65535], "we cannot get in e dro you would say": [0, 65535], "cannot get in e dro you would say so": [0, 65535], "get in e dro you would say so master": [0, 65535], "in e dro you would say so master if": [0, 65535], "e dro you would say so master if your": [0, 65535], "dro you would say so master if your garments": [0, 65535], "you would say so master if your garments were": [0, 65535], "would say so master if your garments were thin": [0, 65535], "say so master if your garments were thin your": [0, 65535], "so master if your garments were thin your cake": [0, 65535], "master if your garments were thin your cake here": [0, 65535], "if your garments were thin your cake here is": [0, 65535], "your garments were thin your cake here is warme": [0, 65535], "garments were thin your cake here is warme within": [0, 65535], "were thin your cake here is warme within you": [0, 65535], "thin your cake here is warme within you stand": [0, 65535], "your cake here is warme within you stand here": [0, 65535], "cake here is warme within you stand here in": [0, 65535], "here is warme within you stand here in the": [0, 65535], "is warme within you stand here in the cold": [0, 65535], "warme within you stand here in the cold it": [0, 65535], "within you stand here in the cold it would": [0, 65535], "you stand here in the cold it would make": [0, 65535], "stand here in the cold it would make a": [0, 65535], "here in the cold it would make a man": [0, 65535], "in the cold it would make a man mad": [0, 65535], "the cold it would make a man mad as": [0, 65535], "cold it would make a man mad as a": [0, 65535], "it would make a man mad as a bucke": [0, 65535], "would make a man mad as a bucke to": [0, 65535], "make a man mad as a bucke to be": [0, 65535], "a man mad as a bucke to be so": [0, 65535], "man mad as a bucke to be so bought": [0, 65535], "mad as a bucke to be so bought and": [0, 65535], "as a bucke to be so bought and sold": [0, 65535], "a bucke to be so bought and sold ant": [0, 65535], "bucke to be so bought and sold ant go": [0, 65535], "to be so bought and sold ant go fetch": [0, 65535], "be so bought and sold ant go fetch me": [0, 65535], "so bought and sold ant go fetch me something": [0, 65535], "bought and sold ant go fetch me something ile": [0, 65535], "and sold ant go fetch me something ile break": [0, 65535], "sold ant go fetch me something ile break ope": [0, 65535], "ant go fetch me something ile break ope the": [0, 65535], "go fetch me something ile break ope the gate": [0, 65535], "fetch me something ile break ope the gate s": [0, 65535], "me something ile break ope the gate s dro": [0, 65535], "something ile break ope the gate s dro breake": [0, 65535], "ile break ope the gate s dro breake any": [0, 65535], "break ope the gate s dro breake any breaking": [0, 65535], "ope the gate s dro breake any breaking here": [0, 65535], "the gate s dro breake any breaking here and": [0, 65535], "gate s dro breake any breaking here and ile": [0, 65535], "s dro breake any breaking here and ile breake": [0, 65535], "dro breake any breaking here and ile breake your": [0, 65535], "breake any breaking here and ile breake your knaues": [0, 65535], "any breaking here and ile breake your knaues pate": [0, 65535], "breaking here and ile breake your knaues pate e": [0, 65535], "here and ile breake your knaues pate e dro": [0, 65535], "and ile breake your knaues pate e dro a": [0, 65535], "ile breake your knaues pate e dro a man": [0, 65535], "breake your knaues pate e dro a man may": [0, 65535], "your knaues pate e dro a man may breake": [0, 65535], "knaues pate e dro a man may breake a": [0, 65535], "pate e dro a man may breake a word": [0, 65535], "e dro a man may breake a word with": [0, 65535], "dro a man may breake a word with your": [0, 65535], "a man may breake a word with your sir": [0, 65535], "man may breake a word with your sir and": [0, 65535], "may breake a word with your sir and words": [0, 65535], "breake a word with your sir and words are": [0, 65535], "a word with your sir and words are but": [0, 65535], "word with your sir and words are but winde": [0, 65535], "with your sir and words are but winde i": [0, 65535], "your sir and words are but winde i and": [0, 65535], "sir and words are but winde i and breake": [0, 65535], "and words are but winde i and breake it": [0, 65535], "words are but winde i and breake it in": [0, 65535], "are but winde i and breake it in your": [0, 65535], "but winde i and breake it in your face": [0, 65535], "winde i and breake it in your face so": [0, 65535], "i and breake it in your face so he": [0, 65535], "and breake it in your face so he break": [0, 65535], "breake it in your face so he break it": [0, 65535], "it in your face so he break it not": [0, 65535], "in your face so he break it not behinde": [0, 65535], "your face so he break it not behinde s": [0, 65535], "face so he break it not behinde s dro": [0, 65535], "so he break it not behinde s dro it": [0, 65535], "he break it not behinde s dro it seemes": [0, 65535], "break it not behinde s dro it seemes thou": [0, 65535], "it not behinde s dro it seemes thou want'st": [0, 65535], "not behinde s dro it seemes thou want'st breaking": [0, 65535], "behinde s dro it seemes thou want'st breaking out": [0, 65535], "s dro it seemes thou want'st breaking out vpon": [0, 65535], "dro it seemes thou want'st breaking out vpon thee": [0, 65535], "it seemes thou want'st breaking out vpon thee hinde": [0, 65535], "seemes thou want'st breaking out vpon thee hinde e": [0, 65535], "thou want'st breaking out vpon thee hinde e dro": [0, 65535], "want'st breaking out vpon thee hinde e dro here's": [0, 65535], "breaking out vpon thee hinde e dro here's too": [0, 65535], "out vpon thee hinde e dro here's too much": [0, 65535], "vpon thee hinde e dro here's too much out": [0, 65535], "thee hinde e dro here's too much out vpon": [0, 65535], "hinde e dro here's too much out vpon thee": [0, 65535], "e dro here's too much out vpon thee i": [0, 65535], "dro here's too much out vpon thee i pray": [0, 65535], "here's too much out vpon thee i pray thee": [0, 65535], "too much out vpon thee i pray thee let": [0, 65535], "much out vpon thee i pray thee let me": [0, 65535], "out vpon thee i pray thee let me in": [0, 65535], "vpon thee i pray thee let me in s": [0, 65535], "thee i pray thee let me in s dro": [0, 65535], "i pray thee let me in s dro i": [0, 65535], "pray thee let me in s dro i when": [0, 65535], "thee let me in s dro i when fowles": [0, 65535], "let me in s dro i when fowles haue": [0, 65535], "me in s dro i when fowles haue no": [0, 65535], "in s dro i when fowles haue no feathers": [0, 65535], "s dro i when fowles haue no feathers and": [0, 65535], "dro i when fowles haue no feathers and fish": [0, 65535], "i when fowles haue no feathers and fish haue": [0, 65535], "when fowles haue no feathers and fish haue no": [0, 65535], "fowles haue no feathers and fish haue no fin": [0, 65535], "haue no feathers and fish haue no fin ant": [0, 65535], "no feathers and fish haue no fin ant well": [0, 65535], "feathers and fish haue no fin ant well ile": [0, 65535], "and fish haue no fin ant well ile breake": [0, 65535], "fish haue no fin ant well ile breake in": [0, 65535], "haue no fin ant well ile breake in go": [0, 65535], "no fin ant well ile breake in go borrow": [0, 65535], "fin ant well ile breake in go borrow me": [0, 65535], "ant well ile breake in go borrow me a": [0, 65535], "well ile breake in go borrow me a crow": [0, 65535], "ile breake in go borrow me a crow e": [0, 65535], "breake in go borrow me a crow e dro": [0, 65535], "in go borrow me a crow e dro a": [0, 65535], "go borrow me a crow e dro a crow": [0, 65535], "borrow me a crow e dro a crow without": [0, 65535], "me a crow e dro a crow without feather": [0, 65535], "a crow e dro a crow without feather master": [0, 65535], "crow e dro a crow without feather master meane": [0, 65535], "e dro a crow without feather master meane you": [0, 65535], "dro a crow without feather master meane you so": [0, 65535], "a crow without feather master meane you so for": [0, 65535], "crow without feather master meane you so for a": [0, 65535], "without feather master meane you so for a fish": [0, 65535], "feather master meane you so for a fish without": [0, 65535], "master meane you so for a fish without a": [0, 65535], "meane you so for a fish without a finne": [0, 65535], "you so for a fish without a finne ther's": [0, 65535], "so for a fish without a finne ther's a": [0, 65535], "for a fish without a finne ther's a fowle": [0, 65535], "a fish without a finne ther's a fowle without": [0, 65535], "fish without a finne ther's a fowle without a": [0, 65535], "without a finne ther's a fowle without a fether": [0, 65535], "a finne ther's a fowle without a fether if": [0, 65535], "finne ther's a fowle without a fether if a": [0, 65535], "ther's a fowle without a fether if a crow": [0, 65535], "a fowle without a fether if a crow help": [0, 65535], "fowle without a fether if a crow help vs": [0, 65535], "without a fether if a crow help vs in": [0, 65535], "a fether if a crow help vs in sirra": [0, 65535], "fether if a crow help vs in sirra wee'll": [0, 65535], "if a crow help vs in sirra wee'll plucke": [0, 65535], "a crow help vs in sirra wee'll plucke a": [0, 65535], "crow help vs in sirra wee'll plucke a crow": [0, 65535], "help vs in sirra wee'll plucke a crow together": [0, 65535], "vs in sirra wee'll plucke a crow together ant": [0, 65535], "in sirra wee'll plucke a crow together ant go": [0, 65535], "sirra wee'll plucke a crow together ant go get": [0, 65535], "wee'll plucke a crow together ant go get thee": [0, 65535], "plucke a crow together ant go get thee gon": [0, 65535], "a crow together ant go get thee gon fetch": [0, 65535], "crow together ant go get thee gon fetch me": [0, 65535], "together ant go get thee gon fetch me an": [0, 65535], "ant go get thee gon fetch me an iron": [0, 65535], "go get thee gon fetch me an iron crow": [0, 65535], "get thee gon fetch me an iron crow balth": [0, 65535], "thee gon fetch me an iron crow balth haue": [0, 65535], "gon fetch me an iron crow balth haue patience": [0, 65535], "fetch me an iron crow balth haue patience sir": [0, 65535], "me an iron crow balth haue patience sir oh": [0, 65535], "an iron crow balth haue patience sir oh let": [0, 65535], "iron crow balth haue patience sir oh let it": [0, 65535], "crow balth haue patience sir oh let it not": [0, 65535], "balth haue patience sir oh let it not be": [0, 65535], "haue patience sir oh let it not be so": [0, 65535], "patience sir oh let it not be so heerein": [0, 65535], "sir oh let it not be so heerein you": [0, 65535], "oh let it not be so heerein you warre": [0, 65535], "let it not be so heerein you warre against": [0, 65535], "it not be so heerein you warre against your": [0, 65535], "not be so heerein you warre against your reputation": [0, 65535], "be so heerein you warre against your reputation and": [0, 65535], "so heerein you warre against your reputation and draw": [0, 65535], "heerein you warre against your reputation and draw within": [0, 65535], "you warre against your reputation and draw within the": [0, 65535], "warre against your reputation and draw within the compasse": [0, 65535], "against your reputation and draw within the compasse of": [0, 65535], "your reputation and draw within the compasse of suspect": [0, 65535], "reputation and draw within the compasse of suspect th'": [0, 65535], "and draw within the compasse of suspect th' vnuiolated": [0, 65535], "draw within the compasse of suspect th' vnuiolated honor": [0, 65535], "within the compasse of suspect th' vnuiolated honor of": [0, 65535], "the compasse of suspect th' vnuiolated honor of your": [0, 65535], "compasse of suspect th' vnuiolated honor of your wife": [0, 65535], "of suspect th' vnuiolated honor of your wife once": [0, 65535], "suspect th' vnuiolated honor of your wife once this": [0, 65535], "th' vnuiolated honor of your wife once this your": [0, 65535], "vnuiolated honor of your wife once this your long": [0, 65535], "honor of your wife once this your long experience": [0, 65535], "of your wife once this your long experience of": [0, 65535], "your wife once this your long experience of your": [0, 65535], "wife once this your long experience of your wisedome": [0, 65535], "once this your long experience of your wisedome her": [0, 65535], "this your long experience of your wisedome her sober": [0, 65535], "your long experience of your wisedome her sober vertue": [0, 65535], "long experience of your wisedome her sober vertue yeares": [0, 65535], "experience of your wisedome her sober vertue yeares and": [0, 65535], "of your wisedome her sober vertue yeares and modestie": [0, 65535], "your wisedome her sober vertue yeares and modestie plead": [0, 65535], "wisedome her sober vertue yeares and modestie plead on": [0, 65535], "her sober vertue yeares and modestie plead on your": [0, 65535], "sober vertue yeares and modestie plead on your part": [0, 65535], "vertue yeares and modestie plead on your part some": [0, 65535], "yeares and modestie plead on your part some cause": [0, 65535], "and modestie plead on your part some cause to": [0, 65535], "modestie plead on your part some cause to you": [0, 65535], "plead on your part some cause to you vnknowne": [0, 65535], "on your part some cause to you vnknowne and": [0, 65535], "your part some cause to you vnknowne and doubt": [0, 65535], "part some cause to you vnknowne and doubt not": [0, 65535], "some cause to you vnknowne and doubt not sir": [0, 65535], "cause to you vnknowne and doubt not sir but": [0, 65535], "to you vnknowne and doubt not sir but she": [0, 65535], "you vnknowne and doubt not sir but she will": [0, 65535], "vnknowne and doubt not sir but she will well": [0, 65535], "and doubt not sir but she will well excuse": [0, 65535], "doubt not sir but she will well excuse why": [0, 65535], "not sir but she will well excuse why at": [0, 65535], "sir but she will well excuse why at this": [0, 65535], "but she will well excuse why at this time": [0, 65535], "she will well excuse why at this time the": [0, 65535], "will well excuse why at this time the dores": [0, 65535], "well excuse why at this time the dores are": [0, 65535], "excuse why at this time the dores are made": [0, 65535], "why at this time the dores are made against": [0, 65535], "at this time the dores are made against you": [0, 65535], "this time the dores are made against you be": [0, 65535], "time the dores are made against you be rul'd": [0, 65535], "the dores are made against you be rul'd by": [0, 65535], "dores are made against you be rul'd by me": [0, 65535], "are made against you be rul'd by me depart": [0, 65535], "made against you be rul'd by me depart in": [0, 65535], "against you be rul'd by me depart in patience": [0, 65535], "you be rul'd by me depart in patience and": [0, 65535], "be rul'd by me depart in patience and let": [0, 65535], "rul'd by me depart in patience and let vs": [0, 65535], "by me depart in patience and let vs to": [0, 65535], "me depart in patience and let vs to the": [0, 65535], "depart in patience and let vs to the tyger": [0, 65535], "in patience and let vs to the tyger all": [0, 65535], "patience and let vs to the tyger all to": [0, 65535], "and let vs to the tyger all to dinner": [0, 65535], "let vs to the tyger all to dinner and": [0, 65535], "vs to the tyger all to dinner and about": [0, 65535], "to the tyger all to dinner and about euening": [0, 65535], "the tyger all to dinner and about euening come": [0, 65535], "tyger all to dinner and about euening come your": [0, 65535], "all to dinner and about euening come your selfe": [0, 65535], "to dinner and about euening come your selfe alone": [0, 65535], "dinner and about euening come your selfe alone to": [0, 65535], "and about euening come your selfe alone to know": [0, 65535], "about euening come your selfe alone to know the": [0, 65535], "euening come your selfe alone to know the reason": [0, 65535], "come your selfe alone to know the reason of": [0, 65535], "your selfe alone to know the reason of this": [0, 65535], "selfe alone to know the reason of this strange": [0, 65535], "alone to know the reason of this strange restraint": [0, 65535], "to know the reason of this strange restraint if": [0, 65535], "know the reason of this strange restraint if by": [0, 65535], "the reason of this strange restraint if by strong": [0, 65535], "reason of this strange restraint if by strong hand": [0, 65535], "of this strange restraint if by strong hand you": [0, 65535], "this strange restraint if by strong hand you offer": [0, 65535], "strange restraint if by strong hand you offer to": [0, 65535], "restraint if by strong hand you offer to breake": [0, 65535], "if by strong hand you offer to breake in": [0, 65535], "by strong hand you offer to breake in now": [0, 65535], "strong hand you offer to breake in now in": [0, 65535], "hand you offer to breake in now in the": [0, 65535], "you offer to breake in now in the stirring": [0, 65535], "offer to breake in now in the stirring passage": [0, 65535], "to breake in now in the stirring passage of": [0, 65535], "breake in now in the stirring passage of the": [0, 65535], "in now in the stirring passage of the day": [0, 65535], "now in the stirring passage of the day a": [0, 65535], "in the stirring passage of the day a vulgar": [0, 65535], "the stirring passage of the day a vulgar comment": [0, 65535], "stirring passage of the day a vulgar comment will": [0, 65535], "passage of the day a vulgar comment will be": [0, 65535], "of the day a vulgar comment will be made": [0, 65535], "the day a vulgar comment will be made of": [0, 65535], "day a vulgar comment will be made of it": [0, 65535], "a vulgar comment will be made of it and": [0, 65535], "vulgar comment will be made of it and that": [0, 65535], "comment will be made of it and that supposed": [0, 65535], "will be made of it and that supposed by": [0, 65535], "be made of it and that supposed by the": [0, 65535], "made of it and that supposed by the common": [0, 65535], "of it and that supposed by the common rowt": [0, 65535], "it and that supposed by the common rowt against": [0, 65535], "and that supposed by the common rowt against your": [0, 65535], "that supposed by the common rowt against your yet": [0, 65535], "supposed by the common rowt against your yet vngalled": [0, 65535], "by the common rowt against your yet vngalled estimation": [0, 65535], "the common rowt against your yet vngalled estimation that": [0, 65535], "common rowt against your yet vngalled estimation that may": [0, 65535], "rowt against your yet vngalled estimation that may with": [0, 65535], "against your yet vngalled estimation that may with foule": [0, 65535], "your yet vngalled estimation that may with foule intrusion": [0, 65535], "yet vngalled estimation that may with foule intrusion enter": [0, 65535], "vngalled estimation that may with foule intrusion enter in": [0, 65535], "estimation that may with foule intrusion enter in and": [0, 65535], "that may with foule intrusion enter in and dwell": [0, 65535], "may with foule intrusion enter in and dwell vpon": [0, 65535], "with foule intrusion enter in and dwell vpon your": [0, 65535], "foule intrusion enter in and dwell vpon your graue": [0, 65535], "intrusion enter in and dwell vpon your graue when": [0, 65535], "enter in and dwell vpon your graue when you": [0, 65535], "in and dwell vpon your graue when you are": [0, 65535], "and dwell vpon your graue when you are dead": [0, 65535], "dwell vpon your graue when you are dead for": [0, 65535], "vpon your graue when you are dead for slander": [0, 65535], "your graue when you are dead for slander liues": [0, 65535], "graue when you are dead for slander liues vpon": [0, 65535], "when you are dead for slander liues vpon succession": [0, 65535], "you are dead for slander liues vpon succession for": [0, 65535], "are dead for slander liues vpon succession for euer": [0, 65535], "dead for slander liues vpon succession for euer hows'd": [0, 65535], "for slander liues vpon succession for euer hows'd where": [0, 65535], "slander liues vpon succession for euer hows'd where it": [0, 65535], "liues vpon succession for euer hows'd where it gets": [0, 65535], "vpon succession for euer hows'd where it gets possession": [0, 65535], "succession for euer hows'd where it gets possession anti": [0, 65535], "for euer hows'd where it gets possession anti you": [0, 65535], "euer hows'd where it gets possession anti you haue": [0, 65535], "hows'd where it gets possession anti you haue preuail'd": [0, 65535], "where it gets possession anti you haue preuail'd i": [0, 65535], "it gets possession anti you haue preuail'd i will": [0, 65535], "gets possession anti you haue preuail'd i will depart": [0, 65535], "possession anti you haue preuail'd i will depart in": [0, 65535], "anti you haue preuail'd i will depart in quiet": [0, 65535], "you haue preuail'd i will depart in quiet and": [0, 65535], "haue preuail'd i will depart in quiet and in": [0, 65535], "preuail'd i will depart in quiet and in despight": [0, 65535], "i will depart in quiet and in despight of": [0, 65535], "will depart in quiet and in despight of mirth": [0, 65535], "depart in quiet and in despight of mirth meane": [0, 65535], "in quiet and in despight of mirth meane to": [0, 65535], "quiet and in despight of mirth meane to be": [0, 65535], "and in despight of mirth meane to be merrie": [0, 65535], "in despight of mirth meane to be merrie i": [0, 65535], "despight of mirth meane to be merrie i know": [0, 65535], "of mirth meane to be merrie i know a": [0, 65535], "mirth meane to be merrie i know a wench": [0, 65535], "meane to be merrie i know a wench of": [0, 65535], "to be merrie i know a wench of excellent": [0, 65535], "be merrie i know a wench of excellent discourse": [0, 65535], "merrie i know a wench of excellent discourse prettie": [0, 65535], "i know a wench of excellent discourse prettie and": [0, 65535], "know a wench of excellent discourse prettie and wittie": [0, 65535], "a wench of excellent discourse prettie and wittie wilde": [0, 65535], "wench of excellent discourse prettie and wittie wilde and": [0, 65535], "of excellent discourse prettie and wittie wilde and yet": [0, 65535], "excellent discourse prettie and wittie wilde and yet too": [0, 65535], "discourse prettie and wittie wilde and yet too gentle": [0, 65535], "prettie and wittie wilde and yet too gentle there": [0, 65535], "and wittie wilde and yet too gentle there will": [0, 65535], "wittie wilde and yet too gentle there will we": [0, 65535], "wilde and yet too gentle there will we dine": [0, 65535], "and yet too gentle there will we dine this": [0, 65535], "yet too gentle there will we dine this woman": [0, 65535], "too gentle there will we dine this woman that": [0, 65535], "gentle there will we dine this woman that i": [0, 65535], "there will we dine this woman that i meane": [0, 65535], "will we dine this woman that i meane my": [0, 65535], "we dine this woman that i meane my wife": [0, 65535], "dine this woman that i meane my wife but": [0, 65535], "this woman that i meane my wife but i": [0, 65535], "woman that i meane my wife but i protest": [0, 65535], "that i meane my wife but i protest without": [0, 65535], "i meane my wife but i protest without desert": [0, 65535], "meane my wife but i protest without desert hath": [0, 65535], "my wife but i protest without desert hath oftentimes": [0, 65535], "wife but i protest without desert hath oftentimes vpbraided": [0, 65535], "but i protest without desert hath oftentimes vpbraided me": [0, 65535], "i protest without desert hath oftentimes vpbraided me withall": [0, 65535], "protest without desert hath oftentimes vpbraided me withall to": [0, 65535], "without desert hath oftentimes vpbraided me withall to her": [0, 65535], "desert hath oftentimes vpbraided me withall to her will": [0, 65535], "hath oftentimes vpbraided me withall to her will we": [0, 65535], "oftentimes vpbraided me withall to her will we to": [0, 65535], "vpbraided me withall to her will we to dinner": [0, 65535], "me withall to her will we to dinner get": [0, 65535], "withall to her will we to dinner get you": [0, 65535], "to her will we to dinner get you home": [0, 65535], "her will we to dinner get you home and": [0, 65535], "will we to dinner get you home and fetch": [0, 65535], "we to dinner get you home and fetch the": [0, 65535], "to dinner get you home and fetch the chaine": [0, 65535], "dinner get you home and fetch the chaine by": [0, 65535], "get you home and fetch the chaine by this": [0, 65535], "you home and fetch the chaine by this i": [0, 65535], "home and fetch the chaine by this i know": [0, 65535], "and fetch the chaine by this i know 'tis": [0, 65535], "fetch the chaine by this i know 'tis made": [0, 65535], "the chaine by this i know 'tis made bring": [0, 65535], "chaine by this i know 'tis made bring it": [0, 65535], "by this i know 'tis made bring it i": [0, 65535], "this i know 'tis made bring it i pray": [0, 65535], "i know 'tis made bring it i pray you": [0, 65535], "know 'tis made bring it i pray you to": [0, 65535], "'tis made bring it i pray you to the": [0, 65535], "made bring it i pray you to the porpentine": [0, 65535], "bring it i pray you to the porpentine for": [0, 65535], "it i pray you to the porpentine for there's": [0, 65535], "i pray you to the porpentine for there's the": [0, 65535], "pray you to the porpentine for there's the house": [0, 65535], "you to the porpentine for there's the house that": [0, 65535], "to the porpentine for there's the house that chaine": [0, 65535], "the porpentine for there's the house that chaine will": [0, 65535], "porpentine for there's the house that chaine will i": [0, 65535], "for there's the house that chaine will i bestow": [0, 65535], "there's the house that chaine will i bestow be": [0, 65535], "the house that chaine will i bestow be it": [0, 65535], "house that chaine will i bestow be it for": [0, 65535], "that chaine will i bestow be it for nothing": [0, 65535], "chaine will i bestow be it for nothing but": [0, 65535], "will i bestow be it for nothing but to": [0, 65535], "i bestow be it for nothing but to spight": [0, 65535], "bestow be it for nothing but to spight my": [0, 65535], "be it for nothing but to spight my wife": [0, 65535], "it for nothing but to spight my wife vpon": [0, 65535], "for nothing but to spight my wife vpon mine": [0, 65535], "nothing but to spight my wife vpon mine hostesse": [0, 65535], "but to spight my wife vpon mine hostesse there": [0, 65535], "to spight my wife vpon mine hostesse there good": [0, 65535], "spight my wife vpon mine hostesse there good sir": [0, 65535], "my wife vpon mine hostesse there good sir make": [0, 65535], "wife vpon mine hostesse there good sir make haste": [0, 65535], "vpon mine hostesse there good sir make haste since": [0, 65535], "mine hostesse there good sir make haste since mine": [0, 65535], "hostesse there good sir make haste since mine owne": [0, 65535], "there good sir make haste since mine owne doores": [0, 65535], "good sir make haste since mine owne doores refuse": [0, 65535], "sir make haste since mine owne doores refuse to": [0, 65535], "make haste since mine owne doores refuse to entertaine": [0, 65535], "haste since mine owne doores refuse to entertaine me": [0, 65535], "since mine owne doores refuse to entertaine me ile": [0, 65535], "mine owne doores refuse to entertaine me ile knocke": [0, 65535], "owne doores refuse to entertaine me ile knocke else": [0, 65535], "doores refuse to entertaine me ile knocke else where": [0, 65535], "refuse to entertaine me ile knocke else where to": [0, 65535], "to entertaine me ile knocke else where to see": [0, 65535], "entertaine me ile knocke else where to see if": [0, 65535], "me ile knocke else where to see if they'll": [0, 65535], "ile knocke else where to see if they'll disdaine": [0, 65535], "knocke else where to see if they'll disdaine me": [0, 65535], "else where to see if they'll disdaine me ang": [0, 65535], "where to see if they'll disdaine me ang ile": [0, 65535], "to see if they'll disdaine me ang ile meet": [0, 65535], "see if they'll disdaine me ang ile meet you": [0, 65535], "if they'll disdaine me ang ile meet you at": [0, 65535], "they'll disdaine me ang ile meet you at that": [0, 65535], "disdaine me ang ile meet you at that place": [0, 65535], "me ang ile meet you at that place some": [0, 65535], "ang ile meet you at that place some houre": [0, 65535], "ile meet you at that place some houre hence": [0, 65535], "meet you at that place some houre hence anti": [0, 65535], "you at that place some houre hence anti do": [0, 65535], "at that place some houre hence anti do so": [0, 65535], "that place some houre hence anti do so this": [0, 65535], "place some houre hence anti do so this iest": [0, 65535], "some houre hence anti do so this iest shall": [0, 65535], "houre hence anti do so this iest shall cost": [0, 65535], "hence anti do so this iest shall cost me": [0, 65535], "anti do so this iest shall cost me some": [0, 65535], "do so this iest shall cost me some expence": [0, 65535], "so this iest shall cost me some expence exeunt": [0, 65535], "this iest shall cost me some expence exeunt enter": [0, 65535], "iest shall cost me some expence exeunt enter iuliana": [0, 65535], "shall cost me some expence exeunt enter iuliana with": [0, 65535], "cost me some expence exeunt enter iuliana with antipholus": [0, 65535], "me some expence exeunt enter iuliana with antipholus of": [0, 65535], "some expence exeunt enter iuliana with antipholus of siracusia": [0, 65535], "expence exeunt enter iuliana with antipholus of siracusia iulia": [0, 65535], "exeunt enter iuliana with antipholus of siracusia iulia and": [0, 65535], "enter iuliana with antipholus of siracusia iulia and may": [0, 65535], "iuliana with antipholus of siracusia iulia and may it": [0, 65535], "with antipholus of siracusia iulia and may it be": [0, 65535], "antipholus of siracusia iulia and may it be that": [0, 65535], "of siracusia iulia and may it be that you": [0, 65535], "siracusia iulia and may it be that you haue": [0, 65535], "iulia and may it be that you haue quite": [0, 65535], "and may it be that you haue quite forgot": [0, 65535], "may it be that you haue quite forgot a": [0, 65535], "it be that you haue quite forgot a husbands": [0, 65535], "be that you haue quite forgot a husbands office": [0, 65535], "that you haue quite forgot a husbands office shall": [0, 65535], "you haue quite forgot a husbands office shall antipholus": [0, 65535], "haue quite forgot a husbands office shall antipholus euen": [0, 65535], "quite forgot a husbands office shall antipholus euen in": [0, 65535], "forgot a husbands office shall antipholus euen in the": [0, 65535], "a husbands office shall antipholus euen in the spring": [0, 65535], "husbands office shall antipholus euen in the spring of": [0, 65535], "office shall antipholus euen in the spring of loue": [0, 65535], "shall antipholus euen in the spring of loue thy": [0, 65535], "antipholus euen in the spring of loue thy loue": [0, 65535], "euen in the spring of loue thy loue springs": [0, 65535], "in the spring of loue thy loue springs rot": [0, 65535], "the spring of loue thy loue springs rot shall": [0, 65535], "spring of loue thy loue springs rot shall loue": [0, 65535], "of loue thy loue springs rot shall loue in": [0, 65535], "loue thy loue springs rot shall loue in buildings": [0, 65535], "thy loue springs rot shall loue in buildings grow": [0, 65535], "loue springs rot shall loue in buildings grow so": [0, 65535], "springs rot shall loue in buildings grow so ruinate": [0, 65535], "rot shall loue in buildings grow so ruinate if": [0, 65535], "shall loue in buildings grow so ruinate if you": [0, 65535], "loue in buildings grow so ruinate if you did": [0, 65535], "in buildings grow so ruinate if you did wed": [0, 65535], "buildings grow so ruinate if you did wed my": [0, 65535], "grow so ruinate if you did wed my sister": [0, 65535], "so ruinate if you did wed my sister for": [0, 65535], "ruinate if you did wed my sister for her": [0, 65535], "if you did wed my sister for her wealth": [0, 65535], "you did wed my sister for her wealth then": [0, 65535], "did wed my sister for her wealth then for": [0, 65535], "wed my sister for her wealth then for her": [0, 65535], "my sister for her wealth then for her wealths": [0, 65535], "sister for her wealth then for her wealths sake": [0, 65535], "for her wealth then for her wealths sake vse": [0, 65535], "her wealth then for her wealths sake vse her": [0, 65535], "wealth then for her wealths sake vse her with": [0, 65535], "then for her wealths sake vse her with more": [0, 65535], "for her wealths sake vse her with more kindnesse": [0, 65535], "her wealths sake vse her with more kindnesse or": [0, 65535], "wealths sake vse her with more kindnesse or if": [0, 65535], "sake vse her with more kindnesse or if you": [0, 65535], "vse her with more kindnesse or if you like": [0, 65535], "her with more kindnesse or if you like else": [0, 65535], "with more kindnesse or if you like else where": [0, 65535], "more kindnesse or if you like else where doe": [0, 65535], "kindnesse or if you like else where doe it": [0, 65535], "or if you like else where doe it by": [0, 65535], "if you like else where doe it by stealth": [0, 65535], "you like else where doe it by stealth muffle": [0, 65535], "like else where doe it by stealth muffle your": [0, 65535], "else where doe it by stealth muffle your false": [0, 65535], "where doe it by stealth muffle your false loue": [0, 65535], "doe it by stealth muffle your false loue with": [0, 65535], "it by stealth muffle your false loue with some": [0, 65535], "by stealth muffle your false loue with some shew": [0, 65535], "stealth muffle your false loue with some shew of": [0, 65535], "muffle your false loue with some shew of blindnesse": [0, 65535], "your false loue with some shew of blindnesse let": [0, 65535], "false loue with some shew of blindnesse let not": [0, 65535], "loue with some shew of blindnesse let not my": [0, 65535], "with some shew of blindnesse let not my sister": [0, 65535], "some shew of blindnesse let not my sister read": [0, 65535], "shew of blindnesse let not my sister read it": [0, 65535], "of blindnesse let not my sister read it in": [0, 65535], "blindnesse let not my sister read it in your": [0, 65535], "let not my sister read it in your eye": [0, 65535], "not my sister read it in your eye be": [0, 65535], "my sister read it in your eye be not": [0, 65535], "sister read it in your eye be not thy": [0, 65535], "read it in your eye be not thy tongue": [0, 65535], "it in your eye be not thy tongue thy": [0, 65535], "in your eye be not thy tongue thy owne": [0, 65535], "your eye be not thy tongue thy owne shames": [0, 65535], "eye be not thy tongue thy owne shames orator": [0, 65535], "be not thy tongue thy owne shames orator looke": [0, 65535], "not thy tongue thy owne shames orator looke sweet": [0, 65535], "thy tongue thy owne shames orator looke sweet speake": [0, 65535], "tongue thy owne shames orator looke sweet speake faire": [0, 65535], "thy owne shames orator looke sweet speake faire become": [0, 65535], "owne shames orator looke sweet speake faire become disloyaltie": [0, 65535], "shames orator looke sweet speake faire become disloyaltie apparell": [0, 65535], "orator looke sweet speake faire become disloyaltie apparell vice": [0, 65535], "looke sweet speake faire become disloyaltie apparell vice like": [0, 65535], "sweet speake faire become disloyaltie apparell vice like vertues": [0, 65535], "speake faire become disloyaltie apparell vice like vertues harbenger": [0, 65535], "faire become disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "become disloyaltie apparell vice like vertues harbenger beare a": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare a faire": [0, 65535], "apparell vice like vertues harbenger beare a faire presence": [0, 65535], "vice like vertues harbenger beare a faire presence though": [0, 65535], "like vertues harbenger beare a faire presence though your": [0, 65535], "vertues harbenger beare a faire presence though your heart": [0, 65535], "harbenger beare a faire presence though your heart be": [0, 65535], "beare a faire presence though your heart be tainted": [0, 65535], "a faire presence though your heart be tainted teach": [0, 65535], "faire presence though your heart be tainted teach sinne": [0, 65535], "presence though your heart be tainted teach sinne the": [0, 65535], "though your heart be tainted teach sinne the carriage": [0, 65535], "your heart be tainted teach sinne the carriage of": [0, 65535], "heart be tainted teach sinne the carriage of a": [0, 65535], "be tainted teach sinne the carriage of a holy": [0, 65535], "tainted teach sinne the carriage of a holy saint": [0, 65535], "teach sinne the carriage of a holy saint be": [0, 65535], "sinne the carriage of a holy saint be secret": [0, 65535], "the carriage of a holy saint be secret false": [0, 65535], "carriage of a holy saint be secret false what": [0, 65535], "of a holy saint be secret false what need": [0, 65535], "a holy saint be secret false what need she": [0, 65535], "holy saint be secret false what need she be": [0, 65535], "saint be secret false what need she be acquainted": [0, 65535], "be secret false what need she be acquainted what": [0, 65535], "secret false what need she be acquainted what simple": [0, 65535], "false what need she be acquainted what simple thiefe": [0, 65535], "what need she be acquainted what simple thiefe brags": [0, 65535], "need she be acquainted what simple thiefe brags of": [0, 65535], "she be acquainted what simple thiefe brags of his": [0, 65535], "be acquainted what simple thiefe brags of his owne": [0, 65535], "acquainted what simple thiefe brags of his owne attaine": [0, 65535], "what simple thiefe brags of his owne attaine 'tis": [0, 65535], "simple thiefe brags of his owne attaine 'tis double": [0, 65535], "thiefe brags of his owne attaine 'tis double wrong": [0, 65535], "brags of his owne attaine 'tis double wrong to": [0, 65535], "of his owne attaine 'tis double wrong to truant": [0, 65535], "his owne attaine 'tis double wrong to truant with": [0, 65535], "owne attaine 'tis double wrong to truant with your": [0, 65535], "attaine 'tis double wrong to truant with your bed": [0, 65535], "'tis double wrong to truant with your bed and": [0, 65535], "double wrong to truant with your bed and let": [0, 65535], "wrong to truant with your bed and let her": [0, 65535], "to truant with your bed and let her read": [0, 65535], "truant with your bed and let her read it": [0, 65535], "with your bed and let her read it in": [0, 65535], "your bed and let her read it in thy": [0, 65535], "bed and let her read it in thy lookes": [0, 65535], "and let her read it in thy lookes at": [0, 65535], "let her read it in thy lookes at boord": [0, 65535], "her read it in thy lookes at boord shame": [0, 65535], "read it in thy lookes at boord shame hath": [0, 65535], "it in thy lookes at boord shame hath a": [0, 65535], "in thy lookes at boord shame hath a bastard": [0, 65535], "thy lookes at boord shame hath a bastard fame": [0, 65535], "lookes at boord shame hath a bastard fame well": [0, 65535], "at boord shame hath a bastard fame well managed": [0, 65535], "boord shame hath a bastard fame well managed ill": [0, 65535], "shame hath a bastard fame well managed ill deeds": [0, 65535], "hath a bastard fame well managed ill deeds is": [0, 65535], "a bastard fame well managed ill deeds is doubled": [0, 65535], "bastard fame well managed ill deeds is doubled with": [0, 65535], "fame well managed ill deeds is doubled with an": [0, 65535], "well managed ill deeds is doubled with an euill": [0, 65535], "managed ill deeds is doubled with an euill word": [0, 65535], "ill deeds is doubled with an euill word alas": [0, 65535], "deeds is doubled with an euill word alas poore": [0, 65535], "is doubled with an euill word alas poore women": [0, 65535], "doubled with an euill word alas poore women make": [0, 65535], "with an euill word alas poore women make vs": [0, 65535], "an euill word alas poore women make vs not": [0, 65535], "euill word alas poore women make vs not beleeue": [0, 65535], "word alas poore women make vs not beleeue being": [0, 65535], "alas poore women make vs not beleeue being compact": [0, 65535], "poore women make vs not beleeue being compact of": [0, 65535], "women make vs not beleeue being compact of credit": [0, 65535], "make vs not beleeue being compact of credit that": [0, 65535], "vs not beleeue being compact of credit that you": [0, 65535], "not beleeue being compact of credit that you loue": [0, 65535], "beleeue being compact of credit that you loue vs": [0, 65535], "being compact of credit that you loue vs though": [0, 65535], "compact of credit that you loue vs though others": [0, 65535], "of credit that you loue vs though others haue": [0, 65535], "credit that you loue vs though others haue the": [0, 65535], "that you loue vs though others haue the arme": [0, 65535], "you loue vs though others haue the arme shew": [0, 65535], "loue vs though others haue the arme shew vs": [0, 65535], "vs though others haue the arme shew vs the": [0, 65535], "though others haue the arme shew vs the sleeue": [0, 65535], "others haue the arme shew vs the sleeue we": [0, 65535], "haue the arme shew vs the sleeue we in": [0, 65535], "the arme shew vs the sleeue we in your": [0, 65535], "arme shew vs the sleeue we in your motion": [0, 65535], "shew vs the sleeue we in your motion turne": [0, 65535], "vs the sleeue we in your motion turne and": [0, 65535], "the sleeue we in your motion turne and you": [0, 65535], "sleeue we in your motion turne and you may": [0, 65535], "we in your motion turne and you may moue": [0, 65535], "in your motion turne and you may moue vs": [0, 65535], "your motion turne and you may moue vs then": [0, 65535], "motion turne and you may moue vs then gentle": [0, 65535], "turne and you may moue vs then gentle brother": [0, 65535], "and you may moue vs then gentle brother get": [0, 65535], "you may moue vs then gentle brother get you": [0, 65535], "may moue vs then gentle brother get you in": [0, 65535], "moue vs then gentle brother get you in againe": [0, 65535], "vs then gentle brother get you in againe comfort": [0, 65535], "then gentle brother get you in againe comfort my": [0, 65535], "gentle brother get you in againe comfort my sister": [0, 65535], "brother get you in againe comfort my sister cheere": [0, 65535], "get you in againe comfort my sister cheere her": [0, 65535], "you in againe comfort my sister cheere her call": [0, 65535], "in againe comfort my sister cheere her call her": [0, 65535], "againe comfort my sister cheere her call her wise": [0, 65535], "comfort my sister cheere her call her wise 'tis": [0, 65535], "my sister cheere her call her wise 'tis holy": [0, 65535], "sister cheere her call her wise 'tis holy sport": [0, 65535], "cheere her call her wise 'tis holy sport to": [0, 65535], "her call her wise 'tis holy sport to be": [0, 65535], "call her wise 'tis holy sport to be a": [0, 65535], "her wise 'tis holy sport to be a little": [0, 65535], "wise 'tis holy sport to be a little vaine": [0, 65535], "'tis holy sport to be a little vaine when": [0, 65535], "holy sport to be a little vaine when the": [0, 65535], "sport to be a little vaine when the sweet": [0, 65535], "to be a little vaine when the sweet breath": [0, 65535], "be a little vaine when the sweet breath of": [0, 65535], "a little vaine when the sweet breath of flatterie": [0, 65535], "little vaine when the sweet breath of flatterie conquers": [0, 65535], "vaine when the sweet breath of flatterie conquers strife": [0, 65535], "when the sweet breath of flatterie conquers strife s": [0, 65535], "the sweet breath of flatterie conquers strife s anti": [0, 65535], "sweet breath of flatterie conquers strife s anti sweete": [0, 65535], "breath of flatterie conquers strife s anti sweete mistris": [0, 65535], "of flatterie conquers strife s anti sweete mistris what": [0, 65535], "flatterie conquers strife s anti sweete mistris what your": [0, 65535], "conquers strife s anti sweete mistris what your name": [0, 65535], "strife s anti sweete mistris what your name is": [0, 65535], "s anti sweete mistris what your name is else": [0, 65535], "anti sweete mistris what your name is else i": [0, 65535], "sweete mistris what your name is else i know": [0, 65535], "mistris what your name is else i know not": [0, 65535], "what your name is else i know not nor": [0, 65535], "your name is else i know not nor by": [0, 65535], "name is else i know not nor by what": [0, 65535], "is else i know not nor by what wonder": [0, 65535], "else i know not nor by what wonder you": [0, 65535], "i know not nor by what wonder you do": [0, 65535], "know not nor by what wonder you do hit": [0, 65535], "not nor by what wonder you do hit of": [0, 65535], "nor by what wonder you do hit of mine": [0, 65535], "by what wonder you do hit of mine lesse": [0, 65535], "what wonder you do hit of mine lesse in": [0, 65535], "wonder you do hit of mine lesse in your": [0, 65535], "you do hit of mine lesse in your knowledge": [0, 65535], "do hit of mine lesse in your knowledge and": [0, 65535], "hit of mine lesse in your knowledge and your": [0, 65535], "of mine lesse in your knowledge and your grace": [0, 65535], "mine lesse in your knowledge and your grace you": [0, 65535], "lesse in your knowledge and your grace you show": [0, 65535], "in your knowledge and your grace you show not": [0, 65535], "your knowledge and your grace you show not then": [0, 65535], "knowledge and your grace you show not then our": [0, 65535], "and your grace you show not then our earths": [0, 65535], "your grace you show not then our earths wonder": [0, 65535], "grace you show not then our earths wonder more": [0, 65535], "you show not then our earths wonder more then": [0, 65535], "show not then our earths wonder more then earth": [0, 65535], "not then our earths wonder more then earth diuine": [0, 65535], "then our earths wonder more then earth diuine teach": [0, 65535], "our earths wonder more then earth diuine teach me": [0, 65535], "earths wonder more then earth diuine teach me deere": [0, 65535], "wonder more then earth diuine teach me deere creature": [0, 65535], "more then earth diuine teach me deere creature how": [0, 65535], "then earth diuine teach me deere creature how to": [0, 65535], "earth diuine teach me deere creature how to thinke": [0, 65535], "diuine teach me deere creature how to thinke and": [0, 65535], "teach me deere creature how to thinke and speake": [0, 65535], "me deere creature how to thinke and speake lay": [0, 65535], "deere creature how to thinke and speake lay open": [0, 65535], "creature how to thinke and speake lay open to": [0, 65535], "how to thinke and speake lay open to my": [0, 65535], "to thinke and speake lay open to my earthie": [0, 65535], "thinke and speake lay open to my earthie grosse": [0, 65535], "and speake lay open to my earthie grosse conceit": [0, 65535], "speake lay open to my earthie grosse conceit smothred": [0, 65535], "lay open to my earthie grosse conceit smothred in": [0, 65535], "open to my earthie grosse conceit smothred in errors": [0, 65535], "to my earthie grosse conceit smothred in errors feeble": [0, 65535], "my earthie grosse conceit smothred in errors feeble shallow": [0, 65535], "earthie grosse conceit smothred in errors feeble shallow weake": [0, 65535], "grosse conceit smothred in errors feeble shallow weake the": [0, 65535], "conceit smothred in errors feeble shallow weake the foulded": [0, 65535], "smothred in errors feeble shallow weake the foulded meaning": [0, 65535], "in errors feeble shallow weake the foulded meaning of": [0, 65535], "errors feeble shallow weake the foulded meaning of your": [0, 65535], "feeble shallow weake the foulded meaning of your words": [0, 65535], "shallow weake the foulded meaning of your words deceit": [0, 65535], "weake the foulded meaning of your words deceit against": [0, 65535], "the foulded meaning of your words deceit against my": [0, 65535], "foulded meaning of your words deceit against my soules": [0, 65535], "meaning of your words deceit against my soules pure": [0, 65535], "of your words deceit against my soules pure truth": [0, 65535], "your words deceit against my soules pure truth why": [0, 65535], "words deceit against my soules pure truth why labour": [0, 65535], "deceit against my soules pure truth why labour you": [0, 65535], "against my soules pure truth why labour you to": [0, 65535], "my soules pure truth why labour you to make": [0, 65535], "soules pure truth why labour you to make it": [0, 65535], "pure truth why labour you to make it wander": [0, 65535], "truth why labour you to make it wander in": [0, 65535], "why labour you to make it wander in an": [0, 65535], "labour you to make it wander in an vnknowne": [0, 65535], "you to make it wander in an vnknowne field": [0, 65535], "to make it wander in an vnknowne field are": [0, 65535], "make it wander in an vnknowne field are you": [0, 65535], "it wander in an vnknowne field are you a": [0, 65535], "wander in an vnknowne field are you a god": [0, 65535], "in an vnknowne field are you a god would": [0, 65535], "an vnknowne field are you a god would you": [0, 65535], "vnknowne field are you a god would you create": [0, 65535], "field are you a god would you create me": [0, 65535], "are you a god would you create me new": [0, 65535], "you a god would you create me new transforme": [0, 65535], "a god would you create me new transforme me": [0, 65535], "god would you create me new transforme me then": [0, 65535], "would you create me new transforme me then and": [0, 65535], "you create me new transforme me then and to": [0, 65535], "create me new transforme me then and to your": [0, 65535], "me new transforme me then and to your powre": [0, 65535], "new transforme me then and to your powre ile": [0, 65535], "transforme me then and to your powre ile yeeld": [0, 65535], "me then and to your powre ile yeeld but": [0, 65535], "then and to your powre ile yeeld but if": [0, 65535], "and to your powre ile yeeld but if that": [0, 65535], "to your powre ile yeeld but if that i": [0, 65535], "your powre ile yeeld but if that i am": [0, 65535], "powre ile yeeld but if that i am i": [0, 65535], "ile yeeld but if that i am i then": [0, 65535], "yeeld but if that i am i then well": [0, 65535], "but if that i am i then well i": [0, 65535], "if that i am i then well i know": [0, 65535], "that i am i then well i know your": [0, 65535], "i am i then well i know your weeping": [0, 65535], "am i then well i know your weeping sister": [0, 65535], "i then well i know your weeping sister is": [0, 65535], "then well i know your weeping sister is no": [0, 65535], "well i know your weeping sister is no wife": [0, 65535], "i know your weeping sister is no wife of": [0, 65535], "know your weeping sister is no wife of mine": [0, 65535], "your weeping sister is no wife of mine nor": [0, 65535], "weeping sister is no wife of mine nor to": [0, 65535], "sister is no wife of mine nor to her": [0, 65535], "is no wife of mine nor to her bed": [0, 65535], "no wife of mine nor to her bed no": [0, 65535], "wife of mine nor to her bed no homage": [0, 65535], "of mine nor to her bed no homage doe": [0, 65535], "mine nor to her bed no homage doe i": [0, 65535], "nor to her bed no homage doe i owe": [0, 65535], "to her bed no homage doe i owe farre": [0, 65535], "her bed no homage doe i owe farre more": [0, 65535], "bed no homage doe i owe farre more farre": [0, 65535], "no homage doe i owe farre more farre more": [0, 65535], "homage doe i owe farre more farre more to": [0, 65535], "doe i owe farre more farre more to you": [0, 65535], "i owe farre more farre more to you doe": [0, 65535], "owe farre more farre more to you doe i": [0, 65535], "farre more farre more to you doe i decline": [0, 65535], "more farre more to you doe i decline oh": [0, 65535], "farre more to you doe i decline oh traine": [0, 65535], "more to you doe i decline oh traine me": [0, 65535], "to you doe i decline oh traine me not": [0, 65535], "you doe i decline oh traine me not sweet": [0, 65535], "doe i decline oh traine me not sweet mermaide": [0, 65535], "i decline oh traine me not sweet mermaide with": [0, 65535], "decline oh traine me not sweet mermaide with thy": [0, 65535], "oh traine me not sweet mermaide with thy note": [0, 65535], "traine me not sweet mermaide with thy note to": [0, 65535], "me not sweet mermaide with thy note to drowne": [0, 65535], "not sweet mermaide with thy note to drowne me": [0, 65535], "sweet mermaide with thy note to drowne me in": [0, 65535], "mermaide with thy note to drowne me in thy": [0, 65535], "with thy note to drowne me in thy sister": [0, 65535], "thy note to drowne me in thy sister floud": [0, 65535], "note to drowne me in thy sister floud of": [0, 65535], "to drowne me in thy sister floud of teares": [0, 65535], "drowne me in thy sister floud of teares sing": [0, 65535], "me in thy sister floud of teares sing siren": [0, 65535], "in thy sister floud of teares sing siren for": [0, 65535], "thy sister floud of teares sing siren for thy": [0, 65535], "sister floud of teares sing siren for thy selfe": [0, 65535], "floud of teares sing siren for thy selfe and": [0, 65535], "of teares sing siren for thy selfe and i": [0, 65535], "teares sing siren for thy selfe and i will": [0, 65535], "sing siren for thy selfe and i will dote": [0, 65535], "siren for thy selfe and i will dote spread": [0, 65535], "for thy selfe and i will dote spread ore": [0, 65535], "thy selfe and i will dote spread ore the": [0, 65535], "selfe and i will dote spread ore the siluer": [0, 65535], "and i will dote spread ore the siluer waues": [0, 65535], "i will dote spread ore the siluer waues thy": [0, 65535], "will dote spread ore the siluer waues thy golden": [0, 65535], "dote spread ore the siluer waues thy golden haires": [0, 65535], "spread ore the siluer waues thy golden haires and": [0, 65535], "ore the siluer waues thy golden haires and as": [0, 65535], "the siluer waues thy golden haires and as a": [0, 65535], "siluer waues thy golden haires and as a bud": [0, 65535], "waues thy golden haires and as a bud ile": [0, 65535], "thy golden haires and as a bud ile take": [0, 65535], "golden haires and as a bud ile take thee": [0, 65535], "haires and as a bud ile take thee and": [0, 65535], "and as a bud ile take thee and there": [0, 65535], "as a bud ile take thee and there lie": [0, 65535], "a bud ile take thee and there lie and": [0, 65535], "bud ile take thee and there lie and in": [0, 65535], "ile take thee and there lie and in that": [0, 65535], "take thee and there lie and in that glorious": [0, 65535], "thee and there lie and in that glorious supposition": [0, 65535], "and there lie and in that glorious supposition thinke": [0, 65535], "there lie and in that glorious supposition thinke he": [0, 65535], "lie and in that glorious supposition thinke he gaines": [0, 65535], "and in that glorious supposition thinke he gaines by": [0, 65535], "in that glorious supposition thinke he gaines by death": [0, 65535], "that glorious supposition thinke he gaines by death that": [0, 65535], "glorious supposition thinke he gaines by death that hath": [0, 65535], "supposition thinke he gaines by death that hath such": [0, 65535], "thinke he gaines by death that hath such meanes": [0, 65535], "he gaines by death that hath such meanes to": [0, 65535], "gaines by death that hath such meanes to die": [0, 65535], "by death that hath such meanes to die let": [0, 65535], "death that hath such meanes to die let loue": [0, 65535], "that hath such meanes to die let loue being": [0, 65535], "hath such meanes to die let loue being light": [0, 65535], "such meanes to die let loue being light be": [0, 65535], "meanes to die let loue being light be drowned": [0, 65535], "to die let loue being light be drowned if": [0, 65535], "die let loue being light be drowned if she": [0, 65535], "let loue being light be drowned if she sinke": [0, 65535], "loue being light be drowned if she sinke luc": [0, 65535], "being light be drowned if she sinke luc what": [0, 65535], "light be drowned if she sinke luc what are": [0, 65535], "be drowned if she sinke luc what are you": [0, 65535], "drowned if she sinke luc what are you mad": [0, 65535], "if she sinke luc what are you mad that": [0, 65535], "she sinke luc what are you mad that you": [0, 65535], "sinke luc what are you mad that you doe": [0, 65535], "luc what are you mad that you doe reason": [0, 65535], "what are you mad that you doe reason so": [0, 65535], "are you mad that you doe reason so ant": [0, 65535], "you mad that you doe reason so ant not": [0, 65535], "mad that you doe reason so ant not mad": [0, 65535], "that you doe reason so ant not mad but": [0, 65535], "you doe reason so ant not mad but mated": [0, 65535], "doe reason so ant not mad but mated how": [0, 65535], "reason so ant not mad but mated how i": [0, 65535], "so ant not mad but mated how i doe": [0, 65535], "ant not mad but mated how i doe not": [0, 65535], "not mad but mated how i doe not know": [0, 65535], "mad but mated how i doe not know luc": [0, 65535], "but mated how i doe not know luc it": [0, 65535], "mated how i doe not know luc it is": [0, 65535], "how i doe not know luc it is a": [0, 65535], "i doe not know luc it is a fault": [0, 65535], "doe not know luc it is a fault that": [0, 65535], "not know luc it is a fault that springeth": [0, 65535], "know luc it is a fault that springeth from": [0, 65535], "luc it is a fault that springeth from your": [0, 65535], "it is a fault that springeth from your eie": [0, 65535], "is a fault that springeth from your eie ant": [0, 65535], "a fault that springeth from your eie ant for": [0, 65535], "fault that springeth from your eie ant for gazing": [0, 65535], "that springeth from your eie ant for gazing on": [0, 65535], "springeth from your eie ant for gazing on your": [0, 65535], "from your eie ant for gazing on your beames": [0, 65535], "your eie ant for gazing on your beames faire": [0, 65535], "eie ant for gazing on your beames faire sun": [0, 65535], "ant for gazing on your beames faire sun being": [0, 65535], "for gazing on your beames faire sun being by": [0, 65535], "gazing on your beames faire sun being by luc": [0, 65535], "on your beames faire sun being by luc gaze": [0, 65535], "your beames faire sun being by luc gaze when": [0, 65535], "beames faire sun being by luc gaze when you": [0, 65535], "faire sun being by luc gaze when you should": [0, 65535], "sun being by luc gaze when you should and": [0, 65535], "being by luc gaze when you should and that": [0, 65535], "by luc gaze when you should and that will": [0, 65535], "luc gaze when you should and that will cleere": [0, 65535], "gaze when you should and that will cleere your": [0, 65535], "when you should and that will cleere your sight": [0, 65535], "you should and that will cleere your sight ant": [0, 65535], "should and that will cleere your sight ant as": [0, 65535], "and that will cleere your sight ant as good": [0, 65535], "that will cleere your sight ant as good to": [0, 65535], "will cleere your sight ant as good to winke": [0, 65535], "cleere your sight ant as good to winke sweet": [0, 65535], "your sight ant as good to winke sweet loue": [0, 65535], "sight ant as good to winke sweet loue as": [0, 65535], "ant as good to winke sweet loue as looke": [0, 65535], "as good to winke sweet loue as looke on": [0, 65535], "good to winke sweet loue as looke on night": [0, 65535], "to winke sweet loue as looke on night luc": [0, 65535], "winke sweet loue as looke on night luc why": [0, 65535], "sweet loue as looke on night luc why call": [0, 65535], "loue as looke on night luc why call you": [0, 65535], "as looke on night luc why call you me": [0, 65535], "looke on night luc why call you me loue": [0, 65535], "on night luc why call you me loue call": [0, 65535], "night luc why call you me loue call my": [0, 65535], "luc why call you me loue call my sister": [0, 65535], "why call you me loue call my sister so": [0, 65535], "call you me loue call my sister so ant": [0, 65535], "you me loue call my sister so ant thy": [0, 65535], "me loue call my sister so ant thy sisters": [0, 65535], "loue call my sister so ant thy sisters sister": [0, 65535], "call my sister so ant thy sisters sister luc": [0, 65535], "my sister so ant thy sisters sister luc that's": [0, 65535], "sister so ant thy sisters sister luc that's my": [0, 65535], "so ant thy sisters sister luc that's my sister": [0, 65535], "ant thy sisters sister luc that's my sister ant": [0, 65535], "thy sisters sister luc that's my sister ant no": [0, 65535], "sisters sister luc that's my sister ant no it": [0, 65535], "sister luc that's my sister ant no it is": [0, 65535], "luc that's my sister ant no it is thy": [0, 65535], "that's my sister ant no it is thy selfe": [0, 65535], "my sister ant no it is thy selfe mine": [0, 65535], "sister ant no it is thy selfe mine owne": [0, 65535], "ant no it is thy selfe mine owne selfes": [0, 65535], "no it is thy selfe mine owne selfes better": [0, 65535], "it is thy selfe mine owne selfes better part": [0, 65535], "is thy selfe mine owne selfes better part mine": [0, 65535], "thy selfe mine owne selfes better part mine eies": [0, 65535], "selfe mine owne selfes better part mine eies cleere": [0, 65535], "mine owne selfes better part mine eies cleere eie": [0, 65535], "owne selfes better part mine eies cleere eie my": [0, 65535], "selfes better part mine eies cleere eie my deere": [0, 65535], "better part mine eies cleere eie my deere hearts": [0, 65535], "part mine eies cleere eie my deere hearts deerer": [0, 65535], "mine eies cleere eie my deere hearts deerer heart": [0, 65535], "eies cleere eie my deere hearts deerer heart my": [0, 65535], "cleere eie my deere hearts deerer heart my foode": [0, 65535], "eie my deere hearts deerer heart my foode my": [0, 65535], "my deere hearts deerer heart my foode my fortune": [0, 65535], "deere hearts deerer heart my foode my fortune and": [0, 65535], "hearts deerer heart my foode my fortune and my": [0, 65535], "deerer heart my foode my fortune and my sweet": [0, 65535], "heart my foode my fortune and my sweet hopes": [0, 65535], "my foode my fortune and my sweet hopes aime": [0, 65535], "foode my fortune and my sweet hopes aime my": [0, 65535], "my fortune and my sweet hopes aime my sole": [0, 65535], "fortune and my sweet hopes aime my sole earths": [0, 65535], "and my sweet hopes aime my sole earths heauen": [0, 65535], "my sweet hopes aime my sole earths heauen and": [0, 65535], "sweet hopes aime my sole earths heauen and my": [0, 65535], "hopes aime my sole earths heauen and my heauens": [0, 65535], "aime my sole earths heauen and my heauens claime": [0, 65535], "my sole earths heauen and my heauens claime luc": [0, 65535], "sole earths heauen and my heauens claime luc all": [0, 65535], "earths heauen and my heauens claime luc all this": [0, 65535], "heauen and my heauens claime luc all this my": [0, 65535], "and my heauens claime luc all this my sister": [0, 65535], "my heauens claime luc all this my sister is": [0, 65535], "heauens claime luc all this my sister is or": [0, 65535], "claime luc all this my sister is or else": [0, 65535], "luc all this my sister is or else should": [0, 65535], "all this my sister is or else should be": [0, 65535], "this my sister is or else should be ant": [0, 65535], "my sister is or else should be ant call": [0, 65535], "sister is or else should be ant call thy": [0, 65535], "is or else should be ant call thy selfe": [0, 65535], "or else should be ant call thy selfe sister": [0, 65535], "else should be ant call thy selfe sister sweet": [0, 65535], "should be ant call thy selfe sister sweet for": [0, 65535], "be ant call thy selfe sister sweet for i": [0, 65535], "ant call thy selfe sister sweet for i am": [0, 65535], "call thy selfe sister sweet for i am thee": [0, 65535], "thy selfe sister sweet for i am thee thee": [0, 65535], "selfe sister sweet for i am thee thee will": [0, 65535], "sister sweet for i am thee thee will i": [0, 65535], "sweet for i am thee thee will i loue": [0, 65535], "for i am thee thee will i loue and": [0, 65535], "i am thee thee will i loue and with": [0, 65535], "am thee thee will i loue and with thee": [0, 65535], "thee thee will i loue and with thee lead": [0, 65535], "thee will i loue and with thee lead my": [0, 65535], "will i loue and with thee lead my life": [0, 65535], "i loue and with thee lead my life thou": [0, 65535], "loue and with thee lead my life thou hast": [0, 65535], "and with thee lead my life thou hast no": [0, 65535], "with thee lead my life thou hast no husband": [0, 65535], "thee lead my life thou hast no husband yet": [0, 65535], "lead my life thou hast no husband yet nor": [0, 65535], "my life thou hast no husband yet nor i": [0, 65535], "life thou hast no husband yet nor i no": [0, 65535], "thou hast no husband yet nor i no wife": [0, 65535], "hast no husband yet nor i no wife giue": [0, 65535], "no husband yet nor i no wife giue me": [0, 65535], "husband yet nor i no wife giue me thy": [0, 65535], "yet nor i no wife giue me thy hand": [0, 65535], "nor i no wife giue me thy hand luc": [0, 65535], "i no wife giue me thy hand luc oh": [0, 65535], "no wife giue me thy hand luc oh soft": [0, 65535], "wife giue me thy hand luc oh soft sir": [0, 65535], "giue me thy hand luc oh soft sir hold": [0, 65535], "me thy hand luc oh soft sir hold you": [0, 65535], "thy hand luc oh soft sir hold you still": [0, 65535], "hand luc oh soft sir hold you still ile": [0, 65535], "luc oh soft sir hold you still ile fetch": [0, 65535], "oh soft sir hold you still ile fetch my": [0, 65535], "soft sir hold you still ile fetch my sister": [0, 65535], "sir hold you still ile fetch my sister to": [0, 65535], "hold you still ile fetch my sister to get": [0, 65535], "you still ile fetch my sister to get her": [0, 65535], "still ile fetch my sister to get her good": [0, 65535], "ile fetch my sister to get her good will": [0, 65535], "fetch my sister to get her good will exit": [0, 65535], "my sister to get her good will exit enter": [0, 65535], "sister to get her good will exit enter dromio": [0, 65535], "to get her good will exit enter dromio siracusia": [0, 65535], "get her good will exit enter dromio siracusia ant": [0, 65535], "her good will exit enter dromio siracusia ant why": [0, 65535], "good will exit enter dromio siracusia ant why how": [0, 65535], "will exit enter dromio siracusia ant why how now": [0, 65535], "exit enter dromio siracusia ant why how now dromio": [0, 65535], "enter dromio siracusia ant why how now dromio where": [0, 65535], "dromio siracusia ant why how now dromio where run'st": [0, 65535], "siracusia ant why how now dromio where run'st thou": [0, 65535], "ant why how now dromio where run'st thou so": [0, 65535], "why how now dromio where run'st thou so fast": [0, 65535], "how now dromio where run'st thou so fast s": [0, 65535], "now dromio where run'st thou so fast s dro": [0, 65535], "dromio where run'st thou so fast s dro doe": [0, 65535], "where run'st thou so fast s dro doe you": [0, 65535], "run'st thou so fast s dro doe you know": [0, 65535], "thou so fast s dro doe you know me": [0, 65535], "so fast s dro doe you know me sir": [0, 65535], "fast s dro doe you know me sir am": [0, 65535], "s dro doe you know me sir am i": [0, 65535], "dro doe you know me sir am i dromio": [0, 65535], "doe you know me sir am i dromio am": [0, 65535], "you know me sir am i dromio am i": [0, 65535], "know me sir am i dromio am i your": [0, 65535], "me sir am i dromio am i your man": [0, 65535], "sir am i dromio am i your man am": [0, 65535], "am i dromio am i your man am i": [0, 65535], "i dromio am i your man am i my": [0, 65535], "dromio am i your man am i my selfe": [0, 65535], "am i your man am i my selfe ant": [0, 65535], "i your man am i my selfe ant thou": [0, 65535], "your man am i my selfe ant thou art": [0, 65535], "man am i my selfe ant thou art dromio": [0, 65535], "am i my selfe ant thou art dromio thou": [0, 65535], "i my selfe ant thou art dromio thou art": [0, 65535], "my selfe ant thou art dromio thou art my": [0, 65535], "selfe ant thou art dromio thou art my man": [0, 65535], "ant thou art dromio thou art my man thou": [0, 65535], "thou art dromio thou art my man thou art": [0, 65535], "art dromio thou art my man thou art thy": [0, 65535], "dromio thou art my man thou art thy selfe": [0, 65535], "thou art my man thou art thy selfe dro": [0, 65535], "art my man thou art thy selfe dro i": [0, 65535], "my man thou art thy selfe dro i am": [0, 65535], "man thou art thy selfe dro i am an": [0, 65535], "thou art thy selfe dro i am an asse": [0, 65535], "art thy selfe dro i am an asse i": [0, 65535], "thy selfe dro i am an asse i am": [0, 65535], "selfe dro i am an asse i am a": [0, 65535], "dro i am an asse i am a womans": [0, 65535], "i am an asse i am a womans man": [0, 65535], "am an asse i am a womans man and": [0, 65535], "an asse i am a womans man and besides": [0, 65535], "asse i am a womans man and besides my": [0, 65535], "i am a womans man and besides my selfe": [0, 65535], "am a womans man and besides my selfe ant": [0, 65535], "a womans man and besides my selfe ant what": [0, 65535], "womans man and besides my selfe ant what womans": [0, 65535], "man and besides my selfe ant what womans man": [0, 65535], "and besides my selfe ant what womans man and": [0, 65535], "besides my selfe ant what womans man and how": [0, 65535], "my selfe ant what womans man and how besides": [0, 65535], "selfe ant what womans man and how besides thy": [0, 65535], "ant what womans man and how besides thy selfe": [0, 65535], "what womans man and how besides thy selfe dro": [0, 65535], "womans man and how besides thy selfe dro marrie": [0, 65535], "man and how besides thy selfe dro marrie sir": [0, 65535], "and how besides thy selfe dro marrie sir besides": [0, 65535], "how besides thy selfe dro marrie sir besides my": [0, 65535], "besides thy selfe dro marrie sir besides my selfe": [0, 65535], "thy selfe dro marrie sir besides my selfe i": [0, 65535], "selfe dro marrie sir besides my selfe i am": [0, 65535], "dro marrie sir besides my selfe i am due": [0, 65535], "marrie sir besides my selfe i am due to": [0, 65535], "sir besides my selfe i am due to a": [0, 65535], "besides my selfe i am due to a woman": [0, 65535], "my selfe i am due to a woman one": [0, 65535], "selfe i am due to a woman one that": [0, 65535], "i am due to a woman one that claimes": [0, 65535], "am due to a woman one that claimes me": [0, 65535], "due to a woman one that claimes me one": [0, 65535], "to a woman one that claimes me one that": [0, 65535], "a woman one that claimes me one that haunts": [0, 65535], "woman one that claimes me one that haunts me": [0, 65535], "one that claimes me one that haunts me one": [0, 65535], "that claimes me one that haunts me one that": [0, 65535], "claimes me one that haunts me one that will": [0, 65535], "me one that haunts me one that will haue": [0, 65535], "one that haunts me one that will haue me": [0, 65535], "that haunts me one that will haue me anti": [0, 65535], "haunts me one that will haue me anti what": [0, 65535], "me one that will haue me anti what claime": [0, 65535], "one that will haue me anti what claime laies": [0, 65535], "that will haue me anti what claime laies she": [0, 65535], "will haue me anti what claime laies she to": [0, 65535], "haue me anti what claime laies she to thee": [0, 65535], "me anti what claime laies she to thee dro": [0, 65535], "anti what claime laies she to thee dro marry": [0, 65535], "what claime laies she to thee dro marry sir": [0, 65535], "claime laies she to thee dro marry sir such": [0, 65535], "laies she to thee dro marry sir such claime": [0, 65535], "she to thee dro marry sir such claime as": [0, 65535], "to thee dro marry sir such claime as you": [0, 65535], "thee dro marry sir such claime as you would": [0, 65535], "dro marry sir such claime as you would lay": [0, 65535], "marry sir such claime as you would lay to": [0, 65535], "sir such claime as you would lay to your": [0, 65535], "such claime as you would lay to your horse": [0, 65535], "claime as you would lay to your horse and": [0, 65535], "as you would lay to your horse and she": [0, 65535], "you would lay to your horse and she would": [0, 65535], "would lay to your horse and she would haue": [0, 65535], "lay to your horse and she would haue me": [0, 65535], "to your horse and she would haue me as": [0, 65535], "your horse and she would haue me as a": [0, 65535], "horse and she would haue me as a beast": [0, 65535], "and she would haue me as a beast not": [0, 65535], "she would haue me as a beast not that": [0, 65535], "would haue me as a beast not that i": [0, 65535], "haue me as a beast not that i beeing": [0, 65535], "me as a beast not that i beeing a": [0, 65535], "as a beast not that i beeing a beast": [0, 65535], "a beast not that i beeing a beast she": [0, 65535], "beast not that i beeing a beast she would": [0, 65535], "not that i beeing a beast she would haue": [0, 65535], "that i beeing a beast she would haue me": [0, 65535], "i beeing a beast she would haue me but": [0, 65535], "beeing a beast she would haue me but that": [0, 65535], "a beast she would haue me but that she": [0, 65535], "beast she would haue me but that she being": [0, 65535], "she would haue me but that she being a": [0, 65535], "would haue me but that she being a verie": [0, 65535], "haue me but that she being a verie beastly": [0, 65535], "me but that she being a verie beastly creature": [0, 65535], "but that she being a verie beastly creature layes": [0, 65535], "that she being a verie beastly creature layes claime": [0, 65535], "she being a verie beastly creature layes claime to": [0, 65535], "being a verie beastly creature layes claime to me": [0, 65535], "a verie beastly creature layes claime to me anti": [0, 65535], "verie beastly creature layes claime to me anti what": [0, 65535], "beastly creature layes claime to me anti what is": [0, 65535], "creature layes claime to me anti what is she": [0, 65535], "layes claime to me anti what is she dro": [0, 65535], "claime to me anti what is she dro a": [0, 65535], "to me anti what is she dro a very": [0, 65535], "me anti what is she dro a very reuerent": [0, 65535], "anti what is she dro a very reuerent body": [0, 65535], "what is she dro a very reuerent body i": [0, 65535], "is she dro a very reuerent body i such": [0, 65535], "she dro a very reuerent body i such a": [0, 65535], "dro a very reuerent body i such a one": [0, 65535], "a very reuerent body i such a one as": [0, 65535], "very reuerent body i such a one as a": [0, 65535], "reuerent body i such a one as a man": [0, 65535], "body i such a one as a man may": [0, 65535], "i such a one as a man may not": [0, 65535], "such a one as a man may not speake": [0, 65535], "a one as a man may not speake of": [0, 65535], "one as a man may not speake of without": [0, 65535], "as a man may not speake of without he": [0, 65535], "a man may not speake of without he say": [0, 65535], "man may not speake of without he say sir": [0, 65535], "may not speake of without he say sir reuerence": [0, 65535], "not speake of without he say sir reuerence i": [0, 65535], "speake of without he say sir reuerence i haue": [0, 65535], "of without he say sir reuerence i haue but": [0, 65535], "without he say sir reuerence i haue but leane": [0, 65535], "he say sir reuerence i haue but leane lucke": [0, 65535], "say sir reuerence i haue but leane lucke in": [0, 65535], "sir reuerence i haue but leane lucke in the": [0, 65535], "reuerence i haue but leane lucke in the match": [0, 65535], "i haue but leane lucke in the match and": [0, 65535], "haue but leane lucke in the match and yet": [0, 65535], "but leane lucke in the match and yet is": [0, 65535], "leane lucke in the match and yet is she": [0, 65535], "lucke in the match and yet is she a": [0, 65535], "in the match and yet is she a wondrous": [0, 65535], "the match and yet is she a wondrous fat": [0, 65535], "match and yet is she a wondrous fat marriage": [0, 65535], "and yet is she a wondrous fat marriage anti": [0, 65535], "yet is she a wondrous fat marriage anti how": [0, 65535], "is she a wondrous fat marriage anti how dost": [0, 65535], "she a wondrous fat marriage anti how dost thou": [0, 65535], "a wondrous fat marriage anti how dost thou meane": [0, 65535], "wondrous fat marriage anti how dost thou meane a": [0, 65535], "fat marriage anti how dost thou meane a fat": [0, 65535], "marriage anti how dost thou meane a fat marriage": [0, 65535], "anti how dost thou meane a fat marriage dro": [0, 65535], "how dost thou meane a fat marriage dro marry": [0, 65535], "dost thou meane a fat marriage dro marry sir": [0, 65535], "thou meane a fat marriage dro marry sir she's": [0, 65535], "meane a fat marriage dro marry sir she's the": [0, 65535], "a fat marriage dro marry sir she's the kitchin": [0, 65535], "fat marriage dro marry sir she's the kitchin wench": [0, 65535], "marriage dro marry sir she's the kitchin wench al": [0, 65535], "dro marry sir she's the kitchin wench al grease": [0, 65535], "marry sir she's the kitchin wench al grease and": [0, 65535], "sir she's the kitchin wench al grease and i": [0, 65535], "she's the kitchin wench al grease and i know": [0, 65535], "the kitchin wench al grease and i know not": [0, 65535], "kitchin wench al grease and i know not what": [0, 65535], "wench al grease and i know not what vse": [0, 65535], "al grease and i know not what vse to": [0, 65535], "grease and i know not what vse to put": [0, 65535], "and i know not what vse to put her": [0, 65535], "i know not what vse to put her too": [0, 65535], "know not what vse to put her too but": [0, 65535], "not what vse to put her too but to": [0, 65535], "what vse to put her too but to make": [0, 65535], "vse to put her too but to make a": [0, 65535], "to put her too but to make a lampe": [0, 65535], "put her too but to make a lampe of": [0, 65535], "her too but to make a lampe of her": [0, 65535], "too but to make a lampe of her and": [0, 65535], "but to make a lampe of her and run": [0, 65535], "to make a lampe of her and run from": [0, 65535], "make a lampe of her and run from her": [0, 65535], "a lampe of her and run from her by": [0, 65535], "lampe of her and run from her by her": [0, 65535], "of her and run from her by her owne": [0, 65535], "her and run from her by her owne light": [0, 65535], "and run from her by her owne light i": [0, 65535], "run from her by her owne light i warrant": [0, 65535], "from her by her owne light i warrant her": [0, 65535], "her by her owne light i warrant her ragges": [0, 65535], "by her owne light i warrant her ragges and": [0, 65535], "her owne light i warrant her ragges and the": [0, 65535], "owne light i warrant her ragges and the tallow": [0, 65535], "light i warrant her ragges and the tallow in": [0, 65535], "i warrant her ragges and the tallow in them": [0, 65535], "warrant her ragges and the tallow in them will": [0, 65535], "her ragges and the tallow in them will burne": [0, 65535], "ragges and the tallow in them will burne a": [0, 65535], "and the tallow in them will burne a poland": [0, 65535], "the tallow in them will burne a poland winter": [0, 65535], "tallow in them will burne a poland winter if": [0, 65535], "in them will burne a poland winter if she": [0, 65535], "them will burne a poland winter if she liues": [0, 65535], "will burne a poland winter if she liues till": [0, 65535], "burne a poland winter if she liues till doomesday": [0, 65535], "a poland winter if she liues till doomesday she'l": [0, 65535], "poland winter if she liues till doomesday she'l burne": [0, 65535], "winter if she liues till doomesday she'l burne a": [0, 65535], "if she liues till doomesday she'l burne a weeke": [0, 65535], "she liues till doomesday she'l burne a weeke longer": [0, 65535], "liues till doomesday she'l burne a weeke longer then": [0, 65535], "till doomesday she'l burne a weeke longer then the": [0, 65535], "doomesday she'l burne a weeke longer then the whole": [0, 65535], "she'l burne a weeke longer then the whole world": [0, 65535], "burne a weeke longer then the whole world anti": [0, 65535], "a weeke longer then the whole world anti what": [0, 65535], "weeke longer then the whole world anti what complexion": [0, 65535], "longer then the whole world anti what complexion is": [0, 65535], "then the whole world anti what complexion is she": [0, 65535], "the whole world anti what complexion is she of": [0, 65535], "whole world anti what complexion is she of dro": [0, 65535], "world anti what complexion is she of dro swart": [0, 65535], "anti what complexion is she of dro swart like": [0, 65535], "what complexion is she of dro swart like my": [0, 65535], "complexion is she of dro swart like my shoo": [0, 65535], "is she of dro swart like my shoo but": [0, 65535], "she of dro swart like my shoo but her": [0, 65535], "of dro swart like my shoo but her face": [0, 65535], "dro swart like my shoo but her face nothing": [0, 65535], "swart like my shoo but her face nothing like": [0, 65535], "like my shoo but her face nothing like so": [0, 65535], "my shoo but her face nothing like so cleane": [0, 65535], "shoo but her face nothing like so cleane kept": [0, 65535], "but her face nothing like so cleane kept for": [0, 65535], "her face nothing like so cleane kept for why": [0, 65535], "face nothing like so cleane kept for why she": [0, 65535], "nothing like so cleane kept for why she sweats": [0, 65535], "like so cleane kept for why she sweats a": [0, 65535], "so cleane kept for why she sweats a man": [0, 65535], "cleane kept for why she sweats a man may": [0, 65535], "kept for why she sweats a man may goe": [0, 65535], "for why she sweats a man may goe o": [0, 65535], "why she sweats a man may goe o uer": [0, 65535], "she sweats a man may goe o uer shooes": [0, 65535], "sweats a man may goe o uer shooes in": [0, 65535], "a man may goe o uer shooes in the": [0, 65535], "man may goe o uer shooes in the grime": [0, 65535], "may goe o uer shooes in the grime of": [0, 65535], "goe o uer shooes in the grime of it": [0, 65535], "o uer shooes in the grime of it anti": [0, 65535], "uer shooes in the grime of it anti that's": [0, 65535], "shooes in the grime of it anti that's a": [0, 65535], "in the grime of it anti that's a fault": [0, 65535], "the grime of it anti that's a fault that": [0, 65535], "grime of it anti that's a fault that water": [0, 65535], "of it anti that's a fault that water will": [0, 65535], "it anti that's a fault that water will mend": [0, 65535], "anti that's a fault that water will mend dro": [0, 65535], "that's a fault that water will mend dro no": [0, 65535], "a fault that water will mend dro no sir": [0, 65535], "fault that water will mend dro no sir 'tis": [0, 65535], "that water will mend dro no sir 'tis in": [0, 65535], "water will mend dro no sir 'tis in graine": [0, 65535], "will mend dro no sir 'tis in graine noahs": [0, 65535], "mend dro no sir 'tis in graine noahs flood": [0, 65535], "dro no sir 'tis in graine noahs flood could": [0, 65535], "no sir 'tis in graine noahs flood could not": [0, 65535], "sir 'tis in graine noahs flood could not do": [0, 65535], "'tis in graine noahs flood could not do it": [0, 65535], "in graine noahs flood could not do it anti": [0, 65535], "graine noahs flood could not do it anti what's": [0, 65535], "noahs flood could not do it anti what's her": [0, 65535], "flood could not do it anti what's her name": [0, 65535], "could not do it anti what's her name dro": [0, 65535], "not do it anti what's her name dro nell": [0, 65535], "do it anti what's her name dro nell sir": [0, 65535], "it anti what's her name dro nell sir but": [0, 65535], "anti what's her name dro nell sir but her": [0, 65535], "what's her name dro nell sir but her name": [0, 65535], "her name dro nell sir but her name is": [0, 65535], "name dro nell sir but her name is three": [0, 65535], "dro nell sir but her name is three quarters": [0, 65535], "nell sir but her name is three quarters that's": [0, 65535], "sir but her name is three quarters that's an": [0, 65535], "but her name is three quarters that's an ell": [0, 65535], "her name is three quarters that's an ell and": [0, 65535], "name is three quarters that's an ell and three": [0, 65535], "is three quarters that's an ell and three quarters": [0, 65535], "three quarters that's an ell and three quarters will": [0, 65535], "quarters that's an ell and three quarters will not": [0, 65535], "that's an ell and three quarters will not measure": [0, 65535], "an ell and three quarters will not measure her": [0, 65535], "ell and three quarters will not measure her from": [0, 65535], "and three quarters will not measure her from hip": [0, 65535], "three quarters will not measure her from hip to": [0, 65535], "quarters will not measure her from hip to hip": [0, 65535], "will not measure her from hip to hip anti": [0, 65535], "not measure her from hip to hip anti then": [0, 65535], "measure her from hip to hip anti then she": [0, 65535], "her from hip to hip anti then she beares": [0, 65535], "from hip to hip anti then she beares some": [0, 65535], "hip to hip anti then she beares some bredth": [0, 65535], "to hip anti then she beares some bredth dro": [0, 65535], "hip anti then she beares some bredth dro no": [0, 65535], "anti then she beares some bredth dro no longer": [0, 65535], "then she beares some bredth dro no longer from": [0, 65535], "she beares some bredth dro no longer from head": [0, 65535], "beares some bredth dro no longer from head to": [0, 65535], "some bredth dro no longer from head to foot": [0, 65535], "bredth dro no longer from head to foot then": [0, 65535], "dro no longer from head to foot then from": [0, 65535], "no longer from head to foot then from hippe": [0, 65535], "longer from head to foot then from hippe to": [0, 65535], "from head to foot then from hippe to hippe": [0, 65535], "head to foot then from hippe to hippe she": [0, 65535], "to foot then from hippe to hippe she is": [0, 65535], "foot then from hippe to hippe she is sphericall": [0, 65535], "then from hippe to hippe she is sphericall like": [0, 65535], "from hippe to hippe she is sphericall like a": [0, 65535], "hippe to hippe she is sphericall like a globe": [0, 65535], "to hippe she is sphericall like a globe i": [0, 65535], "hippe she is sphericall like a globe i could": [0, 65535], "she is sphericall like a globe i could find": [0, 65535], "is sphericall like a globe i could find out": [0, 65535], "sphericall like a globe i could find out countries": [0, 65535], "like a globe i could find out countries in": [0, 65535], "a globe i could find out countries in her": [0, 65535], "globe i could find out countries in her anti": [0, 65535], "i could find out countries in her anti in": [0, 65535], "could find out countries in her anti in what": [0, 65535], "find out countries in her anti in what part": [0, 65535], "out countries in her anti in what part of": [0, 65535], "countries in her anti in what part of her": [0, 65535], "in her anti in what part of her body": [0, 65535], "her anti in what part of her body stands": [0, 65535], "anti in what part of her body stands ireland": [0, 65535], "in what part of her body stands ireland dro": [0, 65535], "what part of her body stands ireland dro marry": [0, 65535], "part of her body stands ireland dro marry sir": [0, 65535], "of her body stands ireland dro marry sir in": [0, 65535], "her body stands ireland dro marry sir in her": [0, 65535], "body stands ireland dro marry sir in her buttockes": [0, 65535], "stands ireland dro marry sir in her buttockes i": [0, 65535], "ireland dro marry sir in her buttockes i found": [0, 65535], "dro marry sir in her buttockes i found it": [0, 65535], "marry sir in her buttockes i found it out": [0, 65535], "sir in her buttockes i found it out by": [0, 65535], "in her buttockes i found it out by the": [0, 65535], "her buttockes i found it out by the bogges": [0, 65535], "buttockes i found it out by the bogges ant": [0, 65535], "i found it out by the bogges ant where": [0, 65535], "found it out by the bogges ant where scotland": [0, 65535], "it out by the bogges ant where scotland dro": [0, 65535], "out by the bogges ant where scotland dro i": [0, 65535], "by the bogges ant where scotland dro i found": [0, 65535], "the bogges ant where scotland dro i found it": [0, 65535], "bogges ant where scotland dro i found it by": [0, 65535], "ant where scotland dro i found it by the": [0, 65535], "where scotland dro i found it by the barrennesse": [0, 65535], "scotland dro i found it by the barrennesse hard": [0, 65535], "dro i found it by the barrennesse hard in": [0, 65535], "i found it by the barrennesse hard in the": [0, 65535], "found it by the barrennesse hard in the palme": [0, 65535], "it by the barrennesse hard in the palme of": [0, 65535], "by the barrennesse hard in the palme of the": [0, 65535], "the barrennesse hard in the palme of the hand": [0, 65535], "barrennesse hard in the palme of the hand ant": [0, 65535], "hard in the palme of the hand ant where": [0, 65535], "in the palme of the hand ant where france": [0, 65535], "the palme of the hand ant where france dro": [0, 65535], "palme of the hand ant where france dro in": [0, 65535], "of the hand ant where france dro in her": [0, 65535], "the hand ant where france dro in her forhead": [0, 65535], "hand ant where france dro in her forhead arm'd": [0, 65535], "ant where france dro in her forhead arm'd and": [0, 65535], "where france dro in her forhead arm'd and reuerted": [0, 65535], "france dro in her forhead arm'd and reuerted making": [0, 65535], "dro in her forhead arm'd and reuerted making warre": [0, 65535], "in her forhead arm'd and reuerted making warre against": [0, 65535], "her forhead arm'd and reuerted making warre against her": [0, 65535], "forhead arm'd and reuerted making warre against her heire": [0, 65535], "arm'd and reuerted making warre against her heire ant": [0, 65535], "and reuerted making warre against her heire ant where": [0, 65535], "reuerted making warre against her heire ant where england": [0, 65535], "making warre against her heire ant where england dro": [0, 65535], "warre against her heire ant where england dro i": [0, 65535], "against her heire ant where england dro i look'd": [0, 65535], "her heire ant where england dro i look'd for": [0, 65535], "heire ant where england dro i look'd for the": [0, 65535], "ant where england dro i look'd for the chalkle": [0, 65535], "where england dro i look'd for the chalkle cliffes": [0, 65535], "england dro i look'd for the chalkle cliffes but": [0, 65535], "dro i look'd for the chalkle cliffes but i": [0, 65535], "i look'd for the chalkle cliffes but i could": [0, 65535], "look'd for the chalkle cliffes but i could find": [0, 65535], "for the chalkle cliffes but i could find no": [0, 65535], "the chalkle cliffes but i could find no whitenesse": [0, 65535], "chalkle cliffes but i could find no whitenesse in": [0, 65535], "cliffes but i could find no whitenesse in them": [0, 65535], "but i could find no whitenesse in them but": [0, 65535], "i could find no whitenesse in them but i": [0, 65535], "could find no whitenesse in them but i guesse": [0, 65535], "find no whitenesse in them but i guesse it": [0, 65535], "no whitenesse in them but i guesse it stood": [0, 65535], "whitenesse in them but i guesse it stood in": [0, 65535], "in them but i guesse it stood in her": [0, 65535], "them but i guesse it stood in her chin": [0, 65535], "but i guesse it stood in her chin by": [0, 65535], "i guesse it stood in her chin by the": [0, 65535], "guesse it stood in her chin by the salt": [0, 65535], "it stood in her chin by the salt rheume": [0, 65535], "stood in her chin by the salt rheume that": [0, 65535], "in her chin by the salt rheume that ranne": [0, 65535], "her chin by the salt rheume that ranne betweene": [0, 65535], "chin by the salt rheume that ranne betweene france": [0, 65535], "by the salt rheume that ranne betweene france and": [0, 65535], "the salt rheume that ranne betweene france and it": [0, 65535], "salt rheume that ranne betweene france and it ant": [0, 65535], "rheume that ranne betweene france and it ant where": [0, 65535], "that ranne betweene france and it ant where spaine": [0, 65535], "ranne betweene france and it ant where spaine dro": [0, 65535], "betweene france and it ant where spaine dro faith": [0, 65535], "france and it ant where spaine dro faith i": [0, 65535], "and it ant where spaine dro faith i saw": [0, 65535], "it ant where spaine dro faith i saw it": [0, 65535], "ant where spaine dro faith i saw it not": [0, 65535], "where spaine dro faith i saw it not but": [0, 65535], "spaine dro faith i saw it not but i": [0, 65535], "dro faith i saw it not but i felt": [0, 65535], "faith i saw it not but i felt it": [0, 65535], "i saw it not but i felt it hot": [0, 65535], "saw it not but i felt it hot in": [0, 65535], "it not but i felt it hot in her": [0, 65535], "not but i felt it hot in her breth": [0, 65535], "but i felt it hot in her breth ant": [0, 65535], "i felt it hot in her breth ant where": [0, 65535], "felt it hot in her breth ant where america": [0, 65535], "it hot in her breth ant where america the": [0, 65535], "hot in her breth ant where america the indies": [0, 65535], "in her breth ant where america the indies dro": [0, 65535], "her breth ant where america the indies dro oh": [0, 65535], "breth ant where america the indies dro oh sir": [0, 65535], "ant where america the indies dro oh sir vpon": [0, 65535], "where america the indies dro oh sir vpon her": [0, 65535], "america the indies dro oh sir vpon her nose": [0, 65535], "the indies dro oh sir vpon her nose all": [0, 65535], "indies dro oh sir vpon her nose all ore": [0, 65535], "dro oh sir vpon her nose all ore embellished": [0, 65535], "oh sir vpon her nose all ore embellished with": [0, 65535], "sir vpon her nose all ore embellished with rubies": [0, 65535], "vpon her nose all ore embellished with rubies carbuncles": [0, 65535], "her nose all ore embellished with rubies carbuncles saphires": [0, 65535], "nose all ore embellished with rubies carbuncles saphires declining": [0, 65535], "all ore embellished with rubies carbuncles saphires declining their": [0, 65535], "ore embellished with rubies carbuncles saphires declining their rich": [0, 65535], "embellished with rubies carbuncles saphires declining their rich aspect": [0, 65535], "with rubies carbuncles saphires declining their rich aspect to": [0, 65535], "rubies carbuncles saphires declining their rich aspect to the": [0, 65535], "carbuncles saphires declining their rich aspect to the hot": [0, 65535], "saphires declining their rich aspect to the hot breath": [0, 65535], "declining their rich aspect to the hot breath of": [0, 65535], "their rich aspect to the hot breath of spaine": [0, 65535], "rich aspect to the hot breath of spaine who": [0, 65535], "aspect to the hot breath of spaine who sent": [0, 65535], "to the hot breath of spaine who sent whole": [0, 65535], "the hot breath of spaine who sent whole armadoes": [0, 65535], "hot breath of spaine who sent whole armadoes of": [0, 65535], "breath of spaine who sent whole armadoes of carrects": [0, 65535], "of spaine who sent whole armadoes of carrects to": [0, 65535], "spaine who sent whole armadoes of carrects to be": [0, 65535], "who sent whole armadoes of carrects to be ballast": [0, 65535], "sent whole armadoes of carrects to be ballast at": [0, 65535], "whole armadoes of carrects to be ballast at her": [0, 65535], "armadoes of carrects to be ballast at her nose": [0, 65535], "of carrects to be ballast at her nose anti": [0, 65535], "carrects to be ballast at her nose anti where": [0, 65535], "to be ballast at her nose anti where stood": [0, 65535], "be ballast at her nose anti where stood belgia": [0, 65535], "ballast at her nose anti where stood belgia the": [0, 65535], "at her nose anti where stood belgia the netherlands": [0, 65535], "her nose anti where stood belgia the netherlands dro": [0, 65535], "nose anti where stood belgia the netherlands dro oh": [0, 65535], "anti where stood belgia the netherlands dro oh sir": [0, 65535], "where stood belgia the netherlands dro oh sir i": [0, 65535], "stood belgia the netherlands dro oh sir i did": [0, 65535], "belgia the netherlands dro oh sir i did not": [0, 65535], "the netherlands dro oh sir i did not looke": [0, 65535], "netherlands dro oh sir i did not looke so": [0, 65535], "dro oh sir i did not looke so low": [0, 65535], "oh sir i did not looke so low to": [0, 65535], "sir i did not looke so low to conclude": [0, 65535], "i did not looke so low to conclude this": [0, 65535], "did not looke so low to conclude this drudge": [0, 65535], "not looke so low to conclude this drudge or": [0, 65535], "looke so low to conclude this drudge or diuiner": [0, 65535], "so low to conclude this drudge or diuiner layd": [0, 65535], "low to conclude this drudge or diuiner layd claime": [0, 65535], "to conclude this drudge or diuiner layd claime to": [0, 65535], "conclude this drudge or diuiner layd claime to mee": [0, 65535], "this drudge or diuiner layd claime to mee call'd": [0, 65535], "drudge or diuiner layd claime to mee call'd mee": [0, 65535], "or diuiner layd claime to mee call'd mee dromio": [0, 65535], "diuiner layd claime to mee call'd mee dromio swore": [0, 65535], "layd claime to mee call'd mee dromio swore i": [0, 65535], "claime to mee call'd mee dromio swore i was": [0, 65535], "to mee call'd mee dromio swore i was assur'd": [0, 65535], "mee call'd mee dromio swore i was assur'd to": [0, 65535], "call'd mee dromio swore i was assur'd to her": [0, 65535], "mee dromio swore i was assur'd to her told": [0, 65535], "dromio swore i was assur'd to her told me": [0, 65535], "swore i was assur'd to her told me what": [0, 65535], "i was assur'd to her told me what priuie": [0, 65535], "was assur'd to her told me what priuie markes": [0, 65535], "assur'd to her told me what priuie markes i": [0, 65535], "to her told me what priuie markes i had": [0, 65535], "her told me what priuie markes i had about": [0, 65535], "told me what priuie markes i had about mee": [0, 65535], "me what priuie markes i had about mee as": [0, 65535], "what priuie markes i had about mee as the": [0, 65535], "priuie markes i had about mee as the marke": [0, 65535], "markes i had about mee as the marke of": [0, 65535], "i had about mee as the marke of my": [0, 65535], "had about mee as the marke of my shoulder": [0, 65535], "about mee as the marke of my shoulder the": [0, 65535], "mee as the marke of my shoulder the mole": [0, 65535], "as the marke of my shoulder the mole in": [0, 65535], "the marke of my shoulder the mole in my": [0, 65535], "marke of my shoulder the mole in my necke": [0, 65535], "of my shoulder the mole in my necke the": [0, 65535], "my shoulder the mole in my necke the great": [0, 65535], "shoulder the mole in my necke the great wart": [0, 65535], "the mole in my necke the great wart on": [0, 65535], "mole in my necke the great wart on my": [0, 65535], "in my necke the great wart on my left": [0, 65535], "my necke the great wart on my left arme": [0, 65535], "necke the great wart on my left arme that": [0, 65535], "the great wart on my left arme that i": [0, 65535], "great wart on my left arme that i amaz'd": [0, 65535], "wart on my left arme that i amaz'd ranne": [0, 65535], "on my left arme that i amaz'd ranne from": [0, 65535], "my left arme that i amaz'd ranne from her": [0, 65535], "left arme that i amaz'd ranne from her as": [0, 65535], "arme that i amaz'd ranne from her as a": [0, 65535], "that i amaz'd ranne from her as a witch": [0, 65535], "i amaz'd ranne from her as a witch and": [0, 65535], "amaz'd ranne from her as a witch and i": [0, 65535], "ranne from her as a witch and i thinke": [0, 65535], "from her as a witch and i thinke if": [0, 65535], "her as a witch and i thinke if my": [0, 65535], "as a witch and i thinke if my brest": [0, 65535], "a witch and i thinke if my brest had": [0, 65535], "witch and i thinke if my brest had not": [0, 65535], "and i thinke if my brest had not beene": [0, 65535], "i thinke if my brest had not beene made": [0, 65535], "thinke if my brest had not beene made of": [0, 65535], "if my brest had not beene made of faith": [0, 65535], "my brest had not beene made of faith and": [0, 65535], "brest had not beene made of faith and my": [0, 65535], "had not beene made of faith and my heart": [0, 65535], "not beene made of faith and my heart of": [0, 65535], "beene made of faith and my heart of steele": [0, 65535], "made of faith and my heart of steele she": [0, 65535], "of faith and my heart of steele she had": [0, 65535], "faith and my heart of steele she had transform'd": [0, 65535], "and my heart of steele she had transform'd me": [0, 65535], "my heart of steele she had transform'd me to": [0, 65535], "heart of steele she had transform'd me to a": [0, 65535], "of steele she had transform'd me to a curtull": [0, 65535], "steele she had transform'd me to a curtull dog": [0, 65535], "she had transform'd me to a curtull dog made": [0, 65535], "had transform'd me to a curtull dog made me": [0, 65535], "transform'd me to a curtull dog made me turne": [0, 65535], "me to a curtull dog made me turne i'th": [0, 65535], "to a curtull dog made me turne i'th wheele": [0, 65535], "a curtull dog made me turne i'th wheele anti": [0, 65535], "curtull dog made me turne i'th wheele anti go": [0, 65535], "dog made me turne i'th wheele anti go hie": [0, 65535], "made me turne i'th wheele anti go hie thee": [0, 65535], "me turne i'th wheele anti go hie thee presently": [0, 65535], "turne i'th wheele anti go hie thee presently post": [0, 65535], "i'th wheele anti go hie thee presently post to": [0, 65535], "wheele anti go hie thee presently post to the": [0, 65535], "anti go hie thee presently post to the rode": [0, 65535], "go hie thee presently post to the rode and": [0, 65535], "hie thee presently post to the rode and if": [0, 65535], "thee presently post to the rode and if the": [0, 65535], "presently post to the rode and if the winde": [0, 65535], "post to the rode and if the winde blow": [0, 65535], "to the rode and if the winde blow any": [0, 65535], "the rode and if the winde blow any way": [0, 65535], "rode and if the winde blow any way from": [0, 65535], "and if the winde blow any way from shore": [0, 65535], "if the winde blow any way from shore i": [0, 65535], "the winde blow any way from shore i will": [0, 65535], "winde blow any way from shore i will not": [0, 65535], "blow any way from shore i will not harbour": [0, 65535], "any way from shore i will not harbour in": [0, 65535], "way from shore i will not harbour in this": [0, 65535], "from shore i will not harbour in this towne": [0, 65535], "shore i will not harbour in this towne to": [0, 65535], "i will not harbour in this towne to night": [0, 65535], "will not harbour in this towne to night if": [0, 65535], "not harbour in this towne to night if any": [0, 65535], "harbour in this towne to night if any barke": [0, 65535], "in this towne to night if any barke put": [0, 65535], "this towne to night if any barke put forth": [0, 65535], "towne to night if any barke put forth come": [0, 65535], "to night if any barke put forth come to": [0, 65535], "night if any barke put forth come to the": [0, 65535], "if any barke put forth come to the mart": [0, 65535], "any barke put forth come to the mart where": [0, 65535], "barke put forth come to the mart where i": [0, 65535], "put forth come to the mart where i will": [0, 65535], "forth come to the mart where i will walke": [0, 65535], "come to the mart where i will walke till": [0, 65535], "to the mart where i will walke till thou": [0, 65535], "the mart where i will walke till thou returne": [0, 65535], "mart where i will walke till thou returne to": [0, 65535], "where i will walke till thou returne to me": [0, 65535], "i will walke till thou returne to me if": [0, 65535], "will walke till thou returne to me if euerie": [0, 65535], "walke till thou returne to me if euerie one": [0, 65535], "till thou returne to me if euerie one knowes": [0, 65535], "thou returne to me if euerie one knowes vs": [0, 65535], "returne to me if euerie one knowes vs and": [0, 65535], "to me if euerie one knowes vs and we": [0, 65535], "me if euerie one knowes vs and we know": [0, 65535], "if euerie one knowes vs and we know none": [0, 65535], "euerie one knowes vs and we know none 'tis": [0, 65535], "one knowes vs and we know none 'tis time": [0, 65535], "knowes vs and we know none 'tis time i": [0, 65535], "vs and we know none 'tis time i thinke": [0, 65535], "and we know none 'tis time i thinke to": [0, 65535], "we know none 'tis time i thinke to trudge": [0, 65535], "know none 'tis time i thinke to trudge packe": [0, 65535], "none 'tis time i thinke to trudge packe and": [0, 65535], "'tis time i thinke to trudge packe and be": [0, 65535], "time i thinke to trudge packe and be gone": [0, 65535], "i thinke to trudge packe and be gone dro": [0, 65535], "thinke to trudge packe and be gone dro as": [0, 65535], "to trudge packe and be gone dro as from": [0, 65535], "trudge packe and be gone dro as from a": [0, 65535], "packe and be gone dro as from a beare": [0, 65535], "and be gone dro as from a beare a": [0, 65535], "be gone dro as from a beare a man": [0, 65535], "gone dro as from a beare a man would": [0, 65535], "dro as from a beare a man would run": [0, 65535], "as from a beare a man would run for": [0, 65535], "from a beare a man would run for life": [0, 65535], "a beare a man would run for life so": [0, 65535], "beare a man would run for life so flie": [0, 65535], "a man would run for life so flie i": [0, 65535], "man would run for life so flie i from": [0, 65535], "would run for life so flie i from her": [0, 65535], "run for life so flie i from her that": [0, 65535], "for life so flie i from her that would": [0, 65535], "life so flie i from her that would be": [0, 65535], "so flie i from her that would be my": [0, 65535], "flie i from her that would be my wife": [0, 65535], "i from her that would be my wife exit": [0, 65535], "from her that would be my wife exit anti": [0, 65535], "her that would be my wife exit anti there's": [0, 65535], "that would be my wife exit anti there's none": [0, 65535], "would be my wife exit anti there's none but": [0, 65535], "be my wife exit anti there's none but witches": [0, 65535], "my wife exit anti there's none but witches do": [0, 65535], "wife exit anti there's none but witches do inhabite": [0, 65535], "exit anti there's none but witches do inhabite heere": [0, 65535], "anti there's none but witches do inhabite heere and": [0, 65535], "there's none but witches do inhabite heere and therefore": [0, 65535], "none but witches do inhabite heere and therefore 'tis": [0, 65535], "but witches do inhabite heere and therefore 'tis hie": [0, 65535], "witches do inhabite heere and therefore 'tis hie time": [0, 65535], "do inhabite heere and therefore 'tis hie time that": [0, 65535], "inhabite heere and therefore 'tis hie time that i": [0, 65535], "heere and therefore 'tis hie time that i were": [0, 65535], "and therefore 'tis hie time that i were hence": [0, 65535], "therefore 'tis hie time that i were hence she": [0, 65535], "'tis hie time that i were hence she that": [0, 65535], "hie time that i were hence she that doth": [0, 65535], "time that i were hence she that doth call": [0, 65535], "that i were hence she that doth call me": [0, 65535], "i were hence she that doth call me husband": [0, 65535], "were hence she that doth call me husband euen": [0, 65535], "hence she that doth call me husband euen my": [0, 65535], "she that doth call me husband euen my soule": [0, 65535], "that doth call me husband euen my soule doth": [0, 65535], "doth call me husband euen my soule doth for": [0, 65535], "call me husband euen my soule doth for a": [0, 65535], "me husband euen my soule doth for a wife": [0, 65535], "husband euen my soule doth for a wife abhorre": [0, 65535], "euen my soule doth for a wife abhorre but": [0, 65535], "my soule doth for a wife abhorre but her": [0, 65535], "soule doth for a wife abhorre but her faire": [0, 65535], "doth for a wife abhorre but her faire sister": [0, 65535], "for a wife abhorre but her faire sister possest": [0, 65535], "a wife abhorre but her faire sister possest with": [0, 65535], "wife abhorre but her faire sister possest with such": [0, 65535], "abhorre but her faire sister possest with such a": [0, 65535], "but her faire sister possest with such a gentle": [0, 65535], "her faire sister possest with such a gentle soueraigne": [0, 65535], "faire sister possest with such a gentle soueraigne grace": [0, 65535], "sister possest with such a gentle soueraigne grace of": [0, 65535], "possest with such a gentle soueraigne grace of such": [0, 65535], "with such a gentle soueraigne grace of such inchanting": [0, 65535], "such a gentle soueraigne grace of such inchanting presence": [0, 65535], "a gentle soueraigne grace of such inchanting presence and": [0, 65535], "gentle soueraigne grace of such inchanting presence and discourse": [0, 65535], "soueraigne grace of such inchanting presence and discourse hath": [0, 65535], "grace of such inchanting presence and discourse hath almost": [0, 65535], "of such inchanting presence and discourse hath almost made": [0, 65535], "such inchanting presence and discourse hath almost made me": [0, 65535], "inchanting presence and discourse hath almost made me traitor": [0, 65535], "presence and discourse hath almost made me traitor to": [0, 65535], "and discourse hath almost made me traitor to my": [0, 65535], "discourse hath almost made me traitor to my selfe": [0, 65535], "hath almost made me traitor to my selfe but": [0, 65535], "almost made me traitor to my selfe but least": [0, 65535], "made me traitor to my selfe but least my": [0, 65535], "me traitor to my selfe but least my selfe": [0, 65535], "traitor to my selfe but least my selfe be": [0, 65535], "to my selfe but least my selfe be guilty": [0, 65535], "my selfe but least my selfe be guilty to": [0, 65535], "selfe but least my selfe be guilty to selfe": [0, 65535], "but least my selfe be guilty to selfe wrong": [0, 65535], "least my selfe be guilty to selfe wrong ile": [0, 65535], "my selfe be guilty to selfe wrong ile stop": [0, 65535], "selfe be guilty to selfe wrong ile stop mine": [0, 65535], "be guilty to selfe wrong ile stop mine eares": [0, 65535], "guilty to selfe wrong ile stop mine eares against": [0, 65535], "to selfe wrong ile stop mine eares against the": [0, 65535], "selfe wrong ile stop mine eares against the mermaids": [0, 65535], "wrong ile stop mine eares against the mermaids song": [0, 65535], "ile stop mine eares against the mermaids song enter": [0, 65535], "stop mine eares against the mermaids song enter angelo": [0, 65535], "mine eares against the mermaids song enter angelo with": [0, 65535], "eares against the mermaids song enter angelo with the": [0, 65535], "against the mermaids song enter angelo with the chaine": [0, 65535], "the mermaids song enter angelo with the chaine ang": [0, 65535], "mermaids song enter angelo with the chaine ang mr": [0, 65535], "song enter angelo with the chaine ang mr antipholus": [0, 65535], "enter angelo with the chaine ang mr antipholus anti": [0, 65535], "angelo with the chaine ang mr antipholus anti i": [0, 65535], "with the chaine ang mr antipholus anti i that's": [0, 65535], "the chaine ang mr antipholus anti i that's my": [0, 65535], "chaine ang mr antipholus anti i that's my name": [0, 65535], "ang mr antipholus anti i that's my name ang": [0, 65535], "mr antipholus anti i that's my name ang i": [0, 65535], "antipholus anti i that's my name ang i know": [0, 65535], "anti i that's my name ang i know it": [0, 65535], "i that's my name ang i know it well": [0, 65535], "that's my name ang i know it well sir": [0, 65535], "my name ang i know it well sir loe": [0, 65535], "name ang i know it well sir loe here's": [0, 65535], "ang i know it well sir loe here's the": [0, 65535], "i know it well sir loe here's the chaine": [0, 65535], "know it well sir loe here's the chaine i": [0, 65535], "it well sir loe here's the chaine i thought": [0, 65535], "well sir loe here's the chaine i thought to": [0, 65535], "sir loe here's the chaine i thought to haue": [0, 65535], "loe here's the chaine i thought to haue tane": [0, 65535], "here's the chaine i thought to haue tane you": [0, 65535], "the chaine i thought to haue tane you at": [0, 65535], "chaine i thought to haue tane you at the": [0, 65535], "i thought to haue tane you at the porpentine": [0, 65535], "thought to haue tane you at the porpentine the": [0, 65535], "to haue tane you at the porpentine the chaine": [0, 65535], "haue tane you at the porpentine the chaine vnfinish'd": [0, 65535], "tane you at the porpentine the chaine vnfinish'd made": [0, 65535], "you at the porpentine the chaine vnfinish'd made me": [0, 65535], "at the porpentine the chaine vnfinish'd made me stay": [0, 65535], "the porpentine the chaine vnfinish'd made me stay thus": [0, 65535], "porpentine the chaine vnfinish'd made me stay thus long": [0, 65535], "the chaine vnfinish'd made me stay thus long anti": [0, 65535], "chaine vnfinish'd made me stay thus long anti what": [0, 65535], "vnfinish'd made me stay thus long anti what is": [0, 65535], "made me stay thus long anti what is your": [0, 65535], "me stay thus long anti what is your will": [0, 65535], "stay thus long anti what is your will that": [0, 65535], "thus long anti what is your will that i": [0, 65535], "long anti what is your will that i shal": [0, 65535], "anti what is your will that i shal do": [0, 65535], "what is your will that i shal do with": [0, 65535], "is your will that i shal do with this": [0, 65535], "your will that i shal do with this ang": [0, 65535], "will that i shal do with this ang what": [0, 65535], "that i shal do with this ang what please": [0, 65535], "i shal do with this ang what please your": [0, 65535], "shal do with this ang what please your selfe": [0, 65535], "do with this ang what please your selfe sir": [0, 65535], "with this ang what please your selfe sir i": [0, 65535], "this ang what please your selfe sir i haue": [0, 65535], "ang what please your selfe sir i haue made": [0, 65535], "what please your selfe sir i haue made it": [0, 65535], "please your selfe sir i haue made it for": [0, 65535], "your selfe sir i haue made it for you": [0, 65535], "selfe sir i haue made it for you anti": [0, 65535], "sir i haue made it for you anti made": [0, 65535], "i haue made it for you anti made it": [0, 65535], "haue made it for you anti made it for": [0, 65535], "made it for you anti made it for me": [0, 65535], "it for you anti made it for me sir": [0, 65535], "for you anti made it for me sir i": [0, 65535], "you anti made it for me sir i bespoke": [0, 65535], "anti made it for me sir i bespoke it": [0, 65535], "made it for me sir i bespoke it not": [0, 65535], "it for me sir i bespoke it not ang": [0, 65535], "for me sir i bespoke it not ang not": [0, 65535], "me sir i bespoke it not ang not once": [0, 65535], "sir i bespoke it not ang not once nor": [0, 65535], "i bespoke it not ang not once nor twice": [0, 65535], "bespoke it not ang not once nor twice but": [0, 65535], "it not ang not once nor twice but twentie": [0, 65535], "not ang not once nor twice but twentie times": [0, 65535], "ang not once nor twice but twentie times you": [0, 65535], "not once nor twice but twentie times you haue": [0, 65535], "once nor twice but twentie times you haue go": [0, 65535], "nor twice but twentie times you haue go home": [0, 65535], "twice but twentie times you haue go home with": [0, 65535], "but twentie times you haue go home with it": [0, 65535], "twentie times you haue go home with it and": [0, 65535], "times you haue go home with it and please": [0, 65535], "you haue go home with it and please your": [0, 65535], "haue go home with it and please your wife": [0, 65535], "go home with it and please your wife withall": [0, 65535], "home with it and please your wife withall and": [0, 65535], "with it and please your wife withall and soone": [0, 65535], "it and please your wife withall and soone at": [0, 65535], "and please your wife withall and soone at supper": [0, 65535], "please your wife withall and soone at supper time": [0, 65535], "your wife withall and soone at supper time ile": [0, 65535], "wife withall and soone at supper time ile visit": [0, 65535], "withall and soone at supper time ile visit you": [0, 65535], "and soone at supper time ile visit you and": [0, 65535], "soone at supper time ile visit you and then": [0, 65535], "at supper time ile visit you and then receiue": [0, 65535], "supper time ile visit you and then receiue my": [0, 65535], "time ile visit you and then receiue my money": [0, 65535], "ile visit you and then receiue my money for": [0, 65535], "visit you and then receiue my money for the": [0, 65535], "you and then receiue my money for the chaine": [0, 65535], "and then receiue my money for the chaine anti": [0, 65535], "then receiue my money for the chaine anti i": [0, 65535], "receiue my money for the chaine anti i pray": [0, 65535], "my money for the chaine anti i pray you": [0, 65535], "money for the chaine anti i pray you sir": [0, 65535], "for the chaine anti i pray you sir receiue": [0, 65535], "the chaine anti i pray you sir receiue the": [0, 65535], "chaine anti i pray you sir receiue the money": [0, 65535], "anti i pray you sir receiue the money now": [0, 65535], "i pray you sir receiue the money now for": [0, 65535], "pray you sir receiue the money now for feare": [0, 65535], "you sir receiue the money now for feare you": [0, 65535], "sir receiue the money now for feare you ne're": [0, 65535], "receiue the money now for feare you ne're see": [0, 65535], "the money now for feare you ne're see chaine": [0, 65535], "money now for feare you ne're see chaine nor": [0, 65535], "now for feare you ne're see chaine nor mony": [0, 65535], "for feare you ne're see chaine nor mony more": [0, 65535], "feare you ne're see chaine nor mony more ang": [0, 65535], "you ne're see chaine nor mony more ang you": [0, 65535], "ne're see chaine nor mony more ang you are": [0, 65535], "see chaine nor mony more ang you are a": [0, 65535], "chaine nor mony more ang you are a merry": [0, 65535], "nor mony more ang you are a merry man": [0, 65535], "mony more ang you are a merry man sir": [0, 65535], "more ang you are a merry man sir fare": [0, 65535], "ang you are a merry man sir fare you": [0, 65535], "you are a merry man sir fare you well": [0, 65535], "are a merry man sir fare you well exit": [0, 65535], "a merry man sir fare you well exit ant": [0, 65535], "merry man sir fare you well exit ant what": [0, 65535], "man sir fare you well exit ant what i": [0, 65535], "sir fare you well exit ant what i should": [0, 65535], "fare you well exit ant what i should thinke": [0, 65535], "you well exit ant what i should thinke of": [0, 65535], "well exit ant what i should thinke of this": [0, 65535], "exit ant what i should thinke of this i": [0, 65535], "ant what i should thinke of this i cannot": [0, 65535], "what i should thinke of this i cannot tell": [0, 65535], "i should thinke of this i cannot tell but": [0, 65535], "should thinke of this i cannot tell but this": [0, 65535], "thinke of this i cannot tell but this i": [0, 65535], "of this i cannot tell but this i thinke": [0, 65535], "this i cannot tell but this i thinke there's": [0, 65535], "i cannot tell but this i thinke there's no": [0, 65535], "cannot tell but this i thinke there's no man": [0, 65535], "tell but this i thinke there's no man is": [0, 65535], "but this i thinke there's no man is so": [0, 65535], "this i thinke there's no man is so vaine": [0, 65535], "i thinke there's no man is so vaine that": [0, 65535], "thinke there's no man is so vaine that would": [0, 65535], "there's no man is so vaine that would refuse": [0, 65535], "no man is so vaine that would refuse so": [0, 65535], "man is so vaine that would refuse so faire": [0, 65535], "is so vaine that would refuse so faire an": [0, 65535], "so vaine that would refuse so faire an offer'd": [0, 65535], "vaine that would refuse so faire an offer'd chaine": [0, 65535], "that would refuse so faire an offer'd chaine i": [0, 65535], "would refuse so faire an offer'd chaine i see": [0, 65535], "refuse so faire an offer'd chaine i see a": [0, 65535], "so faire an offer'd chaine i see a man": [0, 65535], "faire an offer'd chaine i see a man heere": [0, 65535], "an offer'd chaine i see a man heere needs": [0, 65535], "offer'd chaine i see a man heere needs not": [0, 65535], "chaine i see a man heere needs not liue": [0, 65535], "i see a man heere needs not liue by": [0, 65535], "see a man heere needs not liue by shifts": [0, 65535], "a man heere needs not liue by shifts when": [0, 65535], "man heere needs not liue by shifts when in": [0, 65535], "heere needs not liue by shifts when in the": [0, 65535], "needs not liue by shifts when in the streets": [0, 65535], "not liue by shifts when in the streets he": [0, 65535], "liue by shifts when in the streets he meetes": [0, 65535], "by shifts when in the streets he meetes such": [0, 65535], "shifts when in the streets he meetes such golden": [0, 65535], "when in the streets he meetes such golden gifts": [0, 65535], "in the streets he meetes such golden gifts ile": [0, 65535], "the streets he meetes such golden gifts ile to": [0, 65535], "streets he meetes such golden gifts ile to the": [0, 65535], "he meetes such golden gifts ile to the mart": [0, 65535], "meetes such golden gifts ile to the mart and": [0, 65535], "such golden gifts ile to the mart and there": [0, 65535], "golden gifts ile to the mart and there for": [0, 65535], "gifts ile to the mart and there for dromio": [0, 65535], "ile to the mart and there for dromio stay": [0, 65535], "to the mart and there for dromio stay if": [0, 65535], "the mart and there for dromio stay if any": [0, 65535], "mart and there for dromio stay if any ship": [0, 65535], "and there for dromio stay if any ship put": [0, 65535], "there for dromio stay if any ship put out": [0, 65535], "for dromio stay if any ship put out then": [0, 65535], "dromio stay if any ship put out then straight": [0, 65535], "stay if any ship put out then straight away": [0, 65535], "if any ship put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of ephesus his man": [0, 65535], "tertius scena prima enter antipholus of ephesus his man dromio": [0, 65535], "scena prima enter antipholus of ephesus his man dromio angelo": [0, 65535], "prima enter antipholus of ephesus his man dromio angelo the": [0, 65535], "enter antipholus of ephesus his man dromio angelo the goldsmith": [0, 65535], "antipholus of ephesus his man dromio angelo the goldsmith and": [0, 65535], "of ephesus his man dromio angelo the goldsmith and balthaser": [0, 65535], "ephesus his man dromio angelo the goldsmith and balthaser the": [0, 65535], "his man dromio angelo the goldsmith and balthaser the merchant": [0, 65535], "man dromio angelo the goldsmith and balthaser the merchant e": [0, 65535], "dromio angelo the goldsmith and balthaser the merchant e anti": [0, 65535], "angelo the goldsmith and balthaser the merchant e anti good": [0, 65535], "the goldsmith and balthaser the merchant e anti good signior": [0, 65535], "goldsmith and balthaser the merchant e anti good signior angelo": [0, 65535], "and balthaser the merchant e anti good signior angelo you": [0, 65535], "balthaser the merchant e anti good signior angelo you must": [0, 65535], "the merchant e anti good signior angelo you must excuse": [0, 65535], "merchant e anti good signior angelo you must excuse vs": [0, 65535], "e anti good signior angelo you must excuse vs all": [0, 65535], "anti good signior angelo you must excuse vs all my": [0, 65535], "good signior angelo you must excuse vs all my wife": [0, 65535], "signior angelo you must excuse vs all my wife is": [0, 65535], "angelo you must excuse vs all my wife is shrewish": [0, 65535], "you must excuse vs all my wife is shrewish when": [0, 65535], "must excuse vs all my wife is shrewish when i": [0, 65535], "excuse vs all my wife is shrewish when i keepe": [0, 65535], "vs all my wife is shrewish when i keepe not": [0, 65535], "all my wife is shrewish when i keepe not howres": [0, 65535], "my wife is shrewish when i keepe not howres say": [0, 65535], "wife is shrewish when i keepe not howres say that": [0, 65535], "is shrewish when i keepe not howres say that i": [0, 65535], "shrewish when i keepe not howres say that i lingerd": [0, 65535], "when i keepe not howres say that i lingerd with": [0, 65535], "i keepe not howres say that i lingerd with you": [0, 65535], "keepe not howres say that i lingerd with you at": [0, 65535], "not howres say that i lingerd with you at your": [0, 65535], "howres say that i lingerd with you at your shop": [0, 65535], "say that i lingerd with you at your shop to": [0, 65535], "that i lingerd with you at your shop to see": [0, 65535], "i lingerd with you at your shop to see the": [0, 65535], "lingerd with you at your shop to see the making": [0, 65535], "with you at your shop to see the making of": [0, 65535], "you at your shop to see the making of her": [0, 65535], "at your shop to see the making of her carkanet": [0, 65535], "your shop to see the making of her carkanet and": [0, 65535], "shop to see the making of her carkanet and that": [0, 65535], "to see the making of her carkanet and that to": [0, 65535], "see the making of her carkanet and that to morrow": [0, 65535], "the making of her carkanet and that to morrow you": [0, 65535], "making of her carkanet and that to morrow you will": [0, 65535], "of her carkanet and that to morrow you will bring": [0, 65535], "her carkanet and that to morrow you will bring it": [0, 65535], "carkanet and that to morrow you will bring it home": [0, 65535], "and that to morrow you will bring it home but": [0, 65535], "that to morrow you will bring it home but here's": [0, 65535], "to morrow you will bring it home but here's a": [0, 65535], "morrow you will bring it home but here's a villaine": [0, 65535], "you will bring it home but here's a villaine that": [0, 65535], "will bring it home but here's a villaine that would": [0, 65535], "bring it home but here's a villaine that would face": [0, 65535], "it home but here's a villaine that would face me": [0, 65535], "home but here's a villaine that would face me downe": [0, 65535], "but here's a villaine that would face me downe he": [0, 65535], "here's a villaine that would face me downe he met": [0, 65535], "a villaine that would face me downe he met me": [0, 65535], "villaine that would face me downe he met me on": [0, 65535], "that would face me downe he met me on the": [0, 65535], "would face me downe he met me on the mart": [0, 65535], "face me downe he met me on the mart and": [0, 65535], "me downe he met me on the mart and that": [0, 65535], "downe he met me on the mart and that i": [0, 65535], "he met me on the mart and that i beat": [0, 65535], "met me on the mart and that i beat him": [0, 65535], "me on the mart and that i beat him and": [0, 65535], "on the mart and that i beat him and charg'd": [0, 65535], "the mart and that i beat him and charg'd him": [0, 65535], "mart and that i beat him and charg'd him with": [0, 65535], "and that i beat him and charg'd him with a": [0, 65535], "that i beat him and charg'd him with a thousand": [0, 65535], "i beat him and charg'd him with a thousand markes": [0, 65535], "beat him and charg'd him with a thousand markes in": [0, 65535], "him and charg'd him with a thousand markes in gold": [0, 65535], "and charg'd him with a thousand markes in gold and": [0, 65535], "charg'd him with a thousand markes in gold and that": [0, 65535], "him with a thousand markes in gold and that i": [0, 65535], "with a thousand markes in gold and that i did": [0, 65535], "a thousand markes in gold and that i did denie": [0, 65535], "thousand markes in gold and that i did denie my": [0, 65535], "markes in gold and that i did denie my wife": [0, 65535], "in gold and that i did denie my wife and": [0, 65535], "gold and that i did denie my wife and house": [0, 65535], "and that i did denie my wife and house thou": [0, 65535], "that i did denie my wife and house thou drunkard": [0, 65535], "i did denie my wife and house thou drunkard thou": [0, 65535], "did denie my wife and house thou drunkard thou what": [0, 65535], "denie my wife and house thou drunkard thou what didst": [0, 65535], "my wife and house thou drunkard thou what didst thou": [0, 65535], "wife and house thou drunkard thou what didst thou meane": [0, 65535], "and house thou drunkard thou what didst thou meane by": [0, 65535], "house thou drunkard thou what didst thou meane by this": [0, 65535], "thou drunkard thou what didst thou meane by this e": [0, 65535], "drunkard thou what didst thou meane by this e dro": [0, 65535], "thou what didst thou meane by this e dro say": [0, 65535], "what didst thou meane by this e dro say what": [0, 65535], "didst thou meane by this e dro say what you": [0, 65535], "thou meane by this e dro say what you wil": [0, 65535], "meane by this e dro say what you wil sir": [0, 65535], "by this e dro say what you wil sir but": [0, 65535], "this e dro say what you wil sir but i": [0, 65535], "e dro say what you wil sir but i know": [0, 65535], "dro say what you wil sir but i know what": [0, 65535], "say what you wil sir but i know what i": [0, 65535], "what you wil sir but i know what i know": [0, 65535], "you wil sir but i know what i know that": [0, 65535], "wil sir but i know what i know that you": [0, 65535], "sir but i know what i know that you beat": [0, 65535], "but i know what i know that you beat me": [0, 65535], "i know what i know that you beat me at": [0, 65535], "know what i know that you beat me at the": [0, 65535], "what i know that you beat me at the mart": [0, 65535], "i know that you beat me at the mart i": [0, 65535], "know that you beat me at the mart i haue": [0, 65535], "that you beat me at the mart i haue your": [0, 65535], "you beat me at the mart i haue your hand": [0, 65535], "beat me at the mart i haue your hand to": [0, 65535], "me at the mart i haue your hand to show": [0, 65535], "at the mart i haue your hand to show if": [0, 65535], "the mart i haue your hand to show if the": [0, 65535], "mart i haue your hand to show if the skin": [0, 65535], "i haue your hand to show if the skin were": [0, 65535], "haue your hand to show if the skin were parchment": [0, 65535], "your hand to show if the skin were parchment the": [0, 65535], "hand to show if the skin were parchment the blows": [0, 65535], "to show if the skin were parchment the blows you": [0, 65535], "show if the skin were parchment the blows you gaue": [0, 65535], "if the skin were parchment the blows you gaue were": [0, 65535], "the skin were parchment the blows you gaue were ink": [0, 65535], "skin were parchment the blows you gaue were ink your": [0, 65535], "were parchment the blows you gaue were ink your owne": [0, 65535], "parchment the blows you gaue were ink your owne hand": [0, 65535], "the blows you gaue were ink your owne hand writing": [0, 65535], "blows you gaue were ink your owne hand writing would": [0, 65535], "you gaue were ink your owne hand writing would tell": [0, 65535], "gaue were ink your owne hand writing would tell you": [0, 65535], "were ink your owne hand writing would tell you what": [0, 65535], "ink your owne hand writing would tell you what i": [0, 65535], "your owne hand writing would tell you what i thinke": [0, 65535], "owne hand writing would tell you what i thinke e": [0, 65535], "hand writing would tell you what i thinke e ant": [0, 65535], "writing would tell you what i thinke e ant i": [0, 65535], "would tell you what i thinke e ant i thinke": [0, 65535], "tell you what i thinke e ant i thinke thou": [0, 65535], "you what i thinke e ant i thinke thou art": [0, 65535], "what i thinke e ant i thinke thou art an": [0, 65535], "i thinke e ant i thinke thou art an asse": [0, 65535], "thinke e ant i thinke thou art an asse e": [0, 65535], "e ant i thinke thou art an asse e dro": [0, 65535], "ant i thinke thou art an asse e dro marry": [0, 65535], "i thinke thou art an asse e dro marry so": [0, 65535], "thinke thou art an asse e dro marry so it": [0, 65535], "thou art an asse e dro marry so it doth": [0, 65535], "art an asse e dro marry so it doth appeare": [0, 65535], "an asse e dro marry so it doth appeare by": [0, 65535], "asse e dro marry so it doth appeare by the": [0, 65535], "e dro marry so it doth appeare by the wrongs": [0, 65535], "dro marry so it doth appeare by the wrongs i": [0, 65535], "marry so it doth appeare by the wrongs i suffer": [0, 65535], "so it doth appeare by the wrongs i suffer and": [0, 65535], "it doth appeare by the wrongs i suffer and the": [0, 65535], "doth appeare by the wrongs i suffer and the blowes": [0, 65535], "appeare by the wrongs i suffer and the blowes i": [0, 65535], "by the wrongs i suffer and the blowes i beare": [0, 65535], "the wrongs i suffer and the blowes i beare i": [0, 65535], "wrongs i suffer and the blowes i beare i should": [0, 65535], "i suffer and the blowes i beare i should kicke": [0, 65535], "suffer and the blowes i beare i should kicke being": [0, 65535], "and the blowes i beare i should kicke being kickt": [0, 65535], "the blowes i beare i should kicke being kickt and": [0, 65535], "blowes i beare i should kicke being kickt and being": [0, 65535], "i beare i should kicke being kickt and being at": [0, 65535], "beare i should kicke being kickt and being at that": [0, 65535], "i should kicke being kickt and being at that passe": [0, 65535], "should kicke being kickt and being at that passe you": [0, 65535], "kicke being kickt and being at that passe you would": [0, 65535], "being kickt and being at that passe you would keepe": [0, 65535], "kickt and being at that passe you would keepe from": [0, 65535], "and being at that passe you would keepe from my": [0, 65535], "being at that passe you would keepe from my heeles": [0, 65535], "at that passe you would keepe from my heeles and": [0, 65535], "that passe you would keepe from my heeles and beware": [0, 65535], "passe you would keepe from my heeles and beware of": [0, 65535], "you would keepe from my heeles and beware of an": [0, 65535], "would keepe from my heeles and beware of an asse": [0, 65535], "keepe from my heeles and beware of an asse e": [0, 65535], "from my heeles and beware of an asse e an": [0, 65535], "my heeles and beware of an asse e an y'are": [0, 65535], "heeles and beware of an asse e an y'are sad": [0, 65535], "and beware of an asse e an y'are sad signior": [0, 65535], "beware of an asse e an y'are sad signior balthazar": [0, 65535], "of an asse e an y'are sad signior balthazar pray": [0, 65535], "an asse e an y'are sad signior balthazar pray god": [0, 65535], "asse e an y'are sad signior balthazar pray god our": [0, 65535], "e an y'are sad signior balthazar pray god our cheer": [0, 65535], "an y'are sad signior balthazar pray god our cheer may": [0, 65535], "y'are sad signior balthazar pray god our cheer may answer": [0, 65535], "sad signior balthazar pray god our cheer may answer my": [0, 65535], "signior balthazar pray god our cheer may answer my good": [0, 65535], "balthazar pray god our cheer may answer my good will": [0, 65535], "pray god our cheer may answer my good will and": [0, 65535], "god our cheer may answer my good will and your": [0, 65535], "our cheer may answer my good will and your good": [0, 65535], "cheer may answer my good will and your good welcom": [0, 65535], "may answer my good will and your good welcom here": [0, 65535], "answer my good will and your good welcom here bal": [0, 65535], "my good will and your good welcom here bal i": [0, 65535], "good will and your good welcom here bal i hold": [0, 65535], "will and your good welcom here bal i hold your": [0, 65535], "and your good welcom here bal i hold your dainties": [0, 65535], "your good welcom here bal i hold your dainties cheap": [0, 65535], "good welcom here bal i hold your dainties cheap sir": [0, 65535], "welcom here bal i hold your dainties cheap sir your": [0, 65535], "here bal i hold your dainties cheap sir your welcom": [0, 65535], "bal i hold your dainties cheap sir your welcom deer": [0, 65535], "i hold your dainties cheap sir your welcom deer e": [0, 65535], "hold your dainties cheap sir your welcom deer e an": [0, 65535], "your dainties cheap sir your welcom deer e an oh": [0, 65535], "dainties cheap sir your welcom deer e an oh signior": [0, 65535], "cheap sir your welcom deer e an oh signior balthazar": [0, 65535], "sir your welcom deer e an oh signior balthazar either": [0, 65535], "your welcom deer e an oh signior balthazar either at": [0, 65535], "welcom deer e an oh signior balthazar either at flesh": [0, 65535], "deer e an oh signior balthazar either at flesh or": [0, 65535], "e an oh signior balthazar either at flesh or fish": [0, 65535], "an oh signior balthazar either at flesh or fish a": [0, 65535], "oh signior balthazar either at flesh or fish a table": [0, 65535], "signior balthazar either at flesh or fish a table full": [0, 65535], "balthazar either at flesh or fish a table full of": [0, 65535], "either at flesh or fish a table full of welcome": [0, 65535], "at flesh or fish a table full of welcome makes": [0, 65535], "flesh or fish a table full of welcome makes scarce": [0, 65535], "or fish a table full of welcome makes scarce one": [0, 65535], "fish a table full of welcome makes scarce one dainty": [0, 65535], "a table full of welcome makes scarce one dainty dish": [0, 65535], "table full of welcome makes scarce one dainty dish bal": [0, 65535], "full of welcome makes scarce one dainty dish bal good": [0, 65535], "of welcome makes scarce one dainty dish bal good meat": [0, 65535], "welcome makes scarce one dainty dish bal good meat sir": [0, 65535], "makes scarce one dainty dish bal good meat sir is": [0, 65535], "scarce one dainty dish bal good meat sir is co": [0, 65535], "one dainty dish bal good meat sir is co m": [0, 65535], "dainty dish bal good meat sir is co m mon": [0, 65535], "dish bal good meat sir is co m mon that": [0, 65535], "bal good meat sir is co m mon that euery": [0, 65535], "good meat sir is co m mon that euery churle": [0, 65535], "meat sir is co m mon that euery churle affords": [0, 65535], "sir is co m mon that euery churle affords anti": [0, 65535], "is co m mon that euery churle affords anti and": [0, 65535], "co m mon that euery churle affords anti and welcome": [0, 65535], "m mon that euery churle affords anti and welcome more": [0, 65535], "mon that euery churle affords anti and welcome more common": [0, 65535], "that euery churle affords anti and welcome more common for": [0, 65535], "euery churle affords anti and welcome more common for thats": [0, 65535], "churle affords anti and welcome more common for thats nothing": [0, 65535], "affords anti and welcome more common for thats nothing but": [0, 65535], "anti and welcome more common for thats nothing but words": [0, 65535], "and welcome more common for thats nothing but words bal": [0, 65535], "welcome more common for thats nothing but words bal small": [0, 65535], "more common for thats nothing but words bal small cheere": [0, 65535], "common for thats nothing but words bal small cheere and": [0, 65535], "for thats nothing but words bal small cheere and great": [0, 65535], "thats nothing but words bal small cheere and great welcome": [0, 65535], "nothing but words bal small cheere and great welcome makes": [0, 65535], "but words bal small cheere and great welcome makes a": [0, 65535], "words bal small cheere and great welcome makes a merrie": [0, 65535], "bal small cheere and great welcome makes a merrie feast": [0, 65535], "small cheere and great welcome makes a merrie feast anti": [0, 65535], "cheere and great welcome makes a merrie feast anti i": [0, 65535], "and great welcome makes a merrie feast anti i to": [0, 65535], "great welcome makes a merrie feast anti i to a": [0, 65535], "welcome makes a merrie feast anti i to a niggardly": [0, 65535], "makes a merrie feast anti i to a niggardly host": [0, 65535], "a merrie feast anti i to a niggardly host and": [0, 65535], "merrie feast anti i to a niggardly host and more": [0, 65535], "feast anti i to a niggardly host and more sparing": [0, 65535], "anti i to a niggardly host and more sparing guest": [0, 65535], "i to a niggardly host and more sparing guest but": [0, 65535], "to a niggardly host and more sparing guest but though": [0, 65535], "a niggardly host and more sparing guest but though my": [0, 65535], "niggardly host and more sparing guest but though my cates": [0, 65535], "host and more sparing guest but though my cates be": [0, 65535], "and more sparing guest but though my cates be meane": [0, 65535], "more sparing guest but though my cates be meane take": [0, 65535], "sparing guest but though my cates be meane take them": [0, 65535], "guest but though my cates be meane take them in": [0, 65535], "but though my cates be meane take them in good": [0, 65535], "though my cates be meane take them in good part": [0, 65535], "my cates be meane take them in good part better": [0, 65535], "cates be meane take them in good part better cheere": [0, 65535], "be meane take them in good part better cheere may": [0, 65535], "meane take them in good part better cheere may you": [0, 65535], "take them in good part better cheere may you haue": [0, 65535], "them in good part better cheere may you haue but": [0, 65535], "in good part better cheere may you haue but not": [0, 65535], "good part better cheere may you haue but not with": [0, 65535], "part better cheere may you haue but not with better": [0, 65535], "better cheere may you haue but not with better hart": [0, 65535], "cheere may you haue but not with better hart but": [0, 65535], "may you haue but not with better hart but soft": [0, 65535], "you haue but not with better hart but soft my": [0, 65535], "haue but not with better hart but soft my doore": [0, 65535], "but not with better hart but soft my doore is": [0, 65535], "not with better hart but soft my doore is lockt": [0, 65535], "with better hart but soft my doore is lockt goe": [0, 65535], "better hart but soft my doore is lockt goe bid": [0, 65535], "hart but soft my doore is lockt goe bid them": [0, 65535], "but soft my doore is lockt goe bid them let": [0, 65535], "soft my doore is lockt goe bid them let vs": [0, 65535], "my doore is lockt goe bid them let vs in": [0, 65535], "doore is lockt goe bid them let vs in e": [0, 65535], "is lockt goe bid them let vs in e dro": [0, 65535], "lockt goe bid them let vs in e dro maud": [0, 65535], "goe bid them let vs in e dro maud briget": [0, 65535], "bid them let vs in e dro maud briget marian": [0, 65535], "them let vs in e dro maud briget marian cisley": [0, 65535], "let vs in e dro maud briget marian cisley gillian": [0, 65535], "vs in e dro maud briget marian cisley gillian ginn": [0, 65535], "in e dro maud briget marian cisley gillian ginn s": [0, 65535], "e dro maud briget marian cisley gillian ginn s dro": [0, 65535], "dro maud briget marian cisley gillian ginn s dro mome": [0, 65535], "maud briget marian cisley gillian ginn s dro mome malthorse": [0, 65535], "briget marian cisley gillian ginn s dro mome malthorse capon": [0, 65535], "marian cisley gillian ginn s dro mome malthorse capon coxcombe": [0, 65535], "cisley gillian ginn s dro mome malthorse capon coxcombe idiot": [0, 65535], "gillian ginn s dro mome malthorse capon coxcombe idiot patch": [0, 65535], "ginn s dro mome malthorse capon coxcombe idiot patch either": [0, 65535], "s dro mome malthorse capon coxcombe idiot patch either get": [0, 65535], "dro mome malthorse capon coxcombe idiot patch either get thee": [0, 65535], "mome malthorse capon coxcombe idiot patch either get thee from": [0, 65535], "malthorse capon coxcombe idiot patch either get thee from the": [0, 65535], "capon coxcombe idiot patch either get thee from the dore": [0, 65535], "coxcombe idiot patch either get thee from the dore or": [0, 65535], "idiot patch either get thee from the dore or sit": [0, 65535], "patch either get thee from the dore or sit downe": [0, 65535], "either get thee from the dore or sit downe at": [0, 65535], "get thee from the dore or sit downe at the": [0, 65535], "thee from the dore or sit downe at the hatch": [0, 65535], "from the dore or sit downe at the hatch dost": [0, 65535], "the dore or sit downe at the hatch dost thou": [0, 65535], "dore or sit downe at the hatch dost thou coniure": [0, 65535], "or sit downe at the hatch dost thou coniure for": [0, 65535], "sit downe at the hatch dost thou coniure for wenches": [0, 65535], "downe at the hatch dost thou coniure for wenches that": [0, 65535], "at the hatch dost thou coniure for wenches that thou": [0, 65535], "the hatch dost thou coniure for wenches that thou calst": [0, 65535], "hatch dost thou coniure for wenches that thou calst for": [0, 65535], "dost thou coniure for wenches that thou calst for such": [0, 65535], "thou coniure for wenches that thou calst for such store": [0, 65535], "coniure for wenches that thou calst for such store when": [0, 65535], "for wenches that thou calst for such store when one": [0, 65535], "wenches that thou calst for such store when one is": [0, 65535], "that thou calst for such store when one is one": [0, 65535], "thou calst for such store when one is one too": [0, 65535], "calst for such store when one is one too many": [0, 65535], "for such store when one is one too many goe": [0, 65535], "such store when one is one too many goe get": [0, 65535], "store when one is one too many goe get thee": [0, 65535], "when one is one too many goe get thee from": [0, 65535], "one is one too many goe get thee from the": [0, 65535], "is one too many goe get thee from the dore": [0, 65535], "one too many goe get thee from the dore e": [0, 65535], "too many goe get thee from the dore e dro": [0, 65535], "many goe get thee from the dore e dro what": [0, 65535], "goe get thee from the dore e dro what patch": [0, 65535], "get thee from the dore e dro what patch is": [0, 65535], "thee from the dore e dro what patch is made": [0, 65535], "from the dore e dro what patch is made our": [0, 65535], "the dore e dro what patch is made our porter": [0, 65535], "dore e dro what patch is made our porter my": [0, 65535], "e dro what patch is made our porter my master": [0, 65535], "dro what patch is made our porter my master stayes": [0, 65535], "what patch is made our porter my master stayes in": [0, 65535], "patch is made our porter my master stayes in the": [0, 65535], "is made our porter my master stayes in the street": [0, 65535], "made our porter my master stayes in the street s": [0, 65535], "our porter my master stayes in the street s dro": [0, 65535], "porter my master stayes in the street s dro let": [0, 65535], "my master stayes in the street s dro let him": [0, 65535], "master stayes in the street s dro let him walke": [0, 65535], "stayes in the street s dro let him walke from": [0, 65535], "in the street s dro let him walke from whence": [0, 65535], "the street s dro let him walke from whence he": [0, 65535], "street s dro let him walke from whence he came": [0, 65535], "s dro let him walke from whence he came lest": [0, 65535], "dro let him walke from whence he came lest hee": [0, 65535], "let him walke from whence he came lest hee catch": [0, 65535], "him walke from whence he came lest hee catch cold": [0, 65535], "walke from whence he came lest hee catch cold on's": [0, 65535], "from whence he came lest hee catch cold on's feet": [0, 65535], "whence he came lest hee catch cold on's feet e": [0, 65535], "he came lest hee catch cold on's feet e ant": [0, 65535], "came lest hee catch cold on's feet e ant who": [0, 65535], "lest hee catch cold on's feet e ant who talks": [0, 65535], "hee catch cold on's feet e ant who talks within": [0, 65535], "catch cold on's feet e ant who talks within there": [0, 65535], "cold on's feet e ant who talks within there hoa": [0, 65535], "on's feet e ant who talks within there hoa open": [0, 65535], "feet e ant who talks within there hoa open the": [0, 65535], "e ant who talks within there hoa open the dore": [0, 65535], "ant who talks within there hoa open the dore s": [0, 65535], "who talks within there hoa open the dore s dro": [0, 65535], "talks within there hoa open the dore s dro right": [0, 65535], "within there hoa open the dore s dro right sir": [0, 65535], "there hoa open the dore s dro right sir ile": [0, 65535], "hoa open the dore s dro right sir ile tell": [0, 65535], "open the dore s dro right sir ile tell you": [0, 65535], "the dore s dro right sir ile tell you when": [0, 65535], "dore s dro right sir ile tell you when and": [0, 65535], "s dro right sir ile tell you when and you'll": [0, 65535], "dro right sir ile tell you when and you'll tell": [0, 65535], "right sir ile tell you when and you'll tell me": [0, 65535], "sir ile tell you when and you'll tell me wherefore": [0, 65535], "ile tell you when and you'll tell me wherefore ant": [0, 65535], "tell you when and you'll tell me wherefore ant wherefore": [0, 65535], "you when and you'll tell me wherefore ant wherefore for": [0, 65535], "when and you'll tell me wherefore ant wherefore for my": [0, 65535], "and you'll tell me wherefore ant wherefore for my dinner": [0, 65535], "you'll tell me wherefore ant wherefore for my dinner i": [0, 65535], "tell me wherefore ant wherefore for my dinner i haue": [0, 65535], "me wherefore ant wherefore for my dinner i haue not": [0, 65535], "wherefore ant wherefore for my dinner i haue not din'd": [0, 65535], "ant wherefore for my dinner i haue not din'd to": [0, 65535], "wherefore for my dinner i haue not din'd to day": [0, 65535], "for my dinner i haue not din'd to day s": [0, 65535], "my dinner i haue not din'd to day s dro": [0, 65535], "dinner i haue not din'd to day s dro nor": [0, 65535], "i haue not din'd to day s dro nor to": [0, 65535], "haue not din'd to day s dro nor to day": [0, 65535], "not din'd to day s dro nor to day here": [0, 65535], "din'd to day s dro nor to day here you": [0, 65535], "to day s dro nor to day here you must": [0, 65535], "day s dro nor to day here you must not": [0, 65535], "s dro nor to day here you must not come": [0, 65535], "dro nor to day here you must not come againe": [0, 65535], "nor to day here you must not come againe when": [0, 65535], "to day here you must not come againe when you": [0, 65535], "day here you must not come againe when you may": [0, 65535], "here you must not come againe when you may anti": [0, 65535], "you must not come againe when you may anti what": [0, 65535], "must not come againe when you may anti what art": [0, 65535], "not come againe when you may anti what art thou": [0, 65535], "come againe when you may anti what art thou that": [0, 65535], "againe when you may anti what art thou that keep'st": [0, 65535], "when you may anti what art thou that keep'st mee": [0, 65535], "you may anti what art thou that keep'st mee out": [0, 65535], "may anti what art thou that keep'st mee out from": [0, 65535], "anti what art thou that keep'st mee out from the": [0, 65535], "what art thou that keep'st mee out from the howse": [0, 65535], "art thou that keep'st mee out from the howse i": [0, 65535], "thou that keep'st mee out from the howse i owe": [0, 65535], "that keep'st mee out from the howse i owe s": [0, 65535], "keep'st mee out from the howse i owe s dro": [0, 65535], "mee out from the howse i owe s dro the": [0, 65535], "out from the howse i owe s dro the porter": [0, 65535], "from the howse i owe s dro the porter for": [0, 65535], "the howse i owe s dro the porter for this": [0, 65535], "howse i owe s dro the porter for this time": [0, 65535], "i owe s dro the porter for this time sir": [0, 65535], "owe s dro the porter for this time sir and": [0, 65535], "s dro the porter for this time sir and my": [0, 65535], "dro the porter for this time sir and my name": [0, 65535], "the porter for this time sir and my name is": [0, 65535], "porter for this time sir and my name is dromio": [0, 65535], "for this time sir and my name is dromio e": [0, 65535], "this time sir and my name is dromio e dro": [0, 65535], "time sir and my name is dromio e dro o": [0, 65535], "sir and my name is dromio e dro o villaine": [0, 65535], "and my name is dromio e dro o villaine thou": [0, 65535], "my name is dromio e dro o villaine thou hast": [0, 65535], "name is dromio e dro o villaine thou hast stolne": [0, 65535], "is dromio e dro o villaine thou hast stolne both": [0, 65535], "dromio e dro o villaine thou hast stolne both mine": [0, 65535], "e dro o villaine thou hast stolne both mine office": [0, 65535], "dro o villaine thou hast stolne both mine office and": [0, 65535], "o villaine thou hast stolne both mine office and my": [0, 65535], "villaine thou hast stolne both mine office and my name": [0, 65535], "thou hast stolne both mine office and my name the": [0, 65535], "hast stolne both mine office and my name the one": [0, 65535], "stolne both mine office and my name the one nere": [0, 65535], "both mine office and my name the one nere got": [0, 65535], "mine office and my name the one nere got me": [0, 65535], "office and my name the one nere got me credit": [0, 65535], "and my name the one nere got me credit the": [0, 65535], "my name the one nere got me credit the other": [0, 65535], "name the one nere got me credit the other mickle": [0, 65535], "the one nere got me credit the other mickle blame": [0, 65535], "one nere got me credit the other mickle blame if": [0, 65535], "nere got me credit the other mickle blame if thou": [0, 65535], "got me credit the other mickle blame if thou hadst": [0, 65535], "me credit the other mickle blame if thou hadst beene": [0, 65535], "credit the other mickle blame if thou hadst beene dromio": [0, 65535], "the other mickle blame if thou hadst beene dromio to": [0, 65535], "other mickle blame if thou hadst beene dromio to day": [0, 65535], "mickle blame if thou hadst beene dromio to day in": [0, 65535], "blame if thou hadst beene dromio to day in my": [0, 65535], "if thou hadst beene dromio to day in my place": [0, 65535], "thou hadst beene dromio to day in my place thou": [0, 65535], "hadst beene dromio to day in my place thou wouldst": [0, 65535], "beene dromio to day in my place thou wouldst haue": [0, 65535], "dromio to day in my place thou wouldst haue chang'd": [0, 65535], "to day in my place thou wouldst haue chang'd thy": [0, 65535], "day in my place thou wouldst haue chang'd thy face": [0, 65535], "in my place thou wouldst haue chang'd thy face for": [0, 65535], "my place thou wouldst haue chang'd thy face for a": [0, 65535], "place thou wouldst haue chang'd thy face for a name": [0, 65535], "thou wouldst haue chang'd thy face for a name or": [0, 65535], "wouldst haue chang'd thy face for a name or thy": [0, 65535], "haue chang'd thy face for a name or thy name": [0, 65535], "chang'd thy face for a name or thy name for": [0, 65535], "thy face for a name or thy name for an": [0, 65535], "face for a name or thy name for an asse": [0, 65535], "for a name or thy name for an asse enter": [0, 65535], "a name or thy name for an asse enter luce": [0, 65535], "name or thy name for an asse enter luce luce": [0, 65535], "or thy name for an asse enter luce luce what": [0, 65535], "thy name for an asse enter luce luce what a": [0, 65535], "name for an asse enter luce luce what a coile": [0, 65535], "for an asse enter luce luce what a coile is": [0, 65535], "an asse enter luce luce what a coile is there": [0, 65535], "asse enter luce luce what a coile is there dromio": [0, 65535], "enter luce luce what a coile is there dromio who": [0, 65535], "luce luce what a coile is there dromio who are": [0, 65535], "luce what a coile is there dromio who are those": [0, 65535], "what a coile is there dromio who are those at": [0, 65535], "a coile is there dromio who are those at the": [0, 65535], "coile is there dromio who are those at the gate": [0, 65535], "is there dromio who are those at the gate e": [0, 65535], "there dromio who are those at the gate e dro": [0, 65535], "dromio who are those at the gate e dro let": [0, 65535], "who are those at the gate e dro let my": [0, 65535], "are those at the gate e dro let my master": [0, 65535], "those at the gate e dro let my master in": [0, 65535], "at the gate e dro let my master in luce": [0, 65535], "the gate e dro let my master in luce luce": [0, 65535], "gate e dro let my master in luce luce faith": [0, 65535], "e dro let my master in luce luce faith no": [0, 65535], "dro let my master in luce luce faith no hee": [0, 65535], "let my master in luce luce faith no hee comes": [0, 65535], "my master in luce luce faith no hee comes too": [0, 65535], "master in luce luce faith no hee comes too late": [0, 65535], "in luce luce faith no hee comes too late and": [0, 65535], "luce luce faith no hee comes too late and so": [0, 65535], "luce faith no hee comes too late and so tell": [0, 65535], "faith no hee comes too late and so tell your": [0, 65535], "no hee comes too late and so tell your master": [0, 65535], "hee comes too late and so tell your master e": [0, 65535], "comes too late and so tell your master e dro": [0, 65535], "too late and so tell your master e dro o": [0, 65535], "late and so tell your master e dro o lord": [0, 65535], "and so tell your master e dro o lord i": [0, 65535], "so tell your master e dro o lord i must": [0, 65535], "tell your master e dro o lord i must laugh": [0, 65535], "your master e dro o lord i must laugh haue": [0, 65535], "master e dro o lord i must laugh haue at": [0, 65535], "e dro o lord i must laugh haue at you": [0, 65535], "dro o lord i must laugh haue at you with": [0, 65535], "o lord i must laugh haue at you with a": [0, 65535], "lord i must laugh haue at you with a prouerbe": [0, 65535], "i must laugh haue at you with a prouerbe shall": [0, 65535], "must laugh haue at you with a prouerbe shall i": [0, 65535], "laugh haue at you with a prouerbe shall i set": [0, 65535], "haue at you with a prouerbe shall i set in": [0, 65535], "at you with a prouerbe shall i set in my": [0, 65535], "you with a prouerbe shall i set in my staffe": [0, 65535], "with a prouerbe shall i set in my staffe luce": [0, 65535], "a prouerbe shall i set in my staffe luce haue": [0, 65535], "prouerbe shall i set in my staffe luce haue at": [0, 65535], "shall i set in my staffe luce haue at you": [0, 65535], "i set in my staffe luce haue at you with": [0, 65535], "set in my staffe luce haue at you with another": [0, 65535], "in my staffe luce haue at you with another that's": [0, 65535], "my staffe luce haue at you with another that's when": [0, 65535], "staffe luce haue at you with another that's when can": [0, 65535], "luce haue at you with another that's when can you": [0, 65535], "haue at you with another that's when can you tell": [0, 65535], "at you with another that's when can you tell s": [0, 65535], "you with another that's when can you tell s dro": [0, 65535], "with another that's when can you tell s dro if": [0, 65535], "another that's when can you tell s dro if thy": [0, 65535], "that's when can you tell s dro if thy name": [0, 65535], "when can you tell s dro if thy name be": [0, 65535], "can you tell s dro if thy name be called": [0, 65535], "you tell s dro if thy name be called luce": [0, 65535], "tell s dro if thy name be called luce luce": [0, 65535], "s dro if thy name be called luce luce thou": [0, 65535], "dro if thy name be called luce luce thou hast": [0, 65535], "if thy name be called luce luce thou hast an": [0, 65535], "thy name be called luce luce thou hast an swer'd": [0, 65535], "name be called luce luce thou hast an swer'd him": [0, 65535], "be called luce luce thou hast an swer'd him well": [0, 65535], "called luce luce thou hast an swer'd him well anti": [0, 65535], "luce luce thou hast an swer'd him well anti doe": [0, 65535], "luce thou hast an swer'd him well anti doe you": [0, 65535], "thou hast an swer'd him well anti doe you heare": [0, 65535], "hast an swer'd him well anti doe you heare you": [0, 65535], "an swer'd him well anti doe you heare you minion": [0, 65535], "swer'd him well anti doe you heare you minion you'll": [0, 65535], "him well anti doe you heare you minion you'll let": [0, 65535], "well anti doe you heare you minion you'll let vs": [0, 65535], "anti doe you heare you minion you'll let vs in": [0, 65535], "doe you heare you minion you'll let vs in i": [0, 65535], "you heare you minion you'll let vs in i hope": [0, 65535], "heare you minion you'll let vs in i hope luce": [0, 65535], "you minion you'll let vs in i hope luce i": [0, 65535], "minion you'll let vs in i hope luce i thought": [0, 65535], "you'll let vs in i hope luce i thought to": [0, 65535], "let vs in i hope luce i thought to haue": [0, 65535], "vs in i hope luce i thought to haue askt": [0, 65535], "in i hope luce i thought to haue askt you": [0, 65535], "i hope luce i thought to haue askt you s": [0, 65535], "hope luce i thought to haue askt you s dro": [0, 65535], "luce i thought to haue askt you s dro and": [0, 65535], "i thought to haue askt you s dro and you": [0, 65535], "thought to haue askt you s dro and you said": [0, 65535], "to haue askt you s dro and you said no": [0, 65535], "haue askt you s dro and you said no e": [0, 65535], "askt you s dro and you said no e dro": [0, 65535], "you s dro and you said no e dro so": [0, 65535], "s dro and you said no e dro so come": [0, 65535], "dro and you said no e dro so come helpe": [0, 65535], "and you said no e dro so come helpe well": [0, 65535], "you said no e dro so come helpe well strooke": [0, 65535], "said no e dro so come helpe well strooke there": [0, 65535], "no e dro so come helpe well strooke there was": [0, 65535], "e dro so come helpe well strooke there was blow": [0, 65535], "dro so come helpe well strooke there was blow for": [0, 65535], "so come helpe well strooke there was blow for blow": [0, 65535], "come helpe well strooke there was blow for blow anti": [0, 65535], "helpe well strooke there was blow for blow anti thou": [0, 65535], "well strooke there was blow for blow anti thou baggage": [0, 65535], "strooke there was blow for blow anti thou baggage let": [0, 65535], "there was blow for blow anti thou baggage let me": [0, 65535], "was blow for blow anti thou baggage let me in": [0, 65535], "blow for blow anti thou baggage let me in luce": [0, 65535], "for blow anti thou baggage let me in luce can": [0, 65535], "blow anti thou baggage let me in luce can you": [0, 65535], "anti thou baggage let me in luce can you tell": [0, 65535], "thou baggage let me in luce can you tell for": [0, 65535], "baggage let me in luce can you tell for whose": [0, 65535], "let me in luce can you tell for whose sake": [0, 65535], "me in luce can you tell for whose sake e": [0, 65535], "in luce can you tell for whose sake e drom": [0, 65535], "luce can you tell for whose sake e drom master": [0, 65535], "can you tell for whose sake e drom master knocke": [0, 65535], "you tell for whose sake e drom master knocke the": [0, 65535], "tell for whose sake e drom master knocke the doore": [0, 65535], "for whose sake e drom master knocke the doore hard": [0, 65535], "whose sake e drom master knocke the doore hard luce": [0, 65535], "sake e drom master knocke the doore hard luce let": [0, 65535], "e drom master knocke the doore hard luce let him": [0, 65535], "drom master knocke the doore hard luce let him knocke": [0, 65535], "master knocke the doore hard luce let him knocke till": [0, 65535], "knocke the doore hard luce let him knocke till it": [0, 65535], "the doore hard luce let him knocke till it ake": [0, 65535], "doore hard luce let him knocke till it ake anti": [0, 65535], "hard luce let him knocke till it ake anti you'll": [0, 65535], "luce let him knocke till it ake anti you'll crie": [0, 65535], "let him knocke till it ake anti you'll crie for": [0, 65535], "him knocke till it ake anti you'll crie for this": [0, 65535], "knocke till it ake anti you'll crie for this minion": [0, 65535], "till it ake anti you'll crie for this minion if": [0, 65535], "it ake anti you'll crie for this minion if i": [0, 65535], "ake anti you'll crie for this minion if i beat": [0, 65535], "anti you'll crie for this minion if i beat the": [0, 65535], "you'll crie for this minion if i beat the doore": [0, 65535], "crie for this minion if i beat the doore downe": [0, 65535], "for this minion if i beat the doore downe luce": [0, 65535], "this minion if i beat the doore downe luce what": [0, 65535], "minion if i beat the doore downe luce what needs": [0, 65535], "if i beat the doore downe luce what needs all": [0, 65535], "i beat the doore downe luce what needs all that": [0, 65535], "beat the doore downe luce what needs all that and": [0, 65535], "the doore downe luce what needs all that and a": [0, 65535], "doore downe luce what needs all that and a paire": [0, 65535], "downe luce what needs all that and a paire of": [0, 65535], "luce what needs all that and a paire of stocks": [0, 65535], "what needs all that and a paire of stocks in": [0, 65535], "needs all that and a paire of stocks in the": [0, 65535], "all that and a paire of stocks in the towne": [0, 65535], "that and a paire of stocks in the towne enter": [0, 65535], "and a paire of stocks in the towne enter adriana": [0, 65535], "a paire of stocks in the towne enter adriana adr": [0, 65535], "paire of stocks in the towne enter adriana adr who": [0, 65535], "of stocks in the towne enter adriana adr who is": [0, 65535], "stocks in the towne enter adriana adr who is that": [0, 65535], "in the towne enter adriana adr who is that at": [0, 65535], "the towne enter adriana adr who is that at the": [0, 65535], "towne enter adriana adr who is that at the doore": [0, 65535], "enter adriana adr who is that at the doore that": [0, 65535], "adriana adr who is that at the doore that keeps": [0, 65535], "adr who is that at the doore that keeps all": [0, 65535], "who is that at the doore that keeps all this": [0, 65535], "is that at the doore that keeps all this noise": [0, 65535], "that at the doore that keeps all this noise s": [0, 65535], "at the doore that keeps all this noise s dro": [0, 65535], "the doore that keeps all this noise s dro by": [0, 65535], "doore that keeps all this noise s dro by my": [0, 65535], "that keeps all this noise s dro by my troth": [0, 65535], "keeps all this noise s dro by my troth your": [0, 65535], "all this noise s dro by my troth your towne": [0, 65535], "this noise s dro by my troth your towne is": [0, 65535], "noise s dro by my troth your towne is troubled": [0, 65535], "s dro by my troth your towne is troubled with": [0, 65535], "dro by my troth your towne is troubled with vnruly": [0, 65535], "by my troth your towne is troubled with vnruly boies": [0, 65535], "my troth your towne is troubled with vnruly boies anti": [0, 65535], "troth your towne is troubled with vnruly boies anti are": [0, 65535], "your towne is troubled with vnruly boies anti are you": [0, 65535], "towne is troubled with vnruly boies anti are you there": [0, 65535], "is troubled with vnruly boies anti are you there wife": [0, 65535], "troubled with vnruly boies anti are you there wife you": [0, 65535], "with vnruly boies anti are you there wife you might": [0, 65535], "vnruly boies anti are you there wife you might haue": [0, 65535], "boies anti are you there wife you might haue come": [0, 65535], "anti are you there wife you might haue come before": [0, 65535], "are you there wife you might haue come before adri": [0, 65535], "you there wife you might haue come before adri your": [0, 65535], "there wife you might haue come before adri your wife": [0, 65535], "wife you might haue come before adri your wife sir": [0, 65535], "you might haue come before adri your wife sir knaue": [0, 65535], "might haue come before adri your wife sir knaue go": [0, 65535], "haue come before adri your wife sir knaue go get": [0, 65535], "come before adri your wife sir knaue go get you": [0, 65535], "before adri your wife sir knaue go get you from": [0, 65535], "adri your wife sir knaue go get you from the": [0, 65535], "your wife sir knaue go get you from the dore": [0, 65535], "wife sir knaue go get you from the dore e": [0, 65535], "sir knaue go get you from the dore e dro": [0, 65535], "knaue go get you from the dore e dro if": [0, 65535], "go get you from the dore e dro if you": [0, 65535], "get you from the dore e dro if you went": [0, 65535], "you from the dore e dro if you went in": [0, 65535], "from the dore e dro if you went in paine": [0, 65535], "the dore e dro if you went in paine master": [0, 65535], "dore e dro if you went in paine master this": [0, 65535], "e dro if you went in paine master this knaue": [0, 65535], "dro if you went in paine master this knaue wold": [0, 65535], "if you went in paine master this knaue wold goe": [0, 65535], "you went in paine master this knaue wold goe sore": [0, 65535], "went in paine master this knaue wold goe sore angelo": [0, 65535], "in paine master this knaue wold goe sore angelo heere": [0, 65535], "paine master this knaue wold goe sore angelo heere is": [0, 65535], "master this knaue wold goe sore angelo heere is neither": [0, 65535], "this knaue wold goe sore angelo heere is neither cheere": [0, 65535], "knaue wold goe sore angelo heere is neither cheere sir": [0, 65535], "wold goe sore angelo heere is neither cheere sir nor": [0, 65535], "goe sore angelo heere is neither cheere sir nor welcome": [0, 65535], "sore angelo heere is neither cheere sir nor welcome we": [0, 65535], "angelo heere is neither cheere sir nor welcome we would": [0, 65535], "heere is neither cheere sir nor welcome we would faine": [0, 65535], "is neither cheere sir nor welcome we would faine haue": [0, 65535], "neither cheere sir nor welcome we would faine haue either": [0, 65535], "cheere sir nor welcome we would faine haue either baltz": [0, 65535], "sir nor welcome we would faine haue either baltz in": [0, 65535], "nor welcome we would faine haue either baltz in debating": [0, 65535], "welcome we would faine haue either baltz in debating which": [0, 65535], "we would faine haue either baltz in debating which was": [0, 65535], "would faine haue either baltz in debating which was best": [0, 65535], "faine haue either baltz in debating which was best wee": [0, 65535], "haue either baltz in debating which was best wee shall": [0, 65535], "either baltz in debating which was best wee shall part": [0, 65535], "baltz in debating which was best wee shall part with": [0, 65535], "in debating which was best wee shall part with neither": [0, 65535], "debating which was best wee shall part with neither e": [0, 65535], "which was best wee shall part with neither e dro": [0, 65535], "was best wee shall part with neither e dro they": [0, 65535], "best wee shall part with neither e dro they stand": [0, 65535], "wee shall part with neither e dro they stand at": [0, 65535], "shall part with neither e dro they stand at the": [0, 65535], "part with neither e dro they stand at the doore": [0, 65535], "with neither e dro they stand at the doore master": [0, 65535], "neither e dro they stand at the doore master bid": [0, 65535], "e dro they stand at the doore master bid them": [0, 65535], "dro they stand at the doore master bid them welcome": [0, 65535], "they stand at the doore master bid them welcome hither": [0, 65535], "stand at the doore master bid them welcome hither anti": [0, 65535], "at the doore master bid them welcome hither anti there": [0, 65535], "the doore master bid them welcome hither anti there is": [0, 65535], "doore master bid them welcome hither anti there is something": [0, 65535], "master bid them welcome hither anti there is something in": [0, 65535], "bid them welcome hither anti there is something in the": [0, 65535], "them welcome hither anti there is something in the winde": [0, 65535], "welcome hither anti there is something in the winde that": [0, 65535], "hither anti there is something in the winde that we": [0, 65535], "anti there is something in the winde that we cannot": [0, 65535], "there is something in the winde that we cannot get": [0, 65535], "is something in the winde that we cannot get in": [0, 65535], "something in the winde that we cannot get in e": [0, 65535], "in the winde that we cannot get in e dro": [0, 65535], "the winde that we cannot get in e dro you": [0, 65535], "winde that we cannot get in e dro you would": [0, 65535], "that we cannot get in e dro you would say": [0, 65535], "we cannot get in e dro you would say so": [0, 65535], "cannot get in e dro you would say so master": [0, 65535], "get in e dro you would say so master if": [0, 65535], "in e dro you would say so master if your": [0, 65535], "e dro you would say so master if your garments": [0, 65535], "dro you would say so master if your garments were": [0, 65535], "you would say so master if your garments were thin": [0, 65535], "would say so master if your garments were thin your": [0, 65535], "say so master if your garments were thin your cake": [0, 65535], "so master if your garments were thin your cake here": [0, 65535], "master if your garments were thin your cake here is": [0, 65535], "if your garments were thin your cake here is warme": [0, 65535], "your garments were thin your cake here is warme within": [0, 65535], "garments were thin your cake here is warme within you": [0, 65535], "were thin your cake here is warme within you stand": [0, 65535], "thin your cake here is warme within you stand here": [0, 65535], "your cake here is warme within you stand here in": [0, 65535], "cake here is warme within you stand here in the": [0, 65535], "here is warme within you stand here in the cold": [0, 65535], "is warme within you stand here in the cold it": [0, 65535], "warme within you stand here in the cold it would": [0, 65535], "within you stand here in the cold it would make": [0, 65535], "you stand here in the cold it would make a": [0, 65535], "stand here in the cold it would make a man": [0, 65535], "here in the cold it would make a man mad": [0, 65535], "in the cold it would make a man mad as": [0, 65535], "the cold it would make a man mad as a": [0, 65535], "cold it would make a man mad as a bucke": [0, 65535], "it would make a man mad as a bucke to": [0, 65535], "would make a man mad as a bucke to be": [0, 65535], "make a man mad as a bucke to be so": [0, 65535], "a man mad as a bucke to be so bought": [0, 65535], "man mad as a bucke to be so bought and": [0, 65535], "mad as a bucke to be so bought and sold": [0, 65535], "as a bucke to be so bought and sold ant": [0, 65535], "a bucke to be so bought and sold ant go": [0, 65535], "bucke to be so bought and sold ant go fetch": [0, 65535], "to be so bought and sold ant go fetch me": [0, 65535], "be so bought and sold ant go fetch me something": [0, 65535], "so bought and sold ant go fetch me something ile": [0, 65535], "bought and sold ant go fetch me something ile break": [0, 65535], "and sold ant go fetch me something ile break ope": [0, 65535], "sold ant go fetch me something ile break ope the": [0, 65535], "ant go fetch me something ile break ope the gate": [0, 65535], "go fetch me something ile break ope the gate s": [0, 65535], "fetch me something ile break ope the gate s dro": [0, 65535], "me something ile break ope the gate s dro breake": [0, 65535], "something ile break ope the gate s dro breake any": [0, 65535], "ile break ope the gate s dro breake any breaking": [0, 65535], "break ope the gate s dro breake any breaking here": [0, 65535], "ope the gate s dro breake any breaking here and": [0, 65535], "the gate s dro breake any breaking here and ile": [0, 65535], "gate s dro breake any breaking here and ile breake": [0, 65535], "s dro breake any breaking here and ile breake your": [0, 65535], "dro breake any breaking here and ile breake your knaues": [0, 65535], "breake any breaking here and ile breake your knaues pate": [0, 65535], "any breaking here and ile breake your knaues pate e": [0, 65535], "breaking here and ile breake your knaues pate e dro": [0, 65535], "here and ile breake your knaues pate e dro a": [0, 65535], "and ile breake your knaues pate e dro a man": [0, 65535], "ile breake your knaues pate e dro a man may": [0, 65535], "breake your knaues pate e dro a man may breake": [0, 65535], "your knaues pate e dro a man may breake a": [0, 65535], "knaues pate e dro a man may breake a word": [0, 65535], "pate e dro a man may breake a word with": [0, 65535], "e dro a man may breake a word with your": [0, 65535], "dro a man may breake a word with your sir": [0, 65535], "a man may breake a word with your sir and": [0, 65535], "man may breake a word with your sir and words": [0, 65535], "may breake a word with your sir and words are": [0, 65535], "breake a word with your sir and words are but": [0, 65535], "a word with your sir and words are but winde": [0, 65535], "word with your sir and words are but winde i": [0, 65535], "with your sir and words are but winde i and": [0, 65535], "your sir and words are but winde i and breake": [0, 65535], "sir and words are but winde i and breake it": [0, 65535], "and words are but winde i and breake it in": [0, 65535], "words are but winde i and breake it in your": [0, 65535], "are but winde i and breake it in your face": [0, 65535], "but winde i and breake it in your face so": [0, 65535], "winde i and breake it in your face so he": [0, 65535], "i and breake it in your face so he break": [0, 65535], "and breake it in your face so he break it": [0, 65535], "breake it in your face so he break it not": [0, 65535], "it in your face so he break it not behinde": [0, 65535], "in your face so he break it not behinde s": [0, 65535], "your face so he break it not behinde s dro": [0, 65535], "face so he break it not behinde s dro it": [0, 65535], "so he break it not behinde s dro it seemes": [0, 65535], "he break it not behinde s dro it seemes thou": [0, 65535], "break it not behinde s dro it seemes thou want'st": [0, 65535], "it not behinde s dro it seemes thou want'st breaking": [0, 65535], "not behinde s dro it seemes thou want'st breaking out": [0, 65535], "behinde s dro it seemes thou want'st breaking out vpon": [0, 65535], "s dro it seemes thou want'st breaking out vpon thee": [0, 65535], "dro it seemes thou want'st breaking out vpon thee hinde": [0, 65535], "it seemes thou want'st breaking out vpon thee hinde e": [0, 65535], "seemes thou want'st breaking out vpon thee hinde e dro": [0, 65535], "thou want'st breaking out vpon thee hinde e dro here's": [0, 65535], "want'st breaking out vpon thee hinde e dro here's too": [0, 65535], "breaking out vpon thee hinde e dro here's too much": [0, 65535], "out vpon thee hinde e dro here's too much out": [0, 65535], "vpon thee hinde e dro here's too much out vpon": [0, 65535], "thee hinde e dro here's too much out vpon thee": [0, 65535], "hinde e dro here's too much out vpon thee i": [0, 65535], "e dro here's too much out vpon thee i pray": [0, 65535], "dro here's too much out vpon thee i pray thee": [0, 65535], "here's too much out vpon thee i pray thee let": [0, 65535], "too much out vpon thee i pray thee let me": [0, 65535], "much out vpon thee i pray thee let me in": [0, 65535], "out vpon thee i pray thee let me in s": [0, 65535], "vpon thee i pray thee let me in s dro": [0, 65535], "thee i pray thee let me in s dro i": [0, 65535], "i pray thee let me in s dro i when": [0, 65535], "pray thee let me in s dro i when fowles": [0, 65535], "thee let me in s dro i when fowles haue": [0, 65535], "let me in s dro i when fowles haue no": [0, 65535], "me in s dro i when fowles haue no feathers": [0, 65535], "in s dro i when fowles haue no feathers and": [0, 65535], "s dro i when fowles haue no feathers and fish": [0, 65535], "dro i when fowles haue no feathers and fish haue": [0, 65535], "i when fowles haue no feathers and fish haue no": [0, 65535], "when fowles haue no feathers and fish haue no fin": [0, 65535], "fowles haue no feathers and fish haue no fin ant": [0, 65535], "haue no feathers and fish haue no fin ant well": [0, 65535], "no feathers and fish haue no fin ant well ile": [0, 65535], "feathers and fish haue no fin ant well ile breake": [0, 65535], "and fish haue no fin ant well ile breake in": [0, 65535], "fish haue no fin ant well ile breake in go": [0, 65535], "haue no fin ant well ile breake in go borrow": [0, 65535], "no fin ant well ile breake in go borrow me": [0, 65535], "fin ant well ile breake in go borrow me a": [0, 65535], "ant well ile breake in go borrow me a crow": [0, 65535], "well ile breake in go borrow me a crow e": [0, 65535], "ile breake in go borrow me a crow e dro": [0, 65535], "breake in go borrow me a crow e dro a": [0, 65535], "in go borrow me a crow e dro a crow": [0, 65535], "go borrow me a crow e dro a crow without": [0, 65535], "borrow me a crow e dro a crow without feather": [0, 65535], "me a crow e dro a crow without feather master": [0, 65535], "a crow e dro a crow without feather master meane": [0, 65535], "crow e dro a crow without feather master meane you": [0, 65535], "e dro a crow without feather master meane you so": [0, 65535], "dro a crow without feather master meane you so for": [0, 65535], "a crow without feather master meane you so for a": [0, 65535], "crow without feather master meane you so for a fish": [0, 65535], "without feather master meane you so for a fish without": [0, 65535], "feather master meane you so for a fish without a": [0, 65535], "master meane you so for a fish without a finne": [0, 65535], "meane you so for a fish without a finne ther's": [0, 65535], "you so for a fish without a finne ther's a": [0, 65535], "so for a fish without a finne ther's a fowle": [0, 65535], "for a fish without a finne ther's a fowle without": [0, 65535], "a fish without a finne ther's a fowle without a": [0, 65535], "fish without a finne ther's a fowle without a fether": [0, 65535], "without a finne ther's a fowle without a fether if": [0, 65535], "a finne ther's a fowle without a fether if a": [0, 65535], "finne ther's a fowle without a fether if a crow": [0, 65535], "ther's a fowle without a fether if a crow help": [0, 65535], "a fowle without a fether if a crow help vs": [0, 65535], "fowle without a fether if a crow help vs in": [0, 65535], "without a fether if a crow help vs in sirra": [0, 65535], "a fether if a crow help vs in sirra wee'll": [0, 65535], "fether if a crow help vs in sirra wee'll plucke": [0, 65535], "if a crow help vs in sirra wee'll plucke a": [0, 65535], "a crow help vs in sirra wee'll plucke a crow": [0, 65535], "crow help vs in sirra wee'll plucke a crow together": [0, 65535], "help vs in sirra wee'll plucke a crow together ant": [0, 65535], "vs in sirra wee'll plucke a crow together ant go": [0, 65535], "in sirra wee'll plucke a crow together ant go get": [0, 65535], "sirra wee'll plucke a crow together ant go get thee": [0, 65535], "wee'll plucke a crow together ant go get thee gon": [0, 65535], "plucke a crow together ant go get thee gon fetch": [0, 65535], "a crow together ant go get thee gon fetch me": [0, 65535], "crow together ant go get thee gon fetch me an": [0, 65535], "together ant go get thee gon fetch me an iron": [0, 65535], "ant go get thee gon fetch me an iron crow": [0, 65535], "go get thee gon fetch me an iron crow balth": [0, 65535], "get thee gon fetch me an iron crow balth haue": [0, 65535], "thee gon fetch me an iron crow balth haue patience": [0, 65535], "gon fetch me an iron crow balth haue patience sir": [0, 65535], "fetch me an iron crow balth haue patience sir oh": [0, 65535], "me an iron crow balth haue patience sir oh let": [0, 65535], "an iron crow balth haue patience sir oh let it": [0, 65535], "iron crow balth haue patience sir oh let it not": [0, 65535], "crow balth haue patience sir oh let it not be": [0, 65535], "balth haue patience sir oh let it not be so": [0, 65535], "haue patience sir oh let it not be so heerein": [0, 65535], "patience sir oh let it not be so heerein you": [0, 65535], "sir oh let it not be so heerein you warre": [0, 65535], "oh let it not be so heerein you warre against": [0, 65535], "let it not be so heerein you warre against your": [0, 65535], "it not be so heerein you warre against your reputation": [0, 65535], "not be so heerein you warre against your reputation and": [0, 65535], "be so heerein you warre against your reputation and draw": [0, 65535], "so heerein you warre against your reputation and draw within": [0, 65535], "heerein you warre against your reputation and draw within the": [0, 65535], "you warre against your reputation and draw within the compasse": [0, 65535], "warre against your reputation and draw within the compasse of": [0, 65535], "against your reputation and draw within the compasse of suspect": [0, 65535], "your reputation and draw within the compasse of suspect th'": [0, 65535], "reputation and draw within the compasse of suspect th' vnuiolated": [0, 65535], "and draw within the compasse of suspect th' vnuiolated honor": [0, 65535], "draw within the compasse of suspect th' vnuiolated honor of": [0, 65535], "within the compasse of suspect th' vnuiolated honor of your": [0, 65535], "the compasse of suspect th' vnuiolated honor of your wife": [0, 65535], "compasse of suspect th' vnuiolated honor of your wife once": [0, 65535], "of suspect th' vnuiolated honor of your wife once this": [0, 65535], "suspect th' vnuiolated honor of your wife once this your": [0, 65535], "th' vnuiolated honor of your wife once this your long": [0, 65535], "vnuiolated honor of your wife once this your long experience": [0, 65535], "honor of your wife once this your long experience of": [0, 65535], "of your wife once this your long experience of your": [0, 65535], "your wife once this your long experience of your wisedome": [0, 65535], "wife once this your long experience of your wisedome her": [0, 65535], "once this your long experience of your wisedome her sober": [0, 65535], "this your long experience of your wisedome her sober vertue": [0, 65535], "your long experience of your wisedome her sober vertue yeares": [0, 65535], "long experience of your wisedome her sober vertue yeares and": [0, 65535], "experience of your wisedome her sober vertue yeares and modestie": [0, 65535], "of your wisedome her sober vertue yeares and modestie plead": [0, 65535], "your wisedome her sober vertue yeares and modestie plead on": [0, 65535], "wisedome her sober vertue yeares and modestie plead on your": [0, 65535], "her sober vertue yeares and modestie plead on your part": [0, 65535], "sober vertue yeares and modestie plead on your part some": [0, 65535], "vertue yeares and modestie plead on your part some cause": [0, 65535], "yeares and modestie plead on your part some cause to": [0, 65535], "and modestie plead on your part some cause to you": [0, 65535], "modestie plead on your part some cause to you vnknowne": [0, 65535], "plead on your part some cause to you vnknowne and": [0, 65535], "on your part some cause to you vnknowne and doubt": [0, 65535], "your part some cause to you vnknowne and doubt not": [0, 65535], "part some cause to you vnknowne and doubt not sir": [0, 65535], "some cause to you vnknowne and doubt not sir but": [0, 65535], "cause to you vnknowne and doubt not sir but she": [0, 65535], "to you vnknowne and doubt not sir but she will": [0, 65535], "you vnknowne and doubt not sir but she will well": [0, 65535], "vnknowne and doubt not sir but she will well excuse": [0, 65535], "and doubt not sir but she will well excuse why": [0, 65535], "doubt not sir but she will well excuse why at": [0, 65535], "not sir but she will well excuse why at this": [0, 65535], "sir but she will well excuse why at this time": [0, 65535], "but she will well excuse why at this time the": [0, 65535], "she will well excuse why at this time the dores": [0, 65535], "will well excuse why at this time the dores are": [0, 65535], "well excuse why at this time the dores are made": [0, 65535], "excuse why at this time the dores are made against": [0, 65535], "why at this time the dores are made against you": [0, 65535], "at this time the dores are made against you be": [0, 65535], "this time the dores are made against you be rul'd": [0, 65535], "time the dores are made against you be rul'd by": [0, 65535], "the dores are made against you be rul'd by me": [0, 65535], "dores are made against you be rul'd by me depart": [0, 65535], "are made against you be rul'd by me depart in": [0, 65535], "made against you be rul'd by me depart in patience": [0, 65535], "against you be rul'd by me depart in patience and": [0, 65535], "you be rul'd by me depart in patience and let": [0, 65535], "be rul'd by me depart in patience and let vs": [0, 65535], "rul'd by me depart in patience and let vs to": [0, 65535], "by me depart in patience and let vs to the": [0, 65535], "me depart in patience and let vs to the tyger": [0, 65535], "depart in patience and let vs to the tyger all": [0, 65535], "in patience and let vs to the tyger all to": [0, 65535], "patience and let vs to the tyger all to dinner": [0, 65535], "and let vs to the tyger all to dinner and": [0, 65535], "let vs to the tyger all to dinner and about": [0, 65535], "vs to the tyger all to dinner and about euening": [0, 65535], "to the tyger all to dinner and about euening come": [0, 65535], "the tyger all to dinner and about euening come your": [0, 65535], "tyger all to dinner and about euening come your selfe": [0, 65535], "all to dinner and about euening come your selfe alone": [0, 65535], "to dinner and about euening come your selfe alone to": [0, 65535], "dinner and about euening come your selfe alone to know": [0, 65535], "and about euening come your selfe alone to know the": [0, 65535], "about euening come your selfe alone to know the reason": [0, 65535], "euening come your selfe alone to know the reason of": [0, 65535], "come your selfe alone to know the reason of this": [0, 65535], "your selfe alone to know the reason of this strange": [0, 65535], "selfe alone to know the reason of this strange restraint": [0, 65535], "alone to know the reason of this strange restraint if": [0, 65535], "to know the reason of this strange restraint if by": [0, 65535], "know the reason of this strange restraint if by strong": [0, 65535], "the reason of this strange restraint if by strong hand": [0, 65535], "reason of this strange restraint if by strong hand you": [0, 65535], "of this strange restraint if by strong hand you offer": [0, 65535], "this strange restraint if by strong hand you offer to": [0, 65535], "strange restraint if by strong hand you offer to breake": [0, 65535], "restraint if by strong hand you offer to breake in": [0, 65535], "if by strong hand you offer to breake in now": [0, 65535], "by strong hand you offer to breake in now in": [0, 65535], "strong hand you offer to breake in now in the": [0, 65535], "hand you offer to breake in now in the stirring": [0, 65535], "you offer to breake in now in the stirring passage": [0, 65535], "offer to breake in now in the stirring passage of": [0, 65535], "to breake in now in the stirring passage of the": [0, 65535], "breake in now in the stirring passage of the day": [0, 65535], "in now in the stirring passage of the day a": [0, 65535], "now in the stirring passage of the day a vulgar": [0, 65535], "in the stirring passage of the day a vulgar comment": [0, 65535], "the stirring passage of the day a vulgar comment will": [0, 65535], "stirring passage of the day a vulgar comment will be": [0, 65535], "passage of the day a vulgar comment will be made": [0, 65535], "of the day a vulgar comment will be made of": [0, 65535], "the day a vulgar comment will be made of it": [0, 65535], "day a vulgar comment will be made of it and": [0, 65535], "a vulgar comment will be made of it and that": [0, 65535], "vulgar comment will be made of it and that supposed": [0, 65535], "comment will be made of it and that supposed by": [0, 65535], "will be made of it and that supposed by the": [0, 65535], "be made of it and that supposed by the common": [0, 65535], "made of it and that supposed by the common rowt": [0, 65535], "of it and that supposed by the common rowt against": [0, 65535], "it and that supposed by the common rowt against your": [0, 65535], "and that supposed by the common rowt against your yet": [0, 65535], "that supposed by the common rowt against your yet vngalled": [0, 65535], "supposed by the common rowt against your yet vngalled estimation": [0, 65535], "by the common rowt against your yet vngalled estimation that": [0, 65535], "the common rowt against your yet vngalled estimation that may": [0, 65535], "common rowt against your yet vngalled estimation that may with": [0, 65535], "rowt against your yet vngalled estimation that may with foule": [0, 65535], "against your yet vngalled estimation that may with foule intrusion": [0, 65535], "your yet vngalled estimation that may with foule intrusion enter": [0, 65535], "yet vngalled estimation that may with foule intrusion enter in": [0, 65535], "vngalled estimation that may with foule intrusion enter in and": [0, 65535], "estimation that may with foule intrusion enter in and dwell": [0, 65535], "that may with foule intrusion enter in and dwell vpon": [0, 65535], "may with foule intrusion enter in and dwell vpon your": [0, 65535], "with foule intrusion enter in and dwell vpon your graue": [0, 65535], "foule intrusion enter in and dwell vpon your graue when": [0, 65535], "intrusion enter in and dwell vpon your graue when you": [0, 65535], "enter in and dwell vpon your graue when you are": [0, 65535], "in and dwell vpon your graue when you are dead": [0, 65535], "and dwell vpon your graue when you are dead for": [0, 65535], "dwell vpon your graue when you are dead for slander": [0, 65535], "vpon your graue when you are dead for slander liues": [0, 65535], "your graue when you are dead for slander liues vpon": [0, 65535], "graue when you are dead for slander liues vpon succession": [0, 65535], "when you are dead for slander liues vpon succession for": [0, 65535], "you are dead for slander liues vpon succession for euer": [0, 65535], "are dead for slander liues vpon succession for euer hows'd": [0, 65535], "dead for slander liues vpon succession for euer hows'd where": [0, 65535], "for slander liues vpon succession for euer hows'd where it": [0, 65535], "slander liues vpon succession for euer hows'd where it gets": [0, 65535], "liues vpon succession for euer hows'd where it gets possession": [0, 65535], "vpon succession for euer hows'd where it gets possession anti": [0, 65535], "succession for euer hows'd where it gets possession anti you": [0, 65535], "for euer hows'd where it gets possession anti you haue": [0, 65535], "euer hows'd where it gets possession anti you haue preuail'd": [0, 65535], "hows'd where it gets possession anti you haue preuail'd i": [0, 65535], "where it gets possession anti you haue preuail'd i will": [0, 65535], "it gets possession anti you haue preuail'd i will depart": [0, 65535], "gets possession anti you haue preuail'd i will depart in": [0, 65535], "possession anti you haue preuail'd i will depart in quiet": [0, 65535], "anti you haue preuail'd i will depart in quiet and": [0, 65535], "you haue preuail'd i will depart in quiet and in": [0, 65535], "haue preuail'd i will depart in quiet and in despight": [0, 65535], "preuail'd i will depart in quiet and in despight of": [0, 65535], "i will depart in quiet and in despight of mirth": [0, 65535], "will depart in quiet and in despight of mirth meane": [0, 65535], "depart in quiet and in despight of mirth meane to": [0, 65535], "in quiet and in despight of mirth meane to be": [0, 65535], "quiet and in despight of mirth meane to be merrie": [0, 65535], "and in despight of mirth meane to be merrie i": [0, 65535], "in despight of mirth meane to be merrie i know": [0, 65535], "despight of mirth meane to be merrie i know a": [0, 65535], "of mirth meane to be merrie i know a wench": [0, 65535], "mirth meane to be merrie i know a wench of": [0, 65535], "meane to be merrie i know a wench of excellent": [0, 65535], "to be merrie i know a wench of excellent discourse": [0, 65535], "be merrie i know a wench of excellent discourse prettie": [0, 65535], "merrie i know a wench of excellent discourse prettie and": [0, 65535], "i know a wench of excellent discourse prettie and wittie": [0, 65535], "know a wench of excellent discourse prettie and wittie wilde": [0, 65535], "a wench of excellent discourse prettie and wittie wilde and": [0, 65535], "wench of excellent discourse prettie and wittie wilde and yet": [0, 65535], "of excellent discourse prettie and wittie wilde and yet too": [0, 65535], "excellent discourse prettie and wittie wilde and yet too gentle": [0, 65535], "discourse prettie and wittie wilde and yet too gentle there": [0, 65535], "prettie and wittie wilde and yet too gentle there will": [0, 65535], "and wittie wilde and yet too gentle there will we": [0, 65535], "wittie wilde and yet too gentle there will we dine": [0, 65535], "wilde and yet too gentle there will we dine this": [0, 65535], "and yet too gentle there will we dine this woman": [0, 65535], "yet too gentle there will we dine this woman that": [0, 65535], "too gentle there will we dine this woman that i": [0, 65535], "gentle there will we dine this woman that i meane": [0, 65535], "there will we dine this woman that i meane my": [0, 65535], "will we dine this woman that i meane my wife": [0, 65535], "we dine this woman that i meane my wife but": [0, 65535], "dine this woman that i meane my wife but i": [0, 65535], "this woman that i meane my wife but i protest": [0, 65535], "woman that i meane my wife but i protest without": [0, 65535], "that i meane my wife but i protest without desert": [0, 65535], "i meane my wife but i protest without desert hath": [0, 65535], "meane my wife but i protest without desert hath oftentimes": [0, 65535], "my wife but i protest without desert hath oftentimes vpbraided": [0, 65535], "wife but i protest without desert hath oftentimes vpbraided me": [0, 65535], "but i protest without desert hath oftentimes vpbraided me withall": [0, 65535], "i protest without desert hath oftentimes vpbraided me withall to": [0, 65535], "protest without desert hath oftentimes vpbraided me withall to her": [0, 65535], "without desert hath oftentimes vpbraided me withall to her will": [0, 65535], "desert hath oftentimes vpbraided me withall to her will we": [0, 65535], "hath oftentimes vpbraided me withall to her will we to": [0, 65535], "oftentimes vpbraided me withall to her will we to dinner": [0, 65535], "vpbraided me withall to her will we to dinner get": [0, 65535], "me withall to her will we to dinner get you": [0, 65535], "withall to her will we to dinner get you home": [0, 65535], "to her will we to dinner get you home and": [0, 65535], "her will we to dinner get you home and fetch": [0, 65535], "will we to dinner get you home and fetch the": [0, 65535], "we to dinner get you home and fetch the chaine": [0, 65535], "to dinner get you home and fetch the chaine by": [0, 65535], "dinner get you home and fetch the chaine by this": [0, 65535], "get you home and fetch the chaine by this i": [0, 65535], "you home and fetch the chaine by this i know": [0, 65535], "home and fetch the chaine by this i know 'tis": [0, 65535], "and fetch the chaine by this i know 'tis made": [0, 65535], "fetch the chaine by this i know 'tis made bring": [0, 65535], "the chaine by this i know 'tis made bring it": [0, 65535], "chaine by this i know 'tis made bring it i": [0, 65535], "by this i know 'tis made bring it i pray": [0, 65535], "this i know 'tis made bring it i pray you": [0, 65535], "i know 'tis made bring it i pray you to": [0, 65535], "know 'tis made bring it i pray you to the": [0, 65535], "'tis made bring it i pray you to the porpentine": [0, 65535], "made bring it i pray you to the porpentine for": [0, 65535], "bring it i pray you to the porpentine for there's": [0, 65535], "it i pray you to the porpentine for there's the": [0, 65535], "i pray you to the porpentine for there's the house": [0, 65535], "pray you to the porpentine for there's the house that": [0, 65535], "you to the porpentine for there's the house that chaine": [0, 65535], "to the porpentine for there's the house that chaine will": [0, 65535], "the porpentine for there's the house that chaine will i": [0, 65535], "porpentine for there's the house that chaine will i bestow": [0, 65535], "for there's the house that chaine will i bestow be": [0, 65535], "there's the house that chaine will i bestow be it": [0, 65535], "the house that chaine will i bestow be it for": [0, 65535], "house that chaine will i bestow be it for nothing": [0, 65535], "that chaine will i bestow be it for nothing but": [0, 65535], "chaine will i bestow be it for nothing but to": [0, 65535], "will i bestow be it for nothing but to spight": [0, 65535], "i bestow be it for nothing but to spight my": [0, 65535], "bestow be it for nothing but to spight my wife": [0, 65535], "be it for nothing but to spight my wife vpon": [0, 65535], "it for nothing but to spight my wife vpon mine": [0, 65535], "for nothing but to spight my wife vpon mine hostesse": [0, 65535], "nothing but to spight my wife vpon mine hostesse there": [0, 65535], "but to spight my wife vpon mine hostesse there good": [0, 65535], "to spight my wife vpon mine hostesse there good sir": [0, 65535], "spight my wife vpon mine hostesse there good sir make": [0, 65535], "my wife vpon mine hostesse there good sir make haste": [0, 65535], "wife vpon mine hostesse there good sir make haste since": [0, 65535], "vpon mine hostesse there good sir make haste since mine": [0, 65535], "mine hostesse there good sir make haste since mine owne": [0, 65535], "hostesse there good sir make haste since mine owne doores": [0, 65535], "there good sir make haste since mine owne doores refuse": [0, 65535], "good sir make haste since mine owne doores refuse to": [0, 65535], "sir make haste since mine owne doores refuse to entertaine": [0, 65535], "make haste since mine owne doores refuse to entertaine me": [0, 65535], "haste since mine owne doores refuse to entertaine me ile": [0, 65535], "since mine owne doores refuse to entertaine me ile knocke": [0, 65535], "mine owne doores refuse to entertaine me ile knocke else": [0, 65535], "owne doores refuse to entertaine me ile knocke else where": [0, 65535], "doores refuse to entertaine me ile knocke else where to": [0, 65535], "refuse to entertaine me ile knocke else where to see": [0, 65535], "to entertaine me ile knocke else where to see if": [0, 65535], "entertaine me ile knocke else where to see if they'll": [0, 65535], "me ile knocke else where to see if they'll disdaine": [0, 65535], "ile knocke else where to see if they'll disdaine me": [0, 65535], "knocke else where to see if they'll disdaine me ang": [0, 65535], "else where to see if they'll disdaine me ang ile": [0, 65535], "where to see if they'll disdaine me ang ile meet": [0, 65535], "to see if they'll disdaine me ang ile meet you": [0, 65535], "see if they'll disdaine me ang ile meet you at": [0, 65535], "if they'll disdaine me ang ile meet you at that": [0, 65535], "they'll disdaine me ang ile meet you at that place": [0, 65535], "disdaine me ang ile meet you at that place some": [0, 65535], "me ang ile meet you at that place some houre": [0, 65535], "ang ile meet you at that place some houre hence": [0, 65535], "ile meet you at that place some houre hence anti": [0, 65535], "meet you at that place some houre hence anti do": [0, 65535], "you at that place some houre hence anti do so": [0, 65535], "at that place some houre hence anti do so this": [0, 65535], "that place some houre hence anti do so this iest": [0, 65535], "place some houre hence anti do so this iest shall": [0, 65535], "some houre hence anti do so this iest shall cost": [0, 65535], "houre hence anti do so this iest shall cost me": [0, 65535], "hence anti do so this iest shall cost me some": [0, 65535], "anti do so this iest shall cost me some expence": [0, 65535], "do so this iest shall cost me some expence exeunt": [0, 65535], "so this iest shall cost me some expence exeunt enter": [0, 65535], "this iest shall cost me some expence exeunt enter iuliana": [0, 65535], "iest shall cost me some expence exeunt enter iuliana with": [0, 65535], "shall cost me some expence exeunt enter iuliana with antipholus": [0, 65535], "cost me some expence exeunt enter iuliana with antipholus of": [0, 65535], "me some expence exeunt enter iuliana with antipholus of siracusia": [0, 65535], "some expence exeunt enter iuliana with antipholus of siracusia iulia": [0, 65535], "expence exeunt enter iuliana with antipholus of siracusia iulia and": [0, 65535], "exeunt enter iuliana with antipholus of siracusia iulia and may": [0, 65535], "enter iuliana with antipholus of siracusia iulia and may it": [0, 65535], "iuliana with antipholus of siracusia iulia and may it be": [0, 65535], "with antipholus of siracusia iulia and may it be that": [0, 65535], "antipholus of siracusia iulia and may it be that you": [0, 65535], "of siracusia iulia and may it be that you haue": [0, 65535], "siracusia iulia and may it be that you haue quite": [0, 65535], "iulia and may it be that you haue quite forgot": [0, 65535], "and may it be that you haue quite forgot a": [0, 65535], "may it be that you haue quite forgot a husbands": [0, 65535], "it be that you haue quite forgot a husbands office": [0, 65535], "be that you haue quite forgot a husbands office shall": [0, 65535], "that you haue quite forgot a husbands office shall antipholus": [0, 65535], "you haue quite forgot a husbands office shall antipholus euen": [0, 65535], "haue quite forgot a husbands office shall antipholus euen in": [0, 65535], "quite forgot a husbands office shall antipholus euen in the": [0, 65535], "forgot a husbands office shall antipholus euen in the spring": [0, 65535], "a husbands office shall antipholus euen in the spring of": [0, 65535], "husbands office shall antipholus euen in the spring of loue": [0, 65535], "office shall antipholus euen in the spring of loue thy": [0, 65535], "shall antipholus euen in the spring of loue thy loue": [0, 65535], "antipholus euen in the spring of loue thy loue springs": [0, 65535], "euen in the spring of loue thy loue springs rot": [0, 65535], "in the spring of loue thy loue springs rot shall": [0, 65535], "the spring of loue thy loue springs rot shall loue": [0, 65535], "spring of loue thy loue springs rot shall loue in": [0, 65535], "of loue thy loue springs rot shall loue in buildings": [0, 65535], "loue thy loue springs rot shall loue in buildings grow": [0, 65535], "thy loue springs rot shall loue in buildings grow so": [0, 65535], "loue springs rot shall loue in buildings grow so ruinate": [0, 65535], "springs rot shall loue in buildings grow so ruinate if": [0, 65535], "rot shall loue in buildings grow so ruinate if you": [0, 65535], "shall loue in buildings grow so ruinate if you did": [0, 65535], "loue in buildings grow so ruinate if you did wed": [0, 65535], "in buildings grow so ruinate if you did wed my": [0, 65535], "buildings grow so ruinate if you did wed my sister": [0, 65535], "grow so ruinate if you did wed my sister for": [0, 65535], "so ruinate if you did wed my sister for her": [0, 65535], "ruinate if you did wed my sister for her wealth": [0, 65535], "if you did wed my sister for her wealth then": [0, 65535], "you did wed my sister for her wealth then for": [0, 65535], "did wed my sister for her wealth then for her": [0, 65535], "wed my sister for her wealth then for her wealths": [0, 65535], "my sister for her wealth then for her wealths sake": [0, 65535], "sister for her wealth then for her wealths sake vse": [0, 65535], "for her wealth then for her wealths sake vse her": [0, 65535], "her wealth then for her wealths sake vse her with": [0, 65535], "wealth then for her wealths sake vse her with more": [0, 65535], "then for her wealths sake vse her with more kindnesse": [0, 65535], "for her wealths sake vse her with more kindnesse or": [0, 65535], "her wealths sake vse her with more kindnesse or if": [0, 65535], "wealths sake vse her with more kindnesse or if you": [0, 65535], "sake vse her with more kindnesse or if you like": [0, 65535], "vse her with more kindnesse or if you like else": [0, 65535], "her with more kindnesse or if you like else where": [0, 65535], "with more kindnesse or if you like else where doe": [0, 65535], "more kindnesse or if you like else where doe it": [0, 65535], "kindnesse or if you like else where doe it by": [0, 65535], "or if you like else where doe it by stealth": [0, 65535], "if you like else where doe it by stealth muffle": [0, 65535], "you like else where doe it by stealth muffle your": [0, 65535], "like else where doe it by stealth muffle your false": [0, 65535], "else where doe it by stealth muffle your false loue": [0, 65535], "where doe it by stealth muffle your false loue with": [0, 65535], "doe it by stealth muffle your false loue with some": [0, 65535], "it by stealth muffle your false loue with some shew": [0, 65535], "by stealth muffle your false loue with some shew of": [0, 65535], "stealth muffle your false loue with some shew of blindnesse": [0, 65535], "muffle your false loue with some shew of blindnesse let": [0, 65535], "your false loue with some shew of blindnesse let not": [0, 65535], "false loue with some shew of blindnesse let not my": [0, 65535], "loue with some shew of blindnesse let not my sister": [0, 65535], "with some shew of blindnesse let not my sister read": [0, 65535], "some shew of blindnesse let not my sister read it": [0, 65535], "shew of blindnesse let not my sister read it in": [0, 65535], "of blindnesse let not my sister read it in your": [0, 65535], "blindnesse let not my sister read it in your eye": [0, 65535], "let not my sister read it in your eye be": [0, 65535], "not my sister read it in your eye be not": [0, 65535], "my sister read it in your eye be not thy": [0, 65535], "sister read it in your eye be not thy tongue": [0, 65535], "read it in your eye be not thy tongue thy": [0, 65535], "it in your eye be not thy tongue thy owne": [0, 65535], "in your eye be not thy tongue thy owne shames": [0, 65535], "your eye be not thy tongue thy owne shames orator": [0, 65535], "eye be not thy tongue thy owne shames orator looke": [0, 65535], "be not thy tongue thy owne shames orator looke sweet": [0, 65535], "not thy tongue thy owne shames orator looke sweet speake": [0, 65535], "thy tongue thy owne shames orator looke sweet speake faire": [0, 65535], "tongue thy owne shames orator looke sweet speake faire become": [0, 65535], "thy owne shames orator looke sweet speake faire become disloyaltie": [0, 65535], "owne shames orator looke sweet speake faire become disloyaltie apparell": [0, 65535], "shames orator looke sweet speake faire become disloyaltie apparell vice": [0, 65535], "orator looke sweet speake faire become disloyaltie apparell vice like": [0, 65535], "looke sweet speake faire become disloyaltie apparell vice like vertues": [0, 65535], "sweet speake faire become disloyaltie apparell vice like vertues harbenger": [0, 65535], "speake faire become disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "faire become disloyaltie apparell vice like vertues harbenger beare a": [0, 65535], "become disloyaltie apparell vice like vertues harbenger beare a faire": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare a faire presence": [0, 65535], "apparell vice like vertues harbenger beare a faire presence though": [0, 65535], "vice like vertues harbenger beare a faire presence though your": [0, 65535], "like vertues harbenger beare a faire presence though your heart": [0, 65535], "vertues harbenger beare a faire presence though your heart be": [0, 65535], "harbenger beare a faire presence though your heart be tainted": [0, 65535], "beare a faire presence though your heart be tainted teach": [0, 65535], "a faire presence though your heart be tainted teach sinne": [0, 65535], "faire presence though your heart be tainted teach sinne the": [0, 65535], "presence though your heart be tainted teach sinne the carriage": [0, 65535], "though your heart be tainted teach sinne the carriage of": [0, 65535], "your heart be tainted teach sinne the carriage of a": [0, 65535], "heart be tainted teach sinne the carriage of a holy": [0, 65535], "be tainted teach sinne the carriage of a holy saint": [0, 65535], "tainted teach sinne the carriage of a holy saint be": [0, 65535], "teach sinne the carriage of a holy saint be secret": [0, 65535], "sinne the carriage of a holy saint be secret false": [0, 65535], "the carriage of a holy saint be secret false what": [0, 65535], "carriage of a holy saint be secret false what need": [0, 65535], "of a holy saint be secret false what need she": [0, 65535], "a holy saint be secret false what need she be": [0, 65535], "holy saint be secret false what need she be acquainted": [0, 65535], "saint be secret false what need she be acquainted what": [0, 65535], "be secret false what need she be acquainted what simple": [0, 65535], "secret false what need she be acquainted what simple thiefe": [0, 65535], "false what need she be acquainted what simple thiefe brags": [0, 65535], "what need she be acquainted what simple thiefe brags of": [0, 65535], "need she be acquainted what simple thiefe brags of his": [0, 65535], "she be acquainted what simple thiefe brags of his owne": [0, 65535], "be acquainted what simple thiefe brags of his owne attaine": [0, 65535], "acquainted what simple thiefe brags of his owne attaine 'tis": [0, 65535], "what simple thiefe brags of his owne attaine 'tis double": [0, 65535], "simple thiefe brags of his owne attaine 'tis double wrong": [0, 65535], "thiefe brags of his owne attaine 'tis double wrong to": [0, 65535], "brags of his owne attaine 'tis double wrong to truant": [0, 65535], "of his owne attaine 'tis double wrong to truant with": [0, 65535], "his owne attaine 'tis double wrong to truant with your": [0, 65535], "owne attaine 'tis double wrong to truant with your bed": [0, 65535], "attaine 'tis double wrong to truant with your bed and": [0, 65535], "'tis double wrong to truant with your bed and let": [0, 65535], "double wrong to truant with your bed and let her": [0, 65535], "wrong to truant with your bed and let her read": [0, 65535], "to truant with your bed and let her read it": [0, 65535], "truant with your bed and let her read it in": [0, 65535], "with your bed and let her read it in thy": [0, 65535], "your bed and let her read it in thy lookes": [0, 65535], "bed and let her read it in thy lookes at": [0, 65535], "and let her read it in thy lookes at boord": [0, 65535], "let her read it in thy lookes at boord shame": [0, 65535], "her read it in thy lookes at boord shame hath": [0, 65535], "read it in thy lookes at boord shame hath a": [0, 65535], "it in thy lookes at boord shame hath a bastard": [0, 65535], "in thy lookes at boord shame hath a bastard fame": [0, 65535], "thy lookes at boord shame hath a bastard fame well": [0, 65535], "lookes at boord shame hath a bastard fame well managed": [0, 65535], "at boord shame hath a bastard fame well managed ill": [0, 65535], "boord shame hath a bastard fame well managed ill deeds": [0, 65535], "shame hath a bastard fame well managed ill deeds is": [0, 65535], "hath a bastard fame well managed ill deeds is doubled": [0, 65535], "a bastard fame well managed ill deeds is doubled with": [0, 65535], "bastard fame well managed ill deeds is doubled with an": [0, 65535], "fame well managed ill deeds is doubled with an euill": [0, 65535], "well managed ill deeds is doubled with an euill word": [0, 65535], "managed ill deeds is doubled with an euill word alas": [0, 65535], "ill deeds is doubled with an euill word alas poore": [0, 65535], "deeds is doubled with an euill word alas poore women": [0, 65535], "is doubled with an euill word alas poore women make": [0, 65535], "doubled with an euill word alas poore women make vs": [0, 65535], "with an euill word alas poore women make vs not": [0, 65535], "an euill word alas poore women make vs not beleeue": [0, 65535], "euill word alas poore women make vs not beleeue being": [0, 65535], "word alas poore women make vs not beleeue being compact": [0, 65535], "alas poore women make vs not beleeue being compact of": [0, 65535], "poore women make vs not beleeue being compact of credit": [0, 65535], "women make vs not beleeue being compact of credit that": [0, 65535], "make vs not beleeue being compact of credit that you": [0, 65535], "vs not beleeue being compact of credit that you loue": [0, 65535], "not beleeue being compact of credit that you loue vs": [0, 65535], "beleeue being compact of credit that you loue vs though": [0, 65535], "being compact of credit that you loue vs though others": [0, 65535], "compact of credit that you loue vs though others haue": [0, 65535], "of credit that you loue vs though others haue the": [0, 65535], "credit that you loue vs though others haue the arme": [0, 65535], "that you loue vs though others haue the arme shew": [0, 65535], "you loue vs though others haue the arme shew vs": [0, 65535], "loue vs though others haue the arme shew vs the": [0, 65535], "vs though others haue the arme shew vs the sleeue": [0, 65535], "though others haue the arme shew vs the sleeue we": [0, 65535], "others haue the arme shew vs the sleeue we in": [0, 65535], "haue the arme shew vs the sleeue we in your": [0, 65535], "the arme shew vs the sleeue we in your motion": [0, 65535], "arme shew vs the sleeue we in your motion turne": [0, 65535], "shew vs the sleeue we in your motion turne and": [0, 65535], "vs the sleeue we in your motion turne and you": [0, 65535], "the sleeue we in your motion turne and you may": [0, 65535], "sleeue we in your motion turne and you may moue": [0, 65535], "we in your motion turne and you may moue vs": [0, 65535], "in your motion turne and you may moue vs then": [0, 65535], "your motion turne and you may moue vs then gentle": [0, 65535], "motion turne and you may moue vs then gentle brother": [0, 65535], "turne and you may moue vs then gentle brother get": [0, 65535], "and you may moue vs then gentle brother get you": [0, 65535], "you may moue vs then gentle brother get you in": [0, 65535], "may moue vs then gentle brother get you in againe": [0, 65535], "moue vs then gentle brother get you in againe comfort": [0, 65535], "vs then gentle brother get you in againe comfort my": [0, 65535], "then gentle brother get you in againe comfort my sister": [0, 65535], "gentle brother get you in againe comfort my sister cheere": [0, 65535], "brother get you in againe comfort my sister cheere her": [0, 65535], "get you in againe comfort my sister cheere her call": [0, 65535], "you in againe comfort my sister cheere her call her": [0, 65535], "in againe comfort my sister cheere her call her wise": [0, 65535], "againe comfort my sister cheere her call her wise 'tis": [0, 65535], "comfort my sister cheere her call her wise 'tis holy": [0, 65535], "my sister cheere her call her wise 'tis holy sport": [0, 65535], "sister cheere her call her wise 'tis holy sport to": [0, 65535], "cheere her call her wise 'tis holy sport to be": [0, 65535], "her call her wise 'tis holy sport to be a": [0, 65535], "call her wise 'tis holy sport to be a little": [0, 65535], "her wise 'tis holy sport to be a little vaine": [0, 65535], "wise 'tis holy sport to be a little vaine when": [0, 65535], "'tis holy sport to be a little vaine when the": [0, 65535], "holy sport to be a little vaine when the sweet": [0, 65535], "sport to be a little vaine when the sweet breath": [0, 65535], "to be a little vaine when the sweet breath of": [0, 65535], "be a little vaine when the sweet breath of flatterie": [0, 65535], "a little vaine when the sweet breath of flatterie conquers": [0, 65535], "little vaine when the sweet breath of flatterie conquers strife": [0, 65535], "vaine when the sweet breath of flatterie conquers strife s": [0, 65535], "when the sweet breath of flatterie conquers strife s anti": [0, 65535], "the sweet breath of flatterie conquers strife s anti sweete": [0, 65535], "sweet breath of flatterie conquers strife s anti sweete mistris": [0, 65535], "breath of flatterie conquers strife s anti sweete mistris what": [0, 65535], "of flatterie conquers strife s anti sweete mistris what your": [0, 65535], "flatterie conquers strife s anti sweete mistris what your name": [0, 65535], "conquers strife s anti sweete mistris what your name is": [0, 65535], "strife s anti sweete mistris what your name is else": [0, 65535], "s anti sweete mistris what your name is else i": [0, 65535], "anti sweete mistris what your name is else i know": [0, 65535], "sweete mistris what your name is else i know not": [0, 65535], "mistris what your name is else i know not nor": [0, 65535], "what your name is else i know not nor by": [0, 65535], "your name is else i know not nor by what": [0, 65535], "name is else i know not nor by what wonder": [0, 65535], "is else i know not nor by what wonder you": [0, 65535], "else i know not nor by what wonder you do": [0, 65535], "i know not nor by what wonder you do hit": [0, 65535], "know not nor by what wonder you do hit of": [0, 65535], "not nor by what wonder you do hit of mine": [0, 65535], "nor by what wonder you do hit of mine lesse": [0, 65535], "by what wonder you do hit of mine lesse in": [0, 65535], "what wonder you do hit of mine lesse in your": [0, 65535], "wonder you do hit of mine lesse in your knowledge": [0, 65535], "you do hit of mine lesse in your knowledge and": [0, 65535], "do hit of mine lesse in your knowledge and your": [0, 65535], "hit of mine lesse in your knowledge and your grace": [0, 65535], "of mine lesse in your knowledge and your grace you": [0, 65535], "mine lesse in your knowledge and your grace you show": [0, 65535], "lesse in your knowledge and your grace you show not": [0, 65535], "in your knowledge and your grace you show not then": [0, 65535], "your knowledge and your grace you show not then our": [0, 65535], "knowledge and your grace you show not then our earths": [0, 65535], "and your grace you show not then our earths wonder": [0, 65535], "your grace you show not then our earths wonder more": [0, 65535], "grace you show not then our earths wonder more then": [0, 65535], "you show not then our earths wonder more then earth": [0, 65535], "show not then our earths wonder more then earth diuine": [0, 65535], "not then our earths wonder more then earth diuine teach": [0, 65535], "then our earths wonder more then earth diuine teach me": [0, 65535], "our earths wonder more then earth diuine teach me deere": [0, 65535], "earths wonder more then earth diuine teach me deere creature": [0, 65535], "wonder more then earth diuine teach me deere creature how": [0, 65535], "more then earth diuine teach me deere creature how to": [0, 65535], "then earth diuine teach me deere creature how to thinke": [0, 65535], "earth diuine teach me deere creature how to thinke and": [0, 65535], "diuine teach me deere creature how to thinke and speake": [0, 65535], "teach me deere creature how to thinke and speake lay": [0, 65535], "me deere creature how to thinke and speake lay open": [0, 65535], "deere creature how to thinke and speake lay open to": [0, 65535], "creature how to thinke and speake lay open to my": [0, 65535], "how to thinke and speake lay open to my earthie": [0, 65535], "to thinke and speake lay open to my earthie grosse": [0, 65535], "thinke and speake lay open to my earthie grosse conceit": [0, 65535], "and speake lay open to my earthie grosse conceit smothred": [0, 65535], "speake lay open to my earthie grosse conceit smothred in": [0, 65535], "lay open to my earthie grosse conceit smothred in errors": [0, 65535], "open to my earthie grosse conceit smothred in errors feeble": [0, 65535], "to my earthie grosse conceit smothred in errors feeble shallow": [0, 65535], "my earthie grosse conceit smothred in errors feeble shallow weake": [0, 65535], "earthie grosse conceit smothred in errors feeble shallow weake the": [0, 65535], "grosse conceit smothred in errors feeble shallow weake the foulded": [0, 65535], "conceit smothred in errors feeble shallow weake the foulded meaning": [0, 65535], "smothred in errors feeble shallow weake the foulded meaning of": [0, 65535], "in errors feeble shallow weake the foulded meaning of your": [0, 65535], "errors feeble shallow weake the foulded meaning of your words": [0, 65535], "feeble shallow weake the foulded meaning of your words deceit": [0, 65535], "shallow weake the foulded meaning of your words deceit against": [0, 65535], "weake the foulded meaning of your words deceit against my": [0, 65535], "the foulded meaning of your words deceit against my soules": [0, 65535], "foulded meaning of your words deceit against my soules pure": [0, 65535], "meaning of your words deceit against my soules pure truth": [0, 65535], "of your words deceit against my soules pure truth why": [0, 65535], "your words deceit against my soules pure truth why labour": [0, 65535], "words deceit against my soules pure truth why labour you": [0, 65535], "deceit against my soules pure truth why labour you to": [0, 65535], "against my soules pure truth why labour you to make": [0, 65535], "my soules pure truth why labour you to make it": [0, 65535], "soules pure truth why labour you to make it wander": [0, 65535], "pure truth why labour you to make it wander in": [0, 65535], "truth why labour you to make it wander in an": [0, 65535], "why labour you to make it wander in an vnknowne": [0, 65535], "labour you to make it wander in an vnknowne field": [0, 65535], "you to make it wander in an vnknowne field are": [0, 65535], "to make it wander in an vnknowne field are you": [0, 65535], "make it wander in an vnknowne field are you a": [0, 65535], "it wander in an vnknowne field are you a god": [0, 65535], "wander in an vnknowne field are you a god would": [0, 65535], "in an vnknowne field are you a god would you": [0, 65535], "an vnknowne field are you a god would you create": [0, 65535], "vnknowne field are you a god would you create me": [0, 65535], "field are you a god would you create me new": [0, 65535], "are you a god would you create me new transforme": [0, 65535], "you a god would you create me new transforme me": [0, 65535], "a god would you create me new transforme me then": [0, 65535], "god would you create me new transforme me then and": [0, 65535], "would you create me new transforme me then and to": [0, 65535], "you create me new transforme me then and to your": [0, 65535], "create me new transforme me then and to your powre": [0, 65535], "me new transforme me then and to your powre ile": [0, 65535], "new transforme me then and to your powre ile yeeld": [0, 65535], "transforme me then and to your powre ile yeeld but": [0, 65535], "me then and to your powre ile yeeld but if": [0, 65535], "then and to your powre ile yeeld but if that": [0, 65535], "and to your powre ile yeeld but if that i": [0, 65535], "to your powre ile yeeld but if that i am": [0, 65535], "your powre ile yeeld but if that i am i": [0, 65535], "powre ile yeeld but if that i am i then": [0, 65535], "ile yeeld but if that i am i then well": [0, 65535], "yeeld but if that i am i then well i": [0, 65535], "but if that i am i then well i know": [0, 65535], "if that i am i then well i know your": [0, 65535], "that i am i then well i know your weeping": [0, 65535], "i am i then well i know your weeping sister": [0, 65535], "am i then well i know your weeping sister is": [0, 65535], "i then well i know your weeping sister is no": [0, 65535], "then well i know your weeping sister is no wife": [0, 65535], "well i know your weeping sister is no wife of": [0, 65535], "i know your weeping sister is no wife of mine": [0, 65535], "know your weeping sister is no wife of mine nor": [0, 65535], "your weeping sister is no wife of mine nor to": [0, 65535], "weeping sister is no wife of mine nor to her": [0, 65535], "sister is no wife of mine nor to her bed": [0, 65535], "is no wife of mine nor to her bed no": [0, 65535], "no wife of mine nor to her bed no homage": [0, 65535], "wife of mine nor to her bed no homage doe": [0, 65535], "of mine nor to her bed no homage doe i": [0, 65535], "mine nor to her bed no homage doe i owe": [0, 65535], "nor to her bed no homage doe i owe farre": [0, 65535], "to her bed no homage doe i owe farre more": [0, 65535], "her bed no homage doe i owe farre more farre": [0, 65535], "bed no homage doe i owe farre more farre more": [0, 65535], "no homage doe i owe farre more farre more to": [0, 65535], "homage doe i owe farre more farre more to you": [0, 65535], "doe i owe farre more farre more to you doe": [0, 65535], "i owe farre more farre more to you doe i": [0, 65535], "owe farre more farre more to you doe i decline": [0, 65535], "farre more farre more to you doe i decline oh": [0, 65535], "more farre more to you doe i decline oh traine": [0, 65535], "farre more to you doe i decline oh traine me": [0, 65535], "more to you doe i decline oh traine me not": [0, 65535], "to you doe i decline oh traine me not sweet": [0, 65535], "you doe i decline oh traine me not sweet mermaide": [0, 65535], "doe i decline oh traine me not sweet mermaide with": [0, 65535], "i decline oh traine me not sweet mermaide with thy": [0, 65535], "decline oh traine me not sweet mermaide with thy note": [0, 65535], "oh traine me not sweet mermaide with thy note to": [0, 65535], "traine me not sweet mermaide with thy note to drowne": [0, 65535], "me not sweet mermaide with thy note to drowne me": [0, 65535], "not sweet mermaide with thy note to drowne me in": [0, 65535], "sweet mermaide with thy note to drowne me in thy": [0, 65535], "mermaide with thy note to drowne me in thy sister": [0, 65535], "with thy note to drowne me in thy sister floud": [0, 65535], "thy note to drowne me in thy sister floud of": [0, 65535], "note to drowne me in thy sister floud of teares": [0, 65535], "to drowne me in thy sister floud of teares sing": [0, 65535], "drowne me in thy sister floud of teares sing siren": [0, 65535], "me in thy sister floud of teares sing siren for": [0, 65535], "in thy sister floud of teares sing siren for thy": [0, 65535], "thy sister floud of teares sing siren for thy selfe": [0, 65535], "sister floud of teares sing siren for thy selfe and": [0, 65535], "floud of teares sing siren for thy selfe and i": [0, 65535], "of teares sing siren for thy selfe and i will": [0, 65535], "teares sing siren for thy selfe and i will dote": [0, 65535], "sing siren for thy selfe and i will dote spread": [0, 65535], "siren for thy selfe and i will dote spread ore": [0, 65535], "for thy selfe and i will dote spread ore the": [0, 65535], "thy selfe and i will dote spread ore the siluer": [0, 65535], "selfe and i will dote spread ore the siluer waues": [0, 65535], "and i will dote spread ore the siluer waues thy": [0, 65535], "i will dote spread ore the siluer waues thy golden": [0, 65535], "will dote spread ore the siluer waues thy golden haires": [0, 65535], "dote spread ore the siluer waues thy golden haires and": [0, 65535], "spread ore the siluer waues thy golden haires and as": [0, 65535], "ore the siluer waues thy golden haires and as a": [0, 65535], "the siluer waues thy golden haires and as a bud": [0, 65535], "siluer waues thy golden haires and as a bud ile": [0, 65535], "waues thy golden haires and as a bud ile take": [0, 65535], "thy golden haires and as a bud ile take thee": [0, 65535], "golden haires and as a bud ile take thee and": [0, 65535], "haires and as a bud ile take thee and there": [0, 65535], "and as a bud ile take thee and there lie": [0, 65535], "as a bud ile take thee and there lie and": [0, 65535], "a bud ile take thee and there lie and in": [0, 65535], "bud ile take thee and there lie and in that": [0, 65535], "ile take thee and there lie and in that glorious": [0, 65535], "take thee and there lie and in that glorious supposition": [0, 65535], "thee and there lie and in that glorious supposition thinke": [0, 65535], "and there lie and in that glorious supposition thinke he": [0, 65535], "there lie and in that glorious supposition thinke he gaines": [0, 65535], "lie and in that glorious supposition thinke he gaines by": [0, 65535], "and in that glorious supposition thinke he gaines by death": [0, 65535], "in that glorious supposition thinke he gaines by death that": [0, 65535], "that glorious supposition thinke he gaines by death that hath": [0, 65535], "glorious supposition thinke he gaines by death that hath such": [0, 65535], "supposition thinke he gaines by death that hath such meanes": [0, 65535], "thinke he gaines by death that hath such meanes to": [0, 65535], "he gaines by death that hath such meanes to die": [0, 65535], "gaines by death that hath such meanes to die let": [0, 65535], "by death that hath such meanes to die let loue": [0, 65535], "death that hath such meanes to die let loue being": [0, 65535], "that hath such meanes to die let loue being light": [0, 65535], "hath such meanes to die let loue being light be": [0, 65535], "such meanes to die let loue being light be drowned": [0, 65535], "meanes to die let loue being light be drowned if": [0, 65535], "to die let loue being light be drowned if she": [0, 65535], "die let loue being light be drowned if she sinke": [0, 65535], "let loue being light be drowned if she sinke luc": [0, 65535], "loue being light be drowned if she sinke luc what": [0, 65535], "being light be drowned if she sinke luc what are": [0, 65535], "light be drowned if she sinke luc what are you": [0, 65535], "be drowned if she sinke luc what are you mad": [0, 65535], "drowned if she sinke luc what are you mad that": [0, 65535], "if she sinke luc what are you mad that you": [0, 65535], "she sinke luc what are you mad that you doe": [0, 65535], "sinke luc what are you mad that you doe reason": [0, 65535], "luc what are you mad that you doe reason so": [0, 65535], "what are you mad that you doe reason so ant": [0, 65535], "are you mad that you doe reason so ant not": [0, 65535], "you mad that you doe reason so ant not mad": [0, 65535], "mad that you doe reason so ant not mad but": [0, 65535], "that you doe reason so ant not mad but mated": [0, 65535], "you doe reason so ant not mad but mated how": [0, 65535], "doe reason so ant not mad but mated how i": [0, 65535], "reason so ant not mad but mated how i doe": [0, 65535], "so ant not mad but mated how i doe not": [0, 65535], "ant not mad but mated how i doe not know": [0, 65535], "not mad but mated how i doe not know luc": [0, 65535], "mad but mated how i doe not know luc it": [0, 65535], "but mated how i doe not know luc it is": [0, 65535], "mated how i doe not know luc it is a": [0, 65535], "how i doe not know luc it is a fault": [0, 65535], "i doe not know luc it is a fault that": [0, 65535], "doe not know luc it is a fault that springeth": [0, 65535], "not know luc it is a fault that springeth from": [0, 65535], "know luc it is a fault that springeth from your": [0, 65535], "luc it is a fault that springeth from your eie": [0, 65535], "it is a fault that springeth from your eie ant": [0, 65535], "is a fault that springeth from your eie ant for": [0, 65535], "a fault that springeth from your eie ant for gazing": [0, 65535], "fault that springeth from your eie ant for gazing on": [0, 65535], "that springeth from your eie ant for gazing on your": [0, 65535], "springeth from your eie ant for gazing on your beames": [0, 65535], "from your eie ant for gazing on your beames faire": [0, 65535], "your eie ant for gazing on your beames faire sun": [0, 65535], "eie ant for gazing on your beames faire sun being": [0, 65535], "ant for gazing on your beames faire sun being by": [0, 65535], "for gazing on your beames faire sun being by luc": [0, 65535], "gazing on your beames faire sun being by luc gaze": [0, 65535], "on your beames faire sun being by luc gaze when": [0, 65535], "your beames faire sun being by luc gaze when you": [0, 65535], "beames faire sun being by luc gaze when you should": [0, 65535], "faire sun being by luc gaze when you should and": [0, 65535], "sun being by luc gaze when you should and that": [0, 65535], "being by luc gaze when you should and that will": [0, 65535], "by luc gaze when you should and that will cleere": [0, 65535], "luc gaze when you should and that will cleere your": [0, 65535], "gaze when you should and that will cleere your sight": [0, 65535], "when you should and that will cleere your sight ant": [0, 65535], "you should and that will cleere your sight ant as": [0, 65535], "should and that will cleere your sight ant as good": [0, 65535], "and that will cleere your sight ant as good to": [0, 65535], "that will cleere your sight ant as good to winke": [0, 65535], "will cleere your sight ant as good to winke sweet": [0, 65535], "cleere your sight ant as good to winke sweet loue": [0, 65535], "your sight ant as good to winke sweet loue as": [0, 65535], "sight ant as good to winke sweet loue as looke": [0, 65535], "ant as good to winke sweet loue as looke on": [0, 65535], "as good to winke sweet loue as looke on night": [0, 65535], "good to winke sweet loue as looke on night luc": [0, 65535], "to winke sweet loue as looke on night luc why": [0, 65535], "winke sweet loue as looke on night luc why call": [0, 65535], "sweet loue as looke on night luc why call you": [0, 65535], "loue as looke on night luc why call you me": [0, 65535], "as looke on night luc why call you me loue": [0, 65535], "looke on night luc why call you me loue call": [0, 65535], "on night luc why call you me loue call my": [0, 65535], "night luc why call you me loue call my sister": [0, 65535], "luc why call you me loue call my sister so": [0, 65535], "why call you me loue call my sister so ant": [0, 65535], "call you me loue call my sister so ant thy": [0, 65535], "you me loue call my sister so ant thy sisters": [0, 65535], "me loue call my sister so ant thy sisters sister": [0, 65535], "loue call my sister so ant thy sisters sister luc": [0, 65535], "call my sister so ant thy sisters sister luc that's": [0, 65535], "my sister so ant thy sisters sister luc that's my": [0, 65535], "sister so ant thy sisters sister luc that's my sister": [0, 65535], "so ant thy sisters sister luc that's my sister ant": [0, 65535], "ant thy sisters sister luc that's my sister ant no": [0, 65535], "thy sisters sister luc that's my sister ant no it": [0, 65535], "sisters sister luc that's my sister ant no it is": [0, 65535], "sister luc that's my sister ant no it is thy": [0, 65535], "luc that's my sister ant no it is thy selfe": [0, 65535], "that's my sister ant no it is thy selfe mine": [0, 65535], "my sister ant no it is thy selfe mine owne": [0, 65535], "sister ant no it is thy selfe mine owne selfes": [0, 65535], "ant no it is thy selfe mine owne selfes better": [0, 65535], "no it is thy selfe mine owne selfes better part": [0, 65535], "it is thy selfe mine owne selfes better part mine": [0, 65535], "is thy selfe mine owne selfes better part mine eies": [0, 65535], "thy selfe mine owne selfes better part mine eies cleere": [0, 65535], "selfe mine owne selfes better part mine eies cleere eie": [0, 65535], "mine owne selfes better part mine eies cleere eie my": [0, 65535], "owne selfes better part mine eies cleere eie my deere": [0, 65535], "selfes better part mine eies cleere eie my deere hearts": [0, 65535], "better part mine eies cleere eie my deere hearts deerer": [0, 65535], "part mine eies cleere eie my deere hearts deerer heart": [0, 65535], "mine eies cleere eie my deere hearts deerer heart my": [0, 65535], "eies cleere eie my deere hearts deerer heart my foode": [0, 65535], "cleere eie my deere hearts deerer heart my foode my": [0, 65535], "eie my deere hearts deerer heart my foode my fortune": [0, 65535], "my deere hearts deerer heart my foode my fortune and": [0, 65535], "deere hearts deerer heart my foode my fortune and my": [0, 65535], "hearts deerer heart my foode my fortune and my sweet": [0, 65535], "deerer heart my foode my fortune and my sweet hopes": [0, 65535], "heart my foode my fortune and my sweet hopes aime": [0, 65535], "my foode my fortune and my sweet hopes aime my": [0, 65535], "foode my fortune and my sweet hopes aime my sole": [0, 65535], "my fortune and my sweet hopes aime my sole earths": [0, 65535], "fortune and my sweet hopes aime my sole earths heauen": [0, 65535], "and my sweet hopes aime my sole earths heauen and": [0, 65535], "my sweet hopes aime my sole earths heauen and my": [0, 65535], "sweet hopes aime my sole earths heauen and my heauens": [0, 65535], "hopes aime my sole earths heauen and my heauens claime": [0, 65535], "aime my sole earths heauen and my heauens claime luc": [0, 65535], "my sole earths heauen and my heauens claime luc all": [0, 65535], "sole earths heauen and my heauens claime luc all this": [0, 65535], "earths heauen and my heauens claime luc all this my": [0, 65535], "heauen and my heauens claime luc all this my sister": [0, 65535], "and my heauens claime luc all this my sister is": [0, 65535], "my heauens claime luc all this my sister is or": [0, 65535], "heauens claime luc all this my sister is or else": [0, 65535], "claime luc all this my sister is or else should": [0, 65535], "luc all this my sister is or else should be": [0, 65535], "all this my sister is or else should be ant": [0, 65535], "this my sister is or else should be ant call": [0, 65535], "my sister is or else should be ant call thy": [0, 65535], "sister is or else should be ant call thy selfe": [0, 65535], "is or else should be ant call thy selfe sister": [0, 65535], "or else should be ant call thy selfe sister sweet": [0, 65535], "else should be ant call thy selfe sister sweet for": [0, 65535], "should be ant call thy selfe sister sweet for i": [0, 65535], "be ant call thy selfe sister sweet for i am": [0, 65535], "ant call thy selfe sister sweet for i am thee": [0, 65535], "call thy selfe sister sweet for i am thee thee": [0, 65535], "thy selfe sister sweet for i am thee thee will": [0, 65535], "selfe sister sweet for i am thee thee will i": [0, 65535], "sister sweet for i am thee thee will i loue": [0, 65535], "sweet for i am thee thee will i loue and": [0, 65535], "for i am thee thee will i loue and with": [0, 65535], "i am thee thee will i loue and with thee": [0, 65535], "am thee thee will i loue and with thee lead": [0, 65535], "thee thee will i loue and with thee lead my": [0, 65535], "thee will i loue and with thee lead my life": [0, 65535], "will i loue and with thee lead my life thou": [0, 65535], "i loue and with thee lead my life thou hast": [0, 65535], "loue and with thee lead my life thou hast no": [0, 65535], "and with thee lead my life thou hast no husband": [0, 65535], "with thee lead my life thou hast no husband yet": [0, 65535], "thee lead my life thou hast no husband yet nor": [0, 65535], "lead my life thou hast no husband yet nor i": [0, 65535], "my life thou hast no husband yet nor i no": [0, 65535], "life thou hast no husband yet nor i no wife": [0, 65535], "thou hast no husband yet nor i no wife giue": [0, 65535], "hast no husband yet nor i no wife giue me": [0, 65535], "no husband yet nor i no wife giue me thy": [0, 65535], "husband yet nor i no wife giue me thy hand": [0, 65535], "yet nor i no wife giue me thy hand luc": [0, 65535], "nor i no wife giue me thy hand luc oh": [0, 65535], "i no wife giue me thy hand luc oh soft": [0, 65535], "no wife giue me thy hand luc oh soft sir": [0, 65535], "wife giue me thy hand luc oh soft sir hold": [0, 65535], "giue me thy hand luc oh soft sir hold you": [0, 65535], "me thy hand luc oh soft sir hold you still": [0, 65535], "thy hand luc oh soft sir hold you still ile": [0, 65535], "hand luc oh soft sir hold you still ile fetch": [0, 65535], "luc oh soft sir hold you still ile fetch my": [0, 65535], "oh soft sir hold you still ile fetch my sister": [0, 65535], "soft sir hold you still ile fetch my sister to": [0, 65535], "sir hold you still ile fetch my sister to get": [0, 65535], "hold you still ile fetch my sister to get her": [0, 65535], "you still ile fetch my sister to get her good": [0, 65535], "still ile fetch my sister to get her good will": [0, 65535], "ile fetch my sister to get her good will exit": [0, 65535], "fetch my sister to get her good will exit enter": [0, 65535], "my sister to get her good will exit enter dromio": [0, 65535], "sister to get her good will exit enter dromio siracusia": [0, 65535], "to get her good will exit enter dromio siracusia ant": [0, 65535], "get her good will exit enter dromio siracusia ant why": [0, 65535], "her good will exit enter dromio siracusia ant why how": [0, 65535], "good will exit enter dromio siracusia ant why how now": [0, 65535], "will exit enter dromio siracusia ant why how now dromio": [0, 65535], "exit enter dromio siracusia ant why how now dromio where": [0, 65535], "enter dromio siracusia ant why how now dromio where run'st": [0, 65535], "dromio siracusia ant why how now dromio where run'st thou": [0, 65535], "siracusia ant why how now dromio where run'st thou so": [0, 65535], "ant why how now dromio where run'st thou so fast": [0, 65535], "why how now dromio where run'st thou so fast s": [0, 65535], "how now dromio where run'st thou so fast s dro": [0, 65535], "now dromio where run'st thou so fast s dro doe": [0, 65535], "dromio where run'st thou so fast s dro doe you": [0, 65535], "where run'st thou so fast s dro doe you know": [0, 65535], "run'st thou so fast s dro doe you know me": [0, 65535], "thou so fast s dro doe you know me sir": [0, 65535], "so fast s dro doe you know me sir am": [0, 65535], "fast s dro doe you know me sir am i": [0, 65535], "s dro doe you know me sir am i dromio": [0, 65535], "dro doe you know me sir am i dromio am": [0, 65535], "doe you know me sir am i dromio am i": [0, 65535], "you know me sir am i dromio am i your": [0, 65535], "know me sir am i dromio am i your man": [0, 65535], "me sir am i dromio am i your man am": [0, 65535], "sir am i dromio am i your man am i": [0, 65535], "am i dromio am i your man am i my": [0, 65535], "i dromio am i your man am i my selfe": [0, 65535], "dromio am i your man am i my selfe ant": [0, 65535], "am i your man am i my selfe ant thou": [0, 65535], "i your man am i my selfe ant thou art": [0, 65535], "your man am i my selfe ant thou art dromio": [0, 65535], "man am i my selfe ant thou art dromio thou": [0, 65535], "am i my selfe ant thou art dromio thou art": [0, 65535], "i my selfe ant thou art dromio thou art my": [0, 65535], "my selfe ant thou art dromio thou art my man": [0, 65535], "selfe ant thou art dromio thou art my man thou": [0, 65535], "ant thou art dromio thou art my man thou art": [0, 65535], "thou art dromio thou art my man thou art thy": [0, 65535], "art dromio thou art my man thou art thy selfe": [0, 65535], "dromio thou art my man thou art thy selfe dro": [0, 65535], "thou art my man thou art thy selfe dro i": [0, 65535], "art my man thou art thy selfe dro i am": [0, 65535], "my man thou art thy selfe dro i am an": [0, 65535], "man thou art thy selfe dro i am an asse": [0, 65535], "thou art thy selfe dro i am an asse i": [0, 65535], "art thy selfe dro i am an asse i am": [0, 65535], "thy selfe dro i am an asse i am a": [0, 65535], "selfe dro i am an asse i am a womans": [0, 65535], "dro i am an asse i am a womans man": [0, 65535], "i am an asse i am a womans man and": [0, 65535], "am an asse i am a womans man and besides": [0, 65535], "an asse i am a womans man and besides my": [0, 65535], "asse i am a womans man and besides my selfe": [0, 65535], "i am a womans man and besides my selfe ant": [0, 65535], "am a womans man and besides my selfe ant what": [0, 65535], "a womans man and besides my selfe ant what womans": [0, 65535], "womans man and besides my selfe ant what womans man": [0, 65535], "man and besides my selfe ant what womans man and": [0, 65535], "and besides my selfe ant what womans man and how": [0, 65535], "besides my selfe ant what womans man and how besides": [0, 65535], "my selfe ant what womans man and how besides thy": [0, 65535], "selfe ant what womans man and how besides thy selfe": [0, 65535], "ant what womans man and how besides thy selfe dro": [0, 65535], "what womans man and how besides thy selfe dro marrie": [0, 65535], "womans man and how besides thy selfe dro marrie sir": [0, 65535], "man and how besides thy selfe dro marrie sir besides": [0, 65535], "and how besides thy selfe dro marrie sir besides my": [0, 65535], "how besides thy selfe dro marrie sir besides my selfe": [0, 65535], "besides thy selfe dro marrie sir besides my selfe i": [0, 65535], "thy selfe dro marrie sir besides my selfe i am": [0, 65535], "selfe dro marrie sir besides my selfe i am due": [0, 65535], "dro marrie sir besides my selfe i am due to": [0, 65535], "marrie sir besides my selfe i am due to a": [0, 65535], "sir besides my selfe i am due to a woman": [0, 65535], "besides my selfe i am due to a woman one": [0, 65535], "my selfe i am due to a woman one that": [0, 65535], "selfe i am due to a woman one that claimes": [0, 65535], "i am due to a woman one that claimes me": [0, 65535], "am due to a woman one that claimes me one": [0, 65535], "due to a woman one that claimes me one that": [0, 65535], "to a woman one that claimes me one that haunts": [0, 65535], "a woman one that claimes me one that haunts me": [0, 65535], "woman one that claimes me one that haunts me one": [0, 65535], "one that claimes me one that haunts me one that": [0, 65535], "that claimes me one that haunts me one that will": [0, 65535], "claimes me one that haunts me one that will haue": [0, 65535], "me one that haunts me one that will haue me": [0, 65535], "one that haunts me one that will haue me anti": [0, 65535], "that haunts me one that will haue me anti what": [0, 65535], "haunts me one that will haue me anti what claime": [0, 65535], "me one that will haue me anti what claime laies": [0, 65535], "one that will haue me anti what claime laies she": [0, 65535], "that will haue me anti what claime laies she to": [0, 65535], "will haue me anti what claime laies she to thee": [0, 65535], "haue me anti what claime laies she to thee dro": [0, 65535], "me anti what claime laies she to thee dro marry": [0, 65535], "anti what claime laies she to thee dro marry sir": [0, 65535], "what claime laies she to thee dro marry sir such": [0, 65535], "claime laies she to thee dro marry sir such claime": [0, 65535], "laies she to thee dro marry sir such claime as": [0, 65535], "she to thee dro marry sir such claime as you": [0, 65535], "to thee dro marry sir such claime as you would": [0, 65535], "thee dro marry sir such claime as you would lay": [0, 65535], "dro marry sir such claime as you would lay to": [0, 65535], "marry sir such claime as you would lay to your": [0, 65535], "sir such claime as you would lay to your horse": [0, 65535], "such claime as you would lay to your horse and": [0, 65535], "claime as you would lay to your horse and she": [0, 65535], "as you would lay to your horse and she would": [0, 65535], "you would lay to your horse and she would haue": [0, 65535], "would lay to your horse and she would haue me": [0, 65535], "lay to your horse and she would haue me as": [0, 65535], "to your horse and she would haue me as a": [0, 65535], "your horse and she would haue me as a beast": [0, 65535], "horse and she would haue me as a beast not": [0, 65535], "and she would haue me as a beast not that": [0, 65535], "she would haue me as a beast not that i": [0, 65535], "would haue me as a beast not that i beeing": [0, 65535], "haue me as a beast not that i beeing a": [0, 65535], "me as a beast not that i beeing a beast": [0, 65535], "as a beast not that i beeing a beast she": [0, 65535], "a beast not that i beeing a beast she would": [0, 65535], "beast not that i beeing a beast she would haue": [0, 65535], "not that i beeing a beast she would haue me": [0, 65535], "that i beeing a beast she would haue me but": [0, 65535], "i beeing a beast she would haue me but that": [0, 65535], "beeing a beast she would haue me but that she": [0, 65535], "a beast she would haue me but that she being": [0, 65535], "beast she would haue me but that she being a": [0, 65535], "she would haue me but that she being a verie": [0, 65535], "would haue me but that she being a verie beastly": [0, 65535], "haue me but that she being a verie beastly creature": [0, 65535], "me but that she being a verie beastly creature layes": [0, 65535], "but that she being a verie beastly creature layes claime": [0, 65535], "that she being a verie beastly creature layes claime to": [0, 65535], "she being a verie beastly creature layes claime to me": [0, 65535], "being a verie beastly creature layes claime to me anti": [0, 65535], "a verie beastly creature layes claime to me anti what": [0, 65535], "verie beastly creature layes claime to me anti what is": [0, 65535], "beastly creature layes claime to me anti what is she": [0, 65535], "creature layes claime to me anti what is she dro": [0, 65535], "layes claime to me anti what is she dro a": [0, 65535], "claime to me anti what is she dro a very": [0, 65535], "to me anti what is she dro a very reuerent": [0, 65535], "me anti what is she dro a very reuerent body": [0, 65535], "anti what is she dro a very reuerent body i": [0, 65535], "what is she dro a very reuerent body i such": [0, 65535], "is she dro a very reuerent body i such a": [0, 65535], "she dro a very reuerent body i such a one": [0, 65535], "dro a very reuerent body i such a one as": [0, 65535], "a very reuerent body i such a one as a": [0, 65535], "very reuerent body i such a one as a man": [0, 65535], "reuerent body i such a one as a man may": [0, 65535], "body i such a one as a man may not": [0, 65535], "i such a one as a man may not speake": [0, 65535], "such a one as a man may not speake of": [0, 65535], "a one as a man may not speake of without": [0, 65535], "one as a man may not speake of without he": [0, 65535], "as a man may not speake of without he say": [0, 65535], "a man may not speake of without he say sir": [0, 65535], "man may not speake of without he say sir reuerence": [0, 65535], "may not speake of without he say sir reuerence i": [0, 65535], "not speake of without he say sir reuerence i haue": [0, 65535], "speake of without he say sir reuerence i haue but": [0, 65535], "of without he say sir reuerence i haue but leane": [0, 65535], "without he say sir reuerence i haue but leane lucke": [0, 65535], "he say sir reuerence i haue but leane lucke in": [0, 65535], "say sir reuerence i haue but leane lucke in the": [0, 65535], "sir reuerence i haue but leane lucke in the match": [0, 65535], "reuerence i haue but leane lucke in the match and": [0, 65535], "i haue but leane lucke in the match and yet": [0, 65535], "haue but leane lucke in the match and yet is": [0, 65535], "but leane lucke in the match and yet is she": [0, 65535], "leane lucke in the match and yet is she a": [0, 65535], "lucke in the match and yet is she a wondrous": [0, 65535], "in the match and yet is she a wondrous fat": [0, 65535], "the match and yet is she a wondrous fat marriage": [0, 65535], "match and yet is she a wondrous fat marriage anti": [0, 65535], "and yet is she a wondrous fat marriage anti how": [0, 65535], "yet is she a wondrous fat marriage anti how dost": [0, 65535], "is she a wondrous fat marriage anti how dost thou": [0, 65535], "she a wondrous fat marriage anti how dost thou meane": [0, 65535], "a wondrous fat marriage anti how dost thou meane a": [0, 65535], "wondrous fat marriage anti how dost thou meane a fat": [0, 65535], "fat marriage anti how dost thou meane a fat marriage": [0, 65535], "marriage anti how dost thou meane a fat marriage dro": [0, 65535], "anti how dost thou meane a fat marriage dro marry": [0, 65535], "how dost thou meane a fat marriage dro marry sir": [0, 65535], "dost thou meane a fat marriage dro marry sir she's": [0, 65535], "thou meane a fat marriage dro marry sir she's the": [0, 65535], "meane a fat marriage dro marry sir she's the kitchin": [0, 65535], "a fat marriage dro marry sir she's the kitchin wench": [0, 65535], "fat marriage dro marry sir she's the kitchin wench al": [0, 65535], "marriage dro marry sir she's the kitchin wench al grease": [0, 65535], "dro marry sir she's the kitchin wench al grease and": [0, 65535], "marry sir she's the kitchin wench al grease and i": [0, 65535], "sir she's the kitchin wench al grease and i know": [0, 65535], "she's the kitchin wench al grease and i know not": [0, 65535], "the kitchin wench al grease and i know not what": [0, 65535], "kitchin wench al grease and i know not what vse": [0, 65535], "wench al grease and i know not what vse to": [0, 65535], "al grease and i know not what vse to put": [0, 65535], "grease and i know not what vse to put her": [0, 65535], "and i know not what vse to put her too": [0, 65535], "i know not what vse to put her too but": [0, 65535], "know not what vse to put her too but to": [0, 65535], "not what vse to put her too but to make": [0, 65535], "what vse to put her too but to make a": [0, 65535], "vse to put her too but to make a lampe": [0, 65535], "to put her too but to make a lampe of": [0, 65535], "put her too but to make a lampe of her": [0, 65535], "her too but to make a lampe of her and": [0, 65535], "too but to make a lampe of her and run": [0, 65535], "but to make a lampe of her and run from": [0, 65535], "to make a lampe of her and run from her": [0, 65535], "make a lampe of her and run from her by": [0, 65535], "a lampe of her and run from her by her": [0, 65535], "lampe of her and run from her by her owne": [0, 65535], "of her and run from her by her owne light": [0, 65535], "her and run from her by her owne light i": [0, 65535], "and run from her by her owne light i warrant": [0, 65535], "run from her by her owne light i warrant her": [0, 65535], "from her by her owne light i warrant her ragges": [0, 65535], "her by her owne light i warrant her ragges and": [0, 65535], "by her owne light i warrant her ragges and the": [0, 65535], "her owne light i warrant her ragges and the tallow": [0, 65535], "owne light i warrant her ragges and the tallow in": [0, 65535], "light i warrant her ragges and the tallow in them": [0, 65535], "i warrant her ragges and the tallow in them will": [0, 65535], "warrant her ragges and the tallow in them will burne": [0, 65535], "her ragges and the tallow in them will burne a": [0, 65535], "ragges and the tallow in them will burne a poland": [0, 65535], "and the tallow in them will burne a poland winter": [0, 65535], "the tallow in them will burne a poland winter if": [0, 65535], "tallow in them will burne a poland winter if she": [0, 65535], "in them will burne a poland winter if she liues": [0, 65535], "them will burne a poland winter if she liues till": [0, 65535], "will burne a poland winter if she liues till doomesday": [0, 65535], "burne a poland winter if she liues till doomesday she'l": [0, 65535], "a poland winter if she liues till doomesday she'l burne": [0, 65535], "poland winter if she liues till doomesday she'l burne a": [0, 65535], "winter if she liues till doomesday she'l burne a weeke": [0, 65535], "if she liues till doomesday she'l burne a weeke longer": [0, 65535], "she liues till doomesday she'l burne a weeke longer then": [0, 65535], "liues till doomesday she'l burne a weeke longer then the": [0, 65535], "till doomesday she'l burne a weeke longer then the whole": [0, 65535], "doomesday she'l burne a weeke longer then the whole world": [0, 65535], "she'l burne a weeke longer then the whole world anti": [0, 65535], "burne a weeke longer then the whole world anti what": [0, 65535], "a weeke longer then the whole world anti what complexion": [0, 65535], "weeke longer then the whole world anti what complexion is": [0, 65535], "longer then the whole world anti what complexion is she": [0, 65535], "then the whole world anti what complexion is she of": [0, 65535], "the whole world anti what complexion is she of dro": [0, 65535], "whole world anti what complexion is she of dro swart": [0, 65535], "world anti what complexion is she of dro swart like": [0, 65535], "anti what complexion is she of dro swart like my": [0, 65535], "what complexion is she of dro swart like my shoo": [0, 65535], "complexion is she of dro swart like my shoo but": [0, 65535], "is she of dro swart like my shoo but her": [0, 65535], "she of dro swart like my shoo but her face": [0, 65535], "of dro swart like my shoo but her face nothing": [0, 65535], "dro swart like my shoo but her face nothing like": [0, 65535], "swart like my shoo but her face nothing like so": [0, 65535], "like my shoo but her face nothing like so cleane": [0, 65535], "my shoo but her face nothing like so cleane kept": [0, 65535], "shoo but her face nothing like so cleane kept for": [0, 65535], "but her face nothing like so cleane kept for why": [0, 65535], "her face nothing like so cleane kept for why she": [0, 65535], "face nothing like so cleane kept for why she sweats": [0, 65535], "nothing like so cleane kept for why she sweats a": [0, 65535], "like so cleane kept for why she sweats a man": [0, 65535], "so cleane kept for why she sweats a man may": [0, 65535], "cleane kept for why she sweats a man may goe": [0, 65535], "kept for why she sweats a man may goe o": [0, 65535], "for why she sweats a man may goe o uer": [0, 65535], "why she sweats a man may goe o uer shooes": [0, 65535], "she sweats a man may goe o uer shooes in": [0, 65535], "sweats a man may goe o uer shooes in the": [0, 65535], "a man may goe o uer shooes in the grime": [0, 65535], "man may goe o uer shooes in the grime of": [0, 65535], "may goe o uer shooes in the grime of it": [0, 65535], "goe o uer shooes in the grime of it anti": [0, 65535], "o uer shooes in the grime of it anti that's": [0, 65535], "uer shooes in the grime of it anti that's a": [0, 65535], "shooes in the grime of it anti that's a fault": [0, 65535], "in the grime of it anti that's a fault that": [0, 65535], "the grime of it anti that's a fault that water": [0, 65535], "grime of it anti that's a fault that water will": [0, 65535], "of it anti that's a fault that water will mend": [0, 65535], "it anti that's a fault that water will mend dro": [0, 65535], "anti that's a fault that water will mend dro no": [0, 65535], "that's a fault that water will mend dro no sir": [0, 65535], "a fault that water will mend dro no sir 'tis": [0, 65535], "fault that water will mend dro no sir 'tis in": [0, 65535], "that water will mend dro no sir 'tis in graine": [0, 65535], "water will mend dro no sir 'tis in graine noahs": [0, 65535], "will mend dro no sir 'tis in graine noahs flood": [0, 65535], "mend dro no sir 'tis in graine noahs flood could": [0, 65535], "dro no sir 'tis in graine noahs flood could not": [0, 65535], "no sir 'tis in graine noahs flood could not do": [0, 65535], "sir 'tis in graine noahs flood could not do it": [0, 65535], "'tis in graine noahs flood could not do it anti": [0, 65535], "in graine noahs flood could not do it anti what's": [0, 65535], "graine noahs flood could not do it anti what's her": [0, 65535], "noahs flood could not do it anti what's her name": [0, 65535], "flood could not do it anti what's her name dro": [0, 65535], "could not do it anti what's her name dro nell": [0, 65535], "not do it anti what's her name dro nell sir": [0, 65535], "do it anti what's her name dro nell sir but": [0, 65535], "it anti what's her name dro nell sir but her": [0, 65535], "anti what's her name dro nell sir but her name": [0, 65535], "what's her name dro nell sir but her name is": [0, 65535], "her name dro nell sir but her name is three": [0, 65535], "name dro nell sir but her name is three quarters": [0, 65535], "dro nell sir but her name is three quarters that's": [0, 65535], "nell sir but her name is three quarters that's an": [0, 65535], "sir but her name is three quarters that's an ell": [0, 65535], "but her name is three quarters that's an ell and": [0, 65535], "her name is three quarters that's an ell and three": [0, 65535], "name is three quarters that's an ell and three quarters": [0, 65535], "is three quarters that's an ell and three quarters will": [0, 65535], "three quarters that's an ell and three quarters will not": [0, 65535], "quarters that's an ell and three quarters will not measure": [0, 65535], "that's an ell and three quarters will not measure her": [0, 65535], "an ell and three quarters will not measure her from": [0, 65535], "ell and three quarters will not measure her from hip": [0, 65535], "and three quarters will not measure her from hip to": [0, 65535], "three quarters will not measure her from hip to hip": [0, 65535], "quarters will not measure her from hip to hip anti": [0, 65535], "will not measure her from hip to hip anti then": [0, 65535], "not measure her from hip to hip anti then she": [0, 65535], "measure her from hip to hip anti then she beares": [0, 65535], "her from hip to hip anti then she beares some": [0, 65535], "from hip to hip anti then she beares some bredth": [0, 65535], "hip to hip anti then she beares some bredth dro": [0, 65535], "to hip anti then she beares some bredth dro no": [0, 65535], "hip anti then she beares some bredth dro no longer": [0, 65535], "anti then she beares some bredth dro no longer from": [0, 65535], "then she beares some bredth dro no longer from head": [0, 65535], "she beares some bredth dro no longer from head to": [0, 65535], "beares some bredth dro no longer from head to foot": [0, 65535], "some bredth dro no longer from head to foot then": [0, 65535], "bredth dro no longer from head to foot then from": [0, 65535], "dro no longer from head to foot then from hippe": [0, 65535], "no longer from head to foot then from hippe to": [0, 65535], "longer from head to foot then from hippe to hippe": [0, 65535], "from head to foot then from hippe to hippe she": [0, 65535], "head to foot then from hippe to hippe she is": [0, 65535], "to foot then from hippe to hippe she is sphericall": [0, 65535], "foot then from hippe to hippe she is sphericall like": [0, 65535], "then from hippe to hippe she is sphericall like a": [0, 65535], "from hippe to hippe she is sphericall like a globe": [0, 65535], "hippe to hippe she is sphericall like a globe i": [0, 65535], "to hippe she is sphericall like a globe i could": [0, 65535], "hippe she is sphericall like a globe i could find": [0, 65535], "she is sphericall like a globe i could find out": [0, 65535], "is sphericall like a globe i could find out countries": [0, 65535], "sphericall like a globe i could find out countries in": [0, 65535], "like a globe i could find out countries in her": [0, 65535], "a globe i could find out countries in her anti": [0, 65535], "globe i could find out countries in her anti in": [0, 65535], "i could find out countries in her anti in what": [0, 65535], "could find out countries in her anti in what part": [0, 65535], "find out countries in her anti in what part of": [0, 65535], "out countries in her anti in what part of her": [0, 65535], "countries in her anti in what part of her body": [0, 65535], "in her anti in what part of her body stands": [0, 65535], "her anti in what part of her body stands ireland": [0, 65535], "anti in what part of her body stands ireland dro": [0, 65535], "in what part of her body stands ireland dro marry": [0, 65535], "what part of her body stands ireland dro marry sir": [0, 65535], "part of her body stands ireland dro marry sir in": [0, 65535], "of her body stands ireland dro marry sir in her": [0, 65535], "her body stands ireland dro marry sir in her buttockes": [0, 65535], "body stands ireland dro marry sir in her buttockes i": [0, 65535], "stands ireland dro marry sir in her buttockes i found": [0, 65535], "ireland dro marry sir in her buttockes i found it": [0, 65535], "dro marry sir in her buttockes i found it out": [0, 65535], "marry sir in her buttockes i found it out by": [0, 65535], "sir in her buttockes i found it out by the": [0, 65535], "in her buttockes i found it out by the bogges": [0, 65535], "her buttockes i found it out by the bogges ant": [0, 65535], "buttockes i found it out by the bogges ant where": [0, 65535], "i found it out by the bogges ant where scotland": [0, 65535], "found it out by the bogges ant where scotland dro": [0, 65535], "it out by the bogges ant where scotland dro i": [0, 65535], "out by the bogges ant where scotland dro i found": [0, 65535], "by the bogges ant where scotland dro i found it": [0, 65535], "the bogges ant where scotland dro i found it by": [0, 65535], "bogges ant where scotland dro i found it by the": [0, 65535], "ant where scotland dro i found it by the barrennesse": [0, 65535], "where scotland dro i found it by the barrennesse hard": [0, 65535], "scotland dro i found it by the barrennesse hard in": [0, 65535], "dro i found it by the barrennesse hard in the": [0, 65535], "i found it by the barrennesse hard in the palme": [0, 65535], "found it by the barrennesse hard in the palme of": [0, 65535], "it by the barrennesse hard in the palme of the": [0, 65535], "by the barrennesse hard in the palme of the hand": [0, 65535], "the barrennesse hard in the palme of the hand ant": [0, 65535], "barrennesse hard in the palme of the hand ant where": [0, 65535], "hard in the palme of the hand ant where france": [0, 65535], "in the palme of the hand ant where france dro": [0, 65535], "the palme of the hand ant where france dro in": [0, 65535], "palme of the hand ant where france dro in her": [0, 65535], "of the hand ant where france dro in her forhead": [0, 65535], "the hand ant where france dro in her forhead arm'd": [0, 65535], "hand ant where france dro in her forhead arm'd and": [0, 65535], "ant where france dro in her forhead arm'd and reuerted": [0, 65535], "where france dro in her forhead arm'd and reuerted making": [0, 65535], "france dro in her forhead arm'd and reuerted making warre": [0, 65535], "dro in her forhead arm'd and reuerted making warre against": [0, 65535], "in her forhead arm'd and reuerted making warre against her": [0, 65535], "her forhead arm'd and reuerted making warre against her heire": [0, 65535], "forhead arm'd and reuerted making warre against her heire ant": [0, 65535], "arm'd and reuerted making warre against her heire ant where": [0, 65535], "and reuerted making warre against her heire ant where england": [0, 65535], "reuerted making warre against her heire ant where england dro": [0, 65535], "making warre against her heire ant where england dro i": [0, 65535], "warre against her heire ant where england dro i look'd": [0, 65535], "against her heire ant where england dro i look'd for": [0, 65535], "her heire ant where england dro i look'd for the": [0, 65535], "heire ant where england dro i look'd for the chalkle": [0, 65535], "ant where england dro i look'd for the chalkle cliffes": [0, 65535], "where england dro i look'd for the chalkle cliffes but": [0, 65535], "england dro i look'd for the chalkle cliffes but i": [0, 65535], "dro i look'd for the chalkle cliffes but i could": [0, 65535], "i look'd for the chalkle cliffes but i could find": [0, 65535], "look'd for the chalkle cliffes but i could find no": [0, 65535], "for the chalkle cliffes but i could find no whitenesse": [0, 65535], "the chalkle cliffes but i could find no whitenesse in": [0, 65535], "chalkle cliffes but i could find no whitenesse in them": [0, 65535], "cliffes but i could find no whitenesse in them but": [0, 65535], "but i could find no whitenesse in them but i": [0, 65535], "i could find no whitenesse in them but i guesse": [0, 65535], "could find no whitenesse in them but i guesse it": [0, 65535], "find no whitenesse in them but i guesse it stood": [0, 65535], "no whitenesse in them but i guesse it stood in": [0, 65535], "whitenesse in them but i guesse it stood in her": [0, 65535], "in them but i guesse it stood in her chin": [0, 65535], "them but i guesse it stood in her chin by": [0, 65535], "but i guesse it stood in her chin by the": [0, 65535], "i guesse it stood in her chin by the salt": [0, 65535], "guesse it stood in her chin by the salt rheume": [0, 65535], "it stood in her chin by the salt rheume that": [0, 65535], "stood in her chin by the salt rheume that ranne": [0, 65535], "in her chin by the salt rheume that ranne betweene": [0, 65535], "her chin by the salt rheume that ranne betweene france": [0, 65535], "chin by the salt rheume that ranne betweene france and": [0, 65535], "by the salt rheume that ranne betweene france and it": [0, 65535], "the salt rheume that ranne betweene france and it ant": [0, 65535], "salt rheume that ranne betweene france and it ant where": [0, 65535], "rheume that ranne betweene france and it ant where spaine": [0, 65535], "that ranne betweene france and it ant where spaine dro": [0, 65535], "ranne betweene france and it ant where spaine dro faith": [0, 65535], "betweene france and it ant where spaine dro faith i": [0, 65535], "france and it ant where spaine dro faith i saw": [0, 65535], "and it ant where spaine dro faith i saw it": [0, 65535], "it ant where spaine dro faith i saw it not": [0, 65535], "ant where spaine dro faith i saw it not but": [0, 65535], "where spaine dro faith i saw it not but i": [0, 65535], "spaine dro faith i saw it not but i felt": [0, 65535], "dro faith i saw it not but i felt it": [0, 65535], "faith i saw it not but i felt it hot": [0, 65535], "i saw it not but i felt it hot in": [0, 65535], "saw it not but i felt it hot in her": [0, 65535], "it not but i felt it hot in her breth": [0, 65535], "not but i felt it hot in her breth ant": [0, 65535], "but i felt it hot in her breth ant where": [0, 65535], "i felt it hot in her breth ant where america": [0, 65535], "felt it hot in her breth ant where america the": [0, 65535], "it hot in her breth ant where america the indies": [0, 65535], "hot in her breth ant where america the indies dro": [0, 65535], "in her breth ant where america the indies dro oh": [0, 65535], "her breth ant where america the indies dro oh sir": [0, 65535], "breth ant where america the indies dro oh sir vpon": [0, 65535], "ant where america the indies dro oh sir vpon her": [0, 65535], "where america the indies dro oh sir vpon her nose": [0, 65535], "america the indies dro oh sir vpon her nose all": [0, 65535], "the indies dro oh sir vpon her nose all ore": [0, 65535], "indies dro oh sir vpon her nose all ore embellished": [0, 65535], "dro oh sir vpon her nose all ore embellished with": [0, 65535], "oh sir vpon her nose all ore embellished with rubies": [0, 65535], "sir vpon her nose all ore embellished with rubies carbuncles": [0, 65535], "vpon her nose all ore embellished with rubies carbuncles saphires": [0, 65535], "her nose all ore embellished with rubies carbuncles saphires declining": [0, 65535], "nose all ore embellished with rubies carbuncles saphires declining their": [0, 65535], "all ore embellished with rubies carbuncles saphires declining their rich": [0, 65535], "ore embellished with rubies carbuncles saphires declining their rich aspect": [0, 65535], "embellished with rubies carbuncles saphires declining their rich aspect to": [0, 65535], "with rubies carbuncles saphires declining their rich aspect to the": [0, 65535], "rubies carbuncles saphires declining their rich aspect to the hot": [0, 65535], "carbuncles saphires declining their rich aspect to the hot breath": [0, 65535], "saphires declining their rich aspect to the hot breath of": [0, 65535], "declining their rich aspect to the hot breath of spaine": [0, 65535], "their rich aspect to the hot breath of spaine who": [0, 65535], "rich aspect to the hot breath of spaine who sent": [0, 65535], "aspect to the hot breath of spaine who sent whole": [0, 65535], "to the hot breath of spaine who sent whole armadoes": [0, 65535], "the hot breath of spaine who sent whole armadoes of": [0, 65535], "hot breath of spaine who sent whole armadoes of carrects": [0, 65535], "breath of spaine who sent whole armadoes of carrects to": [0, 65535], "of spaine who sent whole armadoes of carrects to be": [0, 65535], "spaine who sent whole armadoes of carrects to be ballast": [0, 65535], "who sent whole armadoes of carrects to be ballast at": [0, 65535], "sent whole armadoes of carrects to be ballast at her": [0, 65535], "whole armadoes of carrects to be ballast at her nose": [0, 65535], "armadoes of carrects to be ballast at her nose anti": [0, 65535], "of carrects to be ballast at her nose anti where": [0, 65535], "carrects to be ballast at her nose anti where stood": [0, 65535], "to be ballast at her nose anti where stood belgia": [0, 65535], "be ballast at her nose anti where stood belgia the": [0, 65535], "ballast at her nose anti where stood belgia the netherlands": [0, 65535], "at her nose anti where stood belgia the netherlands dro": [0, 65535], "her nose anti where stood belgia the netherlands dro oh": [0, 65535], "nose anti where stood belgia the netherlands dro oh sir": [0, 65535], "anti where stood belgia the netherlands dro oh sir i": [0, 65535], "where stood belgia the netherlands dro oh sir i did": [0, 65535], "stood belgia the netherlands dro oh sir i did not": [0, 65535], "belgia the netherlands dro oh sir i did not looke": [0, 65535], "the netherlands dro oh sir i did not looke so": [0, 65535], "netherlands dro oh sir i did not looke so low": [0, 65535], "dro oh sir i did not looke so low to": [0, 65535], "oh sir i did not looke so low to conclude": [0, 65535], "sir i did not looke so low to conclude this": [0, 65535], "i did not looke so low to conclude this drudge": [0, 65535], "did not looke so low to conclude this drudge or": [0, 65535], "not looke so low to conclude this drudge or diuiner": [0, 65535], "looke so low to conclude this drudge or diuiner layd": [0, 65535], "so low to conclude this drudge or diuiner layd claime": [0, 65535], "low to conclude this drudge or diuiner layd claime to": [0, 65535], "to conclude this drudge or diuiner layd claime to mee": [0, 65535], "conclude this drudge or diuiner layd claime to mee call'd": [0, 65535], "this drudge or diuiner layd claime to mee call'd mee": [0, 65535], "drudge or diuiner layd claime to mee call'd mee dromio": [0, 65535], "or diuiner layd claime to mee call'd mee dromio swore": [0, 65535], "diuiner layd claime to mee call'd mee dromio swore i": [0, 65535], "layd claime to mee call'd mee dromio swore i was": [0, 65535], "claime to mee call'd mee dromio swore i was assur'd": [0, 65535], "to mee call'd mee dromio swore i was assur'd to": [0, 65535], "mee call'd mee dromio swore i was assur'd to her": [0, 65535], "call'd mee dromio swore i was assur'd to her told": [0, 65535], "mee dromio swore i was assur'd to her told me": [0, 65535], "dromio swore i was assur'd to her told me what": [0, 65535], "swore i was assur'd to her told me what priuie": [0, 65535], "i was assur'd to her told me what priuie markes": [0, 65535], "was assur'd to her told me what priuie markes i": [0, 65535], "assur'd to her told me what priuie markes i had": [0, 65535], "to her told me what priuie markes i had about": [0, 65535], "her told me what priuie markes i had about mee": [0, 65535], "told me what priuie markes i had about mee as": [0, 65535], "me what priuie markes i had about mee as the": [0, 65535], "what priuie markes i had about mee as the marke": [0, 65535], "priuie markes i had about mee as the marke of": [0, 65535], "markes i had about mee as the marke of my": [0, 65535], "i had about mee as the marke of my shoulder": [0, 65535], "had about mee as the marke of my shoulder the": [0, 65535], "about mee as the marke of my shoulder the mole": [0, 65535], "mee as the marke of my shoulder the mole in": [0, 65535], "as the marke of my shoulder the mole in my": [0, 65535], "the marke of my shoulder the mole in my necke": [0, 65535], "marke of my shoulder the mole in my necke the": [0, 65535], "of my shoulder the mole in my necke the great": [0, 65535], "my shoulder the mole in my necke the great wart": [0, 65535], "shoulder the mole in my necke the great wart on": [0, 65535], "the mole in my necke the great wart on my": [0, 65535], "mole in my necke the great wart on my left": [0, 65535], "in my necke the great wart on my left arme": [0, 65535], "my necke the great wart on my left arme that": [0, 65535], "necke the great wart on my left arme that i": [0, 65535], "the great wart on my left arme that i amaz'd": [0, 65535], "great wart on my left arme that i amaz'd ranne": [0, 65535], "wart on my left arme that i amaz'd ranne from": [0, 65535], "on my left arme that i amaz'd ranne from her": [0, 65535], "my left arme that i amaz'd ranne from her as": [0, 65535], "left arme that i amaz'd ranne from her as a": [0, 65535], "arme that i amaz'd ranne from her as a witch": [0, 65535], "that i amaz'd ranne from her as a witch and": [0, 65535], "i amaz'd ranne from her as a witch and i": [0, 65535], "amaz'd ranne from her as a witch and i thinke": [0, 65535], "ranne from her as a witch and i thinke if": [0, 65535], "from her as a witch and i thinke if my": [0, 65535], "her as a witch and i thinke if my brest": [0, 65535], "as a witch and i thinke if my brest had": [0, 65535], "a witch and i thinke if my brest had not": [0, 65535], "witch and i thinke if my brest had not beene": [0, 65535], "and i thinke if my brest had not beene made": [0, 65535], "i thinke if my brest had not beene made of": [0, 65535], "thinke if my brest had not beene made of faith": [0, 65535], "if my brest had not beene made of faith and": [0, 65535], "my brest had not beene made of faith and my": [0, 65535], "brest had not beene made of faith and my heart": [0, 65535], "had not beene made of faith and my heart of": [0, 65535], "not beene made of faith and my heart of steele": [0, 65535], "beene made of faith and my heart of steele she": [0, 65535], "made of faith and my heart of steele she had": [0, 65535], "of faith and my heart of steele she had transform'd": [0, 65535], "faith and my heart of steele she had transform'd me": [0, 65535], "and my heart of steele she had transform'd me to": [0, 65535], "my heart of steele she had transform'd me to a": [0, 65535], "heart of steele she had transform'd me to a curtull": [0, 65535], "of steele she had transform'd me to a curtull dog": [0, 65535], "steele she had transform'd me to a curtull dog made": [0, 65535], "she had transform'd me to a curtull dog made me": [0, 65535], "had transform'd me to a curtull dog made me turne": [0, 65535], "transform'd me to a curtull dog made me turne i'th": [0, 65535], "me to a curtull dog made me turne i'th wheele": [0, 65535], "to a curtull dog made me turne i'th wheele anti": [0, 65535], "a curtull dog made me turne i'th wheele anti go": [0, 65535], "curtull dog made me turne i'th wheele anti go hie": [0, 65535], "dog made me turne i'th wheele anti go hie thee": [0, 65535], "made me turne i'th wheele anti go hie thee presently": [0, 65535], "me turne i'th wheele anti go hie thee presently post": [0, 65535], "turne i'th wheele anti go hie thee presently post to": [0, 65535], "i'th wheele anti go hie thee presently post to the": [0, 65535], "wheele anti go hie thee presently post to the rode": [0, 65535], "anti go hie thee presently post to the rode and": [0, 65535], "go hie thee presently post to the rode and if": [0, 65535], "hie thee presently post to the rode and if the": [0, 65535], "thee presently post to the rode and if the winde": [0, 65535], "presently post to the rode and if the winde blow": [0, 65535], "post to the rode and if the winde blow any": [0, 65535], "to the rode and if the winde blow any way": [0, 65535], "the rode and if the winde blow any way from": [0, 65535], "rode and if the winde blow any way from shore": [0, 65535], "and if the winde blow any way from shore i": [0, 65535], "if the winde blow any way from shore i will": [0, 65535], "the winde blow any way from shore i will not": [0, 65535], "winde blow any way from shore i will not harbour": [0, 65535], "blow any way from shore i will not harbour in": [0, 65535], "any way from shore i will not harbour in this": [0, 65535], "way from shore i will not harbour in this towne": [0, 65535], "from shore i will not harbour in this towne to": [0, 65535], "shore i will not harbour in this towne to night": [0, 65535], "i will not harbour in this towne to night if": [0, 65535], "will not harbour in this towne to night if any": [0, 65535], "not harbour in this towne to night if any barke": [0, 65535], "harbour in this towne to night if any barke put": [0, 65535], "in this towne to night if any barke put forth": [0, 65535], "this towne to night if any barke put forth come": [0, 65535], "towne to night if any barke put forth come to": [0, 65535], "to night if any barke put forth come to the": [0, 65535], "night if any barke put forth come to the mart": [0, 65535], "if any barke put forth come to the mart where": [0, 65535], "any barke put forth come to the mart where i": [0, 65535], "barke put forth come to the mart where i will": [0, 65535], "put forth come to the mart where i will walke": [0, 65535], "forth come to the mart where i will walke till": [0, 65535], "come to the mart where i will walke till thou": [0, 65535], "to the mart where i will walke till thou returne": [0, 65535], "the mart where i will walke till thou returne to": [0, 65535], "mart where i will walke till thou returne to me": [0, 65535], "where i will walke till thou returne to me if": [0, 65535], "i will walke till thou returne to me if euerie": [0, 65535], "will walke till thou returne to me if euerie one": [0, 65535], "walke till thou returne to me if euerie one knowes": [0, 65535], "till thou returne to me if euerie one knowes vs": [0, 65535], "thou returne to me if euerie one knowes vs and": [0, 65535], "returne to me if euerie one knowes vs and we": [0, 65535], "to me if euerie one knowes vs and we know": [0, 65535], "me if euerie one knowes vs and we know none": [0, 65535], "if euerie one knowes vs and we know none 'tis": [0, 65535], "euerie one knowes vs and we know none 'tis time": [0, 65535], "one knowes vs and we know none 'tis time i": [0, 65535], "knowes vs and we know none 'tis time i thinke": [0, 65535], "vs and we know none 'tis time i thinke to": [0, 65535], "and we know none 'tis time i thinke to trudge": [0, 65535], "we know none 'tis time i thinke to trudge packe": [0, 65535], "know none 'tis time i thinke to trudge packe and": [0, 65535], "none 'tis time i thinke to trudge packe and be": [0, 65535], "'tis time i thinke to trudge packe and be gone": [0, 65535], "time i thinke to trudge packe and be gone dro": [0, 65535], "i thinke to trudge packe and be gone dro as": [0, 65535], "thinke to trudge packe and be gone dro as from": [0, 65535], "to trudge packe and be gone dro as from a": [0, 65535], "trudge packe and be gone dro as from a beare": [0, 65535], "packe and be gone dro as from a beare a": [0, 65535], "and be gone dro as from a beare a man": [0, 65535], "be gone dro as from a beare a man would": [0, 65535], "gone dro as from a beare a man would run": [0, 65535], "dro as from a beare a man would run for": [0, 65535], "as from a beare a man would run for life": [0, 65535], "from a beare a man would run for life so": [0, 65535], "a beare a man would run for life so flie": [0, 65535], "beare a man would run for life so flie i": [0, 65535], "a man would run for life so flie i from": [0, 65535], "man would run for life so flie i from her": [0, 65535], "would run for life so flie i from her that": [0, 65535], "run for life so flie i from her that would": [0, 65535], "for life so flie i from her that would be": [0, 65535], "life so flie i from her that would be my": [0, 65535], "so flie i from her that would be my wife": [0, 65535], "flie i from her that would be my wife exit": [0, 65535], "i from her that would be my wife exit anti": [0, 65535], "from her that would be my wife exit anti there's": [0, 65535], "her that would be my wife exit anti there's none": [0, 65535], "that would be my wife exit anti there's none but": [0, 65535], "would be my wife exit anti there's none but witches": [0, 65535], "be my wife exit anti there's none but witches do": [0, 65535], "my wife exit anti there's none but witches do inhabite": [0, 65535], "wife exit anti there's none but witches do inhabite heere": [0, 65535], "exit anti there's none but witches do inhabite heere and": [0, 65535], "anti there's none but witches do inhabite heere and therefore": [0, 65535], "there's none but witches do inhabite heere and therefore 'tis": [0, 65535], "none but witches do inhabite heere and therefore 'tis hie": [0, 65535], "but witches do inhabite heere and therefore 'tis hie time": [0, 65535], "witches do inhabite heere and therefore 'tis hie time that": [0, 65535], "do inhabite heere and therefore 'tis hie time that i": [0, 65535], "inhabite heere and therefore 'tis hie time that i were": [0, 65535], "heere and therefore 'tis hie time that i were hence": [0, 65535], "and therefore 'tis hie time that i were hence she": [0, 65535], "therefore 'tis hie time that i were hence she that": [0, 65535], "'tis hie time that i were hence she that doth": [0, 65535], "hie time that i were hence she that doth call": [0, 65535], "time that i were hence she that doth call me": [0, 65535], "that i were hence she that doth call me husband": [0, 65535], "i were hence she that doth call me husband euen": [0, 65535], "were hence she that doth call me husband euen my": [0, 65535], "hence she that doth call me husband euen my soule": [0, 65535], "she that doth call me husband euen my soule doth": [0, 65535], "that doth call me husband euen my soule doth for": [0, 65535], "doth call me husband euen my soule doth for a": [0, 65535], "call me husband euen my soule doth for a wife": [0, 65535], "me husband euen my soule doth for a wife abhorre": [0, 65535], "husband euen my soule doth for a wife abhorre but": [0, 65535], "euen my soule doth for a wife abhorre but her": [0, 65535], "my soule doth for a wife abhorre but her faire": [0, 65535], "soule doth for a wife abhorre but her faire sister": [0, 65535], "doth for a wife abhorre but her faire sister possest": [0, 65535], "for a wife abhorre but her faire sister possest with": [0, 65535], "a wife abhorre but her faire sister possest with such": [0, 65535], "wife abhorre but her faire sister possest with such a": [0, 65535], "abhorre but her faire sister possest with such a gentle": [0, 65535], "but her faire sister possest with such a gentle soueraigne": [0, 65535], "her faire sister possest with such a gentle soueraigne grace": [0, 65535], "faire sister possest with such a gentle soueraigne grace of": [0, 65535], "sister possest with such a gentle soueraigne grace of such": [0, 65535], "possest with such a gentle soueraigne grace of such inchanting": [0, 65535], "with such a gentle soueraigne grace of such inchanting presence": [0, 65535], "such a gentle soueraigne grace of such inchanting presence and": [0, 65535], "a gentle soueraigne grace of such inchanting presence and discourse": [0, 65535], "gentle soueraigne grace of such inchanting presence and discourse hath": [0, 65535], "soueraigne grace of such inchanting presence and discourse hath almost": [0, 65535], "grace of such inchanting presence and discourse hath almost made": [0, 65535], "of such inchanting presence and discourse hath almost made me": [0, 65535], "such inchanting presence and discourse hath almost made me traitor": [0, 65535], "inchanting presence and discourse hath almost made me traitor to": [0, 65535], "presence and discourse hath almost made me traitor to my": [0, 65535], "and discourse hath almost made me traitor to my selfe": [0, 65535], "discourse hath almost made me traitor to my selfe but": [0, 65535], "hath almost made me traitor to my selfe but least": [0, 65535], "almost made me traitor to my selfe but least my": [0, 65535], "made me traitor to my selfe but least my selfe": [0, 65535], "me traitor to my selfe but least my selfe be": [0, 65535], "traitor to my selfe but least my selfe be guilty": [0, 65535], "to my selfe but least my selfe be guilty to": [0, 65535], "my selfe but least my selfe be guilty to selfe": [0, 65535], "selfe but least my selfe be guilty to selfe wrong": [0, 65535], "but least my selfe be guilty to selfe wrong ile": [0, 65535], "least my selfe be guilty to selfe wrong ile stop": [0, 65535], "my selfe be guilty to selfe wrong ile stop mine": [0, 65535], "selfe be guilty to selfe wrong ile stop mine eares": [0, 65535], "be guilty to selfe wrong ile stop mine eares against": [0, 65535], "guilty to selfe wrong ile stop mine eares against the": [0, 65535], "to selfe wrong ile stop mine eares against the mermaids": [0, 65535], "selfe wrong ile stop mine eares against the mermaids song": [0, 65535], "wrong ile stop mine eares against the mermaids song enter": [0, 65535], "ile stop mine eares against the mermaids song enter angelo": [0, 65535], "stop mine eares against the mermaids song enter angelo with": [0, 65535], "mine eares against the mermaids song enter angelo with the": [0, 65535], "eares against the mermaids song enter angelo with the chaine": [0, 65535], "against the mermaids song enter angelo with the chaine ang": [0, 65535], "the mermaids song enter angelo with the chaine ang mr": [0, 65535], "mermaids song enter angelo with the chaine ang mr antipholus": [0, 65535], "song enter angelo with the chaine ang mr antipholus anti": [0, 65535], "enter angelo with the chaine ang mr antipholus anti i": [0, 65535], "angelo with the chaine ang mr antipholus anti i that's": [0, 65535], "with the chaine ang mr antipholus anti i that's my": [0, 65535], "the chaine ang mr antipholus anti i that's my name": [0, 65535], "chaine ang mr antipholus anti i that's my name ang": [0, 65535], "ang mr antipholus anti i that's my name ang i": [0, 65535], "mr antipholus anti i that's my name ang i know": [0, 65535], "antipholus anti i that's my name ang i know it": [0, 65535], "anti i that's my name ang i know it well": [0, 65535], "i that's my name ang i know it well sir": [0, 65535], "that's my name ang i know it well sir loe": [0, 65535], "my name ang i know it well sir loe here's": [0, 65535], "name ang i know it well sir loe here's the": [0, 65535], "ang i know it well sir loe here's the chaine": [0, 65535], "i know it well sir loe here's the chaine i": [0, 65535], "know it well sir loe here's the chaine i thought": [0, 65535], "it well sir loe here's the chaine i thought to": [0, 65535], "well sir loe here's the chaine i thought to haue": [0, 65535], "sir loe here's the chaine i thought to haue tane": [0, 65535], "loe here's the chaine i thought to haue tane you": [0, 65535], "here's the chaine i thought to haue tane you at": [0, 65535], "the chaine i thought to haue tane you at the": [0, 65535], "chaine i thought to haue tane you at the porpentine": [0, 65535], "i thought to haue tane you at the porpentine the": [0, 65535], "thought to haue tane you at the porpentine the chaine": [0, 65535], "to haue tane you at the porpentine the chaine vnfinish'd": [0, 65535], "haue tane you at the porpentine the chaine vnfinish'd made": [0, 65535], "tane you at the porpentine the chaine vnfinish'd made me": [0, 65535], "you at the porpentine the chaine vnfinish'd made me stay": [0, 65535], "at the porpentine the chaine vnfinish'd made me stay thus": [0, 65535], "the porpentine the chaine vnfinish'd made me stay thus long": [0, 65535], "porpentine the chaine vnfinish'd made me stay thus long anti": [0, 65535], "the chaine vnfinish'd made me stay thus long anti what": [0, 65535], "chaine vnfinish'd made me stay thus long anti what is": [0, 65535], "vnfinish'd made me stay thus long anti what is your": [0, 65535], "made me stay thus long anti what is your will": [0, 65535], "me stay thus long anti what is your will that": [0, 65535], "stay thus long anti what is your will that i": [0, 65535], "thus long anti what is your will that i shal": [0, 65535], "long anti what is your will that i shal do": [0, 65535], "anti what is your will that i shal do with": [0, 65535], "what is your will that i shal do with this": [0, 65535], "is your will that i shal do with this ang": [0, 65535], "your will that i shal do with this ang what": [0, 65535], "will that i shal do with this ang what please": [0, 65535], "that i shal do with this ang what please your": [0, 65535], "i shal do with this ang what please your selfe": [0, 65535], "shal do with this ang what please your selfe sir": [0, 65535], "do with this ang what please your selfe sir i": [0, 65535], "with this ang what please your selfe sir i haue": [0, 65535], "this ang what please your selfe sir i haue made": [0, 65535], "ang what please your selfe sir i haue made it": [0, 65535], "what please your selfe sir i haue made it for": [0, 65535], "please your selfe sir i haue made it for you": [0, 65535], "your selfe sir i haue made it for you anti": [0, 65535], "selfe sir i haue made it for you anti made": [0, 65535], "sir i haue made it for you anti made it": [0, 65535], "i haue made it for you anti made it for": [0, 65535], "haue made it for you anti made it for me": [0, 65535], "made it for you anti made it for me sir": [0, 65535], "it for you anti made it for me sir i": [0, 65535], "for you anti made it for me sir i bespoke": [0, 65535], "you anti made it for me sir i bespoke it": [0, 65535], "anti made it for me sir i bespoke it not": [0, 65535], "made it for me sir i bespoke it not ang": [0, 65535], "it for me sir i bespoke it not ang not": [0, 65535], "for me sir i bespoke it not ang not once": [0, 65535], "me sir i bespoke it not ang not once nor": [0, 65535], "sir i bespoke it not ang not once nor twice": [0, 65535], "i bespoke it not ang not once nor twice but": [0, 65535], "bespoke it not ang not once nor twice but twentie": [0, 65535], "it not ang not once nor twice but twentie times": [0, 65535], "not ang not once nor twice but twentie times you": [0, 65535], "ang not once nor twice but twentie times you haue": [0, 65535], "not once nor twice but twentie times you haue go": [0, 65535], "once nor twice but twentie times you haue go home": [0, 65535], "nor twice but twentie times you haue go home with": [0, 65535], "twice but twentie times you haue go home with it": [0, 65535], "but twentie times you haue go home with it and": [0, 65535], "twentie times you haue go home with it and please": [0, 65535], "times you haue go home with it and please your": [0, 65535], "you haue go home with it and please your wife": [0, 65535], "haue go home with it and please your wife withall": [0, 65535], "go home with it and please your wife withall and": [0, 65535], "home with it and please your wife withall and soone": [0, 65535], "with it and please your wife withall and soone at": [0, 65535], "it and please your wife withall and soone at supper": [0, 65535], "and please your wife withall and soone at supper time": [0, 65535], "please your wife withall and soone at supper time ile": [0, 65535], "your wife withall and soone at supper time ile visit": [0, 65535], "wife withall and soone at supper time ile visit you": [0, 65535], "withall and soone at supper time ile visit you and": [0, 65535], "and soone at supper time ile visit you and then": [0, 65535], "soone at supper time ile visit you and then receiue": [0, 65535], "at supper time ile visit you and then receiue my": [0, 65535], "supper time ile visit you and then receiue my money": [0, 65535], "time ile visit you and then receiue my money for": [0, 65535], "ile visit you and then receiue my money for the": [0, 65535], "visit you and then receiue my money for the chaine": [0, 65535], "you and then receiue my money for the chaine anti": [0, 65535], "and then receiue my money for the chaine anti i": [0, 65535], "then receiue my money for the chaine anti i pray": [0, 65535], "receiue my money for the chaine anti i pray you": [0, 65535], "my money for the chaine anti i pray you sir": [0, 65535], "money for the chaine anti i pray you sir receiue": [0, 65535], "for the chaine anti i pray you sir receiue the": [0, 65535], "the chaine anti i pray you sir receiue the money": [0, 65535], "chaine anti i pray you sir receiue the money now": [0, 65535], "anti i pray you sir receiue the money now for": [0, 65535], "i pray you sir receiue the money now for feare": [0, 65535], "pray you sir receiue the money now for feare you": [0, 65535], "you sir receiue the money now for feare you ne're": [0, 65535], "sir receiue the money now for feare you ne're see": [0, 65535], "receiue the money now for feare you ne're see chaine": [0, 65535], "the money now for feare you ne're see chaine nor": [0, 65535], "money now for feare you ne're see chaine nor mony": [0, 65535], "now for feare you ne're see chaine nor mony more": [0, 65535], "for feare you ne're see chaine nor mony more ang": [0, 65535], "feare you ne're see chaine nor mony more ang you": [0, 65535], "you ne're see chaine nor mony more ang you are": [0, 65535], "ne're see chaine nor mony more ang you are a": [0, 65535], "see chaine nor mony more ang you are a merry": [0, 65535], "chaine nor mony more ang you are a merry man": [0, 65535], "nor mony more ang you are a merry man sir": [0, 65535], "mony more ang you are a merry man sir fare": [0, 65535], "more ang you are a merry man sir fare you": [0, 65535], "ang you are a merry man sir fare you well": [0, 65535], "you are a merry man sir fare you well exit": [0, 65535], "are a merry man sir fare you well exit ant": [0, 65535], "a merry man sir fare you well exit ant what": [0, 65535], "merry man sir fare you well exit ant what i": [0, 65535], "man sir fare you well exit ant what i should": [0, 65535], "sir fare you well exit ant what i should thinke": [0, 65535], "fare you well exit ant what i should thinke of": [0, 65535], "you well exit ant what i should thinke of this": [0, 65535], "well exit ant what i should thinke of this i": [0, 65535], "exit ant what i should thinke of this i cannot": [0, 65535], "ant what i should thinke of this i cannot tell": [0, 65535], "what i should thinke of this i cannot tell but": [0, 65535], "i should thinke of this i cannot tell but this": [0, 65535], "should thinke of this i cannot tell but this i": [0, 65535], "thinke of this i cannot tell but this i thinke": [0, 65535], "of this i cannot tell but this i thinke there's": [0, 65535], "this i cannot tell but this i thinke there's no": [0, 65535], "i cannot tell but this i thinke there's no man": [0, 65535], "cannot tell but this i thinke there's no man is": [0, 65535], "tell but this i thinke there's no man is so": [0, 65535], "but this i thinke there's no man is so vaine": [0, 65535], "this i thinke there's no man is so vaine that": [0, 65535], "i thinke there's no man is so vaine that would": [0, 65535], "thinke there's no man is so vaine that would refuse": [0, 65535], "there's no man is so vaine that would refuse so": [0, 65535], "no man is so vaine that would refuse so faire": [0, 65535], "man is so vaine that would refuse so faire an": [0, 65535], "is so vaine that would refuse so faire an offer'd": [0, 65535], "so vaine that would refuse so faire an offer'd chaine": [0, 65535], "vaine that would refuse so faire an offer'd chaine i": [0, 65535], "that would refuse so faire an offer'd chaine i see": [0, 65535], "would refuse so faire an offer'd chaine i see a": [0, 65535], "refuse so faire an offer'd chaine i see a man": [0, 65535], "so faire an offer'd chaine i see a man heere": [0, 65535], "faire an offer'd chaine i see a man heere needs": [0, 65535], "an offer'd chaine i see a man heere needs not": [0, 65535], "offer'd chaine i see a man heere needs not liue": [0, 65535], "chaine i see a man heere needs not liue by": [0, 65535], "i see a man heere needs not liue by shifts": [0, 65535], "see a man heere needs not liue by shifts when": [0, 65535], "a man heere needs not liue by shifts when in": [0, 65535], "man heere needs not liue by shifts when in the": [0, 65535], "heere needs not liue by shifts when in the streets": [0, 65535], "needs not liue by shifts when in the streets he": [0, 65535], "not liue by shifts when in the streets he meetes": [0, 65535], "liue by shifts when in the streets he meetes such": [0, 65535], "by shifts when in the streets he meetes such golden": [0, 65535], "shifts when in the streets he meetes such golden gifts": [0, 65535], "when in the streets he meetes such golden gifts ile": [0, 65535], "in the streets he meetes such golden gifts ile to": [0, 65535], "the streets he meetes such golden gifts ile to the": [0, 65535], "streets he meetes such golden gifts ile to the mart": [0, 65535], "he meetes such golden gifts ile to the mart and": [0, 65535], "meetes such golden gifts ile to the mart and there": [0, 65535], "such golden gifts ile to the mart and there for": [0, 65535], "golden gifts ile to the mart and there for dromio": [0, 65535], "gifts ile to the mart and there for dromio stay": [0, 65535], "ile to the mart and there for dromio stay if": [0, 65535], "to the mart and there for dromio stay if any": [0, 65535], "the mart and there for dromio stay if any ship": [0, 65535], "mart and there for dromio stay if any ship put": [0, 65535], "and there for dromio stay if any ship put out": [0, 65535], "there for dromio stay if any ship put out then": [0, 65535], "for dromio stay if any ship put out then straight": [0, 65535], "dromio stay if any ship put out then straight away": [0, 65535], "stay if any ship put out then straight away exit": [0, 65535], "secundus": [0, 65535], "antipholis": [0, 65535], "sereptus": [0, 65535], "luciana": [0, 65535], "slaue": [0, 65535], "return'd": [0, 65535], "seeke": [0, 65535], "clocke": [0, 65535], "inuited": [0, 65535], "neuer": [0, 65535], "fret": [0, 65535], "libertie": [0, 65535], "ours": [0, 65535], "businesse": [0, 65535], "lies": [0, 65535], "serue": [0, 65535], "bridle": [0, 65535], "asses": [0, 65535], "bridled": [0, 65535], "headstrong": [0, 65535], "liberty": [0, 65535], "lasht": [0, 65535], "woe": [0, 65535], "situate": [0, 65535], "vnder": [0, 65535], "skie": [0, 65535], "beasts": [0, 65535], "fishes": [0, 65535], "winged": [0, 65535], "males": [0, 65535], "subiects": [0, 65535], "controules": [0, 65535], "watry": [0, 65535], "indued": [0, 65535], "intellectuall": [0, 65535], "sence": [0, 65535], "preheminence": [0, 65535], "masters": [0, 65535], "females": [0, 65535], "lords": [0, 65535], "attend": [0, 65535], "accords": [0, 65535], "seruitude": [0, 65535], "vnwed": [0, 65535], "luci": [0, 65535], "wedded": [0, 65535], "sway": [0, 65535], "ere": [0, 65535], "learne": [0, 65535], "start": [0, 65535], "forbeare": [0, 65535], "vnmou'd": [0, 65535], "maruel": [0, 65535], "meeke": [0, 65535], "wretched": [0, 65535], "bruis'd": [0, 65535], "aduersitie": [0, 65535], "burdned": [0, 65535], "waight": [0, 65535], "selues": [0, 65535], "complaine": [0, 65535], "vnkinde": [0, 65535], "mate": [0, 65535], "greeue": [0, 65535], "vrging": [0, 65535], "helpelesse": [0, 65535], "releeue": [0, 65535], "bereft": [0, 65535], "foole": [0, 65535], "beg'd": [0, 65535], "trie": [0, 65535], "nie": [0, 65535], "eph": [0, 65535], "tardie": [0, 65535], "nay": [0, 65535], "hee's": [0, 65535], "witnesse": [0, 65535], "knowst": [0, 65535], "minde": [0, 65535], "eare": [0, 65535], "beshrew": [0, 65535], "vnderstand": [0, 65535], "spake": [0, 65535], "doubtfully": [0, 65535], "couldst": [0, 65535], "feele": [0, 65535], "prethee": [0, 65535], "comming": [0, 65535], "mistresse": [0, 65535], "horne": [0, 65535], "cuckold": [0, 65535], "starke": [0, 65535], "desir'd": [0, 65535], "ask'd": [0, 65535], "quoth": [0, 65535], "pigge": [0, 65535], "burn'd": [0, 65535], "vp": [0, 65535], "dr": [0, 65535], "arrant": [0, 65535], "vnto": [0, 65535], "thanke": [0, 65535], "backe": [0, 65535], "beaten": [0, 65535], "gods": [0, 65535], "send": [0, 65535], "messenger": [0, 65535], "crosse": [0, 65535], "blesse": [0, 65535], "beating": [0, 65535], "prating": [0, 65535], "pesant": [0, 65535], "ball": [0, 65535], "spurne": [0, 65535], "seruice": [0, 65535], "case": [0, 65535], "fie": [0, 65535], "impatience": [0, 65535], "lowreth": [0, 65535], "minions": [0, 65535], "whil'st": [0, 65535], "starue": [0, 65535], "homelie": [0, 65535], "alluring": [0, 65535], "beauty": [0, 65535], "tooke": [0, 65535], "cheeke": [0, 65535], "wasted": [0, 65535], "discourses": [0, 65535], "barren": [0, 65535], "wit": [0, 65535], "voluble": [0, 65535], "sharpe": [0, 65535], "mar'd": [0, 65535], "vnkindnesse": [0, 65535], "blunts": [0, 65535], "marble": [0, 65535], "vestments": [0, 65535], "affections": [0, 65535], "baite": [0, 65535], "ruines": [0, 65535], "ruin'd": [0, 65535], "defeatures": [0, 65535], "decayed": [0, 65535], "sunnie": [0, 65535], "repaire": [0, 65535], "breakes": [0, 65535], "pale": [0, 65535], "feedes": [0, 65535], "stale": [0, 65535], "harming": [0, 65535], "iealousie": [0, 65535], "ad": [0, 65535], "vnfeeling": [0, 65535], "dispence": [0, 65535], "lets": [0, 65535], "promis'd": [0, 65535], "detaine": [0, 65535], "quarter": [0, 65535], "iewell": [0, 65535], "enamaled": [0, 65535], "beautie": [0, 65535], "bides": [0, 65535], "falshood": [0, 65535], "corruption": [0, 65535], "weepe": [0, 65535], "manie": [0, 65535], "fooles": [0, 65535], "ielousie": [0, 65535], "errotis": [0, 65535], "centaur": [0, 65535], "heedfull": [0, 65535], "wandred": [0, 65535], "computation": [0, 65535], "humor": [0, 65535], "alter'd": [0, 65535], "stroakes": [0, 65535], "receiu'd": [0, 65535], "ph\u0153nix": [0, 65535], "wast": [0, 65535], "madlie": [0, 65535], "answere": [0, 65535], "halfe": [0, 65535], "howre": [0, 65535], "golds": [0, 65535], "receit": [0, 65535], "toldst": [0, 65535], "feltst": [0, 65535], "displeas'd": [0, 65535], "yea": [0, 65535], "ieere": [0, 65535], "flowt": [0, 65535], "thinkst": [0, 65535], "beats": [0, 65535], "bargaine": [0, 65535], "antiph": [0, 65535], "familiarlie": [0, 65535], "chat": [0, 65535], "sawcinesse": [0, 65535], "serious": [0, 65535], "sunne": [0, 65535], "shines": [0, 65535], "gnats": [0, 65535], "creepe": [0, 65535], "crannies": [0, 65535], "hides": [0, 65535], "demeanor": [0, 65535], "method": [0, 65535], "sconce": [0, 65535], "leaue": [0, 65535], "battering": [0, 65535], "insconce": [0, 65535], "flowting": [0, 65535], "anie": [0, 65535], "rime": [0, 65535], "amends": [0, 65535], "wants": [0, 65535], "basting": [0, 65535], "'twill": [0, 65535], "drie": [0, 65535], "eat": [0, 65535], "chollericke": [0, 65535], "purchase": [0, 65535], "durst": [0, 65535], "denied": [0, 65535], "rule": [0, 65535], "plaine": [0, 65535], "bald": [0, 65535], "father": [0, 65535], "himselfe": [0, 65535], "recouer": [0, 65535], "haire": [0, 65535], "growes": [0, 65535], "recouerie": [0, 65535], "perewig": [0, 65535], "niggard": [0, 65535], "plentifull": [0, 65535], "excrement": [0, 65535], "blessing": [0, 65535], "bestowes": [0, 65535], "scanted": [0, 65535], "giuen": [0, 65535], "theres": [0, 65535], "hairy": [0, 65535], "dealers": [0, 65535], "plainer": [0, 65535], "dealer": [0, 65535], "looseth": [0, 65535], "kinde": [0, 65535], "iollitie": [0, 65535], "falsing": [0, 65535], "certaine": [0, 65535], "saue": [0, 65535], "spends": [0, 65535], "porrage": [0, 65535], "prou'd": [0, 65535], "substantiall": [0, 65535], "followers": [0, 65535], "'twould": [0, 65535], "wafts": [0, 65535], "yonder": [0, 65535], "frowne": [0, 65535], "aspects": [0, 65535], "vn": [0, 65535], "vrg'd": [0, 65535], "vow": [0, 65535], "musicke": [0, 65535], "thine": [0, 65535], "obiect": [0, 65535], "pleasing": [0, 65535], "sauour'd": [0, 65535], "taste": [0, 65535], "vnlesse": [0, 65535], "touch'd": [0, 65535], "caru'd": [0, 65535], "estranged": [0, 65535], "vndiuidable": [0, 65535], "incorporate": [0, 65535], "teare": [0, 65535], "easie": [0, 65535], "maist": [0, 65535], "gulfe": [0, 65535], "vnmingled": [0, 65535], "thence": [0, 65535], "addition": [0, 65535], "diminishing": [0, 65535], "deerely": [0, 65535], "quicke": [0, 65535], "shouldst": [0, 65535], "licencious": [0, 65535], "consecrate": [0, 65535], "ruffian": [0, 65535], "lust": [0, 65535], "contaminate": [0, 65535], "hurle": [0, 65535], "stain'd": [0, 65535], "harlot": [0, 65535], "wedding": [0, 65535], "deepe": [0, 65535], "diuorcing": [0, 65535], "canst": [0, 65535], "adulterate": [0, 65535], "blot": [0, 65535], "bloud": [0, 65535], "crime": [0, 65535], "digest": [0, 65535], "poison": [0, 65535], "strumpeted": [0, 65535], "contagion": [0, 65535], "league": [0, 65535], "truce": [0, 65535], "distain'd": [0, 65535], "vndishonoured": [0, 65535], "antip": [0, 65535], "dame": [0, 65535], "houres": [0, 65535], "talke": [0, 65535], "scan'd": [0, 65535], "wont": [0, 65535], "buffet": [0, 65535], "conuerse": [0, 65535], "gentlewoman": [0, 65535], "drift": [0, 65535], "liest": [0, 65535], "deliuer": [0, 65535], "agrees": [0, 65535], "grauitie": [0, 65535], "counterfeit": [0, 65535], "grosely": [0, 65535], "abetting": [0, 65535], "thwart": [0, 65535], "moode": [0, 65535], "exempt": [0, 65535], "contempt": [0, 65535], "elme": [0, 65535], "vine": [0, 65535], "weaknesse": [0, 65535], "married": [0, 65535], "strength": [0, 65535], "communicate": [0, 65535], "ought": [0, 65535], "possesse": [0, 65535], "drosse": [0, 65535], "vsurping": [0, 65535], "iuie": [0, 65535], "brier": [0, 65535], "mosse": [0, 65535], "pruning": [0, 65535], "infect": [0, 65535], "sap": [0, 65535], "shee": [0, 65535], "speakes": [0, 65535], "moues": [0, 65535], "theame": [0, 65535], "dreame": [0, 65535], "sleepe": [0, 65535], "error": [0, 65535], "driues": [0, 65535], "amisse": [0, 65535], "vntill": [0, 65535], "vncertaintie": [0, 65535], "free'd": [0, 65535], "fallacie": [0, 65535], "seruants": [0, 65535], "spred": [0, 65535], "beads": [0, 65535], "sinner": [0, 65535], "fairie": [0, 65535], "spights": [0, 65535], "goblins": [0, 65535], "owles": [0, 65535], "sprights": [0, 65535], "obay": [0, 65535], "insue": [0, 65535], "sucke": [0, 65535], "pinch": [0, 65535], "blacke": [0, 65535], "blew": [0, 65535], "prat'st": [0, 65535], "answer'st": [0, 65535], "snaile": [0, 65535], "slug": [0, 65535], "sot": [0, 65535], "transformed": [0, 65535], "shape": [0, 65535], "forme": [0, 65535], "ape": [0, 65535], "rides": [0, 65535], "grasse": [0, 65535], "laughes": [0, 65535], "scorne": [0, 65535], "aboue": [0, 65535], "shriue": [0, 65535], "prankes": [0, 65535], "aske": [0, 65535], "dines": [0, 65535], "hell": [0, 65535], "sleeping": [0, 65535], "waking": [0, 65535], "aduisde": [0, 65535], "knowne": [0, 65535], "disguisde": [0, 65535], "perseuer": [0, 65535], "mist": [0, 65535], "aduentures": [0, 65535], "actus secundus": [0, 65535], "secundus enter": [0, 65535], "adriana wife": [0, 65535], "wife to": [0, 65535], "to antipholis": [0, 65535], "antipholis sereptus": [0, 65535], "sereptus with": [0, 65535], "with luciana": [0, 65535], "luciana her": [0, 65535], "her sister": [0, 65535], "sister adr": [0, 65535], "adr neither": [0, 65535], "neither my": [0, 65535], "my husband": [0, 65535], "husband nor": [0, 65535], "the slaue": [0, 65535], "slaue return'd": [0, 65535], "return'd that": [0, 65535], "such haste": [0, 65535], "haste i": [0, 65535], "i sent": [0, 65535], "sent to": [0, 65535], "to seeke": [0, 65535], "seeke his": [0, 65535], "his master": [0, 65535], "master sure": [0, 65535], "sure luciana": [0, 65535], "luciana it": [0, 65535], "is two": [0, 65535], "two a": [0, 65535], "a clocke": [0, 65535], "clocke luc": [0, 65535], "luc perhaps": [0, 65535], "perhaps some": [0, 65535], "some merchant": [0, 65535], "merchant hath": [0, 65535], "hath inuited": [0, 65535], "inuited him": [0, 65535], "mart he's": [0, 65535], "he's somewhere": [0, 65535], "somewhere gone": [0, 65535], "gone to": [0, 65535], "dinner good": [0, 65535], "good sister": [0, 65535], "sister let": [0, 65535], "vs dine": [0, 65535], "dine and": [0, 65535], "and neuer": [0, 65535], "neuer fret": [0, 65535], "fret a": [0, 65535], "is master": [0, 65535], "master of": [0, 65535], "his libertie": [0, 65535], "libertie time": [0, 65535], "time is": [0, 65535], "is their": [0, 65535], "their master": [0, 65535], "master and": [0, 65535], "they see": [0, 65535], "see time": [0, 65535], "time they'll": [0, 65535], "they'll goe": [0, 65535], "goe or": [0, 65535], "or come": [0, 65535], "come if": [0, 65535], "if so": [0, 65535], "so be": [0, 65535], "be patient": [0, 65535], "patient sister": [0, 65535], "adr why": [0, 65535], "why should": [0, 65535], "should their": [0, 65535], "their libertie": [0, 65535], "libertie then": [0, 65535], "then ours": [0, 65535], "ours be": [0, 65535], "be more": [0, 65535], "more luc": [0, 65535], "luc because": [0, 65535], "because their": [0, 65535], "their businesse": [0, 65535], "businesse still": [0, 65535], "still lies": [0, 65535], "lies out": [0, 65535], "dore adr": [0, 65535], "adr looke": [0, 65535], "looke when": [0, 65535], "i serue": [0, 65535], "serue him": [0, 65535], "it thus": [0, 65535], "thus luc": [0, 65535], "oh know": [0, 65535], "know he": [0, 65535], "the bridle": [0, 65535], "bridle of": [0, 65535], "will adr": [0, 65535], "adr there's": [0, 65535], "but asses": [0, 65535], "asses will": [0, 65535], "be bridled": [0, 65535], "bridled so": [0, 65535], "so luc": [0, 65535], "why headstrong": [0, 65535], "headstrong liberty": [0, 65535], "liberty is": [0, 65535], "is lasht": [0, 65535], "lasht with": [0, 65535], "with woe": [0, 65535], "woe there's": [0, 65535], "there's nothing": [0, 65535], "nothing situate": [0, 65535], "situate vnder": [0, 65535], "vnder heauens": [0, 65535], "heauens eye": [0, 65535], "but hath": [0, 65535], "hath his": [0, 65535], "his bound": [0, 65535], "bound in": [0, 65535], "in earth": [0, 65535], "earth in": [0, 65535], "in sea": [0, 65535], "sea in": [0, 65535], "in skie": [0, 65535], "skie the": [0, 65535], "the beasts": [0, 65535], "beasts the": [0, 65535], "the fishes": [0, 65535], "fishes and": [0, 65535], "the winged": [0, 65535], "winged fowles": [0, 65535], "fowles are": [0, 65535], "are their": [0, 65535], "their males": [0, 65535], "males subiects": [0, 65535], "subiects and": [0, 65535], "and at": [0, 65535], "at their": [0, 65535], "their controules": [0, 65535], "controules man": [0, 65535], "man more": [0, 65535], "more diuine": [0, 65535], "diuine the": [0, 65535], "all these": [0, 65535], "these lord": [0, 65535], "lord of": [0, 65535], "the wide": [0, 65535], "wide world": [0, 65535], "and wilde": [0, 65535], "wilde watry": [0, 65535], "watry seas": [0, 65535], "seas indued": [0, 65535], "indued with": [0, 65535], "with intellectuall": [0, 65535], "intellectuall sence": [0, 65535], "sence and": [0, 65535], "and soules": [0, 65535], "soules of": [0, 65535], "more preheminence": [0, 65535], "preheminence then": [0, 65535], "then fish": [0, 65535], "fish and": [0, 65535], "and fowles": [0, 65535], "are masters": [0, 65535], "masters to": [0, 65535], "their females": [0, 65535], "females and": [0, 65535], "and their": [0, 65535], "their lords": [0, 65535], "lords then": [0, 65535], "then let": [0, 65535], "will attend": [0, 65535], "attend on": [0, 65535], "on their": [0, 65535], "their accords": [0, 65535], "accords adri": [0, 65535], "adri this": [0, 65535], "this seruitude": [0, 65535], "seruitude makes": [0, 65535], "makes you": [0, 65535], "to keepe": [0, 65535], "keepe vnwed": [0, 65535], "vnwed luci": [0, 65535], "luci not": [0, 65535], "not this": [0, 65535], "this but": [0, 65535], "but troubles": [0, 65535], "troubles of": [0, 65535], "the marriage": [0, 65535], "marriage bed": [0, 65535], "bed adr": [0, 65535], "adr but": [0, 65535], "but were": [0, 65535], "were you": [0, 65535], "you wedded": [0, 65535], "wedded you": [0, 65535], "you wold": [0, 65535], "wold bear": [0, 65535], "bear some": [0, 65535], "some sway": [0, 65535], "sway luc": [0, 65535], "luc ere": [0, 65535], "ere i": [0, 65535], "i learne": [0, 65535], "learne loue": [0, 65535], "loue ile": [0, 65535], "ile practise": [0, 65535], "practise to": [0, 65535], "to obey": [0, 65535], "obey adr": [0, 65535], "adr how": [0, 65535], "how if": [0, 65535], "your husband": [0, 65535], "husband start": [0, 65535], "start some": [0, 65535], "other where": [0, 65535], "where luc": [0, 65535], "luc till": [0, 65535], "come home": [0, 65535], "home againe": [0, 65535], "againe i": [0, 65535], "i would": [0, 65535], "would forbeare": [0, 65535], "forbeare adr": [0, 65535], "adr patience": [0, 65535], "patience vnmou'd": [0, 65535], "vnmou'd no": [0, 65535], "no maruel": [0, 65535], "maruel though": [0, 65535], "though she": [0, 65535], "she pause": [0, 65535], "pause they": [0, 65535], "they can": [0, 65535], "be meeke": [0, 65535], "meeke that": [0, 65535], "that haue": [0, 65535], "no other": [0, 65535], "other cause": [0, 65535], "cause a": [0, 65535], "a wretched": [0, 65535], "wretched soule": [0, 65535], "soule bruis'd": [0, 65535], "bruis'd with": [0, 65535], "with aduersitie": [0, 65535], "aduersitie we": [0, 65535], "we bid": [0, 65535], "bid be": [0, 65535], "be quiet": [0, 65535], "quiet when": [0, 65535], "when we": [0, 65535], "we heare": [0, 65535], "heare it": [0, 65535], "it crie": [0, 65535], "crie but": [0, 65535], "were we": [0, 65535], "we burdned": [0, 65535], "burdned with": [0, 65535], "with like": [0, 65535], "like waight": [0, 65535], "waight of": [0, 65535], "of paine": [0, 65535], "paine as": [0, 65535], "much or": [0, 65535], "or more": [0, 65535], "more we": [0, 65535], "we should": [0, 65535], "should our": [0, 65535], "our selues": [0, 65535], "selues complaine": [0, 65535], "complaine so": [0, 65535], "so thou": [0, 65535], "that hast": [0, 65535], "no vnkinde": [0, 65535], "vnkinde mate": [0, 65535], "mate to": [0, 65535], "to greeue": [0, 65535], "greeue thee": [0, 65535], "thee with": [0, 65535], "with vrging": [0, 65535], "vrging helpelesse": [0, 65535], "helpelesse patience": [0, 65535], "patience would": [0, 65535], "would releeue": [0, 65535], "releeue me": [0, 65535], "thou liue": [0, 65535], "liue to": [0, 65535], "see like": [0, 65535], "like right": [0, 65535], "right bereft": [0, 65535], "bereft this": [0, 65535], "this foole": [0, 65535], "foole beg'd": [0, 65535], "beg'd patience": [0, 65535], "patience in": [0, 65535], "in thee": [0, 65535], "be left": [0, 65535], "left luci": [0, 65535], "luci well": [0, 65535], "will marry": [0, 65535], "marry one": [0, 65535], "day but": [0, 65535], "to trie": [0, 65535], "trie heere": [0, 65535], "heere comes": [0, 65535], "comes your": [0, 65535], "now is": [0, 65535], "husband nie": [0, 65535], "nie enter": [0, 65535], "dromio eph": [0, 65535], "eph adr": [0, 65535], "adr say": [0, 65535], "say is": [0, 65535], "your tardie": [0, 65535], "tardie master": [0, 65535], "master now": [0, 65535], "at hand": [0, 65535], "hand e": [0, 65535], "dro nay": [0, 65535], "nay hee's": [0, 65535], "hee's at": [0, 65535], "at too": [0, 65535], "too hands": [0, 65535], "with mee": [0, 65535], "mee and": [0, 65535], "that my": [0, 65535], "my two": [0, 65535], "two eares": [0, 65535], "eares can": [0, 65535], "can witnesse": [0, 65535], "witnesse adr": [0, 65535], "say didst": [0, 65535], "thou speake": [0, 65535], "speake with": [0, 65535], "him knowst": [0, 65535], "knowst thou": [0, 65535], "thou his": [0, 65535], "his minde": [0, 65535], "minde e": [0, 65535], "i i": [0, 65535], "i he": [0, 65535], "told his": [0, 65535], "minde vpon": [0, 65535], "mine eare": [0, 65535], "eare beshrew": [0, 65535], "beshrew his": [0, 65535], "hand i": [0, 65535], "i scarce": [0, 65535], "scarce could": [0, 65535], "could vnderstand": [0, 65535], "vnderstand it": [0, 65535], "it luc": [0, 65535], "luc spake": [0, 65535], "spake hee": [0, 65535], "hee so": [0, 65535], "so doubtfully": [0, 65535], "doubtfully thou": [0, 65535], "thou couldst": [0, 65535], "couldst not": [0, 65535], "not feele": [0, 65535], "feele his": [0, 65535], "his meaning": [0, 65535], "meaning e": [0, 65535], "nay hee": [0, 65535], "hee strooke": [0, 65535], "strooke so": [0, 65535], "so plainly": [0, 65535], "plainly i": [0, 65535], "could too": [0, 65535], "well feele": [0, 65535], "his blowes": [0, 65535], "blowes and": [0, 65535], "and withall": [0, 65535], "withall so": [0, 65535], "doubtfully that": [0, 65535], "could scarce": [0, 65535], "scarce vnderstand": [0, 65535], "vnderstand them": [0, 65535], "them adri": [0, 65535], "adri but": [0, 65535], "say i": [0, 65535], "i prethee": [0, 65535], "prethee is": [0, 65535], "is he": [0, 65535], "he comming": [0, 65535], "comming home": [0, 65535], "home it": [0, 65535], "seemes he": [0, 65535], "he hath": [0, 65535], "hath great": [0, 65535], "great care": [0, 65535], "care to": [0, 65535], "to please": [0, 65535], "please his": [0, 65535], "wife e": [0, 65535], "dro why": [0, 65535], "why mistresse": [0, 65535], "mistresse sure": [0, 65535], "sure my": [0, 65535], "master is": [0, 65535], "is horne": [0, 65535], "horne mad": [0, 65535], "mad adri": [0, 65535], "adri horne": [0, 65535], "mad thou": [0, 65535], "thou villaine": [0, 65535], "villaine e": [0, 65535], "meane not": [0, 65535], "not cuckold": [0, 65535], "cuckold mad": [0, 65535], "but sure": [0, 65535], "sure he": [0, 65535], "is starke": [0, 65535], "starke mad": [0, 65535], "mad when": [0, 65535], "i desir'd": [0, 65535], "desir'd him": [0, 65535], "dinner he": [0, 65535], "he ask'd": [0, 65535], "ask'd me": [0, 65535], "hundred markes": [0, 65535], "gold 'tis": [0, 65535], "'tis dinner": [0, 65535], "dinner time": [0, 65535], "time quoth": [0, 65535], "quoth i": [0, 65535], "my gold": [0, 65535], "gold quoth": [0, 65535], "quoth he": [0, 65535], "he your": [0, 65535], "your meat": [0, 65535], "meat doth": [0, 65535], "doth burne": [0, 65535], "burne quoth": [0, 65535], "he will": [0, 65535], "you come": [0, 65535], "come quoth": [0, 65535], "he where": [0, 65535], "where is": [0, 65535], "the thousand": [0, 65535], "i gaue": [0, 65535], "gaue thee": [0, 65535], "thee villaine": [0, 65535], "villaine the": [0, 65535], "the pigge": [0, 65535], "pigge quoth": [0, 65535], "i is": [0, 65535], "is burn'd": [0, 65535], "burn'd my": [0, 65535], "he my": [0, 65535], "my mistresse": [0, 65535], "mistresse sir": [0, 65535], "sir quoth": [0, 65535], "i hang": [0, 65535], "hang vp": [0, 65535], "vp thy": [0, 65535], "thy mistresse": [0, 65535], "mistresse i": [0, 65535], "mistresse out": [0, 65535], "out on": [0, 65535], "on thy": [0, 65535], "mistresse luci": [0, 65535], "luci quoth": [0, 65535], "quoth who": [0, 65535], "who e": [0, 65535], "e dr": [0, 65535], "dr quoth": [0, 65535], "quoth my": [0, 65535], "master i": [0, 65535], "know quoth": [0, 65535], "he no": [0, 65535], "no house": [0, 65535], "house no": [0, 65535], "wife no": [0, 65535], "no mistresse": [0, 65535], "mistresse so": [0, 65535], "my arrant": [0, 65535], "arrant due": [0, 65535], "due vnto": [0, 65535], "vnto my": [0, 65535], "my tongue": [0, 65535], "tongue i": [0, 65535], "i thanke": [0, 65535], "thanke him": [0, 65535], "i bare": [0, 65535], "bare home": [0, 65535], "home vpon": [0, 65535], "vpon my": [0, 65535], "my shoulders": [0, 65535], "shoulders for": [0, 65535], "for in": [0, 65535], "in conclusion": [0, 65535], "conclusion he": [0, 65535], "did beat": [0, 65535], "there adri": [0, 65535], "adri go": [0, 65535], "back againe": [0, 65535], "againe thou": [0, 65535], "thou slaue": [0, 65535], "slaue fetch": [0, 65535], "fetch him": [0, 65535], "him home": [0, 65535], "home dro": [0, 65535], "dro goe": [0, 65535], "goe backe": [0, 65535], "backe againe": [0, 65535], "againe and": [0, 65535], "be new": [0, 65535], "new beaten": [0, 65535], "beaten home": [0, 65535], "home for": [0, 65535], "for gods": [0, 65535], "gods sake": [0, 65535], "sake send": [0, 65535], "send some": [0, 65535], "other messenger": [0, 65535], "messenger adri": [0, 65535], "adri backe": [0, 65535], "backe slaue": [0, 65535], "slaue or": [0, 65535], "or i": [0, 65535], "will breake": [0, 65535], "breake thy": [0, 65535], "thy pate": [0, 65535], "pate a": [0, 65535], "a crosse": [0, 65535], "crosse dro": [0, 65535], "will blesse": [0, 65535], "blesse the": [0, 65535], "the crosse": [0, 65535], "crosse with": [0, 65535], "with other": [0, 65535], "other beating": [0, 65535], "beating betweene": [0, 65535], "betweene you": [0, 65535], "i shall": [0, 65535], "shall haue": [0, 65535], "haue a": [0, 65535], "holy head": [0, 65535], "head adri": [0, 65535], "adri hence": [0, 65535], "hence prating": [0, 65535], "prating pesant": [0, 65535], "pesant fetch": [0, 65535], "fetch thy": [0, 65535], "thy master": [0, 65535], "master home": [0, 65535], "dro am": [0, 65535], "i so": [0, 65535], "so round": [0, 65535], "round with": [0, 65535], "you as": [0, 65535], "that like": [0, 65535], "foot ball": [0, 65535], "ball you": [0, 65535], "doe spurne": [0, 65535], "spurne me": [0, 65535], "me thus": [0, 65535], "thus you": [0, 65535], "you spurne": [0, 65535], "me hence": [0, 65535], "hence and": [0, 65535], "will spurne": [0, 65535], "me hither": [0, 65535], "hither if": [0, 65535], "i last": [0, 65535], "last in": [0, 65535], "this seruice": [0, 65535], "seruice you": [0, 65535], "must case": [0, 65535], "case me": [0, 65535], "in leather": [0, 65535], "leather luci": [0, 65535], "luci fie": [0, 65535], "fie how": [0, 65535], "how impatience": [0, 65535], "impatience lowreth": [0, 65535], "lowreth in": [0, 65535], "face adri": [0, 65535], "adri his": [0, 65535], "his company": [0, 65535], "company must": [0, 65535], "must do": [0, 65535], "do his": [0, 65535], "his minions": [0, 65535], "minions grace": [0, 65535], "grace whil'st": [0, 65535], "whil'st i": [0, 65535], "i at": [0, 65535], "at home": [0, 65535], "home starue": [0, 65535], "starue for": [0, 65535], "merrie looke": [0, 65535], "looke hath": [0, 65535], "hath homelie": [0, 65535], "homelie age": [0, 65535], "age th'": [0, 65535], "th' alluring": [0, 65535], "alluring beauty": [0, 65535], "beauty tooke": [0, 65535], "tooke from": [0, 65535], "my poore": [0, 65535], "poore cheeke": [0, 65535], "cheeke then": [0, 65535], "hath wasted": [0, 65535], "wasted it": [0, 65535], "it are": [0, 65535], "are my": [0, 65535], "my discourses": [0, 65535], "discourses dull": [0, 65535], "dull barren": [0, 65535], "barren my": [0, 65535], "my wit": [0, 65535], "wit if": [0, 65535], "if voluble": [0, 65535], "voluble and": [0, 65535], "and sharpe": [0, 65535], "sharpe discourse": [0, 65535], "discourse be": [0, 65535], "be mar'd": [0, 65535], "mar'd vnkindnesse": [0, 65535], "vnkindnesse blunts": [0, 65535], "blunts it": [0, 65535], "it more": [0, 65535], "then marble": [0, 65535], "marble hard": [0, 65535], "hard doe": [0, 65535], "doe their": [0, 65535], "their gay": [0, 65535], "gay vestments": [0, 65535], "vestments his": [0, 65535], "his affections": [0, 65535], "affections baite": [0, 65535], "baite that's": [0, 65535], "that's not": [0, 65535], "my fault": [0, 65535], "fault hee's": [0, 65535], "hee's master": [0, 65535], "my state": [0, 65535], "state what": [0, 65535], "what ruines": [0, 65535], "ruines are": [0, 65535], "are in": [0, 65535], "in me": [0, 65535], "be found": [0, 65535], "found by": [0, 65535], "him not": [0, 65535], "not ruin'd": [0, 65535], "ruin'd then": [0, 65535], "then is": [0, 65535], "my defeatures": [0, 65535], "defeatures my": [0, 65535], "my decayed": [0, 65535], "decayed faire": [0, 65535], "faire a": [0, 65535], "a sunnie": [0, 65535], "sunnie looke": [0, 65535], "looke of": [0, 65535], "his would": [0, 65535], "would soone": [0, 65535], "soone repaire": [0, 65535], "repaire but": [0, 65535], "but too": [0, 65535], "too vnruly": [0, 65535], "vnruly deere": [0, 65535], "deere he": [0, 65535], "he breakes": [0, 65535], "breakes the": [0, 65535], "the pale": [0, 65535], "pale and": [0, 65535], "and feedes": [0, 65535], "feedes from": [0, 65535], "from home": [0, 65535], "home poore": [0, 65535], "poore i": [0, 65535], "am but": [0, 65535], "his stale": [0, 65535], "stale luci": [0, 65535], "luci selfe": [0, 65535], "selfe harming": [0, 65535], "harming iealousie": [0, 65535], "iealousie fie": [0, 65535], "fie beat": [0, 65535], "beat it": [0, 65535], "it hence": [0, 65535], "hence ad": [0, 65535], "ad vnfeeling": [0, 65535], "vnfeeling fools": [0, 65535], "fools can": [0, 65535], "can with": [0, 65535], "such wrongs": [0, 65535], "wrongs dispence": [0, 65535], "dispence i": [0, 65535], "know his": [0, 65535], "his eye": [0, 65535], "eye doth": [0, 65535], "doth homage": [0, 65535], "homage other": [0, 65535], "where or": [0, 65535], "else what": [0, 65535], "what lets": [0, 65535], "lets it": [0, 65535], "be here": [0, 65535], "here sister": [0, 65535], "sister you": [0, 65535], "he promis'd": [0, 65535], "promis'd me": [0, 65535], "a chaine": [0, 65535], "chaine would": [0, 65535], "would that": [0, 65535], "that alone": [0, 65535], "alone a": [0, 65535], "a loue": [0, 65535], "loue he": [0, 65535], "would detaine": [0, 65535], "detaine so": [0, 65535], "keepe faire": [0, 65535], "faire quarter": [0, 65535], "quarter with": [0, 65535], "his bed": [0, 65535], "bed i": [0, 65535], "the iewell": [0, 65535], "iewell best": [0, 65535], "best enamaled": [0, 65535], "enamaled will": [0, 65535], "will loose": [0, 65535], "loose his": [0, 65535], "his beautie": [0, 65535], "beautie yet": [0, 65535], "yet the": [0, 65535], "the gold": [0, 65535], "gold bides": [0, 65535], "bides still": [0, 65535], "still that": [0, 65535], "that others": [0, 65535], "others touch": [0, 65535], "touch and": [0, 65535], "and often": [0, 65535], "often touching": [0, 65535], "touching will": [0, 65535], "will where": [0, 65535], "where gold": [0, 65535], "and no": [0, 65535], "name by": [0, 65535], "by falshood": [0, 65535], "falshood and": [0, 65535], "and corruption": [0, 65535], "corruption doth": [0, 65535], "doth it": [0, 65535], "it shame": [0, 65535], "shame since": [0, 65535], "since that": [0, 65535], "my beautie": [0, 65535], "beautie cannot": [0, 65535], "cannot please": [0, 65535], "his eie": [0, 65535], "eie ile": [0, 65535], "ile weepe": [0, 65535], "weepe what's": [0, 65535], "what's left": [0, 65535], "left away": [0, 65535], "and weeping": [0, 65535], "weeping die": [0, 65535], "die luci": [0, 65535], "luci how": [0, 65535], "how manie": [0, 65535], "manie fond": [0, 65535], "fond fooles": [0, 65535], "fooles serue": [0, 65535], "serue mad": [0, 65535], "mad ielousie": [0, 65535], "ielousie exit": [0, 65535], "enter antipholis": [0, 65535], "antipholis errotis": [0, 65535], "errotis ant": [0, 65535], "ant the": [0, 65535], "gold i": [0, 65535], "gaue to": [0, 65535], "to dromio": [0, 65535], "dromio is": [0, 65535], "is laid": [0, 65535], "laid vp": [0, 65535], "vp safe": [0, 65535], "safe at": [0, 65535], "the centaur": [0, 65535], "centaur and": [0, 65535], "the heedfull": [0, 65535], "heedfull slaue": [0, 65535], "slaue is": [0, 65535], "is wandred": [0, 65535], "wandred forth": [0, 65535], "forth in": [0, 65535], "in care": [0, 65535], "seeke me": [0, 65535], "me out": [0, 65535], "by computation": [0, 65535], "computation and": [0, 65535], "and mine": [0, 65535], "mine hosts": [0, 65535], "hosts report": [0, 65535], "report i": [0, 65535], "with dromio": [0, 65535], "dromio since": [0, 65535], "since at": [0, 65535], "at first": [0, 65535], "first i": [0, 65535], "sent him": [0, 65535], "him from": [0, 65535], "mart see": [0, 65535], "see here": [0, 65535], "here he": [0, 65535], "he comes": [0, 65535], "comes enter": [0, 65535], "siracusia how": [0, 65535], "your merrie": [0, 65535], "merrie humor": [0, 65535], "humor alter'd": [0, 65535], "alter'd as": [0, 65535], "loue stroakes": [0, 65535], "stroakes so": [0, 65535], "so iest": [0, 65535], "iest with": [0, 65535], "me againe": [0, 65535], "againe you": [0, 65535], "know no": [0, 65535], "no centaur": [0, 65535], "centaur you": [0, 65535], "you receiu'd": [0, 65535], "receiu'd no": [0, 65535], "no gold": [0, 65535], "gold your": [0, 65535], "your mistresse": [0, 65535], "mistresse sent": [0, 65535], "me home": [0, 65535], "dinner my": [0, 65535], "my house": [0, 65535], "house was": [0, 65535], "the ph\u0153nix": [0, 65535], "ph\u0153nix wast": [0, 65535], "wast thou": [0, 65535], "thou mad": [0, 65535], "that thus": [0, 65535], "thus so": [0, 65535], "so madlie": [0, 65535], "madlie thou": [0, 65535], "thou did": [0, 65535], "did didst": [0, 65535], "didst answere": [0, 65535], "answere me": [0, 65535], "me s": [0, 65535], "what answer": [0, 65535], "answer sir": [0, 65535], "sir when": [0, 65535], "when spake": [0, 65535], "spake i": [0, 65535], "word e": [0, 65535], "ant euen": [0, 65535], "euen now": [0, 65535], "now euen": [0, 65535], "euen here": [0, 65535], "here not": [0, 65535], "not halfe": [0, 65535], "halfe an": [0, 65535], "an howre": [0, 65535], "howre since": [0, 65535], "since s": [0, 65535], "not see": [0, 65535], "you since": [0, 65535], "since you": [0, 65535], "you sent": [0, 65535], "sent me": [0, 65535], "hence home": [0, 65535], "centaur with": [0, 65535], "gold you": [0, 65535], "gaue me": [0, 65535], "me ant": [0, 65535], "ant villaine": [0, 65535], "thou didst": [0, 65535], "didst denie": [0, 65535], "denie the": [0, 65535], "the golds": [0, 65535], "golds receit": [0, 65535], "receit and": [0, 65535], "and toldst": [0, 65535], "toldst me": [0, 65535], "me of": [0, 65535], "a mistresse": [0, 65535], "mistresse and": [0, 65535], "a dinner": [0, 65535], "dinner for": [0, 65535], "for which": [0, 65535], "which i": [0, 65535], "hope thou": [0, 65535], "thou feltst": [0, 65535], "feltst i": [0, 65535], "was displeas'd": [0, 65535], "displeas'd s": [0, 65535], "am glad": [0, 65535], "glad to": [0, 65535], "this merrie": [0, 65535], "merrie vaine": [0, 65535], "vaine what": [0, 65535], "what meanes": [0, 65535], "meanes this": [0, 65535], "iest i": [0, 65535], "you master": [0, 65535], "master tell": [0, 65535], "ant yea": [0, 65535], "yea dost": [0, 65535], "thou ieere": [0, 65535], "ieere flowt": [0, 65535], "flowt me": [0, 65535], "the teeth": [0, 65535], "teeth thinkst": [0, 65535], "thinkst thou": [0, 65535], "thou i": [0, 65535], "i iest": [0, 65535], "iest hold": [0, 65535], "hold take": [0, 65535], "take thou": [0, 65535], "that beats": [0, 65535], "beats dro": [0, 65535], "dro s": [0, 65535], "s dr": [0, 65535], "dr hold": [0, 65535], "hold sir": [0, 65535], "sir for": [0, 65535], "sake now": [0, 65535], "now your": [0, 65535], "your iest": [0, 65535], "iest is": [0, 65535], "is earnest": [0, 65535], "earnest vpon": [0, 65535], "vpon what": [0, 65535], "what bargaine": [0, 65535], "bargaine do": [0, 65535], "you giue": [0, 65535], "giue it": [0, 65535], "it me": [0, 65535], "me antiph": [0, 65535], "antiph because": [0, 65535], "because that": [0, 65535], "i familiarlie": [0, 65535], "familiarlie sometimes": [0, 65535], "sometimes doe": [0, 65535], "doe vse": [0, 65535], "vse you": [0, 65535], "my foole": [0, 65535], "foole and": [0, 65535], "and chat": [0, 65535], "chat with": [0, 65535], "you your": [0, 65535], "your sawcinesse": [0, 65535], "sawcinesse will": [0, 65535], "will iest": [0, 65535], "iest vpon": [0, 65535], "my loue": [0, 65535], "a common": [0, 65535], "common of": [0, 65535], "my serious": [0, 65535], "serious howres": [0, 65535], "howres when": [0, 65535], "the sunne": [0, 65535], "sunne shines": [0, 65535], "shines let": [0, 65535], "let foolish": [0, 65535], "foolish gnats": [0, 65535], "gnats make": [0, 65535], "make sport": [0, 65535], "sport but": [0, 65535], "but creepe": [0, 65535], "creepe in": [0, 65535], "in crannies": [0, 65535], "crannies when": [0, 65535], "he hides": [0, 65535], "hides his": [0, 65535], "his beames": [0, 65535], "beames if": [0, 65535], "me know": [0, 65535], "know my": [0, 65535], "my aspect": [0, 65535], "aspect and": [0, 65535], "and fashion": [0, 65535], "fashion your": [0, 65535], "your demeanor": [0, 65535], "demeanor to": [0, 65535], "my lookes": [0, 65535], "lookes or": [0, 65535], "will beat": [0, 65535], "beat this": [0, 65535], "this method": [0, 65535], "method in": [0, 65535], "your sconce": [0, 65535], "sconce s": [0, 65535], "dro sconce": [0, 65535], "sconce call": [0, 65535], "you it": [0, 65535], "so you": [0, 65535], "would leaue": [0, 65535], "leaue battering": [0, 65535], "battering i": [0, 65535], "had rather": [0, 65535], "rather haue": [0, 65535], "haue it": [0, 65535], "you vse": [0, 65535], "vse these": [0, 65535], "these blows": [0, 65535], "blows long": [0, 65535], "long i": [0, 65535], "must get": [0, 65535], "a sconce": [0, 65535], "sconce for": [0, 65535], "my head": [0, 65535], "and insconce": [0, 65535], "insconce it": [0, 65535], "to or": [0, 65535], "shall seek": [0, 65535], "seek my": [0, 65535], "wit in": [0, 65535], "shoulders but": [0, 65535], "pray sir": [0, 65535], "why am": [0, 65535], "i beaten": [0, 65535], "beaten ant": [0, 65535], "ant dost": [0, 65535], "thou not": [0, 65535], "know s": [0, 65535], "dro nothing": [0, 65535], "nothing sir": [0, 65535], "am beaten": [0, 65535], "ant shall": [0, 65535], "you why": [0, 65535], "why s": [0, 65535], "i sir": [0, 65535], "and wherefore": [0, 65535], "say euery": [0, 65535], "euery why": [0, 65535], "why hath": [0, 65535], "a wherefore": [0, 65535], "why first": [0, 65535], "first for": [0, 65535], "for flowting": [0, 65535], "flowting me": [0, 65535], "then wherefore": [0, 65535], "for vrging": [0, 65535], "vrging it": [0, 65535], "second time": [0, 65535], "dro was": [0, 65535], "there euer": [0, 65535], "euer anie": [0, 65535], "anie man": [0, 65535], "man thus": [0, 65535], "thus beaten": [0, 65535], "beaten out": [0, 65535], "of season": [0, 65535], "season when": [0, 65535], "the why": [0, 65535], "why and": [0, 65535], "the wherefore": [0, 65535], "wherefore is": [0, 65535], "neither rime": [0, 65535], "rime nor": [0, 65535], "nor reason": [0, 65535], "reason well": [0, 65535], "thanke you": [0, 65535], "you ant": [0, 65535], "ant thanke": [0, 65535], "thanke me": [0, 65535], "for what": [0, 65535], "what s": [0, 65535], "this something": [0, 65535], "something that": [0, 65535], "nothing ant": [0, 65535], "ant ile": [0, 65535], "ile make": [0, 65535], "make you": [0, 65535], "you amends": [0, 65535], "amends next": [0, 65535], "next to": [0, 65535], "to giue": [0, 65535], "giue you": [0, 65535], "you nothing": [0, 65535], "nothing for": [0, 65535], "for something": [0, 65535], "something but": [0, 65535], "it dinner": [0, 65535], "time s": [0, 65535], "thinke the": [0, 65535], "the meat": [0, 65535], "meat wants": [0, 65535], "wants that": [0, 65535], "haue ant": [0, 65535], "ant in": [0, 65535], "sir what's": [0, 65535], "that s": [0, 65535], "dro basting": [0, 65535], "basting ant": [0, 65535], "sir then": [0, 65535], "then 'twill": [0, 65535], "'twill be": [0, 65535], "be drie": [0, 65535], "drie s": [0, 65535], "be sir": [0, 65535], "you eat": [0, 65535], "eat none": [0, 65535], "none of": [0, 65535], "ant your": [0, 65535], "your reason": [0, 65535], "reason s": [0, 65535], "dro lest": [0, 65535], "lest it": [0, 65535], "it make": [0, 65535], "you chollericke": [0, 65535], "chollericke and": [0, 65535], "and purchase": [0, 65535], "purchase me": [0, 65535], "me another": [0, 65535], "another drie": [0, 65535], "drie basting": [0, 65535], "sir learne": [0, 65535], "learne to": [0, 65535], "to iest": [0, 65535], "iest in": [0, 65535], "time there's": [0, 65535], "time for": [0, 65535], "for all": [0, 65535], "all things": [0, 65535], "things s": [0, 65535], "i durst": [0, 65535], "durst haue": [0, 65535], "haue denied": [0, 65535], "denied that": [0, 65535], "that before": [0, 65535], "before you": [0, 65535], "you were": [0, 65535], "so chollericke": [0, 65535], "chollericke anti": [0, 65535], "anti by": [0, 65535], "what rule": [0, 65535], "rule sir": [0, 65535], "sir s": [0, 65535], "sir by": [0, 65535], "a rule": [0, 65535], "rule as": [0, 65535], "as plaine": [0, 65535], "plaine as": [0, 65535], "the plaine": [0, 65535], "plaine bald": [0, 65535], "bald pate": [0, 65535], "pate of": [0, 65535], "of father": [0, 65535], "father time": [0, 65535], "time himselfe": [0, 65535], "himselfe ant": [0, 65535], "ant let's": [0, 65535], "let's heare": [0, 65535], "it s": [0, 65535], "dro there's": [0, 65535], "no time": [0, 65535], "man to": [0, 65535], "to recouer": [0, 65535], "recouer his": [0, 65535], "his haire": [0, 65535], "haire that": [0, 65535], "that growes": [0, 65535], "growes bald": [0, 65535], "bald by": [0, 65535], "nature ant": [0, 65535], "ant may": [0, 65535], "may he": [0, 65535], "he not": [0, 65535], "not doe": [0, 65535], "by fine": [0, 65535], "fine and": [0, 65535], "and recouerie": [0, 65535], "recouerie s": [0, 65535], "dro yes": [0, 65535], "yes to": [0, 65535], "to pay": [0, 65535], "pay a": [0, 65535], "fine for": [0, 65535], "a perewig": [0, 65535], "perewig and": [0, 65535], "and recouer": [0, 65535], "recouer the": [0, 65535], "the lost": [0, 65535], "lost haire": [0, 65535], "haire of": [0, 65535], "of another": [0, 65535], "another man": [0, 65535], "man ant": [0, 65535], "is time": [0, 65535], "time such": [0, 65535], "a niggard": [0, 65535], "niggard of": [0, 65535], "of haire": [0, 65535], "haire being": [0, 65535], "being as": [0, 65535], "so plentifull": [0, 65535], "plentifull an": [0, 65535], "an excrement": [0, 65535], "excrement s": [0, 65535], "dro because": [0, 65535], "a blessing": [0, 65535], "blessing that": [0, 65535], "that hee": [0, 65535], "hee bestowes": [0, 65535], "bestowes on": [0, 65535], "on beasts": [0, 65535], "beasts and": [0, 65535], "and what": [0, 65535], "hath scanted": [0, 65535], "scanted them": [0, 65535], "in haire": [0, 65535], "haire hee": [0, 65535], "hee hath": [0, 65535], "hath giuen": [0, 65535], "giuen them": [0, 65535], "in wit": [0, 65535], "wit ant": [0, 65535], "why but": [0, 65535], "but theres": [0, 65535], "theres manie": [0, 65535], "manie a": [0, 65535], "man hath": [0, 65535], "hath more": [0, 65535], "more haire": [0, 65535], "haire then": [0, 65535], "then wit": [0, 65535], "wit s": [0, 65535], "dro not": [0, 65535], "not a": [0, 65535], "man of": [0, 65535], "those but": [0, 65535], "hath the": [0, 65535], "the wit": [0, 65535], "wit to": [0, 65535], "to lose": [0, 65535], "lose his": [0, 65535], "haire ant": [0, 65535], "why thou": [0, 65535], "didst conclude": [0, 65535], "conclude hairy": [0, 65535], "hairy men": [0, 65535], "men plain": [0, 65535], "plain dealers": [0, 65535], "dealers without": [0, 65535], "without wit": [0, 65535], "the plainer": [0, 65535], "plainer dealer": [0, 65535], "dealer the": [0, 65535], "the sooner": [0, 65535], "sooner lost": [0, 65535], "lost yet": [0, 65535], "he looseth": [0, 65535], "looseth it": [0, 65535], "a kinde": [0, 65535], "kinde of": [0, 65535], "of iollitie": [0, 65535], "iollitie an": [0, 65535], "an for": [0, 65535], "what reason": [0, 65535], "dro for": [0, 65535], "two and": [0, 65535], "and sound": [0, 65535], "sound ones": [0, 65535], "ones to": [0, 65535], "to an": [0, 65535], "an nay": [0, 65535], "nay not": [0, 65535], "not sound": [0, 65535], "sound i": [0, 65535], "dro sure": [0, 65535], "sure ones": [0, 65535], "ones then": [0, 65535], "then an": [0, 65535], "not sure": [0, 65535], "sure in": [0, 65535], "thing falsing": [0, 65535], "falsing s": [0, 65535], "dro certaine": [0, 65535], "certaine ones": [0, 65535], "an name": [0, 65535], "name them": [0, 65535], "them s": [0, 65535], "one to": [0, 65535], "to saue": [0, 65535], "saue the": [0, 65535], "money that": [0, 65535], "he spends": [0, 65535], "spends in": [0, 65535], "in trying": [0, 65535], "other that": [0, 65535], "at dinner": [0, 65535], "dinner they": [0, 65535], "they should": [0, 65535], "should not": [0, 65535], "not drop": [0, 65535], "drop in": [0, 65535], "his porrage": [0, 65535], "porrage an": [0, 65535], "an you": [0, 65535], "would all": [0, 65535], "time haue": [0, 65535], "haue prou'd": [0, 65535], "prou'd there": [0, 65535], "marry and": [0, 65535], "did sir": [0, 65535], "sir namely": [0, 65535], "namely in": [0, 65535], "in no": [0, 65535], "recouer haire": [0, 65535], "haire lost": [0, 65535], "lost by": [0, 65535], "nature an": [0, 65535], "an but": [0, 65535], "but your": [0, 65535], "reason was": [0, 65535], "not substantiall": [0, 65535], "substantiall why": [0, 65535], "why there": [0, 65535], "recouer s": [0, 65535], "dro thus": [0, 65535], "thus i": [0, 65535], "i mend": [0, 65535], "mend it": [0, 65535], "it time": [0, 65535], "himselfe is": [0, 65535], "is bald": [0, 65535], "bald and": [0, 65535], "therefore to": [0, 65535], "the worlds": [0, 65535], "worlds end": [0, 65535], "end will": [0, 65535], "haue bald": [0, 65535], "bald followers": [0, 65535], "followers an": [0, 65535], "an i": [0, 65535], "i knew": [0, 65535], "knew 'twould": [0, 65535], "'twould be": [0, 65535], "a bald": [0, 65535], "bald conclusion": [0, 65535], "conclusion but": [0, 65535], "soft who": [0, 65535], "who wafts": [0, 65535], "wafts vs": [0, 65535], "vs yonder": [0, 65535], "yonder enter": [0, 65535], "adriana and": [0, 65535], "and luciana": [0, 65535], "luciana adri": [0, 65535], "adri i": [0, 65535], "i antipholus": [0, 65535], "antipholus looke": [0, 65535], "looke strange": [0, 65535], "strange and": [0, 65535], "and frowne": [0, 65535], "frowne some": [0, 65535], "other mistresse": [0, 65535], "mistresse hath": [0, 65535], "hath thy": [0, 65535], "thy sweet": [0, 65535], "sweet aspects": [0, 65535], "aspects i": [0, 65535], "am not": [0, 65535], "not adriana": [0, 65535], "adriana nor": [0, 65535], "nor thy": [0, 65535], "thy wife": [0, 65535], "time was": [0, 65535], "once when": [0, 65535], "when thou": [0, 65535], "thou vn": [0, 65535], "vn vrg'd": [0, 65535], "vrg'd wouldst": [0, 65535], "wouldst vow": [0, 65535], "vow that": [0, 65535], "that neuer": [0, 65535], "neuer words": [0, 65535], "were musicke": [0, 65535], "musicke to": [0, 65535], "to thine": [0, 65535], "thine eare": [0, 65535], "eare that": [0, 65535], "neuer obiect": [0, 65535], "obiect pleasing": [0, 65535], "pleasing in": [0, 65535], "in thine": [0, 65535], "thine eye": [0, 65535], "eye that": [0, 65535], "neuer touch": [0, 65535], "touch well": [0, 65535], "well welcome": [0, 65535], "welcome to": [0, 65535], "to thy": [0, 65535], "hand that": [0, 65535], "neuer meat": [0, 65535], "meat sweet": [0, 65535], "sweet sauour'd": [0, 65535], "sauour'd in": [0, 65535], "thy taste": [0, 65535], "taste vnlesse": [0, 65535], "vnlesse i": [0, 65535], "i spake": [0, 65535], "spake or": [0, 65535], "or look'd": [0, 65535], "look'd or": [0, 65535], "or touch'd": [0, 65535], "touch'd or": [0, 65535], "or caru'd": [0, 65535], "caru'd to": [0, 65535], "thee how": [0, 65535], "how comes": [0, 65535], "comes it": [0, 65535], "now my": [0, 65535], "husband oh": [0, 65535], "oh how": [0, 65535], "art then": [0, 65535], "then estranged": [0, 65535], "estranged from": [0, 65535], "from thy": [0, 65535], "selfe thy": [0, 65535], "i call": [0, 65535], "call it": [0, 65535], "it being": [0, 65535], "being strange": [0, 65535], "strange to": [0, 65535], "that vndiuidable": [0, 65535], "vndiuidable incorporate": [0, 65535], "incorporate am": [0, 65535], "am better": [0, 65535], "better then": [0, 65535], "then thy": [0, 65535], "thy deere": [0, 65535], "deere selfes": [0, 65535], "part ah": [0, 65535], "ah doe": [0, 65535], "not teare": [0, 65535], "teare away": [0, 65535], "away thy": [0, 65535], "selfe from": [0, 65535], "from me": [0, 65535], "for know": [0, 65535], "as easie": [0, 65535], "easie maist": [0, 65535], "maist thou": [0, 65535], "thou fall": [0, 65535], "fall a": [0, 65535], "a drop": [0, 65535], "drop of": [0, 65535], "water in": [0, 65535], "the breaking": [0, 65535], "breaking gulfe": [0, 65535], "gulfe and": [0, 65535], "take vnmingled": [0, 65535], "vnmingled thence": [0, 65535], "thence that": [0, 65535], "that drop": [0, 65535], "drop againe": [0, 65535], "againe without": [0, 65535], "without addition": [0, 65535], "addition or": [0, 65535], "or diminishing": [0, 65535], "diminishing as": [0, 65535], "as take": [0, 65535], "take from": [0, 65535], "not me": [0, 65535], "me too": [0, 65535], "too how": [0, 65535], "how deerely": [0, 65535], "deerely would": [0, 65535], "would it": [0, 65535], "it touch": [0, 65535], "touch thee": [0, 65535], "thee to": [0, 65535], "the quicke": [0, 65535], "quicke shouldst": [0, 65535], "shouldst thou": [0, 65535], "thou but": [0, 65535], "but heare": [0, 65535], "heare i": [0, 65535], "were licencious": [0, 65535], "licencious and": [0, 65535], "this body": [0, 65535], "body consecrate": [0, 65535], "consecrate to": [0, 65535], "thee by": [0, 65535], "by ruffian": [0, 65535], "ruffian lust": [0, 65535], "lust should": [0, 65535], "be contaminate": [0, 65535], "contaminate wouldst": [0, 65535], "wouldst thou": [0, 65535], "not spit": [0, 65535], "spit at": [0, 65535], "and spurne": [0, 65535], "spurne at": [0, 65535], "and hurle": [0, 65535], "hurle the": [0, 65535], "name of": [0, 65535], "of husband": [0, 65535], "husband in": [0, 65535], "my face": [0, 65535], "and teare": [0, 65535], "teare the": [0, 65535], "the stain'd": [0, 65535], "stain'd skin": [0, 65535], "skin of": [0, 65535], "my harlot": [0, 65535], "harlot brow": [0, 65535], "brow and": [0, 65535], "my false": [0, 65535], "false hand": [0, 65535], "hand cut": [0, 65535], "the wedding": [0, 65535], "wedding ring": [0, 65535], "a deepe": [0, 65535], "deepe diuorcing": [0, 65535], "diuorcing vow": [0, 65535], "vow i": [0, 65535], "know thou": [0, 65535], "thou canst": [0, 65535], "canst and": [0, 65535], "therefore see": [0, 65535], "see thou": [0, 65535], "thou doe": [0, 65535], "am possest": [0, 65535], "an adulterate": [0, 65535], "adulterate blot": [0, 65535], "blot my": [0, 65535], "my bloud": [0, 65535], "bloud is": [0, 65535], "is mingled": [0, 65535], "the crime": [0, 65535], "crime of": [0, 65535], "of lust": [0, 65535], "lust for": [0, 65535], "for if": [0, 65535], "if we": [0, 65535], "we two": [0, 65535], "two be": [0, 65535], "be one": [0, 65535], "and thou": [0, 65535], "thou play": [0, 65535], "play false": [0, 65535], "false i": [0, 65535], "doe digest": [0, 65535], "digest the": [0, 65535], "the poison": [0, 65535], "poison of": [0, 65535], "of thy": [0, 65535], "thy flesh": [0, 65535], "flesh being": [0, 65535], "being strumpeted": [0, 65535], "strumpeted by": [0, 65535], "by thy": [0, 65535], "thy contagion": [0, 65535], "contagion keepe": [0, 65535], "keepe then": [0, 65535], "then faire": [0, 65535], "faire league": [0, 65535], "league and": [0, 65535], "and truce": [0, 65535], "truce with": [0, 65535], "thy true": [0, 65535], "true bed": [0, 65535], "i liue": [0, 65535], "liue distain'd": [0, 65535], "distain'd thou": [0, 65535], "thou vndishonoured": [0, 65535], "vndishonoured antip": [0, 65535], "antip plead": [0, 65535], "plead you": [0, 65535], "me faire": [0, 65535], "faire dame": [0, 65535], "dame i": [0, 65535], "you not": [0, 65535], "not in": [0, 65535], "in ephesus": [0, 65535], "ephesus i": [0, 65535], "but two": [0, 65535], "two houres": [0, 65535], "houres old": [0, 65535], "old as": [0, 65535], "as strange": [0, 65535], "strange vnto": [0, 65535], "vnto your": [0, 65535], "towne as": [0, 65535], "your talke": [0, 65535], "talke who": [0, 65535], "who euery": [0, 65535], "euery word": [0, 65535], "word by": [0, 65535], "wit being": [0, 65535], "being scan'd": [0, 65535], "scan'd wants": [0, 65535], "wants wit": [0, 65535], "all one": [0, 65535], "one word": [0, 65535], "word to": [0, 65535], "to vnderstand": [0, 65535], "vnderstand luci": [0, 65535], "fie brother": [0, 65535], "brother how": [0, 65535], "how the": [0, 65535], "world is": [0, 65535], "is chang'd": [0, 65535], "chang'd with": [0, 65535], "when were": [0, 65535], "you wont": [0, 65535], "wont to": [0, 65535], "to vse": [0, 65535], "vse my": [0, 65535], "sister thus": [0, 65535], "she sent": [0, 65535], "sent for": [0, 65535], "you by": [0, 65535], "by dromio": [0, 65535], "dromio home": [0, 65535], "dinner ant": [0, 65535], "ant by": [0, 65535], "dromio drom": [0, 65535], "drom by": [0, 65535], "me adr": [0, 65535], "adr by": [0, 65535], "by thee": [0, 65535], "this thou": [0, 65535], "didst returne": [0, 65535], "returne from": [0, 65535], "did buffet": [0, 65535], "buffet thee": [0, 65535], "blowes denied": [0, 65535], "denied my": [0, 65535], "house for": [0, 65535], "his me": [0, 65535], "wife ant": [0, 65535], "ant did": [0, 65535], "you conuerse": [0, 65535], "conuerse sir": [0, 65535], "sir with": [0, 65535], "this gentlewoman": [0, 65535], "gentlewoman what": [0, 65535], "the course": [0, 65535], "and drift": [0, 65535], "drift of": [0, 65535], "your compact": [0, 65535], "compact s": [0, 65535], "i neuer": [0, 65535], "neuer saw": [0, 65535], "saw her": [0, 65535], "her till": [0, 65535], "till this": [0, 65535], "time ant": [0, 65535], "thou liest": [0, 65535], "liest for": [0, 65535], "for euen": [0, 65535], "euen her": [0, 65535], "her verie": [0, 65535], "verie words": [0, 65535], "words didst": [0, 65535], "thou deliuer": [0, 65535], "deliuer to": [0, 65535], "mart s": [0, 65535], "neuer spake": [0, 65535], "spake with": [0, 65535], "her in": [0, 65535], "life ant": [0, 65535], "ant how": [0, 65535], "how can": [0, 65535], "can she": [0, 65535], "she thus": [0, 65535], "thus then": [0, 65535], "then call": [0, 65535], "call vs": [0, 65535], "vs by": [0, 65535], "by our": [0, 65535], "our names": [0, 65535], "names vnlesse": [0, 65535], "vnlesse it": [0, 65535], "be by": [0, 65535], "by inspiration": [0, 65535], "inspiration adri": [0, 65535], "adri how": [0, 65535], "how ill": [0, 65535], "ill agrees": [0, 65535], "agrees it": [0, 65535], "your grauitie": [0, 65535], "grauitie to": [0, 65535], "to counterfeit": [0, 65535], "counterfeit thus": [0, 65535], "thus grosely": [0, 65535], "grosely with": [0, 65535], "your slaue": [0, 65535], "slaue abetting": [0, 65535], "abetting him": [0, 65535], "to thwart": [0, 65535], "thwart me": [0, 65535], "my moode": [0, 65535], "moode be": [0, 65535], "my wrong": [0, 65535], "wrong you": [0, 65535], "are from": [0, 65535], "me exempt": [0, 65535], "exempt but": [0, 65535], "but wrong": [0, 65535], "wrong not": [0, 65535], "that wrong": [0, 65535], "wrong with": [0, 65535], "a more": [0, 65535], "more contempt": [0, 65535], "contempt come": [0, 65535], "come i": [0, 65535], "will fasten": [0, 65535], "fasten on": [0, 65535], "on this": [0, 65535], "this sleeue": [0, 65535], "sleeue of": [0, 65535], "of thine": [0, 65535], "thine thou": [0, 65535], "an elme": [0, 65535], "elme my": [0, 65535], "husband i": [0, 65535], "i a": [0, 65535], "a vine": [0, 65535], "vine whose": [0, 65535], "whose weaknesse": [0, 65535], "weaknesse married": [0, 65535], "married to": [0, 65535], "thy stranger": [0, 65535], "stranger state": [0, 65535], "state makes": [0, 65535], "me with": [0, 65535], "thy strength": [0, 65535], "strength to": [0, 65535], "to communicate": [0, 65535], "communicate if": [0, 65535], "if ought": [0, 65535], "ought possesse": [0, 65535], "possesse thee": [0, 65535], "me it": [0, 65535], "is drosse": [0, 65535], "drosse vsurping": [0, 65535], "vsurping iuie": [0, 65535], "iuie brier": [0, 65535], "brier or": [0, 65535], "or idle": [0, 65535], "idle mosse": [0, 65535], "mosse who": [0, 65535], "who all": [0, 65535], "for want": [0, 65535], "want of": [0, 65535], "of pruning": [0, 65535], "pruning with": [0, 65535], "with intrusion": [0, 65535], "intrusion infect": [0, 65535], "infect thy": [0, 65535], "thy sap": [0, 65535], "sap and": [0, 65535], "and liue": [0, 65535], "liue on": [0, 65535], "thy confusion": [0, 65535], "confusion ant": [0, 65535], "ant to": [0, 65535], "mee shee": [0, 65535], "shee speakes": [0, 65535], "speakes shee": [0, 65535], "shee moues": [0, 65535], "moues mee": [0, 65535], "mee for": [0, 65535], "her theame": [0, 65535], "theame what": [0, 65535], "what was": [0, 65535], "was i": [0, 65535], "i married": [0, 65535], "my dreame": [0, 65535], "dreame or": [0, 65535], "or sleepe": [0, 65535], "sleepe i": [0, 65535], "i now": [0, 65535], "and thinke": [0, 65535], "thinke i": [0, 65535], "i heare": [0, 65535], "heare all": [0, 65535], "this what": [0, 65535], "what error": [0, 65535], "error driues": [0, 65535], "driues our": [0, 65535], "our eies": [0, 65535], "eies and": [0, 65535], "and eares": [0, 65535], "eares amisse": [0, 65535], "amisse vntill": [0, 65535], "vntill i": [0, 65535], "know this": [0, 65535], "this sure": [0, 65535], "sure vncertaintie": [0, 65535], "vncertaintie ile": [0, 65535], "ile entertaine": [0, 65535], "entertaine the": [0, 65535], "the free'd": [0, 65535], "free'd fallacie": [0, 65535], "fallacie luc": [0, 65535], "luc dromio": [0, 65535], "dromio goe": [0, 65535], "bid the": [0, 65535], "the seruants": [0, 65535], "seruants spred": [0, 65535], "spred for": [0, 65535], "for dinner": [0, 65535], "dinner s": [0, 65535], "oh for": [0, 65535], "my beads": [0, 65535], "beads i": [0, 65535], "i crosse": [0, 65535], "crosse me": [0, 65535], "a sinner": [0, 65535], "sinner this": [0, 65535], "the fairie": [0, 65535], "fairie land": [0, 65535], "land oh": [0, 65535], "oh spight": [0, 65535], "spight of": [0, 65535], "of spights": [0, 65535], "spights we": [0, 65535], "we talke": [0, 65535], "talke with": [0, 65535], "with goblins": [0, 65535], "goblins owles": [0, 65535], "owles and": [0, 65535], "and sprights": [0, 65535], "sprights if": [0, 65535], "we obay": [0, 65535], "obay them": [0, 65535], "them not": [0, 65535], "this will": [0, 65535], "will insue": [0, 65535], "insue they'll": [0, 65535], "they'll sucke": [0, 65535], "sucke our": [0, 65535], "our breath": [0, 65535], "breath or": [0, 65535], "or pinch": [0, 65535], "pinch vs": [0, 65535], "vs blacke": [0, 65535], "blacke and": [0, 65535], "and blew": [0, 65535], "blew luc": [0, 65535], "why prat'st": [0, 65535], "prat'st thou": [0, 65535], "thou to": [0, 65535], "and answer'st": [0, 65535], "answer'st not": [0, 65535], "not dromio": [0, 65535], "thou dromio": [0, 65535], "thou snaile": [0, 65535], "snaile thou": [0, 65535], "thou slug": [0, 65535], "slug thou": [0, 65535], "thou sot": [0, 65535], "sot s": [0, 65535], "am transformed": [0, 65535], "transformed master": [0, 65535], "master am": [0, 65535], "i not": [0, 65535], "not ant": [0, 65535], "art in": [0, 65535], "in minde": [0, 65535], "minde and": [0, 65535], "so am": [0, 65535], "i s": [0, 65535], "nay master": [0, 65535], "master both": [0, 65535], "both in": [0, 65535], "my shape": [0, 65535], "shape ant": [0, 65535], "hast thine": [0, 65535], "thine owne": [0, 65535], "owne forme": [0, 65535], "forme s": [0, 65535], "an ape": [0, 65535], "ape luc": [0, 65535], "luc if": [0, 65535], "art chang'd": [0, 65535], "chang'd to": [0, 65535], "to ought": [0, 65535], "ought 'tis": [0, 65535], "'tis to": [0, 65535], "asse s": [0, 65535], "dro 'tis": [0, 65535], "'tis true": [0, 65535], "true she": [0, 65535], "she rides": [0, 65535], "rides me": [0, 65535], "i long": [0, 65535], "long for": [0, 65535], "for grasse": [0, 65535], "grasse 'tis": [0, 65535], "'tis so": [0, 65535], "asse else": [0, 65535], "else it": [0, 65535], "it could": [0, 65535], "could neuer": [0, 65535], "neuer be": [0, 65535], "be but": [0, 65535], "should know": [0, 65535], "know her": [0, 65535], "well as": [0, 65535], "she knowes": [0, 65535], "knowes me": [0, 65535], "adr come": [0, 65535], "come come": [0, 65535], "longer will": [0, 65535], "a foole": [0, 65535], "foole to": [0, 65535], "finger in": [0, 65535], "the eie": [0, 65535], "eie and": [0, 65535], "and weepe": [0, 65535], "weepe whil'st": [0, 65535], "whil'st man": [0, 65535], "and master": [0, 65535], "master laughes": [0, 65535], "laughes my": [0, 65535], "my woes": [0, 65535], "woes to": [0, 65535], "to scorne": [0, 65535], "scorne come": [0, 65535], "come sir": [0, 65535], "sir to": [0, 65535], "dinner dromio": [0, 65535], "dromio keepe": [0, 65535], "keepe the": [0, 65535], "gate husband": [0, 65535], "husband ile": [0, 65535], "ile dine": [0, 65535], "dine aboue": [0, 65535], "aboue with": [0, 65535], "and shriue": [0, 65535], "shriue you": [0, 65535], "thousand idle": [0, 65535], "idle prankes": [0, 65535], "prankes sirra": [0, 65535], "sirra if": [0, 65535], "any aske": [0, 65535], "aske you": [0, 65535], "master say": [0, 65535], "say he": [0, 65535], "he dines": [0, 65535], "dines forth": [0, 65535], "let no": [0, 65535], "no creature": [0, 65535], "creature enter": [0, 65535], "enter come": [0, 65535], "come sister": [0, 65535], "sister dromio": [0, 65535], "dromio play": [0, 65535], "play the": [0, 65535], "porter well": [0, 65535], "well ant": [0, 65535], "ant am": [0, 65535], "i in": [0, 65535], "in heauen": [0, 65535], "heauen or": [0, 65535], "or in": [0, 65535], "in hell": [0, 65535], "hell sleeping": [0, 65535], "sleeping or": [0, 65535], "or waking": [0, 65535], "waking mad": [0, 65535], "mad or": [0, 65535], "or well": [0, 65535], "well aduisde": [0, 65535], "aduisde knowne": [0, 65535], "knowne vnto": [0, 65535], "vnto these": [0, 65535], "these and": [0, 65535], "selfe disguisde": [0, 65535], "disguisde ile": [0, 65535], "ile say": [0, 65535], "say as": [0, 65535], "say and": [0, 65535], "and perseuer": [0, 65535], "perseuer so": [0, 65535], "this mist": [0, 65535], "mist at": [0, 65535], "all aduentures": [0, 65535], "aduentures go": [0, 65535], "go s": [0, 65535], "dro master": [0, 65535], "master shall": [0, 65535], "be porter": [0, 65535], "porter at": [0, 65535], "gate adr": [0, 65535], "adr i": [0, 65535], "let none": [0, 65535], "none enter": [0, 65535], "enter least": [0, 65535], "i breake": [0, 65535], "your pate": [0, 65535], "pate luc": [0, 65535], "luc come": [0, 65535], "come antipholus": [0, 65535], "antipholus we": [0, 65535], "dine to": [0, 65535], "to late": [0, 65535], "actus secundus enter": [0, 65535], "secundus enter adriana": [0, 65535], "enter adriana wife": [0, 65535], "adriana wife to": [0, 65535], "wife to antipholis": [0, 65535], "to antipholis sereptus": [0, 65535], "antipholis sereptus with": [0, 65535], "sereptus with luciana": [0, 65535], "with luciana her": [0, 65535], "luciana her sister": [0, 65535], "her sister adr": [0, 65535], "sister adr neither": [0, 65535], "adr neither my": [0, 65535], "neither my husband": [0, 65535], "my husband nor": [0, 65535], "husband nor the": [0, 65535], "nor the slaue": [0, 65535], "the slaue return'd": [0, 65535], "slaue return'd that": [0, 65535], "return'd that in": [0, 65535], "that in such": [0, 65535], "in such haste": [0, 65535], "such haste i": [0, 65535], "haste i sent": [0, 65535], "i sent to": [0, 65535], "sent to seeke": [0, 65535], "to seeke his": [0, 65535], "seeke his master": [0, 65535], "his master sure": [0, 65535], "master sure luciana": [0, 65535], "sure luciana it": [0, 65535], "luciana it is": [0, 65535], "it is two": [0, 65535], "is two a": [0, 65535], "two a clocke": [0, 65535], "a clocke luc": [0, 65535], "clocke luc perhaps": [0, 65535], "luc perhaps some": [0, 65535], "perhaps some merchant": [0, 65535], "some merchant hath": [0, 65535], "merchant hath inuited": [0, 65535], "hath inuited him": [0, 65535], "inuited him and": [0, 65535], "him and from": [0, 65535], "from the mart": [0, 65535], "the mart he's": [0, 65535], "mart he's somewhere": [0, 65535], "he's somewhere gone": [0, 65535], "somewhere gone to": [0, 65535], "gone to dinner": [0, 65535], "to dinner good": [0, 65535], "dinner good sister": [0, 65535], "good sister let": [0, 65535], "sister let vs": [0, 65535], "let vs dine": [0, 65535], "vs dine and": [0, 65535], "dine and neuer": [0, 65535], "and neuer fret": [0, 65535], "neuer fret a": [0, 65535], "fret a man": [0, 65535], "a man is": [0, 65535], "man is master": [0, 65535], "is master of": [0, 65535], "master of his": [0, 65535], "of his libertie": [0, 65535], "his libertie time": [0, 65535], "libertie time is": [0, 65535], "time is their": [0, 65535], "is their master": [0, 65535], "their master and": [0, 65535], "master and when": [0, 65535], "and when they": [0, 65535], "when they see": [0, 65535], "they see time": [0, 65535], "see time they'll": [0, 65535], "time they'll goe": [0, 65535], "they'll goe or": [0, 65535], "goe or come": [0, 65535], "or come if": [0, 65535], "come if so": [0, 65535], "if so be": [0, 65535], "so be patient": [0, 65535], "be patient sister": [0, 65535], "patient sister adr": [0, 65535], "sister adr why": [0, 65535], "adr why should": [0, 65535], "why should their": [0, 65535], "should their libertie": [0, 65535], "their libertie then": [0, 65535], "libertie then ours": [0, 65535], "then ours be": [0, 65535], "ours be more": [0, 65535], "be more luc": [0, 65535], "more luc because": [0, 65535], "luc because their": [0, 65535], "because their businesse": [0, 65535], "their businesse still": [0, 65535], "businesse still lies": [0, 65535], "still lies out": [0, 65535], "lies out a": [0, 65535], "out a dore": [0, 65535], "a dore adr": [0, 65535], "dore adr looke": [0, 65535], "adr looke when": [0, 65535], "looke when i": [0, 65535], "when i serue": [0, 65535], "i serue him": [0, 65535], "serue him so": [0, 65535], "so he takes": [0, 65535], "takes it thus": [0, 65535], "it thus luc": [0, 65535], "thus luc oh": [0, 65535], "luc oh know": [0, 65535], "oh know he": [0, 65535], "know he is": [0, 65535], "he is the": [0, 65535], "is the bridle": [0, 65535], "the bridle of": [0, 65535], "bridle of your": [0, 65535], "of your will": [0, 65535], "your will adr": [0, 65535], "will adr there's": [0, 65535], "adr there's none": [0, 65535], "none but asses": [0, 65535], "but asses will": [0, 65535], "asses will be": [0, 65535], "will be bridled": [0, 65535], "be bridled so": [0, 65535], "bridled so luc": [0, 65535], "so luc why": [0, 65535], "luc why headstrong": [0, 65535], "why headstrong liberty": [0, 65535], "headstrong liberty is": [0, 65535], "liberty is lasht": [0, 65535], "is lasht with": [0, 65535], "lasht with woe": [0, 65535], "with woe there's": [0, 65535], "woe there's nothing": [0, 65535], "there's nothing situate": [0, 65535], "nothing situate vnder": [0, 65535], "situate vnder heauens": [0, 65535], "vnder heauens eye": [0, 65535], "heauens eye but": [0, 65535], "eye but hath": [0, 65535], "but hath his": [0, 65535], "hath his bound": [0, 65535], "his bound in": [0, 65535], "bound in earth": [0, 65535], "in earth in": [0, 65535], "earth in sea": [0, 65535], "in sea in": [0, 65535], "sea in skie": [0, 65535], "in skie the": [0, 65535], "skie the beasts": [0, 65535], "the beasts the": [0, 65535], "beasts the fishes": [0, 65535], "the fishes and": [0, 65535], "fishes and the": [0, 65535], "and the winged": [0, 65535], "the winged fowles": [0, 65535], "winged fowles are": [0, 65535], "fowles are their": [0, 65535], "are their males": [0, 65535], "their males subiects": [0, 65535], "males subiects and": [0, 65535], "subiects and at": [0, 65535], "and at their": [0, 65535], "at their controules": [0, 65535], "their controules man": [0, 65535], "controules man more": [0, 65535], "man more diuine": [0, 65535], "more diuine the": [0, 65535], "diuine the master": [0, 65535], "the master of": [0, 65535], "master of all": [0, 65535], "of all these": [0, 65535], "all these lord": [0, 65535], "these lord of": [0, 65535], "lord of the": [0, 65535], "of the wide": [0, 65535], "the wide world": [0, 65535], "wide world and": [0, 65535], "world and wilde": [0, 65535], "and wilde watry": [0, 65535], "wilde watry seas": [0, 65535], "watry seas indued": [0, 65535], "seas indued with": [0, 65535], "indued with intellectuall": [0, 65535], "with intellectuall sence": [0, 65535], "intellectuall sence and": [0, 65535], "sence and soules": [0, 65535], "and soules of": [0, 65535], "soules of more": [0, 65535], "of more preheminence": [0, 65535], "more preheminence then": [0, 65535], "preheminence then fish": [0, 65535], "then fish and": [0, 65535], "fish and fowles": [0, 65535], "and fowles are": [0, 65535], "fowles are masters": [0, 65535], "are masters to": [0, 65535], "masters to their": [0, 65535], "to their females": [0, 65535], "their females and": [0, 65535], "females and their": [0, 65535], "and their lords": [0, 65535], "their lords then": [0, 65535], "lords then let": [0, 65535], "then let your": [0, 65535], "let your will": [0, 65535], "your will attend": [0, 65535], "will attend on": [0, 65535], "attend on their": [0, 65535], "on their accords": [0, 65535], "their accords adri": [0, 65535], "accords adri this": [0, 65535], "adri this seruitude": [0, 65535], "this seruitude makes": [0, 65535], "seruitude makes you": [0, 65535], "makes you to": [0, 65535], "you to keepe": [0, 65535], "to keepe vnwed": [0, 65535], "keepe vnwed luci": [0, 65535], "vnwed luci not": [0, 65535], "luci not this": [0, 65535], "not this but": [0, 65535], "this but troubles": [0, 65535], "but troubles of": [0, 65535], "troubles of the": [0, 65535], "of the marriage": [0, 65535], "the marriage bed": [0, 65535], "marriage bed adr": [0, 65535], "bed adr but": [0, 65535], "adr but were": [0, 65535], "but were you": [0, 65535], "were you wedded": [0, 65535], "you wedded you": [0, 65535], "wedded you wold": [0, 65535], "you wold bear": [0, 65535], "wold bear some": [0, 65535], "bear some sway": [0, 65535], "some sway luc": [0, 65535], "sway luc ere": [0, 65535], "luc ere i": [0, 65535], "ere i learne": [0, 65535], "i learne loue": [0, 65535], "learne loue ile": [0, 65535], "loue ile practise": [0, 65535], "ile practise to": [0, 65535], "practise to obey": [0, 65535], "to obey adr": [0, 65535], "obey adr how": [0, 65535], "adr how if": [0, 65535], "how if your": [0, 65535], "if your husband": [0, 65535], "your husband start": [0, 65535], "husband start some": [0, 65535], "start some other": [0, 65535], "some other where": [0, 65535], "other where luc": [0, 65535], "where luc till": [0, 65535], "luc till he": [0, 65535], "till he come": [0, 65535], "he come home": [0, 65535], "come home againe": [0, 65535], "home againe i": [0, 65535], "againe i would": [0, 65535], "i would forbeare": [0, 65535], "would forbeare adr": [0, 65535], "forbeare adr patience": [0, 65535], "adr patience vnmou'd": [0, 65535], "patience vnmou'd no": [0, 65535], "vnmou'd no maruel": [0, 65535], "no maruel though": [0, 65535], "maruel though she": [0, 65535], "though she pause": [0, 65535], "she pause they": [0, 65535], "pause they can": [0, 65535], "they can be": [0, 65535], "can be meeke": [0, 65535], "be meeke that": [0, 65535], "meeke that haue": [0, 65535], "that haue no": [0, 65535], "haue no other": [0, 65535], "no other cause": [0, 65535], "other cause a": [0, 65535], "cause a wretched": [0, 65535], "a wretched soule": [0, 65535], "wretched soule bruis'd": [0, 65535], "soule bruis'd with": [0, 65535], "bruis'd with aduersitie": [0, 65535], "with aduersitie we": [0, 65535], "aduersitie we bid": [0, 65535], "we bid be": [0, 65535], "bid be quiet": [0, 65535], "be quiet when": [0, 65535], "quiet when we": [0, 65535], "when we heare": [0, 65535], "we heare it": [0, 65535], "heare it crie": [0, 65535], "it crie but": [0, 65535], "crie but were": [0, 65535], "but were we": [0, 65535], "were we burdned": [0, 65535], "we burdned with": [0, 65535], "burdned with like": [0, 65535], "with like waight": [0, 65535], "like waight of": [0, 65535], "waight of paine": [0, 65535], "of paine as": [0, 65535], "paine as much": [0, 65535], "as much or": [0, 65535], "much or more": [0, 65535], "or more we": [0, 65535], "more we should": [0, 65535], "we should our": [0, 65535], "should our selues": [0, 65535], "our selues complaine": [0, 65535], "selues complaine so": [0, 65535], "complaine so thou": [0, 65535], "so thou that": [0, 65535], "thou that hast": [0, 65535], "that hast no": [0, 65535], "hast no vnkinde": [0, 65535], "no vnkinde mate": [0, 65535], "vnkinde mate to": [0, 65535], "mate to greeue": [0, 65535], "to greeue thee": [0, 65535], "greeue thee with": [0, 65535], "thee with vrging": [0, 65535], "with vrging helpelesse": [0, 65535], "vrging helpelesse patience": [0, 65535], "helpelesse patience would": [0, 65535], "patience would releeue": [0, 65535], "would releeue me": [0, 65535], "releeue me but": [0, 65535], "me but if": [0, 65535], "but if thou": [0, 65535], "if thou liue": [0, 65535], "thou liue to": [0, 65535], "liue to see": [0, 65535], "to see like": [0, 65535], "see like right": [0, 65535], "like right bereft": [0, 65535], "right bereft this": [0, 65535], "bereft this foole": [0, 65535], "this foole beg'd": [0, 65535], "foole beg'd patience": [0, 65535], "beg'd patience in": [0, 65535], "patience in thee": [0, 65535], "in thee will": [0, 65535], "thee will be": [0, 65535], "will be left": [0, 65535], "be left luci": [0, 65535], "left luci well": [0, 65535], "luci well i": [0, 65535], "i will marry": [0, 65535], "will marry one": [0, 65535], "marry one day": [0, 65535], "one day but": [0, 65535], "day but to": [0, 65535], "but to trie": [0, 65535], "to trie heere": [0, 65535], "trie heere comes": [0, 65535], "heere comes your": [0, 65535], "comes your man": [0, 65535], "your man now": [0, 65535], "man now is": [0, 65535], "now is your": [0, 65535], "is your husband": [0, 65535], "your husband nie": [0, 65535], "husband nie enter": [0, 65535], "nie enter dromio": [0, 65535], "enter dromio eph": [0, 65535], "dromio eph adr": [0, 65535], "eph adr say": [0, 65535], "adr say is": [0, 65535], "say is your": [0, 65535], "is your tardie": [0, 65535], "your tardie master": [0, 65535], "tardie master now": [0, 65535], "master now at": [0, 65535], "now at hand": [0, 65535], "at hand e": [0, 65535], "hand e dro": [0, 65535], "e dro nay": [0, 65535], "dro nay hee's": [0, 65535], "nay hee's at": [0, 65535], "hee's at too": [0, 65535], "at too hands": [0, 65535], "too hands with": [0, 65535], "hands with mee": [0, 65535], "with mee and": [0, 65535], "mee and that": [0, 65535], "and that my": [0, 65535], "that my two": [0, 65535], "my two eares": [0, 65535], "two eares can": [0, 65535], "eares can witnesse": [0, 65535], "can witnesse adr": [0, 65535], "witnesse adr say": [0, 65535], "adr say didst": [0, 65535], "say didst thou": [0, 65535], "didst thou speake": [0, 65535], "thou speake with": [0, 65535], "speake with him": [0, 65535], "with him knowst": [0, 65535], "him knowst thou": [0, 65535], "knowst thou his": [0, 65535], "thou his minde": [0, 65535], "his minde e": [0, 65535], "minde e dro": [0, 65535], "e dro i": [0, 65535], "dro i i": [0, 65535], "i i he": [0, 65535], "i he told": [0, 65535], "he told his": [0, 65535], "told his minde": [0, 65535], "his minde vpon": [0, 65535], "minde vpon mine": [0, 65535], "vpon mine eare": [0, 65535], "mine eare beshrew": [0, 65535], "eare beshrew his": [0, 65535], "beshrew his hand": [0, 65535], "his hand i": [0, 65535], "hand i scarce": [0, 65535], "i scarce could": [0, 65535], "scarce could vnderstand": [0, 65535], "could vnderstand it": [0, 65535], "vnderstand it luc": [0, 65535], "it luc spake": [0, 65535], "luc spake hee": [0, 65535], "spake hee so": [0, 65535], "hee so doubtfully": [0, 65535], "so doubtfully thou": [0, 65535], "doubtfully thou couldst": [0, 65535], "thou couldst not": [0, 65535], "couldst not feele": [0, 65535], "not feele his": [0, 65535], "feele his meaning": [0, 65535], "his meaning e": [0, 65535], "meaning e dro": [0, 65535], "dro nay hee": [0, 65535], "nay hee strooke": [0, 65535], "hee strooke so": [0, 65535], "strooke so plainly": [0, 65535], "so plainly i": [0, 65535], "plainly i could": [0, 65535], "i could too": [0, 65535], "could too well": [0, 65535], "too well feele": [0, 65535], "well feele his": [0, 65535], "feele his blowes": [0, 65535], "his blowes and": [0, 65535], "blowes and withall": [0, 65535], "and withall so": [0, 65535], "withall so doubtfully": [0, 65535], "so doubtfully that": [0, 65535], "doubtfully that i": [0, 65535], "that i could": [0, 65535], "i could scarce": [0, 65535], "could scarce vnderstand": [0, 65535], "scarce vnderstand them": [0, 65535], "vnderstand them adri": [0, 65535], "them adri but": [0, 65535], "adri but say": [0, 65535], "but say i": [0, 65535], "say i prethee": [0, 65535], "i prethee is": [0, 65535], "prethee is he": [0, 65535], "is he comming": [0, 65535], "he comming home": [0, 65535], "comming home it": [0, 65535], "home it seemes": [0, 65535], "it seemes he": [0, 65535], "seemes he hath": [0, 65535], "he hath great": [0, 65535], "hath great care": [0, 65535], "great care to": [0, 65535], "care to please": [0, 65535], "to please his": [0, 65535], "please his wife": [0, 65535], "his wife e": [0, 65535], "wife e dro": [0, 65535], "e dro why": [0, 65535], "dro why mistresse": [0, 65535], "why mistresse sure": [0, 65535], "mistresse sure my": [0, 65535], "sure my master": [0, 65535], "my master is": [0, 65535], "master is horne": [0, 65535], "is horne mad": [0, 65535], "horne mad adri": [0, 65535], "mad adri horne": [0, 65535], "adri horne mad": [0, 65535], "horne mad thou": [0, 65535], "mad thou villaine": [0, 65535], "thou villaine e": [0, 65535], "villaine e dro": [0, 65535], "dro i meane": [0, 65535], "i meane not": [0, 65535], "meane not cuckold": [0, 65535], "not cuckold mad": [0, 65535], "cuckold mad but": [0, 65535], "mad but sure": [0, 65535], "but sure he": [0, 65535], "sure he is": [0, 65535], "he is starke": [0, 65535], "is starke mad": [0, 65535], "starke mad when": [0, 65535], "mad when i": [0, 65535], "when i desir'd": [0, 65535], "i desir'd him": [0, 65535], "desir'd him to": [0, 65535], "him to come": [0, 65535], "to come home": [0, 65535], "come home to": [0, 65535], "to dinner he": [0, 65535], "dinner he ask'd": [0, 65535], "he ask'd me": [0, 65535], "ask'd me for": [0, 65535], "me for a": [0, 65535], "for a hundred": [0, 65535], "a hundred markes": [0, 65535], "hundred markes in": [0, 65535], "in gold 'tis": [0, 65535], "gold 'tis dinner": [0, 65535], "'tis dinner time": [0, 65535], "dinner time quoth": [0, 65535], "time quoth i": [0, 65535], "quoth i my": [0, 65535], "i my gold": [0, 65535], "my gold quoth": [0, 65535], "gold quoth he": [0, 65535], "quoth he your": [0, 65535], "he your meat": [0, 65535], "your meat doth": [0, 65535], "meat doth burne": [0, 65535], "doth burne quoth": [0, 65535], "burne quoth i": [0, 65535], "quoth he will": [0, 65535], "he will you": [0, 65535], "will you come": [0, 65535], "you come quoth": [0, 65535], "come quoth i": [0, 65535], "quoth he where": [0, 65535], "he where is": [0, 65535], "where is the": [0, 65535], "is the thousand": [0, 65535], "the thousand markes": [0, 65535], "thousand markes i": [0, 65535], "markes i gaue": [0, 65535], "i gaue thee": [0, 65535], "gaue thee villaine": [0, 65535], "thee villaine the": [0, 65535], "villaine the pigge": [0, 65535], "the pigge quoth": [0, 65535], "pigge quoth i": [0, 65535], "quoth i is": [0, 65535], "i is burn'd": [0, 65535], "is burn'd my": [0, 65535], "burn'd my gold": [0, 65535], "quoth he my": [0, 65535], "he my mistresse": [0, 65535], "my mistresse sir": [0, 65535], "mistresse sir quoth": [0, 65535], "sir quoth i": [0, 65535], "quoth i hang": [0, 65535], "i hang vp": [0, 65535], "hang vp thy": [0, 65535], "vp thy mistresse": [0, 65535], "thy mistresse i": [0, 65535], "mistresse i know": [0, 65535], "know not thy": [0, 65535], "not thy mistresse": [0, 65535], "thy mistresse out": [0, 65535], "mistresse out on": [0, 65535], "out on thy": [0, 65535], "on thy mistresse": [0, 65535], "thy mistresse luci": [0, 65535], "mistresse luci quoth": [0, 65535], "luci quoth who": [0, 65535], "quoth who e": [0, 65535], "who e dr": [0, 65535], "e dr quoth": [0, 65535], "dr quoth my": [0, 65535], "quoth my master": [0, 65535], "my master i": [0, 65535], "master i know": [0, 65535], "i know quoth": [0, 65535], "know quoth he": [0, 65535], "quoth he no": [0, 65535], "he no house": [0, 65535], "no house no": [0, 65535], "house no wife": [0, 65535], "no wife no": [0, 65535], "wife no mistresse": [0, 65535], "no mistresse so": [0, 65535], "mistresse so that": [0, 65535], "so that my": [0, 65535], "that my arrant": [0, 65535], "my arrant due": [0, 65535], "arrant due vnto": [0, 65535], "due vnto my": [0, 65535], "vnto my tongue": [0, 65535], "my tongue i": [0, 65535], "tongue i thanke": [0, 65535], "i thanke him": [0, 65535], "thanke him i": [0, 65535], "him i bare": [0, 65535], "i bare home": [0, 65535], "bare home vpon": [0, 65535], "home vpon my": [0, 65535], "vpon my shoulders": [0, 65535], "my shoulders for": [0, 65535], "shoulders for in": [0, 65535], "for in conclusion": [0, 65535], "in conclusion he": [0, 65535], "conclusion he did": [0, 65535], "he did beat": [0, 65535], "did beat me": [0, 65535], "beat me there": [0, 65535], "me there adri": [0, 65535], "there adri go": [0, 65535], "adri go back": [0, 65535], "go back againe": [0, 65535], "back againe thou": [0, 65535], "againe thou slaue": [0, 65535], "thou slaue fetch": [0, 65535], "slaue fetch him": [0, 65535], "fetch him home": [0, 65535], "him home dro": [0, 65535], "home dro goe": [0, 65535], "dro goe backe": [0, 65535], "goe backe againe": [0, 65535], "backe againe and": [0, 65535], "againe and be": [0, 65535], "and be new": [0, 65535], "be new beaten": [0, 65535], "new beaten home": [0, 65535], "beaten home for": [0, 65535], "home for gods": [0, 65535], "for gods sake": [0, 65535], "gods sake send": [0, 65535], "sake send some": [0, 65535], "send some other": [0, 65535], "some other messenger": [0, 65535], "other messenger adri": [0, 65535], "messenger adri backe": [0, 65535], "adri backe slaue": [0, 65535], "backe slaue or": [0, 65535], "slaue or i": [0, 65535], "or i will": [0, 65535], "i will breake": [0, 65535], "will breake thy": [0, 65535], "breake thy pate": [0, 65535], "thy pate a": [0, 65535], "pate a crosse": [0, 65535], "a crosse dro": [0, 65535], "crosse dro and": [0, 65535], "dro and he": [0, 65535], "and he will": [0, 65535], "he will blesse": [0, 65535], "will blesse the": [0, 65535], "blesse the crosse": [0, 65535], "the crosse with": [0, 65535], "crosse with other": [0, 65535], "with other beating": [0, 65535], "other beating betweene": [0, 65535], "beating betweene you": [0, 65535], "betweene you i": [0, 65535], "you i shall": [0, 65535], "i shall haue": [0, 65535], "shall haue a": [0, 65535], "haue a holy": [0, 65535], "a holy head": [0, 65535], "holy head adri": [0, 65535], "head adri hence": [0, 65535], "adri hence prating": [0, 65535], "hence prating pesant": [0, 65535], "prating pesant fetch": [0, 65535], "pesant fetch thy": [0, 65535], "fetch thy master": [0, 65535], "thy master home": [0, 65535], "master home dro": [0, 65535], "home dro am": [0, 65535], "dro am i": [0, 65535], "am i so": [0, 65535], "i so round": [0, 65535], "so round with": [0, 65535], "round with you": [0, 65535], "with you as": [0, 65535], "you as you": [0, 65535], "as you with": [0, 65535], "you with me": [0, 65535], "with me that": [0, 65535], "me that like": [0, 65535], "that like a": [0, 65535], "like a foot": [0, 65535], "a foot ball": [0, 65535], "foot ball you": [0, 65535], "ball you doe": [0, 65535], "you doe spurne": [0, 65535], "doe spurne me": [0, 65535], "spurne me thus": [0, 65535], "me thus you": [0, 65535], "thus you spurne": [0, 65535], "you spurne me": [0, 65535], "spurne me hence": [0, 65535], "me hence and": [0, 65535], "hence and he": [0, 65535], "he will spurne": [0, 65535], "will spurne me": [0, 65535], "spurne me hither": [0, 65535], "me hither if": [0, 65535], "hither if i": [0, 65535], "if i last": [0, 65535], "i last in": [0, 65535], "last in this": [0, 65535], "in this seruice": [0, 65535], "this seruice you": [0, 65535], "seruice you must": [0, 65535], "you must case": [0, 65535], "must case me": [0, 65535], "case me in": [0, 65535], "me in leather": [0, 65535], "in leather luci": [0, 65535], "leather luci fie": [0, 65535], "luci fie how": [0, 65535], "fie how impatience": [0, 65535], "how impatience lowreth": [0, 65535], "impatience lowreth in": [0, 65535], "lowreth in your": [0, 65535], "your face adri": [0, 65535], "face adri his": [0, 65535], "adri his company": [0, 65535], "his company must": [0, 65535], "company must do": [0, 65535], "must do his": [0, 65535], "do his minions": [0, 65535], "his minions grace": [0, 65535], "minions grace whil'st": [0, 65535], "grace whil'st i": [0, 65535], "whil'st i at": [0, 65535], "i at home": [0, 65535], "at home starue": [0, 65535], "home starue for": [0, 65535], "starue for a": [0, 65535], "for a merrie": [0, 65535], "a merrie looke": [0, 65535], "merrie looke hath": [0, 65535], "looke hath homelie": [0, 65535], "hath homelie age": [0, 65535], "homelie age th'": [0, 65535], "age th' alluring": [0, 65535], "th' alluring beauty": [0, 65535], "alluring beauty tooke": [0, 65535], "beauty tooke from": [0, 65535], "tooke from my": [0, 65535], "from my poore": [0, 65535], "my poore cheeke": [0, 65535], "poore cheeke then": [0, 65535], "cheeke then he": [0, 65535], "then he hath": [0, 65535], "he hath wasted": [0, 65535], "hath wasted it": [0, 65535], "wasted it are": [0, 65535], "it are my": [0, 65535], "are my discourses": [0, 65535], "my discourses dull": [0, 65535], "discourses dull barren": [0, 65535], "dull barren my": [0, 65535], "barren my wit": [0, 65535], "my wit if": [0, 65535], "wit if voluble": [0, 65535], "if voluble and": [0, 65535], "voluble and sharpe": [0, 65535], "and sharpe discourse": [0, 65535], "sharpe discourse be": [0, 65535], "discourse be mar'd": [0, 65535], "be mar'd vnkindnesse": [0, 65535], "mar'd vnkindnesse blunts": [0, 65535], "vnkindnesse blunts it": [0, 65535], "blunts it more": [0, 65535], "it more then": [0, 65535], "more then marble": [0, 65535], "then marble hard": [0, 65535], "marble hard doe": [0, 65535], "hard doe their": [0, 65535], "doe their gay": [0, 65535], "their gay vestments": [0, 65535], "gay vestments his": [0, 65535], "vestments his affections": [0, 65535], "his affections baite": [0, 65535], "affections baite that's": [0, 65535], "baite that's not": [0, 65535], "that's not my": [0, 65535], "not my fault": [0, 65535], "my fault hee's": [0, 65535], "fault hee's master": [0, 65535], "hee's master of": [0, 65535], "master of my": [0, 65535], "of my state": [0, 65535], "my state what": [0, 65535], "state what ruines": [0, 65535], "what ruines are": [0, 65535], "ruines are in": [0, 65535], "are in me": [0, 65535], "in me that": [0, 65535], "me that can": [0, 65535], "that can be": [0, 65535], "can be found": [0, 65535], "be found by": [0, 65535], "found by him": [0, 65535], "by him not": [0, 65535], "him not ruin'd": [0, 65535], "not ruin'd then": [0, 65535], "ruin'd then is": [0, 65535], "then is he": [0, 65535], "is he the": [0, 65535], "he the ground": [0, 65535], "ground of my": [0, 65535], "of my defeatures": [0, 65535], "my defeatures my": [0, 65535], "defeatures my decayed": [0, 65535], "my decayed faire": [0, 65535], "decayed faire a": [0, 65535], "faire a sunnie": [0, 65535], "a sunnie looke": [0, 65535], "sunnie looke of": [0, 65535], "looke of his": [0, 65535], "of his would": [0, 65535], "his would soone": [0, 65535], "would soone repaire": [0, 65535], "soone repaire but": [0, 65535], "repaire but too": [0, 65535], "but too vnruly": [0, 65535], "too vnruly deere": [0, 65535], "vnruly deere he": [0, 65535], "deere he breakes": [0, 65535], "he breakes the": [0, 65535], "breakes the pale": [0, 65535], "the pale and": [0, 65535], "pale and feedes": [0, 65535], "and feedes from": [0, 65535], "feedes from home": [0, 65535], "from home poore": [0, 65535], "home poore i": [0, 65535], "poore i am": [0, 65535], "i am but": [0, 65535], "am but his": [0, 65535], "but his stale": [0, 65535], "his stale luci": [0, 65535], "stale luci selfe": [0, 65535], "luci selfe harming": [0, 65535], "selfe harming iealousie": [0, 65535], "harming iealousie fie": [0, 65535], "iealousie fie beat": [0, 65535], "fie beat it": [0, 65535], "beat it hence": [0, 65535], "it hence ad": [0, 65535], "hence ad vnfeeling": [0, 65535], "ad vnfeeling fools": [0, 65535], "vnfeeling fools can": [0, 65535], "fools can with": [0, 65535], "can with such": [0, 65535], "with such wrongs": [0, 65535], "such wrongs dispence": [0, 65535], "wrongs dispence i": [0, 65535], "dispence i know": [0, 65535], "i know his": [0, 65535], "know his eye": [0, 65535], "his eye doth": [0, 65535], "eye doth homage": [0, 65535], "doth homage other": [0, 65535], "homage other where": [0, 65535], "other where or": [0, 65535], "where or else": [0, 65535], "or else what": [0, 65535], "else what lets": [0, 65535], "what lets it": [0, 65535], "lets it but": [0, 65535], "it but he": [0, 65535], "he would be": [0, 65535], "would be here": [0, 65535], "be here sister": [0, 65535], "here sister you": [0, 65535], "sister you know": [0, 65535], "you know he": [0, 65535], "know he promis'd": [0, 65535], "he promis'd me": [0, 65535], "promis'd me a": [0, 65535], "me a chaine": [0, 65535], "a chaine would": [0, 65535], "chaine would that": [0, 65535], "would that alone": [0, 65535], "that alone a": [0, 65535], "alone a loue": [0, 65535], "a loue he": [0, 65535], "loue he would": [0, 65535], "he would detaine": [0, 65535], "would detaine so": [0, 65535], "detaine so he": [0, 65535], "so he would": [0, 65535], "he would keepe": [0, 65535], "would keepe faire": [0, 65535], "keepe faire quarter": [0, 65535], "faire quarter with": [0, 65535], "quarter with his": [0, 65535], "with his bed": [0, 65535], "his bed i": [0, 65535], "bed i see": [0, 65535], "i see the": [0, 65535], "see the iewell": [0, 65535], "the iewell best": [0, 65535], "iewell best enamaled": [0, 65535], "best enamaled will": [0, 65535], "enamaled will loose": [0, 65535], "will loose his": [0, 65535], "loose his beautie": [0, 65535], "his beautie yet": [0, 65535], "beautie yet the": [0, 65535], "yet the gold": [0, 65535], "the gold bides": [0, 65535], "gold bides still": [0, 65535], "bides still that": [0, 65535], "still that others": [0, 65535], "that others touch": [0, 65535], "others touch and": [0, 65535], "touch and often": [0, 65535], "and often touching": [0, 65535], "often touching will": [0, 65535], "touching will where": [0, 65535], "will where gold": [0, 65535], "where gold and": [0, 65535], "gold and no": [0, 65535], "and no man": [0, 65535], "no man that": [0, 65535], "man that hath": [0, 65535], "that hath a": [0, 65535], "hath a name": [0, 65535], "a name by": [0, 65535], "name by falshood": [0, 65535], "by falshood and": [0, 65535], "falshood and corruption": [0, 65535], "and corruption doth": [0, 65535], "corruption doth it": [0, 65535], "doth it shame": [0, 65535], "it shame since": [0, 65535], "shame since that": [0, 65535], "since that my": [0, 65535], "that my beautie": [0, 65535], "my beautie cannot": [0, 65535], "beautie cannot please": [0, 65535], "cannot please his": [0, 65535], "please his eie": [0, 65535], "his eie ile": [0, 65535], "eie ile weepe": [0, 65535], "ile weepe what's": [0, 65535], "weepe what's left": [0, 65535], "what's left away": [0, 65535], "left away and": [0, 65535], "away and weeping": [0, 65535], "and weeping die": [0, 65535], "weeping die luci": [0, 65535], "die luci how": [0, 65535], "luci how manie": [0, 65535], "how manie fond": [0, 65535], "manie fond fooles": [0, 65535], "fond fooles serue": [0, 65535], "fooles serue mad": [0, 65535], "serue mad ielousie": [0, 65535], "mad ielousie exit": [0, 65535], "ielousie exit enter": [0, 65535], "exit enter antipholis": [0, 65535], "enter antipholis errotis": [0, 65535], "antipholis errotis ant": [0, 65535], "errotis ant the": [0, 65535], "ant the gold": [0, 65535], "the gold i": [0, 65535], "gold i gaue": [0, 65535], "i gaue to": [0, 65535], "gaue to dromio": [0, 65535], "to dromio is": [0, 65535], "dromio is laid": [0, 65535], "is laid vp": [0, 65535], "laid vp safe": [0, 65535], "vp safe at": [0, 65535], "safe at the": [0, 65535], "at the centaur": [0, 65535], "the centaur and": [0, 65535], "centaur and the": [0, 65535], "and the heedfull": [0, 65535], "the heedfull slaue": [0, 65535], "heedfull slaue is": [0, 65535], "slaue is wandred": [0, 65535], "is wandred forth": [0, 65535], "wandred forth in": [0, 65535], "forth in care": [0, 65535], "in care to": [0, 65535], "care to seeke": [0, 65535], "to seeke me": [0, 65535], "seeke me out": [0, 65535], "me out by": [0, 65535], "out by computation": [0, 65535], "by computation and": [0, 65535], "computation and mine": [0, 65535], "and mine hosts": [0, 65535], "mine hosts report": [0, 65535], "hosts report i": [0, 65535], "report i could": [0, 65535], "i could not": [0, 65535], "could not speake": [0, 65535], "not speake with": [0, 65535], "speake with dromio": [0, 65535], "with dromio since": [0, 65535], "dromio since at": [0, 65535], "since at first": [0, 65535], "at first i": [0, 65535], "first i sent": [0, 65535], "i sent him": [0, 65535], "sent him from": [0, 65535], "him from the": [0, 65535], "the mart see": [0, 65535], "mart see here": [0, 65535], "see here he": [0, 65535], "here he comes": [0, 65535], "he comes enter": [0, 65535], "comes enter dromio": [0, 65535], "dromio siracusia how": [0, 65535], "siracusia how now": [0, 65535], "how now sir": [0, 65535], "now sir is": [0, 65535], "sir is your": [0, 65535], "is your merrie": [0, 65535], "your merrie humor": [0, 65535], "merrie humor alter'd": [0, 65535], "humor alter'd as": [0, 65535], "alter'd as you": [0, 65535], "as you loue": [0, 65535], "you loue stroakes": [0, 65535], "loue stroakes so": [0, 65535], "stroakes so iest": [0, 65535], "so iest with": [0, 65535], "iest with me": [0, 65535], "with me againe": [0, 65535], "me againe you": [0, 65535], "againe you know": [0, 65535], "you know no": [0, 65535], "know no centaur": [0, 65535], "no centaur you": [0, 65535], "centaur you receiu'd": [0, 65535], "you receiu'd no": [0, 65535], "receiu'd no gold": [0, 65535], "no gold your": [0, 65535], "gold your mistresse": [0, 65535], "your mistresse sent": [0, 65535], "mistresse sent to": [0, 65535], "sent to haue": [0, 65535], "to haue me": [0, 65535], "haue me home": [0, 65535], "me home to": [0, 65535], "to dinner my": [0, 65535], "dinner my house": [0, 65535], "my house was": [0, 65535], "house was at": [0, 65535], "was at the": [0, 65535], "at the ph\u0153nix": [0, 65535], "the ph\u0153nix wast": [0, 65535], "ph\u0153nix wast thou": [0, 65535], "wast thou mad": [0, 65535], "thou mad that": [0, 65535], "mad that thus": [0, 65535], "that thus so": [0, 65535], "thus so madlie": [0, 65535], "so madlie thou": [0, 65535], "madlie thou did": [0, 65535], "thou did didst": [0, 65535], "did didst answere": [0, 65535], "didst answere me": [0, 65535], "answere me s": [0, 65535], "me s dro": [0, 65535], "s dro what": [0, 65535], "dro what answer": [0, 65535], "what answer sir": [0, 65535], "answer sir when": [0, 65535], "sir when spake": [0, 65535], "when spake i": [0, 65535], "spake i such": [0, 65535], "such a word": [0, 65535], "a word e": [0, 65535], "word e ant": [0, 65535], "e ant euen": [0, 65535], "ant euen now": [0, 65535], "euen now euen": [0, 65535], "now euen here": [0, 65535], "euen here not": [0, 65535], "here not halfe": [0, 65535], "not halfe an": [0, 65535], "halfe an howre": [0, 65535], "an howre since": [0, 65535], "howre since s": [0, 65535], "since s dro": [0, 65535], "dro i did": [0, 65535], "did not see": [0, 65535], "not see you": [0, 65535], "see you since": [0, 65535], "you since you": [0, 65535], "since you sent": [0, 65535], "you sent me": [0, 65535], "sent me hence": [0, 65535], "me hence home": [0, 65535], "hence home to": [0, 65535], "home to the": [0, 65535], "to the centaur": [0, 65535], "the centaur with": [0, 65535], "centaur with the": [0, 65535], "with the gold": [0, 65535], "the gold you": [0, 65535], "gold you gaue": [0, 65535], "you gaue me": [0, 65535], "gaue me ant": [0, 65535], "me ant villaine": [0, 65535], "ant villaine thou": [0, 65535], "villaine thou didst": [0, 65535], "thou didst denie": [0, 65535], "didst denie the": [0, 65535], "denie the golds": [0, 65535], "the golds receit": [0, 65535], "golds receit and": [0, 65535], "receit and toldst": [0, 65535], "and toldst me": [0, 65535], "toldst me of": [0, 65535], "me of a": [0, 65535], "of a mistresse": [0, 65535], "a mistresse and": [0, 65535], "mistresse and a": [0, 65535], "and a dinner": [0, 65535], "a dinner for": [0, 65535], "dinner for which": [0, 65535], "for which i": [0, 65535], "which i hope": [0, 65535], "i hope thou": [0, 65535], "hope thou feltst": [0, 65535], "thou feltst i": [0, 65535], "feltst i was": [0, 65535], "i was displeas'd": [0, 65535], "was displeas'd s": [0, 65535], "displeas'd s dro": [0, 65535], "i am glad": [0, 65535], "am glad to": [0, 65535], "glad to see": [0, 65535], "see you in": [0, 65535], "you in this": [0, 65535], "in this merrie": [0, 65535], "this merrie vaine": [0, 65535], "merrie vaine what": [0, 65535], "vaine what meanes": [0, 65535], "what meanes this": [0, 65535], "meanes this iest": [0, 65535], "this iest i": [0, 65535], "iest i pray": [0, 65535], "pray you master": [0, 65535], "you master tell": [0, 65535], "master tell me": [0, 65535], "tell me ant": [0, 65535], "me ant yea": [0, 65535], "ant yea dost": [0, 65535], "yea dost thou": [0, 65535], "dost thou ieere": [0, 65535], "thou ieere flowt": [0, 65535], "ieere flowt me": [0, 65535], "flowt me in": [0, 65535], "me in the": [0, 65535], "in the teeth": [0, 65535], "the teeth thinkst": [0, 65535], "teeth thinkst thou": [0, 65535], "thinkst thou i": [0, 65535], "thou i iest": [0, 65535], "i iest hold": [0, 65535], "iest hold take": [0, 65535], "hold take thou": [0, 65535], "take thou that": [0, 65535], "thou that that": [0, 65535], "that that beats": [0, 65535], "that beats dro": [0, 65535], "beats dro s": [0, 65535], "dro s dr": [0, 65535], "s dr hold": [0, 65535], "dr hold sir": [0, 65535], "hold sir for": [0, 65535], "sir for gods": [0, 65535], "gods sake now": [0, 65535], "sake now your": [0, 65535], "now your iest": [0, 65535], "your iest is": [0, 65535], "iest is earnest": [0, 65535], "is earnest vpon": [0, 65535], "earnest vpon what": [0, 65535], "vpon what bargaine": [0, 65535], "what bargaine do": [0, 65535], "bargaine do you": [0, 65535], "do you giue": [0, 65535], "you giue it": [0, 65535], "giue it me": [0, 65535], "it me antiph": [0, 65535], "me antiph because": [0, 65535], "antiph because that": [0, 65535], "because that i": [0, 65535], "that i familiarlie": [0, 65535], "i familiarlie sometimes": [0, 65535], "familiarlie sometimes doe": [0, 65535], "sometimes doe vse": [0, 65535], "doe vse you": [0, 65535], "vse you for": [0, 65535], "you for my": [0, 65535], "for my foole": [0, 65535], "my foole and": [0, 65535], "foole and chat": [0, 65535], "and chat with": [0, 65535], "chat with you": [0, 65535], "with you your": [0, 65535], "you your sawcinesse": [0, 65535], "your sawcinesse will": [0, 65535], "sawcinesse will iest": [0, 65535], "will iest vpon": [0, 65535], "iest vpon my": [0, 65535], "vpon my loue": [0, 65535], "my loue and": [0, 65535], "loue and make": [0, 65535], "and make a": [0, 65535], "make a common": [0, 65535], "a common of": [0, 65535], "common of my": [0, 65535], "of my serious": [0, 65535], "my serious howres": [0, 65535], "serious howres when": [0, 65535], "howres when the": [0, 65535], "when the sunne": [0, 65535], "the sunne shines": [0, 65535], "sunne shines let": [0, 65535], "shines let foolish": [0, 65535], "let foolish gnats": [0, 65535], "foolish gnats make": [0, 65535], "gnats make sport": [0, 65535], "make sport but": [0, 65535], "sport but creepe": [0, 65535], "but creepe in": [0, 65535], "creepe in crannies": [0, 65535], "in crannies when": [0, 65535], "crannies when he": [0, 65535], "when he hides": [0, 65535], "he hides his": [0, 65535], "hides his beames": [0, 65535], "his beames if": [0, 65535], "beames if you": [0, 65535], "you will iest": [0, 65535], "will iest with": [0, 65535], "with me know": [0, 65535], "me know my": [0, 65535], "know my aspect": [0, 65535], "my aspect and": [0, 65535], "aspect and fashion": [0, 65535], "and fashion your": [0, 65535], "fashion your demeanor": [0, 65535], "your demeanor to": [0, 65535], "demeanor to my": [0, 65535], "to my lookes": [0, 65535], "my lookes or": [0, 65535], "lookes or i": [0, 65535], "i will beat": [0, 65535], "will beat this": [0, 65535], "beat this method": [0, 65535], "this method in": [0, 65535], "method in your": [0, 65535], "in your sconce": [0, 65535], "your sconce s": [0, 65535], "sconce s dro": [0, 65535], "s dro sconce": [0, 65535], "dro sconce call": [0, 65535], "sconce call you": [0, 65535], "call you it": [0, 65535], "you it so": [0, 65535], "it so you": [0, 65535], "so you would": [0, 65535], "you would leaue": [0, 65535], "would leaue battering": [0, 65535], "leaue battering i": [0, 65535], "battering i had": [0, 65535], "i had rather": [0, 65535], "had rather haue": [0, 65535], "rather haue it": [0, 65535], "haue it a": [0, 65535], "it a head": [0, 65535], "a head and": [0, 65535], "head and you": [0, 65535], "and you vse": [0, 65535], "you vse these": [0, 65535], "vse these blows": [0, 65535], "these blows long": [0, 65535], "blows long i": [0, 65535], "long i must": [0, 65535], "i must get": [0, 65535], "must get a": [0, 65535], "get a sconce": [0, 65535], "a sconce for": [0, 65535], "sconce for my": [0, 65535], "for my head": [0, 65535], "my head and": [0, 65535], "head and insconce": [0, 65535], "and insconce it": [0, 65535], "insconce it to": [0, 65535], "it to or": [0, 65535], "to or else": [0, 65535], "or else i": [0, 65535], "else i shall": [0, 65535], "i shall seek": [0, 65535], "shall seek my": [0, 65535], "seek my wit": [0, 65535], "my wit in": [0, 65535], "wit in my": [0, 65535], "in my shoulders": [0, 65535], "my shoulders but": [0, 65535], "shoulders but i": [0, 65535], "but i pray": [0, 65535], "i pray sir": [0, 65535], "pray sir why": [0, 65535], "sir why am": [0, 65535], "why am i": [0, 65535], "am i beaten": [0, 65535], "i beaten ant": [0, 65535], "beaten ant dost": [0, 65535], "ant dost thou": [0, 65535], "dost thou not": [0, 65535], "thou not know": [0, 65535], "not know s": [0, 65535], "know s dro": [0, 65535], "s dro nothing": [0, 65535], "dro nothing sir": [0, 65535], "nothing sir but": [0, 65535], "sir but that": [0, 65535], "but that i": [0, 65535], "i am beaten": [0, 65535], "am beaten ant": [0, 65535], "beaten ant shall": [0, 65535], "ant shall i": [0, 65535], "shall i tell": [0, 65535], "tell you why": [0, 65535], "you why s": [0, 65535], "why s dro": [0, 65535], "dro i sir": [0, 65535], "i sir and": [0, 65535], "sir and wherefore": [0, 65535], "and wherefore for": [0, 65535], "wherefore for they": [0, 65535], "for they say": [0, 65535], "they say euery": [0, 65535], "say euery why": [0, 65535], "euery why hath": [0, 65535], "why hath a": [0, 65535], "hath a wherefore": [0, 65535], "a wherefore ant": [0, 65535], "wherefore ant why": [0, 65535], "ant why first": [0, 65535], "why first for": [0, 65535], "first for flowting": [0, 65535], "for flowting me": [0, 65535], "flowting me and": [0, 65535], "me and then": [0, 65535], "and then wherefore": [0, 65535], "then wherefore for": [0, 65535], "wherefore for vrging": [0, 65535], "for vrging it": [0, 65535], "vrging it the": [0, 65535], "it the second": [0, 65535], "the second time": [0, 65535], "second time to": [0, 65535], "time to me": [0, 65535], "to me s": [0, 65535], "s dro was": [0, 65535], "dro was there": [0, 65535], "was there euer": [0, 65535], "there euer anie": [0, 65535], "euer anie man": [0, 65535], "anie man thus": [0, 65535], "man thus beaten": [0, 65535], "thus beaten out": [0, 65535], "beaten out of": [0, 65535], "out of season": [0, 65535], "of season when": [0, 65535], "season when in": [0, 65535], "in the why": [0, 65535], "the why and": [0, 65535], "why and the": [0, 65535], "and the wherefore": [0, 65535], "the wherefore is": [0, 65535], "wherefore is neither": [0, 65535], "is neither rime": [0, 65535], "neither rime nor": [0, 65535], "rime nor reason": [0, 65535], "nor reason well": [0, 65535], "reason well sir": [0, 65535], "well sir i": [0, 65535], "sir i thanke": [0, 65535], "i thanke you": [0, 65535], "thanke you ant": [0, 65535], "you ant thanke": [0, 65535], "ant thanke me": [0, 65535], "thanke me sir": [0, 65535], "me sir for": [0, 65535], "sir for what": [0, 65535], "for what s": [0, 65535], "what s dro": [0, 65535], "s dro marry": [0, 65535], "marry sir for": [0, 65535], "sir for this": [0, 65535], "for this something": [0, 65535], "this something that": [0, 65535], "something that you": [0, 65535], "that you gaue": [0, 65535], "gaue me for": [0, 65535], "me for nothing": [0, 65535], "for nothing ant": [0, 65535], "nothing ant ile": [0, 65535], "ant ile make": [0, 65535], "ile make you": [0, 65535], "make you amends": [0, 65535], "you amends next": [0, 65535], "amends next to": [0, 65535], "next to giue": [0, 65535], "to giue you": [0, 65535], "giue you nothing": [0, 65535], "you nothing for": [0, 65535], "nothing for something": [0, 65535], "for something but": [0, 65535], "something but say": [0, 65535], "but say sir": [0, 65535], "say sir is": [0, 65535], "sir is it": [0, 65535], "is it dinner": [0, 65535], "it dinner time": [0, 65535], "dinner time s": [0, 65535], "time s dro": [0, 65535], "s dro no": [0, 65535], "no sir i": [0, 65535], "sir i thinke": [0, 65535], "i thinke the": [0, 65535], "thinke the meat": [0, 65535], "the meat wants": [0, 65535], "meat wants that": [0, 65535], "wants that i": [0, 65535], "that i haue": [0, 65535], "i haue ant": [0, 65535], "haue ant in": [0, 65535], "ant in good": [0, 65535], "in good time": [0, 65535], "good time sir": [0, 65535], "time sir what's": [0, 65535], "sir what's that": [0, 65535], "what's that s": [0, 65535], "that s dro": [0, 65535], "s dro basting": [0, 65535], "dro basting ant": [0, 65535], "basting ant well": [0, 65535], "ant well sir": [0, 65535], "well sir then": [0, 65535], "sir then 'twill": [0, 65535], "then 'twill be": [0, 65535], "'twill be drie": [0, 65535], "be drie s": [0, 65535], "drie s dro": [0, 65535], "dro if it": [0, 65535], "if it be": [0, 65535], "it be sir": [0, 65535], "be sir i": [0, 65535], "sir i pray": [0, 65535], "pray you eat": [0, 65535], "you eat none": [0, 65535], "eat none of": [0, 65535], "none of it": [0, 65535], "of it ant": [0, 65535], "it ant your": [0, 65535], "ant your reason": [0, 65535], "your reason s": [0, 65535], "reason s dro": [0, 65535], "s dro lest": [0, 65535], "dro lest it": [0, 65535], "lest it make": [0, 65535], "it make you": [0, 65535], "make you chollericke": [0, 65535], "you chollericke and": [0, 65535], "chollericke and purchase": [0, 65535], "and purchase me": [0, 65535], "purchase me another": [0, 65535], "me another drie": [0, 65535], "another drie basting": [0, 65535], "drie basting ant": [0, 65535], "well sir learne": [0, 65535], "sir learne to": [0, 65535], "learne to iest": [0, 65535], "to iest in": [0, 65535], "iest in good": [0, 65535], "good time there's": [0, 65535], "time there's a": [0, 65535], "there's a time": [0, 65535], "a time for": [0, 65535], "time for all": [0, 65535], "for all things": [0, 65535], "all things s": [0, 65535], "things s dro": [0, 65535], "dro i durst": [0, 65535], "i durst haue": [0, 65535], "durst haue denied": [0, 65535], "haue denied that": [0, 65535], "denied that before": [0, 65535], "that before you": [0, 65535], "before you were": [0, 65535], "you were so": [0, 65535], "were so chollericke": [0, 65535], "so chollericke anti": [0, 65535], "chollericke anti by": [0, 65535], "anti by what": [0, 65535], "by what rule": [0, 65535], "what rule sir": [0, 65535], "rule sir s": [0, 65535], "sir s dro": [0, 65535], "marry sir by": [0, 65535], "sir by a": [0, 65535], "by a rule": [0, 65535], "a rule as": [0, 65535], "rule as plaine": [0, 65535], "as plaine as": [0, 65535], "plaine as the": [0, 65535], "as the plaine": [0, 65535], "the plaine bald": [0, 65535], "plaine bald pate": [0, 65535], "bald pate of": [0, 65535], "pate of father": [0, 65535], "of father time": [0, 65535], "father time himselfe": [0, 65535], "time himselfe ant": [0, 65535], "himselfe ant let's": [0, 65535], "ant let's heare": [0, 65535], "let's heare it": [0, 65535], "heare it s": [0, 65535], "it s dro": [0, 65535], "s dro there's": [0, 65535], "dro there's no": [0, 65535], "there's no time": [0, 65535], "no time for": [0, 65535], "time for a": [0, 65535], "for a man": [0, 65535], "a man to": [0, 65535], "man to recouer": [0, 65535], "to recouer his": [0, 65535], "recouer his haire": [0, 65535], "his haire that": [0, 65535], "haire that growes": [0, 65535], "that growes bald": [0, 65535], "growes bald by": [0, 65535], "bald by nature": [0, 65535], "by nature ant": [0, 65535], "nature ant may": [0, 65535], "ant may he": [0, 65535], "may he not": [0, 65535], "he not doe": [0, 65535], "not doe it": [0, 65535], "it by fine": [0, 65535], "by fine and": [0, 65535], "fine and recouerie": [0, 65535], "and recouerie s": [0, 65535], "recouerie s dro": [0, 65535], "s dro yes": [0, 65535], "dro yes to": [0, 65535], "yes to pay": [0, 65535], "to pay a": [0, 65535], "pay a fine": [0, 65535], "a fine for": [0, 65535], "fine for a": [0, 65535], "for a perewig": [0, 65535], "a perewig and": [0, 65535], "perewig and recouer": [0, 65535], "and recouer the": [0, 65535], "recouer the lost": [0, 65535], "the lost haire": [0, 65535], "lost haire of": [0, 65535], "haire of another": [0, 65535], "of another man": [0, 65535], "another man ant": [0, 65535], "man ant why": [0, 65535], "ant why is": [0, 65535], "why is time": [0, 65535], "is time such": [0, 65535], "time such a": [0, 65535], "such a niggard": [0, 65535], "a niggard of": [0, 65535], "niggard of haire": [0, 65535], "of haire being": [0, 65535], "haire being as": [0, 65535], "being as it": [0, 65535], "as it is": [0, 65535], "it is so": [0, 65535], "is so plentifull": [0, 65535], "so plentifull an": [0, 65535], "plentifull an excrement": [0, 65535], "an excrement s": [0, 65535], "excrement s dro": [0, 65535], "s dro because": [0, 65535], "dro because it": [0, 65535], "because it is": [0, 65535], "is a blessing": [0, 65535], "a blessing that": [0, 65535], "blessing that hee": [0, 65535], "that hee bestowes": [0, 65535], "hee bestowes on": [0, 65535], "bestowes on beasts": [0, 65535], "on beasts and": [0, 65535], "beasts and what": [0, 65535], "and what he": [0, 65535], "what he hath": [0, 65535], "he hath scanted": [0, 65535], "hath scanted them": [0, 65535], "scanted them in": [0, 65535], "them in haire": [0, 65535], "in haire hee": [0, 65535], "haire hee hath": [0, 65535], "hee hath giuen": [0, 65535], "hath giuen them": [0, 65535], "giuen them in": [0, 65535], "them in wit": [0, 65535], "in wit ant": [0, 65535], "wit ant why": [0, 65535], "ant why but": [0, 65535], "why but theres": [0, 65535], "but theres manie": [0, 65535], "theres manie a": [0, 65535], "manie a man": [0, 65535], "a man hath": [0, 65535], "man hath more": [0, 65535], "hath more haire": [0, 65535], "more haire then": [0, 65535], "haire then wit": [0, 65535], "then wit s": [0, 65535], "wit s dro": [0, 65535], "s dro not": [0, 65535], "dro not a": [0, 65535], "not a man": [0, 65535], "a man of": [0, 65535], "man of those": [0, 65535], "of those but": [0, 65535], "those but he": [0, 65535], "but he hath": [0, 65535], "he hath the": [0, 65535], "hath the wit": [0, 65535], "the wit to": [0, 65535], "wit to lose": [0, 65535], "to lose his": [0, 65535], "lose his haire": [0, 65535], "his haire ant": [0, 65535], "haire ant why": [0, 65535], "ant why thou": [0, 65535], "why thou didst": [0, 65535], "thou didst conclude": [0, 65535], "didst conclude hairy": [0, 65535], "conclude hairy men": [0, 65535], "hairy men plain": [0, 65535], "men plain dealers": [0, 65535], "plain dealers without": [0, 65535], "dealers without wit": [0, 65535], "without wit s": [0, 65535], "dro the plainer": [0, 65535], "the plainer dealer": [0, 65535], "plainer dealer the": [0, 65535], "dealer the sooner": [0, 65535], "the sooner lost": [0, 65535], "sooner lost yet": [0, 65535], "lost yet he": [0, 65535], "yet he looseth": [0, 65535], "he looseth it": [0, 65535], "looseth it in": [0, 65535], "it in a": [0, 65535], "in a kinde": [0, 65535], "a kinde of": [0, 65535], "kinde of iollitie": [0, 65535], "of iollitie an": [0, 65535], "iollitie an for": [0, 65535], "an for what": [0, 65535], "for what reason": [0, 65535], "what reason s": [0, 65535], "s dro for": [0, 65535], "dro for two": [0, 65535], "for two and": [0, 65535], "two and sound": [0, 65535], "and sound ones": [0, 65535], "sound ones to": [0, 65535], "ones to an": [0, 65535], "to an nay": [0, 65535], "an nay not": [0, 65535], "nay not sound": [0, 65535], "not sound i": [0, 65535], "sound i pray": [0, 65535], "pray you s": [0, 65535], "s dro sure": [0, 65535], "dro sure ones": [0, 65535], "sure ones then": [0, 65535], "ones then an": [0, 65535], "then an nay": [0, 65535], "nay not sure": [0, 65535], "not sure in": [0, 65535], "sure in a": [0, 65535], "in a thing": [0, 65535], "a thing falsing": [0, 65535], "thing falsing s": [0, 65535], "falsing s dro": [0, 65535], "s dro certaine": [0, 65535], "dro certaine ones": [0, 65535], "certaine ones then": [0, 65535], "then an name": [0, 65535], "an name them": [0, 65535], "name them s": [0, 65535], "them s dro": [0, 65535], "dro the one": [0, 65535], "the one to": [0, 65535], "one to saue": [0, 65535], "to saue the": [0, 65535], "saue the money": [0, 65535], "the money that": [0, 65535], "money that he": [0, 65535], "that he spends": [0, 65535], "he spends in": [0, 65535], "spends in trying": [0, 65535], "in trying the": [0, 65535], "trying the other": [0, 65535], "the other that": [0, 65535], "other that at": [0, 65535], "that at dinner": [0, 65535], "at dinner they": [0, 65535], "dinner they should": [0, 65535], "they should not": [0, 65535], "should not drop": [0, 65535], "not drop in": [0, 65535], "drop in his": [0, 65535], "in his porrage": [0, 65535], "his porrage an": [0, 65535], "porrage an you": [0, 65535], "an you would": [0, 65535], "you would all": [0, 65535], "would all this": [0, 65535], "all this time": [0, 65535], "this time haue": [0, 65535], "time haue prou'd": [0, 65535], "haue prou'd there": [0, 65535], "prou'd there is": [0, 65535], "there is no": [0, 65535], "is no time": [0, 65535], "dro marry and": [0, 65535], "marry and did": [0, 65535], "and did sir": [0, 65535], "did sir namely": [0, 65535], "sir namely in": [0, 65535], "namely in no": [0, 65535], "in no time": [0, 65535], "no time to": [0, 65535], "time to recouer": [0, 65535], "to recouer haire": [0, 65535], "recouer haire lost": [0, 65535], "haire lost by": [0, 65535], "lost by nature": [0, 65535], "by nature an": [0, 65535], "nature an but": [0, 65535], "an but your": [0, 65535], "but your reason": [0, 65535], "your reason was": [0, 65535], "reason was not": [0, 65535], "was not substantiall": [0, 65535], "not substantiall why": [0, 65535], "substantiall why there": [0, 65535], "why there is": [0, 65535], "to recouer s": [0, 65535], "recouer s dro": [0, 65535], "s dro thus": [0, 65535], "dro thus i": [0, 65535], "thus i mend": [0, 65535], "i mend it": [0, 65535], "mend it time": [0, 65535], "it time himselfe": [0, 65535], "time himselfe is": [0, 65535], "himselfe is bald": [0, 65535], "is bald and": [0, 65535], "bald and therefore": [0, 65535], "and therefore to": [0, 65535], "therefore to the": [0, 65535], "to the worlds": [0, 65535], "the worlds end": [0, 65535], "worlds end will": [0, 65535], "end will haue": [0, 65535], "will haue bald": [0, 65535], "haue bald followers": [0, 65535], "bald followers an": [0, 65535], "followers an i": [0, 65535], "an i knew": [0, 65535], "i knew 'twould": [0, 65535], "knew 'twould be": [0, 65535], "'twould be a": [0, 65535], "be a bald": [0, 65535], "a bald conclusion": [0, 65535], "bald conclusion but": [0, 65535], "conclusion but soft": [0, 65535], "but soft who": [0, 65535], "soft who wafts": [0, 65535], "who wafts vs": [0, 65535], "wafts vs yonder": [0, 65535], "vs yonder enter": [0, 65535], "yonder enter adriana": [0, 65535], "enter adriana and": [0, 65535], "adriana and luciana": [0, 65535], "and luciana adri": [0, 65535], "luciana adri i": [0, 65535], "adri i i": [0, 65535], "i i antipholus": [0, 65535], "i antipholus looke": [0, 65535], "antipholus looke strange": [0, 65535], "looke strange and": [0, 65535], "strange and frowne": [0, 65535], "and frowne some": [0, 65535], "frowne some other": [0, 65535], "some other mistresse": [0, 65535], "other mistresse hath": [0, 65535], "mistresse hath thy": [0, 65535], "hath thy sweet": [0, 65535], "thy sweet aspects": [0, 65535], "sweet aspects i": [0, 65535], "aspects i am": [0, 65535], "i am not": [0, 65535], "am not adriana": [0, 65535], "not adriana nor": [0, 65535], "adriana nor thy": [0, 65535], "nor thy wife": [0, 65535], "thy wife the": [0, 65535], "wife the time": [0, 65535], "the time was": [0, 65535], "time was once": [0, 65535], "was once when": [0, 65535], "once when thou": [0, 65535], "when thou vn": [0, 65535], "thou vn vrg'd": [0, 65535], "vn vrg'd wouldst": [0, 65535], "vrg'd wouldst vow": [0, 65535], "wouldst vow that": [0, 65535], "vow that neuer": [0, 65535], "that neuer words": [0, 65535], "neuer words were": [0, 65535], "words were musicke": [0, 65535], "were musicke to": [0, 65535], "musicke to thine": [0, 65535], "to thine eare": [0, 65535], "thine eare that": [0, 65535], "eare that neuer": [0, 65535], "that neuer obiect": [0, 65535], "neuer obiect pleasing": [0, 65535], "obiect pleasing in": [0, 65535], "pleasing in thine": [0, 65535], "in thine eye": [0, 65535], "thine eye that": [0, 65535], "eye that neuer": [0, 65535], "that neuer touch": [0, 65535], "neuer touch well": [0, 65535], "touch well welcome": [0, 65535], "well welcome to": [0, 65535], "welcome to thy": [0, 65535], "to thy hand": [0, 65535], "thy hand that": [0, 65535], "hand that neuer": [0, 65535], "that neuer meat": [0, 65535], "neuer meat sweet": [0, 65535], "meat sweet sauour'd": [0, 65535], "sweet sauour'd in": [0, 65535], "sauour'd in thy": [0, 65535], "in thy taste": [0, 65535], "thy taste vnlesse": [0, 65535], "taste vnlesse i": [0, 65535], "vnlesse i spake": [0, 65535], "i spake or": [0, 65535], "spake or look'd": [0, 65535], "or look'd or": [0, 65535], "look'd or touch'd": [0, 65535], "or touch'd or": [0, 65535], "touch'd or caru'd": [0, 65535], "or caru'd to": [0, 65535], "caru'd to thee": [0, 65535], "to thee how": [0, 65535], "thee how comes": [0, 65535], "how comes it": [0, 65535], "comes it now": [0, 65535], "it now my": [0, 65535], "now my husband": [0, 65535], "my husband oh": [0, 65535], "husband oh how": [0, 65535], "oh how comes": [0, 65535], "comes it that": [0, 65535], "it that thou": [0, 65535], "that thou art": [0, 65535], "thou art then": [0, 65535], "art then estranged": [0, 65535], "then estranged from": [0, 65535], "estranged from thy": [0, 65535], "from thy selfe": [0, 65535], "thy selfe thy": [0, 65535], "selfe thy selfe": [0, 65535], "thy selfe i": [0, 65535], "selfe i call": [0, 65535], "i call it": [0, 65535], "call it being": [0, 65535], "it being strange": [0, 65535], "being strange to": [0, 65535], "strange to me": [0, 65535], "to me that": [0, 65535], "me that vndiuidable": [0, 65535], "that vndiuidable incorporate": [0, 65535], "vndiuidable incorporate am": [0, 65535], "incorporate am better": [0, 65535], "am better then": [0, 65535], "better then thy": [0, 65535], "then thy deere": [0, 65535], "thy deere selfes": [0, 65535], "deere selfes better": [0, 65535], "better part ah": [0, 65535], "part ah doe": [0, 65535], "ah doe not": [0, 65535], "doe not teare": [0, 65535], "not teare away": [0, 65535], "teare away thy": [0, 65535], "away thy selfe": [0, 65535], "thy selfe from": [0, 65535], "selfe from me": [0, 65535], "from me for": [0, 65535], "me for know": [0, 65535], "for know my": [0, 65535], "know my loue": [0, 65535], "my loue as": [0, 65535], "loue as easie": [0, 65535], "as easie maist": [0, 65535], "easie maist thou": [0, 65535], "maist thou fall": [0, 65535], "thou fall a": [0, 65535], "fall a drop": [0, 65535], "a drop of": [0, 65535], "drop of water": [0, 65535], "of water in": [0, 65535], "water in the": [0, 65535], "in the breaking": [0, 65535], "the breaking gulfe": [0, 65535], "breaking gulfe and": [0, 65535], "gulfe and take": [0, 65535], "and take vnmingled": [0, 65535], "take vnmingled thence": [0, 65535], "vnmingled thence that": [0, 65535], "thence that drop": [0, 65535], "that drop againe": [0, 65535], "drop againe without": [0, 65535], "againe without addition": [0, 65535], "without addition or": [0, 65535], "addition or diminishing": [0, 65535], "or diminishing as": [0, 65535], "diminishing as take": [0, 65535], "as take from": [0, 65535], "take from me": [0, 65535], "from me thy": [0, 65535], "me thy selfe": [0, 65535], "selfe and not": [0, 65535], "and not me": [0, 65535], "not me too": [0, 65535], "me too how": [0, 65535], "too how deerely": [0, 65535], "how deerely would": [0, 65535], "deerely would it": [0, 65535], "would it touch": [0, 65535], "it touch thee": [0, 65535], "touch thee to": [0, 65535], "thee to the": [0, 65535], "to the quicke": [0, 65535], "the quicke shouldst": [0, 65535], "quicke shouldst thou": [0, 65535], "shouldst thou but": [0, 65535], "thou but heare": [0, 65535], "but heare i": [0, 65535], "heare i were": [0, 65535], "i were licencious": [0, 65535], "were licencious and": [0, 65535], "licencious and that": [0, 65535], "and that this": [0, 65535], "that this body": [0, 65535], "this body consecrate": [0, 65535], "body consecrate to": [0, 65535], "consecrate to thee": [0, 65535], "to thee by": [0, 65535], "thee by ruffian": [0, 65535], "by ruffian lust": [0, 65535], "ruffian lust should": [0, 65535], "lust should be": [0, 65535], "should be contaminate": [0, 65535], "be contaminate wouldst": [0, 65535], "contaminate wouldst thou": [0, 65535], "wouldst thou not": [0, 65535], "thou not spit": [0, 65535], "not spit at": [0, 65535], "spit at me": [0, 65535], "me and spurne": [0, 65535], "and spurne at": [0, 65535], "spurne at me": [0, 65535], "me and hurle": [0, 65535], "and hurle the": [0, 65535], "hurle the name": [0, 65535], "the name of": [0, 65535], "name of husband": [0, 65535], "of husband in": [0, 65535], "husband in my": [0, 65535], "in my face": [0, 65535], "my face and": [0, 65535], "face and teare": [0, 65535], "and teare the": [0, 65535], "teare the stain'd": [0, 65535], "the stain'd skin": [0, 65535], "stain'd skin of": [0, 65535], "skin of my": [0, 65535], "of my harlot": [0, 65535], "my harlot brow": [0, 65535], "harlot brow and": [0, 65535], "brow and from": [0, 65535], "and from my": [0, 65535], "from my false": [0, 65535], "my false hand": [0, 65535], "false hand cut": [0, 65535], "hand cut the": [0, 65535], "cut the wedding": [0, 65535], "the wedding ring": [0, 65535], "wedding ring and": [0, 65535], "ring and breake": [0, 65535], "breake it with": [0, 65535], "it with a": [0, 65535], "with a deepe": [0, 65535], "a deepe diuorcing": [0, 65535], "deepe diuorcing vow": [0, 65535], "diuorcing vow i": [0, 65535], "vow i know": [0, 65535], "i know thou": [0, 65535], "know thou canst": [0, 65535], "thou canst and": [0, 65535], "canst and therefore": [0, 65535], "and therefore see": [0, 65535], "therefore see thou": [0, 65535], "see thou doe": [0, 65535], "thou doe it": [0, 65535], "doe it i": [0, 65535], "it i am": [0, 65535], "i am possest": [0, 65535], "am possest with": [0, 65535], "possest with an": [0, 65535], "with an adulterate": [0, 65535], "an adulterate blot": [0, 65535], "adulterate blot my": [0, 65535], "blot my bloud": [0, 65535], "my bloud is": [0, 65535], "bloud is mingled": [0, 65535], "is mingled with": [0, 65535], "with the crime": [0, 65535], "the crime of": [0, 65535], "crime of lust": [0, 65535], "of lust for": [0, 65535], "lust for if": [0, 65535], "for if we": [0, 65535], "if we two": [0, 65535], "we two be": [0, 65535], "two be one": [0, 65535], "be one and": [0, 65535], "one and thou": [0, 65535], "and thou play": [0, 65535], "thou play false": [0, 65535], "play false i": [0, 65535], "false i doe": [0, 65535], "i doe digest": [0, 65535], "doe digest the": [0, 65535], "digest the poison": [0, 65535], "the poison of": [0, 65535], "poison of thy": [0, 65535], "of thy flesh": [0, 65535], "thy flesh being": [0, 65535], "flesh being strumpeted": [0, 65535], "being strumpeted by": [0, 65535], "strumpeted by thy": [0, 65535], "by thy contagion": [0, 65535], "thy contagion keepe": [0, 65535], "contagion keepe then": [0, 65535], "keepe then faire": [0, 65535], "then faire league": [0, 65535], "faire league and": [0, 65535], "league and truce": [0, 65535], "and truce with": [0, 65535], "truce with thy": [0, 65535], "with thy true": [0, 65535], "thy true bed": [0, 65535], "true bed i": [0, 65535], "bed i liue": [0, 65535], "i liue distain'd": [0, 65535], "liue distain'd thou": [0, 65535], "distain'd thou vndishonoured": [0, 65535], "thou vndishonoured antip": [0, 65535], "vndishonoured antip plead": [0, 65535], "antip plead you": [0, 65535], "plead you to": [0, 65535], "you to me": [0, 65535], "to me faire": [0, 65535], "me faire dame": [0, 65535], "faire dame i": [0, 65535], "dame i know": [0, 65535], "know you not": [0, 65535], "you not in": [0, 65535], "not in ephesus": [0, 65535], "in ephesus i": [0, 65535], "ephesus i am": [0, 65535], "am but two": [0, 65535], "but two houres": [0, 65535], "two houres old": [0, 65535], "houres old as": [0, 65535], "old as strange": [0, 65535], "as strange vnto": [0, 65535], "strange vnto your": [0, 65535], "vnto your towne": [0, 65535], "your towne as": [0, 65535], "towne as to": [0, 65535], "as to your": [0, 65535], "to your talke": [0, 65535], "your talke who": [0, 65535], "talke who euery": [0, 65535], "who euery word": [0, 65535], "euery word by": [0, 65535], "word by all": [0, 65535], "by all my": [0, 65535], "all my wit": [0, 65535], "my wit being": [0, 65535], "wit being scan'd": [0, 65535], "being scan'd wants": [0, 65535], "scan'd wants wit": [0, 65535], "wants wit in": [0, 65535], "wit in all": [0, 65535], "in all one": [0, 65535], "all one word": [0, 65535], "one word to": [0, 65535], "word to vnderstand": [0, 65535], "to vnderstand luci": [0, 65535], "vnderstand luci fie": [0, 65535], "luci fie brother": [0, 65535], "fie brother how": [0, 65535], "brother how the": [0, 65535], "how the world": [0, 65535], "the world is": [0, 65535], "world is chang'd": [0, 65535], "is chang'd with": [0, 65535], "chang'd with you": [0, 65535], "with you when": [0, 65535], "you when were": [0, 65535], "when were you": [0, 65535], "were you wont": [0, 65535], "you wont to": [0, 65535], "wont to vse": [0, 65535], "to vse my": [0, 65535], "vse my sister": [0, 65535], "my sister thus": [0, 65535], "sister thus she": [0, 65535], "thus she sent": [0, 65535], "she sent for": [0, 65535], "sent for you": [0, 65535], "for you by": [0, 65535], "you by dromio": [0, 65535], "by dromio home": [0, 65535], "dromio home to": [0, 65535], "to dinner ant": [0, 65535], "dinner ant by": [0, 65535], "ant by dromio": [0, 65535], "by dromio drom": [0, 65535], "dromio drom by": [0, 65535], "drom by me": [0, 65535], "by me adr": [0, 65535], "me adr by": [0, 65535], "adr by thee": [0, 65535], "by thee and": [0, 65535], "thee and this": [0, 65535], "and this thou": [0, 65535], "this thou didst": [0, 65535], "thou didst returne": [0, 65535], "didst returne from": [0, 65535], "returne from him": [0, 65535], "from him that": [0, 65535], "that he did": [0, 65535], "he did buffet": [0, 65535], "did buffet thee": [0, 65535], "buffet thee and": [0, 65535], "thee and in": [0, 65535], "and in his": [0, 65535], "in his blowes": [0, 65535], "his blowes denied": [0, 65535], "blowes denied my": [0, 65535], "denied my house": [0, 65535], "my house for": [0, 65535], "house for his": [0, 65535], "for his me": [0, 65535], "his me for": [0, 65535], "me for his": [0, 65535], "for his wife": [0, 65535], "his wife ant": [0, 65535], "wife ant did": [0, 65535], "ant did you": [0, 65535], "did you conuerse": [0, 65535], "you conuerse sir": [0, 65535], "conuerse sir with": [0, 65535], "sir with this": [0, 65535], "with this gentlewoman": [0, 65535], "this gentlewoman what": [0, 65535], "gentlewoman what is": [0, 65535], "is the course": [0, 65535], "the course and": [0, 65535], "course and drift": [0, 65535], "and drift of": [0, 65535], "drift of your": [0, 65535], "of your compact": [0, 65535], "your compact s": [0, 65535], "compact s dro": [0, 65535], "i sir i": [0, 65535], "sir i neuer": [0, 65535], "i neuer saw": [0, 65535], "neuer saw her": [0, 65535], "saw her till": [0, 65535], "her till this": [0, 65535], "till this time": [0, 65535], "this time ant": [0, 65535], "time ant villaine": [0, 65535], "villaine thou liest": [0, 65535], "thou liest for": [0, 65535], "liest for euen": [0, 65535], "for euen her": [0, 65535], "euen her verie": [0, 65535], "her verie words": [0, 65535], "verie words didst": [0, 65535], "words didst thou": [0, 65535], "didst thou deliuer": [0, 65535], "thou deliuer to": [0, 65535], "deliuer to me": [0, 65535], "to me on": [0, 65535], "the mart s": [0, 65535], "mart s dro": [0, 65535], "dro i neuer": [0, 65535], "i neuer spake": [0, 65535], "neuer spake with": [0, 65535], "spake with her": [0, 65535], "with her in": [0, 65535], "her in all": [0, 65535], "in all my": [0, 65535], "all my life": [0, 65535], "my life ant": [0, 65535], "life ant how": [0, 65535], "ant how can": [0, 65535], "how can she": [0, 65535], "can she thus": [0, 65535], "she thus then": [0, 65535], "thus then call": [0, 65535], "then call vs": [0, 65535], "call vs by": [0, 65535], "vs by our": [0, 65535], "by our names": [0, 65535], "our names vnlesse": [0, 65535], "names vnlesse it": [0, 65535], "vnlesse it be": [0, 65535], "it be by": [0, 65535], "be by inspiration": [0, 65535], "by inspiration adri": [0, 65535], "inspiration adri how": [0, 65535], "adri how ill": [0, 65535], "how ill agrees": [0, 65535], "ill agrees it": [0, 65535], "agrees it with": [0, 65535], "it with your": [0, 65535], "with your grauitie": [0, 65535], "your grauitie to": [0, 65535], "grauitie to counterfeit": [0, 65535], "to counterfeit thus": [0, 65535], "counterfeit thus grosely": [0, 65535], "thus grosely with": [0, 65535], "grosely with your": [0, 65535], "with your slaue": [0, 65535], "your slaue abetting": [0, 65535], "slaue abetting him": [0, 65535], "abetting him to": [0, 65535], "him to thwart": [0, 65535], "to thwart me": [0, 65535], "thwart me in": [0, 65535], "me in my": [0, 65535], "in my moode": [0, 65535], "my moode be": [0, 65535], "moode be it": [0, 65535], "be it my": [0, 65535], "it my wrong": [0, 65535], "my wrong you": [0, 65535], "wrong you are": [0, 65535], "you are from": [0, 65535], "are from me": [0, 65535], "from me exempt": [0, 65535], "me exempt but": [0, 65535], "exempt but wrong": [0, 65535], "but wrong not": [0, 65535], "wrong not that": [0, 65535], "not that wrong": [0, 65535], "that wrong with": [0, 65535], "wrong with a": [0, 65535], "with a more": [0, 65535], "a more contempt": [0, 65535], "more contempt come": [0, 65535], "contempt come i": [0, 65535], "come i will": [0, 65535], "i will fasten": [0, 65535], "will fasten on": [0, 65535], "fasten on this": [0, 65535], "on this sleeue": [0, 65535], "this sleeue of": [0, 65535], "sleeue of thine": [0, 65535], "of thine thou": [0, 65535], "thine thou art": [0, 65535], "art an elme": [0, 65535], "an elme my": [0, 65535], "elme my husband": [0, 65535], "my husband i": [0, 65535], "husband i a": [0, 65535], "i a vine": [0, 65535], "a vine whose": [0, 65535], "vine whose weaknesse": [0, 65535], "whose weaknesse married": [0, 65535], "weaknesse married to": [0, 65535], "married to thy": [0, 65535], "to thy stranger": [0, 65535], "thy stranger state": [0, 65535], "stranger state makes": [0, 65535], "state makes me": [0, 65535], "makes me with": [0, 65535], "me with thy": [0, 65535], "with thy strength": [0, 65535], "thy strength to": [0, 65535], "strength to communicate": [0, 65535], "to communicate if": [0, 65535], "communicate if ought": [0, 65535], "if ought possesse": [0, 65535], "ought possesse thee": [0, 65535], "possesse thee from": [0, 65535], "thee from me": [0, 65535], "from me it": [0, 65535], "me it is": [0, 65535], "it is drosse": [0, 65535], "is drosse vsurping": [0, 65535], "drosse vsurping iuie": [0, 65535], "vsurping iuie brier": [0, 65535], "iuie brier or": [0, 65535], "brier or idle": [0, 65535], "or idle mosse": [0, 65535], "idle mosse who": [0, 65535], "mosse who all": [0, 65535], "who all for": [0, 65535], "all for want": [0, 65535], "for want of": [0, 65535], "want of pruning": [0, 65535], "of pruning with": [0, 65535], "pruning with intrusion": [0, 65535], "with intrusion infect": [0, 65535], "intrusion infect thy": [0, 65535], "infect thy sap": [0, 65535], "thy sap and": [0, 65535], "sap and liue": [0, 65535], "and liue on": [0, 65535], "liue on thy": [0, 65535], "on thy confusion": [0, 65535], "thy confusion ant": [0, 65535], "confusion ant to": [0, 65535], "ant to mee": [0, 65535], "to mee shee": [0, 65535], "mee shee speakes": [0, 65535], "shee speakes shee": [0, 65535], "speakes shee moues": [0, 65535], "shee moues mee": [0, 65535], "moues mee for": [0, 65535], "mee for her": [0, 65535], "for her theame": [0, 65535], "her theame what": [0, 65535], "theame what was": [0, 65535], "what was i": [0, 65535], "was i married": [0, 65535], "i married to": [0, 65535], "married to her": [0, 65535], "to her in": [0, 65535], "her in my": [0, 65535], "in my dreame": [0, 65535], "my dreame or": [0, 65535], "dreame or sleepe": [0, 65535], "or sleepe i": [0, 65535], "sleepe i now": [0, 65535], "i now and": [0, 65535], "now and thinke": [0, 65535], "and thinke i": [0, 65535], "thinke i heare": [0, 65535], "i heare all": [0, 65535], "heare all this": [0, 65535], "all this what": [0, 65535], "this what error": [0, 65535], "what error driues": [0, 65535], "error driues our": [0, 65535], "driues our eies": [0, 65535], "our eies and": [0, 65535], "eies and eares": [0, 65535], "and eares amisse": [0, 65535], "eares amisse vntill": [0, 65535], "amisse vntill i": [0, 65535], "vntill i know": [0, 65535], "i know this": [0, 65535], "know this sure": [0, 65535], "this sure vncertaintie": [0, 65535], "sure vncertaintie ile": [0, 65535], "vncertaintie ile entertaine": [0, 65535], "ile entertaine the": [0, 65535], "entertaine the free'd": [0, 65535], "the free'd fallacie": [0, 65535], "free'd fallacie luc": [0, 65535], "fallacie luc dromio": [0, 65535], "luc dromio goe": [0, 65535], "dromio goe bid": [0, 65535], "goe bid the": [0, 65535], "bid the seruants": [0, 65535], "the seruants spred": [0, 65535], "seruants spred for": [0, 65535], "spred for dinner": [0, 65535], "for dinner s": [0, 65535], "dinner s dro": [0, 65535], "s dro oh": [0, 65535], "dro oh for": [0, 65535], "oh for my": [0, 65535], "for my beads": [0, 65535], "my beads i": [0, 65535], "beads i crosse": [0, 65535], "i crosse me": [0, 65535], "crosse me for": [0, 65535], "for a sinner": [0, 65535], "a sinner this": [0, 65535], "sinner this is": [0, 65535], "is the fairie": [0, 65535], "the fairie land": [0, 65535], "fairie land oh": [0, 65535], "land oh spight": [0, 65535], "oh spight of": [0, 65535], "spight of spights": [0, 65535], "of spights we": [0, 65535], "spights we talke": [0, 65535], "we talke with": [0, 65535], "talke with goblins": [0, 65535], "with goblins owles": [0, 65535], "goblins owles and": [0, 65535], "owles and sprights": [0, 65535], "and sprights if": [0, 65535], "sprights if we": [0, 65535], "if we obay": [0, 65535], "we obay them": [0, 65535], "obay them not": [0, 65535], "them not this": [0, 65535], "not this will": [0, 65535], "this will insue": [0, 65535], "will insue they'll": [0, 65535], "insue they'll sucke": [0, 65535], "they'll sucke our": [0, 65535], "sucke our breath": [0, 65535], "our breath or": [0, 65535], "breath or pinch": [0, 65535], "or pinch vs": [0, 65535], "pinch vs blacke": [0, 65535], "vs blacke and": [0, 65535], "blacke and blew": [0, 65535], "and blew luc": [0, 65535], "blew luc why": [0, 65535], "luc why prat'st": [0, 65535], "why prat'st thou": [0, 65535], "prat'st thou to": [0, 65535], "thou to thy": [0, 65535], "to thy selfe": [0, 65535], "selfe and answer'st": [0, 65535], "and answer'st not": [0, 65535], "answer'st not dromio": [0, 65535], "not dromio thou": [0, 65535], "dromio thou dromio": [0, 65535], "thou dromio thou": [0, 65535], "dromio thou snaile": [0, 65535], "thou snaile thou": [0, 65535], "snaile thou slug": [0, 65535], "thou slug thou": [0, 65535], "slug thou sot": [0, 65535], "thou sot s": [0, 65535], "sot s dro": [0, 65535], "i am transformed": [0, 65535], "am transformed master": [0, 65535], "transformed master am": [0, 65535], "master am i": [0, 65535], "am i not": [0, 65535], "i not ant": [0, 65535], "not ant i": [0, 65535], "thou art in": [0, 65535], "art in minde": [0, 65535], "in minde and": [0, 65535], "minde and so": [0, 65535], "and so am": [0, 65535], "so am i": [0, 65535], "am i s": [0, 65535], "i s dro": [0, 65535], "s dro nay": [0, 65535], "dro nay master": [0, 65535], "nay master both": [0, 65535], "master both in": [0, 65535], "both in minde": [0, 65535], "minde and in": [0, 65535], "and in my": [0, 65535], "in my shape": [0, 65535], "my shape ant": [0, 65535], "shape ant thou": [0, 65535], "ant thou hast": [0, 65535], "thou hast thine": [0, 65535], "hast thine owne": [0, 65535], "thine owne forme": [0, 65535], "owne forme s": [0, 65535], "forme s dro": [0, 65535], "dro no i": [0, 65535], "no i am": [0, 65535], "am an ape": [0, 65535], "an ape luc": [0, 65535], "ape luc if": [0, 65535], "luc if thou": [0, 65535], "if thou art": [0, 65535], "thou art chang'd": [0, 65535], "art chang'd to": [0, 65535], "chang'd to ought": [0, 65535], "to ought 'tis": [0, 65535], "ought 'tis to": [0, 65535], "'tis to an": [0, 65535], "to an asse": [0, 65535], "an asse s": [0, 65535], "asse s dro": [0, 65535], "s dro 'tis": [0, 65535], "dro 'tis true": [0, 65535], "'tis true she": [0, 65535], "true she rides": [0, 65535], "she rides me": [0, 65535], "rides me and": [0, 65535], "me and i": [0, 65535], "and i long": [0, 65535], "i long for": [0, 65535], "long for grasse": [0, 65535], "for grasse 'tis": [0, 65535], "grasse 'tis so": [0, 65535], "'tis so i": [0, 65535], "so i am": [0, 65535], "an asse else": [0, 65535], "asse else it": [0, 65535], "else it could": [0, 65535], "it could neuer": [0, 65535], "could neuer be": [0, 65535], "neuer be but": [0, 65535], "be but i": [0, 65535], "but i should": [0, 65535], "i should know": [0, 65535], "should know her": [0, 65535], "know her as": [0, 65535], "her as well": [0, 65535], "as well as": [0, 65535], "well as she": [0, 65535], "as she knowes": [0, 65535], "she knowes me": [0, 65535], "knowes me adr": [0, 65535], "me adr come": [0, 65535], "adr come come": [0, 65535], "come come no": [0, 65535], "come no longer": [0, 65535], "no longer will": [0, 65535], "longer will i": [0, 65535], "will i be": [0, 65535], "i be a": [0, 65535], "be a foole": [0, 65535], "a foole to": [0, 65535], "foole to put": [0, 65535], "to put the": [0, 65535], "put the finger": [0, 65535], "the finger in": [0, 65535], "finger in the": [0, 65535], "in the eie": [0, 65535], "the eie and": [0, 65535], "eie and weepe": [0, 65535], "and weepe whil'st": [0, 65535], "weepe whil'st man": [0, 65535], "whil'st man and": [0, 65535], "man and master": [0, 65535], "and master laughes": [0, 65535], "master laughes my": [0, 65535], "laughes my woes": [0, 65535], "my woes to": [0, 65535], "woes to scorne": [0, 65535], "to scorne come": [0, 65535], "scorne come sir": [0, 65535], "come sir to": [0, 65535], "sir to dinner": [0, 65535], "to dinner dromio": [0, 65535], "dinner dromio keepe": [0, 65535], "dromio keepe the": [0, 65535], "keepe the gate": [0, 65535], "the gate husband": [0, 65535], "gate husband ile": [0, 65535], "husband ile dine": [0, 65535], "ile dine aboue": [0, 65535], "dine aboue with": [0, 65535], "aboue with you": [0, 65535], "with you to": [0, 65535], "you to day": [0, 65535], "to day and": [0, 65535], "day and shriue": [0, 65535], "and shriue you": [0, 65535], "shriue you of": [0, 65535], "you of a": [0, 65535], "of a thousand": [0, 65535], "a thousand idle": [0, 65535], "thousand idle prankes": [0, 65535], "idle prankes sirra": [0, 65535], "prankes sirra if": [0, 65535], "sirra if any": [0, 65535], "if any aske": [0, 65535], "any aske you": [0, 65535], "aske you for": [0, 65535], "you for your": [0, 65535], "for your master": [0, 65535], "your master say": [0, 65535], "master say he": [0, 65535], "say he dines": [0, 65535], "he dines forth": [0, 65535], "dines forth and": [0, 65535], "forth and let": [0, 65535], "and let no": [0, 65535], "let no creature": [0, 65535], "no creature enter": [0, 65535], "creature enter come": [0, 65535], "enter come sister": [0, 65535], "come sister dromio": [0, 65535], "sister dromio play": [0, 65535], "dromio play the": [0, 65535], "play the porter": [0, 65535], "the porter well": [0, 65535], "porter well ant": [0, 65535], "well ant am": [0, 65535], "ant am i": [0, 65535], "am i in": [0, 65535], "i in earth": [0, 65535], "earth in heauen": [0, 65535], "in heauen or": [0, 65535], "heauen or in": [0, 65535], "or in hell": [0, 65535], "in hell sleeping": [0, 65535], "hell sleeping or": [0, 65535], "sleeping or waking": [0, 65535], "or waking mad": [0, 65535], "waking mad or": [0, 65535], "mad or well": [0, 65535], "or well aduisde": [0, 65535], "well aduisde knowne": [0, 65535], "aduisde knowne vnto": [0, 65535], "knowne vnto these": [0, 65535], "vnto these and": [0, 65535], "these and to": [0, 65535], "and to my": [0, 65535], "my selfe disguisde": [0, 65535], "selfe disguisde ile": [0, 65535], "disguisde ile say": [0, 65535], "ile say as": [0, 65535], "say as they": [0, 65535], "as they say": [0, 65535], "they say and": [0, 65535], "say and perseuer": [0, 65535], "and perseuer so": [0, 65535], "perseuer so and": [0, 65535], "so and in": [0, 65535], "and in this": [0, 65535], "in this mist": [0, 65535], "this mist at": [0, 65535], "mist at all": [0, 65535], "at all aduentures": [0, 65535], "all aduentures go": [0, 65535], "aduentures go s": [0, 65535], "go s dro": [0, 65535], "s dro master": [0, 65535], "dro master shall": [0, 65535], "master shall i": [0, 65535], "i be porter": [0, 65535], "be porter at": [0, 65535], "porter at the": [0, 65535], "the gate adr": [0, 65535], "gate adr i": [0, 65535], "adr i and": [0, 65535], "i and let": [0, 65535], "and let none": [0, 65535], "let none enter": [0, 65535], "none enter least": [0, 65535], "enter least i": [0, 65535], "least i breake": [0, 65535], "i breake your": [0, 65535], "breake your pate": [0, 65535], "your pate luc": [0, 65535], "pate luc come": [0, 65535], "luc come come": [0, 65535], "come come antipholus": [0, 65535], "come antipholus we": [0, 65535], "antipholus we dine": [0, 65535], "we dine to": [0, 65535], "dine to late": [0, 65535], "actus secundus enter adriana": [0, 65535], "secundus enter adriana wife": [0, 65535], "enter adriana wife to": [0, 65535], "adriana wife to antipholis": [0, 65535], "wife to antipholis sereptus": [0, 65535], "to antipholis sereptus with": [0, 65535], "antipholis sereptus with luciana": [0, 65535], "sereptus with luciana her": [0, 65535], "with luciana her sister": [0, 65535], "luciana her sister adr": [0, 65535], "her sister adr neither": [0, 65535], "sister adr neither my": [0, 65535], "adr neither my husband": [0, 65535], "neither my husband nor": [0, 65535], "my husband nor the": [0, 65535], "husband nor the slaue": [0, 65535], "nor the slaue return'd": [0, 65535], "the slaue return'd that": [0, 65535], "slaue return'd that in": [0, 65535], "return'd that in such": [0, 65535], "that in such haste": [0, 65535], "in such haste i": [0, 65535], "such haste i sent": [0, 65535], "haste i sent to": [0, 65535], "i sent to seeke": [0, 65535], "sent to seeke his": [0, 65535], "to seeke his master": [0, 65535], "seeke his master sure": [0, 65535], "his master sure luciana": [0, 65535], "master sure luciana it": [0, 65535], "sure luciana it is": [0, 65535], "luciana it is two": [0, 65535], "it is two a": [0, 65535], "is two a clocke": [0, 65535], "two a clocke luc": [0, 65535], "a clocke luc perhaps": [0, 65535], "clocke luc perhaps some": [0, 65535], "luc perhaps some merchant": [0, 65535], "perhaps some merchant hath": [0, 65535], "some merchant hath inuited": [0, 65535], "merchant hath inuited him": [0, 65535], "hath inuited him and": [0, 65535], "inuited him and from": [0, 65535], "him and from the": [0, 65535], "and from the mart": [0, 65535], "from the mart he's": [0, 65535], "the mart he's somewhere": [0, 65535], "mart he's somewhere gone": [0, 65535], "he's somewhere gone to": [0, 65535], "somewhere gone to dinner": [0, 65535], "gone to dinner good": [0, 65535], "to dinner good sister": [0, 65535], "dinner good sister let": [0, 65535], "good sister let vs": [0, 65535], "sister let vs dine": [0, 65535], "let vs dine and": [0, 65535], "vs dine and neuer": [0, 65535], "dine and neuer fret": [0, 65535], "and neuer fret a": [0, 65535], "neuer fret a man": [0, 65535], "fret a man is": [0, 65535], "a man is master": [0, 65535], "man is master of": [0, 65535], "is master of his": [0, 65535], "master of his libertie": [0, 65535], "of his libertie time": [0, 65535], "his libertie time is": [0, 65535], "libertie time is their": [0, 65535], "time is their master": [0, 65535], "is their master and": [0, 65535], "their master and when": [0, 65535], "master and when they": [0, 65535], "and when they see": [0, 65535], "when they see time": [0, 65535], "they see time they'll": [0, 65535], "see time they'll goe": [0, 65535], "time they'll goe or": [0, 65535], "they'll goe or come": [0, 65535], "goe or come if": [0, 65535], "or come if so": [0, 65535], "come if so be": [0, 65535], "if so be patient": [0, 65535], "so be patient sister": [0, 65535], "be patient sister adr": [0, 65535], "patient sister adr why": [0, 65535], "sister adr why should": [0, 65535], "adr why should their": [0, 65535], "why should their libertie": [0, 65535], "should their libertie then": [0, 65535], "their libertie then ours": [0, 65535], "libertie then ours be": [0, 65535], "then ours be more": [0, 65535], "ours be more luc": [0, 65535], "be more luc because": [0, 65535], "more luc because their": [0, 65535], "luc because their businesse": [0, 65535], "because their businesse still": [0, 65535], "their businesse still lies": [0, 65535], "businesse still lies out": [0, 65535], "still lies out a": [0, 65535], "lies out a dore": [0, 65535], "out a dore adr": [0, 65535], "a dore adr looke": [0, 65535], "dore adr looke when": [0, 65535], "adr looke when i": [0, 65535], "looke when i serue": [0, 65535], "when i serue him": [0, 65535], "i serue him so": [0, 65535], "serue him so he": [0, 65535], "him so he takes": [0, 65535], "so he takes it": [0, 65535], "he takes it thus": [0, 65535], "takes it thus luc": [0, 65535], "it thus luc oh": [0, 65535], "thus luc oh know": [0, 65535], "luc oh know he": [0, 65535], "oh know he is": [0, 65535], "know he is the": [0, 65535], "he is the bridle": [0, 65535], "is the bridle of": [0, 65535], "the bridle of your": [0, 65535], "bridle of your will": [0, 65535], "of your will adr": [0, 65535], "your will adr there's": [0, 65535], "will adr there's none": [0, 65535], "adr there's none but": [0, 65535], "there's none but asses": [0, 65535], "none but asses will": [0, 65535], "but asses will be": [0, 65535], "asses will be bridled": [0, 65535], "will be bridled so": [0, 65535], "be bridled so luc": [0, 65535], "bridled so luc why": [0, 65535], "so luc why headstrong": [0, 65535], "luc why headstrong liberty": [0, 65535], "why headstrong liberty is": [0, 65535], "headstrong liberty is lasht": [0, 65535], "liberty is lasht with": [0, 65535], "is lasht with woe": [0, 65535], "lasht with woe there's": [0, 65535], "with woe there's nothing": [0, 65535], "woe there's nothing situate": [0, 65535], "there's nothing situate vnder": [0, 65535], "nothing situate vnder heauens": [0, 65535], "situate vnder heauens eye": [0, 65535], "vnder heauens eye but": [0, 65535], "heauens eye but hath": [0, 65535], "eye but hath his": [0, 65535], "but hath his bound": [0, 65535], "hath his bound in": [0, 65535], "his bound in earth": [0, 65535], "bound in earth in": [0, 65535], "in earth in sea": [0, 65535], "earth in sea in": [0, 65535], "in sea in skie": [0, 65535], "sea in skie the": [0, 65535], "in skie the beasts": [0, 65535], "skie the beasts the": [0, 65535], "the beasts the fishes": [0, 65535], "beasts the fishes and": [0, 65535], "the fishes and the": [0, 65535], "fishes and the winged": [0, 65535], "and the winged fowles": [0, 65535], "the winged fowles are": [0, 65535], "winged fowles are their": [0, 65535], "fowles are their males": [0, 65535], "are their males subiects": [0, 65535], "their males subiects and": [0, 65535], "males subiects and at": [0, 65535], "subiects and at their": [0, 65535], "and at their controules": [0, 65535], "at their controules man": [0, 65535], "their controules man more": [0, 65535], "controules man more diuine": [0, 65535], "man more diuine the": [0, 65535], "more diuine the master": [0, 65535], "diuine the master of": [0, 65535], "the master of all": [0, 65535], "master of all these": [0, 65535], "of all these lord": [0, 65535], "all these lord of": [0, 65535], "these lord of the": [0, 65535], "lord of the wide": [0, 65535], "of the wide world": [0, 65535], "the wide world and": [0, 65535], "wide world and wilde": [0, 65535], "world and wilde watry": [0, 65535], "and wilde watry seas": [0, 65535], "wilde watry seas indued": [0, 65535], "watry seas indued with": [0, 65535], "seas indued with intellectuall": [0, 65535], "indued with intellectuall sence": [0, 65535], "with intellectuall sence and": [0, 65535], "intellectuall sence and soules": [0, 65535], "sence and soules of": [0, 65535], "and soules of more": [0, 65535], "soules of more preheminence": [0, 65535], "of more preheminence then": [0, 65535], "more preheminence then fish": [0, 65535], "preheminence then fish and": [0, 65535], "then fish and fowles": [0, 65535], "fish and fowles are": [0, 65535], "and fowles are masters": [0, 65535], "fowles are masters to": [0, 65535], "are masters to their": [0, 65535], "masters to their females": [0, 65535], "to their females and": [0, 65535], "their females and their": [0, 65535], "females and their lords": [0, 65535], "and their lords then": [0, 65535], "their lords then let": [0, 65535], "lords then let your": [0, 65535], "then let your will": [0, 65535], "let your will attend": [0, 65535], "your will attend on": [0, 65535], "will attend on their": [0, 65535], "attend on their accords": [0, 65535], "on their accords adri": [0, 65535], "their accords adri this": [0, 65535], "accords adri this seruitude": [0, 65535], "adri this seruitude makes": [0, 65535], "this seruitude makes you": [0, 65535], "seruitude makes you to": [0, 65535], "makes you to keepe": [0, 65535], "you to keepe vnwed": [0, 65535], "to keepe vnwed luci": [0, 65535], "keepe vnwed luci not": [0, 65535], "vnwed luci not this": [0, 65535], "luci not this but": [0, 65535], "not this but troubles": [0, 65535], "this but troubles of": [0, 65535], "but troubles of the": [0, 65535], "troubles of the marriage": [0, 65535], "of the marriage bed": [0, 65535], "the marriage bed adr": [0, 65535], "marriage bed adr but": [0, 65535], "bed adr but were": [0, 65535], "adr but were you": [0, 65535], "but were you wedded": [0, 65535], "were you wedded you": [0, 65535], "you wedded you wold": [0, 65535], "wedded you wold bear": [0, 65535], "you wold bear some": [0, 65535], "wold bear some sway": [0, 65535], "bear some sway luc": [0, 65535], "some sway luc ere": [0, 65535], "sway luc ere i": [0, 65535], "luc ere i learne": [0, 65535], "ere i learne loue": [0, 65535], "i learne loue ile": [0, 65535], "learne loue ile practise": [0, 65535], "loue ile practise to": [0, 65535], "ile practise to obey": [0, 65535], "practise to obey adr": [0, 65535], "to obey adr how": [0, 65535], "obey adr how if": [0, 65535], "adr how if your": [0, 65535], "how if your husband": [0, 65535], "if your husband start": [0, 65535], "your husband start some": [0, 65535], "husband start some other": [0, 65535], "start some other where": [0, 65535], "some other where luc": [0, 65535], "other where luc till": [0, 65535], "where luc till he": [0, 65535], "luc till he come": [0, 65535], "till he come home": [0, 65535], "he come home againe": [0, 65535], "come home againe i": [0, 65535], "home againe i would": [0, 65535], "againe i would forbeare": [0, 65535], "i would forbeare adr": [0, 65535], "would forbeare adr patience": [0, 65535], "forbeare adr patience vnmou'd": [0, 65535], "adr patience vnmou'd no": [0, 65535], "patience vnmou'd no maruel": [0, 65535], "vnmou'd no maruel though": [0, 65535], "no maruel though she": [0, 65535], "maruel though she pause": [0, 65535], "though she pause they": [0, 65535], "she pause they can": [0, 65535], "pause they can be": [0, 65535], "they can be meeke": [0, 65535], "can be meeke that": [0, 65535], "be meeke that haue": [0, 65535], "meeke that haue no": [0, 65535], "that haue no other": [0, 65535], "haue no other cause": [0, 65535], "no other cause a": [0, 65535], "other cause a wretched": [0, 65535], "cause a wretched soule": [0, 65535], "a wretched soule bruis'd": [0, 65535], "wretched soule bruis'd with": [0, 65535], "soule bruis'd with aduersitie": [0, 65535], "bruis'd with aduersitie we": [0, 65535], "with aduersitie we bid": [0, 65535], "aduersitie we bid be": [0, 65535], "we bid be quiet": [0, 65535], "bid be quiet when": [0, 65535], "be quiet when we": [0, 65535], "quiet when we heare": [0, 65535], "when we heare it": [0, 65535], "we heare it crie": [0, 65535], "heare it crie but": [0, 65535], "it crie but were": [0, 65535], "crie but were we": [0, 65535], "but were we burdned": [0, 65535], "were we burdned with": [0, 65535], "we burdned with like": [0, 65535], "burdned with like waight": [0, 65535], "with like waight of": [0, 65535], "like waight of paine": [0, 65535], "waight of paine as": [0, 65535], "of paine as much": [0, 65535], "paine as much or": [0, 65535], "as much or more": [0, 65535], "much or more we": [0, 65535], "or more we should": [0, 65535], "more we should our": [0, 65535], "we should our selues": [0, 65535], "should our selues complaine": [0, 65535], "our selues complaine so": [0, 65535], "selues complaine so thou": [0, 65535], "complaine so thou that": [0, 65535], "so thou that hast": [0, 65535], "thou that hast no": [0, 65535], "that hast no vnkinde": [0, 65535], "hast no vnkinde mate": [0, 65535], "no vnkinde mate to": [0, 65535], "vnkinde mate to greeue": [0, 65535], "mate to greeue thee": [0, 65535], "to greeue thee with": [0, 65535], "greeue thee with vrging": [0, 65535], "thee with vrging helpelesse": [0, 65535], "with vrging helpelesse patience": [0, 65535], "vrging helpelesse patience would": [0, 65535], "helpelesse patience would releeue": [0, 65535], "patience would releeue me": [0, 65535], "would releeue me but": [0, 65535], "releeue me but if": [0, 65535], "me but if thou": [0, 65535], "but if thou liue": [0, 65535], "if thou liue to": [0, 65535], "thou liue to see": [0, 65535], "liue to see like": [0, 65535], "to see like right": [0, 65535], "see like right bereft": [0, 65535], "like right bereft this": [0, 65535], "right bereft this foole": [0, 65535], "bereft this foole beg'd": [0, 65535], "this foole beg'd patience": [0, 65535], "foole beg'd patience in": [0, 65535], "beg'd patience in thee": [0, 65535], "patience in thee will": [0, 65535], "in thee will be": [0, 65535], "thee will be left": [0, 65535], "will be left luci": [0, 65535], "be left luci well": [0, 65535], "left luci well i": [0, 65535], "luci well i will": [0, 65535], "well i will marry": [0, 65535], "i will marry one": [0, 65535], "will marry one day": [0, 65535], "marry one day but": [0, 65535], "one day but to": [0, 65535], "day but to trie": [0, 65535], "but to trie heere": [0, 65535], "to trie heere comes": [0, 65535], "trie heere comes your": [0, 65535], "heere comes your man": [0, 65535], "comes your man now": [0, 65535], "your man now is": [0, 65535], "man now is your": [0, 65535], "now is your husband": [0, 65535], "is your husband nie": [0, 65535], "your husband nie enter": [0, 65535], "husband nie enter dromio": [0, 65535], "nie enter dromio eph": [0, 65535], "enter dromio eph adr": [0, 65535], "dromio eph adr say": [0, 65535], "eph adr say is": [0, 65535], "adr say is your": [0, 65535], "say is your tardie": [0, 65535], "is your tardie master": [0, 65535], "your tardie master now": [0, 65535], "tardie master now at": [0, 65535], "master now at hand": [0, 65535], "now at hand e": [0, 65535], "at hand e dro": [0, 65535], "hand e dro nay": [0, 65535], "e dro nay hee's": [0, 65535], "dro nay hee's at": [0, 65535], "nay hee's at too": [0, 65535], "hee's at too hands": [0, 65535], "at too hands with": [0, 65535], "too hands with mee": [0, 65535], "hands with mee and": [0, 65535], "with mee and that": [0, 65535], "mee and that my": [0, 65535], "and that my two": [0, 65535], "that my two eares": [0, 65535], "my two eares can": [0, 65535], "two eares can witnesse": [0, 65535], "eares can witnesse adr": [0, 65535], "can witnesse adr say": [0, 65535], "witnesse adr say didst": [0, 65535], "adr say didst thou": [0, 65535], "say didst thou speake": [0, 65535], "didst thou speake with": [0, 65535], "thou speake with him": [0, 65535], "speake with him knowst": [0, 65535], "with him knowst thou": [0, 65535], "him knowst thou his": [0, 65535], "knowst thou his minde": [0, 65535], "thou his minde e": [0, 65535], "his minde e dro": [0, 65535], "minde e dro i": [0, 65535], "e dro i i": [0, 65535], "dro i i he": [0, 65535], "i i he told": [0, 65535], "i he told his": [0, 65535], "he told his minde": [0, 65535], "told his minde vpon": [0, 65535], "his minde vpon mine": [0, 65535], "minde vpon mine eare": [0, 65535], "vpon mine eare beshrew": [0, 65535], "mine eare beshrew his": [0, 65535], "eare beshrew his hand": [0, 65535], "beshrew his hand i": [0, 65535], "his hand i scarce": [0, 65535], "hand i scarce could": [0, 65535], "i scarce could vnderstand": [0, 65535], "scarce could vnderstand it": [0, 65535], "could vnderstand it luc": [0, 65535], "vnderstand it luc spake": [0, 65535], "it luc spake hee": [0, 65535], "luc spake hee so": [0, 65535], "spake hee so doubtfully": [0, 65535], "hee so doubtfully thou": [0, 65535], "so doubtfully thou couldst": [0, 65535], "doubtfully thou couldst not": [0, 65535], "thou couldst not feele": [0, 65535], "couldst not feele his": [0, 65535], "not feele his meaning": [0, 65535], "feele his meaning e": [0, 65535], "his meaning e dro": [0, 65535], "meaning e dro nay": [0, 65535], "e dro nay hee": [0, 65535], "dro nay hee strooke": [0, 65535], "nay hee strooke so": [0, 65535], "hee strooke so plainly": [0, 65535], "strooke so plainly i": [0, 65535], "so plainly i could": [0, 65535], "plainly i could too": [0, 65535], "i could too well": [0, 65535], "could too well feele": [0, 65535], "too well feele his": [0, 65535], "well feele his blowes": [0, 65535], "feele his blowes and": [0, 65535], "his blowes and withall": [0, 65535], "blowes and withall so": [0, 65535], "and withall so doubtfully": [0, 65535], "withall so doubtfully that": [0, 65535], "so doubtfully that i": [0, 65535], "doubtfully that i could": [0, 65535], "that i could scarce": [0, 65535], "i could scarce vnderstand": [0, 65535], "could scarce vnderstand them": [0, 65535], "scarce vnderstand them adri": [0, 65535], "vnderstand them adri but": [0, 65535], "them adri but say": [0, 65535], "adri but say i": [0, 65535], "but say i prethee": [0, 65535], "say i prethee is": [0, 65535], "i prethee is he": [0, 65535], "prethee is he comming": [0, 65535], "is he comming home": [0, 65535], "he comming home it": [0, 65535], "comming home it seemes": [0, 65535], "home it seemes he": [0, 65535], "it seemes he hath": [0, 65535], "seemes he hath great": [0, 65535], "he hath great care": [0, 65535], "hath great care to": [0, 65535], "great care to please": [0, 65535], "care to please his": [0, 65535], "to please his wife": [0, 65535], "please his wife e": [0, 65535], "his wife e dro": [0, 65535], "wife e dro why": [0, 65535], "e dro why mistresse": [0, 65535], "dro why mistresse sure": [0, 65535], "why mistresse sure my": [0, 65535], "mistresse sure my master": [0, 65535], "sure my master is": [0, 65535], "my master is horne": [0, 65535], "master is horne mad": [0, 65535], "is horne mad adri": [0, 65535], "horne mad adri horne": [0, 65535], "mad adri horne mad": [0, 65535], "adri horne mad thou": [0, 65535], "horne mad thou villaine": [0, 65535], "mad thou villaine e": [0, 65535], "thou villaine e dro": [0, 65535], "villaine e dro i": [0, 65535], "e dro i meane": [0, 65535], "dro i meane not": [0, 65535], "i meane not cuckold": [0, 65535], "meane not cuckold mad": [0, 65535], "not cuckold mad but": [0, 65535], "cuckold mad but sure": [0, 65535], "mad but sure he": [0, 65535], "but sure he is": [0, 65535], "sure he is starke": [0, 65535], "he is starke mad": [0, 65535], "is starke mad when": [0, 65535], "starke mad when i": [0, 65535], "mad when i desir'd": [0, 65535], "when i desir'd him": [0, 65535], "i desir'd him to": [0, 65535], "desir'd him to come": [0, 65535], "him to come home": [0, 65535], "to come home to": [0, 65535], "come home to dinner": [0, 65535], "home to dinner he": [0, 65535], "to dinner he ask'd": [0, 65535], "dinner he ask'd me": [0, 65535], "he ask'd me for": [0, 65535], "ask'd me for a": [0, 65535], "me for a hundred": [0, 65535], "for a hundred markes": [0, 65535], "a hundred markes in": [0, 65535], "hundred markes in gold": [0, 65535], "markes in gold 'tis": [0, 65535], "in gold 'tis dinner": [0, 65535], "gold 'tis dinner time": [0, 65535], "'tis dinner time quoth": [0, 65535], "dinner time quoth i": [0, 65535], "time quoth i my": [0, 65535], "quoth i my gold": [0, 65535], "i my gold quoth": [0, 65535], "my gold quoth he": [0, 65535], "gold quoth he your": [0, 65535], "quoth he your meat": [0, 65535], "he your meat doth": [0, 65535], "your meat doth burne": [0, 65535], "meat doth burne quoth": [0, 65535], "doth burne quoth i": [0, 65535], "burne quoth i my": [0, 65535], "gold quoth he will": [0, 65535], "quoth he will you": [0, 65535], "he will you come": [0, 65535], "will you come quoth": [0, 65535], "you come quoth i": [0, 65535], "come quoth i my": [0, 65535], "gold quoth he where": [0, 65535], "quoth he where is": [0, 65535], "he where is the": [0, 65535], "where is the thousand": [0, 65535], "is the thousand markes": [0, 65535], "the thousand markes i": [0, 65535], "thousand markes i gaue": [0, 65535], "markes i gaue thee": [0, 65535], "i gaue thee villaine": [0, 65535], "gaue thee villaine the": [0, 65535], "thee villaine the pigge": [0, 65535], "villaine the pigge quoth": [0, 65535], "the pigge quoth i": [0, 65535], "pigge quoth i is": [0, 65535], "quoth i is burn'd": [0, 65535], "i is burn'd my": [0, 65535], "is burn'd my gold": [0, 65535], "burn'd my gold quoth": [0, 65535], "gold quoth he my": [0, 65535], "quoth he my mistresse": [0, 65535], "he my mistresse sir": [0, 65535], "my mistresse sir quoth": [0, 65535], "mistresse sir quoth i": [0, 65535], "sir quoth i hang": [0, 65535], "quoth i hang vp": [0, 65535], "i hang vp thy": [0, 65535], "hang vp thy mistresse": [0, 65535], "vp thy mistresse i": [0, 65535], "thy mistresse i know": [0, 65535], "mistresse i know not": [0, 65535], "i know not thy": [0, 65535], "know not thy mistresse": [0, 65535], "not thy mistresse out": [0, 65535], "thy mistresse out on": [0, 65535], "mistresse out on thy": [0, 65535], "out on thy mistresse": [0, 65535], "on thy mistresse luci": [0, 65535], "thy mistresse luci quoth": [0, 65535], "mistresse luci quoth who": [0, 65535], "luci quoth who e": [0, 65535], "quoth who e dr": [0, 65535], "who e dr quoth": [0, 65535], "e dr quoth my": [0, 65535], "dr quoth my master": [0, 65535], "quoth my master i": [0, 65535], "my master i know": [0, 65535], "master i know quoth": [0, 65535], "i know quoth he": [0, 65535], "know quoth he no": [0, 65535], "quoth he no house": [0, 65535], "he no house no": [0, 65535], "no house no wife": [0, 65535], "house no wife no": [0, 65535], "no wife no mistresse": [0, 65535], "wife no mistresse so": [0, 65535], "no mistresse so that": [0, 65535], "mistresse so that my": [0, 65535], "so that my arrant": [0, 65535], "that my arrant due": [0, 65535], "my arrant due vnto": [0, 65535], "arrant due vnto my": [0, 65535], "due vnto my tongue": [0, 65535], "vnto my tongue i": [0, 65535], "my tongue i thanke": [0, 65535], "tongue i thanke him": [0, 65535], "i thanke him i": [0, 65535], "thanke him i bare": [0, 65535], "him i bare home": [0, 65535], "i bare home vpon": [0, 65535], "bare home vpon my": [0, 65535], "home vpon my shoulders": [0, 65535], "vpon my shoulders for": [0, 65535], "my shoulders for in": [0, 65535], "shoulders for in conclusion": [0, 65535], "for in conclusion he": [0, 65535], "in conclusion he did": [0, 65535], "conclusion he did beat": [0, 65535], "he did beat me": [0, 65535], "did beat me there": [0, 65535], "beat me there adri": [0, 65535], "me there adri go": [0, 65535], "there adri go back": [0, 65535], "adri go back againe": [0, 65535], "go back againe thou": [0, 65535], "back againe thou slaue": [0, 65535], "againe thou slaue fetch": [0, 65535], "thou slaue fetch him": [0, 65535], "slaue fetch him home": [0, 65535], "fetch him home dro": [0, 65535], "him home dro goe": [0, 65535], "home dro goe backe": [0, 65535], "dro goe backe againe": [0, 65535], "goe backe againe and": [0, 65535], "backe againe and be": [0, 65535], "againe and be new": [0, 65535], "and be new beaten": [0, 65535], "be new beaten home": [0, 65535], "new beaten home for": [0, 65535], "beaten home for gods": [0, 65535], "home for gods sake": [0, 65535], "for gods sake send": [0, 65535], "gods sake send some": [0, 65535], "sake send some other": [0, 65535], "send some other messenger": [0, 65535], "some other messenger adri": [0, 65535], "other messenger adri backe": [0, 65535], "messenger adri backe slaue": [0, 65535], "adri backe slaue or": [0, 65535], "backe slaue or i": [0, 65535], "slaue or i will": [0, 65535], "or i will breake": [0, 65535], "i will breake thy": [0, 65535], "will breake thy pate": [0, 65535], "breake thy pate a": [0, 65535], "thy pate a crosse": [0, 65535], "pate a crosse dro": [0, 65535], "a crosse dro and": [0, 65535], "crosse dro and he": [0, 65535], "dro and he will": [0, 65535], "and he will blesse": [0, 65535], "he will blesse the": [0, 65535], "will blesse the crosse": [0, 65535], "blesse the crosse with": [0, 65535], "the crosse with other": [0, 65535], "crosse with other beating": [0, 65535], "with other beating betweene": [0, 65535], "other beating betweene you": [0, 65535], "beating betweene you i": [0, 65535], "betweene you i shall": [0, 65535], "you i shall haue": [0, 65535], "i shall haue a": [0, 65535], "shall haue a holy": [0, 65535], "haue a holy head": [0, 65535], "a holy head adri": [0, 65535], "holy head adri hence": [0, 65535], "head adri hence prating": [0, 65535], "adri hence prating pesant": [0, 65535], "hence prating pesant fetch": [0, 65535], "prating pesant fetch thy": [0, 65535], "pesant fetch thy master": [0, 65535], "fetch thy master home": [0, 65535], "thy master home dro": [0, 65535], "master home dro am": [0, 65535], "home dro am i": [0, 65535], "dro am i so": [0, 65535], "am i so round": [0, 65535], "i so round with": [0, 65535], "so round with you": [0, 65535], "round with you as": [0, 65535], "with you as you": [0, 65535], "you as you with": [0, 65535], "as you with me": [0, 65535], "you with me that": [0, 65535], "with me that like": [0, 65535], "me that like a": [0, 65535], "that like a foot": [0, 65535], "like a foot ball": [0, 65535], "a foot ball you": [0, 65535], "foot ball you doe": [0, 65535], "ball you doe spurne": [0, 65535], "you doe spurne me": [0, 65535], "doe spurne me thus": [0, 65535], "spurne me thus you": [0, 65535], "me thus you spurne": [0, 65535], "thus you spurne me": [0, 65535], "you spurne me hence": [0, 65535], "spurne me hence and": [0, 65535], "me hence and he": [0, 65535], "hence and he will": [0, 65535], "and he will spurne": [0, 65535], "he will spurne me": [0, 65535], "will spurne me hither": [0, 65535], "spurne me hither if": [0, 65535], "me hither if i": [0, 65535], "hither if i last": [0, 65535], "if i last in": [0, 65535], "i last in this": [0, 65535], "last in this seruice": [0, 65535], "in this seruice you": [0, 65535], "this seruice you must": [0, 65535], "seruice you must case": [0, 65535], "you must case me": [0, 65535], "must case me in": [0, 65535], "case me in leather": [0, 65535], "me in leather luci": [0, 65535], "in leather luci fie": [0, 65535], "leather luci fie how": [0, 65535], "luci fie how impatience": [0, 65535], "fie how impatience lowreth": [0, 65535], "how impatience lowreth in": [0, 65535], "impatience lowreth in your": [0, 65535], "lowreth in your face": [0, 65535], "in your face adri": [0, 65535], "your face adri his": [0, 65535], "face adri his company": [0, 65535], "adri his company must": [0, 65535], "his company must do": [0, 65535], "company must do his": [0, 65535], "must do his minions": [0, 65535], "do his minions grace": [0, 65535], "his minions grace whil'st": [0, 65535], "minions grace whil'st i": [0, 65535], "grace whil'st i at": [0, 65535], "whil'st i at home": [0, 65535], "i at home starue": [0, 65535], "at home starue for": [0, 65535], "home starue for a": [0, 65535], "starue for a merrie": [0, 65535], "for a merrie looke": [0, 65535], "a merrie looke hath": [0, 65535], "merrie looke hath homelie": [0, 65535], "looke hath homelie age": [0, 65535], "hath homelie age th'": [0, 65535], "homelie age th' alluring": [0, 65535], "age th' alluring beauty": [0, 65535], "th' alluring beauty tooke": [0, 65535], "alluring beauty tooke from": [0, 65535], "beauty tooke from my": [0, 65535], "tooke from my poore": [0, 65535], "from my poore cheeke": [0, 65535], "my poore cheeke then": [0, 65535], "poore cheeke then he": [0, 65535], "cheeke then he hath": [0, 65535], "then he hath wasted": [0, 65535], "he hath wasted it": [0, 65535], "hath wasted it are": [0, 65535], "wasted it are my": [0, 65535], "it are my discourses": [0, 65535], "are my discourses dull": [0, 65535], "my discourses dull barren": [0, 65535], "discourses dull barren my": [0, 65535], "dull barren my wit": [0, 65535], "barren my wit if": [0, 65535], "my wit if voluble": [0, 65535], "wit if voluble and": [0, 65535], "if voluble and sharpe": [0, 65535], "voluble and sharpe discourse": [0, 65535], "and sharpe discourse be": [0, 65535], "sharpe discourse be mar'd": [0, 65535], "discourse be mar'd vnkindnesse": [0, 65535], "be mar'd vnkindnesse blunts": [0, 65535], "mar'd vnkindnesse blunts it": [0, 65535], "vnkindnesse blunts it more": [0, 65535], "blunts it more then": [0, 65535], "it more then marble": [0, 65535], "more then marble hard": [0, 65535], "then marble hard doe": [0, 65535], "marble hard doe their": [0, 65535], "hard doe their gay": [0, 65535], "doe their gay vestments": [0, 65535], "their gay vestments his": [0, 65535], "gay vestments his affections": [0, 65535], "vestments his affections baite": [0, 65535], "his affections baite that's": [0, 65535], "affections baite that's not": [0, 65535], "baite that's not my": [0, 65535], "that's not my fault": [0, 65535], "not my fault hee's": [0, 65535], "my fault hee's master": [0, 65535], "fault hee's master of": [0, 65535], "hee's master of my": [0, 65535], "master of my state": [0, 65535], "of my state what": [0, 65535], "my state what ruines": [0, 65535], "state what ruines are": [0, 65535], "what ruines are in": [0, 65535], "ruines are in me": [0, 65535], "are in me that": [0, 65535], "in me that can": [0, 65535], "me that can be": [0, 65535], "that can be found": [0, 65535], "can be found by": [0, 65535], "be found by him": [0, 65535], "found by him not": [0, 65535], "by him not ruin'd": [0, 65535], "him not ruin'd then": [0, 65535], "not ruin'd then is": [0, 65535], "ruin'd then is he": [0, 65535], "then is he the": [0, 65535], "is he the ground": [0, 65535], "he the ground of": [0, 65535], "the ground of my": [0, 65535], "ground of my defeatures": [0, 65535], "of my defeatures my": [0, 65535], "my defeatures my decayed": [0, 65535], "defeatures my decayed faire": [0, 65535], "my decayed faire a": [0, 65535], "decayed faire a sunnie": [0, 65535], "faire a sunnie looke": [0, 65535], "a sunnie looke of": [0, 65535], "sunnie looke of his": [0, 65535], "looke of his would": [0, 65535], "of his would soone": [0, 65535], "his would soone repaire": [0, 65535], "would soone repaire but": [0, 65535], "soone repaire but too": [0, 65535], "repaire but too vnruly": [0, 65535], "but too vnruly deere": [0, 65535], "too vnruly deere he": [0, 65535], "vnruly deere he breakes": [0, 65535], "deere he breakes the": [0, 65535], "he breakes the pale": [0, 65535], "breakes the pale and": [0, 65535], "the pale and feedes": [0, 65535], "pale and feedes from": [0, 65535], "and feedes from home": [0, 65535], "feedes from home poore": [0, 65535], "from home poore i": [0, 65535], "home poore i am": [0, 65535], "poore i am but": [0, 65535], "i am but his": [0, 65535], "am but his stale": [0, 65535], "but his stale luci": [0, 65535], "his stale luci selfe": [0, 65535], "stale luci selfe harming": [0, 65535], "luci selfe harming iealousie": [0, 65535], "selfe harming iealousie fie": [0, 65535], "harming iealousie fie beat": [0, 65535], "iealousie fie beat it": [0, 65535], "fie beat it hence": [0, 65535], "beat it hence ad": [0, 65535], "it hence ad vnfeeling": [0, 65535], "hence ad vnfeeling fools": [0, 65535], "ad vnfeeling fools can": [0, 65535], "vnfeeling fools can with": [0, 65535], "fools can with such": [0, 65535], "can with such wrongs": [0, 65535], "with such wrongs dispence": [0, 65535], "such wrongs dispence i": [0, 65535], "wrongs dispence i know": [0, 65535], "dispence i know his": [0, 65535], "i know his eye": [0, 65535], "know his eye doth": [0, 65535], "his eye doth homage": [0, 65535], "eye doth homage other": [0, 65535], "doth homage other where": [0, 65535], "homage other where or": [0, 65535], "other where or else": [0, 65535], "where or else what": [0, 65535], "or else what lets": [0, 65535], "else what lets it": [0, 65535], "what lets it but": [0, 65535], "lets it but he": [0, 65535], "it but he would": [0, 65535], "but he would be": [0, 65535], "he would be here": [0, 65535], "would be here sister": [0, 65535], "be here sister you": [0, 65535], "here sister you know": [0, 65535], "sister you know he": [0, 65535], "you know he promis'd": [0, 65535], "know he promis'd me": [0, 65535], "he promis'd me a": [0, 65535], "promis'd me a chaine": [0, 65535], "me a chaine would": [0, 65535], "a chaine would that": [0, 65535], "chaine would that alone": [0, 65535], "would that alone a": [0, 65535], "that alone a loue": [0, 65535], "alone a loue he": [0, 65535], "a loue he would": [0, 65535], "loue he would detaine": [0, 65535], "he would detaine so": [0, 65535], "would detaine so he": [0, 65535], "detaine so he would": [0, 65535], "so he would keepe": [0, 65535], "he would keepe faire": [0, 65535], "would keepe faire quarter": [0, 65535], "keepe faire quarter with": [0, 65535], "faire quarter with his": [0, 65535], "quarter with his bed": [0, 65535], "with his bed i": [0, 65535], "his bed i see": [0, 65535], "bed i see the": [0, 65535], "i see the iewell": [0, 65535], "see the iewell best": [0, 65535], "the iewell best enamaled": [0, 65535], "iewell best enamaled will": [0, 65535], "best enamaled will loose": [0, 65535], "enamaled will loose his": [0, 65535], "will loose his beautie": [0, 65535], "loose his beautie yet": [0, 65535], "his beautie yet the": [0, 65535], "beautie yet the gold": [0, 65535], "yet the gold bides": [0, 65535], "the gold bides still": [0, 65535], "gold bides still that": [0, 65535], "bides still that others": [0, 65535], "still that others touch": [0, 65535], "that others touch and": [0, 65535], "others touch and often": [0, 65535], "touch and often touching": [0, 65535], "and often touching will": [0, 65535], "often touching will where": [0, 65535], "touching will where gold": [0, 65535], "will where gold and": [0, 65535], "where gold and no": [0, 65535], "gold and no man": [0, 65535], "and no man that": [0, 65535], "no man that hath": [0, 65535], "man that hath a": [0, 65535], "that hath a name": [0, 65535], "hath a name by": [0, 65535], "a name by falshood": [0, 65535], "name by falshood and": [0, 65535], "by falshood and corruption": [0, 65535], "falshood and corruption doth": [0, 65535], "and corruption doth it": [0, 65535], "corruption doth it shame": [0, 65535], "doth it shame since": [0, 65535], "it shame since that": [0, 65535], "shame since that my": [0, 65535], "since that my beautie": [0, 65535], "that my beautie cannot": [0, 65535], "my beautie cannot please": [0, 65535], "beautie cannot please his": [0, 65535], "cannot please his eie": [0, 65535], "please his eie ile": [0, 65535], "his eie ile weepe": [0, 65535], "eie ile weepe what's": [0, 65535], "ile weepe what's left": [0, 65535], "weepe what's left away": [0, 65535], "what's left away and": [0, 65535], "left away and weeping": [0, 65535], "away and weeping die": [0, 65535], "and weeping die luci": [0, 65535], "weeping die luci how": [0, 65535], "die luci how manie": [0, 65535], "luci how manie fond": [0, 65535], "how manie fond fooles": [0, 65535], "manie fond fooles serue": [0, 65535], "fond fooles serue mad": [0, 65535], "fooles serue mad ielousie": [0, 65535], "serue mad ielousie exit": [0, 65535], "mad ielousie exit enter": [0, 65535], "ielousie exit enter antipholis": [0, 65535], "exit enter antipholis errotis": [0, 65535], "enter antipholis errotis ant": [0, 65535], "antipholis errotis ant the": [0, 65535], "errotis ant the gold": [0, 65535], "ant the gold i": [0, 65535], "the gold i gaue": [0, 65535], "gold i gaue to": [0, 65535], "i gaue to dromio": [0, 65535], "gaue to dromio is": [0, 65535], "to dromio is laid": [0, 65535], "dromio is laid vp": [0, 65535], "is laid vp safe": [0, 65535], "laid vp safe at": [0, 65535], "vp safe at the": [0, 65535], "safe at the centaur": [0, 65535], "at the centaur and": [0, 65535], "the centaur and the": [0, 65535], "centaur and the heedfull": [0, 65535], "and the heedfull slaue": [0, 65535], "the heedfull slaue is": [0, 65535], "heedfull slaue is wandred": [0, 65535], "slaue is wandred forth": [0, 65535], "is wandred forth in": [0, 65535], "wandred forth in care": [0, 65535], "forth in care to": [0, 65535], "in care to seeke": [0, 65535], "care to seeke me": [0, 65535], "to seeke me out": [0, 65535], "seeke me out by": [0, 65535], "me out by computation": [0, 65535], "out by computation and": [0, 65535], "by computation and mine": [0, 65535], "computation and mine hosts": [0, 65535], "and mine hosts report": [0, 65535], "mine hosts report i": [0, 65535], "hosts report i could": [0, 65535], "report i could not": [0, 65535], "i could not speake": [0, 65535], "could not speake with": [0, 65535], "not speake with dromio": [0, 65535], "speake with dromio since": [0, 65535], "with dromio since at": [0, 65535], "dromio since at first": [0, 65535], "since at first i": [0, 65535], "at first i sent": [0, 65535], "first i sent him": [0, 65535], "i sent him from": [0, 65535], "sent him from the": [0, 65535], "him from the mart": [0, 65535], "from the mart see": [0, 65535], "the mart see here": [0, 65535], "mart see here he": [0, 65535], "see here he comes": [0, 65535], "here he comes enter": [0, 65535], "he comes enter dromio": [0, 65535], "comes enter dromio siracusia": [0, 65535], "enter dromio siracusia how": [0, 65535], "dromio siracusia how now": [0, 65535], "siracusia how now sir": [0, 65535], "how now sir is": [0, 65535], "now sir is your": [0, 65535], "sir is your merrie": [0, 65535], "is your merrie humor": [0, 65535], "your merrie humor alter'd": [0, 65535], "merrie humor alter'd as": [0, 65535], "humor alter'd as you": [0, 65535], "alter'd as you loue": [0, 65535], "as you loue stroakes": [0, 65535], "you loue stroakes so": [0, 65535], "loue stroakes so iest": [0, 65535], "stroakes so iest with": [0, 65535], "so iest with me": [0, 65535], "iest with me againe": [0, 65535], "with me againe you": [0, 65535], "me againe you know": [0, 65535], "againe you know no": [0, 65535], "you know no centaur": [0, 65535], "know no centaur you": [0, 65535], "no centaur you receiu'd": [0, 65535], "centaur you receiu'd no": [0, 65535], "you receiu'd no gold": [0, 65535], "receiu'd no gold your": [0, 65535], "no gold your mistresse": [0, 65535], "gold your mistresse sent": [0, 65535], "your mistresse sent to": [0, 65535], "mistresse sent to haue": [0, 65535], "sent to haue me": [0, 65535], "to haue me home": [0, 65535], "haue me home to": [0, 65535], "me home to dinner": [0, 65535], "home to dinner my": [0, 65535], "to dinner my house": [0, 65535], "dinner my house was": [0, 65535], "my house was at": [0, 65535], "house was at the": [0, 65535], "was at the ph\u0153nix": [0, 65535], "at the ph\u0153nix wast": [0, 65535], "the ph\u0153nix wast thou": [0, 65535], "ph\u0153nix wast thou mad": [0, 65535], "wast thou mad that": [0, 65535], "thou mad that thus": [0, 65535], "mad that thus so": [0, 65535], "that thus so madlie": [0, 65535], "thus so madlie thou": [0, 65535], "so madlie thou did": [0, 65535], "madlie thou did didst": [0, 65535], "thou did didst answere": [0, 65535], "did didst answere me": [0, 65535], "didst answere me s": [0, 65535], "answere me s dro": [0, 65535], "me s dro what": [0, 65535], "s dro what answer": [0, 65535], "dro what answer sir": [0, 65535], "what answer sir when": [0, 65535], "answer sir when spake": [0, 65535], "sir when spake i": [0, 65535], "when spake i such": [0, 65535], "spake i such a": [0, 65535], "i such a word": [0, 65535], "such a word e": [0, 65535], "a word e ant": [0, 65535], "word e ant euen": [0, 65535], "e ant euen now": [0, 65535], "ant euen now euen": [0, 65535], "euen now euen here": [0, 65535], "now euen here not": [0, 65535], "euen here not halfe": [0, 65535], "here not halfe an": [0, 65535], "not halfe an howre": [0, 65535], "halfe an howre since": [0, 65535], "an howre since s": [0, 65535], "howre since s dro": [0, 65535], "since s dro i": [0, 65535], "s dro i did": [0, 65535], "dro i did not": [0, 65535], "i did not see": [0, 65535], "did not see you": [0, 65535], "not see you since": [0, 65535], "see you since you": [0, 65535], "you since you sent": [0, 65535], "since you sent me": [0, 65535], "you sent me hence": [0, 65535], "sent me hence home": [0, 65535], "me hence home to": [0, 65535], "hence home to the": [0, 65535], "home to the centaur": [0, 65535], "to the centaur with": [0, 65535], "the centaur with the": [0, 65535], "centaur with the gold": [0, 65535], "with the gold you": [0, 65535], "the gold you gaue": [0, 65535], "gold you gaue me": [0, 65535], "you gaue me ant": [0, 65535], "gaue me ant villaine": [0, 65535], "me ant villaine thou": [0, 65535], "ant villaine thou didst": [0, 65535], "villaine thou didst denie": [0, 65535], "thou didst denie the": [0, 65535], "didst denie the golds": [0, 65535], "denie the golds receit": [0, 65535], "the golds receit and": [0, 65535], "golds receit and toldst": [0, 65535], "receit and toldst me": [0, 65535], "and toldst me of": [0, 65535], "toldst me of a": [0, 65535], "me of a mistresse": [0, 65535], "of a mistresse and": [0, 65535], "a mistresse and a": [0, 65535], "mistresse and a dinner": [0, 65535], "and a dinner for": [0, 65535], "a dinner for which": [0, 65535], "dinner for which i": [0, 65535], "for which i hope": [0, 65535], "which i hope thou": [0, 65535], "i hope thou feltst": [0, 65535], "hope thou feltst i": [0, 65535], "thou feltst i was": [0, 65535], "feltst i was displeas'd": [0, 65535], "i was displeas'd s": [0, 65535], "was displeas'd s dro": [0, 65535], "displeas'd s dro i": [0, 65535], "s dro i am": [0, 65535], "dro i am glad": [0, 65535], "i am glad to": [0, 65535], "am glad to see": [0, 65535], "glad to see you": [0, 65535], "to see you in": [0, 65535], "see you in this": [0, 65535], "you in this merrie": [0, 65535], "in this merrie vaine": [0, 65535], "this merrie vaine what": [0, 65535], "merrie vaine what meanes": [0, 65535], "vaine what meanes this": [0, 65535], "what meanes this iest": [0, 65535], "meanes this iest i": [0, 65535], "this iest i pray": [0, 65535], "iest i pray you": [0, 65535], "i pray you master": [0, 65535], "pray you master tell": [0, 65535], "you master tell me": [0, 65535], "master tell me ant": [0, 65535], "tell me ant yea": [0, 65535], "me ant yea dost": [0, 65535], "ant yea dost thou": [0, 65535], "yea dost thou ieere": [0, 65535], "dost thou ieere flowt": [0, 65535], "thou ieere flowt me": [0, 65535], "ieere flowt me in": [0, 65535], "flowt me in the": [0, 65535], "me in the teeth": [0, 65535], "in the teeth thinkst": [0, 65535], "the teeth thinkst thou": [0, 65535], "teeth thinkst thou i": [0, 65535], "thinkst thou i iest": [0, 65535], "thou i iest hold": [0, 65535], "i iest hold take": [0, 65535], "iest hold take thou": [0, 65535], "hold take thou that": [0, 65535], "take thou that that": [0, 65535], "thou that that beats": [0, 65535], "that that beats dro": [0, 65535], "that beats dro s": [0, 65535], "beats dro s dr": [0, 65535], "dro s dr hold": [0, 65535], "s dr hold sir": [0, 65535], "dr hold sir for": [0, 65535], "hold sir for gods": [0, 65535], "sir for gods sake": [0, 65535], "for gods sake now": [0, 65535], "gods sake now your": [0, 65535], "sake now your iest": [0, 65535], "now your iest is": [0, 65535], "your iest is earnest": [0, 65535], "iest is earnest vpon": [0, 65535], "is earnest vpon what": [0, 65535], "earnest vpon what bargaine": [0, 65535], "vpon what bargaine do": [0, 65535], "what bargaine do you": [0, 65535], "bargaine do you giue": [0, 65535], "do you giue it": [0, 65535], "you giue it me": [0, 65535], "giue it me antiph": [0, 65535], "it me antiph because": [0, 65535], "me antiph because that": [0, 65535], "antiph because that i": [0, 65535], "because that i familiarlie": [0, 65535], "that i familiarlie sometimes": [0, 65535], "i familiarlie sometimes doe": [0, 65535], "familiarlie sometimes doe vse": [0, 65535], "sometimes doe vse you": [0, 65535], "doe vse you for": [0, 65535], "vse you for my": [0, 65535], "you for my foole": [0, 65535], "for my foole and": [0, 65535], "my foole and chat": [0, 65535], "foole and chat with": [0, 65535], "and chat with you": [0, 65535], "chat with you your": [0, 65535], "with you your sawcinesse": [0, 65535], "you your sawcinesse will": [0, 65535], "your sawcinesse will iest": [0, 65535], "sawcinesse will iest vpon": [0, 65535], "will iest vpon my": [0, 65535], "iest vpon my loue": [0, 65535], "vpon my loue and": [0, 65535], "my loue and make": [0, 65535], "loue and make a": [0, 65535], "and make a common": [0, 65535], "make a common of": [0, 65535], "a common of my": [0, 65535], "common of my serious": [0, 65535], "of my serious howres": [0, 65535], "my serious howres when": [0, 65535], "serious howres when the": [0, 65535], "howres when the sunne": [0, 65535], "when the sunne shines": [0, 65535], "the sunne shines let": [0, 65535], "sunne shines let foolish": [0, 65535], "shines let foolish gnats": [0, 65535], "let foolish gnats make": [0, 65535], "foolish gnats make sport": [0, 65535], "gnats make sport but": [0, 65535], "make sport but creepe": [0, 65535], "sport but creepe in": [0, 65535], "but creepe in crannies": [0, 65535], "creepe in crannies when": [0, 65535], "in crannies when he": [0, 65535], "crannies when he hides": [0, 65535], "when he hides his": [0, 65535], "he hides his beames": [0, 65535], "hides his beames if": [0, 65535], "his beames if you": [0, 65535], "beames if you will": [0, 65535], "if you will iest": [0, 65535], "you will iest with": [0, 65535], "will iest with me": [0, 65535], "iest with me know": [0, 65535], "with me know my": [0, 65535], "me know my aspect": [0, 65535], "know my aspect and": [0, 65535], "my aspect and fashion": [0, 65535], "aspect and fashion your": [0, 65535], "and fashion your demeanor": [0, 65535], "fashion your demeanor to": [0, 65535], "your demeanor to my": [0, 65535], "demeanor to my lookes": [0, 65535], "to my lookes or": [0, 65535], "my lookes or i": [0, 65535], "lookes or i will": [0, 65535], "or i will beat": [0, 65535], "i will beat this": [0, 65535], "will beat this method": [0, 65535], "beat this method in": [0, 65535], "this method in your": [0, 65535], "method in your sconce": [0, 65535], "in your sconce s": [0, 65535], "your sconce s dro": [0, 65535], "sconce s dro sconce": [0, 65535], "s dro sconce call": [0, 65535], "dro sconce call you": [0, 65535], "sconce call you it": [0, 65535], "call you it so": [0, 65535], "you it so you": [0, 65535], "it so you would": [0, 65535], "so you would leaue": [0, 65535], "you would leaue battering": [0, 65535], "would leaue battering i": [0, 65535], "leaue battering i had": [0, 65535], "battering i had rather": [0, 65535], "i had rather haue": [0, 65535], "had rather haue it": [0, 65535], "rather haue it a": [0, 65535], "haue it a head": [0, 65535], "it a head and": [0, 65535], "a head and you": [0, 65535], "head and you vse": [0, 65535], "and you vse these": [0, 65535], "you vse these blows": [0, 65535], "vse these blows long": [0, 65535], "these blows long i": [0, 65535], "blows long i must": [0, 65535], "long i must get": [0, 65535], "i must get a": [0, 65535], "must get a sconce": [0, 65535], "get a sconce for": [0, 65535], "a sconce for my": [0, 65535], "sconce for my head": [0, 65535], "for my head and": [0, 65535], "my head and insconce": [0, 65535], "head and insconce it": [0, 65535], "and insconce it to": [0, 65535], "insconce it to or": [0, 65535], "it to or else": [0, 65535], "to or else i": [0, 65535], "or else i shall": [0, 65535], "else i shall seek": [0, 65535], "i shall seek my": [0, 65535], "shall seek my wit": [0, 65535], "seek my wit in": [0, 65535], "my wit in my": [0, 65535], "wit in my shoulders": [0, 65535], "in my shoulders but": [0, 65535], "my shoulders but i": [0, 65535], "shoulders but i pray": [0, 65535], "but i pray sir": [0, 65535], "i pray sir why": [0, 65535], "pray sir why am": [0, 65535], "sir why am i": [0, 65535], "why am i beaten": [0, 65535], "am i beaten ant": [0, 65535], "i beaten ant dost": [0, 65535], "beaten ant dost thou": [0, 65535], "ant dost thou not": [0, 65535], "dost thou not know": [0, 65535], "thou not know s": [0, 65535], "not know s dro": [0, 65535], "know s dro nothing": [0, 65535], "s dro nothing sir": [0, 65535], "dro nothing sir but": [0, 65535], "nothing sir but that": [0, 65535], "sir but that i": [0, 65535], "but that i am": [0, 65535], "that i am beaten": [0, 65535], "i am beaten ant": [0, 65535], "am beaten ant shall": [0, 65535], "beaten ant shall i": [0, 65535], "ant shall i tell": [0, 65535], "shall i tell you": [0, 65535], "i tell you why": [0, 65535], "tell you why s": [0, 65535], "you why s dro": [0, 65535], "why s dro i": [0, 65535], "s dro i sir": [0, 65535], "dro i sir and": [0, 65535], "i sir and wherefore": [0, 65535], "sir and wherefore for": [0, 65535], "and wherefore for they": [0, 65535], "wherefore for they say": [0, 65535], "for they say euery": [0, 65535], "they say euery why": [0, 65535], "say euery why hath": [0, 65535], "euery why hath a": [0, 65535], "why hath a wherefore": [0, 65535], "hath a wherefore ant": [0, 65535], "a wherefore ant why": [0, 65535], "wherefore ant why first": [0, 65535], "ant why first for": [0, 65535], "why first for flowting": [0, 65535], "first for flowting me": [0, 65535], "for flowting me and": [0, 65535], "flowting me and then": [0, 65535], "me and then wherefore": [0, 65535], "and then wherefore for": [0, 65535], "then wherefore for vrging": [0, 65535], "wherefore for vrging it": [0, 65535], "for vrging it the": [0, 65535], "vrging it the second": [0, 65535], "it the second time": [0, 65535], "the second time to": [0, 65535], "second time to me": [0, 65535], "time to me s": [0, 65535], "to me s dro": [0, 65535], "me s dro was": [0, 65535], "s dro was there": [0, 65535], "dro was there euer": [0, 65535], "was there euer anie": [0, 65535], "there euer anie man": [0, 65535], "euer anie man thus": [0, 65535], "anie man thus beaten": [0, 65535], "man thus beaten out": [0, 65535], "thus beaten out of": [0, 65535], "beaten out of season": [0, 65535], "out of season when": [0, 65535], "of season when in": [0, 65535], "season when in the": [0, 65535], "when in the why": [0, 65535], "in the why and": [0, 65535], "the why and the": [0, 65535], "why and the wherefore": [0, 65535], "and the wherefore is": [0, 65535], "the wherefore is neither": [0, 65535], "wherefore is neither rime": [0, 65535], "is neither rime nor": [0, 65535], "neither rime nor reason": [0, 65535], "rime nor reason well": [0, 65535], "nor reason well sir": [0, 65535], "reason well sir i": [0, 65535], "well sir i thanke": [0, 65535], "sir i thanke you": [0, 65535], "i thanke you ant": [0, 65535], "thanke you ant thanke": [0, 65535], "you ant thanke me": [0, 65535], "ant thanke me sir": [0, 65535], "thanke me sir for": [0, 65535], "me sir for what": [0, 65535], "sir for what s": [0, 65535], "for what s dro": [0, 65535], "what s dro marry": [0, 65535], "s dro marry sir": [0, 65535], "dro marry sir for": [0, 65535], "marry sir for this": [0, 65535], "sir for this something": [0, 65535], "for this something that": [0, 65535], "this something that you": [0, 65535], "something that you gaue": [0, 65535], "that you gaue me": [0, 65535], "you gaue me for": [0, 65535], "gaue me for nothing": [0, 65535], "me for nothing ant": [0, 65535], "for nothing ant ile": [0, 65535], "nothing ant ile make": [0, 65535], "ant ile make you": [0, 65535], "ile make you amends": [0, 65535], "make you amends next": [0, 65535], "you amends next to": [0, 65535], "amends next to giue": [0, 65535], "next to giue you": [0, 65535], "to giue you nothing": [0, 65535], "giue you nothing for": [0, 65535], "you nothing for something": [0, 65535], "nothing for something but": [0, 65535], "for something but say": [0, 65535], "something but say sir": [0, 65535], "but say sir is": [0, 65535], "say sir is it": [0, 65535], "sir is it dinner": [0, 65535], "is it dinner time": [0, 65535], "it dinner time s": [0, 65535], "dinner time s dro": [0, 65535], "time s dro no": [0, 65535], "s dro no sir": [0, 65535], "dro no sir i": [0, 65535], "no sir i thinke": [0, 65535], "sir i thinke the": [0, 65535], "i thinke the meat": [0, 65535], "thinke the meat wants": [0, 65535], "the meat wants that": [0, 65535], "meat wants that i": [0, 65535], "wants that i haue": [0, 65535], "that i haue ant": [0, 65535], "i haue ant in": [0, 65535], "haue ant in good": [0, 65535], "ant in good time": [0, 65535], "in good time sir": [0, 65535], "good time sir what's": [0, 65535], "time sir what's that": [0, 65535], "sir what's that s": [0, 65535], "what's that s dro": [0, 65535], "that s dro basting": [0, 65535], "s dro basting ant": [0, 65535], "dro basting ant well": [0, 65535], "basting ant well sir": [0, 65535], "ant well sir then": [0, 65535], "well sir then 'twill": [0, 65535], "sir then 'twill be": [0, 65535], "then 'twill be drie": [0, 65535], "'twill be drie s": [0, 65535], "be drie s dro": [0, 65535], "drie s dro if": [0, 65535], "s dro if it": [0, 65535], "dro if it be": [0, 65535], "if it be sir": [0, 65535], "it be sir i": [0, 65535], "be sir i pray": [0, 65535], "sir i pray you": [0, 65535], "i pray you eat": [0, 65535], "pray you eat none": [0, 65535], "you eat none of": [0, 65535], "eat none of it": [0, 65535], "none of it ant": [0, 65535], "of it ant your": [0, 65535], "it ant your reason": [0, 65535], "ant your reason s": [0, 65535], "your reason s dro": [0, 65535], "reason s dro lest": [0, 65535], "s dro lest it": [0, 65535], "dro lest it make": [0, 65535], "lest it make you": [0, 65535], "it make you chollericke": [0, 65535], "make you chollericke and": [0, 65535], "you chollericke and purchase": [0, 65535], "chollericke and purchase me": [0, 65535], "and purchase me another": [0, 65535], "purchase me another drie": [0, 65535], "me another drie basting": [0, 65535], "another drie basting ant": [0, 65535], "drie basting ant well": [0, 65535], "ant well sir learne": [0, 65535], "well sir learne to": [0, 65535], "sir learne to iest": [0, 65535], "learne to iest in": [0, 65535], "to iest in good": [0, 65535], "iest in good time": [0, 65535], "in good time there's": [0, 65535], "good time there's a": [0, 65535], "time there's a time": [0, 65535], "there's a time for": [0, 65535], "a time for all": [0, 65535], "time for all things": [0, 65535], "for all things s": [0, 65535], "all things s dro": [0, 65535], "things s dro i": [0, 65535], "s dro i durst": [0, 65535], "dro i durst haue": [0, 65535], "i durst haue denied": [0, 65535], "durst haue denied that": [0, 65535], "haue denied that before": [0, 65535], "denied that before you": [0, 65535], "that before you were": [0, 65535], "before you were so": [0, 65535], "you were so chollericke": [0, 65535], "were so chollericke anti": [0, 65535], "so chollericke anti by": [0, 65535], "chollericke anti by what": [0, 65535], "anti by what rule": [0, 65535], "by what rule sir": [0, 65535], "what rule sir s": [0, 65535], "rule sir s dro": [0, 65535], "sir s dro marry": [0, 65535], "dro marry sir by": [0, 65535], "marry sir by a": [0, 65535], "sir by a rule": [0, 65535], "by a rule as": [0, 65535], "a rule as plaine": [0, 65535], "rule as plaine as": [0, 65535], "as plaine as the": [0, 65535], "plaine as the plaine": [0, 65535], "as the plaine bald": [0, 65535], "the plaine bald pate": [0, 65535], "plaine bald pate of": [0, 65535], "bald pate of father": [0, 65535], "pate of father time": [0, 65535], "of father time himselfe": [0, 65535], "father time himselfe ant": [0, 65535], "time himselfe ant let's": [0, 65535], "himselfe ant let's heare": [0, 65535], "ant let's heare it": [0, 65535], "let's heare it s": [0, 65535], "heare it s dro": [0, 65535], "it s dro there's": [0, 65535], "s dro there's no": [0, 65535], "dro there's no time": [0, 65535], "there's no time for": [0, 65535], "no time for a": [0, 65535], "time for a man": [0, 65535], "for a man to": [0, 65535], "a man to recouer": [0, 65535], "man to recouer his": [0, 65535], "to recouer his haire": [0, 65535], "recouer his haire that": [0, 65535], "his haire that growes": [0, 65535], "haire that growes bald": [0, 65535], "that growes bald by": [0, 65535], "growes bald by nature": [0, 65535], "bald by nature ant": [0, 65535], "by nature ant may": [0, 65535], "nature ant may he": [0, 65535], "ant may he not": [0, 65535], "may he not doe": [0, 65535], "he not doe it": [0, 65535], "not doe it by": [0, 65535], "doe it by fine": [0, 65535], "it by fine and": [0, 65535], "by fine and recouerie": [0, 65535], "fine and recouerie s": [0, 65535], "and recouerie s dro": [0, 65535], "recouerie s dro yes": [0, 65535], "s dro yes to": [0, 65535], "dro yes to pay": [0, 65535], "yes to pay a": [0, 65535], "to pay a fine": [0, 65535], "pay a fine for": [0, 65535], "a fine for a": [0, 65535], "fine for a perewig": [0, 65535], "for a perewig and": [0, 65535], "a perewig and recouer": [0, 65535], "perewig and recouer the": [0, 65535], "and recouer the lost": [0, 65535], "recouer the lost haire": [0, 65535], "the lost haire of": [0, 65535], "lost haire of another": [0, 65535], "haire of another man": [0, 65535], "of another man ant": [0, 65535], "another man ant why": [0, 65535], "man ant why is": [0, 65535], "ant why is time": [0, 65535], "why is time such": [0, 65535], "is time such a": [0, 65535], "time such a niggard": [0, 65535], "such a niggard of": [0, 65535], "a niggard of haire": [0, 65535], "niggard of haire being": [0, 65535], "of haire being as": [0, 65535], "haire being as it": [0, 65535], "being as it is": [0, 65535], "as it is so": [0, 65535], "it is so plentifull": [0, 65535], "is so plentifull an": [0, 65535], "so plentifull an excrement": [0, 65535], "plentifull an excrement s": [0, 65535], "an excrement s dro": [0, 65535], "excrement s dro because": [0, 65535], "s dro because it": [0, 65535], "dro because it is": [0, 65535], "because it is a": [0, 65535], "it is a blessing": [0, 65535], "is a blessing that": [0, 65535], "a blessing that hee": [0, 65535], "blessing that hee bestowes": [0, 65535], "that hee bestowes on": [0, 65535], "hee bestowes on beasts": [0, 65535], "bestowes on beasts and": [0, 65535], "on beasts and what": [0, 65535], "beasts and what he": [0, 65535], "and what he hath": [0, 65535], "what he hath scanted": [0, 65535], "he hath scanted them": [0, 65535], "hath scanted them in": [0, 65535], "scanted them in haire": [0, 65535], "them in haire hee": [0, 65535], "in haire hee hath": [0, 65535], "haire hee hath giuen": [0, 65535], "hee hath giuen them": [0, 65535], "hath giuen them in": [0, 65535], "giuen them in wit": [0, 65535], "them in wit ant": [0, 65535], "in wit ant why": [0, 65535], "wit ant why but": [0, 65535], "ant why but theres": [0, 65535], "why but theres manie": [0, 65535], "but theres manie a": [0, 65535], "theres manie a man": [0, 65535], "manie a man hath": [0, 65535], "a man hath more": [0, 65535], "man hath more haire": [0, 65535], "hath more haire then": [0, 65535], "more haire then wit": [0, 65535], "haire then wit s": [0, 65535], "then wit s dro": [0, 65535], "wit s dro not": [0, 65535], "s dro not a": [0, 65535], "dro not a man": [0, 65535], "not a man of": [0, 65535], "a man of those": [0, 65535], "man of those but": [0, 65535], "of those but he": [0, 65535], "those but he hath": [0, 65535], "but he hath the": [0, 65535], "he hath the wit": [0, 65535], "hath the wit to": [0, 65535], "the wit to lose": [0, 65535], "wit to lose his": [0, 65535], "to lose his haire": [0, 65535], "lose his haire ant": [0, 65535], "his haire ant why": [0, 65535], "haire ant why thou": [0, 65535], "ant why thou didst": [0, 65535], "why thou didst conclude": [0, 65535], "thou didst conclude hairy": [0, 65535], "didst conclude hairy men": [0, 65535], "conclude hairy men plain": [0, 65535], "hairy men plain dealers": [0, 65535], "men plain dealers without": [0, 65535], "plain dealers without wit": [0, 65535], "dealers without wit s": [0, 65535], "without wit s dro": [0, 65535], "wit s dro the": [0, 65535], "s dro the plainer": [0, 65535], "dro the plainer dealer": [0, 65535], "the plainer dealer the": [0, 65535], "plainer dealer the sooner": [0, 65535], "dealer the sooner lost": [0, 65535], "the sooner lost yet": [0, 65535], "sooner lost yet he": [0, 65535], "lost yet he looseth": [0, 65535], "yet he looseth it": [0, 65535], "he looseth it in": [0, 65535], "looseth it in a": [0, 65535], "it in a kinde": [0, 65535], "in a kinde of": [0, 65535], "a kinde of iollitie": [0, 65535], "kinde of iollitie an": [0, 65535], "of iollitie an for": [0, 65535], "iollitie an for what": [0, 65535], "an for what reason": [0, 65535], "for what reason s": [0, 65535], "what reason s dro": [0, 65535], "reason s dro for": [0, 65535], "s dro for two": [0, 65535], "dro for two and": [0, 65535], "for two and sound": [0, 65535], "two and sound ones": [0, 65535], "and sound ones to": [0, 65535], "sound ones to an": [0, 65535], "ones to an nay": [0, 65535], "to an nay not": [0, 65535], "an nay not sound": [0, 65535], "nay not sound i": [0, 65535], "not sound i pray": [0, 65535], "sound i pray you": [0, 65535], "i pray you s": [0, 65535], "pray you s dro": [0, 65535], "you s dro sure": [0, 65535], "s dro sure ones": [0, 65535], "dro sure ones then": [0, 65535], "sure ones then an": [0, 65535], "ones then an nay": [0, 65535], "then an nay not": [0, 65535], "an nay not sure": [0, 65535], "nay not sure in": [0, 65535], "not sure in a": [0, 65535], "sure in a thing": [0, 65535], "in a thing falsing": [0, 65535], "a thing falsing s": [0, 65535], "thing falsing s dro": [0, 65535], "falsing s dro certaine": [0, 65535], "s dro certaine ones": [0, 65535], "dro certaine ones then": [0, 65535], "certaine ones then an": [0, 65535], "ones then an name": [0, 65535], "then an name them": [0, 65535], "an name them s": [0, 65535], "name them s dro": [0, 65535], "them s dro the": [0, 65535], "s dro the one": [0, 65535], "dro the one to": [0, 65535], "the one to saue": [0, 65535], "one to saue the": [0, 65535], "to saue the money": [0, 65535], "saue the money that": [0, 65535], "the money that he": [0, 65535], "money that he spends": [0, 65535], "that he spends in": [0, 65535], "he spends in trying": [0, 65535], "spends in trying the": [0, 65535], "in trying the other": [0, 65535], "trying the other that": [0, 65535], "the other that at": [0, 65535], "other that at dinner": [0, 65535], "that at dinner they": [0, 65535], "at dinner they should": [0, 65535], "dinner they should not": [0, 65535], "they should not drop": [0, 65535], "should not drop in": [0, 65535], "not drop in his": [0, 65535], "drop in his porrage": [0, 65535], "in his porrage an": [0, 65535], "his porrage an you": [0, 65535], "porrage an you would": [0, 65535], "an you would all": [0, 65535], "you would all this": [0, 65535], "would all this time": [0, 65535], "all this time haue": [0, 65535], "this time haue prou'd": [0, 65535], "time haue prou'd there": [0, 65535], "haue prou'd there is": [0, 65535], "prou'd there is no": [0, 65535], "there is no time": [0, 65535], "is no time for": [0, 65535], "no time for all": [0, 65535], "things s dro marry": [0, 65535], "s dro marry and": [0, 65535], "dro marry and did": [0, 65535], "marry and did sir": [0, 65535], "and did sir namely": [0, 65535], "did sir namely in": [0, 65535], "sir namely in no": [0, 65535], "namely in no time": [0, 65535], "in no time to": [0, 65535], "no time to recouer": [0, 65535], "time to recouer haire": [0, 65535], "to recouer haire lost": [0, 65535], "recouer haire lost by": [0, 65535], "haire lost by nature": [0, 65535], "lost by nature an": [0, 65535], "by nature an but": [0, 65535], "nature an but your": [0, 65535], "an but your reason": [0, 65535], "but your reason was": [0, 65535], "your reason was not": [0, 65535], "reason was not substantiall": [0, 65535], "was not substantiall why": [0, 65535], "not substantiall why there": [0, 65535], "substantiall why there is": [0, 65535], "why there is no": [0, 65535], "is no time to": [0, 65535], "time to recouer s": [0, 65535], "to recouer s dro": [0, 65535], "recouer s dro thus": [0, 65535], "s dro thus i": [0, 65535], "dro thus i mend": [0, 65535], "thus i mend it": [0, 65535], "i mend it time": [0, 65535], "mend it time himselfe": [0, 65535], "it time himselfe is": [0, 65535], "time himselfe is bald": [0, 65535], "himselfe is bald and": [0, 65535], "is bald and therefore": [0, 65535], "bald and therefore to": [0, 65535], "and therefore to the": [0, 65535], "therefore to the worlds": [0, 65535], "to the worlds end": [0, 65535], "the worlds end will": [0, 65535], "worlds end will haue": [0, 65535], "end will haue bald": [0, 65535], "will haue bald followers": [0, 65535], "haue bald followers an": [0, 65535], "bald followers an i": [0, 65535], "followers an i knew": [0, 65535], "an i knew 'twould": [0, 65535], "i knew 'twould be": [0, 65535], "knew 'twould be a": [0, 65535], "'twould be a bald": [0, 65535], "be a bald conclusion": [0, 65535], "a bald conclusion but": [0, 65535], "bald conclusion but soft": [0, 65535], "conclusion but soft who": [0, 65535], "but soft who wafts": [0, 65535], "soft who wafts vs": [0, 65535], "who wafts vs yonder": [0, 65535], "wafts vs yonder enter": [0, 65535], "vs yonder enter adriana": [0, 65535], "yonder enter adriana and": [0, 65535], "enter adriana and luciana": [0, 65535], "adriana and luciana adri": [0, 65535], "and luciana adri i": [0, 65535], "luciana adri i i": [0, 65535], "adri i i antipholus": [0, 65535], "i i antipholus looke": [0, 65535], "i antipholus looke strange": [0, 65535], "antipholus looke strange and": [0, 65535], "looke strange and frowne": [0, 65535], "strange and frowne some": [0, 65535], "and frowne some other": [0, 65535], "frowne some other mistresse": [0, 65535], "some other mistresse hath": [0, 65535], "other mistresse hath thy": [0, 65535], "mistresse hath thy sweet": [0, 65535], "hath thy sweet aspects": [0, 65535], "thy sweet aspects i": [0, 65535], "sweet aspects i am": [0, 65535], "aspects i am not": [0, 65535], "i am not adriana": [0, 65535], "am not adriana nor": [0, 65535], "not adriana nor thy": [0, 65535], "adriana nor thy wife": [0, 65535], "nor thy wife the": [0, 65535], "thy wife the time": [0, 65535], "wife the time was": [0, 65535], "the time was once": [0, 65535], "time was once when": [0, 65535], "was once when thou": [0, 65535], "once when thou vn": [0, 65535], "when thou vn vrg'd": [0, 65535], "thou vn vrg'd wouldst": [0, 65535], "vn vrg'd wouldst vow": [0, 65535], "vrg'd wouldst vow that": [0, 65535], "wouldst vow that neuer": [0, 65535], "vow that neuer words": [0, 65535], "that neuer words were": [0, 65535], "neuer words were musicke": [0, 65535], "words were musicke to": [0, 65535], "were musicke to thine": [0, 65535], "musicke to thine eare": [0, 65535], "to thine eare that": [0, 65535], "thine eare that neuer": [0, 65535], "eare that neuer obiect": [0, 65535], "that neuer obiect pleasing": [0, 65535], "neuer obiect pleasing in": [0, 65535], "obiect pleasing in thine": [0, 65535], "pleasing in thine eye": [0, 65535], "in thine eye that": [0, 65535], "thine eye that neuer": [0, 65535], "eye that neuer touch": [0, 65535], "that neuer touch well": [0, 65535], "neuer touch well welcome": [0, 65535], "touch well welcome to": [0, 65535], "well welcome to thy": [0, 65535], "welcome to thy hand": [0, 65535], "to thy hand that": [0, 65535], "thy hand that neuer": [0, 65535], "hand that neuer meat": [0, 65535], "that neuer meat sweet": [0, 65535], "neuer meat sweet sauour'd": [0, 65535], "meat sweet sauour'd in": [0, 65535], "sweet sauour'd in thy": [0, 65535], "sauour'd in thy taste": [0, 65535], "in thy taste vnlesse": [0, 65535], "thy taste vnlesse i": [0, 65535], "taste vnlesse i spake": [0, 65535], "vnlesse i spake or": [0, 65535], "i spake or look'd": [0, 65535], "spake or look'd or": [0, 65535], "or look'd or touch'd": [0, 65535], "look'd or touch'd or": [0, 65535], "or touch'd or caru'd": [0, 65535], "touch'd or caru'd to": [0, 65535], "or caru'd to thee": [0, 65535], "caru'd to thee how": [0, 65535], "to thee how comes": [0, 65535], "thee how comes it": [0, 65535], "how comes it now": [0, 65535], "comes it now my": [0, 65535], "it now my husband": [0, 65535], "now my husband oh": [0, 65535], "my husband oh how": [0, 65535], "husband oh how comes": [0, 65535], "oh how comes it": [0, 65535], "how comes it that": [0, 65535], "comes it that thou": [0, 65535], "it that thou art": [0, 65535], "that thou art then": [0, 65535], "thou art then estranged": [0, 65535], "art then estranged from": [0, 65535], "then estranged from thy": [0, 65535], "estranged from thy selfe": [0, 65535], "from thy selfe thy": [0, 65535], "thy selfe thy selfe": [0, 65535], "selfe thy selfe i": [0, 65535], "thy selfe i call": [0, 65535], "selfe i call it": [0, 65535], "i call it being": [0, 65535], "call it being strange": [0, 65535], "it being strange to": [0, 65535], "being strange to me": [0, 65535], "strange to me that": [0, 65535], "to me that vndiuidable": [0, 65535], "me that vndiuidable incorporate": [0, 65535], "that vndiuidable incorporate am": [0, 65535], "vndiuidable incorporate am better": [0, 65535], "incorporate am better then": [0, 65535], "am better then thy": [0, 65535], "better then thy deere": [0, 65535], "then thy deere selfes": [0, 65535], "thy deere selfes better": [0, 65535], "deere selfes better part": [0, 65535], "selfes better part ah": [0, 65535], "better part ah doe": [0, 65535], "part ah doe not": [0, 65535], "ah doe not teare": [0, 65535], "doe not teare away": [0, 65535], "not teare away thy": [0, 65535], "teare away thy selfe": [0, 65535], "away thy selfe from": [0, 65535], "thy selfe from me": [0, 65535], "selfe from me for": [0, 65535], "from me for know": [0, 65535], "me for know my": [0, 65535], "for know my loue": [0, 65535], "know my loue as": [0, 65535], "my loue as easie": [0, 65535], "loue as easie maist": [0, 65535], "as easie maist thou": [0, 65535], "easie maist thou fall": [0, 65535], "maist thou fall a": [0, 65535], "thou fall a drop": [0, 65535], "fall a drop of": [0, 65535], "a drop of water": [0, 65535], "drop of water in": [0, 65535], "of water in the": [0, 65535], "water in the breaking": [0, 65535], "in the breaking gulfe": [0, 65535], "the breaking gulfe and": [0, 65535], "breaking gulfe and take": [0, 65535], "gulfe and take vnmingled": [0, 65535], "and take vnmingled thence": [0, 65535], "take vnmingled thence that": [0, 65535], "vnmingled thence that drop": [0, 65535], "thence that drop againe": [0, 65535], "that drop againe without": [0, 65535], "drop againe without addition": [0, 65535], "againe without addition or": [0, 65535], "without addition or diminishing": [0, 65535], "addition or diminishing as": [0, 65535], "or diminishing as take": [0, 65535], "diminishing as take from": [0, 65535], "as take from me": [0, 65535], "take from me thy": [0, 65535], "from me thy selfe": [0, 65535], "me thy selfe and": [0, 65535], "thy selfe and not": [0, 65535], "selfe and not me": [0, 65535], "and not me too": [0, 65535], "not me too how": [0, 65535], "me too how deerely": [0, 65535], "too how deerely would": [0, 65535], "how deerely would it": [0, 65535], "deerely would it touch": [0, 65535], "would it touch thee": [0, 65535], "it touch thee to": [0, 65535], "touch thee to the": [0, 65535], "thee to the quicke": [0, 65535], "to the quicke shouldst": [0, 65535], "the quicke shouldst thou": [0, 65535], "quicke shouldst thou but": [0, 65535], "shouldst thou but heare": [0, 65535], "thou but heare i": [0, 65535], "but heare i were": [0, 65535], "heare i were licencious": [0, 65535], "i were licencious and": [0, 65535], "were licencious and that": [0, 65535], "licencious and that this": [0, 65535], "and that this body": [0, 65535], "that this body consecrate": [0, 65535], "this body consecrate to": [0, 65535], "body consecrate to thee": [0, 65535], "consecrate to thee by": [0, 65535], "to thee by ruffian": [0, 65535], "thee by ruffian lust": [0, 65535], "by ruffian lust should": [0, 65535], "ruffian lust should be": [0, 65535], "lust should be contaminate": [0, 65535], "should be contaminate wouldst": [0, 65535], "be contaminate wouldst thou": [0, 65535], "contaminate wouldst thou not": [0, 65535], "wouldst thou not spit": [0, 65535], "thou not spit at": [0, 65535], "not spit at me": [0, 65535], "spit at me and": [0, 65535], "at me and spurne": [0, 65535], "me and spurne at": [0, 65535], "and spurne at me": [0, 65535], "spurne at me and": [0, 65535], "at me and hurle": [0, 65535], "me and hurle the": [0, 65535], "and hurle the name": [0, 65535], "hurle the name of": [0, 65535], "the name of husband": [0, 65535], "name of husband in": [0, 65535], "of husband in my": [0, 65535], "husband in my face": [0, 65535], "in my face and": [0, 65535], "my face and teare": [0, 65535], "face and teare the": [0, 65535], "and teare the stain'd": [0, 65535], "teare the stain'd skin": [0, 65535], "the stain'd skin of": [0, 65535], "stain'd skin of my": [0, 65535], "skin of my harlot": [0, 65535], "of my harlot brow": [0, 65535], "my harlot brow and": [0, 65535], "harlot brow and from": [0, 65535], "brow and from my": [0, 65535], "and from my false": [0, 65535], "from my false hand": [0, 65535], "my false hand cut": [0, 65535], "false hand cut the": [0, 65535], "hand cut the wedding": [0, 65535], "cut the wedding ring": [0, 65535], "the wedding ring and": [0, 65535], "wedding ring and breake": [0, 65535], "ring and breake it": [0, 65535], "and breake it with": [0, 65535], "breake it with a": [0, 65535], "it with a deepe": [0, 65535], "with a deepe diuorcing": [0, 65535], "a deepe diuorcing vow": [0, 65535], "deepe diuorcing vow i": [0, 65535], "diuorcing vow i know": [0, 65535], "vow i know thou": [0, 65535], "i know thou canst": [0, 65535], "know thou canst and": [0, 65535], "thou canst and therefore": [0, 65535], "canst and therefore see": [0, 65535], "and therefore see thou": [0, 65535], "therefore see thou doe": [0, 65535], "see thou doe it": [0, 65535], "thou doe it i": [0, 65535], "doe it i am": [0, 65535], "it i am possest": [0, 65535], "i am possest with": [0, 65535], "am possest with an": [0, 65535], "possest with an adulterate": [0, 65535], "with an adulterate blot": [0, 65535], "an adulterate blot my": [0, 65535], "adulterate blot my bloud": [0, 65535], "blot my bloud is": [0, 65535], "my bloud is mingled": [0, 65535], "bloud is mingled with": [0, 65535], "is mingled with the": [0, 65535], "mingled with the crime": [0, 65535], "with the crime of": [0, 65535], "the crime of lust": [0, 65535], "crime of lust for": [0, 65535], "of lust for if": [0, 65535], "lust for if we": [0, 65535], "for if we two": [0, 65535], "if we two be": [0, 65535], "we two be one": [0, 65535], "two be one and": [0, 65535], "be one and thou": [0, 65535], "one and thou play": [0, 65535], "and thou play false": [0, 65535], "thou play false i": [0, 65535], "play false i doe": [0, 65535], "false i doe digest": [0, 65535], "i doe digest the": [0, 65535], "doe digest the poison": [0, 65535], "digest the poison of": [0, 65535], "the poison of thy": [0, 65535], "poison of thy flesh": [0, 65535], "of thy flesh being": [0, 65535], "thy flesh being strumpeted": [0, 65535], "flesh being strumpeted by": [0, 65535], "being strumpeted by thy": [0, 65535], "strumpeted by thy contagion": [0, 65535], "by thy contagion keepe": [0, 65535], "thy contagion keepe then": [0, 65535], "contagion keepe then faire": [0, 65535], "keepe then faire league": [0, 65535], "then faire league and": [0, 65535], "faire league and truce": [0, 65535], "league and truce with": [0, 65535], "and truce with thy": [0, 65535], "truce with thy true": [0, 65535], "with thy true bed": [0, 65535], "thy true bed i": [0, 65535], "true bed i liue": [0, 65535], "bed i liue distain'd": [0, 65535], "i liue distain'd thou": [0, 65535], "liue distain'd thou vndishonoured": [0, 65535], "distain'd thou vndishonoured antip": [0, 65535], "thou vndishonoured antip plead": [0, 65535], "vndishonoured antip plead you": [0, 65535], "antip plead you to": [0, 65535], "plead you to me": [0, 65535], "you to me faire": [0, 65535], "to me faire dame": [0, 65535], "me faire dame i": [0, 65535], "faire dame i know": [0, 65535], "dame i know you": [0, 65535], "i know you not": [0, 65535], "know you not in": [0, 65535], "you not in ephesus": [0, 65535], "not in ephesus i": [0, 65535], "in ephesus i am": [0, 65535], "ephesus i am but": [0, 65535], "i am but two": [0, 65535], "am but two houres": [0, 65535], "but two houres old": [0, 65535], "two houres old as": [0, 65535], "houres old as strange": [0, 65535], "old as strange vnto": [0, 65535], "as strange vnto your": [0, 65535], "strange vnto your towne": [0, 65535], "vnto your towne as": [0, 65535], "your towne as to": [0, 65535], "towne as to your": [0, 65535], "as to your talke": [0, 65535], "to your talke who": [0, 65535], "your talke who euery": [0, 65535], "talke who euery word": [0, 65535], "who euery word by": [0, 65535], "euery word by all": [0, 65535], "word by all my": [0, 65535], "by all my wit": [0, 65535], "all my wit being": [0, 65535], "my wit being scan'd": [0, 65535], "wit being scan'd wants": [0, 65535], "being scan'd wants wit": [0, 65535], "scan'd wants wit in": [0, 65535], "wants wit in all": [0, 65535], "wit in all one": [0, 65535], "in all one word": [0, 65535], "all one word to": [0, 65535], "one word to vnderstand": [0, 65535], "word to vnderstand luci": [0, 65535], "to vnderstand luci fie": [0, 65535], "vnderstand luci fie brother": [0, 65535], "luci fie brother how": [0, 65535], "fie brother how the": [0, 65535], "brother how the world": [0, 65535], "how the world is": [0, 65535], "the world is chang'd": [0, 65535], "world is chang'd with": [0, 65535], "is chang'd with you": [0, 65535], "chang'd with you when": [0, 65535], "with you when were": [0, 65535], "you when were you": [0, 65535], "when were you wont": [0, 65535], "were you wont to": [0, 65535], "you wont to vse": [0, 65535], "wont to vse my": [0, 65535], "to vse my sister": [0, 65535], "vse my sister thus": [0, 65535], "my sister thus she": [0, 65535], "sister thus she sent": [0, 65535], "thus she sent for": [0, 65535], "she sent for you": [0, 65535], "sent for you by": [0, 65535], "for you by dromio": [0, 65535], "you by dromio home": [0, 65535], "by dromio home to": [0, 65535], "dromio home to dinner": [0, 65535], "home to dinner ant": [0, 65535], "to dinner ant by": [0, 65535], "dinner ant by dromio": [0, 65535], "ant by dromio drom": [0, 65535], "by dromio drom by": [0, 65535], "dromio drom by me": [0, 65535], "drom by me adr": [0, 65535], "by me adr by": [0, 65535], "me adr by thee": [0, 65535], "adr by thee and": [0, 65535], "by thee and this": [0, 65535], "thee and this thou": [0, 65535], "and this thou didst": [0, 65535], "this thou didst returne": [0, 65535], "thou didst returne from": [0, 65535], "didst returne from him": [0, 65535], "returne from him that": [0, 65535], "from him that he": [0, 65535], "him that he did": [0, 65535], "that he did buffet": [0, 65535], "he did buffet thee": [0, 65535], "did buffet thee and": [0, 65535], "buffet thee and in": [0, 65535], "thee and in his": [0, 65535], "and in his blowes": [0, 65535], "in his blowes denied": [0, 65535], "his blowes denied my": [0, 65535], "blowes denied my house": [0, 65535], "denied my house for": [0, 65535], "my house for his": [0, 65535], "house for his me": [0, 65535], "for his me for": [0, 65535], "his me for his": [0, 65535], "me for his wife": [0, 65535], "for his wife ant": [0, 65535], "his wife ant did": [0, 65535], "wife ant did you": [0, 65535], "ant did you conuerse": [0, 65535], "did you conuerse sir": [0, 65535], "you conuerse sir with": [0, 65535], "conuerse sir with this": [0, 65535], "sir with this gentlewoman": [0, 65535], "with this gentlewoman what": [0, 65535], "this gentlewoman what is": [0, 65535], "gentlewoman what is the": [0, 65535], "what is the course": [0, 65535], "is the course and": [0, 65535], "the course and drift": [0, 65535], "course and drift of": [0, 65535], "and drift of your": [0, 65535], "drift of your compact": [0, 65535], "of your compact s": [0, 65535], "your compact s dro": [0, 65535], "compact s dro i": [0, 65535], "dro i sir i": [0, 65535], "i sir i neuer": [0, 65535], "sir i neuer saw": [0, 65535], "i neuer saw her": [0, 65535], "neuer saw her till": [0, 65535], "saw her till this": [0, 65535], "her till this time": [0, 65535], "till this time ant": [0, 65535], "this time ant villaine": [0, 65535], "time ant villaine thou": [0, 65535], "ant villaine thou liest": [0, 65535], "villaine thou liest for": [0, 65535], "thou liest for euen": [0, 65535], "liest for euen her": [0, 65535], "for euen her verie": [0, 65535], "euen her verie words": [0, 65535], "her verie words didst": [0, 65535], "verie words didst thou": [0, 65535], "words didst thou deliuer": [0, 65535], "didst thou deliuer to": [0, 65535], "thou deliuer to me": [0, 65535], "deliuer to me on": [0, 65535], "to me on the": [0, 65535], "on the mart s": [0, 65535], "the mart s dro": [0, 65535], "mart s dro i": [0, 65535], "s dro i neuer": [0, 65535], "dro i neuer spake": [0, 65535], "i neuer spake with": [0, 65535], "neuer spake with her": [0, 65535], "spake with her in": [0, 65535], "with her in all": [0, 65535], "her in all my": [0, 65535], "in all my life": [0, 65535], "all my life ant": [0, 65535], "my life ant how": [0, 65535], "life ant how can": [0, 65535], "ant how can she": [0, 65535], "how can she thus": [0, 65535], "can she thus then": [0, 65535], "she thus then call": [0, 65535], "thus then call vs": [0, 65535], "then call vs by": [0, 65535], "call vs by our": [0, 65535], "vs by our names": [0, 65535], "by our names vnlesse": [0, 65535], "our names vnlesse it": [0, 65535], "names vnlesse it be": [0, 65535], "vnlesse it be by": [0, 65535], "it be by inspiration": [0, 65535], "be by inspiration adri": [0, 65535], "by inspiration adri how": [0, 65535], "inspiration adri how ill": [0, 65535], "adri how ill agrees": [0, 65535], "how ill agrees it": [0, 65535], "ill agrees it with": [0, 65535], "agrees it with your": [0, 65535], "it with your grauitie": [0, 65535], "with your grauitie to": [0, 65535], "your grauitie to counterfeit": [0, 65535], "grauitie to counterfeit thus": [0, 65535], "to counterfeit thus grosely": [0, 65535], "counterfeit thus grosely with": [0, 65535], "thus grosely with your": [0, 65535], "grosely with your slaue": [0, 65535], "with your slaue abetting": [0, 65535], "your slaue abetting him": [0, 65535], "slaue abetting him to": [0, 65535], "abetting him to thwart": [0, 65535], "him to thwart me": [0, 65535], "to thwart me in": [0, 65535], "thwart me in my": [0, 65535], "me in my moode": [0, 65535], "in my moode be": [0, 65535], "my moode be it": [0, 65535], "moode be it my": [0, 65535], "be it my wrong": [0, 65535], "it my wrong you": [0, 65535], "my wrong you are": [0, 65535], "wrong you are from": [0, 65535], "you are from me": [0, 65535], "are from me exempt": [0, 65535], "from me exempt but": [0, 65535], "me exempt but wrong": [0, 65535], "exempt but wrong not": [0, 65535], "but wrong not that": [0, 65535], "wrong not that wrong": [0, 65535], "not that wrong with": [0, 65535], "that wrong with a": [0, 65535], "wrong with a more": [0, 65535], "with a more contempt": [0, 65535], "a more contempt come": [0, 65535], "more contempt come i": [0, 65535], "contempt come i will": [0, 65535], "come i will fasten": [0, 65535], "i will fasten on": [0, 65535], "will fasten on this": [0, 65535], "fasten on this sleeue": [0, 65535], "on this sleeue of": [0, 65535], "this sleeue of thine": [0, 65535], "sleeue of thine thou": [0, 65535], "of thine thou art": [0, 65535], "thine thou art an": [0, 65535], "thou art an elme": [0, 65535], "art an elme my": [0, 65535], "an elme my husband": [0, 65535], "elme my husband i": [0, 65535], "my husband i a": [0, 65535], "husband i a vine": [0, 65535], "i a vine whose": [0, 65535], "a vine whose weaknesse": [0, 65535], "vine whose weaknesse married": [0, 65535], "whose weaknesse married to": [0, 65535], "weaknesse married to thy": [0, 65535], "married to thy stranger": [0, 65535], "to thy stranger state": [0, 65535], "thy stranger state makes": [0, 65535], "stranger state makes me": [0, 65535], "state makes me with": [0, 65535], "makes me with thy": [0, 65535], "me with thy strength": [0, 65535], "with thy strength to": [0, 65535], "thy strength to communicate": [0, 65535], "strength to communicate if": [0, 65535], "to communicate if ought": [0, 65535], "communicate if ought possesse": [0, 65535], "if ought possesse thee": [0, 65535], "ought possesse thee from": [0, 65535], "possesse thee from me": [0, 65535], "thee from me it": [0, 65535], "from me it is": [0, 65535], "me it is drosse": [0, 65535], "it is drosse vsurping": [0, 65535], "is drosse vsurping iuie": [0, 65535], "drosse vsurping iuie brier": [0, 65535], "vsurping iuie brier or": [0, 65535], "iuie brier or idle": [0, 65535], "brier or idle mosse": [0, 65535], "or idle mosse who": [0, 65535], "idle mosse who all": [0, 65535], "mosse who all for": [0, 65535], "who all for want": [0, 65535], "all for want of": [0, 65535], "for want of pruning": [0, 65535], "want of pruning with": [0, 65535], "of pruning with intrusion": [0, 65535], "pruning with intrusion infect": [0, 65535], "with intrusion infect thy": [0, 65535], "intrusion infect thy sap": [0, 65535], "infect thy sap and": [0, 65535], "thy sap and liue": [0, 65535], "sap and liue on": [0, 65535], "and liue on thy": [0, 65535], "liue on thy confusion": [0, 65535], "on thy confusion ant": [0, 65535], "thy confusion ant to": [0, 65535], "confusion ant to mee": [0, 65535], "ant to mee shee": [0, 65535], "to mee shee speakes": [0, 65535], "mee shee speakes shee": [0, 65535], "shee speakes shee moues": [0, 65535], "speakes shee moues mee": [0, 65535], "shee moues mee for": [0, 65535], "moues mee for her": [0, 65535], "mee for her theame": [0, 65535], "for her theame what": [0, 65535], "her theame what was": [0, 65535], "theame what was i": [0, 65535], "what was i married": [0, 65535], "was i married to": [0, 65535], "i married to her": [0, 65535], "married to her in": [0, 65535], "to her in my": [0, 65535], "her in my dreame": [0, 65535], "in my dreame or": [0, 65535], "my dreame or sleepe": [0, 65535], "dreame or sleepe i": [0, 65535], "or sleepe i now": [0, 65535], "sleepe i now and": [0, 65535], "i now and thinke": [0, 65535], "now and thinke i": [0, 65535], "and thinke i heare": [0, 65535], "thinke i heare all": [0, 65535], "i heare all this": [0, 65535], "heare all this what": [0, 65535], "all this what error": [0, 65535], "this what error driues": [0, 65535], "what error driues our": [0, 65535], "error driues our eies": [0, 65535], "driues our eies and": [0, 65535], "our eies and eares": [0, 65535], "eies and eares amisse": [0, 65535], "and eares amisse vntill": [0, 65535], "eares amisse vntill i": [0, 65535], "amisse vntill i know": [0, 65535], "vntill i know this": [0, 65535], "i know this sure": [0, 65535], "know this sure vncertaintie": [0, 65535], "this sure vncertaintie ile": [0, 65535], "sure vncertaintie ile entertaine": [0, 65535], "vncertaintie ile entertaine the": [0, 65535], "ile entertaine the free'd": [0, 65535], "entertaine the free'd fallacie": [0, 65535], "the free'd fallacie luc": [0, 65535], "free'd fallacie luc dromio": [0, 65535], "fallacie luc dromio goe": [0, 65535], "luc dromio goe bid": [0, 65535], "dromio goe bid the": [0, 65535], "goe bid the seruants": [0, 65535], "bid the seruants spred": [0, 65535], "the seruants spred for": [0, 65535], "seruants spred for dinner": [0, 65535], "spred for dinner s": [0, 65535], "for dinner s dro": [0, 65535], "dinner s dro oh": [0, 65535], "s dro oh for": [0, 65535], "dro oh for my": [0, 65535], "oh for my beads": [0, 65535], "for my beads i": [0, 65535], "my beads i crosse": [0, 65535], "beads i crosse me": [0, 65535], "i crosse me for": [0, 65535], "crosse me for a": [0, 65535], "me for a sinner": [0, 65535], "for a sinner this": [0, 65535], "a sinner this is": [0, 65535], "sinner this is the": [0, 65535], "this is the fairie": [0, 65535], "is the fairie land": [0, 65535], "the fairie land oh": [0, 65535], "fairie land oh spight": [0, 65535], "land oh spight of": [0, 65535], "oh spight of spights": [0, 65535], "spight of spights we": [0, 65535], "of spights we talke": [0, 65535], "spights we talke with": [0, 65535], "we talke with goblins": [0, 65535], "talke with goblins owles": [0, 65535], "with goblins owles and": [0, 65535], "goblins owles and sprights": [0, 65535], "owles and sprights if": [0, 65535], "and sprights if we": [0, 65535], "sprights if we obay": [0, 65535], "if we obay them": [0, 65535], "we obay them not": [0, 65535], "obay them not this": [0, 65535], "them not this will": [0, 65535], "not this will insue": [0, 65535], "this will insue they'll": [0, 65535], "will insue they'll sucke": [0, 65535], "insue they'll sucke our": [0, 65535], "they'll sucke our breath": [0, 65535], "sucke our breath or": [0, 65535], "our breath or pinch": [0, 65535], "breath or pinch vs": [0, 65535], "or pinch vs blacke": [0, 65535], "pinch vs blacke and": [0, 65535], "vs blacke and blew": [0, 65535], "blacke and blew luc": [0, 65535], "and blew luc why": [0, 65535], "blew luc why prat'st": [0, 65535], "luc why prat'st thou": [0, 65535], "why prat'st thou to": [0, 65535], "prat'st thou to thy": [0, 65535], "thou to thy selfe": [0, 65535], "to thy selfe and": [0, 65535], "thy selfe and answer'st": [0, 65535], "selfe and answer'st not": [0, 65535], "and answer'st not dromio": [0, 65535], "answer'st not dromio thou": [0, 65535], "not dromio thou dromio": [0, 65535], "dromio thou dromio thou": [0, 65535], "thou dromio thou snaile": [0, 65535], "dromio thou snaile thou": [0, 65535], "thou snaile thou slug": [0, 65535], "snaile thou slug thou": [0, 65535], "thou slug thou sot": [0, 65535], "slug thou sot s": [0, 65535], "thou sot s dro": [0, 65535], "sot s dro i": [0, 65535], "dro i am transformed": [0, 65535], "i am transformed master": [0, 65535], "am transformed master am": [0, 65535], "transformed master am i": [0, 65535], "master am i not": [0, 65535], "am i not ant": [0, 65535], "i not ant i": [0, 65535], "not ant i thinke": [0, 65535], "thinke thou art in": [0, 65535], "thou art in minde": [0, 65535], "art in minde and": [0, 65535], "in minde and so": [0, 65535], "minde and so am": [0, 65535], "and so am i": [0, 65535], "so am i s": [0, 65535], "am i s dro": [0, 65535], "i s dro nay": [0, 65535], "s dro nay master": [0, 65535], "dro nay master both": [0, 65535], "nay master both in": [0, 65535], "master both in minde": [0, 65535], "both in minde and": [0, 65535], "in minde and in": [0, 65535], "minde and in my": [0, 65535], "and in my shape": [0, 65535], "in my shape ant": [0, 65535], "my shape ant thou": [0, 65535], "shape ant thou hast": [0, 65535], "ant thou hast thine": [0, 65535], "thou hast thine owne": [0, 65535], "hast thine owne forme": [0, 65535], "thine owne forme s": [0, 65535], "owne forme s dro": [0, 65535], "forme s dro no": [0, 65535], "s dro no i": [0, 65535], "dro no i am": [0, 65535], "no i am an": [0, 65535], "i am an ape": [0, 65535], "am an ape luc": [0, 65535], "an ape luc if": [0, 65535], "ape luc if thou": [0, 65535], "luc if thou art": [0, 65535], "if thou art chang'd": [0, 65535], "thou art chang'd to": [0, 65535], "art chang'd to ought": [0, 65535], "chang'd to ought 'tis": [0, 65535], "to ought 'tis to": [0, 65535], "ought 'tis to an": [0, 65535], "'tis to an asse": [0, 65535], "to an asse s": [0, 65535], "an asse s dro": [0, 65535], "asse s dro 'tis": [0, 65535], "s dro 'tis true": [0, 65535], "dro 'tis true she": [0, 65535], "'tis true she rides": [0, 65535], "true she rides me": [0, 65535], "she rides me and": [0, 65535], "rides me and i": [0, 65535], "me and i long": [0, 65535], "and i long for": [0, 65535], "i long for grasse": [0, 65535], "long for grasse 'tis": [0, 65535], "for grasse 'tis so": [0, 65535], "grasse 'tis so i": [0, 65535], "'tis so i am": [0, 65535], "so i am an": [0, 65535], "am an asse else": [0, 65535], "an asse else it": [0, 65535], "asse else it could": [0, 65535], "else it could neuer": [0, 65535], "it could neuer be": [0, 65535], "could neuer be but": [0, 65535], "neuer be but i": [0, 65535], "be but i should": [0, 65535], "but i should know": [0, 65535], "i should know her": [0, 65535], "should know her as": [0, 65535], "know her as well": [0, 65535], "her as well as": [0, 65535], "as well as she": [0, 65535], "well as she knowes": [0, 65535], "as she knowes me": [0, 65535], "she knowes me adr": [0, 65535], "knowes me adr come": [0, 65535], "me adr come come": [0, 65535], "adr come come no": [0, 65535], "come come no longer": [0, 65535], "come no longer will": [0, 65535], "no longer will i": [0, 65535], "longer will i be": [0, 65535], "will i be a": [0, 65535], "i be a foole": [0, 65535], "be a foole to": [0, 65535], "a foole to put": [0, 65535], "foole to put the": [0, 65535], "to put the finger": [0, 65535], "put the finger in": [0, 65535], "the finger in the": [0, 65535], "finger in the eie": [0, 65535], "in the eie and": [0, 65535], "the eie and weepe": [0, 65535], "eie and weepe whil'st": [0, 65535], "and weepe whil'st man": [0, 65535], "weepe whil'st man and": [0, 65535], "whil'st man and master": [0, 65535], "man and master laughes": [0, 65535], "and master laughes my": [0, 65535], "master laughes my woes": [0, 65535], "laughes my woes to": [0, 65535], "my woes to scorne": [0, 65535], "woes to scorne come": [0, 65535], "to scorne come sir": [0, 65535], "scorne come sir to": [0, 65535], "come sir to dinner": [0, 65535], "sir to dinner dromio": [0, 65535], "to dinner dromio keepe": [0, 65535], "dinner dromio keepe the": [0, 65535], "dromio keepe the gate": [0, 65535], "keepe the gate husband": [0, 65535], "the gate husband ile": [0, 65535], "gate husband ile dine": [0, 65535], "husband ile dine aboue": [0, 65535], "ile dine aboue with": [0, 65535], "dine aboue with you": [0, 65535], "aboue with you to": [0, 65535], "with you to day": [0, 65535], "you to day and": [0, 65535], "to day and shriue": [0, 65535], "day and shriue you": [0, 65535], "and shriue you of": [0, 65535], "shriue you of a": [0, 65535], "you of a thousand": [0, 65535], "of a thousand idle": [0, 65535], "a thousand idle prankes": [0, 65535], "thousand idle prankes sirra": [0, 65535], "idle prankes sirra if": [0, 65535], "prankes sirra if any": [0, 65535], "sirra if any aske": [0, 65535], "if any aske you": [0, 65535], "any aske you for": [0, 65535], "aske you for your": [0, 65535], "you for your master": [0, 65535], "for your master say": [0, 65535], "your master say he": [0, 65535], "master say he dines": [0, 65535], "say he dines forth": [0, 65535], "he dines forth and": [0, 65535], "dines forth and let": [0, 65535], "forth and let no": [0, 65535], "and let no creature": [0, 65535], "let no creature enter": [0, 65535], "no creature enter come": [0, 65535], "creature enter come sister": [0, 65535], "enter come sister dromio": [0, 65535], "come sister dromio play": [0, 65535], "sister dromio play the": [0, 65535], "dromio play the porter": [0, 65535], "play the porter well": [0, 65535], "the porter well ant": [0, 65535], "porter well ant am": [0, 65535], "well ant am i": [0, 65535], "ant am i in": [0, 65535], "am i in earth": [0, 65535], "i in earth in": [0, 65535], "in earth in heauen": [0, 65535], "earth in heauen or": [0, 65535], "in heauen or in": [0, 65535], "heauen or in hell": [0, 65535], "or in hell sleeping": [0, 65535], "in hell sleeping or": [0, 65535], "hell sleeping or waking": [0, 65535], "sleeping or waking mad": [0, 65535], "or waking mad or": [0, 65535], "waking mad or well": [0, 65535], "mad or well aduisde": [0, 65535], "or well aduisde knowne": [0, 65535], "well aduisde knowne vnto": [0, 65535], "aduisde knowne vnto these": [0, 65535], "knowne vnto these and": [0, 65535], "vnto these and to": [0, 65535], "these and to my": [0, 65535], "and to my selfe": [0, 65535], "to my selfe disguisde": [0, 65535], "my selfe disguisde ile": [0, 65535], "selfe disguisde ile say": [0, 65535], "disguisde ile say as": [0, 65535], "ile say as they": [0, 65535], "say as they say": [0, 65535], "as they say and": [0, 65535], "they say and perseuer": [0, 65535], "say and perseuer so": [0, 65535], "and perseuer so and": [0, 65535], "perseuer so and in": [0, 65535], "so and in this": [0, 65535], "and in this mist": [0, 65535], "in this mist at": [0, 65535], "this mist at all": [0, 65535], "mist at all aduentures": [0, 65535], "at all aduentures go": [0, 65535], "all aduentures go s": [0, 65535], "aduentures go s dro": [0, 65535], "go s dro master": [0, 65535], "s dro master shall": [0, 65535], "dro master shall i": [0, 65535], "master shall i be": [0, 65535], "shall i be porter": [0, 65535], "i be porter at": [0, 65535], "be porter at the": [0, 65535], "porter at the gate": [0, 65535], "at the gate adr": [0, 65535], "the gate adr i": [0, 65535], "gate adr i and": [0, 65535], "adr i and let": [0, 65535], "i and let none": [0, 65535], "and let none enter": [0, 65535], "let none enter least": [0, 65535], "none enter least i": [0, 65535], "enter least i breake": [0, 65535], "least i breake your": [0, 65535], "i breake your pate": [0, 65535], "breake your pate luc": [0, 65535], "your pate luc come": [0, 65535], "pate luc come come": [0, 65535], "luc come come antipholus": [0, 65535], "come come antipholus we": [0, 65535], "come antipholus we dine": [0, 65535], "antipholus we dine to": [0, 65535], "we dine to late": [0, 65535], "actus secundus enter adriana wife": [0, 65535], "secundus enter adriana wife to": [0, 65535], "enter adriana wife to antipholis": [0, 65535], "adriana wife to antipholis sereptus": [0, 65535], "wife to antipholis sereptus with": [0, 65535], "to antipholis sereptus with luciana": [0, 65535], "antipholis sereptus with luciana her": [0, 65535], "sereptus with luciana her sister": [0, 65535], "with luciana her sister adr": [0, 65535], "luciana her sister adr neither": [0, 65535], "her sister adr neither my": [0, 65535], "sister adr neither my husband": [0, 65535], "adr neither my husband nor": [0, 65535], "neither my husband nor the": [0, 65535], "my husband nor the slaue": [0, 65535], "husband nor the slaue return'd": [0, 65535], "nor the slaue return'd that": [0, 65535], "the slaue return'd that in": [0, 65535], "slaue return'd that in such": [0, 65535], "return'd that in such haste": [0, 65535], "that in such haste i": [0, 65535], "in such haste i sent": [0, 65535], "such haste i sent to": [0, 65535], "haste i sent to seeke": [0, 65535], "i sent to seeke his": [0, 65535], "sent to seeke his master": [0, 65535], "to seeke his master sure": [0, 65535], "seeke his master sure luciana": [0, 65535], "his master sure luciana it": [0, 65535], "master sure luciana it is": [0, 65535], "sure luciana it is two": [0, 65535], "luciana it is two a": [0, 65535], "it is two a clocke": [0, 65535], "is two a clocke luc": [0, 65535], "two a clocke luc perhaps": [0, 65535], "a clocke luc perhaps some": [0, 65535], "clocke luc perhaps some merchant": [0, 65535], "luc perhaps some merchant hath": [0, 65535], "perhaps some merchant hath inuited": [0, 65535], "some merchant hath inuited him": [0, 65535], "merchant hath inuited him and": [0, 65535], "hath inuited him and from": [0, 65535], "inuited him and from the": [0, 65535], "him and from the mart": [0, 65535], "and from the mart he's": [0, 65535], "from the mart he's somewhere": [0, 65535], "the mart he's somewhere gone": [0, 65535], "mart he's somewhere gone to": [0, 65535], "he's somewhere gone to dinner": [0, 65535], "somewhere gone to dinner good": [0, 65535], "gone to dinner good sister": [0, 65535], "to dinner good sister let": [0, 65535], "dinner good sister let vs": [0, 65535], "good sister let vs dine": [0, 65535], "sister let vs dine and": [0, 65535], "let vs dine and neuer": [0, 65535], "vs dine and neuer fret": [0, 65535], "dine and neuer fret a": [0, 65535], "and neuer fret a man": [0, 65535], "neuer fret a man is": [0, 65535], "fret a man is master": [0, 65535], "a man is master of": [0, 65535], "man is master of his": [0, 65535], "is master of his libertie": [0, 65535], "master of his libertie time": [0, 65535], "of his libertie time is": [0, 65535], "his libertie time is their": [0, 65535], "libertie time is their master": [0, 65535], "time is their master and": [0, 65535], "is their master and when": [0, 65535], "their master and when they": [0, 65535], "master and when they see": [0, 65535], "and when they see time": [0, 65535], "when they see time they'll": [0, 65535], "they see time they'll goe": [0, 65535], "see time they'll goe or": [0, 65535], "time they'll goe or come": [0, 65535], "they'll goe or come if": [0, 65535], "goe or come if so": [0, 65535], "or come if so be": [0, 65535], "come if so be patient": [0, 65535], "if so be patient sister": [0, 65535], "so be patient sister adr": [0, 65535], "be patient sister adr why": [0, 65535], "patient sister adr why should": [0, 65535], "sister adr why should their": [0, 65535], "adr why should their libertie": [0, 65535], "why should their libertie then": [0, 65535], "should their libertie then ours": [0, 65535], "their libertie then ours be": [0, 65535], "libertie then ours be more": [0, 65535], "then ours be more luc": [0, 65535], "ours be more luc because": [0, 65535], "be more luc because their": [0, 65535], "more luc because their businesse": [0, 65535], "luc because their businesse still": [0, 65535], "because their businesse still lies": [0, 65535], "their businesse still lies out": [0, 65535], "businesse still lies out a": [0, 65535], "still lies out a dore": [0, 65535], "lies out a dore adr": [0, 65535], "out a dore adr looke": [0, 65535], "a dore adr looke when": [0, 65535], "dore adr looke when i": [0, 65535], "adr looke when i serue": [0, 65535], "looke when i serue him": [0, 65535], "when i serue him so": [0, 65535], "i serue him so he": [0, 65535], "serue him so he takes": [0, 65535], "him so he takes it": [0, 65535], "so he takes it thus": [0, 65535], "he takes it thus luc": [0, 65535], "takes it thus luc oh": [0, 65535], "it thus luc oh know": [0, 65535], "thus luc oh know he": [0, 65535], "luc oh know he is": [0, 65535], "oh know he is the": [0, 65535], "know he is the bridle": [0, 65535], "he is the bridle of": [0, 65535], "is the bridle of your": [0, 65535], "the bridle of your will": [0, 65535], "bridle of your will adr": [0, 65535], "of your will adr there's": [0, 65535], "your will adr there's none": [0, 65535], "will adr there's none but": [0, 65535], "adr there's none but asses": [0, 65535], "there's none but asses will": [0, 65535], "none but asses will be": [0, 65535], "but asses will be bridled": [0, 65535], "asses will be bridled so": [0, 65535], "will be bridled so luc": [0, 65535], "be bridled so luc why": [0, 65535], "bridled so luc why headstrong": [0, 65535], "so luc why headstrong liberty": [0, 65535], "luc why headstrong liberty is": [0, 65535], "why headstrong liberty is lasht": [0, 65535], "headstrong liberty is lasht with": [0, 65535], "liberty is lasht with woe": [0, 65535], "is lasht with woe there's": [0, 65535], "lasht with woe there's nothing": [0, 65535], "with woe there's nothing situate": [0, 65535], "woe there's nothing situate vnder": [0, 65535], "there's nothing situate vnder heauens": [0, 65535], "nothing situate vnder heauens eye": [0, 65535], "situate vnder heauens eye but": [0, 65535], "vnder heauens eye but hath": [0, 65535], "heauens eye but hath his": [0, 65535], "eye but hath his bound": [0, 65535], "but hath his bound in": [0, 65535], "hath his bound in earth": [0, 65535], "his bound in earth in": [0, 65535], "bound in earth in sea": [0, 65535], "in earth in sea in": [0, 65535], "earth in sea in skie": [0, 65535], "in sea in skie the": [0, 65535], "sea in skie the beasts": [0, 65535], "in skie the beasts the": [0, 65535], "skie the beasts the fishes": [0, 65535], "the beasts the fishes and": [0, 65535], "beasts the fishes and the": [0, 65535], "the fishes and the winged": [0, 65535], "fishes and the winged fowles": [0, 65535], "and the winged fowles are": [0, 65535], "the winged fowles are their": [0, 65535], "winged fowles are their males": [0, 65535], "fowles are their males subiects": [0, 65535], "are their males subiects and": [0, 65535], "their males subiects and at": [0, 65535], "males subiects and at their": [0, 65535], "subiects and at their controules": [0, 65535], "and at their controules man": [0, 65535], "at their controules man more": [0, 65535], "their controules man more diuine": [0, 65535], "controules man more diuine the": [0, 65535], "man more diuine the master": [0, 65535], "more diuine the master of": [0, 65535], "diuine the master of all": [0, 65535], "the master of all these": [0, 65535], "master of all these lord": [0, 65535], "of all these lord of": [0, 65535], "all these lord of the": [0, 65535], "these lord of the wide": [0, 65535], "lord of the wide world": [0, 65535], "of the wide world and": [0, 65535], "the wide world and wilde": [0, 65535], "wide world and wilde watry": [0, 65535], "world and wilde watry seas": [0, 65535], "and wilde watry seas indued": [0, 65535], "wilde watry seas indued with": [0, 65535], "watry seas indued with intellectuall": [0, 65535], "seas indued with intellectuall sence": [0, 65535], "indued with intellectuall sence and": [0, 65535], "with intellectuall sence and soules": [0, 65535], "intellectuall sence and soules of": [0, 65535], "sence and soules of more": [0, 65535], "and soules of more preheminence": [0, 65535], "soules of more preheminence then": [0, 65535], "of more preheminence then fish": [0, 65535], "more preheminence then fish and": [0, 65535], "preheminence then fish and fowles": [0, 65535], "then fish and fowles are": [0, 65535], "fish and fowles are masters": [0, 65535], "and fowles are masters to": [0, 65535], "fowles are masters to their": [0, 65535], "are masters to their females": [0, 65535], "masters to their females and": [0, 65535], "to their females and their": [0, 65535], "their females and their lords": [0, 65535], "females and their lords then": [0, 65535], "and their lords then let": [0, 65535], "their lords then let your": [0, 65535], "lords then let your will": [0, 65535], "then let your will attend": [0, 65535], "let your will attend on": [0, 65535], "your will attend on their": [0, 65535], "will attend on their accords": [0, 65535], "attend on their accords adri": [0, 65535], "on their accords adri this": [0, 65535], "their accords adri this seruitude": [0, 65535], "accords adri this seruitude makes": [0, 65535], "adri this seruitude makes you": [0, 65535], "this seruitude makes you to": [0, 65535], "seruitude makes you to keepe": [0, 65535], "makes you to keepe vnwed": [0, 65535], "you to keepe vnwed luci": [0, 65535], "to keepe vnwed luci not": [0, 65535], "keepe vnwed luci not this": [0, 65535], "vnwed luci not this but": [0, 65535], "luci not this but troubles": [0, 65535], "not this but troubles of": [0, 65535], "this but troubles of the": [0, 65535], "but troubles of the marriage": [0, 65535], "troubles of the marriage bed": [0, 65535], "of the marriage bed adr": [0, 65535], "the marriage bed adr but": [0, 65535], "marriage bed adr but were": [0, 65535], "bed adr but were you": [0, 65535], "adr but were you wedded": [0, 65535], "but were you wedded you": [0, 65535], "were you wedded you wold": [0, 65535], "you wedded you wold bear": [0, 65535], "wedded you wold bear some": [0, 65535], "you wold bear some sway": [0, 65535], "wold bear some sway luc": [0, 65535], "bear some sway luc ere": [0, 65535], "some sway luc ere i": [0, 65535], "sway luc ere i learne": [0, 65535], "luc ere i learne loue": [0, 65535], "ere i learne loue ile": [0, 65535], "i learne loue ile practise": [0, 65535], "learne loue ile practise to": [0, 65535], "loue ile practise to obey": [0, 65535], "ile practise to obey adr": [0, 65535], "practise to obey adr how": [0, 65535], "to obey adr how if": [0, 65535], "obey adr how if your": [0, 65535], "adr how if your husband": [0, 65535], "how if your husband start": [0, 65535], "if your husband start some": [0, 65535], "your husband start some other": [0, 65535], "husband start some other where": [0, 65535], "start some other where luc": [0, 65535], "some other where luc till": [0, 65535], "other where luc till he": [0, 65535], "where luc till he come": [0, 65535], "luc till he come home": [0, 65535], "till he come home againe": [0, 65535], "he come home againe i": [0, 65535], "come home againe i would": [0, 65535], "home againe i would forbeare": [0, 65535], "againe i would forbeare adr": [0, 65535], "i would forbeare adr patience": [0, 65535], "would forbeare adr patience vnmou'd": [0, 65535], "forbeare adr patience vnmou'd no": [0, 65535], "adr patience vnmou'd no maruel": [0, 65535], "patience vnmou'd no maruel though": [0, 65535], "vnmou'd no maruel though she": [0, 65535], "no maruel though she pause": [0, 65535], "maruel though she pause they": [0, 65535], "though she pause they can": [0, 65535], "she pause they can be": [0, 65535], "pause they can be meeke": [0, 65535], "they can be meeke that": [0, 65535], "can be meeke that haue": [0, 65535], "be meeke that haue no": [0, 65535], "meeke that haue no other": [0, 65535], "that haue no other cause": [0, 65535], "haue no other cause a": [0, 65535], "no other cause a wretched": [0, 65535], "other cause a wretched soule": [0, 65535], "cause a wretched soule bruis'd": [0, 65535], "a wretched soule bruis'd with": [0, 65535], "wretched soule bruis'd with aduersitie": [0, 65535], "soule bruis'd with aduersitie we": [0, 65535], "bruis'd with aduersitie we bid": [0, 65535], "with aduersitie we bid be": [0, 65535], "aduersitie we bid be quiet": [0, 65535], "we bid be quiet when": [0, 65535], "bid be quiet when we": [0, 65535], "be quiet when we heare": [0, 65535], "quiet when we heare it": [0, 65535], "when we heare it crie": [0, 65535], "we heare it crie but": [0, 65535], "heare it crie but were": [0, 65535], "it crie but were we": [0, 65535], "crie but were we burdned": [0, 65535], "but were we burdned with": [0, 65535], "were we burdned with like": [0, 65535], "we burdned with like waight": [0, 65535], "burdned with like waight of": [0, 65535], "with like waight of paine": [0, 65535], "like waight of paine as": [0, 65535], "waight of paine as much": [0, 65535], "of paine as much or": [0, 65535], "paine as much or more": [0, 65535], "as much or more we": [0, 65535], "much or more we should": [0, 65535], "or more we should our": [0, 65535], "more we should our selues": [0, 65535], "we should our selues complaine": [0, 65535], "should our selues complaine so": [0, 65535], "our selues complaine so thou": [0, 65535], "selues complaine so thou that": [0, 65535], "complaine so thou that hast": [0, 65535], "so thou that hast no": [0, 65535], "thou that hast no vnkinde": [0, 65535], "that hast no vnkinde mate": [0, 65535], "hast no vnkinde mate to": [0, 65535], "no vnkinde mate to greeue": [0, 65535], "vnkinde mate to greeue thee": [0, 65535], "mate to greeue thee with": [0, 65535], "to greeue thee with vrging": [0, 65535], "greeue thee with vrging helpelesse": [0, 65535], "thee with vrging helpelesse patience": [0, 65535], "with vrging helpelesse patience would": [0, 65535], "vrging helpelesse patience would releeue": [0, 65535], "helpelesse patience would releeue me": [0, 65535], "patience would releeue me but": [0, 65535], "would releeue me but if": [0, 65535], "releeue me but if thou": [0, 65535], "me but if thou liue": [0, 65535], "but if thou liue to": [0, 65535], "if thou liue to see": [0, 65535], "thou liue to see like": [0, 65535], "liue to see like right": [0, 65535], "to see like right bereft": [0, 65535], "see like right bereft this": [0, 65535], "like right bereft this foole": [0, 65535], "right bereft this foole beg'd": [0, 65535], "bereft this foole beg'd patience": [0, 65535], "this foole beg'd patience in": [0, 65535], "foole beg'd patience in thee": [0, 65535], "beg'd patience in thee will": [0, 65535], "patience in thee will be": [0, 65535], "in thee will be left": [0, 65535], "thee will be left luci": [0, 65535], "will be left luci well": [0, 65535], "be left luci well i": [0, 65535], "left luci well i will": [0, 65535], "luci well i will marry": [0, 65535], "well i will marry one": [0, 65535], "i will marry one day": [0, 65535], "will marry one day but": [0, 65535], "marry one day but to": [0, 65535], "one day but to trie": [0, 65535], "day but to trie heere": [0, 65535], "but to trie heere comes": [0, 65535], "to trie heere comes your": [0, 65535], "trie heere comes your man": [0, 65535], "heere comes your man now": [0, 65535], "comes your man now is": [0, 65535], "your man now is your": [0, 65535], "man now is your husband": [0, 65535], "now is your husband nie": [0, 65535], "is your husband nie enter": [0, 65535], "your husband nie enter dromio": [0, 65535], "husband nie enter dromio eph": [0, 65535], "nie enter dromio eph adr": [0, 65535], "enter dromio eph adr say": [0, 65535], "dromio eph adr say is": [0, 65535], "eph adr say is your": [0, 65535], "adr say is your tardie": [0, 65535], "say is your tardie master": [0, 65535], "is your tardie master now": [0, 65535], "your tardie master now at": [0, 65535], "tardie master now at hand": [0, 65535], "master now at hand e": [0, 65535], "now at hand e dro": [0, 65535], "at hand e dro nay": [0, 65535], "hand e dro nay hee's": [0, 65535], "e dro nay hee's at": [0, 65535], "dro nay hee's at too": [0, 65535], "nay hee's at too hands": [0, 65535], "hee's at too hands with": [0, 65535], "at too hands with mee": [0, 65535], "too hands with mee and": [0, 65535], "hands with mee and that": [0, 65535], "with mee and that my": [0, 65535], "mee and that my two": [0, 65535], "and that my two eares": [0, 65535], "that my two eares can": [0, 65535], "my two eares can witnesse": [0, 65535], "two eares can witnesse adr": [0, 65535], "eares can witnesse adr say": [0, 65535], "can witnesse adr say didst": [0, 65535], "witnesse adr say didst thou": [0, 65535], "adr say didst thou speake": [0, 65535], "say didst thou speake with": [0, 65535], "didst thou speake with him": [0, 65535], "thou speake with him knowst": [0, 65535], "speake with him knowst thou": [0, 65535], "with him knowst thou his": [0, 65535], "him knowst thou his minde": [0, 65535], "knowst thou his minde e": [0, 65535], "thou his minde e dro": [0, 65535], "his minde e dro i": [0, 65535], "minde e dro i i": [0, 65535], "e dro i i he": [0, 65535], "dro i i he told": [0, 65535], "i i he told his": [0, 65535], "i he told his minde": [0, 65535], "he told his minde vpon": [0, 65535], "told his minde vpon mine": [0, 65535], "his minde vpon mine eare": [0, 65535], "minde vpon mine eare beshrew": [0, 65535], "vpon mine eare beshrew his": [0, 65535], "mine eare beshrew his hand": [0, 65535], "eare beshrew his hand i": [0, 65535], "beshrew his hand i scarce": [0, 65535], "his hand i scarce could": [0, 65535], "hand i scarce could vnderstand": [0, 65535], "i scarce could vnderstand it": [0, 65535], "scarce could vnderstand it luc": [0, 65535], "could vnderstand it luc spake": [0, 65535], "vnderstand it luc spake hee": [0, 65535], "it luc spake hee so": [0, 65535], "luc spake hee so doubtfully": [0, 65535], "spake hee so doubtfully thou": [0, 65535], "hee so doubtfully thou couldst": [0, 65535], "so doubtfully thou couldst not": [0, 65535], "doubtfully thou couldst not feele": [0, 65535], "thou couldst not feele his": [0, 65535], "couldst not feele his meaning": [0, 65535], "not feele his meaning e": [0, 65535], "feele his meaning e dro": [0, 65535], "his meaning e dro nay": [0, 65535], "meaning e dro nay hee": [0, 65535], "e dro nay hee strooke": [0, 65535], "dro nay hee strooke so": [0, 65535], "nay hee strooke so plainly": [0, 65535], "hee strooke so plainly i": [0, 65535], "strooke so plainly i could": [0, 65535], "so plainly i could too": [0, 65535], "plainly i could too well": [0, 65535], "i could too well feele": [0, 65535], "could too well feele his": [0, 65535], "too well feele his blowes": [0, 65535], "well feele his blowes and": [0, 65535], "feele his blowes and withall": [0, 65535], "his blowes and withall so": [0, 65535], "blowes and withall so doubtfully": [0, 65535], "and withall so doubtfully that": [0, 65535], "withall so doubtfully that i": [0, 65535], "so doubtfully that i could": [0, 65535], "doubtfully that i could scarce": [0, 65535], "that i could scarce vnderstand": [0, 65535], "i could scarce vnderstand them": [0, 65535], "could scarce vnderstand them adri": [0, 65535], "scarce vnderstand them adri but": [0, 65535], "vnderstand them adri but say": [0, 65535], "them adri but say i": [0, 65535], "adri but say i prethee": [0, 65535], "but say i prethee is": [0, 65535], "say i prethee is he": [0, 65535], "i prethee is he comming": [0, 65535], "prethee is he comming home": [0, 65535], "is he comming home it": [0, 65535], "he comming home it seemes": [0, 65535], "comming home it seemes he": [0, 65535], "home it seemes he hath": [0, 65535], "it seemes he hath great": [0, 65535], "seemes he hath great care": [0, 65535], "he hath great care to": [0, 65535], "hath great care to please": [0, 65535], "great care to please his": [0, 65535], "care to please his wife": [0, 65535], "to please his wife e": [0, 65535], "please his wife e dro": [0, 65535], "his wife e dro why": [0, 65535], "wife e dro why mistresse": [0, 65535], "e dro why mistresse sure": [0, 65535], "dro why mistresse sure my": [0, 65535], "why mistresse sure my master": [0, 65535], "mistresse sure my master is": [0, 65535], "sure my master is horne": [0, 65535], "my master is horne mad": [0, 65535], "master is horne mad adri": [0, 65535], "is horne mad adri horne": [0, 65535], "horne mad adri horne mad": [0, 65535], "mad adri horne mad thou": [0, 65535], "adri horne mad thou villaine": [0, 65535], "horne mad thou villaine e": [0, 65535], "mad thou villaine e dro": [0, 65535], "thou villaine e dro i": [0, 65535], "villaine e dro i meane": [0, 65535], "e dro i meane not": [0, 65535], "dro i meane not cuckold": [0, 65535], "i meane not cuckold mad": [0, 65535], "meane not cuckold mad but": [0, 65535], "not cuckold mad but sure": [0, 65535], "cuckold mad but sure he": [0, 65535], "mad but sure he is": [0, 65535], "but sure he is starke": [0, 65535], "sure he is starke mad": [0, 65535], "he is starke mad when": [0, 65535], "is starke mad when i": [0, 65535], "starke mad when i desir'd": [0, 65535], "mad when i desir'd him": [0, 65535], "when i desir'd him to": [0, 65535], "i desir'd him to come": [0, 65535], "desir'd him to come home": [0, 65535], "him to come home to": [0, 65535], "to come home to dinner": [0, 65535], "come home to dinner he": [0, 65535], "home to dinner he ask'd": [0, 65535], "to dinner he ask'd me": [0, 65535], "dinner he ask'd me for": [0, 65535], "he ask'd me for a": [0, 65535], "ask'd me for a hundred": [0, 65535], "me for a hundred markes": [0, 65535], "for a hundred markes in": [0, 65535], "a hundred markes in gold": [0, 65535], "hundred markes in gold 'tis": [0, 65535], "markes in gold 'tis dinner": [0, 65535], "in gold 'tis dinner time": [0, 65535], "gold 'tis dinner time quoth": [0, 65535], "'tis dinner time quoth i": [0, 65535], "dinner time quoth i my": [0, 65535], "time quoth i my gold": [0, 65535], "quoth i my gold quoth": [0, 65535], "i my gold quoth he": [0, 65535], "my gold quoth he your": [0, 65535], "gold quoth he your meat": [0, 65535], "quoth he your meat doth": [0, 65535], "he your meat doth burne": [0, 65535], "your meat doth burne quoth": [0, 65535], "meat doth burne quoth i": [0, 65535], "doth burne quoth i my": [0, 65535], "burne quoth i my gold": [0, 65535], "my gold quoth he will": [0, 65535], "gold quoth he will you": [0, 65535], "quoth he will you come": [0, 65535], "he will you come quoth": [0, 65535], "will you come quoth i": [0, 65535], "you come quoth i my": [0, 65535], "come quoth i my gold": [0, 65535], "my gold quoth he where": [0, 65535], "gold quoth he where is": [0, 65535], "quoth he where is the": [0, 65535], "he where is the thousand": [0, 65535], "where is the thousand markes": [0, 65535], "is the thousand markes i": [0, 65535], "the thousand markes i gaue": [0, 65535], "thousand markes i gaue thee": [0, 65535], "markes i gaue thee villaine": [0, 65535], "i gaue thee villaine the": [0, 65535], "gaue thee villaine the pigge": [0, 65535], "thee villaine the pigge quoth": [0, 65535], "villaine the pigge quoth i": [0, 65535], "the pigge quoth i is": [0, 65535], "pigge quoth i is burn'd": [0, 65535], "quoth i is burn'd my": [0, 65535], "i is burn'd my gold": [0, 65535], "is burn'd my gold quoth": [0, 65535], "burn'd my gold quoth he": [0, 65535], "my gold quoth he my": [0, 65535], "gold quoth he my mistresse": [0, 65535], "quoth he my mistresse sir": [0, 65535], "he my mistresse sir quoth": [0, 65535], "my mistresse sir quoth i": [0, 65535], "mistresse sir quoth i hang": [0, 65535], "sir quoth i hang vp": [0, 65535], "quoth i hang vp thy": [0, 65535], "i hang vp thy mistresse": [0, 65535], "hang vp thy mistresse i": [0, 65535], "vp thy mistresse i know": [0, 65535], "thy mistresse i know not": [0, 65535], "mistresse i know not thy": [0, 65535], "i know not thy mistresse": [0, 65535], "know not thy mistresse out": [0, 65535], "not thy mistresse out on": [0, 65535], "thy mistresse out on thy": [0, 65535], "mistresse out on thy mistresse": [0, 65535], "out on thy mistresse luci": [0, 65535], "on thy mistresse luci quoth": [0, 65535], "thy mistresse luci quoth who": [0, 65535], "mistresse luci quoth who e": [0, 65535], "luci quoth who e dr": [0, 65535], "quoth who e dr quoth": [0, 65535], "who e dr quoth my": [0, 65535], "e dr quoth my master": [0, 65535], "dr quoth my master i": [0, 65535], "quoth my master i know": [0, 65535], "my master i know quoth": [0, 65535], "master i know quoth he": [0, 65535], "i know quoth he no": [0, 65535], "know quoth he no house": [0, 65535], "quoth he no house no": [0, 65535], "he no house no wife": [0, 65535], "no house no wife no": [0, 65535], "house no wife no mistresse": [0, 65535], "no wife no mistresse so": [0, 65535], "wife no mistresse so that": [0, 65535], "no mistresse so that my": [0, 65535], "mistresse so that my arrant": [0, 65535], "so that my arrant due": [0, 65535], "that my arrant due vnto": [0, 65535], "my arrant due vnto my": [0, 65535], "arrant due vnto my tongue": [0, 65535], "due vnto my tongue i": [0, 65535], "vnto my tongue i thanke": [0, 65535], "my tongue i thanke him": [0, 65535], "tongue i thanke him i": [0, 65535], "i thanke him i bare": [0, 65535], "thanke him i bare home": [0, 65535], "him i bare home vpon": [0, 65535], "i bare home vpon my": [0, 65535], "bare home vpon my shoulders": [0, 65535], "home vpon my shoulders for": [0, 65535], "vpon my shoulders for in": [0, 65535], "my shoulders for in conclusion": [0, 65535], "shoulders for in conclusion he": [0, 65535], "for in conclusion he did": [0, 65535], "in conclusion he did beat": [0, 65535], "conclusion he did beat me": [0, 65535], "he did beat me there": [0, 65535], "did beat me there adri": [0, 65535], "beat me there adri go": [0, 65535], "me there adri go back": [0, 65535], "there adri go back againe": [0, 65535], "adri go back againe thou": [0, 65535], "go back againe thou slaue": [0, 65535], "back againe thou slaue fetch": [0, 65535], "againe thou slaue fetch him": [0, 65535], "thou slaue fetch him home": [0, 65535], "slaue fetch him home dro": [0, 65535], "fetch him home dro goe": [0, 65535], "him home dro goe backe": [0, 65535], "home dro goe backe againe": [0, 65535], "dro goe backe againe and": [0, 65535], "goe backe againe and be": [0, 65535], "backe againe and be new": [0, 65535], "againe and be new beaten": [0, 65535], "and be new beaten home": [0, 65535], "be new beaten home for": [0, 65535], "new beaten home for gods": [0, 65535], "beaten home for gods sake": [0, 65535], "home for gods sake send": [0, 65535], "for gods sake send some": [0, 65535], "gods sake send some other": [0, 65535], "sake send some other messenger": [0, 65535], "send some other messenger adri": [0, 65535], "some other messenger adri backe": [0, 65535], "other messenger adri backe slaue": [0, 65535], "messenger adri backe slaue or": [0, 65535], "adri backe slaue or i": [0, 65535], "backe slaue or i will": [0, 65535], "slaue or i will breake": [0, 65535], "or i will breake thy": [0, 65535], "i will breake thy pate": [0, 65535], "will breake thy pate a": [0, 65535], "breake thy pate a crosse": [0, 65535], "thy pate a crosse dro": [0, 65535], "pate a crosse dro and": [0, 65535], "a crosse dro and he": [0, 65535], "crosse dro and he will": [0, 65535], "dro and he will blesse": [0, 65535], "and he will blesse the": [0, 65535], "he will blesse the crosse": [0, 65535], "will blesse the crosse with": [0, 65535], "blesse the crosse with other": [0, 65535], "the crosse with other beating": [0, 65535], "crosse with other beating betweene": [0, 65535], "with other beating betweene you": [0, 65535], "other beating betweene you i": [0, 65535], "beating betweene you i shall": [0, 65535], "betweene you i shall haue": [0, 65535], "you i shall haue a": [0, 65535], "i shall haue a holy": [0, 65535], "shall haue a holy head": [0, 65535], "haue a holy head adri": [0, 65535], "a holy head adri hence": [0, 65535], "holy head adri hence prating": [0, 65535], "head adri hence prating pesant": [0, 65535], "adri hence prating pesant fetch": [0, 65535], "hence prating pesant fetch thy": [0, 65535], "prating pesant fetch thy master": [0, 65535], "pesant fetch thy master home": [0, 65535], "fetch thy master home dro": [0, 65535], "thy master home dro am": [0, 65535], "master home dro am i": [0, 65535], "home dro am i so": [0, 65535], "dro am i so round": [0, 65535], "am i so round with": [0, 65535], "i so round with you": [0, 65535], "so round with you as": [0, 65535], "round with you as you": [0, 65535], "with you as you with": [0, 65535], "you as you with me": [0, 65535], "as you with me that": [0, 65535], "you with me that like": [0, 65535], "with me that like a": [0, 65535], "me that like a foot": [0, 65535], "that like a foot ball": [0, 65535], "like a foot ball you": [0, 65535], "a foot ball you doe": [0, 65535], "foot ball you doe spurne": [0, 65535], "ball you doe spurne me": [0, 65535], "you doe spurne me thus": [0, 65535], "doe spurne me thus you": [0, 65535], "spurne me thus you spurne": [0, 65535], "me thus you spurne me": [0, 65535], "thus you spurne me hence": [0, 65535], "you spurne me hence and": [0, 65535], "spurne me hence and he": [0, 65535], "me hence and he will": [0, 65535], "hence and he will spurne": [0, 65535], "and he will spurne me": [0, 65535], "he will spurne me hither": [0, 65535], "will spurne me hither if": [0, 65535], "spurne me hither if i": [0, 65535], "me hither if i last": [0, 65535], "hither if i last in": [0, 65535], "if i last in this": [0, 65535], "i last in this seruice": [0, 65535], "last in this seruice you": [0, 65535], "in this seruice you must": [0, 65535], "this seruice you must case": [0, 65535], "seruice you must case me": [0, 65535], "you must case me in": [0, 65535], "must case me in leather": [0, 65535], "case me in leather luci": [0, 65535], "me in leather luci fie": [0, 65535], "in leather luci fie how": [0, 65535], "leather luci fie how impatience": [0, 65535], "luci fie how impatience lowreth": [0, 65535], "fie how impatience lowreth in": [0, 65535], "how impatience lowreth in your": [0, 65535], "impatience lowreth in your face": [0, 65535], "lowreth in your face adri": [0, 65535], "in your face adri his": [0, 65535], "your face adri his company": [0, 65535], "face adri his company must": [0, 65535], "adri his company must do": [0, 65535], "his company must do his": [0, 65535], "company must do his minions": [0, 65535], "must do his minions grace": [0, 65535], "do his minions grace whil'st": [0, 65535], "his minions grace whil'st i": [0, 65535], "minions grace whil'st i at": [0, 65535], "grace whil'st i at home": [0, 65535], "whil'st i at home starue": [0, 65535], "i at home starue for": [0, 65535], "at home starue for a": [0, 65535], "home starue for a merrie": [0, 65535], "starue for a merrie looke": [0, 65535], "for a merrie looke hath": [0, 65535], "a merrie looke hath homelie": [0, 65535], "merrie looke hath homelie age": [0, 65535], "looke hath homelie age th'": [0, 65535], "hath homelie age th' alluring": [0, 65535], "homelie age th' alluring beauty": [0, 65535], "age th' alluring beauty tooke": [0, 65535], "th' alluring beauty tooke from": [0, 65535], "alluring beauty tooke from my": [0, 65535], "beauty tooke from my poore": [0, 65535], "tooke from my poore cheeke": [0, 65535], "from my poore cheeke then": [0, 65535], "my poore cheeke then he": [0, 65535], "poore cheeke then he hath": [0, 65535], "cheeke then he hath wasted": [0, 65535], "then he hath wasted it": [0, 65535], "he hath wasted it are": [0, 65535], "hath wasted it are my": [0, 65535], "wasted it are my discourses": [0, 65535], "it are my discourses dull": [0, 65535], "are my discourses dull barren": [0, 65535], "my discourses dull barren my": [0, 65535], "discourses dull barren my wit": [0, 65535], "dull barren my wit if": [0, 65535], "barren my wit if voluble": [0, 65535], "my wit if voluble and": [0, 65535], "wit if voluble and sharpe": [0, 65535], "if voluble and sharpe discourse": [0, 65535], "voluble and sharpe discourse be": [0, 65535], "and sharpe discourse be mar'd": [0, 65535], "sharpe discourse be mar'd vnkindnesse": [0, 65535], "discourse be mar'd vnkindnesse blunts": [0, 65535], "be mar'd vnkindnesse blunts it": [0, 65535], "mar'd vnkindnesse blunts it more": [0, 65535], "vnkindnesse blunts it more then": [0, 65535], "blunts it more then marble": [0, 65535], "it more then marble hard": [0, 65535], "more then marble hard doe": [0, 65535], "then marble hard doe their": [0, 65535], "marble hard doe their gay": [0, 65535], "hard doe their gay vestments": [0, 65535], "doe their gay vestments his": [0, 65535], "their gay vestments his affections": [0, 65535], "gay vestments his affections baite": [0, 65535], "vestments his affections baite that's": [0, 65535], "his affections baite that's not": [0, 65535], "affections baite that's not my": [0, 65535], "baite that's not my fault": [0, 65535], "that's not my fault hee's": [0, 65535], "not my fault hee's master": [0, 65535], "my fault hee's master of": [0, 65535], "fault hee's master of my": [0, 65535], "hee's master of my state": [0, 65535], "master of my state what": [0, 65535], "of my state what ruines": [0, 65535], "my state what ruines are": [0, 65535], "state what ruines are in": [0, 65535], "what ruines are in me": [0, 65535], "ruines are in me that": [0, 65535], "are in me that can": [0, 65535], "in me that can be": [0, 65535], "me that can be found": [0, 65535], "that can be found by": [0, 65535], "can be found by him": [0, 65535], "be found by him not": [0, 65535], "found by him not ruin'd": [0, 65535], "by him not ruin'd then": [0, 65535], "him not ruin'd then is": [0, 65535], "not ruin'd then is he": [0, 65535], "ruin'd then is he the": [0, 65535], "then is he the ground": [0, 65535], "is he the ground of": [0, 65535], "he the ground of my": [0, 65535], "the ground of my defeatures": [0, 65535], "ground of my defeatures my": [0, 65535], "of my defeatures my decayed": [0, 65535], "my defeatures my decayed faire": [0, 65535], "defeatures my decayed faire a": [0, 65535], "my decayed faire a sunnie": [0, 65535], "decayed faire a sunnie looke": [0, 65535], "faire a sunnie looke of": [0, 65535], "a sunnie looke of his": [0, 65535], "sunnie looke of his would": [0, 65535], "looke of his would soone": [0, 65535], "of his would soone repaire": [0, 65535], "his would soone repaire but": [0, 65535], "would soone repaire but too": [0, 65535], "soone repaire but too vnruly": [0, 65535], "repaire but too vnruly deere": [0, 65535], "but too vnruly deere he": [0, 65535], "too vnruly deere he breakes": [0, 65535], "vnruly deere he breakes the": [0, 65535], "deere he breakes the pale": [0, 65535], "he breakes the pale and": [0, 65535], "breakes the pale and feedes": [0, 65535], "the pale and feedes from": [0, 65535], "pale and feedes from home": [0, 65535], "and feedes from home poore": [0, 65535], "feedes from home poore i": [0, 65535], "from home poore i am": [0, 65535], "home poore i am but": [0, 65535], "poore i am but his": [0, 65535], "i am but his stale": [0, 65535], "am but his stale luci": [0, 65535], "but his stale luci selfe": [0, 65535], "his stale luci selfe harming": [0, 65535], "stale luci selfe harming iealousie": [0, 65535], "luci selfe harming iealousie fie": [0, 65535], "selfe harming iealousie fie beat": [0, 65535], "harming iealousie fie beat it": [0, 65535], "iealousie fie beat it hence": [0, 65535], "fie beat it hence ad": [0, 65535], "beat it hence ad vnfeeling": [0, 65535], "it hence ad vnfeeling fools": [0, 65535], "hence ad vnfeeling fools can": [0, 65535], "ad vnfeeling fools can with": [0, 65535], "vnfeeling fools can with such": [0, 65535], "fools can with such wrongs": [0, 65535], "can with such wrongs dispence": [0, 65535], "with such wrongs dispence i": [0, 65535], "such wrongs dispence i know": [0, 65535], "wrongs dispence i know his": [0, 65535], "dispence i know his eye": [0, 65535], "i know his eye doth": [0, 65535], "know his eye doth homage": [0, 65535], "his eye doth homage other": [0, 65535], "eye doth homage other where": [0, 65535], "doth homage other where or": [0, 65535], "homage other where or else": [0, 65535], "other where or else what": [0, 65535], "where or else what lets": [0, 65535], "or else what lets it": [0, 65535], "else what lets it but": [0, 65535], "what lets it but he": [0, 65535], "lets it but he would": [0, 65535], "it but he would be": [0, 65535], "but he would be here": [0, 65535], "he would be here sister": [0, 65535], "would be here sister you": [0, 65535], "be here sister you know": [0, 65535], "here sister you know he": [0, 65535], "sister you know he promis'd": [0, 65535], "you know he promis'd me": [0, 65535], "know he promis'd me a": [0, 65535], "he promis'd me a chaine": [0, 65535], "promis'd me a chaine would": [0, 65535], "me a chaine would that": [0, 65535], "a chaine would that alone": [0, 65535], "chaine would that alone a": [0, 65535], "would that alone a loue": [0, 65535], "that alone a loue he": [0, 65535], "alone a loue he would": [0, 65535], "a loue he would detaine": [0, 65535], "loue he would detaine so": [0, 65535], "he would detaine so he": [0, 65535], "would detaine so he would": [0, 65535], "detaine so he would keepe": [0, 65535], "so he would keepe faire": [0, 65535], "he would keepe faire quarter": [0, 65535], "would keepe faire quarter with": [0, 65535], "keepe faire quarter with his": [0, 65535], "faire quarter with his bed": [0, 65535], "quarter with his bed i": [0, 65535], "with his bed i see": [0, 65535], "his bed i see the": [0, 65535], "bed i see the iewell": [0, 65535], "i see the iewell best": [0, 65535], "see the iewell best enamaled": [0, 65535], "the iewell best enamaled will": [0, 65535], "iewell best enamaled will loose": [0, 65535], "best enamaled will loose his": [0, 65535], "enamaled will loose his beautie": [0, 65535], "will loose his beautie yet": [0, 65535], "loose his beautie yet the": [0, 65535], "his beautie yet the gold": [0, 65535], "beautie yet the gold bides": [0, 65535], "yet the gold bides still": [0, 65535], "the gold bides still that": [0, 65535], "gold bides still that others": [0, 65535], "bides still that others touch": [0, 65535], "still that others touch and": [0, 65535], "that others touch and often": [0, 65535], "others touch and often touching": [0, 65535], "touch and often touching will": [0, 65535], "and often touching will where": [0, 65535], "often touching will where gold": [0, 65535], "touching will where gold and": [0, 65535], "will where gold and no": [0, 65535], "where gold and no man": [0, 65535], "gold and no man that": [0, 65535], "and no man that hath": [0, 65535], "no man that hath a": [0, 65535], "man that hath a name": [0, 65535], "that hath a name by": [0, 65535], "hath a name by falshood": [0, 65535], "a name by falshood and": [0, 65535], "name by falshood and corruption": [0, 65535], "by falshood and corruption doth": [0, 65535], "falshood and corruption doth it": [0, 65535], "and corruption doth it shame": [0, 65535], "corruption doth it shame since": [0, 65535], "doth it shame since that": [0, 65535], "it shame since that my": [0, 65535], "shame since that my beautie": [0, 65535], "since that my beautie cannot": [0, 65535], "that my beautie cannot please": [0, 65535], "my beautie cannot please his": [0, 65535], "beautie cannot please his eie": [0, 65535], "cannot please his eie ile": [0, 65535], "please his eie ile weepe": [0, 65535], "his eie ile weepe what's": [0, 65535], "eie ile weepe what's left": [0, 65535], "ile weepe what's left away": [0, 65535], "weepe what's left away and": [0, 65535], "what's left away and weeping": [0, 65535], "left away and weeping die": [0, 65535], "away and weeping die luci": [0, 65535], "and weeping die luci how": [0, 65535], "weeping die luci how manie": [0, 65535], "die luci how manie fond": [0, 65535], "luci how manie fond fooles": [0, 65535], "how manie fond fooles serue": [0, 65535], "manie fond fooles serue mad": [0, 65535], "fond fooles serue mad ielousie": [0, 65535], "fooles serue mad ielousie exit": [0, 65535], "serue mad ielousie exit enter": [0, 65535], "mad ielousie exit enter antipholis": [0, 65535], "ielousie exit enter antipholis errotis": [0, 65535], "exit enter antipholis errotis ant": [0, 65535], "enter antipholis errotis ant the": [0, 65535], "antipholis errotis ant the gold": [0, 65535], "errotis ant the gold i": [0, 65535], "ant the gold i gaue": [0, 65535], "the gold i gaue to": [0, 65535], "gold i gaue to dromio": [0, 65535], "i gaue to dromio is": [0, 65535], "gaue to dromio is laid": [0, 65535], "to dromio is laid vp": [0, 65535], "dromio is laid vp safe": [0, 65535], "is laid vp safe at": [0, 65535], "laid vp safe at the": [0, 65535], "vp safe at the centaur": [0, 65535], "safe at the centaur and": [0, 65535], "at the centaur and the": [0, 65535], "the centaur and the heedfull": [0, 65535], "centaur and the heedfull slaue": [0, 65535], "and the heedfull slaue is": [0, 65535], "the heedfull slaue is wandred": [0, 65535], "heedfull slaue is wandred forth": [0, 65535], "slaue is wandred forth in": [0, 65535], "is wandred forth in care": [0, 65535], "wandred forth in care to": [0, 65535], "forth in care to seeke": [0, 65535], "in care to seeke me": [0, 65535], "care to seeke me out": [0, 65535], "to seeke me out by": [0, 65535], "seeke me out by computation": [0, 65535], "me out by computation and": [0, 65535], "out by computation and mine": [0, 65535], "by computation and mine hosts": [0, 65535], "computation and mine hosts report": [0, 65535], "and mine hosts report i": [0, 65535], "mine hosts report i could": [0, 65535], "hosts report i could not": [0, 65535], "report i could not speake": [0, 65535], "i could not speake with": [0, 65535], "could not speake with dromio": [0, 65535], "not speake with dromio since": [0, 65535], "speake with dromio since at": [0, 65535], "with dromio since at first": [0, 65535], "dromio since at first i": [0, 65535], "since at first i sent": [0, 65535], "at first i sent him": [0, 65535], "first i sent him from": [0, 65535], "i sent him from the": [0, 65535], "sent him from the mart": [0, 65535], "him from the mart see": [0, 65535], "from the mart see here": [0, 65535], "the mart see here he": [0, 65535], "mart see here he comes": [0, 65535], "see here he comes enter": [0, 65535], "here he comes enter dromio": [0, 65535], "he comes enter dromio siracusia": [0, 65535], "comes enter dromio siracusia how": [0, 65535], "enter dromio siracusia how now": [0, 65535], "dromio siracusia how now sir": [0, 65535], "siracusia how now sir is": [0, 65535], "how now sir is your": [0, 65535], "now sir is your merrie": [0, 65535], "sir is your merrie humor": [0, 65535], "is your merrie humor alter'd": [0, 65535], "your merrie humor alter'd as": [0, 65535], "merrie humor alter'd as you": [0, 65535], "humor alter'd as you loue": [0, 65535], "alter'd as you loue stroakes": [0, 65535], "as you loue stroakes so": [0, 65535], "you loue stroakes so iest": [0, 65535], "loue stroakes so iest with": [0, 65535], "stroakes so iest with me": [0, 65535], "so iest with me againe": [0, 65535], "iest with me againe you": [0, 65535], "with me againe you know": [0, 65535], "me againe you know no": [0, 65535], "againe you know no centaur": [0, 65535], "you know no centaur you": [0, 65535], "know no centaur you receiu'd": [0, 65535], "no centaur you receiu'd no": [0, 65535], "centaur you receiu'd no gold": [0, 65535], "you receiu'd no gold your": [0, 65535], "receiu'd no gold your mistresse": [0, 65535], "no gold your mistresse sent": [0, 65535], "gold your mistresse sent to": [0, 65535], "your mistresse sent to haue": [0, 65535], "mistresse sent to haue me": [0, 65535], "sent to haue me home": [0, 65535], "to haue me home to": [0, 65535], "haue me home to dinner": [0, 65535], "me home to dinner my": [0, 65535], "home to dinner my house": [0, 65535], "to dinner my house was": [0, 65535], "dinner my house was at": [0, 65535], "my house was at the": [0, 65535], "house was at the ph\u0153nix": [0, 65535], "was at the ph\u0153nix wast": [0, 65535], "at the ph\u0153nix wast thou": [0, 65535], "the ph\u0153nix wast thou mad": [0, 65535], "ph\u0153nix wast thou mad that": [0, 65535], "wast thou mad that thus": [0, 65535], "thou mad that thus so": [0, 65535], "mad that thus so madlie": [0, 65535], "that thus so madlie thou": [0, 65535], "thus so madlie thou did": [0, 65535], "so madlie thou did didst": [0, 65535], "madlie thou did didst answere": [0, 65535], "thou did didst answere me": [0, 65535], "did didst answere me s": [0, 65535], "didst answere me s dro": [0, 65535], "answere me s dro what": [0, 65535], "me s dro what answer": [0, 65535], "s dro what answer sir": [0, 65535], "dro what answer sir when": [0, 65535], "what answer sir when spake": [0, 65535], "answer sir when spake i": [0, 65535], "sir when spake i such": [0, 65535], "when spake i such a": [0, 65535], "spake i such a word": [0, 65535], "i such a word e": [0, 65535], "such a word e ant": [0, 65535], "a word e ant euen": [0, 65535], "word e ant euen now": [0, 65535], "e ant euen now euen": [0, 65535], "ant euen now euen here": [0, 65535], "euen now euen here not": [0, 65535], "now euen here not halfe": [0, 65535], "euen here not halfe an": [0, 65535], "here not halfe an howre": [0, 65535], "not halfe an howre since": [0, 65535], "halfe an howre since s": [0, 65535], "an howre since s dro": [0, 65535], "howre since s dro i": [0, 65535], "since s dro i did": [0, 65535], "s dro i did not": [0, 65535], "dro i did not see": [0, 65535], "i did not see you": [0, 65535], "did not see you since": [0, 65535], "not see you since you": [0, 65535], "see you since you sent": [0, 65535], "you since you sent me": [0, 65535], "since you sent me hence": [0, 65535], "you sent me hence home": [0, 65535], "sent me hence home to": [0, 65535], "me hence home to the": [0, 65535], "hence home to the centaur": [0, 65535], "home to the centaur with": [0, 65535], "to the centaur with the": [0, 65535], "the centaur with the gold": [0, 65535], "centaur with the gold you": [0, 65535], "with the gold you gaue": [0, 65535], "the gold you gaue me": [0, 65535], "gold you gaue me ant": [0, 65535], "you gaue me ant villaine": [0, 65535], "gaue me ant villaine thou": [0, 65535], "me ant villaine thou didst": [0, 65535], "ant villaine thou didst denie": [0, 65535], "villaine thou didst denie the": [0, 65535], "thou didst denie the golds": [0, 65535], "didst denie the golds receit": [0, 65535], "denie the golds receit and": [0, 65535], "the golds receit and toldst": [0, 65535], "golds receit and toldst me": [0, 65535], "receit and toldst me of": [0, 65535], "and toldst me of a": [0, 65535], "toldst me of a mistresse": [0, 65535], "me of a mistresse and": [0, 65535], "of a mistresse and a": [0, 65535], "a mistresse and a dinner": [0, 65535], "mistresse and a dinner for": [0, 65535], "and a dinner for which": [0, 65535], "a dinner for which i": [0, 65535], "dinner for which i hope": [0, 65535], "for which i hope thou": [0, 65535], "which i hope thou feltst": [0, 65535], "i hope thou feltst i": [0, 65535], "hope thou feltst i was": [0, 65535], "thou feltst i was displeas'd": [0, 65535], "feltst i was displeas'd s": [0, 65535], "i was displeas'd s dro": [0, 65535], "was displeas'd s dro i": [0, 65535], "displeas'd s dro i am": [0, 65535], "s dro i am glad": [0, 65535], "dro i am glad to": [0, 65535], "i am glad to see": [0, 65535], "am glad to see you": [0, 65535], "glad to see you in": [0, 65535], "to see you in this": [0, 65535], "see you in this merrie": [0, 65535], "you in this merrie vaine": [0, 65535], "in this merrie vaine what": [0, 65535], "this merrie vaine what meanes": [0, 65535], "merrie vaine what meanes this": [0, 65535], "vaine what meanes this iest": [0, 65535], "what meanes this iest i": [0, 65535], "meanes this iest i pray": [0, 65535], "this iest i pray you": [0, 65535], "iest i pray you master": [0, 65535], "i pray you master tell": [0, 65535], "pray you master tell me": [0, 65535], "you master tell me ant": [0, 65535], "master tell me ant yea": [0, 65535], "tell me ant yea dost": [0, 65535], "me ant yea dost thou": [0, 65535], "ant yea dost thou ieere": [0, 65535], "yea dost thou ieere flowt": [0, 65535], "dost thou ieere flowt me": [0, 65535], "thou ieere flowt me in": [0, 65535], "ieere flowt me in the": [0, 65535], "flowt me in the teeth": [0, 65535], "me in the teeth thinkst": [0, 65535], "in the teeth thinkst thou": [0, 65535], "the teeth thinkst thou i": [0, 65535], "teeth thinkst thou i iest": [0, 65535], "thinkst thou i iest hold": [0, 65535], "thou i iest hold take": [0, 65535], "i iest hold take thou": [0, 65535], "iest hold take thou that": [0, 65535], "hold take thou that that": [0, 65535], "take thou that that beats": [0, 65535], "thou that that beats dro": [0, 65535], "that that beats dro s": [0, 65535], "that beats dro s dr": [0, 65535], "beats dro s dr hold": [0, 65535], "dro s dr hold sir": [0, 65535], "s dr hold sir for": [0, 65535], "dr hold sir for gods": [0, 65535], "hold sir for gods sake": [0, 65535], "sir for gods sake now": [0, 65535], "for gods sake now your": [0, 65535], "gods sake now your iest": [0, 65535], "sake now your iest is": [0, 65535], "now your iest is earnest": [0, 65535], "your iest is earnest vpon": [0, 65535], "iest is earnest vpon what": [0, 65535], "is earnest vpon what bargaine": [0, 65535], "earnest vpon what bargaine do": [0, 65535], "vpon what bargaine do you": [0, 65535], "what bargaine do you giue": [0, 65535], "bargaine do you giue it": [0, 65535], "do you giue it me": [0, 65535], "you giue it me antiph": [0, 65535], "giue it me antiph because": [0, 65535], "it me antiph because that": [0, 65535], "me antiph because that i": [0, 65535], "antiph because that i familiarlie": [0, 65535], "because that i familiarlie sometimes": [0, 65535], "that i familiarlie sometimes doe": [0, 65535], "i familiarlie sometimes doe vse": [0, 65535], "familiarlie sometimes doe vse you": [0, 65535], "sometimes doe vse you for": [0, 65535], "doe vse you for my": [0, 65535], "vse you for my foole": [0, 65535], "you for my foole and": [0, 65535], "for my foole and chat": [0, 65535], "my foole and chat with": [0, 65535], "foole and chat with you": [0, 65535], "and chat with you your": [0, 65535], "chat with you your sawcinesse": [0, 65535], "with you your sawcinesse will": [0, 65535], "you your sawcinesse will iest": [0, 65535], "your sawcinesse will iest vpon": [0, 65535], "sawcinesse will iest vpon my": [0, 65535], "will iest vpon my loue": [0, 65535], "iest vpon my loue and": [0, 65535], "vpon my loue and make": [0, 65535], "my loue and make a": [0, 65535], "loue and make a common": [0, 65535], "and make a common of": [0, 65535], "make a common of my": [0, 65535], "a common of my serious": [0, 65535], "common of my serious howres": [0, 65535], "of my serious howres when": [0, 65535], "my serious howres when the": [0, 65535], "serious howres when the sunne": [0, 65535], "howres when the sunne shines": [0, 65535], "when the sunne shines let": [0, 65535], "the sunne shines let foolish": [0, 65535], "sunne shines let foolish gnats": [0, 65535], "shines let foolish gnats make": [0, 65535], "let foolish gnats make sport": [0, 65535], "foolish gnats make sport but": [0, 65535], "gnats make sport but creepe": [0, 65535], "make sport but creepe in": [0, 65535], "sport but creepe in crannies": [0, 65535], "but creepe in crannies when": [0, 65535], "creepe in crannies when he": [0, 65535], "in crannies when he hides": [0, 65535], "crannies when he hides his": [0, 65535], "when he hides his beames": [0, 65535], "he hides his beames if": [0, 65535], "hides his beames if you": [0, 65535], "his beames if you will": [0, 65535], "beames if you will iest": [0, 65535], "if you will iest with": [0, 65535], "you will iest with me": [0, 65535], "will iest with me know": [0, 65535], "iest with me know my": [0, 65535], "with me know my aspect": [0, 65535], "me know my aspect and": [0, 65535], "know my aspect and fashion": [0, 65535], "my aspect and fashion your": [0, 65535], "aspect and fashion your demeanor": [0, 65535], "and fashion your demeanor to": [0, 65535], "fashion your demeanor to my": [0, 65535], "your demeanor to my lookes": [0, 65535], "demeanor to my lookes or": [0, 65535], "to my lookes or i": [0, 65535], "my lookes or i will": [0, 65535], "lookes or i will beat": [0, 65535], "or i will beat this": [0, 65535], "i will beat this method": [0, 65535], "will beat this method in": [0, 65535], "beat this method in your": [0, 65535], "this method in your sconce": [0, 65535], "method in your sconce s": [0, 65535], "in your sconce s dro": [0, 65535], "your sconce s dro sconce": [0, 65535], "sconce s dro sconce call": [0, 65535], "s dro sconce call you": [0, 65535], "dro sconce call you it": [0, 65535], "sconce call you it so": [0, 65535], "call you it so you": [0, 65535], "you it so you would": [0, 65535], "it so you would leaue": [0, 65535], "so you would leaue battering": [0, 65535], "you would leaue battering i": [0, 65535], "would leaue battering i had": [0, 65535], "leaue battering i had rather": [0, 65535], "battering i had rather haue": [0, 65535], "i had rather haue it": [0, 65535], "had rather haue it a": [0, 65535], "rather haue it a head": [0, 65535], "haue it a head and": [0, 65535], "it a head and you": [0, 65535], "a head and you vse": [0, 65535], "head and you vse these": [0, 65535], "and you vse these blows": [0, 65535], "you vse these blows long": [0, 65535], "vse these blows long i": [0, 65535], "these blows long i must": [0, 65535], "blows long i must get": [0, 65535], "long i must get a": [0, 65535], "i must get a sconce": [0, 65535], "must get a sconce for": [0, 65535], "get a sconce for my": [0, 65535], "a sconce for my head": [0, 65535], "sconce for my head and": [0, 65535], "for my head and insconce": [0, 65535], "my head and insconce it": [0, 65535], "head and insconce it to": [0, 65535], "and insconce it to or": [0, 65535], "insconce it to or else": [0, 65535], "it to or else i": [0, 65535], "to or else i shall": [0, 65535], "or else i shall seek": [0, 65535], "else i shall seek my": [0, 65535], "i shall seek my wit": [0, 65535], "shall seek my wit in": [0, 65535], "seek my wit in my": [0, 65535], "my wit in my shoulders": [0, 65535], "wit in my shoulders but": [0, 65535], "in my shoulders but i": [0, 65535], "my shoulders but i pray": [0, 65535], "shoulders but i pray sir": [0, 65535], "but i pray sir why": [0, 65535], "i pray sir why am": [0, 65535], "pray sir why am i": [0, 65535], "sir why am i beaten": [0, 65535], "why am i beaten ant": [0, 65535], "am i beaten ant dost": [0, 65535], "i beaten ant dost thou": [0, 65535], "beaten ant dost thou not": [0, 65535], "ant dost thou not know": [0, 65535], "dost thou not know s": [0, 65535], "thou not know s dro": [0, 65535], "not know s dro nothing": [0, 65535], "know s dro nothing sir": [0, 65535], "s dro nothing sir but": [0, 65535], "dro nothing sir but that": [0, 65535], "nothing sir but that i": [0, 65535], "sir but that i am": [0, 65535], "but that i am beaten": [0, 65535], "that i am beaten ant": [0, 65535], "i am beaten ant shall": [0, 65535], "am beaten ant shall i": [0, 65535], "beaten ant shall i tell": [0, 65535], "ant shall i tell you": [0, 65535], "shall i tell you why": [0, 65535], "i tell you why s": [0, 65535], "tell you why s dro": [0, 65535], "you why s dro i": [0, 65535], "why s dro i sir": [0, 65535], "s dro i sir and": [0, 65535], "dro i sir and wherefore": [0, 65535], "i sir and wherefore for": [0, 65535], "sir and wherefore for they": [0, 65535], "and wherefore for they say": [0, 65535], "wherefore for they say euery": [0, 65535], "for they say euery why": [0, 65535], "they say euery why hath": [0, 65535], "say euery why hath a": [0, 65535], "euery why hath a wherefore": [0, 65535], "why hath a wherefore ant": [0, 65535], "hath a wherefore ant why": [0, 65535], "a wherefore ant why first": [0, 65535], "wherefore ant why first for": [0, 65535], "ant why first for flowting": [0, 65535], "why first for flowting me": [0, 65535], "first for flowting me and": [0, 65535], "for flowting me and then": [0, 65535], "flowting me and then wherefore": [0, 65535], "me and then wherefore for": [0, 65535], "and then wherefore for vrging": [0, 65535], "then wherefore for vrging it": [0, 65535], "wherefore for vrging it the": [0, 65535], "for vrging it the second": [0, 65535], "vrging it the second time": [0, 65535], "it the second time to": [0, 65535], "the second time to me": [0, 65535], "second time to me s": [0, 65535], "time to me s dro": [0, 65535], "to me s dro was": [0, 65535], "me s dro was there": [0, 65535], "s dro was there euer": [0, 65535], "dro was there euer anie": [0, 65535], "was there euer anie man": [0, 65535], "there euer anie man thus": [0, 65535], "euer anie man thus beaten": [0, 65535], "anie man thus beaten out": [0, 65535], "man thus beaten out of": [0, 65535], "thus beaten out of season": [0, 65535], "beaten out of season when": [0, 65535], "out of season when in": [0, 65535], "of season when in the": [0, 65535], "season when in the why": [0, 65535], "when in the why and": [0, 65535], "in the why and the": [0, 65535], "the why and the wherefore": [0, 65535], "why and the wherefore is": [0, 65535], "and the wherefore is neither": [0, 65535], "the wherefore is neither rime": [0, 65535], "wherefore is neither rime nor": [0, 65535], "is neither rime nor reason": [0, 65535], "neither rime nor reason well": [0, 65535], "rime nor reason well sir": [0, 65535], "nor reason well sir i": [0, 65535], "reason well sir i thanke": [0, 65535], "well sir i thanke you": [0, 65535], "sir i thanke you ant": [0, 65535], "i thanke you ant thanke": [0, 65535], "thanke you ant thanke me": [0, 65535], "you ant thanke me sir": [0, 65535], "ant thanke me sir for": [0, 65535], "thanke me sir for what": [0, 65535], "me sir for what s": [0, 65535], "sir for what s dro": [0, 65535], "for what s dro marry": [0, 65535], "what s dro marry sir": [0, 65535], "s dro marry sir for": [0, 65535], "dro marry sir for this": [0, 65535], "marry sir for this something": [0, 65535], "sir for this something that": [0, 65535], "for this something that you": [0, 65535], "this something that you gaue": [0, 65535], "something that you gaue me": [0, 65535], "that you gaue me for": [0, 65535], "you gaue me for nothing": [0, 65535], "gaue me for nothing ant": [0, 65535], "me for nothing ant ile": [0, 65535], "for nothing ant ile make": [0, 65535], "nothing ant ile make you": [0, 65535], "ant ile make you amends": [0, 65535], "ile make you amends next": [0, 65535], "make you amends next to": [0, 65535], "you amends next to giue": [0, 65535], "amends next to giue you": [0, 65535], "next to giue you nothing": [0, 65535], "to giue you nothing for": [0, 65535], "giue you nothing for something": [0, 65535], "you nothing for something but": [0, 65535], "nothing for something but say": [0, 65535], "for something but say sir": [0, 65535], "something but say sir is": [0, 65535], "but say sir is it": [0, 65535], "say sir is it dinner": [0, 65535], "sir is it dinner time": [0, 65535], "is it dinner time s": [0, 65535], "it dinner time s dro": [0, 65535], "dinner time s dro no": [0, 65535], "time s dro no sir": [0, 65535], "s dro no sir i": [0, 65535], "dro no sir i thinke": [0, 65535], "no sir i thinke the": [0, 65535], "sir i thinke the meat": [0, 65535], "i thinke the meat wants": [0, 65535], "thinke the meat wants that": [0, 65535], "the meat wants that i": [0, 65535], "meat wants that i haue": [0, 65535], "wants that i haue ant": [0, 65535], "that i haue ant in": [0, 65535], "i haue ant in good": [0, 65535], "haue ant in good time": [0, 65535], "ant in good time sir": [0, 65535], "in good time sir what's": [0, 65535], "good time sir what's that": [0, 65535], "time sir what's that s": [0, 65535], "sir what's that s dro": [0, 65535], "what's that s dro basting": [0, 65535], "that s dro basting ant": [0, 65535], "s dro basting ant well": [0, 65535], "dro basting ant well sir": [0, 65535], "basting ant well sir then": [0, 65535], "ant well sir then 'twill": [0, 65535], "well sir then 'twill be": [0, 65535], "sir then 'twill be drie": [0, 65535], "then 'twill be drie s": [0, 65535], "'twill be drie s dro": [0, 65535], "be drie s dro if": [0, 65535], "drie s dro if it": [0, 65535], "s dro if it be": [0, 65535], "dro if it be sir": [0, 65535], "if it be sir i": [0, 65535], "it be sir i pray": [0, 65535], "be sir i pray you": [0, 65535], "sir i pray you eat": [0, 65535], "i pray you eat none": [0, 65535], "pray you eat none of": [0, 65535], "you eat none of it": [0, 65535], "eat none of it ant": [0, 65535], "none of it ant your": [0, 65535], "of it ant your reason": [0, 65535], "it ant your reason s": [0, 65535], "ant your reason s dro": [0, 65535], "your reason s dro lest": [0, 65535], "reason s dro lest it": [0, 65535], "s dro lest it make": [0, 65535], "dro lest it make you": [0, 65535], "lest it make you chollericke": [0, 65535], "it make you chollericke and": [0, 65535], "make you chollericke and purchase": [0, 65535], "you chollericke and purchase me": [0, 65535], "chollericke and purchase me another": [0, 65535], "and purchase me another drie": [0, 65535], "purchase me another drie basting": [0, 65535], "me another drie basting ant": [0, 65535], "another drie basting ant well": [0, 65535], "drie basting ant well sir": [0, 65535], "basting ant well sir learne": [0, 65535], "ant well sir learne to": [0, 65535], "well sir learne to iest": [0, 65535], "sir learne to iest in": [0, 65535], "learne to iest in good": [0, 65535], "to iest in good time": [0, 65535], "iest in good time there's": [0, 65535], "in good time there's a": [0, 65535], "good time there's a time": [0, 65535], "time there's a time for": [0, 65535], "there's a time for all": [0, 65535], "a time for all things": [0, 65535], "time for all things s": [0, 65535], "for all things s dro": [0, 65535], "all things s dro i": [0, 65535], "things s dro i durst": [0, 65535], "s dro i durst haue": [0, 65535], "dro i durst haue denied": [0, 65535], "i durst haue denied that": [0, 65535], "durst haue denied that before": [0, 65535], "haue denied that before you": [0, 65535], "denied that before you were": [0, 65535], "that before you were so": [0, 65535], "before you were so chollericke": [0, 65535], "you were so chollericke anti": [0, 65535], "were so chollericke anti by": [0, 65535], "so chollericke anti by what": [0, 65535], "chollericke anti by what rule": [0, 65535], "anti by what rule sir": [0, 65535], "by what rule sir s": [0, 65535], "what rule sir s dro": [0, 65535], "rule sir s dro marry": [0, 65535], "sir s dro marry sir": [0, 65535], "s dro marry sir by": [0, 65535], "dro marry sir by a": [0, 65535], "marry sir by a rule": [0, 65535], "sir by a rule as": [0, 65535], "by a rule as plaine": [0, 65535], "a rule as plaine as": [0, 65535], "rule as plaine as the": [0, 65535], "as plaine as the plaine": [0, 65535], "plaine as the plaine bald": [0, 65535], "as the plaine bald pate": [0, 65535], "the plaine bald pate of": [0, 65535], "plaine bald pate of father": [0, 65535], "bald pate of father time": [0, 65535], "pate of father time himselfe": [0, 65535], "of father time himselfe ant": [0, 65535], "father time himselfe ant let's": [0, 65535], "time himselfe ant let's heare": [0, 65535], "himselfe ant let's heare it": [0, 65535], "ant let's heare it s": [0, 65535], "let's heare it s dro": [0, 65535], "heare it s dro there's": [0, 65535], "it s dro there's no": [0, 65535], "s dro there's no time": [0, 65535], "dro there's no time for": [0, 65535], "there's no time for a": [0, 65535], "no time for a man": [0, 65535], "time for a man to": [0, 65535], "for a man to recouer": [0, 65535], "a man to recouer his": [0, 65535], "man to recouer his haire": [0, 65535], "to recouer his haire that": [0, 65535], "recouer his haire that growes": [0, 65535], "his haire that growes bald": [0, 65535], "haire that growes bald by": [0, 65535], "that growes bald by nature": [0, 65535], "growes bald by nature ant": [0, 65535], "bald by nature ant may": [0, 65535], "by nature ant may he": [0, 65535], "nature ant may he not": [0, 65535], "ant may he not doe": [0, 65535], "may he not doe it": [0, 65535], "he not doe it by": [0, 65535], "not doe it by fine": [0, 65535], "doe it by fine and": [0, 65535], "it by fine and recouerie": [0, 65535], "by fine and recouerie s": [0, 65535], "fine and recouerie s dro": [0, 65535], "and recouerie s dro yes": [0, 65535], "recouerie s dro yes to": [0, 65535], "s dro yes to pay": [0, 65535], "dro yes to pay a": [0, 65535], "yes to pay a fine": [0, 65535], "to pay a fine for": [0, 65535], "pay a fine for a": [0, 65535], "a fine for a perewig": [0, 65535], "fine for a perewig and": [0, 65535], "for a perewig and recouer": [0, 65535], "a perewig and recouer the": [0, 65535], "perewig and recouer the lost": [0, 65535], "and recouer the lost haire": [0, 65535], "recouer the lost haire of": [0, 65535], "the lost haire of another": [0, 65535], "lost haire of another man": [0, 65535], "haire of another man ant": [0, 65535], "of another man ant why": [0, 65535], "another man ant why is": [0, 65535], "man ant why is time": [0, 65535], "ant why is time such": [0, 65535], "why is time such a": [0, 65535], "is time such a niggard": [0, 65535], "time such a niggard of": [0, 65535], "such a niggard of haire": [0, 65535], "a niggard of haire being": [0, 65535], "niggard of haire being as": [0, 65535], "of haire being as it": [0, 65535], "haire being as it is": [0, 65535], "being as it is so": [0, 65535], "as it is so plentifull": [0, 65535], "it is so plentifull an": [0, 65535], "is so plentifull an excrement": [0, 65535], "so plentifull an excrement s": [0, 65535], "plentifull an excrement s dro": [0, 65535], "an excrement s dro because": [0, 65535], "excrement s dro because it": [0, 65535], "s dro because it is": [0, 65535], "dro because it is a": [0, 65535], "because it is a blessing": [0, 65535], "it is a blessing that": [0, 65535], "is a blessing that hee": [0, 65535], "a blessing that hee bestowes": [0, 65535], "blessing that hee bestowes on": [0, 65535], "that hee bestowes on beasts": [0, 65535], "hee bestowes on beasts and": [0, 65535], "bestowes on beasts and what": [0, 65535], "on beasts and what he": [0, 65535], "beasts and what he hath": [0, 65535], "and what he hath scanted": [0, 65535], "what he hath scanted them": [0, 65535], "he hath scanted them in": [0, 65535], "hath scanted them in haire": [0, 65535], "scanted them in haire hee": [0, 65535], "them in haire hee hath": [0, 65535], "in haire hee hath giuen": [0, 65535], "haire hee hath giuen them": [0, 65535], "hee hath giuen them in": [0, 65535], "hath giuen them in wit": [0, 65535], "giuen them in wit ant": [0, 65535], "them in wit ant why": [0, 65535], "in wit ant why but": [0, 65535], "wit ant why but theres": [0, 65535], "ant why but theres manie": [0, 65535], "why but theres manie a": [0, 65535], "but theres manie a man": [0, 65535], "theres manie a man hath": [0, 65535], "manie a man hath more": [0, 65535], "a man hath more haire": [0, 65535], "man hath more haire then": [0, 65535], "hath more haire then wit": [0, 65535], "more haire then wit s": [0, 65535], "haire then wit s dro": [0, 65535], "then wit s dro not": [0, 65535], "wit s dro not a": [0, 65535], "s dro not a man": [0, 65535], "dro not a man of": [0, 65535], "not a man of those": [0, 65535], "a man of those but": [0, 65535], "man of those but he": [0, 65535], "of those but he hath": [0, 65535], "those but he hath the": [0, 65535], "but he hath the wit": [0, 65535], "he hath the wit to": [0, 65535], "hath the wit to lose": [0, 65535], "the wit to lose his": [0, 65535], "wit to lose his haire": [0, 65535], "to lose his haire ant": [0, 65535], "lose his haire ant why": [0, 65535], "his haire ant why thou": [0, 65535], "haire ant why thou didst": [0, 65535], "ant why thou didst conclude": [0, 65535], "why thou didst conclude hairy": [0, 65535], "thou didst conclude hairy men": [0, 65535], "didst conclude hairy men plain": [0, 65535], "conclude hairy men plain dealers": [0, 65535], "hairy men plain dealers without": [0, 65535], "men plain dealers without wit": [0, 65535], "plain dealers without wit s": [0, 65535], "dealers without wit s dro": [0, 65535], "without wit s dro the": [0, 65535], "wit s dro the plainer": [0, 65535], "s dro the plainer dealer": [0, 65535], "dro the plainer dealer the": [0, 65535], "the plainer dealer the sooner": [0, 65535], "plainer dealer the sooner lost": [0, 65535], "dealer the sooner lost yet": [0, 65535], "the sooner lost yet he": [0, 65535], "sooner lost yet he looseth": [0, 65535], "lost yet he looseth it": [0, 65535], "yet he looseth it in": [0, 65535], "he looseth it in a": [0, 65535], "looseth it in a kinde": [0, 65535], "it in a kinde of": [0, 65535], "in a kinde of iollitie": [0, 65535], "a kinde of iollitie an": [0, 65535], "kinde of iollitie an for": [0, 65535], "of iollitie an for what": [0, 65535], "iollitie an for what reason": [0, 65535], "an for what reason s": [0, 65535], "for what reason s dro": [0, 65535], "what reason s dro for": [0, 65535], "reason s dro for two": [0, 65535], "s dro for two and": [0, 65535], "dro for two and sound": [0, 65535], "for two and sound ones": [0, 65535], "two and sound ones to": [0, 65535], "and sound ones to an": [0, 65535], "sound ones to an nay": [0, 65535], "ones to an nay not": [0, 65535], "to an nay not sound": [0, 65535], "an nay not sound i": [0, 65535], "nay not sound i pray": [0, 65535], "not sound i pray you": [0, 65535], "sound i pray you s": [0, 65535], "i pray you s dro": [0, 65535], "pray you s dro sure": [0, 65535], "you s dro sure ones": [0, 65535], "s dro sure ones then": [0, 65535], "dro sure ones then an": [0, 65535], "sure ones then an nay": [0, 65535], "ones then an nay not": [0, 65535], "then an nay not sure": [0, 65535], "an nay not sure in": [0, 65535], "nay not sure in a": [0, 65535], "not sure in a thing": [0, 65535], "sure in a thing falsing": [0, 65535], "in a thing falsing s": [0, 65535], "a thing falsing s dro": [0, 65535], "thing falsing s dro certaine": [0, 65535], "falsing s dro certaine ones": [0, 65535], "s dro certaine ones then": [0, 65535], "dro certaine ones then an": [0, 65535], "certaine ones then an name": [0, 65535], "ones then an name them": [0, 65535], "then an name them s": [0, 65535], "an name them s dro": [0, 65535], "name them s dro the": [0, 65535], "them s dro the one": [0, 65535], "s dro the one to": [0, 65535], "dro the one to saue": [0, 65535], "the one to saue the": [0, 65535], "one to saue the money": [0, 65535], "to saue the money that": [0, 65535], "saue the money that he": [0, 65535], "the money that he spends": [0, 65535], "money that he spends in": [0, 65535], "that he spends in trying": [0, 65535], "he spends in trying the": [0, 65535], "spends in trying the other": [0, 65535], "in trying the other that": [0, 65535], "trying the other that at": [0, 65535], "the other that at dinner": [0, 65535], "other that at dinner they": [0, 65535], "that at dinner they should": [0, 65535], "at dinner they should not": [0, 65535], "dinner they should not drop": [0, 65535], "they should not drop in": [0, 65535], "should not drop in his": [0, 65535], "not drop in his porrage": [0, 65535], "drop in his porrage an": [0, 65535], "in his porrage an you": [0, 65535], "his porrage an you would": [0, 65535], "porrage an you would all": [0, 65535], "an you would all this": [0, 65535], "you would all this time": [0, 65535], "would all this time haue": [0, 65535], "all this time haue prou'd": [0, 65535], "this time haue prou'd there": [0, 65535], "time haue prou'd there is": [0, 65535], "haue prou'd there is no": [0, 65535], "prou'd there is no time": [0, 65535], "there is no time for": [0, 65535], "is no time for all": [0, 65535], "no time for all things": [0, 65535], "all things s dro marry": [0, 65535], "things s dro marry and": [0, 65535], "s dro marry and did": [0, 65535], "dro marry and did sir": [0, 65535], "marry and did sir namely": [0, 65535], "and did sir namely in": [0, 65535], "did sir namely in no": [0, 65535], "sir namely in no time": [0, 65535], "namely in no time to": [0, 65535], "in no time to recouer": [0, 65535], "no time to recouer haire": [0, 65535], "time to recouer haire lost": [0, 65535], "to recouer haire lost by": [0, 65535], "recouer haire lost by nature": [0, 65535], "haire lost by nature an": [0, 65535], "lost by nature an but": [0, 65535], "by nature an but your": [0, 65535], "nature an but your reason": [0, 65535], "an but your reason was": [0, 65535], "but your reason was not": [0, 65535], "your reason was not substantiall": [0, 65535], "reason was not substantiall why": [0, 65535], "was not substantiall why there": [0, 65535], "not substantiall why there is": [0, 65535], "substantiall why there is no": [0, 65535], "why there is no time": [0, 65535], "there is no time to": [0, 65535], "is no time to recouer": [0, 65535], "no time to recouer s": [0, 65535], "time to recouer s dro": [0, 65535], "to recouer s dro thus": [0, 65535], "recouer s dro thus i": [0, 65535], "s dro thus i mend": [0, 65535], "dro thus i mend it": [0, 65535], "thus i mend it time": [0, 65535], "i mend it time himselfe": [0, 65535], "mend it time himselfe is": [0, 65535], "it time himselfe is bald": [0, 65535], "time himselfe is bald and": [0, 65535], "himselfe is bald and therefore": [0, 65535], "is bald and therefore to": [0, 65535], "bald and therefore to the": [0, 65535], "and therefore to the worlds": [0, 65535], "therefore to the worlds end": [0, 65535], "to the worlds end will": [0, 65535], "the worlds end will haue": [0, 65535], "worlds end will haue bald": [0, 65535], "end will haue bald followers": [0, 65535], "will haue bald followers an": [0, 65535], "haue bald followers an i": [0, 65535], "bald followers an i knew": [0, 65535], "followers an i knew 'twould": [0, 65535], "an i knew 'twould be": [0, 65535], "i knew 'twould be a": [0, 65535], "knew 'twould be a bald": [0, 65535], "'twould be a bald conclusion": [0, 65535], "be a bald conclusion but": [0, 65535], "a bald conclusion but soft": [0, 65535], "bald conclusion but soft who": [0, 65535], "conclusion but soft who wafts": [0, 65535], "but soft who wafts vs": [0, 65535], "soft who wafts vs yonder": [0, 65535], "who wafts vs yonder enter": [0, 65535], "wafts vs yonder enter adriana": [0, 65535], "vs yonder enter adriana and": [0, 65535], "yonder enter adriana and luciana": [0, 65535], "enter adriana and luciana adri": [0, 65535], "adriana and luciana adri i": [0, 65535], "and luciana adri i i": [0, 65535], "luciana adri i i antipholus": [0, 65535], "adri i i antipholus looke": [0, 65535], "i i antipholus looke strange": [0, 65535], "i antipholus looke strange and": [0, 65535], "antipholus looke strange and frowne": [0, 65535], "looke strange and frowne some": [0, 65535], "strange and frowne some other": [0, 65535], "and frowne some other mistresse": [0, 65535], "frowne some other mistresse hath": [0, 65535], "some other mistresse hath thy": [0, 65535], "other mistresse hath thy sweet": [0, 65535], "mistresse hath thy sweet aspects": [0, 65535], "hath thy sweet aspects i": [0, 65535], "thy sweet aspects i am": [0, 65535], "sweet aspects i am not": [0, 65535], "aspects i am not adriana": [0, 65535], "i am not adriana nor": [0, 65535], "am not adriana nor thy": [0, 65535], "not adriana nor thy wife": [0, 65535], "adriana nor thy wife the": [0, 65535], "nor thy wife the time": [0, 65535], "thy wife the time was": [0, 65535], "wife the time was once": [0, 65535], "the time was once when": [0, 65535], "time was once when thou": [0, 65535], "was once when thou vn": [0, 65535], "once when thou vn vrg'd": [0, 65535], "when thou vn vrg'd wouldst": [0, 65535], "thou vn vrg'd wouldst vow": [0, 65535], "vn vrg'd wouldst vow that": [0, 65535], "vrg'd wouldst vow that neuer": [0, 65535], "wouldst vow that neuer words": [0, 65535], "vow that neuer words were": [0, 65535], "that neuer words were musicke": [0, 65535], "neuer words were musicke to": [0, 65535], "words were musicke to thine": [0, 65535], "were musicke to thine eare": [0, 65535], "musicke to thine eare that": [0, 65535], "to thine eare that neuer": [0, 65535], "thine eare that neuer obiect": [0, 65535], "eare that neuer obiect pleasing": [0, 65535], "that neuer obiect pleasing in": [0, 65535], "neuer obiect pleasing in thine": [0, 65535], "obiect pleasing in thine eye": [0, 65535], "pleasing in thine eye that": [0, 65535], "in thine eye that neuer": [0, 65535], "thine eye that neuer touch": [0, 65535], "eye that neuer touch well": [0, 65535], "that neuer touch well welcome": [0, 65535], "neuer touch well welcome to": [0, 65535], "touch well welcome to thy": [0, 65535], "well welcome to thy hand": [0, 65535], "welcome to thy hand that": [0, 65535], "to thy hand that neuer": [0, 65535], "thy hand that neuer meat": [0, 65535], "hand that neuer meat sweet": [0, 65535], "that neuer meat sweet sauour'd": [0, 65535], "neuer meat sweet sauour'd in": [0, 65535], "meat sweet sauour'd in thy": [0, 65535], "sweet sauour'd in thy taste": [0, 65535], "sauour'd in thy taste vnlesse": [0, 65535], "in thy taste vnlesse i": [0, 65535], "thy taste vnlesse i spake": [0, 65535], "taste vnlesse i spake or": [0, 65535], "vnlesse i spake or look'd": [0, 65535], "i spake or look'd or": [0, 65535], "spake or look'd or touch'd": [0, 65535], "or look'd or touch'd or": [0, 65535], "look'd or touch'd or caru'd": [0, 65535], "or touch'd or caru'd to": [0, 65535], "touch'd or caru'd to thee": [0, 65535], "or caru'd to thee how": [0, 65535], "caru'd to thee how comes": [0, 65535], "to thee how comes it": [0, 65535], "thee how comes it now": [0, 65535], "how comes it now my": [0, 65535], "comes it now my husband": [0, 65535], "it now my husband oh": [0, 65535], "now my husband oh how": [0, 65535], "my husband oh how comes": [0, 65535], "husband oh how comes it": [0, 65535], "oh how comes it that": [0, 65535], "how comes it that thou": [0, 65535], "comes it that thou art": [0, 65535], "it that thou art then": [0, 65535], "that thou art then estranged": [0, 65535], "thou art then estranged from": [0, 65535], "art then estranged from thy": [0, 65535], "then estranged from thy selfe": [0, 65535], "estranged from thy selfe thy": [0, 65535], "from thy selfe thy selfe": [0, 65535], "thy selfe thy selfe i": [0, 65535], "selfe thy selfe i call": [0, 65535], "thy selfe i call it": [0, 65535], "selfe i call it being": [0, 65535], "i call it being strange": [0, 65535], "call it being strange to": [0, 65535], "it being strange to me": [0, 65535], "being strange to me that": [0, 65535], "strange to me that vndiuidable": [0, 65535], "to me that vndiuidable incorporate": [0, 65535], "me that vndiuidable incorporate am": [0, 65535], "that vndiuidable incorporate am better": [0, 65535], "vndiuidable incorporate am better then": [0, 65535], "incorporate am better then thy": [0, 65535], "am better then thy deere": [0, 65535], "better then thy deere selfes": [0, 65535], "then thy deere selfes better": [0, 65535], "thy deere selfes better part": [0, 65535], "deere selfes better part ah": [0, 65535], "selfes better part ah doe": [0, 65535], "better part ah doe not": [0, 65535], "part ah doe not teare": [0, 65535], "ah doe not teare away": [0, 65535], "doe not teare away thy": [0, 65535], "not teare away thy selfe": [0, 65535], "teare away thy selfe from": [0, 65535], "away thy selfe from me": [0, 65535], "thy selfe from me for": [0, 65535], "selfe from me for know": [0, 65535], "from me for know my": [0, 65535], "me for know my loue": [0, 65535], "for know my loue as": [0, 65535], "know my loue as easie": [0, 65535], "my loue as easie maist": [0, 65535], "loue as easie maist thou": [0, 65535], "as easie maist thou fall": [0, 65535], "easie maist thou fall a": [0, 65535], "maist thou fall a drop": [0, 65535], "thou fall a drop of": [0, 65535], "fall a drop of water": [0, 65535], "a drop of water in": [0, 65535], "drop of water in the": [0, 65535], "of water in the breaking": [0, 65535], "water in the breaking gulfe": [0, 65535], "in the breaking gulfe and": [0, 65535], "the breaking gulfe and take": [0, 65535], "breaking gulfe and take vnmingled": [0, 65535], "gulfe and take vnmingled thence": [0, 65535], "and take vnmingled thence that": [0, 65535], "take vnmingled thence that drop": [0, 65535], "vnmingled thence that drop againe": [0, 65535], "thence that drop againe without": [0, 65535], "that drop againe without addition": [0, 65535], "drop againe without addition or": [0, 65535], "againe without addition or diminishing": [0, 65535], "without addition or diminishing as": [0, 65535], "addition or diminishing as take": [0, 65535], "or diminishing as take from": [0, 65535], "diminishing as take from me": [0, 65535], "as take from me thy": [0, 65535], "take from me thy selfe": [0, 65535], "from me thy selfe and": [0, 65535], "me thy selfe and not": [0, 65535], "thy selfe and not me": [0, 65535], "selfe and not me too": [0, 65535], "and not me too how": [0, 65535], "not me too how deerely": [0, 65535], "me too how deerely would": [0, 65535], "too how deerely would it": [0, 65535], "how deerely would it touch": [0, 65535], "deerely would it touch thee": [0, 65535], "would it touch thee to": [0, 65535], "it touch thee to the": [0, 65535], "touch thee to the quicke": [0, 65535], "thee to the quicke shouldst": [0, 65535], "to the quicke shouldst thou": [0, 65535], "the quicke shouldst thou but": [0, 65535], "quicke shouldst thou but heare": [0, 65535], "shouldst thou but heare i": [0, 65535], "thou but heare i were": [0, 65535], "but heare i were licencious": [0, 65535], "heare i were licencious and": [0, 65535], "i were licencious and that": [0, 65535], "were licencious and that this": [0, 65535], "licencious and that this body": [0, 65535], "and that this body consecrate": [0, 65535], "that this body consecrate to": [0, 65535], "this body consecrate to thee": [0, 65535], "body consecrate to thee by": [0, 65535], "consecrate to thee by ruffian": [0, 65535], "to thee by ruffian lust": [0, 65535], "thee by ruffian lust should": [0, 65535], "by ruffian lust should be": [0, 65535], "ruffian lust should be contaminate": [0, 65535], "lust should be contaminate wouldst": [0, 65535], "should be contaminate wouldst thou": [0, 65535], "be contaminate wouldst thou not": [0, 65535], "contaminate wouldst thou not spit": [0, 65535], "wouldst thou not spit at": [0, 65535], "thou not spit at me": [0, 65535], "not spit at me and": [0, 65535], "spit at me and spurne": [0, 65535], "at me and spurne at": [0, 65535], "me and spurne at me": [0, 65535], "and spurne at me and": [0, 65535], "spurne at me and hurle": [0, 65535], "at me and hurle the": [0, 65535], "me and hurle the name": [0, 65535], "and hurle the name of": [0, 65535], "hurle the name of husband": [0, 65535], "the name of husband in": [0, 65535], "name of husband in my": [0, 65535], "of husband in my face": [0, 65535], "husband in my face and": [0, 65535], "in my face and teare": [0, 65535], "my face and teare the": [0, 65535], "face and teare the stain'd": [0, 65535], "and teare the stain'd skin": [0, 65535], "teare the stain'd skin of": [0, 65535], "the stain'd skin of my": [0, 65535], "stain'd skin of my harlot": [0, 65535], "skin of my harlot brow": [0, 65535], "of my harlot brow and": [0, 65535], "my harlot brow and from": [0, 65535], "harlot brow and from my": [0, 65535], "brow and from my false": [0, 65535], "and from my false hand": [0, 65535], "from my false hand cut": [0, 65535], "my false hand cut the": [0, 65535], "false hand cut the wedding": [0, 65535], "hand cut the wedding ring": [0, 65535], "cut the wedding ring and": [0, 65535], "the wedding ring and breake": [0, 65535], "wedding ring and breake it": [0, 65535], "ring and breake it with": [0, 65535], "and breake it with a": [0, 65535], "breake it with a deepe": [0, 65535], "it with a deepe diuorcing": [0, 65535], "with a deepe diuorcing vow": [0, 65535], "a deepe diuorcing vow i": [0, 65535], "deepe diuorcing vow i know": [0, 65535], "diuorcing vow i know thou": [0, 65535], "vow i know thou canst": [0, 65535], "i know thou canst and": [0, 65535], "know thou canst and therefore": [0, 65535], "thou canst and therefore see": [0, 65535], "canst and therefore see thou": [0, 65535], "and therefore see thou doe": [0, 65535], "therefore see thou doe it": [0, 65535], "see thou doe it i": [0, 65535], "thou doe it i am": [0, 65535], "doe it i am possest": [0, 65535], "it i am possest with": [0, 65535], "i am possest with an": [0, 65535], "am possest with an adulterate": [0, 65535], "possest with an adulterate blot": [0, 65535], "with an adulterate blot my": [0, 65535], "an adulterate blot my bloud": [0, 65535], "adulterate blot my bloud is": [0, 65535], "blot my bloud is mingled": [0, 65535], "my bloud is mingled with": [0, 65535], "bloud is mingled with the": [0, 65535], "is mingled with the crime": [0, 65535], "mingled with the crime of": [0, 65535], "with the crime of lust": [0, 65535], "the crime of lust for": [0, 65535], "crime of lust for if": [0, 65535], "of lust for if we": [0, 65535], "lust for if we two": [0, 65535], "for if we two be": [0, 65535], "if we two be one": [0, 65535], "we two be one and": [0, 65535], "two be one and thou": [0, 65535], "be one and thou play": [0, 65535], "one and thou play false": [0, 65535], "and thou play false i": [0, 65535], "thou play false i doe": [0, 65535], "play false i doe digest": [0, 65535], "false i doe digest the": [0, 65535], "i doe digest the poison": [0, 65535], "doe digest the poison of": [0, 65535], "digest the poison of thy": [0, 65535], "the poison of thy flesh": [0, 65535], "poison of thy flesh being": [0, 65535], "of thy flesh being strumpeted": [0, 65535], "thy flesh being strumpeted by": [0, 65535], "flesh being strumpeted by thy": [0, 65535], "being strumpeted by thy contagion": [0, 65535], "strumpeted by thy contagion keepe": [0, 65535], "by thy contagion keepe then": [0, 65535], "thy contagion keepe then faire": [0, 65535], "contagion keepe then faire league": [0, 65535], "keepe then faire league and": [0, 65535], "then faire league and truce": [0, 65535], "faire league and truce with": [0, 65535], "league and truce with thy": [0, 65535], "and truce with thy true": [0, 65535], "truce with thy true bed": [0, 65535], "with thy true bed i": [0, 65535], "thy true bed i liue": [0, 65535], "true bed i liue distain'd": [0, 65535], "bed i liue distain'd thou": [0, 65535], "i liue distain'd thou vndishonoured": [0, 65535], "liue distain'd thou vndishonoured antip": [0, 65535], "distain'd thou vndishonoured antip plead": [0, 65535], "thou vndishonoured antip plead you": [0, 65535], "vndishonoured antip plead you to": [0, 65535], "antip plead you to me": [0, 65535], "plead you to me faire": [0, 65535], "you to me faire dame": [0, 65535], "to me faire dame i": [0, 65535], "me faire dame i know": [0, 65535], "faire dame i know you": [0, 65535], "dame i know you not": [0, 65535], "i know you not in": [0, 65535], "know you not in ephesus": [0, 65535], "you not in ephesus i": [0, 65535], "not in ephesus i am": [0, 65535], "in ephesus i am but": [0, 65535], "ephesus i am but two": [0, 65535], "i am but two houres": [0, 65535], "am but two houres old": [0, 65535], "but two houres old as": [0, 65535], "two houres old as strange": [0, 65535], "houres old as strange vnto": [0, 65535], "old as strange vnto your": [0, 65535], "as strange vnto your towne": [0, 65535], "strange vnto your towne as": [0, 65535], "vnto your towne as to": [0, 65535], "your towne as to your": [0, 65535], "towne as to your talke": [0, 65535], "as to your talke who": [0, 65535], "to your talke who euery": [0, 65535], "your talke who euery word": [0, 65535], "talke who euery word by": [0, 65535], "who euery word by all": [0, 65535], "euery word by all my": [0, 65535], "word by all my wit": [0, 65535], "by all my wit being": [0, 65535], "all my wit being scan'd": [0, 65535], "my wit being scan'd wants": [0, 65535], "wit being scan'd wants wit": [0, 65535], "being scan'd wants wit in": [0, 65535], "scan'd wants wit in all": [0, 65535], "wants wit in all one": [0, 65535], "wit in all one word": [0, 65535], "in all one word to": [0, 65535], "all one word to vnderstand": [0, 65535], "one word to vnderstand luci": [0, 65535], "word to vnderstand luci fie": [0, 65535], "to vnderstand luci fie brother": [0, 65535], "vnderstand luci fie brother how": [0, 65535], "luci fie brother how the": [0, 65535], "fie brother how the world": [0, 65535], "brother how the world is": [0, 65535], "how the world is chang'd": [0, 65535], "the world is chang'd with": [0, 65535], "world is chang'd with you": [0, 65535], "is chang'd with you when": [0, 65535], "chang'd with you when were": [0, 65535], "with you when were you": [0, 65535], "you when were you wont": [0, 65535], "when were you wont to": [0, 65535], "were you wont to vse": [0, 65535], "you wont to vse my": [0, 65535], "wont to vse my sister": [0, 65535], "to vse my sister thus": [0, 65535], "vse my sister thus she": [0, 65535], "my sister thus she sent": [0, 65535], "sister thus she sent for": [0, 65535], "thus she sent for you": [0, 65535], "she sent for you by": [0, 65535], "sent for you by dromio": [0, 65535], "for you by dromio home": [0, 65535], "you by dromio home to": [0, 65535], "by dromio home to dinner": [0, 65535], "dromio home to dinner ant": [0, 65535], "home to dinner ant by": [0, 65535], "to dinner ant by dromio": [0, 65535], "dinner ant by dromio drom": [0, 65535], "ant by dromio drom by": [0, 65535], "by dromio drom by me": [0, 65535], "dromio drom by me adr": [0, 65535], "drom by me adr by": [0, 65535], "by me adr by thee": [0, 65535], "me adr by thee and": [0, 65535], "adr by thee and this": [0, 65535], "by thee and this thou": [0, 65535], "thee and this thou didst": [0, 65535], "and this thou didst returne": [0, 65535], "this thou didst returne from": [0, 65535], "thou didst returne from him": [0, 65535], "didst returne from him that": [0, 65535], "returne from him that he": [0, 65535], "from him that he did": [0, 65535], "him that he did buffet": [0, 65535], "that he did buffet thee": [0, 65535], "he did buffet thee and": [0, 65535], "did buffet thee and in": [0, 65535], "buffet thee and in his": [0, 65535], "thee and in his blowes": [0, 65535], "and in his blowes denied": [0, 65535], "in his blowes denied my": [0, 65535], "his blowes denied my house": [0, 65535], "blowes denied my house for": [0, 65535], "denied my house for his": [0, 65535], "my house for his me": [0, 65535], "house for his me for": [0, 65535], "for his me for his": [0, 65535], "his me for his wife": [0, 65535], "me for his wife ant": [0, 65535], "for his wife ant did": [0, 65535], "his wife ant did you": [0, 65535], "wife ant did you conuerse": [0, 65535], "ant did you conuerse sir": [0, 65535], "did you conuerse sir with": [0, 65535], "you conuerse sir with this": [0, 65535], "conuerse sir with this gentlewoman": [0, 65535], "sir with this gentlewoman what": [0, 65535], "with this gentlewoman what is": [0, 65535], "this gentlewoman what is the": [0, 65535], "gentlewoman what is the course": [0, 65535], "what is the course and": [0, 65535], "is the course and drift": [0, 65535], "the course and drift of": [0, 65535], "course and drift of your": [0, 65535], "and drift of your compact": [0, 65535], "drift of your compact s": [0, 65535], "of your compact s dro": [0, 65535], "your compact s dro i": [0, 65535], "compact s dro i sir": [0, 65535], "s dro i sir i": [0, 65535], "dro i sir i neuer": [0, 65535], "i sir i neuer saw": [0, 65535], "sir i neuer saw her": [0, 65535], "i neuer saw her till": [0, 65535], "neuer saw her till this": [0, 65535], "saw her till this time": [0, 65535], "her till this time ant": [0, 65535], "till this time ant villaine": [0, 65535], "this time ant villaine thou": [0, 65535], "time ant villaine thou liest": [0, 65535], "ant villaine thou liest for": [0, 65535], "villaine thou liest for euen": [0, 65535], "thou liest for euen her": [0, 65535], "liest for euen her verie": [0, 65535], "for euen her verie words": [0, 65535], "euen her verie words didst": [0, 65535], "her verie words didst thou": [0, 65535], "verie words didst thou deliuer": [0, 65535], "words didst thou deliuer to": [0, 65535], "didst thou deliuer to me": [0, 65535], "thou deliuer to me on": [0, 65535], "deliuer to me on the": [0, 65535], "to me on the mart": [0, 65535], "me on the mart s": [0, 65535], "on the mart s dro": [0, 65535], "the mart s dro i": [0, 65535], "mart s dro i neuer": [0, 65535], "s dro i neuer spake": [0, 65535], "dro i neuer spake with": [0, 65535], "i neuer spake with her": [0, 65535], "neuer spake with her in": [0, 65535], "spake with her in all": [0, 65535], "with her in all my": [0, 65535], "her in all my life": [0, 65535], "in all my life ant": [0, 65535], "all my life ant how": [0, 65535], "my life ant how can": [0, 65535], "life ant how can she": [0, 65535], "ant how can she thus": [0, 65535], "how can she thus then": [0, 65535], "can she thus then call": [0, 65535], "she thus then call vs": [0, 65535], "thus then call vs by": [0, 65535], "then call vs by our": [0, 65535], "call vs by our names": [0, 65535], "vs by our names vnlesse": [0, 65535], "by our names vnlesse it": [0, 65535], "our names vnlesse it be": [0, 65535], "names vnlesse it be by": [0, 65535], "vnlesse it be by inspiration": [0, 65535], "it be by inspiration adri": [0, 65535], "be by inspiration adri how": [0, 65535], "by inspiration adri how ill": [0, 65535], "inspiration adri how ill agrees": [0, 65535], "adri how ill agrees it": [0, 65535], "how ill agrees it with": [0, 65535], "ill agrees it with your": [0, 65535], "agrees it with your grauitie": [0, 65535], "it with your grauitie to": [0, 65535], "with your grauitie to counterfeit": [0, 65535], "your grauitie to counterfeit thus": [0, 65535], "grauitie to counterfeit thus grosely": [0, 65535], "to counterfeit thus grosely with": [0, 65535], "counterfeit thus grosely with your": [0, 65535], "thus grosely with your slaue": [0, 65535], "grosely with your slaue abetting": [0, 65535], "with your slaue abetting him": [0, 65535], "your slaue abetting him to": [0, 65535], "slaue abetting him to thwart": [0, 65535], "abetting him to thwart me": [0, 65535], "him to thwart me in": [0, 65535], "to thwart me in my": [0, 65535], "thwart me in my moode": [0, 65535], "me in my moode be": [0, 65535], "in my moode be it": [0, 65535], "my moode be it my": [0, 65535], "moode be it my wrong": [0, 65535], "be it my wrong you": [0, 65535], "it my wrong you are": [0, 65535], "my wrong you are from": [0, 65535], "wrong you are from me": [0, 65535], "you are from me exempt": [0, 65535], "are from me exempt but": [0, 65535], "from me exempt but wrong": [0, 65535], "me exempt but wrong not": [0, 65535], "exempt but wrong not that": [0, 65535], "but wrong not that wrong": [0, 65535], "wrong not that wrong with": [0, 65535], "not that wrong with a": [0, 65535], "that wrong with a more": [0, 65535], "wrong with a more contempt": [0, 65535], "with a more contempt come": [0, 65535], "a more contempt come i": [0, 65535], "more contempt come i will": [0, 65535], "contempt come i will fasten": [0, 65535], "come i will fasten on": [0, 65535], "i will fasten on this": [0, 65535], "will fasten on this sleeue": [0, 65535], "fasten on this sleeue of": [0, 65535], "on this sleeue of thine": [0, 65535], "this sleeue of thine thou": [0, 65535], "sleeue of thine thou art": [0, 65535], "of thine thou art an": [0, 65535], "thine thou art an elme": [0, 65535], "thou art an elme my": [0, 65535], "art an elme my husband": [0, 65535], "an elme my husband i": [0, 65535], "elme my husband i a": [0, 65535], "my husband i a vine": [0, 65535], "husband i a vine whose": [0, 65535], "i a vine whose weaknesse": [0, 65535], "a vine whose weaknesse married": [0, 65535], "vine whose weaknesse married to": [0, 65535], "whose weaknesse married to thy": [0, 65535], "weaknesse married to thy stranger": [0, 65535], "married to thy stranger state": [0, 65535], "to thy stranger state makes": [0, 65535], "thy stranger state makes me": [0, 65535], "stranger state makes me with": [0, 65535], "state makes me with thy": [0, 65535], "makes me with thy strength": [0, 65535], "me with thy strength to": [0, 65535], "with thy strength to communicate": [0, 65535], "thy strength to communicate if": [0, 65535], "strength to communicate if ought": [0, 65535], "to communicate if ought possesse": [0, 65535], "communicate if ought possesse thee": [0, 65535], "if ought possesse thee from": [0, 65535], "ought possesse thee from me": [0, 65535], "possesse thee from me it": [0, 65535], "thee from me it is": [0, 65535], "from me it is drosse": [0, 65535], "me it is drosse vsurping": [0, 65535], "it is drosse vsurping iuie": [0, 65535], "is drosse vsurping iuie brier": [0, 65535], "drosse vsurping iuie brier or": [0, 65535], "vsurping iuie brier or idle": [0, 65535], "iuie brier or idle mosse": [0, 65535], "brier or idle mosse who": [0, 65535], "or idle mosse who all": [0, 65535], "idle mosse who all for": [0, 65535], "mosse who all for want": [0, 65535], "who all for want of": [0, 65535], "all for want of pruning": [0, 65535], "for want of pruning with": [0, 65535], "want of pruning with intrusion": [0, 65535], "of pruning with intrusion infect": [0, 65535], "pruning with intrusion infect thy": [0, 65535], "with intrusion infect thy sap": [0, 65535], "intrusion infect thy sap and": [0, 65535], "infect thy sap and liue": [0, 65535], "thy sap and liue on": [0, 65535], "sap and liue on thy": [0, 65535], "and liue on thy confusion": [0, 65535], "liue on thy confusion ant": [0, 65535], "on thy confusion ant to": [0, 65535], "thy confusion ant to mee": [0, 65535], "confusion ant to mee shee": [0, 65535], "ant to mee shee speakes": [0, 65535], "to mee shee speakes shee": [0, 65535], "mee shee speakes shee moues": [0, 65535], "shee speakes shee moues mee": [0, 65535], "speakes shee moues mee for": [0, 65535], "shee moues mee for her": [0, 65535], "moues mee for her theame": [0, 65535], "mee for her theame what": [0, 65535], "for her theame what was": [0, 65535], "her theame what was i": [0, 65535], "theame what was i married": [0, 65535], "what was i married to": [0, 65535], "was i married to her": [0, 65535], "i married to her in": [0, 65535], "married to her in my": [0, 65535], "to her in my dreame": [0, 65535], "her in my dreame or": [0, 65535], "in my dreame or sleepe": [0, 65535], "my dreame or sleepe i": [0, 65535], "dreame or sleepe i now": [0, 65535], "or sleepe i now and": [0, 65535], "sleepe i now and thinke": [0, 65535], "i now and thinke i": [0, 65535], "now and thinke i heare": [0, 65535], "and thinke i heare all": [0, 65535], "thinke i heare all this": [0, 65535], "i heare all this what": [0, 65535], "heare all this what error": [0, 65535], "all this what error driues": [0, 65535], "this what error driues our": [0, 65535], "what error driues our eies": [0, 65535], "error driues our eies and": [0, 65535], "driues our eies and eares": [0, 65535], "our eies and eares amisse": [0, 65535], "eies and eares amisse vntill": [0, 65535], "and eares amisse vntill i": [0, 65535], "eares amisse vntill i know": [0, 65535], "amisse vntill i know this": [0, 65535], "vntill i know this sure": [0, 65535], "i know this sure vncertaintie": [0, 65535], "know this sure vncertaintie ile": [0, 65535], "this sure vncertaintie ile entertaine": [0, 65535], "sure vncertaintie ile entertaine the": [0, 65535], "vncertaintie ile entertaine the free'd": [0, 65535], "ile entertaine the free'd fallacie": [0, 65535], "entertaine the free'd fallacie luc": [0, 65535], "the free'd fallacie luc dromio": [0, 65535], "free'd fallacie luc dromio goe": [0, 65535], "fallacie luc dromio goe bid": [0, 65535], "luc dromio goe bid the": [0, 65535], "dromio goe bid the seruants": [0, 65535], "goe bid the seruants spred": [0, 65535], "bid the seruants spred for": [0, 65535], "the seruants spred for dinner": [0, 65535], "seruants spred for dinner s": [0, 65535], "spred for dinner s dro": [0, 65535], "for dinner s dro oh": [0, 65535], "dinner s dro oh for": [0, 65535], "s dro oh for my": [0, 65535], "dro oh for my beads": [0, 65535], "oh for my beads i": [0, 65535], "for my beads i crosse": [0, 65535], "my beads i crosse me": [0, 65535], "beads i crosse me for": [0, 65535], "i crosse me for a": [0, 65535], "crosse me for a sinner": [0, 65535], "me for a sinner this": [0, 65535], "for a sinner this is": [0, 65535], "a sinner this is the": [0, 65535], "sinner this is the fairie": [0, 65535], "this is the fairie land": [0, 65535], "is the fairie land oh": [0, 65535], "the fairie land oh spight": [0, 65535], "fairie land oh spight of": [0, 65535], "land oh spight of spights": [0, 65535], "oh spight of spights we": [0, 65535], "spight of spights we talke": [0, 65535], "of spights we talke with": [0, 65535], "spights we talke with goblins": [0, 65535], "we talke with goblins owles": [0, 65535], "talke with goblins owles and": [0, 65535], "with goblins owles and sprights": [0, 65535], "goblins owles and sprights if": [0, 65535], "owles and sprights if we": [0, 65535], "and sprights if we obay": [0, 65535], "sprights if we obay them": [0, 65535], "if we obay them not": [0, 65535], "we obay them not this": [0, 65535], "obay them not this will": [0, 65535], "them not this will insue": [0, 65535], "not this will insue they'll": [0, 65535], "this will insue they'll sucke": [0, 65535], "will insue they'll sucke our": [0, 65535], "insue they'll sucke our breath": [0, 65535], "they'll sucke our breath or": [0, 65535], "sucke our breath or pinch": [0, 65535], "our breath or pinch vs": [0, 65535], "breath or pinch vs blacke": [0, 65535], "or pinch vs blacke and": [0, 65535], "pinch vs blacke and blew": [0, 65535], "vs blacke and blew luc": [0, 65535], "blacke and blew luc why": [0, 65535], "and blew luc why prat'st": [0, 65535], "blew luc why prat'st thou": [0, 65535], "luc why prat'st thou to": [0, 65535], "why prat'st thou to thy": [0, 65535], "prat'st thou to thy selfe": [0, 65535], "thou to thy selfe and": [0, 65535], "to thy selfe and answer'st": [0, 65535], "thy selfe and answer'st not": [0, 65535], "selfe and answer'st not dromio": [0, 65535], "and answer'st not dromio thou": [0, 65535], "answer'st not dromio thou dromio": [0, 65535], "not dromio thou dromio thou": [0, 65535], "dromio thou dromio thou snaile": [0, 65535], "thou dromio thou snaile thou": [0, 65535], "dromio thou snaile thou slug": [0, 65535], "thou snaile thou slug thou": [0, 65535], "snaile thou slug thou sot": [0, 65535], "thou slug thou sot s": [0, 65535], "slug thou sot s dro": [0, 65535], "thou sot s dro i": [0, 65535], "sot s dro i am": [0, 65535], "s dro i am transformed": [0, 65535], "dro i am transformed master": [0, 65535], "i am transformed master am": [0, 65535], "am transformed master am i": [0, 65535], "transformed master am i not": [0, 65535], "master am i not ant": [0, 65535], "am i not ant i": [0, 65535], "i not ant i thinke": [0, 65535], "not ant i thinke thou": [0, 65535], "i thinke thou art in": [0, 65535], "thinke thou art in minde": [0, 65535], "thou art in minde and": [0, 65535], "art in minde and so": [0, 65535], "in minde and so am": [0, 65535], "minde and so am i": [0, 65535], "and so am i s": [0, 65535], "so am i s dro": [0, 65535], "am i s dro nay": [0, 65535], "i s dro nay master": [0, 65535], "s dro nay master both": [0, 65535], "dro nay master both in": [0, 65535], "nay master both in minde": [0, 65535], "master both in minde and": [0, 65535], "both in minde and in": [0, 65535], "in minde and in my": [0, 65535], "minde and in my shape": [0, 65535], "and in my shape ant": [0, 65535], "in my shape ant thou": [0, 65535], "my shape ant thou hast": [0, 65535], "shape ant thou hast thine": [0, 65535], "ant thou hast thine owne": [0, 65535], "thou hast thine owne forme": [0, 65535], "hast thine owne forme s": [0, 65535], "thine owne forme s dro": [0, 65535], "owne forme s dro no": [0, 65535], "forme s dro no i": [0, 65535], "s dro no i am": [0, 65535], "dro no i am an": [0, 65535], "no i am an ape": [0, 65535], "i am an ape luc": [0, 65535], "am an ape luc if": [0, 65535], "an ape luc if thou": [0, 65535], "ape luc if thou art": [0, 65535], "luc if thou art chang'd": [0, 65535], "if thou art chang'd to": [0, 65535], "thou art chang'd to ought": [0, 65535], "art chang'd to ought 'tis": [0, 65535], "chang'd to ought 'tis to": [0, 65535], "to ought 'tis to an": [0, 65535], "ought 'tis to an asse": [0, 65535], "'tis to an asse s": [0, 65535], "to an asse s dro": [0, 65535], "an asse s dro 'tis": [0, 65535], "asse s dro 'tis true": [0, 65535], "s dro 'tis true she": [0, 65535], "dro 'tis true she rides": [0, 65535], "'tis true she rides me": [0, 65535], "true she rides me and": [0, 65535], "she rides me and i": [0, 65535], "rides me and i long": [0, 65535], "me and i long for": [0, 65535], "and i long for grasse": [0, 65535], "i long for grasse 'tis": [0, 65535], "long for grasse 'tis so": [0, 65535], "for grasse 'tis so i": [0, 65535], "grasse 'tis so i am": [0, 65535], "'tis so i am an": [0, 65535], "so i am an asse": [0, 65535], "i am an asse else": [0, 65535], "am an asse else it": [0, 65535], "an asse else it could": [0, 65535], "asse else it could neuer": [0, 65535], "else it could neuer be": [0, 65535], "it could neuer be but": [0, 65535], "could neuer be but i": [0, 65535], "neuer be but i should": [0, 65535], "be but i should know": [0, 65535], "but i should know her": [0, 65535], "i should know her as": [0, 65535], "should know her as well": [0, 65535], "know her as well as": [0, 65535], "her as well as she": [0, 65535], "as well as she knowes": [0, 65535], "well as she knowes me": [0, 65535], "as she knowes me adr": [0, 65535], "she knowes me adr come": [0, 65535], "knowes me adr come come": [0, 65535], "me adr come come no": [0, 65535], "adr come come no longer": [0, 65535], "come come no longer will": [0, 65535], "come no longer will i": [0, 65535], "no longer will i be": [0, 65535], "longer will i be a": [0, 65535], "will i be a foole": [0, 65535], "i be a foole to": [0, 65535], "be a foole to put": [0, 65535], "a foole to put the": [0, 65535], "foole to put the finger": [0, 65535], "to put the finger in": [0, 65535], "put the finger in the": [0, 65535], "the finger in the eie": [0, 65535], "finger in the eie and": [0, 65535], "in the eie and weepe": [0, 65535], "the eie and weepe whil'st": [0, 65535], "eie and weepe whil'st man": [0, 65535], "and weepe whil'st man and": [0, 65535], "weepe whil'st man and master": [0, 65535], "whil'st man and master laughes": [0, 65535], "man and master laughes my": [0, 65535], "and master laughes my woes": [0, 65535], "master laughes my woes to": [0, 65535], "laughes my woes to scorne": [0, 65535], "my woes to scorne come": [0, 65535], "woes to scorne come sir": [0, 65535], "to scorne come sir to": [0, 65535], "scorne come sir to dinner": [0, 65535], "come sir to dinner dromio": [0, 65535], "sir to dinner dromio keepe": [0, 65535], "to dinner dromio keepe the": [0, 65535], "dinner dromio keepe the gate": [0, 65535], "dromio keepe the gate husband": [0, 65535], "keepe the gate husband ile": [0, 65535], "the gate husband ile dine": [0, 65535], "gate husband ile dine aboue": [0, 65535], "husband ile dine aboue with": [0, 65535], "ile dine aboue with you": [0, 65535], "dine aboue with you to": [0, 65535], "aboue with you to day": [0, 65535], "with you to day and": [0, 65535], "you to day and shriue": [0, 65535], "to day and shriue you": [0, 65535], "day and shriue you of": [0, 65535], "and shriue you of a": [0, 65535], "shriue you of a thousand": [0, 65535], "you of a thousand idle": [0, 65535], "of a thousand idle prankes": [0, 65535], "a thousand idle prankes sirra": [0, 65535], "thousand idle prankes sirra if": [0, 65535], "idle prankes sirra if any": [0, 65535], "prankes sirra if any aske": [0, 65535], "sirra if any aske you": [0, 65535], "if any aske you for": [0, 65535], "any aske you for your": [0, 65535], "aske you for your master": [0, 65535], "you for your master say": [0, 65535], "for your master say he": [0, 65535], "your master say he dines": [0, 65535], "master say he dines forth": [0, 65535], "say he dines forth and": [0, 65535], "he dines forth and let": [0, 65535], "dines forth and let no": [0, 65535], "forth and let no creature": [0, 65535], "and let no creature enter": [0, 65535], "let no creature enter come": [0, 65535], "no creature enter come sister": [0, 65535], "creature enter come sister dromio": [0, 65535], "enter come sister dromio play": [0, 65535], "come sister dromio play the": [0, 65535], "sister dromio play the porter": [0, 65535], "dromio play the porter well": [0, 65535], "play the porter well ant": [0, 65535], "the porter well ant am": [0, 65535], "porter well ant am i": [0, 65535], "well ant am i in": [0, 65535], "ant am i in earth": [0, 65535], "am i in earth in": [0, 65535], "i in earth in heauen": [0, 65535], "in earth in heauen or": [0, 65535], "earth in heauen or in": [0, 65535], "in heauen or in hell": [0, 65535], "heauen or in hell sleeping": [0, 65535], "or in hell sleeping or": [0, 65535], "in hell sleeping or waking": [0, 65535], "hell sleeping or waking mad": [0, 65535], "sleeping or waking mad or": [0, 65535], "or waking mad or well": [0, 65535], "waking mad or well aduisde": [0, 65535], "mad or well aduisde knowne": [0, 65535], "or well aduisde knowne vnto": [0, 65535], "well aduisde knowne vnto these": [0, 65535], "aduisde knowne vnto these and": [0, 65535], "knowne vnto these and to": [0, 65535], "vnto these and to my": [0, 65535], "these and to my selfe": [0, 65535], "and to my selfe disguisde": [0, 65535], "to my selfe disguisde ile": [0, 65535], "my selfe disguisde ile say": [0, 65535], "selfe disguisde ile say as": [0, 65535], "disguisde ile say as they": [0, 65535], "ile say as they say": [0, 65535], "say as they say and": [0, 65535], "as they say and perseuer": [0, 65535], "they say and perseuer so": [0, 65535], "say and perseuer so and": [0, 65535], "and perseuer so and in": [0, 65535], "perseuer so and in this": [0, 65535], "so and in this mist": [0, 65535], "and in this mist at": [0, 65535], "in this mist at all": [0, 65535], "this mist at all aduentures": [0, 65535], "mist at all aduentures go": [0, 65535], "at all aduentures go s": [0, 65535], "all aduentures go s dro": [0, 65535], "aduentures go s dro master": [0, 65535], "go s dro master shall": [0, 65535], "s dro master shall i": [0, 65535], "dro master shall i be": [0, 65535], "master shall i be porter": [0, 65535], "shall i be porter at": [0, 65535], "i be porter at the": [0, 65535], "be porter at the gate": [0, 65535], "porter at the gate adr": [0, 65535], "at the gate adr i": [0, 65535], "the gate adr i and": [0, 65535], "gate adr i and let": [0, 65535], "adr i and let none": [0, 65535], "i and let none enter": [0, 65535], "and let none enter least": [0, 65535], "let none enter least i": [0, 65535], "none enter least i breake": [0, 65535], "enter least i breake your": [0, 65535], "least i breake your pate": [0, 65535], "i breake your pate luc": [0, 65535], "breake your pate luc come": [0, 65535], "your pate luc come come": [0, 65535], "pate luc come come antipholus": [0, 65535], "luc come come antipholus we": [0, 65535], "come come antipholus we dine": [0, 65535], "come antipholus we dine to": [0, 65535], "antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to": [0, 65535], "secundus enter adriana wife to antipholis": [0, 65535], "enter adriana wife to antipholis sereptus": [0, 65535], "adriana wife to antipholis sereptus with": [0, 65535], "wife to antipholis sereptus with luciana": [0, 65535], "to antipholis sereptus with luciana her": [0, 65535], "antipholis sereptus with luciana her sister": [0, 65535], "sereptus with luciana her sister adr": [0, 65535], "with luciana her sister adr neither": [0, 65535], "luciana her sister adr neither my": [0, 65535], "her sister adr neither my husband": [0, 65535], "sister adr neither my husband nor": [0, 65535], "adr neither my husband nor the": [0, 65535], "neither my husband nor the slaue": [0, 65535], "my husband nor the slaue return'd": [0, 65535], "husband nor the slaue return'd that": [0, 65535], "nor the slaue return'd that in": [0, 65535], "the slaue return'd that in such": [0, 65535], "slaue return'd that in such haste": [0, 65535], "return'd that in such haste i": [0, 65535], "that in such haste i sent": [0, 65535], "in such haste i sent to": [0, 65535], "such haste i sent to seeke": [0, 65535], "haste i sent to seeke his": [0, 65535], "i sent to seeke his master": [0, 65535], "sent to seeke his master sure": [0, 65535], "to seeke his master sure luciana": [0, 65535], "seeke his master sure luciana it": [0, 65535], "his master sure luciana it is": [0, 65535], "master sure luciana it is two": [0, 65535], "sure luciana it is two a": [0, 65535], "luciana it is two a clocke": [0, 65535], "it is two a clocke luc": [0, 65535], "is two a clocke luc perhaps": [0, 65535], "two a clocke luc perhaps some": [0, 65535], "a clocke luc perhaps some merchant": [0, 65535], "clocke luc perhaps some merchant hath": [0, 65535], "luc perhaps some merchant hath inuited": [0, 65535], "perhaps some merchant hath inuited him": [0, 65535], "some merchant hath inuited him and": [0, 65535], "merchant hath inuited him and from": [0, 65535], "hath inuited him and from the": [0, 65535], "inuited him and from the mart": [0, 65535], "him and from the mart he's": [0, 65535], "and from the mart he's somewhere": [0, 65535], "from the mart he's somewhere gone": [0, 65535], "the mart he's somewhere gone to": [0, 65535], "mart he's somewhere gone to dinner": [0, 65535], "he's somewhere gone to dinner good": [0, 65535], "somewhere gone to dinner good sister": [0, 65535], "gone to dinner good sister let": [0, 65535], "to dinner good sister let vs": [0, 65535], "dinner good sister let vs dine": [0, 65535], "good sister let vs dine and": [0, 65535], "sister let vs dine and neuer": [0, 65535], "let vs dine and neuer fret": [0, 65535], "vs dine and neuer fret a": [0, 65535], "dine and neuer fret a man": [0, 65535], "and neuer fret a man is": [0, 65535], "neuer fret a man is master": [0, 65535], "fret a man is master of": [0, 65535], "a man is master of his": [0, 65535], "man is master of his libertie": [0, 65535], "is master of his libertie time": [0, 65535], "master of his libertie time is": [0, 65535], "of his libertie time is their": [0, 65535], "his libertie time is their master": [0, 65535], "libertie time is their master and": [0, 65535], "time is their master and when": [0, 65535], "is their master and when they": [0, 65535], "their master and when they see": [0, 65535], "master and when they see time": [0, 65535], "and when they see time they'll": [0, 65535], "when they see time they'll goe": [0, 65535], "they see time they'll goe or": [0, 65535], "see time they'll goe or come": [0, 65535], "time they'll goe or come if": [0, 65535], "they'll goe or come if so": [0, 65535], "goe or come if so be": [0, 65535], "or come if so be patient": [0, 65535], "come if so be patient sister": [0, 65535], "if so be patient sister adr": [0, 65535], "so be patient sister adr why": [0, 65535], "be patient sister adr why should": [0, 65535], "patient sister adr why should their": [0, 65535], "sister adr why should their libertie": [0, 65535], "adr why should their libertie then": [0, 65535], "why should their libertie then ours": [0, 65535], "should their libertie then ours be": [0, 65535], "their libertie then ours be more": [0, 65535], "libertie then ours be more luc": [0, 65535], "then ours be more luc because": [0, 65535], "ours be more luc because their": [0, 65535], "be more luc because their businesse": [0, 65535], "more luc because their businesse still": [0, 65535], "luc because their businesse still lies": [0, 65535], "because their businesse still lies out": [0, 65535], "their businesse still lies out a": [0, 65535], "businesse still lies out a dore": [0, 65535], "still lies out a dore adr": [0, 65535], "lies out a dore adr looke": [0, 65535], "out a dore adr looke when": [0, 65535], "a dore adr looke when i": [0, 65535], "dore adr looke when i serue": [0, 65535], "adr looke when i serue him": [0, 65535], "looke when i serue him so": [0, 65535], "when i serue him so he": [0, 65535], "i serue him so he takes": [0, 65535], "serue him so he takes it": [0, 65535], "him so he takes it thus": [0, 65535], "so he takes it thus luc": [0, 65535], "he takes it thus luc oh": [0, 65535], "takes it thus luc oh know": [0, 65535], "it thus luc oh know he": [0, 65535], "thus luc oh know he is": [0, 65535], "luc oh know he is the": [0, 65535], "oh know he is the bridle": [0, 65535], "know he is the bridle of": [0, 65535], "he is the bridle of your": [0, 65535], "is the bridle of your will": [0, 65535], "the bridle of your will adr": [0, 65535], "bridle of your will adr there's": [0, 65535], "of your will adr there's none": [0, 65535], "your will adr there's none but": [0, 65535], "will adr there's none but asses": [0, 65535], "adr there's none but asses will": [0, 65535], "there's none but asses will be": [0, 65535], "none but asses will be bridled": [0, 65535], "but asses will be bridled so": [0, 65535], "asses will be bridled so luc": [0, 65535], "will be bridled so luc why": [0, 65535], "be bridled so luc why headstrong": [0, 65535], "bridled so luc why headstrong liberty": [0, 65535], "so luc why headstrong liberty is": [0, 65535], "luc why headstrong liberty is lasht": [0, 65535], "why headstrong liberty is lasht with": [0, 65535], "headstrong liberty is lasht with woe": [0, 65535], "liberty is lasht with woe there's": [0, 65535], "is lasht with woe there's nothing": [0, 65535], "lasht with woe there's nothing situate": [0, 65535], "with woe there's nothing situate vnder": [0, 65535], "woe there's nothing situate vnder heauens": [0, 65535], "there's nothing situate vnder heauens eye": [0, 65535], "nothing situate vnder heauens eye but": [0, 65535], "situate vnder heauens eye but hath": [0, 65535], "vnder heauens eye but hath his": [0, 65535], "heauens eye but hath his bound": [0, 65535], "eye but hath his bound in": [0, 65535], "but hath his bound in earth": [0, 65535], "hath his bound in earth in": [0, 65535], "his bound in earth in sea": [0, 65535], "bound in earth in sea in": [0, 65535], "in earth in sea in skie": [0, 65535], "earth in sea in skie the": [0, 65535], "in sea in skie the beasts": [0, 65535], "sea in skie the beasts the": [0, 65535], "in skie the beasts the fishes": [0, 65535], "skie the beasts the fishes and": [0, 65535], "the beasts the fishes and the": [0, 65535], "beasts the fishes and the winged": [0, 65535], "the fishes and the winged fowles": [0, 65535], "fishes and the winged fowles are": [0, 65535], "and the winged fowles are their": [0, 65535], "the winged fowles are their males": [0, 65535], "winged fowles are their males subiects": [0, 65535], "fowles are their males subiects and": [0, 65535], "are their males subiects and at": [0, 65535], "their males subiects and at their": [0, 65535], "males subiects and at their controules": [0, 65535], "subiects and at their controules man": [0, 65535], "and at their controules man more": [0, 65535], "at their controules man more diuine": [0, 65535], "their controules man more diuine the": [0, 65535], "controules man more diuine the master": [0, 65535], "man more diuine the master of": [0, 65535], "more diuine the master of all": [0, 65535], "diuine the master of all these": [0, 65535], "the master of all these lord": [0, 65535], "master of all these lord of": [0, 65535], "of all these lord of the": [0, 65535], "all these lord of the wide": [0, 65535], "these lord of the wide world": [0, 65535], "lord of the wide world and": [0, 65535], "of the wide world and wilde": [0, 65535], "the wide world and wilde watry": [0, 65535], "wide world and wilde watry seas": [0, 65535], "world and wilde watry seas indued": [0, 65535], "and wilde watry seas indued with": [0, 65535], "wilde watry seas indued with intellectuall": [0, 65535], "watry seas indued with intellectuall sence": [0, 65535], "seas indued with intellectuall sence and": [0, 65535], "indued with intellectuall sence and soules": [0, 65535], "with intellectuall sence and soules of": [0, 65535], "intellectuall sence and soules of more": [0, 65535], "sence and soules of more preheminence": [0, 65535], "and soules of more preheminence then": [0, 65535], "soules of more preheminence then fish": [0, 65535], "of more preheminence then fish and": [0, 65535], "more preheminence then fish and fowles": [0, 65535], "preheminence then fish and fowles are": [0, 65535], "then fish and fowles are masters": [0, 65535], "fish and fowles are masters to": [0, 65535], "and fowles are masters to their": [0, 65535], "fowles are masters to their females": [0, 65535], "are masters to their females and": [0, 65535], "masters to their females and their": [0, 65535], "to their females and their lords": [0, 65535], "their females and their lords then": [0, 65535], "females and their lords then let": [0, 65535], "and their lords then let your": [0, 65535], "their lords then let your will": [0, 65535], "lords then let your will attend": [0, 65535], "then let your will attend on": [0, 65535], "let your will attend on their": [0, 65535], "your will attend on their accords": [0, 65535], "will attend on their accords adri": [0, 65535], "attend on their accords adri this": [0, 65535], "on their accords adri this seruitude": [0, 65535], "their accords adri this seruitude makes": [0, 65535], "accords adri this seruitude makes you": [0, 65535], "adri this seruitude makes you to": [0, 65535], "this seruitude makes you to keepe": [0, 65535], "seruitude makes you to keepe vnwed": [0, 65535], "makes you to keepe vnwed luci": [0, 65535], "you to keepe vnwed luci not": [0, 65535], "to keepe vnwed luci not this": [0, 65535], "keepe vnwed luci not this but": [0, 65535], "vnwed luci not this but troubles": [0, 65535], "luci not this but troubles of": [0, 65535], "not this but troubles of the": [0, 65535], "this but troubles of the marriage": [0, 65535], "but troubles of the marriage bed": [0, 65535], "troubles of the marriage bed adr": [0, 65535], "of the marriage bed adr but": [0, 65535], "the marriage bed adr but were": [0, 65535], "marriage bed adr but were you": [0, 65535], "bed adr but were you wedded": [0, 65535], "adr but were you wedded you": [0, 65535], "but were you wedded you wold": [0, 65535], "were you wedded you wold bear": [0, 65535], "you wedded you wold bear some": [0, 65535], "wedded you wold bear some sway": [0, 65535], "you wold bear some sway luc": [0, 65535], "wold bear some sway luc ere": [0, 65535], "bear some sway luc ere i": [0, 65535], "some sway luc ere i learne": [0, 65535], "sway luc ere i learne loue": [0, 65535], "luc ere i learne loue ile": [0, 65535], "ere i learne loue ile practise": [0, 65535], "i learne loue ile practise to": [0, 65535], "learne loue ile practise to obey": [0, 65535], "loue ile practise to obey adr": [0, 65535], "ile practise to obey adr how": [0, 65535], "practise to obey adr how if": [0, 65535], "to obey adr how if your": [0, 65535], "obey adr how if your husband": [0, 65535], "adr how if your husband start": [0, 65535], "how if your husband start some": [0, 65535], "if your husband start some other": [0, 65535], "your husband start some other where": [0, 65535], "husband start some other where luc": [0, 65535], "start some other where luc till": [0, 65535], "some other where luc till he": [0, 65535], "other where luc till he come": [0, 65535], "where luc till he come home": [0, 65535], "luc till he come home againe": [0, 65535], "till he come home againe i": [0, 65535], "he come home againe i would": [0, 65535], "come home againe i would forbeare": [0, 65535], "home againe i would forbeare adr": [0, 65535], "againe i would forbeare adr patience": [0, 65535], "i would forbeare adr patience vnmou'd": [0, 65535], "would forbeare adr patience vnmou'd no": [0, 65535], "forbeare adr patience vnmou'd no maruel": [0, 65535], "adr patience vnmou'd no maruel though": [0, 65535], "patience vnmou'd no maruel though she": [0, 65535], "vnmou'd no maruel though she pause": [0, 65535], "no maruel though she pause they": [0, 65535], "maruel though she pause they can": [0, 65535], "though she pause they can be": [0, 65535], "she pause they can be meeke": [0, 65535], "pause they can be meeke that": [0, 65535], "they can be meeke that haue": [0, 65535], "can be meeke that haue no": [0, 65535], "be meeke that haue no other": [0, 65535], "meeke that haue no other cause": [0, 65535], "that haue no other cause a": [0, 65535], "haue no other cause a wretched": [0, 65535], "no other cause a wretched soule": [0, 65535], "other cause a wretched soule bruis'd": [0, 65535], "cause a wretched soule bruis'd with": [0, 65535], "a wretched soule bruis'd with aduersitie": [0, 65535], "wretched soule bruis'd with aduersitie we": [0, 65535], "soule bruis'd with aduersitie we bid": [0, 65535], "bruis'd with aduersitie we bid be": [0, 65535], "with aduersitie we bid be quiet": [0, 65535], "aduersitie we bid be quiet when": [0, 65535], "we bid be quiet when we": [0, 65535], "bid be quiet when we heare": [0, 65535], "be quiet when we heare it": [0, 65535], "quiet when we heare it crie": [0, 65535], "when we heare it crie but": [0, 65535], "we heare it crie but were": [0, 65535], "heare it crie but were we": [0, 65535], "it crie but were we burdned": [0, 65535], "crie but were we burdned with": [0, 65535], "but were we burdned with like": [0, 65535], "were we burdned with like waight": [0, 65535], "we burdned with like waight of": [0, 65535], "burdned with like waight of paine": [0, 65535], "with like waight of paine as": [0, 65535], "like waight of paine as much": [0, 65535], "waight of paine as much or": [0, 65535], "of paine as much or more": [0, 65535], "paine as much or more we": [0, 65535], "as much or more we should": [0, 65535], "much or more we should our": [0, 65535], "or more we should our selues": [0, 65535], "more we should our selues complaine": [0, 65535], "we should our selues complaine so": [0, 65535], "should our selues complaine so thou": [0, 65535], "our selues complaine so thou that": [0, 65535], "selues complaine so thou that hast": [0, 65535], "complaine so thou that hast no": [0, 65535], "so thou that hast no vnkinde": [0, 65535], "thou that hast no vnkinde mate": [0, 65535], "that hast no vnkinde mate to": [0, 65535], "hast no vnkinde mate to greeue": [0, 65535], "no vnkinde mate to greeue thee": [0, 65535], "vnkinde mate to greeue thee with": [0, 65535], "mate to greeue thee with vrging": [0, 65535], "to greeue thee with vrging helpelesse": [0, 65535], "greeue thee with vrging helpelesse patience": [0, 65535], "thee with vrging helpelesse patience would": [0, 65535], "with vrging helpelesse patience would releeue": [0, 65535], "vrging helpelesse patience would releeue me": [0, 65535], "helpelesse patience would releeue me but": [0, 65535], "patience would releeue me but if": [0, 65535], "would releeue me but if thou": [0, 65535], "releeue me but if thou liue": [0, 65535], "me but if thou liue to": [0, 65535], "but if thou liue to see": [0, 65535], "if thou liue to see like": [0, 65535], "thou liue to see like right": [0, 65535], "liue to see like right bereft": [0, 65535], "to see like right bereft this": [0, 65535], "see like right bereft this foole": [0, 65535], "like right bereft this foole beg'd": [0, 65535], "right bereft this foole beg'd patience": [0, 65535], "bereft this foole beg'd patience in": [0, 65535], "this foole beg'd patience in thee": [0, 65535], "foole beg'd patience in thee will": [0, 65535], "beg'd patience in thee will be": [0, 65535], "patience in thee will be left": [0, 65535], "in thee will be left luci": [0, 65535], "thee will be left luci well": [0, 65535], "will be left luci well i": [0, 65535], "be left luci well i will": [0, 65535], "left luci well i will marry": [0, 65535], "luci well i will marry one": [0, 65535], "well i will marry one day": [0, 65535], "i will marry one day but": [0, 65535], "will marry one day but to": [0, 65535], "marry one day but to trie": [0, 65535], "one day but to trie heere": [0, 65535], "day but to trie heere comes": [0, 65535], "but to trie heere comes your": [0, 65535], "to trie heere comes your man": [0, 65535], "trie heere comes your man now": [0, 65535], "heere comes your man now is": [0, 65535], "comes your man now is your": [0, 65535], "your man now is your husband": [0, 65535], "man now is your husband nie": [0, 65535], "now is your husband nie enter": [0, 65535], "is your husband nie enter dromio": [0, 65535], "your husband nie enter dromio eph": [0, 65535], "husband nie enter dromio eph adr": [0, 65535], "nie enter dromio eph adr say": [0, 65535], "enter dromio eph adr say is": [0, 65535], "dromio eph adr say is your": [0, 65535], "eph adr say is your tardie": [0, 65535], "adr say is your tardie master": [0, 65535], "say is your tardie master now": [0, 65535], "is your tardie master now at": [0, 65535], "your tardie master now at hand": [0, 65535], "tardie master now at hand e": [0, 65535], "master now at hand e dro": [0, 65535], "now at hand e dro nay": [0, 65535], "at hand e dro nay hee's": [0, 65535], "hand e dro nay hee's at": [0, 65535], "e dro nay hee's at too": [0, 65535], "dro nay hee's at too hands": [0, 65535], "nay hee's at too hands with": [0, 65535], "hee's at too hands with mee": [0, 65535], "at too hands with mee and": [0, 65535], "too hands with mee and that": [0, 65535], "hands with mee and that my": [0, 65535], "with mee and that my two": [0, 65535], "mee and that my two eares": [0, 65535], "and that my two eares can": [0, 65535], "that my two eares can witnesse": [0, 65535], "my two eares can witnesse adr": [0, 65535], "two eares can witnesse adr say": [0, 65535], "eares can witnesse adr say didst": [0, 65535], "can witnesse adr say didst thou": [0, 65535], "witnesse adr say didst thou speake": [0, 65535], "adr say didst thou speake with": [0, 65535], "say didst thou speake with him": [0, 65535], "didst thou speake with him knowst": [0, 65535], "thou speake with him knowst thou": [0, 65535], "speake with him knowst thou his": [0, 65535], "with him knowst thou his minde": [0, 65535], "him knowst thou his minde e": [0, 65535], "knowst thou his minde e dro": [0, 65535], "thou his minde e dro i": [0, 65535], "his minde e dro i i": [0, 65535], "minde e dro i i he": [0, 65535], "e dro i i he told": [0, 65535], "dro i i he told his": [0, 65535], "i i he told his minde": [0, 65535], "i he told his minde vpon": [0, 65535], "he told his minde vpon mine": [0, 65535], "told his minde vpon mine eare": [0, 65535], "his minde vpon mine eare beshrew": [0, 65535], "minde vpon mine eare beshrew his": [0, 65535], "vpon mine eare beshrew his hand": [0, 65535], "mine eare beshrew his hand i": [0, 65535], "eare beshrew his hand i scarce": [0, 65535], "beshrew his hand i scarce could": [0, 65535], "his hand i scarce could vnderstand": [0, 65535], "hand i scarce could vnderstand it": [0, 65535], "i scarce could vnderstand it luc": [0, 65535], "scarce could vnderstand it luc spake": [0, 65535], "could vnderstand it luc spake hee": [0, 65535], "vnderstand it luc spake hee so": [0, 65535], "it luc spake hee so doubtfully": [0, 65535], "luc spake hee so doubtfully thou": [0, 65535], "spake hee so doubtfully thou couldst": [0, 65535], "hee so doubtfully thou couldst not": [0, 65535], "so doubtfully thou couldst not feele": [0, 65535], "doubtfully thou couldst not feele his": [0, 65535], "thou couldst not feele his meaning": [0, 65535], "couldst not feele his meaning e": [0, 65535], "not feele his meaning e dro": [0, 65535], "feele his meaning e dro nay": [0, 65535], "his meaning e dro nay hee": [0, 65535], "meaning e dro nay hee strooke": [0, 65535], "e dro nay hee strooke so": [0, 65535], "dro nay hee strooke so plainly": [0, 65535], "nay hee strooke so plainly i": [0, 65535], "hee strooke so plainly i could": [0, 65535], "strooke so plainly i could too": [0, 65535], "so plainly i could too well": [0, 65535], "plainly i could too well feele": [0, 65535], "i could too well feele his": [0, 65535], "could too well feele his blowes": [0, 65535], "too well feele his blowes and": [0, 65535], "well feele his blowes and withall": [0, 65535], "feele his blowes and withall so": [0, 65535], "his blowes and withall so doubtfully": [0, 65535], "blowes and withall so doubtfully that": [0, 65535], "and withall so doubtfully that i": [0, 65535], "withall so doubtfully that i could": [0, 65535], "so doubtfully that i could scarce": [0, 65535], "doubtfully that i could scarce vnderstand": [0, 65535], "that i could scarce vnderstand them": [0, 65535], "i could scarce vnderstand them adri": [0, 65535], "could scarce vnderstand them adri but": [0, 65535], "scarce vnderstand them adri but say": [0, 65535], "vnderstand them adri but say i": [0, 65535], "them adri but say i prethee": [0, 65535], "adri but say i prethee is": [0, 65535], "but say i prethee is he": [0, 65535], "say i prethee is he comming": [0, 65535], "i prethee is he comming home": [0, 65535], "prethee is he comming home it": [0, 65535], "is he comming home it seemes": [0, 65535], "he comming home it seemes he": [0, 65535], "comming home it seemes he hath": [0, 65535], "home it seemes he hath great": [0, 65535], "it seemes he hath great care": [0, 65535], "seemes he hath great care to": [0, 65535], "he hath great care to please": [0, 65535], "hath great care to please his": [0, 65535], "great care to please his wife": [0, 65535], "care to please his wife e": [0, 65535], "to please his wife e dro": [0, 65535], "please his wife e dro why": [0, 65535], "his wife e dro why mistresse": [0, 65535], "wife e dro why mistresse sure": [0, 65535], "e dro why mistresse sure my": [0, 65535], "dro why mistresse sure my master": [0, 65535], "why mistresse sure my master is": [0, 65535], "mistresse sure my master is horne": [0, 65535], "sure my master is horne mad": [0, 65535], "my master is horne mad adri": [0, 65535], "master is horne mad adri horne": [0, 65535], "is horne mad adri horne mad": [0, 65535], "horne mad adri horne mad thou": [0, 65535], "mad adri horne mad thou villaine": [0, 65535], "adri horne mad thou villaine e": [0, 65535], "horne mad thou villaine e dro": [0, 65535], "mad thou villaine e dro i": [0, 65535], "thou villaine e dro i meane": [0, 65535], "villaine e dro i meane not": [0, 65535], "e dro i meane not cuckold": [0, 65535], "dro i meane not cuckold mad": [0, 65535], "i meane not cuckold mad but": [0, 65535], "meane not cuckold mad but sure": [0, 65535], "not cuckold mad but sure he": [0, 65535], "cuckold mad but sure he is": [0, 65535], "mad but sure he is starke": [0, 65535], "but sure he is starke mad": [0, 65535], "sure he is starke mad when": [0, 65535], "he is starke mad when i": [0, 65535], "is starke mad when i desir'd": [0, 65535], "starke mad when i desir'd him": [0, 65535], "mad when i desir'd him to": [0, 65535], "when i desir'd him to come": [0, 65535], "i desir'd him to come home": [0, 65535], "desir'd him to come home to": [0, 65535], "him to come home to dinner": [0, 65535], "to come home to dinner he": [0, 65535], "come home to dinner he ask'd": [0, 65535], "home to dinner he ask'd me": [0, 65535], "to dinner he ask'd me for": [0, 65535], "dinner he ask'd me for a": [0, 65535], "he ask'd me for a hundred": [0, 65535], "ask'd me for a hundred markes": [0, 65535], "me for a hundred markes in": [0, 65535], "for a hundred markes in gold": [0, 65535], "a hundred markes in gold 'tis": [0, 65535], "hundred markes in gold 'tis dinner": [0, 65535], "markes in gold 'tis dinner time": [0, 65535], "in gold 'tis dinner time quoth": [0, 65535], "gold 'tis dinner time quoth i": [0, 65535], "'tis dinner time quoth i my": [0, 65535], "dinner time quoth i my gold": [0, 65535], "time quoth i my gold quoth": [0, 65535], "quoth i my gold quoth he": [0, 65535], "i my gold quoth he your": [0, 65535], "my gold quoth he your meat": [0, 65535], "gold quoth he your meat doth": [0, 65535], "quoth he your meat doth burne": [0, 65535], "he your meat doth burne quoth": [0, 65535], "your meat doth burne quoth i": [0, 65535], "meat doth burne quoth i my": [0, 65535], "doth burne quoth i my gold": [0, 65535], "burne quoth i my gold quoth": [0, 65535], "i my gold quoth he will": [0, 65535], "my gold quoth he will you": [0, 65535], "gold quoth he will you come": [0, 65535], "quoth he will you come quoth": [0, 65535], "he will you come quoth i": [0, 65535], "will you come quoth i my": [0, 65535], "you come quoth i my gold": [0, 65535], "come quoth i my gold quoth": [0, 65535], "i my gold quoth he where": [0, 65535], "my gold quoth he where is": [0, 65535], "gold quoth he where is the": [0, 65535], "quoth he where is the thousand": [0, 65535], "he where is the thousand markes": [0, 65535], "where is the thousand markes i": [0, 65535], "is the thousand markes i gaue": [0, 65535], "the thousand markes i gaue thee": [0, 65535], "thousand markes i gaue thee villaine": [0, 65535], "markes i gaue thee villaine the": [0, 65535], "i gaue thee villaine the pigge": [0, 65535], "gaue thee villaine the pigge quoth": [0, 65535], "thee villaine the pigge quoth i": [0, 65535], "villaine the pigge quoth i is": [0, 65535], "the pigge quoth i is burn'd": [0, 65535], "pigge quoth i is burn'd my": [0, 65535], "quoth i is burn'd my gold": [0, 65535], "i is burn'd my gold quoth": [0, 65535], "is burn'd my gold quoth he": [0, 65535], "burn'd my gold quoth he my": [0, 65535], "my gold quoth he my mistresse": [0, 65535], "gold quoth he my mistresse sir": [0, 65535], "quoth he my mistresse sir quoth": [0, 65535], "he my mistresse sir quoth i": [0, 65535], "my mistresse sir quoth i hang": [0, 65535], "mistresse sir quoth i hang vp": [0, 65535], "sir quoth i hang vp thy": [0, 65535], "quoth i hang vp thy mistresse": [0, 65535], "i hang vp thy mistresse i": [0, 65535], "hang vp thy mistresse i know": [0, 65535], "vp thy mistresse i know not": [0, 65535], "thy mistresse i know not thy": [0, 65535], "mistresse i know not thy mistresse": [0, 65535], "i know not thy mistresse out": [0, 65535], "know not thy mistresse out on": [0, 65535], "not thy mistresse out on thy": [0, 65535], "thy mistresse out on thy mistresse": [0, 65535], "mistresse out on thy mistresse luci": [0, 65535], "out on thy mistresse luci quoth": [0, 65535], "on thy mistresse luci quoth who": [0, 65535], "thy mistresse luci quoth who e": [0, 65535], "mistresse luci quoth who e dr": [0, 65535], "luci quoth who e dr quoth": [0, 65535], "quoth who e dr quoth my": [0, 65535], "who e dr quoth my master": [0, 65535], "e dr quoth my master i": [0, 65535], "dr quoth my master i know": [0, 65535], "quoth my master i know quoth": [0, 65535], "my master i know quoth he": [0, 65535], "master i know quoth he no": [0, 65535], "i know quoth he no house": [0, 65535], "know quoth he no house no": [0, 65535], "quoth he no house no wife": [0, 65535], "he no house no wife no": [0, 65535], "no house no wife no mistresse": [0, 65535], "house no wife no mistresse so": [0, 65535], "no wife no mistresse so that": [0, 65535], "wife no mistresse so that my": [0, 65535], "no mistresse so that my arrant": [0, 65535], "mistresse so that my arrant due": [0, 65535], "so that my arrant due vnto": [0, 65535], "that my arrant due vnto my": [0, 65535], "my arrant due vnto my tongue": [0, 65535], "arrant due vnto my tongue i": [0, 65535], "due vnto my tongue i thanke": [0, 65535], "vnto my tongue i thanke him": [0, 65535], "my tongue i thanke him i": [0, 65535], "tongue i thanke him i bare": [0, 65535], "i thanke him i bare home": [0, 65535], "thanke him i bare home vpon": [0, 65535], "him i bare home vpon my": [0, 65535], "i bare home vpon my shoulders": [0, 65535], "bare home vpon my shoulders for": [0, 65535], "home vpon my shoulders for in": [0, 65535], "vpon my shoulders for in conclusion": [0, 65535], "my shoulders for in conclusion he": [0, 65535], "shoulders for in conclusion he did": [0, 65535], "for in conclusion he did beat": [0, 65535], "in conclusion he did beat me": [0, 65535], "conclusion he did beat me there": [0, 65535], "he did beat me there adri": [0, 65535], "did beat me there adri go": [0, 65535], "beat me there adri go back": [0, 65535], "me there adri go back againe": [0, 65535], "there adri go back againe thou": [0, 65535], "adri go back againe thou slaue": [0, 65535], "go back againe thou slaue fetch": [0, 65535], "back againe thou slaue fetch him": [0, 65535], "againe thou slaue fetch him home": [0, 65535], "thou slaue fetch him home dro": [0, 65535], "slaue fetch him home dro goe": [0, 65535], "fetch him home dro goe backe": [0, 65535], "him home dro goe backe againe": [0, 65535], "home dro goe backe againe and": [0, 65535], "dro goe backe againe and be": [0, 65535], "goe backe againe and be new": [0, 65535], "backe againe and be new beaten": [0, 65535], "againe and be new beaten home": [0, 65535], "and be new beaten home for": [0, 65535], "be new beaten home for gods": [0, 65535], "new beaten home for gods sake": [0, 65535], "beaten home for gods sake send": [0, 65535], "home for gods sake send some": [0, 65535], "for gods sake send some other": [0, 65535], "gods sake send some other messenger": [0, 65535], "sake send some other messenger adri": [0, 65535], "send some other messenger adri backe": [0, 65535], "some other messenger adri backe slaue": [0, 65535], "other messenger adri backe slaue or": [0, 65535], "messenger adri backe slaue or i": [0, 65535], "adri backe slaue or i will": [0, 65535], "backe slaue or i will breake": [0, 65535], "slaue or i will breake thy": [0, 65535], "or i will breake thy pate": [0, 65535], "i will breake thy pate a": [0, 65535], "will breake thy pate a crosse": [0, 65535], "breake thy pate a crosse dro": [0, 65535], "thy pate a crosse dro and": [0, 65535], "pate a crosse dro and he": [0, 65535], "a crosse dro and he will": [0, 65535], "crosse dro and he will blesse": [0, 65535], "dro and he will blesse the": [0, 65535], "and he will blesse the crosse": [0, 65535], "he will blesse the crosse with": [0, 65535], "will blesse the crosse with other": [0, 65535], "blesse the crosse with other beating": [0, 65535], "the crosse with other beating betweene": [0, 65535], "crosse with other beating betweene you": [0, 65535], "with other beating betweene you i": [0, 65535], "other beating betweene you i shall": [0, 65535], "beating betweene you i shall haue": [0, 65535], "betweene you i shall haue a": [0, 65535], "you i shall haue a holy": [0, 65535], "i shall haue a holy head": [0, 65535], "shall haue a holy head adri": [0, 65535], "haue a holy head adri hence": [0, 65535], "a holy head adri hence prating": [0, 65535], "holy head adri hence prating pesant": [0, 65535], "head adri hence prating pesant fetch": [0, 65535], "adri hence prating pesant fetch thy": [0, 65535], "hence prating pesant fetch thy master": [0, 65535], "prating pesant fetch thy master home": [0, 65535], "pesant fetch thy master home dro": [0, 65535], "fetch thy master home dro am": [0, 65535], "thy master home dro am i": [0, 65535], "master home dro am i so": [0, 65535], "home dro am i so round": [0, 65535], "dro am i so round with": [0, 65535], "am i so round with you": [0, 65535], "i so round with you as": [0, 65535], "so round with you as you": [0, 65535], "round with you as you with": [0, 65535], "with you as you with me": [0, 65535], "you as you with me that": [0, 65535], "as you with me that like": [0, 65535], "you with me that like a": [0, 65535], "with me that like a foot": [0, 65535], "me that like a foot ball": [0, 65535], "that like a foot ball you": [0, 65535], "like a foot ball you doe": [0, 65535], "a foot ball you doe spurne": [0, 65535], "foot ball you doe spurne me": [0, 65535], "ball you doe spurne me thus": [0, 65535], "you doe spurne me thus you": [0, 65535], "doe spurne me thus you spurne": [0, 65535], "spurne me thus you spurne me": [0, 65535], "me thus you spurne me hence": [0, 65535], "thus you spurne me hence and": [0, 65535], "you spurne me hence and he": [0, 65535], "spurne me hence and he will": [0, 65535], "me hence and he will spurne": [0, 65535], "hence and he will spurne me": [0, 65535], "and he will spurne me hither": [0, 65535], "he will spurne me hither if": [0, 65535], "will spurne me hither if i": [0, 65535], "spurne me hither if i last": [0, 65535], "me hither if i last in": [0, 65535], "hither if i last in this": [0, 65535], "if i last in this seruice": [0, 65535], "i last in this seruice you": [0, 65535], "last in this seruice you must": [0, 65535], "in this seruice you must case": [0, 65535], "this seruice you must case me": [0, 65535], "seruice you must case me in": [0, 65535], "you must case me in leather": [0, 65535], "must case me in leather luci": [0, 65535], "case me in leather luci fie": [0, 65535], "me in leather luci fie how": [0, 65535], "in leather luci fie how impatience": [0, 65535], "leather luci fie how impatience lowreth": [0, 65535], "luci fie how impatience lowreth in": [0, 65535], "fie how impatience lowreth in your": [0, 65535], "how impatience lowreth in your face": [0, 65535], "impatience lowreth in your face adri": [0, 65535], "lowreth in your face adri his": [0, 65535], "in your face adri his company": [0, 65535], "your face adri his company must": [0, 65535], "face adri his company must do": [0, 65535], "adri his company must do his": [0, 65535], "his company must do his minions": [0, 65535], "company must do his minions grace": [0, 65535], "must do his minions grace whil'st": [0, 65535], "do his minions grace whil'st i": [0, 65535], "his minions grace whil'st i at": [0, 65535], "minions grace whil'st i at home": [0, 65535], "grace whil'st i at home starue": [0, 65535], "whil'st i at home starue for": [0, 65535], "i at home starue for a": [0, 65535], "at home starue for a merrie": [0, 65535], "home starue for a merrie looke": [0, 65535], "starue for a merrie looke hath": [0, 65535], "for a merrie looke hath homelie": [0, 65535], "a merrie looke hath homelie age": [0, 65535], "merrie looke hath homelie age th'": [0, 65535], "looke hath homelie age th' alluring": [0, 65535], "hath homelie age th' alluring beauty": [0, 65535], "homelie age th' alluring beauty tooke": [0, 65535], "age th' alluring beauty tooke from": [0, 65535], "th' alluring beauty tooke from my": [0, 65535], "alluring beauty tooke from my poore": [0, 65535], "beauty tooke from my poore cheeke": [0, 65535], "tooke from my poore cheeke then": [0, 65535], "from my poore cheeke then he": [0, 65535], "my poore cheeke then he hath": [0, 65535], "poore cheeke then he hath wasted": [0, 65535], "cheeke then he hath wasted it": [0, 65535], "then he hath wasted it are": [0, 65535], "he hath wasted it are my": [0, 65535], "hath wasted it are my discourses": [0, 65535], "wasted it are my discourses dull": [0, 65535], "it are my discourses dull barren": [0, 65535], "are my discourses dull barren my": [0, 65535], "my discourses dull barren my wit": [0, 65535], "discourses dull barren my wit if": [0, 65535], "dull barren my wit if voluble": [0, 65535], "barren my wit if voluble and": [0, 65535], "my wit if voluble and sharpe": [0, 65535], "wit if voluble and sharpe discourse": [0, 65535], "if voluble and sharpe discourse be": [0, 65535], "voluble and sharpe discourse be mar'd": [0, 65535], "and sharpe discourse be mar'd vnkindnesse": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "discourse be mar'd vnkindnesse blunts it": [0, 65535], "be mar'd vnkindnesse blunts it more": [0, 65535], "mar'd vnkindnesse blunts it more then": [0, 65535], "vnkindnesse blunts it more then marble": [0, 65535], "blunts it more then marble hard": [0, 65535], "it more then marble hard doe": [0, 65535], "more then marble hard doe their": [0, 65535], "then marble hard doe their gay": [0, 65535], "marble hard doe their gay vestments": [0, 65535], "hard doe their gay vestments his": [0, 65535], "doe their gay vestments his affections": [0, 65535], "their gay vestments his affections baite": [0, 65535], "gay vestments his affections baite that's": [0, 65535], "vestments his affections baite that's not": [0, 65535], "his affections baite that's not my": [0, 65535], "affections baite that's not my fault": [0, 65535], "baite that's not my fault hee's": [0, 65535], "that's not my fault hee's master": [0, 65535], "not my fault hee's master of": [0, 65535], "my fault hee's master of my": [0, 65535], "fault hee's master of my state": [0, 65535], "hee's master of my state what": [0, 65535], "master of my state what ruines": [0, 65535], "of my state what ruines are": [0, 65535], "my state what ruines are in": [0, 65535], "state what ruines are in me": [0, 65535], "what ruines are in me that": [0, 65535], "ruines are in me that can": [0, 65535], "are in me that can be": [0, 65535], "in me that can be found": [0, 65535], "me that can be found by": [0, 65535], "that can be found by him": [0, 65535], "can be found by him not": [0, 65535], "be found by him not ruin'd": [0, 65535], "found by him not ruin'd then": [0, 65535], "by him not ruin'd then is": [0, 65535], "him not ruin'd then is he": [0, 65535], "not ruin'd then is he the": [0, 65535], "ruin'd then is he the ground": [0, 65535], "then is he the ground of": [0, 65535], "is he the ground of my": [0, 65535], "he the ground of my defeatures": [0, 65535], "the ground of my defeatures my": [0, 65535], "ground of my defeatures my decayed": [0, 65535], "of my defeatures my decayed faire": [0, 65535], "my defeatures my decayed faire a": [0, 65535], "defeatures my decayed faire a sunnie": [0, 65535], "my decayed faire a sunnie looke": [0, 65535], "decayed faire a sunnie looke of": [0, 65535], "faire a sunnie looke of his": [0, 65535], "a sunnie looke of his would": [0, 65535], "sunnie looke of his would soone": [0, 65535], "looke of his would soone repaire": [0, 65535], "of his would soone repaire but": [0, 65535], "his would soone repaire but too": [0, 65535], "would soone repaire but too vnruly": [0, 65535], "soone repaire but too vnruly deere": [0, 65535], "repaire but too vnruly deere he": [0, 65535], "but too vnruly deere he breakes": [0, 65535], "too vnruly deere he breakes the": [0, 65535], "vnruly deere he breakes the pale": [0, 65535], "deere he breakes the pale and": [0, 65535], "he breakes the pale and feedes": [0, 65535], "breakes the pale and feedes from": [0, 65535], "the pale and feedes from home": [0, 65535], "pale and feedes from home poore": [0, 65535], "and feedes from home poore i": [0, 65535], "feedes from home poore i am": [0, 65535], "from home poore i am but": [0, 65535], "home poore i am but his": [0, 65535], "poore i am but his stale": [0, 65535], "i am but his stale luci": [0, 65535], "am but his stale luci selfe": [0, 65535], "but his stale luci selfe harming": [0, 65535], "his stale luci selfe harming iealousie": [0, 65535], "stale luci selfe harming iealousie fie": [0, 65535], "luci selfe harming iealousie fie beat": [0, 65535], "selfe harming iealousie fie beat it": [0, 65535], "harming iealousie fie beat it hence": [0, 65535], "iealousie fie beat it hence ad": [0, 65535], "fie beat it hence ad vnfeeling": [0, 65535], "beat it hence ad vnfeeling fools": [0, 65535], "it hence ad vnfeeling fools can": [0, 65535], "hence ad vnfeeling fools can with": [0, 65535], "ad vnfeeling fools can with such": [0, 65535], "vnfeeling fools can with such wrongs": [0, 65535], "fools can with such wrongs dispence": [0, 65535], "can with such wrongs dispence i": [0, 65535], "with such wrongs dispence i know": [0, 65535], "such wrongs dispence i know his": [0, 65535], "wrongs dispence i know his eye": [0, 65535], "dispence i know his eye doth": [0, 65535], "i know his eye doth homage": [0, 65535], "know his eye doth homage other": [0, 65535], "his eye doth homage other where": [0, 65535], "eye doth homage other where or": [0, 65535], "doth homage other where or else": [0, 65535], "homage other where or else what": [0, 65535], "other where or else what lets": [0, 65535], "where or else what lets it": [0, 65535], "or else what lets it but": [0, 65535], "else what lets it but he": [0, 65535], "what lets it but he would": [0, 65535], "lets it but he would be": [0, 65535], "it but he would be here": [0, 65535], "but he would be here sister": [0, 65535], "he would be here sister you": [0, 65535], "would be here sister you know": [0, 65535], "be here sister you know he": [0, 65535], "here sister you know he promis'd": [0, 65535], "sister you know he promis'd me": [0, 65535], "you know he promis'd me a": [0, 65535], "know he promis'd me a chaine": [0, 65535], "he promis'd me a chaine would": [0, 65535], "promis'd me a chaine would that": [0, 65535], "me a chaine would that alone": [0, 65535], "a chaine would that alone a": [0, 65535], "chaine would that alone a loue": [0, 65535], "would that alone a loue he": [0, 65535], "that alone a loue he would": [0, 65535], "alone a loue he would detaine": [0, 65535], "a loue he would detaine so": [0, 65535], "loue he would detaine so he": [0, 65535], "he would detaine so he would": [0, 65535], "would detaine so he would keepe": [0, 65535], "detaine so he would keepe faire": [0, 65535], "so he would keepe faire quarter": [0, 65535], "he would keepe faire quarter with": [0, 65535], "would keepe faire quarter with his": [0, 65535], "keepe faire quarter with his bed": [0, 65535], "faire quarter with his bed i": [0, 65535], "quarter with his bed i see": [0, 65535], "with his bed i see the": [0, 65535], "his bed i see the iewell": [0, 65535], "bed i see the iewell best": [0, 65535], "i see the iewell best enamaled": [0, 65535], "see the iewell best enamaled will": [0, 65535], "the iewell best enamaled will loose": [0, 65535], "iewell best enamaled will loose his": [0, 65535], "best enamaled will loose his beautie": [0, 65535], "enamaled will loose his beautie yet": [0, 65535], "will loose his beautie yet the": [0, 65535], "loose his beautie yet the gold": [0, 65535], "his beautie yet the gold bides": [0, 65535], "beautie yet the gold bides still": [0, 65535], "yet the gold bides still that": [0, 65535], "the gold bides still that others": [0, 65535], "gold bides still that others touch": [0, 65535], "bides still that others touch and": [0, 65535], "still that others touch and often": [0, 65535], "that others touch and often touching": [0, 65535], "others touch and often touching will": [0, 65535], "touch and often touching will where": [0, 65535], "and often touching will where gold": [0, 65535], "often touching will where gold and": [0, 65535], "touching will where gold and no": [0, 65535], "will where gold and no man": [0, 65535], "where gold and no man that": [0, 65535], "gold and no man that hath": [0, 65535], "and no man that hath a": [0, 65535], "no man that hath a name": [0, 65535], "man that hath a name by": [0, 65535], "that hath a name by falshood": [0, 65535], "hath a name by falshood and": [0, 65535], "a name by falshood and corruption": [0, 65535], "name by falshood and corruption doth": [0, 65535], "by falshood and corruption doth it": [0, 65535], "falshood and corruption doth it shame": [0, 65535], "and corruption doth it shame since": [0, 65535], "corruption doth it shame since that": [0, 65535], "doth it shame since that my": [0, 65535], "it shame since that my beautie": [0, 65535], "shame since that my beautie cannot": [0, 65535], "since that my beautie cannot please": [0, 65535], "that my beautie cannot please his": [0, 65535], "my beautie cannot please his eie": [0, 65535], "beautie cannot please his eie ile": [0, 65535], "cannot please his eie ile weepe": [0, 65535], "please his eie ile weepe what's": [0, 65535], "his eie ile weepe what's left": [0, 65535], "eie ile weepe what's left away": [0, 65535], "ile weepe what's left away and": [0, 65535], "weepe what's left away and weeping": [0, 65535], "what's left away and weeping die": [0, 65535], "left away and weeping die luci": [0, 65535], "away and weeping die luci how": [0, 65535], "and weeping die luci how manie": [0, 65535], "weeping die luci how manie fond": [0, 65535], "die luci how manie fond fooles": [0, 65535], "luci how manie fond fooles serue": [0, 65535], "how manie fond fooles serue mad": [0, 65535], "manie fond fooles serue mad ielousie": [0, 65535], "fond fooles serue mad ielousie exit": [0, 65535], "fooles serue mad ielousie exit enter": [0, 65535], "serue mad ielousie exit enter antipholis": [0, 65535], "mad ielousie exit enter antipholis errotis": [0, 65535], "ielousie exit enter antipholis errotis ant": [0, 65535], "exit enter antipholis errotis ant the": [0, 65535], "enter antipholis errotis ant the gold": [0, 65535], "antipholis errotis ant the gold i": [0, 65535], "errotis ant the gold i gaue": [0, 65535], "ant the gold i gaue to": [0, 65535], "the gold i gaue to dromio": [0, 65535], "gold i gaue to dromio is": [0, 65535], "i gaue to dromio is laid": [0, 65535], "gaue to dromio is laid vp": [0, 65535], "to dromio is laid vp safe": [0, 65535], "dromio is laid vp safe at": [0, 65535], "is laid vp safe at the": [0, 65535], "laid vp safe at the centaur": [0, 65535], "vp safe at the centaur and": [0, 65535], "safe at the centaur and the": [0, 65535], "at the centaur and the heedfull": [0, 65535], "the centaur and the heedfull slaue": [0, 65535], "centaur and the heedfull slaue is": [0, 65535], "and the heedfull slaue is wandred": [0, 65535], "the heedfull slaue is wandred forth": [0, 65535], "heedfull slaue is wandred forth in": [0, 65535], "slaue is wandred forth in care": [0, 65535], "is wandred forth in care to": [0, 65535], "wandred forth in care to seeke": [0, 65535], "forth in care to seeke me": [0, 65535], "in care to seeke me out": [0, 65535], "care to seeke me out by": [0, 65535], "to seeke me out by computation": [0, 65535], "seeke me out by computation and": [0, 65535], "me out by computation and mine": [0, 65535], "out by computation and mine hosts": [0, 65535], "by computation and mine hosts report": [0, 65535], "computation and mine hosts report i": [0, 65535], "and mine hosts report i could": [0, 65535], "mine hosts report i could not": [0, 65535], "hosts report i could not speake": [0, 65535], "report i could not speake with": [0, 65535], "i could not speake with dromio": [0, 65535], "could not speake with dromio since": [0, 65535], "not speake with dromio since at": [0, 65535], "speake with dromio since at first": [0, 65535], "with dromio since at first i": [0, 65535], "dromio since at first i sent": [0, 65535], "since at first i sent him": [0, 65535], "at first i sent him from": [0, 65535], "first i sent him from the": [0, 65535], "i sent him from the mart": [0, 65535], "sent him from the mart see": [0, 65535], "him from the mart see here": [0, 65535], "from the mart see here he": [0, 65535], "the mart see here he comes": [0, 65535], "mart see here he comes enter": [0, 65535], "see here he comes enter dromio": [0, 65535], "here he comes enter dromio siracusia": [0, 65535], "he comes enter dromio siracusia how": [0, 65535], "comes enter dromio siracusia how now": [0, 65535], "enter dromio siracusia how now sir": [0, 65535], "dromio siracusia how now sir is": [0, 65535], "siracusia how now sir is your": [0, 65535], "how now sir is your merrie": [0, 65535], "now sir is your merrie humor": [0, 65535], "sir is your merrie humor alter'd": [0, 65535], "is your merrie humor alter'd as": [0, 65535], "your merrie humor alter'd as you": [0, 65535], "merrie humor alter'd as you loue": [0, 65535], "humor alter'd as you loue stroakes": [0, 65535], "alter'd as you loue stroakes so": [0, 65535], "as you loue stroakes so iest": [0, 65535], "you loue stroakes so iest with": [0, 65535], "loue stroakes so iest with me": [0, 65535], "stroakes so iest with me againe": [0, 65535], "so iest with me againe you": [0, 65535], "iest with me againe you know": [0, 65535], "with me againe you know no": [0, 65535], "me againe you know no centaur": [0, 65535], "againe you know no centaur you": [0, 65535], "you know no centaur you receiu'd": [0, 65535], "know no centaur you receiu'd no": [0, 65535], "no centaur you receiu'd no gold": [0, 65535], "centaur you receiu'd no gold your": [0, 65535], "you receiu'd no gold your mistresse": [0, 65535], "receiu'd no gold your mistresse sent": [0, 65535], "no gold your mistresse sent to": [0, 65535], "gold your mistresse sent to haue": [0, 65535], "your mistresse sent to haue me": [0, 65535], "mistresse sent to haue me home": [0, 65535], "sent to haue me home to": [0, 65535], "to haue me home to dinner": [0, 65535], "haue me home to dinner my": [0, 65535], "me home to dinner my house": [0, 65535], "home to dinner my house was": [0, 65535], "to dinner my house was at": [0, 65535], "dinner my house was at the": [0, 65535], "my house was at the ph\u0153nix": [0, 65535], "house was at the ph\u0153nix wast": [0, 65535], "was at the ph\u0153nix wast thou": [0, 65535], "at the ph\u0153nix wast thou mad": [0, 65535], "the ph\u0153nix wast thou mad that": [0, 65535], "ph\u0153nix wast thou mad that thus": [0, 65535], "wast thou mad that thus so": [0, 65535], "thou mad that thus so madlie": [0, 65535], "mad that thus so madlie thou": [0, 65535], "that thus so madlie thou did": [0, 65535], "thus so madlie thou did didst": [0, 65535], "so madlie thou did didst answere": [0, 65535], "madlie thou did didst answere me": [0, 65535], "thou did didst answere me s": [0, 65535], "did didst answere me s dro": [0, 65535], "didst answere me s dro what": [0, 65535], "answere me s dro what answer": [0, 65535], "me s dro what answer sir": [0, 65535], "s dro what answer sir when": [0, 65535], "dro what answer sir when spake": [0, 65535], "what answer sir when spake i": [0, 65535], "answer sir when spake i such": [0, 65535], "sir when spake i such a": [0, 65535], "when spake i such a word": [0, 65535], "spake i such a word e": [0, 65535], "i such a word e ant": [0, 65535], "such a word e ant euen": [0, 65535], "a word e ant euen now": [0, 65535], "word e ant euen now euen": [0, 65535], "e ant euen now euen here": [0, 65535], "ant euen now euen here not": [0, 65535], "euen now euen here not halfe": [0, 65535], "now euen here not halfe an": [0, 65535], "euen here not halfe an howre": [0, 65535], "here not halfe an howre since": [0, 65535], "not halfe an howre since s": [0, 65535], "halfe an howre since s dro": [0, 65535], "an howre since s dro i": [0, 65535], "howre since s dro i did": [0, 65535], "since s dro i did not": [0, 65535], "s dro i did not see": [0, 65535], "dro i did not see you": [0, 65535], "i did not see you since": [0, 65535], "did not see you since you": [0, 65535], "not see you since you sent": [0, 65535], "see you since you sent me": [0, 65535], "you since you sent me hence": [0, 65535], "since you sent me hence home": [0, 65535], "you sent me hence home to": [0, 65535], "sent me hence home to the": [0, 65535], "me hence home to the centaur": [0, 65535], "hence home to the centaur with": [0, 65535], "home to the centaur with the": [0, 65535], "to the centaur with the gold": [0, 65535], "the centaur with the gold you": [0, 65535], "centaur with the gold you gaue": [0, 65535], "with the gold you gaue me": [0, 65535], "the gold you gaue me ant": [0, 65535], "gold you gaue me ant villaine": [0, 65535], "you gaue me ant villaine thou": [0, 65535], "gaue me ant villaine thou didst": [0, 65535], "me ant villaine thou didst denie": [0, 65535], "ant villaine thou didst denie the": [0, 65535], "villaine thou didst denie the golds": [0, 65535], "thou didst denie the golds receit": [0, 65535], "didst denie the golds receit and": [0, 65535], "denie the golds receit and toldst": [0, 65535], "the golds receit and toldst me": [0, 65535], "golds receit and toldst me of": [0, 65535], "receit and toldst me of a": [0, 65535], "and toldst me of a mistresse": [0, 65535], "toldst me of a mistresse and": [0, 65535], "me of a mistresse and a": [0, 65535], "of a mistresse and a dinner": [0, 65535], "a mistresse and a dinner for": [0, 65535], "mistresse and a dinner for which": [0, 65535], "and a dinner for which i": [0, 65535], "a dinner for which i hope": [0, 65535], "dinner for which i hope thou": [0, 65535], "for which i hope thou feltst": [0, 65535], "which i hope thou feltst i": [0, 65535], "i hope thou feltst i was": [0, 65535], "hope thou feltst i was displeas'd": [0, 65535], "thou feltst i was displeas'd s": [0, 65535], "feltst i was displeas'd s dro": [0, 65535], "i was displeas'd s dro i": [0, 65535], "was displeas'd s dro i am": [0, 65535], "displeas'd s dro i am glad": [0, 65535], "s dro i am glad to": [0, 65535], "dro i am glad to see": [0, 65535], "i am glad to see you": [0, 65535], "am glad to see you in": [0, 65535], "glad to see you in this": [0, 65535], "to see you in this merrie": [0, 65535], "see you in this merrie vaine": [0, 65535], "you in this merrie vaine what": [0, 65535], "in this merrie vaine what meanes": [0, 65535], "this merrie vaine what meanes this": [0, 65535], "merrie vaine what meanes this iest": [0, 65535], "vaine what meanes this iest i": [0, 65535], "what meanes this iest i pray": [0, 65535], "meanes this iest i pray you": [0, 65535], "this iest i pray you master": [0, 65535], "iest i pray you master tell": [0, 65535], "i pray you master tell me": [0, 65535], "pray you master tell me ant": [0, 65535], "you master tell me ant yea": [0, 65535], "master tell me ant yea dost": [0, 65535], "tell me ant yea dost thou": [0, 65535], "me ant yea dost thou ieere": [0, 65535], "ant yea dost thou ieere flowt": [0, 65535], "yea dost thou ieere flowt me": [0, 65535], "dost thou ieere flowt me in": [0, 65535], "thou ieere flowt me in the": [0, 65535], "ieere flowt me in the teeth": [0, 65535], "flowt me in the teeth thinkst": [0, 65535], "me in the teeth thinkst thou": [0, 65535], "in the teeth thinkst thou i": [0, 65535], "the teeth thinkst thou i iest": [0, 65535], "teeth thinkst thou i iest hold": [0, 65535], "thinkst thou i iest hold take": [0, 65535], "thou i iest hold take thou": [0, 65535], "i iest hold take thou that": [0, 65535], "iest hold take thou that that": [0, 65535], "hold take thou that that beats": [0, 65535], "take thou that that beats dro": [0, 65535], "thou that that beats dro s": [0, 65535], "that that beats dro s dr": [0, 65535], "that beats dro s dr hold": [0, 65535], "beats dro s dr hold sir": [0, 65535], "dro s dr hold sir for": [0, 65535], "s dr hold sir for gods": [0, 65535], "dr hold sir for gods sake": [0, 65535], "hold sir for gods sake now": [0, 65535], "sir for gods sake now your": [0, 65535], "for gods sake now your iest": [0, 65535], "gods sake now your iest is": [0, 65535], "sake now your iest is earnest": [0, 65535], "now your iest is earnest vpon": [0, 65535], "your iest is earnest vpon what": [0, 65535], "iest is earnest vpon what bargaine": [0, 65535], "is earnest vpon what bargaine do": [0, 65535], "earnest vpon what bargaine do you": [0, 65535], "vpon what bargaine do you giue": [0, 65535], "what bargaine do you giue it": [0, 65535], "bargaine do you giue it me": [0, 65535], "do you giue it me antiph": [0, 65535], "you giue it me antiph because": [0, 65535], "giue it me antiph because that": [0, 65535], "it me antiph because that i": [0, 65535], "me antiph because that i familiarlie": [0, 65535], "antiph because that i familiarlie sometimes": [0, 65535], "because that i familiarlie sometimes doe": [0, 65535], "that i familiarlie sometimes doe vse": [0, 65535], "i familiarlie sometimes doe vse you": [0, 65535], "familiarlie sometimes doe vse you for": [0, 65535], "sometimes doe vse you for my": [0, 65535], "doe vse you for my foole": [0, 65535], "vse you for my foole and": [0, 65535], "you for my foole and chat": [0, 65535], "for my foole and chat with": [0, 65535], "my foole and chat with you": [0, 65535], "foole and chat with you your": [0, 65535], "and chat with you your sawcinesse": [0, 65535], "chat with you your sawcinesse will": [0, 65535], "with you your sawcinesse will iest": [0, 65535], "you your sawcinesse will iest vpon": [0, 65535], "your sawcinesse will iest vpon my": [0, 65535], "sawcinesse will iest vpon my loue": [0, 65535], "will iest vpon my loue and": [0, 65535], "iest vpon my loue and make": [0, 65535], "vpon my loue and make a": [0, 65535], "my loue and make a common": [0, 65535], "loue and make a common of": [0, 65535], "and make a common of my": [0, 65535], "make a common of my serious": [0, 65535], "a common of my serious howres": [0, 65535], "common of my serious howres when": [0, 65535], "of my serious howres when the": [0, 65535], "my serious howres when the sunne": [0, 65535], "serious howres when the sunne shines": [0, 65535], "howres when the sunne shines let": [0, 65535], "when the sunne shines let foolish": [0, 65535], "the sunne shines let foolish gnats": [0, 65535], "sunne shines let foolish gnats make": [0, 65535], "shines let foolish gnats make sport": [0, 65535], "let foolish gnats make sport but": [0, 65535], "foolish gnats make sport but creepe": [0, 65535], "gnats make sport but creepe in": [0, 65535], "make sport but creepe in crannies": [0, 65535], "sport but creepe in crannies when": [0, 65535], "but creepe in crannies when he": [0, 65535], "creepe in crannies when he hides": [0, 65535], "in crannies when he hides his": [0, 65535], "crannies when he hides his beames": [0, 65535], "when he hides his beames if": [0, 65535], "he hides his beames if you": [0, 65535], "hides his beames if you will": [0, 65535], "his beames if you will iest": [0, 65535], "beames if you will iest with": [0, 65535], "if you will iest with me": [0, 65535], "you will iest with me know": [0, 65535], "will iest with me know my": [0, 65535], "iest with me know my aspect": [0, 65535], "with me know my aspect and": [0, 65535], "me know my aspect and fashion": [0, 65535], "know my aspect and fashion your": [0, 65535], "my aspect and fashion your demeanor": [0, 65535], "aspect and fashion your demeanor to": [0, 65535], "and fashion your demeanor to my": [0, 65535], "fashion your demeanor to my lookes": [0, 65535], "your demeanor to my lookes or": [0, 65535], "demeanor to my lookes or i": [0, 65535], "to my lookes or i will": [0, 65535], "my lookes or i will beat": [0, 65535], "lookes or i will beat this": [0, 65535], "or i will beat this method": [0, 65535], "i will beat this method in": [0, 65535], "will beat this method in your": [0, 65535], "beat this method in your sconce": [0, 65535], "this method in your sconce s": [0, 65535], "method in your sconce s dro": [0, 65535], "in your sconce s dro sconce": [0, 65535], "your sconce s dro sconce call": [0, 65535], "sconce s dro sconce call you": [0, 65535], "s dro sconce call you it": [0, 65535], "dro sconce call you it so": [0, 65535], "sconce call you it so you": [0, 65535], "call you it so you would": [0, 65535], "you it so you would leaue": [0, 65535], "it so you would leaue battering": [0, 65535], "so you would leaue battering i": [0, 65535], "you would leaue battering i had": [0, 65535], "would leaue battering i had rather": [0, 65535], "leaue battering i had rather haue": [0, 65535], "battering i had rather haue it": [0, 65535], "i had rather haue it a": [0, 65535], "had rather haue it a head": [0, 65535], "rather haue it a head and": [0, 65535], "haue it a head and you": [0, 65535], "it a head and you vse": [0, 65535], "a head and you vse these": [0, 65535], "head and you vse these blows": [0, 65535], "and you vse these blows long": [0, 65535], "you vse these blows long i": [0, 65535], "vse these blows long i must": [0, 65535], "these blows long i must get": [0, 65535], "blows long i must get a": [0, 65535], "long i must get a sconce": [0, 65535], "i must get a sconce for": [0, 65535], "must get a sconce for my": [0, 65535], "get a sconce for my head": [0, 65535], "a sconce for my head and": [0, 65535], "sconce for my head and insconce": [0, 65535], "for my head and insconce it": [0, 65535], "my head and insconce it to": [0, 65535], "head and insconce it to or": [0, 65535], "and insconce it to or else": [0, 65535], "insconce it to or else i": [0, 65535], "it to or else i shall": [0, 65535], "to or else i shall seek": [0, 65535], "or else i shall seek my": [0, 65535], "else i shall seek my wit": [0, 65535], "i shall seek my wit in": [0, 65535], "shall seek my wit in my": [0, 65535], "seek my wit in my shoulders": [0, 65535], "my wit in my shoulders but": [0, 65535], "wit in my shoulders but i": [0, 65535], "in my shoulders but i pray": [0, 65535], "my shoulders but i pray sir": [0, 65535], "shoulders but i pray sir why": [0, 65535], "but i pray sir why am": [0, 65535], "i pray sir why am i": [0, 65535], "pray sir why am i beaten": [0, 65535], "sir why am i beaten ant": [0, 65535], "why am i beaten ant dost": [0, 65535], "am i beaten ant dost thou": [0, 65535], "i beaten ant dost thou not": [0, 65535], "beaten ant dost thou not know": [0, 65535], "ant dost thou not know s": [0, 65535], "dost thou not know s dro": [0, 65535], "thou not know s dro nothing": [0, 65535], "not know s dro nothing sir": [0, 65535], "know s dro nothing sir but": [0, 65535], "s dro nothing sir but that": [0, 65535], "dro nothing sir but that i": [0, 65535], "nothing sir but that i am": [0, 65535], "sir but that i am beaten": [0, 65535], "but that i am beaten ant": [0, 65535], "that i am beaten ant shall": [0, 65535], "i am beaten ant shall i": [0, 65535], "am beaten ant shall i tell": [0, 65535], "beaten ant shall i tell you": [0, 65535], "ant shall i tell you why": [0, 65535], "shall i tell you why s": [0, 65535], "i tell you why s dro": [0, 65535], "tell you why s dro i": [0, 65535], "you why s dro i sir": [0, 65535], "why s dro i sir and": [0, 65535], "s dro i sir and wherefore": [0, 65535], "dro i sir and wherefore for": [0, 65535], "i sir and wherefore for they": [0, 65535], "sir and wherefore for they say": [0, 65535], "and wherefore for they say euery": [0, 65535], "wherefore for they say euery why": [0, 65535], "for they say euery why hath": [0, 65535], "they say euery why hath a": [0, 65535], "say euery why hath a wherefore": [0, 65535], "euery why hath a wherefore ant": [0, 65535], "why hath a wherefore ant why": [0, 65535], "hath a wherefore ant why first": [0, 65535], "a wherefore ant why first for": [0, 65535], "wherefore ant why first for flowting": [0, 65535], "ant why first for flowting me": [0, 65535], "why first for flowting me and": [0, 65535], "first for flowting me and then": [0, 65535], "for flowting me and then wherefore": [0, 65535], "flowting me and then wherefore for": [0, 65535], "me and then wherefore for vrging": [0, 65535], "and then wherefore for vrging it": [0, 65535], "then wherefore for vrging it the": [0, 65535], "wherefore for vrging it the second": [0, 65535], "for vrging it the second time": [0, 65535], "vrging it the second time to": [0, 65535], "it the second time to me": [0, 65535], "the second time to me s": [0, 65535], "second time to me s dro": [0, 65535], "time to me s dro was": [0, 65535], "to me s dro was there": [0, 65535], "me s dro was there euer": [0, 65535], "s dro was there euer anie": [0, 65535], "dro was there euer anie man": [0, 65535], "was there euer anie man thus": [0, 65535], "there euer anie man thus beaten": [0, 65535], "euer anie man thus beaten out": [0, 65535], "anie man thus beaten out of": [0, 65535], "man thus beaten out of season": [0, 65535], "thus beaten out of season when": [0, 65535], "beaten out of season when in": [0, 65535], "out of season when in the": [0, 65535], "of season when in the why": [0, 65535], "season when in the why and": [0, 65535], "when in the why and the": [0, 65535], "in the why and the wherefore": [0, 65535], "the why and the wherefore is": [0, 65535], "why and the wherefore is neither": [0, 65535], "and the wherefore is neither rime": [0, 65535], "the wherefore is neither rime nor": [0, 65535], "wherefore is neither rime nor reason": [0, 65535], "is neither rime nor reason well": [0, 65535], "neither rime nor reason well sir": [0, 65535], "rime nor reason well sir i": [0, 65535], "nor reason well sir i thanke": [0, 65535], "reason well sir i thanke you": [0, 65535], "well sir i thanke you ant": [0, 65535], "sir i thanke you ant thanke": [0, 65535], "i thanke you ant thanke me": [0, 65535], "thanke you ant thanke me sir": [0, 65535], "you ant thanke me sir for": [0, 65535], "ant thanke me sir for what": [0, 65535], "thanke me sir for what s": [0, 65535], "me sir for what s dro": [0, 65535], "sir for what s dro marry": [0, 65535], "for what s dro marry sir": [0, 65535], "what s dro marry sir for": [0, 65535], "s dro marry sir for this": [0, 65535], "dro marry sir for this something": [0, 65535], "marry sir for this something that": [0, 65535], "sir for this something that you": [0, 65535], "for this something that you gaue": [0, 65535], "this something that you gaue me": [0, 65535], "something that you gaue me for": [0, 65535], "that you gaue me for nothing": [0, 65535], "you gaue me for nothing ant": [0, 65535], "gaue me for nothing ant ile": [0, 65535], "me for nothing ant ile make": [0, 65535], "for nothing ant ile make you": [0, 65535], "nothing ant ile make you amends": [0, 65535], "ant ile make you amends next": [0, 65535], "ile make you amends next to": [0, 65535], "make you amends next to giue": [0, 65535], "you amends next to giue you": [0, 65535], "amends next to giue you nothing": [0, 65535], "next to giue you nothing for": [0, 65535], "to giue you nothing for something": [0, 65535], "giue you nothing for something but": [0, 65535], "you nothing for something but say": [0, 65535], "nothing for something but say sir": [0, 65535], "for something but say sir is": [0, 65535], "something but say sir is it": [0, 65535], "but say sir is it dinner": [0, 65535], "say sir is it dinner time": [0, 65535], "sir is it dinner time s": [0, 65535], "is it dinner time s dro": [0, 65535], "it dinner time s dro no": [0, 65535], "dinner time s dro no sir": [0, 65535], "time s dro no sir i": [0, 65535], "s dro no sir i thinke": [0, 65535], "dro no sir i thinke the": [0, 65535], "no sir i thinke the meat": [0, 65535], "sir i thinke the meat wants": [0, 65535], "i thinke the meat wants that": [0, 65535], "thinke the meat wants that i": [0, 65535], "the meat wants that i haue": [0, 65535], "meat wants that i haue ant": [0, 65535], "wants that i haue ant in": [0, 65535], "that i haue ant in good": [0, 65535], "i haue ant in good time": [0, 65535], "haue ant in good time sir": [0, 65535], "ant in good time sir what's": [0, 65535], "in good time sir what's that": [0, 65535], "good time sir what's that s": [0, 65535], "time sir what's that s dro": [0, 65535], "sir what's that s dro basting": [0, 65535], "what's that s dro basting ant": [0, 65535], "that s dro basting ant well": [0, 65535], "s dro basting ant well sir": [0, 65535], "dro basting ant well sir then": [0, 65535], "basting ant well sir then 'twill": [0, 65535], "ant well sir then 'twill be": [0, 65535], "well sir then 'twill be drie": [0, 65535], "sir then 'twill be drie s": [0, 65535], "then 'twill be drie s dro": [0, 65535], "'twill be drie s dro if": [0, 65535], "be drie s dro if it": [0, 65535], "drie s dro if it be": [0, 65535], "s dro if it be sir": [0, 65535], "dro if it be sir i": [0, 65535], "if it be sir i pray": [0, 65535], "it be sir i pray you": [0, 65535], "be sir i pray you eat": [0, 65535], "sir i pray you eat none": [0, 65535], "i pray you eat none of": [0, 65535], "pray you eat none of it": [0, 65535], "you eat none of it ant": [0, 65535], "eat none of it ant your": [0, 65535], "none of it ant your reason": [0, 65535], "of it ant your reason s": [0, 65535], "it ant your reason s dro": [0, 65535], "ant your reason s dro lest": [0, 65535], "your reason s dro lest it": [0, 65535], "reason s dro lest it make": [0, 65535], "s dro lest it make you": [0, 65535], "dro lest it make you chollericke": [0, 65535], "lest it make you chollericke and": [0, 65535], "it make you chollericke and purchase": [0, 65535], "make you chollericke and purchase me": [0, 65535], "you chollericke and purchase me another": [0, 65535], "chollericke and purchase me another drie": [0, 65535], "and purchase me another drie basting": [0, 65535], "purchase me another drie basting ant": [0, 65535], "me another drie basting ant well": [0, 65535], "another drie basting ant well sir": [0, 65535], "drie basting ant well sir learne": [0, 65535], "basting ant well sir learne to": [0, 65535], "ant well sir learne to iest": [0, 65535], "well sir learne to iest in": [0, 65535], "sir learne to iest in good": [0, 65535], "learne to iest in good time": [0, 65535], "to iest in good time there's": [0, 65535], "iest in good time there's a": [0, 65535], "in good time there's a time": [0, 65535], "good time there's a time for": [0, 65535], "time there's a time for all": [0, 65535], "there's a time for all things": [0, 65535], "a time for all things s": [0, 65535], "time for all things s dro": [0, 65535], "for all things s dro i": [0, 65535], "all things s dro i durst": [0, 65535], "things s dro i durst haue": [0, 65535], "s dro i durst haue denied": [0, 65535], "dro i durst haue denied that": [0, 65535], "i durst haue denied that before": [0, 65535], "durst haue denied that before you": [0, 65535], "haue denied that before you were": [0, 65535], "denied that before you were so": [0, 65535], "that before you were so chollericke": [0, 65535], "before you were so chollericke anti": [0, 65535], "you were so chollericke anti by": [0, 65535], "were so chollericke anti by what": [0, 65535], "so chollericke anti by what rule": [0, 65535], "chollericke anti by what rule sir": [0, 65535], "anti by what rule sir s": [0, 65535], "by what rule sir s dro": [0, 65535], "what rule sir s dro marry": [0, 65535], "rule sir s dro marry sir": [0, 65535], "sir s dro marry sir by": [0, 65535], "s dro marry sir by a": [0, 65535], "dro marry sir by a rule": [0, 65535], "marry sir by a rule as": [0, 65535], "sir by a rule as plaine": [0, 65535], "by a rule as plaine as": [0, 65535], "a rule as plaine as the": [0, 65535], "rule as plaine as the plaine": [0, 65535], "as plaine as the plaine bald": [0, 65535], "plaine as the plaine bald pate": [0, 65535], "as the plaine bald pate of": [0, 65535], "the plaine bald pate of father": [0, 65535], "plaine bald pate of father time": [0, 65535], "bald pate of father time himselfe": [0, 65535], "pate of father time himselfe ant": [0, 65535], "of father time himselfe ant let's": [0, 65535], "father time himselfe ant let's heare": [0, 65535], "time himselfe ant let's heare it": [0, 65535], "himselfe ant let's heare it s": [0, 65535], "ant let's heare it s dro": [0, 65535], "let's heare it s dro there's": [0, 65535], "heare it s dro there's no": [0, 65535], "it s dro there's no time": [0, 65535], "s dro there's no time for": [0, 65535], "dro there's no time for a": [0, 65535], "there's no time for a man": [0, 65535], "no time for a man to": [0, 65535], "time for a man to recouer": [0, 65535], "for a man to recouer his": [0, 65535], "a man to recouer his haire": [0, 65535], "man to recouer his haire that": [0, 65535], "to recouer his haire that growes": [0, 65535], "recouer his haire that growes bald": [0, 65535], "his haire that growes bald by": [0, 65535], "haire that growes bald by nature": [0, 65535], "that growes bald by nature ant": [0, 65535], "growes bald by nature ant may": [0, 65535], "bald by nature ant may he": [0, 65535], "by nature ant may he not": [0, 65535], "nature ant may he not doe": [0, 65535], "ant may he not doe it": [0, 65535], "may he not doe it by": [0, 65535], "he not doe it by fine": [0, 65535], "not doe it by fine and": [0, 65535], "doe it by fine and recouerie": [0, 65535], "it by fine and recouerie s": [0, 65535], "by fine and recouerie s dro": [0, 65535], "fine and recouerie s dro yes": [0, 65535], "and recouerie s dro yes to": [0, 65535], "recouerie s dro yes to pay": [0, 65535], "s dro yes to pay a": [0, 65535], "dro yes to pay a fine": [0, 65535], "yes to pay a fine for": [0, 65535], "to pay a fine for a": [0, 65535], "pay a fine for a perewig": [0, 65535], "a fine for a perewig and": [0, 65535], "fine for a perewig and recouer": [0, 65535], "for a perewig and recouer the": [0, 65535], "a perewig and recouer the lost": [0, 65535], "perewig and recouer the lost haire": [0, 65535], "and recouer the lost haire of": [0, 65535], "recouer the lost haire of another": [0, 65535], "the lost haire of another man": [0, 65535], "lost haire of another man ant": [0, 65535], "haire of another man ant why": [0, 65535], "of another man ant why is": [0, 65535], "another man ant why is time": [0, 65535], "man ant why is time such": [0, 65535], "ant why is time such a": [0, 65535], "why is time such a niggard": [0, 65535], "is time such a niggard of": [0, 65535], "time such a niggard of haire": [0, 65535], "such a niggard of haire being": [0, 65535], "a niggard of haire being as": [0, 65535], "niggard of haire being as it": [0, 65535], "of haire being as it is": [0, 65535], "haire being as it is so": [0, 65535], "being as it is so plentifull": [0, 65535], "as it is so plentifull an": [0, 65535], "it is so plentifull an excrement": [0, 65535], "is so plentifull an excrement s": [0, 65535], "so plentifull an excrement s dro": [0, 65535], "plentifull an excrement s dro because": [0, 65535], "an excrement s dro because it": [0, 65535], "excrement s dro because it is": [0, 65535], "s dro because it is a": [0, 65535], "dro because it is a blessing": [0, 65535], "because it is a blessing that": [0, 65535], "it is a blessing that hee": [0, 65535], "is a blessing that hee bestowes": [0, 65535], "a blessing that hee bestowes on": [0, 65535], "blessing that hee bestowes on beasts": [0, 65535], "that hee bestowes on beasts and": [0, 65535], "hee bestowes on beasts and what": [0, 65535], "bestowes on beasts and what he": [0, 65535], "on beasts and what he hath": [0, 65535], "beasts and what he hath scanted": [0, 65535], "and what he hath scanted them": [0, 65535], "what he hath scanted them in": [0, 65535], "he hath scanted them in haire": [0, 65535], "hath scanted them in haire hee": [0, 65535], "scanted them in haire hee hath": [0, 65535], "them in haire hee hath giuen": [0, 65535], "in haire hee hath giuen them": [0, 65535], "haire hee hath giuen them in": [0, 65535], "hee hath giuen them in wit": [0, 65535], "hath giuen them in wit ant": [0, 65535], "giuen them in wit ant why": [0, 65535], "them in wit ant why but": [0, 65535], "in wit ant why but theres": [0, 65535], "wit ant why but theres manie": [0, 65535], "ant why but theres manie a": [0, 65535], "why but theres manie a man": [0, 65535], "but theres manie a man hath": [0, 65535], "theres manie a man hath more": [0, 65535], "manie a man hath more haire": [0, 65535], "a man hath more haire then": [0, 65535], "man hath more haire then wit": [0, 65535], "hath more haire then wit s": [0, 65535], "more haire then wit s dro": [0, 65535], "haire then wit s dro not": [0, 65535], "then wit s dro not a": [0, 65535], "wit s dro not a man": [0, 65535], "s dro not a man of": [0, 65535], "dro not a man of those": [0, 65535], "not a man of those but": [0, 65535], "a man of those but he": [0, 65535], "man of those but he hath": [0, 65535], "of those but he hath the": [0, 65535], "those but he hath the wit": [0, 65535], "but he hath the wit to": [0, 65535], "he hath the wit to lose": [0, 65535], "hath the wit to lose his": [0, 65535], "the wit to lose his haire": [0, 65535], "wit to lose his haire ant": [0, 65535], "to lose his haire ant why": [0, 65535], "lose his haire ant why thou": [0, 65535], "his haire ant why thou didst": [0, 65535], "haire ant why thou didst conclude": [0, 65535], "ant why thou didst conclude hairy": [0, 65535], "why thou didst conclude hairy men": [0, 65535], "thou didst conclude hairy men plain": [0, 65535], "didst conclude hairy men plain dealers": [0, 65535], "conclude hairy men plain dealers without": [0, 65535], "hairy men plain dealers without wit": [0, 65535], "men plain dealers without wit s": [0, 65535], "plain dealers without wit s dro": [0, 65535], "dealers without wit s dro the": [0, 65535], "without wit s dro the plainer": [0, 65535], "wit s dro the plainer dealer": [0, 65535], "s dro the plainer dealer the": [0, 65535], "dro the plainer dealer the sooner": [0, 65535], "the plainer dealer the sooner lost": [0, 65535], "plainer dealer the sooner lost yet": [0, 65535], "dealer the sooner lost yet he": [0, 65535], "the sooner lost yet he looseth": [0, 65535], "sooner lost yet he looseth it": [0, 65535], "lost yet he looseth it in": [0, 65535], "yet he looseth it in a": [0, 65535], "he looseth it in a kinde": [0, 65535], "looseth it in a kinde of": [0, 65535], "it in a kinde of iollitie": [0, 65535], "in a kinde of iollitie an": [0, 65535], "a kinde of iollitie an for": [0, 65535], "kinde of iollitie an for what": [0, 65535], "of iollitie an for what reason": [0, 65535], "iollitie an for what reason s": [0, 65535], "an for what reason s dro": [0, 65535], "for what reason s dro for": [0, 65535], "what reason s dro for two": [0, 65535], "reason s dro for two and": [0, 65535], "s dro for two and sound": [0, 65535], "dro for two and sound ones": [0, 65535], "for two and sound ones to": [0, 65535], "two and sound ones to an": [0, 65535], "and sound ones to an nay": [0, 65535], "sound ones to an nay not": [0, 65535], "ones to an nay not sound": [0, 65535], "to an nay not sound i": [0, 65535], "an nay not sound i pray": [0, 65535], "nay not sound i pray you": [0, 65535], "not sound i pray you s": [0, 65535], "sound i pray you s dro": [0, 65535], "i pray you s dro sure": [0, 65535], "pray you s dro sure ones": [0, 65535], "you s dro sure ones then": [0, 65535], "s dro sure ones then an": [0, 65535], "dro sure ones then an nay": [0, 65535], "sure ones then an nay not": [0, 65535], "ones then an nay not sure": [0, 65535], "then an nay not sure in": [0, 65535], "an nay not sure in a": [0, 65535], "nay not sure in a thing": [0, 65535], "not sure in a thing falsing": [0, 65535], "sure in a thing falsing s": [0, 65535], "in a thing falsing s dro": [0, 65535], "a thing falsing s dro certaine": [0, 65535], "thing falsing s dro certaine ones": [0, 65535], "falsing s dro certaine ones then": [0, 65535], "s dro certaine ones then an": [0, 65535], "dro certaine ones then an name": [0, 65535], "certaine ones then an name them": [0, 65535], "ones then an name them s": [0, 65535], "then an name them s dro": [0, 65535], "an name them s dro the": [0, 65535], "name them s dro the one": [0, 65535], "them s dro the one to": [0, 65535], "s dro the one to saue": [0, 65535], "dro the one to saue the": [0, 65535], "the one to saue the money": [0, 65535], "one to saue the money that": [0, 65535], "to saue the money that he": [0, 65535], "saue the money that he spends": [0, 65535], "the money that he spends in": [0, 65535], "money that he spends in trying": [0, 65535], "that he spends in trying the": [0, 65535], "he spends in trying the other": [0, 65535], "spends in trying the other that": [0, 65535], "in trying the other that at": [0, 65535], "trying the other that at dinner": [0, 65535], "the other that at dinner they": [0, 65535], "other that at dinner they should": [0, 65535], "that at dinner they should not": [0, 65535], "at dinner they should not drop": [0, 65535], "dinner they should not drop in": [0, 65535], "they should not drop in his": [0, 65535], "should not drop in his porrage": [0, 65535], "not drop in his porrage an": [0, 65535], "drop in his porrage an you": [0, 65535], "in his porrage an you would": [0, 65535], "his porrage an you would all": [0, 65535], "porrage an you would all this": [0, 65535], "an you would all this time": [0, 65535], "you would all this time haue": [0, 65535], "would all this time haue prou'd": [0, 65535], "all this time haue prou'd there": [0, 65535], "this time haue prou'd there is": [0, 65535], "time haue prou'd there is no": [0, 65535], "haue prou'd there is no time": [0, 65535], "prou'd there is no time for": [0, 65535], "there is no time for all": [0, 65535], "is no time for all things": [0, 65535], "no time for all things s": [0, 65535], "for all things s dro marry": [0, 65535], "all things s dro marry and": [0, 65535], "things s dro marry and did": [0, 65535], "s dro marry and did sir": [0, 65535], "dro marry and did sir namely": [0, 65535], "marry and did sir namely in": [0, 65535], "and did sir namely in no": [0, 65535], "did sir namely in no time": [0, 65535], "sir namely in no time to": [0, 65535], "namely in no time to recouer": [0, 65535], "in no time to recouer haire": [0, 65535], "no time to recouer haire lost": [0, 65535], "time to recouer haire lost by": [0, 65535], "to recouer haire lost by nature": [0, 65535], "recouer haire lost by nature an": [0, 65535], "haire lost by nature an but": [0, 65535], "lost by nature an but your": [0, 65535], "by nature an but your reason": [0, 65535], "nature an but your reason was": [0, 65535], "an but your reason was not": [0, 65535], "but your reason was not substantiall": [0, 65535], "your reason was not substantiall why": [0, 65535], "reason was not substantiall why there": [0, 65535], "was not substantiall why there is": [0, 65535], "not substantiall why there is no": [0, 65535], "substantiall why there is no time": [0, 65535], "why there is no time to": [0, 65535], "there is no time to recouer": [0, 65535], "is no time to recouer s": [0, 65535], "no time to recouer s dro": [0, 65535], "time to recouer s dro thus": [0, 65535], "to recouer s dro thus i": [0, 65535], "recouer s dro thus i mend": [0, 65535], "s dro thus i mend it": [0, 65535], "dro thus i mend it time": [0, 65535], "thus i mend it time himselfe": [0, 65535], "i mend it time himselfe is": [0, 65535], "mend it time himselfe is bald": [0, 65535], "it time himselfe is bald and": [0, 65535], "time himselfe is bald and therefore": [0, 65535], "himselfe is bald and therefore to": [0, 65535], "is bald and therefore to the": [0, 65535], "bald and therefore to the worlds": [0, 65535], "and therefore to the worlds end": [0, 65535], "therefore to the worlds end will": [0, 65535], "to the worlds end will haue": [0, 65535], "the worlds end will haue bald": [0, 65535], "worlds end will haue bald followers": [0, 65535], "end will haue bald followers an": [0, 65535], "will haue bald followers an i": [0, 65535], "haue bald followers an i knew": [0, 65535], "bald followers an i knew 'twould": [0, 65535], "followers an i knew 'twould be": [0, 65535], "an i knew 'twould be a": [0, 65535], "i knew 'twould be a bald": [0, 65535], "knew 'twould be a bald conclusion": [0, 65535], "'twould be a bald conclusion but": [0, 65535], "be a bald conclusion but soft": [0, 65535], "a bald conclusion but soft who": [0, 65535], "bald conclusion but soft who wafts": [0, 65535], "conclusion but soft who wafts vs": [0, 65535], "but soft who wafts vs yonder": [0, 65535], "soft who wafts vs yonder enter": [0, 65535], "who wafts vs yonder enter adriana": [0, 65535], "wafts vs yonder enter adriana and": [0, 65535], "vs yonder enter adriana and luciana": [0, 65535], "yonder enter adriana and luciana adri": [0, 65535], "enter adriana and luciana adri i": [0, 65535], "adriana and luciana adri i i": [0, 65535], "and luciana adri i i antipholus": [0, 65535], "luciana adri i i antipholus looke": [0, 65535], "adri i i antipholus looke strange": [0, 65535], "i i antipholus looke strange and": [0, 65535], "i antipholus looke strange and frowne": [0, 65535], "antipholus looke strange and frowne some": [0, 65535], "looke strange and frowne some other": [0, 65535], "strange and frowne some other mistresse": [0, 65535], "and frowne some other mistresse hath": [0, 65535], "frowne some other mistresse hath thy": [0, 65535], "some other mistresse hath thy sweet": [0, 65535], "other mistresse hath thy sweet aspects": [0, 65535], "mistresse hath thy sweet aspects i": [0, 65535], "hath thy sweet aspects i am": [0, 65535], "thy sweet aspects i am not": [0, 65535], "sweet aspects i am not adriana": [0, 65535], "aspects i am not adriana nor": [0, 65535], "i am not adriana nor thy": [0, 65535], "am not adriana nor thy wife": [0, 65535], "not adriana nor thy wife the": [0, 65535], "adriana nor thy wife the time": [0, 65535], "nor thy wife the time was": [0, 65535], "thy wife the time was once": [0, 65535], "wife the time was once when": [0, 65535], "the time was once when thou": [0, 65535], "time was once when thou vn": [0, 65535], "was once when thou vn vrg'd": [0, 65535], "once when thou vn vrg'd wouldst": [0, 65535], "when thou vn vrg'd wouldst vow": [0, 65535], "thou vn vrg'd wouldst vow that": [0, 65535], "vn vrg'd wouldst vow that neuer": [0, 65535], "vrg'd wouldst vow that neuer words": [0, 65535], "wouldst vow that neuer words were": [0, 65535], "vow that neuer words were musicke": [0, 65535], "that neuer words were musicke to": [0, 65535], "neuer words were musicke to thine": [0, 65535], "words were musicke to thine eare": [0, 65535], "were musicke to thine eare that": [0, 65535], "musicke to thine eare that neuer": [0, 65535], "to thine eare that neuer obiect": [0, 65535], "thine eare that neuer obiect pleasing": [0, 65535], "eare that neuer obiect pleasing in": [0, 65535], "that neuer obiect pleasing in thine": [0, 65535], "neuer obiect pleasing in thine eye": [0, 65535], "obiect pleasing in thine eye that": [0, 65535], "pleasing in thine eye that neuer": [0, 65535], "in thine eye that neuer touch": [0, 65535], "thine eye that neuer touch well": [0, 65535], "eye that neuer touch well welcome": [0, 65535], "that neuer touch well welcome to": [0, 65535], "neuer touch well welcome to thy": [0, 65535], "touch well welcome to thy hand": [0, 65535], "well welcome to thy hand that": [0, 65535], "welcome to thy hand that neuer": [0, 65535], "to thy hand that neuer meat": [0, 65535], "thy hand that neuer meat sweet": [0, 65535], "hand that neuer meat sweet sauour'd": [0, 65535], "that neuer meat sweet sauour'd in": [0, 65535], "neuer meat sweet sauour'd in thy": [0, 65535], "meat sweet sauour'd in thy taste": [0, 65535], "sweet sauour'd in thy taste vnlesse": [0, 65535], "sauour'd in thy taste vnlesse i": [0, 65535], "in thy taste vnlesse i spake": [0, 65535], "thy taste vnlesse i spake or": [0, 65535], "taste vnlesse i spake or look'd": [0, 65535], "vnlesse i spake or look'd or": [0, 65535], "i spake or look'd or touch'd": [0, 65535], "spake or look'd or touch'd or": [0, 65535], "or look'd or touch'd or caru'd": [0, 65535], "look'd or touch'd or caru'd to": [0, 65535], "or touch'd or caru'd to thee": [0, 65535], "touch'd or caru'd to thee how": [0, 65535], "or caru'd to thee how comes": [0, 65535], "caru'd to thee how comes it": [0, 65535], "to thee how comes it now": [0, 65535], "thee how comes it now my": [0, 65535], "how comes it now my husband": [0, 65535], "comes it now my husband oh": [0, 65535], "it now my husband oh how": [0, 65535], "now my husband oh how comes": [0, 65535], "my husband oh how comes it": [0, 65535], "husband oh how comes it that": [0, 65535], "oh how comes it that thou": [0, 65535], "how comes it that thou art": [0, 65535], "comes it that thou art then": [0, 65535], "it that thou art then estranged": [0, 65535], "that thou art then estranged from": [0, 65535], "thou art then estranged from thy": [0, 65535], "art then estranged from thy selfe": [0, 65535], "then estranged from thy selfe thy": [0, 65535], "estranged from thy selfe thy selfe": [0, 65535], "from thy selfe thy selfe i": [0, 65535], "thy selfe thy selfe i call": [0, 65535], "selfe thy selfe i call it": [0, 65535], "thy selfe i call it being": [0, 65535], "selfe i call it being strange": [0, 65535], "i call it being strange to": [0, 65535], "call it being strange to me": [0, 65535], "it being strange to me that": [0, 65535], "being strange to me that vndiuidable": [0, 65535], "strange to me that vndiuidable incorporate": [0, 65535], "to me that vndiuidable incorporate am": [0, 65535], "me that vndiuidable incorporate am better": [0, 65535], "that vndiuidable incorporate am better then": [0, 65535], "vndiuidable incorporate am better then thy": [0, 65535], "incorporate am better then thy deere": [0, 65535], "am better then thy deere selfes": [0, 65535], "better then thy deere selfes better": [0, 65535], "then thy deere selfes better part": [0, 65535], "thy deere selfes better part ah": [0, 65535], "deere selfes better part ah doe": [0, 65535], "selfes better part ah doe not": [0, 65535], "better part ah doe not teare": [0, 65535], "part ah doe not teare away": [0, 65535], "ah doe not teare away thy": [0, 65535], "doe not teare away thy selfe": [0, 65535], "not teare away thy selfe from": [0, 65535], "teare away thy selfe from me": [0, 65535], "away thy selfe from me for": [0, 65535], "thy selfe from me for know": [0, 65535], "selfe from me for know my": [0, 65535], "from me for know my loue": [0, 65535], "me for know my loue as": [0, 65535], "for know my loue as easie": [0, 65535], "know my loue as easie maist": [0, 65535], "my loue as easie maist thou": [0, 65535], "loue as easie maist thou fall": [0, 65535], "as easie maist thou fall a": [0, 65535], "easie maist thou fall a drop": [0, 65535], "maist thou fall a drop of": [0, 65535], "thou fall a drop of water": [0, 65535], "fall a drop of water in": [0, 65535], "a drop of water in the": [0, 65535], "drop of water in the breaking": [0, 65535], "of water in the breaking gulfe": [0, 65535], "water in the breaking gulfe and": [0, 65535], "in the breaking gulfe and take": [0, 65535], "the breaking gulfe and take vnmingled": [0, 65535], "breaking gulfe and take vnmingled thence": [0, 65535], "gulfe and take vnmingled thence that": [0, 65535], "and take vnmingled thence that drop": [0, 65535], "take vnmingled thence that drop againe": [0, 65535], "vnmingled thence that drop againe without": [0, 65535], "thence that drop againe without addition": [0, 65535], "that drop againe without addition or": [0, 65535], "drop againe without addition or diminishing": [0, 65535], "againe without addition or diminishing as": [0, 65535], "without addition or diminishing as take": [0, 65535], "addition or diminishing as take from": [0, 65535], "or diminishing as take from me": [0, 65535], "diminishing as take from me thy": [0, 65535], "as take from me thy selfe": [0, 65535], "take from me thy selfe and": [0, 65535], "from me thy selfe and not": [0, 65535], "me thy selfe and not me": [0, 65535], "thy selfe and not me too": [0, 65535], "selfe and not me too how": [0, 65535], "and not me too how deerely": [0, 65535], "not me too how deerely would": [0, 65535], "me too how deerely would it": [0, 65535], "too how deerely would it touch": [0, 65535], "how deerely would it touch thee": [0, 65535], "deerely would it touch thee to": [0, 65535], "would it touch thee to the": [0, 65535], "it touch thee to the quicke": [0, 65535], "touch thee to the quicke shouldst": [0, 65535], "thee to the quicke shouldst thou": [0, 65535], "to the quicke shouldst thou but": [0, 65535], "the quicke shouldst thou but heare": [0, 65535], "quicke shouldst thou but heare i": [0, 65535], "shouldst thou but heare i were": [0, 65535], "thou but heare i were licencious": [0, 65535], "but heare i were licencious and": [0, 65535], "heare i were licencious and that": [0, 65535], "i were licencious and that this": [0, 65535], "were licencious and that this body": [0, 65535], "licencious and that this body consecrate": [0, 65535], "and that this body consecrate to": [0, 65535], "that this body consecrate to thee": [0, 65535], "this body consecrate to thee by": [0, 65535], "body consecrate to thee by ruffian": [0, 65535], "consecrate to thee by ruffian lust": [0, 65535], "to thee by ruffian lust should": [0, 65535], "thee by ruffian lust should be": [0, 65535], "by ruffian lust should be contaminate": [0, 65535], "ruffian lust should be contaminate wouldst": [0, 65535], "lust should be contaminate wouldst thou": [0, 65535], "should be contaminate wouldst thou not": [0, 65535], "be contaminate wouldst thou not spit": [0, 65535], "contaminate wouldst thou not spit at": [0, 65535], "wouldst thou not spit at me": [0, 65535], "thou not spit at me and": [0, 65535], "not spit at me and spurne": [0, 65535], "spit at me and spurne at": [0, 65535], "at me and spurne at me": [0, 65535], "me and spurne at me and": [0, 65535], "and spurne at me and hurle": [0, 65535], "spurne at me and hurle the": [0, 65535], "at me and hurle the name": [0, 65535], "me and hurle the name of": [0, 65535], "and hurle the name of husband": [0, 65535], "hurle the name of husband in": [0, 65535], "the name of husband in my": [0, 65535], "name of husband in my face": [0, 65535], "of husband in my face and": [0, 65535], "husband in my face and teare": [0, 65535], "in my face and teare the": [0, 65535], "my face and teare the stain'd": [0, 65535], "face and teare the stain'd skin": [0, 65535], "and teare the stain'd skin of": [0, 65535], "teare the stain'd skin of my": [0, 65535], "the stain'd skin of my harlot": [0, 65535], "stain'd skin of my harlot brow": [0, 65535], "skin of my harlot brow and": [0, 65535], "of my harlot brow and from": [0, 65535], "my harlot brow and from my": [0, 65535], "harlot brow and from my false": [0, 65535], "brow and from my false hand": [0, 65535], "and from my false hand cut": [0, 65535], "from my false hand cut the": [0, 65535], "my false hand cut the wedding": [0, 65535], "false hand cut the wedding ring": [0, 65535], "hand cut the wedding ring and": [0, 65535], "cut the wedding ring and breake": [0, 65535], "the wedding ring and breake it": [0, 65535], "wedding ring and breake it with": [0, 65535], "ring and breake it with a": [0, 65535], "and breake it with a deepe": [0, 65535], "breake it with a deepe diuorcing": [0, 65535], "it with a deepe diuorcing vow": [0, 65535], "with a deepe diuorcing vow i": [0, 65535], "a deepe diuorcing vow i know": [0, 65535], "deepe diuorcing vow i know thou": [0, 65535], "diuorcing vow i know thou canst": [0, 65535], "vow i know thou canst and": [0, 65535], "i know thou canst and therefore": [0, 65535], "know thou canst and therefore see": [0, 65535], "thou canst and therefore see thou": [0, 65535], "canst and therefore see thou doe": [0, 65535], "and therefore see thou doe it": [0, 65535], "therefore see thou doe it i": [0, 65535], "see thou doe it i am": [0, 65535], "thou doe it i am possest": [0, 65535], "doe it i am possest with": [0, 65535], "it i am possest with an": [0, 65535], "i am possest with an adulterate": [0, 65535], "am possest with an adulterate blot": [0, 65535], "possest with an adulterate blot my": [0, 65535], "with an adulterate blot my bloud": [0, 65535], "an adulterate blot my bloud is": [0, 65535], "adulterate blot my bloud is mingled": [0, 65535], "blot my bloud is mingled with": [0, 65535], "my bloud is mingled with the": [0, 65535], "bloud is mingled with the crime": [0, 65535], "is mingled with the crime of": [0, 65535], "mingled with the crime of lust": [0, 65535], "with the crime of lust for": [0, 65535], "the crime of lust for if": [0, 65535], "crime of lust for if we": [0, 65535], "of lust for if we two": [0, 65535], "lust for if we two be": [0, 65535], "for if we two be one": [0, 65535], "if we two be one and": [0, 65535], "we two be one and thou": [0, 65535], "two be one and thou play": [0, 65535], "be one and thou play false": [0, 65535], "one and thou play false i": [0, 65535], "and thou play false i doe": [0, 65535], "thou play false i doe digest": [0, 65535], "play false i doe digest the": [0, 65535], "false i doe digest the poison": [0, 65535], "i doe digest the poison of": [0, 65535], "doe digest the poison of thy": [0, 65535], "digest the poison of thy flesh": [0, 65535], "the poison of thy flesh being": [0, 65535], "poison of thy flesh being strumpeted": [0, 65535], "of thy flesh being strumpeted by": [0, 65535], "thy flesh being strumpeted by thy": [0, 65535], "flesh being strumpeted by thy contagion": [0, 65535], "being strumpeted by thy contagion keepe": [0, 65535], "strumpeted by thy contagion keepe then": [0, 65535], "by thy contagion keepe then faire": [0, 65535], "thy contagion keepe then faire league": [0, 65535], "contagion keepe then faire league and": [0, 65535], "keepe then faire league and truce": [0, 65535], "then faire league and truce with": [0, 65535], "faire league and truce with thy": [0, 65535], "league and truce with thy true": [0, 65535], "and truce with thy true bed": [0, 65535], "truce with thy true bed i": [0, 65535], "with thy true bed i liue": [0, 65535], "thy true bed i liue distain'd": [0, 65535], "true bed i liue distain'd thou": [0, 65535], "bed i liue distain'd thou vndishonoured": [0, 65535], "i liue distain'd thou vndishonoured antip": [0, 65535], "liue distain'd thou vndishonoured antip plead": [0, 65535], "distain'd thou vndishonoured antip plead you": [0, 65535], "thou vndishonoured antip plead you to": [0, 65535], "vndishonoured antip plead you to me": [0, 65535], "antip plead you to me faire": [0, 65535], "plead you to me faire dame": [0, 65535], "you to me faire dame i": [0, 65535], "to me faire dame i know": [0, 65535], "me faire dame i know you": [0, 65535], "faire dame i know you not": [0, 65535], "dame i know you not in": [0, 65535], "i know you not in ephesus": [0, 65535], "know you not in ephesus i": [0, 65535], "you not in ephesus i am": [0, 65535], "not in ephesus i am but": [0, 65535], "in ephesus i am but two": [0, 65535], "ephesus i am but two houres": [0, 65535], "i am but two houres old": [0, 65535], "am but two houres old as": [0, 65535], "but two houres old as strange": [0, 65535], "two houres old as strange vnto": [0, 65535], "houres old as strange vnto your": [0, 65535], "old as strange vnto your towne": [0, 65535], "as strange vnto your towne as": [0, 65535], "strange vnto your towne as to": [0, 65535], "vnto your towne as to your": [0, 65535], "your towne as to your talke": [0, 65535], "towne as to your talke who": [0, 65535], "as to your talke who euery": [0, 65535], "to your talke who euery word": [0, 65535], "your talke who euery word by": [0, 65535], "talke who euery word by all": [0, 65535], "who euery word by all my": [0, 65535], "euery word by all my wit": [0, 65535], "word by all my wit being": [0, 65535], "by all my wit being scan'd": [0, 65535], "all my wit being scan'd wants": [0, 65535], "my wit being scan'd wants wit": [0, 65535], "wit being scan'd wants wit in": [0, 65535], "being scan'd wants wit in all": [0, 65535], "scan'd wants wit in all one": [0, 65535], "wants wit in all one word": [0, 65535], "wit in all one word to": [0, 65535], "in all one word to vnderstand": [0, 65535], "all one word to vnderstand luci": [0, 65535], "one word to vnderstand luci fie": [0, 65535], "word to vnderstand luci fie brother": [0, 65535], "to vnderstand luci fie brother how": [0, 65535], "vnderstand luci fie brother how the": [0, 65535], "luci fie brother how the world": [0, 65535], "fie brother how the world is": [0, 65535], "brother how the world is chang'd": [0, 65535], "how the world is chang'd with": [0, 65535], "the world is chang'd with you": [0, 65535], "world is chang'd with you when": [0, 65535], "is chang'd with you when were": [0, 65535], "chang'd with you when were you": [0, 65535], "with you when were you wont": [0, 65535], "you when were you wont to": [0, 65535], "when were you wont to vse": [0, 65535], "were you wont to vse my": [0, 65535], "you wont to vse my sister": [0, 65535], "wont to vse my sister thus": [0, 65535], "to vse my sister thus she": [0, 65535], "vse my sister thus she sent": [0, 65535], "my sister thus she sent for": [0, 65535], "sister thus she sent for you": [0, 65535], "thus she sent for you by": [0, 65535], "she sent for you by dromio": [0, 65535], "sent for you by dromio home": [0, 65535], "for you by dromio home to": [0, 65535], "you by dromio home to dinner": [0, 65535], "by dromio home to dinner ant": [0, 65535], "dromio home to dinner ant by": [0, 65535], "home to dinner ant by dromio": [0, 65535], "to dinner ant by dromio drom": [0, 65535], "dinner ant by dromio drom by": [0, 65535], "ant by dromio drom by me": [0, 65535], "by dromio drom by me adr": [0, 65535], "dromio drom by me adr by": [0, 65535], "drom by me adr by thee": [0, 65535], "by me adr by thee and": [0, 65535], "me adr by thee and this": [0, 65535], "adr by thee and this thou": [0, 65535], "by thee and this thou didst": [0, 65535], "thee and this thou didst returne": [0, 65535], "and this thou didst returne from": [0, 65535], "this thou didst returne from him": [0, 65535], "thou didst returne from him that": [0, 65535], "didst returne from him that he": [0, 65535], "returne from him that he did": [0, 65535], "from him that he did buffet": [0, 65535], "him that he did buffet thee": [0, 65535], "that he did buffet thee and": [0, 65535], "he did buffet thee and in": [0, 65535], "did buffet thee and in his": [0, 65535], "buffet thee and in his blowes": [0, 65535], "thee and in his blowes denied": [0, 65535], "and in his blowes denied my": [0, 65535], "in his blowes denied my house": [0, 65535], "his blowes denied my house for": [0, 65535], "blowes denied my house for his": [0, 65535], "denied my house for his me": [0, 65535], "my house for his me for": [0, 65535], "house for his me for his": [0, 65535], "for his me for his wife": [0, 65535], "his me for his wife ant": [0, 65535], "me for his wife ant did": [0, 65535], "for his wife ant did you": [0, 65535], "his wife ant did you conuerse": [0, 65535], "wife ant did you conuerse sir": [0, 65535], "ant did you conuerse sir with": [0, 65535], "did you conuerse sir with this": [0, 65535], "you conuerse sir with this gentlewoman": [0, 65535], "conuerse sir with this gentlewoman what": [0, 65535], "sir with this gentlewoman what is": [0, 65535], "with this gentlewoman what is the": [0, 65535], "this gentlewoman what is the course": [0, 65535], "gentlewoman what is the course and": [0, 65535], "what is the course and drift": [0, 65535], "is the course and drift of": [0, 65535], "the course and drift of your": [0, 65535], "course and drift of your compact": [0, 65535], "and drift of your compact s": [0, 65535], "drift of your compact s dro": [0, 65535], "of your compact s dro i": [0, 65535], "your compact s dro i sir": [0, 65535], "compact s dro i sir i": [0, 65535], "s dro i sir i neuer": [0, 65535], "dro i sir i neuer saw": [0, 65535], "i sir i neuer saw her": [0, 65535], "sir i neuer saw her till": [0, 65535], "i neuer saw her till this": [0, 65535], "neuer saw her till this time": [0, 65535], "saw her till this time ant": [0, 65535], "her till this time ant villaine": [0, 65535], "till this time ant villaine thou": [0, 65535], "this time ant villaine thou liest": [0, 65535], "time ant villaine thou liest for": [0, 65535], "ant villaine thou liest for euen": [0, 65535], "villaine thou liest for euen her": [0, 65535], "thou liest for euen her verie": [0, 65535], "liest for euen her verie words": [0, 65535], "for euen her verie words didst": [0, 65535], "euen her verie words didst thou": [0, 65535], "her verie words didst thou deliuer": [0, 65535], "verie words didst thou deliuer to": [0, 65535], "words didst thou deliuer to me": [0, 65535], "didst thou deliuer to me on": [0, 65535], "thou deliuer to me on the": [0, 65535], "deliuer to me on the mart": [0, 65535], "to me on the mart s": [0, 65535], "me on the mart s dro": [0, 65535], "on the mart s dro i": [0, 65535], "the mart s dro i neuer": [0, 65535], "mart s dro i neuer spake": [0, 65535], "s dro i neuer spake with": [0, 65535], "dro i neuer spake with her": [0, 65535], "i neuer spake with her in": [0, 65535], "neuer spake with her in all": [0, 65535], "spake with her in all my": [0, 65535], "with her in all my life": [0, 65535], "her in all my life ant": [0, 65535], "in all my life ant how": [0, 65535], "all my life ant how can": [0, 65535], "my life ant how can she": [0, 65535], "life ant how can she thus": [0, 65535], "ant how can she thus then": [0, 65535], "how can she thus then call": [0, 65535], "can she thus then call vs": [0, 65535], "she thus then call vs by": [0, 65535], "thus then call vs by our": [0, 65535], "then call vs by our names": [0, 65535], "call vs by our names vnlesse": [0, 65535], "vs by our names vnlesse it": [0, 65535], "by our names vnlesse it be": [0, 65535], "our names vnlesse it be by": [0, 65535], "names vnlesse it be by inspiration": [0, 65535], "vnlesse it be by inspiration adri": [0, 65535], "it be by inspiration adri how": [0, 65535], "be by inspiration adri how ill": [0, 65535], "by inspiration adri how ill agrees": [0, 65535], "inspiration adri how ill agrees it": [0, 65535], "adri how ill agrees it with": [0, 65535], "how ill agrees it with your": [0, 65535], "ill agrees it with your grauitie": [0, 65535], "agrees it with your grauitie to": [0, 65535], "it with your grauitie to counterfeit": [0, 65535], "with your grauitie to counterfeit thus": [0, 65535], "your grauitie to counterfeit thus grosely": [0, 65535], "grauitie to counterfeit thus grosely with": [0, 65535], "to counterfeit thus grosely with your": [0, 65535], "counterfeit thus grosely with your slaue": [0, 65535], "thus grosely with your slaue abetting": [0, 65535], "grosely with your slaue abetting him": [0, 65535], "with your slaue abetting him to": [0, 65535], "your slaue abetting him to thwart": [0, 65535], "slaue abetting him to thwart me": [0, 65535], "abetting him to thwart me in": [0, 65535], "him to thwart me in my": [0, 65535], "to thwart me in my moode": [0, 65535], "thwart me in my moode be": [0, 65535], "me in my moode be it": [0, 65535], "in my moode be it my": [0, 65535], "my moode be it my wrong": [0, 65535], "moode be it my wrong you": [0, 65535], "be it my wrong you are": [0, 65535], "it my wrong you are from": [0, 65535], "my wrong you are from me": [0, 65535], "wrong you are from me exempt": [0, 65535], "you are from me exempt but": [0, 65535], "are from me exempt but wrong": [0, 65535], "from me exempt but wrong not": [0, 65535], "me exempt but wrong not that": [0, 65535], "exempt but wrong not that wrong": [0, 65535], "but wrong not that wrong with": [0, 65535], "wrong not that wrong with a": [0, 65535], "not that wrong with a more": [0, 65535], "that wrong with a more contempt": [0, 65535], "wrong with a more contempt come": [0, 65535], "with a more contempt come i": [0, 65535], "a more contempt come i will": [0, 65535], "more contempt come i will fasten": [0, 65535], "contempt come i will fasten on": [0, 65535], "come i will fasten on this": [0, 65535], "i will fasten on this sleeue": [0, 65535], "will fasten on this sleeue of": [0, 65535], "fasten on this sleeue of thine": [0, 65535], "on this sleeue of thine thou": [0, 65535], "this sleeue of thine thou art": [0, 65535], "sleeue of thine thou art an": [0, 65535], "of thine thou art an elme": [0, 65535], "thine thou art an elme my": [0, 65535], "thou art an elme my husband": [0, 65535], "art an elme my husband i": [0, 65535], "an elme my husband i a": [0, 65535], "elme my husband i a vine": [0, 65535], "my husband i a vine whose": [0, 65535], "husband i a vine whose weaknesse": [0, 65535], "i a vine whose weaknesse married": [0, 65535], "a vine whose weaknesse married to": [0, 65535], "vine whose weaknesse married to thy": [0, 65535], "whose weaknesse married to thy stranger": [0, 65535], "weaknesse married to thy stranger state": [0, 65535], "married to thy stranger state makes": [0, 65535], "to thy stranger state makes me": [0, 65535], "thy stranger state makes me with": [0, 65535], "stranger state makes me with thy": [0, 65535], "state makes me with thy strength": [0, 65535], "makes me with thy strength to": [0, 65535], "me with thy strength to communicate": [0, 65535], "with thy strength to communicate if": [0, 65535], "thy strength to communicate if ought": [0, 65535], "strength to communicate if ought possesse": [0, 65535], "to communicate if ought possesse thee": [0, 65535], "communicate if ought possesse thee from": [0, 65535], "if ought possesse thee from me": [0, 65535], "ought possesse thee from me it": [0, 65535], "possesse thee from me it is": [0, 65535], "thee from me it is drosse": [0, 65535], "from me it is drosse vsurping": [0, 65535], "me it is drosse vsurping iuie": [0, 65535], "it is drosse vsurping iuie brier": [0, 65535], "is drosse vsurping iuie brier or": [0, 65535], "drosse vsurping iuie brier or idle": [0, 65535], "vsurping iuie brier or idle mosse": [0, 65535], "iuie brier or idle mosse who": [0, 65535], "brier or idle mosse who all": [0, 65535], "or idle mosse who all for": [0, 65535], "idle mosse who all for want": [0, 65535], "mosse who all for want of": [0, 65535], "who all for want of pruning": [0, 65535], "all for want of pruning with": [0, 65535], "for want of pruning with intrusion": [0, 65535], "want of pruning with intrusion infect": [0, 65535], "of pruning with intrusion infect thy": [0, 65535], "pruning with intrusion infect thy sap": [0, 65535], "with intrusion infect thy sap and": [0, 65535], "intrusion infect thy sap and liue": [0, 65535], "infect thy sap and liue on": [0, 65535], "thy sap and liue on thy": [0, 65535], "sap and liue on thy confusion": [0, 65535], "and liue on thy confusion ant": [0, 65535], "liue on thy confusion ant to": [0, 65535], "on thy confusion ant to mee": [0, 65535], "thy confusion ant to mee shee": [0, 65535], "confusion ant to mee shee speakes": [0, 65535], "ant to mee shee speakes shee": [0, 65535], "to mee shee speakes shee moues": [0, 65535], "mee shee speakes shee moues mee": [0, 65535], "shee speakes shee moues mee for": [0, 65535], "speakes shee moues mee for her": [0, 65535], "shee moues mee for her theame": [0, 65535], "moues mee for her theame what": [0, 65535], "mee for her theame what was": [0, 65535], "for her theame what was i": [0, 65535], "her theame what was i married": [0, 65535], "theame what was i married to": [0, 65535], "what was i married to her": [0, 65535], "was i married to her in": [0, 65535], "i married to her in my": [0, 65535], "married to her in my dreame": [0, 65535], "to her in my dreame or": [0, 65535], "her in my dreame or sleepe": [0, 65535], "in my dreame or sleepe i": [0, 65535], "my dreame or sleepe i now": [0, 65535], "dreame or sleepe i now and": [0, 65535], "or sleepe i now and thinke": [0, 65535], "sleepe i now and thinke i": [0, 65535], "i now and thinke i heare": [0, 65535], "now and thinke i heare all": [0, 65535], "and thinke i heare all this": [0, 65535], "thinke i heare all this what": [0, 65535], "i heare all this what error": [0, 65535], "heare all this what error driues": [0, 65535], "all this what error driues our": [0, 65535], "this what error driues our eies": [0, 65535], "what error driues our eies and": [0, 65535], "error driues our eies and eares": [0, 65535], "driues our eies and eares amisse": [0, 65535], "our eies and eares amisse vntill": [0, 65535], "eies and eares amisse vntill i": [0, 65535], "and eares amisse vntill i know": [0, 65535], "eares amisse vntill i know this": [0, 65535], "amisse vntill i know this sure": [0, 65535], "vntill i know this sure vncertaintie": [0, 65535], "i know this sure vncertaintie ile": [0, 65535], "know this sure vncertaintie ile entertaine": [0, 65535], "this sure vncertaintie ile entertaine the": [0, 65535], "sure vncertaintie ile entertaine the free'd": [0, 65535], "vncertaintie ile entertaine the free'd fallacie": [0, 65535], "ile entertaine the free'd fallacie luc": [0, 65535], "entertaine the free'd fallacie luc dromio": [0, 65535], "the free'd fallacie luc dromio goe": [0, 65535], "free'd fallacie luc dromio goe bid": [0, 65535], "fallacie luc dromio goe bid the": [0, 65535], "luc dromio goe bid the seruants": [0, 65535], "dromio goe bid the seruants spred": [0, 65535], "goe bid the seruants spred for": [0, 65535], "bid the seruants spred for dinner": [0, 65535], "the seruants spred for dinner s": [0, 65535], "seruants spred for dinner s dro": [0, 65535], "spred for dinner s dro oh": [0, 65535], "for dinner s dro oh for": [0, 65535], "dinner s dro oh for my": [0, 65535], "s dro oh for my beads": [0, 65535], "dro oh for my beads i": [0, 65535], "oh for my beads i crosse": [0, 65535], "for my beads i crosse me": [0, 65535], "my beads i crosse me for": [0, 65535], "beads i crosse me for a": [0, 65535], "i crosse me for a sinner": [0, 65535], "crosse me for a sinner this": [0, 65535], "me for a sinner this is": [0, 65535], "for a sinner this is the": [0, 65535], "a sinner this is the fairie": [0, 65535], "sinner this is the fairie land": [0, 65535], "this is the fairie land oh": [0, 65535], "is the fairie land oh spight": [0, 65535], "the fairie land oh spight of": [0, 65535], "fairie land oh spight of spights": [0, 65535], "land oh spight of spights we": [0, 65535], "oh spight of spights we talke": [0, 65535], "spight of spights we talke with": [0, 65535], "of spights we talke with goblins": [0, 65535], "spights we talke with goblins owles": [0, 65535], "we talke with goblins owles and": [0, 65535], "talke with goblins owles and sprights": [0, 65535], "with goblins owles and sprights if": [0, 65535], "goblins owles and sprights if we": [0, 65535], "owles and sprights if we obay": [0, 65535], "and sprights if we obay them": [0, 65535], "sprights if we obay them not": [0, 65535], "if we obay them not this": [0, 65535], "we obay them not this will": [0, 65535], "obay them not this will insue": [0, 65535], "them not this will insue they'll": [0, 65535], "not this will insue they'll sucke": [0, 65535], "this will insue they'll sucke our": [0, 65535], "will insue they'll sucke our breath": [0, 65535], "insue they'll sucke our breath or": [0, 65535], "they'll sucke our breath or pinch": [0, 65535], "sucke our breath or pinch vs": [0, 65535], "our breath or pinch vs blacke": [0, 65535], "breath or pinch vs blacke and": [0, 65535], "or pinch vs blacke and blew": [0, 65535], "pinch vs blacke and blew luc": [0, 65535], "vs blacke and blew luc why": [0, 65535], "blacke and blew luc why prat'st": [0, 65535], "and blew luc why prat'st thou": [0, 65535], "blew luc why prat'st thou to": [0, 65535], "luc why prat'st thou to thy": [0, 65535], "why prat'st thou to thy selfe": [0, 65535], "prat'st thou to thy selfe and": [0, 65535], "thou to thy selfe and answer'st": [0, 65535], "to thy selfe and answer'st not": [0, 65535], "thy selfe and answer'st not dromio": [0, 65535], "selfe and answer'st not dromio thou": [0, 65535], "and answer'st not dromio thou dromio": [0, 65535], "answer'st not dromio thou dromio thou": [0, 65535], "not dromio thou dromio thou snaile": [0, 65535], "dromio thou dromio thou snaile thou": [0, 65535], "thou dromio thou snaile thou slug": [0, 65535], "dromio thou snaile thou slug thou": [0, 65535], "thou snaile thou slug thou sot": [0, 65535], "snaile thou slug thou sot s": [0, 65535], "thou slug thou sot s dro": [0, 65535], "slug thou sot s dro i": [0, 65535], "thou sot s dro i am": [0, 65535], "sot s dro i am transformed": [0, 65535], "s dro i am transformed master": [0, 65535], "dro i am transformed master am": [0, 65535], "i am transformed master am i": [0, 65535], "am transformed master am i not": [0, 65535], "transformed master am i not ant": [0, 65535], "master am i not ant i": [0, 65535], "am i not ant i thinke": [0, 65535], "i not ant i thinke thou": [0, 65535], "not ant i thinke thou art": [0, 65535], "ant i thinke thou art in": [0, 65535], "i thinke thou art in minde": [0, 65535], "thinke thou art in minde and": [0, 65535], "thou art in minde and so": [0, 65535], "art in minde and so am": [0, 65535], "in minde and so am i": [0, 65535], "minde and so am i s": [0, 65535], "and so am i s dro": [0, 65535], "so am i s dro nay": [0, 65535], "am i s dro nay master": [0, 65535], "i s dro nay master both": [0, 65535], "s dro nay master both in": [0, 65535], "dro nay master both in minde": [0, 65535], "nay master both in minde and": [0, 65535], "master both in minde and in": [0, 65535], "both in minde and in my": [0, 65535], "in minde and in my shape": [0, 65535], "minde and in my shape ant": [0, 65535], "and in my shape ant thou": [0, 65535], "in my shape ant thou hast": [0, 65535], "my shape ant thou hast thine": [0, 65535], "shape ant thou hast thine owne": [0, 65535], "ant thou hast thine owne forme": [0, 65535], "thou hast thine owne forme s": [0, 65535], "hast thine owne forme s dro": [0, 65535], "thine owne forme s dro no": [0, 65535], "owne forme s dro no i": [0, 65535], "forme s dro no i am": [0, 65535], "s dro no i am an": [0, 65535], "dro no i am an ape": [0, 65535], "no i am an ape luc": [0, 65535], "i am an ape luc if": [0, 65535], "am an ape luc if thou": [0, 65535], "an ape luc if thou art": [0, 65535], "ape luc if thou art chang'd": [0, 65535], "luc if thou art chang'd to": [0, 65535], "if thou art chang'd to ought": [0, 65535], "thou art chang'd to ought 'tis": [0, 65535], "art chang'd to ought 'tis to": [0, 65535], "chang'd to ought 'tis to an": [0, 65535], "to ought 'tis to an asse": [0, 65535], "ought 'tis to an asse s": [0, 65535], "'tis to an asse s dro": [0, 65535], "to an asse s dro 'tis": [0, 65535], "an asse s dro 'tis true": [0, 65535], "asse s dro 'tis true she": [0, 65535], "s dro 'tis true she rides": [0, 65535], "dro 'tis true she rides me": [0, 65535], "'tis true she rides me and": [0, 65535], "true she rides me and i": [0, 65535], "she rides me and i long": [0, 65535], "rides me and i long for": [0, 65535], "me and i long for grasse": [0, 65535], "and i long for grasse 'tis": [0, 65535], "i long for grasse 'tis so": [0, 65535], "long for grasse 'tis so i": [0, 65535], "for grasse 'tis so i am": [0, 65535], "grasse 'tis so i am an": [0, 65535], "'tis so i am an asse": [0, 65535], "so i am an asse else": [0, 65535], "i am an asse else it": [0, 65535], "am an asse else it could": [0, 65535], "an asse else it could neuer": [0, 65535], "asse else it could neuer be": [0, 65535], "else it could neuer be but": [0, 65535], "it could neuer be but i": [0, 65535], "could neuer be but i should": [0, 65535], "neuer be but i should know": [0, 65535], "be but i should know her": [0, 65535], "but i should know her as": [0, 65535], "i should know her as well": [0, 65535], "should know her as well as": [0, 65535], "know her as well as she": [0, 65535], "her as well as she knowes": [0, 65535], "as well as she knowes me": [0, 65535], "well as she knowes me adr": [0, 65535], "as she knowes me adr come": [0, 65535], "she knowes me adr come come": [0, 65535], "knowes me adr come come no": [0, 65535], "me adr come come no longer": [0, 65535], "adr come come no longer will": [0, 65535], "come come no longer will i": [0, 65535], "come no longer will i be": [0, 65535], "no longer will i be a": [0, 65535], "longer will i be a foole": [0, 65535], "will i be a foole to": [0, 65535], "i be a foole to put": [0, 65535], "be a foole to put the": [0, 65535], "a foole to put the finger": [0, 65535], "foole to put the finger in": [0, 65535], "to put the finger in the": [0, 65535], "put the finger in the eie": [0, 65535], "the finger in the eie and": [0, 65535], "finger in the eie and weepe": [0, 65535], "in the eie and weepe whil'st": [0, 65535], "the eie and weepe whil'st man": [0, 65535], "eie and weepe whil'st man and": [0, 65535], "and weepe whil'st man and master": [0, 65535], "weepe whil'st man and master laughes": [0, 65535], "whil'st man and master laughes my": [0, 65535], "man and master laughes my woes": [0, 65535], "and master laughes my woes to": [0, 65535], "master laughes my woes to scorne": [0, 65535], "laughes my woes to scorne come": [0, 65535], "my woes to scorne come sir": [0, 65535], "woes to scorne come sir to": [0, 65535], "to scorne come sir to dinner": [0, 65535], "scorne come sir to dinner dromio": [0, 65535], "come sir to dinner dromio keepe": [0, 65535], "sir to dinner dromio keepe the": [0, 65535], "to dinner dromio keepe the gate": [0, 65535], "dinner dromio keepe the gate husband": [0, 65535], "dromio keepe the gate husband ile": [0, 65535], "keepe the gate husband ile dine": [0, 65535], "the gate husband ile dine aboue": [0, 65535], "gate husband ile dine aboue with": [0, 65535], "husband ile dine aboue with you": [0, 65535], "ile dine aboue with you to": [0, 65535], "dine aboue with you to day": [0, 65535], "aboue with you to day and": [0, 65535], "with you to day and shriue": [0, 65535], "you to day and shriue you": [0, 65535], "to day and shriue you of": [0, 65535], "day and shriue you of a": [0, 65535], "and shriue you of a thousand": [0, 65535], "shriue you of a thousand idle": [0, 65535], "you of a thousand idle prankes": [0, 65535], "of a thousand idle prankes sirra": [0, 65535], "a thousand idle prankes sirra if": [0, 65535], "thousand idle prankes sirra if any": [0, 65535], "idle prankes sirra if any aske": [0, 65535], "prankes sirra if any aske you": [0, 65535], "sirra if any aske you for": [0, 65535], "if any aske you for your": [0, 65535], "any aske you for your master": [0, 65535], "aske you for your master say": [0, 65535], "you for your master say he": [0, 65535], "for your master say he dines": [0, 65535], "your master say he dines forth": [0, 65535], "master say he dines forth and": [0, 65535], "say he dines forth and let": [0, 65535], "he dines forth and let no": [0, 65535], "dines forth and let no creature": [0, 65535], "forth and let no creature enter": [0, 65535], "and let no creature enter come": [0, 65535], "let no creature enter come sister": [0, 65535], "no creature enter come sister dromio": [0, 65535], "creature enter come sister dromio play": [0, 65535], "enter come sister dromio play the": [0, 65535], "come sister dromio play the porter": [0, 65535], "sister dromio play the porter well": [0, 65535], "dromio play the porter well ant": [0, 65535], "play the porter well ant am": [0, 65535], "the porter well ant am i": [0, 65535], "porter well ant am i in": [0, 65535], "well ant am i in earth": [0, 65535], "ant am i in earth in": [0, 65535], "am i in earth in heauen": [0, 65535], "i in earth in heauen or": [0, 65535], "in earth in heauen or in": [0, 65535], "earth in heauen or in hell": [0, 65535], "in heauen or in hell sleeping": [0, 65535], "heauen or in hell sleeping or": [0, 65535], "or in hell sleeping or waking": [0, 65535], "in hell sleeping or waking mad": [0, 65535], "hell sleeping or waking mad or": [0, 65535], "sleeping or waking mad or well": [0, 65535], "or waking mad or well aduisde": [0, 65535], "waking mad or well aduisde knowne": [0, 65535], "mad or well aduisde knowne vnto": [0, 65535], "or well aduisde knowne vnto these": [0, 65535], "well aduisde knowne vnto these and": [0, 65535], "aduisde knowne vnto these and to": [0, 65535], "knowne vnto these and to my": [0, 65535], "vnto these and to my selfe": [0, 65535], "these and to my selfe disguisde": [0, 65535], "and to my selfe disguisde ile": [0, 65535], "to my selfe disguisde ile say": [0, 65535], "my selfe disguisde ile say as": [0, 65535], "selfe disguisde ile say as they": [0, 65535], "disguisde ile say as they say": [0, 65535], "ile say as they say and": [0, 65535], "say as they say and perseuer": [0, 65535], "as they say and perseuer so": [0, 65535], "they say and perseuer so and": [0, 65535], "say and perseuer so and in": [0, 65535], "and perseuer so and in this": [0, 65535], "perseuer so and in this mist": [0, 65535], "so and in this mist at": [0, 65535], "and in this mist at all": [0, 65535], "in this mist at all aduentures": [0, 65535], "this mist at all aduentures go": [0, 65535], "mist at all aduentures go s": [0, 65535], "at all aduentures go s dro": [0, 65535], "all aduentures go s dro master": [0, 65535], "aduentures go s dro master shall": [0, 65535], "go s dro master shall i": [0, 65535], "s dro master shall i be": [0, 65535], "dro master shall i be porter": [0, 65535], "master shall i be porter at": [0, 65535], "shall i be porter at the": [0, 65535], "i be porter at the gate": [0, 65535], "be porter at the gate adr": [0, 65535], "porter at the gate adr i": [0, 65535], "at the gate adr i and": [0, 65535], "the gate adr i and let": [0, 65535], "gate adr i and let none": [0, 65535], "adr i and let none enter": [0, 65535], "i and let none enter least": [0, 65535], "and let none enter least i": [0, 65535], "let none enter least i breake": [0, 65535], "none enter least i breake your": [0, 65535], "enter least i breake your pate": [0, 65535], "least i breake your pate luc": [0, 65535], "i breake your pate luc come": [0, 65535], "breake your pate luc come come": [0, 65535], "your pate luc come come antipholus": [0, 65535], "pate luc come come antipholus we": [0, 65535], "luc come come antipholus we dine": [0, 65535], "come come antipholus we dine to": [0, 65535], "come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis": [0, 65535], "secundus enter adriana wife to antipholis sereptus": [0, 65535], "enter adriana wife to antipholis sereptus with": [0, 65535], "adriana wife to antipholis sereptus with luciana": [0, 65535], "wife to antipholis sereptus with luciana her": [0, 65535], "to antipholis sereptus with luciana her sister": [0, 65535], "antipholis sereptus with luciana her sister adr": [0, 65535], "sereptus with luciana her sister adr neither": [0, 65535], "with luciana her sister adr neither my": [0, 65535], "luciana her sister adr neither my husband": [0, 65535], "her sister adr neither my husband nor": [0, 65535], "sister adr neither my husband nor the": [0, 65535], "adr neither my husband nor the slaue": [0, 65535], "neither my husband nor the slaue return'd": [0, 65535], "my husband nor the slaue return'd that": [0, 65535], "husband nor the slaue return'd that in": [0, 65535], "nor the slaue return'd that in such": [0, 65535], "the slaue return'd that in such haste": [0, 65535], "slaue return'd that in such haste i": [0, 65535], "return'd that in such haste i sent": [0, 65535], "that in such haste i sent to": [0, 65535], "in such haste i sent to seeke": [0, 65535], "such haste i sent to seeke his": [0, 65535], "haste i sent to seeke his master": [0, 65535], "i sent to seeke his master sure": [0, 65535], "sent to seeke his master sure luciana": [0, 65535], "to seeke his master sure luciana it": [0, 65535], "seeke his master sure luciana it is": [0, 65535], "his master sure luciana it is two": [0, 65535], "master sure luciana it is two a": [0, 65535], "sure luciana it is two a clocke": [0, 65535], "luciana it is two a clocke luc": [0, 65535], "it is two a clocke luc perhaps": [0, 65535], "is two a clocke luc perhaps some": [0, 65535], "two a clocke luc perhaps some merchant": [0, 65535], "a clocke luc perhaps some merchant hath": [0, 65535], "clocke luc perhaps some merchant hath inuited": [0, 65535], "luc perhaps some merchant hath inuited him": [0, 65535], "perhaps some merchant hath inuited him and": [0, 65535], "some merchant hath inuited him and from": [0, 65535], "merchant hath inuited him and from the": [0, 65535], "hath inuited him and from the mart": [0, 65535], "inuited him and from the mart he's": [0, 65535], "him and from the mart he's somewhere": [0, 65535], "and from the mart he's somewhere gone": [0, 65535], "from the mart he's somewhere gone to": [0, 65535], "the mart he's somewhere gone to dinner": [0, 65535], "mart he's somewhere gone to dinner good": [0, 65535], "he's somewhere gone to dinner good sister": [0, 65535], "somewhere gone to dinner good sister let": [0, 65535], "gone to dinner good sister let vs": [0, 65535], "to dinner good sister let vs dine": [0, 65535], "dinner good sister let vs dine and": [0, 65535], "good sister let vs dine and neuer": [0, 65535], "sister let vs dine and neuer fret": [0, 65535], "let vs dine and neuer fret a": [0, 65535], "vs dine and neuer fret a man": [0, 65535], "dine and neuer fret a man is": [0, 65535], "and neuer fret a man is master": [0, 65535], "neuer fret a man is master of": [0, 65535], "fret a man is master of his": [0, 65535], "a man is master of his libertie": [0, 65535], "man is master of his libertie time": [0, 65535], "is master of his libertie time is": [0, 65535], "master of his libertie time is their": [0, 65535], "of his libertie time is their master": [0, 65535], "his libertie time is their master and": [0, 65535], "libertie time is their master and when": [0, 65535], "time is their master and when they": [0, 65535], "is their master and when they see": [0, 65535], "their master and when they see time": [0, 65535], "master and when they see time they'll": [0, 65535], "and when they see time they'll goe": [0, 65535], "when they see time they'll goe or": [0, 65535], "they see time they'll goe or come": [0, 65535], "see time they'll goe or come if": [0, 65535], "time they'll goe or come if so": [0, 65535], "they'll goe or come if so be": [0, 65535], "goe or come if so be patient": [0, 65535], "or come if so be patient sister": [0, 65535], "come if so be patient sister adr": [0, 65535], "if so be patient sister adr why": [0, 65535], "so be patient sister adr why should": [0, 65535], "be patient sister adr why should their": [0, 65535], "patient sister adr why should their libertie": [0, 65535], "sister adr why should their libertie then": [0, 65535], "adr why should their libertie then ours": [0, 65535], "why should their libertie then ours be": [0, 65535], "should their libertie then ours be more": [0, 65535], "their libertie then ours be more luc": [0, 65535], "libertie then ours be more luc because": [0, 65535], "then ours be more luc because their": [0, 65535], "ours be more luc because their businesse": [0, 65535], "be more luc because their businesse still": [0, 65535], "more luc because their businesse still lies": [0, 65535], "luc because their businesse still lies out": [0, 65535], "because their businesse still lies out a": [0, 65535], "their businesse still lies out a dore": [0, 65535], "businesse still lies out a dore adr": [0, 65535], "still lies out a dore adr looke": [0, 65535], "lies out a dore adr looke when": [0, 65535], "out a dore adr looke when i": [0, 65535], "a dore adr looke when i serue": [0, 65535], "dore adr looke when i serue him": [0, 65535], "adr looke when i serue him so": [0, 65535], "looke when i serue him so he": [0, 65535], "when i serue him so he takes": [0, 65535], "i serue him so he takes it": [0, 65535], "serue him so he takes it thus": [0, 65535], "him so he takes it thus luc": [0, 65535], "so he takes it thus luc oh": [0, 65535], "he takes it thus luc oh know": [0, 65535], "takes it thus luc oh know he": [0, 65535], "it thus luc oh know he is": [0, 65535], "thus luc oh know he is the": [0, 65535], "luc oh know he is the bridle": [0, 65535], "oh know he is the bridle of": [0, 65535], "know he is the bridle of your": [0, 65535], "he is the bridle of your will": [0, 65535], "is the bridle of your will adr": [0, 65535], "the bridle of your will adr there's": [0, 65535], "bridle of your will adr there's none": [0, 65535], "of your will adr there's none but": [0, 65535], "your will adr there's none but asses": [0, 65535], "will adr there's none but asses will": [0, 65535], "adr there's none but asses will be": [0, 65535], "there's none but asses will be bridled": [0, 65535], "none but asses will be bridled so": [0, 65535], "but asses will be bridled so luc": [0, 65535], "asses will be bridled so luc why": [0, 65535], "will be bridled so luc why headstrong": [0, 65535], "be bridled so luc why headstrong liberty": [0, 65535], "bridled so luc why headstrong liberty is": [0, 65535], "so luc why headstrong liberty is lasht": [0, 65535], "luc why headstrong liberty is lasht with": [0, 65535], "why headstrong liberty is lasht with woe": [0, 65535], "headstrong liberty is lasht with woe there's": [0, 65535], "liberty is lasht with woe there's nothing": [0, 65535], "is lasht with woe there's nothing situate": [0, 65535], "lasht with woe there's nothing situate vnder": [0, 65535], "with woe there's nothing situate vnder heauens": [0, 65535], "woe there's nothing situate vnder heauens eye": [0, 65535], "there's nothing situate vnder heauens eye but": [0, 65535], "nothing situate vnder heauens eye but hath": [0, 65535], "situate vnder heauens eye but hath his": [0, 65535], "vnder heauens eye but hath his bound": [0, 65535], "heauens eye but hath his bound in": [0, 65535], "eye but hath his bound in earth": [0, 65535], "but hath his bound in earth in": [0, 65535], "hath his bound in earth in sea": [0, 65535], "his bound in earth in sea in": [0, 65535], "bound in earth in sea in skie": [0, 65535], "in earth in sea in skie the": [0, 65535], "earth in sea in skie the beasts": [0, 65535], "in sea in skie the beasts the": [0, 65535], "sea in skie the beasts the fishes": [0, 65535], "in skie the beasts the fishes and": [0, 65535], "skie the beasts the fishes and the": [0, 65535], "the beasts the fishes and the winged": [0, 65535], "beasts the fishes and the winged fowles": [0, 65535], "the fishes and the winged fowles are": [0, 65535], "fishes and the winged fowles are their": [0, 65535], "and the winged fowles are their males": [0, 65535], "the winged fowles are their males subiects": [0, 65535], "winged fowles are their males subiects and": [0, 65535], "fowles are their males subiects and at": [0, 65535], "are their males subiects and at their": [0, 65535], "their males subiects and at their controules": [0, 65535], "males subiects and at their controules man": [0, 65535], "subiects and at their controules man more": [0, 65535], "and at their controules man more diuine": [0, 65535], "at their controules man more diuine the": [0, 65535], "their controules man more diuine the master": [0, 65535], "controules man more diuine the master of": [0, 65535], "man more diuine the master of all": [0, 65535], "more diuine the master of all these": [0, 65535], "diuine the master of all these lord": [0, 65535], "the master of all these lord of": [0, 65535], "master of all these lord of the": [0, 65535], "of all these lord of the wide": [0, 65535], "all these lord of the wide world": [0, 65535], "these lord of the wide world and": [0, 65535], "lord of the wide world and wilde": [0, 65535], "of the wide world and wilde watry": [0, 65535], "the wide world and wilde watry seas": [0, 65535], "wide world and wilde watry seas indued": [0, 65535], "world and wilde watry seas indued with": [0, 65535], "and wilde watry seas indued with intellectuall": [0, 65535], "wilde watry seas indued with intellectuall sence": [0, 65535], "watry seas indued with intellectuall sence and": [0, 65535], "seas indued with intellectuall sence and soules": [0, 65535], "indued with intellectuall sence and soules of": [0, 65535], "with intellectuall sence and soules of more": [0, 65535], "intellectuall sence and soules of more preheminence": [0, 65535], "sence and soules of more preheminence then": [0, 65535], "and soules of more preheminence then fish": [0, 65535], "soules of more preheminence then fish and": [0, 65535], "of more preheminence then fish and fowles": [0, 65535], "more preheminence then fish and fowles are": [0, 65535], "preheminence then fish and fowles are masters": [0, 65535], "then fish and fowles are masters to": [0, 65535], "fish and fowles are masters to their": [0, 65535], "and fowles are masters to their females": [0, 65535], "fowles are masters to their females and": [0, 65535], "are masters to their females and their": [0, 65535], "masters to their females and their lords": [0, 65535], "to their females and their lords then": [0, 65535], "their females and their lords then let": [0, 65535], "females and their lords then let your": [0, 65535], "and their lords then let your will": [0, 65535], "their lords then let your will attend": [0, 65535], "lords then let your will attend on": [0, 65535], "then let your will attend on their": [0, 65535], "let your will attend on their accords": [0, 65535], "your will attend on their accords adri": [0, 65535], "will attend on their accords adri this": [0, 65535], "attend on their accords adri this seruitude": [0, 65535], "on their accords adri this seruitude makes": [0, 65535], "their accords adri this seruitude makes you": [0, 65535], "accords adri this seruitude makes you to": [0, 65535], "adri this seruitude makes you to keepe": [0, 65535], "this seruitude makes you to keepe vnwed": [0, 65535], "seruitude makes you to keepe vnwed luci": [0, 65535], "makes you to keepe vnwed luci not": [0, 65535], "you to keepe vnwed luci not this": [0, 65535], "to keepe vnwed luci not this but": [0, 65535], "keepe vnwed luci not this but troubles": [0, 65535], "vnwed luci not this but troubles of": [0, 65535], "luci not this but troubles of the": [0, 65535], "not this but troubles of the marriage": [0, 65535], "this but troubles of the marriage bed": [0, 65535], "but troubles of the marriage bed adr": [0, 65535], "troubles of the marriage bed adr but": [0, 65535], "of the marriage bed adr but were": [0, 65535], "the marriage bed adr but were you": [0, 65535], "marriage bed adr but were you wedded": [0, 65535], "bed adr but were you wedded you": [0, 65535], "adr but were you wedded you wold": [0, 65535], "but were you wedded you wold bear": [0, 65535], "were you wedded you wold bear some": [0, 65535], "you wedded you wold bear some sway": [0, 65535], "wedded you wold bear some sway luc": [0, 65535], "you wold bear some sway luc ere": [0, 65535], "wold bear some sway luc ere i": [0, 65535], "bear some sway luc ere i learne": [0, 65535], "some sway luc ere i learne loue": [0, 65535], "sway luc ere i learne loue ile": [0, 65535], "luc ere i learne loue ile practise": [0, 65535], "ere i learne loue ile practise to": [0, 65535], "i learne loue ile practise to obey": [0, 65535], "learne loue ile practise to obey adr": [0, 65535], "loue ile practise to obey adr how": [0, 65535], "ile practise to obey adr how if": [0, 65535], "practise to obey adr how if your": [0, 65535], "to obey adr how if your husband": [0, 65535], "obey adr how if your husband start": [0, 65535], "adr how if your husband start some": [0, 65535], "how if your husband start some other": [0, 65535], "if your husband start some other where": [0, 65535], "your husband start some other where luc": [0, 65535], "husband start some other where luc till": [0, 65535], "start some other where luc till he": [0, 65535], "some other where luc till he come": [0, 65535], "other where luc till he come home": [0, 65535], "where luc till he come home againe": [0, 65535], "luc till he come home againe i": [0, 65535], "till he come home againe i would": [0, 65535], "he come home againe i would forbeare": [0, 65535], "come home againe i would forbeare adr": [0, 65535], "home againe i would forbeare adr patience": [0, 65535], "againe i would forbeare adr patience vnmou'd": [0, 65535], "i would forbeare adr patience vnmou'd no": [0, 65535], "would forbeare adr patience vnmou'd no maruel": [0, 65535], "forbeare adr patience vnmou'd no maruel though": [0, 65535], "adr patience vnmou'd no maruel though she": [0, 65535], "patience vnmou'd no maruel though she pause": [0, 65535], "vnmou'd no maruel though she pause they": [0, 65535], "no maruel though she pause they can": [0, 65535], "maruel though she pause they can be": [0, 65535], "though she pause they can be meeke": [0, 65535], "she pause they can be meeke that": [0, 65535], "pause they can be meeke that haue": [0, 65535], "they can be meeke that haue no": [0, 65535], "can be meeke that haue no other": [0, 65535], "be meeke that haue no other cause": [0, 65535], "meeke that haue no other cause a": [0, 65535], "that haue no other cause a wretched": [0, 65535], "haue no other cause a wretched soule": [0, 65535], "no other cause a wretched soule bruis'd": [0, 65535], "other cause a wretched soule bruis'd with": [0, 65535], "cause a wretched soule bruis'd with aduersitie": [0, 65535], "a wretched soule bruis'd with aduersitie we": [0, 65535], "wretched soule bruis'd with aduersitie we bid": [0, 65535], "soule bruis'd with aduersitie we bid be": [0, 65535], "bruis'd with aduersitie we bid be quiet": [0, 65535], "with aduersitie we bid be quiet when": [0, 65535], "aduersitie we bid be quiet when we": [0, 65535], "we bid be quiet when we heare": [0, 65535], "bid be quiet when we heare it": [0, 65535], "be quiet when we heare it crie": [0, 65535], "quiet when we heare it crie but": [0, 65535], "when we heare it crie but were": [0, 65535], "we heare it crie but were we": [0, 65535], "heare it crie but were we burdned": [0, 65535], "it crie but were we burdned with": [0, 65535], "crie but were we burdned with like": [0, 65535], "but were we burdned with like waight": [0, 65535], "were we burdned with like waight of": [0, 65535], "we burdned with like waight of paine": [0, 65535], "burdned with like waight of paine as": [0, 65535], "with like waight of paine as much": [0, 65535], "like waight of paine as much or": [0, 65535], "waight of paine as much or more": [0, 65535], "of paine as much or more we": [0, 65535], "paine as much or more we should": [0, 65535], "as much or more we should our": [0, 65535], "much or more we should our selues": [0, 65535], "or more we should our selues complaine": [0, 65535], "more we should our selues complaine so": [0, 65535], "we should our selues complaine so thou": [0, 65535], "should our selues complaine so thou that": [0, 65535], "our selues complaine so thou that hast": [0, 65535], "selues complaine so thou that hast no": [0, 65535], "complaine so thou that hast no vnkinde": [0, 65535], "so thou that hast no vnkinde mate": [0, 65535], "thou that hast no vnkinde mate to": [0, 65535], "that hast no vnkinde mate to greeue": [0, 65535], "hast no vnkinde mate to greeue thee": [0, 65535], "no vnkinde mate to greeue thee with": [0, 65535], "vnkinde mate to greeue thee with vrging": [0, 65535], "mate to greeue thee with vrging helpelesse": [0, 65535], "to greeue thee with vrging helpelesse patience": [0, 65535], "greeue thee with vrging helpelesse patience would": [0, 65535], "thee with vrging helpelesse patience would releeue": [0, 65535], "with vrging helpelesse patience would releeue me": [0, 65535], "vrging helpelesse patience would releeue me but": [0, 65535], "helpelesse patience would releeue me but if": [0, 65535], "patience would releeue me but if thou": [0, 65535], "would releeue me but if thou liue": [0, 65535], "releeue me but if thou liue to": [0, 65535], "me but if thou liue to see": [0, 65535], "but if thou liue to see like": [0, 65535], "if thou liue to see like right": [0, 65535], "thou liue to see like right bereft": [0, 65535], "liue to see like right bereft this": [0, 65535], "to see like right bereft this foole": [0, 65535], "see like right bereft this foole beg'd": [0, 65535], "like right bereft this foole beg'd patience": [0, 65535], "right bereft this foole beg'd patience in": [0, 65535], "bereft this foole beg'd patience in thee": [0, 65535], "this foole beg'd patience in thee will": [0, 65535], "foole beg'd patience in thee will be": [0, 65535], "beg'd patience in thee will be left": [0, 65535], "patience in thee will be left luci": [0, 65535], "in thee will be left luci well": [0, 65535], "thee will be left luci well i": [0, 65535], "will be left luci well i will": [0, 65535], "be left luci well i will marry": [0, 65535], "left luci well i will marry one": [0, 65535], "luci well i will marry one day": [0, 65535], "well i will marry one day but": [0, 65535], "i will marry one day but to": [0, 65535], "will marry one day but to trie": [0, 65535], "marry one day but to trie heere": [0, 65535], "one day but to trie heere comes": [0, 65535], "day but to trie heere comes your": [0, 65535], "but to trie heere comes your man": [0, 65535], "to trie heere comes your man now": [0, 65535], "trie heere comes your man now is": [0, 65535], "heere comes your man now is your": [0, 65535], "comes your man now is your husband": [0, 65535], "your man now is your husband nie": [0, 65535], "man now is your husband nie enter": [0, 65535], "now is your husband nie enter dromio": [0, 65535], "is your husband nie enter dromio eph": [0, 65535], "your husband nie enter dromio eph adr": [0, 65535], "husband nie enter dromio eph adr say": [0, 65535], "nie enter dromio eph adr say is": [0, 65535], "enter dromio eph adr say is your": [0, 65535], "dromio eph adr say is your tardie": [0, 65535], "eph adr say is your tardie master": [0, 65535], "adr say is your tardie master now": [0, 65535], "say is your tardie master now at": [0, 65535], "is your tardie master now at hand": [0, 65535], "your tardie master now at hand e": [0, 65535], "tardie master now at hand e dro": [0, 65535], "master now at hand e dro nay": [0, 65535], "now at hand e dro nay hee's": [0, 65535], "at hand e dro nay hee's at": [0, 65535], "hand e dro nay hee's at too": [0, 65535], "e dro nay hee's at too hands": [0, 65535], "dro nay hee's at too hands with": [0, 65535], "nay hee's at too hands with mee": [0, 65535], "hee's at too hands with mee and": [0, 65535], "at too hands with mee and that": [0, 65535], "too hands with mee and that my": [0, 65535], "hands with mee and that my two": [0, 65535], "with mee and that my two eares": [0, 65535], "mee and that my two eares can": [0, 65535], "and that my two eares can witnesse": [0, 65535], "that my two eares can witnesse adr": [0, 65535], "my two eares can witnesse adr say": [0, 65535], "two eares can witnesse adr say didst": [0, 65535], "eares can witnesse adr say didst thou": [0, 65535], "can witnesse adr say didst thou speake": [0, 65535], "witnesse adr say didst thou speake with": [0, 65535], "adr say didst thou speake with him": [0, 65535], "say didst thou speake with him knowst": [0, 65535], "didst thou speake with him knowst thou": [0, 65535], "thou speake with him knowst thou his": [0, 65535], "speake with him knowst thou his minde": [0, 65535], "with him knowst thou his minde e": [0, 65535], "him knowst thou his minde e dro": [0, 65535], "knowst thou his minde e dro i": [0, 65535], "thou his minde e dro i i": [0, 65535], "his minde e dro i i he": [0, 65535], "minde e dro i i he told": [0, 65535], "e dro i i he told his": [0, 65535], "dro i i he told his minde": [0, 65535], "i i he told his minde vpon": [0, 65535], "i he told his minde vpon mine": [0, 65535], "he told his minde vpon mine eare": [0, 65535], "told his minde vpon mine eare beshrew": [0, 65535], "his minde vpon mine eare beshrew his": [0, 65535], "minde vpon mine eare beshrew his hand": [0, 65535], "vpon mine eare beshrew his hand i": [0, 65535], "mine eare beshrew his hand i scarce": [0, 65535], "eare beshrew his hand i scarce could": [0, 65535], "beshrew his hand i scarce could vnderstand": [0, 65535], "his hand i scarce could vnderstand it": [0, 65535], "hand i scarce could vnderstand it luc": [0, 65535], "i scarce could vnderstand it luc spake": [0, 65535], "scarce could vnderstand it luc spake hee": [0, 65535], "could vnderstand it luc spake hee so": [0, 65535], "vnderstand it luc spake hee so doubtfully": [0, 65535], "it luc spake hee so doubtfully thou": [0, 65535], "luc spake hee so doubtfully thou couldst": [0, 65535], "spake hee so doubtfully thou couldst not": [0, 65535], "hee so doubtfully thou couldst not feele": [0, 65535], "so doubtfully thou couldst not feele his": [0, 65535], "doubtfully thou couldst not feele his meaning": [0, 65535], "thou couldst not feele his meaning e": [0, 65535], "couldst not feele his meaning e dro": [0, 65535], "not feele his meaning e dro nay": [0, 65535], "feele his meaning e dro nay hee": [0, 65535], "his meaning e dro nay hee strooke": [0, 65535], "meaning e dro nay hee strooke so": [0, 65535], "e dro nay hee strooke so plainly": [0, 65535], "dro nay hee strooke so plainly i": [0, 65535], "nay hee strooke so plainly i could": [0, 65535], "hee strooke so plainly i could too": [0, 65535], "strooke so plainly i could too well": [0, 65535], "so plainly i could too well feele": [0, 65535], "plainly i could too well feele his": [0, 65535], "i could too well feele his blowes": [0, 65535], "could too well feele his blowes and": [0, 65535], "too well feele his blowes and withall": [0, 65535], "well feele his blowes and withall so": [0, 65535], "feele his blowes and withall so doubtfully": [0, 65535], "his blowes and withall so doubtfully that": [0, 65535], "blowes and withall so doubtfully that i": [0, 65535], "and withall so doubtfully that i could": [0, 65535], "withall so doubtfully that i could scarce": [0, 65535], "so doubtfully that i could scarce vnderstand": [0, 65535], "doubtfully that i could scarce vnderstand them": [0, 65535], "that i could scarce vnderstand them adri": [0, 65535], "i could scarce vnderstand them adri but": [0, 65535], "could scarce vnderstand them adri but say": [0, 65535], "scarce vnderstand them adri but say i": [0, 65535], "vnderstand them adri but say i prethee": [0, 65535], "them adri but say i prethee is": [0, 65535], "adri but say i prethee is he": [0, 65535], "but say i prethee is he comming": [0, 65535], "say i prethee is he comming home": [0, 65535], "i prethee is he comming home it": [0, 65535], "prethee is he comming home it seemes": [0, 65535], "is he comming home it seemes he": [0, 65535], "he comming home it seemes he hath": [0, 65535], "comming home it seemes he hath great": [0, 65535], "home it seemes he hath great care": [0, 65535], "it seemes he hath great care to": [0, 65535], "seemes he hath great care to please": [0, 65535], "he hath great care to please his": [0, 65535], "hath great care to please his wife": [0, 65535], "great care to please his wife e": [0, 65535], "care to please his wife e dro": [0, 65535], "to please his wife e dro why": [0, 65535], "please his wife e dro why mistresse": [0, 65535], "his wife e dro why mistresse sure": [0, 65535], "wife e dro why mistresse sure my": [0, 65535], "e dro why mistresse sure my master": [0, 65535], "dro why mistresse sure my master is": [0, 65535], "why mistresse sure my master is horne": [0, 65535], "mistresse sure my master is horne mad": [0, 65535], "sure my master is horne mad adri": [0, 65535], "my master is horne mad adri horne": [0, 65535], "master is horne mad adri horne mad": [0, 65535], "is horne mad adri horne mad thou": [0, 65535], "horne mad adri horne mad thou villaine": [0, 65535], "mad adri horne mad thou villaine e": [0, 65535], "adri horne mad thou villaine e dro": [0, 65535], "horne mad thou villaine e dro i": [0, 65535], "mad thou villaine e dro i meane": [0, 65535], "thou villaine e dro i meane not": [0, 65535], "villaine e dro i meane not cuckold": [0, 65535], "e dro i meane not cuckold mad": [0, 65535], "dro i meane not cuckold mad but": [0, 65535], "i meane not cuckold mad but sure": [0, 65535], "meane not cuckold mad but sure he": [0, 65535], "not cuckold mad but sure he is": [0, 65535], "cuckold mad but sure he is starke": [0, 65535], "mad but sure he is starke mad": [0, 65535], "but sure he is starke mad when": [0, 65535], "sure he is starke mad when i": [0, 65535], "he is starke mad when i desir'd": [0, 65535], "is starke mad when i desir'd him": [0, 65535], "starke mad when i desir'd him to": [0, 65535], "mad when i desir'd him to come": [0, 65535], "when i desir'd him to come home": [0, 65535], "i desir'd him to come home to": [0, 65535], "desir'd him to come home to dinner": [0, 65535], "him to come home to dinner he": [0, 65535], "to come home to dinner he ask'd": [0, 65535], "come home to dinner he ask'd me": [0, 65535], "home to dinner he ask'd me for": [0, 65535], "to dinner he ask'd me for a": [0, 65535], "dinner he ask'd me for a hundred": [0, 65535], "he ask'd me for a hundred markes": [0, 65535], "ask'd me for a hundred markes in": [0, 65535], "me for a hundred markes in gold": [0, 65535], "for a hundred markes in gold 'tis": [0, 65535], "a hundred markes in gold 'tis dinner": [0, 65535], "hundred markes in gold 'tis dinner time": [0, 65535], "markes in gold 'tis dinner time quoth": [0, 65535], "in gold 'tis dinner time quoth i": [0, 65535], "gold 'tis dinner time quoth i my": [0, 65535], "'tis dinner time quoth i my gold": [0, 65535], "dinner time quoth i my gold quoth": [0, 65535], "time quoth i my gold quoth he": [0, 65535], "quoth i my gold quoth he your": [0, 65535], "i my gold quoth he your meat": [0, 65535], "my gold quoth he your meat doth": [0, 65535], "gold quoth he your meat doth burne": [0, 65535], "quoth he your meat doth burne quoth": [0, 65535], "he your meat doth burne quoth i": [0, 65535], "your meat doth burne quoth i my": [0, 65535], "meat doth burne quoth i my gold": [0, 65535], "doth burne quoth i my gold quoth": [0, 65535], "burne quoth i my gold quoth he": [0, 65535], "quoth i my gold quoth he will": [0, 65535], "i my gold quoth he will you": [0, 65535], "my gold quoth he will you come": [0, 65535], "gold quoth he will you come quoth": [0, 65535], "quoth he will you come quoth i": [0, 65535], "he will you come quoth i my": [0, 65535], "will you come quoth i my gold": [0, 65535], "you come quoth i my gold quoth": [0, 65535], "come quoth i my gold quoth he": [0, 65535], "quoth i my gold quoth he where": [0, 65535], "i my gold quoth he where is": [0, 65535], "my gold quoth he where is the": [0, 65535], "gold quoth he where is the thousand": [0, 65535], "quoth he where is the thousand markes": [0, 65535], "he where is the thousand markes i": [0, 65535], "where is the thousand markes i gaue": [0, 65535], "is the thousand markes i gaue thee": [0, 65535], "the thousand markes i gaue thee villaine": [0, 65535], "thousand markes i gaue thee villaine the": [0, 65535], "markes i gaue thee villaine the pigge": [0, 65535], "i gaue thee villaine the pigge quoth": [0, 65535], "gaue thee villaine the pigge quoth i": [0, 65535], "thee villaine the pigge quoth i is": [0, 65535], "villaine the pigge quoth i is burn'd": [0, 65535], "the pigge quoth i is burn'd my": [0, 65535], "pigge quoth i is burn'd my gold": [0, 65535], "quoth i is burn'd my gold quoth": [0, 65535], "i is burn'd my gold quoth he": [0, 65535], "is burn'd my gold quoth he my": [0, 65535], "burn'd my gold quoth he my mistresse": [0, 65535], "my gold quoth he my mistresse sir": [0, 65535], "gold quoth he my mistresse sir quoth": [0, 65535], "quoth he my mistresse sir quoth i": [0, 65535], "he my mistresse sir quoth i hang": [0, 65535], "my mistresse sir quoth i hang vp": [0, 65535], "mistresse sir quoth i hang vp thy": [0, 65535], "sir quoth i hang vp thy mistresse": [0, 65535], "quoth i hang vp thy mistresse i": [0, 65535], "i hang vp thy mistresse i know": [0, 65535], "hang vp thy mistresse i know not": [0, 65535], "vp thy mistresse i know not thy": [0, 65535], "thy mistresse i know not thy mistresse": [0, 65535], "mistresse i know not thy mistresse out": [0, 65535], "i know not thy mistresse out on": [0, 65535], "know not thy mistresse out on thy": [0, 65535], "not thy mistresse out on thy mistresse": [0, 65535], "thy mistresse out on thy mistresse luci": [0, 65535], "mistresse out on thy mistresse luci quoth": [0, 65535], "out on thy mistresse luci quoth who": [0, 65535], "on thy mistresse luci quoth who e": [0, 65535], "thy mistresse luci quoth who e dr": [0, 65535], "mistresse luci quoth who e dr quoth": [0, 65535], "luci quoth who e dr quoth my": [0, 65535], "quoth who e dr quoth my master": [0, 65535], "who e dr quoth my master i": [0, 65535], "e dr quoth my master i know": [0, 65535], "dr quoth my master i know quoth": [0, 65535], "quoth my master i know quoth he": [0, 65535], "my master i know quoth he no": [0, 65535], "master i know quoth he no house": [0, 65535], "i know quoth he no house no": [0, 65535], "know quoth he no house no wife": [0, 65535], "quoth he no house no wife no": [0, 65535], "he no house no wife no mistresse": [0, 65535], "no house no wife no mistresse so": [0, 65535], "house no wife no mistresse so that": [0, 65535], "no wife no mistresse so that my": [0, 65535], "wife no mistresse so that my arrant": [0, 65535], "no mistresse so that my arrant due": [0, 65535], "mistresse so that my arrant due vnto": [0, 65535], "so that my arrant due vnto my": [0, 65535], "that my arrant due vnto my tongue": [0, 65535], "my arrant due vnto my tongue i": [0, 65535], "arrant due vnto my tongue i thanke": [0, 65535], "due vnto my tongue i thanke him": [0, 65535], "vnto my tongue i thanke him i": [0, 65535], "my tongue i thanke him i bare": [0, 65535], "tongue i thanke him i bare home": [0, 65535], "i thanke him i bare home vpon": [0, 65535], "thanke him i bare home vpon my": [0, 65535], "him i bare home vpon my shoulders": [0, 65535], "i bare home vpon my shoulders for": [0, 65535], "bare home vpon my shoulders for in": [0, 65535], "home vpon my shoulders for in conclusion": [0, 65535], "vpon my shoulders for in conclusion he": [0, 65535], "my shoulders for in conclusion he did": [0, 65535], "shoulders for in conclusion he did beat": [0, 65535], "for in conclusion he did beat me": [0, 65535], "in conclusion he did beat me there": [0, 65535], "conclusion he did beat me there adri": [0, 65535], "he did beat me there adri go": [0, 65535], "did beat me there adri go back": [0, 65535], "beat me there adri go back againe": [0, 65535], "me there adri go back againe thou": [0, 65535], "there adri go back againe thou slaue": [0, 65535], "adri go back againe thou slaue fetch": [0, 65535], "go back againe thou slaue fetch him": [0, 65535], "back againe thou slaue fetch him home": [0, 65535], "againe thou slaue fetch him home dro": [0, 65535], "thou slaue fetch him home dro goe": [0, 65535], "slaue fetch him home dro goe backe": [0, 65535], "fetch him home dro goe backe againe": [0, 65535], "him home dro goe backe againe and": [0, 65535], "home dro goe backe againe and be": [0, 65535], "dro goe backe againe and be new": [0, 65535], "goe backe againe and be new beaten": [0, 65535], "backe againe and be new beaten home": [0, 65535], "againe and be new beaten home for": [0, 65535], "and be new beaten home for gods": [0, 65535], "be new beaten home for gods sake": [0, 65535], "new beaten home for gods sake send": [0, 65535], "beaten home for gods sake send some": [0, 65535], "home for gods sake send some other": [0, 65535], "for gods sake send some other messenger": [0, 65535], "gods sake send some other messenger adri": [0, 65535], "sake send some other messenger adri backe": [0, 65535], "send some other messenger adri backe slaue": [0, 65535], "some other messenger adri backe slaue or": [0, 65535], "other messenger adri backe slaue or i": [0, 65535], "messenger adri backe slaue or i will": [0, 65535], "adri backe slaue or i will breake": [0, 65535], "backe slaue or i will breake thy": [0, 65535], "slaue or i will breake thy pate": [0, 65535], "or i will breake thy pate a": [0, 65535], "i will breake thy pate a crosse": [0, 65535], "will breake thy pate a crosse dro": [0, 65535], "breake thy pate a crosse dro and": [0, 65535], "thy pate a crosse dro and he": [0, 65535], "pate a crosse dro and he will": [0, 65535], "a crosse dro and he will blesse": [0, 65535], "crosse dro and he will blesse the": [0, 65535], "dro and he will blesse the crosse": [0, 65535], "and he will blesse the crosse with": [0, 65535], "he will blesse the crosse with other": [0, 65535], "will blesse the crosse with other beating": [0, 65535], "blesse the crosse with other beating betweene": [0, 65535], "the crosse with other beating betweene you": [0, 65535], "crosse with other beating betweene you i": [0, 65535], "with other beating betweene you i shall": [0, 65535], "other beating betweene you i shall haue": [0, 65535], "beating betweene you i shall haue a": [0, 65535], "betweene you i shall haue a holy": [0, 65535], "you i shall haue a holy head": [0, 65535], "i shall haue a holy head adri": [0, 65535], "shall haue a holy head adri hence": [0, 65535], "haue a holy head adri hence prating": [0, 65535], "a holy head adri hence prating pesant": [0, 65535], "holy head adri hence prating pesant fetch": [0, 65535], "head adri hence prating pesant fetch thy": [0, 65535], "adri hence prating pesant fetch thy master": [0, 65535], "hence prating pesant fetch thy master home": [0, 65535], "prating pesant fetch thy master home dro": [0, 65535], "pesant fetch thy master home dro am": [0, 65535], "fetch thy master home dro am i": [0, 65535], "thy master home dro am i so": [0, 65535], "master home dro am i so round": [0, 65535], "home dro am i so round with": [0, 65535], "dro am i so round with you": [0, 65535], "am i so round with you as": [0, 65535], "i so round with you as you": [0, 65535], "so round with you as you with": [0, 65535], "round with you as you with me": [0, 65535], "with you as you with me that": [0, 65535], "you as you with me that like": [0, 65535], "as you with me that like a": [0, 65535], "you with me that like a foot": [0, 65535], "with me that like a foot ball": [0, 65535], "me that like a foot ball you": [0, 65535], "that like a foot ball you doe": [0, 65535], "like a foot ball you doe spurne": [0, 65535], "a foot ball you doe spurne me": [0, 65535], "foot ball you doe spurne me thus": [0, 65535], "ball you doe spurne me thus you": [0, 65535], "you doe spurne me thus you spurne": [0, 65535], "doe spurne me thus you spurne me": [0, 65535], "spurne me thus you spurne me hence": [0, 65535], "me thus you spurne me hence and": [0, 65535], "thus you spurne me hence and he": [0, 65535], "you spurne me hence and he will": [0, 65535], "spurne me hence and he will spurne": [0, 65535], "me hence and he will spurne me": [0, 65535], "hence and he will spurne me hither": [0, 65535], "and he will spurne me hither if": [0, 65535], "he will spurne me hither if i": [0, 65535], "will spurne me hither if i last": [0, 65535], "spurne me hither if i last in": [0, 65535], "me hither if i last in this": [0, 65535], "hither if i last in this seruice": [0, 65535], "if i last in this seruice you": [0, 65535], "i last in this seruice you must": [0, 65535], "last in this seruice you must case": [0, 65535], "in this seruice you must case me": [0, 65535], "this seruice you must case me in": [0, 65535], "seruice you must case me in leather": [0, 65535], "you must case me in leather luci": [0, 65535], "must case me in leather luci fie": [0, 65535], "case me in leather luci fie how": [0, 65535], "me in leather luci fie how impatience": [0, 65535], "in leather luci fie how impatience lowreth": [0, 65535], "leather luci fie how impatience lowreth in": [0, 65535], "luci fie how impatience lowreth in your": [0, 65535], "fie how impatience lowreth in your face": [0, 65535], "how impatience lowreth in your face adri": [0, 65535], "impatience lowreth in your face adri his": [0, 65535], "lowreth in your face adri his company": [0, 65535], "in your face adri his company must": [0, 65535], "your face adri his company must do": [0, 65535], "face adri his company must do his": [0, 65535], "adri his company must do his minions": [0, 65535], "his company must do his minions grace": [0, 65535], "company must do his minions grace whil'st": [0, 65535], "must do his minions grace whil'st i": [0, 65535], "do his minions grace whil'st i at": [0, 65535], "his minions grace whil'st i at home": [0, 65535], "minions grace whil'st i at home starue": [0, 65535], "grace whil'st i at home starue for": [0, 65535], "whil'st i at home starue for a": [0, 65535], "i at home starue for a merrie": [0, 65535], "at home starue for a merrie looke": [0, 65535], "home starue for a merrie looke hath": [0, 65535], "starue for a merrie looke hath homelie": [0, 65535], "for a merrie looke hath homelie age": [0, 65535], "a merrie looke hath homelie age th'": [0, 65535], "merrie looke hath homelie age th' alluring": [0, 65535], "looke hath homelie age th' alluring beauty": [0, 65535], "hath homelie age th' alluring beauty tooke": [0, 65535], "homelie age th' alluring beauty tooke from": [0, 65535], "age th' alluring beauty tooke from my": [0, 65535], "th' alluring beauty tooke from my poore": [0, 65535], "alluring beauty tooke from my poore cheeke": [0, 65535], "beauty tooke from my poore cheeke then": [0, 65535], "tooke from my poore cheeke then he": [0, 65535], "from my poore cheeke then he hath": [0, 65535], "my poore cheeke then he hath wasted": [0, 65535], "poore cheeke then he hath wasted it": [0, 65535], "cheeke then he hath wasted it are": [0, 65535], "then he hath wasted it are my": [0, 65535], "he hath wasted it are my discourses": [0, 65535], "hath wasted it are my discourses dull": [0, 65535], "wasted it are my discourses dull barren": [0, 65535], "it are my discourses dull barren my": [0, 65535], "are my discourses dull barren my wit": [0, 65535], "my discourses dull barren my wit if": [0, 65535], "discourses dull barren my wit if voluble": [0, 65535], "dull barren my wit if voluble and": [0, 65535], "barren my wit if voluble and sharpe": [0, 65535], "my wit if voluble and sharpe discourse": [0, 65535], "wit if voluble and sharpe discourse be": [0, 65535], "if voluble and sharpe discourse be mar'd": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "discourse be mar'd vnkindnesse blunts it more": [0, 65535], "be mar'd vnkindnesse blunts it more then": [0, 65535], "mar'd vnkindnesse blunts it more then marble": [0, 65535], "vnkindnesse blunts it more then marble hard": [0, 65535], "blunts it more then marble hard doe": [0, 65535], "it more then marble hard doe their": [0, 65535], "more then marble hard doe their gay": [0, 65535], "then marble hard doe their gay vestments": [0, 65535], "marble hard doe their gay vestments his": [0, 65535], "hard doe their gay vestments his affections": [0, 65535], "doe their gay vestments his affections baite": [0, 65535], "their gay vestments his affections baite that's": [0, 65535], "gay vestments his affections baite that's not": [0, 65535], "vestments his affections baite that's not my": [0, 65535], "his affections baite that's not my fault": [0, 65535], "affections baite that's not my fault hee's": [0, 65535], "baite that's not my fault hee's master": [0, 65535], "that's not my fault hee's master of": [0, 65535], "not my fault hee's master of my": [0, 65535], "my fault hee's master of my state": [0, 65535], "fault hee's master of my state what": [0, 65535], "hee's master of my state what ruines": [0, 65535], "master of my state what ruines are": [0, 65535], "of my state what ruines are in": [0, 65535], "my state what ruines are in me": [0, 65535], "state what ruines are in me that": [0, 65535], "what ruines are in me that can": [0, 65535], "ruines are in me that can be": [0, 65535], "are in me that can be found": [0, 65535], "in me that can be found by": [0, 65535], "me that can be found by him": [0, 65535], "that can be found by him not": [0, 65535], "can be found by him not ruin'd": [0, 65535], "be found by him not ruin'd then": [0, 65535], "found by him not ruin'd then is": [0, 65535], "by him not ruin'd then is he": [0, 65535], "him not ruin'd then is he the": [0, 65535], "not ruin'd then is he the ground": [0, 65535], "ruin'd then is he the ground of": [0, 65535], "then is he the ground of my": [0, 65535], "is he the ground of my defeatures": [0, 65535], "he the ground of my defeatures my": [0, 65535], "the ground of my defeatures my decayed": [0, 65535], "ground of my defeatures my decayed faire": [0, 65535], "of my defeatures my decayed faire a": [0, 65535], "my defeatures my decayed faire a sunnie": [0, 65535], "defeatures my decayed faire a sunnie looke": [0, 65535], "my decayed faire a sunnie looke of": [0, 65535], "decayed faire a sunnie looke of his": [0, 65535], "faire a sunnie looke of his would": [0, 65535], "a sunnie looke of his would soone": [0, 65535], "sunnie looke of his would soone repaire": [0, 65535], "looke of his would soone repaire but": [0, 65535], "of his would soone repaire but too": [0, 65535], "his would soone repaire but too vnruly": [0, 65535], "would soone repaire but too vnruly deere": [0, 65535], "soone repaire but too vnruly deere he": [0, 65535], "repaire but too vnruly deere he breakes": [0, 65535], "but too vnruly deere he breakes the": [0, 65535], "too vnruly deere he breakes the pale": [0, 65535], "vnruly deere he breakes the pale and": [0, 65535], "deere he breakes the pale and feedes": [0, 65535], "he breakes the pale and feedes from": [0, 65535], "breakes the pale and feedes from home": [0, 65535], "the pale and feedes from home poore": [0, 65535], "pale and feedes from home poore i": [0, 65535], "and feedes from home poore i am": [0, 65535], "feedes from home poore i am but": [0, 65535], "from home poore i am but his": [0, 65535], "home poore i am but his stale": [0, 65535], "poore i am but his stale luci": [0, 65535], "i am but his stale luci selfe": [0, 65535], "am but his stale luci selfe harming": [0, 65535], "but his stale luci selfe harming iealousie": [0, 65535], "his stale luci selfe harming iealousie fie": [0, 65535], "stale luci selfe harming iealousie fie beat": [0, 65535], "luci selfe harming iealousie fie beat it": [0, 65535], "selfe harming iealousie fie beat it hence": [0, 65535], "harming iealousie fie beat it hence ad": [0, 65535], "iealousie fie beat it hence ad vnfeeling": [0, 65535], "fie beat it hence ad vnfeeling fools": [0, 65535], "beat it hence ad vnfeeling fools can": [0, 65535], "it hence ad vnfeeling fools can with": [0, 65535], "hence ad vnfeeling fools can with such": [0, 65535], "ad vnfeeling fools can with such wrongs": [0, 65535], "vnfeeling fools can with such wrongs dispence": [0, 65535], "fools can with such wrongs dispence i": [0, 65535], "can with such wrongs dispence i know": [0, 65535], "with such wrongs dispence i know his": [0, 65535], "such wrongs dispence i know his eye": [0, 65535], "wrongs dispence i know his eye doth": [0, 65535], "dispence i know his eye doth homage": [0, 65535], "i know his eye doth homage other": [0, 65535], "know his eye doth homage other where": [0, 65535], "his eye doth homage other where or": [0, 65535], "eye doth homage other where or else": [0, 65535], "doth homage other where or else what": [0, 65535], "homage other where or else what lets": [0, 65535], "other where or else what lets it": [0, 65535], "where or else what lets it but": [0, 65535], "or else what lets it but he": [0, 65535], "else what lets it but he would": [0, 65535], "what lets it but he would be": [0, 65535], "lets it but he would be here": [0, 65535], "it but he would be here sister": [0, 65535], "but he would be here sister you": [0, 65535], "he would be here sister you know": [0, 65535], "would be here sister you know he": [0, 65535], "be here sister you know he promis'd": [0, 65535], "here sister you know he promis'd me": [0, 65535], "sister you know he promis'd me a": [0, 65535], "you know he promis'd me a chaine": [0, 65535], "know he promis'd me a chaine would": [0, 65535], "he promis'd me a chaine would that": [0, 65535], "promis'd me a chaine would that alone": [0, 65535], "me a chaine would that alone a": [0, 65535], "a chaine would that alone a loue": [0, 65535], "chaine would that alone a loue he": [0, 65535], "would that alone a loue he would": [0, 65535], "that alone a loue he would detaine": [0, 65535], "alone a loue he would detaine so": [0, 65535], "a loue he would detaine so he": [0, 65535], "loue he would detaine so he would": [0, 65535], "he would detaine so he would keepe": [0, 65535], "would detaine so he would keepe faire": [0, 65535], "detaine so he would keepe faire quarter": [0, 65535], "so he would keepe faire quarter with": [0, 65535], "he would keepe faire quarter with his": [0, 65535], "would keepe faire quarter with his bed": [0, 65535], "keepe faire quarter with his bed i": [0, 65535], "faire quarter with his bed i see": [0, 65535], "quarter with his bed i see the": [0, 65535], "with his bed i see the iewell": [0, 65535], "his bed i see the iewell best": [0, 65535], "bed i see the iewell best enamaled": [0, 65535], "i see the iewell best enamaled will": [0, 65535], "see the iewell best enamaled will loose": [0, 65535], "the iewell best enamaled will loose his": [0, 65535], "iewell best enamaled will loose his beautie": [0, 65535], "best enamaled will loose his beautie yet": [0, 65535], "enamaled will loose his beautie yet the": [0, 65535], "will loose his beautie yet the gold": [0, 65535], "loose his beautie yet the gold bides": [0, 65535], "his beautie yet the gold bides still": [0, 65535], "beautie yet the gold bides still that": [0, 65535], "yet the gold bides still that others": [0, 65535], "the gold bides still that others touch": [0, 65535], "gold bides still that others touch and": [0, 65535], "bides still that others touch and often": [0, 65535], "still that others touch and often touching": [0, 65535], "that others touch and often touching will": [0, 65535], "others touch and often touching will where": [0, 65535], "touch and often touching will where gold": [0, 65535], "and often touching will where gold and": [0, 65535], "often touching will where gold and no": [0, 65535], "touching will where gold and no man": [0, 65535], "will where gold and no man that": [0, 65535], "where gold and no man that hath": [0, 65535], "gold and no man that hath a": [0, 65535], "and no man that hath a name": [0, 65535], "no man that hath a name by": [0, 65535], "man that hath a name by falshood": [0, 65535], "that hath a name by falshood and": [0, 65535], "hath a name by falshood and corruption": [0, 65535], "a name by falshood and corruption doth": [0, 65535], "name by falshood and corruption doth it": [0, 65535], "by falshood and corruption doth it shame": [0, 65535], "falshood and corruption doth it shame since": [0, 65535], "and corruption doth it shame since that": [0, 65535], "corruption doth it shame since that my": [0, 65535], "doth it shame since that my beautie": [0, 65535], "it shame since that my beautie cannot": [0, 65535], "shame since that my beautie cannot please": [0, 65535], "since that my beautie cannot please his": [0, 65535], "that my beautie cannot please his eie": [0, 65535], "my beautie cannot please his eie ile": [0, 65535], "beautie cannot please his eie ile weepe": [0, 65535], "cannot please his eie ile weepe what's": [0, 65535], "please his eie ile weepe what's left": [0, 65535], "his eie ile weepe what's left away": [0, 65535], "eie ile weepe what's left away and": [0, 65535], "ile weepe what's left away and weeping": [0, 65535], "weepe what's left away and weeping die": [0, 65535], "what's left away and weeping die luci": [0, 65535], "left away and weeping die luci how": [0, 65535], "away and weeping die luci how manie": [0, 65535], "and weeping die luci how manie fond": [0, 65535], "weeping die luci how manie fond fooles": [0, 65535], "die luci how manie fond fooles serue": [0, 65535], "luci how manie fond fooles serue mad": [0, 65535], "how manie fond fooles serue mad ielousie": [0, 65535], "manie fond fooles serue mad ielousie exit": [0, 65535], "fond fooles serue mad ielousie exit enter": [0, 65535], "fooles serue mad ielousie exit enter antipholis": [0, 65535], "serue mad ielousie exit enter antipholis errotis": [0, 65535], "mad ielousie exit enter antipholis errotis ant": [0, 65535], "ielousie exit enter antipholis errotis ant the": [0, 65535], "exit enter antipholis errotis ant the gold": [0, 65535], "enter antipholis errotis ant the gold i": [0, 65535], "antipholis errotis ant the gold i gaue": [0, 65535], "errotis ant the gold i gaue to": [0, 65535], "ant the gold i gaue to dromio": [0, 65535], "the gold i gaue to dromio is": [0, 65535], "gold i gaue to dromio is laid": [0, 65535], "i gaue to dromio is laid vp": [0, 65535], "gaue to dromio is laid vp safe": [0, 65535], "to dromio is laid vp safe at": [0, 65535], "dromio is laid vp safe at the": [0, 65535], "is laid vp safe at the centaur": [0, 65535], "laid vp safe at the centaur and": [0, 65535], "vp safe at the centaur and the": [0, 65535], "safe at the centaur and the heedfull": [0, 65535], "at the centaur and the heedfull slaue": [0, 65535], "the centaur and the heedfull slaue is": [0, 65535], "centaur and the heedfull slaue is wandred": [0, 65535], "and the heedfull slaue is wandred forth": [0, 65535], "the heedfull slaue is wandred forth in": [0, 65535], "heedfull slaue is wandred forth in care": [0, 65535], "slaue is wandred forth in care to": [0, 65535], "is wandred forth in care to seeke": [0, 65535], "wandred forth in care to seeke me": [0, 65535], "forth in care to seeke me out": [0, 65535], "in care to seeke me out by": [0, 65535], "care to seeke me out by computation": [0, 65535], "to seeke me out by computation and": [0, 65535], "seeke me out by computation and mine": [0, 65535], "me out by computation and mine hosts": [0, 65535], "out by computation and mine hosts report": [0, 65535], "by computation and mine hosts report i": [0, 65535], "computation and mine hosts report i could": [0, 65535], "and mine hosts report i could not": [0, 65535], "mine hosts report i could not speake": [0, 65535], "hosts report i could not speake with": [0, 65535], "report i could not speake with dromio": [0, 65535], "i could not speake with dromio since": [0, 65535], "could not speake with dromio since at": [0, 65535], "not speake with dromio since at first": [0, 65535], "speake with dromio since at first i": [0, 65535], "with dromio since at first i sent": [0, 65535], "dromio since at first i sent him": [0, 65535], "since at first i sent him from": [0, 65535], "at first i sent him from the": [0, 65535], "first i sent him from the mart": [0, 65535], "i sent him from the mart see": [0, 65535], "sent him from the mart see here": [0, 65535], "him from the mart see here he": [0, 65535], "from the mart see here he comes": [0, 65535], "the mart see here he comes enter": [0, 65535], "mart see here he comes enter dromio": [0, 65535], "see here he comes enter dromio siracusia": [0, 65535], "here he comes enter dromio siracusia how": [0, 65535], "he comes enter dromio siracusia how now": [0, 65535], "comes enter dromio siracusia how now sir": [0, 65535], "enter dromio siracusia how now sir is": [0, 65535], "dromio siracusia how now sir is your": [0, 65535], "siracusia how now sir is your merrie": [0, 65535], "how now sir is your merrie humor": [0, 65535], "now sir is your merrie humor alter'd": [0, 65535], "sir is your merrie humor alter'd as": [0, 65535], "is your merrie humor alter'd as you": [0, 65535], "your merrie humor alter'd as you loue": [0, 65535], "merrie humor alter'd as you loue stroakes": [0, 65535], "humor alter'd as you loue stroakes so": [0, 65535], "alter'd as you loue stroakes so iest": [0, 65535], "as you loue stroakes so iest with": [0, 65535], "you loue stroakes so iest with me": [0, 65535], "loue stroakes so iest with me againe": [0, 65535], "stroakes so iest with me againe you": [0, 65535], "so iest with me againe you know": [0, 65535], "iest with me againe you know no": [0, 65535], "with me againe you know no centaur": [0, 65535], "me againe you know no centaur you": [0, 65535], "againe you know no centaur you receiu'd": [0, 65535], "you know no centaur you receiu'd no": [0, 65535], "know no centaur you receiu'd no gold": [0, 65535], "no centaur you receiu'd no gold your": [0, 65535], "centaur you receiu'd no gold your mistresse": [0, 65535], "you receiu'd no gold your mistresse sent": [0, 65535], "receiu'd no gold your mistresse sent to": [0, 65535], "no gold your mistresse sent to haue": [0, 65535], "gold your mistresse sent to haue me": [0, 65535], "your mistresse sent to haue me home": [0, 65535], "mistresse sent to haue me home to": [0, 65535], "sent to haue me home to dinner": [0, 65535], "to haue me home to dinner my": [0, 65535], "haue me home to dinner my house": [0, 65535], "me home to dinner my house was": [0, 65535], "home to dinner my house was at": [0, 65535], "to dinner my house was at the": [0, 65535], "dinner my house was at the ph\u0153nix": [0, 65535], "my house was at the ph\u0153nix wast": [0, 65535], "house was at the ph\u0153nix wast thou": [0, 65535], "was at the ph\u0153nix wast thou mad": [0, 65535], "at the ph\u0153nix wast thou mad that": [0, 65535], "the ph\u0153nix wast thou mad that thus": [0, 65535], "ph\u0153nix wast thou mad that thus so": [0, 65535], "wast thou mad that thus so madlie": [0, 65535], "thou mad that thus so madlie thou": [0, 65535], "mad that thus so madlie thou did": [0, 65535], "that thus so madlie thou did didst": [0, 65535], "thus so madlie thou did didst answere": [0, 65535], "so madlie thou did didst answere me": [0, 65535], "madlie thou did didst answere me s": [0, 65535], "thou did didst answere me s dro": [0, 65535], "did didst answere me s dro what": [0, 65535], "didst answere me s dro what answer": [0, 65535], "answere me s dro what answer sir": [0, 65535], "me s dro what answer sir when": [0, 65535], "s dro what answer sir when spake": [0, 65535], "dro what answer sir when spake i": [0, 65535], "what answer sir when spake i such": [0, 65535], "answer sir when spake i such a": [0, 65535], "sir when spake i such a word": [0, 65535], "when spake i such a word e": [0, 65535], "spake i such a word e ant": [0, 65535], "i such a word e ant euen": [0, 65535], "such a word e ant euen now": [0, 65535], "a word e ant euen now euen": [0, 65535], "word e ant euen now euen here": [0, 65535], "e ant euen now euen here not": [0, 65535], "ant euen now euen here not halfe": [0, 65535], "euen now euen here not halfe an": [0, 65535], "now euen here not halfe an howre": [0, 65535], "euen here not halfe an howre since": [0, 65535], "here not halfe an howre since s": [0, 65535], "not halfe an howre since s dro": [0, 65535], "halfe an howre since s dro i": [0, 65535], "an howre since s dro i did": [0, 65535], "howre since s dro i did not": [0, 65535], "since s dro i did not see": [0, 65535], "s dro i did not see you": [0, 65535], "dro i did not see you since": [0, 65535], "i did not see you since you": [0, 65535], "did not see you since you sent": [0, 65535], "not see you since you sent me": [0, 65535], "see you since you sent me hence": [0, 65535], "you since you sent me hence home": [0, 65535], "since you sent me hence home to": [0, 65535], "you sent me hence home to the": [0, 65535], "sent me hence home to the centaur": [0, 65535], "me hence home to the centaur with": [0, 65535], "hence home to the centaur with the": [0, 65535], "home to the centaur with the gold": [0, 65535], "to the centaur with the gold you": [0, 65535], "the centaur with the gold you gaue": [0, 65535], "centaur with the gold you gaue me": [0, 65535], "with the gold you gaue me ant": [0, 65535], "the gold you gaue me ant villaine": [0, 65535], "gold you gaue me ant villaine thou": [0, 65535], "you gaue me ant villaine thou didst": [0, 65535], "gaue me ant villaine thou didst denie": [0, 65535], "me ant villaine thou didst denie the": [0, 65535], "ant villaine thou didst denie the golds": [0, 65535], "villaine thou didst denie the golds receit": [0, 65535], "thou didst denie the golds receit and": [0, 65535], "didst denie the golds receit and toldst": [0, 65535], "denie the golds receit and toldst me": [0, 65535], "the golds receit and toldst me of": [0, 65535], "golds receit and toldst me of a": [0, 65535], "receit and toldst me of a mistresse": [0, 65535], "and toldst me of a mistresse and": [0, 65535], "toldst me of a mistresse and a": [0, 65535], "me of a mistresse and a dinner": [0, 65535], "of a mistresse and a dinner for": [0, 65535], "a mistresse and a dinner for which": [0, 65535], "mistresse and a dinner for which i": [0, 65535], "and a dinner for which i hope": [0, 65535], "a dinner for which i hope thou": [0, 65535], "dinner for which i hope thou feltst": [0, 65535], "for which i hope thou feltst i": [0, 65535], "which i hope thou feltst i was": [0, 65535], "i hope thou feltst i was displeas'd": [0, 65535], "hope thou feltst i was displeas'd s": [0, 65535], "thou feltst i was displeas'd s dro": [0, 65535], "feltst i was displeas'd s dro i": [0, 65535], "i was displeas'd s dro i am": [0, 65535], "was displeas'd s dro i am glad": [0, 65535], "displeas'd s dro i am glad to": [0, 65535], "s dro i am glad to see": [0, 65535], "dro i am glad to see you": [0, 65535], "i am glad to see you in": [0, 65535], "am glad to see you in this": [0, 65535], "glad to see you in this merrie": [0, 65535], "to see you in this merrie vaine": [0, 65535], "see you in this merrie vaine what": [0, 65535], "you in this merrie vaine what meanes": [0, 65535], "in this merrie vaine what meanes this": [0, 65535], "this merrie vaine what meanes this iest": [0, 65535], "merrie vaine what meanes this iest i": [0, 65535], "vaine what meanes this iest i pray": [0, 65535], "what meanes this iest i pray you": [0, 65535], "meanes this iest i pray you master": [0, 65535], "this iest i pray you master tell": [0, 65535], "iest i pray you master tell me": [0, 65535], "i pray you master tell me ant": [0, 65535], "pray you master tell me ant yea": [0, 65535], "you master tell me ant yea dost": [0, 65535], "master tell me ant yea dost thou": [0, 65535], "tell me ant yea dost thou ieere": [0, 65535], "me ant yea dost thou ieere flowt": [0, 65535], "ant yea dost thou ieere flowt me": [0, 65535], "yea dost thou ieere flowt me in": [0, 65535], "dost thou ieere flowt me in the": [0, 65535], "thou ieere flowt me in the teeth": [0, 65535], "ieere flowt me in the teeth thinkst": [0, 65535], "flowt me in the teeth thinkst thou": [0, 65535], "me in the teeth thinkst thou i": [0, 65535], "in the teeth thinkst thou i iest": [0, 65535], "the teeth thinkst thou i iest hold": [0, 65535], "teeth thinkst thou i iest hold take": [0, 65535], "thinkst thou i iest hold take thou": [0, 65535], "thou i iest hold take thou that": [0, 65535], "i iest hold take thou that that": [0, 65535], "iest hold take thou that that beats": [0, 65535], "hold take thou that that beats dro": [0, 65535], "take thou that that beats dro s": [0, 65535], "thou that that beats dro s dr": [0, 65535], "that that beats dro s dr hold": [0, 65535], "that beats dro s dr hold sir": [0, 65535], "beats dro s dr hold sir for": [0, 65535], "dro s dr hold sir for gods": [0, 65535], "s dr hold sir for gods sake": [0, 65535], "dr hold sir for gods sake now": [0, 65535], "hold sir for gods sake now your": [0, 65535], "sir for gods sake now your iest": [0, 65535], "for gods sake now your iest is": [0, 65535], "gods sake now your iest is earnest": [0, 65535], "sake now your iest is earnest vpon": [0, 65535], "now your iest is earnest vpon what": [0, 65535], "your iest is earnest vpon what bargaine": [0, 65535], "iest is earnest vpon what bargaine do": [0, 65535], "is earnest vpon what bargaine do you": [0, 65535], "earnest vpon what bargaine do you giue": [0, 65535], "vpon what bargaine do you giue it": [0, 65535], "what bargaine do you giue it me": [0, 65535], "bargaine do you giue it me antiph": [0, 65535], "do you giue it me antiph because": [0, 65535], "you giue it me antiph because that": [0, 65535], "giue it me antiph because that i": [0, 65535], "it me antiph because that i familiarlie": [0, 65535], "me antiph because that i familiarlie sometimes": [0, 65535], "antiph because that i familiarlie sometimes doe": [0, 65535], "because that i familiarlie sometimes doe vse": [0, 65535], "that i familiarlie sometimes doe vse you": [0, 65535], "i familiarlie sometimes doe vse you for": [0, 65535], "familiarlie sometimes doe vse you for my": [0, 65535], "sometimes doe vse you for my foole": [0, 65535], "doe vse you for my foole and": [0, 65535], "vse you for my foole and chat": [0, 65535], "you for my foole and chat with": [0, 65535], "for my foole and chat with you": [0, 65535], "my foole and chat with you your": [0, 65535], "foole and chat with you your sawcinesse": [0, 65535], "and chat with you your sawcinesse will": [0, 65535], "chat with you your sawcinesse will iest": [0, 65535], "with you your sawcinesse will iest vpon": [0, 65535], "you your sawcinesse will iest vpon my": [0, 65535], "your sawcinesse will iest vpon my loue": [0, 65535], "sawcinesse will iest vpon my loue and": [0, 65535], "will iest vpon my loue and make": [0, 65535], "iest vpon my loue and make a": [0, 65535], "vpon my loue and make a common": [0, 65535], "my loue and make a common of": [0, 65535], "loue and make a common of my": [0, 65535], "and make a common of my serious": [0, 65535], "make a common of my serious howres": [0, 65535], "a common of my serious howres when": [0, 65535], "common of my serious howres when the": [0, 65535], "of my serious howres when the sunne": [0, 65535], "my serious howres when the sunne shines": [0, 65535], "serious howres when the sunne shines let": [0, 65535], "howres when the sunne shines let foolish": [0, 65535], "when the sunne shines let foolish gnats": [0, 65535], "the sunne shines let foolish gnats make": [0, 65535], "sunne shines let foolish gnats make sport": [0, 65535], "shines let foolish gnats make sport but": [0, 65535], "let foolish gnats make sport but creepe": [0, 65535], "foolish gnats make sport but creepe in": [0, 65535], "gnats make sport but creepe in crannies": [0, 65535], "make sport but creepe in crannies when": [0, 65535], "sport but creepe in crannies when he": [0, 65535], "but creepe in crannies when he hides": [0, 65535], "creepe in crannies when he hides his": [0, 65535], "in crannies when he hides his beames": [0, 65535], "crannies when he hides his beames if": [0, 65535], "when he hides his beames if you": [0, 65535], "he hides his beames if you will": [0, 65535], "hides his beames if you will iest": [0, 65535], "his beames if you will iest with": [0, 65535], "beames if you will iest with me": [0, 65535], "if you will iest with me know": [0, 65535], "you will iest with me know my": [0, 65535], "will iest with me know my aspect": [0, 65535], "iest with me know my aspect and": [0, 65535], "with me know my aspect and fashion": [0, 65535], "me know my aspect and fashion your": [0, 65535], "know my aspect and fashion your demeanor": [0, 65535], "my aspect and fashion your demeanor to": [0, 65535], "aspect and fashion your demeanor to my": [0, 65535], "and fashion your demeanor to my lookes": [0, 65535], "fashion your demeanor to my lookes or": [0, 65535], "your demeanor to my lookes or i": [0, 65535], "demeanor to my lookes or i will": [0, 65535], "to my lookes or i will beat": [0, 65535], "my lookes or i will beat this": [0, 65535], "lookes or i will beat this method": [0, 65535], "or i will beat this method in": [0, 65535], "i will beat this method in your": [0, 65535], "will beat this method in your sconce": [0, 65535], "beat this method in your sconce s": [0, 65535], "this method in your sconce s dro": [0, 65535], "method in your sconce s dro sconce": [0, 65535], "in your sconce s dro sconce call": [0, 65535], "your sconce s dro sconce call you": [0, 65535], "sconce s dro sconce call you it": [0, 65535], "s dro sconce call you it so": [0, 65535], "dro sconce call you it so you": [0, 65535], "sconce call you it so you would": [0, 65535], "call you it so you would leaue": [0, 65535], "you it so you would leaue battering": [0, 65535], "it so you would leaue battering i": [0, 65535], "so you would leaue battering i had": [0, 65535], "you would leaue battering i had rather": [0, 65535], "would leaue battering i had rather haue": [0, 65535], "leaue battering i had rather haue it": [0, 65535], "battering i had rather haue it a": [0, 65535], "i had rather haue it a head": [0, 65535], "had rather haue it a head and": [0, 65535], "rather haue it a head and you": [0, 65535], "haue it a head and you vse": [0, 65535], "it a head and you vse these": [0, 65535], "a head and you vse these blows": [0, 65535], "head and you vse these blows long": [0, 65535], "and you vse these blows long i": [0, 65535], "you vse these blows long i must": [0, 65535], "vse these blows long i must get": [0, 65535], "these blows long i must get a": [0, 65535], "blows long i must get a sconce": [0, 65535], "long i must get a sconce for": [0, 65535], "i must get a sconce for my": [0, 65535], "must get a sconce for my head": [0, 65535], "get a sconce for my head and": [0, 65535], "a sconce for my head and insconce": [0, 65535], "sconce for my head and insconce it": [0, 65535], "for my head and insconce it to": [0, 65535], "my head and insconce it to or": [0, 65535], "head and insconce it to or else": [0, 65535], "and insconce it to or else i": [0, 65535], "insconce it to or else i shall": [0, 65535], "it to or else i shall seek": [0, 65535], "to or else i shall seek my": [0, 65535], "or else i shall seek my wit": [0, 65535], "else i shall seek my wit in": [0, 65535], "i shall seek my wit in my": [0, 65535], "shall seek my wit in my shoulders": [0, 65535], "seek my wit in my shoulders but": [0, 65535], "my wit in my shoulders but i": [0, 65535], "wit in my shoulders but i pray": [0, 65535], "in my shoulders but i pray sir": [0, 65535], "my shoulders but i pray sir why": [0, 65535], "shoulders but i pray sir why am": [0, 65535], "but i pray sir why am i": [0, 65535], "i pray sir why am i beaten": [0, 65535], "pray sir why am i beaten ant": [0, 65535], "sir why am i beaten ant dost": [0, 65535], "why am i beaten ant dost thou": [0, 65535], "am i beaten ant dost thou not": [0, 65535], "i beaten ant dost thou not know": [0, 65535], "beaten ant dost thou not know s": [0, 65535], "ant dost thou not know s dro": [0, 65535], "dost thou not know s dro nothing": [0, 65535], "thou not know s dro nothing sir": [0, 65535], "not know s dro nothing sir but": [0, 65535], "know s dro nothing sir but that": [0, 65535], "s dro nothing sir but that i": [0, 65535], "dro nothing sir but that i am": [0, 65535], "nothing sir but that i am beaten": [0, 65535], "sir but that i am beaten ant": [0, 65535], "but that i am beaten ant shall": [0, 65535], "that i am beaten ant shall i": [0, 65535], "i am beaten ant shall i tell": [0, 65535], "am beaten ant shall i tell you": [0, 65535], "beaten ant shall i tell you why": [0, 65535], "ant shall i tell you why s": [0, 65535], "shall i tell you why s dro": [0, 65535], "i tell you why s dro i": [0, 65535], "tell you why s dro i sir": [0, 65535], "you why s dro i sir and": [0, 65535], "why s dro i sir and wherefore": [0, 65535], "s dro i sir and wherefore for": [0, 65535], "dro i sir and wherefore for they": [0, 65535], "i sir and wherefore for they say": [0, 65535], "sir and wherefore for they say euery": [0, 65535], "and wherefore for they say euery why": [0, 65535], "wherefore for they say euery why hath": [0, 65535], "for they say euery why hath a": [0, 65535], "they say euery why hath a wherefore": [0, 65535], "say euery why hath a wherefore ant": [0, 65535], "euery why hath a wherefore ant why": [0, 65535], "why hath a wherefore ant why first": [0, 65535], "hath a wherefore ant why first for": [0, 65535], "a wherefore ant why first for flowting": [0, 65535], "wherefore ant why first for flowting me": [0, 65535], "ant why first for flowting me and": [0, 65535], "why first for flowting me and then": [0, 65535], "first for flowting me and then wherefore": [0, 65535], "for flowting me and then wherefore for": [0, 65535], "flowting me and then wherefore for vrging": [0, 65535], "me and then wherefore for vrging it": [0, 65535], "and then wherefore for vrging it the": [0, 65535], "then wherefore for vrging it the second": [0, 65535], "wherefore for vrging it the second time": [0, 65535], "for vrging it the second time to": [0, 65535], "vrging it the second time to me": [0, 65535], "it the second time to me s": [0, 65535], "the second time to me s dro": [0, 65535], "second time to me s dro was": [0, 65535], "time to me s dro was there": [0, 65535], "to me s dro was there euer": [0, 65535], "me s dro was there euer anie": [0, 65535], "s dro was there euer anie man": [0, 65535], "dro was there euer anie man thus": [0, 65535], "was there euer anie man thus beaten": [0, 65535], "there euer anie man thus beaten out": [0, 65535], "euer anie man thus beaten out of": [0, 65535], "anie man thus beaten out of season": [0, 65535], "man thus beaten out of season when": [0, 65535], "thus beaten out of season when in": [0, 65535], "beaten out of season when in the": [0, 65535], "out of season when in the why": [0, 65535], "of season when in the why and": [0, 65535], "season when in the why and the": [0, 65535], "when in the why and the wherefore": [0, 65535], "in the why and the wherefore is": [0, 65535], "the why and the wherefore is neither": [0, 65535], "why and the wherefore is neither rime": [0, 65535], "and the wherefore is neither rime nor": [0, 65535], "the wherefore is neither rime nor reason": [0, 65535], "wherefore is neither rime nor reason well": [0, 65535], "is neither rime nor reason well sir": [0, 65535], "neither rime nor reason well sir i": [0, 65535], "rime nor reason well sir i thanke": [0, 65535], "nor reason well sir i thanke you": [0, 65535], "reason well sir i thanke you ant": [0, 65535], "well sir i thanke you ant thanke": [0, 65535], "sir i thanke you ant thanke me": [0, 65535], "i thanke you ant thanke me sir": [0, 65535], "thanke you ant thanke me sir for": [0, 65535], "you ant thanke me sir for what": [0, 65535], "ant thanke me sir for what s": [0, 65535], "thanke me sir for what s dro": [0, 65535], "me sir for what s dro marry": [0, 65535], "sir for what s dro marry sir": [0, 65535], "for what s dro marry sir for": [0, 65535], "what s dro marry sir for this": [0, 65535], "s dro marry sir for this something": [0, 65535], "dro marry sir for this something that": [0, 65535], "marry sir for this something that you": [0, 65535], "sir for this something that you gaue": [0, 65535], "for this something that you gaue me": [0, 65535], "this something that you gaue me for": [0, 65535], "something that you gaue me for nothing": [0, 65535], "that you gaue me for nothing ant": [0, 65535], "you gaue me for nothing ant ile": [0, 65535], "gaue me for nothing ant ile make": [0, 65535], "me for nothing ant ile make you": [0, 65535], "for nothing ant ile make you amends": [0, 65535], "nothing ant ile make you amends next": [0, 65535], "ant ile make you amends next to": [0, 65535], "ile make you amends next to giue": [0, 65535], "make you amends next to giue you": [0, 65535], "you amends next to giue you nothing": [0, 65535], "amends next to giue you nothing for": [0, 65535], "next to giue you nothing for something": [0, 65535], "to giue you nothing for something but": [0, 65535], "giue you nothing for something but say": [0, 65535], "you nothing for something but say sir": [0, 65535], "nothing for something but say sir is": [0, 65535], "for something but say sir is it": [0, 65535], "something but say sir is it dinner": [0, 65535], "but say sir is it dinner time": [0, 65535], "say sir is it dinner time s": [0, 65535], "sir is it dinner time s dro": [0, 65535], "is it dinner time s dro no": [0, 65535], "it dinner time s dro no sir": [0, 65535], "dinner time s dro no sir i": [0, 65535], "time s dro no sir i thinke": [0, 65535], "s dro no sir i thinke the": [0, 65535], "dro no sir i thinke the meat": [0, 65535], "no sir i thinke the meat wants": [0, 65535], "sir i thinke the meat wants that": [0, 65535], "i thinke the meat wants that i": [0, 65535], "thinke the meat wants that i haue": [0, 65535], "the meat wants that i haue ant": [0, 65535], "meat wants that i haue ant in": [0, 65535], "wants that i haue ant in good": [0, 65535], "that i haue ant in good time": [0, 65535], "i haue ant in good time sir": [0, 65535], "haue ant in good time sir what's": [0, 65535], "ant in good time sir what's that": [0, 65535], "in good time sir what's that s": [0, 65535], "good time sir what's that s dro": [0, 65535], "time sir what's that s dro basting": [0, 65535], "sir what's that s dro basting ant": [0, 65535], "what's that s dro basting ant well": [0, 65535], "that s dro basting ant well sir": [0, 65535], "s dro basting ant well sir then": [0, 65535], "dro basting ant well sir then 'twill": [0, 65535], "basting ant well sir then 'twill be": [0, 65535], "ant well sir then 'twill be drie": [0, 65535], "well sir then 'twill be drie s": [0, 65535], "sir then 'twill be drie s dro": [0, 65535], "then 'twill be drie s dro if": [0, 65535], "'twill be drie s dro if it": [0, 65535], "be drie s dro if it be": [0, 65535], "drie s dro if it be sir": [0, 65535], "s dro if it be sir i": [0, 65535], "dro if it be sir i pray": [0, 65535], "if it be sir i pray you": [0, 65535], "it be sir i pray you eat": [0, 65535], "be sir i pray you eat none": [0, 65535], "sir i pray you eat none of": [0, 65535], "i pray you eat none of it": [0, 65535], "pray you eat none of it ant": [0, 65535], "you eat none of it ant your": [0, 65535], "eat none of it ant your reason": [0, 65535], "none of it ant your reason s": [0, 65535], "of it ant your reason s dro": [0, 65535], "it ant your reason s dro lest": [0, 65535], "ant your reason s dro lest it": [0, 65535], "your reason s dro lest it make": [0, 65535], "reason s dro lest it make you": [0, 65535], "s dro lest it make you chollericke": [0, 65535], "dro lest it make you chollericke and": [0, 65535], "lest it make you chollericke and purchase": [0, 65535], "it make you chollericke and purchase me": [0, 65535], "make you chollericke and purchase me another": [0, 65535], "you chollericke and purchase me another drie": [0, 65535], "chollericke and purchase me another drie basting": [0, 65535], "and purchase me another drie basting ant": [0, 65535], "purchase me another drie basting ant well": [0, 65535], "me another drie basting ant well sir": [0, 65535], "another drie basting ant well sir learne": [0, 65535], "drie basting ant well sir learne to": [0, 65535], "basting ant well sir learne to iest": [0, 65535], "ant well sir learne to iest in": [0, 65535], "well sir learne to iest in good": [0, 65535], "sir learne to iest in good time": [0, 65535], "learne to iest in good time there's": [0, 65535], "to iest in good time there's a": [0, 65535], "iest in good time there's a time": [0, 65535], "in good time there's a time for": [0, 65535], "good time there's a time for all": [0, 65535], "time there's a time for all things": [0, 65535], "there's a time for all things s": [0, 65535], "a time for all things s dro": [0, 65535], "time for all things s dro i": [0, 65535], "for all things s dro i durst": [0, 65535], "all things s dro i durst haue": [0, 65535], "things s dro i durst haue denied": [0, 65535], "s dro i durst haue denied that": [0, 65535], "dro i durst haue denied that before": [0, 65535], "i durst haue denied that before you": [0, 65535], "durst haue denied that before you were": [0, 65535], "haue denied that before you were so": [0, 65535], "denied that before you were so chollericke": [0, 65535], "that before you were so chollericke anti": [0, 65535], "before you were so chollericke anti by": [0, 65535], "you were so chollericke anti by what": [0, 65535], "were so chollericke anti by what rule": [0, 65535], "so chollericke anti by what rule sir": [0, 65535], "chollericke anti by what rule sir s": [0, 65535], "anti by what rule sir s dro": [0, 65535], "by what rule sir s dro marry": [0, 65535], "what rule sir s dro marry sir": [0, 65535], "rule sir s dro marry sir by": [0, 65535], "sir s dro marry sir by a": [0, 65535], "s dro marry sir by a rule": [0, 65535], "dro marry sir by a rule as": [0, 65535], "marry sir by a rule as plaine": [0, 65535], "sir by a rule as plaine as": [0, 65535], "by a rule as plaine as the": [0, 65535], "a rule as plaine as the plaine": [0, 65535], "rule as plaine as the plaine bald": [0, 65535], "as plaine as the plaine bald pate": [0, 65535], "plaine as the plaine bald pate of": [0, 65535], "as the plaine bald pate of father": [0, 65535], "the plaine bald pate of father time": [0, 65535], "plaine bald pate of father time himselfe": [0, 65535], "bald pate of father time himselfe ant": [0, 65535], "pate of father time himselfe ant let's": [0, 65535], "of father time himselfe ant let's heare": [0, 65535], "father time himselfe ant let's heare it": [0, 65535], "time himselfe ant let's heare it s": [0, 65535], "himselfe ant let's heare it s dro": [0, 65535], "ant let's heare it s dro there's": [0, 65535], "let's heare it s dro there's no": [0, 65535], "heare it s dro there's no time": [0, 65535], "it s dro there's no time for": [0, 65535], "s dro there's no time for a": [0, 65535], "dro there's no time for a man": [0, 65535], "there's no time for a man to": [0, 65535], "no time for a man to recouer": [0, 65535], "time for a man to recouer his": [0, 65535], "for a man to recouer his haire": [0, 65535], "a man to recouer his haire that": [0, 65535], "man to recouer his haire that growes": [0, 65535], "to recouer his haire that growes bald": [0, 65535], "recouer his haire that growes bald by": [0, 65535], "his haire that growes bald by nature": [0, 65535], "haire that growes bald by nature ant": [0, 65535], "that growes bald by nature ant may": [0, 65535], "growes bald by nature ant may he": [0, 65535], "bald by nature ant may he not": [0, 65535], "by nature ant may he not doe": [0, 65535], "nature ant may he not doe it": [0, 65535], "ant may he not doe it by": [0, 65535], "may he not doe it by fine": [0, 65535], "he not doe it by fine and": [0, 65535], "not doe it by fine and recouerie": [0, 65535], "doe it by fine and recouerie s": [0, 65535], "it by fine and recouerie s dro": [0, 65535], "by fine and recouerie s dro yes": [0, 65535], "fine and recouerie s dro yes to": [0, 65535], "and recouerie s dro yes to pay": [0, 65535], "recouerie s dro yes to pay a": [0, 65535], "s dro yes to pay a fine": [0, 65535], "dro yes to pay a fine for": [0, 65535], "yes to pay a fine for a": [0, 65535], "to pay a fine for a perewig": [0, 65535], "pay a fine for a perewig and": [0, 65535], "a fine for a perewig and recouer": [0, 65535], "fine for a perewig and recouer the": [0, 65535], "for a perewig and recouer the lost": [0, 65535], "a perewig and recouer the lost haire": [0, 65535], "perewig and recouer the lost haire of": [0, 65535], "and recouer the lost haire of another": [0, 65535], "recouer the lost haire of another man": [0, 65535], "the lost haire of another man ant": [0, 65535], "lost haire of another man ant why": [0, 65535], "haire of another man ant why is": [0, 65535], "of another man ant why is time": [0, 65535], "another man ant why is time such": [0, 65535], "man ant why is time such a": [0, 65535], "ant why is time such a niggard": [0, 65535], "why is time such a niggard of": [0, 65535], "is time such a niggard of haire": [0, 65535], "time such a niggard of haire being": [0, 65535], "such a niggard of haire being as": [0, 65535], "a niggard of haire being as it": [0, 65535], "niggard of haire being as it is": [0, 65535], "of haire being as it is so": [0, 65535], "haire being as it is so plentifull": [0, 65535], "being as it is so plentifull an": [0, 65535], "as it is so plentifull an excrement": [0, 65535], "it is so plentifull an excrement s": [0, 65535], "is so plentifull an excrement s dro": [0, 65535], "so plentifull an excrement s dro because": [0, 65535], "plentifull an excrement s dro because it": [0, 65535], "an excrement s dro because it is": [0, 65535], "excrement s dro because it is a": [0, 65535], "s dro because it is a blessing": [0, 65535], "dro because it is a blessing that": [0, 65535], "because it is a blessing that hee": [0, 65535], "it is a blessing that hee bestowes": [0, 65535], "is a blessing that hee bestowes on": [0, 65535], "a blessing that hee bestowes on beasts": [0, 65535], "blessing that hee bestowes on beasts and": [0, 65535], "that hee bestowes on beasts and what": [0, 65535], "hee bestowes on beasts and what he": [0, 65535], "bestowes on beasts and what he hath": [0, 65535], "on beasts and what he hath scanted": [0, 65535], "beasts and what he hath scanted them": [0, 65535], "and what he hath scanted them in": [0, 65535], "what he hath scanted them in haire": [0, 65535], "he hath scanted them in haire hee": [0, 65535], "hath scanted them in haire hee hath": [0, 65535], "scanted them in haire hee hath giuen": [0, 65535], "them in haire hee hath giuen them": [0, 65535], "in haire hee hath giuen them in": [0, 65535], "haire hee hath giuen them in wit": [0, 65535], "hee hath giuen them in wit ant": [0, 65535], "hath giuen them in wit ant why": [0, 65535], "giuen them in wit ant why but": [0, 65535], "them in wit ant why but theres": [0, 65535], "in wit ant why but theres manie": [0, 65535], "wit ant why but theres manie a": [0, 65535], "ant why but theres manie a man": [0, 65535], "why but theres manie a man hath": [0, 65535], "but theres manie a man hath more": [0, 65535], "theres manie a man hath more haire": [0, 65535], "manie a man hath more haire then": [0, 65535], "a man hath more haire then wit": [0, 65535], "man hath more haire then wit s": [0, 65535], "hath more haire then wit s dro": [0, 65535], "more haire then wit s dro not": [0, 65535], "haire then wit s dro not a": [0, 65535], "then wit s dro not a man": [0, 65535], "wit s dro not a man of": [0, 65535], "s dro not a man of those": [0, 65535], "dro not a man of those but": [0, 65535], "not a man of those but he": [0, 65535], "a man of those but he hath": [0, 65535], "man of those but he hath the": [0, 65535], "of those but he hath the wit": [0, 65535], "those but he hath the wit to": [0, 65535], "but he hath the wit to lose": [0, 65535], "he hath the wit to lose his": [0, 65535], "hath the wit to lose his haire": [0, 65535], "the wit to lose his haire ant": [0, 65535], "wit to lose his haire ant why": [0, 65535], "to lose his haire ant why thou": [0, 65535], "lose his haire ant why thou didst": [0, 65535], "his haire ant why thou didst conclude": [0, 65535], "haire ant why thou didst conclude hairy": [0, 65535], "ant why thou didst conclude hairy men": [0, 65535], "why thou didst conclude hairy men plain": [0, 65535], "thou didst conclude hairy men plain dealers": [0, 65535], "didst conclude hairy men plain dealers without": [0, 65535], "conclude hairy men plain dealers without wit": [0, 65535], "hairy men plain dealers without wit s": [0, 65535], "men plain dealers without wit s dro": [0, 65535], "plain dealers without wit s dro the": [0, 65535], "dealers without wit s dro the plainer": [0, 65535], "without wit s dro the plainer dealer": [0, 65535], "wit s dro the plainer dealer the": [0, 65535], "s dro the plainer dealer the sooner": [0, 65535], "dro the plainer dealer the sooner lost": [0, 65535], "the plainer dealer the sooner lost yet": [0, 65535], "plainer dealer the sooner lost yet he": [0, 65535], "dealer the sooner lost yet he looseth": [0, 65535], "the sooner lost yet he looseth it": [0, 65535], "sooner lost yet he looseth it in": [0, 65535], "lost yet he looseth it in a": [0, 65535], "yet he looseth it in a kinde": [0, 65535], "he looseth it in a kinde of": [0, 65535], "looseth it in a kinde of iollitie": [0, 65535], "it in a kinde of iollitie an": [0, 65535], "in a kinde of iollitie an for": [0, 65535], "a kinde of iollitie an for what": [0, 65535], "kinde of iollitie an for what reason": [0, 65535], "of iollitie an for what reason s": [0, 65535], "iollitie an for what reason s dro": [0, 65535], "an for what reason s dro for": [0, 65535], "for what reason s dro for two": [0, 65535], "what reason s dro for two and": [0, 65535], "reason s dro for two and sound": [0, 65535], "s dro for two and sound ones": [0, 65535], "dro for two and sound ones to": [0, 65535], "for two and sound ones to an": [0, 65535], "two and sound ones to an nay": [0, 65535], "and sound ones to an nay not": [0, 65535], "sound ones to an nay not sound": [0, 65535], "ones to an nay not sound i": [0, 65535], "to an nay not sound i pray": [0, 65535], "an nay not sound i pray you": [0, 65535], "nay not sound i pray you s": [0, 65535], "not sound i pray you s dro": [0, 65535], "sound i pray you s dro sure": [0, 65535], "i pray you s dro sure ones": [0, 65535], "pray you s dro sure ones then": [0, 65535], "you s dro sure ones then an": [0, 65535], "s dro sure ones then an nay": [0, 65535], "dro sure ones then an nay not": [0, 65535], "sure ones then an nay not sure": [0, 65535], "ones then an nay not sure in": [0, 65535], "then an nay not sure in a": [0, 65535], "an nay not sure in a thing": [0, 65535], "nay not sure in a thing falsing": [0, 65535], "not sure in a thing falsing s": [0, 65535], "sure in a thing falsing s dro": [0, 65535], "in a thing falsing s dro certaine": [0, 65535], "a thing falsing s dro certaine ones": [0, 65535], "thing falsing s dro certaine ones then": [0, 65535], "falsing s dro certaine ones then an": [0, 65535], "s dro certaine ones then an name": [0, 65535], "dro certaine ones then an name them": [0, 65535], "certaine ones then an name them s": [0, 65535], "ones then an name them s dro": [0, 65535], "then an name them s dro the": [0, 65535], "an name them s dro the one": [0, 65535], "name them s dro the one to": [0, 65535], "them s dro the one to saue": [0, 65535], "s dro the one to saue the": [0, 65535], "dro the one to saue the money": [0, 65535], "the one to saue the money that": [0, 65535], "one to saue the money that he": [0, 65535], "to saue the money that he spends": [0, 65535], "saue the money that he spends in": [0, 65535], "the money that he spends in trying": [0, 65535], "money that he spends in trying the": [0, 65535], "that he spends in trying the other": [0, 65535], "he spends in trying the other that": [0, 65535], "spends in trying the other that at": [0, 65535], "in trying the other that at dinner": [0, 65535], "trying the other that at dinner they": [0, 65535], "the other that at dinner they should": [0, 65535], "other that at dinner they should not": [0, 65535], "that at dinner they should not drop": [0, 65535], "at dinner they should not drop in": [0, 65535], "dinner they should not drop in his": [0, 65535], "they should not drop in his porrage": [0, 65535], "should not drop in his porrage an": [0, 65535], "not drop in his porrage an you": [0, 65535], "drop in his porrage an you would": [0, 65535], "in his porrage an you would all": [0, 65535], "his porrage an you would all this": [0, 65535], "porrage an you would all this time": [0, 65535], "an you would all this time haue": [0, 65535], "you would all this time haue prou'd": [0, 65535], "would all this time haue prou'd there": [0, 65535], "all this time haue prou'd there is": [0, 65535], "this time haue prou'd there is no": [0, 65535], "time haue prou'd there is no time": [0, 65535], "haue prou'd there is no time for": [0, 65535], "prou'd there is no time for all": [0, 65535], "there is no time for all things": [0, 65535], "is no time for all things s": [0, 65535], "no time for all things s dro": [0, 65535], "time for all things s dro marry": [0, 65535], "for all things s dro marry and": [0, 65535], "all things s dro marry and did": [0, 65535], "things s dro marry and did sir": [0, 65535], "s dro marry and did sir namely": [0, 65535], "dro marry and did sir namely in": [0, 65535], "marry and did sir namely in no": [0, 65535], "and did sir namely in no time": [0, 65535], "did sir namely in no time to": [0, 65535], "sir namely in no time to recouer": [0, 65535], "namely in no time to recouer haire": [0, 65535], "in no time to recouer haire lost": [0, 65535], "no time to recouer haire lost by": [0, 65535], "time to recouer haire lost by nature": [0, 65535], "to recouer haire lost by nature an": [0, 65535], "recouer haire lost by nature an but": [0, 65535], "haire lost by nature an but your": [0, 65535], "lost by nature an but your reason": [0, 65535], "by nature an but your reason was": [0, 65535], "nature an but your reason was not": [0, 65535], "an but your reason was not substantiall": [0, 65535], "but your reason was not substantiall why": [0, 65535], "your reason was not substantiall why there": [0, 65535], "reason was not substantiall why there is": [0, 65535], "was not substantiall why there is no": [0, 65535], "not substantiall why there is no time": [0, 65535], "substantiall why there is no time to": [0, 65535], "why there is no time to recouer": [0, 65535], "there is no time to recouer s": [0, 65535], "is no time to recouer s dro": [0, 65535], "no time to recouer s dro thus": [0, 65535], "time to recouer s dro thus i": [0, 65535], "to recouer s dro thus i mend": [0, 65535], "recouer s dro thus i mend it": [0, 65535], "s dro thus i mend it time": [0, 65535], "dro thus i mend it time himselfe": [0, 65535], "thus i mend it time himselfe is": [0, 65535], "i mend it time himselfe is bald": [0, 65535], "mend it time himselfe is bald and": [0, 65535], "it time himselfe is bald and therefore": [0, 65535], "time himselfe is bald and therefore to": [0, 65535], "himselfe is bald and therefore to the": [0, 65535], "is bald and therefore to the worlds": [0, 65535], "bald and therefore to the worlds end": [0, 65535], "and therefore to the worlds end will": [0, 65535], "therefore to the worlds end will haue": [0, 65535], "to the worlds end will haue bald": [0, 65535], "the worlds end will haue bald followers": [0, 65535], "worlds end will haue bald followers an": [0, 65535], "end will haue bald followers an i": [0, 65535], "will haue bald followers an i knew": [0, 65535], "haue bald followers an i knew 'twould": [0, 65535], "bald followers an i knew 'twould be": [0, 65535], "followers an i knew 'twould be a": [0, 65535], "an i knew 'twould be a bald": [0, 65535], "i knew 'twould be a bald conclusion": [0, 65535], "knew 'twould be a bald conclusion but": [0, 65535], "'twould be a bald conclusion but soft": [0, 65535], "be a bald conclusion but soft who": [0, 65535], "a bald conclusion but soft who wafts": [0, 65535], "bald conclusion but soft who wafts vs": [0, 65535], "conclusion but soft who wafts vs yonder": [0, 65535], "but soft who wafts vs yonder enter": [0, 65535], "soft who wafts vs yonder enter adriana": [0, 65535], "who wafts vs yonder enter adriana and": [0, 65535], "wafts vs yonder enter adriana and luciana": [0, 65535], "vs yonder enter adriana and luciana adri": [0, 65535], "yonder enter adriana and luciana adri i": [0, 65535], "enter adriana and luciana adri i i": [0, 65535], "adriana and luciana adri i i antipholus": [0, 65535], "and luciana adri i i antipholus looke": [0, 65535], "luciana adri i i antipholus looke strange": [0, 65535], "adri i i antipholus looke strange and": [0, 65535], "i i antipholus looke strange and frowne": [0, 65535], "i antipholus looke strange and frowne some": [0, 65535], "antipholus looke strange and frowne some other": [0, 65535], "looke strange and frowne some other mistresse": [0, 65535], "strange and frowne some other mistresse hath": [0, 65535], "and frowne some other mistresse hath thy": [0, 65535], "frowne some other mistresse hath thy sweet": [0, 65535], "some other mistresse hath thy sweet aspects": [0, 65535], "other mistresse hath thy sweet aspects i": [0, 65535], "mistresse hath thy sweet aspects i am": [0, 65535], "hath thy sweet aspects i am not": [0, 65535], "thy sweet aspects i am not adriana": [0, 65535], "sweet aspects i am not adriana nor": [0, 65535], "aspects i am not adriana nor thy": [0, 65535], "i am not adriana nor thy wife": [0, 65535], "am not adriana nor thy wife the": [0, 65535], "not adriana nor thy wife the time": [0, 65535], "adriana nor thy wife the time was": [0, 65535], "nor thy wife the time was once": [0, 65535], "thy wife the time was once when": [0, 65535], "wife the time was once when thou": [0, 65535], "the time was once when thou vn": [0, 65535], "time was once when thou vn vrg'd": [0, 65535], "was once when thou vn vrg'd wouldst": [0, 65535], "once when thou vn vrg'd wouldst vow": [0, 65535], "when thou vn vrg'd wouldst vow that": [0, 65535], "thou vn vrg'd wouldst vow that neuer": [0, 65535], "vn vrg'd wouldst vow that neuer words": [0, 65535], "vrg'd wouldst vow that neuer words were": [0, 65535], "wouldst vow that neuer words were musicke": [0, 65535], "vow that neuer words were musicke to": [0, 65535], "that neuer words were musicke to thine": [0, 65535], "neuer words were musicke to thine eare": [0, 65535], "words were musicke to thine eare that": [0, 65535], "were musicke to thine eare that neuer": [0, 65535], "musicke to thine eare that neuer obiect": [0, 65535], "to thine eare that neuer obiect pleasing": [0, 65535], "thine eare that neuer obiect pleasing in": [0, 65535], "eare that neuer obiect pleasing in thine": [0, 65535], "that neuer obiect pleasing in thine eye": [0, 65535], "neuer obiect pleasing in thine eye that": [0, 65535], "obiect pleasing in thine eye that neuer": [0, 65535], "pleasing in thine eye that neuer touch": [0, 65535], "in thine eye that neuer touch well": [0, 65535], "thine eye that neuer touch well welcome": [0, 65535], "eye that neuer touch well welcome to": [0, 65535], "that neuer touch well welcome to thy": [0, 65535], "neuer touch well welcome to thy hand": [0, 65535], "touch well welcome to thy hand that": [0, 65535], "well welcome to thy hand that neuer": [0, 65535], "welcome to thy hand that neuer meat": [0, 65535], "to thy hand that neuer meat sweet": [0, 65535], "thy hand that neuer meat sweet sauour'd": [0, 65535], "hand that neuer meat sweet sauour'd in": [0, 65535], "that neuer meat sweet sauour'd in thy": [0, 65535], "neuer meat sweet sauour'd in thy taste": [0, 65535], "meat sweet sauour'd in thy taste vnlesse": [0, 65535], "sweet sauour'd in thy taste vnlesse i": [0, 65535], "sauour'd in thy taste vnlesse i spake": [0, 65535], "in thy taste vnlesse i spake or": [0, 65535], "thy taste vnlesse i spake or look'd": [0, 65535], "taste vnlesse i spake or look'd or": [0, 65535], "vnlesse i spake or look'd or touch'd": [0, 65535], "i spake or look'd or touch'd or": [0, 65535], "spake or look'd or touch'd or caru'd": [0, 65535], "or look'd or touch'd or caru'd to": [0, 65535], "look'd or touch'd or caru'd to thee": [0, 65535], "or touch'd or caru'd to thee how": [0, 65535], "touch'd or caru'd to thee how comes": [0, 65535], "or caru'd to thee how comes it": [0, 65535], "caru'd to thee how comes it now": [0, 65535], "to thee how comes it now my": [0, 65535], "thee how comes it now my husband": [0, 65535], "how comes it now my husband oh": [0, 65535], "comes it now my husband oh how": [0, 65535], "it now my husband oh how comes": [0, 65535], "now my husband oh how comes it": [0, 65535], "my husband oh how comes it that": [0, 65535], "husband oh how comes it that thou": [0, 65535], "oh how comes it that thou art": [0, 65535], "how comes it that thou art then": [0, 65535], "comes it that thou art then estranged": [0, 65535], "it that thou art then estranged from": [0, 65535], "that thou art then estranged from thy": [0, 65535], "thou art then estranged from thy selfe": [0, 65535], "art then estranged from thy selfe thy": [0, 65535], "then estranged from thy selfe thy selfe": [0, 65535], "estranged from thy selfe thy selfe i": [0, 65535], "from thy selfe thy selfe i call": [0, 65535], "thy selfe thy selfe i call it": [0, 65535], "selfe thy selfe i call it being": [0, 65535], "thy selfe i call it being strange": [0, 65535], "selfe i call it being strange to": [0, 65535], "i call it being strange to me": [0, 65535], "call it being strange to me that": [0, 65535], "it being strange to me that vndiuidable": [0, 65535], "being strange to me that vndiuidable incorporate": [0, 65535], "strange to me that vndiuidable incorporate am": [0, 65535], "to me that vndiuidable incorporate am better": [0, 65535], "me that vndiuidable incorporate am better then": [0, 65535], "that vndiuidable incorporate am better then thy": [0, 65535], "vndiuidable incorporate am better then thy deere": [0, 65535], "incorporate am better then thy deere selfes": [0, 65535], "am better then thy deere selfes better": [0, 65535], "better then thy deere selfes better part": [0, 65535], "then thy deere selfes better part ah": [0, 65535], "thy deere selfes better part ah doe": [0, 65535], "deere selfes better part ah doe not": [0, 65535], "selfes better part ah doe not teare": [0, 65535], "better part ah doe not teare away": [0, 65535], "part ah doe not teare away thy": [0, 65535], "ah doe not teare away thy selfe": [0, 65535], "doe not teare away thy selfe from": [0, 65535], "not teare away thy selfe from me": [0, 65535], "teare away thy selfe from me for": [0, 65535], "away thy selfe from me for know": [0, 65535], "thy selfe from me for know my": [0, 65535], "selfe from me for know my loue": [0, 65535], "from me for know my loue as": [0, 65535], "me for know my loue as easie": [0, 65535], "for know my loue as easie maist": [0, 65535], "know my loue as easie maist thou": [0, 65535], "my loue as easie maist thou fall": [0, 65535], "loue as easie maist thou fall a": [0, 65535], "as easie maist thou fall a drop": [0, 65535], "easie maist thou fall a drop of": [0, 65535], "maist thou fall a drop of water": [0, 65535], "thou fall a drop of water in": [0, 65535], "fall a drop of water in the": [0, 65535], "a drop of water in the breaking": [0, 65535], "drop of water in the breaking gulfe": [0, 65535], "of water in the breaking gulfe and": [0, 65535], "water in the breaking gulfe and take": [0, 65535], "in the breaking gulfe and take vnmingled": [0, 65535], "the breaking gulfe and take vnmingled thence": [0, 65535], "breaking gulfe and take vnmingled thence that": [0, 65535], "gulfe and take vnmingled thence that drop": [0, 65535], "and take vnmingled thence that drop againe": [0, 65535], "take vnmingled thence that drop againe without": [0, 65535], "vnmingled thence that drop againe without addition": [0, 65535], "thence that drop againe without addition or": [0, 65535], "that drop againe without addition or diminishing": [0, 65535], "drop againe without addition or diminishing as": [0, 65535], "againe without addition or diminishing as take": [0, 65535], "without addition or diminishing as take from": [0, 65535], "addition or diminishing as take from me": [0, 65535], "or diminishing as take from me thy": [0, 65535], "diminishing as take from me thy selfe": [0, 65535], "as take from me thy selfe and": [0, 65535], "take from me thy selfe and not": [0, 65535], "from me thy selfe and not me": [0, 65535], "me thy selfe and not me too": [0, 65535], "thy selfe and not me too how": [0, 65535], "selfe and not me too how deerely": [0, 65535], "and not me too how deerely would": [0, 65535], "not me too how deerely would it": [0, 65535], "me too how deerely would it touch": [0, 65535], "too how deerely would it touch thee": [0, 65535], "how deerely would it touch thee to": [0, 65535], "deerely would it touch thee to the": [0, 65535], "would it touch thee to the quicke": [0, 65535], "it touch thee to the quicke shouldst": [0, 65535], "touch thee to the quicke shouldst thou": [0, 65535], "thee to the quicke shouldst thou but": [0, 65535], "to the quicke shouldst thou but heare": [0, 65535], "the quicke shouldst thou but heare i": [0, 65535], "quicke shouldst thou but heare i were": [0, 65535], "shouldst thou but heare i were licencious": [0, 65535], "thou but heare i were licencious and": [0, 65535], "but heare i were licencious and that": [0, 65535], "heare i were licencious and that this": [0, 65535], "i were licencious and that this body": [0, 65535], "were licencious and that this body consecrate": [0, 65535], "licencious and that this body consecrate to": [0, 65535], "and that this body consecrate to thee": [0, 65535], "that this body consecrate to thee by": [0, 65535], "this body consecrate to thee by ruffian": [0, 65535], "body consecrate to thee by ruffian lust": [0, 65535], "consecrate to thee by ruffian lust should": [0, 65535], "to thee by ruffian lust should be": [0, 65535], "thee by ruffian lust should be contaminate": [0, 65535], "by ruffian lust should be contaminate wouldst": [0, 65535], "ruffian lust should be contaminate wouldst thou": [0, 65535], "lust should be contaminate wouldst thou not": [0, 65535], "should be contaminate wouldst thou not spit": [0, 65535], "be contaminate wouldst thou not spit at": [0, 65535], "contaminate wouldst thou not spit at me": [0, 65535], "wouldst thou not spit at me and": [0, 65535], "thou not spit at me and spurne": [0, 65535], "not spit at me and spurne at": [0, 65535], "spit at me and spurne at me": [0, 65535], "at me and spurne at me and": [0, 65535], "me and spurne at me and hurle": [0, 65535], "and spurne at me and hurle the": [0, 65535], "spurne at me and hurle the name": [0, 65535], "at me and hurle the name of": [0, 65535], "me and hurle the name of husband": [0, 65535], "and hurle the name of husband in": [0, 65535], "hurle the name of husband in my": [0, 65535], "the name of husband in my face": [0, 65535], "name of husband in my face and": [0, 65535], "of husband in my face and teare": [0, 65535], "husband in my face and teare the": [0, 65535], "in my face and teare the stain'd": [0, 65535], "my face and teare the stain'd skin": [0, 65535], "face and teare the stain'd skin of": [0, 65535], "and teare the stain'd skin of my": [0, 65535], "teare the stain'd skin of my harlot": [0, 65535], "the stain'd skin of my harlot brow": [0, 65535], "stain'd skin of my harlot brow and": [0, 65535], "skin of my harlot brow and from": [0, 65535], "of my harlot brow and from my": [0, 65535], "my harlot brow and from my false": [0, 65535], "harlot brow and from my false hand": [0, 65535], "brow and from my false hand cut": [0, 65535], "and from my false hand cut the": [0, 65535], "from my false hand cut the wedding": [0, 65535], "my false hand cut the wedding ring": [0, 65535], "false hand cut the wedding ring and": [0, 65535], "hand cut the wedding ring and breake": [0, 65535], "cut the wedding ring and breake it": [0, 65535], "the wedding ring and breake it with": [0, 65535], "wedding ring and breake it with a": [0, 65535], "ring and breake it with a deepe": [0, 65535], "and breake it with a deepe diuorcing": [0, 65535], "breake it with a deepe diuorcing vow": [0, 65535], "it with a deepe diuorcing vow i": [0, 65535], "with a deepe diuorcing vow i know": [0, 65535], "a deepe diuorcing vow i know thou": [0, 65535], "deepe diuorcing vow i know thou canst": [0, 65535], "diuorcing vow i know thou canst and": [0, 65535], "vow i know thou canst and therefore": [0, 65535], "i know thou canst and therefore see": [0, 65535], "know thou canst and therefore see thou": [0, 65535], "thou canst and therefore see thou doe": [0, 65535], "canst and therefore see thou doe it": [0, 65535], "and therefore see thou doe it i": [0, 65535], "therefore see thou doe it i am": [0, 65535], "see thou doe it i am possest": [0, 65535], "thou doe it i am possest with": [0, 65535], "doe it i am possest with an": [0, 65535], "it i am possest with an adulterate": [0, 65535], "i am possest with an adulterate blot": [0, 65535], "am possest with an adulterate blot my": [0, 65535], "possest with an adulterate blot my bloud": [0, 65535], "with an adulterate blot my bloud is": [0, 65535], "an adulterate blot my bloud is mingled": [0, 65535], "adulterate blot my bloud is mingled with": [0, 65535], "blot my bloud is mingled with the": [0, 65535], "my bloud is mingled with the crime": [0, 65535], "bloud is mingled with the crime of": [0, 65535], "is mingled with the crime of lust": [0, 65535], "mingled with the crime of lust for": [0, 65535], "with the crime of lust for if": [0, 65535], "the crime of lust for if we": [0, 65535], "crime of lust for if we two": [0, 65535], "of lust for if we two be": [0, 65535], "lust for if we two be one": [0, 65535], "for if we two be one and": [0, 65535], "if we two be one and thou": [0, 65535], "we two be one and thou play": [0, 65535], "two be one and thou play false": [0, 65535], "be one and thou play false i": [0, 65535], "one and thou play false i doe": [0, 65535], "and thou play false i doe digest": [0, 65535], "thou play false i doe digest the": [0, 65535], "play false i doe digest the poison": [0, 65535], "false i doe digest the poison of": [0, 65535], "i doe digest the poison of thy": [0, 65535], "doe digest the poison of thy flesh": [0, 65535], "digest the poison of thy flesh being": [0, 65535], "the poison of thy flesh being strumpeted": [0, 65535], "poison of thy flesh being strumpeted by": [0, 65535], "of thy flesh being strumpeted by thy": [0, 65535], "thy flesh being strumpeted by thy contagion": [0, 65535], "flesh being strumpeted by thy contagion keepe": [0, 65535], "being strumpeted by thy contagion keepe then": [0, 65535], "strumpeted by thy contagion keepe then faire": [0, 65535], "by thy contagion keepe then faire league": [0, 65535], "thy contagion keepe then faire league and": [0, 65535], "contagion keepe then faire league and truce": [0, 65535], "keepe then faire league and truce with": [0, 65535], "then faire league and truce with thy": [0, 65535], "faire league and truce with thy true": [0, 65535], "league and truce with thy true bed": [0, 65535], "and truce with thy true bed i": [0, 65535], "truce with thy true bed i liue": [0, 65535], "with thy true bed i liue distain'd": [0, 65535], "thy true bed i liue distain'd thou": [0, 65535], "true bed i liue distain'd thou vndishonoured": [0, 65535], "bed i liue distain'd thou vndishonoured antip": [0, 65535], "i liue distain'd thou vndishonoured antip plead": [0, 65535], "liue distain'd thou vndishonoured antip plead you": [0, 65535], "distain'd thou vndishonoured antip plead you to": [0, 65535], "thou vndishonoured antip plead you to me": [0, 65535], "vndishonoured antip plead you to me faire": [0, 65535], "antip plead you to me faire dame": [0, 65535], "plead you to me faire dame i": [0, 65535], "you to me faire dame i know": [0, 65535], "to me faire dame i know you": [0, 65535], "me faire dame i know you not": [0, 65535], "faire dame i know you not in": [0, 65535], "dame i know you not in ephesus": [0, 65535], "i know you not in ephesus i": [0, 65535], "know you not in ephesus i am": [0, 65535], "you not in ephesus i am but": [0, 65535], "not in ephesus i am but two": [0, 65535], "in ephesus i am but two houres": [0, 65535], "ephesus i am but two houres old": [0, 65535], "i am but two houres old as": [0, 65535], "am but two houres old as strange": [0, 65535], "but two houres old as strange vnto": [0, 65535], "two houres old as strange vnto your": [0, 65535], "houres old as strange vnto your towne": [0, 65535], "old as strange vnto your towne as": [0, 65535], "as strange vnto your towne as to": [0, 65535], "strange vnto your towne as to your": [0, 65535], "vnto your towne as to your talke": [0, 65535], "your towne as to your talke who": [0, 65535], "towne as to your talke who euery": [0, 65535], "as to your talke who euery word": [0, 65535], "to your talke who euery word by": [0, 65535], "your talke who euery word by all": [0, 65535], "talke who euery word by all my": [0, 65535], "who euery word by all my wit": [0, 65535], "euery word by all my wit being": [0, 65535], "word by all my wit being scan'd": [0, 65535], "by all my wit being scan'd wants": [0, 65535], "all my wit being scan'd wants wit": [0, 65535], "my wit being scan'd wants wit in": [0, 65535], "wit being scan'd wants wit in all": [0, 65535], "being scan'd wants wit in all one": [0, 65535], "scan'd wants wit in all one word": [0, 65535], "wants wit in all one word to": [0, 65535], "wit in all one word to vnderstand": [0, 65535], "in all one word to vnderstand luci": [0, 65535], "all one word to vnderstand luci fie": [0, 65535], "one word to vnderstand luci fie brother": [0, 65535], "word to vnderstand luci fie brother how": [0, 65535], "to vnderstand luci fie brother how the": [0, 65535], "vnderstand luci fie brother how the world": [0, 65535], "luci fie brother how the world is": [0, 65535], "fie brother how the world is chang'd": [0, 65535], "brother how the world is chang'd with": [0, 65535], "how the world is chang'd with you": [0, 65535], "the world is chang'd with you when": [0, 65535], "world is chang'd with you when were": [0, 65535], "is chang'd with you when were you": [0, 65535], "chang'd with you when were you wont": [0, 65535], "with you when were you wont to": [0, 65535], "you when were you wont to vse": [0, 65535], "when were you wont to vse my": [0, 65535], "were you wont to vse my sister": [0, 65535], "you wont to vse my sister thus": [0, 65535], "wont to vse my sister thus she": [0, 65535], "to vse my sister thus she sent": [0, 65535], "vse my sister thus she sent for": [0, 65535], "my sister thus she sent for you": [0, 65535], "sister thus she sent for you by": [0, 65535], "thus she sent for you by dromio": [0, 65535], "she sent for you by dromio home": [0, 65535], "sent for you by dromio home to": [0, 65535], "for you by dromio home to dinner": [0, 65535], "you by dromio home to dinner ant": [0, 65535], "by dromio home to dinner ant by": [0, 65535], "dromio home to dinner ant by dromio": [0, 65535], "home to dinner ant by dromio drom": [0, 65535], "to dinner ant by dromio drom by": [0, 65535], "dinner ant by dromio drom by me": [0, 65535], "ant by dromio drom by me adr": [0, 65535], "by dromio drom by me adr by": [0, 65535], "dromio drom by me adr by thee": [0, 65535], "drom by me adr by thee and": [0, 65535], "by me adr by thee and this": [0, 65535], "me adr by thee and this thou": [0, 65535], "adr by thee and this thou didst": [0, 65535], "by thee and this thou didst returne": [0, 65535], "thee and this thou didst returne from": [0, 65535], "and this thou didst returne from him": [0, 65535], "this thou didst returne from him that": [0, 65535], "thou didst returne from him that he": [0, 65535], "didst returne from him that he did": [0, 65535], "returne from him that he did buffet": [0, 65535], "from him that he did buffet thee": [0, 65535], "him that he did buffet thee and": [0, 65535], "that he did buffet thee and in": [0, 65535], "he did buffet thee and in his": [0, 65535], "did buffet thee and in his blowes": [0, 65535], "buffet thee and in his blowes denied": [0, 65535], "thee and in his blowes denied my": [0, 65535], "and in his blowes denied my house": [0, 65535], "in his blowes denied my house for": [0, 65535], "his blowes denied my house for his": [0, 65535], "blowes denied my house for his me": [0, 65535], "denied my house for his me for": [0, 65535], "my house for his me for his": [0, 65535], "house for his me for his wife": [0, 65535], "for his me for his wife ant": [0, 65535], "his me for his wife ant did": [0, 65535], "me for his wife ant did you": [0, 65535], "for his wife ant did you conuerse": [0, 65535], "his wife ant did you conuerse sir": [0, 65535], "wife ant did you conuerse sir with": [0, 65535], "ant did you conuerse sir with this": [0, 65535], "did you conuerse sir with this gentlewoman": [0, 65535], "you conuerse sir with this gentlewoman what": [0, 65535], "conuerse sir with this gentlewoman what is": [0, 65535], "sir with this gentlewoman what is the": [0, 65535], "with this gentlewoman what is the course": [0, 65535], "this gentlewoman what is the course and": [0, 65535], "gentlewoman what is the course and drift": [0, 65535], "what is the course and drift of": [0, 65535], "is the course and drift of your": [0, 65535], "the course and drift of your compact": [0, 65535], "course and drift of your compact s": [0, 65535], "and drift of your compact s dro": [0, 65535], "drift of your compact s dro i": [0, 65535], "of your compact s dro i sir": [0, 65535], "your compact s dro i sir i": [0, 65535], "compact s dro i sir i neuer": [0, 65535], "s dro i sir i neuer saw": [0, 65535], "dro i sir i neuer saw her": [0, 65535], "i sir i neuer saw her till": [0, 65535], "sir i neuer saw her till this": [0, 65535], "i neuer saw her till this time": [0, 65535], "neuer saw her till this time ant": [0, 65535], "saw her till this time ant villaine": [0, 65535], "her till this time ant villaine thou": [0, 65535], "till this time ant villaine thou liest": [0, 65535], "this time ant villaine thou liest for": [0, 65535], "time ant villaine thou liest for euen": [0, 65535], "ant villaine thou liest for euen her": [0, 65535], "villaine thou liest for euen her verie": [0, 65535], "thou liest for euen her verie words": [0, 65535], "liest for euen her verie words didst": [0, 65535], "for euen her verie words didst thou": [0, 65535], "euen her verie words didst thou deliuer": [0, 65535], "her verie words didst thou deliuer to": [0, 65535], "verie words didst thou deliuer to me": [0, 65535], "words didst thou deliuer to me on": [0, 65535], "didst thou deliuer to me on the": [0, 65535], "thou deliuer to me on the mart": [0, 65535], "deliuer to me on the mart s": [0, 65535], "to me on the mart s dro": [0, 65535], "me on the mart s dro i": [0, 65535], "on the mart s dro i neuer": [0, 65535], "the mart s dro i neuer spake": [0, 65535], "mart s dro i neuer spake with": [0, 65535], "s dro i neuer spake with her": [0, 65535], "dro i neuer spake with her in": [0, 65535], "i neuer spake with her in all": [0, 65535], "neuer spake with her in all my": [0, 65535], "spake with her in all my life": [0, 65535], "with her in all my life ant": [0, 65535], "her in all my life ant how": [0, 65535], "in all my life ant how can": [0, 65535], "all my life ant how can she": [0, 65535], "my life ant how can she thus": [0, 65535], "life ant how can she thus then": [0, 65535], "ant how can she thus then call": [0, 65535], "how can she thus then call vs": [0, 65535], "can she thus then call vs by": [0, 65535], "she thus then call vs by our": [0, 65535], "thus then call vs by our names": [0, 65535], "then call vs by our names vnlesse": [0, 65535], "call vs by our names vnlesse it": [0, 65535], "vs by our names vnlesse it be": [0, 65535], "by our names vnlesse it be by": [0, 65535], "our names vnlesse it be by inspiration": [0, 65535], "names vnlesse it be by inspiration adri": [0, 65535], "vnlesse it be by inspiration adri how": [0, 65535], "it be by inspiration adri how ill": [0, 65535], "be by inspiration adri how ill agrees": [0, 65535], "by inspiration adri how ill agrees it": [0, 65535], "inspiration adri how ill agrees it with": [0, 65535], "adri how ill agrees it with your": [0, 65535], "how ill agrees it with your grauitie": [0, 65535], "ill agrees it with your grauitie to": [0, 65535], "agrees it with your grauitie to counterfeit": [0, 65535], "it with your grauitie to counterfeit thus": [0, 65535], "with your grauitie to counterfeit thus grosely": [0, 65535], "your grauitie to counterfeit thus grosely with": [0, 65535], "grauitie to counterfeit thus grosely with your": [0, 65535], "to counterfeit thus grosely with your slaue": [0, 65535], "counterfeit thus grosely with your slaue abetting": [0, 65535], "thus grosely with your slaue abetting him": [0, 65535], "grosely with your slaue abetting him to": [0, 65535], "with your slaue abetting him to thwart": [0, 65535], "your slaue abetting him to thwart me": [0, 65535], "slaue abetting him to thwart me in": [0, 65535], "abetting him to thwart me in my": [0, 65535], "him to thwart me in my moode": [0, 65535], "to thwart me in my moode be": [0, 65535], "thwart me in my moode be it": [0, 65535], "me in my moode be it my": [0, 65535], "in my moode be it my wrong": [0, 65535], "my moode be it my wrong you": [0, 65535], "moode be it my wrong you are": [0, 65535], "be it my wrong you are from": [0, 65535], "it my wrong you are from me": [0, 65535], "my wrong you are from me exempt": [0, 65535], "wrong you are from me exempt but": [0, 65535], "you are from me exempt but wrong": [0, 65535], "are from me exempt but wrong not": [0, 65535], "from me exempt but wrong not that": [0, 65535], "me exempt but wrong not that wrong": [0, 65535], "exempt but wrong not that wrong with": [0, 65535], "but wrong not that wrong with a": [0, 65535], "wrong not that wrong with a more": [0, 65535], "not that wrong with a more contempt": [0, 65535], "that wrong with a more contempt come": [0, 65535], "wrong with a more contempt come i": [0, 65535], "with a more contempt come i will": [0, 65535], "a more contempt come i will fasten": [0, 65535], "more contempt come i will fasten on": [0, 65535], "contempt come i will fasten on this": [0, 65535], "come i will fasten on this sleeue": [0, 65535], "i will fasten on this sleeue of": [0, 65535], "will fasten on this sleeue of thine": [0, 65535], "fasten on this sleeue of thine thou": [0, 65535], "on this sleeue of thine thou art": [0, 65535], "this sleeue of thine thou art an": [0, 65535], "sleeue of thine thou art an elme": [0, 65535], "of thine thou art an elme my": [0, 65535], "thine thou art an elme my husband": [0, 65535], "thou art an elme my husband i": [0, 65535], "art an elme my husband i a": [0, 65535], "an elme my husband i a vine": [0, 65535], "elme my husband i a vine whose": [0, 65535], "my husband i a vine whose weaknesse": [0, 65535], "husband i a vine whose weaknesse married": [0, 65535], "i a vine whose weaknesse married to": [0, 65535], "a vine whose weaknesse married to thy": [0, 65535], "vine whose weaknesse married to thy stranger": [0, 65535], "whose weaknesse married to thy stranger state": [0, 65535], "weaknesse married to thy stranger state makes": [0, 65535], "married to thy stranger state makes me": [0, 65535], "to thy stranger state makes me with": [0, 65535], "thy stranger state makes me with thy": [0, 65535], "stranger state makes me with thy strength": [0, 65535], "state makes me with thy strength to": [0, 65535], "makes me with thy strength to communicate": [0, 65535], "me with thy strength to communicate if": [0, 65535], "with thy strength to communicate if ought": [0, 65535], "thy strength to communicate if ought possesse": [0, 65535], "strength to communicate if ought possesse thee": [0, 65535], "to communicate if ought possesse thee from": [0, 65535], "communicate if ought possesse thee from me": [0, 65535], "if ought possesse thee from me it": [0, 65535], "ought possesse thee from me it is": [0, 65535], "possesse thee from me it is drosse": [0, 65535], "thee from me it is drosse vsurping": [0, 65535], "from me it is drosse vsurping iuie": [0, 65535], "me it is drosse vsurping iuie brier": [0, 65535], "it is drosse vsurping iuie brier or": [0, 65535], "is drosse vsurping iuie brier or idle": [0, 65535], "drosse vsurping iuie brier or idle mosse": [0, 65535], "vsurping iuie brier or idle mosse who": [0, 65535], "iuie brier or idle mosse who all": [0, 65535], "brier or idle mosse who all for": [0, 65535], "or idle mosse who all for want": [0, 65535], "idle mosse who all for want of": [0, 65535], "mosse who all for want of pruning": [0, 65535], "who all for want of pruning with": [0, 65535], "all for want of pruning with intrusion": [0, 65535], "for want of pruning with intrusion infect": [0, 65535], "want of pruning with intrusion infect thy": [0, 65535], "of pruning with intrusion infect thy sap": [0, 65535], "pruning with intrusion infect thy sap and": [0, 65535], "with intrusion infect thy sap and liue": [0, 65535], "intrusion infect thy sap and liue on": [0, 65535], "infect thy sap and liue on thy": [0, 65535], "thy sap and liue on thy confusion": [0, 65535], "sap and liue on thy confusion ant": [0, 65535], "and liue on thy confusion ant to": [0, 65535], "liue on thy confusion ant to mee": [0, 65535], "on thy confusion ant to mee shee": [0, 65535], "thy confusion ant to mee shee speakes": [0, 65535], "confusion ant to mee shee speakes shee": [0, 65535], "ant to mee shee speakes shee moues": [0, 65535], "to mee shee speakes shee moues mee": [0, 65535], "mee shee speakes shee moues mee for": [0, 65535], "shee speakes shee moues mee for her": [0, 65535], "speakes shee moues mee for her theame": [0, 65535], "shee moues mee for her theame what": [0, 65535], "moues mee for her theame what was": [0, 65535], "mee for her theame what was i": [0, 65535], "for her theame what was i married": [0, 65535], "her theame what was i married to": [0, 65535], "theame what was i married to her": [0, 65535], "what was i married to her in": [0, 65535], "was i married to her in my": [0, 65535], "i married to her in my dreame": [0, 65535], "married to her in my dreame or": [0, 65535], "to her in my dreame or sleepe": [0, 65535], "her in my dreame or sleepe i": [0, 65535], "in my dreame or sleepe i now": [0, 65535], "my dreame or sleepe i now and": [0, 65535], "dreame or sleepe i now and thinke": [0, 65535], "or sleepe i now and thinke i": [0, 65535], "sleepe i now and thinke i heare": [0, 65535], "i now and thinke i heare all": [0, 65535], "now and thinke i heare all this": [0, 65535], "and thinke i heare all this what": [0, 65535], "thinke i heare all this what error": [0, 65535], "i heare all this what error driues": [0, 65535], "heare all this what error driues our": [0, 65535], "all this what error driues our eies": [0, 65535], "this what error driues our eies and": [0, 65535], "what error driues our eies and eares": [0, 65535], "error driues our eies and eares amisse": [0, 65535], "driues our eies and eares amisse vntill": [0, 65535], "our eies and eares amisse vntill i": [0, 65535], "eies and eares amisse vntill i know": [0, 65535], "and eares amisse vntill i know this": [0, 65535], "eares amisse vntill i know this sure": [0, 65535], "amisse vntill i know this sure vncertaintie": [0, 65535], "vntill i know this sure vncertaintie ile": [0, 65535], "i know this sure vncertaintie ile entertaine": [0, 65535], "know this sure vncertaintie ile entertaine the": [0, 65535], "this sure vncertaintie ile entertaine the free'd": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "ile entertaine the free'd fallacie luc dromio": [0, 65535], "entertaine the free'd fallacie luc dromio goe": [0, 65535], "the free'd fallacie luc dromio goe bid": [0, 65535], "free'd fallacie luc dromio goe bid the": [0, 65535], "fallacie luc dromio goe bid the seruants": [0, 65535], "luc dromio goe bid the seruants spred": [0, 65535], "dromio goe bid the seruants spred for": [0, 65535], "goe bid the seruants spred for dinner": [0, 65535], "bid the seruants spred for dinner s": [0, 65535], "the seruants spred for dinner s dro": [0, 65535], "seruants spred for dinner s dro oh": [0, 65535], "spred for dinner s dro oh for": [0, 65535], "for dinner s dro oh for my": [0, 65535], "dinner s dro oh for my beads": [0, 65535], "s dro oh for my beads i": [0, 65535], "dro oh for my beads i crosse": [0, 65535], "oh for my beads i crosse me": [0, 65535], "for my beads i crosse me for": [0, 65535], "my beads i crosse me for a": [0, 65535], "beads i crosse me for a sinner": [0, 65535], "i crosse me for a sinner this": [0, 65535], "crosse me for a sinner this is": [0, 65535], "me for a sinner this is the": [0, 65535], "for a sinner this is the fairie": [0, 65535], "a sinner this is the fairie land": [0, 65535], "sinner this is the fairie land oh": [0, 65535], "this is the fairie land oh spight": [0, 65535], "is the fairie land oh spight of": [0, 65535], "the fairie land oh spight of spights": [0, 65535], "fairie land oh spight of spights we": [0, 65535], "land oh spight of spights we talke": [0, 65535], "oh spight of spights we talke with": [0, 65535], "spight of spights we talke with goblins": [0, 65535], "of spights we talke with goblins owles": [0, 65535], "spights we talke with goblins owles and": [0, 65535], "we talke with goblins owles and sprights": [0, 65535], "talke with goblins owles and sprights if": [0, 65535], "with goblins owles and sprights if we": [0, 65535], "goblins owles and sprights if we obay": [0, 65535], "owles and sprights if we obay them": [0, 65535], "and sprights if we obay them not": [0, 65535], "sprights if we obay them not this": [0, 65535], "if we obay them not this will": [0, 65535], "we obay them not this will insue": [0, 65535], "obay them not this will insue they'll": [0, 65535], "them not this will insue they'll sucke": [0, 65535], "not this will insue they'll sucke our": [0, 65535], "this will insue they'll sucke our breath": [0, 65535], "will insue they'll sucke our breath or": [0, 65535], "insue they'll sucke our breath or pinch": [0, 65535], "they'll sucke our breath or pinch vs": [0, 65535], "sucke our breath or pinch vs blacke": [0, 65535], "our breath or pinch vs blacke and": [0, 65535], "breath or pinch vs blacke and blew": [0, 65535], "or pinch vs blacke and blew luc": [0, 65535], "pinch vs blacke and blew luc why": [0, 65535], "vs blacke and blew luc why prat'st": [0, 65535], "blacke and blew luc why prat'st thou": [0, 65535], "and blew luc why prat'st thou to": [0, 65535], "blew luc why prat'st thou to thy": [0, 65535], "luc why prat'st thou to thy selfe": [0, 65535], "why prat'st thou to thy selfe and": [0, 65535], "prat'st thou to thy selfe and answer'st": [0, 65535], "thou to thy selfe and answer'st not": [0, 65535], "to thy selfe and answer'st not dromio": [0, 65535], "thy selfe and answer'st not dromio thou": [0, 65535], "selfe and answer'st not dromio thou dromio": [0, 65535], "and answer'st not dromio thou dromio thou": [0, 65535], "answer'st not dromio thou dromio thou snaile": [0, 65535], "not dromio thou dromio thou snaile thou": [0, 65535], "dromio thou dromio thou snaile thou slug": [0, 65535], "thou dromio thou snaile thou slug thou": [0, 65535], "dromio thou snaile thou slug thou sot": [0, 65535], "thou snaile thou slug thou sot s": [0, 65535], "snaile thou slug thou sot s dro": [0, 65535], "thou slug thou sot s dro i": [0, 65535], "slug thou sot s dro i am": [0, 65535], "thou sot s dro i am transformed": [0, 65535], "sot s dro i am transformed master": [0, 65535], "s dro i am transformed master am": [0, 65535], "dro i am transformed master am i": [0, 65535], "i am transformed master am i not": [0, 65535], "am transformed master am i not ant": [0, 65535], "transformed master am i not ant i": [0, 65535], "master am i not ant i thinke": [0, 65535], "am i not ant i thinke thou": [0, 65535], "i not ant i thinke thou art": [0, 65535], "not ant i thinke thou art in": [0, 65535], "ant i thinke thou art in minde": [0, 65535], "i thinke thou art in minde and": [0, 65535], "thinke thou art in minde and so": [0, 65535], "thou art in minde and so am": [0, 65535], "art in minde and so am i": [0, 65535], "in minde and so am i s": [0, 65535], "minde and so am i s dro": [0, 65535], "and so am i s dro nay": [0, 65535], "so am i s dro nay master": [0, 65535], "am i s dro nay master both": [0, 65535], "i s dro nay master both in": [0, 65535], "s dro nay master both in minde": [0, 65535], "dro nay master both in minde and": [0, 65535], "nay master both in minde and in": [0, 65535], "master both in minde and in my": [0, 65535], "both in minde and in my shape": [0, 65535], "in minde and in my shape ant": [0, 65535], "minde and in my shape ant thou": [0, 65535], "and in my shape ant thou hast": [0, 65535], "in my shape ant thou hast thine": [0, 65535], "my shape ant thou hast thine owne": [0, 65535], "shape ant thou hast thine owne forme": [0, 65535], "ant thou hast thine owne forme s": [0, 65535], "thou hast thine owne forme s dro": [0, 65535], "hast thine owne forme s dro no": [0, 65535], "thine owne forme s dro no i": [0, 65535], "owne forme s dro no i am": [0, 65535], "forme s dro no i am an": [0, 65535], "s dro no i am an ape": [0, 65535], "dro no i am an ape luc": [0, 65535], "no i am an ape luc if": [0, 65535], "i am an ape luc if thou": [0, 65535], "am an ape luc if thou art": [0, 65535], "an ape luc if thou art chang'd": [0, 65535], "ape luc if thou art chang'd to": [0, 65535], "luc if thou art chang'd to ought": [0, 65535], "if thou art chang'd to ought 'tis": [0, 65535], "thou art chang'd to ought 'tis to": [0, 65535], "art chang'd to ought 'tis to an": [0, 65535], "chang'd to ought 'tis to an asse": [0, 65535], "to ought 'tis to an asse s": [0, 65535], "ought 'tis to an asse s dro": [0, 65535], "'tis to an asse s dro 'tis": [0, 65535], "to an asse s dro 'tis true": [0, 65535], "an asse s dro 'tis true she": [0, 65535], "asse s dro 'tis true she rides": [0, 65535], "s dro 'tis true she rides me": [0, 65535], "dro 'tis true she rides me and": [0, 65535], "'tis true she rides me and i": [0, 65535], "true she rides me and i long": [0, 65535], "she rides me and i long for": [0, 65535], "rides me and i long for grasse": [0, 65535], "me and i long for grasse 'tis": [0, 65535], "and i long for grasse 'tis so": [0, 65535], "i long for grasse 'tis so i": [0, 65535], "long for grasse 'tis so i am": [0, 65535], "for grasse 'tis so i am an": [0, 65535], "grasse 'tis so i am an asse": [0, 65535], "'tis so i am an asse else": [0, 65535], "so i am an asse else it": [0, 65535], "i am an asse else it could": [0, 65535], "am an asse else it could neuer": [0, 65535], "an asse else it could neuer be": [0, 65535], "asse else it could neuer be but": [0, 65535], "else it could neuer be but i": [0, 65535], "it could neuer be but i should": [0, 65535], "could neuer be but i should know": [0, 65535], "neuer be but i should know her": [0, 65535], "be but i should know her as": [0, 65535], "but i should know her as well": [0, 65535], "i should know her as well as": [0, 65535], "should know her as well as she": [0, 65535], "know her as well as she knowes": [0, 65535], "her as well as she knowes me": [0, 65535], "as well as she knowes me adr": [0, 65535], "well as she knowes me adr come": [0, 65535], "as she knowes me adr come come": [0, 65535], "she knowes me adr come come no": [0, 65535], "knowes me adr come come no longer": [0, 65535], "me adr come come no longer will": [0, 65535], "adr come come no longer will i": [0, 65535], "come come no longer will i be": [0, 65535], "come no longer will i be a": [0, 65535], "no longer will i be a foole": [0, 65535], "longer will i be a foole to": [0, 65535], "will i be a foole to put": [0, 65535], "i be a foole to put the": [0, 65535], "be a foole to put the finger": [0, 65535], "a foole to put the finger in": [0, 65535], "foole to put the finger in the": [0, 65535], "to put the finger in the eie": [0, 65535], "put the finger in the eie and": [0, 65535], "the finger in the eie and weepe": [0, 65535], "finger in the eie and weepe whil'st": [0, 65535], "in the eie and weepe whil'st man": [0, 65535], "the eie and weepe whil'st man and": [0, 65535], "eie and weepe whil'st man and master": [0, 65535], "and weepe whil'st man and master laughes": [0, 65535], "weepe whil'st man and master laughes my": [0, 65535], "whil'st man and master laughes my woes": [0, 65535], "man and master laughes my woes to": [0, 65535], "and master laughes my woes to scorne": [0, 65535], "master laughes my woes to scorne come": [0, 65535], "laughes my woes to scorne come sir": [0, 65535], "my woes to scorne come sir to": [0, 65535], "woes to scorne come sir to dinner": [0, 65535], "to scorne come sir to dinner dromio": [0, 65535], "scorne come sir to dinner dromio keepe": [0, 65535], "come sir to dinner dromio keepe the": [0, 65535], "sir to dinner dromio keepe the gate": [0, 65535], "to dinner dromio keepe the gate husband": [0, 65535], "dinner dromio keepe the gate husband ile": [0, 65535], "dromio keepe the gate husband ile dine": [0, 65535], "keepe the gate husband ile dine aboue": [0, 65535], "the gate husband ile dine aboue with": [0, 65535], "gate husband ile dine aboue with you": [0, 65535], "husband ile dine aboue with you to": [0, 65535], "ile dine aboue with you to day": [0, 65535], "dine aboue with you to day and": [0, 65535], "aboue with you to day and shriue": [0, 65535], "with you to day and shriue you": [0, 65535], "you to day and shriue you of": [0, 65535], "to day and shriue you of a": [0, 65535], "day and shriue you of a thousand": [0, 65535], "and shriue you of a thousand idle": [0, 65535], "shriue you of a thousand idle prankes": [0, 65535], "you of a thousand idle prankes sirra": [0, 65535], "of a thousand idle prankes sirra if": [0, 65535], "a thousand idle prankes sirra if any": [0, 65535], "thousand idle prankes sirra if any aske": [0, 65535], "idle prankes sirra if any aske you": [0, 65535], "prankes sirra if any aske you for": [0, 65535], "sirra if any aske you for your": [0, 65535], "if any aske you for your master": [0, 65535], "any aske you for your master say": [0, 65535], "aske you for your master say he": [0, 65535], "you for your master say he dines": [0, 65535], "for your master say he dines forth": [0, 65535], "your master say he dines forth and": [0, 65535], "master say he dines forth and let": [0, 65535], "say he dines forth and let no": [0, 65535], "he dines forth and let no creature": [0, 65535], "dines forth and let no creature enter": [0, 65535], "forth and let no creature enter come": [0, 65535], "and let no creature enter come sister": [0, 65535], "let no creature enter come sister dromio": [0, 65535], "no creature enter come sister dromio play": [0, 65535], "creature enter come sister dromio play the": [0, 65535], "enter come sister dromio play the porter": [0, 65535], "come sister dromio play the porter well": [0, 65535], "sister dromio play the porter well ant": [0, 65535], "dromio play the porter well ant am": [0, 65535], "play the porter well ant am i": [0, 65535], "the porter well ant am i in": [0, 65535], "porter well ant am i in earth": [0, 65535], "well ant am i in earth in": [0, 65535], "ant am i in earth in heauen": [0, 65535], "am i in earth in heauen or": [0, 65535], "i in earth in heauen or in": [0, 65535], "in earth in heauen or in hell": [0, 65535], "earth in heauen or in hell sleeping": [0, 65535], "in heauen or in hell sleeping or": [0, 65535], "heauen or in hell sleeping or waking": [0, 65535], "or in hell sleeping or waking mad": [0, 65535], "in hell sleeping or waking mad or": [0, 65535], "hell sleeping or waking mad or well": [0, 65535], "sleeping or waking mad or well aduisde": [0, 65535], "or waking mad or well aduisde knowne": [0, 65535], "waking mad or well aduisde knowne vnto": [0, 65535], "mad or well aduisde knowne vnto these": [0, 65535], "or well aduisde knowne vnto these and": [0, 65535], "well aduisde knowne vnto these and to": [0, 65535], "aduisde knowne vnto these and to my": [0, 65535], "knowne vnto these and to my selfe": [0, 65535], "vnto these and to my selfe disguisde": [0, 65535], "these and to my selfe disguisde ile": [0, 65535], "and to my selfe disguisde ile say": [0, 65535], "to my selfe disguisde ile say as": [0, 65535], "my selfe disguisde ile say as they": [0, 65535], "selfe disguisde ile say as they say": [0, 65535], "disguisde ile say as they say and": [0, 65535], "ile say as they say and perseuer": [0, 65535], "say as they say and perseuer so": [0, 65535], "as they say and perseuer so and": [0, 65535], "they say and perseuer so and in": [0, 65535], "say and perseuer so and in this": [0, 65535], "and perseuer so and in this mist": [0, 65535], "perseuer so and in this mist at": [0, 65535], "so and in this mist at all": [0, 65535], "and in this mist at all aduentures": [0, 65535], "in this mist at all aduentures go": [0, 65535], "this mist at all aduentures go s": [0, 65535], "mist at all aduentures go s dro": [0, 65535], "at all aduentures go s dro master": [0, 65535], "all aduentures go s dro master shall": [0, 65535], "aduentures go s dro master shall i": [0, 65535], "go s dro master shall i be": [0, 65535], "s dro master shall i be porter": [0, 65535], "dro master shall i be porter at": [0, 65535], "master shall i be porter at the": [0, 65535], "shall i be porter at the gate": [0, 65535], "i be porter at the gate adr": [0, 65535], "be porter at the gate adr i": [0, 65535], "porter at the gate adr i and": [0, 65535], "at the gate adr i and let": [0, 65535], "the gate adr i and let none": [0, 65535], "gate adr i and let none enter": [0, 65535], "adr i and let none enter least": [0, 65535], "i and let none enter least i": [0, 65535], "and let none enter least i breake": [0, 65535], "let none enter least i breake your": [0, 65535], "none enter least i breake your pate": [0, 65535], "enter least i breake your pate luc": [0, 65535], "least i breake your pate luc come": [0, 65535], "i breake your pate luc come come": [0, 65535], "breake your pate luc come come antipholus": [0, 65535], "your pate luc come come antipholus we": [0, 65535], "pate luc come come antipholus we dine": [0, 65535], "luc come come antipholus we dine to": [0, 65535], "come come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis sereptus": [0, 65535], "secundus enter adriana wife to antipholis sereptus with": [0, 65535], "enter adriana wife to antipholis sereptus with luciana": [0, 65535], "adriana wife to antipholis sereptus with luciana her": [0, 65535], "wife to antipholis sereptus with luciana her sister": [0, 65535], "to antipholis sereptus with luciana her sister adr": [0, 65535], "antipholis sereptus with luciana her sister adr neither": [0, 65535], "sereptus with luciana her sister adr neither my": [0, 65535], "with luciana her sister adr neither my husband": [0, 65535], "luciana her sister adr neither my husband nor": [0, 65535], "her sister adr neither my husband nor the": [0, 65535], "sister adr neither my husband nor the slaue": [0, 65535], "adr neither my husband nor the slaue return'd": [0, 65535], "neither my husband nor the slaue return'd that": [0, 65535], "my husband nor the slaue return'd that in": [0, 65535], "husband nor the slaue return'd that in such": [0, 65535], "nor the slaue return'd that in such haste": [0, 65535], "the slaue return'd that in such haste i": [0, 65535], "slaue return'd that in such haste i sent": [0, 65535], "return'd that in such haste i sent to": [0, 65535], "that in such haste i sent to seeke": [0, 65535], "in such haste i sent to seeke his": [0, 65535], "such haste i sent to seeke his master": [0, 65535], "haste i sent to seeke his master sure": [0, 65535], "i sent to seeke his master sure luciana": [0, 65535], "sent to seeke his master sure luciana it": [0, 65535], "to seeke his master sure luciana it is": [0, 65535], "seeke his master sure luciana it is two": [0, 65535], "his master sure luciana it is two a": [0, 65535], "master sure luciana it is two a clocke": [0, 65535], "sure luciana it is two a clocke luc": [0, 65535], "luciana it is two a clocke luc perhaps": [0, 65535], "it is two a clocke luc perhaps some": [0, 65535], "is two a clocke luc perhaps some merchant": [0, 65535], "two a clocke luc perhaps some merchant hath": [0, 65535], "a clocke luc perhaps some merchant hath inuited": [0, 65535], "clocke luc perhaps some merchant hath inuited him": [0, 65535], "luc perhaps some merchant hath inuited him and": [0, 65535], "perhaps some merchant hath inuited him and from": [0, 65535], "some merchant hath inuited him and from the": [0, 65535], "merchant hath inuited him and from the mart": [0, 65535], "hath inuited him and from the mart he's": [0, 65535], "inuited him and from the mart he's somewhere": [0, 65535], "him and from the mart he's somewhere gone": [0, 65535], "and from the mart he's somewhere gone to": [0, 65535], "from the mart he's somewhere gone to dinner": [0, 65535], "the mart he's somewhere gone to dinner good": [0, 65535], "mart he's somewhere gone to dinner good sister": [0, 65535], "he's somewhere gone to dinner good sister let": [0, 65535], "somewhere gone to dinner good sister let vs": [0, 65535], "gone to dinner good sister let vs dine": [0, 65535], "to dinner good sister let vs dine and": [0, 65535], "dinner good sister let vs dine and neuer": [0, 65535], "good sister let vs dine and neuer fret": [0, 65535], "sister let vs dine and neuer fret a": [0, 65535], "let vs dine and neuer fret a man": [0, 65535], "vs dine and neuer fret a man is": [0, 65535], "dine and neuer fret a man is master": [0, 65535], "and neuer fret a man is master of": [0, 65535], "neuer fret a man is master of his": [0, 65535], "fret a man is master of his libertie": [0, 65535], "a man is master of his libertie time": [0, 65535], "man is master of his libertie time is": [0, 65535], "is master of his libertie time is their": [0, 65535], "master of his libertie time is their master": [0, 65535], "of his libertie time is their master and": [0, 65535], "his libertie time is their master and when": [0, 65535], "libertie time is their master and when they": [0, 65535], "time is their master and when they see": [0, 65535], "is their master and when they see time": [0, 65535], "their master and when they see time they'll": [0, 65535], "master and when they see time they'll goe": [0, 65535], "and when they see time they'll goe or": [0, 65535], "when they see time they'll goe or come": [0, 65535], "they see time they'll goe or come if": [0, 65535], "see time they'll goe or come if so": [0, 65535], "time they'll goe or come if so be": [0, 65535], "they'll goe or come if so be patient": [0, 65535], "goe or come if so be patient sister": [0, 65535], "or come if so be patient sister adr": [0, 65535], "come if so be patient sister adr why": [0, 65535], "if so be patient sister adr why should": [0, 65535], "so be patient sister adr why should their": [0, 65535], "be patient sister adr why should their libertie": [0, 65535], "patient sister adr why should their libertie then": [0, 65535], "sister adr why should their libertie then ours": [0, 65535], "adr why should their libertie then ours be": [0, 65535], "why should their libertie then ours be more": [0, 65535], "should their libertie then ours be more luc": [0, 65535], "their libertie then ours be more luc because": [0, 65535], "libertie then ours be more luc because their": [0, 65535], "then ours be more luc because their businesse": [0, 65535], "ours be more luc because their businesse still": [0, 65535], "be more luc because their businesse still lies": [0, 65535], "more luc because their businesse still lies out": [0, 65535], "luc because their businesse still lies out a": [0, 65535], "because their businesse still lies out a dore": [0, 65535], "their businesse still lies out a dore adr": [0, 65535], "businesse still lies out a dore adr looke": [0, 65535], "still lies out a dore adr looke when": [0, 65535], "lies out a dore adr looke when i": [0, 65535], "out a dore adr looke when i serue": [0, 65535], "a dore adr looke when i serue him": [0, 65535], "dore adr looke when i serue him so": [0, 65535], "adr looke when i serue him so he": [0, 65535], "looke when i serue him so he takes": [0, 65535], "when i serue him so he takes it": [0, 65535], "i serue him so he takes it thus": [0, 65535], "serue him so he takes it thus luc": [0, 65535], "him so he takes it thus luc oh": [0, 65535], "so he takes it thus luc oh know": [0, 65535], "he takes it thus luc oh know he": [0, 65535], "takes it thus luc oh know he is": [0, 65535], "it thus luc oh know he is the": [0, 65535], "thus luc oh know he is the bridle": [0, 65535], "luc oh know he is the bridle of": [0, 65535], "oh know he is the bridle of your": [0, 65535], "know he is the bridle of your will": [0, 65535], "he is the bridle of your will adr": [0, 65535], "is the bridle of your will adr there's": [0, 65535], "the bridle of your will adr there's none": [0, 65535], "bridle of your will adr there's none but": [0, 65535], "of your will adr there's none but asses": [0, 65535], "your will adr there's none but asses will": [0, 65535], "will adr there's none but asses will be": [0, 65535], "adr there's none but asses will be bridled": [0, 65535], "there's none but asses will be bridled so": [0, 65535], "none but asses will be bridled so luc": [0, 65535], "but asses will be bridled so luc why": [0, 65535], "asses will be bridled so luc why headstrong": [0, 65535], "will be bridled so luc why headstrong liberty": [0, 65535], "be bridled so luc why headstrong liberty is": [0, 65535], "bridled so luc why headstrong liberty is lasht": [0, 65535], "so luc why headstrong liberty is lasht with": [0, 65535], "luc why headstrong liberty is lasht with woe": [0, 65535], "why headstrong liberty is lasht with woe there's": [0, 65535], "headstrong liberty is lasht with woe there's nothing": [0, 65535], "liberty is lasht with woe there's nothing situate": [0, 65535], "is lasht with woe there's nothing situate vnder": [0, 65535], "lasht with woe there's nothing situate vnder heauens": [0, 65535], "with woe there's nothing situate vnder heauens eye": [0, 65535], "woe there's nothing situate vnder heauens eye but": [0, 65535], "there's nothing situate vnder heauens eye but hath": [0, 65535], "nothing situate vnder heauens eye but hath his": [0, 65535], "situate vnder heauens eye but hath his bound": [0, 65535], "vnder heauens eye but hath his bound in": [0, 65535], "heauens eye but hath his bound in earth": [0, 65535], "eye but hath his bound in earth in": [0, 65535], "but hath his bound in earth in sea": [0, 65535], "hath his bound in earth in sea in": [0, 65535], "his bound in earth in sea in skie": [0, 65535], "bound in earth in sea in skie the": [0, 65535], "in earth in sea in skie the beasts": [0, 65535], "earth in sea in skie the beasts the": [0, 65535], "in sea in skie the beasts the fishes": [0, 65535], "sea in skie the beasts the fishes and": [0, 65535], "in skie the beasts the fishes and the": [0, 65535], "skie the beasts the fishes and the winged": [0, 65535], "the beasts the fishes and the winged fowles": [0, 65535], "beasts the fishes and the winged fowles are": [0, 65535], "the fishes and the winged fowles are their": [0, 65535], "fishes and the winged fowles are their males": [0, 65535], "and the winged fowles are their males subiects": [0, 65535], "the winged fowles are their males subiects and": [0, 65535], "winged fowles are their males subiects and at": [0, 65535], "fowles are their males subiects and at their": [0, 65535], "are their males subiects and at their controules": [0, 65535], "their males subiects and at their controules man": [0, 65535], "males subiects and at their controules man more": [0, 65535], "subiects and at their controules man more diuine": [0, 65535], "and at their controules man more diuine the": [0, 65535], "at their controules man more diuine the master": [0, 65535], "their controules man more diuine the master of": [0, 65535], "controules man more diuine the master of all": [0, 65535], "man more diuine the master of all these": [0, 65535], "more diuine the master of all these lord": [0, 65535], "diuine the master of all these lord of": [0, 65535], "the master of all these lord of the": [0, 65535], "master of all these lord of the wide": [0, 65535], "of all these lord of the wide world": [0, 65535], "all these lord of the wide world and": [0, 65535], "these lord of the wide world and wilde": [0, 65535], "lord of the wide world and wilde watry": [0, 65535], "of the wide world and wilde watry seas": [0, 65535], "the wide world and wilde watry seas indued": [0, 65535], "wide world and wilde watry seas indued with": [0, 65535], "world and wilde watry seas indued with intellectuall": [0, 65535], "and wilde watry seas indued with intellectuall sence": [0, 65535], "wilde watry seas indued with intellectuall sence and": [0, 65535], "watry seas indued with intellectuall sence and soules": [0, 65535], "seas indued with intellectuall sence and soules of": [0, 65535], "indued with intellectuall sence and soules of more": [0, 65535], "with intellectuall sence and soules of more preheminence": [0, 65535], "intellectuall sence and soules of more preheminence then": [0, 65535], "sence and soules of more preheminence then fish": [0, 65535], "and soules of more preheminence then fish and": [0, 65535], "soules of more preheminence then fish and fowles": [0, 65535], "of more preheminence then fish and fowles are": [0, 65535], "more preheminence then fish and fowles are masters": [0, 65535], "preheminence then fish and fowles are masters to": [0, 65535], "then fish and fowles are masters to their": [0, 65535], "fish and fowles are masters to their females": [0, 65535], "and fowles are masters to their females and": [0, 65535], "fowles are masters to their females and their": [0, 65535], "are masters to their females and their lords": [0, 65535], "masters to their females and their lords then": [0, 65535], "to their females and their lords then let": [0, 65535], "their females and their lords then let your": [0, 65535], "females and their lords then let your will": [0, 65535], "and their lords then let your will attend": [0, 65535], "their lords then let your will attend on": [0, 65535], "lords then let your will attend on their": [0, 65535], "then let your will attend on their accords": [0, 65535], "let your will attend on their accords adri": [0, 65535], "your will attend on their accords adri this": [0, 65535], "will attend on their accords adri this seruitude": [0, 65535], "attend on their accords adri this seruitude makes": [0, 65535], "on their accords adri this seruitude makes you": [0, 65535], "their accords adri this seruitude makes you to": [0, 65535], "accords adri this seruitude makes you to keepe": [0, 65535], "adri this seruitude makes you to keepe vnwed": [0, 65535], "this seruitude makes you to keepe vnwed luci": [0, 65535], "seruitude makes you to keepe vnwed luci not": [0, 65535], "makes you to keepe vnwed luci not this": [0, 65535], "you to keepe vnwed luci not this but": [0, 65535], "to keepe vnwed luci not this but troubles": [0, 65535], "keepe vnwed luci not this but troubles of": [0, 65535], "vnwed luci not this but troubles of the": [0, 65535], "luci not this but troubles of the marriage": [0, 65535], "not this but troubles of the marriage bed": [0, 65535], "this but troubles of the marriage bed adr": [0, 65535], "but troubles of the marriage bed adr but": [0, 65535], "troubles of the marriage bed adr but were": [0, 65535], "of the marriage bed adr but were you": [0, 65535], "the marriage bed adr but were you wedded": [0, 65535], "marriage bed adr but were you wedded you": [0, 65535], "bed adr but were you wedded you wold": [0, 65535], "adr but were you wedded you wold bear": [0, 65535], "but were you wedded you wold bear some": [0, 65535], "were you wedded you wold bear some sway": [0, 65535], "you wedded you wold bear some sway luc": [0, 65535], "wedded you wold bear some sway luc ere": [0, 65535], "you wold bear some sway luc ere i": [0, 65535], "wold bear some sway luc ere i learne": [0, 65535], "bear some sway luc ere i learne loue": [0, 65535], "some sway luc ere i learne loue ile": [0, 65535], "sway luc ere i learne loue ile practise": [0, 65535], "luc ere i learne loue ile practise to": [0, 65535], "ere i learne loue ile practise to obey": [0, 65535], "i learne loue ile practise to obey adr": [0, 65535], "learne loue ile practise to obey adr how": [0, 65535], "loue ile practise to obey adr how if": [0, 65535], "ile practise to obey adr how if your": [0, 65535], "practise to obey adr how if your husband": [0, 65535], "to obey adr how if your husband start": [0, 65535], "obey adr how if your husband start some": [0, 65535], "adr how if your husband start some other": [0, 65535], "how if your husband start some other where": [0, 65535], "if your husband start some other where luc": [0, 65535], "your husband start some other where luc till": [0, 65535], "husband start some other where luc till he": [0, 65535], "start some other where luc till he come": [0, 65535], "some other where luc till he come home": [0, 65535], "other where luc till he come home againe": [0, 65535], "where luc till he come home againe i": [0, 65535], "luc till he come home againe i would": [0, 65535], "till he come home againe i would forbeare": [0, 65535], "he come home againe i would forbeare adr": [0, 65535], "come home againe i would forbeare adr patience": [0, 65535], "home againe i would forbeare adr patience vnmou'd": [0, 65535], "againe i would forbeare adr patience vnmou'd no": [0, 65535], "i would forbeare adr patience vnmou'd no maruel": [0, 65535], "would forbeare adr patience vnmou'd no maruel though": [0, 65535], "forbeare adr patience vnmou'd no maruel though she": [0, 65535], "adr patience vnmou'd no maruel though she pause": [0, 65535], "patience vnmou'd no maruel though she pause they": [0, 65535], "vnmou'd no maruel though she pause they can": [0, 65535], "no maruel though she pause they can be": [0, 65535], "maruel though she pause they can be meeke": [0, 65535], "though she pause they can be meeke that": [0, 65535], "she pause they can be meeke that haue": [0, 65535], "pause they can be meeke that haue no": [0, 65535], "they can be meeke that haue no other": [0, 65535], "can be meeke that haue no other cause": [0, 65535], "be meeke that haue no other cause a": [0, 65535], "meeke that haue no other cause a wretched": [0, 65535], "that haue no other cause a wretched soule": [0, 65535], "haue no other cause a wretched soule bruis'd": [0, 65535], "no other cause a wretched soule bruis'd with": [0, 65535], "other cause a wretched soule bruis'd with aduersitie": [0, 65535], "cause a wretched soule bruis'd with aduersitie we": [0, 65535], "a wretched soule bruis'd with aduersitie we bid": [0, 65535], "wretched soule bruis'd with aduersitie we bid be": [0, 65535], "soule bruis'd with aduersitie we bid be quiet": [0, 65535], "bruis'd with aduersitie we bid be quiet when": [0, 65535], "with aduersitie we bid be quiet when we": [0, 65535], "aduersitie we bid be quiet when we heare": [0, 65535], "we bid be quiet when we heare it": [0, 65535], "bid be quiet when we heare it crie": [0, 65535], "be quiet when we heare it crie but": [0, 65535], "quiet when we heare it crie but were": [0, 65535], "when we heare it crie but were we": [0, 65535], "we heare it crie but were we burdned": [0, 65535], "heare it crie but were we burdned with": [0, 65535], "it crie but were we burdned with like": [0, 65535], "crie but were we burdned with like waight": [0, 65535], "but were we burdned with like waight of": [0, 65535], "were we burdned with like waight of paine": [0, 65535], "we burdned with like waight of paine as": [0, 65535], "burdned with like waight of paine as much": [0, 65535], "with like waight of paine as much or": [0, 65535], "like waight of paine as much or more": [0, 65535], "waight of paine as much or more we": [0, 65535], "of paine as much or more we should": [0, 65535], "paine as much or more we should our": [0, 65535], "as much or more we should our selues": [0, 65535], "much or more we should our selues complaine": [0, 65535], "or more we should our selues complaine so": [0, 65535], "more we should our selues complaine so thou": [0, 65535], "we should our selues complaine so thou that": [0, 65535], "should our selues complaine so thou that hast": [0, 65535], "our selues complaine so thou that hast no": [0, 65535], "selues complaine so thou that hast no vnkinde": [0, 65535], "complaine so thou that hast no vnkinde mate": [0, 65535], "so thou that hast no vnkinde mate to": [0, 65535], "thou that hast no vnkinde mate to greeue": [0, 65535], "that hast no vnkinde mate to greeue thee": [0, 65535], "hast no vnkinde mate to greeue thee with": [0, 65535], "no vnkinde mate to greeue thee with vrging": [0, 65535], "vnkinde mate to greeue thee with vrging helpelesse": [0, 65535], "mate to greeue thee with vrging helpelesse patience": [0, 65535], "to greeue thee with vrging helpelesse patience would": [0, 65535], "greeue thee with vrging helpelesse patience would releeue": [0, 65535], "thee with vrging helpelesse patience would releeue me": [0, 65535], "with vrging helpelesse patience would releeue me but": [0, 65535], "vrging helpelesse patience would releeue me but if": [0, 65535], "helpelesse patience would releeue me but if thou": [0, 65535], "patience would releeue me but if thou liue": [0, 65535], "would releeue me but if thou liue to": [0, 65535], "releeue me but if thou liue to see": [0, 65535], "me but if thou liue to see like": [0, 65535], "but if thou liue to see like right": [0, 65535], "if thou liue to see like right bereft": [0, 65535], "thou liue to see like right bereft this": [0, 65535], "liue to see like right bereft this foole": [0, 65535], "to see like right bereft this foole beg'd": [0, 65535], "see like right bereft this foole beg'd patience": [0, 65535], "like right bereft this foole beg'd patience in": [0, 65535], "right bereft this foole beg'd patience in thee": [0, 65535], "bereft this foole beg'd patience in thee will": [0, 65535], "this foole beg'd patience in thee will be": [0, 65535], "foole beg'd patience in thee will be left": [0, 65535], "beg'd patience in thee will be left luci": [0, 65535], "patience in thee will be left luci well": [0, 65535], "in thee will be left luci well i": [0, 65535], "thee will be left luci well i will": [0, 65535], "will be left luci well i will marry": [0, 65535], "be left luci well i will marry one": [0, 65535], "left luci well i will marry one day": [0, 65535], "luci well i will marry one day but": [0, 65535], "well i will marry one day but to": [0, 65535], "i will marry one day but to trie": [0, 65535], "will marry one day but to trie heere": [0, 65535], "marry one day but to trie heere comes": [0, 65535], "one day but to trie heere comes your": [0, 65535], "day but to trie heere comes your man": [0, 65535], "but to trie heere comes your man now": [0, 65535], "to trie heere comes your man now is": [0, 65535], "trie heere comes your man now is your": [0, 65535], "heere comes your man now is your husband": [0, 65535], "comes your man now is your husband nie": [0, 65535], "your man now is your husband nie enter": [0, 65535], "man now is your husband nie enter dromio": [0, 65535], "now is your husband nie enter dromio eph": [0, 65535], "is your husband nie enter dromio eph adr": [0, 65535], "your husband nie enter dromio eph adr say": [0, 65535], "husband nie enter dromio eph adr say is": [0, 65535], "nie enter dromio eph adr say is your": [0, 65535], "enter dromio eph adr say is your tardie": [0, 65535], "dromio eph adr say is your tardie master": [0, 65535], "eph adr say is your tardie master now": [0, 65535], "adr say is your tardie master now at": [0, 65535], "say is your tardie master now at hand": [0, 65535], "is your tardie master now at hand e": [0, 65535], "your tardie master now at hand e dro": [0, 65535], "tardie master now at hand e dro nay": [0, 65535], "master now at hand e dro nay hee's": [0, 65535], "now at hand e dro nay hee's at": [0, 65535], "at hand e dro nay hee's at too": [0, 65535], "hand e dro nay hee's at too hands": [0, 65535], "e dro nay hee's at too hands with": [0, 65535], "dro nay hee's at too hands with mee": [0, 65535], "nay hee's at too hands with mee and": [0, 65535], "hee's at too hands with mee and that": [0, 65535], "at too hands with mee and that my": [0, 65535], "too hands with mee and that my two": [0, 65535], "hands with mee and that my two eares": [0, 65535], "with mee and that my two eares can": [0, 65535], "mee and that my two eares can witnesse": [0, 65535], "and that my two eares can witnesse adr": [0, 65535], "that my two eares can witnesse adr say": [0, 65535], "my two eares can witnesse adr say didst": [0, 65535], "two eares can witnesse adr say didst thou": [0, 65535], "eares can witnesse adr say didst thou speake": [0, 65535], "can witnesse adr say didst thou speake with": [0, 65535], "witnesse adr say didst thou speake with him": [0, 65535], "adr say didst thou speake with him knowst": [0, 65535], "say didst thou speake with him knowst thou": [0, 65535], "didst thou speake with him knowst thou his": [0, 65535], "thou speake with him knowst thou his minde": [0, 65535], "speake with him knowst thou his minde e": [0, 65535], "with him knowst thou his minde e dro": [0, 65535], "him knowst thou his minde e dro i": [0, 65535], "knowst thou his minde e dro i i": [0, 65535], "thou his minde e dro i i he": [0, 65535], "his minde e dro i i he told": [0, 65535], "minde e dro i i he told his": [0, 65535], "e dro i i he told his minde": [0, 65535], "dro i i he told his minde vpon": [0, 65535], "i i he told his minde vpon mine": [0, 65535], "i he told his minde vpon mine eare": [0, 65535], "he told his minde vpon mine eare beshrew": [0, 65535], "told his minde vpon mine eare beshrew his": [0, 65535], "his minde vpon mine eare beshrew his hand": [0, 65535], "minde vpon mine eare beshrew his hand i": [0, 65535], "vpon mine eare beshrew his hand i scarce": [0, 65535], "mine eare beshrew his hand i scarce could": [0, 65535], "eare beshrew his hand i scarce could vnderstand": [0, 65535], "beshrew his hand i scarce could vnderstand it": [0, 65535], "his hand i scarce could vnderstand it luc": [0, 65535], "hand i scarce could vnderstand it luc spake": [0, 65535], "i scarce could vnderstand it luc spake hee": [0, 65535], "scarce could vnderstand it luc spake hee so": [0, 65535], "could vnderstand it luc spake hee so doubtfully": [0, 65535], "vnderstand it luc spake hee so doubtfully thou": [0, 65535], "it luc spake hee so doubtfully thou couldst": [0, 65535], "luc spake hee so doubtfully thou couldst not": [0, 65535], "spake hee so doubtfully thou couldst not feele": [0, 65535], "hee so doubtfully thou couldst not feele his": [0, 65535], "so doubtfully thou couldst not feele his meaning": [0, 65535], "doubtfully thou couldst not feele his meaning e": [0, 65535], "thou couldst not feele his meaning e dro": [0, 65535], "couldst not feele his meaning e dro nay": [0, 65535], "not feele his meaning e dro nay hee": [0, 65535], "feele his meaning e dro nay hee strooke": [0, 65535], "his meaning e dro nay hee strooke so": [0, 65535], "meaning e dro nay hee strooke so plainly": [0, 65535], "e dro nay hee strooke so plainly i": [0, 65535], "dro nay hee strooke so plainly i could": [0, 65535], "nay hee strooke so plainly i could too": [0, 65535], "hee strooke so plainly i could too well": [0, 65535], "strooke so plainly i could too well feele": [0, 65535], "so plainly i could too well feele his": [0, 65535], "plainly i could too well feele his blowes": [0, 65535], "i could too well feele his blowes and": [0, 65535], "could too well feele his blowes and withall": [0, 65535], "too well feele his blowes and withall so": [0, 65535], "well feele his blowes and withall so doubtfully": [0, 65535], "feele his blowes and withall so doubtfully that": [0, 65535], "his blowes and withall so doubtfully that i": [0, 65535], "blowes and withall so doubtfully that i could": [0, 65535], "and withall so doubtfully that i could scarce": [0, 65535], "withall so doubtfully that i could scarce vnderstand": [0, 65535], "so doubtfully that i could scarce vnderstand them": [0, 65535], "doubtfully that i could scarce vnderstand them adri": [0, 65535], "that i could scarce vnderstand them adri but": [0, 65535], "i could scarce vnderstand them adri but say": [0, 65535], "could scarce vnderstand them adri but say i": [0, 65535], "scarce vnderstand them adri but say i prethee": [0, 65535], "vnderstand them adri but say i prethee is": [0, 65535], "them adri but say i prethee is he": [0, 65535], "adri but say i prethee is he comming": [0, 65535], "but say i prethee is he comming home": [0, 65535], "say i prethee is he comming home it": [0, 65535], "i prethee is he comming home it seemes": [0, 65535], "prethee is he comming home it seemes he": [0, 65535], "is he comming home it seemes he hath": [0, 65535], "he comming home it seemes he hath great": [0, 65535], "comming home it seemes he hath great care": [0, 65535], "home it seemes he hath great care to": [0, 65535], "it seemes he hath great care to please": [0, 65535], "seemes he hath great care to please his": [0, 65535], "he hath great care to please his wife": [0, 65535], "hath great care to please his wife e": [0, 65535], "great care to please his wife e dro": [0, 65535], "care to please his wife e dro why": [0, 65535], "to please his wife e dro why mistresse": [0, 65535], "please his wife e dro why mistresse sure": [0, 65535], "his wife e dro why mistresse sure my": [0, 65535], "wife e dro why mistresse sure my master": [0, 65535], "e dro why mistresse sure my master is": [0, 65535], "dro why mistresse sure my master is horne": [0, 65535], "why mistresse sure my master is horne mad": [0, 65535], "mistresse sure my master is horne mad adri": [0, 65535], "sure my master is horne mad adri horne": [0, 65535], "my master is horne mad adri horne mad": [0, 65535], "master is horne mad adri horne mad thou": [0, 65535], "is horne mad adri horne mad thou villaine": [0, 65535], "horne mad adri horne mad thou villaine e": [0, 65535], "mad adri horne mad thou villaine e dro": [0, 65535], "adri horne mad thou villaine e dro i": [0, 65535], "horne mad thou villaine e dro i meane": [0, 65535], "mad thou villaine e dro i meane not": [0, 65535], "thou villaine e dro i meane not cuckold": [0, 65535], "villaine e dro i meane not cuckold mad": [0, 65535], "e dro i meane not cuckold mad but": [0, 65535], "dro i meane not cuckold mad but sure": [0, 65535], "i meane not cuckold mad but sure he": [0, 65535], "meane not cuckold mad but sure he is": [0, 65535], "not cuckold mad but sure he is starke": [0, 65535], "cuckold mad but sure he is starke mad": [0, 65535], "mad but sure he is starke mad when": [0, 65535], "but sure he is starke mad when i": [0, 65535], "sure he is starke mad when i desir'd": [0, 65535], "he is starke mad when i desir'd him": [0, 65535], "is starke mad when i desir'd him to": [0, 65535], "starke mad when i desir'd him to come": [0, 65535], "mad when i desir'd him to come home": [0, 65535], "when i desir'd him to come home to": [0, 65535], "i desir'd him to come home to dinner": [0, 65535], "desir'd him to come home to dinner he": [0, 65535], "him to come home to dinner he ask'd": [0, 65535], "to come home to dinner he ask'd me": [0, 65535], "come home to dinner he ask'd me for": [0, 65535], "home to dinner he ask'd me for a": [0, 65535], "to dinner he ask'd me for a hundred": [0, 65535], "dinner he ask'd me for a hundred markes": [0, 65535], "he ask'd me for a hundred markes in": [0, 65535], "ask'd me for a hundred markes in gold": [0, 65535], "me for a hundred markes in gold 'tis": [0, 65535], "for a hundred markes in gold 'tis dinner": [0, 65535], "a hundred markes in gold 'tis dinner time": [0, 65535], "hundred markes in gold 'tis dinner time quoth": [0, 65535], "markes in gold 'tis dinner time quoth i": [0, 65535], "in gold 'tis dinner time quoth i my": [0, 65535], "gold 'tis dinner time quoth i my gold": [0, 65535], "'tis dinner time quoth i my gold quoth": [0, 65535], "dinner time quoth i my gold quoth he": [0, 65535], "time quoth i my gold quoth he your": [0, 65535], "quoth i my gold quoth he your meat": [0, 65535], "i my gold quoth he your meat doth": [0, 65535], "my gold quoth he your meat doth burne": [0, 65535], "gold quoth he your meat doth burne quoth": [0, 65535], "quoth he your meat doth burne quoth i": [0, 65535], "he your meat doth burne quoth i my": [0, 65535], "your meat doth burne quoth i my gold": [0, 65535], "meat doth burne quoth i my gold quoth": [0, 65535], "doth burne quoth i my gold quoth he": [0, 65535], "burne quoth i my gold quoth he will": [0, 65535], "quoth i my gold quoth he will you": [0, 65535], "i my gold quoth he will you come": [0, 65535], "my gold quoth he will you come quoth": [0, 65535], "gold quoth he will you come quoth i": [0, 65535], "quoth he will you come quoth i my": [0, 65535], "he will you come quoth i my gold": [0, 65535], "will you come quoth i my gold quoth": [0, 65535], "you come quoth i my gold quoth he": [0, 65535], "come quoth i my gold quoth he where": [0, 65535], "quoth i my gold quoth he where is": [0, 65535], "i my gold quoth he where is the": [0, 65535], "my gold quoth he where is the thousand": [0, 65535], "gold quoth he where is the thousand markes": [0, 65535], "quoth he where is the thousand markes i": [0, 65535], "he where is the thousand markes i gaue": [0, 65535], "where is the thousand markes i gaue thee": [0, 65535], "is the thousand markes i gaue thee villaine": [0, 65535], "the thousand markes i gaue thee villaine the": [0, 65535], "thousand markes i gaue thee villaine the pigge": [0, 65535], "markes i gaue thee villaine the pigge quoth": [0, 65535], "i gaue thee villaine the pigge quoth i": [0, 65535], "gaue thee villaine the pigge quoth i is": [0, 65535], "thee villaine the pigge quoth i is burn'd": [0, 65535], "villaine the pigge quoth i is burn'd my": [0, 65535], "the pigge quoth i is burn'd my gold": [0, 65535], "pigge quoth i is burn'd my gold quoth": [0, 65535], "quoth i is burn'd my gold quoth he": [0, 65535], "i is burn'd my gold quoth he my": [0, 65535], "is burn'd my gold quoth he my mistresse": [0, 65535], "burn'd my gold quoth he my mistresse sir": [0, 65535], "my gold quoth he my mistresse sir quoth": [0, 65535], "gold quoth he my mistresse sir quoth i": [0, 65535], "quoth he my mistresse sir quoth i hang": [0, 65535], "he my mistresse sir quoth i hang vp": [0, 65535], "my mistresse sir quoth i hang vp thy": [0, 65535], "mistresse sir quoth i hang vp thy mistresse": [0, 65535], "sir quoth i hang vp thy mistresse i": [0, 65535], "quoth i hang vp thy mistresse i know": [0, 65535], "i hang vp thy mistresse i know not": [0, 65535], "hang vp thy mistresse i know not thy": [0, 65535], "vp thy mistresse i know not thy mistresse": [0, 65535], "thy mistresse i know not thy mistresse out": [0, 65535], "mistresse i know not thy mistresse out on": [0, 65535], "i know not thy mistresse out on thy": [0, 65535], "know not thy mistresse out on thy mistresse": [0, 65535], "not thy mistresse out on thy mistresse luci": [0, 65535], "thy mistresse out on thy mistresse luci quoth": [0, 65535], "mistresse out on thy mistresse luci quoth who": [0, 65535], "out on thy mistresse luci quoth who e": [0, 65535], "on thy mistresse luci quoth who e dr": [0, 65535], "thy mistresse luci quoth who e dr quoth": [0, 65535], "mistresse luci quoth who e dr quoth my": [0, 65535], "luci quoth who e dr quoth my master": [0, 65535], "quoth who e dr quoth my master i": [0, 65535], "who e dr quoth my master i know": [0, 65535], "e dr quoth my master i know quoth": [0, 65535], "dr quoth my master i know quoth he": [0, 65535], "quoth my master i know quoth he no": [0, 65535], "my master i know quoth he no house": [0, 65535], "master i know quoth he no house no": [0, 65535], "i know quoth he no house no wife": [0, 65535], "know quoth he no house no wife no": [0, 65535], "quoth he no house no wife no mistresse": [0, 65535], "he no house no wife no mistresse so": [0, 65535], "no house no wife no mistresse so that": [0, 65535], "house no wife no mistresse so that my": [0, 65535], "no wife no mistresse so that my arrant": [0, 65535], "wife no mistresse so that my arrant due": [0, 65535], "no mistresse so that my arrant due vnto": [0, 65535], "mistresse so that my arrant due vnto my": [0, 65535], "so that my arrant due vnto my tongue": [0, 65535], "that my arrant due vnto my tongue i": [0, 65535], "my arrant due vnto my tongue i thanke": [0, 65535], "arrant due vnto my tongue i thanke him": [0, 65535], "due vnto my tongue i thanke him i": [0, 65535], "vnto my tongue i thanke him i bare": [0, 65535], "my tongue i thanke him i bare home": [0, 65535], "tongue i thanke him i bare home vpon": [0, 65535], "i thanke him i bare home vpon my": [0, 65535], "thanke him i bare home vpon my shoulders": [0, 65535], "him i bare home vpon my shoulders for": [0, 65535], "i bare home vpon my shoulders for in": [0, 65535], "bare home vpon my shoulders for in conclusion": [0, 65535], "home vpon my shoulders for in conclusion he": [0, 65535], "vpon my shoulders for in conclusion he did": [0, 65535], "my shoulders for in conclusion he did beat": [0, 65535], "shoulders for in conclusion he did beat me": [0, 65535], "for in conclusion he did beat me there": [0, 65535], "in conclusion he did beat me there adri": [0, 65535], "conclusion he did beat me there adri go": [0, 65535], "he did beat me there adri go back": [0, 65535], "did beat me there adri go back againe": [0, 65535], "beat me there adri go back againe thou": [0, 65535], "me there adri go back againe thou slaue": [0, 65535], "there adri go back againe thou slaue fetch": [0, 65535], "adri go back againe thou slaue fetch him": [0, 65535], "go back againe thou slaue fetch him home": [0, 65535], "back againe thou slaue fetch him home dro": [0, 65535], "againe thou slaue fetch him home dro goe": [0, 65535], "thou slaue fetch him home dro goe backe": [0, 65535], "slaue fetch him home dro goe backe againe": [0, 65535], "fetch him home dro goe backe againe and": [0, 65535], "him home dro goe backe againe and be": [0, 65535], "home dro goe backe againe and be new": [0, 65535], "dro goe backe againe and be new beaten": [0, 65535], "goe backe againe and be new beaten home": [0, 65535], "backe againe and be new beaten home for": [0, 65535], "againe and be new beaten home for gods": [0, 65535], "and be new beaten home for gods sake": [0, 65535], "be new beaten home for gods sake send": [0, 65535], "new beaten home for gods sake send some": [0, 65535], "beaten home for gods sake send some other": [0, 65535], "home for gods sake send some other messenger": [0, 65535], "for gods sake send some other messenger adri": [0, 65535], "gods sake send some other messenger adri backe": [0, 65535], "sake send some other messenger adri backe slaue": [0, 65535], "send some other messenger adri backe slaue or": [0, 65535], "some other messenger adri backe slaue or i": [0, 65535], "other messenger adri backe slaue or i will": [0, 65535], "messenger adri backe slaue or i will breake": [0, 65535], "adri backe slaue or i will breake thy": [0, 65535], "backe slaue or i will breake thy pate": [0, 65535], "slaue or i will breake thy pate a": [0, 65535], "or i will breake thy pate a crosse": [0, 65535], "i will breake thy pate a crosse dro": [0, 65535], "will breake thy pate a crosse dro and": [0, 65535], "breake thy pate a crosse dro and he": [0, 65535], "thy pate a crosse dro and he will": [0, 65535], "pate a crosse dro and he will blesse": [0, 65535], "a crosse dro and he will blesse the": [0, 65535], "crosse dro and he will blesse the crosse": [0, 65535], "dro and he will blesse the crosse with": [0, 65535], "and he will blesse the crosse with other": [0, 65535], "he will blesse the crosse with other beating": [0, 65535], "will blesse the crosse with other beating betweene": [0, 65535], "blesse the crosse with other beating betweene you": [0, 65535], "the crosse with other beating betweene you i": [0, 65535], "crosse with other beating betweene you i shall": [0, 65535], "with other beating betweene you i shall haue": [0, 65535], "other beating betweene you i shall haue a": [0, 65535], "beating betweene you i shall haue a holy": [0, 65535], "betweene you i shall haue a holy head": [0, 65535], "you i shall haue a holy head adri": [0, 65535], "i shall haue a holy head adri hence": [0, 65535], "shall haue a holy head adri hence prating": [0, 65535], "haue a holy head adri hence prating pesant": [0, 65535], "a holy head adri hence prating pesant fetch": [0, 65535], "holy head adri hence prating pesant fetch thy": [0, 65535], "head adri hence prating pesant fetch thy master": [0, 65535], "adri hence prating pesant fetch thy master home": [0, 65535], "hence prating pesant fetch thy master home dro": [0, 65535], "prating pesant fetch thy master home dro am": [0, 65535], "pesant fetch thy master home dro am i": [0, 65535], "fetch thy master home dro am i so": [0, 65535], "thy master home dro am i so round": [0, 65535], "master home dro am i so round with": [0, 65535], "home dro am i so round with you": [0, 65535], "dro am i so round with you as": [0, 65535], "am i so round with you as you": [0, 65535], "i so round with you as you with": [0, 65535], "so round with you as you with me": [0, 65535], "round with you as you with me that": [0, 65535], "with you as you with me that like": [0, 65535], "you as you with me that like a": [0, 65535], "as you with me that like a foot": [0, 65535], "you with me that like a foot ball": [0, 65535], "with me that like a foot ball you": [0, 65535], "me that like a foot ball you doe": [0, 65535], "that like a foot ball you doe spurne": [0, 65535], "like a foot ball you doe spurne me": [0, 65535], "a foot ball you doe spurne me thus": [0, 65535], "foot ball you doe spurne me thus you": [0, 65535], "ball you doe spurne me thus you spurne": [0, 65535], "you doe spurne me thus you spurne me": [0, 65535], "doe spurne me thus you spurne me hence": [0, 65535], "spurne me thus you spurne me hence and": [0, 65535], "me thus you spurne me hence and he": [0, 65535], "thus you spurne me hence and he will": [0, 65535], "you spurne me hence and he will spurne": [0, 65535], "spurne me hence and he will spurne me": [0, 65535], "me hence and he will spurne me hither": [0, 65535], "hence and he will spurne me hither if": [0, 65535], "and he will spurne me hither if i": [0, 65535], "he will spurne me hither if i last": [0, 65535], "will spurne me hither if i last in": [0, 65535], "spurne me hither if i last in this": [0, 65535], "me hither if i last in this seruice": [0, 65535], "hither if i last in this seruice you": [0, 65535], "if i last in this seruice you must": [0, 65535], "i last in this seruice you must case": [0, 65535], "last in this seruice you must case me": [0, 65535], "in this seruice you must case me in": [0, 65535], "this seruice you must case me in leather": [0, 65535], "seruice you must case me in leather luci": [0, 65535], "you must case me in leather luci fie": [0, 65535], "must case me in leather luci fie how": [0, 65535], "case me in leather luci fie how impatience": [0, 65535], "me in leather luci fie how impatience lowreth": [0, 65535], "in leather luci fie how impatience lowreth in": [0, 65535], "leather luci fie how impatience lowreth in your": [0, 65535], "luci fie how impatience lowreth in your face": [0, 65535], "fie how impatience lowreth in your face adri": [0, 65535], "how impatience lowreth in your face adri his": [0, 65535], "impatience lowreth in your face adri his company": [0, 65535], "lowreth in your face adri his company must": [0, 65535], "in your face adri his company must do": [0, 65535], "your face adri his company must do his": [0, 65535], "face adri his company must do his minions": [0, 65535], "adri his company must do his minions grace": [0, 65535], "his company must do his minions grace whil'st": [0, 65535], "company must do his minions grace whil'st i": [0, 65535], "must do his minions grace whil'st i at": [0, 65535], "do his minions grace whil'st i at home": [0, 65535], "his minions grace whil'st i at home starue": [0, 65535], "minions grace whil'st i at home starue for": [0, 65535], "grace whil'st i at home starue for a": [0, 65535], "whil'st i at home starue for a merrie": [0, 65535], "i at home starue for a merrie looke": [0, 65535], "at home starue for a merrie looke hath": [0, 65535], "home starue for a merrie looke hath homelie": [0, 65535], "starue for a merrie looke hath homelie age": [0, 65535], "for a merrie looke hath homelie age th'": [0, 65535], "a merrie looke hath homelie age th' alluring": [0, 65535], "merrie looke hath homelie age th' alluring beauty": [0, 65535], "looke hath homelie age th' alluring beauty tooke": [0, 65535], "hath homelie age th' alluring beauty tooke from": [0, 65535], "homelie age th' alluring beauty tooke from my": [0, 65535], "age th' alluring beauty tooke from my poore": [0, 65535], "th' alluring beauty tooke from my poore cheeke": [0, 65535], "alluring beauty tooke from my poore cheeke then": [0, 65535], "beauty tooke from my poore cheeke then he": [0, 65535], "tooke from my poore cheeke then he hath": [0, 65535], "from my poore cheeke then he hath wasted": [0, 65535], "my poore cheeke then he hath wasted it": [0, 65535], "poore cheeke then he hath wasted it are": [0, 65535], "cheeke then he hath wasted it are my": [0, 65535], "then he hath wasted it are my discourses": [0, 65535], "he hath wasted it are my discourses dull": [0, 65535], "hath wasted it are my discourses dull barren": [0, 65535], "wasted it are my discourses dull barren my": [0, 65535], "it are my discourses dull barren my wit": [0, 65535], "are my discourses dull barren my wit if": [0, 65535], "my discourses dull barren my wit if voluble": [0, 65535], "discourses dull barren my wit if voluble and": [0, 65535], "dull barren my wit if voluble and sharpe": [0, 65535], "barren my wit if voluble and sharpe discourse": [0, 65535], "my wit if voluble and sharpe discourse be": [0, 65535], "wit if voluble and sharpe discourse be mar'd": [0, 65535], "if voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it more": [0, 65535], "discourse be mar'd vnkindnesse blunts it more then": [0, 65535], "be mar'd vnkindnesse blunts it more then marble": [0, 65535], "mar'd vnkindnesse blunts it more then marble hard": [0, 65535], "vnkindnesse blunts it more then marble hard doe": [0, 65535], "blunts it more then marble hard doe their": [0, 65535], "it more then marble hard doe their gay": [0, 65535], "more then marble hard doe their gay vestments": [0, 65535], "then marble hard doe their gay vestments his": [0, 65535], "marble hard doe their gay vestments his affections": [0, 65535], "hard doe their gay vestments his affections baite": [0, 65535], "doe their gay vestments his affections baite that's": [0, 65535], "their gay vestments his affections baite that's not": [0, 65535], "gay vestments his affections baite that's not my": [0, 65535], "vestments his affections baite that's not my fault": [0, 65535], "his affections baite that's not my fault hee's": [0, 65535], "affections baite that's not my fault hee's master": [0, 65535], "baite that's not my fault hee's master of": [0, 65535], "that's not my fault hee's master of my": [0, 65535], "not my fault hee's master of my state": [0, 65535], "my fault hee's master of my state what": [0, 65535], "fault hee's master of my state what ruines": [0, 65535], "hee's master of my state what ruines are": [0, 65535], "master of my state what ruines are in": [0, 65535], "of my state what ruines are in me": [0, 65535], "my state what ruines are in me that": [0, 65535], "state what ruines are in me that can": [0, 65535], "what ruines are in me that can be": [0, 65535], "ruines are in me that can be found": [0, 65535], "are in me that can be found by": [0, 65535], "in me that can be found by him": [0, 65535], "me that can be found by him not": [0, 65535], "that can be found by him not ruin'd": [0, 65535], "can be found by him not ruin'd then": [0, 65535], "be found by him not ruin'd then is": [0, 65535], "found by him not ruin'd then is he": [0, 65535], "by him not ruin'd then is he the": [0, 65535], "him not ruin'd then is he the ground": [0, 65535], "not ruin'd then is he the ground of": [0, 65535], "ruin'd then is he the ground of my": [0, 65535], "then is he the ground of my defeatures": [0, 65535], "is he the ground of my defeatures my": [0, 65535], "he the ground of my defeatures my decayed": [0, 65535], "the ground of my defeatures my decayed faire": [0, 65535], "ground of my defeatures my decayed faire a": [0, 65535], "of my defeatures my decayed faire a sunnie": [0, 65535], "my defeatures my decayed faire a sunnie looke": [0, 65535], "defeatures my decayed faire a sunnie looke of": [0, 65535], "my decayed faire a sunnie looke of his": [0, 65535], "decayed faire a sunnie looke of his would": [0, 65535], "faire a sunnie looke of his would soone": [0, 65535], "a sunnie looke of his would soone repaire": [0, 65535], "sunnie looke of his would soone repaire but": [0, 65535], "looke of his would soone repaire but too": [0, 65535], "of his would soone repaire but too vnruly": [0, 65535], "his would soone repaire but too vnruly deere": [0, 65535], "would soone repaire but too vnruly deere he": [0, 65535], "soone repaire but too vnruly deere he breakes": [0, 65535], "repaire but too vnruly deere he breakes the": [0, 65535], "but too vnruly deere he breakes the pale": [0, 65535], "too vnruly deere he breakes the pale and": [0, 65535], "vnruly deere he breakes the pale and feedes": [0, 65535], "deere he breakes the pale and feedes from": [0, 65535], "he breakes the pale and feedes from home": [0, 65535], "breakes the pale and feedes from home poore": [0, 65535], "the pale and feedes from home poore i": [0, 65535], "pale and feedes from home poore i am": [0, 65535], "and feedes from home poore i am but": [0, 65535], "feedes from home poore i am but his": [0, 65535], "from home poore i am but his stale": [0, 65535], "home poore i am but his stale luci": [0, 65535], "poore i am but his stale luci selfe": [0, 65535], "i am but his stale luci selfe harming": [0, 65535], "am but his stale luci selfe harming iealousie": [0, 65535], "but his stale luci selfe harming iealousie fie": [0, 65535], "his stale luci selfe harming iealousie fie beat": [0, 65535], "stale luci selfe harming iealousie fie beat it": [0, 65535], "luci selfe harming iealousie fie beat it hence": [0, 65535], "selfe harming iealousie fie beat it hence ad": [0, 65535], "harming iealousie fie beat it hence ad vnfeeling": [0, 65535], "iealousie fie beat it hence ad vnfeeling fools": [0, 65535], "fie beat it hence ad vnfeeling fools can": [0, 65535], "beat it hence ad vnfeeling fools can with": [0, 65535], "it hence ad vnfeeling fools can with such": [0, 65535], "hence ad vnfeeling fools can with such wrongs": [0, 65535], "ad vnfeeling fools can with such wrongs dispence": [0, 65535], "vnfeeling fools can with such wrongs dispence i": [0, 65535], "fools can with such wrongs dispence i know": [0, 65535], "can with such wrongs dispence i know his": [0, 65535], "with such wrongs dispence i know his eye": [0, 65535], "such wrongs dispence i know his eye doth": [0, 65535], "wrongs dispence i know his eye doth homage": [0, 65535], "dispence i know his eye doth homage other": [0, 65535], "i know his eye doth homage other where": [0, 65535], "know his eye doth homage other where or": [0, 65535], "his eye doth homage other where or else": [0, 65535], "eye doth homage other where or else what": [0, 65535], "doth homage other where or else what lets": [0, 65535], "homage other where or else what lets it": [0, 65535], "other where or else what lets it but": [0, 65535], "where or else what lets it but he": [0, 65535], "or else what lets it but he would": [0, 65535], "else what lets it but he would be": [0, 65535], "what lets it but he would be here": [0, 65535], "lets it but he would be here sister": [0, 65535], "it but he would be here sister you": [0, 65535], "but he would be here sister you know": [0, 65535], "he would be here sister you know he": [0, 65535], "would be here sister you know he promis'd": [0, 65535], "be here sister you know he promis'd me": [0, 65535], "here sister you know he promis'd me a": [0, 65535], "sister you know he promis'd me a chaine": [0, 65535], "you know he promis'd me a chaine would": [0, 65535], "know he promis'd me a chaine would that": [0, 65535], "he promis'd me a chaine would that alone": [0, 65535], "promis'd me a chaine would that alone a": [0, 65535], "me a chaine would that alone a loue": [0, 65535], "a chaine would that alone a loue he": [0, 65535], "chaine would that alone a loue he would": [0, 65535], "would that alone a loue he would detaine": [0, 65535], "that alone a loue he would detaine so": [0, 65535], "alone a loue he would detaine so he": [0, 65535], "a loue he would detaine so he would": [0, 65535], "loue he would detaine so he would keepe": [0, 65535], "he would detaine so he would keepe faire": [0, 65535], "would detaine so he would keepe faire quarter": [0, 65535], "detaine so he would keepe faire quarter with": [0, 65535], "so he would keepe faire quarter with his": [0, 65535], "he would keepe faire quarter with his bed": [0, 65535], "would keepe faire quarter with his bed i": [0, 65535], "keepe faire quarter with his bed i see": [0, 65535], "faire quarter with his bed i see the": [0, 65535], "quarter with his bed i see the iewell": [0, 65535], "with his bed i see the iewell best": [0, 65535], "his bed i see the iewell best enamaled": [0, 65535], "bed i see the iewell best enamaled will": [0, 65535], "i see the iewell best enamaled will loose": [0, 65535], "see the iewell best enamaled will loose his": [0, 65535], "the iewell best enamaled will loose his beautie": [0, 65535], "iewell best enamaled will loose his beautie yet": [0, 65535], "best enamaled will loose his beautie yet the": [0, 65535], "enamaled will loose his beautie yet the gold": [0, 65535], "will loose his beautie yet the gold bides": [0, 65535], "loose his beautie yet the gold bides still": [0, 65535], "his beautie yet the gold bides still that": [0, 65535], "beautie yet the gold bides still that others": [0, 65535], "yet the gold bides still that others touch": [0, 65535], "the gold bides still that others touch and": [0, 65535], "gold bides still that others touch and often": [0, 65535], "bides still that others touch and often touching": [0, 65535], "still that others touch and often touching will": [0, 65535], "that others touch and often touching will where": [0, 65535], "others touch and often touching will where gold": [0, 65535], "touch and often touching will where gold and": [0, 65535], "and often touching will where gold and no": [0, 65535], "often touching will where gold and no man": [0, 65535], "touching will where gold and no man that": [0, 65535], "will where gold and no man that hath": [0, 65535], "where gold and no man that hath a": [0, 65535], "gold and no man that hath a name": [0, 65535], "and no man that hath a name by": [0, 65535], "no man that hath a name by falshood": [0, 65535], "man that hath a name by falshood and": [0, 65535], "that hath a name by falshood and corruption": [0, 65535], "hath a name by falshood and corruption doth": [0, 65535], "a name by falshood and corruption doth it": [0, 65535], "name by falshood and corruption doth it shame": [0, 65535], "by falshood and corruption doth it shame since": [0, 65535], "falshood and corruption doth it shame since that": [0, 65535], "and corruption doth it shame since that my": [0, 65535], "corruption doth it shame since that my beautie": [0, 65535], "doth it shame since that my beautie cannot": [0, 65535], "it shame since that my beautie cannot please": [0, 65535], "shame since that my beautie cannot please his": [0, 65535], "since that my beautie cannot please his eie": [0, 65535], "that my beautie cannot please his eie ile": [0, 65535], "my beautie cannot please his eie ile weepe": [0, 65535], "beautie cannot please his eie ile weepe what's": [0, 65535], "cannot please his eie ile weepe what's left": [0, 65535], "please his eie ile weepe what's left away": [0, 65535], "his eie ile weepe what's left away and": [0, 65535], "eie ile weepe what's left away and weeping": [0, 65535], "ile weepe what's left away and weeping die": [0, 65535], "weepe what's left away and weeping die luci": [0, 65535], "what's left away and weeping die luci how": [0, 65535], "left away and weeping die luci how manie": [0, 65535], "away and weeping die luci how manie fond": [0, 65535], "and weeping die luci how manie fond fooles": [0, 65535], "weeping die luci how manie fond fooles serue": [0, 65535], "die luci how manie fond fooles serue mad": [0, 65535], "luci how manie fond fooles serue mad ielousie": [0, 65535], "how manie fond fooles serue mad ielousie exit": [0, 65535], "manie fond fooles serue mad ielousie exit enter": [0, 65535], "fond fooles serue mad ielousie exit enter antipholis": [0, 65535], "fooles serue mad ielousie exit enter antipholis errotis": [0, 65535], "serue mad ielousie exit enter antipholis errotis ant": [0, 65535], "mad ielousie exit enter antipholis errotis ant the": [0, 65535], "ielousie exit enter antipholis errotis ant the gold": [0, 65535], "exit enter antipholis errotis ant the gold i": [0, 65535], "enter antipholis errotis ant the gold i gaue": [0, 65535], "antipholis errotis ant the gold i gaue to": [0, 65535], "errotis ant the gold i gaue to dromio": [0, 65535], "ant the gold i gaue to dromio is": [0, 65535], "the gold i gaue to dromio is laid": [0, 65535], "gold i gaue to dromio is laid vp": [0, 65535], "i gaue to dromio is laid vp safe": [0, 65535], "gaue to dromio is laid vp safe at": [0, 65535], "to dromio is laid vp safe at the": [0, 65535], "dromio is laid vp safe at the centaur": [0, 65535], "is laid vp safe at the centaur and": [0, 65535], "laid vp safe at the centaur and the": [0, 65535], "vp safe at the centaur and the heedfull": [0, 65535], "safe at the centaur and the heedfull slaue": [0, 65535], "at the centaur and the heedfull slaue is": [0, 65535], "the centaur and the heedfull slaue is wandred": [0, 65535], "centaur and the heedfull slaue is wandred forth": [0, 65535], "and the heedfull slaue is wandred forth in": [0, 65535], "the heedfull slaue is wandred forth in care": [0, 65535], "heedfull slaue is wandred forth in care to": [0, 65535], "slaue is wandred forth in care to seeke": [0, 65535], "is wandred forth in care to seeke me": [0, 65535], "wandred forth in care to seeke me out": [0, 65535], "forth in care to seeke me out by": [0, 65535], "in care to seeke me out by computation": [0, 65535], "care to seeke me out by computation and": [0, 65535], "to seeke me out by computation and mine": [0, 65535], "seeke me out by computation and mine hosts": [0, 65535], "me out by computation and mine hosts report": [0, 65535], "out by computation and mine hosts report i": [0, 65535], "by computation and mine hosts report i could": [0, 65535], "computation and mine hosts report i could not": [0, 65535], "and mine hosts report i could not speake": [0, 65535], "mine hosts report i could not speake with": [0, 65535], "hosts report i could not speake with dromio": [0, 65535], "report i could not speake with dromio since": [0, 65535], "i could not speake with dromio since at": [0, 65535], "could not speake with dromio since at first": [0, 65535], "not speake with dromio since at first i": [0, 65535], "speake with dromio since at first i sent": [0, 65535], "with dromio since at first i sent him": [0, 65535], "dromio since at first i sent him from": [0, 65535], "since at first i sent him from the": [0, 65535], "at first i sent him from the mart": [0, 65535], "first i sent him from the mart see": [0, 65535], "i sent him from the mart see here": [0, 65535], "sent him from the mart see here he": [0, 65535], "him from the mart see here he comes": [0, 65535], "from the mart see here he comes enter": [0, 65535], "the mart see here he comes enter dromio": [0, 65535], "mart see here he comes enter dromio siracusia": [0, 65535], "see here he comes enter dromio siracusia how": [0, 65535], "here he comes enter dromio siracusia how now": [0, 65535], "he comes enter dromio siracusia how now sir": [0, 65535], "comes enter dromio siracusia how now sir is": [0, 65535], "enter dromio siracusia how now sir is your": [0, 65535], "dromio siracusia how now sir is your merrie": [0, 65535], "siracusia how now sir is your merrie humor": [0, 65535], "how now sir is your merrie humor alter'd": [0, 65535], "now sir is your merrie humor alter'd as": [0, 65535], "sir is your merrie humor alter'd as you": [0, 65535], "is your merrie humor alter'd as you loue": [0, 65535], "your merrie humor alter'd as you loue stroakes": [0, 65535], "merrie humor alter'd as you loue stroakes so": [0, 65535], "humor alter'd as you loue stroakes so iest": [0, 65535], "alter'd as you loue stroakes so iest with": [0, 65535], "as you loue stroakes so iest with me": [0, 65535], "you loue stroakes so iest with me againe": [0, 65535], "loue stroakes so iest with me againe you": [0, 65535], "stroakes so iest with me againe you know": [0, 65535], "so iest with me againe you know no": [0, 65535], "iest with me againe you know no centaur": [0, 65535], "with me againe you know no centaur you": [0, 65535], "me againe you know no centaur you receiu'd": [0, 65535], "againe you know no centaur you receiu'd no": [0, 65535], "you know no centaur you receiu'd no gold": [0, 65535], "know no centaur you receiu'd no gold your": [0, 65535], "no centaur you receiu'd no gold your mistresse": [0, 65535], "centaur you receiu'd no gold your mistresse sent": [0, 65535], "you receiu'd no gold your mistresse sent to": [0, 65535], "receiu'd no gold your mistresse sent to haue": [0, 65535], "no gold your mistresse sent to haue me": [0, 65535], "gold your mistresse sent to haue me home": [0, 65535], "your mistresse sent to haue me home to": [0, 65535], "mistresse sent to haue me home to dinner": [0, 65535], "sent to haue me home to dinner my": [0, 65535], "to haue me home to dinner my house": [0, 65535], "haue me home to dinner my house was": [0, 65535], "me home to dinner my house was at": [0, 65535], "home to dinner my house was at the": [0, 65535], "to dinner my house was at the ph\u0153nix": [0, 65535], "dinner my house was at the ph\u0153nix wast": [0, 65535], "my house was at the ph\u0153nix wast thou": [0, 65535], "house was at the ph\u0153nix wast thou mad": [0, 65535], "was at the ph\u0153nix wast thou mad that": [0, 65535], "at the ph\u0153nix wast thou mad that thus": [0, 65535], "the ph\u0153nix wast thou mad that thus so": [0, 65535], "ph\u0153nix wast thou mad that thus so madlie": [0, 65535], "wast thou mad that thus so madlie thou": [0, 65535], "thou mad that thus so madlie thou did": [0, 65535], "mad that thus so madlie thou did didst": [0, 65535], "that thus so madlie thou did didst answere": [0, 65535], "thus so madlie thou did didst answere me": [0, 65535], "so madlie thou did didst answere me s": [0, 65535], "madlie thou did didst answere me s dro": [0, 65535], "thou did didst answere me s dro what": [0, 65535], "did didst answere me s dro what answer": [0, 65535], "didst answere me s dro what answer sir": [0, 65535], "answere me s dro what answer sir when": [0, 65535], "me s dro what answer sir when spake": [0, 65535], "s dro what answer sir when spake i": [0, 65535], "dro what answer sir when spake i such": [0, 65535], "what answer sir when spake i such a": [0, 65535], "answer sir when spake i such a word": [0, 65535], "sir when spake i such a word e": [0, 65535], "when spake i such a word e ant": [0, 65535], "spake i such a word e ant euen": [0, 65535], "i such a word e ant euen now": [0, 65535], "such a word e ant euen now euen": [0, 65535], "a word e ant euen now euen here": [0, 65535], "word e ant euen now euen here not": [0, 65535], "e ant euen now euen here not halfe": [0, 65535], "ant euen now euen here not halfe an": [0, 65535], "euen now euen here not halfe an howre": [0, 65535], "now euen here not halfe an howre since": [0, 65535], "euen here not halfe an howre since s": [0, 65535], "here not halfe an howre since s dro": [0, 65535], "not halfe an howre since s dro i": [0, 65535], "halfe an howre since s dro i did": [0, 65535], "an howre since s dro i did not": [0, 65535], "howre since s dro i did not see": [0, 65535], "since s dro i did not see you": [0, 65535], "s dro i did not see you since": [0, 65535], "dro i did not see you since you": [0, 65535], "i did not see you since you sent": [0, 65535], "did not see you since you sent me": [0, 65535], "not see you since you sent me hence": [0, 65535], "see you since you sent me hence home": [0, 65535], "you since you sent me hence home to": [0, 65535], "since you sent me hence home to the": [0, 65535], "you sent me hence home to the centaur": [0, 65535], "sent me hence home to the centaur with": [0, 65535], "me hence home to the centaur with the": [0, 65535], "hence home to the centaur with the gold": [0, 65535], "home to the centaur with the gold you": [0, 65535], "to the centaur with the gold you gaue": [0, 65535], "the centaur with the gold you gaue me": [0, 65535], "centaur with the gold you gaue me ant": [0, 65535], "with the gold you gaue me ant villaine": [0, 65535], "the gold you gaue me ant villaine thou": [0, 65535], "gold you gaue me ant villaine thou didst": [0, 65535], "you gaue me ant villaine thou didst denie": [0, 65535], "gaue me ant villaine thou didst denie the": [0, 65535], "me ant villaine thou didst denie the golds": [0, 65535], "ant villaine thou didst denie the golds receit": [0, 65535], "villaine thou didst denie the golds receit and": [0, 65535], "thou didst denie the golds receit and toldst": [0, 65535], "didst denie the golds receit and toldst me": [0, 65535], "denie the golds receit and toldst me of": [0, 65535], "the golds receit and toldst me of a": [0, 65535], "golds receit and toldst me of a mistresse": [0, 65535], "receit and toldst me of a mistresse and": [0, 65535], "and toldst me of a mistresse and a": [0, 65535], "toldst me of a mistresse and a dinner": [0, 65535], "me of a mistresse and a dinner for": [0, 65535], "of a mistresse and a dinner for which": [0, 65535], "a mistresse and a dinner for which i": [0, 65535], "mistresse and a dinner for which i hope": [0, 65535], "and a dinner for which i hope thou": [0, 65535], "a dinner for which i hope thou feltst": [0, 65535], "dinner for which i hope thou feltst i": [0, 65535], "for which i hope thou feltst i was": [0, 65535], "which i hope thou feltst i was displeas'd": [0, 65535], "i hope thou feltst i was displeas'd s": [0, 65535], "hope thou feltst i was displeas'd s dro": [0, 65535], "thou feltst i was displeas'd s dro i": [0, 65535], "feltst i was displeas'd s dro i am": [0, 65535], "i was displeas'd s dro i am glad": [0, 65535], "was displeas'd s dro i am glad to": [0, 65535], "displeas'd s dro i am glad to see": [0, 65535], "s dro i am glad to see you": [0, 65535], "dro i am glad to see you in": [0, 65535], "i am glad to see you in this": [0, 65535], "am glad to see you in this merrie": [0, 65535], "glad to see you in this merrie vaine": [0, 65535], "to see you in this merrie vaine what": [0, 65535], "see you in this merrie vaine what meanes": [0, 65535], "you in this merrie vaine what meanes this": [0, 65535], "in this merrie vaine what meanes this iest": [0, 65535], "this merrie vaine what meanes this iest i": [0, 65535], "merrie vaine what meanes this iest i pray": [0, 65535], "vaine what meanes this iest i pray you": [0, 65535], "what meanes this iest i pray you master": [0, 65535], "meanes this iest i pray you master tell": [0, 65535], "this iest i pray you master tell me": [0, 65535], "iest i pray you master tell me ant": [0, 65535], "i pray you master tell me ant yea": [0, 65535], "pray you master tell me ant yea dost": [0, 65535], "you master tell me ant yea dost thou": [0, 65535], "master tell me ant yea dost thou ieere": [0, 65535], "tell me ant yea dost thou ieere flowt": [0, 65535], "me ant yea dost thou ieere flowt me": [0, 65535], "ant yea dost thou ieere flowt me in": [0, 65535], "yea dost thou ieere flowt me in the": [0, 65535], "dost thou ieere flowt me in the teeth": [0, 65535], "thou ieere flowt me in the teeth thinkst": [0, 65535], "ieere flowt me in the teeth thinkst thou": [0, 65535], "flowt me in the teeth thinkst thou i": [0, 65535], "me in the teeth thinkst thou i iest": [0, 65535], "in the teeth thinkst thou i iest hold": [0, 65535], "the teeth thinkst thou i iest hold take": [0, 65535], "teeth thinkst thou i iest hold take thou": [0, 65535], "thinkst thou i iest hold take thou that": [0, 65535], "thou i iest hold take thou that that": [0, 65535], "i iest hold take thou that that beats": [0, 65535], "iest hold take thou that that beats dro": [0, 65535], "hold take thou that that beats dro s": [0, 65535], "take thou that that beats dro s dr": [0, 65535], "thou that that beats dro s dr hold": [0, 65535], "that that beats dro s dr hold sir": [0, 65535], "that beats dro s dr hold sir for": [0, 65535], "beats dro s dr hold sir for gods": [0, 65535], "dro s dr hold sir for gods sake": [0, 65535], "s dr hold sir for gods sake now": [0, 65535], "dr hold sir for gods sake now your": [0, 65535], "hold sir for gods sake now your iest": [0, 65535], "sir for gods sake now your iest is": [0, 65535], "for gods sake now your iest is earnest": [0, 65535], "gods sake now your iest is earnest vpon": [0, 65535], "sake now your iest is earnest vpon what": [0, 65535], "now your iest is earnest vpon what bargaine": [0, 65535], "your iest is earnest vpon what bargaine do": [0, 65535], "iest is earnest vpon what bargaine do you": [0, 65535], "is earnest vpon what bargaine do you giue": [0, 65535], "earnest vpon what bargaine do you giue it": [0, 65535], "vpon what bargaine do you giue it me": [0, 65535], "what bargaine do you giue it me antiph": [0, 65535], "bargaine do you giue it me antiph because": [0, 65535], "do you giue it me antiph because that": [0, 65535], "you giue it me antiph because that i": [0, 65535], "giue it me antiph because that i familiarlie": [0, 65535], "it me antiph because that i familiarlie sometimes": [0, 65535], "me antiph because that i familiarlie sometimes doe": [0, 65535], "antiph because that i familiarlie sometimes doe vse": [0, 65535], "because that i familiarlie sometimes doe vse you": [0, 65535], "that i familiarlie sometimes doe vse you for": [0, 65535], "i familiarlie sometimes doe vse you for my": [0, 65535], "familiarlie sometimes doe vse you for my foole": [0, 65535], "sometimes doe vse you for my foole and": [0, 65535], "doe vse you for my foole and chat": [0, 65535], "vse you for my foole and chat with": [0, 65535], "you for my foole and chat with you": [0, 65535], "for my foole and chat with you your": [0, 65535], "my foole and chat with you your sawcinesse": [0, 65535], "foole and chat with you your sawcinesse will": [0, 65535], "and chat with you your sawcinesse will iest": [0, 65535], "chat with you your sawcinesse will iest vpon": [0, 65535], "with you your sawcinesse will iest vpon my": [0, 65535], "you your sawcinesse will iest vpon my loue": [0, 65535], "your sawcinesse will iest vpon my loue and": [0, 65535], "sawcinesse will iest vpon my loue and make": [0, 65535], "will iest vpon my loue and make a": [0, 65535], "iest vpon my loue and make a common": [0, 65535], "vpon my loue and make a common of": [0, 65535], "my loue and make a common of my": [0, 65535], "loue and make a common of my serious": [0, 65535], "and make a common of my serious howres": [0, 65535], "make a common of my serious howres when": [0, 65535], "a common of my serious howres when the": [0, 65535], "common of my serious howres when the sunne": [0, 65535], "of my serious howres when the sunne shines": [0, 65535], "my serious howres when the sunne shines let": [0, 65535], "serious howres when the sunne shines let foolish": [0, 65535], "howres when the sunne shines let foolish gnats": [0, 65535], "when the sunne shines let foolish gnats make": [0, 65535], "the sunne shines let foolish gnats make sport": [0, 65535], "sunne shines let foolish gnats make sport but": [0, 65535], "shines let foolish gnats make sport but creepe": [0, 65535], "let foolish gnats make sport but creepe in": [0, 65535], "foolish gnats make sport but creepe in crannies": [0, 65535], "gnats make sport but creepe in crannies when": [0, 65535], "make sport but creepe in crannies when he": [0, 65535], "sport but creepe in crannies when he hides": [0, 65535], "but creepe in crannies when he hides his": [0, 65535], "creepe in crannies when he hides his beames": [0, 65535], "in crannies when he hides his beames if": [0, 65535], "crannies when he hides his beames if you": [0, 65535], "when he hides his beames if you will": [0, 65535], "he hides his beames if you will iest": [0, 65535], "hides his beames if you will iest with": [0, 65535], "his beames if you will iest with me": [0, 65535], "beames if you will iest with me know": [0, 65535], "if you will iest with me know my": [0, 65535], "you will iest with me know my aspect": [0, 65535], "will iest with me know my aspect and": [0, 65535], "iest with me know my aspect and fashion": [0, 65535], "with me know my aspect and fashion your": [0, 65535], "me know my aspect and fashion your demeanor": [0, 65535], "know my aspect and fashion your demeanor to": [0, 65535], "my aspect and fashion your demeanor to my": [0, 65535], "aspect and fashion your demeanor to my lookes": [0, 65535], "and fashion your demeanor to my lookes or": [0, 65535], "fashion your demeanor to my lookes or i": [0, 65535], "your demeanor to my lookes or i will": [0, 65535], "demeanor to my lookes or i will beat": [0, 65535], "to my lookes or i will beat this": [0, 65535], "my lookes or i will beat this method": [0, 65535], "lookes or i will beat this method in": [0, 65535], "or i will beat this method in your": [0, 65535], "i will beat this method in your sconce": [0, 65535], "will beat this method in your sconce s": [0, 65535], "beat this method in your sconce s dro": [0, 65535], "this method in your sconce s dro sconce": [0, 65535], "method in your sconce s dro sconce call": [0, 65535], "in your sconce s dro sconce call you": [0, 65535], "your sconce s dro sconce call you it": [0, 65535], "sconce s dro sconce call you it so": [0, 65535], "s dro sconce call you it so you": [0, 65535], "dro sconce call you it so you would": [0, 65535], "sconce call you it so you would leaue": [0, 65535], "call you it so you would leaue battering": [0, 65535], "you it so you would leaue battering i": [0, 65535], "it so you would leaue battering i had": [0, 65535], "so you would leaue battering i had rather": [0, 65535], "you would leaue battering i had rather haue": [0, 65535], "would leaue battering i had rather haue it": [0, 65535], "leaue battering i had rather haue it a": [0, 65535], "battering i had rather haue it a head": [0, 65535], "i had rather haue it a head and": [0, 65535], "had rather haue it a head and you": [0, 65535], "rather haue it a head and you vse": [0, 65535], "haue it a head and you vse these": [0, 65535], "it a head and you vse these blows": [0, 65535], "a head and you vse these blows long": [0, 65535], "head and you vse these blows long i": [0, 65535], "and you vse these blows long i must": [0, 65535], "you vse these blows long i must get": [0, 65535], "vse these blows long i must get a": [0, 65535], "these blows long i must get a sconce": [0, 65535], "blows long i must get a sconce for": [0, 65535], "long i must get a sconce for my": [0, 65535], "i must get a sconce for my head": [0, 65535], "must get a sconce for my head and": [0, 65535], "get a sconce for my head and insconce": [0, 65535], "a sconce for my head and insconce it": [0, 65535], "sconce for my head and insconce it to": [0, 65535], "for my head and insconce it to or": [0, 65535], "my head and insconce it to or else": [0, 65535], "head and insconce it to or else i": [0, 65535], "and insconce it to or else i shall": [0, 65535], "insconce it to or else i shall seek": [0, 65535], "it to or else i shall seek my": [0, 65535], "to or else i shall seek my wit": [0, 65535], "or else i shall seek my wit in": [0, 65535], "else i shall seek my wit in my": [0, 65535], "i shall seek my wit in my shoulders": [0, 65535], "shall seek my wit in my shoulders but": [0, 65535], "seek my wit in my shoulders but i": [0, 65535], "my wit in my shoulders but i pray": [0, 65535], "wit in my shoulders but i pray sir": [0, 65535], "in my shoulders but i pray sir why": [0, 65535], "my shoulders but i pray sir why am": [0, 65535], "shoulders but i pray sir why am i": [0, 65535], "but i pray sir why am i beaten": [0, 65535], "i pray sir why am i beaten ant": [0, 65535], "pray sir why am i beaten ant dost": [0, 65535], "sir why am i beaten ant dost thou": [0, 65535], "why am i beaten ant dost thou not": [0, 65535], "am i beaten ant dost thou not know": [0, 65535], "i beaten ant dost thou not know s": [0, 65535], "beaten ant dost thou not know s dro": [0, 65535], "ant dost thou not know s dro nothing": [0, 65535], "dost thou not know s dro nothing sir": [0, 65535], "thou not know s dro nothing sir but": [0, 65535], "not know s dro nothing sir but that": [0, 65535], "know s dro nothing sir but that i": [0, 65535], "s dro nothing sir but that i am": [0, 65535], "dro nothing sir but that i am beaten": [0, 65535], "nothing sir but that i am beaten ant": [0, 65535], "sir but that i am beaten ant shall": [0, 65535], "but that i am beaten ant shall i": [0, 65535], "that i am beaten ant shall i tell": [0, 65535], "i am beaten ant shall i tell you": [0, 65535], "am beaten ant shall i tell you why": [0, 65535], "beaten ant shall i tell you why s": [0, 65535], "ant shall i tell you why s dro": [0, 65535], "shall i tell you why s dro i": [0, 65535], "i tell you why s dro i sir": [0, 65535], "tell you why s dro i sir and": [0, 65535], "you why s dro i sir and wherefore": [0, 65535], "why s dro i sir and wherefore for": [0, 65535], "s dro i sir and wherefore for they": [0, 65535], "dro i sir and wherefore for they say": [0, 65535], "i sir and wherefore for they say euery": [0, 65535], "sir and wherefore for they say euery why": [0, 65535], "and wherefore for they say euery why hath": [0, 65535], "wherefore for they say euery why hath a": [0, 65535], "for they say euery why hath a wherefore": [0, 65535], "they say euery why hath a wherefore ant": [0, 65535], "say euery why hath a wherefore ant why": [0, 65535], "euery why hath a wherefore ant why first": [0, 65535], "why hath a wherefore ant why first for": [0, 65535], "hath a wherefore ant why first for flowting": [0, 65535], "a wherefore ant why first for flowting me": [0, 65535], "wherefore ant why first for flowting me and": [0, 65535], "ant why first for flowting me and then": [0, 65535], "why first for flowting me and then wherefore": [0, 65535], "first for flowting me and then wherefore for": [0, 65535], "for flowting me and then wherefore for vrging": [0, 65535], "flowting me and then wherefore for vrging it": [0, 65535], "me and then wherefore for vrging it the": [0, 65535], "and then wherefore for vrging it the second": [0, 65535], "then wherefore for vrging it the second time": [0, 65535], "wherefore for vrging it the second time to": [0, 65535], "for vrging it the second time to me": [0, 65535], "vrging it the second time to me s": [0, 65535], "it the second time to me s dro": [0, 65535], "the second time to me s dro was": [0, 65535], "second time to me s dro was there": [0, 65535], "time to me s dro was there euer": [0, 65535], "to me s dro was there euer anie": [0, 65535], "me s dro was there euer anie man": [0, 65535], "s dro was there euer anie man thus": [0, 65535], "dro was there euer anie man thus beaten": [0, 65535], "was there euer anie man thus beaten out": [0, 65535], "there euer anie man thus beaten out of": [0, 65535], "euer anie man thus beaten out of season": [0, 65535], "anie man thus beaten out of season when": [0, 65535], "man thus beaten out of season when in": [0, 65535], "thus beaten out of season when in the": [0, 65535], "beaten out of season when in the why": [0, 65535], "out of season when in the why and": [0, 65535], "of season when in the why and the": [0, 65535], "season when in the why and the wherefore": [0, 65535], "when in the why and the wherefore is": [0, 65535], "in the why and the wherefore is neither": [0, 65535], "the why and the wherefore is neither rime": [0, 65535], "why and the wherefore is neither rime nor": [0, 65535], "and the wherefore is neither rime nor reason": [0, 65535], "the wherefore is neither rime nor reason well": [0, 65535], "wherefore is neither rime nor reason well sir": [0, 65535], "is neither rime nor reason well sir i": [0, 65535], "neither rime nor reason well sir i thanke": [0, 65535], "rime nor reason well sir i thanke you": [0, 65535], "nor reason well sir i thanke you ant": [0, 65535], "reason well sir i thanke you ant thanke": [0, 65535], "well sir i thanke you ant thanke me": [0, 65535], "sir i thanke you ant thanke me sir": [0, 65535], "i thanke you ant thanke me sir for": [0, 65535], "thanke you ant thanke me sir for what": [0, 65535], "you ant thanke me sir for what s": [0, 65535], "ant thanke me sir for what s dro": [0, 65535], "thanke me sir for what s dro marry": [0, 65535], "me sir for what s dro marry sir": [0, 65535], "sir for what s dro marry sir for": [0, 65535], "for what s dro marry sir for this": [0, 65535], "what s dro marry sir for this something": [0, 65535], "s dro marry sir for this something that": [0, 65535], "dro marry sir for this something that you": [0, 65535], "marry sir for this something that you gaue": [0, 65535], "sir for this something that you gaue me": [0, 65535], "for this something that you gaue me for": [0, 65535], "this something that you gaue me for nothing": [0, 65535], "something that you gaue me for nothing ant": [0, 65535], "that you gaue me for nothing ant ile": [0, 65535], "you gaue me for nothing ant ile make": [0, 65535], "gaue me for nothing ant ile make you": [0, 65535], "me for nothing ant ile make you amends": [0, 65535], "for nothing ant ile make you amends next": [0, 65535], "nothing ant ile make you amends next to": [0, 65535], "ant ile make you amends next to giue": [0, 65535], "ile make you amends next to giue you": [0, 65535], "make you amends next to giue you nothing": [0, 65535], "you amends next to giue you nothing for": [0, 65535], "amends next to giue you nothing for something": [0, 65535], "next to giue you nothing for something but": [0, 65535], "to giue you nothing for something but say": [0, 65535], "giue you nothing for something but say sir": [0, 65535], "you nothing for something but say sir is": [0, 65535], "nothing for something but say sir is it": [0, 65535], "for something but say sir is it dinner": [0, 65535], "something but say sir is it dinner time": [0, 65535], "but say sir is it dinner time s": [0, 65535], "say sir is it dinner time s dro": [0, 65535], "sir is it dinner time s dro no": [0, 65535], "is it dinner time s dro no sir": [0, 65535], "it dinner time s dro no sir i": [0, 65535], "dinner time s dro no sir i thinke": [0, 65535], "time s dro no sir i thinke the": [0, 65535], "s dro no sir i thinke the meat": [0, 65535], "dro no sir i thinke the meat wants": [0, 65535], "no sir i thinke the meat wants that": [0, 65535], "sir i thinke the meat wants that i": [0, 65535], "i thinke the meat wants that i haue": [0, 65535], "thinke the meat wants that i haue ant": [0, 65535], "the meat wants that i haue ant in": [0, 65535], "meat wants that i haue ant in good": [0, 65535], "wants that i haue ant in good time": [0, 65535], "that i haue ant in good time sir": [0, 65535], "i haue ant in good time sir what's": [0, 65535], "haue ant in good time sir what's that": [0, 65535], "ant in good time sir what's that s": [0, 65535], "in good time sir what's that s dro": [0, 65535], "good time sir what's that s dro basting": [0, 65535], "time sir what's that s dro basting ant": [0, 65535], "sir what's that s dro basting ant well": [0, 65535], "what's that s dro basting ant well sir": [0, 65535], "that s dro basting ant well sir then": [0, 65535], "s dro basting ant well sir then 'twill": [0, 65535], "dro basting ant well sir then 'twill be": [0, 65535], "basting ant well sir then 'twill be drie": [0, 65535], "ant well sir then 'twill be drie s": [0, 65535], "well sir then 'twill be drie s dro": [0, 65535], "sir then 'twill be drie s dro if": [0, 65535], "then 'twill be drie s dro if it": [0, 65535], "'twill be drie s dro if it be": [0, 65535], "be drie s dro if it be sir": [0, 65535], "drie s dro if it be sir i": [0, 65535], "s dro if it be sir i pray": [0, 65535], "dro if it be sir i pray you": [0, 65535], "if it be sir i pray you eat": [0, 65535], "it be sir i pray you eat none": [0, 65535], "be sir i pray you eat none of": [0, 65535], "sir i pray you eat none of it": [0, 65535], "i pray you eat none of it ant": [0, 65535], "pray you eat none of it ant your": [0, 65535], "you eat none of it ant your reason": [0, 65535], "eat none of it ant your reason s": [0, 65535], "none of it ant your reason s dro": [0, 65535], "of it ant your reason s dro lest": [0, 65535], "it ant your reason s dro lest it": [0, 65535], "ant your reason s dro lest it make": [0, 65535], "your reason s dro lest it make you": [0, 65535], "reason s dro lest it make you chollericke": [0, 65535], "s dro lest it make you chollericke and": [0, 65535], "dro lest it make you chollericke and purchase": [0, 65535], "lest it make you chollericke and purchase me": [0, 65535], "it make you chollericke and purchase me another": [0, 65535], "make you chollericke and purchase me another drie": [0, 65535], "you chollericke and purchase me another drie basting": [0, 65535], "chollericke and purchase me another drie basting ant": [0, 65535], "and purchase me another drie basting ant well": [0, 65535], "purchase me another drie basting ant well sir": [0, 65535], "me another drie basting ant well sir learne": [0, 65535], "another drie basting ant well sir learne to": [0, 65535], "drie basting ant well sir learne to iest": [0, 65535], "basting ant well sir learne to iest in": [0, 65535], "ant well sir learne to iest in good": [0, 65535], "well sir learne to iest in good time": [0, 65535], "sir learne to iest in good time there's": [0, 65535], "learne to iest in good time there's a": [0, 65535], "to iest in good time there's a time": [0, 65535], "iest in good time there's a time for": [0, 65535], "in good time there's a time for all": [0, 65535], "good time there's a time for all things": [0, 65535], "time there's a time for all things s": [0, 65535], "there's a time for all things s dro": [0, 65535], "a time for all things s dro i": [0, 65535], "time for all things s dro i durst": [0, 65535], "for all things s dro i durst haue": [0, 65535], "all things s dro i durst haue denied": [0, 65535], "things s dro i durst haue denied that": [0, 65535], "s dro i durst haue denied that before": [0, 65535], "dro i durst haue denied that before you": [0, 65535], "i durst haue denied that before you were": [0, 65535], "durst haue denied that before you were so": [0, 65535], "haue denied that before you were so chollericke": [0, 65535], "denied that before you were so chollericke anti": [0, 65535], "that before you were so chollericke anti by": [0, 65535], "before you were so chollericke anti by what": [0, 65535], "you were so chollericke anti by what rule": [0, 65535], "were so chollericke anti by what rule sir": [0, 65535], "so chollericke anti by what rule sir s": [0, 65535], "chollericke anti by what rule sir s dro": [0, 65535], "anti by what rule sir s dro marry": [0, 65535], "by what rule sir s dro marry sir": [0, 65535], "what rule sir s dro marry sir by": [0, 65535], "rule sir s dro marry sir by a": [0, 65535], "sir s dro marry sir by a rule": [0, 65535], "s dro marry sir by a rule as": [0, 65535], "dro marry sir by a rule as plaine": [0, 65535], "marry sir by a rule as plaine as": [0, 65535], "sir by a rule as plaine as the": [0, 65535], "by a rule as plaine as the plaine": [0, 65535], "a rule as plaine as the plaine bald": [0, 65535], "rule as plaine as the plaine bald pate": [0, 65535], "as plaine as the plaine bald pate of": [0, 65535], "plaine as the plaine bald pate of father": [0, 65535], "as the plaine bald pate of father time": [0, 65535], "the plaine bald pate of father time himselfe": [0, 65535], "plaine bald pate of father time himselfe ant": [0, 65535], "bald pate of father time himselfe ant let's": [0, 65535], "pate of father time himselfe ant let's heare": [0, 65535], "of father time himselfe ant let's heare it": [0, 65535], "father time himselfe ant let's heare it s": [0, 65535], "time himselfe ant let's heare it s dro": [0, 65535], "himselfe ant let's heare it s dro there's": [0, 65535], "ant let's heare it s dro there's no": [0, 65535], "let's heare it s dro there's no time": [0, 65535], "heare it s dro there's no time for": [0, 65535], "it s dro there's no time for a": [0, 65535], "s dro there's no time for a man": [0, 65535], "dro there's no time for a man to": [0, 65535], "there's no time for a man to recouer": [0, 65535], "no time for a man to recouer his": [0, 65535], "time for a man to recouer his haire": [0, 65535], "for a man to recouer his haire that": [0, 65535], "a man to recouer his haire that growes": [0, 65535], "man to recouer his haire that growes bald": [0, 65535], "to recouer his haire that growes bald by": [0, 65535], "recouer his haire that growes bald by nature": [0, 65535], "his haire that growes bald by nature ant": [0, 65535], "haire that growes bald by nature ant may": [0, 65535], "that growes bald by nature ant may he": [0, 65535], "growes bald by nature ant may he not": [0, 65535], "bald by nature ant may he not doe": [0, 65535], "by nature ant may he not doe it": [0, 65535], "nature ant may he not doe it by": [0, 65535], "ant may he not doe it by fine": [0, 65535], "may he not doe it by fine and": [0, 65535], "he not doe it by fine and recouerie": [0, 65535], "not doe it by fine and recouerie s": [0, 65535], "doe it by fine and recouerie s dro": [0, 65535], "it by fine and recouerie s dro yes": [0, 65535], "by fine and recouerie s dro yes to": [0, 65535], "fine and recouerie s dro yes to pay": [0, 65535], "and recouerie s dro yes to pay a": [0, 65535], "recouerie s dro yes to pay a fine": [0, 65535], "s dro yes to pay a fine for": [0, 65535], "dro yes to pay a fine for a": [0, 65535], "yes to pay a fine for a perewig": [0, 65535], "to pay a fine for a perewig and": [0, 65535], "pay a fine for a perewig and recouer": [0, 65535], "a fine for a perewig and recouer the": [0, 65535], "fine for a perewig and recouer the lost": [0, 65535], "for a perewig and recouer the lost haire": [0, 65535], "a perewig and recouer the lost haire of": [0, 65535], "perewig and recouer the lost haire of another": [0, 65535], "and recouer the lost haire of another man": [0, 65535], "recouer the lost haire of another man ant": [0, 65535], "the lost haire of another man ant why": [0, 65535], "lost haire of another man ant why is": [0, 65535], "haire of another man ant why is time": [0, 65535], "of another man ant why is time such": [0, 65535], "another man ant why is time such a": [0, 65535], "man ant why is time such a niggard": [0, 65535], "ant why is time such a niggard of": [0, 65535], "why is time such a niggard of haire": [0, 65535], "is time such a niggard of haire being": [0, 65535], "time such a niggard of haire being as": [0, 65535], "such a niggard of haire being as it": [0, 65535], "a niggard of haire being as it is": [0, 65535], "niggard of haire being as it is so": [0, 65535], "of haire being as it is so plentifull": [0, 65535], "haire being as it is so plentifull an": [0, 65535], "being as it is so plentifull an excrement": [0, 65535], "as it is so plentifull an excrement s": [0, 65535], "it is so plentifull an excrement s dro": [0, 65535], "is so plentifull an excrement s dro because": [0, 65535], "so plentifull an excrement s dro because it": [0, 65535], "plentifull an excrement s dro because it is": [0, 65535], "an excrement s dro because it is a": [0, 65535], "excrement s dro because it is a blessing": [0, 65535], "s dro because it is a blessing that": [0, 65535], "dro because it is a blessing that hee": [0, 65535], "because it is a blessing that hee bestowes": [0, 65535], "it is a blessing that hee bestowes on": [0, 65535], "is a blessing that hee bestowes on beasts": [0, 65535], "a blessing that hee bestowes on beasts and": [0, 65535], "blessing that hee bestowes on beasts and what": [0, 65535], "that hee bestowes on beasts and what he": [0, 65535], "hee bestowes on beasts and what he hath": [0, 65535], "bestowes on beasts and what he hath scanted": [0, 65535], "on beasts and what he hath scanted them": [0, 65535], "beasts and what he hath scanted them in": [0, 65535], "and what he hath scanted them in haire": [0, 65535], "what he hath scanted them in haire hee": [0, 65535], "he hath scanted them in haire hee hath": [0, 65535], "hath scanted them in haire hee hath giuen": [0, 65535], "scanted them in haire hee hath giuen them": [0, 65535], "them in haire hee hath giuen them in": [0, 65535], "in haire hee hath giuen them in wit": [0, 65535], "haire hee hath giuen them in wit ant": [0, 65535], "hee hath giuen them in wit ant why": [0, 65535], "hath giuen them in wit ant why but": [0, 65535], "giuen them in wit ant why but theres": [0, 65535], "them in wit ant why but theres manie": [0, 65535], "in wit ant why but theres manie a": [0, 65535], "wit ant why but theres manie a man": [0, 65535], "ant why but theres manie a man hath": [0, 65535], "why but theres manie a man hath more": [0, 65535], "but theres manie a man hath more haire": [0, 65535], "theres manie a man hath more haire then": [0, 65535], "manie a man hath more haire then wit": [0, 65535], "a man hath more haire then wit s": [0, 65535], "man hath more haire then wit s dro": [0, 65535], "hath more haire then wit s dro not": [0, 65535], "more haire then wit s dro not a": [0, 65535], "haire then wit s dro not a man": [0, 65535], "then wit s dro not a man of": [0, 65535], "wit s dro not a man of those": [0, 65535], "s dro not a man of those but": [0, 65535], "dro not a man of those but he": [0, 65535], "not a man of those but he hath": [0, 65535], "a man of those but he hath the": [0, 65535], "man of those but he hath the wit": [0, 65535], "of those but he hath the wit to": [0, 65535], "those but he hath the wit to lose": [0, 65535], "but he hath the wit to lose his": [0, 65535], "he hath the wit to lose his haire": [0, 65535], "hath the wit to lose his haire ant": [0, 65535], "the wit to lose his haire ant why": [0, 65535], "wit to lose his haire ant why thou": [0, 65535], "to lose his haire ant why thou didst": [0, 65535], "lose his haire ant why thou didst conclude": [0, 65535], "his haire ant why thou didst conclude hairy": [0, 65535], "haire ant why thou didst conclude hairy men": [0, 65535], "ant why thou didst conclude hairy men plain": [0, 65535], "why thou didst conclude hairy men plain dealers": [0, 65535], "thou didst conclude hairy men plain dealers without": [0, 65535], "didst conclude hairy men plain dealers without wit": [0, 65535], "conclude hairy men plain dealers without wit s": [0, 65535], "hairy men plain dealers without wit s dro": [0, 65535], "men plain dealers without wit s dro the": [0, 65535], "plain dealers without wit s dro the plainer": [0, 65535], "dealers without wit s dro the plainer dealer": [0, 65535], "without wit s dro the plainer dealer the": [0, 65535], "wit s dro the plainer dealer the sooner": [0, 65535], "s dro the plainer dealer the sooner lost": [0, 65535], "dro the plainer dealer the sooner lost yet": [0, 65535], "the plainer dealer the sooner lost yet he": [0, 65535], "plainer dealer the sooner lost yet he looseth": [0, 65535], "dealer the sooner lost yet he looseth it": [0, 65535], "the sooner lost yet he looseth it in": [0, 65535], "sooner lost yet he looseth it in a": [0, 65535], "lost yet he looseth it in a kinde": [0, 65535], "yet he looseth it in a kinde of": [0, 65535], "he looseth it in a kinde of iollitie": [0, 65535], "looseth it in a kinde of iollitie an": [0, 65535], "it in a kinde of iollitie an for": [0, 65535], "in a kinde of iollitie an for what": [0, 65535], "a kinde of iollitie an for what reason": [0, 65535], "kinde of iollitie an for what reason s": [0, 65535], "of iollitie an for what reason s dro": [0, 65535], "iollitie an for what reason s dro for": [0, 65535], "an for what reason s dro for two": [0, 65535], "for what reason s dro for two and": [0, 65535], "what reason s dro for two and sound": [0, 65535], "reason s dro for two and sound ones": [0, 65535], "s dro for two and sound ones to": [0, 65535], "dro for two and sound ones to an": [0, 65535], "for two and sound ones to an nay": [0, 65535], "two and sound ones to an nay not": [0, 65535], "and sound ones to an nay not sound": [0, 65535], "sound ones to an nay not sound i": [0, 65535], "ones to an nay not sound i pray": [0, 65535], "to an nay not sound i pray you": [0, 65535], "an nay not sound i pray you s": [0, 65535], "nay not sound i pray you s dro": [0, 65535], "not sound i pray you s dro sure": [0, 65535], "sound i pray you s dro sure ones": [0, 65535], "i pray you s dro sure ones then": [0, 65535], "pray you s dro sure ones then an": [0, 65535], "you s dro sure ones then an nay": [0, 65535], "s dro sure ones then an nay not": [0, 65535], "dro sure ones then an nay not sure": [0, 65535], "sure ones then an nay not sure in": [0, 65535], "ones then an nay not sure in a": [0, 65535], "then an nay not sure in a thing": [0, 65535], "an nay not sure in a thing falsing": [0, 65535], "nay not sure in a thing falsing s": [0, 65535], "not sure in a thing falsing s dro": [0, 65535], "sure in a thing falsing s dro certaine": [0, 65535], "in a thing falsing s dro certaine ones": [0, 65535], "a thing falsing s dro certaine ones then": [0, 65535], "thing falsing s dro certaine ones then an": [0, 65535], "falsing s dro certaine ones then an name": [0, 65535], "s dro certaine ones then an name them": [0, 65535], "dro certaine ones then an name them s": [0, 65535], "certaine ones then an name them s dro": [0, 65535], "ones then an name them s dro the": [0, 65535], "then an name them s dro the one": [0, 65535], "an name them s dro the one to": [0, 65535], "name them s dro the one to saue": [0, 65535], "them s dro the one to saue the": [0, 65535], "s dro the one to saue the money": [0, 65535], "dro the one to saue the money that": [0, 65535], "the one to saue the money that he": [0, 65535], "one to saue the money that he spends": [0, 65535], "to saue the money that he spends in": [0, 65535], "saue the money that he spends in trying": [0, 65535], "the money that he spends in trying the": [0, 65535], "money that he spends in trying the other": [0, 65535], "that he spends in trying the other that": [0, 65535], "he spends in trying the other that at": [0, 65535], "spends in trying the other that at dinner": [0, 65535], "in trying the other that at dinner they": [0, 65535], "trying the other that at dinner they should": [0, 65535], "the other that at dinner they should not": [0, 65535], "other that at dinner they should not drop": [0, 65535], "that at dinner they should not drop in": [0, 65535], "at dinner they should not drop in his": [0, 65535], "dinner they should not drop in his porrage": [0, 65535], "they should not drop in his porrage an": [0, 65535], "should not drop in his porrage an you": [0, 65535], "not drop in his porrage an you would": [0, 65535], "drop in his porrage an you would all": [0, 65535], "in his porrage an you would all this": [0, 65535], "his porrage an you would all this time": [0, 65535], "porrage an you would all this time haue": [0, 65535], "an you would all this time haue prou'd": [0, 65535], "you would all this time haue prou'd there": [0, 65535], "would all this time haue prou'd there is": [0, 65535], "all this time haue prou'd there is no": [0, 65535], "this time haue prou'd there is no time": [0, 65535], "time haue prou'd there is no time for": [0, 65535], "haue prou'd there is no time for all": [0, 65535], "prou'd there is no time for all things": [0, 65535], "there is no time for all things s": [0, 65535], "is no time for all things s dro": [0, 65535], "no time for all things s dro marry": [0, 65535], "time for all things s dro marry and": [0, 65535], "for all things s dro marry and did": [0, 65535], "all things s dro marry and did sir": [0, 65535], "things s dro marry and did sir namely": [0, 65535], "s dro marry and did sir namely in": [0, 65535], "dro marry and did sir namely in no": [0, 65535], "marry and did sir namely in no time": [0, 65535], "and did sir namely in no time to": [0, 65535], "did sir namely in no time to recouer": [0, 65535], "sir namely in no time to recouer haire": [0, 65535], "namely in no time to recouer haire lost": [0, 65535], "in no time to recouer haire lost by": [0, 65535], "no time to recouer haire lost by nature": [0, 65535], "time to recouer haire lost by nature an": [0, 65535], "to recouer haire lost by nature an but": [0, 65535], "recouer haire lost by nature an but your": [0, 65535], "haire lost by nature an but your reason": [0, 65535], "lost by nature an but your reason was": [0, 65535], "by nature an but your reason was not": [0, 65535], "nature an but your reason was not substantiall": [0, 65535], "an but your reason was not substantiall why": [0, 65535], "but your reason was not substantiall why there": [0, 65535], "your reason was not substantiall why there is": [0, 65535], "reason was not substantiall why there is no": [0, 65535], "was not substantiall why there is no time": [0, 65535], "not substantiall why there is no time to": [0, 65535], "substantiall why there is no time to recouer": [0, 65535], "why there is no time to recouer s": [0, 65535], "there is no time to recouer s dro": [0, 65535], "is no time to recouer s dro thus": [0, 65535], "no time to recouer s dro thus i": [0, 65535], "time to recouer s dro thus i mend": [0, 65535], "to recouer s dro thus i mend it": [0, 65535], "recouer s dro thus i mend it time": [0, 65535], "s dro thus i mend it time himselfe": [0, 65535], "dro thus i mend it time himselfe is": [0, 65535], "thus i mend it time himselfe is bald": [0, 65535], "i mend it time himselfe is bald and": [0, 65535], "mend it time himselfe is bald and therefore": [0, 65535], "it time himselfe is bald and therefore to": [0, 65535], "time himselfe is bald and therefore to the": [0, 65535], "himselfe is bald and therefore to the worlds": [0, 65535], "is bald and therefore to the worlds end": [0, 65535], "bald and therefore to the worlds end will": [0, 65535], "and therefore to the worlds end will haue": [0, 65535], "therefore to the worlds end will haue bald": [0, 65535], "to the worlds end will haue bald followers": [0, 65535], "the worlds end will haue bald followers an": [0, 65535], "worlds end will haue bald followers an i": [0, 65535], "end will haue bald followers an i knew": [0, 65535], "will haue bald followers an i knew 'twould": [0, 65535], "haue bald followers an i knew 'twould be": [0, 65535], "bald followers an i knew 'twould be a": [0, 65535], "followers an i knew 'twould be a bald": [0, 65535], "an i knew 'twould be a bald conclusion": [0, 65535], "i knew 'twould be a bald conclusion but": [0, 65535], "knew 'twould be a bald conclusion but soft": [0, 65535], "'twould be a bald conclusion but soft who": [0, 65535], "be a bald conclusion but soft who wafts": [0, 65535], "a bald conclusion but soft who wafts vs": [0, 65535], "bald conclusion but soft who wafts vs yonder": [0, 65535], "conclusion but soft who wafts vs yonder enter": [0, 65535], "but soft who wafts vs yonder enter adriana": [0, 65535], "soft who wafts vs yonder enter adriana and": [0, 65535], "who wafts vs yonder enter adriana and luciana": [0, 65535], "wafts vs yonder enter adriana and luciana adri": [0, 65535], "vs yonder enter adriana and luciana adri i": [0, 65535], "yonder enter adriana and luciana adri i i": [0, 65535], "enter adriana and luciana adri i i antipholus": [0, 65535], "adriana and luciana adri i i antipholus looke": [0, 65535], "and luciana adri i i antipholus looke strange": [0, 65535], "luciana adri i i antipholus looke strange and": [0, 65535], "adri i i antipholus looke strange and frowne": [0, 65535], "i i antipholus looke strange and frowne some": [0, 65535], "i antipholus looke strange and frowne some other": [0, 65535], "antipholus looke strange and frowne some other mistresse": [0, 65535], "looke strange and frowne some other mistresse hath": [0, 65535], "strange and frowne some other mistresse hath thy": [0, 65535], "and frowne some other mistresse hath thy sweet": [0, 65535], "frowne some other mistresse hath thy sweet aspects": [0, 65535], "some other mistresse hath thy sweet aspects i": [0, 65535], "other mistresse hath thy sweet aspects i am": [0, 65535], "mistresse hath thy sweet aspects i am not": [0, 65535], "hath thy sweet aspects i am not adriana": [0, 65535], "thy sweet aspects i am not adriana nor": [0, 65535], "sweet aspects i am not adriana nor thy": [0, 65535], "aspects i am not adriana nor thy wife": [0, 65535], "i am not adriana nor thy wife the": [0, 65535], "am not adriana nor thy wife the time": [0, 65535], "not adriana nor thy wife the time was": [0, 65535], "adriana nor thy wife the time was once": [0, 65535], "nor thy wife the time was once when": [0, 65535], "thy wife the time was once when thou": [0, 65535], "wife the time was once when thou vn": [0, 65535], "the time was once when thou vn vrg'd": [0, 65535], "time was once when thou vn vrg'd wouldst": [0, 65535], "was once when thou vn vrg'd wouldst vow": [0, 65535], "once when thou vn vrg'd wouldst vow that": [0, 65535], "when thou vn vrg'd wouldst vow that neuer": [0, 65535], "thou vn vrg'd wouldst vow that neuer words": [0, 65535], "vn vrg'd wouldst vow that neuer words were": [0, 65535], "vrg'd wouldst vow that neuer words were musicke": [0, 65535], "wouldst vow that neuer words were musicke to": [0, 65535], "vow that neuer words were musicke to thine": [0, 65535], "that neuer words were musicke to thine eare": [0, 65535], "neuer words were musicke to thine eare that": [0, 65535], "words were musicke to thine eare that neuer": [0, 65535], "were musicke to thine eare that neuer obiect": [0, 65535], "musicke to thine eare that neuer obiect pleasing": [0, 65535], "to thine eare that neuer obiect pleasing in": [0, 65535], "thine eare that neuer obiect pleasing in thine": [0, 65535], "eare that neuer obiect pleasing in thine eye": [0, 65535], "that neuer obiect pleasing in thine eye that": [0, 65535], "neuer obiect pleasing in thine eye that neuer": [0, 65535], "obiect pleasing in thine eye that neuer touch": [0, 65535], "pleasing in thine eye that neuer touch well": [0, 65535], "in thine eye that neuer touch well welcome": [0, 65535], "thine eye that neuer touch well welcome to": [0, 65535], "eye that neuer touch well welcome to thy": [0, 65535], "that neuer touch well welcome to thy hand": [0, 65535], "neuer touch well welcome to thy hand that": [0, 65535], "touch well welcome to thy hand that neuer": [0, 65535], "well welcome to thy hand that neuer meat": [0, 65535], "welcome to thy hand that neuer meat sweet": [0, 65535], "to thy hand that neuer meat sweet sauour'd": [0, 65535], "thy hand that neuer meat sweet sauour'd in": [0, 65535], "hand that neuer meat sweet sauour'd in thy": [0, 65535], "that neuer meat sweet sauour'd in thy taste": [0, 65535], "neuer meat sweet sauour'd in thy taste vnlesse": [0, 65535], "meat sweet sauour'd in thy taste vnlesse i": [0, 65535], "sweet sauour'd in thy taste vnlesse i spake": [0, 65535], "sauour'd in thy taste vnlesse i spake or": [0, 65535], "in thy taste vnlesse i spake or look'd": [0, 65535], "thy taste vnlesse i spake or look'd or": [0, 65535], "taste vnlesse i spake or look'd or touch'd": [0, 65535], "vnlesse i spake or look'd or touch'd or": [0, 65535], "i spake or look'd or touch'd or caru'd": [0, 65535], "spake or look'd or touch'd or caru'd to": [0, 65535], "or look'd or touch'd or caru'd to thee": [0, 65535], "look'd or touch'd or caru'd to thee how": [0, 65535], "or touch'd or caru'd to thee how comes": [0, 65535], "touch'd or caru'd to thee how comes it": [0, 65535], "or caru'd to thee how comes it now": [0, 65535], "caru'd to thee how comes it now my": [0, 65535], "to thee how comes it now my husband": [0, 65535], "thee how comes it now my husband oh": [0, 65535], "how comes it now my husband oh how": [0, 65535], "comes it now my husband oh how comes": [0, 65535], "it now my husband oh how comes it": [0, 65535], "now my husband oh how comes it that": [0, 65535], "my husband oh how comes it that thou": [0, 65535], "husband oh how comes it that thou art": [0, 65535], "oh how comes it that thou art then": [0, 65535], "how comes it that thou art then estranged": [0, 65535], "comes it that thou art then estranged from": [0, 65535], "it that thou art then estranged from thy": [0, 65535], "that thou art then estranged from thy selfe": [0, 65535], "thou art then estranged from thy selfe thy": [0, 65535], "art then estranged from thy selfe thy selfe": [0, 65535], "then estranged from thy selfe thy selfe i": [0, 65535], "estranged from thy selfe thy selfe i call": [0, 65535], "from thy selfe thy selfe i call it": [0, 65535], "thy selfe thy selfe i call it being": [0, 65535], "selfe thy selfe i call it being strange": [0, 65535], "thy selfe i call it being strange to": [0, 65535], "selfe i call it being strange to me": [0, 65535], "i call it being strange to me that": [0, 65535], "call it being strange to me that vndiuidable": [0, 65535], "it being strange to me that vndiuidable incorporate": [0, 65535], "being strange to me that vndiuidable incorporate am": [0, 65535], "strange to me that vndiuidable incorporate am better": [0, 65535], "to me that vndiuidable incorporate am better then": [0, 65535], "me that vndiuidable incorporate am better then thy": [0, 65535], "that vndiuidable incorporate am better then thy deere": [0, 65535], "vndiuidable incorporate am better then thy deere selfes": [0, 65535], "incorporate am better then thy deere selfes better": [0, 65535], "am better then thy deere selfes better part": [0, 65535], "better then thy deere selfes better part ah": [0, 65535], "then thy deere selfes better part ah doe": [0, 65535], "thy deere selfes better part ah doe not": [0, 65535], "deere selfes better part ah doe not teare": [0, 65535], "selfes better part ah doe not teare away": [0, 65535], "better part ah doe not teare away thy": [0, 65535], "part ah doe not teare away thy selfe": [0, 65535], "ah doe not teare away thy selfe from": [0, 65535], "doe not teare away thy selfe from me": [0, 65535], "not teare away thy selfe from me for": [0, 65535], "teare away thy selfe from me for know": [0, 65535], "away thy selfe from me for know my": [0, 65535], "thy selfe from me for know my loue": [0, 65535], "selfe from me for know my loue as": [0, 65535], "from me for know my loue as easie": [0, 65535], "me for know my loue as easie maist": [0, 65535], "for know my loue as easie maist thou": [0, 65535], "know my loue as easie maist thou fall": [0, 65535], "my loue as easie maist thou fall a": [0, 65535], "loue as easie maist thou fall a drop": [0, 65535], "as easie maist thou fall a drop of": [0, 65535], "easie maist thou fall a drop of water": [0, 65535], "maist thou fall a drop of water in": [0, 65535], "thou fall a drop of water in the": [0, 65535], "fall a drop of water in the breaking": [0, 65535], "a drop of water in the breaking gulfe": [0, 65535], "drop of water in the breaking gulfe and": [0, 65535], "of water in the breaking gulfe and take": [0, 65535], "water in the breaking gulfe and take vnmingled": [0, 65535], "in the breaking gulfe and take vnmingled thence": [0, 65535], "the breaking gulfe and take vnmingled thence that": [0, 65535], "breaking gulfe and take vnmingled thence that drop": [0, 65535], "gulfe and take vnmingled thence that drop againe": [0, 65535], "and take vnmingled thence that drop againe without": [0, 65535], "take vnmingled thence that drop againe without addition": [0, 65535], "vnmingled thence that drop againe without addition or": [0, 65535], "thence that drop againe without addition or diminishing": [0, 65535], "that drop againe without addition or diminishing as": [0, 65535], "drop againe without addition or diminishing as take": [0, 65535], "againe without addition or diminishing as take from": [0, 65535], "without addition or diminishing as take from me": [0, 65535], "addition or diminishing as take from me thy": [0, 65535], "or diminishing as take from me thy selfe": [0, 65535], "diminishing as take from me thy selfe and": [0, 65535], "as take from me thy selfe and not": [0, 65535], "take from me thy selfe and not me": [0, 65535], "from me thy selfe and not me too": [0, 65535], "me thy selfe and not me too how": [0, 65535], "thy selfe and not me too how deerely": [0, 65535], "selfe and not me too how deerely would": [0, 65535], "and not me too how deerely would it": [0, 65535], "not me too how deerely would it touch": [0, 65535], "me too how deerely would it touch thee": [0, 65535], "too how deerely would it touch thee to": [0, 65535], "how deerely would it touch thee to the": [0, 65535], "deerely would it touch thee to the quicke": [0, 65535], "would it touch thee to the quicke shouldst": [0, 65535], "it touch thee to the quicke shouldst thou": [0, 65535], "touch thee to the quicke shouldst thou but": [0, 65535], "thee to the quicke shouldst thou but heare": [0, 65535], "to the quicke shouldst thou but heare i": [0, 65535], "the quicke shouldst thou but heare i were": [0, 65535], "quicke shouldst thou but heare i were licencious": [0, 65535], "shouldst thou but heare i were licencious and": [0, 65535], "thou but heare i were licencious and that": [0, 65535], "but heare i were licencious and that this": [0, 65535], "heare i were licencious and that this body": [0, 65535], "i were licencious and that this body consecrate": [0, 65535], "were licencious and that this body consecrate to": [0, 65535], "licencious and that this body consecrate to thee": [0, 65535], "and that this body consecrate to thee by": [0, 65535], "that this body consecrate to thee by ruffian": [0, 65535], "this body consecrate to thee by ruffian lust": [0, 65535], "body consecrate to thee by ruffian lust should": [0, 65535], "consecrate to thee by ruffian lust should be": [0, 65535], "to thee by ruffian lust should be contaminate": [0, 65535], "thee by ruffian lust should be contaminate wouldst": [0, 65535], "by ruffian lust should be contaminate wouldst thou": [0, 65535], "ruffian lust should be contaminate wouldst thou not": [0, 65535], "lust should be contaminate wouldst thou not spit": [0, 65535], "should be contaminate wouldst thou not spit at": [0, 65535], "be contaminate wouldst thou not spit at me": [0, 65535], "contaminate wouldst thou not spit at me and": [0, 65535], "wouldst thou not spit at me and spurne": [0, 65535], "thou not spit at me and spurne at": [0, 65535], "not spit at me and spurne at me": [0, 65535], "spit at me and spurne at me and": [0, 65535], "at me and spurne at me and hurle": [0, 65535], "me and spurne at me and hurle the": [0, 65535], "and spurne at me and hurle the name": [0, 65535], "spurne at me and hurle the name of": [0, 65535], "at me and hurle the name of husband": [0, 65535], "me and hurle the name of husband in": [0, 65535], "and hurle the name of husband in my": [0, 65535], "hurle the name of husband in my face": [0, 65535], "the name of husband in my face and": [0, 65535], "name of husband in my face and teare": [0, 65535], "of husband in my face and teare the": [0, 65535], "husband in my face and teare the stain'd": [0, 65535], "in my face and teare the stain'd skin": [0, 65535], "my face and teare the stain'd skin of": [0, 65535], "face and teare the stain'd skin of my": [0, 65535], "and teare the stain'd skin of my harlot": [0, 65535], "teare the stain'd skin of my harlot brow": [0, 65535], "the stain'd skin of my harlot brow and": [0, 65535], "stain'd skin of my harlot brow and from": [0, 65535], "skin of my harlot brow and from my": [0, 65535], "of my harlot brow and from my false": [0, 65535], "my harlot brow and from my false hand": [0, 65535], "harlot brow and from my false hand cut": [0, 65535], "brow and from my false hand cut the": [0, 65535], "and from my false hand cut the wedding": [0, 65535], "from my false hand cut the wedding ring": [0, 65535], "my false hand cut the wedding ring and": [0, 65535], "false hand cut the wedding ring and breake": [0, 65535], "hand cut the wedding ring and breake it": [0, 65535], "cut the wedding ring and breake it with": [0, 65535], "the wedding ring and breake it with a": [0, 65535], "wedding ring and breake it with a deepe": [0, 65535], "ring and breake it with a deepe diuorcing": [0, 65535], "and breake it with a deepe diuorcing vow": [0, 65535], "breake it with a deepe diuorcing vow i": [0, 65535], "it with a deepe diuorcing vow i know": [0, 65535], "with a deepe diuorcing vow i know thou": [0, 65535], "a deepe diuorcing vow i know thou canst": [0, 65535], "deepe diuorcing vow i know thou canst and": [0, 65535], "diuorcing vow i know thou canst and therefore": [0, 65535], "vow i know thou canst and therefore see": [0, 65535], "i know thou canst and therefore see thou": [0, 65535], "know thou canst and therefore see thou doe": [0, 65535], "thou canst and therefore see thou doe it": [0, 65535], "canst and therefore see thou doe it i": [0, 65535], "and therefore see thou doe it i am": [0, 65535], "therefore see thou doe it i am possest": [0, 65535], "see thou doe it i am possest with": [0, 65535], "thou doe it i am possest with an": [0, 65535], "doe it i am possest with an adulterate": [0, 65535], "it i am possest with an adulterate blot": [0, 65535], "i am possest with an adulterate blot my": [0, 65535], "am possest with an adulterate blot my bloud": [0, 65535], "possest with an adulterate blot my bloud is": [0, 65535], "with an adulterate blot my bloud is mingled": [0, 65535], "an adulterate blot my bloud is mingled with": [0, 65535], "adulterate blot my bloud is mingled with the": [0, 65535], "blot my bloud is mingled with the crime": [0, 65535], "my bloud is mingled with the crime of": [0, 65535], "bloud is mingled with the crime of lust": [0, 65535], "is mingled with the crime of lust for": [0, 65535], "mingled with the crime of lust for if": [0, 65535], "with the crime of lust for if we": [0, 65535], "the crime of lust for if we two": [0, 65535], "crime of lust for if we two be": [0, 65535], "of lust for if we two be one": [0, 65535], "lust for if we two be one and": [0, 65535], "for if we two be one and thou": [0, 65535], "if we two be one and thou play": [0, 65535], "we two be one and thou play false": [0, 65535], "two be one and thou play false i": [0, 65535], "be one and thou play false i doe": [0, 65535], "one and thou play false i doe digest": [0, 65535], "and thou play false i doe digest the": [0, 65535], "thou play false i doe digest the poison": [0, 65535], "play false i doe digest the poison of": [0, 65535], "false i doe digest the poison of thy": [0, 65535], "i doe digest the poison of thy flesh": [0, 65535], "doe digest the poison of thy flesh being": [0, 65535], "digest the poison of thy flesh being strumpeted": [0, 65535], "the poison of thy flesh being strumpeted by": [0, 65535], "poison of thy flesh being strumpeted by thy": [0, 65535], "of thy flesh being strumpeted by thy contagion": [0, 65535], "thy flesh being strumpeted by thy contagion keepe": [0, 65535], "flesh being strumpeted by thy contagion keepe then": [0, 65535], "being strumpeted by thy contagion keepe then faire": [0, 65535], "strumpeted by thy contagion keepe then faire league": [0, 65535], "by thy contagion keepe then faire league and": [0, 65535], "thy contagion keepe then faire league and truce": [0, 65535], "contagion keepe then faire league and truce with": [0, 65535], "keepe then faire league and truce with thy": [0, 65535], "then faire league and truce with thy true": [0, 65535], "faire league and truce with thy true bed": [0, 65535], "league and truce with thy true bed i": [0, 65535], "and truce with thy true bed i liue": [0, 65535], "truce with thy true bed i liue distain'd": [0, 65535], "with thy true bed i liue distain'd thou": [0, 65535], "thy true bed i liue distain'd thou vndishonoured": [0, 65535], "true bed i liue distain'd thou vndishonoured antip": [0, 65535], "bed i liue distain'd thou vndishonoured antip plead": [0, 65535], "i liue distain'd thou vndishonoured antip plead you": [0, 65535], "liue distain'd thou vndishonoured antip plead you to": [0, 65535], "distain'd thou vndishonoured antip plead you to me": [0, 65535], "thou vndishonoured antip plead you to me faire": [0, 65535], "vndishonoured antip plead you to me faire dame": [0, 65535], "antip plead you to me faire dame i": [0, 65535], "plead you to me faire dame i know": [0, 65535], "you to me faire dame i know you": [0, 65535], "to me faire dame i know you not": [0, 65535], "me faire dame i know you not in": [0, 65535], "faire dame i know you not in ephesus": [0, 65535], "dame i know you not in ephesus i": [0, 65535], "i know you not in ephesus i am": [0, 65535], "know you not in ephesus i am but": [0, 65535], "you not in ephesus i am but two": [0, 65535], "not in ephesus i am but two houres": [0, 65535], "in ephesus i am but two houres old": [0, 65535], "ephesus i am but two houres old as": [0, 65535], "i am but two houres old as strange": [0, 65535], "am but two houres old as strange vnto": [0, 65535], "but two houres old as strange vnto your": [0, 65535], "two houres old as strange vnto your towne": [0, 65535], "houres old as strange vnto your towne as": [0, 65535], "old as strange vnto your towne as to": [0, 65535], "as strange vnto your towne as to your": [0, 65535], "strange vnto your towne as to your talke": [0, 65535], "vnto your towne as to your talke who": [0, 65535], "your towne as to your talke who euery": [0, 65535], "towne as to your talke who euery word": [0, 65535], "as to your talke who euery word by": [0, 65535], "to your talke who euery word by all": [0, 65535], "your talke who euery word by all my": [0, 65535], "talke who euery word by all my wit": [0, 65535], "who euery word by all my wit being": [0, 65535], "euery word by all my wit being scan'd": [0, 65535], "word by all my wit being scan'd wants": [0, 65535], "by all my wit being scan'd wants wit": [0, 65535], "all my wit being scan'd wants wit in": [0, 65535], "my wit being scan'd wants wit in all": [0, 65535], "wit being scan'd wants wit in all one": [0, 65535], "being scan'd wants wit in all one word": [0, 65535], "scan'd wants wit in all one word to": [0, 65535], "wants wit in all one word to vnderstand": [0, 65535], "wit in all one word to vnderstand luci": [0, 65535], "in all one word to vnderstand luci fie": [0, 65535], "all one word to vnderstand luci fie brother": [0, 65535], "one word to vnderstand luci fie brother how": [0, 65535], "word to vnderstand luci fie brother how the": [0, 65535], "to vnderstand luci fie brother how the world": [0, 65535], "vnderstand luci fie brother how the world is": [0, 65535], "luci fie brother how the world is chang'd": [0, 65535], "fie brother how the world is chang'd with": [0, 65535], "brother how the world is chang'd with you": [0, 65535], "how the world is chang'd with you when": [0, 65535], "the world is chang'd with you when were": [0, 65535], "world is chang'd with you when were you": [0, 65535], "is chang'd with you when were you wont": [0, 65535], "chang'd with you when were you wont to": [0, 65535], "with you when were you wont to vse": [0, 65535], "you when were you wont to vse my": [0, 65535], "when were you wont to vse my sister": [0, 65535], "were you wont to vse my sister thus": [0, 65535], "you wont to vse my sister thus she": [0, 65535], "wont to vse my sister thus she sent": [0, 65535], "to vse my sister thus she sent for": [0, 65535], "vse my sister thus she sent for you": [0, 65535], "my sister thus she sent for you by": [0, 65535], "sister thus she sent for you by dromio": [0, 65535], "thus she sent for you by dromio home": [0, 65535], "she sent for you by dromio home to": [0, 65535], "sent for you by dromio home to dinner": [0, 65535], "for you by dromio home to dinner ant": [0, 65535], "you by dromio home to dinner ant by": [0, 65535], "by dromio home to dinner ant by dromio": [0, 65535], "dromio home to dinner ant by dromio drom": [0, 65535], "home to dinner ant by dromio drom by": [0, 65535], "to dinner ant by dromio drom by me": [0, 65535], "dinner ant by dromio drom by me adr": [0, 65535], "ant by dromio drom by me adr by": [0, 65535], "by dromio drom by me adr by thee": [0, 65535], "dromio drom by me adr by thee and": [0, 65535], "drom by me adr by thee and this": [0, 65535], "by me adr by thee and this thou": [0, 65535], "me adr by thee and this thou didst": [0, 65535], "adr by thee and this thou didst returne": [0, 65535], "by thee and this thou didst returne from": [0, 65535], "thee and this thou didst returne from him": [0, 65535], "and this thou didst returne from him that": [0, 65535], "this thou didst returne from him that he": [0, 65535], "thou didst returne from him that he did": [0, 65535], "didst returne from him that he did buffet": [0, 65535], "returne from him that he did buffet thee": [0, 65535], "from him that he did buffet thee and": [0, 65535], "him that he did buffet thee and in": [0, 65535], "that he did buffet thee and in his": [0, 65535], "he did buffet thee and in his blowes": [0, 65535], "did buffet thee and in his blowes denied": [0, 65535], "buffet thee and in his blowes denied my": [0, 65535], "thee and in his blowes denied my house": [0, 65535], "and in his blowes denied my house for": [0, 65535], "in his blowes denied my house for his": [0, 65535], "his blowes denied my house for his me": [0, 65535], "blowes denied my house for his me for": [0, 65535], "denied my house for his me for his": [0, 65535], "my house for his me for his wife": [0, 65535], "house for his me for his wife ant": [0, 65535], "for his me for his wife ant did": [0, 65535], "his me for his wife ant did you": [0, 65535], "me for his wife ant did you conuerse": [0, 65535], "for his wife ant did you conuerse sir": [0, 65535], "his wife ant did you conuerse sir with": [0, 65535], "wife ant did you conuerse sir with this": [0, 65535], "ant did you conuerse sir with this gentlewoman": [0, 65535], "did you conuerse sir with this gentlewoman what": [0, 65535], "you conuerse sir with this gentlewoman what is": [0, 65535], "conuerse sir with this gentlewoman what is the": [0, 65535], "sir with this gentlewoman what is the course": [0, 65535], "with this gentlewoman what is the course and": [0, 65535], "this gentlewoman what is the course and drift": [0, 65535], "gentlewoman what is the course and drift of": [0, 65535], "what is the course and drift of your": [0, 65535], "is the course and drift of your compact": [0, 65535], "the course and drift of your compact s": [0, 65535], "course and drift of your compact s dro": [0, 65535], "and drift of your compact s dro i": [0, 65535], "drift of your compact s dro i sir": [0, 65535], "of your compact s dro i sir i": [0, 65535], "your compact s dro i sir i neuer": [0, 65535], "compact s dro i sir i neuer saw": [0, 65535], "s dro i sir i neuer saw her": [0, 65535], "dro i sir i neuer saw her till": [0, 65535], "i sir i neuer saw her till this": [0, 65535], "sir i neuer saw her till this time": [0, 65535], "i neuer saw her till this time ant": [0, 65535], "neuer saw her till this time ant villaine": [0, 65535], "saw her till this time ant villaine thou": [0, 65535], "her till this time ant villaine thou liest": [0, 65535], "till this time ant villaine thou liest for": [0, 65535], "this time ant villaine thou liest for euen": [0, 65535], "time ant villaine thou liest for euen her": [0, 65535], "ant villaine thou liest for euen her verie": [0, 65535], "villaine thou liest for euen her verie words": [0, 65535], "thou liest for euen her verie words didst": [0, 65535], "liest for euen her verie words didst thou": [0, 65535], "for euen her verie words didst thou deliuer": [0, 65535], "euen her verie words didst thou deliuer to": [0, 65535], "her verie words didst thou deliuer to me": [0, 65535], "verie words didst thou deliuer to me on": [0, 65535], "words didst thou deliuer to me on the": [0, 65535], "didst thou deliuer to me on the mart": [0, 65535], "thou deliuer to me on the mart s": [0, 65535], "deliuer to me on the mart s dro": [0, 65535], "to me on the mart s dro i": [0, 65535], "me on the mart s dro i neuer": [0, 65535], "on the mart s dro i neuer spake": [0, 65535], "the mart s dro i neuer spake with": [0, 65535], "mart s dro i neuer spake with her": [0, 65535], "s dro i neuer spake with her in": [0, 65535], "dro i neuer spake with her in all": [0, 65535], "i neuer spake with her in all my": [0, 65535], "neuer spake with her in all my life": [0, 65535], "spake with her in all my life ant": [0, 65535], "with her in all my life ant how": [0, 65535], "her in all my life ant how can": [0, 65535], "in all my life ant how can she": [0, 65535], "all my life ant how can she thus": [0, 65535], "my life ant how can she thus then": [0, 65535], "life ant how can she thus then call": [0, 65535], "ant how can she thus then call vs": [0, 65535], "how can she thus then call vs by": [0, 65535], "can she thus then call vs by our": [0, 65535], "she thus then call vs by our names": [0, 65535], "thus then call vs by our names vnlesse": [0, 65535], "then call vs by our names vnlesse it": [0, 65535], "call vs by our names vnlesse it be": [0, 65535], "vs by our names vnlesse it be by": [0, 65535], "by our names vnlesse it be by inspiration": [0, 65535], "our names vnlesse it be by inspiration adri": [0, 65535], "names vnlesse it be by inspiration adri how": [0, 65535], "vnlesse it be by inspiration adri how ill": [0, 65535], "it be by inspiration adri how ill agrees": [0, 65535], "be by inspiration adri how ill agrees it": [0, 65535], "by inspiration adri how ill agrees it with": [0, 65535], "inspiration adri how ill agrees it with your": [0, 65535], "adri how ill agrees it with your grauitie": [0, 65535], "how ill agrees it with your grauitie to": [0, 65535], "ill agrees it with your grauitie to counterfeit": [0, 65535], "agrees it with your grauitie to counterfeit thus": [0, 65535], "it with your grauitie to counterfeit thus grosely": [0, 65535], "with your grauitie to counterfeit thus grosely with": [0, 65535], "your grauitie to counterfeit thus grosely with your": [0, 65535], "grauitie to counterfeit thus grosely with your slaue": [0, 65535], "to counterfeit thus grosely with your slaue abetting": [0, 65535], "counterfeit thus grosely with your slaue abetting him": [0, 65535], "thus grosely with your slaue abetting him to": [0, 65535], "grosely with your slaue abetting him to thwart": [0, 65535], "with your slaue abetting him to thwart me": [0, 65535], "your slaue abetting him to thwart me in": [0, 65535], "slaue abetting him to thwart me in my": [0, 65535], "abetting him to thwart me in my moode": [0, 65535], "him to thwart me in my moode be": [0, 65535], "to thwart me in my moode be it": [0, 65535], "thwart me in my moode be it my": [0, 65535], "me in my moode be it my wrong": [0, 65535], "in my moode be it my wrong you": [0, 65535], "my moode be it my wrong you are": [0, 65535], "moode be it my wrong you are from": [0, 65535], "be it my wrong you are from me": [0, 65535], "it my wrong you are from me exempt": [0, 65535], "my wrong you are from me exempt but": [0, 65535], "wrong you are from me exempt but wrong": [0, 65535], "you are from me exempt but wrong not": [0, 65535], "are from me exempt but wrong not that": [0, 65535], "from me exempt but wrong not that wrong": [0, 65535], "me exempt but wrong not that wrong with": [0, 65535], "exempt but wrong not that wrong with a": [0, 65535], "but wrong not that wrong with a more": [0, 65535], "wrong not that wrong with a more contempt": [0, 65535], "not that wrong with a more contempt come": [0, 65535], "that wrong with a more contempt come i": [0, 65535], "wrong with a more contempt come i will": [0, 65535], "with a more contempt come i will fasten": [0, 65535], "a more contempt come i will fasten on": [0, 65535], "more contempt come i will fasten on this": [0, 65535], "contempt come i will fasten on this sleeue": [0, 65535], "come i will fasten on this sleeue of": [0, 65535], "i will fasten on this sleeue of thine": [0, 65535], "will fasten on this sleeue of thine thou": [0, 65535], "fasten on this sleeue of thine thou art": [0, 65535], "on this sleeue of thine thou art an": [0, 65535], "this sleeue of thine thou art an elme": [0, 65535], "sleeue of thine thou art an elme my": [0, 65535], "of thine thou art an elme my husband": [0, 65535], "thine thou art an elme my husband i": [0, 65535], "thou art an elme my husband i a": [0, 65535], "art an elme my husband i a vine": [0, 65535], "an elme my husband i a vine whose": [0, 65535], "elme my husband i a vine whose weaknesse": [0, 65535], "my husband i a vine whose weaknesse married": [0, 65535], "husband i a vine whose weaknesse married to": [0, 65535], "i a vine whose weaknesse married to thy": [0, 65535], "a vine whose weaknesse married to thy stranger": [0, 65535], "vine whose weaknesse married to thy stranger state": [0, 65535], "whose weaknesse married to thy stranger state makes": [0, 65535], "weaknesse married to thy stranger state makes me": [0, 65535], "married to thy stranger state makes me with": [0, 65535], "to thy stranger state makes me with thy": [0, 65535], "thy stranger state makes me with thy strength": [0, 65535], "stranger state makes me with thy strength to": [0, 65535], "state makes me with thy strength to communicate": [0, 65535], "makes me with thy strength to communicate if": [0, 65535], "me with thy strength to communicate if ought": [0, 65535], "with thy strength to communicate if ought possesse": [0, 65535], "thy strength to communicate if ought possesse thee": [0, 65535], "strength to communicate if ought possesse thee from": [0, 65535], "to communicate if ought possesse thee from me": [0, 65535], "communicate if ought possesse thee from me it": [0, 65535], "if ought possesse thee from me it is": [0, 65535], "ought possesse thee from me it is drosse": [0, 65535], "possesse thee from me it is drosse vsurping": [0, 65535], "thee from me it is drosse vsurping iuie": [0, 65535], "from me it is drosse vsurping iuie brier": [0, 65535], "me it is drosse vsurping iuie brier or": [0, 65535], "it is drosse vsurping iuie brier or idle": [0, 65535], "is drosse vsurping iuie brier or idle mosse": [0, 65535], "drosse vsurping iuie brier or idle mosse who": [0, 65535], "vsurping iuie brier or idle mosse who all": [0, 65535], "iuie brier or idle mosse who all for": [0, 65535], "brier or idle mosse who all for want": [0, 65535], "or idle mosse who all for want of": [0, 65535], "idle mosse who all for want of pruning": [0, 65535], "mosse who all for want of pruning with": [0, 65535], "who all for want of pruning with intrusion": [0, 65535], "all for want of pruning with intrusion infect": [0, 65535], "for want of pruning with intrusion infect thy": [0, 65535], "want of pruning with intrusion infect thy sap": [0, 65535], "of pruning with intrusion infect thy sap and": [0, 65535], "pruning with intrusion infect thy sap and liue": [0, 65535], "with intrusion infect thy sap and liue on": [0, 65535], "intrusion infect thy sap and liue on thy": [0, 65535], "infect thy sap and liue on thy confusion": [0, 65535], "thy sap and liue on thy confusion ant": [0, 65535], "sap and liue on thy confusion ant to": [0, 65535], "and liue on thy confusion ant to mee": [0, 65535], "liue on thy confusion ant to mee shee": [0, 65535], "on thy confusion ant to mee shee speakes": [0, 65535], "thy confusion ant to mee shee speakes shee": [0, 65535], "confusion ant to mee shee speakes shee moues": [0, 65535], "ant to mee shee speakes shee moues mee": [0, 65535], "to mee shee speakes shee moues mee for": [0, 65535], "mee shee speakes shee moues mee for her": [0, 65535], "shee speakes shee moues mee for her theame": [0, 65535], "speakes shee moues mee for her theame what": [0, 65535], "shee moues mee for her theame what was": [0, 65535], "moues mee for her theame what was i": [0, 65535], "mee for her theame what was i married": [0, 65535], "for her theame what was i married to": [0, 65535], "her theame what was i married to her": [0, 65535], "theame what was i married to her in": [0, 65535], "what was i married to her in my": [0, 65535], "was i married to her in my dreame": [0, 65535], "i married to her in my dreame or": [0, 65535], "married to her in my dreame or sleepe": [0, 65535], "to her in my dreame or sleepe i": [0, 65535], "her in my dreame or sleepe i now": [0, 65535], "in my dreame or sleepe i now and": [0, 65535], "my dreame or sleepe i now and thinke": [0, 65535], "dreame or sleepe i now and thinke i": [0, 65535], "or sleepe i now and thinke i heare": [0, 65535], "sleepe i now and thinke i heare all": [0, 65535], "i now and thinke i heare all this": [0, 65535], "now and thinke i heare all this what": [0, 65535], "and thinke i heare all this what error": [0, 65535], "thinke i heare all this what error driues": [0, 65535], "i heare all this what error driues our": [0, 65535], "heare all this what error driues our eies": [0, 65535], "all this what error driues our eies and": [0, 65535], "this what error driues our eies and eares": [0, 65535], "what error driues our eies and eares amisse": [0, 65535], "error driues our eies and eares amisse vntill": [0, 65535], "driues our eies and eares amisse vntill i": [0, 65535], "our eies and eares amisse vntill i know": [0, 65535], "eies and eares amisse vntill i know this": [0, 65535], "and eares amisse vntill i know this sure": [0, 65535], "eares amisse vntill i know this sure vncertaintie": [0, 65535], "amisse vntill i know this sure vncertaintie ile": [0, 65535], "vntill i know this sure vncertaintie ile entertaine": [0, 65535], "i know this sure vncertaintie ile entertaine the": [0, 65535], "know this sure vncertaintie ile entertaine the free'd": [0, 65535], "this sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc dromio": [0, 65535], "ile entertaine the free'd fallacie luc dromio goe": [0, 65535], "entertaine the free'd fallacie luc dromio goe bid": [0, 65535], "the free'd fallacie luc dromio goe bid the": [0, 65535], "free'd fallacie luc dromio goe bid the seruants": [0, 65535], "fallacie luc dromio goe bid the seruants spred": [0, 65535], "luc dromio goe bid the seruants spred for": [0, 65535], "dromio goe bid the seruants spred for dinner": [0, 65535], "goe bid the seruants spred for dinner s": [0, 65535], "bid the seruants spred for dinner s dro": [0, 65535], "the seruants spred for dinner s dro oh": [0, 65535], "seruants spred for dinner s dro oh for": [0, 65535], "spred for dinner s dro oh for my": [0, 65535], "for dinner s dro oh for my beads": [0, 65535], "dinner s dro oh for my beads i": [0, 65535], "s dro oh for my beads i crosse": [0, 65535], "dro oh for my beads i crosse me": [0, 65535], "oh for my beads i crosse me for": [0, 65535], "for my beads i crosse me for a": [0, 65535], "my beads i crosse me for a sinner": [0, 65535], "beads i crosse me for a sinner this": [0, 65535], "i crosse me for a sinner this is": [0, 65535], "crosse me for a sinner this is the": [0, 65535], "me for a sinner this is the fairie": [0, 65535], "for a sinner this is the fairie land": [0, 65535], "a sinner this is the fairie land oh": [0, 65535], "sinner this is the fairie land oh spight": [0, 65535], "this is the fairie land oh spight of": [0, 65535], "is the fairie land oh spight of spights": [0, 65535], "the fairie land oh spight of spights we": [0, 65535], "fairie land oh spight of spights we talke": [0, 65535], "land oh spight of spights we talke with": [0, 65535], "oh spight of spights we talke with goblins": [0, 65535], "spight of spights we talke with goblins owles": [0, 65535], "of spights we talke with goblins owles and": [0, 65535], "spights we talke with goblins owles and sprights": [0, 65535], "we talke with goblins owles and sprights if": [0, 65535], "talke with goblins owles and sprights if we": [0, 65535], "with goblins owles and sprights if we obay": [0, 65535], "goblins owles and sprights if we obay them": [0, 65535], "owles and sprights if we obay them not": [0, 65535], "and sprights if we obay them not this": [0, 65535], "sprights if we obay them not this will": [0, 65535], "if we obay them not this will insue": [0, 65535], "we obay them not this will insue they'll": [0, 65535], "obay them not this will insue they'll sucke": [0, 65535], "them not this will insue they'll sucke our": [0, 65535], "not this will insue they'll sucke our breath": [0, 65535], "this will insue they'll sucke our breath or": [0, 65535], "will insue they'll sucke our breath or pinch": [0, 65535], "insue they'll sucke our breath or pinch vs": [0, 65535], "they'll sucke our breath or pinch vs blacke": [0, 65535], "sucke our breath or pinch vs blacke and": [0, 65535], "our breath or pinch vs blacke and blew": [0, 65535], "breath or pinch vs blacke and blew luc": [0, 65535], "or pinch vs blacke and blew luc why": [0, 65535], "pinch vs blacke and blew luc why prat'st": [0, 65535], "vs blacke and blew luc why prat'st thou": [0, 65535], "blacke and blew luc why prat'st thou to": [0, 65535], "and blew luc why prat'st thou to thy": [0, 65535], "blew luc why prat'st thou to thy selfe": [0, 65535], "luc why prat'st thou to thy selfe and": [0, 65535], "why prat'st thou to thy selfe and answer'st": [0, 65535], "prat'st thou to thy selfe and answer'st not": [0, 65535], "thou to thy selfe and answer'st not dromio": [0, 65535], "to thy selfe and answer'st not dromio thou": [0, 65535], "thy selfe and answer'st not dromio thou dromio": [0, 65535], "selfe and answer'st not dromio thou dromio thou": [0, 65535], "and answer'st not dromio thou dromio thou snaile": [0, 65535], "answer'st not dromio thou dromio thou snaile thou": [0, 65535], "not dromio thou dromio thou snaile thou slug": [0, 65535], "dromio thou dromio thou snaile thou slug thou": [0, 65535], "thou dromio thou snaile thou slug thou sot": [0, 65535], "dromio thou snaile thou slug thou sot s": [0, 65535], "thou snaile thou slug thou sot s dro": [0, 65535], "snaile thou slug thou sot s dro i": [0, 65535], "thou slug thou sot s dro i am": [0, 65535], "slug thou sot s dro i am transformed": [0, 65535], "thou sot s dro i am transformed master": [0, 65535], "sot s dro i am transformed master am": [0, 65535], "s dro i am transformed master am i": [0, 65535], "dro i am transformed master am i not": [0, 65535], "i am transformed master am i not ant": [0, 65535], "am transformed master am i not ant i": [0, 65535], "transformed master am i not ant i thinke": [0, 65535], "master am i not ant i thinke thou": [0, 65535], "am i not ant i thinke thou art": [0, 65535], "i not ant i thinke thou art in": [0, 65535], "not ant i thinke thou art in minde": [0, 65535], "ant i thinke thou art in minde and": [0, 65535], "i thinke thou art in minde and so": [0, 65535], "thinke thou art in minde and so am": [0, 65535], "thou art in minde and so am i": [0, 65535], "art in minde and so am i s": [0, 65535], "in minde and so am i s dro": [0, 65535], "minde and so am i s dro nay": [0, 65535], "and so am i s dro nay master": [0, 65535], "so am i s dro nay master both": [0, 65535], "am i s dro nay master both in": [0, 65535], "i s dro nay master both in minde": [0, 65535], "s dro nay master both in minde and": [0, 65535], "dro nay master both in minde and in": [0, 65535], "nay master both in minde and in my": [0, 65535], "master both in minde and in my shape": [0, 65535], "both in minde and in my shape ant": [0, 65535], "in minde and in my shape ant thou": [0, 65535], "minde and in my shape ant thou hast": [0, 65535], "and in my shape ant thou hast thine": [0, 65535], "in my shape ant thou hast thine owne": [0, 65535], "my shape ant thou hast thine owne forme": [0, 65535], "shape ant thou hast thine owne forme s": [0, 65535], "ant thou hast thine owne forme s dro": [0, 65535], "thou hast thine owne forme s dro no": [0, 65535], "hast thine owne forme s dro no i": [0, 65535], "thine owne forme s dro no i am": [0, 65535], "owne forme s dro no i am an": [0, 65535], "forme s dro no i am an ape": [0, 65535], "s dro no i am an ape luc": [0, 65535], "dro no i am an ape luc if": [0, 65535], "no i am an ape luc if thou": [0, 65535], "i am an ape luc if thou art": [0, 65535], "am an ape luc if thou art chang'd": [0, 65535], "an ape luc if thou art chang'd to": [0, 65535], "ape luc if thou art chang'd to ought": [0, 65535], "luc if thou art chang'd to ought 'tis": [0, 65535], "if thou art chang'd to ought 'tis to": [0, 65535], "thou art chang'd to ought 'tis to an": [0, 65535], "art chang'd to ought 'tis to an asse": [0, 65535], "chang'd to ought 'tis to an asse s": [0, 65535], "to ought 'tis to an asse s dro": [0, 65535], "ought 'tis to an asse s dro 'tis": [0, 65535], "'tis to an asse s dro 'tis true": [0, 65535], "to an asse s dro 'tis true she": [0, 65535], "an asse s dro 'tis true she rides": [0, 65535], "asse s dro 'tis true she rides me": [0, 65535], "s dro 'tis true she rides me and": [0, 65535], "dro 'tis true she rides me and i": [0, 65535], "'tis true she rides me and i long": [0, 65535], "true she rides me and i long for": [0, 65535], "she rides me and i long for grasse": [0, 65535], "rides me and i long for grasse 'tis": [0, 65535], "me and i long for grasse 'tis so": [0, 65535], "and i long for grasse 'tis so i": [0, 65535], "i long for grasse 'tis so i am": [0, 65535], "long for grasse 'tis so i am an": [0, 65535], "for grasse 'tis so i am an asse": [0, 65535], "grasse 'tis so i am an asse else": [0, 65535], "'tis so i am an asse else it": [0, 65535], "so i am an asse else it could": [0, 65535], "i am an asse else it could neuer": [0, 65535], "am an asse else it could neuer be": [0, 65535], "an asse else it could neuer be but": [0, 65535], "asse else it could neuer be but i": [0, 65535], "else it could neuer be but i should": [0, 65535], "it could neuer be but i should know": [0, 65535], "could neuer be but i should know her": [0, 65535], "neuer be but i should know her as": [0, 65535], "be but i should know her as well": [0, 65535], "but i should know her as well as": [0, 65535], "i should know her as well as she": [0, 65535], "should know her as well as she knowes": [0, 65535], "know her as well as she knowes me": [0, 65535], "her as well as she knowes me adr": [0, 65535], "as well as she knowes me adr come": [0, 65535], "well as she knowes me adr come come": [0, 65535], "as she knowes me adr come come no": [0, 65535], "she knowes me adr come come no longer": [0, 65535], "knowes me adr come come no longer will": [0, 65535], "me adr come come no longer will i": [0, 65535], "adr come come no longer will i be": [0, 65535], "come come no longer will i be a": [0, 65535], "come no longer will i be a foole": [0, 65535], "no longer will i be a foole to": [0, 65535], "longer will i be a foole to put": [0, 65535], "will i be a foole to put the": [0, 65535], "i be a foole to put the finger": [0, 65535], "be a foole to put the finger in": [0, 65535], "a foole to put the finger in the": [0, 65535], "foole to put the finger in the eie": [0, 65535], "to put the finger in the eie and": [0, 65535], "put the finger in the eie and weepe": [0, 65535], "the finger in the eie and weepe whil'st": [0, 65535], "finger in the eie and weepe whil'st man": [0, 65535], "in the eie and weepe whil'st man and": [0, 65535], "the eie and weepe whil'st man and master": [0, 65535], "eie and weepe whil'st man and master laughes": [0, 65535], "and weepe whil'st man and master laughes my": [0, 65535], "weepe whil'st man and master laughes my woes": [0, 65535], "whil'st man and master laughes my woes to": [0, 65535], "man and master laughes my woes to scorne": [0, 65535], "and master laughes my woes to scorne come": [0, 65535], "master laughes my woes to scorne come sir": [0, 65535], "laughes my woes to scorne come sir to": [0, 65535], "my woes to scorne come sir to dinner": [0, 65535], "woes to scorne come sir to dinner dromio": [0, 65535], "to scorne come sir to dinner dromio keepe": [0, 65535], "scorne come sir to dinner dromio keepe the": [0, 65535], "come sir to dinner dromio keepe the gate": [0, 65535], "sir to dinner dromio keepe the gate husband": [0, 65535], "to dinner dromio keepe the gate husband ile": [0, 65535], "dinner dromio keepe the gate husband ile dine": [0, 65535], "dromio keepe the gate husband ile dine aboue": [0, 65535], "keepe the gate husband ile dine aboue with": [0, 65535], "the gate husband ile dine aboue with you": [0, 65535], "gate husband ile dine aboue with you to": [0, 65535], "husband ile dine aboue with you to day": [0, 65535], "ile dine aboue with you to day and": [0, 65535], "dine aboue with you to day and shriue": [0, 65535], "aboue with you to day and shriue you": [0, 65535], "with you to day and shriue you of": [0, 65535], "you to day and shriue you of a": [0, 65535], "to day and shriue you of a thousand": [0, 65535], "day and shriue you of a thousand idle": [0, 65535], "and shriue you of a thousand idle prankes": [0, 65535], "shriue you of a thousand idle prankes sirra": [0, 65535], "you of a thousand idle prankes sirra if": [0, 65535], "of a thousand idle prankes sirra if any": [0, 65535], "a thousand idle prankes sirra if any aske": [0, 65535], "thousand idle prankes sirra if any aske you": [0, 65535], "idle prankes sirra if any aske you for": [0, 65535], "prankes sirra if any aske you for your": [0, 65535], "sirra if any aske you for your master": [0, 65535], "if any aske you for your master say": [0, 65535], "any aske you for your master say he": [0, 65535], "aske you for your master say he dines": [0, 65535], "you for your master say he dines forth": [0, 65535], "for your master say he dines forth and": [0, 65535], "your master say he dines forth and let": [0, 65535], "master say he dines forth and let no": [0, 65535], "say he dines forth and let no creature": [0, 65535], "he dines forth and let no creature enter": [0, 65535], "dines forth and let no creature enter come": [0, 65535], "forth and let no creature enter come sister": [0, 65535], "and let no creature enter come sister dromio": [0, 65535], "let no creature enter come sister dromio play": [0, 65535], "no creature enter come sister dromio play the": [0, 65535], "creature enter come sister dromio play the porter": [0, 65535], "enter come sister dromio play the porter well": [0, 65535], "come sister dromio play the porter well ant": [0, 65535], "sister dromio play the porter well ant am": [0, 65535], "dromio play the porter well ant am i": [0, 65535], "play the porter well ant am i in": [0, 65535], "the porter well ant am i in earth": [0, 65535], "porter well ant am i in earth in": [0, 65535], "well ant am i in earth in heauen": [0, 65535], "ant am i in earth in heauen or": [0, 65535], "am i in earth in heauen or in": [0, 65535], "i in earth in heauen or in hell": [0, 65535], "in earth in heauen or in hell sleeping": [0, 65535], "earth in heauen or in hell sleeping or": [0, 65535], "in heauen or in hell sleeping or waking": [0, 65535], "heauen or in hell sleeping or waking mad": [0, 65535], "or in hell sleeping or waking mad or": [0, 65535], "in hell sleeping or waking mad or well": [0, 65535], "hell sleeping or waking mad or well aduisde": [0, 65535], "sleeping or waking mad or well aduisde knowne": [0, 65535], "or waking mad or well aduisde knowne vnto": [0, 65535], "waking mad or well aduisde knowne vnto these": [0, 65535], "mad or well aduisde knowne vnto these and": [0, 65535], "or well aduisde knowne vnto these and to": [0, 65535], "well aduisde knowne vnto these and to my": [0, 65535], "aduisde knowne vnto these and to my selfe": [0, 65535], "knowne vnto these and to my selfe disguisde": [0, 65535], "vnto these and to my selfe disguisde ile": [0, 65535], "these and to my selfe disguisde ile say": [0, 65535], "and to my selfe disguisde ile say as": [0, 65535], "to my selfe disguisde ile say as they": [0, 65535], "my selfe disguisde ile say as they say": [0, 65535], "selfe disguisde ile say as they say and": [0, 65535], "disguisde ile say as they say and perseuer": [0, 65535], "ile say as they say and perseuer so": [0, 65535], "say as they say and perseuer so and": [0, 65535], "as they say and perseuer so and in": [0, 65535], "they say and perseuer so and in this": [0, 65535], "say and perseuer so and in this mist": [0, 65535], "and perseuer so and in this mist at": [0, 65535], "perseuer so and in this mist at all": [0, 65535], "so and in this mist at all aduentures": [0, 65535], "and in this mist at all aduentures go": [0, 65535], "in this mist at all aduentures go s": [0, 65535], "this mist at all aduentures go s dro": [0, 65535], "mist at all aduentures go s dro master": [0, 65535], "at all aduentures go s dro master shall": [0, 65535], "all aduentures go s dro master shall i": [0, 65535], "aduentures go s dro master shall i be": [0, 65535], "go s dro master shall i be porter": [0, 65535], "s dro master shall i be porter at": [0, 65535], "dro master shall i be porter at the": [0, 65535], "master shall i be porter at the gate": [0, 65535], "shall i be porter at the gate adr": [0, 65535], "i be porter at the gate adr i": [0, 65535], "be porter at the gate adr i and": [0, 65535], "porter at the gate adr i and let": [0, 65535], "at the gate adr i and let none": [0, 65535], "the gate adr i and let none enter": [0, 65535], "gate adr i and let none enter least": [0, 65535], "adr i and let none enter least i": [0, 65535], "i and let none enter least i breake": [0, 65535], "and let none enter least i breake your": [0, 65535], "let none enter least i breake your pate": [0, 65535], "none enter least i breake your pate luc": [0, 65535], "enter least i breake your pate luc come": [0, 65535], "least i breake your pate luc come come": [0, 65535], "i breake your pate luc come come antipholus": [0, 65535], "breake your pate luc come come antipholus we": [0, 65535], "your pate luc come come antipholus we dine": [0, 65535], "pate luc come come antipholus we dine to": [0, 65535], "luc come come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis sereptus with": [0, 65535], "secundus enter adriana wife to antipholis sereptus with luciana": [0, 65535], "enter adriana wife to antipholis sereptus with luciana her": [0, 65535], "adriana wife to antipholis sereptus with luciana her sister": [0, 65535], "wife to antipholis sereptus with luciana her sister adr": [0, 65535], "to antipholis sereptus with luciana her sister adr neither": [0, 65535], "antipholis sereptus with luciana her sister adr neither my": [0, 65535], "sereptus with luciana her sister adr neither my husband": [0, 65535], "with luciana her sister adr neither my husband nor": [0, 65535], "luciana her sister adr neither my husband nor the": [0, 65535], "her sister adr neither my husband nor the slaue": [0, 65535], "sister adr neither my husband nor the slaue return'd": [0, 65535], "adr neither my husband nor the slaue return'd that": [0, 65535], "neither my husband nor the slaue return'd that in": [0, 65535], "my husband nor the slaue return'd that in such": [0, 65535], "husband nor the slaue return'd that in such haste": [0, 65535], "nor the slaue return'd that in such haste i": [0, 65535], "the slaue return'd that in such haste i sent": [0, 65535], "slaue return'd that in such haste i sent to": [0, 65535], "return'd that in such haste i sent to seeke": [0, 65535], "that in such haste i sent to seeke his": [0, 65535], "in such haste i sent to seeke his master": [0, 65535], "such haste i sent to seeke his master sure": [0, 65535], "haste i sent to seeke his master sure luciana": [0, 65535], "i sent to seeke his master sure luciana it": [0, 65535], "sent to seeke his master sure luciana it is": [0, 65535], "to seeke his master sure luciana it is two": [0, 65535], "seeke his master sure luciana it is two a": [0, 65535], "his master sure luciana it is two a clocke": [0, 65535], "master sure luciana it is two a clocke luc": [0, 65535], "sure luciana it is two a clocke luc perhaps": [0, 65535], "luciana it is two a clocke luc perhaps some": [0, 65535], "it is two a clocke luc perhaps some merchant": [0, 65535], "is two a clocke luc perhaps some merchant hath": [0, 65535], "two a clocke luc perhaps some merchant hath inuited": [0, 65535], "a clocke luc perhaps some merchant hath inuited him": [0, 65535], "clocke luc perhaps some merchant hath inuited him and": [0, 65535], "luc perhaps some merchant hath inuited him and from": [0, 65535], "perhaps some merchant hath inuited him and from the": [0, 65535], "some merchant hath inuited him and from the mart": [0, 65535], "merchant hath inuited him and from the mart he's": [0, 65535], "hath inuited him and from the mart he's somewhere": [0, 65535], "inuited him and from the mart he's somewhere gone": [0, 65535], "him and from the mart he's somewhere gone to": [0, 65535], "and from the mart he's somewhere gone to dinner": [0, 65535], "from the mart he's somewhere gone to dinner good": [0, 65535], "the mart he's somewhere gone to dinner good sister": [0, 65535], "mart he's somewhere gone to dinner good sister let": [0, 65535], "he's somewhere gone to dinner good sister let vs": [0, 65535], "somewhere gone to dinner good sister let vs dine": [0, 65535], "gone to dinner good sister let vs dine and": [0, 65535], "to dinner good sister let vs dine and neuer": [0, 65535], "dinner good sister let vs dine and neuer fret": [0, 65535], "good sister let vs dine and neuer fret a": [0, 65535], "sister let vs dine and neuer fret a man": [0, 65535], "let vs dine and neuer fret a man is": [0, 65535], "vs dine and neuer fret a man is master": [0, 65535], "dine and neuer fret a man is master of": [0, 65535], "and neuer fret a man is master of his": [0, 65535], "neuer fret a man is master of his libertie": [0, 65535], "fret a man is master of his libertie time": [0, 65535], "a man is master of his libertie time is": [0, 65535], "man is master of his libertie time is their": [0, 65535], "is master of his libertie time is their master": [0, 65535], "master of his libertie time is their master and": [0, 65535], "of his libertie time is their master and when": [0, 65535], "his libertie time is their master and when they": [0, 65535], "libertie time is their master and when they see": [0, 65535], "time is their master and when they see time": [0, 65535], "is their master and when they see time they'll": [0, 65535], "their master and when they see time they'll goe": [0, 65535], "master and when they see time they'll goe or": [0, 65535], "and when they see time they'll goe or come": [0, 65535], "when they see time they'll goe or come if": [0, 65535], "they see time they'll goe or come if so": [0, 65535], "see time they'll goe or come if so be": [0, 65535], "time they'll goe or come if so be patient": [0, 65535], "they'll goe or come if so be patient sister": [0, 65535], "goe or come if so be patient sister adr": [0, 65535], "or come if so be patient sister adr why": [0, 65535], "come if so be patient sister adr why should": [0, 65535], "if so be patient sister adr why should their": [0, 65535], "so be patient sister adr why should their libertie": [0, 65535], "be patient sister adr why should their libertie then": [0, 65535], "patient sister adr why should their libertie then ours": [0, 65535], "sister adr why should their libertie then ours be": [0, 65535], "adr why should their libertie then ours be more": [0, 65535], "why should their libertie then ours be more luc": [0, 65535], "should their libertie then ours be more luc because": [0, 65535], "their libertie then ours be more luc because their": [0, 65535], "libertie then ours be more luc because their businesse": [0, 65535], "then ours be more luc because their businesse still": [0, 65535], "ours be more luc because their businesse still lies": [0, 65535], "be more luc because their businesse still lies out": [0, 65535], "more luc because their businesse still lies out a": [0, 65535], "luc because their businesse still lies out a dore": [0, 65535], "because their businesse still lies out a dore adr": [0, 65535], "their businesse still lies out a dore adr looke": [0, 65535], "businesse still lies out a dore adr looke when": [0, 65535], "still lies out a dore adr looke when i": [0, 65535], "lies out a dore adr looke when i serue": [0, 65535], "out a dore adr looke when i serue him": [0, 65535], "a dore adr looke when i serue him so": [0, 65535], "dore adr looke when i serue him so he": [0, 65535], "adr looke when i serue him so he takes": [0, 65535], "looke when i serue him so he takes it": [0, 65535], "when i serue him so he takes it thus": [0, 65535], "i serue him so he takes it thus luc": [0, 65535], "serue him so he takes it thus luc oh": [0, 65535], "him so he takes it thus luc oh know": [0, 65535], "so he takes it thus luc oh know he": [0, 65535], "he takes it thus luc oh know he is": [0, 65535], "takes it thus luc oh know he is the": [0, 65535], "it thus luc oh know he is the bridle": [0, 65535], "thus luc oh know he is the bridle of": [0, 65535], "luc oh know he is the bridle of your": [0, 65535], "oh know he is the bridle of your will": [0, 65535], "know he is the bridle of your will adr": [0, 65535], "he is the bridle of your will adr there's": [0, 65535], "is the bridle of your will adr there's none": [0, 65535], "the bridle of your will adr there's none but": [0, 65535], "bridle of your will adr there's none but asses": [0, 65535], "of your will adr there's none but asses will": [0, 65535], "your will adr there's none but asses will be": [0, 65535], "will adr there's none but asses will be bridled": [0, 65535], "adr there's none but asses will be bridled so": [0, 65535], "there's none but asses will be bridled so luc": [0, 65535], "none but asses will be bridled so luc why": [0, 65535], "but asses will be bridled so luc why headstrong": [0, 65535], "asses will be bridled so luc why headstrong liberty": [0, 65535], "will be bridled so luc why headstrong liberty is": [0, 65535], "be bridled so luc why headstrong liberty is lasht": [0, 65535], "bridled so luc why headstrong liberty is lasht with": [0, 65535], "so luc why headstrong liberty is lasht with woe": [0, 65535], "luc why headstrong liberty is lasht with woe there's": [0, 65535], "why headstrong liberty is lasht with woe there's nothing": [0, 65535], "headstrong liberty is lasht with woe there's nothing situate": [0, 65535], "liberty is lasht with woe there's nothing situate vnder": [0, 65535], "is lasht with woe there's nothing situate vnder heauens": [0, 65535], "lasht with woe there's nothing situate vnder heauens eye": [0, 65535], "with woe there's nothing situate vnder heauens eye but": [0, 65535], "woe there's nothing situate vnder heauens eye but hath": [0, 65535], "there's nothing situate vnder heauens eye but hath his": [0, 65535], "nothing situate vnder heauens eye but hath his bound": [0, 65535], "situate vnder heauens eye but hath his bound in": [0, 65535], "vnder heauens eye but hath his bound in earth": [0, 65535], "heauens eye but hath his bound in earth in": [0, 65535], "eye but hath his bound in earth in sea": [0, 65535], "but hath his bound in earth in sea in": [0, 65535], "hath his bound in earth in sea in skie": [0, 65535], "his bound in earth in sea in skie the": [0, 65535], "bound in earth in sea in skie the beasts": [0, 65535], "in earth in sea in skie the beasts the": [0, 65535], "earth in sea in skie the beasts the fishes": [0, 65535], "in sea in skie the beasts the fishes and": [0, 65535], "sea in skie the beasts the fishes and the": [0, 65535], "in skie the beasts the fishes and the winged": [0, 65535], "skie the beasts the fishes and the winged fowles": [0, 65535], "the beasts the fishes and the winged fowles are": [0, 65535], "beasts the fishes and the winged fowles are their": [0, 65535], "the fishes and the winged fowles are their males": [0, 65535], "fishes and the winged fowles are their males subiects": [0, 65535], "and the winged fowles are their males subiects and": [0, 65535], "the winged fowles are their males subiects and at": [0, 65535], "winged fowles are their males subiects and at their": [0, 65535], "fowles are their males subiects and at their controules": [0, 65535], "are their males subiects and at their controules man": [0, 65535], "their males subiects and at their controules man more": [0, 65535], "males subiects and at their controules man more diuine": [0, 65535], "subiects and at their controules man more diuine the": [0, 65535], "and at their controules man more diuine the master": [0, 65535], "at their controules man more diuine the master of": [0, 65535], "their controules man more diuine the master of all": [0, 65535], "controules man more diuine the master of all these": [0, 65535], "man more diuine the master of all these lord": [0, 65535], "more diuine the master of all these lord of": [0, 65535], "diuine the master of all these lord of the": [0, 65535], "the master of all these lord of the wide": [0, 65535], "master of all these lord of the wide world": [0, 65535], "of all these lord of the wide world and": [0, 65535], "all these lord of the wide world and wilde": [0, 65535], "these lord of the wide world and wilde watry": [0, 65535], "lord of the wide world and wilde watry seas": [0, 65535], "of the wide world and wilde watry seas indued": [0, 65535], "the wide world and wilde watry seas indued with": [0, 65535], "wide world and wilde watry seas indued with intellectuall": [0, 65535], "world and wilde watry seas indued with intellectuall sence": [0, 65535], "and wilde watry seas indued with intellectuall sence and": [0, 65535], "wilde watry seas indued with intellectuall sence and soules": [0, 65535], "watry seas indued with intellectuall sence and soules of": [0, 65535], "seas indued with intellectuall sence and soules of more": [0, 65535], "indued with intellectuall sence and soules of more preheminence": [0, 65535], "with intellectuall sence and soules of more preheminence then": [0, 65535], "intellectuall sence and soules of more preheminence then fish": [0, 65535], "sence and soules of more preheminence then fish and": [0, 65535], "and soules of more preheminence then fish and fowles": [0, 65535], "soules of more preheminence then fish and fowles are": [0, 65535], "of more preheminence then fish and fowles are masters": [0, 65535], "more preheminence then fish and fowles are masters to": [0, 65535], "preheminence then fish and fowles are masters to their": [0, 65535], "then fish and fowles are masters to their females": [0, 65535], "fish and fowles are masters to their females and": [0, 65535], "and fowles are masters to their females and their": [0, 65535], "fowles are masters to their females and their lords": [0, 65535], "are masters to their females and their lords then": [0, 65535], "masters to their females and their lords then let": [0, 65535], "to their females and their lords then let your": [0, 65535], "their females and their lords then let your will": [0, 65535], "females and their lords then let your will attend": [0, 65535], "and their lords then let your will attend on": [0, 65535], "their lords then let your will attend on their": [0, 65535], "lords then let your will attend on their accords": [0, 65535], "then let your will attend on their accords adri": [0, 65535], "let your will attend on their accords adri this": [0, 65535], "your will attend on their accords adri this seruitude": [0, 65535], "will attend on their accords adri this seruitude makes": [0, 65535], "attend on their accords adri this seruitude makes you": [0, 65535], "on their accords adri this seruitude makes you to": [0, 65535], "their accords adri this seruitude makes you to keepe": [0, 65535], "accords adri this seruitude makes you to keepe vnwed": [0, 65535], "adri this seruitude makes you to keepe vnwed luci": [0, 65535], "this seruitude makes you to keepe vnwed luci not": [0, 65535], "seruitude makes you to keepe vnwed luci not this": [0, 65535], "makes you to keepe vnwed luci not this but": [0, 65535], "you to keepe vnwed luci not this but troubles": [0, 65535], "to keepe vnwed luci not this but troubles of": [0, 65535], "keepe vnwed luci not this but troubles of the": [0, 65535], "vnwed luci not this but troubles of the marriage": [0, 65535], "luci not this but troubles of the marriage bed": [0, 65535], "not this but troubles of the marriage bed adr": [0, 65535], "this but troubles of the marriage bed adr but": [0, 65535], "but troubles of the marriage bed adr but were": [0, 65535], "troubles of the marriage bed adr but were you": [0, 65535], "of the marriage bed adr but were you wedded": [0, 65535], "the marriage bed adr but were you wedded you": [0, 65535], "marriage bed adr but were you wedded you wold": [0, 65535], "bed adr but were you wedded you wold bear": [0, 65535], "adr but were you wedded you wold bear some": [0, 65535], "but were you wedded you wold bear some sway": [0, 65535], "were you wedded you wold bear some sway luc": [0, 65535], "you wedded you wold bear some sway luc ere": [0, 65535], "wedded you wold bear some sway luc ere i": [0, 65535], "you wold bear some sway luc ere i learne": [0, 65535], "wold bear some sway luc ere i learne loue": [0, 65535], "bear some sway luc ere i learne loue ile": [0, 65535], "some sway luc ere i learne loue ile practise": [0, 65535], "sway luc ere i learne loue ile practise to": [0, 65535], "luc ere i learne loue ile practise to obey": [0, 65535], "ere i learne loue ile practise to obey adr": [0, 65535], "i learne loue ile practise to obey adr how": [0, 65535], "learne loue ile practise to obey adr how if": [0, 65535], "loue ile practise to obey adr how if your": [0, 65535], "ile practise to obey adr how if your husband": [0, 65535], "practise to obey adr how if your husband start": [0, 65535], "to obey adr how if your husband start some": [0, 65535], "obey adr how if your husband start some other": [0, 65535], "adr how if your husband start some other where": [0, 65535], "how if your husband start some other where luc": [0, 65535], "if your husband start some other where luc till": [0, 65535], "your husband start some other where luc till he": [0, 65535], "husband start some other where luc till he come": [0, 65535], "start some other where luc till he come home": [0, 65535], "some other where luc till he come home againe": [0, 65535], "other where luc till he come home againe i": [0, 65535], "where luc till he come home againe i would": [0, 65535], "luc till he come home againe i would forbeare": [0, 65535], "till he come home againe i would forbeare adr": [0, 65535], "he come home againe i would forbeare adr patience": [0, 65535], "come home againe i would forbeare adr patience vnmou'd": [0, 65535], "home againe i would forbeare adr patience vnmou'd no": [0, 65535], "againe i would forbeare adr patience vnmou'd no maruel": [0, 65535], "i would forbeare adr patience vnmou'd no maruel though": [0, 65535], "would forbeare adr patience vnmou'd no maruel though she": [0, 65535], "forbeare adr patience vnmou'd no maruel though she pause": [0, 65535], "adr patience vnmou'd no maruel though she pause they": [0, 65535], "patience vnmou'd no maruel though she pause they can": [0, 65535], "vnmou'd no maruel though she pause they can be": [0, 65535], "no maruel though she pause they can be meeke": [0, 65535], "maruel though she pause they can be meeke that": [0, 65535], "though she pause they can be meeke that haue": [0, 65535], "she pause they can be meeke that haue no": [0, 65535], "pause they can be meeke that haue no other": [0, 65535], "they can be meeke that haue no other cause": [0, 65535], "can be meeke that haue no other cause a": [0, 65535], "be meeke that haue no other cause a wretched": [0, 65535], "meeke that haue no other cause a wretched soule": [0, 65535], "that haue no other cause a wretched soule bruis'd": [0, 65535], "haue no other cause a wretched soule bruis'd with": [0, 65535], "no other cause a wretched soule bruis'd with aduersitie": [0, 65535], "other cause a wretched soule bruis'd with aduersitie we": [0, 65535], "cause a wretched soule bruis'd with aduersitie we bid": [0, 65535], "a wretched soule bruis'd with aduersitie we bid be": [0, 65535], "wretched soule bruis'd with aduersitie we bid be quiet": [0, 65535], "soule bruis'd with aduersitie we bid be quiet when": [0, 65535], "bruis'd with aduersitie we bid be quiet when we": [0, 65535], "with aduersitie we bid be quiet when we heare": [0, 65535], "aduersitie we bid be quiet when we heare it": [0, 65535], "we bid be quiet when we heare it crie": [0, 65535], "bid be quiet when we heare it crie but": [0, 65535], "be quiet when we heare it crie but were": [0, 65535], "quiet when we heare it crie but were we": [0, 65535], "when we heare it crie but were we burdned": [0, 65535], "we heare it crie but were we burdned with": [0, 65535], "heare it crie but were we burdned with like": [0, 65535], "it crie but were we burdned with like waight": [0, 65535], "crie but were we burdned with like waight of": [0, 65535], "but were we burdned with like waight of paine": [0, 65535], "were we burdned with like waight of paine as": [0, 65535], "we burdned with like waight of paine as much": [0, 65535], "burdned with like waight of paine as much or": [0, 65535], "with like waight of paine as much or more": [0, 65535], "like waight of paine as much or more we": [0, 65535], "waight of paine as much or more we should": [0, 65535], "of paine as much or more we should our": [0, 65535], "paine as much or more we should our selues": [0, 65535], "as much or more we should our selues complaine": [0, 65535], "much or more we should our selues complaine so": [0, 65535], "or more we should our selues complaine so thou": [0, 65535], "more we should our selues complaine so thou that": [0, 65535], "we should our selues complaine so thou that hast": [0, 65535], "should our selues complaine so thou that hast no": [0, 65535], "our selues complaine so thou that hast no vnkinde": [0, 65535], "selues complaine so thou that hast no vnkinde mate": [0, 65535], "complaine so thou that hast no vnkinde mate to": [0, 65535], "so thou that hast no vnkinde mate to greeue": [0, 65535], "thou that hast no vnkinde mate to greeue thee": [0, 65535], "that hast no vnkinde mate to greeue thee with": [0, 65535], "hast no vnkinde mate to greeue thee with vrging": [0, 65535], "no vnkinde mate to greeue thee with vrging helpelesse": [0, 65535], "vnkinde mate to greeue thee with vrging helpelesse patience": [0, 65535], "mate to greeue thee with vrging helpelesse patience would": [0, 65535], "to greeue thee with vrging helpelesse patience would releeue": [0, 65535], "greeue thee with vrging helpelesse patience would releeue me": [0, 65535], "thee with vrging helpelesse patience would releeue me but": [0, 65535], "with vrging helpelesse patience would releeue me but if": [0, 65535], "vrging helpelesse patience would releeue me but if thou": [0, 65535], "helpelesse patience would releeue me but if thou liue": [0, 65535], "patience would releeue me but if thou liue to": [0, 65535], "would releeue me but if thou liue to see": [0, 65535], "releeue me but if thou liue to see like": [0, 65535], "me but if thou liue to see like right": [0, 65535], "but if thou liue to see like right bereft": [0, 65535], "if thou liue to see like right bereft this": [0, 65535], "thou liue to see like right bereft this foole": [0, 65535], "liue to see like right bereft this foole beg'd": [0, 65535], "to see like right bereft this foole beg'd patience": [0, 65535], "see like right bereft this foole beg'd patience in": [0, 65535], "like right bereft this foole beg'd patience in thee": [0, 65535], "right bereft this foole beg'd patience in thee will": [0, 65535], "bereft this foole beg'd patience in thee will be": [0, 65535], "this foole beg'd patience in thee will be left": [0, 65535], "foole beg'd patience in thee will be left luci": [0, 65535], "beg'd patience in thee will be left luci well": [0, 65535], "patience in thee will be left luci well i": [0, 65535], "in thee will be left luci well i will": [0, 65535], "thee will be left luci well i will marry": [0, 65535], "will be left luci well i will marry one": [0, 65535], "be left luci well i will marry one day": [0, 65535], "left luci well i will marry one day but": [0, 65535], "luci well i will marry one day but to": [0, 65535], "well i will marry one day but to trie": [0, 65535], "i will marry one day but to trie heere": [0, 65535], "will marry one day but to trie heere comes": [0, 65535], "marry one day but to trie heere comes your": [0, 65535], "one day but to trie heere comes your man": [0, 65535], "day but to trie heere comes your man now": [0, 65535], "but to trie heere comes your man now is": [0, 65535], "to trie heere comes your man now is your": [0, 65535], "trie heere comes your man now is your husband": [0, 65535], "heere comes your man now is your husband nie": [0, 65535], "comes your man now is your husband nie enter": [0, 65535], "your man now is your husband nie enter dromio": [0, 65535], "man now is your husband nie enter dromio eph": [0, 65535], "now is your husband nie enter dromio eph adr": [0, 65535], "is your husband nie enter dromio eph adr say": [0, 65535], "your husband nie enter dromio eph adr say is": [0, 65535], "husband nie enter dromio eph adr say is your": [0, 65535], "nie enter dromio eph adr say is your tardie": [0, 65535], "enter dromio eph adr say is your tardie master": [0, 65535], "dromio eph adr say is your tardie master now": [0, 65535], "eph adr say is your tardie master now at": [0, 65535], "adr say is your tardie master now at hand": [0, 65535], "say is your tardie master now at hand e": [0, 65535], "is your tardie master now at hand e dro": [0, 65535], "your tardie master now at hand e dro nay": [0, 65535], "tardie master now at hand e dro nay hee's": [0, 65535], "master now at hand e dro nay hee's at": [0, 65535], "now at hand e dro nay hee's at too": [0, 65535], "at hand e dro nay hee's at too hands": [0, 65535], "hand e dro nay hee's at too hands with": [0, 65535], "e dro nay hee's at too hands with mee": [0, 65535], "dro nay hee's at too hands with mee and": [0, 65535], "nay hee's at too hands with mee and that": [0, 65535], "hee's at too hands with mee and that my": [0, 65535], "at too hands with mee and that my two": [0, 65535], "too hands with mee and that my two eares": [0, 65535], "hands with mee and that my two eares can": [0, 65535], "with mee and that my two eares can witnesse": [0, 65535], "mee and that my two eares can witnesse adr": [0, 65535], "and that my two eares can witnesse adr say": [0, 65535], "that my two eares can witnesse adr say didst": [0, 65535], "my two eares can witnesse adr say didst thou": [0, 65535], "two eares can witnesse adr say didst thou speake": [0, 65535], "eares can witnesse adr say didst thou speake with": [0, 65535], "can witnesse adr say didst thou speake with him": [0, 65535], "witnesse adr say didst thou speake with him knowst": [0, 65535], "adr say didst thou speake with him knowst thou": [0, 65535], "say didst thou speake with him knowst thou his": [0, 65535], "didst thou speake with him knowst thou his minde": [0, 65535], "thou speake with him knowst thou his minde e": [0, 65535], "speake with him knowst thou his minde e dro": [0, 65535], "with him knowst thou his minde e dro i": [0, 65535], "him knowst thou his minde e dro i i": [0, 65535], "knowst thou his minde e dro i i he": [0, 65535], "thou his minde e dro i i he told": [0, 65535], "his minde e dro i i he told his": [0, 65535], "minde e dro i i he told his minde": [0, 65535], "e dro i i he told his minde vpon": [0, 65535], "dro i i he told his minde vpon mine": [0, 65535], "i i he told his minde vpon mine eare": [0, 65535], "i he told his minde vpon mine eare beshrew": [0, 65535], "he told his minde vpon mine eare beshrew his": [0, 65535], "told his minde vpon mine eare beshrew his hand": [0, 65535], "his minde vpon mine eare beshrew his hand i": [0, 65535], "minde vpon mine eare beshrew his hand i scarce": [0, 65535], "vpon mine eare beshrew his hand i scarce could": [0, 65535], "mine eare beshrew his hand i scarce could vnderstand": [0, 65535], "eare beshrew his hand i scarce could vnderstand it": [0, 65535], "beshrew his hand i scarce could vnderstand it luc": [0, 65535], "his hand i scarce could vnderstand it luc spake": [0, 65535], "hand i scarce could vnderstand it luc spake hee": [0, 65535], "i scarce could vnderstand it luc spake hee so": [0, 65535], "scarce could vnderstand it luc spake hee so doubtfully": [0, 65535], "could vnderstand it luc spake hee so doubtfully thou": [0, 65535], "vnderstand it luc spake hee so doubtfully thou couldst": [0, 65535], "it luc spake hee so doubtfully thou couldst not": [0, 65535], "luc spake hee so doubtfully thou couldst not feele": [0, 65535], "spake hee so doubtfully thou couldst not feele his": [0, 65535], "hee so doubtfully thou couldst not feele his meaning": [0, 65535], "so doubtfully thou couldst not feele his meaning e": [0, 65535], "doubtfully thou couldst not feele his meaning e dro": [0, 65535], "thou couldst not feele his meaning e dro nay": [0, 65535], "couldst not feele his meaning e dro nay hee": [0, 65535], "not feele his meaning e dro nay hee strooke": [0, 65535], "feele his meaning e dro nay hee strooke so": [0, 65535], "his meaning e dro nay hee strooke so plainly": [0, 65535], "meaning e dro nay hee strooke so plainly i": [0, 65535], "e dro nay hee strooke so plainly i could": [0, 65535], "dro nay hee strooke so plainly i could too": [0, 65535], "nay hee strooke so plainly i could too well": [0, 65535], "hee strooke so plainly i could too well feele": [0, 65535], "strooke so plainly i could too well feele his": [0, 65535], "so plainly i could too well feele his blowes": [0, 65535], "plainly i could too well feele his blowes and": [0, 65535], "i could too well feele his blowes and withall": [0, 65535], "could too well feele his blowes and withall so": [0, 65535], "too well feele his blowes and withall so doubtfully": [0, 65535], "well feele his blowes and withall so doubtfully that": [0, 65535], "feele his blowes and withall so doubtfully that i": [0, 65535], "his blowes and withall so doubtfully that i could": [0, 65535], "blowes and withall so doubtfully that i could scarce": [0, 65535], "and withall so doubtfully that i could scarce vnderstand": [0, 65535], "withall so doubtfully that i could scarce vnderstand them": [0, 65535], "so doubtfully that i could scarce vnderstand them adri": [0, 65535], "doubtfully that i could scarce vnderstand them adri but": [0, 65535], "that i could scarce vnderstand them adri but say": [0, 65535], "i could scarce vnderstand them adri but say i": [0, 65535], "could scarce vnderstand them adri but say i prethee": [0, 65535], "scarce vnderstand them adri but say i prethee is": [0, 65535], "vnderstand them adri but say i prethee is he": [0, 65535], "them adri but say i prethee is he comming": [0, 65535], "adri but say i prethee is he comming home": [0, 65535], "but say i prethee is he comming home it": [0, 65535], "say i prethee is he comming home it seemes": [0, 65535], "i prethee is he comming home it seemes he": [0, 65535], "prethee is he comming home it seemes he hath": [0, 65535], "is he comming home it seemes he hath great": [0, 65535], "he comming home it seemes he hath great care": [0, 65535], "comming home it seemes he hath great care to": [0, 65535], "home it seemes he hath great care to please": [0, 65535], "it seemes he hath great care to please his": [0, 65535], "seemes he hath great care to please his wife": [0, 65535], "he hath great care to please his wife e": [0, 65535], "hath great care to please his wife e dro": [0, 65535], "great care to please his wife e dro why": [0, 65535], "care to please his wife e dro why mistresse": [0, 65535], "to please his wife e dro why mistresse sure": [0, 65535], "please his wife e dro why mistresse sure my": [0, 65535], "his wife e dro why mistresse sure my master": [0, 65535], "wife e dro why mistresse sure my master is": [0, 65535], "e dro why mistresse sure my master is horne": [0, 65535], "dro why mistresse sure my master is horne mad": [0, 65535], "why mistresse sure my master is horne mad adri": [0, 65535], "mistresse sure my master is horne mad adri horne": [0, 65535], "sure my master is horne mad adri horne mad": [0, 65535], "my master is horne mad adri horne mad thou": [0, 65535], "master is horne mad adri horne mad thou villaine": [0, 65535], "is horne mad adri horne mad thou villaine e": [0, 65535], "horne mad adri horne mad thou villaine e dro": [0, 65535], "mad adri horne mad thou villaine e dro i": [0, 65535], "adri horne mad thou villaine e dro i meane": [0, 65535], "horne mad thou villaine e dro i meane not": [0, 65535], "mad thou villaine e dro i meane not cuckold": [0, 65535], "thou villaine e dro i meane not cuckold mad": [0, 65535], "villaine e dro i meane not cuckold mad but": [0, 65535], "e dro i meane not cuckold mad but sure": [0, 65535], "dro i meane not cuckold mad but sure he": [0, 65535], "i meane not cuckold mad but sure he is": [0, 65535], "meane not cuckold mad but sure he is starke": [0, 65535], "not cuckold mad but sure he is starke mad": [0, 65535], "cuckold mad but sure he is starke mad when": [0, 65535], "mad but sure he is starke mad when i": [0, 65535], "but sure he is starke mad when i desir'd": [0, 65535], "sure he is starke mad when i desir'd him": [0, 65535], "he is starke mad when i desir'd him to": [0, 65535], "is starke mad when i desir'd him to come": [0, 65535], "starke mad when i desir'd him to come home": [0, 65535], "mad when i desir'd him to come home to": [0, 65535], "when i desir'd him to come home to dinner": [0, 65535], "i desir'd him to come home to dinner he": [0, 65535], "desir'd him to come home to dinner he ask'd": [0, 65535], "him to come home to dinner he ask'd me": [0, 65535], "to come home to dinner he ask'd me for": [0, 65535], "come home to dinner he ask'd me for a": [0, 65535], "home to dinner he ask'd me for a hundred": [0, 65535], "to dinner he ask'd me for a hundred markes": [0, 65535], "dinner he ask'd me for a hundred markes in": [0, 65535], "he ask'd me for a hundred markes in gold": [0, 65535], "ask'd me for a hundred markes in gold 'tis": [0, 65535], "me for a hundred markes in gold 'tis dinner": [0, 65535], "for a hundred markes in gold 'tis dinner time": [0, 65535], "a hundred markes in gold 'tis dinner time quoth": [0, 65535], "hundred markes in gold 'tis dinner time quoth i": [0, 65535], "markes in gold 'tis dinner time quoth i my": [0, 65535], "in gold 'tis dinner time quoth i my gold": [0, 65535], "gold 'tis dinner time quoth i my gold quoth": [0, 65535], "'tis dinner time quoth i my gold quoth he": [0, 65535], "dinner time quoth i my gold quoth he your": [0, 65535], "time quoth i my gold quoth he your meat": [0, 65535], "quoth i my gold quoth he your meat doth": [0, 65535], "i my gold quoth he your meat doth burne": [0, 65535], "my gold quoth he your meat doth burne quoth": [0, 65535], "gold quoth he your meat doth burne quoth i": [0, 65535], "quoth he your meat doth burne quoth i my": [0, 65535], "he your meat doth burne quoth i my gold": [0, 65535], "your meat doth burne quoth i my gold quoth": [0, 65535], "meat doth burne quoth i my gold quoth he": [0, 65535], "doth burne quoth i my gold quoth he will": [0, 65535], "burne quoth i my gold quoth he will you": [0, 65535], "quoth i my gold quoth he will you come": [0, 65535], "i my gold quoth he will you come quoth": [0, 65535], "my gold quoth he will you come quoth i": [0, 65535], "gold quoth he will you come quoth i my": [0, 65535], "quoth he will you come quoth i my gold": [0, 65535], "he will you come quoth i my gold quoth": [0, 65535], "will you come quoth i my gold quoth he": [0, 65535], "you come quoth i my gold quoth he where": [0, 65535], "come quoth i my gold quoth he where is": [0, 65535], "quoth i my gold quoth he where is the": [0, 65535], "i my gold quoth he where is the thousand": [0, 65535], "my gold quoth he where is the thousand markes": [0, 65535], "gold quoth he where is the thousand markes i": [0, 65535], "quoth he where is the thousand markes i gaue": [0, 65535], "he where is the thousand markes i gaue thee": [0, 65535], "where is the thousand markes i gaue thee villaine": [0, 65535], "is the thousand markes i gaue thee villaine the": [0, 65535], "the thousand markes i gaue thee villaine the pigge": [0, 65535], "thousand markes i gaue thee villaine the pigge quoth": [0, 65535], "markes i gaue thee villaine the pigge quoth i": [0, 65535], "i gaue thee villaine the pigge quoth i is": [0, 65535], "gaue thee villaine the pigge quoth i is burn'd": [0, 65535], "thee villaine the pigge quoth i is burn'd my": [0, 65535], "villaine the pigge quoth i is burn'd my gold": [0, 65535], "the pigge quoth i is burn'd my gold quoth": [0, 65535], "pigge quoth i is burn'd my gold quoth he": [0, 65535], "quoth i is burn'd my gold quoth he my": [0, 65535], "i is burn'd my gold quoth he my mistresse": [0, 65535], "is burn'd my gold quoth he my mistresse sir": [0, 65535], "burn'd my gold quoth he my mistresse sir quoth": [0, 65535], "my gold quoth he my mistresse sir quoth i": [0, 65535], "gold quoth he my mistresse sir quoth i hang": [0, 65535], "quoth he my mistresse sir quoth i hang vp": [0, 65535], "he my mistresse sir quoth i hang vp thy": [0, 65535], "my mistresse sir quoth i hang vp thy mistresse": [0, 65535], "mistresse sir quoth i hang vp thy mistresse i": [0, 65535], "sir quoth i hang vp thy mistresse i know": [0, 65535], "quoth i hang vp thy mistresse i know not": [0, 65535], "i hang vp thy mistresse i know not thy": [0, 65535], "hang vp thy mistresse i know not thy mistresse": [0, 65535], "vp thy mistresse i know not thy mistresse out": [0, 65535], "thy mistresse i know not thy mistresse out on": [0, 65535], "mistresse i know not thy mistresse out on thy": [0, 65535], "i know not thy mistresse out on thy mistresse": [0, 65535], "know not thy mistresse out on thy mistresse luci": [0, 65535], "not thy mistresse out on thy mistresse luci quoth": [0, 65535], "thy mistresse out on thy mistresse luci quoth who": [0, 65535], "mistresse out on thy mistresse luci quoth who e": [0, 65535], "out on thy mistresse luci quoth who e dr": [0, 65535], "on thy mistresse luci quoth who e dr quoth": [0, 65535], "thy mistresse luci quoth who e dr quoth my": [0, 65535], "mistresse luci quoth who e dr quoth my master": [0, 65535], "luci quoth who e dr quoth my master i": [0, 65535], "quoth who e dr quoth my master i know": [0, 65535], "who e dr quoth my master i know quoth": [0, 65535], "e dr quoth my master i know quoth he": [0, 65535], "dr quoth my master i know quoth he no": [0, 65535], "quoth my master i know quoth he no house": [0, 65535], "my master i know quoth he no house no": [0, 65535], "master i know quoth he no house no wife": [0, 65535], "i know quoth he no house no wife no": [0, 65535], "know quoth he no house no wife no mistresse": [0, 65535], "quoth he no house no wife no mistresse so": [0, 65535], "he no house no wife no mistresse so that": [0, 65535], "no house no wife no mistresse so that my": [0, 65535], "house no wife no mistresse so that my arrant": [0, 65535], "no wife no mistresse so that my arrant due": [0, 65535], "wife no mistresse so that my arrant due vnto": [0, 65535], "no mistresse so that my arrant due vnto my": [0, 65535], "mistresse so that my arrant due vnto my tongue": [0, 65535], "so that my arrant due vnto my tongue i": [0, 65535], "that my arrant due vnto my tongue i thanke": [0, 65535], "my arrant due vnto my tongue i thanke him": [0, 65535], "arrant due vnto my tongue i thanke him i": [0, 65535], "due vnto my tongue i thanke him i bare": [0, 65535], "vnto my tongue i thanke him i bare home": [0, 65535], "my tongue i thanke him i bare home vpon": [0, 65535], "tongue i thanke him i bare home vpon my": [0, 65535], "i thanke him i bare home vpon my shoulders": [0, 65535], "thanke him i bare home vpon my shoulders for": [0, 65535], "him i bare home vpon my shoulders for in": [0, 65535], "i bare home vpon my shoulders for in conclusion": [0, 65535], "bare home vpon my shoulders for in conclusion he": [0, 65535], "home vpon my shoulders for in conclusion he did": [0, 65535], "vpon my shoulders for in conclusion he did beat": [0, 65535], "my shoulders for in conclusion he did beat me": [0, 65535], "shoulders for in conclusion he did beat me there": [0, 65535], "for in conclusion he did beat me there adri": [0, 65535], "in conclusion he did beat me there adri go": [0, 65535], "conclusion he did beat me there adri go back": [0, 65535], "he did beat me there adri go back againe": [0, 65535], "did beat me there adri go back againe thou": [0, 65535], "beat me there adri go back againe thou slaue": [0, 65535], "me there adri go back againe thou slaue fetch": [0, 65535], "there adri go back againe thou slaue fetch him": [0, 65535], "adri go back againe thou slaue fetch him home": [0, 65535], "go back againe thou slaue fetch him home dro": [0, 65535], "back againe thou slaue fetch him home dro goe": [0, 65535], "againe thou slaue fetch him home dro goe backe": [0, 65535], "thou slaue fetch him home dro goe backe againe": [0, 65535], "slaue fetch him home dro goe backe againe and": [0, 65535], "fetch him home dro goe backe againe and be": [0, 65535], "him home dro goe backe againe and be new": [0, 65535], "home dro goe backe againe and be new beaten": [0, 65535], "dro goe backe againe and be new beaten home": [0, 65535], "goe backe againe and be new beaten home for": [0, 65535], "backe againe and be new beaten home for gods": [0, 65535], "againe and be new beaten home for gods sake": [0, 65535], "and be new beaten home for gods sake send": [0, 65535], "be new beaten home for gods sake send some": [0, 65535], "new beaten home for gods sake send some other": [0, 65535], "beaten home for gods sake send some other messenger": [0, 65535], "home for gods sake send some other messenger adri": [0, 65535], "for gods sake send some other messenger adri backe": [0, 65535], "gods sake send some other messenger adri backe slaue": [0, 65535], "sake send some other messenger adri backe slaue or": [0, 65535], "send some other messenger adri backe slaue or i": [0, 65535], "some other messenger adri backe slaue or i will": [0, 65535], "other messenger adri backe slaue or i will breake": [0, 65535], "messenger adri backe slaue or i will breake thy": [0, 65535], "adri backe slaue or i will breake thy pate": [0, 65535], "backe slaue or i will breake thy pate a": [0, 65535], "slaue or i will breake thy pate a crosse": [0, 65535], "or i will breake thy pate a crosse dro": [0, 65535], "i will breake thy pate a crosse dro and": [0, 65535], "will breake thy pate a crosse dro and he": [0, 65535], "breake thy pate a crosse dro and he will": [0, 65535], "thy pate a crosse dro and he will blesse": [0, 65535], "pate a crosse dro and he will blesse the": [0, 65535], "a crosse dro and he will blesse the crosse": [0, 65535], "crosse dro and he will blesse the crosse with": [0, 65535], "dro and he will blesse the crosse with other": [0, 65535], "and he will blesse the crosse with other beating": [0, 65535], "he will blesse the crosse with other beating betweene": [0, 65535], "will blesse the crosse with other beating betweene you": [0, 65535], "blesse the crosse with other beating betweene you i": [0, 65535], "the crosse with other beating betweene you i shall": [0, 65535], "crosse with other beating betweene you i shall haue": [0, 65535], "with other beating betweene you i shall haue a": [0, 65535], "other beating betweene you i shall haue a holy": [0, 65535], "beating betweene you i shall haue a holy head": [0, 65535], "betweene you i shall haue a holy head adri": [0, 65535], "you i shall haue a holy head adri hence": [0, 65535], "i shall haue a holy head adri hence prating": [0, 65535], "shall haue a holy head adri hence prating pesant": [0, 65535], "haue a holy head adri hence prating pesant fetch": [0, 65535], "a holy head adri hence prating pesant fetch thy": [0, 65535], "holy head adri hence prating pesant fetch thy master": [0, 65535], "head adri hence prating pesant fetch thy master home": [0, 65535], "adri hence prating pesant fetch thy master home dro": [0, 65535], "hence prating pesant fetch thy master home dro am": [0, 65535], "prating pesant fetch thy master home dro am i": [0, 65535], "pesant fetch thy master home dro am i so": [0, 65535], "fetch thy master home dro am i so round": [0, 65535], "thy master home dro am i so round with": [0, 65535], "master home dro am i so round with you": [0, 65535], "home dro am i so round with you as": [0, 65535], "dro am i so round with you as you": [0, 65535], "am i so round with you as you with": [0, 65535], "i so round with you as you with me": [0, 65535], "so round with you as you with me that": [0, 65535], "round with you as you with me that like": [0, 65535], "with you as you with me that like a": [0, 65535], "you as you with me that like a foot": [0, 65535], "as you with me that like a foot ball": [0, 65535], "you with me that like a foot ball you": [0, 65535], "with me that like a foot ball you doe": [0, 65535], "me that like a foot ball you doe spurne": [0, 65535], "that like a foot ball you doe spurne me": [0, 65535], "like a foot ball you doe spurne me thus": [0, 65535], "a foot ball you doe spurne me thus you": [0, 65535], "foot ball you doe spurne me thus you spurne": [0, 65535], "ball you doe spurne me thus you spurne me": [0, 65535], "you doe spurne me thus you spurne me hence": [0, 65535], "doe spurne me thus you spurne me hence and": [0, 65535], "spurne me thus you spurne me hence and he": [0, 65535], "me thus you spurne me hence and he will": [0, 65535], "thus you spurne me hence and he will spurne": [0, 65535], "you spurne me hence and he will spurne me": [0, 65535], "spurne me hence and he will spurne me hither": [0, 65535], "me hence and he will spurne me hither if": [0, 65535], "hence and he will spurne me hither if i": [0, 65535], "and he will spurne me hither if i last": [0, 65535], "he will spurne me hither if i last in": [0, 65535], "will spurne me hither if i last in this": [0, 65535], "spurne me hither if i last in this seruice": [0, 65535], "me hither if i last in this seruice you": [0, 65535], "hither if i last in this seruice you must": [0, 65535], "if i last in this seruice you must case": [0, 65535], "i last in this seruice you must case me": [0, 65535], "last in this seruice you must case me in": [0, 65535], "in this seruice you must case me in leather": [0, 65535], "this seruice you must case me in leather luci": [0, 65535], "seruice you must case me in leather luci fie": [0, 65535], "you must case me in leather luci fie how": [0, 65535], "must case me in leather luci fie how impatience": [0, 65535], "case me in leather luci fie how impatience lowreth": [0, 65535], "me in leather luci fie how impatience lowreth in": [0, 65535], "in leather luci fie how impatience lowreth in your": [0, 65535], "leather luci fie how impatience lowreth in your face": [0, 65535], "luci fie how impatience lowreth in your face adri": [0, 65535], "fie how impatience lowreth in your face adri his": [0, 65535], "how impatience lowreth in your face adri his company": [0, 65535], "impatience lowreth in your face adri his company must": [0, 65535], "lowreth in your face adri his company must do": [0, 65535], "in your face adri his company must do his": [0, 65535], "your face adri his company must do his minions": [0, 65535], "face adri his company must do his minions grace": [0, 65535], "adri his company must do his minions grace whil'st": [0, 65535], "his company must do his minions grace whil'st i": [0, 65535], "company must do his minions grace whil'st i at": [0, 65535], "must do his minions grace whil'st i at home": [0, 65535], "do his minions grace whil'st i at home starue": [0, 65535], "his minions grace whil'st i at home starue for": [0, 65535], "minions grace whil'st i at home starue for a": [0, 65535], "grace whil'st i at home starue for a merrie": [0, 65535], "whil'st i at home starue for a merrie looke": [0, 65535], "i at home starue for a merrie looke hath": [0, 65535], "at home starue for a merrie looke hath homelie": [0, 65535], "home starue for a merrie looke hath homelie age": [0, 65535], "starue for a merrie looke hath homelie age th'": [0, 65535], "for a merrie looke hath homelie age th' alluring": [0, 65535], "a merrie looke hath homelie age th' alluring beauty": [0, 65535], "merrie looke hath homelie age th' alluring beauty tooke": [0, 65535], "looke hath homelie age th' alluring beauty tooke from": [0, 65535], "hath homelie age th' alluring beauty tooke from my": [0, 65535], "homelie age th' alluring beauty tooke from my poore": [0, 65535], "age th' alluring beauty tooke from my poore cheeke": [0, 65535], "th' alluring beauty tooke from my poore cheeke then": [0, 65535], "alluring beauty tooke from my poore cheeke then he": [0, 65535], "beauty tooke from my poore cheeke then he hath": [0, 65535], "tooke from my poore cheeke then he hath wasted": [0, 65535], "from my poore cheeke then he hath wasted it": [0, 65535], "my poore cheeke then he hath wasted it are": [0, 65535], "poore cheeke then he hath wasted it are my": [0, 65535], "cheeke then he hath wasted it are my discourses": [0, 65535], "then he hath wasted it are my discourses dull": [0, 65535], "he hath wasted it are my discourses dull barren": [0, 65535], "hath wasted it are my discourses dull barren my": [0, 65535], "wasted it are my discourses dull barren my wit": [0, 65535], "it are my discourses dull barren my wit if": [0, 65535], "are my discourses dull barren my wit if voluble": [0, 65535], "my discourses dull barren my wit if voluble and": [0, 65535], "discourses dull barren my wit if voluble and sharpe": [0, 65535], "dull barren my wit if voluble and sharpe discourse": [0, 65535], "barren my wit if voluble and sharpe discourse be": [0, 65535], "my wit if voluble and sharpe discourse be mar'd": [0, 65535], "wit if voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "if voluble and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts it more": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it more then": [0, 65535], "discourse be mar'd vnkindnesse blunts it more then marble": [0, 65535], "be mar'd vnkindnesse blunts it more then marble hard": [0, 65535], "mar'd vnkindnesse blunts it more then marble hard doe": [0, 65535], "vnkindnesse blunts it more then marble hard doe their": [0, 65535], "blunts it more then marble hard doe their gay": [0, 65535], "it more then marble hard doe their gay vestments": [0, 65535], "more then marble hard doe their gay vestments his": [0, 65535], "then marble hard doe their gay vestments his affections": [0, 65535], "marble hard doe their gay vestments his affections baite": [0, 65535], "hard doe their gay vestments his affections baite that's": [0, 65535], "doe their gay vestments his affections baite that's not": [0, 65535], "their gay vestments his affections baite that's not my": [0, 65535], "gay vestments his affections baite that's not my fault": [0, 65535], "vestments his affections baite that's not my fault hee's": [0, 65535], "his affections baite that's not my fault hee's master": [0, 65535], "affections baite that's not my fault hee's master of": [0, 65535], "baite that's not my fault hee's master of my": [0, 65535], "that's not my fault hee's master of my state": [0, 65535], "not my fault hee's master of my state what": [0, 65535], "my fault hee's master of my state what ruines": [0, 65535], "fault hee's master of my state what ruines are": [0, 65535], "hee's master of my state what ruines are in": [0, 65535], "master of my state what ruines are in me": [0, 65535], "of my state what ruines are in me that": [0, 65535], "my state what ruines are in me that can": [0, 65535], "state what ruines are in me that can be": [0, 65535], "what ruines are in me that can be found": [0, 65535], "ruines are in me that can be found by": [0, 65535], "are in me that can be found by him": [0, 65535], "in me that can be found by him not": [0, 65535], "me that can be found by him not ruin'd": [0, 65535], "that can be found by him not ruin'd then": [0, 65535], "can be found by him not ruin'd then is": [0, 65535], "be found by him not ruin'd then is he": [0, 65535], "found by him not ruin'd then is he the": [0, 65535], "by him not ruin'd then is he the ground": [0, 65535], "him not ruin'd then is he the ground of": [0, 65535], "not ruin'd then is he the ground of my": [0, 65535], "ruin'd then is he the ground of my defeatures": [0, 65535], "then is he the ground of my defeatures my": [0, 65535], "is he the ground of my defeatures my decayed": [0, 65535], "he the ground of my defeatures my decayed faire": [0, 65535], "the ground of my defeatures my decayed faire a": [0, 65535], "ground of my defeatures my decayed faire a sunnie": [0, 65535], "of my defeatures my decayed faire a sunnie looke": [0, 65535], "my defeatures my decayed faire a sunnie looke of": [0, 65535], "defeatures my decayed faire a sunnie looke of his": [0, 65535], "my decayed faire a sunnie looke of his would": [0, 65535], "decayed faire a sunnie looke of his would soone": [0, 65535], "faire a sunnie looke of his would soone repaire": [0, 65535], "a sunnie looke of his would soone repaire but": [0, 65535], "sunnie looke of his would soone repaire but too": [0, 65535], "looke of his would soone repaire but too vnruly": [0, 65535], "of his would soone repaire but too vnruly deere": [0, 65535], "his would soone repaire but too vnruly deere he": [0, 65535], "would soone repaire but too vnruly deere he breakes": [0, 65535], "soone repaire but too vnruly deere he breakes the": [0, 65535], "repaire but too vnruly deere he breakes the pale": [0, 65535], "but too vnruly deere he breakes the pale and": [0, 65535], "too vnruly deere he breakes the pale and feedes": [0, 65535], "vnruly deere he breakes the pale and feedes from": [0, 65535], "deere he breakes the pale and feedes from home": [0, 65535], "he breakes the pale and feedes from home poore": [0, 65535], "breakes the pale and feedes from home poore i": [0, 65535], "the pale and feedes from home poore i am": [0, 65535], "pale and feedes from home poore i am but": [0, 65535], "and feedes from home poore i am but his": [0, 65535], "feedes from home poore i am but his stale": [0, 65535], "from home poore i am but his stale luci": [0, 65535], "home poore i am but his stale luci selfe": [0, 65535], "poore i am but his stale luci selfe harming": [0, 65535], "i am but his stale luci selfe harming iealousie": [0, 65535], "am but his stale luci selfe harming iealousie fie": [0, 65535], "but his stale luci selfe harming iealousie fie beat": [0, 65535], "his stale luci selfe harming iealousie fie beat it": [0, 65535], "stale luci selfe harming iealousie fie beat it hence": [0, 65535], "luci selfe harming iealousie fie beat it hence ad": [0, 65535], "selfe harming iealousie fie beat it hence ad vnfeeling": [0, 65535], "harming iealousie fie beat it hence ad vnfeeling fools": [0, 65535], "iealousie fie beat it hence ad vnfeeling fools can": [0, 65535], "fie beat it hence ad vnfeeling fools can with": [0, 65535], "beat it hence ad vnfeeling fools can with such": [0, 65535], "it hence ad vnfeeling fools can with such wrongs": [0, 65535], "hence ad vnfeeling fools can with such wrongs dispence": [0, 65535], "ad vnfeeling fools can with such wrongs dispence i": [0, 65535], "vnfeeling fools can with such wrongs dispence i know": [0, 65535], "fools can with such wrongs dispence i know his": [0, 65535], "can with such wrongs dispence i know his eye": [0, 65535], "with such wrongs dispence i know his eye doth": [0, 65535], "such wrongs dispence i know his eye doth homage": [0, 65535], "wrongs dispence i know his eye doth homage other": [0, 65535], "dispence i know his eye doth homage other where": [0, 65535], "i know his eye doth homage other where or": [0, 65535], "know his eye doth homage other where or else": [0, 65535], "his eye doth homage other where or else what": [0, 65535], "eye doth homage other where or else what lets": [0, 65535], "doth homage other where or else what lets it": [0, 65535], "homage other where or else what lets it but": [0, 65535], "other where or else what lets it but he": [0, 65535], "where or else what lets it but he would": [0, 65535], "or else what lets it but he would be": [0, 65535], "else what lets it but he would be here": [0, 65535], "what lets it but he would be here sister": [0, 65535], "lets it but he would be here sister you": [0, 65535], "it but he would be here sister you know": [0, 65535], "but he would be here sister you know he": [0, 65535], "he would be here sister you know he promis'd": [0, 65535], "would be here sister you know he promis'd me": [0, 65535], "be here sister you know he promis'd me a": [0, 65535], "here sister you know he promis'd me a chaine": [0, 65535], "sister you know he promis'd me a chaine would": [0, 65535], "you know he promis'd me a chaine would that": [0, 65535], "know he promis'd me a chaine would that alone": [0, 65535], "he promis'd me a chaine would that alone a": [0, 65535], "promis'd me a chaine would that alone a loue": [0, 65535], "me a chaine would that alone a loue he": [0, 65535], "a chaine would that alone a loue he would": [0, 65535], "chaine would that alone a loue he would detaine": [0, 65535], "would that alone a loue he would detaine so": [0, 65535], "that alone a loue he would detaine so he": [0, 65535], "alone a loue he would detaine so he would": [0, 65535], "a loue he would detaine so he would keepe": [0, 65535], "loue he would detaine so he would keepe faire": [0, 65535], "he would detaine so he would keepe faire quarter": [0, 65535], "would detaine so he would keepe faire quarter with": [0, 65535], "detaine so he would keepe faire quarter with his": [0, 65535], "so he would keepe faire quarter with his bed": [0, 65535], "he would keepe faire quarter with his bed i": [0, 65535], "would keepe faire quarter with his bed i see": [0, 65535], "keepe faire quarter with his bed i see the": [0, 65535], "faire quarter with his bed i see the iewell": [0, 65535], "quarter with his bed i see the iewell best": [0, 65535], "with his bed i see the iewell best enamaled": [0, 65535], "his bed i see the iewell best enamaled will": [0, 65535], "bed i see the iewell best enamaled will loose": [0, 65535], "i see the iewell best enamaled will loose his": [0, 65535], "see the iewell best enamaled will loose his beautie": [0, 65535], "the iewell best enamaled will loose his beautie yet": [0, 65535], "iewell best enamaled will loose his beautie yet the": [0, 65535], "best enamaled will loose his beautie yet the gold": [0, 65535], "enamaled will loose his beautie yet the gold bides": [0, 65535], "will loose his beautie yet the gold bides still": [0, 65535], "loose his beautie yet the gold bides still that": [0, 65535], "his beautie yet the gold bides still that others": [0, 65535], "beautie yet the gold bides still that others touch": [0, 65535], "yet the gold bides still that others touch and": [0, 65535], "the gold bides still that others touch and often": [0, 65535], "gold bides still that others touch and often touching": [0, 65535], "bides still that others touch and often touching will": [0, 65535], "still that others touch and often touching will where": [0, 65535], "that others touch and often touching will where gold": [0, 65535], "others touch and often touching will where gold and": [0, 65535], "touch and often touching will where gold and no": [0, 65535], "and often touching will where gold and no man": [0, 65535], "often touching will where gold and no man that": [0, 65535], "touching will where gold and no man that hath": [0, 65535], "will where gold and no man that hath a": [0, 65535], "where gold and no man that hath a name": [0, 65535], "gold and no man that hath a name by": [0, 65535], "and no man that hath a name by falshood": [0, 65535], "no man that hath a name by falshood and": [0, 65535], "man that hath a name by falshood and corruption": [0, 65535], "that hath a name by falshood and corruption doth": [0, 65535], "hath a name by falshood and corruption doth it": [0, 65535], "a name by falshood and corruption doth it shame": [0, 65535], "name by falshood and corruption doth it shame since": [0, 65535], "by falshood and corruption doth it shame since that": [0, 65535], "falshood and corruption doth it shame since that my": [0, 65535], "and corruption doth it shame since that my beautie": [0, 65535], "corruption doth it shame since that my beautie cannot": [0, 65535], "doth it shame since that my beautie cannot please": [0, 65535], "it shame since that my beautie cannot please his": [0, 65535], "shame since that my beautie cannot please his eie": [0, 65535], "since that my beautie cannot please his eie ile": [0, 65535], "that my beautie cannot please his eie ile weepe": [0, 65535], "my beautie cannot please his eie ile weepe what's": [0, 65535], "beautie cannot please his eie ile weepe what's left": [0, 65535], "cannot please his eie ile weepe what's left away": [0, 65535], "please his eie ile weepe what's left away and": [0, 65535], "his eie ile weepe what's left away and weeping": [0, 65535], "eie ile weepe what's left away and weeping die": [0, 65535], "ile weepe what's left away and weeping die luci": [0, 65535], "weepe what's left away and weeping die luci how": [0, 65535], "what's left away and weeping die luci how manie": [0, 65535], "left away and weeping die luci how manie fond": [0, 65535], "away and weeping die luci how manie fond fooles": [0, 65535], "and weeping die luci how manie fond fooles serue": [0, 65535], "weeping die luci how manie fond fooles serue mad": [0, 65535], "die luci how manie fond fooles serue mad ielousie": [0, 65535], "luci how manie fond fooles serue mad ielousie exit": [0, 65535], "how manie fond fooles serue mad ielousie exit enter": [0, 65535], "manie fond fooles serue mad ielousie exit enter antipholis": [0, 65535], "fond fooles serue mad ielousie exit enter antipholis errotis": [0, 65535], "fooles serue mad ielousie exit enter antipholis errotis ant": [0, 65535], "serue mad ielousie exit enter antipholis errotis ant the": [0, 65535], "mad ielousie exit enter antipholis errotis ant the gold": [0, 65535], "ielousie exit enter antipholis errotis ant the gold i": [0, 65535], "exit enter antipholis errotis ant the gold i gaue": [0, 65535], "enter antipholis errotis ant the gold i gaue to": [0, 65535], "antipholis errotis ant the gold i gaue to dromio": [0, 65535], "errotis ant the gold i gaue to dromio is": [0, 65535], "ant the gold i gaue to dromio is laid": [0, 65535], "the gold i gaue to dromio is laid vp": [0, 65535], "gold i gaue to dromio is laid vp safe": [0, 65535], "i gaue to dromio is laid vp safe at": [0, 65535], "gaue to dromio is laid vp safe at the": [0, 65535], "to dromio is laid vp safe at the centaur": [0, 65535], "dromio is laid vp safe at the centaur and": [0, 65535], "is laid vp safe at the centaur and the": [0, 65535], "laid vp safe at the centaur and the heedfull": [0, 65535], "vp safe at the centaur and the heedfull slaue": [0, 65535], "safe at the centaur and the heedfull slaue is": [0, 65535], "at the centaur and the heedfull slaue is wandred": [0, 65535], "the centaur and the heedfull slaue is wandred forth": [0, 65535], "centaur and the heedfull slaue is wandred forth in": [0, 65535], "and the heedfull slaue is wandred forth in care": [0, 65535], "the heedfull slaue is wandred forth in care to": [0, 65535], "heedfull slaue is wandred forth in care to seeke": [0, 65535], "slaue is wandred forth in care to seeke me": [0, 65535], "is wandred forth in care to seeke me out": [0, 65535], "wandred forth in care to seeke me out by": [0, 65535], "forth in care to seeke me out by computation": [0, 65535], "in care to seeke me out by computation and": [0, 65535], "care to seeke me out by computation and mine": [0, 65535], "to seeke me out by computation and mine hosts": [0, 65535], "seeke me out by computation and mine hosts report": [0, 65535], "me out by computation and mine hosts report i": [0, 65535], "out by computation and mine hosts report i could": [0, 65535], "by computation and mine hosts report i could not": [0, 65535], "computation and mine hosts report i could not speake": [0, 65535], "and mine hosts report i could not speake with": [0, 65535], "mine hosts report i could not speake with dromio": [0, 65535], "hosts report i could not speake with dromio since": [0, 65535], "report i could not speake with dromio since at": [0, 65535], "i could not speake with dromio since at first": [0, 65535], "could not speake with dromio since at first i": [0, 65535], "not speake with dromio since at first i sent": [0, 65535], "speake with dromio since at first i sent him": [0, 65535], "with dromio since at first i sent him from": [0, 65535], "dromio since at first i sent him from the": [0, 65535], "since at first i sent him from the mart": [0, 65535], "at first i sent him from the mart see": [0, 65535], "first i sent him from the mart see here": [0, 65535], "i sent him from the mart see here he": [0, 65535], "sent him from the mart see here he comes": [0, 65535], "him from the mart see here he comes enter": [0, 65535], "from the mart see here he comes enter dromio": [0, 65535], "the mart see here he comes enter dromio siracusia": [0, 65535], "mart see here he comes enter dromio siracusia how": [0, 65535], "see here he comes enter dromio siracusia how now": [0, 65535], "here he comes enter dromio siracusia how now sir": [0, 65535], "he comes enter dromio siracusia how now sir is": [0, 65535], "comes enter dromio siracusia how now sir is your": [0, 65535], "enter dromio siracusia how now sir is your merrie": [0, 65535], "dromio siracusia how now sir is your merrie humor": [0, 65535], "siracusia how now sir is your merrie humor alter'd": [0, 65535], "how now sir is your merrie humor alter'd as": [0, 65535], "now sir is your merrie humor alter'd as you": [0, 65535], "sir is your merrie humor alter'd as you loue": [0, 65535], "is your merrie humor alter'd as you loue stroakes": [0, 65535], "your merrie humor alter'd as you loue stroakes so": [0, 65535], "merrie humor alter'd as you loue stroakes so iest": [0, 65535], "humor alter'd as you loue stroakes so iest with": [0, 65535], "alter'd as you loue stroakes so iest with me": [0, 65535], "as you loue stroakes so iest with me againe": [0, 65535], "you loue stroakes so iest with me againe you": [0, 65535], "loue stroakes so iest with me againe you know": [0, 65535], "stroakes so iest with me againe you know no": [0, 65535], "so iest with me againe you know no centaur": [0, 65535], "iest with me againe you know no centaur you": [0, 65535], "with me againe you know no centaur you receiu'd": [0, 65535], "me againe you know no centaur you receiu'd no": [0, 65535], "againe you know no centaur you receiu'd no gold": [0, 65535], "you know no centaur you receiu'd no gold your": [0, 65535], "know no centaur you receiu'd no gold your mistresse": [0, 65535], "no centaur you receiu'd no gold your mistresse sent": [0, 65535], "centaur you receiu'd no gold your mistresse sent to": [0, 65535], "you receiu'd no gold your mistresse sent to haue": [0, 65535], "receiu'd no gold your mistresse sent to haue me": [0, 65535], "no gold your mistresse sent to haue me home": [0, 65535], "gold your mistresse sent to haue me home to": [0, 65535], "your mistresse sent to haue me home to dinner": [0, 65535], "mistresse sent to haue me home to dinner my": [0, 65535], "sent to haue me home to dinner my house": [0, 65535], "to haue me home to dinner my house was": [0, 65535], "haue me home to dinner my house was at": [0, 65535], "me home to dinner my house was at the": [0, 65535], "home to dinner my house was at the ph\u0153nix": [0, 65535], "to dinner my house was at the ph\u0153nix wast": [0, 65535], "dinner my house was at the ph\u0153nix wast thou": [0, 65535], "my house was at the ph\u0153nix wast thou mad": [0, 65535], "house was at the ph\u0153nix wast thou mad that": [0, 65535], "was at the ph\u0153nix wast thou mad that thus": [0, 65535], "at the ph\u0153nix wast thou mad that thus so": [0, 65535], "the ph\u0153nix wast thou mad that thus so madlie": [0, 65535], "ph\u0153nix wast thou mad that thus so madlie thou": [0, 65535], "wast thou mad that thus so madlie thou did": [0, 65535], "thou mad that thus so madlie thou did didst": [0, 65535], "mad that thus so madlie thou did didst answere": [0, 65535], "that thus so madlie thou did didst answere me": [0, 65535], "thus so madlie thou did didst answere me s": [0, 65535], "so madlie thou did didst answere me s dro": [0, 65535], "madlie thou did didst answere me s dro what": [0, 65535], "thou did didst answere me s dro what answer": [0, 65535], "did didst answere me s dro what answer sir": [0, 65535], "didst answere me s dro what answer sir when": [0, 65535], "answere me s dro what answer sir when spake": [0, 65535], "me s dro what answer sir when spake i": [0, 65535], "s dro what answer sir when spake i such": [0, 65535], "dro what answer sir when spake i such a": [0, 65535], "what answer sir when spake i such a word": [0, 65535], "answer sir when spake i such a word e": [0, 65535], "sir when spake i such a word e ant": [0, 65535], "when spake i such a word e ant euen": [0, 65535], "spake i such a word e ant euen now": [0, 65535], "i such a word e ant euen now euen": [0, 65535], "such a word e ant euen now euen here": [0, 65535], "a word e ant euen now euen here not": [0, 65535], "word e ant euen now euen here not halfe": [0, 65535], "e ant euen now euen here not halfe an": [0, 65535], "ant euen now euen here not halfe an howre": [0, 65535], "euen now euen here not halfe an howre since": [0, 65535], "now euen here not halfe an howre since s": [0, 65535], "euen here not halfe an howre since s dro": [0, 65535], "here not halfe an howre since s dro i": [0, 65535], "not halfe an howre since s dro i did": [0, 65535], "halfe an howre since s dro i did not": [0, 65535], "an howre since s dro i did not see": [0, 65535], "howre since s dro i did not see you": [0, 65535], "since s dro i did not see you since": [0, 65535], "s dro i did not see you since you": [0, 65535], "dro i did not see you since you sent": [0, 65535], "i did not see you since you sent me": [0, 65535], "did not see you since you sent me hence": [0, 65535], "not see you since you sent me hence home": [0, 65535], "see you since you sent me hence home to": [0, 65535], "you since you sent me hence home to the": [0, 65535], "since you sent me hence home to the centaur": [0, 65535], "you sent me hence home to the centaur with": [0, 65535], "sent me hence home to the centaur with the": [0, 65535], "me hence home to the centaur with the gold": [0, 65535], "hence home to the centaur with the gold you": [0, 65535], "home to the centaur with the gold you gaue": [0, 65535], "to the centaur with the gold you gaue me": [0, 65535], "the centaur with the gold you gaue me ant": [0, 65535], "centaur with the gold you gaue me ant villaine": [0, 65535], "with the gold you gaue me ant villaine thou": [0, 65535], "the gold you gaue me ant villaine thou didst": [0, 65535], "gold you gaue me ant villaine thou didst denie": [0, 65535], "you gaue me ant villaine thou didst denie the": [0, 65535], "gaue me ant villaine thou didst denie the golds": [0, 65535], "me ant villaine thou didst denie the golds receit": [0, 65535], "ant villaine thou didst denie the golds receit and": [0, 65535], "villaine thou didst denie the golds receit and toldst": [0, 65535], "thou didst denie the golds receit and toldst me": [0, 65535], "didst denie the golds receit and toldst me of": [0, 65535], "denie the golds receit and toldst me of a": [0, 65535], "the golds receit and toldst me of a mistresse": [0, 65535], "golds receit and toldst me of a mistresse and": [0, 65535], "receit and toldst me of a mistresse and a": [0, 65535], "and toldst me of a mistresse and a dinner": [0, 65535], "toldst me of a mistresse and a dinner for": [0, 65535], "me of a mistresse and a dinner for which": [0, 65535], "of a mistresse and a dinner for which i": [0, 65535], "a mistresse and a dinner for which i hope": [0, 65535], "mistresse and a dinner for which i hope thou": [0, 65535], "and a dinner for which i hope thou feltst": [0, 65535], "a dinner for which i hope thou feltst i": [0, 65535], "dinner for which i hope thou feltst i was": [0, 65535], "for which i hope thou feltst i was displeas'd": [0, 65535], "which i hope thou feltst i was displeas'd s": [0, 65535], "i hope thou feltst i was displeas'd s dro": [0, 65535], "hope thou feltst i was displeas'd s dro i": [0, 65535], "thou feltst i was displeas'd s dro i am": [0, 65535], "feltst i was displeas'd s dro i am glad": [0, 65535], "i was displeas'd s dro i am glad to": [0, 65535], "was displeas'd s dro i am glad to see": [0, 65535], "displeas'd s dro i am glad to see you": [0, 65535], "s dro i am glad to see you in": [0, 65535], "dro i am glad to see you in this": [0, 65535], "i am glad to see you in this merrie": [0, 65535], "am glad to see you in this merrie vaine": [0, 65535], "glad to see you in this merrie vaine what": [0, 65535], "to see you in this merrie vaine what meanes": [0, 65535], "see you in this merrie vaine what meanes this": [0, 65535], "you in this merrie vaine what meanes this iest": [0, 65535], "in this merrie vaine what meanes this iest i": [0, 65535], "this merrie vaine what meanes this iest i pray": [0, 65535], "merrie vaine what meanes this iest i pray you": [0, 65535], "vaine what meanes this iest i pray you master": [0, 65535], "what meanes this iest i pray you master tell": [0, 65535], "meanes this iest i pray you master tell me": [0, 65535], "this iest i pray you master tell me ant": [0, 65535], "iest i pray you master tell me ant yea": [0, 65535], "i pray you master tell me ant yea dost": [0, 65535], "pray you master tell me ant yea dost thou": [0, 65535], "you master tell me ant yea dost thou ieere": [0, 65535], "master tell me ant yea dost thou ieere flowt": [0, 65535], "tell me ant yea dost thou ieere flowt me": [0, 65535], "me ant yea dost thou ieere flowt me in": [0, 65535], "ant yea dost thou ieere flowt me in the": [0, 65535], "yea dost thou ieere flowt me in the teeth": [0, 65535], "dost thou ieere flowt me in the teeth thinkst": [0, 65535], "thou ieere flowt me in the teeth thinkst thou": [0, 65535], "ieere flowt me in the teeth thinkst thou i": [0, 65535], "flowt me in the teeth thinkst thou i iest": [0, 65535], "me in the teeth thinkst thou i iest hold": [0, 65535], "in the teeth thinkst thou i iest hold take": [0, 65535], "the teeth thinkst thou i iest hold take thou": [0, 65535], "teeth thinkst thou i iest hold take thou that": [0, 65535], "thinkst thou i iest hold take thou that that": [0, 65535], "thou i iest hold take thou that that beats": [0, 65535], "i iest hold take thou that that beats dro": [0, 65535], "iest hold take thou that that beats dro s": [0, 65535], "hold take thou that that beats dro s dr": [0, 65535], "take thou that that beats dro s dr hold": [0, 65535], "thou that that beats dro s dr hold sir": [0, 65535], "that that beats dro s dr hold sir for": [0, 65535], "that beats dro s dr hold sir for gods": [0, 65535], "beats dro s dr hold sir for gods sake": [0, 65535], "dro s dr hold sir for gods sake now": [0, 65535], "s dr hold sir for gods sake now your": [0, 65535], "dr hold sir for gods sake now your iest": [0, 65535], "hold sir for gods sake now your iest is": [0, 65535], "sir for gods sake now your iest is earnest": [0, 65535], "for gods sake now your iest is earnest vpon": [0, 65535], "gods sake now your iest is earnest vpon what": [0, 65535], "sake now your iest is earnest vpon what bargaine": [0, 65535], "now your iest is earnest vpon what bargaine do": [0, 65535], "your iest is earnest vpon what bargaine do you": [0, 65535], "iest is earnest vpon what bargaine do you giue": [0, 65535], "is earnest vpon what bargaine do you giue it": [0, 65535], "earnest vpon what bargaine do you giue it me": [0, 65535], "vpon what bargaine do you giue it me antiph": [0, 65535], "what bargaine do you giue it me antiph because": [0, 65535], "bargaine do you giue it me antiph because that": [0, 65535], "do you giue it me antiph because that i": [0, 65535], "you giue it me antiph because that i familiarlie": [0, 65535], "giue it me antiph because that i familiarlie sometimes": [0, 65535], "it me antiph because that i familiarlie sometimes doe": [0, 65535], "me antiph because that i familiarlie sometimes doe vse": [0, 65535], "antiph because that i familiarlie sometimes doe vse you": [0, 65535], "because that i familiarlie sometimes doe vse you for": [0, 65535], "that i familiarlie sometimes doe vse you for my": [0, 65535], "i familiarlie sometimes doe vse you for my foole": [0, 65535], "familiarlie sometimes doe vse you for my foole and": [0, 65535], "sometimes doe vse you for my foole and chat": [0, 65535], "doe vse you for my foole and chat with": [0, 65535], "vse you for my foole and chat with you": [0, 65535], "you for my foole and chat with you your": [0, 65535], "for my foole and chat with you your sawcinesse": [0, 65535], "my foole and chat with you your sawcinesse will": [0, 65535], "foole and chat with you your sawcinesse will iest": [0, 65535], "and chat with you your sawcinesse will iest vpon": [0, 65535], "chat with you your sawcinesse will iest vpon my": [0, 65535], "with you your sawcinesse will iest vpon my loue": [0, 65535], "you your sawcinesse will iest vpon my loue and": [0, 65535], "your sawcinesse will iest vpon my loue and make": [0, 65535], "sawcinesse will iest vpon my loue and make a": [0, 65535], "will iest vpon my loue and make a common": [0, 65535], "iest vpon my loue and make a common of": [0, 65535], "vpon my loue and make a common of my": [0, 65535], "my loue and make a common of my serious": [0, 65535], "loue and make a common of my serious howres": [0, 65535], "and make a common of my serious howres when": [0, 65535], "make a common of my serious howres when the": [0, 65535], "a common of my serious howres when the sunne": [0, 65535], "common of my serious howres when the sunne shines": [0, 65535], "of my serious howres when the sunne shines let": [0, 65535], "my serious howres when the sunne shines let foolish": [0, 65535], "serious howres when the sunne shines let foolish gnats": [0, 65535], "howres when the sunne shines let foolish gnats make": [0, 65535], "when the sunne shines let foolish gnats make sport": [0, 65535], "the sunne shines let foolish gnats make sport but": [0, 65535], "sunne shines let foolish gnats make sport but creepe": [0, 65535], "shines let foolish gnats make sport but creepe in": [0, 65535], "let foolish gnats make sport but creepe in crannies": [0, 65535], "foolish gnats make sport but creepe in crannies when": [0, 65535], "gnats make sport but creepe in crannies when he": [0, 65535], "make sport but creepe in crannies when he hides": [0, 65535], "sport but creepe in crannies when he hides his": [0, 65535], "but creepe in crannies when he hides his beames": [0, 65535], "creepe in crannies when he hides his beames if": [0, 65535], "in crannies when he hides his beames if you": [0, 65535], "crannies when he hides his beames if you will": [0, 65535], "when he hides his beames if you will iest": [0, 65535], "he hides his beames if you will iest with": [0, 65535], "hides his beames if you will iest with me": [0, 65535], "his beames if you will iest with me know": [0, 65535], "beames if you will iest with me know my": [0, 65535], "if you will iest with me know my aspect": [0, 65535], "you will iest with me know my aspect and": [0, 65535], "will iest with me know my aspect and fashion": [0, 65535], "iest with me know my aspect and fashion your": [0, 65535], "with me know my aspect and fashion your demeanor": [0, 65535], "me know my aspect and fashion your demeanor to": [0, 65535], "know my aspect and fashion your demeanor to my": [0, 65535], "my aspect and fashion your demeanor to my lookes": [0, 65535], "aspect and fashion your demeanor to my lookes or": [0, 65535], "and fashion your demeanor to my lookes or i": [0, 65535], "fashion your demeanor to my lookes or i will": [0, 65535], "your demeanor to my lookes or i will beat": [0, 65535], "demeanor to my lookes or i will beat this": [0, 65535], "to my lookes or i will beat this method": [0, 65535], "my lookes or i will beat this method in": [0, 65535], "lookes or i will beat this method in your": [0, 65535], "or i will beat this method in your sconce": [0, 65535], "i will beat this method in your sconce s": [0, 65535], "will beat this method in your sconce s dro": [0, 65535], "beat this method in your sconce s dro sconce": [0, 65535], "this method in your sconce s dro sconce call": [0, 65535], "method in your sconce s dro sconce call you": [0, 65535], "in your sconce s dro sconce call you it": [0, 65535], "your sconce s dro sconce call you it so": [0, 65535], "sconce s dro sconce call you it so you": [0, 65535], "s dro sconce call you it so you would": [0, 65535], "dro sconce call you it so you would leaue": [0, 65535], "sconce call you it so you would leaue battering": [0, 65535], "call you it so you would leaue battering i": [0, 65535], "you it so you would leaue battering i had": [0, 65535], "it so you would leaue battering i had rather": [0, 65535], "so you would leaue battering i had rather haue": [0, 65535], "you would leaue battering i had rather haue it": [0, 65535], "would leaue battering i had rather haue it a": [0, 65535], "leaue battering i had rather haue it a head": [0, 65535], "battering i had rather haue it a head and": [0, 65535], "i had rather haue it a head and you": [0, 65535], "had rather haue it a head and you vse": [0, 65535], "rather haue it a head and you vse these": [0, 65535], "haue it a head and you vse these blows": [0, 65535], "it a head and you vse these blows long": [0, 65535], "a head and you vse these blows long i": [0, 65535], "head and you vse these blows long i must": [0, 65535], "and you vse these blows long i must get": [0, 65535], "you vse these blows long i must get a": [0, 65535], "vse these blows long i must get a sconce": [0, 65535], "these blows long i must get a sconce for": [0, 65535], "blows long i must get a sconce for my": [0, 65535], "long i must get a sconce for my head": [0, 65535], "i must get a sconce for my head and": [0, 65535], "must get a sconce for my head and insconce": [0, 65535], "get a sconce for my head and insconce it": [0, 65535], "a sconce for my head and insconce it to": [0, 65535], "sconce for my head and insconce it to or": [0, 65535], "for my head and insconce it to or else": [0, 65535], "my head and insconce it to or else i": [0, 65535], "head and insconce it to or else i shall": [0, 65535], "and insconce it to or else i shall seek": [0, 65535], "insconce it to or else i shall seek my": [0, 65535], "it to or else i shall seek my wit": [0, 65535], "to or else i shall seek my wit in": [0, 65535], "or else i shall seek my wit in my": [0, 65535], "else i shall seek my wit in my shoulders": [0, 65535], "i shall seek my wit in my shoulders but": [0, 65535], "shall seek my wit in my shoulders but i": [0, 65535], "seek my wit in my shoulders but i pray": [0, 65535], "my wit in my shoulders but i pray sir": [0, 65535], "wit in my shoulders but i pray sir why": [0, 65535], "in my shoulders but i pray sir why am": [0, 65535], "my shoulders but i pray sir why am i": [0, 65535], "shoulders but i pray sir why am i beaten": [0, 65535], "but i pray sir why am i beaten ant": [0, 65535], "i pray sir why am i beaten ant dost": [0, 65535], "pray sir why am i beaten ant dost thou": [0, 65535], "sir why am i beaten ant dost thou not": [0, 65535], "why am i beaten ant dost thou not know": [0, 65535], "am i beaten ant dost thou not know s": [0, 65535], "i beaten ant dost thou not know s dro": [0, 65535], "beaten ant dost thou not know s dro nothing": [0, 65535], "ant dost thou not know s dro nothing sir": [0, 65535], "dost thou not know s dro nothing sir but": [0, 65535], "thou not know s dro nothing sir but that": [0, 65535], "not know s dro nothing sir but that i": [0, 65535], "know s dro nothing sir but that i am": [0, 65535], "s dro nothing sir but that i am beaten": [0, 65535], "dro nothing sir but that i am beaten ant": [0, 65535], "nothing sir but that i am beaten ant shall": [0, 65535], "sir but that i am beaten ant shall i": [0, 65535], "but that i am beaten ant shall i tell": [0, 65535], "that i am beaten ant shall i tell you": [0, 65535], "i am beaten ant shall i tell you why": [0, 65535], "am beaten ant shall i tell you why s": [0, 65535], "beaten ant shall i tell you why s dro": [0, 65535], "ant shall i tell you why s dro i": [0, 65535], "shall i tell you why s dro i sir": [0, 65535], "i tell you why s dro i sir and": [0, 65535], "tell you why s dro i sir and wherefore": [0, 65535], "you why s dro i sir and wherefore for": [0, 65535], "why s dro i sir and wherefore for they": [0, 65535], "s dro i sir and wherefore for they say": [0, 65535], "dro i sir and wherefore for they say euery": [0, 65535], "i sir and wherefore for they say euery why": [0, 65535], "sir and wherefore for they say euery why hath": [0, 65535], "and wherefore for they say euery why hath a": [0, 65535], "wherefore for they say euery why hath a wherefore": [0, 65535], "for they say euery why hath a wherefore ant": [0, 65535], "they say euery why hath a wherefore ant why": [0, 65535], "say euery why hath a wherefore ant why first": [0, 65535], "euery why hath a wherefore ant why first for": [0, 65535], "why hath a wherefore ant why first for flowting": [0, 65535], "hath a wherefore ant why first for flowting me": [0, 65535], "a wherefore ant why first for flowting me and": [0, 65535], "wherefore ant why first for flowting me and then": [0, 65535], "ant why first for flowting me and then wherefore": [0, 65535], "why first for flowting me and then wherefore for": [0, 65535], "first for flowting me and then wherefore for vrging": [0, 65535], "for flowting me and then wherefore for vrging it": [0, 65535], "flowting me and then wherefore for vrging it the": [0, 65535], "me and then wherefore for vrging it the second": [0, 65535], "and then wherefore for vrging it the second time": [0, 65535], "then wherefore for vrging it the second time to": [0, 65535], "wherefore for vrging it the second time to me": [0, 65535], "for vrging it the second time to me s": [0, 65535], "vrging it the second time to me s dro": [0, 65535], "it the second time to me s dro was": [0, 65535], "the second time to me s dro was there": [0, 65535], "second time to me s dro was there euer": [0, 65535], "time to me s dro was there euer anie": [0, 65535], "to me s dro was there euer anie man": [0, 65535], "me s dro was there euer anie man thus": [0, 65535], "s dro was there euer anie man thus beaten": [0, 65535], "dro was there euer anie man thus beaten out": [0, 65535], "was there euer anie man thus beaten out of": [0, 65535], "there euer anie man thus beaten out of season": [0, 65535], "euer anie man thus beaten out of season when": [0, 65535], "anie man thus beaten out of season when in": [0, 65535], "man thus beaten out of season when in the": [0, 65535], "thus beaten out of season when in the why": [0, 65535], "beaten out of season when in the why and": [0, 65535], "out of season when in the why and the": [0, 65535], "of season when in the why and the wherefore": [0, 65535], "season when in the why and the wherefore is": [0, 65535], "when in the why and the wherefore is neither": [0, 65535], "in the why and the wherefore is neither rime": [0, 65535], "the why and the wherefore is neither rime nor": [0, 65535], "why and the wherefore is neither rime nor reason": [0, 65535], "and the wherefore is neither rime nor reason well": [0, 65535], "the wherefore is neither rime nor reason well sir": [0, 65535], "wherefore is neither rime nor reason well sir i": [0, 65535], "is neither rime nor reason well sir i thanke": [0, 65535], "neither rime nor reason well sir i thanke you": [0, 65535], "rime nor reason well sir i thanke you ant": [0, 65535], "nor reason well sir i thanke you ant thanke": [0, 65535], "reason well sir i thanke you ant thanke me": [0, 65535], "well sir i thanke you ant thanke me sir": [0, 65535], "sir i thanke you ant thanke me sir for": [0, 65535], "i thanke you ant thanke me sir for what": [0, 65535], "thanke you ant thanke me sir for what s": [0, 65535], "you ant thanke me sir for what s dro": [0, 65535], "ant thanke me sir for what s dro marry": [0, 65535], "thanke me sir for what s dro marry sir": [0, 65535], "me sir for what s dro marry sir for": [0, 65535], "sir for what s dro marry sir for this": [0, 65535], "for what s dro marry sir for this something": [0, 65535], "what s dro marry sir for this something that": [0, 65535], "s dro marry sir for this something that you": [0, 65535], "dro marry sir for this something that you gaue": [0, 65535], "marry sir for this something that you gaue me": [0, 65535], "sir for this something that you gaue me for": [0, 65535], "for this something that you gaue me for nothing": [0, 65535], "this something that you gaue me for nothing ant": [0, 65535], "something that you gaue me for nothing ant ile": [0, 65535], "that you gaue me for nothing ant ile make": [0, 65535], "you gaue me for nothing ant ile make you": [0, 65535], "gaue me for nothing ant ile make you amends": [0, 65535], "me for nothing ant ile make you amends next": [0, 65535], "for nothing ant ile make you amends next to": [0, 65535], "nothing ant ile make you amends next to giue": [0, 65535], "ant ile make you amends next to giue you": [0, 65535], "ile make you amends next to giue you nothing": [0, 65535], "make you amends next to giue you nothing for": [0, 65535], "you amends next to giue you nothing for something": [0, 65535], "amends next to giue you nothing for something but": [0, 65535], "next to giue you nothing for something but say": [0, 65535], "to giue you nothing for something but say sir": [0, 65535], "giue you nothing for something but say sir is": [0, 65535], "you nothing for something but say sir is it": [0, 65535], "nothing for something but say sir is it dinner": [0, 65535], "for something but say sir is it dinner time": [0, 65535], "something but say sir is it dinner time s": [0, 65535], "but say sir is it dinner time s dro": [0, 65535], "say sir is it dinner time s dro no": [0, 65535], "sir is it dinner time s dro no sir": [0, 65535], "is it dinner time s dro no sir i": [0, 65535], "it dinner time s dro no sir i thinke": [0, 65535], "dinner time s dro no sir i thinke the": [0, 65535], "time s dro no sir i thinke the meat": [0, 65535], "s dro no sir i thinke the meat wants": [0, 65535], "dro no sir i thinke the meat wants that": [0, 65535], "no sir i thinke the meat wants that i": [0, 65535], "sir i thinke the meat wants that i haue": [0, 65535], "i thinke the meat wants that i haue ant": [0, 65535], "thinke the meat wants that i haue ant in": [0, 65535], "the meat wants that i haue ant in good": [0, 65535], "meat wants that i haue ant in good time": [0, 65535], "wants that i haue ant in good time sir": [0, 65535], "that i haue ant in good time sir what's": [0, 65535], "i haue ant in good time sir what's that": [0, 65535], "haue ant in good time sir what's that s": [0, 65535], "ant in good time sir what's that s dro": [0, 65535], "in good time sir what's that s dro basting": [0, 65535], "good time sir what's that s dro basting ant": [0, 65535], "time sir what's that s dro basting ant well": [0, 65535], "sir what's that s dro basting ant well sir": [0, 65535], "what's that s dro basting ant well sir then": [0, 65535], "that s dro basting ant well sir then 'twill": [0, 65535], "s dro basting ant well sir then 'twill be": [0, 65535], "dro basting ant well sir then 'twill be drie": [0, 65535], "basting ant well sir then 'twill be drie s": [0, 65535], "ant well sir then 'twill be drie s dro": [0, 65535], "well sir then 'twill be drie s dro if": [0, 65535], "sir then 'twill be drie s dro if it": [0, 65535], "then 'twill be drie s dro if it be": [0, 65535], "'twill be drie s dro if it be sir": [0, 65535], "be drie s dro if it be sir i": [0, 65535], "drie s dro if it be sir i pray": [0, 65535], "s dro if it be sir i pray you": [0, 65535], "dro if it be sir i pray you eat": [0, 65535], "if it be sir i pray you eat none": [0, 65535], "it be sir i pray you eat none of": [0, 65535], "be sir i pray you eat none of it": [0, 65535], "sir i pray you eat none of it ant": [0, 65535], "i pray you eat none of it ant your": [0, 65535], "pray you eat none of it ant your reason": [0, 65535], "you eat none of it ant your reason s": [0, 65535], "eat none of it ant your reason s dro": [0, 65535], "none of it ant your reason s dro lest": [0, 65535], "of it ant your reason s dro lest it": [0, 65535], "it ant your reason s dro lest it make": [0, 65535], "ant your reason s dro lest it make you": [0, 65535], "your reason s dro lest it make you chollericke": [0, 65535], "reason s dro lest it make you chollericke and": [0, 65535], "s dro lest it make you chollericke and purchase": [0, 65535], "dro lest it make you chollericke and purchase me": [0, 65535], "lest it make you chollericke and purchase me another": [0, 65535], "it make you chollericke and purchase me another drie": [0, 65535], "make you chollericke and purchase me another drie basting": [0, 65535], "you chollericke and purchase me another drie basting ant": [0, 65535], "chollericke and purchase me another drie basting ant well": [0, 65535], "and purchase me another drie basting ant well sir": [0, 65535], "purchase me another drie basting ant well sir learne": [0, 65535], "me another drie basting ant well sir learne to": [0, 65535], "another drie basting ant well sir learne to iest": [0, 65535], "drie basting ant well sir learne to iest in": [0, 65535], "basting ant well sir learne to iest in good": [0, 65535], "ant well sir learne to iest in good time": [0, 65535], "well sir learne to iest in good time there's": [0, 65535], "sir learne to iest in good time there's a": [0, 65535], "learne to iest in good time there's a time": [0, 65535], "to iest in good time there's a time for": [0, 65535], "iest in good time there's a time for all": [0, 65535], "in good time there's a time for all things": [0, 65535], "good time there's a time for all things s": [0, 65535], "time there's a time for all things s dro": [0, 65535], "there's a time for all things s dro i": [0, 65535], "a time for all things s dro i durst": [0, 65535], "time for all things s dro i durst haue": [0, 65535], "for all things s dro i durst haue denied": [0, 65535], "all things s dro i durst haue denied that": [0, 65535], "things s dro i durst haue denied that before": [0, 65535], "s dro i durst haue denied that before you": [0, 65535], "dro i durst haue denied that before you were": [0, 65535], "i durst haue denied that before you were so": [0, 65535], "durst haue denied that before you were so chollericke": [0, 65535], "haue denied that before you were so chollericke anti": [0, 65535], "denied that before you were so chollericke anti by": [0, 65535], "that before you were so chollericke anti by what": [0, 65535], "before you were so chollericke anti by what rule": [0, 65535], "you were so chollericke anti by what rule sir": [0, 65535], "were so chollericke anti by what rule sir s": [0, 65535], "so chollericke anti by what rule sir s dro": [0, 65535], "chollericke anti by what rule sir s dro marry": [0, 65535], "anti by what rule sir s dro marry sir": [0, 65535], "by what rule sir s dro marry sir by": [0, 65535], "what rule sir s dro marry sir by a": [0, 65535], "rule sir s dro marry sir by a rule": [0, 65535], "sir s dro marry sir by a rule as": [0, 65535], "s dro marry sir by a rule as plaine": [0, 65535], "dro marry sir by a rule as plaine as": [0, 65535], "marry sir by a rule as plaine as the": [0, 65535], "sir by a rule as plaine as the plaine": [0, 65535], "by a rule as plaine as the plaine bald": [0, 65535], "a rule as plaine as the plaine bald pate": [0, 65535], "rule as plaine as the plaine bald pate of": [0, 65535], "as plaine as the plaine bald pate of father": [0, 65535], "plaine as the plaine bald pate of father time": [0, 65535], "as the plaine bald pate of father time himselfe": [0, 65535], "the plaine bald pate of father time himselfe ant": [0, 65535], "plaine bald pate of father time himselfe ant let's": [0, 65535], "bald pate of father time himselfe ant let's heare": [0, 65535], "pate of father time himselfe ant let's heare it": [0, 65535], "of father time himselfe ant let's heare it s": [0, 65535], "father time himselfe ant let's heare it s dro": [0, 65535], "time himselfe ant let's heare it s dro there's": [0, 65535], "himselfe ant let's heare it s dro there's no": [0, 65535], "ant let's heare it s dro there's no time": [0, 65535], "let's heare it s dro there's no time for": [0, 65535], "heare it s dro there's no time for a": [0, 65535], "it s dro there's no time for a man": [0, 65535], "s dro there's no time for a man to": [0, 65535], "dro there's no time for a man to recouer": [0, 65535], "there's no time for a man to recouer his": [0, 65535], "no time for a man to recouer his haire": [0, 65535], "time for a man to recouer his haire that": [0, 65535], "for a man to recouer his haire that growes": [0, 65535], "a man to recouer his haire that growes bald": [0, 65535], "man to recouer his haire that growes bald by": [0, 65535], "to recouer his haire that growes bald by nature": [0, 65535], "recouer his haire that growes bald by nature ant": [0, 65535], "his haire that growes bald by nature ant may": [0, 65535], "haire that growes bald by nature ant may he": [0, 65535], "that growes bald by nature ant may he not": [0, 65535], "growes bald by nature ant may he not doe": [0, 65535], "bald by nature ant may he not doe it": [0, 65535], "by nature ant may he not doe it by": [0, 65535], "nature ant may he not doe it by fine": [0, 65535], "ant may he not doe it by fine and": [0, 65535], "may he not doe it by fine and recouerie": [0, 65535], "he not doe it by fine and recouerie s": [0, 65535], "not doe it by fine and recouerie s dro": [0, 65535], "doe it by fine and recouerie s dro yes": [0, 65535], "it by fine and recouerie s dro yes to": [0, 65535], "by fine and recouerie s dro yes to pay": [0, 65535], "fine and recouerie s dro yes to pay a": [0, 65535], "and recouerie s dro yes to pay a fine": [0, 65535], "recouerie s dro yes to pay a fine for": [0, 65535], "s dro yes to pay a fine for a": [0, 65535], "dro yes to pay a fine for a perewig": [0, 65535], "yes to pay a fine for a perewig and": [0, 65535], "to pay a fine for a perewig and recouer": [0, 65535], "pay a fine for a perewig and recouer the": [0, 65535], "a fine for a perewig and recouer the lost": [0, 65535], "fine for a perewig and recouer the lost haire": [0, 65535], "for a perewig and recouer the lost haire of": [0, 65535], "a perewig and recouer the lost haire of another": [0, 65535], "perewig and recouer the lost haire of another man": [0, 65535], "and recouer the lost haire of another man ant": [0, 65535], "recouer the lost haire of another man ant why": [0, 65535], "the lost haire of another man ant why is": [0, 65535], "lost haire of another man ant why is time": [0, 65535], "haire of another man ant why is time such": [0, 65535], "of another man ant why is time such a": [0, 65535], "another man ant why is time such a niggard": [0, 65535], "man ant why is time such a niggard of": [0, 65535], "ant why is time such a niggard of haire": [0, 65535], "why is time such a niggard of haire being": [0, 65535], "is time such a niggard of haire being as": [0, 65535], "time such a niggard of haire being as it": [0, 65535], "such a niggard of haire being as it is": [0, 65535], "a niggard of haire being as it is so": [0, 65535], "niggard of haire being as it is so plentifull": [0, 65535], "of haire being as it is so plentifull an": [0, 65535], "haire being as it is so plentifull an excrement": [0, 65535], "being as it is so plentifull an excrement s": [0, 65535], "as it is so plentifull an excrement s dro": [0, 65535], "it is so plentifull an excrement s dro because": [0, 65535], "is so plentifull an excrement s dro because it": [0, 65535], "so plentifull an excrement s dro because it is": [0, 65535], "plentifull an excrement s dro because it is a": [0, 65535], "an excrement s dro because it is a blessing": [0, 65535], "excrement s dro because it is a blessing that": [0, 65535], "s dro because it is a blessing that hee": [0, 65535], "dro because it is a blessing that hee bestowes": [0, 65535], "because it is a blessing that hee bestowes on": [0, 65535], "it is a blessing that hee bestowes on beasts": [0, 65535], "is a blessing that hee bestowes on beasts and": [0, 65535], "a blessing that hee bestowes on beasts and what": [0, 65535], "blessing that hee bestowes on beasts and what he": [0, 65535], "that hee bestowes on beasts and what he hath": [0, 65535], "hee bestowes on beasts and what he hath scanted": [0, 65535], "bestowes on beasts and what he hath scanted them": [0, 65535], "on beasts and what he hath scanted them in": [0, 65535], "beasts and what he hath scanted them in haire": [0, 65535], "and what he hath scanted them in haire hee": [0, 65535], "what he hath scanted them in haire hee hath": [0, 65535], "he hath scanted them in haire hee hath giuen": [0, 65535], "hath scanted them in haire hee hath giuen them": [0, 65535], "scanted them in haire hee hath giuen them in": [0, 65535], "them in haire hee hath giuen them in wit": [0, 65535], "in haire hee hath giuen them in wit ant": [0, 65535], "haire hee hath giuen them in wit ant why": [0, 65535], "hee hath giuen them in wit ant why but": [0, 65535], "hath giuen them in wit ant why but theres": [0, 65535], "giuen them in wit ant why but theres manie": [0, 65535], "them in wit ant why but theres manie a": [0, 65535], "in wit ant why but theres manie a man": [0, 65535], "wit ant why but theres manie a man hath": [0, 65535], "ant why but theres manie a man hath more": [0, 65535], "why but theres manie a man hath more haire": [0, 65535], "but theres manie a man hath more haire then": [0, 65535], "theres manie a man hath more haire then wit": [0, 65535], "manie a man hath more haire then wit s": [0, 65535], "a man hath more haire then wit s dro": [0, 65535], "man hath more haire then wit s dro not": [0, 65535], "hath more haire then wit s dro not a": [0, 65535], "more haire then wit s dro not a man": [0, 65535], "haire then wit s dro not a man of": [0, 65535], "then wit s dro not a man of those": [0, 65535], "wit s dro not a man of those but": [0, 65535], "s dro not a man of those but he": [0, 65535], "dro not a man of those but he hath": [0, 65535], "not a man of those but he hath the": [0, 65535], "a man of those but he hath the wit": [0, 65535], "man of those but he hath the wit to": [0, 65535], "of those but he hath the wit to lose": [0, 65535], "those but he hath the wit to lose his": [0, 65535], "but he hath the wit to lose his haire": [0, 65535], "he hath the wit to lose his haire ant": [0, 65535], "hath the wit to lose his haire ant why": [0, 65535], "the wit to lose his haire ant why thou": [0, 65535], "wit to lose his haire ant why thou didst": [0, 65535], "to lose his haire ant why thou didst conclude": [0, 65535], "lose his haire ant why thou didst conclude hairy": [0, 65535], "his haire ant why thou didst conclude hairy men": [0, 65535], "haire ant why thou didst conclude hairy men plain": [0, 65535], "ant why thou didst conclude hairy men plain dealers": [0, 65535], "why thou didst conclude hairy men plain dealers without": [0, 65535], "thou didst conclude hairy men plain dealers without wit": [0, 65535], "didst conclude hairy men plain dealers without wit s": [0, 65535], "conclude hairy men plain dealers without wit s dro": [0, 65535], "hairy men plain dealers without wit s dro the": [0, 65535], "men plain dealers without wit s dro the plainer": [0, 65535], "plain dealers without wit s dro the plainer dealer": [0, 65535], "dealers without wit s dro the plainer dealer the": [0, 65535], "without wit s dro the plainer dealer the sooner": [0, 65535], "wit s dro the plainer dealer the sooner lost": [0, 65535], "s dro the plainer dealer the sooner lost yet": [0, 65535], "dro the plainer dealer the sooner lost yet he": [0, 65535], "the plainer dealer the sooner lost yet he looseth": [0, 65535], "plainer dealer the sooner lost yet he looseth it": [0, 65535], "dealer the sooner lost yet he looseth it in": [0, 65535], "the sooner lost yet he looseth it in a": [0, 65535], "sooner lost yet he looseth it in a kinde": [0, 65535], "lost yet he looseth it in a kinde of": [0, 65535], "yet he looseth it in a kinde of iollitie": [0, 65535], "he looseth it in a kinde of iollitie an": [0, 65535], "looseth it in a kinde of iollitie an for": [0, 65535], "it in a kinde of iollitie an for what": [0, 65535], "in a kinde of iollitie an for what reason": [0, 65535], "a kinde of iollitie an for what reason s": [0, 65535], "kinde of iollitie an for what reason s dro": [0, 65535], "of iollitie an for what reason s dro for": [0, 65535], "iollitie an for what reason s dro for two": [0, 65535], "an for what reason s dro for two and": [0, 65535], "for what reason s dro for two and sound": [0, 65535], "what reason s dro for two and sound ones": [0, 65535], "reason s dro for two and sound ones to": [0, 65535], "s dro for two and sound ones to an": [0, 65535], "dro for two and sound ones to an nay": [0, 65535], "for two and sound ones to an nay not": [0, 65535], "two and sound ones to an nay not sound": [0, 65535], "and sound ones to an nay not sound i": [0, 65535], "sound ones to an nay not sound i pray": [0, 65535], "ones to an nay not sound i pray you": [0, 65535], "to an nay not sound i pray you s": [0, 65535], "an nay not sound i pray you s dro": [0, 65535], "nay not sound i pray you s dro sure": [0, 65535], "not sound i pray you s dro sure ones": [0, 65535], "sound i pray you s dro sure ones then": [0, 65535], "i pray you s dro sure ones then an": [0, 65535], "pray you s dro sure ones then an nay": [0, 65535], "you s dro sure ones then an nay not": [0, 65535], "s dro sure ones then an nay not sure": [0, 65535], "dro sure ones then an nay not sure in": [0, 65535], "sure ones then an nay not sure in a": [0, 65535], "ones then an nay not sure in a thing": [0, 65535], "then an nay not sure in a thing falsing": [0, 65535], "an nay not sure in a thing falsing s": [0, 65535], "nay not sure in a thing falsing s dro": [0, 65535], "not sure in a thing falsing s dro certaine": [0, 65535], "sure in a thing falsing s dro certaine ones": [0, 65535], "in a thing falsing s dro certaine ones then": [0, 65535], "a thing falsing s dro certaine ones then an": [0, 65535], "thing falsing s dro certaine ones then an name": [0, 65535], "falsing s dro certaine ones then an name them": [0, 65535], "s dro certaine ones then an name them s": [0, 65535], "dro certaine ones then an name them s dro": [0, 65535], "certaine ones then an name them s dro the": [0, 65535], "ones then an name them s dro the one": [0, 65535], "then an name them s dro the one to": [0, 65535], "an name them s dro the one to saue": [0, 65535], "name them s dro the one to saue the": [0, 65535], "them s dro the one to saue the money": [0, 65535], "s dro the one to saue the money that": [0, 65535], "dro the one to saue the money that he": [0, 65535], "the one to saue the money that he spends": [0, 65535], "one to saue the money that he spends in": [0, 65535], "to saue the money that he spends in trying": [0, 65535], "saue the money that he spends in trying the": [0, 65535], "the money that he spends in trying the other": [0, 65535], "money that he spends in trying the other that": [0, 65535], "that he spends in trying the other that at": [0, 65535], "he spends in trying the other that at dinner": [0, 65535], "spends in trying the other that at dinner they": [0, 65535], "in trying the other that at dinner they should": [0, 65535], "trying the other that at dinner they should not": [0, 65535], "the other that at dinner they should not drop": [0, 65535], "other that at dinner they should not drop in": [0, 65535], "that at dinner they should not drop in his": [0, 65535], "at dinner they should not drop in his porrage": [0, 65535], "dinner they should not drop in his porrage an": [0, 65535], "they should not drop in his porrage an you": [0, 65535], "should not drop in his porrage an you would": [0, 65535], "not drop in his porrage an you would all": [0, 65535], "drop in his porrage an you would all this": [0, 65535], "in his porrage an you would all this time": [0, 65535], "his porrage an you would all this time haue": [0, 65535], "porrage an you would all this time haue prou'd": [0, 65535], "an you would all this time haue prou'd there": [0, 65535], "you would all this time haue prou'd there is": [0, 65535], "would all this time haue prou'd there is no": [0, 65535], "all this time haue prou'd there is no time": [0, 65535], "this time haue prou'd there is no time for": [0, 65535], "time haue prou'd there is no time for all": [0, 65535], "haue prou'd there is no time for all things": [0, 65535], "prou'd there is no time for all things s": [0, 65535], "there is no time for all things s dro": [0, 65535], "is no time for all things s dro marry": [0, 65535], "no time for all things s dro marry and": [0, 65535], "time for all things s dro marry and did": [0, 65535], "for all things s dro marry and did sir": [0, 65535], "all things s dro marry and did sir namely": [0, 65535], "things s dro marry and did sir namely in": [0, 65535], "s dro marry and did sir namely in no": [0, 65535], "dro marry and did sir namely in no time": [0, 65535], "marry and did sir namely in no time to": [0, 65535], "and did sir namely in no time to recouer": [0, 65535], "did sir namely in no time to recouer haire": [0, 65535], "sir namely in no time to recouer haire lost": [0, 65535], "namely in no time to recouer haire lost by": [0, 65535], "in no time to recouer haire lost by nature": [0, 65535], "no time to recouer haire lost by nature an": [0, 65535], "time to recouer haire lost by nature an but": [0, 65535], "to recouer haire lost by nature an but your": [0, 65535], "recouer haire lost by nature an but your reason": [0, 65535], "haire lost by nature an but your reason was": [0, 65535], "lost by nature an but your reason was not": [0, 65535], "by nature an but your reason was not substantiall": [0, 65535], "nature an but your reason was not substantiall why": [0, 65535], "an but your reason was not substantiall why there": [0, 65535], "but your reason was not substantiall why there is": [0, 65535], "your reason was not substantiall why there is no": [0, 65535], "reason was not substantiall why there is no time": [0, 65535], "was not substantiall why there is no time to": [0, 65535], "not substantiall why there is no time to recouer": [0, 65535], "substantiall why there is no time to recouer s": [0, 65535], "why there is no time to recouer s dro": [0, 65535], "there is no time to recouer s dro thus": [0, 65535], "is no time to recouer s dro thus i": [0, 65535], "no time to recouer s dro thus i mend": [0, 65535], "time to recouer s dro thus i mend it": [0, 65535], "to recouer s dro thus i mend it time": [0, 65535], "recouer s dro thus i mend it time himselfe": [0, 65535], "s dro thus i mend it time himselfe is": [0, 65535], "dro thus i mend it time himselfe is bald": [0, 65535], "thus i mend it time himselfe is bald and": [0, 65535], "i mend it time himselfe is bald and therefore": [0, 65535], "mend it time himselfe is bald and therefore to": [0, 65535], "it time himselfe is bald and therefore to the": [0, 65535], "time himselfe is bald and therefore to the worlds": [0, 65535], "himselfe is bald and therefore to the worlds end": [0, 65535], "is bald and therefore to the worlds end will": [0, 65535], "bald and therefore to the worlds end will haue": [0, 65535], "and therefore to the worlds end will haue bald": [0, 65535], "therefore to the worlds end will haue bald followers": [0, 65535], "to the worlds end will haue bald followers an": [0, 65535], "the worlds end will haue bald followers an i": [0, 65535], "worlds end will haue bald followers an i knew": [0, 65535], "end will haue bald followers an i knew 'twould": [0, 65535], "will haue bald followers an i knew 'twould be": [0, 65535], "haue bald followers an i knew 'twould be a": [0, 65535], "bald followers an i knew 'twould be a bald": [0, 65535], "followers an i knew 'twould be a bald conclusion": [0, 65535], "an i knew 'twould be a bald conclusion but": [0, 65535], "i knew 'twould be a bald conclusion but soft": [0, 65535], "knew 'twould be a bald conclusion but soft who": [0, 65535], "'twould be a bald conclusion but soft who wafts": [0, 65535], "be a bald conclusion but soft who wafts vs": [0, 65535], "a bald conclusion but soft who wafts vs yonder": [0, 65535], "bald conclusion but soft who wafts vs yonder enter": [0, 65535], "conclusion but soft who wafts vs yonder enter adriana": [0, 65535], "but soft who wafts vs yonder enter adriana and": [0, 65535], "soft who wafts vs yonder enter adriana and luciana": [0, 65535], "who wafts vs yonder enter adriana and luciana adri": [0, 65535], "wafts vs yonder enter adriana and luciana adri i": [0, 65535], "vs yonder enter adriana and luciana adri i i": [0, 65535], "yonder enter adriana and luciana adri i i antipholus": [0, 65535], "enter adriana and luciana adri i i antipholus looke": [0, 65535], "adriana and luciana adri i i antipholus looke strange": [0, 65535], "and luciana adri i i antipholus looke strange and": [0, 65535], "luciana adri i i antipholus looke strange and frowne": [0, 65535], "adri i i antipholus looke strange and frowne some": [0, 65535], "i i antipholus looke strange and frowne some other": [0, 65535], "i antipholus looke strange and frowne some other mistresse": [0, 65535], "antipholus looke strange and frowne some other mistresse hath": [0, 65535], "looke strange and frowne some other mistresse hath thy": [0, 65535], "strange and frowne some other mistresse hath thy sweet": [0, 65535], "and frowne some other mistresse hath thy sweet aspects": [0, 65535], "frowne some other mistresse hath thy sweet aspects i": [0, 65535], "some other mistresse hath thy sweet aspects i am": [0, 65535], "other mistresse hath thy sweet aspects i am not": [0, 65535], "mistresse hath thy sweet aspects i am not adriana": [0, 65535], "hath thy sweet aspects i am not adriana nor": [0, 65535], "thy sweet aspects i am not adriana nor thy": [0, 65535], "sweet aspects i am not adriana nor thy wife": [0, 65535], "aspects i am not adriana nor thy wife the": [0, 65535], "i am not adriana nor thy wife the time": [0, 65535], "am not adriana nor thy wife the time was": [0, 65535], "not adriana nor thy wife the time was once": [0, 65535], "adriana nor thy wife the time was once when": [0, 65535], "nor thy wife the time was once when thou": [0, 65535], "thy wife the time was once when thou vn": [0, 65535], "wife the time was once when thou vn vrg'd": [0, 65535], "the time was once when thou vn vrg'd wouldst": [0, 65535], "time was once when thou vn vrg'd wouldst vow": [0, 65535], "was once when thou vn vrg'd wouldst vow that": [0, 65535], "once when thou vn vrg'd wouldst vow that neuer": [0, 65535], "when thou vn vrg'd wouldst vow that neuer words": [0, 65535], "thou vn vrg'd wouldst vow that neuer words were": [0, 65535], "vn vrg'd wouldst vow that neuer words were musicke": [0, 65535], "vrg'd wouldst vow that neuer words were musicke to": [0, 65535], "wouldst vow that neuer words were musicke to thine": [0, 65535], "vow that neuer words were musicke to thine eare": [0, 65535], "that neuer words were musicke to thine eare that": [0, 65535], "neuer words were musicke to thine eare that neuer": [0, 65535], "words were musicke to thine eare that neuer obiect": [0, 65535], "were musicke to thine eare that neuer obiect pleasing": [0, 65535], "musicke to thine eare that neuer obiect pleasing in": [0, 65535], "to thine eare that neuer obiect pleasing in thine": [0, 65535], "thine eare that neuer obiect pleasing in thine eye": [0, 65535], "eare that neuer obiect pleasing in thine eye that": [0, 65535], "that neuer obiect pleasing in thine eye that neuer": [0, 65535], "neuer obiect pleasing in thine eye that neuer touch": [0, 65535], "obiect pleasing in thine eye that neuer touch well": [0, 65535], "pleasing in thine eye that neuer touch well welcome": [0, 65535], "in thine eye that neuer touch well welcome to": [0, 65535], "thine eye that neuer touch well welcome to thy": [0, 65535], "eye that neuer touch well welcome to thy hand": [0, 65535], "that neuer touch well welcome to thy hand that": [0, 65535], "neuer touch well welcome to thy hand that neuer": [0, 65535], "touch well welcome to thy hand that neuer meat": [0, 65535], "well welcome to thy hand that neuer meat sweet": [0, 65535], "welcome to thy hand that neuer meat sweet sauour'd": [0, 65535], "to thy hand that neuer meat sweet sauour'd in": [0, 65535], "thy hand that neuer meat sweet sauour'd in thy": [0, 65535], "hand that neuer meat sweet sauour'd in thy taste": [0, 65535], "that neuer meat sweet sauour'd in thy taste vnlesse": [0, 65535], "neuer meat sweet sauour'd in thy taste vnlesse i": [0, 65535], "meat sweet sauour'd in thy taste vnlesse i spake": [0, 65535], "sweet sauour'd in thy taste vnlesse i spake or": [0, 65535], "sauour'd in thy taste vnlesse i spake or look'd": [0, 65535], "in thy taste vnlesse i spake or look'd or": [0, 65535], "thy taste vnlesse i spake or look'd or touch'd": [0, 65535], "taste vnlesse i spake or look'd or touch'd or": [0, 65535], "vnlesse i spake or look'd or touch'd or caru'd": [0, 65535], "i spake or look'd or touch'd or caru'd to": [0, 65535], "spake or look'd or touch'd or caru'd to thee": [0, 65535], "or look'd or touch'd or caru'd to thee how": [0, 65535], "look'd or touch'd or caru'd to thee how comes": [0, 65535], "or touch'd or caru'd to thee how comes it": [0, 65535], "touch'd or caru'd to thee how comes it now": [0, 65535], "or caru'd to thee how comes it now my": [0, 65535], "caru'd to thee how comes it now my husband": [0, 65535], "to thee how comes it now my husband oh": [0, 65535], "thee how comes it now my husband oh how": [0, 65535], "how comes it now my husband oh how comes": [0, 65535], "comes it now my husband oh how comes it": [0, 65535], "it now my husband oh how comes it that": [0, 65535], "now my husband oh how comes it that thou": [0, 65535], "my husband oh how comes it that thou art": [0, 65535], "husband oh how comes it that thou art then": [0, 65535], "oh how comes it that thou art then estranged": [0, 65535], "how comes it that thou art then estranged from": [0, 65535], "comes it that thou art then estranged from thy": [0, 65535], "it that thou art then estranged from thy selfe": [0, 65535], "that thou art then estranged from thy selfe thy": [0, 65535], "thou art then estranged from thy selfe thy selfe": [0, 65535], "art then estranged from thy selfe thy selfe i": [0, 65535], "then estranged from thy selfe thy selfe i call": [0, 65535], "estranged from thy selfe thy selfe i call it": [0, 65535], "from thy selfe thy selfe i call it being": [0, 65535], "thy selfe thy selfe i call it being strange": [0, 65535], "selfe thy selfe i call it being strange to": [0, 65535], "thy selfe i call it being strange to me": [0, 65535], "selfe i call it being strange to me that": [0, 65535], "i call it being strange to me that vndiuidable": [0, 65535], "call it being strange to me that vndiuidable incorporate": [0, 65535], "it being strange to me that vndiuidable incorporate am": [0, 65535], "being strange to me that vndiuidable incorporate am better": [0, 65535], "strange to me that vndiuidable incorporate am better then": [0, 65535], "to me that vndiuidable incorporate am better then thy": [0, 65535], "me that vndiuidable incorporate am better then thy deere": [0, 65535], "that vndiuidable incorporate am better then thy deere selfes": [0, 65535], "vndiuidable incorporate am better then thy deere selfes better": [0, 65535], "incorporate am better then thy deere selfes better part": [0, 65535], "am better then thy deere selfes better part ah": [0, 65535], "better then thy deere selfes better part ah doe": [0, 65535], "then thy deere selfes better part ah doe not": [0, 65535], "thy deere selfes better part ah doe not teare": [0, 65535], "deere selfes better part ah doe not teare away": [0, 65535], "selfes better part ah doe not teare away thy": [0, 65535], "better part ah doe not teare away thy selfe": [0, 65535], "part ah doe not teare away thy selfe from": [0, 65535], "ah doe not teare away thy selfe from me": [0, 65535], "doe not teare away thy selfe from me for": [0, 65535], "not teare away thy selfe from me for know": [0, 65535], "teare away thy selfe from me for know my": [0, 65535], "away thy selfe from me for know my loue": [0, 65535], "thy selfe from me for know my loue as": [0, 65535], "selfe from me for know my loue as easie": [0, 65535], "from me for know my loue as easie maist": [0, 65535], "me for know my loue as easie maist thou": [0, 65535], "for know my loue as easie maist thou fall": [0, 65535], "know my loue as easie maist thou fall a": [0, 65535], "my loue as easie maist thou fall a drop": [0, 65535], "loue as easie maist thou fall a drop of": [0, 65535], "as easie maist thou fall a drop of water": [0, 65535], "easie maist thou fall a drop of water in": [0, 65535], "maist thou fall a drop of water in the": [0, 65535], "thou fall a drop of water in the breaking": [0, 65535], "fall a drop of water in the breaking gulfe": [0, 65535], "a drop of water in the breaking gulfe and": [0, 65535], "drop of water in the breaking gulfe and take": [0, 65535], "of water in the breaking gulfe and take vnmingled": [0, 65535], "water in the breaking gulfe and take vnmingled thence": [0, 65535], "in the breaking gulfe and take vnmingled thence that": [0, 65535], "the breaking gulfe and take vnmingled thence that drop": [0, 65535], "breaking gulfe and take vnmingled thence that drop againe": [0, 65535], "gulfe and take vnmingled thence that drop againe without": [0, 65535], "and take vnmingled thence that drop againe without addition": [0, 65535], "take vnmingled thence that drop againe without addition or": [0, 65535], "vnmingled thence that drop againe without addition or diminishing": [0, 65535], "thence that drop againe without addition or diminishing as": [0, 65535], "that drop againe without addition or diminishing as take": [0, 65535], "drop againe without addition or diminishing as take from": [0, 65535], "againe without addition or diminishing as take from me": [0, 65535], "without addition or diminishing as take from me thy": [0, 65535], "addition or diminishing as take from me thy selfe": [0, 65535], "or diminishing as take from me thy selfe and": [0, 65535], "diminishing as take from me thy selfe and not": [0, 65535], "as take from me thy selfe and not me": [0, 65535], "take from me thy selfe and not me too": [0, 65535], "from me thy selfe and not me too how": [0, 65535], "me thy selfe and not me too how deerely": [0, 65535], "thy selfe and not me too how deerely would": [0, 65535], "selfe and not me too how deerely would it": [0, 65535], "and not me too how deerely would it touch": [0, 65535], "not me too how deerely would it touch thee": [0, 65535], "me too how deerely would it touch thee to": [0, 65535], "too how deerely would it touch thee to the": [0, 65535], "how deerely would it touch thee to the quicke": [0, 65535], "deerely would it touch thee to the quicke shouldst": [0, 65535], "would it touch thee to the quicke shouldst thou": [0, 65535], "it touch thee to the quicke shouldst thou but": [0, 65535], "touch thee to the quicke shouldst thou but heare": [0, 65535], "thee to the quicke shouldst thou but heare i": [0, 65535], "to the quicke shouldst thou but heare i were": [0, 65535], "the quicke shouldst thou but heare i were licencious": [0, 65535], "quicke shouldst thou but heare i were licencious and": [0, 65535], "shouldst thou but heare i were licencious and that": [0, 65535], "thou but heare i were licencious and that this": [0, 65535], "but heare i were licencious and that this body": [0, 65535], "heare i were licencious and that this body consecrate": [0, 65535], "i were licencious and that this body consecrate to": [0, 65535], "were licencious and that this body consecrate to thee": [0, 65535], "licencious and that this body consecrate to thee by": [0, 65535], "and that this body consecrate to thee by ruffian": [0, 65535], "that this body consecrate to thee by ruffian lust": [0, 65535], "this body consecrate to thee by ruffian lust should": [0, 65535], "body consecrate to thee by ruffian lust should be": [0, 65535], "consecrate to thee by ruffian lust should be contaminate": [0, 65535], "to thee by ruffian lust should be contaminate wouldst": [0, 65535], "thee by ruffian lust should be contaminate wouldst thou": [0, 65535], "by ruffian lust should be contaminate wouldst thou not": [0, 65535], "ruffian lust should be contaminate wouldst thou not spit": [0, 65535], "lust should be contaminate wouldst thou not spit at": [0, 65535], "should be contaminate wouldst thou not spit at me": [0, 65535], "be contaminate wouldst thou not spit at me and": [0, 65535], "contaminate wouldst thou not spit at me and spurne": [0, 65535], "wouldst thou not spit at me and spurne at": [0, 65535], "thou not spit at me and spurne at me": [0, 65535], "not spit at me and spurne at me and": [0, 65535], "spit at me and spurne at me and hurle": [0, 65535], "at me and spurne at me and hurle the": [0, 65535], "me and spurne at me and hurle the name": [0, 65535], "and spurne at me and hurle the name of": [0, 65535], "spurne at me and hurle the name of husband": [0, 65535], "at me and hurle the name of husband in": [0, 65535], "me and hurle the name of husband in my": [0, 65535], "and hurle the name of husband in my face": [0, 65535], "hurle the name of husband in my face and": [0, 65535], "the name of husband in my face and teare": [0, 65535], "name of husband in my face and teare the": [0, 65535], "of husband in my face and teare the stain'd": [0, 65535], "husband in my face and teare the stain'd skin": [0, 65535], "in my face and teare the stain'd skin of": [0, 65535], "my face and teare the stain'd skin of my": [0, 65535], "face and teare the stain'd skin of my harlot": [0, 65535], "and teare the stain'd skin of my harlot brow": [0, 65535], "teare the stain'd skin of my harlot brow and": [0, 65535], "the stain'd skin of my harlot brow and from": [0, 65535], "stain'd skin of my harlot brow and from my": [0, 65535], "skin of my harlot brow and from my false": [0, 65535], "of my harlot brow and from my false hand": [0, 65535], "my harlot brow and from my false hand cut": [0, 65535], "harlot brow and from my false hand cut the": [0, 65535], "brow and from my false hand cut the wedding": [0, 65535], "and from my false hand cut the wedding ring": [0, 65535], "from my false hand cut the wedding ring and": [0, 65535], "my false hand cut the wedding ring and breake": [0, 65535], "false hand cut the wedding ring and breake it": [0, 65535], "hand cut the wedding ring and breake it with": [0, 65535], "cut the wedding ring and breake it with a": [0, 65535], "the wedding ring and breake it with a deepe": [0, 65535], "wedding ring and breake it with a deepe diuorcing": [0, 65535], "ring and breake it with a deepe diuorcing vow": [0, 65535], "and breake it with a deepe diuorcing vow i": [0, 65535], "breake it with a deepe diuorcing vow i know": [0, 65535], "it with a deepe diuorcing vow i know thou": [0, 65535], "with a deepe diuorcing vow i know thou canst": [0, 65535], "a deepe diuorcing vow i know thou canst and": [0, 65535], "deepe diuorcing vow i know thou canst and therefore": [0, 65535], "diuorcing vow i know thou canst and therefore see": [0, 65535], "vow i know thou canst and therefore see thou": [0, 65535], "i know thou canst and therefore see thou doe": [0, 65535], "know thou canst and therefore see thou doe it": [0, 65535], "thou canst and therefore see thou doe it i": [0, 65535], "canst and therefore see thou doe it i am": [0, 65535], "and therefore see thou doe it i am possest": [0, 65535], "therefore see thou doe it i am possest with": [0, 65535], "see thou doe it i am possest with an": [0, 65535], "thou doe it i am possest with an adulterate": [0, 65535], "doe it i am possest with an adulterate blot": [0, 65535], "it i am possest with an adulterate blot my": [0, 65535], "i am possest with an adulterate blot my bloud": [0, 65535], "am possest with an adulterate blot my bloud is": [0, 65535], "possest with an adulterate blot my bloud is mingled": [0, 65535], "with an adulterate blot my bloud is mingled with": [0, 65535], "an adulterate blot my bloud is mingled with the": [0, 65535], "adulterate blot my bloud is mingled with the crime": [0, 65535], "blot my bloud is mingled with the crime of": [0, 65535], "my bloud is mingled with the crime of lust": [0, 65535], "bloud is mingled with the crime of lust for": [0, 65535], "is mingled with the crime of lust for if": [0, 65535], "mingled with the crime of lust for if we": [0, 65535], "with the crime of lust for if we two": [0, 65535], "the crime of lust for if we two be": [0, 65535], "crime of lust for if we two be one": [0, 65535], "of lust for if we two be one and": [0, 65535], "lust for if we two be one and thou": [0, 65535], "for if we two be one and thou play": [0, 65535], "if we two be one and thou play false": [0, 65535], "we two be one and thou play false i": [0, 65535], "two be one and thou play false i doe": [0, 65535], "be one and thou play false i doe digest": [0, 65535], "one and thou play false i doe digest the": [0, 65535], "and thou play false i doe digest the poison": [0, 65535], "thou play false i doe digest the poison of": [0, 65535], "play false i doe digest the poison of thy": [0, 65535], "false i doe digest the poison of thy flesh": [0, 65535], "i doe digest the poison of thy flesh being": [0, 65535], "doe digest the poison of thy flesh being strumpeted": [0, 65535], "digest the poison of thy flesh being strumpeted by": [0, 65535], "the poison of thy flesh being strumpeted by thy": [0, 65535], "poison of thy flesh being strumpeted by thy contagion": [0, 65535], "of thy flesh being strumpeted by thy contagion keepe": [0, 65535], "thy flesh being strumpeted by thy contagion keepe then": [0, 65535], "flesh being strumpeted by thy contagion keepe then faire": [0, 65535], "being strumpeted by thy contagion keepe then faire league": [0, 65535], "strumpeted by thy contagion keepe then faire league and": [0, 65535], "by thy contagion keepe then faire league and truce": [0, 65535], "thy contagion keepe then faire league and truce with": [0, 65535], "contagion keepe then faire league and truce with thy": [0, 65535], "keepe then faire league and truce with thy true": [0, 65535], "then faire league and truce with thy true bed": [0, 65535], "faire league and truce with thy true bed i": [0, 65535], "league and truce with thy true bed i liue": [0, 65535], "and truce with thy true bed i liue distain'd": [0, 65535], "truce with thy true bed i liue distain'd thou": [0, 65535], "with thy true bed i liue distain'd thou vndishonoured": [0, 65535], "thy true bed i liue distain'd thou vndishonoured antip": [0, 65535], "true bed i liue distain'd thou vndishonoured antip plead": [0, 65535], "bed i liue distain'd thou vndishonoured antip plead you": [0, 65535], "i liue distain'd thou vndishonoured antip plead you to": [0, 65535], "liue distain'd thou vndishonoured antip plead you to me": [0, 65535], "distain'd thou vndishonoured antip plead you to me faire": [0, 65535], "thou vndishonoured antip plead you to me faire dame": [0, 65535], "vndishonoured antip plead you to me faire dame i": [0, 65535], "antip plead you to me faire dame i know": [0, 65535], "plead you to me faire dame i know you": [0, 65535], "you to me faire dame i know you not": [0, 65535], "to me faire dame i know you not in": [0, 65535], "me faire dame i know you not in ephesus": [0, 65535], "faire dame i know you not in ephesus i": [0, 65535], "dame i know you not in ephesus i am": [0, 65535], "i know you not in ephesus i am but": [0, 65535], "know you not in ephesus i am but two": [0, 65535], "you not in ephesus i am but two houres": [0, 65535], "not in ephesus i am but two houres old": [0, 65535], "in ephesus i am but two houres old as": [0, 65535], "ephesus i am but two houres old as strange": [0, 65535], "i am but two houres old as strange vnto": [0, 65535], "am but two houres old as strange vnto your": [0, 65535], "but two houres old as strange vnto your towne": [0, 65535], "two houres old as strange vnto your towne as": [0, 65535], "houres old as strange vnto your towne as to": [0, 65535], "old as strange vnto your towne as to your": [0, 65535], "as strange vnto your towne as to your talke": [0, 65535], "strange vnto your towne as to your talke who": [0, 65535], "vnto your towne as to your talke who euery": [0, 65535], "your towne as to your talke who euery word": [0, 65535], "towne as to your talke who euery word by": [0, 65535], "as to your talke who euery word by all": [0, 65535], "to your talke who euery word by all my": [0, 65535], "your talke who euery word by all my wit": [0, 65535], "talke who euery word by all my wit being": [0, 65535], "who euery word by all my wit being scan'd": [0, 65535], "euery word by all my wit being scan'd wants": [0, 65535], "word by all my wit being scan'd wants wit": [0, 65535], "by all my wit being scan'd wants wit in": [0, 65535], "all my wit being scan'd wants wit in all": [0, 65535], "my wit being scan'd wants wit in all one": [0, 65535], "wit being scan'd wants wit in all one word": [0, 65535], "being scan'd wants wit in all one word to": [0, 65535], "scan'd wants wit in all one word to vnderstand": [0, 65535], "wants wit in all one word to vnderstand luci": [0, 65535], "wit in all one word to vnderstand luci fie": [0, 65535], "in all one word to vnderstand luci fie brother": [0, 65535], "all one word to vnderstand luci fie brother how": [0, 65535], "one word to vnderstand luci fie brother how the": [0, 65535], "word to vnderstand luci fie brother how the world": [0, 65535], "to vnderstand luci fie brother how the world is": [0, 65535], "vnderstand luci fie brother how the world is chang'd": [0, 65535], "luci fie brother how the world is chang'd with": [0, 65535], "fie brother how the world is chang'd with you": [0, 65535], "brother how the world is chang'd with you when": [0, 65535], "how the world is chang'd with you when were": [0, 65535], "the world is chang'd with you when were you": [0, 65535], "world is chang'd with you when were you wont": [0, 65535], "is chang'd with you when were you wont to": [0, 65535], "chang'd with you when were you wont to vse": [0, 65535], "with you when were you wont to vse my": [0, 65535], "you when were you wont to vse my sister": [0, 65535], "when were you wont to vse my sister thus": [0, 65535], "were you wont to vse my sister thus she": [0, 65535], "you wont to vse my sister thus she sent": [0, 65535], "wont to vse my sister thus she sent for": [0, 65535], "to vse my sister thus she sent for you": [0, 65535], "vse my sister thus she sent for you by": [0, 65535], "my sister thus she sent for you by dromio": [0, 65535], "sister thus she sent for you by dromio home": [0, 65535], "thus she sent for you by dromio home to": [0, 65535], "she sent for you by dromio home to dinner": [0, 65535], "sent for you by dromio home to dinner ant": [0, 65535], "for you by dromio home to dinner ant by": [0, 65535], "you by dromio home to dinner ant by dromio": [0, 65535], "by dromio home to dinner ant by dromio drom": [0, 65535], "dromio home to dinner ant by dromio drom by": [0, 65535], "home to dinner ant by dromio drom by me": [0, 65535], "to dinner ant by dromio drom by me adr": [0, 65535], "dinner ant by dromio drom by me adr by": [0, 65535], "ant by dromio drom by me adr by thee": [0, 65535], "by dromio drom by me adr by thee and": [0, 65535], "dromio drom by me adr by thee and this": [0, 65535], "drom by me adr by thee and this thou": [0, 65535], "by me adr by thee and this thou didst": [0, 65535], "me adr by thee and this thou didst returne": [0, 65535], "adr by thee and this thou didst returne from": [0, 65535], "by thee and this thou didst returne from him": [0, 65535], "thee and this thou didst returne from him that": [0, 65535], "and this thou didst returne from him that he": [0, 65535], "this thou didst returne from him that he did": [0, 65535], "thou didst returne from him that he did buffet": [0, 65535], "didst returne from him that he did buffet thee": [0, 65535], "returne from him that he did buffet thee and": [0, 65535], "from him that he did buffet thee and in": [0, 65535], "him that he did buffet thee and in his": [0, 65535], "that he did buffet thee and in his blowes": [0, 65535], "he did buffet thee and in his blowes denied": [0, 65535], "did buffet thee and in his blowes denied my": [0, 65535], "buffet thee and in his blowes denied my house": [0, 65535], "thee and in his blowes denied my house for": [0, 65535], "and in his blowes denied my house for his": [0, 65535], "in his blowes denied my house for his me": [0, 65535], "his blowes denied my house for his me for": [0, 65535], "blowes denied my house for his me for his": [0, 65535], "denied my house for his me for his wife": [0, 65535], "my house for his me for his wife ant": [0, 65535], "house for his me for his wife ant did": [0, 65535], "for his me for his wife ant did you": [0, 65535], "his me for his wife ant did you conuerse": [0, 65535], "me for his wife ant did you conuerse sir": [0, 65535], "for his wife ant did you conuerse sir with": [0, 65535], "his wife ant did you conuerse sir with this": [0, 65535], "wife ant did you conuerse sir with this gentlewoman": [0, 65535], "ant did you conuerse sir with this gentlewoman what": [0, 65535], "did you conuerse sir with this gentlewoman what is": [0, 65535], "you conuerse sir with this gentlewoman what is the": [0, 65535], "conuerse sir with this gentlewoman what is the course": [0, 65535], "sir with this gentlewoman what is the course and": [0, 65535], "with this gentlewoman what is the course and drift": [0, 65535], "this gentlewoman what is the course and drift of": [0, 65535], "gentlewoman what is the course and drift of your": [0, 65535], "what is the course and drift of your compact": [0, 65535], "is the course and drift of your compact s": [0, 65535], "the course and drift of your compact s dro": [0, 65535], "course and drift of your compact s dro i": [0, 65535], "and drift of your compact s dro i sir": [0, 65535], "drift of your compact s dro i sir i": [0, 65535], "of your compact s dro i sir i neuer": [0, 65535], "your compact s dro i sir i neuer saw": [0, 65535], "compact s dro i sir i neuer saw her": [0, 65535], "s dro i sir i neuer saw her till": [0, 65535], "dro i sir i neuer saw her till this": [0, 65535], "i sir i neuer saw her till this time": [0, 65535], "sir i neuer saw her till this time ant": [0, 65535], "i neuer saw her till this time ant villaine": [0, 65535], "neuer saw her till this time ant villaine thou": [0, 65535], "saw her till this time ant villaine thou liest": [0, 65535], "her till this time ant villaine thou liest for": [0, 65535], "till this time ant villaine thou liest for euen": [0, 65535], "this time ant villaine thou liest for euen her": [0, 65535], "time ant villaine thou liest for euen her verie": [0, 65535], "ant villaine thou liest for euen her verie words": [0, 65535], "villaine thou liest for euen her verie words didst": [0, 65535], "thou liest for euen her verie words didst thou": [0, 65535], "liest for euen her verie words didst thou deliuer": [0, 65535], "for euen her verie words didst thou deliuer to": [0, 65535], "euen her verie words didst thou deliuer to me": [0, 65535], "her verie words didst thou deliuer to me on": [0, 65535], "verie words didst thou deliuer to me on the": [0, 65535], "words didst thou deliuer to me on the mart": [0, 65535], "didst thou deliuer to me on the mart s": [0, 65535], "thou deliuer to me on the mart s dro": [0, 65535], "deliuer to me on the mart s dro i": [0, 65535], "to me on the mart s dro i neuer": [0, 65535], "me on the mart s dro i neuer spake": [0, 65535], "on the mart s dro i neuer spake with": [0, 65535], "the mart s dro i neuer spake with her": [0, 65535], "mart s dro i neuer spake with her in": [0, 65535], "s dro i neuer spake with her in all": [0, 65535], "dro i neuer spake with her in all my": [0, 65535], "i neuer spake with her in all my life": [0, 65535], "neuer spake with her in all my life ant": [0, 65535], "spake with her in all my life ant how": [0, 65535], "with her in all my life ant how can": [0, 65535], "her in all my life ant how can she": [0, 65535], "in all my life ant how can she thus": [0, 65535], "all my life ant how can she thus then": [0, 65535], "my life ant how can she thus then call": [0, 65535], "life ant how can she thus then call vs": [0, 65535], "ant how can she thus then call vs by": [0, 65535], "how can she thus then call vs by our": [0, 65535], "can she thus then call vs by our names": [0, 65535], "she thus then call vs by our names vnlesse": [0, 65535], "thus then call vs by our names vnlesse it": [0, 65535], "then call vs by our names vnlesse it be": [0, 65535], "call vs by our names vnlesse it be by": [0, 65535], "vs by our names vnlesse it be by inspiration": [0, 65535], "by our names vnlesse it be by inspiration adri": [0, 65535], "our names vnlesse it be by inspiration adri how": [0, 65535], "names vnlesse it be by inspiration adri how ill": [0, 65535], "vnlesse it be by inspiration adri how ill agrees": [0, 65535], "it be by inspiration adri how ill agrees it": [0, 65535], "be by inspiration adri how ill agrees it with": [0, 65535], "by inspiration adri how ill agrees it with your": [0, 65535], "inspiration adri how ill agrees it with your grauitie": [0, 65535], "adri how ill agrees it with your grauitie to": [0, 65535], "how ill agrees it with your grauitie to counterfeit": [0, 65535], "ill agrees it with your grauitie to counterfeit thus": [0, 65535], "agrees it with your grauitie to counterfeit thus grosely": [0, 65535], "it with your grauitie to counterfeit thus grosely with": [0, 65535], "with your grauitie to counterfeit thus grosely with your": [0, 65535], "your grauitie to counterfeit thus grosely with your slaue": [0, 65535], "grauitie to counterfeit thus grosely with your slaue abetting": [0, 65535], "to counterfeit thus grosely with your slaue abetting him": [0, 65535], "counterfeit thus grosely with your slaue abetting him to": [0, 65535], "thus grosely with your slaue abetting him to thwart": [0, 65535], "grosely with your slaue abetting him to thwart me": [0, 65535], "with your slaue abetting him to thwart me in": [0, 65535], "your slaue abetting him to thwart me in my": [0, 65535], "slaue abetting him to thwart me in my moode": [0, 65535], "abetting him to thwart me in my moode be": [0, 65535], "him to thwart me in my moode be it": [0, 65535], "to thwart me in my moode be it my": [0, 65535], "thwart me in my moode be it my wrong": [0, 65535], "me in my moode be it my wrong you": [0, 65535], "in my moode be it my wrong you are": [0, 65535], "my moode be it my wrong you are from": [0, 65535], "moode be it my wrong you are from me": [0, 65535], "be it my wrong you are from me exempt": [0, 65535], "it my wrong you are from me exempt but": [0, 65535], "my wrong you are from me exempt but wrong": [0, 65535], "wrong you are from me exempt but wrong not": [0, 65535], "you are from me exempt but wrong not that": [0, 65535], "are from me exempt but wrong not that wrong": [0, 65535], "from me exempt but wrong not that wrong with": [0, 65535], "me exempt but wrong not that wrong with a": [0, 65535], "exempt but wrong not that wrong with a more": [0, 65535], "but wrong not that wrong with a more contempt": [0, 65535], "wrong not that wrong with a more contempt come": [0, 65535], "not that wrong with a more contempt come i": [0, 65535], "that wrong with a more contempt come i will": [0, 65535], "wrong with a more contempt come i will fasten": [0, 65535], "with a more contempt come i will fasten on": [0, 65535], "a more contempt come i will fasten on this": [0, 65535], "more contempt come i will fasten on this sleeue": [0, 65535], "contempt come i will fasten on this sleeue of": [0, 65535], "come i will fasten on this sleeue of thine": [0, 65535], "i will fasten on this sleeue of thine thou": [0, 65535], "will fasten on this sleeue of thine thou art": [0, 65535], "fasten on this sleeue of thine thou art an": [0, 65535], "on this sleeue of thine thou art an elme": [0, 65535], "this sleeue of thine thou art an elme my": [0, 65535], "sleeue of thine thou art an elme my husband": [0, 65535], "of thine thou art an elme my husband i": [0, 65535], "thine thou art an elme my husband i a": [0, 65535], "thou art an elme my husband i a vine": [0, 65535], "art an elme my husband i a vine whose": [0, 65535], "an elme my husband i a vine whose weaknesse": [0, 65535], "elme my husband i a vine whose weaknesse married": [0, 65535], "my husband i a vine whose weaknesse married to": [0, 65535], "husband i a vine whose weaknesse married to thy": [0, 65535], "i a vine whose weaknesse married to thy stranger": [0, 65535], "a vine whose weaknesse married to thy stranger state": [0, 65535], "vine whose weaknesse married to thy stranger state makes": [0, 65535], "whose weaknesse married to thy stranger state makes me": [0, 65535], "weaknesse married to thy stranger state makes me with": [0, 65535], "married to thy stranger state makes me with thy": [0, 65535], "to thy stranger state makes me with thy strength": [0, 65535], "thy stranger state makes me with thy strength to": [0, 65535], "stranger state makes me with thy strength to communicate": [0, 65535], "state makes me with thy strength to communicate if": [0, 65535], "makes me with thy strength to communicate if ought": [0, 65535], "me with thy strength to communicate if ought possesse": [0, 65535], "with thy strength to communicate if ought possesse thee": [0, 65535], "thy strength to communicate if ought possesse thee from": [0, 65535], "strength to communicate if ought possesse thee from me": [0, 65535], "to communicate if ought possesse thee from me it": [0, 65535], "communicate if ought possesse thee from me it is": [0, 65535], "if ought possesse thee from me it is drosse": [0, 65535], "ought possesse thee from me it is drosse vsurping": [0, 65535], "possesse thee from me it is drosse vsurping iuie": [0, 65535], "thee from me it is drosse vsurping iuie brier": [0, 65535], "from me it is drosse vsurping iuie brier or": [0, 65535], "me it is drosse vsurping iuie brier or idle": [0, 65535], "it is drosse vsurping iuie brier or idle mosse": [0, 65535], "is drosse vsurping iuie brier or idle mosse who": [0, 65535], "drosse vsurping iuie brier or idle mosse who all": [0, 65535], "vsurping iuie brier or idle mosse who all for": [0, 65535], "iuie brier or idle mosse who all for want": [0, 65535], "brier or idle mosse who all for want of": [0, 65535], "or idle mosse who all for want of pruning": [0, 65535], "idle mosse who all for want of pruning with": [0, 65535], "mosse who all for want of pruning with intrusion": [0, 65535], "who all for want of pruning with intrusion infect": [0, 65535], "all for want of pruning with intrusion infect thy": [0, 65535], "for want of pruning with intrusion infect thy sap": [0, 65535], "want of pruning with intrusion infect thy sap and": [0, 65535], "of pruning with intrusion infect thy sap and liue": [0, 65535], "pruning with intrusion infect thy sap and liue on": [0, 65535], "with intrusion infect thy sap and liue on thy": [0, 65535], "intrusion infect thy sap and liue on thy confusion": [0, 65535], "infect thy sap and liue on thy confusion ant": [0, 65535], "thy sap and liue on thy confusion ant to": [0, 65535], "sap and liue on thy confusion ant to mee": [0, 65535], "and liue on thy confusion ant to mee shee": [0, 65535], "liue on thy confusion ant to mee shee speakes": [0, 65535], "on thy confusion ant to mee shee speakes shee": [0, 65535], "thy confusion ant to mee shee speakes shee moues": [0, 65535], "confusion ant to mee shee speakes shee moues mee": [0, 65535], "ant to mee shee speakes shee moues mee for": [0, 65535], "to mee shee speakes shee moues mee for her": [0, 65535], "mee shee speakes shee moues mee for her theame": [0, 65535], "shee speakes shee moues mee for her theame what": [0, 65535], "speakes shee moues mee for her theame what was": [0, 65535], "shee moues mee for her theame what was i": [0, 65535], "moues mee for her theame what was i married": [0, 65535], "mee for her theame what was i married to": [0, 65535], "for her theame what was i married to her": [0, 65535], "her theame what was i married to her in": [0, 65535], "theame what was i married to her in my": [0, 65535], "what was i married to her in my dreame": [0, 65535], "was i married to her in my dreame or": [0, 65535], "i married to her in my dreame or sleepe": [0, 65535], "married to her in my dreame or sleepe i": [0, 65535], "to her in my dreame or sleepe i now": [0, 65535], "her in my dreame or sleepe i now and": [0, 65535], "in my dreame or sleepe i now and thinke": [0, 65535], "my dreame or sleepe i now and thinke i": [0, 65535], "dreame or sleepe i now and thinke i heare": [0, 65535], "or sleepe i now and thinke i heare all": [0, 65535], "sleepe i now and thinke i heare all this": [0, 65535], "i now and thinke i heare all this what": [0, 65535], "now and thinke i heare all this what error": [0, 65535], "and thinke i heare all this what error driues": [0, 65535], "thinke i heare all this what error driues our": [0, 65535], "i heare all this what error driues our eies": [0, 65535], "heare all this what error driues our eies and": [0, 65535], "all this what error driues our eies and eares": [0, 65535], "this what error driues our eies and eares amisse": [0, 65535], "what error driues our eies and eares amisse vntill": [0, 65535], "error driues our eies and eares amisse vntill i": [0, 65535], "driues our eies and eares amisse vntill i know": [0, 65535], "our eies and eares amisse vntill i know this": [0, 65535], "eies and eares amisse vntill i know this sure": [0, 65535], "and eares amisse vntill i know this sure vncertaintie": [0, 65535], "eares amisse vntill i know this sure vncertaintie ile": [0, 65535], "amisse vntill i know this sure vncertaintie ile entertaine": [0, 65535], "vntill i know this sure vncertaintie ile entertaine the": [0, 65535], "i know this sure vncertaintie ile entertaine the free'd": [0, 65535], "know this sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "this sure vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie luc dromio": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc dromio goe": [0, 65535], "ile entertaine the free'd fallacie luc dromio goe bid": [0, 65535], "entertaine the free'd fallacie luc dromio goe bid the": [0, 65535], "the free'd fallacie luc dromio goe bid the seruants": [0, 65535], "free'd fallacie luc dromio goe bid the seruants spred": [0, 65535], "fallacie luc dromio goe bid the seruants spred for": [0, 65535], "luc dromio goe bid the seruants spred for dinner": [0, 65535], "dromio goe bid the seruants spred for dinner s": [0, 65535], "goe bid the seruants spred for dinner s dro": [0, 65535], "bid the seruants spred for dinner s dro oh": [0, 65535], "the seruants spred for dinner s dro oh for": [0, 65535], "seruants spred for dinner s dro oh for my": [0, 65535], "spred for dinner s dro oh for my beads": [0, 65535], "for dinner s dro oh for my beads i": [0, 65535], "dinner s dro oh for my beads i crosse": [0, 65535], "s dro oh for my beads i crosse me": [0, 65535], "dro oh for my beads i crosse me for": [0, 65535], "oh for my beads i crosse me for a": [0, 65535], "for my beads i crosse me for a sinner": [0, 65535], "my beads i crosse me for a sinner this": [0, 65535], "beads i crosse me for a sinner this is": [0, 65535], "i crosse me for a sinner this is the": [0, 65535], "crosse me for a sinner this is the fairie": [0, 65535], "me for a sinner this is the fairie land": [0, 65535], "for a sinner this is the fairie land oh": [0, 65535], "a sinner this is the fairie land oh spight": [0, 65535], "sinner this is the fairie land oh spight of": [0, 65535], "this is the fairie land oh spight of spights": [0, 65535], "is the fairie land oh spight of spights we": [0, 65535], "the fairie land oh spight of spights we talke": [0, 65535], "fairie land oh spight of spights we talke with": [0, 65535], "land oh spight of spights we talke with goblins": [0, 65535], "oh spight of spights we talke with goblins owles": [0, 65535], "spight of spights we talke with goblins owles and": [0, 65535], "of spights we talke with goblins owles and sprights": [0, 65535], "spights we talke with goblins owles and sprights if": [0, 65535], "we talke with goblins owles and sprights if we": [0, 65535], "talke with goblins owles and sprights if we obay": [0, 65535], "with goblins owles and sprights if we obay them": [0, 65535], "goblins owles and sprights if we obay them not": [0, 65535], "owles and sprights if we obay them not this": [0, 65535], "and sprights if we obay them not this will": [0, 65535], "sprights if we obay them not this will insue": [0, 65535], "if we obay them not this will insue they'll": [0, 65535], "we obay them not this will insue they'll sucke": [0, 65535], "obay them not this will insue they'll sucke our": [0, 65535], "them not this will insue they'll sucke our breath": [0, 65535], "not this will insue they'll sucke our breath or": [0, 65535], "this will insue they'll sucke our breath or pinch": [0, 65535], "will insue they'll sucke our breath or pinch vs": [0, 65535], "insue they'll sucke our breath or pinch vs blacke": [0, 65535], "they'll sucke our breath or pinch vs blacke and": [0, 65535], "sucke our breath or pinch vs blacke and blew": [0, 65535], "our breath or pinch vs blacke and blew luc": [0, 65535], "breath or pinch vs blacke and blew luc why": [0, 65535], "or pinch vs blacke and blew luc why prat'st": [0, 65535], "pinch vs blacke and blew luc why prat'st thou": [0, 65535], "vs blacke and blew luc why prat'st thou to": [0, 65535], "blacke and blew luc why prat'st thou to thy": [0, 65535], "and blew luc why prat'st thou to thy selfe": [0, 65535], "blew luc why prat'st thou to thy selfe and": [0, 65535], "luc why prat'st thou to thy selfe and answer'st": [0, 65535], "why prat'st thou to thy selfe and answer'st not": [0, 65535], "prat'st thou to thy selfe and answer'st not dromio": [0, 65535], "thou to thy selfe and answer'st not dromio thou": [0, 65535], "to thy selfe and answer'st not dromio thou dromio": [0, 65535], "thy selfe and answer'st not dromio thou dromio thou": [0, 65535], "selfe and answer'st not dromio thou dromio thou snaile": [0, 65535], "and answer'st not dromio thou dromio thou snaile thou": [0, 65535], "answer'st not dromio thou dromio thou snaile thou slug": [0, 65535], "not dromio thou dromio thou snaile thou slug thou": [0, 65535], "dromio thou dromio thou snaile thou slug thou sot": [0, 65535], "thou dromio thou snaile thou slug thou sot s": [0, 65535], "dromio thou snaile thou slug thou sot s dro": [0, 65535], "thou snaile thou slug thou sot s dro i": [0, 65535], "snaile thou slug thou sot s dro i am": [0, 65535], "thou slug thou sot s dro i am transformed": [0, 65535], "slug thou sot s dro i am transformed master": [0, 65535], "thou sot s dro i am transformed master am": [0, 65535], "sot s dro i am transformed master am i": [0, 65535], "s dro i am transformed master am i not": [0, 65535], "dro i am transformed master am i not ant": [0, 65535], "i am transformed master am i not ant i": [0, 65535], "am transformed master am i not ant i thinke": [0, 65535], "transformed master am i not ant i thinke thou": [0, 65535], "master am i not ant i thinke thou art": [0, 65535], "am i not ant i thinke thou art in": [0, 65535], "i not ant i thinke thou art in minde": [0, 65535], "not ant i thinke thou art in minde and": [0, 65535], "ant i thinke thou art in minde and so": [0, 65535], "i thinke thou art in minde and so am": [0, 65535], "thinke thou art in minde and so am i": [0, 65535], "thou art in minde and so am i s": [0, 65535], "art in minde and so am i s dro": [0, 65535], "in minde and so am i s dro nay": [0, 65535], "minde and so am i s dro nay master": [0, 65535], "and so am i s dro nay master both": [0, 65535], "so am i s dro nay master both in": [0, 65535], "am i s dro nay master both in minde": [0, 65535], "i s dro nay master both in minde and": [0, 65535], "s dro nay master both in minde and in": [0, 65535], "dro nay master both in minde and in my": [0, 65535], "nay master both in minde and in my shape": [0, 65535], "master both in minde and in my shape ant": [0, 65535], "both in minde and in my shape ant thou": [0, 65535], "in minde and in my shape ant thou hast": [0, 65535], "minde and in my shape ant thou hast thine": [0, 65535], "and in my shape ant thou hast thine owne": [0, 65535], "in my shape ant thou hast thine owne forme": [0, 65535], "my shape ant thou hast thine owne forme s": [0, 65535], "shape ant thou hast thine owne forme s dro": [0, 65535], "ant thou hast thine owne forme s dro no": [0, 65535], "thou hast thine owne forme s dro no i": [0, 65535], "hast thine owne forme s dro no i am": [0, 65535], "thine owne forme s dro no i am an": [0, 65535], "owne forme s dro no i am an ape": [0, 65535], "forme s dro no i am an ape luc": [0, 65535], "s dro no i am an ape luc if": [0, 65535], "dro no i am an ape luc if thou": [0, 65535], "no i am an ape luc if thou art": [0, 65535], "i am an ape luc if thou art chang'd": [0, 65535], "am an ape luc if thou art chang'd to": [0, 65535], "an ape luc if thou art chang'd to ought": [0, 65535], "ape luc if thou art chang'd to ought 'tis": [0, 65535], "luc if thou art chang'd to ought 'tis to": [0, 65535], "if thou art chang'd to ought 'tis to an": [0, 65535], "thou art chang'd to ought 'tis to an asse": [0, 65535], "art chang'd to ought 'tis to an asse s": [0, 65535], "chang'd to ought 'tis to an asse s dro": [0, 65535], "to ought 'tis to an asse s dro 'tis": [0, 65535], "ought 'tis to an asse s dro 'tis true": [0, 65535], "'tis to an asse s dro 'tis true she": [0, 65535], "to an asse s dro 'tis true she rides": [0, 65535], "an asse s dro 'tis true she rides me": [0, 65535], "asse s dro 'tis true she rides me and": [0, 65535], "s dro 'tis true she rides me and i": [0, 65535], "dro 'tis true she rides me and i long": [0, 65535], "'tis true she rides me and i long for": [0, 65535], "true she rides me and i long for grasse": [0, 65535], "she rides me and i long for grasse 'tis": [0, 65535], "rides me and i long for grasse 'tis so": [0, 65535], "me and i long for grasse 'tis so i": [0, 65535], "and i long for grasse 'tis so i am": [0, 65535], "i long for grasse 'tis so i am an": [0, 65535], "long for grasse 'tis so i am an asse": [0, 65535], "for grasse 'tis so i am an asse else": [0, 65535], "grasse 'tis so i am an asse else it": [0, 65535], "'tis so i am an asse else it could": [0, 65535], "so i am an asse else it could neuer": [0, 65535], "i am an asse else it could neuer be": [0, 65535], "am an asse else it could neuer be but": [0, 65535], "an asse else it could neuer be but i": [0, 65535], "asse else it could neuer be but i should": [0, 65535], "else it could neuer be but i should know": [0, 65535], "it could neuer be but i should know her": [0, 65535], "could neuer be but i should know her as": [0, 65535], "neuer be but i should know her as well": [0, 65535], "be but i should know her as well as": [0, 65535], "but i should know her as well as she": [0, 65535], "i should know her as well as she knowes": [0, 65535], "should know her as well as she knowes me": [0, 65535], "know her as well as she knowes me adr": [0, 65535], "her as well as she knowes me adr come": [0, 65535], "as well as she knowes me adr come come": [0, 65535], "well as she knowes me adr come come no": [0, 65535], "as she knowes me adr come come no longer": [0, 65535], "she knowes me adr come come no longer will": [0, 65535], "knowes me adr come come no longer will i": [0, 65535], "me adr come come no longer will i be": [0, 65535], "adr come come no longer will i be a": [0, 65535], "come come no longer will i be a foole": [0, 65535], "come no longer will i be a foole to": [0, 65535], "no longer will i be a foole to put": [0, 65535], "longer will i be a foole to put the": [0, 65535], "will i be a foole to put the finger": [0, 65535], "i be a foole to put the finger in": [0, 65535], "be a foole to put the finger in the": [0, 65535], "a foole to put the finger in the eie": [0, 65535], "foole to put the finger in the eie and": [0, 65535], "to put the finger in the eie and weepe": [0, 65535], "put the finger in the eie and weepe whil'st": [0, 65535], "the finger in the eie and weepe whil'st man": [0, 65535], "finger in the eie and weepe whil'st man and": [0, 65535], "in the eie and weepe whil'st man and master": [0, 65535], "the eie and weepe whil'st man and master laughes": [0, 65535], "eie and weepe whil'st man and master laughes my": [0, 65535], "and weepe whil'st man and master laughes my woes": [0, 65535], "weepe whil'st man and master laughes my woes to": [0, 65535], "whil'st man and master laughes my woes to scorne": [0, 65535], "man and master laughes my woes to scorne come": [0, 65535], "and master laughes my woes to scorne come sir": [0, 65535], "master laughes my woes to scorne come sir to": [0, 65535], "laughes my woes to scorne come sir to dinner": [0, 65535], "my woes to scorne come sir to dinner dromio": [0, 65535], "woes to scorne come sir to dinner dromio keepe": [0, 65535], "to scorne come sir to dinner dromio keepe the": [0, 65535], "scorne come sir to dinner dromio keepe the gate": [0, 65535], "come sir to dinner dromio keepe the gate husband": [0, 65535], "sir to dinner dromio keepe the gate husband ile": [0, 65535], "to dinner dromio keepe the gate husband ile dine": [0, 65535], "dinner dromio keepe the gate husband ile dine aboue": [0, 65535], "dromio keepe the gate husband ile dine aboue with": [0, 65535], "keepe the gate husband ile dine aboue with you": [0, 65535], "the gate husband ile dine aboue with you to": [0, 65535], "gate husband ile dine aboue with you to day": [0, 65535], "husband ile dine aboue with you to day and": [0, 65535], "ile dine aboue with you to day and shriue": [0, 65535], "dine aboue with you to day and shriue you": [0, 65535], "aboue with you to day and shriue you of": [0, 65535], "with you to day and shriue you of a": [0, 65535], "you to day and shriue you of a thousand": [0, 65535], "to day and shriue you of a thousand idle": [0, 65535], "day and shriue you of a thousand idle prankes": [0, 65535], "and shriue you of a thousand idle prankes sirra": [0, 65535], "shriue you of a thousand idle prankes sirra if": [0, 65535], "you of a thousand idle prankes sirra if any": [0, 65535], "of a thousand idle prankes sirra if any aske": [0, 65535], "a thousand idle prankes sirra if any aske you": [0, 65535], "thousand idle prankes sirra if any aske you for": [0, 65535], "idle prankes sirra if any aske you for your": [0, 65535], "prankes sirra if any aske you for your master": [0, 65535], "sirra if any aske you for your master say": [0, 65535], "if any aske you for your master say he": [0, 65535], "any aske you for your master say he dines": [0, 65535], "aske you for your master say he dines forth": [0, 65535], "you for your master say he dines forth and": [0, 65535], "for your master say he dines forth and let": [0, 65535], "your master say he dines forth and let no": [0, 65535], "master say he dines forth and let no creature": [0, 65535], "say he dines forth and let no creature enter": [0, 65535], "he dines forth and let no creature enter come": [0, 65535], "dines forth and let no creature enter come sister": [0, 65535], "forth and let no creature enter come sister dromio": [0, 65535], "and let no creature enter come sister dromio play": [0, 65535], "let no creature enter come sister dromio play the": [0, 65535], "no creature enter come sister dromio play the porter": [0, 65535], "creature enter come sister dromio play the porter well": [0, 65535], "enter come sister dromio play the porter well ant": [0, 65535], "come sister dromio play the porter well ant am": [0, 65535], "sister dromio play the porter well ant am i": [0, 65535], "dromio play the porter well ant am i in": [0, 65535], "play the porter well ant am i in earth": [0, 65535], "the porter well ant am i in earth in": [0, 65535], "porter well ant am i in earth in heauen": [0, 65535], "well ant am i in earth in heauen or": [0, 65535], "ant am i in earth in heauen or in": [0, 65535], "am i in earth in heauen or in hell": [0, 65535], "i in earth in heauen or in hell sleeping": [0, 65535], "in earth in heauen or in hell sleeping or": [0, 65535], "earth in heauen or in hell sleeping or waking": [0, 65535], "in heauen or in hell sleeping or waking mad": [0, 65535], "heauen or in hell sleeping or waking mad or": [0, 65535], "or in hell sleeping or waking mad or well": [0, 65535], "in hell sleeping or waking mad or well aduisde": [0, 65535], "hell sleeping or waking mad or well aduisde knowne": [0, 65535], "sleeping or waking mad or well aduisde knowne vnto": [0, 65535], "or waking mad or well aduisde knowne vnto these": [0, 65535], "waking mad or well aduisde knowne vnto these and": [0, 65535], "mad or well aduisde knowne vnto these and to": [0, 65535], "or well aduisde knowne vnto these and to my": [0, 65535], "well aduisde knowne vnto these and to my selfe": [0, 65535], "aduisde knowne vnto these and to my selfe disguisde": [0, 65535], "knowne vnto these and to my selfe disguisde ile": [0, 65535], "vnto these and to my selfe disguisde ile say": [0, 65535], "these and to my selfe disguisde ile say as": [0, 65535], "and to my selfe disguisde ile say as they": [0, 65535], "to my selfe disguisde ile say as they say": [0, 65535], "my selfe disguisde ile say as they say and": [0, 65535], "selfe disguisde ile say as they say and perseuer": [0, 65535], "disguisde ile say as they say and perseuer so": [0, 65535], "ile say as they say and perseuer so and": [0, 65535], "say as they say and perseuer so and in": [0, 65535], "as they say and perseuer so and in this": [0, 65535], "they say and perseuer so and in this mist": [0, 65535], "say and perseuer so and in this mist at": [0, 65535], "and perseuer so and in this mist at all": [0, 65535], "perseuer so and in this mist at all aduentures": [0, 65535], "so and in this mist at all aduentures go": [0, 65535], "and in this mist at all aduentures go s": [0, 65535], "in this mist at all aduentures go s dro": [0, 65535], "this mist at all aduentures go s dro master": [0, 65535], "mist at all aduentures go s dro master shall": [0, 65535], "at all aduentures go s dro master shall i": [0, 65535], "all aduentures go s dro master shall i be": [0, 65535], "aduentures go s dro master shall i be porter": [0, 65535], "go s dro master shall i be porter at": [0, 65535], "s dro master shall i be porter at the": [0, 65535], "dro master shall i be porter at the gate": [0, 65535], "master shall i be porter at the gate adr": [0, 65535], "shall i be porter at the gate adr i": [0, 65535], "i be porter at the gate adr i and": [0, 65535], "be porter at the gate adr i and let": [0, 65535], "porter at the gate adr i and let none": [0, 65535], "at the gate adr i and let none enter": [0, 65535], "the gate adr i and let none enter least": [0, 65535], "gate adr i and let none enter least i": [0, 65535], "adr i and let none enter least i breake": [0, 65535], "i and let none enter least i breake your": [0, 65535], "and let none enter least i breake your pate": [0, 65535], "let none enter least i breake your pate luc": [0, 65535], "none enter least i breake your pate luc come": [0, 65535], "enter least i breake your pate luc come come": [0, 65535], "least i breake your pate luc come come antipholus": [0, 65535], "i breake your pate luc come come antipholus we": [0, 65535], "breake your pate luc come come antipholus we dine": [0, 65535], "your pate luc come come antipholus we dine to": [0, 65535], "pate luc come come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis sereptus with luciana": [0, 65535], "secundus enter adriana wife to antipholis sereptus with luciana her": [0, 65535], "enter adriana wife to antipholis sereptus with luciana her sister": [0, 65535], "adriana wife to antipholis sereptus with luciana her sister adr": [0, 65535], "wife to antipholis sereptus with luciana her sister adr neither": [0, 65535], "to antipholis sereptus with luciana her sister adr neither my": [0, 65535], "antipholis sereptus with luciana her sister adr neither my husband": [0, 65535], "sereptus with luciana her sister adr neither my husband nor": [0, 65535], "with luciana her sister adr neither my husband nor the": [0, 65535], "luciana her sister adr neither my husband nor the slaue": [0, 65535], "her sister adr neither my husband nor the slaue return'd": [0, 65535], "sister adr neither my husband nor the slaue return'd that": [0, 65535], "adr neither my husband nor the slaue return'd that in": [0, 65535], "neither my husband nor the slaue return'd that in such": [0, 65535], "my husband nor the slaue return'd that in such haste": [0, 65535], "husband nor the slaue return'd that in such haste i": [0, 65535], "nor the slaue return'd that in such haste i sent": [0, 65535], "the slaue return'd that in such haste i sent to": [0, 65535], "slaue return'd that in such haste i sent to seeke": [0, 65535], "return'd that in such haste i sent to seeke his": [0, 65535], "that in such haste i sent to seeke his master": [0, 65535], "in such haste i sent to seeke his master sure": [0, 65535], "such haste i sent to seeke his master sure luciana": [0, 65535], "haste i sent to seeke his master sure luciana it": [0, 65535], "i sent to seeke his master sure luciana it is": [0, 65535], "sent to seeke his master sure luciana it is two": [0, 65535], "to seeke his master sure luciana it is two a": [0, 65535], "seeke his master sure luciana it is two a clocke": [0, 65535], "his master sure luciana it is two a clocke luc": [0, 65535], "master sure luciana it is two a clocke luc perhaps": [0, 65535], "sure luciana it is two a clocke luc perhaps some": [0, 65535], "luciana it is two a clocke luc perhaps some merchant": [0, 65535], "it is two a clocke luc perhaps some merchant hath": [0, 65535], "is two a clocke luc perhaps some merchant hath inuited": [0, 65535], "two a clocke luc perhaps some merchant hath inuited him": [0, 65535], "a clocke luc perhaps some merchant hath inuited him and": [0, 65535], "clocke luc perhaps some merchant hath inuited him and from": [0, 65535], "luc perhaps some merchant hath inuited him and from the": [0, 65535], "perhaps some merchant hath inuited him and from the mart": [0, 65535], "some merchant hath inuited him and from the mart he's": [0, 65535], "merchant hath inuited him and from the mart he's somewhere": [0, 65535], "hath inuited him and from the mart he's somewhere gone": [0, 65535], "inuited him and from the mart he's somewhere gone to": [0, 65535], "him and from the mart he's somewhere gone to dinner": [0, 65535], "and from the mart he's somewhere gone to dinner good": [0, 65535], "from the mart he's somewhere gone to dinner good sister": [0, 65535], "the mart he's somewhere gone to dinner good sister let": [0, 65535], "mart he's somewhere gone to dinner good sister let vs": [0, 65535], "he's somewhere gone to dinner good sister let vs dine": [0, 65535], "somewhere gone to dinner good sister let vs dine and": [0, 65535], "gone to dinner good sister let vs dine and neuer": [0, 65535], "to dinner good sister let vs dine and neuer fret": [0, 65535], "dinner good sister let vs dine and neuer fret a": [0, 65535], "good sister let vs dine and neuer fret a man": [0, 65535], "sister let vs dine and neuer fret a man is": [0, 65535], "let vs dine and neuer fret a man is master": [0, 65535], "vs dine and neuer fret a man is master of": [0, 65535], "dine and neuer fret a man is master of his": [0, 65535], "and neuer fret a man is master of his libertie": [0, 65535], "neuer fret a man is master of his libertie time": [0, 65535], "fret a man is master of his libertie time is": [0, 65535], "a man is master of his libertie time is their": [0, 65535], "man is master of his libertie time is their master": [0, 65535], "is master of his libertie time is their master and": [0, 65535], "master of his libertie time is their master and when": [0, 65535], "of his libertie time is their master and when they": [0, 65535], "his libertie time is their master and when they see": [0, 65535], "libertie time is their master and when they see time": [0, 65535], "time is their master and when they see time they'll": [0, 65535], "is their master and when they see time they'll goe": [0, 65535], "their master and when they see time they'll goe or": [0, 65535], "master and when they see time they'll goe or come": [0, 65535], "and when they see time they'll goe or come if": [0, 65535], "when they see time they'll goe or come if so": [0, 65535], "they see time they'll goe or come if so be": [0, 65535], "see time they'll goe or come if so be patient": [0, 65535], "time they'll goe or come if so be patient sister": [0, 65535], "they'll goe or come if so be patient sister adr": [0, 65535], "goe or come if so be patient sister adr why": [0, 65535], "or come if so be patient sister adr why should": [0, 65535], "come if so be patient sister adr why should their": [0, 65535], "if so be patient sister adr why should their libertie": [0, 65535], "so be patient sister adr why should their libertie then": [0, 65535], "be patient sister adr why should their libertie then ours": [0, 65535], "patient sister adr why should their libertie then ours be": [0, 65535], "sister adr why should their libertie then ours be more": [0, 65535], "adr why should their libertie then ours be more luc": [0, 65535], "why should their libertie then ours be more luc because": [0, 65535], "should their libertie then ours be more luc because their": [0, 65535], "their libertie then ours be more luc because their businesse": [0, 65535], "libertie then ours be more luc because their businesse still": [0, 65535], "then ours be more luc because their businesse still lies": [0, 65535], "ours be more luc because their businesse still lies out": [0, 65535], "be more luc because their businesse still lies out a": [0, 65535], "more luc because their businesse still lies out a dore": [0, 65535], "luc because their businesse still lies out a dore adr": [0, 65535], "because their businesse still lies out a dore adr looke": [0, 65535], "their businesse still lies out a dore adr looke when": [0, 65535], "businesse still lies out a dore adr looke when i": [0, 65535], "still lies out a dore adr looke when i serue": [0, 65535], "lies out a dore adr looke when i serue him": [0, 65535], "out a dore adr looke when i serue him so": [0, 65535], "a dore adr looke when i serue him so he": [0, 65535], "dore adr looke when i serue him so he takes": [0, 65535], "adr looke when i serue him so he takes it": [0, 65535], "looke when i serue him so he takes it thus": [0, 65535], "when i serue him so he takes it thus luc": [0, 65535], "i serue him so he takes it thus luc oh": [0, 65535], "serue him so he takes it thus luc oh know": [0, 65535], "him so he takes it thus luc oh know he": [0, 65535], "so he takes it thus luc oh know he is": [0, 65535], "he takes it thus luc oh know he is the": [0, 65535], "takes it thus luc oh know he is the bridle": [0, 65535], "it thus luc oh know he is the bridle of": [0, 65535], "thus luc oh know he is the bridle of your": [0, 65535], "luc oh know he is the bridle of your will": [0, 65535], "oh know he is the bridle of your will adr": [0, 65535], "know he is the bridle of your will adr there's": [0, 65535], "he is the bridle of your will adr there's none": [0, 65535], "is the bridle of your will adr there's none but": [0, 65535], "the bridle of your will adr there's none but asses": [0, 65535], "bridle of your will adr there's none but asses will": [0, 65535], "of your will adr there's none but asses will be": [0, 65535], "your will adr there's none but asses will be bridled": [0, 65535], "will adr there's none but asses will be bridled so": [0, 65535], "adr there's none but asses will be bridled so luc": [0, 65535], "there's none but asses will be bridled so luc why": [0, 65535], "none but asses will be bridled so luc why headstrong": [0, 65535], "but asses will be bridled so luc why headstrong liberty": [0, 65535], "asses will be bridled so luc why headstrong liberty is": [0, 65535], "will be bridled so luc why headstrong liberty is lasht": [0, 65535], "be bridled so luc why headstrong liberty is lasht with": [0, 65535], "bridled so luc why headstrong liberty is lasht with woe": [0, 65535], "so luc why headstrong liberty is lasht with woe there's": [0, 65535], "luc why headstrong liberty is lasht with woe there's nothing": [0, 65535], "why headstrong liberty is lasht with woe there's nothing situate": [0, 65535], "headstrong liberty is lasht with woe there's nothing situate vnder": [0, 65535], "liberty is lasht with woe there's nothing situate vnder heauens": [0, 65535], "is lasht with woe there's nothing situate vnder heauens eye": [0, 65535], "lasht with woe there's nothing situate vnder heauens eye but": [0, 65535], "with woe there's nothing situate vnder heauens eye but hath": [0, 65535], "woe there's nothing situate vnder heauens eye but hath his": [0, 65535], "there's nothing situate vnder heauens eye but hath his bound": [0, 65535], "nothing situate vnder heauens eye but hath his bound in": [0, 65535], "situate vnder heauens eye but hath his bound in earth": [0, 65535], "vnder heauens eye but hath his bound in earth in": [0, 65535], "heauens eye but hath his bound in earth in sea": [0, 65535], "eye but hath his bound in earth in sea in": [0, 65535], "but hath his bound in earth in sea in skie": [0, 65535], "hath his bound in earth in sea in skie the": [0, 65535], "his bound in earth in sea in skie the beasts": [0, 65535], "bound in earth in sea in skie the beasts the": [0, 65535], "in earth in sea in skie the beasts the fishes": [0, 65535], "earth in sea in skie the beasts the fishes and": [0, 65535], "in sea in skie the beasts the fishes and the": [0, 65535], "sea in skie the beasts the fishes and the winged": [0, 65535], "in skie the beasts the fishes and the winged fowles": [0, 65535], "skie the beasts the fishes and the winged fowles are": [0, 65535], "the beasts the fishes and the winged fowles are their": [0, 65535], "beasts the fishes and the winged fowles are their males": [0, 65535], "the fishes and the winged fowles are their males subiects": [0, 65535], "fishes and the winged fowles are their males subiects and": [0, 65535], "and the winged fowles are their males subiects and at": [0, 65535], "the winged fowles are their males subiects and at their": [0, 65535], "winged fowles are their males subiects and at their controules": [0, 65535], "fowles are their males subiects and at their controules man": [0, 65535], "are their males subiects and at their controules man more": [0, 65535], "their males subiects and at their controules man more diuine": [0, 65535], "males subiects and at their controules man more diuine the": [0, 65535], "subiects and at their controules man more diuine the master": [0, 65535], "and at their controules man more diuine the master of": [0, 65535], "at their controules man more diuine the master of all": [0, 65535], "their controules man more diuine the master of all these": [0, 65535], "controules man more diuine the master of all these lord": [0, 65535], "man more diuine the master of all these lord of": [0, 65535], "more diuine the master of all these lord of the": [0, 65535], "diuine the master of all these lord of the wide": [0, 65535], "the master of all these lord of the wide world": [0, 65535], "master of all these lord of the wide world and": [0, 65535], "of all these lord of the wide world and wilde": [0, 65535], "all these lord of the wide world and wilde watry": [0, 65535], "these lord of the wide world and wilde watry seas": [0, 65535], "lord of the wide world and wilde watry seas indued": [0, 65535], "of the wide world and wilde watry seas indued with": [0, 65535], "the wide world and wilde watry seas indued with intellectuall": [0, 65535], "wide world and wilde watry seas indued with intellectuall sence": [0, 65535], "world and wilde watry seas indued with intellectuall sence and": [0, 65535], "and wilde watry seas indued with intellectuall sence and soules": [0, 65535], "wilde watry seas indued with intellectuall sence and soules of": [0, 65535], "watry seas indued with intellectuall sence and soules of more": [0, 65535], "seas indued with intellectuall sence and soules of more preheminence": [0, 65535], "indued with intellectuall sence and soules of more preheminence then": [0, 65535], "with intellectuall sence and soules of more preheminence then fish": [0, 65535], "intellectuall sence and soules of more preheminence then fish and": [0, 65535], "sence and soules of more preheminence then fish and fowles": [0, 65535], "and soules of more preheminence then fish and fowles are": [0, 65535], "soules of more preheminence then fish and fowles are masters": [0, 65535], "of more preheminence then fish and fowles are masters to": [0, 65535], "more preheminence then fish and fowles are masters to their": [0, 65535], "preheminence then fish and fowles are masters to their females": [0, 65535], "then fish and fowles are masters to their females and": [0, 65535], "fish and fowles are masters to their females and their": [0, 65535], "and fowles are masters to their females and their lords": [0, 65535], "fowles are masters to their females and their lords then": [0, 65535], "are masters to their females and their lords then let": [0, 65535], "masters to their females and their lords then let your": [0, 65535], "to their females and their lords then let your will": [0, 65535], "their females and their lords then let your will attend": [0, 65535], "females and their lords then let your will attend on": [0, 65535], "and their lords then let your will attend on their": [0, 65535], "their lords then let your will attend on their accords": [0, 65535], "lords then let your will attend on their accords adri": [0, 65535], "then let your will attend on their accords adri this": [0, 65535], "let your will attend on their accords adri this seruitude": [0, 65535], "your will attend on their accords adri this seruitude makes": [0, 65535], "will attend on their accords adri this seruitude makes you": [0, 65535], "attend on their accords adri this seruitude makes you to": [0, 65535], "on their accords adri this seruitude makes you to keepe": [0, 65535], "their accords adri this seruitude makes you to keepe vnwed": [0, 65535], "accords adri this seruitude makes you to keepe vnwed luci": [0, 65535], "adri this seruitude makes you to keepe vnwed luci not": [0, 65535], "this seruitude makes you to keepe vnwed luci not this": [0, 65535], "seruitude makes you to keepe vnwed luci not this but": [0, 65535], "makes you to keepe vnwed luci not this but troubles": [0, 65535], "you to keepe vnwed luci not this but troubles of": [0, 65535], "to keepe vnwed luci not this but troubles of the": [0, 65535], "keepe vnwed luci not this but troubles of the marriage": [0, 65535], "vnwed luci not this but troubles of the marriage bed": [0, 65535], "luci not this but troubles of the marriage bed adr": [0, 65535], "not this but troubles of the marriage bed adr but": [0, 65535], "this but troubles of the marriage bed adr but were": [0, 65535], "but troubles of the marriage bed adr but were you": [0, 65535], "troubles of the marriage bed adr but were you wedded": [0, 65535], "of the marriage bed adr but were you wedded you": [0, 65535], "the marriage bed adr but were you wedded you wold": [0, 65535], "marriage bed adr but were you wedded you wold bear": [0, 65535], "bed adr but were you wedded you wold bear some": [0, 65535], "adr but were you wedded you wold bear some sway": [0, 65535], "but were you wedded you wold bear some sway luc": [0, 65535], "were you wedded you wold bear some sway luc ere": [0, 65535], "you wedded you wold bear some sway luc ere i": [0, 65535], "wedded you wold bear some sway luc ere i learne": [0, 65535], "you wold bear some sway luc ere i learne loue": [0, 65535], "wold bear some sway luc ere i learne loue ile": [0, 65535], "bear some sway luc ere i learne loue ile practise": [0, 65535], "some sway luc ere i learne loue ile practise to": [0, 65535], "sway luc ere i learne loue ile practise to obey": [0, 65535], "luc ere i learne loue ile practise to obey adr": [0, 65535], "ere i learne loue ile practise to obey adr how": [0, 65535], "i learne loue ile practise to obey adr how if": [0, 65535], "learne loue ile practise to obey adr how if your": [0, 65535], "loue ile practise to obey adr how if your husband": [0, 65535], "ile practise to obey adr how if your husband start": [0, 65535], "practise to obey adr how if your husband start some": [0, 65535], "to obey adr how if your husband start some other": [0, 65535], "obey adr how if your husband start some other where": [0, 65535], "adr how if your husband start some other where luc": [0, 65535], "how if your husband start some other where luc till": [0, 65535], "if your husband start some other where luc till he": [0, 65535], "your husband start some other where luc till he come": [0, 65535], "husband start some other where luc till he come home": [0, 65535], "start some other where luc till he come home againe": [0, 65535], "some other where luc till he come home againe i": [0, 65535], "other where luc till he come home againe i would": [0, 65535], "where luc till he come home againe i would forbeare": [0, 65535], "luc till he come home againe i would forbeare adr": [0, 65535], "till he come home againe i would forbeare adr patience": [0, 65535], "he come home againe i would forbeare adr patience vnmou'd": [0, 65535], "come home againe i would forbeare adr patience vnmou'd no": [0, 65535], "home againe i would forbeare adr patience vnmou'd no maruel": [0, 65535], "againe i would forbeare adr patience vnmou'd no maruel though": [0, 65535], "i would forbeare adr patience vnmou'd no maruel though she": [0, 65535], "would forbeare adr patience vnmou'd no maruel though she pause": [0, 65535], "forbeare adr patience vnmou'd no maruel though she pause they": [0, 65535], "adr patience vnmou'd no maruel though she pause they can": [0, 65535], "patience vnmou'd no maruel though she pause they can be": [0, 65535], "vnmou'd no maruel though she pause they can be meeke": [0, 65535], "no maruel though she pause they can be meeke that": [0, 65535], "maruel though she pause they can be meeke that haue": [0, 65535], "though she pause they can be meeke that haue no": [0, 65535], "she pause they can be meeke that haue no other": [0, 65535], "pause they can be meeke that haue no other cause": [0, 65535], "they can be meeke that haue no other cause a": [0, 65535], "can be meeke that haue no other cause a wretched": [0, 65535], "be meeke that haue no other cause a wretched soule": [0, 65535], "meeke that haue no other cause a wretched soule bruis'd": [0, 65535], "that haue no other cause a wretched soule bruis'd with": [0, 65535], "haue no other cause a wretched soule bruis'd with aduersitie": [0, 65535], "no other cause a wretched soule bruis'd with aduersitie we": [0, 65535], "other cause a wretched soule bruis'd with aduersitie we bid": [0, 65535], "cause a wretched soule bruis'd with aduersitie we bid be": [0, 65535], "a wretched soule bruis'd with aduersitie we bid be quiet": [0, 65535], "wretched soule bruis'd with aduersitie we bid be quiet when": [0, 65535], "soule bruis'd with aduersitie we bid be quiet when we": [0, 65535], "bruis'd with aduersitie we bid be quiet when we heare": [0, 65535], "with aduersitie we bid be quiet when we heare it": [0, 65535], "aduersitie we bid be quiet when we heare it crie": [0, 65535], "we bid be quiet when we heare it crie but": [0, 65535], "bid be quiet when we heare it crie but were": [0, 65535], "be quiet when we heare it crie but were we": [0, 65535], "quiet when we heare it crie but were we burdned": [0, 65535], "when we heare it crie but were we burdned with": [0, 65535], "we heare it crie but were we burdned with like": [0, 65535], "heare it crie but were we burdned with like waight": [0, 65535], "it crie but were we burdned with like waight of": [0, 65535], "crie but were we burdned with like waight of paine": [0, 65535], "but were we burdned with like waight of paine as": [0, 65535], "were we burdned with like waight of paine as much": [0, 65535], "we burdned with like waight of paine as much or": [0, 65535], "burdned with like waight of paine as much or more": [0, 65535], "with like waight of paine as much or more we": [0, 65535], "like waight of paine as much or more we should": [0, 65535], "waight of paine as much or more we should our": [0, 65535], "of paine as much or more we should our selues": [0, 65535], "paine as much or more we should our selues complaine": [0, 65535], "as much or more we should our selues complaine so": [0, 65535], "much or more we should our selues complaine so thou": [0, 65535], "or more we should our selues complaine so thou that": [0, 65535], "more we should our selues complaine so thou that hast": [0, 65535], "we should our selues complaine so thou that hast no": [0, 65535], "should our selues complaine so thou that hast no vnkinde": [0, 65535], "our selues complaine so thou that hast no vnkinde mate": [0, 65535], "selues complaine so thou that hast no vnkinde mate to": [0, 65535], "complaine so thou that hast no vnkinde mate to greeue": [0, 65535], "so thou that hast no vnkinde mate to greeue thee": [0, 65535], "thou that hast no vnkinde mate to greeue thee with": [0, 65535], "that hast no vnkinde mate to greeue thee with vrging": [0, 65535], "hast no vnkinde mate to greeue thee with vrging helpelesse": [0, 65535], "no vnkinde mate to greeue thee with vrging helpelesse patience": [0, 65535], "vnkinde mate to greeue thee with vrging helpelesse patience would": [0, 65535], "mate to greeue thee with vrging helpelesse patience would releeue": [0, 65535], "to greeue thee with vrging helpelesse patience would releeue me": [0, 65535], "greeue thee with vrging helpelesse patience would releeue me but": [0, 65535], "thee with vrging helpelesse patience would releeue me but if": [0, 65535], "with vrging helpelesse patience would releeue me but if thou": [0, 65535], "vrging helpelesse patience would releeue me but if thou liue": [0, 65535], "helpelesse patience would releeue me but if thou liue to": [0, 65535], "patience would releeue me but if thou liue to see": [0, 65535], "would releeue me but if thou liue to see like": [0, 65535], "releeue me but if thou liue to see like right": [0, 65535], "me but if thou liue to see like right bereft": [0, 65535], "but if thou liue to see like right bereft this": [0, 65535], "if thou liue to see like right bereft this foole": [0, 65535], "thou liue to see like right bereft this foole beg'd": [0, 65535], "liue to see like right bereft this foole beg'd patience": [0, 65535], "to see like right bereft this foole beg'd patience in": [0, 65535], "see like right bereft this foole beg'd patience in thee": [0, 65535], "like right bereft this foole beg'd patience in thee will": [0, 65535], "right bereft this foole beg'd patience in thee will be": [0, 65535], "bereft this foole beg'd patience in thee will be left": [0, 65535], "this foole beg'd patience in thee will be left luci": [0, 65535], "foole beg'd patience in thee will be left luci well": [0, 65535], "beg'd patience in thee will be left luci well i": [0, 65535], "patience in thee will be left luci well i will": [0, 65535], "in thee will be left luci well i will marry": [0, 65535], "thee will be left luci well i will marry one": [0, 65535], "will be left luci well i will marry one day": [0, 65535], "be left luci well i will marry one day but": [0, 65535], "left luci well i will marry one day but to": [0, 65535], "luci well i will marry one day but to trie": [0, 65535], "well i will marry one day but to trie heere": [0, 65535], "i will marry one day but to trie heere comes": [0, 65535], "will marry one day but to trie heere comes your": [0, 65535], "marry one day but to trie heere comes your man": [0, 65535], "one day but to trie heere comes your man now": [0, 65535], "day but to trie heere comes your man now is": [0, 65535], "but to trie heere comes your man now is your": [0, 65535], "to trie heere comes your man now is your husband": [0, 65535], "trie heere comes your man now is your husband nie": [0, 65535], "heere comes your man now is your husband nie enter": [0, 65535], "comes your man now is your husband nie enter dromio": [0, 65535], "your man now is your husband nie enter dromio eph": [0, 65535], "man now is your husband nie enter dromio eph adr": [0, 65535], "now is your husband nie enter dromio eph adr say": [0, 65535], "is your husband nie enter dromio eph adr say is": [0, 65535], "your husband nie enter dromio eph adr say is your": [0, 65535], "husband nie enter dromio eph adr say is your tardie": [0, 65535], "nie enter dromio eph adr say is your tardie master": [0, 65535], "enter dromio eph adr say is your tardie master now": [0, 65535], "dromio eph adr say is your tardie master now at": [0, 65535], "eph adr say is your tardie master now at hand": [0, 65535], "adr say is your tardie master now at hand e": [0, 65535], "say is your tardie master now at hand e dro": [0, 65535], "is your tardie master now at hand e dro nay": [0, 65535], "your tardie master now at hand e dro nay hee's": [0, 65535], "tardie master now at hand e dro nay hee's at": [0, 65535], "master now at hand e dro nay hee's at too": [0, 65535], "now at hand e dro nay hee's at too hands": [0, 65535], "at hand e dro nay hee's at too hands with": [0, 65535], "hand e dro nay hee's at too hands with mee": [0, 65535], "e dro nay hee's at too hands with mee and": [0, 65535], "dro nay hee's at too hands with mee and that": [0, 65535], "nay hee's at too hands with mee and that my": [0, 65535], "hee's at too hands with mee and that my two": [0, 65535], "at too hands with mee and that my two eares": [0, 65535], "too hands with mee and that my two eares can": [0, 65535], "hands with mee and that my two eares can witnesse": [0, 65535], "with mee and that my two eares can witnesse adr": [0, 65535], "mee and that my two eares can witnesse adr say": [0, 65535], "and that my two eares can witnesse adr say didst": [0, 65535], "that my two eares can witnesse adr say didst thou": [0, 65535], "my two eares can witnesse adr say didst thou speake": [0, 65535], "two eares can witnesse adr say didst thou speake with": [0, 65535], "eares can witnesse adr say didst thou speake with him": [0, 65535], "can witnesse adr say didst thou speake with him knowst": [0, 65535], "witnesse adr say didst thou speake with him knowst thou": [0, 65535], "adr say didst thou speake with him knowst thou his": [0, 65535], "say didst thou speake with him knowst thou his minde": [0, 65535], "didst thou speake with him knowst thou his minde e": [0, 65535], "thou speake with him knowst thou his minde e dro": [0, 65535], "speake with him knowst thou his minde e dro i": [0, 65535], "with him knowst thou his minde e dro i i": [0, 65535], "him knowst thou his minde e dro i i he": [0, 65535], "knowst thou his minde e dro i i he told": [0, 65535], "thou his minde e dro i i he told his": [0, 65535], "his minde e dro i i he told his minde": [0, 65535], "minde e dro i i he told his minde vpon": [0, 65535], "e dro i i he told his minde vpon mine": [0, 65535], "dro i i he told his minde vpon mine eare": [0, 65535], "i i he told his minde vpon mine eare beshrew": [0, 65535], "i he told his minde vpon mine eare beshrew his": [0, 65535], "he told his minde vpon mine eare beshrew his hand": [0, 65535], "told his minde vpon mine eare beshrew his hand i": [0, 65535], "his minde vpon mine eare beshrew his hand i scarce": [0, 65535], "minde vpon mine eare beshrew his hand i scarce could": [0, 65535], "vpon mine eare beshrew his hand i scarce could vnderstand": [0, 65535], "mine eare beshrew his hand i scarce could vnderstand it": [0, 65535], "eare beshrew his hand i scarce could vnderstand it luc": [0, 65535], "beshrew his hand i scarce could vnderstand it luc spake": [0, 65535], "his hand i scarce could vnderstand it luc spake hee": [0, 65535], "hand i scarce could vnderstand it luc spake hee so": [0, 65535], "i scarce could vnderstand it luc spake hee so doubtfully": [0, 65535], "scarce could vnderstand it luc spake hee so doubtfully thou": [0, 65535], "could vnderstand it luc spake hee so doubtfully thou couldst": [0, 65535], "vnderstand it luc spake hee so doubtfully thou couldst not": [0, 65535], "it luc spake hee so doubtfully thou couldst not feele": [0, 65535], "luc spake hee so doubtfully thou couldst not feele his": [0, 65535], "spake hee so doubtfully thou couldst not feele his meaning": [0, 65535], "hee so doubtfully thou couldst not feele his meaning e": [0, 65535], "so doubtfully thou couldst not feele his meaning e dro": [0, 65535], "doubtfully thou couldst not feele his meaning e dro nay": [0, 65535], "thou couldst not feele his meaning e dro nay hee": [0, 65535], "couldst not feele his meaning e dro nay hee strooke": [0, 65535], "not feele his meaning e dro nay hee strooke so": [0, 65535], "feele his meaning e dro nay hee strooke so plainly": [0, 65535], "his meaning e dro nay hee strooke so plainly i": [0, 65535], "meaning e dro nay hee strooke so plainly i could": [0, 65535], "e dro nay hee strooke so plainly i could too": [0, 65535], "dro nay hee strooke so plainly i could too well": [0, 65535], "nay hee strooke so plainly i could too well feele": [0, 65535], "hee strooke so plainly i could too well feele his": [0, 65535], "strooke so plainly i could too well feele his blowes": [0, 65535], "so plainly i could too well feele his blowes and": [0, 65535], "plainly i could too well feele his blowes and withall": [0, 65535], "i could too well feele his blowes and withall so": [0, 65535], "could too well feele his blowes and withall so doubtfully": [0, 65535], "too well feele his blowes and withall so doubtfully that": [0, 65535], "well feele his blowes and withall so doubtfully that i": [0, 65535], "feele his blowes and withall so doubtfully that i could": [0, 65535], "his blowes and withall so doubtfully that i could scarce": [0, 65535], "blowes and withall so doubtfully that i could scarce vnderstand": [0, 65535], "and withall so doubtfully that i could scarce vnderstand them": [0, 65535], "withall so doubtfully that i could scarce vnderstand them adri": [0, 65535], "so doubtfully that i could scarce vnderstand them adri but": [0, 65535], "doubtfully that i could scarce vnderstand them adri but say": [0, 65535], "that i could scarce vnderstand them adri but say i": [0, 65535], "i could scarce vnderstand them adri but say i prethee": [0, 65535], "could scarce vnderstand them adri but say i prethee is": [0, 65535], "scarce vnderstand them adri but say i prethee is he": [0, 65535], "vnderstand them adri but say i prethee is he comming": [0, 65535], "them adri but say i prethee is he comming home": [0, 65535], "adri but say i prethee is he comming home it": [0, 65535], "but say i prethee is he comming home it seemes": [0, 65535], "say i prethee is he comming home it seemes he": [0, 65535], "i prethee is he comming home it seemes he hath": [0, 65535], "prethee is he comming home it seemes he hath great": [0, 65535], "is he comming home it seemes he hath great care": [0, 65535], "he comming home it seemes he hath great care to": [0, 65535], "comming home it seemes he hath great care to please": [0, 65535], "home it seemes he hath great care to please his": [0, 65535], "it seemes he hath great care to please his wife": [0, 65535], "seemes he hath great care to please his wife e": [0, 65535], "he hath great care to please his wife e dro": [0, 65535], "hath great care to please his wife e dro why": [0, 65535], "great care to please his wife e dro why mistresse": [0, 65535], "care to please his wife e dro why mistresse sure": [0, 65535], "to please his wife e dro why mistresse sure my": [0, 65535], "please his wife e dro why mistresse sure my master": [0, 65535], "his wife e dro why mistresse sure my master is": [0, 65535], "wife e dro why mistresse sure my master is horne": [0, 65535], "e dro why mistresse sure my master is horne mad": [0, 65535], "dro why mistresse sure my master is horne mad adri": [0, 65535], "why mistresse sure my master is horne mad adri horne": [0, 65535], "mistresse sure my master is horne mad adri horne mad": [0, 65535], "sure my master is horne mad adri horne mad thou": [0, 65535], "my master is horne mad adri horne mad thou villaine": [0, 65535], "master is horne mad adri horne mad thou villaine e": [0, 65535], "is horne mad adri horne mad thou villaine e dro": [0, 65535], "horne mad adri horne mad thou villaine e dro i": [0, 65535], "mad adri horne mad thou villaine e dro i meane": [0, 65535], "adri horne mad thou villaine e dro i meane not": [0, 65535], "horne mad thou villaine e dro i meane not cuckold": [0, 65535], "mad thou villaine e dro i meane not cuckold mad": [0, 65535], "thou villaine e dro i meane not cuckold mad but": [0, 65535], "villaine e dro i meane not cuckold mad but sure": [0, 65535], "e dro i meane not cuckold mad but sure he": [0, 65535], "dro i meane not cuckold mad but sure he is": [0, 65535], "i meane not cuckold mad but sure he is starke": [0, 65535], "meane not cuckold mad but sure he is starke mad": [0, 65535], "not cuckold mad but sure he is starke mad when": [0, 65535], "cuckold mad but sure he is starke mad when i": [0, 65535], "mad but sure he is starke mad when i desir'd": [0, 65535], "but sure he is starke mad when i desir'd him": [0, 65535], "sure he is starke mad when i desir'd him to": [0, 65535], "he is starke mad when i desir'd him to come": [0, 65535], "is starke mad when i desir'd him to come home": [0, 65535], "starke mad when i desir'd him to come home to": [0, 65535], "mad when i desir'd him to come home to dinner": [0, 65535], "when i desir'd him to come home to dinner he": [0, 65535], "i desir'd him to come home to dinner he ask'd": [0, 65535], "desir'd him to come home to dinner he ask'd me": [0, 65535], "him to come home to dinner he ask'd me for": [0, 65535], "to come home to dinner he ask'd me for a": [0, 65535], "come home to dinner he ask'd me for a hundred": [0, 65535], "home to dinner he ask'd me for a hundred markes": [0, 65535], "to dinner he ask'd me for a hundred markes in": [0, 65535], "dinner he ask'd me for a hundred markes in gold": [0, 65535], "he ask'd me for a hundred markes in gold 'tis": [0, 65535], "ask'd me for a hundred markes in gold 'tis dinner": [0, 65535], "me for a hundred markes in gold 'tis dinner time": [0, 65535], "for a hundred markes in gold 'tis dinner time quoth": [0, 65535], "a hundred markes in gold 'tis dinner time quoth i": [0, 65535], "hundred markes in gold 'tis dinner time quoth i my": [0, 65535], "markes in gold 'tis dinner time quoth i my gold": [0, 65535], "in gold 'tis dinner time quoth i my gold quoth": [0, 65535], "gold 'tis dinner time quoth i my gold quoth he": [0, 65535], "'tis dinner time quoth i my gold quoth he your": [0, 65535], "dinner time quoth i my gold quoth he your meat": [0, 65535], "time quoth i my gold quoth he your meat doth": [0, 65535], "quoth i my gold quoth he your meat doth burne": [0, 65535], "i my gold quoth he your meat doth burne quoth": [0, 65535], "my gold quoth he your meat doth burne quoth i": [0, 65535], "gold quoth he your meat doth burne quoth i my": [0, 65535], "quoth he your meat doth burne quoth i my gold": [0, 65535], "he your meat doth burne quoth i my gold quoth": [0, 65535], "your meat doth burne quoth i my gold quoth he": [0, 65535], "meat doth burne quoth i my gold quoth he will": [0, 65535], "doth burne quoth i my gold quoth he will you": [0, 65535], "burne quoth i my gold quoth he will you come": [0, 65535], "quoth i my gold quoth he will you come quoth": [0, 65535], "i my gold quoth he will you come quoth i": [0, 65535], "my gold quoth he will you come quoth i my": [0, 65535], "gold quoth he will you come quoth i my gold": [0, 65535], "quoth he will you come quoth i my gold quoth": [0, 65535], "he will you come quoth i my gold quoth he": [0, 65535], "will you come quoth i my gold quoth he where": [0, 65535], "you come quoth i my gold quoth he where is": [0, 65535], "come quoth i my gold quoth he where is the": [0, 65535], "quoth i my gold quoth he where is the thousand": [0, 65535], "i my gold quoth he where is the thousand markes": [0, 65535], "my gold quoth he where is the thousand markes i": [0, 65535], "gold quoth he where is the thousand markes i gaue": [0, 65535], "quoth he where is the thousand markes i gaue thee": [0, 65535], "he where is the thousand markes i gaue thee villaine": [0, 65535], "where is the thousand markes i gaue thee villaine the": [0, 65535], "is the thousand markes i gaue thee villaine the pigge": [0, 65535], "the thousand markes i gaue thee villaine the pigge quoth": [0, 65535], "thousand markes i gaue thee villaine the pigge quoth i": [0, 65535], "markes i gaue thee villaine the pigge quoth i is": [0, 65535], "i gaue thee villaine the pigge quoth i is burn'd": [0, 65535], "gaue thee villaine the pigge quoth i is burn'd my": [0, 65535], "thee villaine the pigge quoth i is burn'd my gold": [0, 65535], "villaine the pigge quoth i is burn'd my gold quoth": [0, 65535], "the pigge quoth i is burn'd my gold quoth he": [0, 65535], "pigge quoth i is burn'd my gold quoth he my": [0, 65535], "quoth i is burn'd my gold quoth he my mistresse": [0, 65535], "i is burn'd my gold quoth he my mistresse sir": [0, 65535], "is burn'd my gold quoth he my mistresse sir quoth": [0, 65535], "burn'd my gold quoth he my mistresse sir quoth i": [0, 65535], "my gold quoth he my mistresse sir quoth i hang": [0, 65535], "gold quoth he my mistresse sir quoth i hang vp": [0, 65535], "quoth he my mistresse sir quoth i hang vp thy": [0, 65535], "he my mistresse sir quoth i hang vp thy mistresse": [0, 65535], "my mistresse sir quoth i hang vp thy mistresse i": [0, 65535], "mistresse sir quoth i hang vp thy mistresse i know": [0, 65535], "sir quoth i hang vp thy mistresse i know not": [0, 65535], "quoth i hang vp thy mistresse i know not thy": [0, 65535], "i hang vp thy mistresse i know not thy mistresse": [0, 65535], "hang vp thy mistresse i know not thy mistresse out": [0, 65535], "vp thy mistresse i know not thy mistresse out on": [0, 65535], "thy mistresse i know not thy mistresse out on thy": [0, 65535], "mistresse i know not thy mistresse out on thy mistresse": [0, 65535], "i know not thy mistresse out on thy mistresse luci": [0, 65535], "know not thy mistresse out on thy mistresse luci quoth": [0, 65535], "not thy mistresse out on thy mistresse luci quoth who": [0, 65535], "thy mistresse out on thy mistresse luci quoth who e": [0, 65535], "mistresse out on thy mistresse luci quoth who e dr": [0, 65535], "out on thy mistresse luci quoth who e dr quoth": [0, 65535], "on thy mistresse luci quoth who e dr quoth my": [0, 65535], "thy mistresse luci quoth who e dr quoth my master": [0, 65535], "mistresse luci quoth who e dr quoth my master i": [0, 65535], "luci quoth who e dr quoth my master i know": [0, 65535], "quoth who e dr quoth my master i know quoth": [0, 65535], "who e dr quoth my master i know quoth he": [0, 65535], "e dr quoth my master i know quoth he no": [0, 65535], "dr quoth my master i know quoth he no house": [0, 65535], "quoth my master i know quoth he no house no": [0, 65535], "my master i know quoth he no house no wife": [0, 65535], "master i know quoth he no house no wife no": [0, 65535], "i know quoth he no house no wife no mistresse": [0, 65535], "know quoth he no house no wife no mistresse so": [0, 65535], "quoth he no house no wife no mistresse so that": [0, 65535], "he no house no wife no mistresse so that my": [0, 65535], "no house no wife no mistresse so that my arrant": [0, 65535], "house no wife no mistresse so that my arrant due": [0, 65535], "no wife no mistresse so that my arrant due vnto": [0, 65535], "wife no mistresse so that my arrant due vnto my": [0, 65535], "no mistresse so that my arrant due vnto my tongue": [0, 65535], "mistresse so that my arrant due vnto my tongue i": [0, 65535], "so that my arrant due vnto my tongue i thanke": [0, 65535], "that my arrant due vnto my tongue i thanke him": [0, 65535], "my arrant due vnto my tongue i thanke him i": [0, 65535], "arrant due vnto my tongue i thanke him i bare": [0, 65535], "due vnto my tongue i thanke him i bare home": [0, 65535], "vnto my tongue i thanke him i bare home vpon": [0, 65535], "my tongue i thanke him i bare home vpon my": [0, 65535], "tongue i thanke him i bare home vpon my shoulders": [0, 65535], "i thanke him i bare home vpon my shoulders for": [0, 65535], "thanke him i bare home vpon my shoulders for in": [0, 65535], "him i bare home vpon my shoulders for in conclusion": [0, 65535], "i bare home vpon my shoulders for in conclusion he": [0, 65535], "bare home vpon my shoulders for in conclusion he did": [0, 65535], "home vpon my shoulders for in conclusion he did beat": [0, 65535], "vpon my shoulders for in conclusion he did beat me": [0, 65535], "my shoulders for in conclusion he did beat me there": [0, 65535], "shoulders for in conclusion he did beat me there adri": [0, 65535], "for in conclusion he did beat me there adri go": [0, 65535], "in conclusion he did beat me there adri go back": [0, 65535], "conclusion he did beat me there adri go back againe": [0, 65535], "he did beat me there adri go back againe thou": [0, 65535], "did beat me there adri go back againe thou slaue": [0, 65535], "beat me there adri go back againe thou slaue fetch": [0, 65535], "me there adri go back againe thou slaue fetch him": [0, 65535], "there adri go back againe thou slaue fetch him home": [0, 65535], "adri go back againe thou slaue fetch him home dro": [0, 65535], "go back againe thou slaue fetch him home dro goe": [0, 65535], "back againe thou slaue fetch him home dro goe backe": [0, 65535], "againe thou slaue fetch him home dro goe backe againe": [0, 65535], "thou slaue fetch him home dro goe backe againe and": [0, 65535], "slaue fetch him home dro goe backe againe and be": [0, 65535], "fetch him home dro goe backe againe and be new": [0, 65535], "him home dro goe backe againe and be new beaten": [0, 65535], "home dro goe backe againe and be new beaten home": [0, 65535], "dro goe backe againe and be new beaten home for": [0, 65535], "goe backe againe and be new beaten home for gods": [0, 65535], "backe againe and be new beaten home for gods sake": [0, 65535], "againe and be new beaten home for gods sake send": [0, 65535], "and be new beaten home for gods sake send some": [0, 65535], "be new beaten home for gods sake send some other": [0, 65535], "new beaten home for gods sake send some other messenger": [0, 65535], "beaten home for gods sake send some other messenger adri": [0, 65535], "home for gods sake send some other messenger adri backe": [0, 65535], "for gods sake send some other messenger adri backe slaue": [0, 65535], "gods sake send some other messenger adri backe slaue or": [0, 65535], "sake send some other messenger adri backe slaue or i": [0, 65535], "send some other messenger adri backe slaue or i will": [0, 65535], "some other messenger adri backe slaue or i will breake": [0, 65535], "other messenger adri backe slaue or i will breake thy": [0, 65535], "messenger adri backe slaue or i will breake thy pate": [0, 65535], "adri backe slaue or i will breake thy pate a": [0, 65535], "backe slaue or i will breake thy pate a crosse": [0, 65535], "slaue or i will breake thy pate a crosse dro": [0, 65535], "or i will breake thy pate a crosse dro and": [0, 65535], "i will breake thy pate a crosse dro and he": [0, 65535], "will breake thy pate a crosse dro and he will": [0, 65535], "breake thy pate a crosse dro and he will blesse": [0, 65535], "thy pate a crosse dro and he will blesse the": [0, 65535], "pate a crosse dro and he will blesse the crosse": [0, 65535], "a crosse dro and he will blesse the crosse with": [0, 65535], "crosse dro and he will blesse the crosse with other": [0, 65535], "dro and he will blesse the crosse with other beating": [0, 65535], "and he will blesse the crosse with other beating betweene": [0, 65535], "he will blesse the crosse with other beating betweene you": [0, 65535], "will blesse the crosse with other beating betweene you i": [0, 65535], "blesse the crosse with other beating betweene you i shall": [0, 65535], "the crosse with other beating betweene you i shall haue": [0, 65535], "crosse with other beating betweene you i shall haue a": [0, 65535], "with other beating betweene you i shall haue a holy": [0, 65535], "other beating betweene you i shall haue a holy head": [0, 65535], "beating betweene you i shall haue a holy head adri": [0, 65535], "betweene you i shall haue a holy head adri hence": [0, 65535], "you i shall haue a holy head adri hence prating": [0, 65535], "i shall haue a holy head adri hence prating pesant": [0, 65535], "shall haue a holy head adri hence prating pesant fetch": [0, 65535], "haue a holy head adri hence prating pesant fetch thy": [0, 65535], "a holy head adri hence prating pesant fetch thy master": [0, 65535], "holy head adri hence prating pesant fetch thy master home": [0, 65535], "head adri hence prating pesant fetch thy master home dro": [0, 65535], "adri hence prating pesant fetch thy master home dro am": [0, 65535], "hence prating pesant fetch thy master home dro am i": [0, 65535], "prating pesant fetch thy master home dro am i so": [0, 65535], "pesant fetch thy master home dro am i so round": [0, 65535], "fetch thy master home dro am i so round with": [0, 65535], "thy master home dro am i so round with you": [0, 65535], "master home dro am i so round with you as": [0, 65535], "home dro am i so round with you as you": [0, 65535], "dro am i so round with you as you with": [0, 65535], "am i so round with you as you with me": [0, 65535], "i so round with you as you with me that": [0, 65535], "so round with you as you with me that like": [0, 65535], "round with you as you with me that like a": [0, 65535], "with you as you with me that like a foot": [0, 65535], "you as you with me that like a foot ball": [0, 65535], "as you with me that like a foot ball you": [0, 65535], "you with me that like a foot ball you doe": [0, 65535], "with me that like a foot ball you doe spurne": [0, 65535], "me that like a foot ball you doe spurne me": [0, 65535], "that like a foot ball you doe spurne me thus": [0, 65535], "like a foot ball you doe spurne me thus you": [0, 65535], "a foot ball you doe spurne me thus you spurne": [0, 65535], "foot ball you doe spurne me thus you spurne me": [0, 65535], "ball you doe spurne me thus you spurne me hence": [0, 65535], "you doe spurne me thus you spurne me hence and": [0, 65535], "doe spurne me thus you spurne me hence and he": [0, 65535], "spurne me thus you spurne me hence and he will": [0, 65535], "me thus you spurne me hence and he will spurne": [0, 65535], "thus you spurne me hence and he will spurne me": [0, 65535], "you spurne me hence and he will spurne me hither": [0, 65535], "spurne me hence and he will spurne me hither if": [0, 65535], "me hence and he will spurne me hither if i": [0, 65535], "hence and he will spurne me hither if i last": [0, 65535], "and he will spurne me hither if i last in": [0, 65535], "he will spurne me hither if i last in this": [0, 65535], "will spurne me hither if i last in this seruice": [0, 65535], "spurne me hither if i last in this seruice you": [0, 65535], "me hither if i last in this seruice you must": [0, 65535], "hither if i last in this seruice you must case": [0, 65535], "if i last in this seruice you must case me": [0, 65535], "i last in this seruice you must case me in": [0, 65535], "last in this seruice you must case me in leather": [0, 65535], "in this seruice you must case me in leather luci": [0, 65535], "this seruice you must case me in leather luci fie": [0, 65535], "seruice you must case me in leather luci fie how": [0, 65535], "you must case me in leather luci fie how impatience": [0, 65535], "must case me in leather luci fie how impatience lowreth": [0, 65535], "case me in leather luci fie how impatience lowreth in": [0, 65535], "me in leather luci fie how impatience lowreth in your": [0, 65535], "in leather luci fie how impatience lowreth in your face": [0, 65535], "leather luci fie how impatience lowreth in your face adri": [0, 65535], "luci fie how impatience lowreth in your face adri his": [0, 65535], "fie how impatience lowreth in your face adri his company": [0, 65535], "how impatience lowreth in your face adri his company must": [0, 65535], "impatience lowreth in your face adri his company must do": [0, 65535], "lowreth in your face adri his company must do his": [0, 65535], "in your face adri his company must do his minions": [0, 65535], "your face adri his company must do his minions grace": [0, 65535], "face adri his company must do his minions grace whil'st": [0, 65535], "adri his company must do his minions grace whil'st i": [0, 65535], "his company must do his minions grace whil'st i at": [0, 65535], "company must do his minions grace whil'st i at home": [0, 65535], "must do his minions grace whil'st i at home starue": [0, 65535], "do his minions grace whil'st i at home starue for": [0, 65535], "his minions grace whil'st i at home starue for a": [0, 65535], "minions grace whil'st i at home starue for a merrie": [0, 65535], "grace whil'st i at home starue for a merrie looke": [0, 65535], "whil'st i at home starue for a merrie looke hath": [0, 65535], "i at home starue for a merrie looke hath homelie": [0, 65535], "at home starue for a merrie looke hath homelie age": [0, 65535], "home starue for a merrie looke hath homelie age th'": [0, 65535], "starue for a merrie looke hath homelie age th' alluring": [0, 65535], "for a merrie looke hath homelie age th' alluring beauty": [0, 65535], "a merrie looke hath homelie age th' alluring beauty tooke": [0, 65535], "merrie looke hath homelie age th' alluring beauty tooke from": [0, 65535], "looke hath homelie age th' alluring beauty tooke from my": [0, 65535], "hath homelie age th' alluring beauty tooke from my poore": [0, 65535], "homelie age th' alluring beauty tooke from my poore cheeke": [0, 65535], "age th' alluring beauty tooke from my poore cheeke then": [0, 65535], "th' alluring beauty tooke from my poore cheeke then he": [0, 65535], "alluring beauty tooke from my poore cheeke then he hath": [0, 65535], "beauty tooke from my poore cheeke then he hath wasted": [0, 65535], "tooke from my poore cheeke then he hath wasted it": [0, 65535], "from my poore cheeke then he hath wasted it are": [0, 65535], "my poore cheeke then he hath wasted it are my": [0, 65535], "poore cheeke then he hath wasted it are my discourses": [0, 65535], "cheeke then he hath wasted it are my discourses dull": [0, 65535], "then he hath wasted it are my discourses dull barren": [0, 65535], "he hath wasted it are my discourses dull barren my": [0, 65535], "hath wasted it are my discourses dull barren my wit": [0, 65535], "wasted it are my discourses dull barren my wit if": [0, 65535], "it are my discourses dull barren my wit if voluble": [0, 65535], "are my discourses dull barren my wit if voluble and": [0, 65535], "my discourses dull barren my wit if voluble and sharpe": [0, 65535], "discourses dull barren my wit if voluble and sharpe discourse": [0, 65535], "dull barren my wit if voluble and sharpe discourse be": [0, 65535], "barren my wit if voluble and sharpe discourse be mar'd": [0, 65535], "my wit if voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "wit if voluble and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "if voluble and sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse blunts it more": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts it more then": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it more then marble": [0, 65535], "discourse be mar'd vnkindnesse blunts it more then marble hard": [0, 65535], "be mar'd vnkindnesse blunts it more then marble hard doe": [0, 65535], "mar'd vnkindnesse blunts it more then marble hard doe their": [0, 65535], "vnkindnesse blunts it more then marble hard doe their gay": [0, 65535], "blunts it more then marble hard doe their gay vestments": [0, 65535], "it more then marble hard doe their gay vestments his": [0, 65535], "more then marble hard doe their gay vestments his affections": [0, 65535], "then marble hard doe their gay vestments his affections baite": [0, 65535], "marble hard doe their gay vestments his affections baite that's": [0, 65535], "hard doe their gay vestments his affections baite that's not": [0, 65535], "doe their gay vestments his affections baite that's not my": [0, 65535], "their gay vestments his affections baite that's not my fault": [0, 65535], "gay vestments his affections baite that's not my fault hee's": [0, 65535], "vestments his affections baite that's not my fault hee's master": [0, 65535], "his affections baite that's not my fault hee's master of": [0, 65535], "affections baite that's not my fault hee's master of my": [0, 65535], "baite that's not my fault hee's master of my state": [0, 65535], "that's not my fault hee's master of my state what": [0, 65535], "not my fault hee's master of my state what ruines": [0, 65535], "my fault hee's master of my state what ruines are": [0, 65535], "fault hee's master of my state what ruines are in": [0, 65535], "hee's master of my state what ruines are in me": [0, 65535], "master of my state what ruines are in me that": [0, 65535], "of my state what ruines are in me that can": [0, 65535], "my state what ruines are in me that can be": [0, 65535], "state what ruines are in me that can be found": [0, 65535], "what ruines are in me that can be found by": [0, 65535], "ruines are in me that can be found by him": [0, 65535], "are in me that can be found by him not": [0, 65535], "in me that can be found by him not ruin'd": [0, 65535], "me that can be found by him not ruin'd then": [0, 65535], "that can be found by him not ruin'd then is": [0, 65535], "can be found by him not ruin'd then is he": [0, 65535], "be found by him not ruin'd then is he the": [0, 65535], "found by him not ruin'd then is he the ground": [0, 65535], "by him not ruin'd then is he the ground of": [0, 65535], "him not ruin'd then is he the ground of my": [0, 65535], "not ruin'd then is he the ground of my defeatures": [0, 65535], "ruin'd then is he the ground of my defeatures my": [0, 65535], "then is he the ground of my defeatures my decayed": [0, 65535], "is he the ground of my defeatures my decayed faire": [0, 65535], "he the ground of my defeatures my decayed faire a": [0, 65535], "the ground of my defeatures my decayed faire a sunnie": [0, 65535], "ground of my defeatures my decayed faire a sunnie looke": [0, 65535], "of my defeatures my decayed faire a sunnie looke of": [0, 65535], "my defeatures my decayed faire a sunnie looke of his": [0, 65535], "defeatures my decayed faire a sunnie looke of his would": [0, 65535], "my decayed faire a sunnie looke of his would soone": [0, 65535], "decayed faire a sunnie looke of his would soone repaire": [0, 65535], "faire a sunnie looke of his would soone repaire but": [0, 65535], "a sunnie looke of his would soone repaire but too": [0, 65535], "sunnie looke of his would soone repaire but too vnruly": [0, 65535], "looke of his would soone repaire but too vnruly deere": [0, 65535], "of his would soone repaire but too vnruly deere he": [0, 65535], "his would soone repaire but too vnruly deere he breakes": [0, 65535], "would soone repaire but too vnruly deere he breakes the": [0, 65535], "soone repaire but too vnruly deere he breakes the pale": [0, 65535], "repaire but too vnruly deere he breakes the pale and": [0, 65535], "but too vnruly deere he breakes the pale and feedes": [0, 65535], "too vnruly deere he breakes the pale and feedes from": [0, 65535], "vnruly deere he breakes the pale and feedes from home": [0, 65535], "deere he breakes the pale and feedes from home poore": [0, 65535], "he breakes the pale and feedes from home poore i": [0, 65535], "breakes the pale and feedes from home poore i am": [0, 65535], "the pale and feedes from home poore i am but": [0, 65535], "pale and feedes from home poore i am but his": [0, 65535], "and feedes from home poore i am but his stale": [0, 65535], "feedes from home poore i am but his stale luci": [0, 65535], "from home poore i am but his stale luci selfe": [0, 65535], "home poore i am but his stale luci selfe harming": [0, 65535], "poore i am but his stale luci selfe harming iealousie": [0, 65535], "i am but his stale luci selfe harming iealousie fie": [0, 65535], "am but his stale luci selfe harming iealousie fie beat": [0, 65535], "but his stale luci selfe harming iealousie fie beat it": [0, 65535], "his stale luci selfe harming iealousie fie beat it hence": [0, 65535], "stale luci selfe harming iealousie fie beat it hence ad": [0, 65535], "luci selfe harming iealousie fie beat it hence ad vnfeeling": [0, 65535], "selfe harming iealousie fie beat it hence ad vnfeeling fools": [0, 65535], "harming iealousie fie beat it hence ad vnfeeling fools can": [0, 65535], "iealousie fie beat it hence ad vnfeeling fools can with": [0, 65535], "fie beat it hence ad vnfeeling fools can with such": [0, 65535], "beat it hence ad vnfeeling fools can with such wrongs": [0, 65535], "it hence ad vnfeeling fools can with such wrongs dispence": [0, 65535], "hence ad vnfeeling fools can with such wrongs dispence i": [0, 65535], "ad vnfeeling fools can with such wrongs dispence i know": [0, 65535], "vnfeeling fools can with such wrongs dispence i know his": [0, 65535], "fools can with such wrongs dispence i know his eye": [0, 65535], "can with such wrongs dispence i know his eye doth": [0, 65535], "with such wrongs dispence i know his eye doth homage": [0, 65535], "such wrongs dispence i know his eye doth homage other": [0, 65535], "wrongs dispence i know his eye doth homage other where": [0, 65535], "dispence i know his eye doth homage other where or": [0, 65535], "i know his eye doth homage other where or else": [0, 65535], "know his eye doth homage other where or else what": [0, 65535], "his eye doth homage other where or else what lets": [0, 65535], "eye doth homage other where or else what lets it": [0, 65535], "doth homage other where or else what lets it but": [0, 65535], "homage other where or else what lets it but he": [0, 65535], "other where or else what lets it but he would": [0, 65535], "where or else what lets it but he would be": [0, 65535], "or else what lets it but he would be here": [0, 65535], "else what lets it but he would be here sister": [0, 65535], "what lets it but he would be here sister you": [0, 65535], "lets it but he would be here sister you know": [0, 65535], "it but he would be here sister you know he": [0, 65535], "but he would be here sister you know he promis'd": [0, 65535], "he would be here sister you know he promis'd me": [0, 65535], "would be here sister you know he promis'd me a": [0, 65535], "be here sister you know he promis'd me a chaine": [0, 65535], "here sister you know he promis'd me a chaine would": [0, 65535], "sister you know he promis'd me a chaine would that": [0, 65535], "you know he promis'd me a chaine would that alone": [0, 65535], "know he promis'd me a chaine would that alone a": [0, 65535], "he promis'd me a chaine would that alone a loue": [0, 65535], "promis'd me a chaine would that alone a loue he": [0, 65535], "me a chaine would that alone a loue he would": [0, 65535], "a chaine would that alone a loue he would detaine": [0, 65535], "chaine would that alone a loue he would detaine so": [0, 65535], "would that alone a loue he would detaine so he": [0, 65535], "that alone a loue he would detaine so he would": [0, 65535], "alone a loue he would detaine so he would keepe": [0, 65535], "a loue he would detaine so he would keepe faire": [0, 65535], "loue he would detaine so he would keepe faire quarter": [0, 65535], "he would detaine so he would keepe faire quarter with": [0, 65535], "would detaine so he would keepe faire quarter with his": [0, 65535], "detaine so he would keepe faire quarter with his bed": [0, 65535], "so he would keepe faire quarter with his bed i": [0, 65535], "he would keepe faire quarter with his bed i see": [0, 65535], "would keepe faire quarter with his bed i see the": [0, 65535], "keepe faire quarter with his bed i see the iewell": [0, 65535], "faire quarter with his bed i see the iewell best": [0, 65535], "quarter with his bed i see the iewell best enamaled": [0, 65535], "with his bed i see the iewell best enamaled will": [0, 65535], "his bed i see the iewell best enamaled will loose": [0, 65535], "bed i see the iewell best enamaled will loose his": [0, 65535], "i see the iewell best enamaled will loose his beautie": [0, 65535], "see the iewell best enamaled will loose his beautie yet": [0, 65535], "the iewell best enamaled will loose his beautie yet the": [0, 65535], "iewell best enamaled will loose his beautie yet the gold": [0, 65535], "best enamaled will loose his beautie yet the gold bides": [0, 65535], "enamaled will loose his beautie yet the gold bides still": [0, 65535], "will loose his beautie yet the gold bides still that": [0, 65535], "loose his beautie yet the gold bides still that others": [0, 65535], "his beautie yet the gold bides still that others touch": [0, 65535], "beautie yet the gold bides still that others touch and": [0, 65535], "yet the gold bides still that others touch and often": [0, 65535], "the gold bides still that others touch and often touching": [0, 65535], "gold bides still that others touch and often touching will": [0, 65535], "bides still that others touch and often touching will where": [0, 65535], "still that others touch and often touching will where gold": [0, 65535], "that others touch and often touching will where gold and": [0, 65535], "others touch and often touching will where gold and no": [0, 65535], "touch and often touching will where gold and no man": [0, 65535], "and often touching will where gold and no man that": [0, 65535], "often touching will where gold and no man that hath": [0, 65535], "touching will where gold and no man that hath a": [0, 65535], "will where gold and no man that hath a name": [0, 65535], "where gold and no man that hath a name by": [0, 65535], "gold and no man that hath a name by falshood": [0, 65535], "and no man that hath a name by falshood and": [0, 65535], "no man that hath a name by falshood and corruption": [0, 65535], "man that hath a name by falshood and corruption doth": [0, 65535], "that hath a name by falshood and corruption doth it": [0, 65535], "hath a name by falshood and corruption doth it shame": [0, 65535], "a name by falshood and corruption doth it shame since": [0, 65535], "name by falshood and corruption doth it shame since that": [0, 65535], "by falshood and corruption doth it shame since that my": [0, 65535], "falshood and corruption doth it shame since that my beautie": [0, 65535], "and corruption doth it shame since that my beautie cannot": [0, 65535], "corruption doth it shame since that my beautie cannot please": [0, 65535], "doth it shame since that my beautie cannot please his": [0, 65535], "it shame since that my beautie cannot please his eie": [0, 65535], "shame since that my beautie cannot please his eie ile": [0, 65535], "since that my beautie cannot please his eie ile weepe": [0, 65535], "that my beautie cannot please his eie ile weepe what's": [0, 65535], "my beautie cannot please his eie ile weepe what's left": [0, 65535], "beautie cannot please his eie ile weepe what's left away": [0, 65535], "cannot please his eie ile weepe what's left away and": [0, 65535], "please his eie ile weepe what's left away and weeping": [0, 65535], "his eie ile weepe what's left away and weeping die": [0, 65535], "eie ile weepe what's left away and weeping die luci": [0, 65535], "ile weepe what's left away and weeping die luci how": [0, 65535], "weepe what's left away and weeping die luci how manie": [0, 65535], "what's left away and weeping die luci how manie fond": [0, 65535], "left away and weeping die luci how manie fond fooles": [0, 65535], "away and weeping die luci how manie fond fooles serue": [0, 65535], "and weeping die luci how manie fond fooles serue mad": [0, 65535], "weeping die luci how manie fond fooles serue mad ielousie": [0, 65535], "die luci how manie fond fooles serue mad ielousie exit": [0, 65535], "luci how manie fond fooles serue mad ielousie exit enter": [0, 65535], "how manie fond fooles serue mad ielousie exit enter antipholis": [0, 65535], "manie fond fooles serue mad ielousie exit enter antipholis errotis": [0, 65535], "fond fooles serue mad ielousie exit enter antipholis errotis ant": [0, 65535], "fooles serue mad ielousie exit enter antipholis errotis ant the": [0, 65535], "serue mad ielousie exit enter antipholis errotis ant the gold": [0, 65535], "mad ielousie exit enter antipholis errotis ant the gold i": [0, 65535], "ielousie exit enter antipholis errotis ant the gold i gaue": [0, 65535], "exit enter antipholis errotis ant the gold i gaue to": [0, 65535], "enter antipholis errotis ant the gold i gaue to dromio": [0, 65535], "antipholis errotis ant the gold i gaue to dromio is": [0, 65535], "errotis ant the gold i gaue to dromio is laid": [0, 65535], "ant the gold i gaue to dromio is laid vp": [0, 65535], "the gold i gaue to dromio is laid vp safe": [0, 65535], "gold i gaue to dromio is laid vp safe at": [0, 65535], "i gaue to dromio is laid vp safe at the": [0, 65535], "gaue to dromio is laid vp safe at the centaur": [0, 65535], "to dromio is laid vp safe at the centaur and": [0, 65535], "dromio is laid vp safe at the centaur and the": [0, 65535], "is laid vp safe at the centaur and the heedfull": [0, 65535], "laid vp safe at the centaur and the heedfull slaue": [0, 65535], "vp safe at the centaur and the heedfull slaue is": [0, 65535], "safe at the centaur and the heedfull slaue is wandred": [0, 65535], "at the centaur and the heedfull slaue is wandred forth": [0, 65535], "the centaur and the heedfull slaue is wandred forth in": [0, 65535], "centaur and the heedfull slaue is wandred forth in care": [0, 65535], "and the heedfull slaue is wandred forth in care to": [0, 65535], "the heedfull slaue is wandred forth in care to seeke": [0, 65535], "heedfull slaue is wandred forth in care to seeke me": [0, 65535], "slaue is wandred forth in care to seeke me out": [0, 65535], "is wandred forth in care to seeke me out by": [0, 65535], "wandred forth in care to seeke me out by computation": [0, 65535], "forth in care to seeke me out by computation and": [0, 65535], "in care to seeke me out by computation and mine": [0, 65535], "care to seeke me out by computation and mine hosts": [0, 65535], "to seeke me out by computation and mine hosts report": [0, 65535], "seeke me out by computation and mine hosts report i": [0, 65535], "me out by computation and mine hosts report i could": [0, 65535], "out by computation and mine hosts report i could not": [0, 65535], "by computation and mine hosts report i could not speake": [0, 65535], "computation and mine hosts report i could not speake with": [0, 65535], "and mine hosts report i could not speake with dromio": [0, 65535], "mine hosts report i could not speake with dromio since": [0, 65535], "hosts report i could not speake with dromio since at": [0, 65535], "report i could not speake with dromio since at first": [0, 65535], "i could not speake with dromio since at first i": [0, 65535], "could not speake with dromio since at first i sent": [0, 65535], "not speake with dromio since at first i sent him": [0, 65535], "speake with dromio since at first i sent him from": [0, 65535], "with dromio since at first i sent him from the": [0, 65535], "dromio since at first i sent him from the mart": [0, 65535], "since at first i sent him from the mart see": [0, 65535], "at first i sent him from the mart see here": [0, 65535], "first i sent him from the mart see here he": [0, 65535], "i sent him from the mart see here he comes": [0, 65535], "sent him from the mart see here he comes enter": [0, 65535], "him from the mart see here he comes enter dromio": [0, 65535], "from the mart see here he comes enter dromio siracusia": [0, 65535], "the mart see here he comes enter dromio siracusia how": [0, 65535], "mart see here he comes enter dromio siracusia how now": [0, 65535], "see here he comes enter dromio siracusia how now sir": [0, 65535], "here he comes enter dromio siracusia how now sir is": [0, 65535], "he comes enter dromio siracusia how now sir is your": [0, 65535], "comes enter dromio siracusia how now sir is your merrie": [0, 65535], "enter dromio siracusia how now sir is your merrie humor": [0, 65535], "dromio siracusia how now sir is your merrie humor alter'd": [0, 65535], "siracusia how now sir is your merrie humor alter'd as": [0, 65535], "how now sir is your merrie humor alter'd as you": [0, 65535], "now sir is your merrie humor alter'd as you loue": [0, 65535], "sir is your merrie humor alter'd as you loue stroakes": [0, 65535], "is your merrie humor alter'd as you loue stroakes so": [0, 65535], "your merrie humor alter'd as you loue stroakes so iest": [0, 65535], "merrie humor alter'd as you loue stroakes so iest with": [0, 65535], "humor alter'd as you loue stroakes so iest with me": [0, 65535], "alter'd as you loue stroakes so iest with me againe": [0, 65535], "as you loue stroakes so iest with me againe you": [0, 65535], "you loue stroakes so iest with me againe you know": [0, 65535], "loue stroakes so iest with me againe you know no": [0, 65535], "stroakes so iest with me againe you know no centaur": [0, 65535], "so iest with me againe you know no centaur you": [0, 65535], "iest with me againe you know no centaur you receiu'd": [0, 65535], "with me againe you know no centaur you receiu'd no": [0, 65535], "me againe you know no centaur you receiu'd no gold": [0, 65535], "againe you know no centaur you receiu'd no gold your": [0, 65535], "you know no centaur you receiu'd no gold your mistresse": [0, 65535], "know no centaur you receiu'd no gold your mistresse sent": [0, 65535], "no centaur you receiu'd no gold your mistresse sent to": [0, 65535], "centaur you receiu'd no gold your mistresse sent to haue": [0, 65535], "you receiu'd no gold your mistresse sent to haue me": [0, 65535], "receiu'd no gold your mistresse sent to haue me home": [0, 65535], "no gold your mistresse sent to haue me home to": [0, 65535], "gold your mistresse sent to haue me home to dinner": [0, 65535], "your mistresse sent to haue me home to dinner my": [0, 65535], "mistresse sent to haue me home to dinner my house": [0, 65535], "sent to haue me home to dinner my house was": [0, 65535], "to haue me home to dinner my house was at": [0, 65535], "haue me home to dinner my house was at the": [0, 65535], "me home to dinner my house was at the ph\u0153nix": [0, 65535], "home to dinner my house was at the ph\u0153nix wast": [0, 65535], "to dinner my house was at the ph\u0153nix wast thou": [0, 65535], "dinner my house was at the ph\u0153nix wast thou mad": [0, 65535], "my house was at the ph\u0153nix wast thou mad that": [0, 65535], "house was at the ph\u0153nix wast thou mad that thus": [0, 65535], "was at the ph\u0153nix wast thou mad that thus so": [0, 65535], "at the ph\u0153nix wast thou mad that thus so madlie": [0, 65535], "the ph\u0153nix wast thou mad that thus so madlie thou": [0, 65535], "ph\u0153nix wast thou mad that thus so madlie thou did": [0, 65535], "wast thou mad that thus so madlie thou did didst": [0, 65535], "thou mad that thus so madlie thou did didst answere": [0, 65535], "mad that thus so madlie thou did didst answere me": [0, 65535], "that thus so madlie thou did didst answere me s": [0, 65535], "thus so madlie thou did didst answere me s dro": [0, 65535], "so madlie thou did didst answere me s dro what": [0, 65535], "madlie thou did didst answere me s dro what answer": [0, 65535], "thou did didst answere me s dro what answer sir": [0, 65535], "did didst answere me s dro what answer sir when": [0, 65535], "didst answere me s dro what answer sir when spake": [0, 65535], "answere me s dro what answer sir when spake i": [0, 65535], "me s dro what answer sir when spake i such": [0, 65535], "s dro what answer sir when spake i such a": [0, 65535], "dro what answer sir when spake i such a word": [0, 65535], "what answer sir when spake i such a word e": [0, 65535], "answer sir when spake i such a word e ant": [0, 65535], "sir when spake i such a word e ant euen": [0, 65535], "when spake i such a word e ant euen now": [0, 65535], "spake i such a word e ant euen now euen": [0, 65535], "i such a word e ant euen now euen here": [0, 65535], "such a word e ant euen now euen here not": [0, 65535], "a word e ant euen now euen here not halfe": [0, 65535], "word e ant euen now euen here not halfe an": [0, 65535], "e ant euen now euen here not halfe an howre": [0, 65535], "ant euen now euen here not halfe an howre since": [0, 65535], "euen now euen here not halfe an howre since s": [0, 65535], "now euen here not halfe an howre since s dro": [0, 65535], "euen here not halfe an howre since s dro i": [0, 65535], "here not halfe an howre since s dro i did": [0, 65535], "not halfe an howre since s dro i did not": [0, 65535], "halfe an howre since s dro i did not see": [0, 65535], "an howre since s dro i did not see you": [0, 65535], "howre since s dro i did not see you since": [0, 65535], "since s dro i did not see you since you": [0, 65535], "s dro i did not see you since you sent": [0, 65535], "dro i did not see you since you sent me": [0, 65535], "i did not see you since you sent me hence": [0, 65535], "did not see you since you sent me hence home": [0, 65535], "not see you since you sent me hence home to": [0, 65535], "see you since you sent me hence home to the": [0, 65535], "you since you sent me hence home to the centaur": [0, 65535], "since you sent me hence home to the centaur with": [0, 65535], "you sent me hence home to the centaur with the": [0, 65535], "sent me hence home to the centaur with the gold": [0, 65535], "me hence home to the centaur with the gold you": [0, 65535], "hence home to the centaur with the gold you gaue": [0, 65535], "home to the centaur with the gold you gaue me": [0, 65535], "to the centaur with the gold you gaue me ant": [0, 65535], "the centaur with the gold you gaue me ant villaine": [0, 65535], "centaur with the gold you gaue me ant villaine thou": [0, 65535], "with the gold you gaue me ant villaine thou didst": [0, 65535], "the gold you gaue me ant villaine thou didst denie": [0, 65535], "gold you gaue me ant villaine thou didst denie the": [0, 65535], "you gaue me ant villaine thou didst denie the golds": [0, 65535], "gaue me ant villaine thou didst denie the golds receit": [0, 65535], "me ant villaine thou didst denie the golds receit and": [0, 65535], "ant villaine thou didst denie the golds receit and toldst": [0, 65535], "villaine thou didst denie the golds receit and toldst me": [0, 65535], "thou didst denie the golds receit and toldst me of": [0, 65535], "didst denie the golds receit and toldst me of a": [0, 65535], "denie the golds receit and toldst me of a mistresse": [0, 65535], "the golds receit and toldst me of a mistresse and": [0, 65535], "golds receit and toldst me of a mistresse and a": [0, 65535], "receit and toldst me of a mistresse and a dinner": [0, 65535], "and toldst me of a mistresse and a dinner for": [0, 65535], "toldst me of a mistresse and a dinner for which": [0, 65535], "me of a mistresse and a dinner for which i": [0, 65535], "of a mistresse and a dinner for which i hope": [0, 65535], "a mistresse and a dinner for which i hope thou": [0, 65535], "mistresse and a dinner for which i hope thou feltst": [0, 65535], "and a dinner for which i hope thou feltst i": [0, 65535], "a dinner for which i hope thou feltst i was": [0, 65535], "dinner for which i hope thou feltst i was displeas'd": [0, 65535], "for which i hope thou feltst i was displeas'd s": [0, 65535], "which i hope thou feltst i was displeas'd s dro": [0, 65535], "i hope thou feltst i was displeas'd s dro i": [0, 65535], "hope thou feltst i was displeas'd s dro i am": [0, 65535], "thou feltst i was displeas'd s dro i am glad": [0, 65535], "feltst i was displeas'd s dro i am glad to": [0, 65535], "i was displeas'd s dro i am glad to see": [0, 65535], "was displeas'd s dro i am glad to see you": [0, 65535], "displeas'd s dro i am glad to see you in": [0, 65535], "s dro i am glad to see you in this": [0, 65535], "dro i am glad to see you in this merrie": [0, 65535], "i am glad to see you in this merrie vaine": [0, 65535], "am glad to see you in this merrie vaine what": [0, 65535], "glad to see you in this merrie vaine what meanes": [0, 65535], "to see you in this merrie vaine what meanes this": [0, 65535], "see you in this merrie vaine what meanes this iest": [0, 65535], "you in this merrie vaine what meanes this iest i": [0, 65535], "in this merrie vaine what meanes this iest i pray": [0, 65535], "this merrie vaine what meanes this iest i pray you": [0, 65535], "merrie vaine what meanes this iest i pray you master": [0, 65535], "vaine what meanes this iest i pray you master tell": [0, 65535], "what meanes this iest i pray you master tell me": [0, 65535], "meanes this iest i pray you master tell me ant": [0, 65535], "this iest i pray you master tell me ant yea": [0, 65535], "iest i pray you master tell me ant yea dost": [0, 65535], "i pray you master tell me ant yea dost thou": [0, 65535], "pray you master tell me ant yea dost thou ieere": [0, 65535], "you master tell me ant yea dost thou ieere flowt": [0, 65535], "master tell me ant yea dost thou ieere flowt me": [0, 65535], "tell me ant yea dost thou ieere flowt me in": [0, 65535], "me ant yea dost thou ieere flowt me in the": [0, 65535], "ant yea dost thou ieere flowt me in the teeth": [0, 65535], "yea dost thou ieere flowt me in the teeth thinkst": [0, 65535], "dost thou ieere flowt me in the teeth thinkst thou": [0, 65535], "thou ieere flowt me in the teeth thinkst thou i": [0, 65535], "ieere flowt me in the teeth thinkst thou i iest": [0, 65535], "flowt me in the teeth thinkst thou i iest hold": [0, 65535], "me in the teeth thinkst thou i iest hold take": [0, 65535], "in the teeth thinkst thou i iest hold take thou": [0, 65535], "the teeth thinkst thou i iest hold take thou that": [0, 65535], "teeth thinkst thou i iest hold take thou that that": [0, 65535], "thinkst thou i iest hold take thou that that beats": [0, 65535], "thou i iest hold take thou that that beats dro": [0, 65535], "i iest hold take thou that that beats dro s": [0, 65535], "iest hold take thou that that beats dro s dr": [0, 65535], "hold take thou that that beats dro s dr hold": [0, 65535], "take thou that that beats dro s dr hold sir": [0, 65535], "thou that that beats dro s dr hold sir for": [0, 65535], "that that beats dro s dr hold sir for gods": [0, 65535], "that beats dro s dr hold sir for gods sake": [0, 65535], "beats dro s dr hold sir for gods sake now": [0, 65535], "dro s dr hold sir for gods sake now your": [0, 65535], "s dr hold sir for gods sake now your iest": [0, 65535], "dr hold sir for gods sake now your iest is": [0, 65535], "hold sir for gods sake now your iest is earnest": [0, 65535], "sir for gods sake now your iest is earnest vpon": [0, 65535], "for gods sake now your iest is earnest vpon what": [0, 65535], "gods sake now your iest is earnest vpon what bargaine": [0, 65535], "sake now your iest is earnest vpon what bargaine do": [0, 65535], "now your iest is earnest vpon what bargaine do you": [0, 65535], "your iest is earnest vpon what bargaine do you giue": [0, 65535], "iest is earnest vpon what bargaine do you giue it": [0, 65535], "is earnest vpon what bargaine do you giue it me": [0, 65535], "earnest vpon what bargaine do you giue it me antiph": [0, 65535], "vpon what bargaine do you giue it me antiph because": [0, 65535], "what bargaine do you giue it me antiph because that": [0, 65535], "bargaine do you giue it me antiph because that i": [0, 65535], "do you giue it me antiph because that i familiarlie": [0, 65535], "you giue it me antiph because that i familiarlie sometimes": [0, 65535], "giue it me antiph because that i familiarlie sometimes doe": [0, 65535], "it me antiph because that i familiarlie sometimes doe vse": [0, 65535], "me antiph because that i familiarlie sometimes doe vse you": [0, 65535], "antiph because that i familiarlie sometimes doe vse you for": [0, 65535], "because that i familiarlie sometimes doe vse you for my": [0, 65535], "that i familiarlie sometimes doe vse you for my foole": [0, 65535], "i familiarlie sometimes doe vse you for my foole and": [0, 65535], "familiarlie sometimes doe vse you for my foole and chat": [0, 65535], "sometimes doe vse you for my foole and chat with": [0, 65535], "doe vse you for my foole and chat with you": [0, 65535], "vse you for my foole and chat with you your": [0, 65535], "you for my foole and chat with you your sawcinesse": [0, 65535], "for my foole and chat with you your sawcinesse will": [0, 65535], "my foole and chat with you your sawcinesse will iest": [0, 65535], "foole and chat with you your sawcinesse will iest vpon": [0, 65535], "and chat with you your sawcinesse will iest vpon my": [0, 65535], "chat with you your sawcinesse will iest vpon my loue": [0, 65535], "with you your sawcinesse will iest vpon my loue and": [0, 65535], "you your sawcinesse will iest vpon my loue and make": [0, 65535], "your sawcinesse will iest vpon my loue and make a": [0, 65535], "sawcinesse will iest vpon my loue and make a common": [0, 65535], "will iest vpon my loue and make a common of": [0, 65535], "iest vpon my loue and make a common of my": [0, 65535], "vpon my loue and make a common of my serious": [0, 65535], "my loue and make a common of my serious howres": [0, 65535], "loue and make a common of my serious howres when": [0, 65535], "and make a common of my serious howres when the": [0, 65535], "make a common of my serious howres when the sunne": [0, 65535], "a common of my serious howres when the sunne shines": [0, 65535], "common of my serious howres when the sunne shines let": [0, 65535], "of my serious howres when the sunne shines let foolish": [0, 65535], "my serious howres when the sunne shines let foolish gnats": [0, 65535], "serious howres when the sunne shines let foolish gnats make": [0, 65535], "howres when the sunne shines let foolish gnats make sport": [0, 65535], "when the sunne shines let foolish gnats make sport but": [0, 65535], "the sunne shines let foolish gnats make sport but creepe": [0, 65535], "sunne shines let foolish gnats make sport but creepe in": [0, 65535], "shines let foolish gnats make sport but creepe in crannies": [0, 65535], "let foolish gnats make sport but creepe in crannies when": [0, 65535], "foolish gnats make sport but creepe in crannies when he": [0, 65535], "gnats make sport but creepe in crannies when he hides": [0, 65535], "make sport but creepe in crannies when he hides his": [0, 65535], "sport but creepe in crannies when he hides his beames": [0, 65535], "but creepe in crannies when he hides his beames if": [0, 65535], "creepe in crannies when he hides his beames if you": [0, 65535], "in crannies when he hides his beames if you will": [0, 65535], "crannies when he hides his beames if you will iest": [0, 65535], "when he hides his beames if you will iest with": [0, 65535], "he hides his beames if you will iest with me": [0, 65535], "hides his beames if you will iest with me know": [0, 65535], "his beames if you will iest with me know my": [0, 65535], "beames if you will iest with me know my aspect": [0, 65535], "if you will iest with me know my aspect and": [0, 65535], "you will iest with me know my aspect and fashion": [0, 65535], "will iest with me know my aspect and fashion your": [0, 65535], "iest with me know my aspect and fashion your demeanor": [0, 65535], "with me know my aspect and fashion your demeanor to": [0, 65535], "me know my aspect and fashion your demeanor to my": [0, 65535], "know my aspect and fashion your demeanor to my lookes": [0, 65535], "my aspect and fashion your demeanor to my lookes or": [0, 65535], "aspect and fashion your demeanor to my lookes or i": [0, 65535], "and fashion your demeanor to my lookes or i will": [0, 65535], "fashion your demeanor to my lookes or i will beat": [0, 65535], "your demeanor to my lookes or i will beat this": [0, 65535], "demeanor to my lookes or i will beat this method": [0, 65535], "to my lookes or i will beat this method in": [0, 65535], "my lookes or i will beat this method in your": [0, 65535], "lookes or i will beat this method in your sconce": [0, 65535], "or i will beat this method in your sconce s": [0, 65535], "i will beat this method in your sconce s dro": [0, 65535], "will beat this method in your sconce s dro sconce": [0, 65535], "beat this method in your sconce s dro sconce call": [0, 65535], "this method in your sconce s dro sconce call you": [0, 65535], "method in your sconce s dro sconce call you it": [0, 65535], "in your sconce s dro sconce call you it so": [0, 65535], "your sconce s dro sconce call you it so you": [0, 65535], "sconce s dro sconce call you it so you would": [0, 65535], "s dro sconce call you it so you would leaue": [0, 65535], "dro sconce call you it so you would leaue battering": [0, 65535], "sconce call you it so you would leaue battering i": [0, 65535], "call you it so you would leaue battering i had": [0, 65535], "you it so you would leaue battering i had rather": [0, 65535], "it so you would leaue battering i had rather haue": [0, 65535], "so you would leaue battering i had rather haue it": [0, 65535], "you would leaue battering i had rather haue it a": [0, 65535], "would leaue battering i had rather haue it a head": [0, 65535], "leaue battering i had rather haue it a head and": [0, 65535], "battering i had rather haue it a head and you": [0, 65535], "i had rather haue it a head and you vse": [0, 65535], "had rather haue it a head and you vse these": [0, 65535], "rather haue it a head and you vse these blows": [0, 65535], "haue it a head and you vse these blows long": [0, 65535], "it a head and you vse these blows long i": [0, 65535], "a head and you vse these blows long i must": [0, 65535], "head and you vse these blows long i must get": [0, 65535], "and you vse these blows long i must get a": [0, 65535], "you vse these blows long i must get a sconce": [0, 65535], "vse these blows long i must get a sconce for": [0, 65535], "these blows long i must get a sconce for my": [0, 65535], "blows long i must get a sconce for my head": [0, 65535], "long i must get a sconce for my head and": [0, 65535], "i must get a sconce for my head and insconce": [0, 65535], "must get a sconce for my head and insconce it": [0, 65535], "get a sconce for my head and insconce it to": [0, 65535], "a sconce for my head and insconce it to or": [0, 65535], "sconce for my head and insconce it to or else": [0, 65535], "for my head and insconce it to or else i": [0, 65535], "my head and insconce it to or else i shall": [0, 65535], "head and insconce it to or else i shall seek": [0, 65535], "and insconce it to or else i shall seek my": [0, 65535], "insconce it to or else i shall seek my wit": [0, 65535], "it to or else i shall seek my wit in": [0, 65535], "to or else i shall seek my wit in my": [0, 65535], "or else i shall seek my wit in my shoulders": [0, 65535], "else i shall seek my wit in my shoulders but": [0, 65535], "i shall seek my wit in my shoulders but i": [0, 65535], "shall seek my wit in my shoulders but i pray": [0, 65535], "seek my wit in my shoulders but i pray sir": [0, 65535], "my wit in my shoulders but i pray sir why": [0, 65535], "wit in my shoulders but i pray sir why am": [0, 65535], "in my shoulders but i pray sir why am i": [0, 65535], "my shoulders but i pray sir why am i beaten": [0, 65535], "shoulders but i pray sir why am i beaten ant": [0, 65535], "but i pray sir why am i beaten ant dost": [0, 65535], "i pray sir why am i beaten ant dost thou": [0, 65535], "pray sir why am i beaten ant dost thou not": [0, 65535], "sir why am i beaten ant dost thou not know": [0, 65535], "why am i beaten ant dost thou not know s": [0, 65535], "am i beaten ant dost thou not know s dro": [0, 65535], "i beaten ant dost thou not know s dro nothing": [0, 65535], "beaten ant dost thou not know s dro nothing sir": [0, 65535], "ant dost thou not know s dro nothing sir but": [0, 65535], "dost thou not know s dro nothing sir but that": [0, 65535], "thou not know s dro nothing sir but that i": [0, 65535], "not know s dro nothing sir but that i am": [0, 65535], "know s dro nothing sir but that i am beaten": [0, 65535], "s dro nothing sir but that i am beaten ant": [0, 65535], "dro nothing sir but that i am beaten ant shall": [0, 65535], "nothing sir but that i am beaten ant shall i": [0, 65535], "sir but that i am beaten ant shall i tell": [0, 65535], "but that i am beaten ant shall i tell you": [0, 65535], "that i am beaten ant shall i tell you why": [0, 65535], "i am beaten ant shall i tell you why s": [0, 65535], "am beaten ant shall i tell you why s dro": [0, 65535], "beaten ant shall i tell you why s dro i": [0, 65535], "ant shall i tell you why s dro i sir": [0, 65535], "shall i tell you why s dro i sir and": [0, 65535], "i tell you why s dro i sir and wherefore": [0, 65535], "tell you why s dro i sir and wherefore for": [0, 65535], "you why s dro i sir and wherefore for they": [0, 65535], "why s dro i sir and wherefore for they say": [0, 65535], "s dro i sir and wherefore for they say euery": [0, 65535], "dro i sir and wherefore for they say euery why": [0, 65535], "i sir and wherefore for they say euery why hath": [0, 65535], "sir and wherefore for they say euery why hath a": [0, 65535], "and wherefore for they say euery why hath a wherefore": [0, 65535], "wherefore for they say euery why hath a wherefore ant": [0, 65535], "for they say euery why hath a wherefore ant why": [0, 65535], "they say euery why hath a wherefore ant why first": [0, 65535], "say euery why hath a wherefore ant why first for": [0, 65535], "euery why hath a wherefore ant why first for flowting": [0, 65535], "why hath a wherefore ant why first for flowting me": [0, 65535], "hath a wherefore ant why first for flowting me and": [0, 65535], "a wherefore ant why first for flowting me and then": [0, 65535], "wherefore ant why first for flowting me and then wherefore": [0, 65535], "ant why first for flowting me and then wherefore for": [0, 65535], "why first for flowting me and then wherefore for vrging": [0, 65535], "first for flowting me and then wherefore for vrging it": [0, 65535], "for flowting me and then wherefore for vrging it the": [0, 65535], "flowting me and then wherefore for vrging it the second": [0, 65535], "me and then wherefore for vrging it the second time": [0, 65535], "and then wherefore for vrging it the second time to": [0, 65535], "then wherefore for vrging it the second time to me": [0, 65535], "wherefore for vrging it the second time to me s": [0, 65535], "for vrging it the second time to me s dro": [0, 65535], "vrging it the second time to me s dro was": [0, 65535], "it the second time to me s dro was there": [0, 65535], "the second time to me s dro was there euer": [0, 65535], "second time to me s dro was there euer anie": [0, 65535], "time to me s dro was there euer anie man": [0, 65535], "to me s dro was there euer anie man thus": [0, 65535], "me s dro was there euer anie man thus beaten": [0, 65535], "s dro was there euer anie man thus beaten out": [0, 65535], "dro was there euer anie man thus beaten out of": [0, 65535], "was there euer anie man thus beaten out of season": [0, 65535], "there euer anie man thus beaten out of season when": [0, 65535], "euer anie man thus beaten out of season when in": [0, 65535], "anie man thus beaten out of season when in the": [0, 65535], "man thus beaten out of season when in the why": [0, 65535], "thus beaten out of season when in the why and": [0, 65535], "beaten out of season when in the why and the": [0, 65535], "out of season when in the why and the wherefore": [0, 65535], "of season when in the why and the wherefore is": [0, 65535], "season when in the why and the wherefore is neither": [0, 65535], "when in the why and the wherefore is neither rime": [0, 65535], "in the why and the wherefore is neither rime nor": [0, 65535], "the why and the wherefore is neither rime nor reason": [0, 65535], "why and the wherefore is neither rime nor reason well": [0, 65535], "and the wherefore is neither rime nor reason well sir": [0, 65535], "the wherefore is neither rime nor reason well sir i": [0, 65535], "wherefore is neither rime nor reason well sir i thanke": [0, 65535], "is neither rime nor reason well sir i thanke you": [0, 65535], "neither rime nor reason well sir i thanke you ant": [0, 65535], "rime nor reason well sir i thanke you ant thanke": [0, 65535], "nor reason well sir i thanke you ant thanke me": [0, 65535], "reason well sir i thanke you ant thanke me sir": [0, 65535], "well sir i thanke you ant thanke me sir for": [0, 65535], "sir i thanke you ant thanke me sir for what": [0, 65535], "i thanke you ant thanke me sir for what s": [0, 65535], "thanke you ant thanke me sir for what s dro": [0, 65535], "you ant thanke me sir for what s dro marry": [0, 65535], "ant thanke me sir for what s dro marry sir": [0, 65535], "thanke me sir for what s dro marry sir for": [0, 65535], "me sir for what s dro marry sir for this": [0, 65535], "sir for what s dro marry sir for this something": [0, 65535], "for what s dro marry sir for this something that": [0, 65535], "what s dro marry sir for this something that you": [0, 65535], "s dro marry sir for this something that you gaue": [0, 65535], "dro marry sir for this something that you gaue me": [0, 65535], "marry sir for this something that you gaue me for": [0, 65535], "sir for this something that you gaue me for nothing": [0, 65535], "for this something that you gaue me for nothing ant": [0, 65535], "this something that you gaue me for nothing ant ile": [0, 65535], "something that you gaue me for nothing ant ile make": [0, 65535], "that you gaue me for nothing ant ile make you": [0, 65535], "you gaue me for nothing ant ile make you amends": [0, 65535], "gaue me for nothing ant ile make you amends next": [0, 65535], "me for nothing ant ile make you amends next to": [0, 65535], "for nothing ant ile make you amends next to giue": [0, 65535], "nothing ant ile make you amends next to giue you": [0, 65535], "ant ile make you amends next to giue you nothing": [0, 65535], "ile make you amends next to giue you nothing for": [0, 65535], "make you amends next to giue you nothing for something": [0, 65535], "you amends next to giue you nothing for something but": [0, 65535], "amends next to giue you nothing for something but say": [0, 65535], "next to giue you nothing for something but say sir": [0, 65535], "to giue you nothing for something but say sir is": [0, 65535], "giue you nothing for something but say sir is it": [0, 65535], "you nothing for something but say sir is it dinner": [0, 65535], "nothing for something but say sir is it dinner time": [0, 65535], "for something but say sir is it dinner time s": [0, 65535], "something but say sir is it dinner time s dro": [0, 65535], "but say sir is it dinner time s dro no": [0, 65535], "say sir is it dinner time s dro no sir": [0, 65535], "sir is it dinner time s dro no sir i": [0, 65535], "is it dinner time s dro no sir i thinke": [0, 65535], "it dinner time s dro no sir i thinke the": [0, 65535], "dinner time s dro no sir i thinke the meat": [0, 65535], "time s dro no sir i thinke the meat wants": [0, 65535], "s dro no sir i thinke the meat wants that": [0, 65535], "dro no sir i thinke the meat wants that i": [0, 65535], "no sir i thinke the meat wants that i haue": [0, 65535], "sir i thinke the meat wants that i haue ant": [0, 65535], "i thinke the meat wants that i haue ant in": [0, 65535], "thinke the meat wants that i haue ant in good": [0, 65535], "the meat wants that i haue ant in good time": [0, 65535], "meat wants that i haue ant in good time sir": [0, 65535], "wants that i haue ant in good time sir what's": [0, 65535], "that i haue ant in good time sir what's that": [0, 65535], "i haue ant in good time sir what's that s": [0, 65535], "haue ant in good time sir what's that s dro": [0, 65535], "ant in good time sir what's that s dro basting": [0, 65535], "in good time sir what's that s dro basting ant": [0, 65535], "good time sir what's that s dro basting ant well": [0, 65535], "time sir what's that s dro basting ant well sir": [0, 65535], "sir what's that s dro basting ant well sir then": [0, 65535], "what's that s dro basting ant well sir then 'twill": [0, 65535], "that s dro basting ant well sir then 'twill be": [0, 65535], "s dro basting ant well sir then 'twill be drie": [0, 65535], "dro basting ant well sir then 'twill be drie s": [0, 65535], "basting ant well sir then 'twill be drie s dro": [0, 65535], "ant well sir then 'twill be drie s dro if": [0, 65535], "well sir then 'twill be drie s dro if it": [0, 65535], "sir then 'twill be drie s dro if it be": [0, 65535], "then 'twill be drie s dro if it be sir": [0, 65535], "'twill be drie s dro if it be sir i": [0, 65535], "be drie s dro if it be sir i pray": [0, 65535], "drie s dro if it be sir i pray you": [0, 65535], "s dro if it be sir i pray you eat": [0, 65535], "dro if it be sir i pray you eat none": [0, 65535], "if it be sir i pray you eat none of": [0, 65535], "it be sir i pray you eat none of it": [0, 65535], "be sir i pray you eat none of it ant": [0, 65535], "sir i pray you eat none of it ant your": [0, 65535], "i pray you eat none of it ant your reason": [0, 65535], "pray you eat none of it ant your reason s": [0, 65535], "you eat none of it ant your reason s dro": [0, 65535], "eat none of it ant your reason s dro lest": [0, 65535], "none of it ant your reason s dro lest it": [0, 65535], "of it ant your reason s dro lest it make": [0, 65535], "it ant your reason s dro lest it make you": [0, 65535], "ant your reason s dro lest it make you chollericke": [0, 65535], "your reason s dro lest it make you chollericke and": [0, 65535], "reason s dro lest it make you chollericke and purchase": [0, 65535], "s dro lest it make you chollericke and purchase me": [0, 65535], "dro lest it make you chollericke and purchase me another": [0, 65535], "lest it make you chollericke and purchase me another drie": [0, 65535], "it make you chollericke and purchase me another drie basting": [0, 65535], "make you chollericke and purchase me another drie basting ant": [0, 65535], "you chollericke and purchase me another drie basting ant well": [0, 65535], "chollericke and purchase me another drie basting ant well sir": [0, 65535], "and purchase me another drie basting ant well sir learne": [0, 65535], "purchase me another drie basting ant well sir learne to": [0, 65535], "me another drie basting ant well sir learne to iest": [0, 65535], "another drie basting ant well sir learne to iest in": [0, 65535], "drie basting ant well sir learne to iest in good": [0, 65535], "basting ant well sir learne to iest in good time": [0, 65535], "ant well sir learne to iest in good time there's": [0, 65535], "well sir learne to iest in good time there's a": [0, 65535], "sir learne to iest in good time there's a time": [0, 65535], "learne to iest in good time there's a time for": [0, 65535], "to iest in good time there's a time for all": [0, 65535], "iest in good time there's a time for all things": [0, 65535], "in good time there's a time for all things s": [0, 65535], "good time there's a time for all things s dro": [0, 65535], "time there's a time for all things s dro i": [0, 65535], "there's a time for all things s dro i durst": [0, 65535], "a time for all things s dro i durst haue": [0, 65535], "time for all things s dro i durst haue denied": [0, 65535], "for all things s dro i durst haue denied that": [0, 65535], "all things s dro i durst haue denied that before": [0, 65535], "things s dro i durst haue denied that before you": [0, 65535], "s dro i durst haue denied that before you were": [0, 65535], "dro i durst haue denied that before you were so": [0, 65535], "i durst haue denied that before you were so chollericke": [0, 65535], "durst haue denied that before you were so chollericke anti": [0, 65535], "haue denied that before you were so chollericke anti by": [0, 65535], "denied that before you were so chollericke anti by what": [0, 65535], "that before you were so chollericke anti by what rule": [0, 65535], "before you were so chollericke anti by what rule sir": [0, 65535], "you were so chollericke anti by what rule sir s": [0, 65535], "were so chollericke anti by what rule sir s dro": [0, 65535], "so chollericke anti by what rule sir s dro marry": [0, 65535], "chollericke anti by what rule sir s dro marry sir": [0, 65535], "anti by what rule sir s dro marry sir by": [0, 65535], "by what rule sir s dro marry sir by a": [0, 65535], "what rule sir s dro marry sir by a rule": [0, 65535], "rule sir s dro marry sir by a rule as": [0, 65535], "sir s dro marry sir by a rule as plaine": [0, 65535], "s dro marry sir by a rule as plaine as": [0, 65535], "dro marry sir by a rule as plaine as the": [0, 65535], "marry sir by a rule as plaine as the plaine": [0, 65535], "sir by a rule as plaine as the plaine bald": [0, 65535], "by a rule as plaine as the plaine bald pate": [0, 65535], "a rule as plaine as the plaine bald pate of": [0, 65535], "rule as plaine as the plaine bald pate of father": [0, 65535], "as plaine as the plaine bald pate of father time": [0, 65535], "plaine as the plaine bald pate of father time himselfe": [0, 65535], "as the plaine bald pate of father time himselfe ant": [0, 65535], "the plaine bald pate of father time himselfe ant let's": [0, 65535], "plaine bald pate of father time himselfe ant let's heare": [0, 65535], "bald pate of father time himselfe ant let's heare it": [0, 65535], "pate of father time himselfe ant let's heare it s": [0, 65535], "of father time himselfe ant let's heare it s dro": [0, 65535], "father time himselfe ant let's heare it s dro there's": [0, 65535], "time himselfe ant let's heare it s dro there's no": [0, 65535], "himselfe ant let's heare it s dro there's no time": [0, 65535], "ant let's heare it s dro there's no time for": [0, 65535], "let's heare it s dro there's no time for a": [0, 65535], "heare it s dro there's no time for a man": [0, 65535], "it s dro there's no time for a man to": [0, 65535], "s dro there's no time for a man to recouer": [0, 65535], "dro there's no time for a man to recouer his": [0, 65535], "there's no time for a man to recouer his haire": [0, 65535], "no time for a man to recouer his haire that": [0, 65535], "time for a man to recouer his haire that growes": [0, 65535], "for a man to recouer his haire that growes bald": [0, 65535], "a man to recouer his haire that growes bald by": [0, 65535], "man to recouer his haire that growes bald by nature": [0, 65535], "to recouer his haire that growes bald by nature ant": [0, 65535], "recouer his haire that growes bald by nature ant may": [0, 65535], "his haire that growes bald by nature ant may he": [0, 65535], "haire that growes bald by nature ant may he not": [0, 65535], "that growes bald by nature ant may he not doe": [0, 65535], "growes bald by nature ant may he not doe it": [0, 65535], "bald by nature ant may he not doe it by": [0, 65535], "by nature ant may he not doe it by fine": [0, 65535], "nature ant may he not doe it by fine and": [0, 65535], "ant may he not doe it by fine and recouerie": [0, 65535], "may he not doe it by fine and recouerie s": [0, 65535], "he not doe it by fine and recouerie s dro": [0, 65535], "not doe it by fine and recouerie s dro yes": [0, 65535], "doe it by fine and recouerie s dro yes to": [0, 65535], "it by fine and recouerie s dro yes to pay": [0, 65535], "by fine and recouerie s dro yes to pay a": [0, 65535], "fine and recouerie s dro yes to pay a fine": [0, 65535], "and recouerie s dro yes to pay a fine for": [0, 65535], "recouerie s dro yes to pay a fine for a": [0, 65535], "s dro yes to pay a fine for a perewig": [0, 65535], "dro yes to pay a fine for a perewig and": [0, 65535], "yes to pay a fine for a perewig and recouer": [0, 65535], "to pay a fine for a perewig and recouer the": [0, 65535], "pay a fine for a perewig and recouer the lost": [0, 65535], "a fine for a perewig and recouer the lost haire": [0, 65535], "fine for a perewig and recouer the lost haire of": [0, 65535], "for a perewig and recouer the lost haire of another": [0, 65535], "a perewig and recouer the lost haire of another man": [0, 65535], "perewig and recouer the lost haire of another man ant": [0, 65535], "and recouer the lost haire of another man ant why": [0, 65535], "recouer the lost haire of another man ant why is": [0, 65535], "the lost haire of another man ant why is time": [0, 65535], "lost haire of another man ant why is time such": [0, 65535], "haire of another man ant why is time such a": [0, 65535], "of another man ant why is time such a niggard": [0, 65535], "another man ant why is time such a niggard of": [0, 65535], "man ant why is time such a niggard of haire": [0, 65535], "ant why is time such a niggard of haire being": [0, 65535], "why is time such a niggard of haire being as": [0, 65535], "is time such a niggard of haire being as it": [0, 65535], "time such a niggard of haire being as it is": [0, 65535], "such a niggard of haire being as it is so": [0, 65535], "a niggard of haire being as it is so plentifull": [0, 65535], "niggard of haire being as it is so plentifull an": [0, 65535], "of haire being as it is so plentifull an excrement": [0, 65535], "haire being as it is so plentifull an excrement s": [0, 65535], "being as it is so plentifull an excrement s dro": [0, 65535], "as it is so plentifull an excrement s dro because": [0, 65535], "it is so plentifull an excrement s dro because it": [0, 65535], "is so plentifull an excrement s dro because it is": [0, 65535], "so plentifull an excrement s dro because it is a": [0, 65535], "plentifull an excrement s dro because it is a blessing": [0, 65535], "an excrement s dro because it is a blessing that": [0, 65535], "excrement s dro because it is a blessing that hee": [0, 65535], "s dro because it is a blessing that hee bestowes": [0, 65535], "dro because it is a blessing that hee bestowes on": [0, 65535], "because it is a blessing that hee bestowes on beasts": [0, 65535], "it is a blessing that hee bestowes on beasts and": [0, 65535], "is a blessing that hee bestowes on beasts and what": [0, 65535], "a blessing that hee bestowes on beasts and what he": [0, 65535], "blessing that hee bestowes on beasts and what he hath": [0, 65535], "that hee bestowes on beasts and what he hath scanted": [0, 65535], "hee bestowes on beasts and what he hath scanted them": [0, 65535], "bestowes on beasts and what he hath scanted them in": [0, 65535], "on beasts and what he hath scanted them in haire": [0, 65535], "beasts and what he hath scanted them in haire hee": [0, 65535], "and what he hath scanted them in haire hee hath": [0, 65535], "what he hath scanted them in haire hee hath giuen": [0, 65535], "he hath scanted them in haire hee hath giuen them": [0, 65535], "hath scanted them in haire hee hath giuen them in": [0, 65535], "scanted them in haire hee hath giuen them in wit": [0, 65535], "them in haire hee hath giuen them in wit ant": [0, 65535], "in haire hee hath giuen them in wit ant why": [0, 65535], "haire hee hath giuen them in wit ant why but": [0, 65535], "hee hath giuen them in wit ant why but theres": [0, 65535], "hath giuen them in wit ant why but theres manie": [0, 65535], "giuen them in wit ant why but theres manie a": [0, 65535], "them in wit ant why but theres manie a man": [0, 65535], "in wit ant why but theres manie a man hath": [0, 65535], "wit ant why but theres manie a man hath more": [0, 65535], "ant why but theres manie a man hath more haire": [0, 65535], "why but theres manie a man hath more haire then": [0, 65535], "but theres manie a man hath more haire then wit": [0, 65535], "theres manie a man hath more haire then wit s": [0, 65535], "manie a man hath more haire then wit s dro": [0, 65535], "a man hath more haire then wit s dro not": [0, 65535], "man hath more haire then wit s dro not a": [0, 65535], "hath more haire then wit s dro not a man": [0, 65535], "more haire then wit s dro not a man of": [0, 65535], "haire then wit s dro not a man of those": [0, 65535], "then wit s dro not a man of those but": [0, 65535], "wit s dro not a man of those but he": [0, 65535], "s dro not a man of those but he hath": [0, 65535], "dro not a man of those but he hath the": [0, 65535], "not a man of those but he hath the wit": [0, 65535], "a man of those but he hath the wit to": [0, 65535], "man of those but he hath the wit to lose": [0, 65535], "of those but he hath the wit to lose his": [0, 65535], "those but he hath the wit to lose his haire": [0, 65535], "but he hath the wit to lose his haire ant": [0, 65535], "he hath the wit to lose his haire ant why": [0, 65535], "hath the wit to lose his haire ant why thou": [0, 65535], "the wit to lose his haire ant why thou didst": [0, 65535], "wit to lose his haire ant why thou didst conclude": [0, 65535], "to lose his haire ant why thou didst conclude hairy": [0, 65535], "lose his haire ant why thou didst conclude hairy men": [0, 65535], "his haire ant why thou didst conclude hairy men plain": [0, 65535], "haire ant why thou didst conclude hairy men plain dealers": [0, 65535], "ant why thou didst conclude hairy men plain dealers without": [0, 65535], "why thou didst conclude hairy men plain dealers without wit": [0, 65535], "thou didst conclude hairy men plain dealers without wit s": [0, 65535], "didst conclude hairy men plain dealers without wit s dro": [0, 65535], "conclude hairy men plain dealers without wit s dro the": [0, 65535], "hairy men plain dealers without wit s dro the plainer": [0, 65535], "men plain dealers without wit s dro the plainer dealer": [0, 65535], "plain dealers without wit s dro the plainer dealer the": [0, 65535], "dealers without wit s dro the plainer dealer the sooner": [0, 65535], "without wit s dro the plainer dealer the sooner lost": [0, 65535], "wit s dro the plainer dealer the sooner lost yet": [0, 65535], "s dro the plainer dealer the sooner lost yet he": [0, 65535], "dro the plainer dealer the sooner lost yet he looseth": [0, 65535], "the plainer dealer the sooner lost yet he looseth it": [0, 65535], "plainer dealer the sooner lost yet he looseth it in": [0, 65535], "dealer the sooner lost yet he looseth it in a": [0, 65535], "the sooner lost yet he looseth it in a kinde": [0, 65535], "sooner lost yet he looseth it in a kinde of": [0, 65535], "lost yet he looseth it in a kinde of iollitie": [0, 65535], "yet he looseth it in a kinde of iollitie an": [0, 65535], "he looseth it in a kinde of iollitie an for": [0, 65535], "looseth it in a kinde of iollitie an for what": [0, 65535], "it in a kinde of iollitie an for what reason": [0, 65535], "in a kinde of iollitie an for what reason s": [0, 65535], "a kinde of iollitie an for what reason s dro": [0, 65535], "kinde of iollitie an for what reason s dro for": [0, 65535], "of iollitie an for what reason s dro for two": [0, 65535], "iollitie an for what reason s dro for two and": [0, 65535], "an for what reason s dro for two and sound": [0, 65535], "for what reason s dro for two and sound ones": [0, 65535], "what reason s dro for two and sound ones to": [0, 65535], "reason s dro for two and sound ones to an": [0, 65535], "s dro for two and sound ones to an nay": [0, 65535], "dro for two and sound ones to an nay not": [0, 65535], "for two and sound ones to an nay not sound": [0, 65535], "two and sound ones to an nay not sound i": [0, 65535], "and sound ones to an nay not sound i pray": [0, 65535], "sound ones to an nay not sound i pray you": [0, 65535], "ones to an nay not sound i pray you s": [0, 65535], "to an nay not sound i pray you s dro": [0, 65535], "an nay not sound i pray you s dro sure": [0, 65535], "nay not sound i pray you s dro sure ones": [0, 65535], "not sound i pray you s dro sure ones then": [0, 65535], "sound i pray you s dro sure ones then an": [0, 65535], "i pray you s dro sure ones then an nay": [0, 65535], "pray you s dro sure ones then an nay not": [0, 65535], "you s dro sure ones then an nay not sure": [0, 65535], "s dro sure ones then an nay not sure in": [0, 65535], "dro sure ones then an nay not sure in a": [0, 65535], "sure ones then an nay not sure in a thing": [0, 65535], "ones then an nay not sure in a thing falsing": [0, 65535], "then an nay not sure in a thing falsing s": [0, 65535], "an nay not sure in a thing falsing s dro": [0, 65535], "nay not sure in a thing falsing s dro certaine": [0, 65535], "not sure in a thing falsing s dro certaine ones": [0, 65535], "sure in a thing falsing s dro certaine ones then": [0, 65535], "in a thing falsing s dro certaine ones then an": [0, 65535], "a thing falsing s dro certaine ones then an name": [0, 65535], "thing falsing s dro certaine ones then an name them": [0, 65535], "falsing s dro certaine ones then an name them s": [0, 65535], "s dro certaine ones then an name them s dro": [0, 65535], "dro certaine ones then an name them s dro the": [0, 65535], "certaine ones then an name them s dro the one": [0, 65535], "ones then an name them s dro the one to": [0, 65535], "then an name them s dro the one to saue": [0, 65535], "an name them s dro the one to saue the": [0, 65535], "name them s dro the one to saue the money": [0, 65535], "them s dro the one to saue the money that": [0, 65535], "s dro the one to saue the money that he": [0, 65535], "dro the one to saue the money that he spends": [0, 65535], "the one to saue the money that he spends in": [0, 65535], "one to saue the money that he spends in trying": [0, 65535], "to saue the money that he spends in trying the": [0, 65535], "saue the money that he spends in trying the other": [0, 65535], "the money that he spends in trying the other that": [0, 65535], "money that he spends in trying the other that at": [0, 65535], "that he spends in trying the other that at dinner": [0, 65535], "he spends in trying the other that at dinner they": [0, 65535], "spends in trying the other that at dinner they should": [0, 65535], "in trying the other that at dinner they should not": [0, 65535], "trying the other that at dinner they should not drop": [0, 65535], "the other that at dinner they should not drop in": [0, 65535], "other that at dinner they should not drop in his": [0, 65535], "that at dinner they should not drop in his porrage": [0, 65535], "at dinner they should not drop in his porrage an": [0, 65535], "dinner they should not drop in his porrage an you": [0, 65535], "they should not drop in his porrage an you would": [0, 65535], "should not drop in his porrage an you would all": [0, 65535], "not drop in his porrage an you would all this": [0, 65535], "drop in his porrage an you would all this time": [0, 65535], "in his porrage an you would all this time haue": [0, 65535], "his porrage an you would all this time haue prou'd": [0, 65535], "porrage an you would all this time haue prou'd there": [0, 65535], "an you would all this time haue prou'd there is": [0, 65535], "you would all this time haue prou'd there is no": [0, 65535], "would all this time haue prou'd there is no time": [0, 65535], "all this time haue prou'd there is no time for": [0, 65535], "this time haue prou'd there is no time for all": [0, 65535], "time haue prou'd there is no time for all things": [0, 65535], "haue prou'd there is no time for all things s": [0, 65535], "prou'd there is no time for all things s dro": [0, 65535], "there is no time for all things s dro marry": [0, 65535], "is no time for all things s dro marry and": [0, 65535], "no time for all things s dro marry and did": [0, 65535], "time for all things s dro marry and did sir": [0, 65535], "for all things s dro marry and did sir namely": [0, 65535], "all things s dro marry and did sir namely in": [0, 65535], "things s dro marry and did sir namely in no": [0, 65535], "s dro marry and did sir namely in no time": [0, 65535], "dro marry and did sir namely in no time to": [0, 65535], "marry and did sir namely in no time to recouer": [0, 65535], "and did sir namely in no time to recouer haire": [0, 65535], "did sir namely in no time to recouer haire lost": [0, 65535], "sir namely in no time to recouer haire lost by": [0, 65535], "namely in no time to recouer haire lost by nature": [0, 65535], "in no time to recouer haire lost by nature an": [0, 65535], "no time to recouer haire lost by nature an but": [0, 65535], "time to recouer haire lost by nature an but your": [0, 65535], "to recouer haire lost by nature an but your reason": [0, 65535], "recouer haire lost by nature an but your reason was": [0, 65535], "haire lost by nature an but your reason was not": [0, 65535], "lost by nature an but your reason was not substantiall": [0, 65535], "by nature an but your reason was not substantiall why": [0, 65535], "nature an but your reason was not substantiall why there": [0, 65535], "an but your reason was not substantiall why there is": [0, 65535], "but your reason was not substantiall why there is no": [0, 65535], "your reason was not substantiall why there is no time": [0, 65535], "reason was not substantiall why there is no time to": [0, 65535], "was not substantiall why there is no time to recouer": [0, 65535], "not substantiall why there is no time to recouer s": [0, 65535], "substantiall why there is no time to recouer s dro": [0, 65535], "why there is no time to recouer s dro thus": [0, 65535], "there is no time to recouer s dro thus i": [0, 65535], "is no time to recouer s dro thus i mend": [0, 65535], "no time to recouer s dro thus i mend it": [0, 65535], "time to recouer s dro thus i mend it time": [0, 65535], "to recouer s dro thus i mend it time himselfe": [0, 65535], "recouer s dro thus i mend it time himselfe is": [0, 65535], "s dro thus i mend it time himselfe is bald": [0, 65535], "dro thus i mend it time himselfe is bald and": [0, 65535], "thus i mend it time himselfe is bald and therefore": [0, 65535], "i mend it time himselfe is bald and therefore to": [0, 65535], "mend it time himselfe is bald and therefore to the": [0, 65535], "it time himselfe is bald and therefore to the worlds": [0, 65535], "time himselfe is bald and therefore to the worlds end": [0, 65535], "himselfe is bald and therefore to the worlds end will": [0, 65535], "is bald and therefore to the worlds end will haue": [0, 65535], "bald and therefore to the worlds end will haue bald": [0, 65535], "and therefore to the worlds end will haue bald followers": [0, 65535], "therefore to the worlds end will haue bald followers an": [0, 65535], "to the worlds end will haue bald followers an i": [0, 65535], "the worlds end will haue bald followers an i knew": [0, 65535], "worlds end will haue bald followers an i knew 'twould": [0, 65535], "end will haue bald followers an i knew 'twould be": [0, 65535], "will haue bald followers an i knew 'twould be a": [0, 65535], "haue bald followers an i knew 'twould be a bald": [0, 65535], "bald followers an i knew 'twould be a bald conclusion": [0, 65535], "followers an i knew 'twould be a bald conclusion but": [0, 65535], "an i knew 'twould be a bald conclusion but soft": [0, 65535], "i knew 'twould be a bald conclusion but soft who": [0, 65535], "knew 'twould be a bald conclusion but soft who wafts": [0, 65535], "'twould be a bald conclusion but soft who wafts vs": [0, 65535], "be a bald conclusion but soft who wafts vs yonder": [0, 65535], "a bald conclusion but soft who wafts vs yonder enter": [0, 65535], "bald conclusion but soft who wafts vs yonder enter adriana": [0, 65535], "conclusion but soft who wafts vs yonder enter adriana and": [0, 65535], "but soft who wafts vs yonder enter adriana and luciana": [0, 65535], "soft who wafts vs yonder enter adriana and luciana adri": [0, 65535], "who wafts vs yonder enter adriana and luciana adri i": [0, 65535], "wafts vs yonder enter adriana and luciana adri i i": [0, 65535], "vs yonder enter adriana and luciana adri i i antipholus": [0, 65535], "yonder enter adriana and luciana adri i i antipholus looke": [0, 65535], "enter adriana and luciana adri i i antipholus looke strange": [0, 65535], "adriana and luciana adri i i antipholus looke strange and": [0, 65535], "and luciana adri i i antipholus looke strange and frowne": [0, 65535], "luciana adri i i antipholus looke strange and frowne some": [0, 65535], "adri i i antipholus looke strange and frowne some other": [0, 65535], "i i antipholus looke strange and frowne some other mistresse": [0, 65535], "i antipholus looke strange and frowne some other mistresse hath": [0, 65535], "antipholus looke strange and frowne some other mistresse hath thy": [0, 65535], "looke strange and frowne some other mistresse hath thy sweet": [0, 65535], "strange and frowne some other mistresse hath thy sweet aspects": [0, 65535], "and frowne some other mistresse hath thy sweet aspects i": [0, 65535], "frowne some other mistresse hath thy sweet aspects i am": [0, 65535], "some other mistresse hath thy sweet aspects i am not": [0, 65535], "other mistresse hath thy sweet aspects i am not adriana": [0, 65535], "mistresse hath thy sweet aspects i am not adriana nor": [0, 65535], "hath thy sweet aspects i am not adriana nor thy": [0, 65535], "thy sweet aspects i am not adriana nor thy wife": [0, 65535], "sweet aspects i am not adriana nor thy wife the": [0, 65535], "aspects i am not adriana nor thy wife the time": [0, 65535], "i am not adriana nor thy wife the time was": [0, 65535], "am not adriana nor thy wife the time was once": [0, 65535], "not adriana nor thy wife the time was once when": [0, 65535], "adriana nor thy wife the time was once when thou": [0, 65535], "nor thy wife the time was once when thou vn": [0, 65535], "thy wife the time was once when thou vn vrg'd": [0, 65535], "wife the time was once when thou vn vrg'd wouldst": [0, 65535], "the time was once when thou vn vrg'd wouldst vow": [0, 65535], "time was once when thou vn vrg'd wouldst vow that": [0, 65535], "was once when thou vn vrg'd wouldst vow that neuer": [0, 65535], "once when thou vn vrg'd wouldst vow that neuer words": [0, 65535], "when thou vn vrg'd wouldst vow that neuer words were": [0, 65535], "thou vn vrg'd wouldst vow that neuer words were musicke": [0, 65535], "vn vrg'd wouldst vow that neuer words were musicke to": [0, 65535], "vrg'd wouldst vow that neuer words were musicke to thine": [0, 65535], "wouldst vow that neuer words were musicke to thine eare": [0, 65535], "vow that neuer words were musicke to thine eare that": [0, 65535], "that neuer words were musicke to thine eare that neuer": [0, 65535], "neuer words were musicke to thine eare that neuer obiect": [0, 65535], "words were musicke to thine eare that neuer obiect pleasing": [0, 65535], "were musicke to thine eare that neuer obiect pleasing in": [0, 65535], "musicke to thine eare that neuer obiect pleasing in thine": [0, 65535], "to thine eare that neuer obiect pleasing in thine eye": [0, 65535], "thine eare that neuer obiect pleasing in thine eye that": [0, 65535], "eare that neuer obiect pleasing in thine eye that neuer": [0, 65535], "that neuer obiect pleasing in thine eye that neuer touch": [0, 65535], "neuer obiect pleasing in thine eye that neuer touch well": [0, 65535], "obiect pleasing in thine eye that neuer touch well welcome": [0, 65535], "pleasing in thine eye that neuer touch well welcome to": [0, 65535], "in thine eye that neuer touch well welcome to thy": [0, 65535], "thine eye that neuer touch well welcome to thy hand": [0, 65535], "eye that neuer touch well welcome to thy hand that": [0, 65535], "that neuer touch well welcome to thy hand that neuer": [0, 65535], "neuer touch well welcome to thy hand that neuer meat": [0, 65535], "touch well welcome to thy hand that neuer meat sweet": [0, 65535], "well welcome to thy hand that neuer meat sweet sauour'd": [0, 65535], "welcome to thy hand that neuer meat sweet sauour'd in": [0, 65535], "to thy hand that neuer meat sweet sauour'd in thy": [0, 65535], "thy hand that neuer meat sweet sauour'd in thy taste": [0, 65535], "hand that neuer meat sweet sauour'd in thy taste vnlesse": [0, 65535], "that neuer meat sweet sauour'd in thy taste vnlesse i": [0, 65535], "neuer meat sweet sauour'd in thy taste vnlesse i spake": [0, 65535], "meat sweet sauour'd in thy taste vnlesse i spake or": [0, 65535], "sweet sauour'd in thy taste vnlesse i spake or look'd": [0, 65535], "sauour'd in thy taste vnlesse i spake or look'd or": [0, 65535], "in thy taste vnlesse i spake or look'd or touch'd": [0, 65535], "thy taste vnlesse i spake or look'd or touch'd or": [0, 65535], "taste vnlesse i spake or look'd or touch'd or caru'd": [0, 65535], "vnlesse i spake or look'd or touch'd or caru'd to": [0, 65535], "i spake or look'd or touch'd or caru'd to thee": [0, 65535], "spake or look'd or touch'd or caru'd to thee how": [0, 65535], "or look'd or touch'd or caru'd to thee how comes": [0, 65535], "look'd or touch'd or caru'd to thee how comes it": [0, 65535], "or touch'd or caru'd to thee how comes it now": [0, 65535], "touch'd or caru'd to thee how comes it now my": [0, 65535], "or caru'd to thee how comes it now my husband": [0, 65535], "caru'd to thee how comes it now my husband oh": [0, 65535], "to thee how comes it now my husband oh how": [0, 65535], "thee how comes it now my husband oh how comes": [0, 65535], "how comes it now my husband oh how comes it": [0, 65535], "comes it now my husband oh how comes it that": [0, 65535], "it now my husband oh how comes it that thou": [0, 65535], "now my husband oh how comes it that thou art": [0, 65535], "my husband oh how comes it that thou art then": [0, 65535], "husband oh how comes it that thou art then estranged": [0, 65535], "oh how comes it that thou art then estranged from": [0, 65535], "how comes it that thou art then estranged from thy": [0, 65535], "comes it that thou art then estranged from thy selfe": [0, 65535], "it that thou art then estranged from thy selfe thy": [0, 65535], "that thou art then estranged from thy selfe thy selfe": [0, 65535], "thou art then estranged from thy selfe thy selfe i": [0, 65535], "art then estranged from thy selfe thy selfe i call": [0, 65535], "then estranged from thy selfe thy selfe i call it": [0, 65535], "estranged from thy selfe thy selfe i call it being": [0, 65535], "from thy selfe thy selfe i call it being strange": [0, 65535], "thy selfe thy selfe i call it being strange to": [0, 65535], "selfe thy selfe i call it being strange to me": [0, 65535], "thy selfe i call it being strange to me that": [0, 65535], "selfe i call it being strange to me that vndiuidable": [0, 65535], "i call it being strange to me that vndiuidable incorporate": [0, 65535], "call it being strange to me that vndiuidable incorporate am": [0, 65535], "it being strange to me that vndiuidable incorporate am better": [0, 65535], "being strange to me that vndiuidable incorporate am better then": [0, 65535], "strange to me that vndiuidable incorporate am better then thy": [0, 65535], "to me that vndiuidable incorporate am better then thy deere": [0, 65535], "me that vndiuidable incorporate am better then thy deere selfes": [0, 65535], "that vndiuidable incorporate am better then thy deere selfes better": [0, 65535], "vndiuidable incorporate am better then thy deere selfes better part": [0, 65535], "incorporate am better then thy deere selfes better part ah": [0, 65535], "am better then thy deere selfes better part ah doe": [0, 65535], "better then thy deere selfes better part ah doe not": [0, 65535], "then thy deere selfes better part ah doe not teare": [0, 65535], "thy deere selfes better part ah doe not teare away": [0, 65535], "deere selfes better part ah doe not teare away thy": [0, 65535], "selfes better part ah doe not teare away thy selfe": [0, 65535], "better part ah doe not teare away thy selfe from": [0, 65535], "part ah doe not teare away thy selfe from me": [0, 65535], "ah doe not teare away thy selfe from me for": [0, 65535], "doe not teare away thy selfe from me for know": [0, 65535], "not teare away thy selfe from me for know my": [0, 65535], "teare away thy selfe from me for know my loue": [0, 65535], "away thy selfe from me for know my loue as": [0, 65535], "thy selfe from me for know my loue as easie": [0, 65535], "selfe from me for know my loue as easie maist": [0, 65535], "from me for know my loue as easie maist thou": [0, 65535], "me for know my loue as easie maist thou fall": [0, 65535], "for know my loue as easie maist thou fall a": [0, 65535], "know my loue as easie maist thou fall a drop": [0, 65535], "my loue as easie maist thou fall a drop of": [0, 65535], "loue as easie maist thou fall a drop of water": [0, 65535], "as easie maist thou fall a drop of water in": [0, 65535], "easie maist thou fall a drop of water in the": [0, 65535], "maist thou fall a drop of water in the breaking": [0, 65535], "thou fall a drop of water in the breaking gulfe": [0, 65535], "fall a drop of water in the breaking gulfe and": [0, 65535], "a drop of water in the breaking gulfe and take": [0, 65535], "drop of water in the breaking gulfe and take vnmingled": [0, 65535], "of water in the breaking gulfe and take vnmingled thence": [0, 65535], "water in the breaking gulfe and take vnmingled thence that": [0, 65535], "in the breaking gulfe and take vnmingled thence that drop": [0, 65535], "the breaking gulfe and take vnmingled thence that drop againe": [0, 65535], "breaking gulfe and take vnmingled thence that drop againe without": [0, 65535], "gulfe and take vnmingled thence that drop againe without addition": [0, 65535], "and take vnmingled thence that drop againe without addition or": [0, 65535], "take vnmingled thence that drop againe without addition or diminishing": [0, 65535], "vnmingled thence that drop againe without addition or diminishing as": [0, 65535], "thence that drop againe without addition or diminishing as take": [0, 65535], "that drop againe without addition or diminishing as take from": [0, 65535], "drop againe without addition or diminishing as take from me": [0, 65535], "againe without addition or diminishing as take from me thy": [0, 65535], "without addition or diminishing as take from me thy selfe": [0, 65535], "addition or diminishing as take from me thy selfe and": [0, 65535], "or diminishing as take from me thy selfe and not": [0, 65535], "diminishing as take from me thy selfe and not me": [0, 65535], "as take from me thy selfe and not me too": [0, 65535], "take from me thy selfe and not me too how": [0, 65535], "from me thy selfe and not me too how deerely": [0, 65535], "me thy selfe and not me too how deerely would": [0, 65535], "thy selfe and not me too how deerely would it": [0, 65535], "selfe and not me too how deerely would it touch": [0, 65535], "and not me too how deerely would it touch thee": [0, 65535], "not me too how deerely would it touch thee to": [0, 65535], "me too how deerely would it touch thee to the": [0, 65535], "too how deerely would it touch thee to the quicke": [0, 65535], "how deerely would it touch thee to the quicke shouldst": [0, 65535], "deerely would it touch thee to the quicke shouldst thou": [0, 65535], "would it touch thee to the quicke shouldst thou but": [0, 65535], "it touch thee to the quicke shouldst thou but heare": [0, 65535], "touch thee to the quicke shouldst thou but heare i": [0, 65535], "thee to the quicke shouldst thou but heare i were": [0, 65535], "to the quicke shouldst thou but heare i were licencious": [0, 65535], "the quicke shouldst thou but heare i were licencious and": [0, 65535], "quicke shouldst thou but heare i were licencious and that": [0, 65535], "shouldst thou but heare i were licencious and that this": [0, 65535], "thou but heare i were licencious and that this body": [0, 65535], "but heare i were licencious and that this body consecrate": [0, 65535], "heare i were licencious and that this body consecrate to": [0, 65535], "i were licencious and that this body consecrate to thee": [0, 65535], "were licencious and that this body consecrate to thee by": [0, 65535], "licencious and that this body consecrate to thee by ruffian": [0, 65535], "and that this body consecrate to thee by ruffian lust": [0, 65535], "that this body consecrate to thee by ruffian lust should": [0, 65535], "this body consecrate to thee by ruffian lust should be": [0, 65535], "body consecrate to thee by ruffian lust should be contaminate": [0, 65535], "consecrate to thee by ruffian lust should be contaminate wouldst": [0, 65535], "to thee by ruffian lust should be contaminate wouldst thou": [0, 65535], "thee by ruffian lust should be contaminate wouldst thou not": [0, 65535], "by ruffian lust should be contaminate wouldst thou not spit": [0, 65535], "ruffian lust should be contaminate wouldst thou not spit at": [0, 65535], "lust should be contaminate wouldst thou not spit at me": [0, 65535], "should be contaminate wouldst thou not spit at me and": [0, 65535], "be contaminate wouldst thou not spit at me and spurne": [0, 65535], "contaminate wouldst thou not spit at me and spurne at": [0, 65535], "wouldst thou not spit at me and spurne at me": [0, 65535], "thou not spit at me and spurne at me and": [0, 65535], "not spit at me and spurne at me and hurle": [0, 65535], "spit at me and spurne at me and hurle the": [0, 65535], "at me and spurne at me and hurle the name": [0, 65535], "me and spurne at me and hurle the name of": [0, 65535], "and spurne at me and hurle the name of husband": [0, 65535], "spurne at me and hurle the name of husband in": [0, 65535], "at me and hurle the name of husband in my": [0, 65535], "me and hurle the name of husband in my face": [0, 65535], "and hurle the name of husband in my face and": [0, 65535], "hurle the name of husband in my face and teare": [0, 65535], "the name of husband in my face and teare the": [0, 65535], "name of husband in my face and teare the stain'd": [0, 65535], "of husband in my face and teare the stain'd skin": [0, 65535], "husband in my face and teare the stain'd skin of": [0, 65535], "in my face and teare the stain'd skin of my": [0, 65535], "my face and teare the stain'd skin of my harlot": [0, 65535], "face and teare the stain'd skin of my harlot brow": [0, 65535], "and teare the stain'd skin of my harlot brow and": [0, 65535], "teare the stain'd skin of my harlot brow and from": [0, 65535], "the stain'd skin of my harlot brow and from my": [0, 65535], "stain'd skin of my harlot brow and from my false": [0, 65535], "skin of my harlot brow and from my false hand": [0, 65535], "of my harlot brow and from my false hand cut": [0, 65535], "my harlot brow and from my false hand cut the": [0, 65535], "harlot brow and from my false hand cut the wedding": [0, 65535], "brow and from my false hand cut the wedding ring": [0, 65535], "and from my false hand cut the wedding ring and": [0, 65535], "from my false hand cut the wedding ring and breake": [0, 65535], "my false hand cut the wedding ring and breake it": [0, 65535], "false hand cut the wedding ring and breake it with": [0, 65535], "hand cut the wedding ring and breake it with a": [0, 65535], "cut the wedding ring and breake it with a deepe": [0, 65535], "the wedding ring and breake it with a deepe diuorcing": [0, 65535], "wedding ring and breake it with a deepe diuorcing vow": [0, 65535], "ring and breake it with a deepe diuorcing vow i": [0, 65535], "and breake it with a deepe diuorcing vow i know": [0, 65535], "breake it with a deepe diuorcing vow i know thou": [0, 65535], "it with a deepe diuorcing vow i know thou canst": [0, 65535], "with a deepe diuorcing vow i know thou canst and": [0, 65535], "a deepe diuorcing vow i know thou canst and therefore": [0, 65535], "deepe diuorcing vow i know thou canst and therefore see": [0, 65535], "diuorcing vow i know thou canst and therefore see thou": [0, 65535], "vow i know thou canst and therefore see thou doe": [0, 65535], "i know thou canst and therefore see thou doe it": [0, 65535], "know thou canst and therefore see thou doe it i": [0, 65535], "thou canst and therefore see thou doe it i am": [0, 65535], "canst and therefore see thou doe it i am possest": [0, 65535], "and therefore see thou doe it i am possest with": [0, 65535], "therefore see thou doe it i am possest with an": [0, 65535], "see thou doe it i am possest with an adulterate": [0, 65535], "thou doe it i am possest with an adulterate blot": [0, 65535], "doe it i am possest with an adulterate blot my": [0, 65535], "it i am possest with an adulterate blot my bloud": [0, 65535], "i am possest with an adulterate blot my bloud is": [0, 65535], "am possest with an adulterate blot my bloud is mingled": [0, 65535], "possest with an adulterate blot my bloud is mingled with": [0, 65535], "with an adulterate blot my bloud is mingled with the": [0, 65535], "an adulterate blot my bloud is mingled with the crime": [0, 65535], "adulterate blot my bloud is mingled with the crime of": [0, 65535], "blot my bloud is mingled with the crime of lust": [0, 65535], "my bloud is mingled with the crime of lust for": [0, 65535], "bloud is mingled with the crime of lust for if": [0, 65535], "is mingled with the crime of lust for if we": [0, 65535], "mingled with the crime of lust for if we two": [0, 65535], "with the crime of lust for if we two be": [0, 65535], "the crime of lust for if we two be one": [0, 65535], "crime of lust for if we two be one and": [0, 65535], "of lust for if we two be one and thou": [0, 65535], "lust for if we two be one and thou play": [0, 65535], "for if we two be one and thou play false": [0, 65535], "if we two be one and thou play false i": [0, 65535], "we two be one and thou play false i doe": [0, 65535], "two be one and thou play false i doe digest": [0, 65535], "be one and thou play false i doe digest the": [0, 65535], "one and thou play false i doe digest the poison": [0, 65535], "and thou play false i doe digest the poison of": [0, 65535], "thou play false i doe digest the poison of thy": [0, 65535], "play false i doe digest the poison of thy flesh": [0, 65535], "false i doe digest the poison of thy flesh being": [0, 65535], "i doe digest the poison of thy flesh being strumpeted": [0, 65535], "doe digest the poison of thy flesh being strumpeted by": [0, 65535], "digest the poison of thy flesh being strumpeted by thy": [0, 65535], "the poison of thy flesh being strumpeted by thy contagion": [0, 65535], "poison of thy flesh being strumpeted by thy contagion keepe": [0, 65535], "of thy flesh being strumpeted by thy contagion keepe then": [0, 65535], "thy flesh being strumpeted by thy contagion keepe then faire": [0, 65535], "flesh being strumpeted by thy contagion keepe then faire league": [0, 65535], "being strumpeted by thy contagion keepe then faire league and": [0, 65535], "strumpeted by thy contagion keepe then faire league and truce": [0, 65535], "by thy contagion keepe then faire league and truce with": [0, 65535], "thy contagion keepe then faire league and truce with thy": [0, 65535], "contagion keepe then faire league and truce with thy true": [0, 65535], "keepe then faire league and truce with thy true bed": [0, 65535], "then faire league and truce with thy true bed i": [0, 65535], "faire league and truce with thy true bed i liue": [0, 65535], "league and truce with thy true bed i liue distain'd": [0, 65535], "and truce with thy true bed i liue distain'd thou": [0, 65535], "truce with thy true bed i liue distain'd thou vndishonoured": [0, 65535], "with thy true bed i liue distain'd thou vndishonoured antip": [0, 65535], "thy true bed i liue distain'd thou vndishonoured antip plead": [0, 65535], "true bed i liue distain'd thou vndishonoured antip plead you": [0, 65535], "bed i liue distain'd thou vndishonoured antip plead you to": [0, 65535], "i liue distain'd thou vndishonoured antip plead you to me": [0, 65535], "liue distain'd thou vndishonoured antip plead you to me faire": [0, 65535], "distain'd thou vndishonoured antip plead you to me faire dame": [0, 65535], "thou vndishonoured antip plead you to me faire dame i": [0, 65535], "vndishonoured antip plead you to me faire dame i know": [0, 65535], "antip plead you to me faire dame i know you": [0, 65535], "plead you to me faire dame i know you not": [0, 65535], "you to me faire dame i know you not in": [0, 65535], "to me faire dame i know you not in ephesus": [0, 65535], "me faire dame i know you not in ephesus i": [0, 65535], "faire dame i know you not in ephesus i am": [0, 65535], "dame i know you not in ephesus i am but": [0, 65535], "i know you not in ephesus i am but two": [0, 65535], "know you not in ephesus i am but two houres": [0, 65535], "you not in ephesus i am but two houres old": [0, 65535], "not in ephesus i am but two houres old as": [0, 65535], "in ephesus i am but two houres old as strange": [0, 65535], "ephesus i am but two houres old as strange vnto": [0, 65535], "i am but two houres old as strange vnto your": [0, 65535], "am but two houres old as strange vnto your towne": [0, 65535], "but two houres old as strange vnto your towne as": [0, 65535], "two houres old as strange vnto your towne as to": [0, 65535], "houres old as strange vnto your towne as to your": [0, 65535], "old as strange vnto your towne as to your talke": [0, 65535], "as strange vnto your towne as to your talke who": [0, 65535], "strange vnto your towne as to your talke who euery": [0, 65535], "vnto your towne as to your talke who euery word": [0, 65535], "your towne as to your talke who euery word by": [0, 65535], "towne as to your talke who euery word by all": [0, 65535], "as to your talke who euery word by all my": [0, 65535], "to your talke who euery word by all my wit": [0, 65535], "your talke who euery word by all my wit being": [0, 65535], "talke who euery word by all my wit being scan'd": [0, 65535], "who euery word by all my wit being scan'd wants": [0, 65535], "euery word by all my wit being scan'd wants wit": [0, 65535], "word by all my wit being scan'd wants wit in": [0, 65535], "by all my wit being scan'd wants wit in all": [0, 65535], "all my wit being scan'd wants wit in all one": [0, 65535], "my wit being scan'd wants wit in all one word": [0, 65535], "wit being scan'd wants wit in all one word to": [0, 65535], "being scan'd wants wit in all one word to vnderstand": [0, 65535], "scan'd wants wit in all one word to vnderstand luci": [0, 65535], "wants wit in all one word to vnderstand luci fie": [0, 65535], "wit in all one word to vnderstand luci fie brother": [0, 65535], "in all one word to vnderstand luci fie brother how": [0, 65535], "all one word to vnderstand luci fie brother how the": [0, 65535], "one word to vnderstand luci fie brother how the world": [0, 65535], "word to vnderstand luci fie brother how the world is": [0, 65535], "to vnderstand luci fie brother how the world is chang'd": [0, 65535], "vnderstand luci fie brother how the world is chang'd with": [0, 65535], "luci fie brother how the world is chang'd with you": [0, 65535], "fie brother how the world is chang'd with you when": [0, 65535], "brother how the world is chang'd with you when were": [0, 65535], "how the world is chang'd with you when were you": [0, 65535], "the world is chang'd with you when were you wont": [0, 65535], "world is chang'd with you when were you wont to": [0, 65535], "is chang'd with you when were you wont to vse": [0, 65535], "chang'd with you when were you wont to vse my": [0, 65535], "with you when were you wont to vse my sister": [0, 65535], "you when were you wont to vse my sister thus": [0, 65535], "when were you wont to vse my sister thus she": [0, 65535], "were you wont to vse my sister thus she sent": [0, 65535], "you wont to vse my sister thus she sent for": [0, 65535], "wont to vse my sister thus she sent for you": [0, 65535], "to vse my sister thus she sent for you by": [0, 65535], "vse my sister thus she sent for you by dromio": [0, 65535], "my sister thus she sent for you by dromio home": [0, 65535], "sister thus she sent for you by dromio home to": [0, 65535], "thus she sent for you by dromio home to dinner": [0, 65535], "she sent for you by dromio home to dinner ant": [0, 65535], "sent for you by dromio home to dinner ant by": [0, 65535], "for you by dromio home to dinner ant by dromio": [0, 65535], "you by dromio home to dinner ant by dromio drom": [0, 65535], "by dromio home to dinner ant by dromio drom by": [0, 65535], "dromio home to dinner ant by dromio drom by me": [0, 65535], "home to dinner ant by dromio drom by me adr": [0, 65535], "to dinner ant by dromio drom by me adr by": [0, 65535], "dinner ant by dromio drom by me adr by thee": [0, 65535], "ant by dromio drom by me adr by thee and": [0, 65535], "by dromio drom by me adr by thee and this": [0, 65535], "dromio drom by me adr by thee and this thou": [0, 65535], "drom by me adr by thee and this thou didst": [0, 65535], "by me adr by thee and this thou didst returne": [0, 65535], "me adr by thee and this thou didst returne from": [0, 65535], "adr by thee and this thou didst returne from him": [0, 65535], "by thee and this thou didst returne from him that": [0, 65535], "thee and this thou didst returne from him that he": [0, 65535], "and this thou didst returne from him that he did": [0, 65535], "this thou didst returne from him that he did buffet": [0, 65535], "thou didst returne from him that he did buffet thee": [0, 65535], "didst returne from him that he did buffet thee and": [0, 65535], "returne from him that he did buffet thee and in": [0, 65535], "from him that he did buffet thee and in his": [0, 65535], "him that he did buffet thee and in his blowes": [0, 65535], "that he did buffet thee and in his blowes denied": [0, 65535], "he did buffet thee and in his blowes denied my": [0, 65535], "did buffet thee and in his blowes denied my house": [0, 65535], "buffet thee and in his blowes denied my house for": [0, 65535], "thee and in his blowes denied my house for his": [0, 65535], "and in his blowes denied my house for his me": [0, 65535], "in his blowes denied my house for his me for": [0, 65535], "his blowes denied my house for his me for his": [0, 65535], "blowes denied my house for his me for his wife": [0, 65535], "denied my house for his me for his wife ant": [0, 65535], "my house for his me for his wife ant did": [0, 65535], "house for his me for his wife ant did you": [0, 65535], "for his me for his wife ant did you conuerse": [0, 65535], "his me for his wife ant did you conuerse sir": [0, 65535], "me for his wife ant did you conuerse sir with": [0, 65535], "for his wife ant did you conuerse sir with this": [0, 65535], "his wife ant did you conuerse sir with this gentlewoman": [0, 65535], "wife ant did you conuerse sir with this gentlewoman what": [0, 65535], "ant did you conuerse sir with this gentlewoman what is": [0, 65535], "did you conuerse sir with this gentlewoman what is the": [0, 65535], "you conuerse sir with this gentlewoman what is the course": [0, 65535], "conuerse sir with this gentlewoman what is the course and": [0, 65535], "sir with this gentlewoman what is the course and drift": [0, 65535], "with this gentlewoman what is the course and drift of": [0, 65535], "this gentlewoman what is the course and drift of your": [0, 65535], "gentlewoman what is the course and drift of your compact": [0, 65535], "what is the course and drift of your compact s": [0, 65535], "is the course and drift of your compact s dro": [0, 65535], "the course and drift of your compact s dro i": [0, 65535], "course and drift of your compact s dro i sir": [0, 65535], "and drift of your compact s dro i sir i": [0, 65535], "drift of your compact s dro i sir i neuer": [0, 65535], "of your compact s dro i sir i neuer saw": [0, 65535], "your compact s dro i sir i neuer saw her": [0, 65535], "compact s dro i sir i neuer saw her till": [0, 65535], "s dro i sir i neuer saw her till this": [0, 65535], "dro i sir i neuer saw her till this time": [0, 65535], "i sir i neuer saw her till this time ant": [0, 65535], "sir i neuer saw her till this time ant villaine": [0, 65535], "i neuer saw her till this time ant villaine thou": [0, 65535], "neuer saw her till this time ant villaine thou liest": [0, 65535], "saw her till this time ant villaine thou liest for": [0, 65535], "her till this time ant villaine thou liest for euen": [0, 65535], "till this time ant villaine thou liest for euen her": [0, 65535], "this time ant villaine thou liest for euen her verie": [0, 65535], "time ant villaine thou liest for euen her verie words": [0, 65535], "ant villaine thou liest for euen her verie words didst": [0, 65535], "villaine thou liest for euen her verie words didst thou": [0, 65535], "thou liest for euen her verie words didst thou deliuer": [0, 65535], "liest for euen her verie words didst thou deliuer to": [0, 65535], "for euen her verie words didst thou deliuer to me": [0, 65535], "euen her verie words didst thou deliuer to me on": [0, 65535], "her verie words didst thou deliuer to me on the": [0, 65535], "verie words didst thou deliuer to me on the mart": [0, 65535], "words didst thou deliuer to me on the mart s": [0, 65535], "didst thou deliuer to me on the mart s dro": [0, 65535], "thou deliuer to me on the mart s dro i": [0, 65535], "deliuer to me on the mart s dro i neuer": [0, 65535], "to me on the mart s dro i neuer spake": [0, 65535], "me on the mart s dro i neuer spake with": [0, 65535], "on the mart s dro i neuer spake with her": [0, 65535], "the mart s dro i neuer spake with her in": [0, 65535], "mart s dro i neuer spake with her in all": [0, 65535], "s dro i neuer spake with her in all my": [0, 65535], "dro i neuer spake with her in all my life": [0, 65535], "i neuer spake with her in all my life ant": [0, 65535], "neuer spake with her in all my life ant how": [0, 65535], "spake with her in all my life ant how can": [0, 65535], "with her in all my life ant how can she": [0, 65535], "her in all my life ant how can she thus": [0, 65535], "in all my life ant how can she thus then": [0, 65535], "all my life ant how can she thus then call": [0, 65535], "my life ant how can she thus then call vs": [0, 65535], "life ant how can she thus then call vs by": [0, 65535], "ant how can she thus then call vs by our": [0, 65535], "how can she thus then call vs by our names": [0, 65535], "can she thus then call vs by our names vnlesse": [0, 65535], "she thus then call vs by our names vnlesse it": [0, 65535], "thus then call vs by our names vnlesse it be": [0, 65535], "then call vs by our names vnlesse it be by": [0, 65535], "call vs by our names vnlesse it be by inspiration": [0, 65535], "vs by our names vnlesse it be by inspiration adri": [0, 65535], "by our names vnlesse it be by inspiration adri how": [0, 65535], "our names vnlesse it be by inspiration adri how ill": [0, 65535], "names vnlesse it be by inspiration adri how ill agrees": [0, 65535], "vnlesse it be by inspiration adri how ill agrees it": [0, 65535], "it be by inspiration adri how ill agrees it with": [0, 65535], "be by inspiration adri how ill agrees it with your": [0, 65535], "by inspiration adri how ill agrees it with your grauitie": [0, 65535], "inspiration adri how ill agrees it with your grauitie to": [0, 65535], "adri how ill agrees it with your grauitie to counterfeit": [0, 65535], "how ill agrees it with your grauitie to counterfeit thus": [0, 65535], "ill agrees it with your grauitie to counterfeit thus grosely": [0, 65535], "agrees it with your grauitie to counterfeit thus grosely with": [0, 65535], "it with your grauitie to counterfeit thus grosely with your": [0, 65535], "with your grauitie to counterfeit thus grosely with your slaue": [0, 65535], "your grauitie to counterfeit thus grosely with your slaue abetting": [0, 65535], "grauitie to counterfeit thus grosely with your slaue abetting him": [0, 65535], "to counterfeit thus grosely with your slaue abetting him to": [0, 65535], "counterfeit thus grosely with your slaue abetting him to thwart": [0, 65535], "thus grosely with your slaue abetting him to thwart me": [0, 65535], "grosely with your slaue abetting him to thwart me in": [0, 65535], "with your slaue abetting him to thwart me in my": [0, 65535], "your slaue abetting him to thwart me in my moode": [0, 65535], "slaue abetting him to thwart me in my moode be": [0, 65535], "abetting him to thwart me in my moode be it": [0, 65535], "him to thwart me in my moode be it my": [0, 65535], "to thwart me in my moode be it my wrong": [0, 65535], "thwart me in my moode be it my wrong you": [0, 65535], "me in my moode be it my wrong you are": [0, 65535], "in my moode be it my wrong you are from": [0, 65535], "my moode be it my wrong you are from me": [0, 65535], "moode be it my wrong you are from me exempt": [0, 65535], "be it my wrong you are from me exempt but": [0, 65535], "it my wrong you are from me exempt but wrong": [0, 65535], "my wrong you are from me exempt but wrong not": [0, 65535], "wrong you are from me exempt but wrong not that": [0, 65535], "you are from me exempt but wrong not that wrong": [0, 65535], "are from me exempt but wrong not that wrong with": [0, 65535], "from me exempt but wrong not that wrong with a": [0, 65535], "me exempt but wrong not that wrong with a more": [0, 65535], "exempt but wrong not that wrong with a more contempt": [0, 65535], "but wrong not that wrong with a more contempt come": [0, 65535], "wrong not that wrong with a more contempt come i": [0, 65535], "not that wrong with a more contempt come i will": [0, 65535], "that wrong with a more contempt come i will fasten": [0, 65535], "wrong with a more contempt come i will fasten on": [0, 65535], "with a more contempt come i will fasten on this": [0, 65535], "a more contempt come i will fasten on this sleeue": [0, 65535], "more contempt come i will fasten on this sleeue of": [0, 65535], "contempt come i will fasten on this sleeue of thine": [0, 65535], "come i will fasten on this sleeue of thine thou": [0, 65535], "i will fasten on this sleeue of thine thou art": [0, 65535], "will fasten on this sleeue of thine thou art an": [0, 65535], "fasten on this sleeue of thine thou art an elme": [0, 65535], "on this sleeue of thine thou art an elme my": [0, 65535], "this sleeue of thine thou art an elme my husband": [0, 65535], "sleeue of thine thou art an elme my husband i": [0, 65535], "of thine thou art an elme my husband i a": [0, 65535], "thine thou art an elme my husband i a vine": [0, 65535], "thou art an elme my husband i a vine whose": [0, 65535], "art an elme my husband i a vine whose weaknesse": [0, 65535], "an elme my husband i a vine whose weaknesse married": [0, 65535], "elme my husband i a vine whose weaknesse married to": [0, 65535], "my husband i a vine whose weaknesse married to thy": [0, 65535], "husband i a vine whose weaknesse married to thy stranger": [0, 65535], "i a vine whose weaknesse married to thy stranger state": [0, 65535], "a vine whose weaknesse married to thy stranger state makes": [0, 65535], "vine whose weaknesse married to thy stranger state makes me": [0, 65535], "whose weaknesse married to thy stranger state makes me with": [0, 65535], "weaknesse married to thy stranger state makes me with thy": [0, 65535], "married to thy stranger state makes me with thy strength": [0, 65535], "to thy stranger state makes me with thy strength to": [0, 65535], "thy stranger state makes me with thy strength to communicate": [0, 65535], "stranger state makes me with thy strength to communicate if": [0, 65535], "state makes me with thy strength to communicate if ought": [0, 65535], "makes me with thy strength to communicate if ought possesse": [0, 65535], "me with thy strength to communicate if ought possesse thee": [0, 65535], "with thy strength to communicate if ought possesse thee from": [0, 65535], "thy strength to communicate if ought possesse thee from me": [0, 65535], "strength to communicate if ought possesse thee from me it": [0, 65535], "to communicate if ought possesse thee from me it is": [0, 65535], "communicate if ought possesse thee from me it is drosse": [0, 65535], "if ought possesse thee from me it is drosse vsurping": [0, 65535], "ought possesse thee from me it is drosse vsurping iuie": [0, 65535], "possesse thee from me it is drosse vsurping iuie brier": [0, 65535], "thee from me it is drosse vsurping iuie brier or": [0, 65535], "from me it is drosse vsurping iuie brier or idle": [0, 65535], "me it is drosse vsurping iuie brier or idle mosse": [0, 65535], "it is drosse vsurping iuie brier or idle mosse who": [0, 65535], "is drosse vsurping iuie brier or idle mosse who all": [0, 65535], "drosse vsurping iuie brier or idle mosse who all for": [0, 65535], "vsurping iuie brier or idle mosse who all for want": [0, 65535], "iuie brier or idle mosse who all for want of": [0, 65535], "brier or idle mosse who all for want of pruning": [0, 65535], "or idle mosse who all for want of pruning with": [0, 65535], "idle mosse who all for want of pruning with intrusion": [0, 65535], "mosse who all for want of pruning with intrusion infect": [0, 65535], "who all for want of pruning with intrusion infect thy": [0, 65535], "all for want of pruning with intrusion infect thy sap": [0, 65535], "for want of pruning with intrusion infect thy sap and": [0, 65535], "want of pruning with intrusion infect thy sap and liue": [0, 65535], "of pruning with intrusion infect thy sap and liue on": [0, 65535], "pruning with intrusion infect thy sap and liue on thy": [0, 65535], "with intrusion infect thy sap and liue on thy confusion": [0, 65535], "intrusion infect thy sap and liue on thy confusion ant": [0, 65535], "infect thy sap and liue on thy confusion ant to": [0, 65535], "thy sap and liue on thy confusion ant to mee": [0, 65535], "sap and liue on thy confusion ant to mee shee": [0, 65535], "and liue on thy confusion ant to mee shee speakes": [0, 65535], "liue on thy confusion ant to mee shee speakes shee": [0, 65535], "on thy confusion ant to mee shee speakes shee moues": [0, 65535], "thy confusion ant to mee shee speakes shee moues mee": [0, 65535], "confusion ant to mee shee speakes shee moues mee for": [0, 65535], "ant to mee shee speakes shee moues mee for her": [0, 65535], "to mee shee speakes shee moues mee for her theame": [0, 65535], "mee shee speakes shee moues mee for her theame what": [0, 65535], "shee speakes shee moues mee for her theame what was": [0, 65535], "speakes shee moues mee for her theame what was i": [0, 65535], "shee moues mee for her theame what was i married": [0, 65535], "moues mee for her theame what was i married to": [0, 65535], "mee for her theame what was i married to her": [0, 65535], "for her theame what was i married to her in": [0, 65535], "her theame what was i married to her in my": [0, 65535], "theame what was i married to her in my dreame": [0, 65535], "what was i married to her in my dreame or": [0, 65535], "was i married to her in my dreame or sleepe": [0, 65535], "i married to her in my dreame or sleepe i": [0, 65535], "married to her in my dreame or sleepe i now": [0, 65535], "to her in my dreame or sleepe i now and": [0, 65535], "her in my dreame or sleepe i now and thinke": [0, 65535], "in my dreame or sleepe i now and thinke i": [0, 65535], "my dreame or sleepe i now and thinke i heare": [0, 65535], "dreame or sleepe i now and thinke i heare all": [0, 65535], "or sleepe i now and thinke i heare all this": [0, 65535], "sleepe i now and thinke i heare all this what": [0, 65535], "i now and thinke i heare all this what error": [0, 65535], "now and thinke i heare all this what error driues": [0, 65535], "and thinke i heare all this what error driues our": [0, 65535], "thinke i heare all this what error driues our eies": [0, 65535], "i heare all this what error driues our eies and": [0, 65535], "heare all this what error driues our eies and eares": [0, 65535], "all this what error driues our eies and eares amisse": [0, 65535], "this what error driues our eies and eares amisse vntill": [0, 65535], "what error driues our eies and eares amisse vntill i": [0, 65535], "error driues our eies and eares amisse vntill i know": [0, 65535], "driues our eies and eares amisse vntill i know this": [0, 65535], "our eies and eares amisse vntill i know this sure": [0, 65535], "eies and eares amisse vntill i know this sure vncertaintie": [0, 65535], "and eares amisse vntill i know this sure vncertaintie ile": [0, 65535], "eares amisse vntill i know this sure vncertaintie ile entertaine": [0, 65535], "amisse vntill i know this sure vncertaintie ile entertaine the": [0, 65535], "vntill i know this sure vncertaintie ile entertaine the free'd": [0, 65535], "i know this sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "know this sure vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "this sure vncertaintie ile entertaine the free'd fallacie luc dromio": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie luc dromio goe": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc dromio goe bid": [0, 65535], "ile entertaine the free'd fallacie luc dromio goe bid the": [0, 65535], "entertaine the free'd fallacie luc dromio goe bid the seruants": [0, 65535], "the free'd fallacie luc dromio goe bid the seruants spred": [0, 65535], "free'd fallacie luc dromio goe bid the seruants spred for": [0, 65535], "fallacie luc dromio goe bid the seruants spred for dinner": [0, 65535], "luc dromio goe bid the seruants spred for dinner s": [0, 65535], "dromio goe bid the seruants spred for dinner s dro": [0, 65535], "goe bid the seruants spred for dinner s dro oh": [0, 65535], "bid the seruants spred for dinner s dro oh for": [0, 65535], "the seruants spred for dinner s dro oh for my": [0, 65535], "seruants spred for dinner s dro oh for my beads": [0, 65535], "spred for dinner s dro oh for my beads i": [0, 65535], "for dinner s dro oh for my beads i crosse": [0, 65535], "dinner s dro oh for my beads i crosse me": [0, 65535], "s dro oh for my beads i crosse me for": [0, 65535], "dro oh for my beads i crosse me for a": [0, 65535], "oh for my beads i crosse me for a sinner": [0, 65535], "for my beads i crosse me for a sinner this": [0, 65535], "my beads i crosse me for a sinner this is": [0, 65535], "beads i crosse me for a sinner this is the": [0, 65535], "i crosse me for a sinner this is the fairie": [0, 65535], "crosse me for a sinner this is the fairie land": [0, 65535], "me for a sinner this is the fairie land oh": [0, 65535], "for a sinner this is the fairie land oh spight": [0, 65535], "a sinner this is the fairie land oh spight of": [0, 65535], "sinner this is the fairie land oh spight of spights": [0, 65535], "this is the fairie land oh spight of spights we": [0, 65535], "is the fairie land oh spight of spights we talke": [0, 65535], "the fairie land oh spight of spights we talke with": [0, 65535], "fairie land oh spight of spights we talke with goblins": [0, 65535], "land oh spight of spights we talke with goblins owles": [0, 65535], "oh spight of spights we talke with goblins owles and": [0, 65535], "spight of spights we talke with goblins owles and sprights": [0, 65535], "of spights we talke with goblins owles and sprights if": [0, 65535], "spights we talke with goblins owles and sprights if we": [0, 65535], "we talke with goblins owles and sprights if we obay": [0, 65535], "talke with goblins owles and sprights if we obay them": [0, 65535], "with goblins owles and sprights if we obay them not": [0, 65535], "goblins owles and sprights if we obay them not this": [0, 65535], "owles and sprights if we obay them not this will": [0, 65535], "and sprights if we obay them not this will insue": [0, 65535], "sprights if we obay them not this will insue they'll": [0, 65535], "if we obay them not this will insue they'll sucke": [0, 65535], "we obay them not this will insue they'll sucke our": [0, 65535], "obay them not this will insue they'll sucke our breath": [0, 65535], "them not this will insue they'll sucke our breath or": [0, 65535], "not this will insue they'll sucke our breath or pinch": [0, 65535], "this will insue they'll sucke our breath or pinch vs": [0, 65535], "will insue they'll sucke our breath or pinch vs blacke": [0, 65535], "insue they'll sucke our breath or pinch vs blacke and": [0, 65535], "they'll sucke our breath or pinch vs blacke and blew": [0, 65535], "sucke our breath or pinch vs blacke and blew luc": [0, 65535], "our breath or pinch vs blacke and blew luc why": [0, 65535], "breath or pinch vs blacke and blew luc why prat'st": [0, 65535], "or pinch vs blacke and blew luc why prat'st thou": [0, 65535], "pinch vs blacke and blew luc why prat'st thou to": [0, 65535], "vs blacke and blew luc why prat'st thou to thy": [0, 65535], "blacke and blew luc why prat'st thou to thy selfe": [0, 65535], "and blew luc why prat'st thou to thy selfe and": [0, 65535], "blew luc why prat'st thou to thy selfe and answer'st": [0, 65535], "luc why prat'st thou to thy selfe and answer'st not": [0, 65535], "why prat'st thou to thy selfe and answer'st not dromio": [0, 65535], "prat'st thou to thy selfe and answer'st not dromio thou": [0, 65535], "thou to thy selfe and answer'st not dromio thou dromio": [0, 65535], "to thy selfe and answer'st not dromio thou dromio thou": [0, 65535], "thy selfe and answer'st not dromio thou dromio thou snaile": [0, 65535], "selfe and answer'st not dromio thou dromio thou snaile thou": [0, 65535], "and answer'st not dromio thou dromio thou snaile thou slug": [0, 65535], "answer'st not dromio thou dromio thou snaile thou slug thou": [0, 65535], "not dromio thou dromio thou snaile thou slug thou sot": [0, 65535], "dromio thou dromio thou snaile thou slug thou sot s": [0, 65535], "thou dromio thou snaile thou slug thou sot s dro": [0, 65535], "dromio thou snaile thou slug thou sot s dro i": [0, 65535], "thou snaile thou slug thou sot s dro i am": [0, 65535], "snaile thou slug thou sot s dro i am transformed": [0, 65535], "thou slug thou sot s dro i am transformed master": [0, 65535], "slug thou sot s dro i am transformed master am": [0, 65535], "thou sot s dro i am transformed master am i": [0, 65535], "sot s dro i am transformed master am i not": [0, 65535], "s dro i am transformed master am i not ant": [0, 65535], "dro i am transformed master am i not ant i": [0, 65535], "i am transformed master am i not ant i thinke": [0, 65535], "am transformed master am i not ant i thinke thou": [0, 65535], "transformed master am i not ant i thinke thou art": [0, 65535], "master am i not ant i thinke thou art in": [0, 65535], "am i not ant i thinke thou art in minde": [0, 65535], "i not ant i thinke thou art in minde and": [0, 65535], "not ant i thinke thou art in minde and so": [0, 65535], "ant i thinke thou art in minde and so am": [0, 65535], "i thinke thou art in minde and so am i": [0, 65535], "thinke thou art in minde and so am i s": [0, 65535], "thou art in minde and so am i s dro": [0, 65535], "art in minde and so am i s dro nay": [0, 65535], "in minde and so am i s dro nay master": [0, 65535], "minde and so am i s dro nay master both": [0, 65535], "and so am i s dro nay master both in": [0, 65535], "so am i s dro nay master both in minde": [0, 65535], "am i s dro nay master both in minde and": [0, 65535], "i s dro nay master both in minde and in": [0, 65535], "s dro nay master both in minde and in my": [0, 65535], "dro nay master both in minde and in my shape": [0, 65535], "nay master both in minde and in my shape ant": [0, 65535], "master both in minde and in my shape ant thou": [0, 65535], "both in minde and in my shape ant thou hast": [0, 65535], "in minde and in my shape ant thou hast thine": [0, 65535], "minde and in my shape ant thou hast thine owne": [0, 65535], "and in my shape ant thou hast thine owne forme": [0, 65535], "in my shape ant thou hast thine owne forme s": [0, 65535], "my shape ant thou hast thine owne forme s dro": [0, 65535], "shape ant thou hast thine owne forme s dro no": [0, 65535], "ant thou hast thine owne forme s dro no i": [0, 65535], "thou hast thine owne forme s dro no i am": [0, 65535], "hast thine owne forme s dro no i am an": [0, 65535], "thine owne forme s dro no i am an ape": [0, 65535], "owne forme s dro no i am an ape luc": [0, 65535], "forme s dro no i am an ape luc if": [0, 65535], "s dro no i am an ape luc if thou": [0, 65535], "dro no i am an ape luc if thou art": [0, 65535], "no i am an ape luc if thou art chang'd": [0, 65535], "i am an ape luc if thou art chang'd to": [0, 65535], "am an ape luc if thou art chang'd to ought": [0, 65535], "an ape luc if thou art chang'd to ought 'tis": [0, 65535], "ape luc if thou art chang'd to ought 'tis to": [0, 65535], "luc if thou art chang'd to ought 'tis to an": [0, 65535], "if thou art chang'd to ought 'tis to an asse": [0, 65535], "thou art chang'd to ought 'tis to an asse s": [0, 65535], "art chang'd to ought 'tis to an asse s dro": [0, 65535], "chang'd to ought 'tis to an asse s dro 'tis": [0, 65535], "to ought 'tis to an asse s dro 'tis true": [0, 65535], "ought 'tis to an asse s dro 'tis true she": [0, 65535], "'tis to an asse s dro 'tis true she rides": [0, 65535], "to an asse s dro 'tis true she rides me": [0, 65535], "an asse s dro 'tis true she rides me and": [0, 65535], "asse s dro 'tis true she rides me and i": [0, 65535], "s dro 'tis true she rides me and i long": [0, 65535], "dro 'tis true she rides me and i long for": [0, 65535], "'tis true she rides me and i long for grasse": [0, 65535], "true she rides me and i long for grasse 'tis": [0, 65535], "she rides me and i long for grasse 'tis so": [0, 65535], "rides me and i long for grasse 'tis so i": [0, 65535], "me and i long for grasse 'tis so i am": [0, 65535], "and i long for grasse 'tis so i am an": [0, 65535], "i long for grasse 'tis so i am an asse": [0, 65535], "long for grasse 'tis so i am an asse else": [0, 65535], "for grasse 'tis so i am an asse else it": [0, 65535], "grasse 'tis so i am an asse else it could": [0, 65535], "'tis so i am an asse else it could neuer": [0, 65535], "so i am an asse else it could neuer be": [0, 65535], "i am an asse else it could neuer be but": [0, 65535], "am an asse else it could neuer be but i": [0, 65535], "an asse else it could neuer be but i should": [0, 65535], "asse else it could neuer be but i should know": [0, 65535], "else it could neuer be but i should know her": [0, 65535], "it could neuer be but i should know her as": [0, 65535], "could neuer be but i should know her as well": [0, 65535], "neuer be but i should know her as well as": [0, 65535], "be but i should know her as well as she": [0, 65535], "but i should know her as well as she knowes": [0, 65535], "i should know her as well as she knowes me": [0, 65535], "should know her as well as she knowes me adr": [0, 65535], "know her as well as she knowes me adr come": [0, 65535], "her as well as she knowes me adr come come": [0, 65535], "as well as she knowes me adr come come no": [0, 65535], "well as she knowes me adr come come no longer": [0, 65535], "as she knowes me adr come come no longer will": [0, 65535], "she knowes me adr come come no longer will i": [0, 65535], "knowes me adr come come no longer will i be": [0, 65535], "me adr come come no longer will i be a": [0, 65535], "adr come come no longer will i be a foole": [0, 65535], "come come no longer will i be a foole to": [0, 65535], "come no longer will i be a foole to put": [0, 65535], "no longer will i be a foole to put the": [0, 65535], "longer will i be a foole to put the finger": [0, 65535], "will i be a foole to put the finger in": [0, 65535], "i be a foole to put the finger in the": [0, 65535], "be a foole to put the finger in the eie": [0, 65535], "a foole to put the finger in the eie and": [0, 65535], "foole to put the finger in the eie and weepe": [0, 65535], "to put the finger in the eie and weepe whil'st": [0, 65535], "put the finger in the eie and weepe whil'st man": [0, 65535], "the finger in the eie and weepe whil'st man and": [0, 65535], "finger in the eie and weepe whil'st man and master": [0, 65535], "in the eie and weepe whil'st man and master laughes": [0, 65535], "the eie and weepe whil'st man and master laughes my": [0, 65535], "eie and weepe whil'st man and master laughes my woes": [0, 65535], "and weepe whil'st man and master laughes my woes to": [0, 65535], "weepe whil'st man and master laughes my woes to scorne": [0, 65535], "whil'st man and master laughes my woes to scorne come": [0, 65535], "man and master laughes my woes to scorne come sir": [0, 65535], "and master laughes my woes to scorne come sir to": [0, 65535], "master laughes my woes to scorne come sir to dinner": [0, 65535], "laughes my woes to scorne come sir to dinner dromio": [0, 65535], "my woes to scorne come sir to dinner dromio keepe": [0, 65535], "woes to scorne come sir to dinner dromio keepe the": [0, 65535], "to scorne come sir to dinner dromio keepe the gate": [0, 65535], "scorne come sir to dinner dromio keepe the gate husband": [0, 65535], "come sir to dinner dromio keepe the gate husband ile": [0, 65535], "sir to dinner dromio keepe the gate husband ile dine": [0, 65535], "to dinner dromio keepe the gate husband ile dine aboue": [0, 65535], "dinner dromio keepe the gate husband ile dine aboue with": [0, 65535], "dromio keepe the gate husband ile dine aboue with you": [0, 65535], "keepe the gate husband ile dine aboue with you to": [0, 65535], "the gate husband ile dine aboue with you to day": [0, 65535], "gate husband ile dine aboue with you to day and": [0, 65535], "husband ile dine aboue with you to day and shriue": [0, 65535], "ile dine aboue with you to day and shriue you": [0, 65535], "dine aboue with you to day and shriue you of": [0, 65535], "aboue with you to day and shriue you of a": [0, 65535], "with you to day and shriue you of a thousand": [0, 65535], "you to day and shriue you of a thousand idle": [0, 65535], "to day and shriue you of a thousand idle prankes": [0, 65535], "day and shriue you of a thousand idle prankes sirra": [0, 65535], "and shriue you of a thousand idle prankes sirra if": [0, 65535], "shriue you of a thousand idle prankes sirra if any": [0, 65535], "you of a thousand idle prankes sirra if any aske": [0, 65535], "of a thousand idle prankes sirra if any aske you": [0, 65535], "a thousand idle prankes sirra if any aske you for": [0, 65535], "thousand idle prankes sirra if any aske you for your": [0, 65535], "idle prankes sirra if any aske you for your master": [0, 65535], "prankes sirra if any aske you for your master say": [0, 65535], "sirra if any aske you for your master say he": [0, 65535], "if any aske you for your master say he dines": [0, 65535], "any aske you for your master say he dines forth": [0, 65535], "aske you for your master say he dines forth and": [0, 65535], "you for your master say he dines forth and let": [0, 65535], "for your master say he dines forth and let no": [0, 65535], "your master say he dines forth and let no creature": [0, 65535], "master say he dines forth and let no creature enter": [0, 65535], "say he dines forth and let no creature enter come": [0, 65535], "he dines forth and let no creature enter come sister": [0, 65535], "dines forth and let no creature enter come sister dromio": [0, 65535], "forth and let no creature enter come sister dromio play": [0, 65535], "and let no creature enter come sister dromio play the": [0, 65535], "let no creature enter come sister dromio play the porter": [0, 65535], "no creature enter come sister dromio play the porter well": [0, 65535], "creature enter come sister dromio play the porter well ant": [0, 65535], "enter come sister dromio play the porter well ant am": [0, 65535], "come sister dromio play the porter well ant am i": [0, 65535], "sister dromio play the porter well ant am i in": [0, 65535], "dromio play the porter well ant am i in earth": [0, 65535], "play the porter well ant am i in earth in": [0, 65535], "the porter well ant am i in earth in heauen": [0, 65535], "porter well ant am i in earth in heauen or": [0, 65535], "well ant am i in earth in heauen or in": [0, 65535], "ant am i in earth in heauen or in hell": [0, 65535], "am i in earth in heauen or in hell sleeping": [0, 65535], "i in earth in heauen or in hell sleeping or": [0, 65535], "in earth in heauen or in hell sleeping or waking": [0, 65535], "earth in heauen or in hell sleeping or waking mad": [0, 65535], "in heauen or in hell sleeping or waking mad or": [0, 65535], "heauen or in hell sleeping or waking mad or well": [0, 65535], "or in hell sleeping or waking mad or well aduisde": [0, 65535], "in hell sleeping or waking mad or well aduisde knowne": [0, 65535], "hell sleeping or waking mad or well aduisde knowne vnto": [0, 65535], "sleeping or waking mad or well aduisde knowne vnto these": [0, 65535], "or waking mad or well aduisde knowne vnto these and": [0, 65535], "waking mad or well aduisde knowne vnto these and to": [0, 65535], "mad or well aduisde knowne vnto these and to my": [0, 65535], "or well aduisde knowne vnto these and to my selfe": [0, 65535], "well aduisde knowne vnto these and to my selfe disguisde": [0, 65535], "aduisde knowne vnto these and to my selfe disguisde ile": [0, 65535], "knowne vnto these and to my selfe disguisde ile say": [0, 65535], "vnto these and to my selfe disguisde ile say as": [0, 65535], "these and to my selfe disguisde ile say as they": [0, 65535], "and to my selfe disguisde ile say as they say": [0, 65535], "to my selfe disguisde ile say as they say and": [0, 65535], "my selfe disguisde ile say as they say and perseuer": [0, 65535], "selfe disguisde ile say as they say and perseuer so": [0, 65535], "disguisde ile say as they say and perseuer so and": [0, 65535], "ile say as they say and perseuer so and in": [0, 65535], "say as they say and perseuer so and in this": [0, 65535], "as they say and perseuer so and in this mist": [0, 65535], "they say and perseuer so and in this mist at": [0, 65535], "say and perseuer so and in this mist at all": [0, 65535], "and perseuer so and in this mist at all aduentures": [0, 65535], "perseuer so and in this mist at all aduentures go": [0, 65535], "so and in this mist at all aduentures go s": [0, 65535], "and in this mist at all aduentures go s dro": [0, 65535], "in this mist at all aduentures go s dro master": [0, 65535], "this mist at all aduentures go s dro master shall": [0, 65535], "mist at all aduentures go s dro master shall i": [0, 65535], "at all aduentures go s dro master shall i be": [0, 65535], "all aduentures go s dro master shall i be porter": [0, 65535], "aduentures go s dro master shall i be porter at": [0, 65535], "go s dro master shall i be porter at the": [0, 65535], "s dro master shall i be porter at the gate": [0, 65535], "dro master shall i be porter at the gate adr": [0, 65535], "master shall i be porter at the gate adr i": [0, 65535], "shall i be porter at the gate adr i and": [0, 65535], "i be porter at the gate adr i and let": [0, 65535], "be porter at the gate adr i and let none": [0, 65535], "porter at the gate adr i and let none enter": [0, 65535], "at the gate adr i and let none enter least": [0, 65535], "the gate adr i and let none enter least i": [0, 65535], "gate adr i and let none enter least i breake": [0, 65535], "adr i and let none enter least i breake your": [0, 65535], "i and let none enter least i breake your pate": [0, 65535], "and let none enter least i breake your pate luc": [0, 65535], "let none enter least i breake your pate luc come": [0, 65535], "none enter least i breake your pate luc come come": [0, 65535], "enter least i breake your pate luc come come antipholus": [0, 65535], "least i breake your pate luc come come antipholus we": [0, 65535], "i breake your pate luc come come antipholus we dine": [0, 65535], "breake your pate luc come come antipholus we dine to": [0, 65535], "your pate luc come come antipholus we dine to late": [0, 65535], "quintus": [0, 65535], "sc\u0153na": [0, 65535], "hindred": [0, 65535], "dishonestly": [0, 65535], "mar": [0, 65535], "esteem'd": [0, 65535], "citie": [0, 65535], "infinite": [0, 65535], "highly": [0, 65535], "belou'd": [0, 65535], "softly": [0, 65535], "walkes": [0, 65535], "forswore": [0, 65535], "monstrously": [0, 65535], "neere": [0, 65535], "scandall": [0, 65535], "oaths": [0, 65535], "weare": [0, 65535], "openly": [0, 65535], "beside": [0, 65535], "charge": [0, 65535], "imprisonment": [0, 65535], "staying": [0, 65535], "controuersie": [0, 65535], "hoisted": [0, 65535], "saile": [0, 65535], "deny": [0, 65535], "heard": [0, 65535], "forsweare": [0, 65535], "wretch": [0, 65535], "pitty": [0, 65535], "liu'st": [0, 65535], "resort": [0, 65535], "impeach": [0, 65535], "proue": [0, 65535], "honestie": [0, 65535], "dar'st": [0, 65535], "defie": [0, 65535], "courtezan": [0, 65535], "sword": [0, 65535], "binde": [0, 65535], "runne": [0, 65535], "priorie": [0, 65535], "spoyl'd": [0, 65535], "ladie": [0, 65535], "abbesse": [0, 65535], "ab": [0, 65535], "throng": [0, 65535], "distracted": [0, 65535], "perfect": [0, 65535], "wits": [0, 65535], "heauie": [0, 65535], "sower": [0, 65535], "different": [0, 65535], "afternoone": [0, 65535], "brake": [0, 65535], "extremity": [0, 65535], "wrack": [0, 65535], "stray'd": [0, 65535], "affection": [0, 65535], "vnlawfull": [0, 65535], "preuailing": [0, 65535], "youthfull": [0, 65535], "sorrowes": [0, 65535], "subiect": [0, 65535], "except": [0, 65535], "oft": [0, 65535], "reprehended": [0, 65535], "rough": [0, 65535], "roughly": [0, 65535], "haply": [0, 65535], "priuate": [0, 65535], "assemblies": [0, 65535], "copie": [0, 65535], "conference": [0, 65535], "fed": [0, 65535], "vilde": [0, 65535], "thereof": [0, 65535], "venome": [0, 65535], "clamors": [0, 65535], "iealous": [0, 65535], "poisons": [0, 65535], "deadly": [0, 65535], "dogges": [0, 65535], "sleepes": [0, 65535], "railing": [0, 65535], "saist": [0, 65535], "meate": [0, 65535], "sawc'd": [0, 65535], "vpbraidings": [0, 65535], "vnquiet": [0, 65535], "meales": [0, 65535], "digestions": [0, 65535], "raging": [0, 65535], "feauer": [0, 65535], "fit": [0, 65535], "madnesse": [0, 65535], "sayest": [0, 65535], "sports": [0, 65535], "bralles": [0, 65535], "recreation": [0, 65535], "barr'd": [0, 65535], "ensue": [0, 65535], "moodie": [0, 65535], "melancholly": [0, 65535], "kinsman": [0, 65535], "comfortlesse": [0, 65535], "dispaire": [0, 65535], "huge": [0, 65535], "infectious": [0, 65535], "troope": [0, 65535], "distemperatures": [0, 65535], "foes": [0, 65535], "food": [0, 65535], "preseruing": [0, 65535], "disturb'd": [0, 65535], "consequence": [0, 65535], "fits": [0, 65535], "scar'd": [0, 65535], "mildely": [0, 65535], "demean'd": [0, 65535], "rude": [0, 65535], "wildly": [0, 65535], "rebukes": [0, 65535], "reproofe": [0, 65535], "enters": [0, 65535], "sanctuary": [0, 65535], "priuiledge": [0, 65535], "assaying": [0, 65535], "nurse": [0, 65535], "diet": [0, 65535], "sicknesse": [0, 65535], "atturney": [0, 65535], "stirre": [0, 65535], "vs'd": [0, 65535], "approoued": [0, 65535], "wholsome": [0, 65535], "sirrups": [0, 65535], "drugges": [0, 65535], "formall": [0, 65535], "branch": [0, 65535], "parcell": [0, 65535], "oath": [0, 65535], "charitable": [0, 65535], "dutie": [0, 65535], "beseeme": [0, 65535], "holinesse": [0, 65535], "separate": [0, 65535], "shalt": [0, 65535], "duke": [0, 65535], "indignity": [0, 65535], "prostrate": [0, 65535], "feete": [0, 65535], "rise": [0, 65535], "perforce": [0, 65535], "diall": [0, 65535], "fiue": [0, 65535], "anon": [0, 65535], "i'me": [0, 65535], "vale": [0, 65535], "depth": [0, 65535], "sorrie": [0, 65535], "execution": [0, 65535], "ditches": [0, 65535], "abbey": [0, 65535], "siracusian": [0, 65535], "vnluckily": [0, 65535], "bay": [0, 65535], "lawes": [0, 65535], "statutes": [0, 65535], "beheaded": [0, 65535], "publikely": [0, 65535], "kneele": [0, 65535], "siracuse": [0, 65535], "headsman": [0, 65535], "proclaime": [0, 65535], "summe": [0, 65535], "tender": [0, 65535], "iustice": [0, 65535], "vertuous": [0, 65535], "reuerend": [0, 65535], "husba": [0, 65535], "n": [0, 65535], "d": [0, 65535], "important": [0, 65535], "letters": [0, 65535], "outragious": [0, 65535], "desp'rately": [0, 65535], "hurried": [0, 65535], "streete": [0, 65535], "bondman": [0, 65535], "displeasure": [0, 65535], "citizens": [0, 65535], "rushing": [0, 65535], "houses": [0, 65535], "bearing": [0, 65535], "rings": [0, 65535], "iewels": [0, 65535], "furie": [0, 65535], "committed": [0, 65535], "wot": [0, 65535], "escape": [0, 65535], "guard": [0, 65535], "attendant": [0, 65535], "irefull": [0, 65535], "drawne": [0, 65535], "swords": [0, 65535], "madly": [0, 65535], "chac'd": [0, 65535], "raising": [0, 65535], "aide": [0, 65535], "whether": [0, 65535], "pursu'd": [0, 65535], "shuts": [0, 65535], "gates": [0, 65535], "gracious": [0, 65535], "command": [0, 65535], "seru'd": [0, 65535], "wars": [0, 65535], "ingag'd": [0, 65535], "princes": [0, 65535], "determine": [0, 65535], "shift": [0, 65535], "maids": [0, 65535], "beard": [0, 65535], "sindg'd": [0, 65535], "brands": [0, 65535], "blaz'd": [0, 65535], "pailes": [0, 65535], "puddled": [0, 65535], "myre": [0, 65535], "quench": [0, 65535], "preaches": [0, 65535], "cizers": [0, 65535], "nickes": [0, 65535], "coniurer": [0, 65535], "mess": [0, 65535], "tel": [0, 65535], "breath'd": [0, 65535], "cries": [0, 65535], "vowes": [0, 65535], "scorch": [0, 65535], "disfigure": [0, 65535], "harke": [0, 65535], "halberds": [0, 65535], "ay": [0, 65535], "inuisible": [0, 65535], "hous'd": [0, 65535], "humane": [0, 65535], "grant": [0, 65535], "bestrid": [0, 65535], "warres": [0, 65535], "scarres": [0, 65535], "sonne": [0, 65535], "prince": [0, 65535], "whom": [0, 65535], "gau'st": [0, 65535], "abused": [0, 65535], "dishonored": [0, 65535], "height": [0, 65535], "iniurie": [0, 65535], "shamelesse": [0, 65535], "throwne": [0, 65535], "discouer": [0, 65535], "finde": [0, 65535], "iust": [0, 65535], "harlots": [0, 65535], "feasted": [0, 65535], "greeuous": [0, 65535], "befall": [0, 65535], "burthens": [0, 65535], "tels": [0, 65535], "highnesse": [0, 65535], "periur'd": [0, 65535], "forsworne": [0, 65535], "madman": [0, 65535], "iustly": [0, 65535], "chargeth": [0, 65535], "liege": [0, 65535], "aduised": [0, 65535], "disturbed": [0, 65535], "wine": [0, 65535], "headie": [0, 65535], "rash": [0, 65535], "prouoak'd": [0, 65535], "ire": [0, 65535], "albeit": [0, 65535], "wiser": [0, 65535], "lock'd": [0, 65535], "pack'd": [0, 65535], "parted": [0, 65535], "promising": [0, 65535], "balthasar": [0, 65535], "companie": [0, 65535], "sweare": [0, 65535], "officer": [0, 65535], "duckets": [0, 65535], "fairely": [0, 65535], "by'th'": [0, 65535], "rabble": [0, 65535], "confederates": [0, 65535], "hungry": [0, 65535], "fac'd": [0, 65535], "meere": [0, 65535], "anatomie": [0, 65535], "mountebanke": [0, 65535], "thred": [0, 65535], "iugler": [0, 65535], "teller": [0, 65535], "ey'd": [0, 65535], "liuing": [0, 65535], "pernicious": [0, 65535], "forsooth": [0, 65535], "'twere": [0, 65535], "facing": [0, 65535], "darke": [0, 65535], "dankish": [0, 65535], "vault": [0, 65535], "gnawing": [0, 65535], "bonds": [0, 65535], "sunder": [0, 65535], "gain'd": [0, 65535], "freedome": [0, 65535], "hether": [0, 65535], "beseech": [0, 65535], "ample": [0, 65535], "indignities": [0, 65535], "witnes": [0, 65535], "sworne": [0, 65535], "confesse": [0, 65535], "thereupon": [0, 65535], "miracle": [0, 65535], "wals": [0, 65535], "burthen": [0, 65535], "intricate": [0, 65535], "drunke": [0, 65535], "circes": [0, 65535], "cup": [0, 65535], "bin": [0, 65535], "pleade": [0, 65535], "denies": [0, 65535], "din'de": [0, 65535], "cur": [0, 65535], "snacht": [0, 65535], "tis": [0, 65535], "saw'st": [0, 65535], "curt": [0, 65535], "straunge": [0, 65535], "fa": [0, 65535], "vouchsafe": [0, 65535], "sum": [0, 65535], "freely": [0, 65535], "wilt": [0, 65535], "fath": [0, 65535], "gnaw'd": [0, 65535], "cords": [0, 65535], "vnbound": [0, 65535], "pinches": [0, 65535], "griefe": [0, 65535], "carefull": [0, 65535], "deformed": [0, 65535], "written": [0, 65535], "whatsoeuer": [0, 65535], "crack'd": [0, 65535], "splitted": [0, 65535], "seuen": [0, 65535], "onely": [0, 65535], "vntun'd": [0, 65535], "grained": [0, 65535], "hid": [0, 65535], "consuming": [0, 65535], "winters": [0, 65535], "drizled": [0, 65535], "snow": [0, 65535], "conduits": [0, 65535], "froze": [0, 65535], "memorie": [0, 65535], "wasting": [0, 65535], "lampes": [0, 65535], "fading": [0, 65535], "glimmer": [0, 65535], "deafe": [0, 65535], "witnesses": [0, 65535], "erre": [0, 65535], "siracusa": [0, 65535], "know'st": [0, 65535], "sham'st": [0, 65535], "acknowledge": [0, 65535], "miserie": [0, 65535], "city": [0, 65535], "patron": [0, 65535], "dangers": [0, 65535], "mightie": [0, 65535], "wrong'd": [0, 65535], "deceiue": [0, 65535], "genius": [0, 65535], "naturall": [0, 65535], "deciphers": [0, 65535], "egeon": [0, 65535], "ghost": [0, 65535], "olde": [0, 65535], "abb": [0, 65535], "gaine": [0, 65535], "bee'st": [0, 65535], "\u00e6milia": [0, 65535], "sonnes": [0, 65535], "begins": [0, 65535], "storie": [0, 65535], "twoantipholus": [0, 65535], "dromio's": [0, 65535], "semblance": [0, 65535], "wracke": [0, 65535], "floated": [0, 65535], "fatall": [0, 65535], "rafte": [0, 65535], "epidamium": [0, 65535], "twin": [0, 65535], "fishermen": [0, 65535], "corinth": [0, 65535], "force": [0, 65535], "cam'st": [0, 65535], "apart": [0, 65535], "famous": [0, 65535], "warriour": [0, 65535], "menaphon": [0, 65535], "renowned": [0, 65535], "vnckle": [0, 65535], "leisure": [0, 65535], "arrested": [0, 65535], "monie": [0, 65535], "baile": [0, 65535], "purse": [0, 65535], "meete": [0, 65535], "arose": [0, 65535], "pawne": [0, 65535], "neede": [0, 65535], "diamond": [0, 65535], "thanks": [0, 65535], "paines": [0, 65535], "discoursed": [0, 65535], "fortunes": [0, 65535], "simpathized": [0, 65535], "daies": [0, 65535], "suffer'd": [0, 65535], "thirtie": [0, 65535], "trauaile": [0, 65535], "deliuered": [0, 65535], "kalenders": [0, 65535], "natiuity": [0, 65535], "gossips": [0, 65535], "greefe": [0, 65535], "natiuitie": [0, 65535], "gossip": [0, 65535], "omnes": [0, 65535], "manet": [0, 65535], "mast": [0, 65535], "stuffe": [0, 65535], "shipbord": [0, 65535], "imbarkt": [0, 65535], "goods": [0, 65535], "wee'l": [0, 65535], "embrace": [0, 65535], "reioyce": [0, 65535], "kitchin'd": [0, 65535], "glasse": [0, 65535], "youth": [0, 65535], "gossipping": [0, 65535], "elder": [0, 65535], "cuts": [0, 65535], "finis": [0, 65535], "actus quintus": [0, 65535], "quintus sc\u0153na": [0, 65535], "sc\u0153na prima": [0, 65535], "enter the": [0, 65535], "merchant and": [0, 65535], "goldsmith gold": [0, 65535], "am sorry": [0, 65535], "sorry sir": [0, 65535], "sir that": [0, 65535], "haue hindred": [0, 65535], "hindred you": [0, 65535], "protest he": [0, 65535], "chaine of": [0, 65535], "of me": [0, 65535], "me though": [0, 65535], "though most": [0, 65535], "most dishonestly": [0, 65535], "dishonestly he": [0, 65535], "he doth": [0, 65535], "doth denie": [0, 65535], "denie it": [0, 65535], "it mar": [0, 65535], "mar how": [0, 65535], "man esteem'd": [0, 65535], "esteem'd heere": [0, 65535], "heere in": [0, 65535], "the citie": [0, 65535], "citie gold": [0, 65535], "gold of": [0, 65535], "of very": [0, 65535], "reuerent reputation": [0, 65535], "reputation sir": [0, 65535], "sir of": [0, 65535], "credit infinite": [0, 65535], "infinite highly": [0, 65535], "highly belou'd": [0, 65535], "belou'd second": [0, 65535], "second to": [0, 65535], "to none": [0, 65535], "none that": [0, 65535], "that liues": [0, 65535], "liues heere": [0, 65535], "citie his": [0, 65535], "his word": [0, 65535], "word might": [0, 65535], "might beare": [0, 65535], "beare my": [0, 65535], "my wealth": [0, 65535], "wealth at": [0, 65535], "at any": [0, 65535], "any time": [0, 65535], "time mar": [0, 65535], "mar speake": [0, 65535], "speake softly": [0, 65535], "softly yonder": [0, 65535], "yonder as": [0, 65535], "as i": [0, 65535], "he walkes": [0, 65535], "walkes enter": [0, 65535], "antipholus and": [0, 65535], "and dromio": [0, 65535], "dromio againe": [0, 65535], "againe gold": [0, 65535], "that selfe": [0, 65535], "selfe chaine": [0, 65535], "chaine about": [0, 65535], "about his": [0, 65535], "his necke": [0, 65535], "necke which": [0, 65535], "he forswore": [0, 65535], "forswore most": [0, 65535], "most monstrously": [0, 65535], "monstrously to": [0, 65535], "haue good": [0, 65535], "sir draw": [0, 65535], "draw neere": [0, 65535], "neere to": [0, 65535], "ile speake": [0, 65535], "speake to": [0, 65535], "him signior": [0, 65535], "signior antipholus": [0, 65535], "antipholus i": [0, 65535], "wonder much": [0, 65535], "would put": [0, 65535], "this shame": [0, 65535], "shame and": [0, 65535], "and trouble": [0, 65535], "trouble and": [0, 65535], "not without": [0, 65535], "without some": [0, 65535], "some scandall": [0, 65535], "scandall to": [0, 65535], "selfe with": [0, 65535], "with circumstance": [0, 65535], "circumstance and": [0, 65535], "and oaths": [0, 65535], "oaths so": [0, 65535], "to denie": [0, 65535], "denie this": [0, 65535], "this chaine": [0, 65535], "chaine which": [0, 65535], "which now": [0, 65535], "you weare": [0, 65535], "weare so": [0, 65535], "so openly": [0, 65535], "openly beside": [0, 65535], "beside the": [0, 65535], "the charge": [0, 65535], "charge the": [0, 65535], "the shame": [0, 65535], "shame imprisonment": [0, 65535], "imprisonment you": [0, 65535], "haue done": [0, 65535], "done wrong": [0, 65535], "my honest": [0, 65535], "honest friend": [0, 65535], "friend who": [0, 65535], "who but": [0, 65535], "but for": [0, 65535], "for staying": [0, 65535], "staying on": [0, 65535], "our controuersie": [0, 65535], "controuersie had": [0, 65535], "had hoisted": [0, 65535], "hoisted saile": [0, 65535], "saile and": [0, 65535], "and put": [0, 65535], "put to": [0, 65535], "to sea": [0, 65535], "sea to": [0, 65535], "chaine you": [0, 65535], "you had": [0, 65535], "had of": [0, 65535], "me can": [0, 65535], "you deny": [0, 65535], "deny it": [0, 65535], "had i": [0, 65535], "neuer did": [0, 65535], "did deny": [0, 65535], "mar yes": [0, 65535], "yes that": [0, 65535], "and forswore": [0, 65535], "forswore it": [0, 65535], "too ant": [0, 65535], "who heard": [0, 65535], "heard me": [0, 65535], "it or": [0, 65535], "or forsweare": [0, 65535], "forsweare it": [0, 65535], "mar these": [0, 65535], "these eares": [0, 65535], "eares of": [0, 65535], "mine thou": [0, 65535], "thou knowst": [0, 65535], "knowst did": [0, 65535], "did hear": [0, 65535], "hear thee": [0, 65535], "thee fie": [0, 65535], "fie on": [0, 65535], "on thee": [0, 65535], "thee wretch": [0, 65535], "wretch 'tis": [0, 65535], "'tis pitty": [0, 65535], "pitty that": [0, 65535], "thou liu'st": [0, 65535], "liu'st to": [0, 65535], "to walke": [0, 65535], "walke where": [0, 65535], "where any": [0, 65535], "any honest": [0, 65535], "honest men": [0, 65535], "men resort": [0, 65535], "resort ant": [0, 65535], "art a": [0, 65535], "villaine to": [0, 65535], "to impeach": [0, 65535], "impeach me": [0, 65535], "thus ile": [0, 65535], "ile proue": [0, 65535], "proue mine": [0, 65535], "mine honor": [0, 65535], "mine honestie": [0, 65535], "honestie against": [0, 65535], "against thee": [0, 65535], "presently if": [0, 65535], "thou dar'st": [0, 65535], "dar'st stand": [0, 65535], "stand mar": [0, 65535], "mar i": [0, 65535], "dare and": [0, 65535], "and do": [0, 65535], "do defie": [0, 65535], "defie thee": [0, 65535], "thee for": [0, 65535], "villaine they": [0, 65535], "they draw": [0, 65535], "draw enter": [0, 65535], "adriana luciana": [0, 65535], "luciana courtezan": [0, 65535], "courtezan others": [0, 65535], "others adr": [0, 65535], "adr hold": [0, 65535], "hold hurt": [0, 65535], "hurt him": [0, 65535], "not for": [0, 65535], "for god": [0, 65535], "god sake": [0, 65535], "sake he": [0, 65535], "is mad": [0, 65535], "mad some": [0, 65535], "some get": [0, 65535], "get within": [0, 65535], "him take": [0, 65535], "take his": [0, 65535], "his sword": [0, 65535], "sword away": [0, 65535], "away binde": [0, 65535], "binde dromio": [0, 65535], "dromio too": [0, 65535], "and beare": [0, 65535], "beare them": [0, 65535], "house s": [0, 65535], "dro runne": [0, 65535], "runne master": [0, 65535], "master run": [0, 65535], "sake take": [0, 65535], "house this": [0, 65535], "is some": [0, 65535], "some priorie": [0, 65535], "priorie in": [0, 65535], "in or": [0, 65535], "or we": [0, 65535], "are spoyl'd": [0, 65535], "spoyl'd exeunt": [0, 65535], "exeunt to": [0, 65535], "the priorie": [0, 65535], "priorie enter": [0, 65535], "enter ladie": [0, 65535], "ladie abbesse": [0, 65535], "abbesse ab": [0, 65535], "ab be": [0, 65535], "quiet people": [0, 65535], "people wherefore": [0, 65535], "wherefore throng": [0, 65535], "throng you": [0, 65535], "you hither": [0, 65535], "hither adr": [0, 65535], "adr to": [0, 65535], "poore distracted": [0, 65535], "distracted husband": [0, 65535], "husband hence": [0, 65535], "hence let": [0, 65535], "vs come": [0, 65535], "come in": [0, 65535], "we may": [0, 65535], "may binde": [0, 65535], "binde him": [0, 65535], "him fast": [0, 65535], "fast and": [0, 65535], "beare him": [0, 65535], "his recouerie": [0, 65535], "recouerie gold": [0, 65535], "knew he": [0, 65535], "his perfect": [0, 65535], "perfect wits": [0, 65535], "wits mar": [0, 65535], "sorry now": [0, 65535], "did draw": [0, 65535], "draw on": [0, 65535], "him ab": [0, 65535], "ab how": [0, 65535], "long hath": [0, 65535], "hath this": [0, 65535], "this possession": [0, 65535], "possession held": [0, 65535], "held the": [0, 65535], "man adr": [0, 65535], "adr this": [0, 65535], "this weeke": [0, 65535], "weeke he": [0, 65535], "hath beene": [0, 65535], "beene heauie": [0, 65535], "heauie sower": [0, 65535], "sower sad": [0, 65535], "sad and": [0, 65535], "much different": [0, 65535], "different from": [0, 65535], "man he": [0, 65535], "but till": [0, 65535], "this afternoone": [0, 65535], "afternoone his": [0, 65535], "passion ne're": [0, 65535], "ne're brake": [0, 65535], "brake into": [0, 65535], "into extremity": [0, 65535], "extremity of": [0, 65535], "of rage": [0, 65535], "rage ab": [0, 65535], "ab hath": [0, 65535], "hath he": [0, 65535], "not lost": [0, 65535], "lost much": [0, 65535], "much wealth": [0, 65535], "wealth by": [0, 65535], "by wrack": [0, 65535], "wrack of": [0, 65535], "of sea": [0, 65535], "sea buried": [0, 65535], "buried some": [0, 65535], "some deere": [0, 65535], "deere friend": [0, 65535], "friend hath": [0, 65535], "hath not": [0, 65535], "not else": [0, 65535], "else his": [0, 65535], "eye stray'd": [0, 65535], "stray'd his": [0, 65535], "his affection": [0, 65535], "affection in": [0, 65535], "in vnlawfull": [0, 65535], "vnlawfull loue": [0, 65535], "loue a": [0, 65535], "a sinne": [0, 65535], "sinne preuailing": [0, 65535], "preuailing much": [0, 65535], "much in": [0, 65535], "in youthfull": [0, 65535], "youthfull men": [0, 65535], "men who": [0, 65535], "who giue": [0, 65535], "giue their": [0, 65535], "their eies": [0, 65535], "eies the": [0, 65535], "the liberty": [0, 65535], "liberty of": [0, 65535], "of gazing": [0, 65535], "gazing which": [0, 65535], "which of": [0, 65535], "these sorrowes": [0, 65535], "sorrowes is": [0, 65535], "he subiect": [0, 65535], "subiect too": [0, 65535], "too adr": [0, 65535], "these except": [0, 65535], "except it": [0, 65535], "last namely": [0, 65535], "namely some": [0, 65535], "some loue": [0, 65535], "loue that": [0, 65535], "that drew": [0, 65535], "drew him": [0, 65535], "him oft": [0, 65535], "oft from": [0, 65535], "home ab": [0, 65535], "ab you": [0, 65535], "should for": [0, 65535], "haue reprehended": [0, 65535], "reprehended him": [0, 65535], "him adr": [0, 65535], "why so": [0, 65535], "did ab": [0, 65535], "ab i": [0, 65535], "i but": [0, 65535], "not rough": [0, 65535], "rough enough": [0, 65535], "enough adr": [0, 65535], "adr as": [0, 65535], "as roughly": [0, 65535], "roughly as": [0, 65535], "as my": [0, 65535], "my modestie": [0, 65535], "modestie would": [0, 65535], "would let": [0, 65535], "me ab": [0, 65535], "ab haply": [0, 65535], "haply in": [0, 65535], "in priuate": [0, 65535], "priuate adr": [0, 65535], "adr and": [0, 65535], "in assemblies": [0, 65535], "assemblies too": [0, 65535], "too ab": [0, 65535], "not enough": [0, 65535], "adr it": [0, 65535], "the copie": [0, 65535], "copie of": [0, 65535], "of our": [0, 65535], "our conference": [0, 65535], "conference in": [0, 65535], "in bed": [0, 65535], "bed he": [0, 65535], "slept not": [0, 65535], "my vrging": [0, 65535], "boord he": [0, 65535], "he fed": [0, 65535], "fed not": [0, 65535], "it alone": [0, 65535], "alone it": [0, 65535], "the subiect": [0, 65535], "subiect of": [0, 65535], "my theame": [0, 65535], "theame in": [0, 65535], "in company": [0, 65535], "company i": [0, 65535], "i often": [0, 65535], "often glanced": [0, 65535], "glanced it": [0, 65535], "it still": [0, 65535], "still did": [0, 65535], "tell him": [0, 65535], "him it": [0, 65535], "was vilde": [0, 65535], "vilde and": [0, 65535], "bad ab": [0, 65535], "ab and": [0, 65535], "and thereof": [0, 65535], "thereof came": [0, 65535], "came it": [0, 65535], "man was": [0, 65535], "was mad": [0, 65535], "mad the": [0, 65535], "the venome": [0, 65535], "venome clamors": [0, 65535], "clamors of": [0, 65535], "a iealous": [0, 65535], "iealous woman": [0, 65535], "woman poisons": [0, 65535], "poisons more": [0, 65535], "more deadly": [0, 65535], "deadly then": [0, 65535], "a mad": [0, 65535], "mad dogges": [0, 65535], "dogges tooth": [0, 65535], "tooth it": [0, 65535], "seemes his": [0, 65535], "his sleepes": [0, 65535], "sleepes were": [0, 65535], "were hindred": [0, 65535], "hindred by": [0, 65535], "thy railing": [0, 65535], "railing and": [0, 65535], "thereof comes": [0, 65535], "head is": [0, 65535], "is light": [0, 65535], "light thou": [0, 65535], "thou saist": [0, 65535], "saist his": [0, 65535], "his meate": [0, 65535], "meate was": [0, 65535], "was sawc'd": [0, 65535], "sawc'd with": [0, 65535], "thy vpbraidings": [0, 65535], "vpbraidings vnquiet": [0, 65535], "vnquiet meales": [0, 65535], "meales make": [0, 65535], "make ill": [0, 65535], "ill digestions": [0, 65535], "digestions thereof": [0, 65535], "thereof the": [0, 65535], "the raging": [0, 65535], "raging fire": [0, 65535], "of feauer": [0, 65535], "feauer bred": [0, 65535], "bred and": [0, 65535], "what's a": [0, 65535], "a feauer": [0, 65535], "feauer but": [0, 65535], "a fit": [0, 65535], "fit of": [0, 65535], "of madnesse": [0, 65535], "madnesse thou": [0, 65535], "thou sayest": [0, 65535], "sayest his": [0, 65535], "his sports": [0, 65535], "sports were": [0, 65535], "thy bralles": [0, 65535], "bralles sweet": [0, 65535], "sweet recreation": [0, 65535], "recreation barr'd": [0, 65535], "barr'd what": [0, 65535], "what doth": [0, 65535], "doth ensue": [0, 65535], "ensue but": [0, 65535], "but moodie": [0, 65535], "moodie and": [0, 65535], "and dull": [0, 65535], "dull melancholly": [0, 65535], "melancholly kinsman": [0, 65535], "kinsman to": [0, 65535], "to grim": [0, 65535], "grim and": [0, 65535], "and comfortlesse": [0, 65535], "comfortlesse dispaire": [0, 65535], "dispaire and": [0, 65535], "her heeles": [0, 65535], "heeles a": [0, 65535], "a huge": [0, 65535], "huge infectious": [0, 65535], "infectious troope": [0, 65535], "troope of": [0, 65535], "of pale": [0, 65535], "pale distemperatures": [0, 65535], "distemperatures and": [0, 65535], "and foes": [0, 65535], "foes to": [0, 65535], "to life": [0, 65535], "life in": [0, 65535], "in food": [0, 65535], "food in": [0, 65535], "in sport": [0, 65535], "sport and": [0, 65535], "and life": [0, 65535], "life preseruing": [0, 65535], "preseruing rest": [0, 65535], "rest to": [0, 65535], "be disturb'd": [0, 65535], "disturb'd would": [0, 65535], "would mad": [0, 65535], "or man": [0, 65535], "or beast": [0, 65535], "beast the": [0, 65535], "the consequence": [0, 65535], "consequence is": [0, 65535], "is then": [0, 65535], "thy iealous": [0, 65535], "iealous fits": [0, 65535], "fits hath": [0, 65535], "hath scar'd": [0, 65535], "scar'd thy": [0, 65535], "thy husband": [0, 65535], "husband from": [0, 65535], "the vse": [0, 65535], "vse of": [0, 65535], "of wits": [0, 65535], "wits luc": [0, 65535], "luc she": [0, 65535], "she neuer": [0, 65535], "neuer reprehended": [0, 65535], "but mildely": [0, 65535], "mildely when": [0, 65535], "he demean'd": [0, 65535], "demean'd himselfe": [0, 65535], "himselfe rough": [0, 65535], "rough rude": [0, 65535], "rude and": [0, 65535], "and wildly": [0, 65535], "wildly why": [0, 65535], "why beare": [0, 65535], "beare you": [0, 65535], "you these": [0, 65535], "these rebukes": [0, 65535], "rebukes and": [0, 65535], "and answer": [0, 65535], "answer not": [0, 65535], "not adri": [0, 65535], "adri she": [0, 65535], "did betray": [0, 65535], "betray me": [0, 65535], "my owne": [0, 65535], "owne reproofe": [0, 65535], "reproofe good": [0, 65535], "good people": [0, 65535], "people enter": [0, 65535], "enter and": [0, 65535], "and lay": [0, 65535], "lay hold": [0, 65535], "ab no": [0, 65535], "a creature": [0, 65535], "creature enters": [0, 65535], "enters in": [0, 65535], "house ad": [0, 65535], "ad then": [0, 65535], "your seruants": [0, 65535], "seruants bring": [0, 65535], "bring my": [0, 65535], "husband forth": [0, 65535], "forth ab": [0, 65535], "ab neither": [0, 65535], "neither he": [0, 65535], "he tooke": [0, 65535], "tooke this": [0, 65535], "this place": [0, 65535], "place for": [0, 65535], "for sanctuary": [0, 65535], "sanctuary and": [0, 65535], "it shall": [0, 65535], "shall priuiledge": [0, 65535], "priuiledge him": [0, 65535], "hands till": [0, 65535], "till i": [0, 65535], "haue brought": [0, 65535], "brought him": [0, 65535], "his wits": [0, 65535], "wits againe": [0, 65535], "againe or": [0, 65535], "or loose": [0, 65535], "loose my": [0, 65535], "my labour": [0, 65535], "labour in": [0, 65535], "in assaying": [0, 65535], "assaying it": [0, 65535], "it adr": [0, 65535], "attend my": [0, 65535], "husband be": [0, 65535], "be his": [0, 65535], "his nurse": [0, 65535], "nurse diet": [0, 65535], "diet his": [0, 65535], "his sicknesse": [0, 65535], "sicknesse for": [0, 65535], "is my": [0, 65535], "my office": [0, 65535], "no atturney": [0, 65535], "atturney but": [0, 65535], "therefore let": [0, 65535], "me haue": [0, 65535], "haue him": [0, 65535], "not let": [0, 65535], "him stirre": [0, 65535], "stirre till": [0, 65535], "haue vs'd": [0, 65535], "vs'd the": [0, 65535], "the approoued": [0, 65535], "approoued meanes": [0, 65535], "meanes i": [0, 65535], "haue with": [0, 65535], "with wholsome": [0, 65535], "wholsome sirrups": [0, 65535], "sirrups drugges": [0, 65535], "drugges and": [0, 65535], "and holy": [0, 65535], "holy prayers": [0, 65535], "prayers to": [0, 65535], "make of": [0, 65535], "a formall": [0, 65535], "formall man": [0, 65535], "man againe": [0, 65535], "againe it": [0, 65535], "a branch": [0, 65535], "branch and": [0, 65535], "and parcell": [0, 65535], "parcell of": [0, 65535], "mine oath": [0, 65535], "oath a": [0, 65535], "a charitable": [0, 65535], "charitable dutie": [0, 65535], "dutie of": [0, 65535], "my order": [0, 65535], "order therefore": [0, 65535], "therefore depart": [0, 65535], "depart and": [0, 65535], "and leaue": [0, 65535], "leaue him": [0, 65535], "him heere": [0, 65535], "heere with": [0, 65535], "not hence": [0, 65535], "leaue my": [0, 65535], "husband heere": [0, 65535], "and ill": [0, 65535], "ill it": [0, 65535], "doth beseeme": [0, 65535], "beseeme your": [0, 65535], "your holinesse": [0, 65535], "holinesse to": [0, 65535], "to separate": [0, 65535], "separate the": [0, 65535], "the husband": [0, 65535], "husband and": [0, 65535], "the wife": [0, 65535], "wife ab": [0, 65535], "and depart": [0, 65535], "depart thou": [0, 65535], "thou shalt": [0, 65535], "shalt not": [0, 65535], "not haue": [0, 65535], "him luc": [0, 65535], "luc complaine": [0, 65535], "complaine vnto": [0, 65535], "vnto the": [0, 65535], "the duke": [0, 65535], "duke of": [0, 65535], "this indignity": [0, 65535], "indignity adr": [0, 65535], "come go": [0, 65535], "go i": [0, 65535], "will fall": [0, 65535], "fall prostrate": [0, 65535], "prostrate at": [0, 65535], "his feete": [0, 65535], "feete and": [0, 65535], "neuer rise": [0, 65535], "rise vntill": [0, 65535], "vntill my": [0, 65535], "my teares": [0, 65535], "teares and": [0, 65535], "and prayers": [0, 65535], "prayers haue": [0, 65535], "haue won": [0, 65535], "won his": [0, 65535], "his grace": [0, 65535], "grace to": [0, 65535], "person hither": [0, 65535], "take perforce": [0, 65535], "perforce my": [0, 65535], "the abbesse": [0, 65535], "abbesse mar": [0, 65535], "mar by": [0, 65535], "the diall": [0, 65535], "diall points": [0, 65535], "points at": [0, 65535], "at fiue": [0, 65535], "fiue anon": [0, 65535], "anon i'me": [0, 65535], "i'me sure": [0, 65535], "sure the": [0, 65535], "duke himselfe": [0, 65535], "himselfe in": [0, 65535], "person comes": [0, 65535], "comes this": [0, 65535], "way to": [0, 65535], "the melancholly": [0, 65535], "melancholly vale": [0, 65535], "vale the": [0, 65535], "the place": [0, 65535], "of depth": [0, 65535], "depth and": [0, 65535], "and sorrie": [0, 65535], "sorrie execution": [0, 65535], "execution behinde": [0, 65535], "behinde the": [0, 65535], "the ditches": [0, 65535], "ditches of": [0, 65535], "the abbey": [0, 65535], "abbey heere": [0, 65535], "heere gold": [0, 65535], "gold vpon": [0, 65535], "what cause": [0, 65535], "cause mar": [0, 65535], "mar to": [0, 65535], "a reuerent": [0, 65535], "reuerent siracusian": [0, 65535], "siracusian merchant": [0, 65535], "merchant who": [0, 65535], "who put": [0, 65535], "put vnluckily": [0, 65535], "vnluckily into": [0, 65535], "into this": [0, 65535], "this bay": [0, 65535], "bay against": [0, 65535], "the lawes": [0, 65535], "lawes and": [0, 65535], "and statutes": [0, 65535], "statutes of": [0, 65535], "towne beheaded": [0, 65535], "beheaded publikely": [0, 65535], "publikely for": [0, 65535], "his offence": [0, 65535], "offence gold": [0, 65535], "gold see": [0, 65535], "see where": [0, 65535], "where they": [0, 65535], "they come": [0, 65535], "come we": [0, 65535], "we wil": [0, 65535], "wil behold": [0, 65535], "behold his": [0, 65535], "his death": [0, 65535], "death luc": [0, 65535], "luc kneele": [0, 65535], "kneele to": [0, 65535], "duke before": [0, 65535], "before he": [0, 65535], "he passe": [0, 65535], "passe the": [0, 65535], "abbey enter": [0, 65535], "ephesus and": [0, 65535], "merchant of": [0, 65535], "of siracuse": [0, 65535], "siracuse bare": [0, 65535], "bare head": [0, 65535], "the headsman": [0, 65535], "headsman other": [0, 65535], "other officers": [0, 65535], "officers duke": [0, 65535], "duke yet": [0, 65535], "yet once": [0, 65535], "once againe": [0, 65535], "againe proclaime": [0, 65535], "proclaime it": [0, 65535], "it publikely": [0, 65535], "publikely if": [0, 65535], "any friend": [0, 65535], "friend will": [0, 65535], "will pay": [0, 65535], "pay the": [0, 65535], "the summe": [0, 65535], "summe for": [0, 65535], "he shall": [0, 65535], "shall not": [0, 65535], "not die": [0, 65535], "die so": [0, 65535], "much we": [0, 65535], "we tender": [0, 65535], "tender him": [0, 65535], "adr iustice": [0, 65535], "iustice most": [0, 65535], "most sacred": [0, 65535], "sacred duke": [0, 65535], "duke against": [0, 65535], "abbesse duke": [0, 65535], "duke she": [0, 65535], "a vertuous": [0, 65535], "vertuous and": [0, 65535], "a reuerend": [0, 65535], "reuerend lady": [0, 65535], "lady it": [0, 65535], "it cannot": [0, 65535], "cannot be": [0, 65535], "she hath": [0, 65535], "hath done": [0, 65535], "done thee": [0, 65535], "thee wrong": [0, 65535], "wrong adr": [0, 65535], "adr may": [0, 65535], "it please": [0, 65535], "grace antipholus": [0, 65535], "antipholus my": [0, 65535], "my husba": [0, 65535], "husba n": [0, 65535], "n d": [0, 65535], "d who": [0, 65535], "who i": [0, 65535], "i made": [0, 65535], "made lord": [0, 65535], "had at": [0, 65535], "your important": [0, 65535], "important letters": [0, 65535], "letters this": [0, 65535], "this ill": [0, 65535], "ill day": [0, 65535], "a most": [0, 65535], "most outragious": [0, 65535], "outragious fit": [0, 65535], "madnesse tooke": [0, 65535], "tooke him": [0, 65535], "that desp'rately": [0, 65535], "desp'rately he": [0, 65535], "he hurried": [0, 65535], "hurried through": [0, 65535], "the streete": [0, 65535], "streete with": [0, 65535], "him his": [0, 65535], "his bondman": [0, 65535], "bondman all": [0, 65535], "all as": [0, 65535], "as mad": [0, 65535], "he doing": [0, 65535], "doing displeasure": [0, 65535], "displeasure to": [0, 65535], "the citizens": [0, 65535], "citizens by": [0, 65535], "by rushing": [0, 65535], "rushing in": [0, 65535], "their houses": [0, 65535], "houses bearing": [0, 65535], "bearing thence": [0, 65535], "thence rings": [0, 65535], "rings iewels": [0, 65535], "iewels any": [0, 65535], "any thing": [0, 65535], "his rage": [0, 65535], "rage did": [0, 65535], "did like": [0, 65535], "like once": [0, 65535], "once did": [0, 65535], "him bound": [0, 65535], "bound and": [0, 65535], "and sent": [0, 65535], "home whil'st": [0, 65535], "whil'st to": [0, 65535], "take order": [0, 65535], "order for": [0, 65535], "i went": [0, 65535], "went that": [0, 65535], "that heere": [0, 65535], "there his": [0, 65535], "his furie": [0, 65535], "furie had": [0, 65535], "had committed": [0, 65535], "committed anon": [0, 65535], "anon i": [0, 65535], "i wot": [0, 65535], "wot not": [0, 65535], "not by": [0, 65535], "what strong": [0, 65535], "strong escape": [0, 65535], "escape he": [0, 65535], "he broke": [0, 65535], "broke from": [0, 65535], "from those": [0, 65535], "the guard": [0, 65535], "guard of": [0, 65535], "his mad": [0, 65535], "mad attendant": [0, 65535], "attendant and": [0, 65535], "and himselfe": [0, 65535], "himselfe each": [0, 65535], "each one": [0, 65535], "one with": [0, 65535], "with irefull": [0, 65535], "irefull passion": [0, 65535], "passion with": [0, 65535], "with drawne": [0, 65535], "drawne swords": [0, 65535], "swords met": [0, 65535], "met vs": [0, 65535], "vs againe": [0, 65535], "and madly": [0, 65535], "madly bent": [0, 65535], "bent on": [0, 65535], "on vs": [0, 65535], "vs chac'd": [0, 65535], "chac'd vs": [0, 65535], "vs away": [0, 65535], "away till": [0, 65535], "till raising": [0, 65535], "raising of": [0, 65535], "more aide": [0, 65535], "aide we": [0, 65535], "we came": [0, 65535], "came againe": [0, 65535], "againe to": [0, 65535], "to binde": [0, 65535], "binde them": [0, 65535], "them then": [0, 65535], "they fled": [0, 65535], "fled into": [0, 65535], "this abbey": [0, 65535], "abbey whether": [0, 65535], "whether we": [0, 65535], "we pursu'd": [0, 65535], "pursu'd them": [0, 65535], "them and": [0, 65535], "and heere": [0, 65535], "heere the": [0, 65535], "abbesse shuts": [0, 65535], "shuts the": [0, 65535], "the gates": [0, 65535], "gates on": [0, 65535], "not suffer": [0, 65535], "suffer vs": [0, 65535], "out nor": [0, 65535], "nor send": [0, 65535], "send him": [0, 65535], "him forth": [0, 65535], "forth that": [0, 65535], "may beare": [0, 65535], "him hence": [0, 65535], "hence therefore": [0, 65535], "therefore most": [0, 65535], "most gracious": [0, 65535], "gracious duke": [0, 65535], "duke with": [0, 65535], "thy command": [0, 65535], "command let": [0, 65535], "him be": [0, 65535], "be brought": [0, 65535], "brought forth": [0, 65535], "and borne": [0, 65535], "borne hence": [0, 65535], "hence for": [0, 65535], "for helpe": [0, 65535], "helpe duke": [0, 65535], "duke long": [0, 65535], "long since": [0, 65535], "since thy": [0, 65535], "husband seru'd": [0, 65535], "seru'd me": [0, 65535], "my wars": [0, 65535], "wars and": [0, 65535], "thee ingag'd": [0, 65535], "ingag'd a": [0, 65535], "a princes": [0, 65535], "princes word": [0, 65535], "word when": [0, 65535], "didst make": [0, 65535], "him master": [0, 65535], "thy bed": [0, 65535], "bed to": [0, 65535], "do him": [0, 65535], "the grace": [0, 65535], "good i": [0, 65535], "go some": [0, 65535], "you knocke": [0, 65535], "knocke at": [0, 65535], "abbey gate": [0, 65535], "gate and": [0, 65535], "and bid": [0, 65535], "lady abbesse": [0, 65535], "abbesse come": [0, 65535], "will determine": [0, 65535], "determine this": [0, 65535], "this before": [0, 65535], "i stirre": [0, 65535], "stirre enter": [0, 65535], "enter a": [0, 65535], "a messenger": [0, 65535], "messenger oh": [0, 65535], "oh mistris": [0, 65535], "mistris mistris": [0, 65535], "mistris shift": [0, 65535], "shift and": [0, 65535], "and saue": [0, 65535], "saue your": [0, 65535], "selfe my": [0, 65535], "man are": [0, 65535], "are both": [0, 65535], "both broke": [0, 65535], "broke loose": [0, 65535], "loose beaten": [0, 65535], "beaten the": [0, 65535], "the maids": [0, 65535], "maids a": [0, 65535], "a row": [0, 65535], "row and": [0, 65535], "and bound": [0, 65535], "bound the": [0, 65535], "doctor whose": [0, 65535], "whose beard": [0, 65535], "beard they": [0, 65535], "they haue": [0, 65535], "haue sindg'd": [0, 65535], "sindg'd off": [0, 65535], "with brands": [0, 65535], "brands of": [0, 65535], "and euer": [0, 65535], "euer as": [0, 65535], "it blaz'd": [0, 65535], "blaz'd they": [0, 65535], "they threw": [0, 65535], "threw on": [0, 65535], "him great": [0, 65535], "great pailes": [0, 65535], "pailes of": [0, 65535], "of puddled": [0, 65535], "puddled myre": [0, 65535], "myre to": [0, 65535], "to quench": [0, 65535], "quench the": [0, 65535], "the haire": [0, 65535], "haire my": [0, 65535], "my mr": [0, 65535], "mr preaches": [0, 65535], "preaches patience": [0, 65535], "patience to": [0, 65535], "while his": [0, 65535], "man with": [0, 65535], "with cizers": [0, 65535], "cizers nickes": [0, 65535], "nickes him": [0, 65535], "and sure": [0, 65535], "sure vnlesse": [0, 65535], "vnlesse you": [0, 65535], "you send": [0, 65535], "some present": [0, 65535], "present helpe": [0, 65535], "helpe betweene": [0, 65535], "betweene them": [0, 65535], "them they": [0, 65535], "they will": [0, 65535], "will kill": [0, 65535], "kill the": [0, 65535], "the coniurer": [0, 65535], "coniurer adr": [0, 65535], "adr peace": [0, 65535], "peace foole": [0, 65535], "foole thy": [0, 65535], "are here": [0, 65535], "is false": [0, 65535], "false thou": [0, 65535], "thou dost": [0, 65535], "dost report": [0, 65535], "report to": [0, 65535], "to vs": [0, 65535], "vs mess": [0, 65535], "mess mistris": [0, 65535], "mistris vpon": [0, 65535], "life i": [0, 65535], "i tel": [0, 65535], "tel you": [0, 65535], "you true": [0, 65535], "true i": [0, 65535], "not breath'd": [0, 65535], "breath'd almost": [0, 65535], "almost since": [0, 65535], "since i": [0, 65535], "he cries": [0, 65535], "cries for": [0, 65535], "and vowes": [0, 65535], "vowes if": [0, 65535], "can take": [0, 65535], "take you": [0, 65535], "to scorch": [0, 65535], "scorch your": [0, 65535], "to disfigure": [0, 65535], "disfigure you": [0, 65535], "you cry": [0, 65535], "cry within": [0, 65535], "within harke": [0, 65535], "harke harke": [0, 65535], "harke i": [0, 65535], "heare him": [0, 65535], "him mistris": [0, 65535], "mistris flie": [0, 65535], "flie be": [0, 65535], "gone duke": [0, 65535], "duke come": [0, 65535], "come stand": [0, 65535], "me feare": [0, 65535], "feare nothing": [0, 65535], "nothing guard": [0, 65535], "guard with": [0, 65535], "with halberds": [0, 65535], "halberds adr": [0, 65535], "adr ay": [0, 65535], "ay me": [0, 65535], "husband witnesse": [0, 65535], "witnesse you": [0, 65535], "you that": [0, 65535], "is borne": [0, 65535], "borne about": [0, 65535], "about inuisible": [0, 65535], "inuisible euen": [0, 65535], "now we": [0, 65535], "we hous'd": [0, 65535], "hous'd him": [0, 65535], "now he's": [0, 65535], "he's there": [0, 65535], "there past": [0, 65535], "past thought": [0, 65535], "of humane": [0, 65535], "humane reason": [0, 65535], "reason enter": [0, 65535], "and e": [0, 65535], "e dromio": [0, 65535], "dromio of": [0, 65535], "ephesus e": [0, 65535], "ant iustice": [0, 65535], "duke oh": [0, 65535], "oh grant": [0, 65535], "grant me": [0, 65535], "me iustice": [0, 65535], "iustice euen": [0, 65535], "euen for": [0, 65535], "the seruice": [0, 65535], "seruice that": [0, 65535], "that long": [0, 65535], "did thee": [0, 65535], "thee when": [0, 65535], "i bestrid": [0, 65535], "bestrid thee": [0, 65535], "thee in": [0, 65535], "the warres": [0, 65535], "warres and": [0, 65535], "and tooke": [0, 65535], "tooke deepe": [0, 65535], "deepe scarres": [0, 65535], "scarres to": [0, 65535], "saue thy": [0, 65535], "thy life": [0, 65535], "life euen": [0, 65535], "blood that": [0, 65535], "that then": [0, 65535], "then i": [0, 65535], "i lost": [0, 65535], "lost for": [0, 65535], "for thee": [0, 65535], "thee now": [0, 65535], "now grant": [0, 65535], "iustice mar": [0, 65535], "mar fat": [0, 65535], "fat vnlesse": [0, 65535], "vnlesse the": [0, 65535], "the feare": [0, 65535], "feare of": [0, 65535], "of death": [0, 65535], "death doth": [0, 65535], "doth make": [0, 65535], "me dote": [0, 65535], "dote i": [0, 65535], "see my": [0, 65535], "my sonne": [0, 65535], "sonne antipholus": [0, 65535], "iustice sweet": [0, 65535], "sweet prince": [0, 65535], "prince against": [0, 65535], "against that": [0, 65535], "that woman": [0, 65535], "woman there": [0, 65535], "there she": [0, 65535], "she whom": [0, 65535], "whom thou": [0, 65535], "thou gau'st": [0, 65535], "gau'st to": [0, 65535], "wife that": [0, 65535], "hath abused": [0, 65535], "abused and": [0, 65535], "and dishonored": [0, 65535], "dishonored me": [0, 65535], "me euen": [0, 65535], "the strength": [0, 65535], "strength and": [0, 65535], "and height": [0, 65535], "height of": [0, 65535], "of iniurie": [0, 65535], "iniurie beyond": [0, 65535], "beyond imagination": [0, 65535], "imagination is": [0, 65535], "wrong that": [0, 65535], "she this": [0, 65535], "day hath": [0, 65535], "hath shamelesse": [0, 65535], "shamelesse throwne": [0, 65535], "throwne on": [0, 65535], "on me": [0, 65535], "me duke": [0, 65535], "duke discouer": [0, 65535], "discouer how": [0, 65535], "how and": [0, 65535], "shalt finde": [0, 65535], "finde me": [0, 65535], "me iust": [0, 65535], "iust e": [0, 65535], "ant this": [0, 65535], "day great": [0, 65535], "great duke": [0, 65535], "she shut": [0, 65535], "shut the": [0, 65535], "the doores": [0, 65535], "doores vpon": [0, 65535], "vpon me": [0, 65535], "me while": [0, 65535], "she with": [0, 65535], "with harlots": [0, 65535], "harlots feasted": [0, 65535], "feasted in": [0, 65535], "house duke": [0, 65535], "duke a": [0, 65535], "a greeuous": [0, 65535], "greeuous fault": [0, 65535], "fault say": [0, 65535], "say woman": [0, 65535], "woman didst": [0, 65535], "so adr": [0, 65535], "adr no": [0, 65535], "no my": [0, 65535], "good lord": [0, 65535], "lord my": [0, 65535], "selfe he": [0, 65535], "he and": [0, 65535], "day did": [0, 65535], "did dine": [0, 65535], "dine together": [0, 65535], "together so": [0, 65535], "so befall": [0, 65535], "befall my": [0, 65535], "soule as": [0, 65535], "as this": [0, 65535], "false he": [0, 65535], "he burthens": [0, 65535], "burthens me": [0, 65535], "withall luc": [0, 65535], "luc nere": [0, 65535], "nere may": [0, 65535], "may i": [0, 65535], "i looke": [0, 65535], "on day": [0, 65535], "day nor": [0, 65535], "nor sleepe": [0, 65535], "sleepe on": [0, 65535], "she tels": [0, 65535], "tels to": [0, 65535], "your highnesse": [0, 65535], "highnesse simple": [0, 65535], "simple truth": [0, 65535], "truth gold": [0, 65535], "gold o": [0, 65535], "o periur'd": [0, 65535], "periur'd woman": [0, 65535], "woman they": [0, 65535], "they are": [0, 65535], "both forsworne": [0, 65535], "forsworne in": [0, 65535], "the madman": [0, 65535], "madman iustly": [0, 65535], "iustly chargeth": [0, 65535], "chargeth them": [0, 65535], "them e": [0, 65535], "ant my": [0, 65535], "my liege": [0, 65535], "liege i": [0, 65535], "am aduised": [0, 65535], "aduised what": [0, 65535], "say neither": [0, 65535], "neither disturbed": [0, 65535], "disturbed with": [0, 65535], "effect of": [0, 65535], "of wine": [0, 65535], "wine nor": [0, 65535], "nor headie": [0, 65535], "headie rash": [0, 65535], "rash prouoak'd": [0, 65535], "prouoak'd with": [0, 65535], "with raging": [0, 65535], "raging ire": [0, 65535], "ire albeit": [0, 65535], "albeit my": [0, 65535], "my wrongs": [0, 65535], "wrongs might": [0, 65535], "might make": [0, 65535], "make one": [0, 65535], "one wiser": [0, 65535], "wiser mad": [0, 65535], "mad this": [0, 65535], "woman lock'd": [0, 65535], "lock'd me": [0, 65535], "out this": [0, 65535], "day from": [0, 65535], "from dinner": [0, 65535], "dinner that": [0, 65535], "that goldsmith": [0, 65535], "goldsmith there": [0, 65535], "there were": [0, 65535], "were he": [0, 65535], "not pack'd": [0, 65535], "pack'd with": [0, 65535], "her could": [0, 65535], "could witnesse": [0, 65535], "witnesse it": [0, 65535], "then who": [0, 65535], "who parted": [0, 65535], "parted with": [0, 65535], "fetch a": [0, 65535], "chaine promising": [0, 65535], "promising to": [0, 65535], "to bring": [0, 65535], "porpentine where": [0, 65535], "where balthasar": [0, 65535], "balthasar and": [0, 65535], "together our": [0, 65535], "our dinner": [0, 65535], "dinner done": [0, 65535], "done and": [0, 65535], "not comming": [0, 65535], "comming thither": [0, 65535], "thither i": [0, 65535], "seeke him": [0, 65535], "street i": [0, 65535], "i met": [0, 65535], "met him": [0, 65535], "his companie": [0, 65535], "companie that": [0, 65535], "that gentleman": [0, 65535], "gentleman there": [0, 65535], "there did": [0, 65535], "did this": [0, 65535], "this periur'd": [0, 65535], "periur'd goldsmith": [0, 65535], "goldsmith sweare": [0, 65535], "sweare me": [0, 65535], "downe that": [0, 65535], "i this": [0, 65535], "day of": [0, 65535], "him receiu'd": [0, 65535], "receiu'd the": [0, 65535], "which god": [0, 65535], "god he": [0, 65535], "he knowes": [0, 65535], "knowes i": [0, 65535], "saw not": [0, 65535], "the which": [0, 65535], "did arrest": [0, 65535], "arrest me": [0, 65535], "an officer": [0, 65535], "officer i": [0, 65535], "did obey": [0, 65535], "obey and": [0, 65535], "sent my": [0, 65535], "my pesant": [0, 65535], "pesant home": [0, 65535], "for certaine": [0, 65535], "certaine duckets": [0, 65535], "duckets he": [0, 65535], "he with": [0, 65535], "with none": [0, 65535], "none return'd": [0, 65535], "return'd then": [0, 65535], "then fairely": [0, 65535], "fairely i": [0, 65535], "bespoke the": [0, 65535], "the officer": [0, 65535], "officer to": [0, 65535], "person with": [0, 65535], "house by'th'": [0, 65535], "by'th' way": [0, 65535], "way we": [0, 65535], "we met": [0, 65535], "met my": [0, 65535], "wife her": [0, 65535], "sister and": [0, 65535], "a rabble": [0, 65535], "rabble more": [0, 65535], "of vilde": [0, 65535], "vilde confederates": [0, 65535], "confederates along": [0, 65535], "with them": [0, 65535], "they brought": [0, 65535], "brought one": [0, 65535], "one pinch": [0, 65535], "pinch a": [0, 65535], "a hungry": [0, 65535], "hungry leane": [0, 65535], "leane fac'd": [0, 65535], "fac'd villaine": [0, 65535], "villaine a": [0, 65535], "a meere": [0, 65535], "meere anatomie": [0, 65535], "anatomie a": [0, 65535], "a mountebanke": [0, 65535], "mountebanke a": [0, 65535], "a thred": [0, 65535], "thred bare": [0, 65535], "bare iugler": [0, 65535], "iugler and": [0, 65535], "a fortune": [0, 65535], "fortune teller": [0, 65535], "teller a": [0, 65535], "a needy": [0, 65535], "needy hollow": [0, 65535], "hollow ey'd": [0, 65535], "ey'd sharpe": [0, 65535], "sharpe looking": [0, 65535], "looking wretch": [0, 65535], "wretch a": [0, 65535], "a liuing": [0, 65535], "liuing dead": [0, 65535], "dead man": [0, 65535], "man this": [0, 65535], "this pernicious": [0, 65535], "pernicious slaue": [0, 65535], "slaue forsooth": [0, 65535], "forsooth tooke": [0, 65535], "tooke on": [0, 65535], "him as": [0, 65535], "a coniurer": [0, 65535], "coniurer and": [0, 65535], "and gazing": [0, 65535], "gazing in": [0, 65535], "in mine": [0, 65535], "mine eyes": [0, 65535], "eyes feeling": [0, 65535], "feeling my": [0, 65535], "my pulse": [0, 65535], "pulse and": [0, 65535], "no face": [0, 65535], "face as": [0, 65535], "as 'twere": [0, 65535], "'twere out": [0, 65535], "out facing": [0, 65535], "facing me": [0, 65535], "me cries": [0, 65535], "cries out": [0, 65535], "out i": [0, 65535], "was possest": [0, 65535], "possest then": [0, 65535], "then altogether": [0, 65535], "altogether they": [0, 65535], "they fell": [0, 65535], "fell vpon": [0, 65535], "me bound": [0, 65535], "bound me": [0, 65535], "me bore": [0, 65535], "bore me": [0, 65535], "me thence": [0, 65535], "thence and": [0, 65535], "a darke": [0, 65535], "darke and": [0, 65535], "and dankish": [0, 65535], "dankish vault": [0, 65535], "vault at": [0, 65535], "home there": [0, 65535], "there left": [0, 65535], "left me": [0, 65535], "man both": [0, 65535], "both bound": [0, 65535], "bound together": [0, 65535], "together till": [0, 65535], "till gnawing": [0, 65535], "gnawing with": [0, 65535], "with my": [0, 65535], "my teeth": [0, 65535], "teeth my": [0, 65535], "my bonds": [0, 65535], "bonds in": [0, 65535], "in sunder": [0, 65535], "sunder i": [0, 65535], "i gain'd": [0, 65535], "gain'd my": [0, 65535], "my freedome": [0, 65535], "freedome and": [0, 65535], "and immediately": [0, 65535], "immediately ran": [0, 65535], "ran hether": [0, 65535], "hether to": [0, 65535], "grace whom": [0, 65535], "whom i": [0, 65535], "i beseech": [0, 65535], "beseech to": [0, 65535], "me ample": [0, 65535], "ample satisfaction": [0, 65535], "satisfaction for": [0, 65535], "for these": [0, 65535], "these deepe": [0, 65535], "deepe shames": [0, 65535], "shames and": [0, 65535], "great indignities": [0, 65535], "indignities gold": [0, 65535], "gold my": [0, 65535], "my lord": [0, 65535], "lord in": [0, 65535], "in truth": [0, 65535], "truth thus": [0, 65535], "thus far": [0, 65535], "far i": [0, 65535], "i witnes": [0, 65535], "witnes with": [0, 65535], "he din'd": [0, 65535], "din'd not": [0, 65535], "not at": [0, 65535], "but was": [0, 65535], "was lock'd": [0, 65535], "lock'd out": [0, 65535], "out duke": [0, 65535], "duke but": [0, 65535], "had he": [0, 65535], "he such": [0, 65535], "of thee": [0, 65535], "thee or": [0, 65535], "or no": [0, 65535], "gold he": [0, 65535], "had my": [0, 65535], "lord and": [0, 65535], "he ran": [0, 65535], "ran in": [0, 65535], "in heere": [0, 65535], "heere these": [0, 65535], "these people": [0, 65535], "people saw": [0, 65535], "necke mar": [0, 65535], "mar besides": [0, 65535], "besides i": [0, 65535], "be sworne": [0, 65535], "sworne these": [0, 65535], "mine heard": [0, 65535], "heard you": [0, 65535], "you confesse": [0, 65535], "confesse you": [0, 65535], "him after": [0, 65535], "after you": [0, 65535], "you first": [0, 65535], "first forswore": [0, 65535], "and thereupon": [0, 65535], "thereupon i": [0, 65535], "i drew": [0, 65535], "drew my": [0, 65535], "my sword": [0, 65535], "sword on": [0, 65535], "you fled": [0, 65535], "heere from": [0, 65535], "whence i": [0, 65535], "thinke you": [0, 65535], "are come": [0, 65535], "come by": [0, 65535], "by miracle": [0, 65535], "miracle e": [0, 65535], "neuer came": [0, 65535], "came within": [0, 65535], "within these": [0, 65535], "these abbey": [0, 65535], "abbey wals": [0, 65535], "wals nor": [0, 65535], "nor euer": [0, 65535], "euer didst": [0, 65535], "thou draw": [0, 65535], "draw thy": [0, 65535], "thy sword": [0, 65535], "chaine so": [0, 65535], "so helpe": [0, 65535], "helpe me": [0, 65535], "me heauen": [0, 65535], "false you": [0, 65535], "you burthen": [0, 65535], "burthen me": [0, 65535], "withall duke": [0, 65535], "duke why": [0, 65535], "why what": [0, 65535], "what an": [0, 65535], "an intricate": [0, 65535], "intricate impeach": [0, 65535], "impeach is": [0, 65535], "is this": [0, 65535], "all haue": [0, 65535], "haue drunke": [0, 65535], "drunke of": [0, 65535], "of circes": [0, 65535], "circes cup": [0, 65535], "cup if": [0, 65535], "if heere": [0, 65535], "heere you": [0, 65535], "you hous'd": [0, 65535], "heere he": [0, 65535], "haue bin": [0, 65535], "bin if": [0, 65535], "he were": [0, 65535], "were mad": [0, 65535], "mad he": [0, 65535], "not pleade": [0, 65535], "pleade so": [0, 65535], "so coldly": [0, 65535], "coldly you": [0, 65535], "din'd at": [0, 65535], "home the": [0, 65535], "goldsmith heere": [0, 65535], "heere denies": [0, 65535], "denies that": [0, 65535], "that saying": [0, 65535], "saying sirra": [0, 65535], "sirra what": [0, 65535], "what say": [0, 65535], "you e": [0, 65535], "dro sir": [0, 65535], "sir he": [0, 65535], "he din'de": [0, 65535], "din'de with": [0, 65535], "her there": [0, 65535], "there at": [0, 65535], "porpentine cur": [0, 65535], "cur he": [0, 65535], "did and": [0, 65535], "my finger": [0, 65535], "finger snacht": [0, 65535], "snacht that": [0, 65535], "that ring": [0, 65535], "ring e": [0, 65535], "anti tis": [0, 65535], "tis true": [0, 65535], "true my": [0, 65535], "liege this": [0, 65535], "this ring": [0, 65535], "ring i": [0, 65535], "her duke": [0, 65535], "duke saw'st": [0, 65535], "saw'st thou": [0, 65535], "thou him": [0, 65535], "him enter": [0, 65535], "enter at": [0, 65535], "heere curt": [0, 65535], "curt as": [0, 65535], "as sure": [0, 65535], "liege as": [0, 65535], "do see": [0, 65535], "see your": [0, 65535], "grace duke": [0, 65535], "why this": [0, 65535], "is straunge": [0, 65535], "straunge go": [0, 65535], "go call": [0, 65535], "call the": [0, 65535], "abbesse hither": [0, 65535], "hither i": [0, 65535], "are all": [0, 65535], "all mated": [0, 65535], "mated or": [0, 65535], "or starke": [0, 65535], "mad exit": [0, 65535], "exit one": [0, 65535], "abbesse fa": [0, 65535], "fa most": [0, 65535], "most mighty": [0, 65535], "mighty duke": [0, 65535], "duke vouchsafe": [0, 65535], "vouchsafe me": [0, 65535], "me speak": [0, 65535], "word haply": [0, 65535], "haply i": [0, 65535], "a friend": [0, 65535], "will saue": [0, 65535], "saue my": [0, 65535], "life and": [0, 65535], "and pay": [0, 65535], "the sum": [0, 65535], "sum that": [0, 65535], "may deliuer": [0, 65535], "deliuer me": [0, 65535], "duke speake": [0, 65535], "speake freely": [0, 65535], "freely siracusian": [0, 65535], "siracusian what": [0, 65535], "what thou": [0, 65535], "thou wilt": [0, 65535], "wilt fath": [0, 65535], "fath is": [0, 65535], "not your": [0, 65535], "name sir": [0, 65535], "sir call'd": [0, 65535], "call'd antipholus": [0, 65535], "and is": [0, 65535], "that your": [0, 65535], "your bondman": [0, 65535], "bondman dromio": [0, 65535], "dro within": [0, 65535], "within this": [0, 65535], "this houre": [0, 65535], "houre i": [0, 65535], "bondman sir": [0, 65535], "he i": [0, 65535], "him gnaw'd": [0, 65535], "gnaw'd in": [0, 65535], "in two": [0, 65535], "two my": [0, 65535], "my cords": [0, 65535], "cords now": [0, 65535], "now am": [0, 65535], "dromio and": [0, 65535], "man vnbound": [0, 65535], "vnbound fath": [0, 65535], "fath i": [0, 65535], "am sure": [0, 65535], "sure you": [0, 65535], "you both": [0, 65535], "both of": [0, 65535], "you remember": [0, 65535], "remember me": [0, 65535], "me dro": [0, 65535], "dro our": [0, 65535], "selues we": [0, 65535], "we do": [0, 65535], "do remember": [0, 65535], "remember sir": [0, 65535], "by you": [0, 65535], "for lately": [0, 65535], "lately we": [0, 65535], "we were": [0, 65535], "were bound": [0, 65535], "bound as": [0, 65535], "are now": [0, 65535], "are not": [0, 65535], "not pinches": [0, 65535], "pinches patient": [0, 65535], "patient are": [0, 65535], "sir father": [0, 65535], "father why": [0, 65535], "why looke": [0, 65535], "looke you": [0, 65535], "you strange": [0, 65535], "strange on": [0, 65535], "me you": [0, 65535], "well e": [0, 65535], "saw you": [0, 65535], "life till": [0, 65535], "till now": [0, 65535], "now fa": [0, 65535], "fa oh": [0, 65535], "oh griefe": [0, 65535], "griefe hath": [0, 65535], "hath chang'd": [0, 65535], "chang'd me": [0, 65535], "me since": [0, 65535], "you saw": [0, 65535], "saw me": [0, 65535], "me last": [0, 65535], "and carefull": [0, 65535], "carefull houres": [0, 65535], "houres with": [0, 65535], "with times": [0, 65535], "times deformed": [0, 65535], "deformed hand": [0, 65535], "hand haue": [0, 65535], "haue written": [0, 65535], "written strange": [0, 65535], "strange defeatures": [0, 65535], "defeatures in": [0, 65535], "but tell": [0, 65535], "me yet": [0, 65535], "yet dost": [0, 65535], "my voice": [0, 65535], "voice ant": [0, 65535], "ant neither": [0, 65535], "neither fat": [0, 65535], "fat dromio": [0, 65535], "dromio nor": [0, 65535], "nor thou": [0, 65535], "thou dro": [0, 65535], "no trust": [0, 65535], "trust me": [0, 65535], "i fa": [0, 65535], "fa i": [0, 65535], "sure thou": [0, 65535], "dost e": [0, 65535], "dromio i": [0, 65535], "sure i": [0, 65535], "do not": [0, 65535], "not and": [0, 65535], "and whatsoeuer": [0, 65535], "whatsoeuer a": [0, 65535], "man denies": [0, 65535], "denies you": [0, 65535], "now bound": [0, 65535], "to beleeue": [0, 65535], "beleeue him": [0, 65535], "him fath": [0, 65535], "fath not": [0, 65535], "voice oh": [0, 65535], "oh times": [0, 65535], "times extremity": [0, 65535], "extremity hast": [0, 65535], "hast thou": [0, 65535], "so crack'd": [0, 65535], "crack'd and": [0, 65535], "and splitted": [0, 65535], "splitted my": [0, 65535], "poore tongue": [0, 65535], "tongue in": [0, 65535], "in seuen": [0, 65535], "seuen short": [0, 65535], "short yeares": [0, 65535], "yeares that": [0, 65535], "heere my": [0, 65535], "my onely": [0, 65535], "onely sonne": [0, 65535], "sonne knowes": [0, 65535], "knowes not": [0, 65535], "my feeble": [0, 65535], "feeble key": [0, 65535], "key of": [0, 65535], "of vntun'd": [0, 65535], "vntun'd cares": [0, 65535], "cares though": [0, 65535], "though now": [0, 65535], "now this": [0, 65535], "this grained": [0, 65535], "grained face": [0, 65535], "face of": [0, 65535], "mine be": [0, 65535], "be hid": [0, 65535], "hid in": [0, 65535], "in sap": [0, 65535], "sap consuming": [0, 65535], "consuming winters": [0, 65535], "winters drizled": [0, 65535], "drizled snow": [0, 65535], "snow and": [0, 65535], "the conduits": [0, 65535], "conduits of": [0, 65535], "my blood": [0, 65535], "blood froze": [0, 65535], "froze vp": [0, 65535], "vp yet": [0, 65535], "yet hath": [0, 65535], "hath my": [0, 65535], "my night": [0, 65535], "night of": [0, 65535], "of life": [0, 65535], "life some": [0, 65535], "some memorie": [0, 65535], "memorie my": [0, 65535], "my wasting": [0, 65535], "wasting lampes": [0, 65535], "lampes some": [0, 65535], "some fading": [0, 65535], "fading glimmer": [0, 65535], "glimmer left": [0, 65535], "left my": [0, 65535], "my dull": [0, 65535], "dull deafe": [0, 65535], "deafe eares": [0, 65535], "eares a": [0, 65535], "little vse": [0, 65535], "to heare": [0, 65535], "these old": [0, 65535], "old witnesses": [0, 65535], "witnesses i": [0, 65535], "cannot erre": [0, 65535], "erre tell": [0, 65535], "me thou": [0, 65535], "antipholus ant": [0, 65535], "saw my": [0, 65535], "my father": [0, 65535], "father in": [0, 65535], "life fa": [0, 65535], "fa but": [0, 65535], "but seuen": [0, 65535], "seuen yeares": [0, 65535], "yeares since": [0, 65535], "since in": [0, 65535], "in siracusa": [0, 65535], "siracusa boy": [0, 65535], "boy thou": [0, 65535], "thou know'st": [0, 65535], "know'st we": [0, 65535], "we parted": [0, 65535], "parted but": [0, 65535], "but perhaps": [0, 65535], "perhaps my": [0, 65535], "sonne thou": [0, 65535], "thou sham'st": [0, 65535], "sham'st to": [0, 65535], "to acknowledge": [0, 65535], "acknowledge me": [0, 65535], "in miserie": [0, 65535], "miserie ant": [0, 65535], "duke and": [0, 65535], "that know": [0, 65535], "the city": [0, 65535], "city can": [0, 65535], "witnesse with": [0, 65535], "not so": [0, 65535], "i ne're": [0, 65535], "ne're saw": [0, 65535], "saw siracusa": [0, 65535], "siracusa in": [0, 65535], "life duke": [0, 65535], "duke i": [0, 65535], "tell thee": [0, 65535], "thee siracusian": [0, 65535], "siracusian twentie": [0, 65535], "twentie yeares": [0, 65535], "yeares haue": [0, 65535], "haue i": [0, 65535], "i bin": [0, 65535], "bin patron": [0, 65535], "patron to": [0, 65535], "to antipholus": [0, 65535], "antipholus during": [0, 65535], "during which": [0, 65535], "which time": [0, 65535], "he ne're": [0, 65535], "siracusa i": [0, 65535], "see thy": [0, 65535], "thy age": [0, 65535], "age and": [0, 65535], "and dangers": [0, 65535], "dangers make": [0, 65535], "make thee": [0, 65535], "thee dote": [0, 65535], "dote enter": [0, 65535], "abbesse with": [0, 65535], "antipholus siracusa": [0, 65535], "siracusa and": [0, 65535], "dromio sir": [0, 65535], "sir abbesse": [0, 65535], "abbesse most": [0, 65535], "most mightie": [0, 65535], "mightie duke": [0, 65535], "duke behold": [0, 65535], "behold a": [0, 65535], "man much": [0, 65535], "much wrong'd": [0, 65535], "wrong'd all": [0, 65535], "all gather": [0, 65535], "gather to": [0, 65535], "see them": [0, 65535], "them adr": [0, 65535], "see two": [0, 65535], "two husbands": [0, 65535], "husbands or": [0, 65535], "or mine": [0, 65535], "eyes deceiue": [0, 65535], "deceiue me": [0, 65535], "duke one": [0, 65535], "these men": [0, 65535], "men is": [0, 65535], "is genius": [0, 65535], "genius to": [0, 65535], "other and": [0, 65535], "so of": [0, 65535], "these which": [0, 65535], "the naturall": [0, 65535], "naturall man": [0, 65535], "and which": [0, 65535], "the spirit": [0, 65535], "spirit who": [0, 65535], "who deciphers": [0, 65535], "deciphers them": [0, 65535], "s dromio": [0, 65535], "am dromio": [0, 65535], "dromio command": [0, 65535], "command him": [0, 65535], "away e": [0, 65535], "dromio pray": [0, 65535], "pray let": [0, 65535], "stay s": [0, 65535], "s ant": [0, 65535], "ant egeon": [0, 65535], "egeon art": [0, 65535], "not or": [0, 65535], "his ghost": [0, 65535], "ghost s": [0, 65535], "s drom": [0, 65535], "drom oh": [0, 65535], "oh my": [0, 65535], "my olde": [0, 65535], "olde master": [0, 65535], "master who": [0, 65535], "who hath": [0, 65535], "hath bound": [0, 65535], "bound him": [0, 65535], "heere abb": [0, 65535], "abb who": [0, 65535], "who euer": [0, 65535], "euer bound": [0, 65535], "will lose": [0, 65535], "his bonds": [0, 65535], "bonds and": [0, 65535], "and gaine": [0, 65535], "gaine a": [0, 65535], "a husband": [0, 65535], "husband by": [0, 65535], "libertie speake": [0, 65535], "speake olde": [0, 65535], "olde egeon": [0, 65535], "egeon if": [0, 65535], "thou bee'st": [0, 65535], "bee'st the": [0, 65535], "that hadst": [0, 65535], "hadst a": [0, 65535], "once call'd": [0, 65535], "call'd \u00e6milia": [0, 65535], "\u00e6milia that": [0, 65535], "that bore": [0, 65535], "bore thee": [0, 65535], "thee at": [0, 65535], "a burthen": [0, 65535], "burthen two": [0, 65535], "two faire": [0, 65535], "faire sonnes": [0, 65535], "sonnes oh": [0, 65535], "oh if": [0, 65535], "same egeon": [0, 65535], "egeon speake": [0, 65535], "speake and": [0, 65535], "speake vnto": [0, 65535], "same \u00e6milia": [0, 65535], "\u00e6milia duke": [0, 65535], "why heere": [0, 65535], "heere begins": [0, 65535], "begins his": [0, 65535], "his morning": [0, 65535], "morning storie": [0, 65535], "storie right": [0, 65535], "right these": [0, 65535], "these twoantipholus": [0, 65535], "twoantipholus these": [0, 65535], "two so": [0, 65535], "like and": [0, 65535], "and these": [0, 65535], "two dromio's": [0, 65535], "dromio's one": [0, 65535], "one in": [0, 65535], "in semblance": [0, 65535], "semblance besides": [0, 65535], "besides her": [0, 65535], "her vrging": [0, 65535], "vrging of": [0, 65535], "her wracke": [0, 65535], "wracke at": [0, 65535], "at sea": [0, 65535], "sea these": [0, 65535], "these are": [0, 65535], "the parents": [0, 65535], "parents to": [0, 65535], "to these": [0, 65535], "children which": [0, 65535], "which accidentally": [0, 65535], "accidentally are": [0, 65535], "are met": [0, 65535], "met together": [0, 65535], "together fa": [0, 65535], "fa if": [0, 65535], "i dreame": [0, 65535], "dreame not": [0, 65535], "not thou": [0, 65535], "art \u00e6milia": [0, 65535], "\u00e6milia if": [0, 65535], "art she": [0, 65535], "she tell": [0, 65535], "me where": [0, 65535], "that sonne": [0, 65535], "sonne that": [0, 65535], "that floated": [0, 65535], "floated with": [0, 65535], "thee on": [0, 65535], "the fatall": [0, 65535], "fatall rafte": [0, 65535], "rafte abb": [0, 65535], "abb by": [0, 65535], "by men": [0, 65535], "men of": [0, 65535], "of epidamium": [0, 65535], "epidamium he": [0, 65535], "the twin": [0, 65535], "twin dromio": [0, 65535], "dromio all": [0, 65535], "all were": [0, 65535], "were taken": [0, 65535], "taken vp": [0, 65535], "vp but": [0, 65535], "by rude": [0, 65535], "rude fishermen": [0, 65535], "fishermen of": [0, 65535], "of corinth": [0, 65535], "corinth by": [0, 65535], "by force": [0, 65535], "force tooke": [0, 65535], "tooke dromio": [0, 65535], "sonne from": [0, 65535], "from them": [0, 65535], "and me": [0, 65535], "me they": [0, 65535], "they left": [0, 65535], "left with": [0, 65535], "with those": [0, 65535], "those of": [0, 65535], "epidamium what": [0, 65535], "what then": [0, 65535], "then became": [0, 65535], "became of": [0, 65535], "them i": [0, 65535], "this fortune": [0, 65535], "fortune that": [0, 65535], "see mee": [0, 65535], "mee in": [0, 65535], "in duke": [0, 65535], "duke antipholus": [0, 65535], "antipholus thou": [0, 65535], "thou cam'st": [0, 65535], "cam'st from": [0, 65535], "from corinth": [0, 65535], "corinth first": [0, 65535], "first s": [0, 65535], "sir not": [0, 65535], "not i": [0, 65535], "i came": [0, 65535], "from siracuse": [0, 65535], "siracuse duke": [0, 65535], "duke stay": [0, 65535], "stay stand": [0, 65535], "stand apart": [0, 65535], "apart i": [0, 65535], "not which": [0, 65535], "is which": [0, 65535], "which e": [0, 65535], "corinth my": [0, 65535], "my most": [0, 65535], "gracious lord": [0, 65535], "lord e": [0, 65535], "i with": [0, 65535], "him e": [0, 65535], "ant brought": [0, 65535], "brought to": [0, 65535], "town by": [0, 65535], "that most": [0, 65535], "most famous": [0, 65535], "famous warriour": [0, 65535], "warriour duke": [0, 65535], "duke menaphon": [0, 65535], "menaphon your": [0, 65535], "your most": [0, 65535], "most renowned": [0, 65535], "renowned vnckle": [0, 65535], "vnckle adr": [0, 65535], "adr which": [0, 65535], "you two": [0, 65535], "two did": [0, 65535], "dine with": [0, 65535], "i gentle": [0, 65535], "gentle mistris": [0, 65535], "mistris adr": [0, 65535], "and are": [0, 65535], "not you": [0, 65535], "husband e": [0, 65535], "say nay": [0, 65535], "nay to": [0, 65535], "ant and": [0, 65535], "so do": [0, 65535], "i yet": [0, 65535], "yet did": [0, 65535], "did she": [0, 65535], "she call": [0, 65535], "this faire": [0, 65535], "faire gentlewoman": [0, 65535], "gentlewoman her": [0, 65535], "sister heere": [0, 65535], "heere did": [0, 65535], "did call": [0, 65535], "me brother": [0, 65535], "brother what": [0, 65535], "i told": [0, 65535], "you then": [0, 65535], "hope i": [0, 65535], "haue leisure": [0, 65535], "leisure to": [0, 65535], "make good": [0, 65535], "good if": [0, 65535], "a dreame": [0, 65535], "dreame i": [0, 65535], "and heare": [0, 65535], "heare goldsmith": [0, 65535], "goldsmith that": [0, 65535], "chaine sir": [0, 65535], "sir which": [0, 65535], "which you": [0, 65535], "of mee": [0, 65535], "mee s": [0, 65535], "thinke it": [0, 65535], "i denie": [0, 65535], "not e": [0, 65535], "chaine arrested": [0, 65535], "arrested me": [0, 65535], "me gold": [0, 65535], "i deny": [0, 65535], "not adr": [0, 65535], "sent you": [0, 65535], "you monie": [0, 65535], "monie sir": [0, 65535], "be your": [0, 65535], "your baile": [0, 65535], "baile by": [0, 65535], "dromio but": [0, 65535], "brought it": [0, 65535], "no none": [0, 65535], "none by": [0, 65535], "this purse": [0, 65535], "purse of": [0, 65535], "of duckets": [0, 65535], "duckets i": [0, 65535], "i receiu'd": [0, 65535], "receiu'd from": [0, 65535], "from you": [0, 65535], "dromio my": [0, 65535], "man did": [0, 65535], "did bring": [0, 65535], "bring them": [0, 65535], "them me": [0, 65535], "see we": [0, 65535], "we still": [0, 65535], "did meete": [0, 65535], "meete each": [0, 65535], "each others": [0, 65535], "others man": [0, 65535], "was tane": [0, 65535], "tane for": [0, 65535], "he for": [0, 65535], "thereupon these": [0, 65535], "these errors": [0, 65535], "errors are": [0, 65535], "are arose": [0, 65535], "arose e": [0, 65535], "ant these": [0, 65535], "these duckets": [0, 65535], "duckets pawne": [0, 65535], "pawne i": [0, 65535], "i for": [0, 65535], "father heere": [0, 65535], "heere duke": [0, 65535], "duke it": [0, 65535], "not neede": [0, 65535], "neede thy": [0, 65535], "thy father": [0, 65535], "father hath": [0, 65535], "life cur": [0, 65535], "cur sir": [0, 65535], "must haue": [0, 65535], "haue that": [0, 65535], "that diamond": [0, 65535], "diamond from": [0, 65535], "ant there": [0, 65535], "much thanks": [0, 65535], "thanks for": [0, 65535], "good cheere": [0, 65535], "cheere abb": [0, 65535], "abb renowned": [0, 65535], "renowned duke": [0, 65535], "vouchsafe to": [0, 65535], "take the": [0, 65535], "the paines": [0, 65535], "paines to": [0, 65535], "with vs": [0, 65535], "vs into": [0, 65535], "heare at": [0, 65535], "at large": [0, 65535], "large discoursed": [0, 65535], "discoursed all": [0, 65535], "all our": [0, 65535], "our fortunes": [0, 65535], "fortunes and": [0, 65535], "that are": [0, 65535], "are assembled": [0, 65535], "that by": [0, 65535], "this simpathized": [0, 65535], "simpathized one": [0, 65535], "one daies": [0, 65535], "daies error": [0, 65535], "error haue": [0, 65535], "haue suffer'd": [0, 65535], "suffer'd wrong": [0, 65535], "wrong goe": [0, 65535], "goe keepe": [0, 65535], "keepe vs": [0, 65535], "vs companie": [0, 65535], "companie and": [0, 65535], "we shall": [0, 65535], "shall make": [0, 65535], "make full": [0, 65535], "full satisfaction": [0, 65535], "satisfaction thirtie": [0, 65535], "thirtie three": [0, 65535], "three yeares": [0, 65535], "but gone": [0, 65535], "gone in": [0, 65535], "in trauaile": [0, 65535], "trauaile of": [0, 65535], "my sonnes": [0, 65535], "sonnes and": [0, 65535], "and till": [0, 65535], "this present": [0, 65535], "present houre": [0, 65535], "houre my": [0, 65535], "my heauie": [0, 65535], "heauie burthen": [0, 65535], "burthen are": [0, 65535], "are deliuered": [0, 65535], "deliuered the": [0, 65535], "duke my": [0, 65535], "my children": [0, 65535], "children both": [0, 65535], "both and": [0, 65535], "the kalenders": [0, 65535], "kalenders of": [0, 65535], "their natiuity": [0, 65535], "natiuity go": [0, 65535], "a gossips": [0, 65535], "gossips feast": [0, 65535], "feast and": [0, 65535], "mee after": [0, 65535], "after so": [0, 65535], "so long": [0, 65535], "long greefe": [0, 65535], "greefe such": [0, 65535], "such natiuitie": [0, 65535], "natiuitie duke": [0, 65535], "heart ile": [0, 65535], "ile gossip": [0, 65535], "gossip at": [0, 65535], "this feast": [0, 65535], "feast exeunt": [0, 65535], "exeunt omnes": [0, 65535], "omnes manet": [0, 65535], "manet the": [0, 65535], "the two": [0, 65535], "dromio's and": [0, 65535], "and two": [0, 65535], "two brothers": [0, 65535], "brothers s": [0, 65535], "dro mast": [0, 65535], "mast shall": [0, 65535], "i fetch": [0, 65535], "fetch your": [0, 65535], "your stuffe": [0, 65535], "stuffe from": [0, 65535], "from shipbord": [0, 65535], "shipbord e": [0, 65535], "an dromio": [0, 65535], "dromio what": [0, 65535], "what stuffe": [0, 65535], "stuffe of": [0, 65535], "mine hast": [0, 65535], "thou imbarkt": [0, 65535], "imbarkt s": [0, 65535], "dro your": [0, 65535], "your goods": [0, 65535], "goods that": [0, 65535], "lay at": [0, 65535], "at host": [0, 65535], "host sir": [0, 65535], "centaur s": [0, 65535], "ant he": [0, 65535], "he speakes": [0, 65535], "speakes to": [0, 65535], "am your": [0, 65535], "master dromio": [0, 65535], "dromio come": [0, 65535], "vs wee'l": [0, 65535], "wee'l looke": [0, 65535], "looke to": [0, 65535], "that anon": [0, 65535], "anon embrace": [0, 65535], "embrace thy": [0, 65535], "thy brother": [0, 65535], "brother there": [0, 65535], "there reioyce": [0, 65535], "reioyce with": [0, 65535], "him exit": [0, 65535], "exit s": [0, 65535], "dro there": [0, 65535], "fat friend": [0, 65535], "friend at": [0, 65535], "your masters": [0, 65535], "masters house": [0, 65535], "that kitchin'd": [0, 65535], "kitchin'd me": [0, 65535], "day at": [0, 65535], "dinner she": [0, 65535], "she now": [0, 65535], "now shall": [0, 65535], "shall be": [0, 65535], "sister not": [0, 65535], "e d": [0, 65535], "d me": [0, 65535], "me thinks": [0, 65535], "thinks you": [0, 65535], "my glasse": [0, 65535], "glasse not": [0, 65535], "my brother": [0, 65535], "brother i": [0, 65535], "see by": [0, 65535], "a sweet": [0, 65535], "sweet fac'd": [0, 65535], "fac'd youth": [0, 65535], "youth will": [0, 65535], "you walke": [0, 65535], "walke in": [0, 65535], "in to": [0, 65535], "see their": [0, 65535], "their gossipping": [0, 65535], "gossipping s": [0, 65535], "my elder": [0, 65535], "elder e": [0, 65535], "dro that's": [0, 65535], "a question": [0, 65535], "question how": [0, 65535], "how shall": [0, 65535], "shall we": [0, 65535], "we trie": [0, 65535], "trie it": [0, 65535], "dro wee'l": [0, 65535], "wee'l draw": [0, 65535], "draw cuts": [0, 65535], "cuts for": [0, 65535], "the signior": [0, 65535], "signior till": [0, 65535], "till then": [0, 65535], "then lead": [0, 65535], "lead thou": [0, 65535], "thou first": [0, 65535], "first e": [0, 65535], "nay then": [0, 65535], "then thus": [0, 65535], "thus we": [0, 65535], "world like": [0, 65535], "like brother": [0, 65535], "brother and": [0, 65535], "and brother": [0, 65535], "let's go": [0, 65535], "go hand": [0, 65535], "hand not": [0, 65535], "one before": [0, 65535], "before another": [0, 65535], "another exeunt": [0, 65535], "exeunt finis": [0, 65535], "actus quintus sc\u0153na": [0, 65535], "quintus sc\u0153na prima": [0, 65535], "sc\u0153na prima enter": [0, 65535], "prima enter the": [0, 65535], "enter the merchant": [0, 65535], "the merchant and": [0, 65535], "merchant and the": [0, 65535], "and the goldsmith": [0, 65535], "the goldsmith gold": [0, 65535], "goldsmith gold i": [0, 65535], "gold i am": [0, 65535], "i am sorry": [0, 65535], "am sorry sir": [0, 65535], "sorry sir that": [0, 65535], "sir that i": [0, 65535], "i haue hindred": [0, 65535], "haue hindred you": [0, 65535], "hindred you but": [0, 65535], "you but i": [0, 65535], "i protest he": [0, 65535], "protest he had": [0, 65535], "he had the": [0, 65535], "had the chaine": [0, 65535], "the chaine of": [0, 65535], "chaine of me": [0, 65535], "of me though": [0, 65535], "me though most": [0, 65535], "though most dishonestly": [0, 65535], "most dishonestly he": [0, 65535], "dishonestly he doth": [0, 65535], "he doth denie": [0, 65535], "doth denie it": [0, 65535], "denie it mar": [0, 65535], "it mar how": [0, 65535], "mar how is": [0, 65535], "how is the": [0, 65535], "is the man": [0, 65535], "the man esteem'd": [0, 65535], "man esteem'd heere": [0, 65535], "esteem'd heere in": [0, 65535], "heere in the": [0, 65535], "in the citie": [0, 65535], "the citie gold": [0, 65535], "citie gold of": [0, 65535], "gold of very": [0, 65535], "of very reuerent": [0, 65535], "very reuerent reputation": [0, 65535], "reuerent reputation sir": [0, 65535], "reputation sir of": [0, 65535], "sir of credit": [0, 65535], "of credit infinite": [0, 65535], "credit infinite highly": [0, 65535], "infinite highly belou'd": [0, 65535], "highly belou'd second": [0, 65535], "belou'd second to": [0, 65535], "second to none": [0, 65535], "to none that": [0, 65535], "none that liues": [0, 65535], "that liues heere": [0, 65535], "liues heere in": [0, 65535], "the citie his": [0, 65535], "citie his word": [0, 65535], "his word might": [0, 65535], "word might beare": [0, 65535], "might beare my": [0, 65535], "beare my wealth": [0, 65535], "my wealth at": [0, 65535], "wealth at any": [0, 65535], "at any time": [0, 65535], "any time mar": [0, 65535], "time mar speake": [0, 65535], "mar speake softly": [0, 65535], "speake softly yonder": [0, 65535], "softly yonder as": [0, 65535], "yonder as i": [0, 65535], "as i thinke": [0, 65535], "i thinke he": [0, 65535], "thinke he walkes": [0, 65535], "he walkes enter": [0, 65535], "walkes enter antipholus": [0, 65535], "enter antipholus and": [0, 65535], "antipholus and dromio": [0, 65535], "and dromio againe": [0, 65535], "dromio againe gold": [0, 65535], "againe gold 'tis": [0, 65535], "gold 'tis so": [0, 65535], "'tis so and": [0, 65535], "so and that": [0, 65535], "and that selfe": [0, 65535], "that selfe chaine": [0, 65535], "selfe chaine about": [0, 65535], "chaine about his": [0, 65535], "about his necke": [0, 65535], "his necke which": [0, 65535], "necke which he": [0, 65535], "which he forswore": [0, 65535], "he forswore most": [0, 65535], "forswore most monstrously": [0, 65535], "most monstrously to": [0, 65535], "monstrously to haue": [0, 65535], "to haue good": [0, 65535], "haue good sir": [0, 65535], "good sir draw": [0, 65535], "sir draw neere": [0, 65535], "draw neere to": [0, 65535], "neere to me": [0, 65535], "to me ile": [0, 65535], "me ile speake": [0, 65535], "ile speake to": [0, 65535], "speake to him": [0, 65535], "to him signior": [0, 65535], "him signior antipholus": [0, 65535], "signior antipholus i": [0, 65535], "antipholus i wonder": [0, 65535], "i wonder much": [0, 65535], "wonder much that": [0, 65535], "much that you": [0, 65535], "that you would": [0, 65535], "you would put": [0, 65535], "would put me": [0, 65535], "put me to": [0, 65535], "me to this": [0, 65535], "to this shame": [0, 65535], "this shame and": [0, 65535], "shame and trouble": [0, 65535], "and trouble and": [0, 65535], "trouble and not": [0, 65535], "and not without": [0, 65535], "not without some": [0, 65535], "without some scandall": [0, 65535], "some scandall to": [0, 65535], "scandall to your": [0, 65535], "to your selfe": [0, 65535], "your selfe with": [0, 65535], "selfe with circumstance": [0, 65535], "with circumstance and": [0, 65535], "circumstance and oaths": [0, 65535], "and oaths so": [0, 65535], "oaths so to": [0, 65535], "so to denie": [0, 65535], "to denie this": [0, 65535], "denie this chaine": [0, 65535], "this chaine which": [0, 65535], "chaine which now": [0, 65535], "which now you": [0, 65535], "now you weare": [0, 65535], "you weare so": [0, 65535], "weare so openly": [0, 65535], "so openly beside": [0, 65535], "openly beside the": [0, 65535], "beside the charge": [0, 65535], "the charge the": [0, 65535], "charge the shame": [0, 65535], "the shame imprisonment": [0, 65535], "shame imprisonment you": [0, 65535], "imprisonment you haue": [0, 65535], "you haue done": [0, 65535], "haue done wrong": [0, 65535], "done wrong to": [0, 65535], "wrong to this": [0, 65535], "to this my": [0, 65535], "this my honest": [0, 65535], "my honest friend": [0, 65535], "honest friend who": [0, 65535], "friend who but": [0, 65535], "who but for": [0, 65535], "but for staying": [0, 65535], "for staying on": [0, 65535], "staying on our": [0, 65535], "on our controuersie": [0, 65535], "our controuersie had": [0, 65535], "controuersie had hoisted": [0, 65535], "had hoisted saile": [0, 65535], "hoisted saile and": [0, 65535], "saile and put": [0, 65535], "and put to": [0, 65535], "put to sea": [0, 65535], "to sea to": [0, 65535], "sea to day": [0, 65535], "to day this": [0, 65535], "day this chaine": [0, 65535], "this chaine you": [0, 65535], "chaine you had": [0, 65535], "you had of": [0, 65535], "had of me": [0, 65535], "of me can": [0, 65535], "me can you": [0, 65535], "can you deny": [0, 65535], "you deny it": [0, 65535], "deny it ant": [0, 65535], "it ant i": [0, 65535], "i thinke i": [0, 65535], "thinke i had": [0, 65535], "i had i": [0, 65535], "had i neuer": [0, 65535], "i neuer did": [0, 65535], "neuer did deny": [0, 65535], "did deny it": [0, 65535], "deny it mar": [0, 65535], "it mar yes": [0, 65535], "mar yes that": [0, 65535], "yes that you": [0, 65535], "that you did": [0, 65535], "you did sir": [0, 65535], "did sir and": [0, 65535], "sir and forswore": [0, 65535], "and forswore it": [0, 65535], "forswore it too": [0, 65535], "it too ant": [0, 65535], "too ant who": [0, 65535], "ant who heard": [0, 65535], "who heard me": [0, 65535], "heard me to": [0, 65535], "me to denie": [0, 65535], "to denie it": [0, 65535], "denie it or": [0, 65535], "it or forsweare": [0, 65535], "or forsweare it": [0, 65535], "forsweare it mar": [0, 65535], "it mar these": [0, 65535], "mar these eares": [0, 65535], "these eares of": [0, 65535], "eares of mine": [0, 65535], "of mine thou": [0, 65535], "mine thou knowst": [0, 65535], "thou knowst did": [0, 65535], "knowst did hear": [0, 65535], "did hear thee": [0, 65535], "hear thee fie": [0, 65535], "thee fie on": [0, 65535], "fie on thee": [0, 65535], "on thee wretch": [0, 65535], "thee wretch 'tis": [0, 65535], "wretch 'tis pitty": [0, 65535], "'tis pitty that": [0, 65535], "pitty that thou": [0, 65535], "that thou liu'st": [0, 65535], "thou liu'st to": [0, 65535], "liu'st to walke": [0, 65535], "to walke where": [0, 65535], "walke where any": [0, 65535], "where any honest": [0, 65535], "any honest men": [0, 65535], "honest men resort": [0, 65535], "men resort ant": [0, 65535], "resort ant thou": [0, 65535], "thou art a": [0, 65535], "art a villaine": [0, 65535], "a villaine to": [0, 65535], "villaine to impeach": [0, 65535], "to impeach me": [0, 65535], "impeach me thus": [0, 65535], "me thus ile": [0, 65535], "thus ile proue": [0, 65535], "ile proue mine": [0, 65535], "proue mine honor": [0, 65535], "mine honor and": [0, 65535], "honor and mine": [0, 65535], "and mine honestie": [0, 65535], "mine honestie against": [0, 65535], "honestie against thee": [0, 65535], "against thee presently": [0, 65535], "thee presently if": [0, 65535], "presently if thou": [0, 65535], "if thou dar'st": [0, 65535], "thou dar'st stand": [0, 65535], "dar'st stand mar": [0, 65535], "stand mar i": [0, 65535], "mar i dare": [0, 65535], "i dare and": [0, 65535], "dare and do": [0, 65535], "and do defie": [0, 65535], "do defie thee": [0, 65535], "defie thee for": [0, 65535], "thee for a": [0, 65535], "for a villaine": [0, 65535], "a villaine they": [0, 65535], "villaine they draw": [0, 65535], "they draw enter": [0, 65535], "draw enter adriana": [0, 65535], "enter adriana luciana": [0, 65535], "adriana luciana courtezan": [0, 65535], "luciana courtezan others": [0, 65535], "courtezan others adr": [0, 65535], "others adr hold": [0, 65535], "adr hold hurt": [0, 65535], "hold hurt him": [0, 65535], "hurt him not": [0, 65535], "him not for": [0, 65535], "not for god": [0, 65535], "for god sake": [0, 65535], "god sake he": [0, 65535], "sake he is": [0, 65535], "he is mad": [0, 65535], "is mad some": [0, 65535], "mad some get": [0, 65535], "some get within": [0, 65535], "get within him": [0, 65535], "within him take": [0, 65535], "him take his": [0, 65535], "take his sword": [0, 65535], "his sword away": [0, 65535], "sword away binde": [0, 65535], "away binde dromio": [0, 65535], "binde dromio too": [0, 65535], "dromio too and": [0, 65535], "too and beare": [0, 65535], "and beare them": [0, 65535], "beare them to": [0, 65535], "them to my": [0, 65535], "to my house": [0, 65535], "my house s": [0, 65535], "house s dro": [0, 65535], "s dro runne": [0, 65535], "dro runne master": [0, 65535], "runne master run": [0, 65535], "master run for": [0, 65535], "run for gods": [0, 65535], "gods sake take": [0, 65535], "sake take a": [0, 65535], "take a house": [0, 65535], "a house this": [0, 65535], "house this is": [0, 65535], "this is some": [0, 65535], "is some priorie": [0, 65535], "some priorie in": [0, 65535], "priorie in or": [0, 65535], "in or we": [0, 65535], "or we are": [0, 65535], "we are spoyl'd": [0, 65535], "are spoyl'd exeunt": [0, 65535], "spoyl'd exeunt to": [0, 65535], "exeunt to the": [0, 65535], "to the priorie": [0, 65535], "the priorie enter": [0, 65535], "priorie enter ladie": [0, 65535], "enter ladie abbesse": [0, 65535], "ladie abbesse ab": [0, 65535], "abbesse ab be": [0, 65535], "ab be quiet": [0, 65535], "be quiet people": [0, 65535], "quiet people wherefore": [0, 65535], "people wherefore throng": [0, 65535], "wherefore throng you": [0, 65535], "throng you hither": [0, 65535], "you hither adr": [0, 65535], "hither adr to": [0, 65535], "adr to fetch": [0, 65535], "to fetch my": [0, 65535], "fetch my poore": [0, 65535], "my poore distracted": [0, 65535], "poore distracted husband": [0, 65535], "distracted husband hence": [0, 65535], "husband hence let": [0, 65535], "hence let vs": [0, 65535], "let vs come": [0, 65535], "vs come in": [0, 65535], "come in that": [0, 65535], "in that we": [0, 65535], "that we may": [0, 65535], "we may binde": [0, 65535], "may binde him": [0, 65535], "binde him fast": [0, 65535], "him fast and": [0, 65535], "fast and beare": [0, 65535], "and beare him": [0, 65535], "beare him home": [0, 65535], "him home for": [0, 65535], "home for his": [0, 65535], "for his recouerie": [0, 65535], "his recouerie gold": [0, 65535], "recouerie gold i": [0, 65535], "gold i knew": [0, 65535], "i knew he": [0, 65535], "knew he was": [0, 65535], "was not in": [0, 65535], "not in his": [0, 65535], "in his perfect": [0, 65535], "his perfect wits": [0, 65535], "perfect wits mar": [0, 65535], "wits mar i": [0, 65535], "mar i am": [0, 65535], "am sorry now": [0, 65535], "sorry now that": [0, 65535], "now that i": [0, 65535], "i did draw": [0, 65535], "did draw on": [0, 65535], "draw on him": [0, 65535], "on him ab": [0, 65535], "him ab how": [0, 65535], "ab how long": [0, 65535], "how long hath": [0, 65535], "long hath this": [0, 65535], "hath this possession": [0, 65535], "this possession held": [0, 65535], "possession held the": [0, 65535], "held the man": [0, 65535], "the man adr": [0, 65535], "man adr this": [0, 65535], "adr this weeke": [0, 65535], "this weeke he": [0, 65535], "weeke he hath": [0, 65535], "he hath beene": [0, 65535], "hath beene heauie": [0, 65535], "beene heauie sower": [0, 65535], "heauie sower sad": [0, 65535], "sower sad and": [0, 65535], "sad and much": [0, 65535], "and much different": [0, 65535], "much different from": [0, 65535], "different from the": [0, 65535], "from the man": [0, 65535], "the man he": [0, 65535], "man he was": [0, 65535], "was but till": [0, 65535], "but till this": [0, 65535], "till this afternoone": [0, 65535], "this afternoone his": [0, 65535], "afternoone his passion": [0, 65535], "his passion ne're": [0, 65535], "passion ne're brake": [0, 65535], "ne're brake into": [0, 65535], "brake into extremity": [0, 65535], "into extremity of": [0, 65535], "extremity of rage": [0, 65535], "of rage ab": [0, 65535], "rage ab hath": [0, 65535], "ab hath he": [0, 65535], "hath he not": [0, 65535], "he not lost": [0, 65535], "not lost much": [0, 65535], "lost much wealth": [0, 65535], "much wealth by": [0, 65535], "wealth by wrack": [0, 65535], "by wrack of": [0, 65535], "wrack of sea": [0, 65535], "of sea buried": [0, 65535], "sea buried some": [0, 65535], "buried some deere": [0, 65535], "some deere friend": [0, 65535], "deere friend hath": [0, 65535], "friend hath not": [0, 65535], "hath not else": [0, 65535], "not else his": [0, 65535], "else his eye": [0, 65535], "his eye stray'd": [0, 65535], "eye stray'd his": [0, 65535], "stray'd his affection": [0, 65535], "his affection in": [0, 65535], "affection in vnlawfull": [0, 65535], "in vnlawfull loue": [0, 65535], "vnlawfull loue a": [0, 65535], "loue a sinne": [0, 65535], "a sinne preuailing": [0, 65535], "sinne preuailing much": [0, 65535], "preuailing much in": [0, 65535], "much in youthfull": [0, 65535], "in youthfull men": [0, 65535], "youthfull men who": [0, 65535], "men who giue": [0, 65535], "who giue their": [0, 65535], "giue their eies": [0, 65535], "their eies the": [0, 65535], "eies the liberty": [0, 65535], "the liberty of": [0, 65535], "liberty of gazing": [0, 65535], "of gazing which": [0, 65535], "gazing which of": [0, 65535], "which of these": [0, 65535], "of these sorrowes": [0, 65535], "these sorrowes is": [0, 65535], "sorrowes is he": [0, 65535], "is he subiect": [0, 65535], "he subiect too": [0, 65535], "subiect too adr": [0, 65535], "too adr to": [0, 65535], "adr to none": [0, 65535], "to none of": [0, 65535], "none of these": [0, 65535], "of these except": [0, 65535], "these except it": [0, 65535], "except it be": [0, 65535], "it be the": [0, 65535], "be the last": [0, 65535], "the last namely": [0, 65535], "last namely some": [0, 65535], "namely some loue": [0, 65535], "some loue that": [0, 65535], "loue that drew": [0, 65535], "that drew him": [0, 65535], "drew him oft": [0, 65535], "him oft from": [0, 65535], "oft from home": [0, 65535], "from home ab": [0, 65535], "home ab you": [0, 65535], "ab you should": [0, 65535], "you should for": [0, 65535], "should for that": [0, 65535], "for that haue": [0, 65535], "that haue reprehended": [0, 65535], "haue reprehended him": [0, 65535], "reprehended him adr": [0, 65535], "him adr why": [0, 65535], "adr why so": [0, 65535], "why so i": [0, 65535], "so i did": [0, 65535], "i did ab": [0, 65535], "did ab i": [0, 65535], "ab i but": [0, 65535], "i but not": [0, 65535], "but not rough": [0, 65535], "not rough enough": [0, 65535], "rough enough adr": [0, 65535], "enough adr as": [0, 65535], "adr as roughly": [0, 65535], "as roughly as": [0, 65535], "roughly as my": [0, 65535], "as my modestie": [0, 65535], "my modestie would": [0, 65535], "modestie would let": [0, 65535], "would let me": [0, 65535], "let me ab": [0, 65535], "me ab haply": [0, 65535], "ab haply in": [0, 65535], "haply in priuate": [0, 65535], "in priuate adr": [0, 65535], "priuate adr and": [0, 65535], "adr and in": [0, 65535], "and in assemblies": [0, 65535], "in assemblies too": [0, 65535], "assemblies too ab": [0, 65535], "too ab i": [0, 65535], "but not enough": [0, 65535], "not enough adr": [0, 65535], "enough adr it": [0, 65535], "adr it was": [0, 65535], "was the copie": [0, 65535], "the copie of": [0, 65535], "copie of our": [0, 65535], "of our conference": [0, 65535], "our conference in": [0, 65535], "conference in bed": [0, 65535], "in bed he": [0, 65535], "bed he slept": [0, 65535], "he slept not": [0, 65535], "slept not for": [0, 65535], "not for my": [0, 65535], "for my vrging": [0, 65535], "my vrging it": [0, 65535], "vrging it at": [0, 65535], "it at boord": [0, 65535], "at boord he": [0, 65535], "boord he fed": [0, 65535], "he fed not": [0, 65535], "fed not for": [0, 65535], "vrging it alone": [0, 65535], "it alone it": [0, 65535], "alone it was": [0, 65535], "was the subiect": [0, 65535], "the subiect of": [0, 65535], "subiect of my": [0, 65535], "of my theame": [0, 65535], "my theame in": [0, 65535], "theame in company": [0, 65535], "in company i": [0, 65535], "company i often": [0, 65535], "i often glanced": [0, 65535], "often glanced it": [0, 65535], "glanced it still": [0, 65535], "it still did": [0, 65535], "still did i": [0, 65535], "did i tell": [0, 65535], "i tell him": [0, 65535], "tell him it": [0, 65535], "him it was": [0, 65535], "it was vilde": [0, 65535], "was vilde and": [0, 65535], "vilde and bad": [0, 65535], "and bad ab": [0, 65535], "bad ab and": [0, 65535], "ab and thereof": [0, 65535], "and thereof came": [0, 65535], "thereof came it": [0, 65535], "came it that": [0, 65535], "it that the": [0, 65535], "that the man": [0, 65535], "the man was": [0, 65535], "man was mad": [0, 65535], "was mad the": [0, 65535], "mad the venome": [0, 65535], "the venome clamors": [0, 65535], "venome clamors of": [0, 65535], "clamors of a": [0, 65535], "of a iealous": [0, 65535], "a iealous woman": [0, 65535], "iealous woman poisons": [0, 65535], "woman poisons more": [0, 65535], "poisons more deadly": [0, 65535], "more deadly then": [0, 65535], "deadly then a": [0, 65535], "then a mad": [0, 65535], "a mad dogges": [0, 65535], "mad dogges tooth": [0, 65535], "dogges tooth it": [0, 65535], "tooth it seemes": [0, 65535], "it seemes his": [0, 65535], "seemes his sleepes": [0, 65535], "his sleepes were": [0, 65535], "sleepes were hindred": [0, 65535], "were hindred by": [0, 65535], "hindred by thy": [0, 65535], "by thy railing": [0, 65535], "thy railing and": [0, 65535], "railing and thereof": [0, 65535], "and thereof comes": [0, 65535], "thereof comes it": [0, 65535], "it that his": [0, 65535], "that his head": [0, 65535], "his head is": [0, 65535], "head is light": [0, 65535], "is light thou": [0, 65535], "light thou saist": [0, 65535], "thou saist his": [0, 65535], "saist his meate": [0, 65535], "his meate was": [0, 65535], "meate was sawc'd": [0, 65535], "was sawc'd with": [0, 65535], "sawc'd with thy": [0, 65535], "with thy vpbraidings": [0, 65535], "thy vpbraidings vnquiet": [0, 65535], "vpbraidings vnquiet meales": [0, 65535], "vnquiet meales make": [0, 65535], "meales make ill": [0, 65535], "make ill digestions": [0, 65535], "ill digestions thereof": [0, 65535], "digestions thereof the": [0, 65535], "thereof the raging": [0, 65535], "the raging fire": [0, 65535], "raging fire of": [0, 65535], "fire of feauer": [0, 65535], "of feauer bred": [0, 65535], "feauer bred and": [0, 65535], "bred and what's": [0, 65535], "and what's a": [0, 65535], "what's a feauer": [0, 65535], "a feauer but": [0, 65535], "feauer but a": [0, 65535], "but a fit": [0, 65535], "a fit of": [0, 65535], "fit of madnesse": [0, 65535], "of madnesse thou": [0, 65535], "madnesse thou sayest": [0, 65535], "thou sayest his": [0, 65535], "sayest his sports": [0, 65535], "his sports were": [0, 65535], "sports were hindred": [0, 65535], "by thy bralles": [0, 65535], "thy bralles sweet": [0, 65535], "bralles sweet recreation": [0, 65535], "sweet recreation barr'd": [0, 65535], "recreation barr'd what": [0, 65535], "barr'd what doth": [0, 65535], "what doth ensue": [0, 65535], "doth ensue but": [0, 65535], "ensue but moodie": [0, 65535], "but moodie and": [0, 65535], "moodie and dull": [0, 65535], "and dull melancholly": [0, 65535], "dull melancholly kinsman": [0, 65535], "melancholly kinsman to": [0, 65535], "kinsman to grim": [0, 65535], "to grim and": [0, 65535], "grim and comfortlesse": [0, 65535], "and comfortlesse dispaire": [0, 65535], "comfortlesse dispaire and": [0, 65535], "dispaire and at": [0, 65535], "and at her": [0, 65535], "at her heeles": [0, 65535], "her heeles a": [0, 65535], "heeles a huge": [0, 65535], "a huge infectious": [0, 65535], "huge infectious troope": [0, 65535], "infectious troope of": [0, 65535], "troope of pale": [0, 65535], "of pale distemperatures": [0, 65535], "pale distemperatures and": [0, 65535], "distemperatures and foes": [0, 65535], "and foes to": [0, 65535], "foes to life": [0, 65535], "to life in": [0, 65535], "life in food": [0, 65535], "in food in": [0, 65535], "food in sport": [0, 65535], "in sport and": [0, 65535], "sport and life": [0, 65535], "and life preseruing": [0, 65535], "life preseruing rest": [0, 65535], "preseruing rest to": [0, 65535], "rest to be": [0, 65535], "to be disturb'd": [0, 65535], "be disturb'd would": [0, 65535], "disturb'd would mad": [0, 65535], "would mad or": [0, 65535], "mad or man": [0, 65535], "or man or": [0, 65535], "man or beast": [0, 65535], "or beast the": [0, 65535], "beast the consequence": [0, 65535], "the consequence is": [0, 65535], "consequence is then": [0, 65535], "is then thy": [0, 65535], "then thy iealous": [0, 65535], "thy iealous fits": [0, 65535], "iealous fits hath": [0, 65535], "fits hath scar'd": [0, 65535], "hath scar'd thy": [0, 65535], "scar'd thy husband": [0, 65535], "thy husband from": [0, 65535], "husband from the": [0, 65535], "from the vse": [0, 65535], "the vse of": [0, 65535], "vse of wits": [0, 65535], "of wits luc": [0, 65535], "wits luc she": [0, 65535], "luc she neuer": [0, 65535], "she neuer reprehended": [0, 65535], "neuer reprehended him": [0, 65535], "reprehended him but": [0, 65535], "him but mildely": [0, 65535], "but mildely when": [0, 65535], "mildely when he": [0, 65535], "when he demean'd": [0, 65535], "he demean'd himselfe": [0, 65535], "demean'd himselfe rough": [0, 65535], "himselfe rough rude": [0, 65535], "rough rude and": [0, 65535], "rude and wildly": [0, 65535], "and wildly why": [0, 65535], "wildly why beare": [0, 65535], "why beare you": [0, 65535], "beare you these": [0, 65535], "you these rebukes": [0, 65535], "these rebukes and": [0, 65535], "rebukes and answer": [0, 65535], "and answer not": [0, 65535], "answer not adri": [0, 65535], "not adri she": [0, 65535], "adri she did": [0, 65535], "she did betray": [0, 65535], "did betray me": [0, 65535], "betray me to": [0, 65535], "me to my": [0, 65535], "to my owne": [0, 65535], "my owne reproofe": [0, 65535], "owne reproofe good": [0, 65535], "reproofe good people": [0, 65535], "good people enter": [0, 65535], "people enter and": [0, 65535], "enter and lay": [0, 65535], "and lay hold": [0, 65535], "lay hold on": [0, 65535], "hold on him": [0, 65535], "him ab no": [0, 65535], "ab no not": [0, 65535], "no not a": [0, 65535], "not a creature": [0, 65535], "a creature enters": [0, 65535], "creature enters in": [0, 65535], "enters in my": [0, 65535], "in my house": [0, 65535], "my house ad": [0, 65535], "house ad then": [0, 65535], "ad then let": [0, 65535], "let your seruants": [0, 65535], "your seruants bring": [0, 65535], "seruants bring my": [0, 65535], "bring my husband": [0, 65535], "my husband forth": [0, 65535], "husband forth ab": [0, 65535], "forth ab neither": [0, 65535], "ab neither he": [0, 65535], "neither he tooke": [0, 65535], "he tooke this": [0, 65535], "tooke this place": [0, 65535], "this place for": [0, 65535], "place for sanctuary": [0, 65535], "for sanctuary and": [0, 65535], "sanctuary and it": [0, 65535], "and it shall": [0, 65535], "it shall priuiledge": [0, 65535], "shall priuiledge him": [0, 65535], "priuiledge him from": [0, 65535], "him from your": [0, 65535], "from your hands": [0, 65535], "your hands till": [0, 65535], "hands till i": [0, 65535], "till i haue": [0, 65535], "i haue brought": [0, 65535], "haue brought him": [0, 65535], "brought him to": [0, 65535], "to his wits": [0, 65535], "his wits againe": [0, 65535], "wits againe or": [0, 65535], "againe or loose": [0, 65535], "or loose my": [0, 65535], "loose my labour": [0, 65535], "my labour in": [0, 65535], "labour in assaying": [0, 65535], "in assaying it": [0, 65535], "assaying it adr": [0, 65535], "it adr i": [0, 65535], "adr i will": [0, 65535], "i will attend": [0, 65535], "will attend my": [0, 65535], "attend my husband": [0, 65535], "my husband be": [0, 65535], "husband be his": [0, 65535], "be his nurse": [0, 65535], "his nurse diet": [0, 65535], "nurse diet his": [0, 65535], "diet his sicknesse": [0, 65535], "his sicknesse for": [0, 65535], "sicknesse for it": [0, 65535], "for it is": [0, 65535], "it is my": [0, 65535], "is my office": [0, 65535], "my office and": [0, 65535], "office and will": [0, 65535], "and will haue": [0, 65535], "will haue no": [0, 65535], "haue no atturney": [0, 65535], "no atturney but": [0, 65535], "atturney but my": [0, 65535], "but my selfe": [0, 65535], "my selfe and": [0, 65535], "selfe and therefore": [0, 65535], "and therefore let": [0, 65535], "therefore let me": [0, 65535], "let me haue": [0, 65535], "me haue him": [0, 65535], "haue him home": [0, 65535], "him home with": [0, 65535], "home with me": [0, 65535], "with me ab": [0, 65535], "me ab be": [0, 65535], "ab be patient": [0, 65535], "be patient for": [0, 65535], "patient for i": [0, 65535], "for i will": [0, 65535], "will not let": [0, 65535], "not let him": [0, 65535], "let him stirre": [0, 65535], "him stirre till": [0, 65535], "stirre till i": [0, 65535], "i haue vs'd": [0, 65535], "haue vs'd the": [0, 65535], "vs'd the approoued": [0, 65535], "the approoued meanes": [0, 65535], "approoued meanes i": [0, 65535], "meanes i haue": [0, 65535], "i haue with": [0, 65535], "haue with wholsome": [0, 65535], "with wholsome sirrups": [0, 65535], "wholsome sirrups drugges": [0, 65535], "sirrups drugges and": [0, 65535], "drugges and holy": [0, 65535], "and holy prayers": [0, 65535], "holy prayers to": [0, 65535], "prayers to make": [0, 65535], "to make of": [0, 65535], "make of him": [0, 65535], "of him a": [0, 65535], "him a formall": [0, 65535], "a formall man": [0, 65535], "formall man againe": [0, 65535], "man againe it": [0, 65535], "againe it is": [0, 65535], "is a branch": [0, 65535], "a branch and": [0, 65535], "branch and parcell": [0, 65535], "and parcell of": [0, 65535], "parcell of mine": [0, 65535], "of mine oath": [0, 65535], "mine oath a": [0, 65535], "oath a charitable": [0, 65535], "a charitable dutie": [0, 65535], "charitable dutie of": [0, 65535], "dutie of my": [0, 65535], "of my order": [0, 65535], "my order therefore": [0, 65535], "order therefore depart": [0, 65535], "therefore depart and": [0, 65535], "depart and leaue": [0, 65535], "and leaue him": [0, 65535], "leaue him heere": [0, 65535], "him heere with": [0, 65535], "heere with me": [0, 65535], "with me adr": [0, 65535], "me adr i": [0, 65535], "will not hence": [0, 65535], "not hence and": [0, 65535], "hence and leaue": [0, 65535], "and leaue my": [0, 65535], "leaue my husband": [0, 65535], "my husband heere": [0, 65535], "husband heere and": [0, 65535], "heere and ill": [0, 65535], "and ill it": [0, 65535], "ill it doth": [0, 65535], "it doth beseeme": [0, 65535], "doth beseeme your": [0, 65535], "beseeme your holinesse": [0, 65535], "your holinesse to": [0, 65535], "holinesse to separate": [0, 65535], "to separate the": [0, 65535], "separate the husband": [0, 65535], "the husband and": [0, 65535], "husband and the": [0, 65535], "and the wife": [0, 65535], "the wife ab": [0, 65535], "wife ab be": [0, 65535], "be quiet and": [0, 65535], "quiet and depart": [0, 65535], "and depart thou": [0, 65535], "depart thou shalt": [0, 65535], "thou shalt not": [0, 65535], "shalt not haue": [0, 65535], "not haue him": [0, 65535], "haue him luc": [0, 65535], "him luc complaine": [0, 65535], "luc complaine vnto": [0, 65535], "complaine vnto the": [0, 65535], "vnto the duke": [0, 65535], "the duke of": [0, 65535], "duke of this": [0, 65535], "of this indignity": [0, 65535], "this indignity adr": [0, 65535], "indignity adr come": [0, 65535], "adr come go": [0, 65535], "come go i": [0, 65535], "go i will": [0, 65535], "i will fall": [0, 65535], "will fall prostrate": [0, 65535], "fall prostrate at": [0, 65535], "prostrate at his": [0, 65535], "at his feete": [0, 65535], "his feete and": [0, 65535], "feete and neuer": [0, 65535], "and neuer rise": [0, 65535], "neuer rise vntill": [0, 65535], "rise vntill my": [0, 65535], "vntill my teares": [0, 65535], "my teares and": [0, 65535], "teares and prayers": [0, 65535], "and prayers haue": [0, 65535], "prayers haue won": [0, 65535], "haue won his": [0, 65535], "won his grace": [0, 65535], "his grace to": [0, 65535], "grace to come": [0, 65535], "to come in": [0, 65535], "come in person": [0, 65535], "in person hither": [0, 65535], "person hither and": [0, 65535], "hither and take": [0, 65535], "and take perforce": [0, 65535], "take perforce my": [0, 65535], "perforce my husband": [0, 65535], "my husband from": [0, 65535], "from the abbesse": [0, 65535], "the abbesse mar": [0, 65535], "abbesse mar by": [0, 65535], "mar by this": [0, 65535], "thinke the diall": [0, 65535], "the diall points": [0, 65535], "diall points at": [0, 65535], "points at fiue": [0, 65535], "at fiue anon": [0, 65535], "fiue anon i'me": [0, 65535], "anon i'me sure": [0, 65535], "i'me sure the": [0, 65535], "sure the duke": [0, 65535], "the duke himselfe": [0, 65535], "duke himselfe in": [0, 65535], "himselfe in person": [0, 65535], "in person comes": [0, 65535], "person comes this": [0, 65535], "comes this way": [0, 65535], "this way to": [0, 65535], "way to the": [0, 65535], "to the melancholly": [0, 65535], "the melancholly vale": [0, 65535], "melancholly vale the": [0, 65535], "vale the place": [0, 65535], "the place of": [0, 65535], "place of depth": [0, 65535], "of depth and": [0, 65535], "depth and sorrie": [0, 65535], "and sorrie execution": [0, 65535], "sorrie execution behinde": [0, 65535], "execution behinde the": [0, 65535], "behinde the ditches": [0, 65535], "the ditches of": [0, 65535], "ditches of the": [0, 65535], "of the abbey": [0, 65535], "the abbey heere": [0, 65535], "abbey heere gold": [0, 65535], "heere gold vpon": [0, 65535], "gold vpon what": [0, 65535], "vpon what cause": [0, 65535], "what cause mar": [0, 65535], "cause mar to": [0, 65535], "mar to see": [0, 65535], "see a reuerent": [0, 65535], "a reuerent siracusian": [0, 65535], "reuerent siracusian merchant": [0, 65535], "siracusian merchant who": [0, 65535], "merchant who put": [0, 65535], "who put vnluckily": [0, 65535], "put vnluckily into": [0, 65535], "vnluckily into this": [0, 65535], "into this bay": [0, 65535], "this bay against": [0, 65535], "bay against the": [0, 65535], "against the lawes": [0, 65535], "the lawes and": [0, 65535], "lawes and statutes": [0, 65535], "and statutes of": [0, 65535], "statutes of this": [0, 65535], "of this towne": [0, 65535], "this towne beheaded": [0, 65535], "towne beheaded publikely": [0, 65535], "beheaded publikely for": [0, 65535], "publikely for his": [0, 65535], "for his offence": [0, 65535], "his offence gold": [0, 65535], "offence gold see": [0, 65535], "gold see where": [0, 65535], "see where they": [0, 65535], "where they come": [0, 65535], "they come we": [0, 65535], "come we wil": [0, 65535], "we wil behold": [0, 65535], "wil behold his": [0, 65535], "behold his death": [0, 65535], "his death luc": [0, 65535], "death luc kneele": [0, 65535], "luc kneele to": [0, 65535], "kneele to the": [0, 65535], "to the duke": [0, 65535], "the duke before": [0, 65535], "duke before he": [0, 65535], "before he passe": [0, 65535], "he passe the": [0, 65535], "passe the abbey": [0, 65535], "the abbey enter": [0, 65535], "abbey enter the": [0, 65535], "enter the duke": [0, 65535], "duke of ephesus": [0, 65535], "of ephesus and": [0, 65535], "ephesus and the": [0, 65535], "and the merchant": [0, 65535], "the merchant of": [0, 65535], "merchant of siracuse": [0, 65535], "of siracuse bare": [0, 65535], "siracuse bare head": [0, 65535], "bare head with": [0, 65535], "head with the": [0, 65535], "with the headsman": [0, 65535], "the headsman other": [0, 65535], "headsman other officers": [0, 65535], "other officers duke": [0, 65535], "officers duke yet": [0, 65535], "duke yet once": [0, 65535], "yet once againe": [0, 65535], "once againe proclaime": [0, 65535], "againe proclaime it": [0, 65535], "proclaime it publikely": [0, 65535], "it publikely if": [0, 65535], "publikely if any": [0, 65535], "if any friend": [0, 65535], "any friend will": [0, 65535], "friend will pay": [0, 65535], "will pay the": [0, 65535], "pay the summe": [0, 65535], "the summe for": [0, 65535], "summe for him": [0, 65535], "him he shall": [0, 65535], "he shall not": [0, 65535], "shall not die": [0, 65535], "not die so": [0, 65535], "die so much": [0, 65535], "so much we": [0, 65535], "much we tender": [0, 65535], "we tender him": [0, 65535], "tender him adr": [0, 65535], "him adr iustice": [0, 65535], "adr iustice most": [0, 65535], "iustice most sacred": [0, 65535], "most sacred duke": [0, 65535], "sacred duke against": [0, 65535], "duke against the": [0, 65535], "against the abbesse": [0, 65535], "the abbesse duke": [0, 65535], "abbesse duke she": [0, 65535], "duke she is": [0, 65535], "she is a": [0, 65535], "is a vertuous": [0, 65535], "a vertuous and": [0, 65535], "vertuous and a": [0, 65535], "and a reuerend": [0, 65535], "a reuerend lady": [0, 65535], "reuerend lady it": [0, 65535], "lady it cannot": [0, 65535], "it cannot be": [0, 65535], "cannot be that": [0, 65535], "be that she": [0, 65535], "that she hath": [0, 65535], "she hath done": [0, 65535], "hath done thee": [0, 65535], "done thee wrong": [0, 65535], "thee wrong adr": [0, 65535], "wrong adr may": [0, 65535], "adr may it": [0, 65535], "may it please": [0, 65535], "it please your": [0, 65535], "please your grace": [0, 65535], "your grace antipholus": [0, 65535], "grace antipholus my": [0, 65535], "antipholus my husba": [0, 65535], "my husba n": [0, 65535], "husba n d": [0, 65535], "n d who": [0, 65535], "d who i": [0, 65535], "who i made": [0, 65535], "i made lord": [0, 65535], "made lord of": [0, 65535], "lord of me": [0, 65535], "of me and": [0, 65535], "me and all": [0, 65535], "and all i": [0, 65535], "all i had": [0, 65535], "i had at": [0, 65535], "had at your": [0, 65535], "at your important": [0, 65535], "your important letters": [0, 65535], "important letters this": [0, 65535], "letters this ill": [0, 65535], "this ill day": [0, 65535], "ill day a": [0, 65535], "day a most": [0, 65535], "a most outragious": [0, 65535], "most outragious fit": [0, 65535], "outragious fit of": [0, 65535], "of madnesse tooke": [0, 65535], "madnesse tooke him": [0, 65535], "tooke him that": [0, 65535], "him that desp'rately": [0, 65535], "that desp'rately he": [0, 65535], "desp'rately he hurried": [0, 65535], "he hurried through": [0, 65535], "hurried through the": [0, 65535], "through the streete": [0, 65535], "the streete with": [0, 65535], "streete with him": [0, 65535], "with him his": [0, 65535], "him his bondman": [0, 65535], "his bondman all": [0, 65535], "bondman all as": [0, 65535], "all as mad": [0, 65535], "as mad as": [0, 65535], "mad as he": [0, 65535], "as he doing": [0, 65535], "he doing displeasure": [0, 65535], "doing displeasure to": [0, 65535], "displeasure to the": [0, 65535], "to the citizens": [0, 65535], "the citizens by": [0, 65535], "citizens by rushing": [0, 65535], "by rushing in": [0, 65535], "rushing in their": [0, 65535], "in their houses": [0, 65535], "their houses bearing": [0, 65535], "houses bearing thence": [0, 65535], "bearing thence rings": [0, 65535], "thence rings iewels": [0, 65535], "rings iewels any": [0, 65535], "iewels any thing": [0, 65535], "any thing his": [0, 65535], "thing his rage": [0, 65535], "his rage did": [0, 65535], "rage did like": [0, 65535], "did like once": [0, 65535], "like once did": [0, 65535], "once did i": [0, 65535], "did i get": [0, 65535], "i get him": [0, 65535], "get him bound": [0, 65535], "him bound and": [0, 65535], "bound and sent": [0, 65535], "and sent him": [0, 65535], "sent him home": [0, 65535], "him home whil'st": [0, 65535], "home whil'st to": [0, 65535], "whil'st to take": [0, 65535], "to take order": [0, 65535], "take order for": [0, 65535], "order for the": [0, 65535], "for the wrongs": [0, 65535], "wrongs i went": [0, 65535], "i went that": [0, 65535], "went that heere": [0, 65535], "that heere and": [0, 65535], "heere and there": [0, 65535], "and there his": [0, 65535], "there his furie": [0, 65535], "his furie had": [0, 65535], "furie had committed": [0, 65535], "had committed anon": [0, 65535], "committed anon i": [0, 65535], "anon i wot": [0, 65535], "i wot not": [0, 65535], "wot not by": [0, 65535], "not by what": [0, 65535], "by what strong": [0, 65535], "what strong escape": [0, 65535], "strong escape he": [0, 65535], "escape he broke": [0, 65535], "he broke from": [0, 65535], "broke from those": [0, 65535], "from those that": [0, 65535], "those that had": [0, 65535], "that had the": [0, 65535], "had the guard": [0, 65535], "the guard of": [0, 65535], "guard of him": [0, 65535], "him and with": [0, 65535], "and with his": [0, 65535], "with his mad": [0, 65535], "his mad attendant": [0, 65535], "mad attendant and": [0, 65535], "attendant and himselfe": [0, 65535], "and himselfe each": [0, 65535], "himselfe each one": [0, 65535], "each one with": [0, 65535], "one with irefull": [0, 65535], "with irefull passion": [0, 65535], "irefull passion with": [0, 65535], "passion with drawne": [0, 65535], "with drawne swords": [0, 65535], "drawne swords met": [0, 65535], "swords met vs": [0, 65535], "met vs againe": [0, 65535], "vs againe and": [0, 65535], "againe and madly": [0, 65535], "and madly bent": [0, 65535], "madly bent on": [0, 65535], "bent on vs": [0, 65535], "on vs chac'd": [0, 65535], "vs chac'd vs": [0, 65535], "chac'd vs away": [0, 65535], "vs away till": [0, 65535], "away till raising": [0, 65535], "till raising of": [0, 65535], "raising of more": [0, 65535], "of more aide": [0, 65535], "more aide we": [0, 65535], "aide we came": [0, 65535], "we came againe": [0, 65535], "came againe to": [0, 65535], "againe to binde": [0, 65535], "to binde them": [0, 65535], "binde them then": [0, 65535], "them then they": [0, 65535], "then they fled": [0, 65535], "they fled into": [0, 65535], "fled into this": [0, 65535], "into this abbey": [0, 65535], "this abbey whether": [0, 65535], "abbey whether we": [0, 65535], "whether we pursu'd": [0, 65535], "we pursu'd them": [0, 65535], "pursu'd them and": [0, 65535], "them and heere": [0, 65535], "and heere the": [0, 65535], "heere the abbesse": [0, 65535], "the abbesse shuts": [0, 65535], "abbesse shuts the": [0, 65535], "shuts the gates": [0, 65535], "the gates on": [0, 65535], "gates on vs": [0, 65535], "on vs and": [0, 65535], "vs and will": [0, 65535], "and will not": [0, 65535], "will not suffer": [0, 65535], "not suffer vs": [0, 65535], "suffer vs to": [0, 65535], "vs to fetch": [0, 65535], "to fetch him": [0, 65535], "fetch him out": [0, 65535], "him out nor": [0, 65535], "out nor send": [0, 65535], "nor send him": [0, 65535], "send him forth": [0, 65535], "him forth that": [0, 65535], "forth that we": [0, 65535], "we may beare": [0, 65535], "may beare him": [0, 65535], "beare him hence": [0, 65535], "him hence therefore": [0, 65535], "hence therefore most": [0, 65535], "therefore most gracious": [0, 65535], "most gracious duke": [0, 65535], "gracious duke with": [0, 65535], "duke with thy": [0, 65535], "with thy command": [0, 65535], "thy command let": [0, 65535], "command let him": [0, 65535], "let him be": [0, 65535], "him be brought": [0, 65535], "be brought forth": [0, 65535], "brought forth and": [0, 65535], "forth and borne": [0, 65535], "and borne hence": [0, 65535], "borne hence for": [0, 65535], "hence for helpe": [0, 65535], "for helpe duke": [0, 65535], "helpe duke long": [0, 65535], "duke long since": [0, 65535], "long since thy": [0, 65535], "since thy husband": [0, 65535], "thy husband seru'd": [0, 65535], "husband seru'd me": [0, 65535], "seru'd me in": [0, 65535], "in my wars": [0, 65535], "my wars and": [0, 65535], "wars and i": [0, 65535], "and i to": [0, 65535], "i to thee": [0, 65535], "to thee ingag'd": [0, 65535], "thee ingag'd a": [0, 65535], "ingag'd a princes": [0, 65535], "a princes word": [0, 65535], "princes word when": [0, 65535], "word when thou": [0, 65535], "when thou didst": [0, 65535], "thou didst make": [0, 65535], "didst make him": [0, 65535], "make him master": [0, 65535], "him master of": [0, 65535], "master of thy": [0, 65535], "of thy bed": [0, 65535], "thy bed to": [0, 65535], "bed to do": [0, 65535], "to do him": [0, 65535], "do him all": [0, 65535], "him all the": [0, 65535], "all the grace": [0, 65535], "the grace and": [0, 65535], "grace and good": [0, 65535], "and good i": [0, 65535], "good i could": [0, 65535], "i could go": [0, 65535], "could go some": [0, 65535], "go some of": [0, 65535], "some of you": [0, 65535], "of you knocke": [0, 65535], "you knocke at": [0, 65535], "knocke at the": [0, 65535], "at the abbey": [0, 65535], "the abbey gate": [0, 65535], "abbey gate and": [0, 65535], "gate and bid": [0, 65535], "and bid the": [0, 65535], "bid the lady": [0, 65535], "the lady abbesse": [0, 65535], "lady abbesse come": [0, 65535], "abbesse come to": [0, 65535], "come to me": [0, 65535], "me i will": [0, 65535], "i will determine": [0, 65535], "will determine this": [0, 65535], "determine this before": [0, 65535], "this before i": [0, 65535], "before i stirre": [0, 65535], "i stirre enter": [0, 65535], "stirre enter a": [0, 65535], "enter a messenger": [0, 65535], "a messenger oh": [0, 65535], "messenger oh mistris": [0, 65535], "oh mistris mistris": [0, 65535], "mistris mistris shift": [0, 65535], "mistris shift and": [0, 65535], "shift and saue": [0, 65535], "and saue your": [0, 65535], "saue your selfe": [0, 65535], "your selfe my": [0, 65535], "selfe my master": [0, 65535], "my master and": [0, 65535], "master and his": [0, 65535], "and his man": [0, 65535], "his man are": [0, 65535], "man are both": [0, 65535], "are both broke": [0, 65535], "both broke loose": [0, 65535], "broke loose beaten": [0, 65535], "loose beaten the": [0, 65535], "beaten the maids": [0, 65535], "the maids a": [0, 65535], "maids a row": [0, 65535], "a row and": [0, 65535], "row and bound": [0, 65535], "and bound the": [0, 65535], "bound the doctor": [0, 65535], "the doctor whose": [0, 65535], "doctor whose beard": [0, 65535], "whose beard they": [0, 65535], "beard they haue": [0, 65535], "they haue sindg'd": [0, 65535], "haue sindg'd off": [0, 65535], "sindg'd off with": [0, 65535], "off with brands": [0, 65535], "with brands of": [0, 65535], "brands of fire": [0, 65535], "fire and euer": [0, 65535], "and euer as": [0, 65535], "euer as it": [0, 65535], "as it blaz'd": [0, 65535], "it blaz'd they": [0, 65535], "blaz'd they threw": [0, 65535], "they threw on": [0, 65535], "threw on him": [0, 65535], "on him great": [0, 65535], "him great pailes": [0, 65535], "great pailes of": [0, 65535], "pailes of puddled": [0, 65535], "of puddled myre": [0, 65535], "puddled myre to": [0, 65535], "myre to quench": [0, 65535], "to quench the": [0, 65535], "quench the haire": [0, 65535], "the haire my": [0, 65535], "haire my mr": [0, 65535], "my mr preaches": [0, 65535], "mr preaches patience": [0, 65535], "preaches patience to": [0, 65535], "patience to him": [0, 65535], "and the while": [0, 65535], "the while his": [0, 65535], "while his man": [0, 65535], "his man with": [0, 65535], "man with cizers": [0, 65535], "with cizers nickes": [0, 65535], "cizers nickes him": [0, 65535], "nickes him like": [0, 65535], "him like a": [0, 65535], "like a foole": [0, 65535], "a foole and": [0, 65535], "foole and sure": [0, 65535], "and sure vnlesse": [0, 65535], "sure vnlesse you": [0, 65535], "vnlesse you send": [0, 65535], "you send some": [0, 65535], "send some present": [0, 65535], "some present helpe": [0, 65535], "present helpe betweene": [0, 65535], "helpe betweene them": [0, 65535], "betweene them they": [0, 65535], "them they will": [0, 65535], "they will kill": [0, 65535], "will kill the": [0, 65535], "kill the coniurer": [0, 65535], "the coniurer adr": [0, 65535], "coniurer adr peace": [0, 65535], "adr peace foole": [0, 65535], "peace foole thy": [0, 65535], "foole thy master": [0, 65535], "thy master and": [0, 65535], "man are here": [0, 65535], "are here and": [0, 65535], "here and that": [0, 65535], "and that is": [0, 65535], "that is false": [0, 65535], "is false thou": [0, 65535], "false thou dost": [0, 65535], "thou dost report": [0, 65535], "dost report to": [0, 65535], "report to vs": [0, 65535], "to vs mess": [0, 65535], "vs mess mistris": [0, 65535], "mess mistris vpon": [0, 65535], "mistris vpon my": [0, 65535], "vpon my life": [0, 65535], "my life i": [0, 65535], "life i tel": [0, 65535], "i tel you": [0, 65535], "tel you true": [0, 65535], "you true i": [0, 65535], "true i haue": [0, 65535], "haue not breath'd": [0, 65535], "not breath'd almost": [0, 65535], "breath'd almost since": [0, 65535], "almost since i": [0, 65535], "since i did": [0, 65535], "i did see": [0, 65535], "did see it": [0, 65535], "see it he": [0, 65535], "it he cries": [0, 65535], "he cries for": [0, 65535], "cries for you": [0, 65535], "for you and": [0, 65535], "you and vowes": [0, 65535], "and vowes if": [0, 65535], "vowes if he": [0, 65535], "he can take": [0, 65535], "can take you": [0, 65535], "take you to": [0, 65535], "you to scorch": [0, 65535], "to scorch your": [0, 65535], "scorch your face": [0, 65535], "your face and": [0, 65535], "face and to": [0, 65535], "and to disfigure": [0, 65535], "to disfigure you": [0, 65535], "disfigure you cry": [0, 65535], "you cry within": [0, 65535], "cry within harke": [0, 65535], "within harke harke": [0, 65535], "harke harke i": [0, 65535], "harke i heare": [0, 65535], "i heare him": [0, 65535], "heare him mistris": [0, 65535], "him mistris flie": [0, 65535], "mistris flie be": [0, 65535], "flie be gone": [0, 65535], "be gone duke": [0, 65535], "gone duke come": [0, 65535], "duke come stand": [0, 65535], "come stand by": [0, 65535], "stand by me": [0, 65535], "by me feare": [0, 65535], "me feare nothing": [0, 65535], "feare nothing guard": [0, 65535], "nothing guard with": [0, 65535], "guard with halberds": [0, 65535], "with halberds adr": [0, 65535], "halberds adr ay": [0, 65535], "adr ay me": [0, 65535], "ay me it": [0, 65535], "is my husband": [0, 65535], "my husband witnesse": [0, 65535], "husband witnesse you": [0, 65535], "witnesse you that": [0, 65535], "you that he": [0, 65535], "that he is": [0, 65535], "he is borne": [0, 65535], "is borne about": [0, 65535], "borne about inuisible": [0, 65535], "about inuisible euen": [0, 65535], "inuisible euen now": [0, 65535], "euen now we": [0, 65535], "now we hous'd": [0, 65535], "we hous'd him": [0, 65535], "hous'd him in": [0, 65535], "him in the": [0, 65535], "in the abbey": [0, 65535], "abbey heere and": [0, 65535], "heere and now": [0, 65535], "and now he's": [0, 65535], "now he's there": [0, 65535], "he's there past": [0, 65535], "there past thought": [0, 65535], "past thought of": [0, 65535], "thought of humane": [0, 65535], "of humane reason": [0, 65535], "humane reason enter": [0, 65535], "reason enter antipholus": [0, 65535], "antipholus and e": [0, 65535], "and e dromio": [0, 65535], "e dromio of": [0, 65535], "dromio of ephesus": [0, 65535], "of ephesus e": [0, 65535], "ephesus e ant": [0, 65535], "e ant iustice": [0, 65535], "ant iustice most": [0, 65535], "iustice most gracious": [0, 65535], "gracious duke oh": [0, 65535], "duke oh grant": [0, 65535], "oh grant me": [0, 65535], "grant me iustice": [0, 65535], "me iustice euen": [0, 65535], "iustice euen for": [0, 65535], "euen for the": [0, 65535], "for the seruice": [0, 65535], "the seruice that": [0, 65535], "seruice that long": [0, 65535], "that long since": [0, 65535], "long since i": [0, 65535], "i did thee": [0, 65535], "did thee when": [0, 65535], "thee when i": [0, 65535], "when i bestrid": [0, 65535], "i bestrid thee": [0, 65535], "bestrid thee in": [0, 65535], "thee in the": [0, 65535], "in the warres": [0, 65535], "the warres and": [0, 65535], "warres and tooke": [0, 65535], "and tooke deepe": [0, 65535], "tooke deepe scarres": [0, 65535], "deepe scarres to": [0, 65535], "scarres to saue": [0, 65535], "to saue thy": [0, 65535], "saue thy life": [0, 65535], "thy life euen": [0, 65535], "life euen for": [0, 65535], "for the blood": [0, 65535], "the blood that": [0, 65535], "blood that then": [0, 65535], "that then i": [0, 65535], "then i lost": [0, 65535], "i lost for": [0, 65535], "lost for thee": [0, 65535], "for thee now": [0, 65535], "thee now grant": [0, 65535], "now grant me": [0, 65535], "me iustice mar": [0, 65535], "iustice mar fat": [0, 65535], "mar fat vnlesse": [0, 65535], "fat vnlesse the": [0, 65535], "vnlesse the feare": [0, 65535], "the feare of": [0, 65535], "feare of death": [0, 65535], "of death doth": [0, 65535], "death doth make": [0, 65535], "doth make me": [0, 65535], "make me dote": [0, 65535], "me dote i": [0, 65535], "dote i see": [0, 65535], "i see my": [0, 65535], "see my sonne": [0, 65535], "my sonne antipholus": [0, 65535], "sonne antipholus and": [0, 65535], "and dromio e": [0, 65535], "dromio e ant": [0, 65535], "ant iustice sweet": [0, 65535], "iustice sweet prince": [0, 65535], "sweet prince against": [0, 65535], "prince against that": [0, 65535], "against that woman": [0, 65535], "that woman there": [0, 65535], "woman there she": [0, 65535], "there she whom": [0, 65535], "she whom thou": [0, 65535], "whom thou gau'st": [0, 65535], "thou gau'st to": [0, 65535], "gau'st to me": [0, 65535], "to me to": [0, 65535], "to be my": [0, 65535], "my wife that": [0, 65535], "wife that hath": [0, 65535], "that hath abused": [0, 65535], "hath abused and": [0, 65535], "abused and dishonored": [0, 65535], "and dishonored me": [0, 65535], "dishonored me euen": [0, 65535], "me euen in": [0, 65535], "in the strength": [0, 65535], "the strength and": [0, 65535], "strength and height": [0, 65535], "and height of": [0, 65535], "height of iniurie": [0, 65535], "of iniurie beyond": [0, 65535], "iniurie beyond imagination": [0, 65535], "beyond imagination is": [0, 65535], "imagination is the": [0, 65535], "is the wrong": [0, 65535], "the wrong that": [0, 65535], "wrong that she": [0, 65535], "that she this": [0, 65535], "she this day": [0, 65535], "this day hath": [0, 65535], "day hath shamelesse": [0, 65535], "hath shamelesse throwne": [0, 65535], "shamelesse throwne on": [0, 65535], "throwne on me": [0, 65535], "on me duke": [0, 65535], "me duke discouer": [0, 65535], "duke discouer how": [0, 65535], "discouer how and": [0, 65535], "how and thou": [0, 65535], "and thou shalt": [0, 65535], "thou shalt finde": [0, 65535], "shalt finde me": [0, 65535], "finde me iust": [0, 65535], "me iust e": [0, 65535], "iust e ant": [0, 65535], "e ant this": [0, 65535], "ant this day": [0, 65535], "this day great": [0, 65535], "day great duke": [0, 65535], "great duke she": [0, 65535], "duke she shut": [0, 65535], "she shut the": [0, 65535], "shut the doores": [0, 65535], "the doores vpon": [0, 65535], "doores vpon me": [0, 65535], "vpon me while": [0, 65535], "me while she": [0, 65535], "while she with": [0, 65535], "she with harlots": [0, 65535], "with harlots feasted": [0, 65535], "harlots feasted in": [0, 65535], "feasted in my": [0, 65535], "my house duke": [0, 65535], "house duke a": [0, 65535], "duke a greeuous": [0, 65535], "a greeuous fault": [0, 65535], "greeuous fault say": [0, 65535], "fault say woman": [0, 65535], "say woman didst": [0, 65535], "woman didst thou": [0, 65535], "didst thou so": [0, 65535], "thou so adr": [0, 65535], "so adr no": [0, 65535], "adr no my": [0, 65535], "no my good": [0, 65535], "my good lord": [0, 65535], "good lord my": [0, 65535], "lord my selfe": [0, 65535], "my selfe he": [0, 65535], "selfe he and": [0, 65535], "he and my": [0, 65535], "and my sister": [0, 65535], "sister to day": [0, 65535], "to day did": [0, 65535], "day did dine": [0, 65535], "did dine together": [0, 65535], "dine together so": [0, 65535], "together so befall": [0, 65535], "so befall my": [0, 65535], "befall my soule": [0, 65535], "my soule as": [0, 65535], "soule as this": [0, 65535], "as this is": [0, 65535], "this is false": [0, 65535], "is false he": [0, 65535], "false he burthens": [0, 65535], "he burthens me": [0, 65535], "burthens me withall": [0, 65535], "me withall luc": [0, 65535], "withall luc nere": [0, 65535], "luc nere may": [0, 65535], "nere may i": [0, 65535], "may i looke": [0, 65535], "i looke on": [0, 65535], "looke on day": [0, 65535], "on day nor": [0, 65535], "day nor sleepe": [0, 65535], "nor sleepe on": [0, 65535], "sleepe on night": [0, 65535], "on night but": [0, 65535], "night but she": [0, 65535], "but she tels": [0, 65535], "she tels to": [0, 65535], "tels to your": [0, 65535], "to your highnesse": [0, 65535], "your highnesse simple": [0, 65535], "highnesse simple truth": [0, 65535], "simple truth gold": [0, 65535], "truth gold o": [0, 65535], "gold o periur'd": [0, 65535], "o periur'd woman": [0, 65535], "periur'd woman they": [0, 65535], "woman they are": [0, 65535], "they are both": [0, 65535], "are both forsworne": [0, 65535], "both forsworne in": [0, 65535], "forsworne in this": [0, 65535], "in this the": [0, 65535], "this the madman": [0, 65535], "the madman iustly": [0, 65535], "madman iustly chargeth": [0, 65535], "iustly chargeth them": [0, 65535], "chargeth them e": [0, 65535], "them e ant": [0, 65535], "e ant my": [0, 65535], "ant my liege": [0, 65535], "my liege i": [0, 65535], "liege i am": [0, 65535], "i am aduised": [0, 65535], "am aduised what": [0, 65535], "aduised what i": [0, 65535], "what i say": [0, 65535], "i say neither": [0, 65535], "say neither disturbed": [0, 65535], "neither disturbed with": [0, 65535], "disturbed with the": [0, 65535], "with the effect": [0, 65535], "the effect of": [0, 65535], "effect of wine": [0, 65535], "of wine nor": [0, 65535], "wine nor headie": [0, 65535], "nor headie rash": [0, 65535], "headie rash prouoak'd": [0, 65535], "rash prouoak'd with": [0, 65535], "prouoak'd with raging": [0, 65535], "with raging ire": [0, 65535], "raging ire albeit": [0, 65535], "ire albeit my": [0, 65535], "albeit my wrongs": [0, 65535], "my wrongs might": [0, 65535], "wrongs might make": [0, 65535], "might make one": [0, 65535], "make one wiser": [0, 65535], "one wiser mad": [0, 65535], "wiser mad this": [0, 65535], "mad this woman": [0, 65535], "this woman lock'd": [0, 65535], "woman lock'd me": [0, 65535], "lock'd me out": [0, 65535], "me out this": [0, 65535], "out this day": [0, 65535], "this day from": [0, 65535], "day from dinner": [0, 65535], "from dinner that": [0, 65535], "dinner that goldsmith": [0, 65535], "that goldsmith there": [0, 65535], "goldsmith there were": [0, 65535], "there were he": [0, 65535], "were he not": [0, 65535], "he not pack'd": [0, 65535], "not pack'd with": [0, 65535], "pack'd with her": [0, 65535], "with her could": [0, 65535], "her could witnesse": [0, 65535], "could witnesse it": [0, 65535], "witnesse it for": [0, 65535], "it for he": [0, 65535], "he was with": [0, 65535], "was with me": [0, 65535], "with me then": [0, 65535], "me then who": [0, 65535], "then who parted": [0, 65535], "who parted with": [0, 65535], "parted with me": [0, 65535], "with me to": [0, 65535], "me to go": [0, 65535], "to go fetch": [0, 65535], "go fetch a": [0, 65535], "fetch a chaine": [0, 65535], "a chaine promising": [0, 65535], "chaine promising to": [0, 65535], "promising to bring": [0, 65535], "to bring it": [0, 65535], "bring it to": [0, 65535], "it to the": [0, 65535], "the porpentine where": [0, 65535], "porpentine where balthasar": [0, 65535], "where balthasar and": [0, 65535], "balthasar and i": [0, 65535], "and i did": [0, 65535], "i did dine": [0, 65535], "dine together our": [0, 65535], "together our dinner": [0, 65535], "our dinner done": [0, 65535], "dinner done and": [0, 65535], "done and he": [0, 65535], "and he not": [0, 65535], "he not comming": [0, 65535], "not comming thither": [0, 65535], "comming thither i": [0, 65535], "thither i went": [0, 65535], "i went to": [0, 65535], "went to seeke": [0, 65535], "to seeke him": [0, 65535], "seeke him in": [0, 65535], "the street i": [0, 65535], "street i met": [0, 65535], "i met him": [0, 65535], "met him and": [0, 65535], "him and in": [0, 65535], "in his companie": [0, 65535], "his companie that": [0, 65535], "companie that gentleman": [0, 65535], "that gentleman there": [0, 65535], "gentleman there did": [0, 65535], "there did this": [0, 65535], "did this periur'd": [0, 65535], "this periur'd goldsmith": [0, 65535], "periur'd goldsmith sweare": [0, 65535], "goldsmith sweare me": [0, 65535], "sweare me downe": [0, 65535], "me downe that": [0, 65535], "downe that i": [0, 65535], "that i this": [0, 65535], "i this day": [0, 65535], "this day of": [0, 65535], "day of him": [0, 65535], "of him receiu'd": [0, 65535], "him receiu'd the": [0, 65535], "receiu'd the chaine": [0, 65535], "the chaine which": [0, 65535], "chaine which god": [0, 65535], "which god he": [0, 65535], "god he knowes": [0, 65535], "he knowes i": [0, 65535], "knowes i saw": [0, 65535], "i saw not": [0, 65535], "saw not for": [0, 65535], "not for the": [0, 65535], "for the which": [0, 65535], "the which he": [0, 65535], "he did arrest": [0, 65535], "did arrest me": [0, 65535], "arrest me with": [0, 65535], "me with an": [0, 65535], "with an officer": [0, 65535], "an officer i": [0, 65535], "officer i did": [0, 65535], "i did obey": [0, 65535], "did obey and": [0, 65535], "obey and sent": [0, 65535], "and sent my": [0, 65535], "sent my pesant": [0, 65535], "my pesant home": [0, 65535], "pesant home for": [0, 65535], "home for certaine": [0, 65535], "for certaine duckets": [0, 65535], "certaine duckets he": [0, 65535], "duckets he with": [0, 65535], "he with none": [0, 65535], "with none return'd": [0, 65535], "none return'd then": [0, 65535], "return'd then fairely": [0, 65535], "then fairely i": [0, 65535], "fairely i bespoke": [0, 65535], "i bespoke the": [0, 65535], "bespoke the officer": [0, 65535], "the officer to": [0, 65535], "officer to go": [0, 65535], "go in person": [0, 65535], "in person with": [0, 65535], "person with me": [0, 65535], "my house by'th'": [0, 65535], "house by'th' way": [0, 65535], "by'th' way we": [0, 65535], "way we met": [0, 65535], "we met my": [0, 65535], "met my wife": [0, 65535], "my wife her": [0, 65535], "wife her sister": [0, 65535], "her sister and": [0, 65535], "sister and a": [0, 65535], "and a rabble": [0, 65535], "a rabble more": [0, 65535], "rabble more of": [0, 65535], "more of vilde": [0, 65535], "of vilde confederates": [0, 65535], "vilde confederates along": [0, 65535], "confederates along with": [0, 65535], "along with them": [0, 65535], "with them they": [0, 65535], "them they brought": [0, 65535], "they brought one": [0, 65535], "brought one pinch": [0, 65535], "one pinch a": [0, 65535], "pinch a hungry": [0, 65535], "a hungry leane": [0, 65535], "hungry leane fac'd": [0, 65535], "leane fac'd villaine": [0, 65535], "fac'd villaine a": [0, 65535], "villaine a meere": [0, 65535], "a meere anatomie": [0, 65535], "meere anatomie a": [0, 65535], "anatomie a mountebanke": [0, 65535], "a mountebanke a": [0, 65535], "mountebanke a thred": [0, 65535], "a thred bare": [0, 65535], "thred bare iugler": [0, 65535], "bare iugler and": [0, 65535], "iugler and a": [0, 65535], "and a fortune": [0, 65535], "a fortune teller": [0, 65535], "fortune teller a": [0, 65535], "teller a needy": [0, 65535], "a needy hollow": [0, 65535], "needy hollow ey'd": [0, 65535], "hollow ey'd sharpe": [0, 65535], "ey'd sharpe looking": [0, 65535], "sharpe looking wretch": [0, 65535], "looking wretch a": [0, 65535], "wretch a liuing": [0, 65535], "a liuing dead": [0, 65535], "liuing dead man": [0, 65535], "dead man this": [0, 65535], "man this pernicious": [0, 65535], "this pernicious slaue": [0, 65535], "pernicious slaue forsooth": [0, 65535], "slaue forsooth tooke": [0, 65535], "forsooth tooke on": [0, 65535], "tooke on him": [0, 65535], "on him as": [0, 65535], "him as a": [0, 65535], "as a coniurer": [0, 65535], "a coniurer and": [0, 65535], "coniurer and gazing": [0, 65535], "and gazing in": [0, 65535], "gazing in mine": [0, 65535], "in mine eyes": [0, 65535], "mine eyes feeling": [0, 65535], "eyes feeling my": [0, 65535], "feeling my pulse": [0, 65535], "my pulse and": [0, 65535], "pulse and with": [0, 65535], "and with no": [0, 65535], "with no face": [0, 65535], "no face as": [0, 65535], "face as 'twere": [0, 65535], "as 'twere out": [0, 65535], "'twere out facing": [0, 65535], "out facing me": [0, 65535], "facing me cries": [0, 65535], "me cries out": [0, 65535], "cries out i": [0, 65535], "out i was": [0, 65535], "i was possest": [0, 65535], "was possest then": [0, 65535], "possest then altogether": [0, 65535], "then altogether they": [0, 65535], "altogether they fell": [0, 65535], "they fell vpon": [0, 65535], "fell vpon me": [0, 65535], "vpon me bound": [0, 65535], "me bound me": [0, 65535], "bound me bore": [0, 65535], "me bore me": [0, 65535], "bore me thence": [0, 65535], "me thence and": [0, 65535], "thence and in": [0, 65535], "and in a": [0, 65535], "in a darke": [0, 65535], "a darke and": [0, 65535], "darke and dankish": [0, 65535], "and dankish vault": [0, 65535], "dankish vault at": [0, 65535], "vault at home": [0, 65535], "at home there": [0, 65535], "home there left": [0, 65535], "there left me": [0, 65535], "left me and": [0, 65535], "me and my": [0, 65535], "and my man": [0, 65535], "my man both": [0, 65535], "man both bound": [0, 65535], "both bound together": [0, 65535], "bound together till": [0, 65535], "together till gnawing": [0, 65535], "till gnawing with": [0, 65535], "gnawing with my": [0, 65535], "with my teeth": [0, 65535], "my teeth my": [0, 65535], "teeth my bonds": [0, 65535], "my bonds in": [0, 65535], "bonds in sunder": [0, 65535], "in sunder i": [0, 65535], "sunder i gain'd": [0, 65535], "i gain'd my": [0, 65535], "gain'd my freedome": [0, 65535], "my freedome and": [0, 65535], "freedome and immediately": [0, 65535], "and immediately ran": [0, 65535], "immediately ran hether": [0, 65535], "ran hether to": [0, 65535], "hether to your": [0, 65535], "to your grace": [0, 65535], "your grace whom": [0, 65535], "grace whom i": [0, 65535], "whom i beseech": [0, 65535], "i beseech to": [0, 65535], "beseech to giue": [0, 65535], "to giue me": [0, 65535], "giue me ample": [0, 65535], "me ample satisfaction": [0, 65535], "ample satisfaction for": [0, 65535], "satisfaction for these": [0, 65535], "for these deepe": [0, 65535], "these deepe shames": [0, 65535], "deepe shames and": [0, 65535], "shames and great": [0, 65535], "and great indignities": [0, 65535], "great indignities gold": [0, 65535], "indignities gold my": [0, 65535], "gold my lord": [0, 65535], "my lord in": [0, 65535], "lord in truth": [0, 65535], "in truth thus": [0, 65535], "truth thus far": [0, 65535], "thus far i": [0, 65535], "far i witnes": [0, 65535], "i witnes with": [0, 65535], "witnes with him": [0, 65535], "with him that": [0, 65535], "that he din'd": [0, 65535], "he din'd not": [0, 65535], "din'd not at": [0, 65535], "not at home": [0, 65535], "at home but": [0, 65535], "home but was": [0, 65535], "but was lock'd": [0, 65535], "was lock'd out": [0, 65535], "lock'd out duke": [0, 65535], "out duke but": [0, 65535], "duke but had": [0, 65535], "but had he": [0, 65535], "had he such": [0, 65535], "he such a": [0, 65535], "such a chaine": [0, 65535], "a chaine of": [0, 65535], "chaine of thee": [0, 65535], "of thee or": [0, 65535], "thee or no": [0, 65535], "or no gold": [0, 65535], "no gold he": [0, 65535], "gold he had": [0, 65535], "he had my": [0, 65535], "had my lord": [0, 65535], "my lord and": [0, 65535], "lord and when": [0, 65535], "when he ran": [0, 65535], "he ran in": [0, 65535], "ran in heere": [0, 65535], "in heere these": [0, 65535], "heere these people": [0, 65535], "these people saw": [0, 65535], "people saw the": [0, 65535], "saw the chaine": [0, 65535], "the chaine about": [0, 65535], "his necke mar": [0, 65535], "necke mar besides": [0, 65535], "mar besides i": [0, 65535], "besides i will": [0, 65535], "i will be": [0, 65535], "will be sworne": [0, 65535], "be sworne these": [0, 65535], "sworne these eares": [0, 65535], "of mine heard": [0, 65535], "mine heard you": [0, 65535], "heard you confesse": [0, 65535], "you confesse you": [0, 65535], "confesse you had": [0, 65535], "you had the": [0, 65535], "chaine of him": [0, 65535], "of him after": [0, 65535], "him after you": [0, 65535], "after you first": [0, 65535], "you first forswore": [0, 65535], "first forswore it": [0, 65535], "forswore it on": [0, 65535], "it on the": [0, 65535], "mart and thereupon": [0, 65535], "and thereupon i": [0, 65535], "thereupon i drew": [0, 65535], "i drew my": [0, 65535], "drew my sword": [0, 65535], "my sword on": [0, 65535], "sword on you": [0, 65535], "then you fled": [0, 65535], "you fled into": [0, 65535], "this abbey heere": [0, 65535], "abbey heere from": [0, 65535], "heere from whence": [0, 65535], "from whence i": [0, 65535], "whence i thinke": [0, 65535], "i thinke you": [0, 65535], "thinke you are": [0, 65535], "you are come": [0, 65535], "are come by": [0, 65535], "come by miracle": [0, 65535], "by miracle e": [0, 65535], "miracle e ant": [0, 65535], "ant i neuer": [0, 65535], "i neuer came": [0, 65535], "neuer came within": [0, 65535], "came within these": [0, 65535], "within these abbey": [0, 65535], "these abbey wals": [0, 65535], "abbey wals nor": [0, 65535], "wals nor euer": [0, 65535], "nor euer didst": [0, 65535], "euer didst thou": [0, 65535], "didst thou draw": [0, 65535], "thou draw thy": [0, 65535], "draw thy sword": [0, 65535], "thy sword on": [0, 65535], "sword on me": [0, 65535], "on me i": [0, 65535], "me i neuer": [0, 65535], "neuer saw the": [0, 65535], "the chaine so": [0, 65535], "chaine so helpe": [0, 65535], "so helpe me": [0, 65535], "helpe me heauen": [0, 65535], "me heauen and": [0, 65535], "heauen and this": [0, 65535], "and this is": [0, 65535], "is false you": [0, 65535], "false you burthen": [0, 65535], "you burthen me": [0, 65535], "burthen me withall": [0, 65535], "me withall duke": [0, 65535], "withall duke why": [0, 65535], "duke why what": [0, 65535], "why what an": [0, 65535], "what an intricate": [0, 65535], "an intricate impeach": [0, 65535], "intricate impeach is": [0, 65535], "impeach is this": [0, 65535], "is this i": [0, 65535], "thinke you all": [0, 65535], "you all haue": [0, 65535], "all haue drunke": [0, 65535], "haue drunke of": [0, 65535], "drunke of circes": [0, 65535], "of circes cup": [0, 65535], "circes cup if": [0, 65535], "cup if heere": [0, 65535], "if heere you": [0, 65535], "heere you hous'd": [0, 65535], "you hous'd him": [0, 65535], "hous'd him heere": [0, 65535], "him heere he": [0, 65535], "heere he would": [0, 65535], "he would haue": [0, 65535], "would haue bin": [0, 65535], "haue bin if": [0, 65535], "bin if he": [0, 65535], "if he were": [0, 65535], "he were mad": [0, 65535], "were mad he": [0, 65535], "mad he would": [0, 65535], "would not pleade": [0, 65535], "not pleade so": [0, 65535], "pleade so coldly": [0, 65535], "so coldly you": [0, 65535], "coldly you say": [0, 65535], "you say he": [0, 65535], "say he din'd": [0, 65535], "he din'd at": [0, 65535], "din'd at home": [0, 65535], "at home the": [0, 65535], "home the goldsmith": [0, 65535], "the goldsmith heere": [0, 65535], "goldsmith heere denies": [0, 65535], "heere denies that": [0, 65535], "denies that saying": [0, 65535], "that saying sirra": [0, 65535], "saying sirra what": [0, 65535], "sirra what say": [0, 65535], "what say you": [0, 65535], "say you e": [0, 65535], "you e dro": [0, 65535], "e dro sir": [0, 65535], "dro sir he": [0, 65535], "sir he din'de": [0, 65535], "he din'de with": [0, 65535], "din'de with her": [0, 65535], "with her there": [0, 65535], "her there at": [0, 65535], "there at the": [0, 65535], "the porpentine cur": [0, 65535], "porpentine cur he": [0, 65535], "cur he did": [0, 65535], "he did and": [0, 65535], "did and from": [0, 65535], "from my finger": [0, 65535], "my finger snacht": [0, 65535], "finger snacht that": [0, 65535], "snacht that ring": [0, 65535], "that ring e": [0, 65535], "ring e anti": [0, 65535], "e anti tis": [0, 65535], "anti tis true": [0, 65535], "tis true my": [0, 65535], "true my liege": [0, 65535], "my liege this": [0, 65535], "liege this ring": [0, 65535], "this ring i": [0, 65535], "ring i had": [0, 65535], "i had of": [0, 65535], "had of her": [0, 65535], "of her duke": [0, 65535], "her duke saw'st": [0, 65535], "duke saw'st thou": [0, 65535], "saw'st thou him": [0, 65535], "thou him enter": [0, 65535], "him enter at": [0, 65535], "enter at the": [0, 65535], "abbey heere curt": [0, 65535], "heere curt as": [0, 65535], "curt as sure": [0, 65535], "as sure my": [0, 65535], "sure my liege": [0, 65535], "my liege as": [0, 65535], "liege as i": [0, 65535], "as i do": [0, 65535], "i do see": [0, 65535], "do see your": [0, 65535], "see your grace": [0, 65535], "your grace duke": [0, 65535], "grace duke why": [0, 65535], "duke why this": [0, 65535], "why this is": [0, 65535], "this is straunge": [0, 65535], "is straunge go": [0, 65535], "straunge go call": [0, 65535], "go call the": [0, 65535], "call the abbesse": [0, 65535], "the abbesse hither": [0, 65535], "abbesse hither i": [0, 65535], "hither i thinke": [0, 65535], "you are all": [0, 65535], "are all mated": [0, 65535], "all mated or": [0, 65535], "mated or starke": [0, 65535], "or starke mad": [0, 65535], "starke mad exit": [0, 65535], "mad exit one": [0, 65535], "exit one to": [0, 65535], "one to the": [0, 65535], "to the abbesse": [0, 65535], "the abbesse fa": [0, 65535], "abbesse fa most": [0, 65535], "fa most mighty": [0, 65535], "most mighty duke": [0, 65535], "mighty duke vouchsafe": [0, 65535], "duke vouchsafe me": [0, 65535], "vouchsafe me speak": [0, 65535], "me speak a": [0, 65535], "a word haply": [0, 65535], "word haply i": [0, 65535], "haply i see": [0, 65535], "see a friend": [0, 65535], "a friend will": [0, 65535], "friend will saue": [0, 65535], "will saue my": [0, 65535], "saue my life": [0, 65535], "my life and": [0, 65535], "life and pay": [0, 65535], "and pay the": [0, 65535], "pay the sum": [0, 65535], "the sum that": [0, 65535], "sum that may": [0, 65535], "that may deliuer": [0, 65535], "may deliuer me": [0, 65535], "deliuer me duke": [0, 65535], "me duke speake": [0, 65535], "duke speake freely": [0, 65535], "speake freely siracusian": [0, 65535], "freely siracusian what": [0, 65535], "siracusian what thou": [0, 65535], "what thou wilt": [0, 65535], "thou wilt fath": [0, 65535], "wilt fath is": [0, 65535], "fath is not": [0, 65535], "is not your": [0, 65535], "not your name": [0, 65535], "your name sir": [0, 65535], "name sir call'd": [0, 65535], "sir call'd antipholus": [0, 65535], "call'd antipholus and": [0, 65535], "antipholus and is": [0, 65535], "and is not": [0, 65535], "is not that": [0, 65535], "not that your": [0, 65535], "that your bondman": [0, 65535], "your bondman dromio": [0, 65535], "bondman dromio e": [0, 65535], "e dro within": [0, 65535], "dro within this": [0, 65535], "within this houre": [0, 65535], "this houre i": [0, 65535], "houre i was": [0, 65535], "i was his": [0, 65535], "was his bondman": [0, 65535], "his bondman sir": [0, 65535], "bondman sir but": [0, 65535], "sir but he": [0, 65535], "but he i": [0, 65535], "he i thanke": [0, 65535], "thanke him gnaw'd": [0, 65535], "him gnaw'd in": [0, 65535], "gnaw'd in two": [0, 65535], "in two my": [0, 65535], "two my cords": [0, 65535], "my cords now": [0, 65535], "cords now am": [0, 65535], "now am i": [0, 65535], "i dromio and": [0, 65535], "dromio and his": [0, 65535], "his man vnbound": [0, 65535], "man vnbound fath": [0, 65535], "vnbound fath i": [0, 65535], "fath i am": [0, 65535], "i am sure": [0, 65535], "am sure you": [0, 65535], "sure you both": [0, 65535], "you both of": [0, 65535], "both of you": [0, 65535], "of you remember": [0, 65535], "you remember me": [0, 65535], "remember me dro": [0, 65535], "me dro our": [0, 65535], "dro our selues": [0, 65535], "our selues we": [0, 65535], "selues we do": [0, 65535], "we do remember": [0, 65535], "do remember sir": [0, 65535], "remember sir by": [0, 65535], "sir by you": [0, 65535], "by you for": [0, 65535], "you for lately": [0, 65535], "for lately we": [0, 65535], "lately we were": [0, 65535], "we were bound": [0, 65535], "were bound as": [0, 65535], "bound as you": [0, 65535], "as you are": [0, 65535], "you are now": [0, 65535], "are now you": [0, 65535], "now you are": [0, 65535], "you are not": [0, 65535], "are not pinches": [0, 65535], "not pinches patient": [0, 65535], "pinches patient are": [0, 65535], "patient are you": [0, 65535], "are you sir": [0, 65535], "you sir father": [0, 65535], "sir father why": [0, 65535], "father why looke": [0, 65535], "why looke you": [0, 65535], "looke you strange": [0, 65535], "you strange on": [0, 65535], "strange on me": [0, 65535], "on me you": [0, 65535], "me you know": [0, 65535], "know me well": [0, 65535], "me well e": [0, 65535], "well e ant": [0, 65535], "neuer saw you": [0, 65535], "saw you in": [0, 65535], "you in my": [0, 65535], "in my life": [0, 65535], "my life till": [0, 65535], "life till now": [0, 65535], "till now fa": [0, 65535], "now fa oh": [0, 65535], "fa oh griefe": [0, 65535], "oh griefe hath": [0, 65535], "griefe hath chang'd": [0, 65535], "hath chang'd me": [0, 65535], "chang'd me since": [0, 65535], "me since you": [0, 65535], "since you saw": [0, 65535], "you saw me": [0, 65535], "saw me last": [0, 65535], "me last and": [0, 65535], "last and carefull": [0, 65535], "and carefull houres": [0, 65535], "carefull houres with": [0, 65535], "houres with times": [0, 65535], "with times deformed": [0, 65535], "times deformed hand": [0, 65535], "deformed hand haue": [0, 65535], "hand haue written": [0, 65535], "haue written strange": [0, 65535], "written strange defeatures": [0, 65535], "strange defeatures in": [0, 65535], "defeatures in my": [0, 65535], "my face but": [0, 65535], "face but tell": [0, 65535], "but tell me": [0, 65535], "tell me yet": [0, 65535], "me yet dost": [0, 65535], "yet dost thou": [0, 65535], "not know my": [0, 65535], "know my voice": [0, 65535], "my voice ant": [0, 65535], "voice ant neither": [0, 65535], "ant neither fat": [0, 65535], "neither fat dromio": [0, 65535], "fat dromio nor": [0, 65535], "dromio nor thou": [0, 65535], "nor thou dro": [0, 65535], "thou dro no": [0, 65535], "dro no trust": [0, 65535], "no trust me": [0, 65535], "trust me sir": [0, 65535], "me sir nor": [0, 65535], "sir nor i": [0, 65535], "nor i fa": [0, 65535], "i fa i": [0, 65535], "fa i am": [0, 65535], "am sure thou": [0, 65535], "sure thou dost": [0, 65535], "thou dost e": [0, 65535], "dost e dromio": [0, 65535], "e dromio i": [0, 65535], "dromio i sir": [0, 65535], "i sir but": [0, 65535], "but i am": [0, 65535], "am sure i": [0, 65535], "sure i do": [0, 65535], "i do not": [0, 65535], "do not and": [0, 65535], "not and whatsoeuer": [0, 65535], "and whatsoeuer a": [0, 65535], "whatsoeuer a man": [0, 65535], "a man denies": [0, 65535], "man denies you": [0, 65535], "denies you are": [0, 65535], "are now bound": [0, 65535], "now bound to": [0, 65535], "bound to beleeue": [0, 65535], "to beleeue him": [0, 65535], "beleeue him fath": [0, 65535], "him fath not": [0, 65535], "fath not know": [0, 65535], "my voice oh": [0, 65535], "voice oh times": [0, 65535], "oh times extremity": [0, 65535], "times extremity hast": [0, 65535], "extremity hast thou": [0, 65535], "hast thou so": [0, 65535], "thou so crack'd": [0, 65535], "so crack'd and": [0, 65535], "crack'd and splitted": [0, 65535], "and splitted my": [0, 65535], "splitted my poore": [0, 65535], "my poore tongue": [0, 65535], "poore tongue in": [0, 65535], "tongue in seuen": [0, 65535], "in seuen short": [0, 65535], "seuen short yeares": [0, 65535], "short yeares that": [0, 65535], "yeares that heere": [0, 65535], "that heere my": [0, 65535], "heere my onely": [0, 65535], "my onely sonne": [0, 65535], "onely sonne knowes": [0, 65535], "sonne knowes not": [0, 65535], "knowes not my": [0, 65535], "not my feeble": [0, 65535], "my feeble key": [0, 65535], "feeble key of": [0, 65535], "key of vntun'd": [0, 65535], "of vntun'd cares": [0, 65535], "vntun'd cares though": [0, 65535], "cares though now": [0, 65535], "though now this": [0, 65535], "now this grained": [0, 65535], "this grained face": [0, 65535], "grained face of": [0, 65535], "face of mine": [0, 65535], "of mine be": [0, 65535], "mine be hid": [0, 65535], "be hid in": [0, 65535], "hid in sap": [0, 65535], "in sap consuming": [0, 65535], "sap consuming winters": [0, 65535], "consuming winters drizled": [0, 65535], "winters drizled snow": [0, 65535], "drizled snow and": [0, 65535], "snow and all": [0, 65535], "all the conduits": [0, 65535], "the conduits of": [0, 65535], "conduits of my": [0, 65535], "of my blood": [0, 65535], "my blood froze": [0, 65535], "blood froze vp": [0, 65535], "froze vp yet": [0, 65535], "vp yet hath": [0, 65535], "yet hath my": [0, 65535], "hath my night": [0, 65535], "my night of": [0, 65535], "night of life": [0, 65535], "of life some": [0, 65535], "life some memorie": [0, 65535], "some memorie my": [0, 65535], "memorie my wasting": [0, 65535], "my wasting lampes": [0, 65535], "wasting lampes some": [0, 65535], "lampes some fading": [0, 65535], "some fading glimmer": [0, 65535], "fading glimmer left": [0, 65535], "glimmer left my": [0, 65535], "left my dull": [0, 65535], "my dull deafe": [0, 65535], "dull deafe eares": [0, 65535], "deafe eares a": [0, 65535], "eares a little": [0, 65535], "a little vse": [0, 65535], "little vse to": [0, 65535], "vse to heare": [0, 65535], "to heare all": [0, 65535], "heare all these": [0, 65535], "all these old": [0, 65535], "these old witnesses": [0, 65535], "old witnesses i": [0, 65535], "witnesses i cannot": [0, 65535], "i cannot erre": [0, 65535], "cannot erre tell": [0, 65535], "erre tell me": [0, 65535], "tell me thou": [0, 65535], "me thou art": [0, 65535], "art my sonne": [0, 65535], "sonne antipholus ant": [0, 65535], "antipholus ant i": [0, 65535], "neuer saw my": [0, 65535], "saw my father": [0, 65535], "my father in": [0, 65535], "father in my": [0, 65535], "my life fa": [0, 65535], "life fa but": [0, 65535], "fa but seuen": [0, 65535], "but seuen yeares": [0, 65535], "seuen yeares since": [0, 65535], "yeares since in": [0, 65535], "since in siracusa": [0, 65535], "in siracusa boy": [0, 65535], "siracusa boy thou": [0, 65535], "boy thou know'st": [0, 65535], "thou know'st we": [0, 65535], "know'st we parted": [0, 65535], "we parted but": [0, 65535], "parted but perhaps": [0, 65535], "but perhaps my": [0, 65535], "perhaps my sonne": [0, 65535], "my sonne thou": [0, 65535], "sonne thou sham'st": [0, 65535], "thou sham'st to": [0, 65535], "sham'st to acknowledge": [0, 65535], "to acknowledge me": [0, 65535], "acknowledge me in": [0, 65535], "me in miserie": [0, 65535], "in miserie ant": [0, 65535], "miserie ant the": [0, 65535], "ant the duke": [0, 65535], "the duke and": [0, 65535], "duke and all": [0, 65535], "and all that": [0, 65535], "all that know": [0, 65535], "that know me": [0, 65535], "know me in": [0, 65535], "in the city": [0, 65535], "the city can": [0, 65535], "city can witnesse": [0, 65535], "can witnesse with": [0, 65535], "witnesse with me": [0, 65535], "me that it": [0, 65535], "that it is": [0, 65535], "is not so": [0, 65535], "not so i": [0, 65535], "so i ne're": [0, 65535], "i ne're saw": [0, 65535], "ne're saw siracusa": [0, 65535], "saw siracusa in": [0, 65535], "siracusa in my": [0, 65535], "my life duke": [0, 65535], "life duke i": [0, 65535], "duke i tell": [0, 65535], "i tell thee": [0, 65535], "tell thee siracusian": [0, 65535], "thee siracusian twentie": [0, 65535], "siracusian twentie yeares": [0, 65535], "twentie yeares haue": [0, 65535], "yeares haue i": [0, 65535], "haue i bin": [0, 65535], "i bin patron": [0, 65535], "bin patron to": [0, 65535], "patron to antipholus": [0, 65535], "to antipholus during": [0, 65535], "antipholus during which": [0, 65535], "during which time": [0, 65535], "which time he": [0, 65535], "time he ne're": [0, 65535], "he ne're saw": [0, 65535], "saw siracusa i": [0, 65535], "siracusa i see": [0, 65535], "i see thy": [0, 65535], "see thy age": [0, 65535], "thy age and": [0, 65535], "age and dangers": [0, 65535], "and dangers make": [0, 65535], "dangers make thee": [0, 65535], "make thee dote": [0, 65535], "thee dote enter": [0, 65535], "dote enter the": [0, 65535], "enter the abbesse": [0, 65535], "the abbesse with": [0, 65535], "abbesse with antipholus": [0, 65535], "with antipholus siracusa": [0, 65535], "antipholus siracusa and": [0, 65535], "siracusa and dromio": [0, 65535], "and dromio sir": [0, 65535], "dromio sir abbesse": [0, 65535], "sir abbesse most": [0, 65535], "abbesse most mightie": [0, 65535], "most mightie duke": [0, 65535], "mightie duke behold": [0, 65535], "duke behold a": [0, 65535], "behold a man": [0, 65535], "a man much": [0, 65535], "man much wrong'd": [0, 65535], "much wrong'd all": [0, 65535], "wrong'd all gather": [0, 65535], "all gather to": [0, 65535], "gather to see": [0, 65535], "to see them": [0, 65535], "see them adr": [0, 65535], "them adr i": [0, 65535], "adr i see": [0, 65535], "i see two": [0, 65535], "see two husbands": [0, 65535], "two husbands or": [0, 65535], "husbands or mine": [0, 65535], "or mine eyes": [0, 65535], "mine eyes deceiue": [0, 65535], "eyes deceiue me": [0, 65535], "deceiue me duke": [0, 65535], "me duke one": [0, 65535], "duke one of": [0, 65535], "of these men": [0, 65535], "these men is": [0, 65535], "men is genius": [0, 65535], "is genius to": [0, 65535], "genius to the": [0, 65535], "to the other": [0, 65535], "the other and": [0, 65535], "other and so": [0, 65535], "and so of": [0, 65535], "so of these": [0, 65535], "of these which": [0, 65535], "these which is": [0, 65535], "which is the": [0, 65535], "is the naturall": [0, 65535], "the naturall man": [0, 65535], "naturall man and": [0, 65535], "man and which": [0, 65535], "and which the": [0, 65535], "which the spirit": [0, 65535], "the spirit who": [0, 65535], "spirit who deciphers": [0, 65535], "who deciphers them": [0, 65535], "deciphers them s": [0, 65535], "them s dromio": [0, 65535], "s dromio i": [0, 65535], "i sir am": [0, 65535], "sir am dromio": [0, 65535], "am dromio command": [0, 65535], "dromio command him": [0, 65535], "command him away": [0, 65535], "him away e": [0, 65535], "away e dro": [0, 65535], "am dromio pray": [0, 65535], "dromio pray let": [0, 65535], "pray let me": [0, 65535], "let me stay": [0, 65535], "me stay s": [0, 65535], "stay s ant": [0, 65535], "s ant egeon": [0, 65535], "ant egeon art": [0, 65535], "egeon art thou": [0, 65535], "art thou not": [0, 65535], "thou not or": [0, 65535], "not or else": [0, 65535], "or else his": [0, 65535], "else his ghost": [0, 65535], "his ghost s": [0, 65535], "ghost s drom": [0, 65535], "s drom oh": [0, 65535], "drom oh my": [0, 65535], "oh my olde": [0, 65535], "my olde master": [0, 65535], "olde master who": [0, 65535], "master who hath": [0, 65535], "who hath bound": [0, 65535], "hath bound him": [0, 65535], "bound him heere": [0, 65535], "him heere abb": [0, 65535], "heere abb who": [0, 65535], "abb who euer": [0, 65535], "who euer bound": [0, 65535], "euer bound him": [0, 65535], "bound him i": [0, 65535], "him i will": [0, 65535], "i will lose": [0, 65535], "will lose his": [0, 65535], "lose his bonds": [0, 65535], "his bonds and": [0, 65535], "bonds and gaine": [0, 65535], "and gaine a": [0, 65535], "gaine a husband": [0, 65535], "a husband by": [0, 65535], "husband by his": [0, 65535], "by his libertie": [0, 65535], "his libertie speake": [0, 65535], "libertie speake olde": [0, 65535], "speake olde egeon": [0, 65535], "olde egeon if": [0, 65535], "egeon if thou": [0, 65535], "if thou bee'st": [0, 65535], "thou bee'st the": [0, 65535], "bee'st the man": [0, 65535], "the man that": [0, 65535], "man that hadst": [0, 65535], "that hadst a": [0, 65535], "hadst a wife": [0, 65535], "a wife once": [0, 65535], "wife once call'd": [0, 65535], "once call'd \u00e6milia": [0, 65535], "call'd \u00e6milia that": [0, 65535], "\u00e6milia that bore": [0, 65535], "that bore thee": [0, 65535], "bore thee at": [0, 65535], "thee at a": [0, 65535], "at a burthen": [0, 65535], "a burthen two": [0, 65535], "burthen two faire": [0, 65535], "two faire sonnes": [0, 65535], "faire sonnes oh": [0, 65535], "sonnes oh if": [0, 65535], "oh if thou": [0, 65535], "bee'st the same": [0, 65535], "the same egeon": [0, 65535], "same egeon speake": [0, 65535], "egeon speake and": [0, 65535], "speake and speake": [0, 65535], "and speake vnto": [0, 65535], "speake vnto the": [0, 65535], "vnto the same": [0, 65535], "the same \u00e6milia": [0, 65535], "same \u00e6milia duke": [0, 65535], "\u00e6milia duke why": [0, 65535], "duke why heere": [0, 65535], "why heere begins": [0, 65535], "heere begins his": [0, 65535], "begins his morning": [0, 65535], "his morning storie": [0, 65535], "morning storie right": [0, 65535], "storie right these": [0, 65535], "right these twoantipholus": [0, 65535], "these twoantipholus these": [0, 65535], "twoantipholus these two": [0, 65535], "these two so": [0, 65535], "two so like": [0, 65535], "so like and": [0, 65535], "like and these": [0, 65535], "and these two": [0, 65535], "these two dromio's": [0, 65535], "two dromio's one": [0, 65535], "dromio's one in": [0, 65535], "one in semblance": [0, 65535], "in semblance besides": [0, 65535], "semblance besides her": [0, 65535], "besides her vrging": [0, 65535], "her vrging of": [0, 65535], "vrging of her": [0, 65535], "of her wracke": [0, 65535], "her wracke at": [0, 65535], "wracke at sea": [0, 65535], "at sea these": [0, 65535], "sea these are": [0, 65535], "these are the": [0, 65535], "are the parents": [0, 65535], "the parents to": [0, 65535], "parents to these": [0, 65535], "to these children": [0, 65535], "these children which": [0, 65535], "children which accidentally": [0, 65535], "which accidentally are": [0, 65535], "accidentally are met": [0, 65535], "are met together": [0, 65535], "met together fa": [0, 65535], "together fa if": [0, 65535], "fa if i": [0, 65535], "if i dreame": [0, 65535], "i dreame not": [0, 65535], "dreame not thou": [0, 65535], "not thou art": [0, 65535], "thou art \u00e6milia": [0, 65535], "art \u00e6milia if": [0, 65535], "\u00e6milia if thou": [0, 65535], "thou art she": [0, 65535], "art she tell": [0, 65535], "she tell me": [0, 65535], "tell me where": [0, 65535], "me where is": [0, 65535], "where is that": [0, 65535], "is that sonne": [0, 65535], "that sonne that": [0, 65535], "sonne that floated": [0, 65535], "that floated with": [0, 65535], "floated with thee": [0, 65535], "with thee on": [0, 65535], "thee on the": [0, 65535], "on the fatall": [0, 65535], "the fatall rafte": [0, 65535], "fatall rafte abb": [0, 65535], "rafte abb by": [0, 65535], "abb by men": [0, 65535], "by men of": [0, 65535], "men of epidamium": [0, 65535], "of epidamium he": [0, 65535], "epidamium he and": [0, 65535], "he and i": [0, 65535], "and i and": [0, 65535], "i and the": [0, 65535], "and the twin": [0, 65535], "the twin dromio": [0, 65535], "twin dromio all": [0, 65535], "dromio all were": [0, 65535], "all were taken": [0, 65535], "were taken vp": [0, 65535], "taken vp but": [0, 65535], "vp but by": [0, 65535], "and by rude": [0, 65535], "by rude fishermen": [0, 65535], "rude fishermen of": [0, 65535], "fishermen of corinth": [0, 65535], "of corinth by": [0, 65535], "corinth by force": [0, 65535], "by force tooke": [0, 65535], "force tooke dromio": [0, 65535], "tooke dromio and": [0, 65535], "dromio and my": [0, 65535], "and my sonne": [0, 65535], "my sonne from": [0, 65535], "sonne from them": [0, 65535], "from them and": [0, 65535], "them and me": [0, 65535], "and me they": [0, 65535], "me they left": [0, 65535], "they left with": [0, 65535], "left with those": [0, 65535], "with those of": [0, 65535], "those of epidamium": [0, 65535], "of epidamium what": [0, 65535], "epidamium what then": [0, 65535], "what then became": [0, 65535], "then became of": [0, 65535], "became of them": [0, 65535], "of them i": [0, 65535], "them i cannot": [0, 65535], "cannot tell i": [0, 65535], "tell i to": [0, 65535], "i to this": [0, 65535], "to this fortune": [0, 65535], "this fortune that": [0, 65535], "fortune that you": [0, 65535], "that you see": [0, 65535], "you see mee": [0, 65535], "see mee in": [0, 65535], "mee in duke": [0, 65535], "in duke antipholus": [0, 65535], "duke antipholus thou": [0, 65535], "antipholus thou cam'st": [0, 65535], "thou cam'st from": [0, 65535], "cam'st from corinth": [0, 65535], "from corinth first": [0, 65535], "corinth first s": [0, 65535], "first s ant": [0, 65535], "s ant no": [0, 65535], "ant no sir": [0, 65535], "no sir not": [0, 65535], "sir not i": [0, 65535], "not i i": [0, 65535], "i i came": [0, 65535], "i came from": [0, 65535], "came from siracuse": [0, 65535], "from siracuse duke": [0, 65535], "siracuse duke stay": [0, 65535], "duke stay stand": [0, 65535], "stay stand apart": [0, 65535], "stand apart i": [0, 65535], "apart i know": [0, 65535], "know not which": [0, 65535], "not which is": [0, 65535], "which is which": [0, 65535], "is which e": [0, 65535], "which e ant": [0, 65535], "ant i came": [0, 65535], "came from corinth": [0, 65535], "from corinth my": [0, 65535], "corinth my most": [0, 65535], "my most gracious": [0, 65535], "most gracious lord": [0, 65535], "gracious lord e": [0, 65535], "lord e dro": [0, 65535], "e dro and": [0, 65535], "dro and i": [0, 65535], "and i with": [0, 65535], "i with him": [0, 65535], "with him e": [0, 65535], "him e ant": [0, 65535], "e ant brought": [0, 65535], "ant brought to": [0, 65535], "brought to this": [0, 65535], "to this town": [0, 65535], "this town by": [0, 65535], "town by that": [0, 65535], "by that most": [0, 65535], "that most famous": [0, 65535], "most famous warriour": [0, 65535], "famous warriour duke": [0, 65535], "warriour duke menaphon": [0, 65535], "duke menaphon your": [0, 65535], "menaphon your most": [0, 65535], "your most renowned": [0, 65535], "most renowned vnckle": [0, 65535], "renowned vnckle adr": [0, 65535], "vnckle adr which": [0, 65535], "adr which of": [0, 65535], "which of you": [0, 65535], "of you two": [0, 65535], "you two did": [0, 65535], "two did dine": [0, 65535], "did dine with": [0, 65535], "dine with me": [0, 65535], "me to day": [0, 65535], "day s ant": [0, 65535], "s ant i": [0, 65535], "ant i gentle": [0, 65535], "i gentle mistris": [0, 65535], "gentle mistris adr": [0, 65535], "mistris adr and": [0, 65535], "adr and are": [0, 65535], "and are not": [0, 65535], "are not you": [0, 65535], "not you my": [0, 65535], "you my husband": [0, 65535], "my husband e": [0, 65535], "husband e ant": [0, 65535], "e ant no": [0, 65535], "ant no i": [0, 65535], "no i say": [0, 65535], "i say nay": [0, 65535], "say nay to": [0, 65535], "nay to that": [0, 65535], "to that s": [0, 65535], "that s ant": [0, 65535], "s ant and": [0, 65535], "ant and so": [0, 65535], "and so do": [0, 65535], "so do i": [0, 65535], "do i yet": [0, 65535], "i yet did": [0, 65535], "yet did she": [0, 65535], "did she call": [0, 65535], "she call me": [0, 65535], "call me so": [0, 65535], "so and this": [0, 65535], "and this faire": [0, 65535], "this faire gentlewoman": [0, 65535], "faire gentlewoman her": [0, 65535], "gentlewoman her sister": [0, 65535], "her sister heere": [0, 65535], "sister heere did": [0, 65535], "heere did call": [0, 65535], "did call me": [0, 65535], "call me brother": [0, 65535], "me brother what": [0, 65535], "brother what i": [0, 65535], "what i told": [0, 65535], "i told you": [0, 65535], "told you then": [0, 65535], "you then i": [0, 65535], "then i hope": [0, 65535], "i hope i": [0, 65535], "hope i shall": [0, 65535], "shall haue leisure": [0, 65535], "haue leisure to": [0, 65535], "leisure to make": [0, 65535], "to make good": [0, 65535], "make good if": [0, 65535], "good if this": [0, 65535], "if this be": [0, 65535], "this be not": [0, 65535], "be not a": [0, 65535], "not a dreame": [0, 65535], "a dreame i": [0, 65535], "dreame i see": [0, 65535], "i see and": [0, 65535], "see and heare": [0, 65535], "and heare goldsmith": [0, 65535], "heare goldsmith that": [0, 65535], "goldsmith that is": [0, 65535], "is the chaine": [0, 65535], "the chaine sir": [0, 65535], "chaine sir which": [0, 65535], "sir which you": [0, 65535], "which you had": [0, 65535], "had of mee": [0, 65535], "of mee s": [0, 65535], "mee s ant": [0, 65535], "i thinke it": [0, 65535], "thinke it be": [0, 65535], "sir i denie": [0, 65535], "i denie it": [0, 65535], "denie it not": [0, 65535], "it not e": [0, 65535], "not e ant": [0, 65535], "e ant and": [0, 65535], "ant and you": [0, 65535], "and you sir": [0, 65535], "you sir for": [0, 65535], "for this chaine": [0, 65535], "this chaine arrested": [0, 65535], "chaine arrested me": [0, 65535], "arrested me gold": [0, 65535], "me gold i": [0, 65535], "gold i thinke": [0, 65535], "thinke i did": [0, 65535], "i did sir": [0, 65535], "did sir i": [0, 65535], "sir i deny": [0, 65535], "i deny it": [0, 65535], "deny it not": [0, 65535], "it not adr": [0, 65535], "not adr i": [0, 65535], "adr i sent": [0, 65535], "i sent you": [0, 65535], "sent you monie": [0, 65535], "you monie sir": [0, 65535], "monie sir to": [0, 65535], "sir to be": [0, 65535], "to be your": [0, 65535], "be your baile": [0, 65535], "your baile by": [0, 65535], "baile by dromio": [0, 65535], "by dromio but": [0, 65535], "dromio but i": [0, 65535], "but i thinke": [0, 65535], "thinke he brought": [0, 65535], "he brought it": [0, 65535], "brought it not": [0, 65535], "not e dro": [0, 65535], "e dro no": [0, 65535], "dro no none": [0, 65535], "no none by": [0, 65535], "none by me": [0, 65535], "by me s": [0, 65535], "me s ant": [0, 65535], "s ant this": [0, 65535], "ant this purse": [0, 65535], "this purse of": [0, 65535], "purse of duckets": [0, 65535], "of duckets i": [0, 65535], "duckets i receiu'd": [0, 65535], "i receiu'd from": [0, 65535], "receiu'd from you": [0, 65535], "from you and": [0, 65535], "you and dromio": [0, 65535], "and dromio my": [0, 65535], "dromio my man": [0, 65535], "my man did": [0, 65535], "man did bring": [0, 65535], "did bring them": [0, 65535], "bring them me": [0, 65535], "them me i": [0, 65535], "me i see": [0, 65535], "i see we": [0, 65535], "see we still": [0, 65535], "we still did": [0, 65535], "still did meete": [0, 65535], "did meete each": [0, 65535], "meete each others": [0, 65535], "each others man": [0, 65535], "others man and": [0, 65535], "man and i": [0, 65535], "and i was": [0, 65535], "i was tane": [0, 65535], "was tane for": [0, 65535], "tane for him": [0, 65535], "for him and": [0, 65535], "and he for": [0, 65535], "he for me": [0, 65535], "for me and": [0, 65535], "me and thereupon": [0, 65535], "and thereupon these": [0, 65535], "thereupon these errors": [0, 65535], "these errors are": [0, 65535], "errors are arose": [0, 65535], "are arose e": [0, 65535], "arose e ant": [0, 65535], "e ant these": [0, 65535], "ant these duckets": [0, 65535], "these duckets pawne": [0, 65535], "duckets pawne i": [0, 65535], "pawne i for": [0, 65535], "i for my": [0, 65535], "for my father": [0, 65535], "my father heere": [0, 65535], "father heere duke": [0, 65535], "heere duke it": [0, 65535], "duke it shall": [0, 65535], "it shall not": [0, 65535], "shall not neede": [0, 65535], "not neede thy": [0, 65535], "neede thy father": [0, 65535], "thy father hath": [0, 65535], "father hath his": [0, 65535], "hath his life": [0, 65535], "his life cur": [0, 65535], "life cur sir": [0, 65535], "cur sir i": [0, 65535], "sir i must": [0, 65535], "i must haue": [0, 65535], "must haue that": [0, 65535], "haue that diamond": [0, 65535], "that diamond from": [0, 65535], "diamond from you": [0, 65535], "from you e": [0, 65535], "you e ant": [0, 65535], "e ant there": [0, 65535], "ant there take": [0, 65535], "there take it": [0, 65535], "take it and": [0, 65535], "it and much": [0, 65535], "and much thanks": [0, 65535], "much thanks for": [0, 65535], "thanks for my": [0, 65535], "for my good": [0, 65535], "my good cheere": [0, 65535], "good cheere abb": [0, 65535], "cheere abb renowned": [0, 65535], "abb renowned duke": [0, 65535], "renowned duke vouchsafe": [0, 65535], "duke vouchsafe to": [0, 65535], "vouchsafe to take": [0, 65535], "to take the": [0, 65535], "take the paines": [0, 65535], "the paines to": [0, 65535], "paines to go": [0, 65535], "to go with": [0, 65535], "go with vs": [0, 65535], "with vs into": [0, 65535], "vs into the": [0, 65535], "into the abbey": [0, 65535], "heere and heare": [0, 65535], "and heare at": [0, 65535], "heare at large": [0, 65535], "at large discoursed": [0, 65535], "large discoursed all": [0, 65535], "discoursed all our": [0, 65535], "all our fortunes": [0, 65535], "our fortunes and": [0, 65535], "fortunes and all": [0, 65535], "all that are": [0, 65535], "that are assembled": [0, 65535], "are assembled in": [0, 65535], "assembled in this": [0, 65535], "in this place": [0, 65535], "this place that": [0, 65535], "place that by": [0, 65535], "that by this": [0, 65535], "by this simpathized": [0, 65535], "this simpathized one": [0, 65535], "simpathized one daies": [0, 65535], "one daies error": [0, 65535], "daies error haue": [0, 65535], "error haue suffer'd": [0, 65535], "haue suffer'd wrong": [0, 65535], "suffer'd wrong goe": [0, 65535], "wrong goe keepe": [0, 65535], "goe keepe vs": [0, 65535], "keepe vs companie": [0, 65535], "vs companie and": [0, 65535], "companie and we": [0, 65535], "and we shall": [0, 65535], "we shall make": [0, 65535], "shall make full": [0, 65535], "make full satisfaction": [0, 65535], "full satisfaction thirtie": [0, 65535], "satisfaction thirtie three": [0, 65535], "thirtie three yeares": [0, 65535], "three yeares haue": [0, 65535], "haue i but": [0, 65535], "i but gone": [0, 65535], "but gone in": [0, 65535], "gone in trauaile": [0, 65535], "in trauaile of": [0, 65535], "trauaile of you": [0, 65535], "of you my": [0, 65535], "you my sonnes": [0, 65535], "my sonnes and": [0, 65535], "sonnes and till": [0, 65535], "and till this": [0, 65535], "till this present": [0, 65535], "this present houre": [0, 65535], "present houre my": [0, 65535], "houre my heauie": [0, 65535], "my heauie burthen": [0, 65535], "heauie burthen are": [0, 65535], "burthen are deliuered": [0, 65535], "are deliuered the": [0, 65535], "deliuered the duke": [0, 65535], "the duke my": [0, 65535], "duke my husband": [0, 65535], "my husband and": [0, 65535], "husband and my": [0, 65535], "and my children": [0, 65535], "my children both": [0, 65535], "children both and": [0, 65535], "both and you": [0, 65535], "and you the": [0, 65535], "you the kalenders": [0, 65535], "the kalenders of": [0, 65535], "kalenders of their": [0, 65535], "of their natiuity": [0, 65535], "their natiuity go": [0, 65535], "natiuity go to": [0, 65535], "go to a": [0, 65535], "to a gossips": [0, 65535], "a gossips feast": [0, 65535], "gossips feast and": [0, 65535], "feast and go": [0, 65535], "and go with": [0, 65535], "go with mee": [0, 65535], "with mee after": [0, 65535], "mee after so": [0, 65535], "after so long": [0, 65535], "so long greefe": [0, 65535], "long greefe such": [0, 65535], "greefe such natiuitie": [0, 65535], "such natiuitie duke": [0, 65535], "natiuitie duke with": [0, 65535], "duke with all": [0, 65535], "with all my": [0, 65535], "all my heart": [0, 65535], "my heart ile": [0, 65535], "heart ile gossip": [0, 65535], "ile gossip at": [0, 65535], "gossip at this": [0, 65535], "at this feast": [0, 65535], "this feast exeunt": [0, 65535], "feast exeunt omnes": [0, 65535], "exeunt omnes manet": [0, 65535], "omnes manet the": [0, 65535], "manet the two": [0, 65535], "the two dromio's": [0, 65535], "two dromio's and": [0, 65535], "dromio's and two": [0, 65535], "and two brothers": [0, 65535], "two brothers s": [0, 65535], "brothers s dro": [0, 65535], "s dro mast": [0, 65535], "dro mast shall": [0, 65535], "mast shall i": [0, 65535], "shall i fetch": [0, 65535], "i fetch your": [0, 65535], "fetch your stuffe": [0, 65535], "your stuffe from": [0, 65535], "stuffe from shipbord": [0, 65535], "from shipbord e": [0, 65535], "shipbord e an": [0, 65535], "e an dromio": [0, 65535], "an dromio what": [0, 65535], "dromio what stuffe": [0, 65535], "what stuffe of": [0, 65535], "stuffe of mine": [0, 65535], "of mine hast": [0, 65535], "mine hast thou": [0, 65535], "hast thou imbarkt": [0, 65535], "thou imbarkt s": [0, 65535], "imbarkt s dro": [0, 65535], "s dro your": [0, 65535], "dro your goods": [0, 65535], "your goods that": [0, 65535], "goods that lay": [0, 65535], "that lay at": [0, 65535], "lay at host": [0, 65535], "at host sir": [0, 65535], "host sir in": [0, 65535], "sir in the": [0, 65535], "in the centaur": [0, 65535], "the centaur s": [0, 65535], "centaur s ant": [0, 65535], "s ant he": [0, 65535], "ant he speakes": [0, 65535], "he speakes to": [0, 65535], "speakes to me": [0, 65535], "me i am": [0, 65535], "i am your": [0, 65535], "am your master": [0, 65535], "your master dromio": [0, 65535], "master dromio come": [0, 65535], "dromio come go": [0, 65535], "come go with": [0, 65535], "with vs wee'l": [0, 65535], "vs wee'l looke": [0, 65535], "wee'l looke to": [0, 65535], "looke to that": [0, 65535], "to that anon": [0, 65535], "that anon embrace": [0, 65535], "anon embrace thy": [0, 65535], "embrace thy brother": [0, 65535], "thy brother there": [0, 65535], "brother there reioyce": [0, 65535], "there reioyce with": [0, 65535], "reioyce with him": [0, 65535], "with him exit": [0, 65535], "him exit s": [0, 65535], "exit s dro": [0, 65535], "s dro there": [0, 65535], "dro there is": [0, 65535], "there is a": [0, 65535], "is a fat": [0, 65535], "a fat friend": [0, 65535], "fat friend at": [0, 65535], "friend at your": [0, 65535], "at your masters": [0, 65535], "your masters house": [0, 65535], "masters house that": [0, 65535], "house that kitchin'd": [0, 65535], "that kitchin'd me": [0, 65535], "kitchin'd me for": [0, 65535], "me for you": [0, 65535], "for you to": [0, 65535], "to day at": [0, 65535], "day at dinner": [0, 65535], "at dinner she": [0, 65535], "dinner she now": [0, 65535], "she now shall": [0, 65535], "now shall be": [0, 65535], "shall be my": [0, 65535], "be my sister": [0, 65535], "my sister not": [0, 65535], "sister not my": [0, 65535], "not my wife": [0, 65535], "my wife e": [0, 65535], "wife e d": [0, 65535], "e d me": [0, 65535], "d me thinks": [0, 65535], "me thinks you": [0, 65535], "thinks you are": [0, 65535], "you are my": [0, 65535], "are my glasse": [0, 65535], "my glasse not": [0, 65535], "glasse not my": [0, 65535], "not my brother": [0, 65535], "my brother i": [0, 65535], "brother i see": [0, 65535], "i see by": [0, 65535], "see by you": [0, 65535], "by you i": [0, 65535], "you i am": [0, 65535], "am a sweet": [0, 65535], "a sweet fac'd": [0, 65535], "sweet fac'd youth": [0, 65535], "fac'd youth will": [0, 65535], "youth will you": [0, 65535], "will you walke": [0, 65535], "you walke in": [0, 65535], "walke in to": [0, 65535], "in to see": [0, 65535], "to see their": [0, 65535], "see their gossipping": [0, 65535], "their gossipping s": [0, 65535], "gossipping s dro": [0, 65535], "dro not i": [0, 65535], "not i sir": [0, 65535], "i sir you": [0, 65535], "sir you are": [0, 65535], "are my elder": [0, 65535], "my elder e": [0, 65535], "elder e dro": [0, 65535], "e dro that's": [0, 65535], "dro that's a": [0, 65535], "that's a question": [0, 65535], "a question how": [0, 65535], "question how shall": [0, 65535], "how shall we": [0, 65535], "shall we trie": [0, 65535], "we trie it": [0, 65535], "trie it s": [0, 65535], "s dro wee'l": [0, 65535], "dro wee'l draw": [0, 65535], "wee'l draw cuts": [0, 65535], "draw cuts for": [0, 65535], "cuts for the": [0, 65535], "for the signior": [0, 65535], "the signior till": [0, 65535], "signior till then": [0, 65535], "till then lead": [0, 65535], "then lead thou": [0, 65535], "lead thou first": [0, 65535], "thou first e": [0, 65535], "first e dro": [0, 65535], "dro nay then": [0, 65535], "nay then thus": [0, 65535], "then thus we": [0, 65535], "thus we came": [0, 65535], "we came into": [0, 65535], "came into the": [0, 65535], "into the world": [0, 65535], "the world like": [0, 65535], "world like brother": [0, 65535], "like brother and": [0, 65535], "brother and brother": [0, 65535], "and brother and": [0, 65535], "brother and now": [0, 65535], "and now let's": [0, 65535], "now let's go": [0, 65535], "let's go hand": [0, 65535], "go hand in": [0, 65535], "hand in hand": [0, 65535], "in hand not": [0, 65535], "hand not one": [0, 65535], "not one before": [0, 65535], "one before another": [0, 65535], "before another exeunt": [0, 65535], "another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima": [0, 65535], "quintus sc\u0153na prima enter": [0, 65535], "sc\u0153na prima enter the": [0, 65535], "prima enter the merchant": [0, 65535], "enter the merchant and": [0, 65535], "the merchant and the": [0, 65535], "merchant and the goldsmith": [0, 65535], "and the goldsmith gold": [0, 65535], "the goldsmith gold i": [0, 65535], "goldsmith gold i am": [0, 65535], "gold i am sorry": [0, 65535], "i am sorry sir": [0, 65535], "am sorry sir that": [0, 65535], "sorry sir that i": [0, 65535], "sir that i haue": [0, 65535], "that i haue hindred": [0, 65535], "i haue hindred you": [0, 65535], "haue hindred you but": [0, 65535], "hindred you but i": [0, 65535], "you but i protest": [0, 65535], "but i protest he": [0, 65535], "i protest he had": [0, 65535], "protest he had the": [0, 65535], "he had the chaine": [0, 65535], "had the chaine of": [0, 65535], "the chaine of me": [0, 65535], "chaine of me though": [0, 65535], "of me though most": [0, 65535], "me though most dishonestly": [0, 65535], "though most dishonestly he": [0, 65535], "most dishonestly he doth": [0, 65535], "dishonestly he doth denie": [0, 65535], "he doth denie it": [0, 65535], "doth denie it mar": [0, 65535], "denie it mar how": [0, 65535], "it mar how is": [0, 65535], "mar how is the": [0, 65535], "how is the man": [0, 65535], "is the man esteem'd": [0, 65535], "the man esteem'd heere": [0, 65535], "man esteem'd heere in": [0, 65535], "esteem'd heere in the": [0, 65535], "heere in the citie": [0, 65535], "in the citie gold": [0, 65535], "the citie gold of": [0, 65535], "citie gold of very": [0, 65535], "gold of very reuerent": [0, 65535], "of very reuerent reputation": [0, 65535], "very reuerent reputation sir": [0, 65535], "reuerent reputation sir of": [0, 65535], "reputation sir of credit": [0, 65535], "sir of credit infinite": [0, 65535], "of credit infinite highly": [0, 65535], "credit infinite highly belou'd": [0, 65535], "infinite highly belou'd second": [0, 65535], "highly belou'd second to": [0, 65535], "belou'd second to none": [0, 65535], "second to none that": [0, 65535], "to none that liues": [0, 65535], "none that liues heere": [0, 65535], "that liues heere in": [0, 65535], "liues heere in the": [0, 65535], "in the citie his": [0, 65535], "the citie his word": [0, 65535], "citie his word might": [0, 65535], "his word might beare": [0, 65535], "word might beare my": [0, 65535], "might beare my wealth": [0, 65535], "beare my wealth at": [0, 65535], "my wealth at any": [0, 65535], "wealth at any time": [0, 65535], "at any time mar": [0, 65535], "any time mar speake": [0, 65535], "time mar speake softly": [0, 65535], "mar speake softly yonder": [0, 65535], "speake softly yonder as": [0, 65535], "softly yonder as i": [0, 65535], "yonder as i thinke": [0, 65535], "as i thinke he": [0, 65535], "i thinke he walkes": [0, 65535], "thinke he walkes enter": [0, 65535], "he walkes enter antipholus": [0, 65535], "walkes enter antipholus and": [0, 65535], "enter antipholus and dromio": [0, 65535], "antipholus and dromio againe": [0, 65535], "and dromio againe gold": [0, 65535], "dromio againe gold 'tis": [0, 65535], "againe gold 'tis so": [0, 65535], "gold 'tis so and": [0, 65535], "'tis so and that": [0, 65535], "so and that selfe": [0, 65535], "and that selfe chaine": [0, 65535], "that selfe chaine about": [0, 65535], "selfe chaine about his": [0, 65535], "chaine about his necke": [0, 65535], "about his necke which": [0, 65535], "his necke which he": [0, 65535], "necke which he forswore": [0, 65535], "which he forswore most": [0, 65535], "he forswore most monstrously": [0, 65535], "forswore most monstrously to": [0, 65535], "most monstrously to haue": [0, 65535], "monstrously to haue good": [0, 65535], "to haue good sir": [0, 65535], "haue good sir draw": [0, 65535], "good sir draw neere": [0, 65535], "sir draw neere to": [0, 65535], "draw neere to me": [0, 65535], "neere to me ile": [0, 65535], "to me ile speake": [0, 65535], "me ile speake to": [0, 65535], "ile speake to him": [0, 65535], "speake to him signior": [0, 65535], "to him signior antipholus": [0, 65535], "him signior antipholus i": [0, 65535], "signior antipholus i wonder": [0, 65535], "antipholus i wonder much": [0, 65535], "i wonder much that": [0, 65535], "wonder much that you": [0, 65535], "much that you would": [0, 65535], "that you would put": [0, 65535], "you would put me": [0, 65535], "would put me to": [0, 65535], "put me to this": [0, 65535], "me to this shame": [0, 65535], "to this shame and": [0, 65535], "this shame and trouble": [0, 65535], "shame and trouble and": [0, 65535], "and trouble and not": [0, 65535], "trouble and not without": [0, 65535], "and not without some": [0, 65535], "not without some scandall": [0, 65535], "without some scandall to": [0, 65535], "some scandall to your": [0, 65535], "scandall to your selfe": [0, 65535], "to your selfe with": [0, 65535], "your selfe with circumstance": [0, 65535], "selfe with circumstance and": [0, 65535], "with circumstance and oaths": [0, 65535], "circumstance and oaths so": [0, 65535], "and oaths so to": [0, 65535], "oaths so to denie": [0, 65535], "so to denie this": [0, 65535], "to denie this chaine": [0, 65535], "denie this chaine which": [0, 65535], "this chaine which now": [0, 65535], "chaine which now you": [0, 65535], "which now you weare": [0, 65535], "now you weare so": [0, 65535], "you weare so openly": [0, 65535], "weare so openly beside": [0, 65535], "so openly beside the": [0, 65535], "openly beside the charge": [0, 65535], "beside the charge the": [0, 65535], "the charge the shame": [0, 65535], "charge the shame imprisonment": [0, 65535], "the shame imprisonment you": [0, 65535], "shame imprisonment you haue": [0, 65535], "imprisonment you haue done": [0, 65535], "you haue done wrong": [0, 65535], "haue done wrong to": [0, 65535], "done wrong to this": [0, 65535], "wrong to this my": [0, 65535], "to this my honest": [0, 65535], "this my honest friend": [0, 65535], "my honest friend who": [0, 65535], "honest friend who but": [0, 65535], "friend who but for": [0, 65535], "who but for staying": [0, 65535], "but for staying on": [0, 65535], "for staying on our": [0, 65535], "staying on our controuersie": [0, 65535], "on our controuersie had": [0, 65535], "our controuersie had hoisted": [0, 65535], "controuersie had hoisted saile": [0, 65535], "had hoisted saile and": [0, 65535], "hoisted saile and put": [0, 65535], "saile and put to": [0, 65535], "and put to sea": [0, 65535], "put to sea to": [0, 65535], "to sea to day": [0, 65535], "sea to day this": [0, 65535], "to day this chaine": [0, 65535], "day this chaine you": [0, 65535], "this chaine you had": [0, 65535], "chaine you had of": [0, 65535], "you had of me": [0, 65535], "had of me can": [0, 65535], "of me can you": [0, 65535], "me can you deny": [0, 65535], "can you deny it": [0, 65535], "you deny it ant": [0, 65535], "deny it ant i": [0, 65535], "it ant i thinke": [0, 65535], "ant i thinke i": [0, 65535], "i thinke i had": [0, 65535], "thinke i had i": [0, 65535], "i had i neuer": [0, 65535], "had i neuer did": [0, 65535], "i neuer did deny": [0, 65535], "neuer did deny it": [0, 65535], "did deny it mar": [0, 65535], "deny it mar yes": [0, 65535], "it mar yes that": [0, 65535], "mar yes that you": [0, 65535], "yes that you did": [0, 65535], "that you did sir": [0, 65535], "you did sir and": [0, 65535], "did sir and forswore": [0, 65535], "sir and forswore it": [0, 65535], "and forswore it too": [0, 65535], "forswore it too ant": [0, 65535], "it too ant who": [0, 65535], "too ant who heard": [0, 65535], "ant who heard me": [0, 65535], "who heard me to": [0, 65535], "heard me to denie": [0, 65535], "me to denie it": [0, 65535], "to denie it or": [0, 65535], "denie it or forsweare": [0, 65535], "it or forsweare it": [0, 65535], "or forsweare it mar": [0, 65535], "forsweare it mar these": [0, 65535], "it mar these eares": [0, 65535], "mar these eares of": [0, 65535], "these eares of mine": [0, 65535], "eares of mine thou": [0, 65535], "of mine thou knowst": [0, 65535], "mine thou knowst did": [0, 65535], "thou knowst did hear": [0, 65535], "knowst did hear thee": [0, 65535], "did hear thee fie": [0, 65535], "hear thee fie on": [0, 65535], "thee fie on thee": [0, 65535], "fie on thee wretch": [0, 65535], "on thee wretch 'tis": [0, 65535], "thee wretch 'tis pitty": [0, 65535], "wretch 'tis pitty that": [0, 65535], "'tis pitty that thou": [0, 65535], "pitty that thou liu'st": [0, 65535], "that thou liu'st to": [0, 65535], "thou liu'st to walke": [0, 65535], "liu'st to walke where": [0, 65535], "to walke where any": [0, 65535], "walke where any honest": [0, 65535], "where any honest men": [0, 65535], "any honest men resort": [0, 65535], "honest men resort ant": [0, 65535], "men resort ant thou": [0, 65535], "resort ant thou art": [0, 65535], "ant thou art a": [0, 65535], "thou art a villaine": [0, 65535], "art a villaine to": [0, 65535], "a villaine to impeach": [0, 65535], "villaine to impeach me": [0, 65535], "to impeach me thus": [0, 65535], "impeach me thus ile": [0, 65535], "me thus ile proue": [0, 65535], "thus ile proue mine": [0, 65535], "ile proue mine honor": [0, 65535], "proue mine honor and": [0, 65535], "mine honor and mine": [0, 65535], "honor and mine honestie": [0, 65535], "and mine honestie against": [0, 65535], "mine honestie against thee": [0, 65535], "honestie against thee presently": [0, 65535], "against thee presently if": [0, 65535], "thee presently if thou": [0, 65535], "presently if thou dar'st": [0, 65535], "if thou dar'st stand": [0, 65535], "thou dar'st stand mar": [0, 65535], "dar'st stand mar i": [0, 65535], "stand mar i dare": [0, 65535], "mar i dare and": [0, 65535], "i dare and do": [0, 65535], "dare and do defie": [0, 65535], "and do defie thee": [0, 65535], "do defie thee for": [0, 65535], "defie thee for a": [0, 65535], "thee for a villaine": [0, 65535], "for a villaine they": [0, 65535], "a villaine they draw": [0, 65535], "villaine they draw enter": [0, 65535], "they draw enter adriana": [0, 65535], "draw enter adriana luciana": [0, 65535], "enter adriana luciana courtezan": [0, 65535], "adriana luciana courtezan others": [0, 65535], "luciana courtezan others adr": [0, 65535], "courtezan others adr hold": [0, 65535], "others adr hold hurt": [0, 65535], "adr hold hurt him": [0, 65535], "hold hurt him not": [0, 65535], "hurt him not for": [0, 65535], "him not for god": [0, 65535], "not for god sake": [0, 65535], "for god sake he": [0, 65535], "god sake he is": [0, 65535], "sake he is mad": [0, 65535], "he is mad some": [0, 65535], "is mad some get": [0, 65535], "mad some get within": [0, 65535], "some get within him": [0, 65535], "get within him take": [0, 65535], "within him take his": [0, 65535], "him take his sword": [0, 65535], "take his sword away": [0, 65535], "his sword away binde": [0, 65535], "sword away binde dromio": [0, 65535], "away binde dromio too": [0, 65535], "binde dromio too and": [0, 65535], "dromio too and beare": [0, 65535], "too and beare them": [0, 65535], "and beare them to": [0, 65535], "beare them to my": [0, 65535], "them to my house": [0, 65535], "to my house s": [0, 65535], "my house s dro": [0, 65535], "house s dro runne": [0, 65535], "s dro runne master": [0, 65535], "dro runne master run": [0, 65535], "runne master run for": [0, 65535], "master run for gods": [0, 65535], "run for gods sake": [0, 65535], "for gods sake take": [0, 65535], "gods sake take a": [0, 65535], "sake take a house": [0, 65535], "take a house this": [0, 65535], "a house this is": [0, 65535], "house this is some": [0, 65535], "this is some priorie": [0, 65535], "is some priorie in": [0, 65535], "some priorie in or": [0, 65535], "priorie in or we": [0, 65535], "in or we are": [0, 65535], "or we are spoyl'd": [0, 65535], "we are spoyl'd exeunt": [0, 65535], "are spoyl'd exeunt to": [0, 65535], "spoyl'd exeunt to the": [0, 65535], "exeunt to the priorie": [0, 65535], "to the priorie enter": [0, 65535], "the priorie enter ladie": [0, 65535], "priorie enter ladie abbesse": [0, 65535], "enter ladie abbesse ab": [0, 65535], "ladie abbesse ab be": [0, 65535], "abbesse ab be quiet": [0, 65535], "ab be quiet people": [0, 65535], "be quiet people wherefore": [0, 65535], "quiet people wherefore throng": [0, 65535], "people wherefore throng you": [0, 65535], "wherefore throng you hither": [0, 65535], "throng you hither adr": [0, 65535], "you hither adr to": [0, 65535], "hither adr to fetch": [0, 65535], "adr to fetch my": [0, 65535], "to fetch my poore": [0, 65535], "fetch my poore distracted": [0, 65535], "my poore distracted husband": [0, 65535], "poore distracted husband hence": [0, 65535], "distracted husband hence let": [0, 65535], "husband hence let vs": [0, 65535], "hence let vs come": [0, 65535], "let vs come in": [0, 65535], "vs come in that": [0, 65535], "come in that we": [0, 65535], "in that we may": [0, 65535], "that we may binde": [0, 65535], "we may binde him": [0, 65535], "may binde him fast": [0, 65535], "binde him fast and": [0, 65535], "him fast and beare": [0, 65535], "fast and beare him": [0, 65535], "and beare him home": [0, 65535], "beare him home for": [0, 65535], "him home for his": [0, 65535], "home for his recouerie": [0, 65535], "for his recouerie gold": [0, 65535], "his recouerie gold i": [0, 65535], "recouerie gold i knew": [0, 65535], "gold i knew he": [0, 65535], "i knew he was": [0, 65535], "knew he was not": [0, 65535], "he was not in": [0, 65535], "was not in his": [0, 65535], "not in his perfect": [0, 65535], "in his perfect wits": [0, 65535], "his perfect wits mar": [0, 65535], "perfect wits mar i": [0, 65535], "wits mar i am": [0, 65535], "mar i am sorry": [0, 65535], "i am sorry now": [0, 65535], "am sorry now that": [0, 65535], "sorry now that i": [0, 65535], "now that i did": [0, 65535], "that i did draw": [0, 65535], "i did draw on": [0, 65535], "did draw on him": [0, 65535], "draw on him ab": [0, 65535], "on him ab how": [0, 65535], "him ab how long": [0, 65535], "ab how long hath": [0, 65535], "how long hath this": [0, 65535], "long hath this possession": [0, 65535], "hath this possession held": [0, 65535], "this possession held the": [0, 65535], "possession held the man": [0, 65535], "held the man adr": [0, 65535], "the man adr this": [0, 65535], "man adr this weeke": [0, 65535], "adr this weeke he": [0, 65535], "this weeke he hath": [0, 65535], "weeke he hath beene": [0, 65535], "he hath beene heauie": [0, 65535], "hath beene heauie sower": [0, 65535], "beene heauie sower sad": [0, 65535], "heauie sower sad and": [0, 65535], "sower sad and much": [0, 65535], "sad and much different": [0, 65535], "and much different from": [0, 65535], "much different from the": [0, 65535], "different from the man": [0, 65535], "from the man he": [0, 65535], "the man he was": [0, 65535], "man he was but": [0, 65535], "he was but till": [0, 65535], "was but till this": [0, 65535], "but till this afternoone": [0, 65535], "till this afternoone his": [0, 65535], "this afternoone his passion": [0, 65535], "afternoone his passion ne're": [0, 65535], "his passion ne're brake": [0, 65535], "passion ne're brake into": [0, 65535], "ne're brake into extremity": [0, 65535], "brake into extremity of": [0, 65535], "into extremity of rage": [0, 65535], "extremity of rage ab": [0, 65535], "of rage ab hath": [0, 65535], "rage ab hath he": [0, 65535], "ab hath he not": [0, 65535], "hath he not lost": [0, 65535], "he not lost much": [0, 65535], "not lost much wealth": [0, 65535], "lost much wealth by": [0, 65535], "much wealth by wrack": [0, 65535], "wealth by wrack of": [0, 65535], "by wrack of sea": [0, 65535], "wrack of sea buried": [0, 65535], "of sea buried some": [0, 65535], "sea buried some deere": [0, 65535], "buried some deere friend": [0, 65535], "some deere friend hath": [0, 65535], "deere friend hath not": [0, 65535], "friend hath not else": [0, 65535], "hath not else his": [0, 65535], "not else his eye": [0, 65535], "else his eye stray'd": [0, 65535], "his eye stray'd his": [0, 65535], "eye stray'd his affection": [0, 65535], "stray'd his affection in": [0, 65535], "his affection in vnlawfull": [0, 65535], "affection in vnlawfull loue": [0, 65535], "in vnlawfull loue a": [0, 65535], "vnlawfull loue a sinne": [0, 65535], "loue a sinne preuailing": [0, 65535], "a sinne preuailing much": [0, 65535], "sinne preuailing much in": [0, 65535], "preuailing much in youthfull": [0, 65535], "much in youthfull men": [0, 65535], "in youthfull men who": [0, 65535], "youthfull men who giue": [0, 65535], "men who giue their": [0, 65535], "who giue their eies": [0, 65535], "giue their eies the": [0, 65535], "their eies the liberty": [0, 65535], "eies the liberty of": [0, 65535], "the liberty of gazing": [0, 65535], "liberty of gazing which": [0, 65535], "of gazing which of": [0, 65535], "gazing which of these": [0, 65535], "which of these sorrowes": [0, 65535], "of these sorrowes is": [0, 65535], "these sorrowes is he": [0, 65535], "sorrowes is he subiect": [0, 65535], "is he subiect too": [0, 65535], "he subiect too adr": [0, 65535], "subiect too adr to": [0, 65535], "too adr to none": [0, 65535], "adr to none of": [0, 65535], "to none of these": [0, 65535], "none of these except": [0, 65535], "of these except it": [0, 65535], "these except it be": [0, 65535], "except it be the": [0, 65535], "it be the last": [0, 65535], "be the last namely": [0, 65535], "the last namely some": [0, 65535], "last namely some loue": [0, 65535], "namely some loue that": [0, 65535], "some loue that drew": [0, 65535], "loue that drew him": [0, 65535], "that drew him oft": [0, 65535], "drew him oft from": [0, 65535], "him oft from home": [0, 65535], "oft from home ab": [0, 65535], "from home ab you": [0, 65535], "home ab you should": [0, 65535], "ab you should for": [0, 65535], "you should for that": [0, 65535], "should for that haue": [0, 65535], "for that haue reprehended": [0, 65535], "that haue reprehended him": [0, 65535], "haue reprehended him adr": [0, 65535], "reprehended him adr why": [0, 65535], "him adr why so": [0, 65535], "adr why so i": [0, 65535], "why so i did": [0, 65535], "so i did ab": [0, 65535], "i did ab i": [0, 65535], "did ab i but": [0, 65535], "ab i but not": [0, 65535], "i but not rough": [0, 65535], "but not rough enough": [0, 65535], "not rough enough adr": [0, 65535], "rough enough adr as": [0, 65535], "enough adr as roughly": [0, 65535], "adr as roughly as": [0, 65535], "as roughly as my": [0, 65535], "roughly as my modestie": [0, 65535], "as my modestie would": [0, 65535], "my modestie would let": [0, 65535], "modestie would let me": [0, 65535], "would let me ab": [0, 65535], "let me ab haply": [0, 65535], "me ab haply in": [0, 65535], "ab haply in priuate": [0, 65535], "haply in priuate adr": [0, 65535], "in priuate adr and": [0, 65535], "priuate adr and in": [0, 65535], "adr and in assemblies": [0, 65535], "and in assemblies too": [0, 65535], "in assemblies too ab": [0, 65535], "assemblies too ab i": [0, 65535], "too ab i but": [0, 65535], "i but not enough": [0, 65535], "but not enough adr": [0, 65535], "not enough adr it": [0, 65535], "enough adr it was": [0, 65535], "adr it was the": [0, 65535], "it was the copie": [0, 65535], "was the copie of": [0, 65535], "the copie of our": [0, 65535], "copie of our conference": [0, 65535], "of our conference in": [0, 65535], "our conference in bed": [0, 65535], "conference in bed he": [0, 65535], "in bed he slept": [0, 65535], "bed he slept not": [0, 65535], "he slept not for": [0, 65535], "slept not for my": [0, 65535], "not for my vrging": [0, 65535], "for my vrging it": [0, 65535], "my vrging it at": [0, 65535], "vrging it at boord": [0, 65535], "it at boord he": [0, 65535], "at boord he fed": [0, 65535], "boord he fed not": [0, 65535], "he fed not for": [0, 65535], "fed not for my": [0, 65535], "my vrging it alone": [0, 65535], "vrging it alone it": [0, 65535], "it alone it was": [0, 65535], "alone it was the": [0, 65535], "it was the subiect": [0, 65535], "was the subiect of": [0, 65535], "the subiect of my": [0, 65535], "subiect of my theame": [0, 65535], "of my theame in": [0, 65535], "my theame in company": [0, 65535], "theame in company i": [0, 65535], "in company i often": [0, 65535], "company i often glanced": [0, 65535], "i often glanced it": [0, 65535], "often glanced it still": [0, 65535], "glanced it still did": [0, 65535], "it still did i": [0, 65535], "still did i tell": [0, 65535], "did i tell him": [0, 65535], "i tell him it": [0, 65535], "tell him it was": [0, 65535], "him it was vilde": [0, 65535], "it was vilde and": [0, 65535], "was vilde and bad": [0, 65535], "vilde and bad ab": [0, 65535], "and bad ab and": [0, 65535], "bad ab and thereof": [0, 65535], "ab and thereof came": [0, 65535], "and thereof came it": [0, 65535], "thereof came it that": [0, 65535], "came it that the": [0, 65535], "it that the man": [0, 65535], "that the man was": [0, 65535], "the man was mad": [0, 65535], "man was mad the": [0, 65535], "was mad the venome": [0, 65535], "mad the venome clamors": [0, 65535], "the venome clamors of": [0, 65535], "venome clamors of a": [0, 65535], "clamors of a iealous": [0, 65535], "of a iealous woman": [0, 65535], "a iealous woman poisons": [0, 65535], "iealous woman poisons more": [0, 65535], "woman poisons more deadly": [0, 65535], "poisons more deadly then": [0, 65535], "more deadly then a": [0, 65535], "deadly then a mad": [0, 65535], "then a mad dogges": [0, 65535], "a mad dogges tooth": [0, 65535], "mad dogges tooth it": [0, 65535], "dogges tooth it seemes": [0, 65535], "tooth it seemes his": [0, 65535], "it seemes his sleepes": [0, 65535], "seemes his sleepes were": [0, 65535], "his sleepes were hindred": [0, 65535], "sleepes were hindred by": [0, 65535], "were hindred by thy": [0, 65535], "hindred by thy railing": [0, 65535], "by thy railing and": [0, 65535], "thy railing and thereof": [0, 65535], "railing and thereof comes": [0, 65535], "and thereof comes it": [0, 65535], "thereof comes it that": [0, 65535], "comes it that his": [0, 65535], "it that his head": [0, 65535], "that his head is": [0, 65535], "his head is light": [0, 65535], "head is light thou": [0, 65535], "is light thou saist": [0, 65535], "light thou saist his": [0, 65535], "thou saist his meate": [0, 65535], "saist his meate was": [0, 65535], "his meate was sawc'd": [0, 65535], "meate was sawc'd with": [0, 65535], "was sawc'd with thy": [0, 65535], "sawc'd with thy vpbraidings": [0, 65535], "with thy vpbraidings vnquiet": [0, 65535], "thy vpbraidings vnquiet meales": [0, 65535], "vpbraidings vnquiet meales make": [0, 65535], "vnquiet meales make ill": [0, 65535], "meales make ill digestions": [0, 65535], "make ill digestions thereof": [0, 65535], "ill digestions thereof the": [0, 65535], "digestions thereof the raging": [0, 65535], "thereof the raging fire": [0, 65535], "the raging fire of": [0, 65535], "raging fire of feauer": [0, 65535], "fire of feauer bred": [0, 65535], "of feauer bred and": [0, 65535], "feauer bred and what's": [0, 65535], "bred and what's a": [0, 65535], "and what's a feauer": [0, 65535], "what's a feauer but": [0, 65535], "a feauer but a": [0, 65535], "feauer but a fit": [0, 65535], "but a fit of": [0, 65535], "a fit of madnesse": [0, 65535], "fit of madnesse thou": [0, 65535], "of madnesse thou sayest": [0, 65535], "madnesse thou sayest his": [0, 65535], "thou sayest his sports": [0, 65535], "sayest his sports were": [0, 65535], "his sports were hindred": [0, 65535], "sports were hindred by": [0, 65535], "hindred by thy bralles": [0, 65535], "by thy bralles sweet": [0, 65535], "thy bralles sweet recreation": [0, 65535], "bralles sweet recreation barr'd": [0, 65535], "sweet recreation barr'd what": [0, 65535], "recreation barr'd what doth": [0, 65535], "barr'd what doth ensue": [0, 65535], "what doth ensue but": [0, 65535], "doth ensue but moodie": [0, 65535], "ensue but moodie and": [0, 65535], "but moodie and dull": [0, 65535], "moodie and dull melancholly": [0, 65535], "and dull melancholly kinsman": [0, 65535], "dull melancholly kinsman to": [0, 65535], "melancholly kinsman to grim": [0, 65535], "kinsman to grim and": [0, 65535], "to grim and comfortlesse": [0, 65535], "grim and comfortlesse dispaire": [0, 65535], "and comfortlesse dispaire and": [0, 65535], "comfortlesse dispaire and at": [0, 65535], "dispaire and at her": [0, 65535], "and at her heeles": [0, 65535], "at her heeles a": [0, 65535], "her heeles a huge": [0, 65535], "heeles a huge infectious": [0, 65535], "a huge infectious troope": [0, 65535], "huge infectious troope of": [0, 65535], "infectious troope of pale": [0, 65535], "troope of pale distemperatures": [0, 65535], "of pale distemperatures and": [0, 65535], "pale distemperatures and foes": [0, 65535], "distemperatures and foes to": [0, 65535], "and foes to life": [0, 65535], "foes to life in": [0, 65535], "to life in food": [0, 65535], "life in food in": [0, 65535], "in food in sport": [0, 65535], "food in sport and": [0, 65535], "in sport and life": [0, 65535], "sport and life preseruing": [0, 65535], "and life preseruing rest": [0, 65535], "life preseruing rest to": [0, 65535], "preseruing rest to be": [0, 65535], "rest to be disturb'd": [0, 65535], "to be disturb'd would": [0, 65535], "be disturb'd would mad": [0, 65535], "disturb'd would mad or": [0, 65535], "would mad or man": [0, 65535], "mad or man or": [0, 65535], "or man or beast": [0, 65535], "man or beast the": [0, 65535], "or beast the consequence": [0, 65535], "beast the consequence is": [0, 65535], "the consequence is then": [0, 65535], "consequence is then thy": [0, 65535], "is then thy iealous": [0, 65535], "then thy iealous fits": [0, 65535], "thy iealous fits hath": [0, 65535], "iealous fits hath scar'd": [0, 65535], "fits hath scar'd thy": [0, 65535], "hath scar'd thy husband": [0, 65535], "scar'd thy husband from": [0, 65535], "thy husband from the": [0, 65535], "husband from the vse": [0, 65535], "from the vse of": [0, 65535], "the vse of wits": [0, 65535], "vse of wits luc": [0, 65535], "of wits luc she": [0, 65535], "wits luc she neuer": [0, 65535], "luc she neuer reprehended": [0, 65535], "she neuer reprehended him": [0, 65535], "neuer reprehended him but": [0, 65535], "reprehended him but mildely": [0, 65535], "him but mildely when": [0, 65535], "but mildely when he": [0, 65535], "mildely when he demean'd": [0, 65535], "when he demean'd himselfe": [0, 65535], "he demean'd himselfe rough": [0, 65535], "demean'd himselfe rough rude": [0, 65535], "himselfe rough rude and": [0, 65535], "rough rude and wildly": [0, 65535], "rude and wildly why": [0, 65535], "and wildly why beare": [0, 65535], "wildly why beare you": [0, 65535], "why beare you these": [0, 65535], "beare you these rebukes": [0, 65535], "you these rebukes and": [0, 65535], "these rebukes and answer": [0, 65535], "rebukes and answer not": [0, 65535], "and answer not adri": [0, 65535], "answer not adri she": [0, 65535], "not adri she did": [0, 65535], "adri she did betray": [0, 65535], "she did betray me": [0, 65535], "did betray me to": [0, 65535], "betray me to my": [0, 65535], "me to my owne": [0, 65535], "to my owne reproofe": [0, 65535], "my owne reproofe good": [0, 65535], "owne reproofe good people": [0, 65535], "reproofe good people enter": [0, 65535], "good people enter and": [0, 65535], "people enter and lay": [0, 65535], "enter and lay hold": [0, 65535], "and lay hold on": [0, 65535], "lay hold on him": [0, 65535], "hold on him ab": [0, 65535], "on him ab no": [0, 65535], "him ab no not": [0, 65535], "ab no not a": [0, 65535], "no not a creature": [0, 65535], "not a creature enters": [0, 65535], "a creature enters in": [0, 65535], "creature enters in my": [0, 65535], "enters in my house": [0, 65535], "in my house ad": [0, 65535], "my house ad then": [0, 65535], "house ad then let": [0, 65535], "ad then let your": [0, 65535], "then let your seruants": [0, 65535], "let your seruants bring": [0, 65535], "your seruants bring my": [0, 65535], "seruants bring my husband": [0, 65535], "bring my husband forth": [0, 65535], "my husband forth ab": [0, 65535], "husband forth ab neither": [0, 65535], "forth ab neither he": [0, 65535], "ab neither he tooke": [0, 65535], "neither he tooke this": [0, 65535], "he tooke this place": [0, 65535], "tooke this place for": [0, 65535], "this place for sanctuary": [0, 65535], "place for sanctuary and": [0, 65535], "for sanctuary and it": [0, 65535], "sanctuary and it shall": [0, 65535], "and it shall priuiledge": [0, 65535], "it shall priuiledge him": [0, 65535], "shall priuiledge him from": [0, 65535], "priuiledge him from your": [0, 65535], "him from your hands": [0, 65535], "from your hands till": [0, 65535], "your hands till i": [0, 65535], "hands till i haue": [0, 65535], "till i haue brought": [0, 65535], "i haue brought him": [0, 65535], "haue brought him to": [0, 65535], "brought him to his": [0, 65535], "him to his wits": [0, 65535], "to his wits againe": [0, 65535], "his wits againe or": [0, 65535], "wits againe or loose": [0, 65535], "againe or loose my": [0, 65535], "or loose my labour": [0, 65535], "loose my labour in": [0, 65535], "my labour in assaying": [0, 65535], "labour in assaying it": [0, 65535], "in assaying it adr": [0, 65535], "assaying it adr i": [0, 65535], "it adr i will": [0, 65535], "adr i will attend": [0, 65535], "i will attend my": [0, 65535], "will attend my husband": [0, 65535], "attend my husband be": [0, 65535], "my husband be his": [0, 65535], "husband be his nurse": [0, 65535], "be his nurse diet": [0, 65535], "his nurse diet his": [0, 65535], "nurse diet his sicknesse": [0, 65535], "diet his sicknesse for": [0, 65535], "his sicknesse for it": [0, 65535], "sicknesse for it is": [0, 65535], "for it is my": [0, 65535], "it is my office": [0, 65535], "is my office and": [0, 65535], "my office and will": [0, 65535], "office and will haue": [0, 65535], "and will haue no": [0, 65535], "will haue no atturney": [0, 65535], "haue no atturney but": [0, 65535], "no atturney but my": [0, 65535], "atturney but my selfe": [0, 65535], "but my selfe and": [0, 65535], "my selfe and therefore": [0, 65535], "selfe and therefore let": [0, 65535], "and therefore let me": [0, 65535], "therefore let me haue": [0, 65535], "let me haue him": [0, 65535], "me haue him home": [0, 65535], "haue him home with": [0, 65535], "him home with me": [0, 65535], "home with me ab": [0, 65535], "with me ab be": [0, 65535], "me ab be patient": [0, 65535], "ab be patient for": [0, 65535], "be patient for i": [0, 65535], "patient for i will": [0, 65535], "for i will not": [0, 65535], "i will not let": [0, 65535], "will not let him": [0, 65535], "not let him stirre": [0, 65535], "let him stirre till": [0, 65535], "him stirre till i": [0, 65535], "stirre till i haue": [0, 65535], "till i haue vs'd": [0, 65535], "i haue vs'd the": [0, 65535], "haue vs'd the approoued": [0, 65535], "vs'd the approoued meanes": [0, 65535], "the approoued meanes i": [0, 65535], "approoued meanes i haue": [0, 65535], "meanes i haue with": [0, 65535], "i haue with wholsome": [0, 65535], "haue with wholsome sirrups": [0, 65535], "with wholsome sirrups drugges": [0, 65535], "wholsome sirrups drugges and": [0, 65535], "sirrups drugges and holy": [0, 65535], "drugges and holy prayers": [0, 65535], "and holy prayers to": [0, 65535], "holy prayers to make": [0, 65535], "prayers to make of": [0, 65535], "to make of him": [0, 65535], "make of him a": [0, 65535], "of him a formall": [0, 65535], "him a formall man": [0, 65535], "a formall man againe": [0, 65535], "formall man againe it": [0, 65535], "man againe it is": [0, 65535], "againe it is a": [0, 65535], "it is a branch": [0, 65535], "is a branch and": [0, 65535], "a branch and parcell": [0, 65535], "branch and parcell of": [0, 65535], "and parcell of mine": [0, 65535], "parcell of mine oath": [0, 65535], "of mine oath a": [0, 65535], "mine oath a charitable": [0, 65535], "oath a charitable dutie": [0, 65535], "a charitable dutie of": [0, 65535], "charitable dutie of my": [0, 65535], "dutie of my order": [0, 65535], "of my order therefore": [0, 65535], "my order therefore depart": [0, 65535], "order therefore depart and": [0, 65535], "therefore depart and leaue": [0, 65535], "depart and leaue him": [0, 65535], "and leaue him heere": [0, 65535], "leaue him heere with": [0, 65535], "him heere with me": [0, 65535], "heere with me adr": [0, 65535], "with me adr i": [0, 65535], "me adr i will": [0, 65535], "adr i will not": [0, 65535], "i will not hence": [0, 65535], "will not hence and": [0, 65535], "not hence and leaue": [0, 65535], "hence and leaue my": [0, 65535], "and leaue my husband": [0, 65535], "leaue my husband heere": [0, 65535], "my husband heere and": [0, 65535], "husband heere and ill": [0, 65535], "heere and ill it": [0, 65535], "and ill it doth": [0, 65535], "ill it doth beseeme": [0, 65535], "it doth beseeme your": [0, 65535], "doth beseeme your holinesse": [0, 65535], "beseeme your holinesse to": [0, 65535], "your holinesse to separate": [0, 65535], "holinesse to separate the": [0, 65535], "to separate the husband": [0, 65535], "separate the husband and": [0, 65535], "the husband and the": [0, 65535], "husband and the wife": [0, 65535], "and the wife ab": [0, 65535], "the wife ab be": [0, 65535], "wife ab be quiet": [0, 65535], "ab be quiet and": [0, 65535], "be quiet and depart": [0, 65535], "quiet and depart thou": [0, 65535], "and depart thou shalt": [0, 65535], "depart thou shalt not": [0, 65535], "thou shalt not haue": [0, 65535], "shalt not haue him": [0, 65535], "not haue him luc": [0, 65535], "haue him luc complaine": [0, 65535], "him luc complaine vnto": [0, 65535], "luc complaine vnto the": [0, 65535], "complaine vnto the duke": [0, 65535], "vnto the duke of": [0, 65535], "the duke of this": [0, 65535], "duke of this indignity": [0, 65535], "of this indignity adr": [0, 65535], "this indignity adr come": [0, 65535], "indignity adr come go": [0, 65535], "adr come go i": [0, 65535], "come go i will": [0, 65535], "go i will fall": [0, 65535], "i will fall prostrate": [0, 65535], "will fall prostrate at": [0, 65535], "fall prostrate at his": [0, 65535], "prostrate at his feete": [0, 65535], "at his feete and": [0, 65535], "his feete and neuer": [0, 65535], "feete and neuer rise": [0, 65535], "and neuer rise vntill": [0, 65535], "neuer rise vntill my": [0, 65535], "rise vntill my teares": [0, 65535], "vntill my teares and": [0, 65535], "my teares and prayers": [0, 65535], "teares and prayers haue": [0, 65535], "and prayers haue won": [0, 65535], "prayers haue won his": [0, 65535], "haue won his grace": [0, 65535], "won his grace to": [0, 65535], "his grace to come": [0, 65535], "grace to come in": [0, 65535], "to come in person": [0, 65535], "come in person hither": [0, 65535], "in person hither and": [0, 65535], "person hither and take": [0, 65535], "hither and take perforce": [0, 65535], "and take perforce my": [0, 65535], "take perforce my husband": [0, 65535], "perforce my husband from": [0, 65535], "my husband from the": [0, 65535], "husband from the abbesse": [0, 65535], "from the abbesse mar": [0, 65535], "the abbesse mar by": [0, 65535], "abbesse mar by this": [0, 65535], "mar by this i": [0, 65535], "by this i thinke": [0, 65535], "this i thinke the": [0, 65535], "i thinke the diall": [0, 65535], "thinke the diall points": [0, 65535], "the diall points at": [0, 65535], "diall points at fiue": [0, 65535], "points at fiue anon": [0, 65535], "at fiue anon i'me": [0, 65535], "fiue anon i'me sure": [0, 65535], "anon i'me sure the": [0, 65535], "i'me sure the duke": [0, 65535], "sure the duke himselfe": [0, 65535], "the duke himselfe in": [0, 65535], "duke himselfe in person": [0, 65535], "himselfe in person comes": [0, 65535], "in person comes this": [0, 65535], "person comes this way": [0, 65535], "comes this way to": [0, 65535], "this way to the": [0, 65535], "way to the melancholly": [0, 65535], "to the melancholly vale": [0, 65535], "the melancholly vale the": [0, 65535], "melancholly vale the place": [0, 65535], "vale the place of": [0, 65535], "the place of depth": [0, 65535], "place of depth and": [0, 65535], "of depth and sorrie": [0, 65535], "depth and sorrie execution": [0, 65535], "and sorrie execution behinde": [0, 65535], "sorrie execution behinde the": [0, 65535], "execution behinde the ditches": [0, 65535], "behinde the ditches of": [0, 65535], "the ditches of the": [0, 65535], "ditches of the abbey": [0, 65535], "of the abbey heere": [0, 65535], "the abbey heere gold": [0, 65535], "abbey heere gold vpon": [0, 65535], "heere gold vpon what": [0, 65535], "gold vpon what cause": [0, 65535], "vpon what cause mar": [0, 65535], "what cause mar to": [0, 65535], "cause mar to see": [0, 65535], "mar to see a": [0, 65535], "to see a reuerent": [0, 65535], "see a reuerent siracusian": [0, 65535], "a reuerent siracusian merchant": [0, 65535], "reuerent siracusian merchant who": [0, 65535], "siracusian merchant who put": [0, 65535], "merchant who put vnluckily": [0, 65535], "who put vnluckily into": [0, 65535], "put vnluckily into this": [0, 65535], "vnluckily into this bay": [0, 65535], "into this bay against": [0, 65535], "this bay against the": [0, 65535], "bay against the lawes": [0, 65535], "against the lawes and": [0, 65535], "the lawes and statutes": [0, 65535], "lawes and statutes of": [0, 65535], "and statutes of this": [0, 65535], "statutes of this towne": [0, 65535], "of this towne beheaded": [0, 65535], "this towne beheaded publikely": [0, 65535], "towne beheaded publikely for": [0, 65535], "beheaded publikely for his": [0, 65535], "publikely for his offence": [0, 65535], "for his offence gold": [0, 65535], "his offence gold see": [0, 65535], "offence gold see where": [0, 65535], "gold see where they": [0, 65535], "see where they come": [0, 65535], "where they come we": [0, 65535], "they come we wil": [0, 65535], "come we wil behold": [0, 65535], "we wil behold his": [0, 65535], "wil behold his death": [0, 65535], "behold his death luc": [0, 65535], "his death luc kneele": [0, 65535], "death luc kneele to": [0, 65535], "luc kneele to the": [0, 65535], "kneele to the duke": [0, 65535], "to the duke before": [0, 65535], "the duke before he": [0, 65535], "duke before he passe": [0, 65535], "before he passe the": [0, 65535], "he passe the abbey": [0, 65535], "passe the abbey enter": [0, 65535], "the abbey enter the": [0, 65535], "abbey enter the duke": [0, 65535], "enter the duke of": [0, 65535], "the duke of ephesus": [0, 65535], "duke of ephesus and": [0, 65535], "of ephesus and the": [0, 65535], "ephesus and the merchant": [0, 65535], "and the merchant of": [0, 65535], "the merchant of siracuse": [0, 65535], "merchant of siracuse bare": [0, 65535], "of siracuse bare head": [0, 65535], "siracuse bare head with": [0, 65535], "bare head with the": [0, 65535], "head with the headsman": [0, 65535], "with the headsman other": [0, 65535], "the headsman other officers": [0, 65535], "headsman other officers duke": [0, 65535], "other officers duke yet": [0, 65535], "officers duke yet once": [0, 65535], "duke yet once againe": [0, 65535], "yet once againe proclaime": [0, 65535], "once againe proclaime it": [0, 65535], "againe proclaime it publikely": [0, 65535], "proclaime it publikely if": [0, 65535], "it publikely if any": [0, 65535], "publikely if any friend": [0, 65535], "if any friend will": [0, 65535], "any friend will pay": [0, 65535], "friend will pay the": [0, 65535], "will pay the summe": [0, 65535], "pay the summe for": [0, 65535], "the summe for him": [0, 65535], "summe for him he": [0, 65535], "for him he shall": [0, 65535], "him he shall not": [0, 65535], "he shall not die": [0, 65535], "shall not die so": [0, 65535], "not die so much": [0, 65535], "die so much we": [0, 65535], "so much we tender": [0, 65535], "much we tender him": [0, 65535], "we tender him adr": [0, 65535], "tender him adr iustice": [0, 65535], "him adr iustice most": [0, 65535], "adr iustice most sacred": [0, 65535], "iustice most sacred duke": [0, 65535], "most sacred duke against": [0, 65535], "sacred duke against the": [0, 65535], "duke against the abbesse": [0, 65535], "against the abbesse duke": [0, 65535], "the abbesse duke she": [0, 65535], "abbesse duke she is": [0, 65535], "duke she is a": [0, 65535], "she is a vertuous": [0, 65535], "is a vertuous and": [0, 65535], "a vertuous and a": [0, 65535], "vertuous and a reuerend": [0, 65535], "and a reuerend lady": [0, 65535], "a reuerend lady it": [0, 65535], "reuerend lady it cannot": [0, 65535], "lady it cannot be": [0, 65535], "it cannot be that": [0, 65535], "cannot be that she": [0, 65535], "be that she hath": [0, 65535], "that she hath done": [0, 65535], "she hath done thee": [0, 65535], "hath done thee wrong": [0, 65535], "done thee wrong adr": [0, 65535], "thee wrong adr may": [0, 65535], "wrong adr may it": [0, 65535], "adr may it please": [0, 65535], "may it please your": [0, 65535], "it please your grace": [0, 65535], "please your grace antipholus": [0, 65535], "your grace antipholus my": [0, 65535], "grace antipholus my husba": [0, 65535], "antipholus my husba n": [0, 65535], "my husba n d": [0, 65535], "husba n d who": [0, 65535], "n d who i": [0, 65535], "d who i made": [0, 65535], "who i made lord": [0, 65535], "i made lord of": [0, 65535], "made lord of me": [0, 65535], "lord of me and": [0, 65535], "of me and all": [0, 65535], "me and all i": [0, 65535], "and all i had": [0, 65535], "all i had at": [0, 65535], "i had at your": [0, 65535], "had at your important": [0, 65535], "at your important letters": [0, 65535], "your important letters this": [0, 65535], "important letters this ill": [0, 65535], "letters this ill day": [0, 65535], "this ill day a": [0, 65535], "ill day a most": [0, 65535], "day a most outragious": [0, 65535], "a most outragious fit": [0, 65535], "most outragious fit of": [0, 65535], "outragious fit of madnesse": [0, 65535], "fit of madnesse tooke": [0, 65535], "of madnesse tooke him": [0, 65535], "madnesse tooke him that": [0, 65535], "tooke him that desp'rately": [0, 65535], "him that desp'rately he": [0, 65535], "that desp'rately he hurried": [0, 65535], "desp'rately he hurried through": [0, 65535], "he hurried through the": [0, 65535], "hurried through the streete": [0, 65535], "through the streete with": [0, 65535], "the streete with him": [0, 65535], "streete with him his": [0, 65535], "with him his bondman": [0, 65535], "him his bondman all": [0, 65535], "his bondman all as": [0, 65535], "bondman all as mad": [0, 65535], "all as mad as": [0, 65535], "as mad as he": [0, 65535], "mad as he doing": [0, 65535], "as he doing displeasure": [0, 65535], "he doing displeasure to": [0, 65535], "doing displeasure to the": [0, 65535], "displeasure to the citizens": [0, 65535], "to the citizens by": [0, 65535], "the citizens by rushing": [0, 65535], "citizens by rushing in": [0, 65535], "by rushing in their": [0, 65535], "rushing in their houses": [0, 65535], "in their houses bearing": [0, 65535], "their houses bearing thence": [0, 65535], "houses bearing thence rings": [0, 65535], "bearing thence rings iewels": [0, 65535], "thence rings iewels any": [0, 65535], "rings iewels any thing": [0, 65535], "iewels any thing his": [0, 65535], "any thing his rage": [0, 65535], "thing his rage did": [0, 65535], "his rage did like": [0, 65535], "rage did like once": [0, 65535], "did like once did": [0, 65535], "like once did i": [0, 65535], "once did i get": [0, 65535], "did i get him": [0, 65535], "i get him bound": [0, 65535], "get him bound and": [0, 65535], "him bound and sent": [0, 65535], "bound and sent him": [0, 65535], "and sent him home": [0, 65535], "sent him home whil'st": [0, 65535], "him home whil'st to": [0, 65535], "home whil'st to take": [0, 65535], "whil'st to take order": [0, 65535], "to take order for": [0, 65535], "take order for the": [0, 65535], "order for the wrongs": [0, 65535], "for the wrongs i": [0, 65535], "the wrongs i went": [0, 65535], "wrongs i went that": [0, 65535], "i went that heere": [0, 65535], "went that heere and": [0, 65535], "that heere and there": [0, 65535], "heere and there his": [0, 65535], "and there his furie": [0, 65535], "there his furie had": [0, 65535], "his furie had committed": [0, 65535], "furie had committed anon": [0, 65535], "had committed anon i": [0, 65535], "committed anon i wot": [0, 65535], "anon i wot not": [0, 65535], "i wot not by": [0, 65535], "wot not by what": [0, 65535], "not by what strong": [0, 65535], "by what strong escape": [0, 65535], "what strong escape he": [0, 65535], "strong escape he broke": [0, 65535], "escape he broke from": [0, 65535], "he broke from those": [0, 65535], "broke from those that": [0, 65535], "from those that had": [0, 65535], "those that had the": [0, 65535], "that had the guard": [0, 65535], "had the guard of": [0, 65535], "the guard of him": [0, 65535], "guard of him and": [0, 65535], "of him and with": [0, 65535], "him and with his": [0, 65535], "and with his mad": [0, 65535], "with his mad attendant": [0, 65535], "his mad attendant and": [0, 65535], "mad attendant and himselfe": [0, 65535], "attendant and himselfe each": [0, 65535], "and himselfe each one": [0, 65535], "himselfe each one with": [0, 65535], "each one with irefull": [0, 65535], "one with irefull passion": [0, 65535], "with irefull passion with": [0, 65535], "irefull passion with drawne": [0, 65535], "passion with drawne swords": [0, 65535], "with drawne swords met": [0, 65535], "drawne swords met vs": [0, 65535], "swords met vs againe": [0, 65535], "met vs againe and": [0, 65535], "vs againe and madly": [0, 65535], "againe and madly bent": [0, 65535], "and madly bent on": [0, 65535], "madly bent on vs": [0, 65535], "bent on vs chac'd": [0, 65535], "on vs chac'd vs": [0, 65535], "vs chac'd vs away": [0, 65535], "chac'd vs away till": [0, 65535], "vs away till raising": [0, 65535], "away till raising of": [0, 65535], "till raising of more": [0, 65535], "raising of more aide": [0, 65535], "of more aide we": [0, 65535], "more aide we came": [0, 65535], "aide we came againe": [0, 65535], "we came againe to": [0, 65535], "came againe to binde": [0, 65535], "againe to binde them": [0, 65535], "to binde them then": [0, 65535], "binde them then they": [0, 65535], "them then they fled": [0, 65535], "then they fled into": [0, 65535], "they fled into this": [0, 65535], "fled into this abbey": [0, 65535], "into this abbey whether": [0, 65535], "this abbey whether we": [0, 65535], "abbey whether we pursu'd": [0, 65535], "whether we pursu'd them": [0, 65535], "we pursu'd them and": [0, 65535], "pursu'd them and heere": [0, 65535], "them and heere the": [0, 65535], "and heere the abbesse": [0, 65535], "heere the abbesse shuts": [0, 65535], "the abbesse shuts the": [0, 65535], "abbesse shuts the gates": [0, 65535], "shuts the gates on": [0, 65535], "the gates on vs": [0, 65535], "gates on vs and": [0, 65535], "on vs and will": [0, 65535], "vs and will not": [0, 65535], "and will not suffer": [0, 65535], "will not suffer vs": [0, 65535], "not suffer vs to": [0, 65535], "suffer vs to fetch": [0, 65535], "vs to fetch him": [0, 65535], "to fetch him out": [0, 65535], "fetch him out nor": [0, 65535], "him out nor send": [0, 65535], "out nor send him": [0, 65535], "nor send him forth": [0, 65535], "send him forth that": [0, 65535], "him forth that we": [0, 65535], "forth that we may": [0, 65535], "that we may beare": [0, 65535], "we may beare him": [0, 65535], "may beare him hence": [0, 65535], "beare him hence therefore": [0, 65535], "him hence therefore most": [0, 65535], "hence therefore most gracious": [0, 65535], "therefore most gracious duke": [0, 65535], "most gracious duke with": [0, 65535], "gracious duke with thy": [0, 65535], "duke with thy command": [0, 65535], "with thy command let": [0, 65535], "thy command let him": [0, 65535], "command let him be": [0, 65535], "let him be brought": [0, 65535], "him be brought forth": [0, 65535], "be brought forth and": [0, 65535], "brought forth and borne": [0, 65535], "forth and borne hence": [0, 65535], "and borne hence for": [0, 65535], "borne hence for helpe": [0, 65535], "hence for helpe duke": [0, 65535], "for helpe duke long": [0, 65535], "helpe duke long since": [0, 65535], "duke long since thy": [0, 65535], "long since thy husband": [0, 65535], "since thy husband seru'd": [0, 65535], "thy husband seru'd me": [0, 65535], "husband seru'd me in": [0, 65535], "seru'd me in my": [0, 65535], "me in my wars": [0, 65535], "in my wars and": [0, 65535], "my wars and i": [0, 65535], "wars and i to": [0, 65535], "and i to thee": [0, 65535], "i to thee ingag'd": [0, 65535], "to thee ingag'd a": [0, 65535], "thee ingag'd a princes": [0, 65535], "ingag'd a princes word": [0, 65535], "a princes word when": [0, 65535], "princes word when thou": [0, 65535], "word when thou didst": [0, 65535], "when thou didst make": [0, 65535], "thou didst make him": [0, 65535], "didst make him master": [0, 65535], "make him master of": [0, 65535], "him master of thy": [0, 65535], "master of thy bed": [0, 65535], "of thy bed to": [0, 65535], "thy bed to do": [0, 65535], "bed to do him": [0, 65535], "to do him all": [0, 65535], "do him all the": [0, 65535], "him all the grace": [0, 65535], "all the grace and": [0, 65535], "the grace and good": [0, 65535], "grace and good i": [0, 65535], "and good i could": [0, 65535], "good i could go": [0, 65535], "i could go some": [0, 65535], "could go some of": [0, 65535], "go some of you": [0, 65535], "some of you knocke": [0, 65535], "of you knocke at": [0, 65535], "you knocke at the": [0, 65535], "knocke at the abbey": [0, 65535], "at the abbey gate": [0, 65535], "the abbey gate and": [0, 65535], "abbey gate and bid": [0, 65535], "gate and bid the": [0, 65535], "and bid the lady": [0, 65535], "bid the lady abbesse": [0, 65535], "the lady abbesse come": [0, 65535], "lady abbesse come to": [0, 65535], "abbesse come to me": [0, 65535], "come to me i": [0, 65535], "to me i will": [0, 65535], "me i will determine": [0, 65535], "i will determine this": [0, 65535], "will determine this before": [0, 65535], "determine this before i": [0, 65535], "this before i stirre": [0, 65535], "before i stirre enter": [0, 65535], "i stirre enter a": [0, 65535], "stirre enter a messenger": [0, 65535], "enter a messenger oh": [0, 65535], "a messenger oh mistris": [0, 65535], "messenger oh mistris mistris": [0, 65535], "oh mistris mistris shift": [0, 65535], "mistris mistris shift and": [0, 65535], "mistris shift and saue": [0, 65535], "shift and saue your": [0, 65535], "and saue your selfe": [0, 65535], "saue your selfe my": [0, 65535], "your selfe my master": [0, 65535], "selfe my master and": [0, 65535], "my master and his": [0, 65535], "master and his man": [0, 65535], "and his man are": [0, 65535], "his man are both": [0, 65535], "man are both broke": [0, 65535], "are both broke loose": [0, 65535], "both broke loose beaten": [0, 65535], "broke loose beaten the": [0, 65535], "loose beaten the maids": [0, 65535], "beaten the maids a": [0, 65535], "the maids a row": [0, 65535], "maids a row and": [0, 65535], "a row and bound": [0, 65535], "row and bound the": [0, 65535], "and bound the doctor": [0, 65535], "bound the doctor whose": [0, 65535], "the doctor whose beard": [0, 65535], "doctor whose beard they": [0, 65535], "whose beard they haue": [0, 65535], "beard they haue sindg'd": [0, 65535], "they haue sindg'd off": [0, 65535], "haue sindg'd off with": [0, 65535], "sindg'd off with brands": [0, 65535], "off with brands of": [0, 65535], "with brands of fire": [0, 65535], "brands of fire and": [0, 65535], "of fire and euer": [0, 65535], "fire and euer as": [0, 65535], "and euer as it": [0, 65535], "euer as it blaz'd": [0, 65535], "as it blaz'd they": [0, 65535], "it blaz'd they threw": [0, 65535], "blaz'd they threw on": [0, 65535], "they threw on him": [0, 65535], "threw on him great": [0, 65535], "on him great pailes": [0, 65535], "him great pailes of": [0, 65535], "great pailes of puddled": [0, 65535], "pailes of puddled myre": [0, 65535], "of puddled myre to": [0, 65535], "puddled myre to quench": [0, 65535], "myre to quench the": [0, 65535], "to quench the haire": [0, 65535], "quench the haire my": [0, 65535], "the haire my mr": [0, 65535], "haire my mr preaches": [0, 65535], "my mr preaches patience": [0, 65535], "mr preaches patience to": [0, 65535], "preaches patience to him": [0, 65535], "patience to him and": [0, 65535], "to him and the": [0, 65535], "him and the while": [0, 65535], "and the while his": [0, 65535], "the while his man": [0, 65535], "while his man with": [0, 65535], "his man with cizers": [0, 65535], "man with cizers nickes": [0, 65535], "with cizers nickes him": [0, 65535], "cizers nickes him like": [0, 65535], "nickes him like a": [0, 65535], "him like a foole": [0, 65535], "like a foole and": [0, 65535], "a foole and sure": [0, 65535], "foole and sure vnlesse": [0, 65535], "and sure vnlesse you": [0, 65535], "sure vnlesse you send": [0, 65535], "vnlesse you send some": [0, 65535], "you send some present": [0, 65535], "send some present helpe": [0, 65535], "some present helpe betweene": [0, 65535], "present helpe betweene them": [0, 65535], "helpe betweene them they": [0, 65535], "betweene them they will": [0, 65535], "them they will kill": [0, 65535], "they will kill the": [0, 65535], "will kill the coniurer": [0, 65535], "kill the coniurer adr": [0, 65535], "the coniurer adr peace": [0, 65535], "coniurer adr peace foole": [0, 65535], "adr peace foole thy": [0, 65535], "peace foole thy master": [0, 65535], "foole thy master and": [0, 65535], "thy master and his": [0, 65535], "his man are here": [0, 65535], "man are here and": [0, 65535], "are here and that": [0, 65535], "here and that is": [0, 65535], "and that is false": [0, 65535], "that is false thou": [0, 65535], "is false thou dost": [0, 65535], "false thou dost report": [0, 65535], "thou dost report to": [0, 65535], "dost report to vs": [0, 65535], "report to vs mess": [0, 65535], "to vs mess mistris": [0, 65535], "vs mess mistris vpon": [0, 65535], "mess mistris vpon my": [0, 65535], "mistris vpon my life": [0, 65535], "vpon my life i": [0, 65535], "my life i tel": [0, 65535], "life i tel you": [0, 65535], "i tel you true": [0, 65535], "tel you true i": [0, 65535], "you true i haue": [0, 65535], "true i haue not": [0, 65535], "i haue not breath'd": [0, 65535], "haue not breath'd almost": [0, 65535], "not breath'd almost since": [0, 65535], "breath'd almost since i": [0, 65535], "almost since i did": [0, 65535], "since i did see": [0, 65535], "i did see it": [0, 65535], "did see it he": [0, 65535], "see it he cries": [0, 65535], "it he cries for": [0, 65535], "he cries for you": [0, 65535], "cries for you and": [0, 65535], "for you and vowes": [0, 65535], "you and vowes if": [0, 65535], "and vowes if he": [0, 65535], "vowes if he can": [0, 65535], "if he can take": [0, 65535], "he can take you": [0, 65535], "can take you to": [0, 65535], "take you to scorch": [0, 65535], "you to scorch your": [0, 65535], "to scorch your face": [0, 65535], "scorch your face and": [0, 65535], "your face and to": [0, 65535], "face and to disfigure": [0, 65535], "and to disfigure you": [0, 65535], "to disfigure you cry": [0, 65535], "disfigure you cry within": [0, 65535], "you cry within harke": [0, 65535], "cry within harke harke": [0, 65535], "within harke harke i": [0, 65535], "harke harke i heare": [0, 65535], "harke i heare him": [0, 65535], "i heare him mistris": [0, 65535], "heare him mistris flie": [0, 65535], "him mistris flie be": [0, 65535], "mistris flie be gone": [0, 65535], "flie be gone duke": [0, 65535], "be gone duke come": [0, 65535], "gone duke come stand": [0, 65535], "duke come stand by": [0, 65535], "come stand by me": [0, 65535], "stand by me feare": [0, 65535], "by me feare nothing": [0, 65535], "me feare nothing guard": [0, 65535], "feare nothing guard with": [0, 65535], "nothing guard with halberds": [0, 65535], "guard with halberds adr": [0, 65535], "with halberds adr ay": [0, 65535], "halberds adr ay me": [0, 65535], "adr ay me it": [0, 65535], "ay me it is": [0, 65535], "me it is my": [0, 65535], "it is my husband": [0, 65535], "is my husband witnesse": [0, 65535], "my husband witnesse you": [0, 65535], "husband witnesse you that": [0, 65535], "witnesse you that he": [0, 65535], "you that he is": [0, 65535], "that he is borne": [0, 65535], "he is borne about": [0, 65535], "is borne about inuisible": [0, 65535], "borne about inuisible euen": [0, 65535], "about inuisible euen now": [0, 65535], "inuisible euen now we": [0, 65535], "euen now we hous'd": [0, 65535], "now we hous'd him": [0, 65535], "we hous'd him in": [0, 65535], "hous'd him in the": [0, 65535], "him in the abbey": [0, 65535], "in the abbey heere": [0, 65535], "the abbey heere and": [0, 65535], "abbey heere and now": [0, 65535], "heere and now he's": [0, 65535], "and now he's there": [0, 65535], "now he's there past": [0, 65535], "he's there past thought": [0, 65535], "there past thought of": [0, 65535], "past thought of humane": [0, 65535], "thought of humane reason": [0, 65535], "of humane reason enter": [0, 65535], "humane reason enter antipholus": [0, 65535], "reason enter antipholus and": [0, 65535], "enter antipholus and e": [0, 65535], "antipholus and e dromio": [0, 65535], "and e dromio of": [0, 65535], "e dromio of ephesus": [0, 65535], "dromio of ephesus e": [0, 65535], "of ephesus e ant": [0, 65535], "ephesus e ant iustice": [0, 65535], "e ant iustice most": [0, 65535], "ant iustice most gracious": [0, 65535], "iustice most gracious duke": [0, 65535], "most gracious duke oh": [0, 65535], "gracious duke oh grant": [0, 65535], "duke oh grant me": [0, 65535], "oh grant me iustice": [0, 65535], "grant me iustice euen": [0, 65535], "me iustice euen for": [0, 65535], "iustice euen for the": [0, 65535], "euen for the seruice": [0, 65535], "for the seruice that": [0, 65535], "the seruice that long": [0, 65535], "seruice that long since": [0, 65535], "that long since i": [0, 65535], "long since i did": [0, 65535], "since i did thee": [0, 65535], "i did thee when": [0, 65535], "did thee when i": [0, 65535], "thee when i bestrid": [0, 65535], "when i bestrid thee": [0, 65535], "i bestrid thee in": [0, 65535], "bestrid thee in the": [0, 65535], "thee in the warres": [0, 65535], "in the warres and": [0, 65535], "the warres and tooke": [0, 65535], "warres and tooke deepe": [0, 65535], "and tooke deepe scarres": [0, 65535], "tooke deepe scarres to": [0, 65535], "deepe scarres to saue": [0, 65535], "scarres to saue thy": [0, 65535], "to saue thy life": [0, 65535], "saue thy life euen": [0, 65535], "thy life euen for": [0, 65535], "life euen for the": [0, 65535], "euen for the blood": [0, 65535], "for the blood that": [0, 65535], "the blood that then": [0, 65535], "blood that then i": [0, 65535], "that then i lost": [0, 65535], "then i lost for": [0, 65535], "i lost for thee": [0, 65535], "lost for thee now": [0, 65535], "for thee now grant": [0, 65535], "thee now grant me": [0, 65535], "now grant me iustice": [0, 65535], "grant me iustice mar": [0, 65535], "me iustice mar fat": [0, 65535], "iustice mar fat vnlesse": [0, 65535], "mar fat vnlesse the": [0, 65535], "fat vnlesse the feare": [0, 65535], "vnlesse the feare of": [0, 65535], "the feare of death": [0, 65535], "feare of death doth": [0, 65535], "of death doth make": [0, 65535], "death doth make me": [0, 65535], "doth make me dote": [0, 65535], "make me dote i": [0, 65535], "me dote i see": [0, 65535], "dote i see my": [0, 65535], "i see my sonne": [0, 65535], "see my sonne antipholus": [0, 65535], "my sonne antipholus and": [0, 65535], "sonne antipholus and dromio": [0, 65535], "antipholus and dromio e": [0, 65535], "and dromio e ant": [0, 65535], "dromio e ant iustice": [0, 65535], "e ant iustice sweet": [0, 65535], "ant iustice sweet prince": [0, 65535], "iustice sweet prince against": [0, 65535], "sweet prince against that": [0, 65535], "prince against that woman": [0, 65535], "against that woman there": [0, 65535], "that woman there she": [0, 65535], "woman there she whom": [0, 65535], "there she whom thou": [0, 65535], "she whom thou gau'st": [0, 65535], "whom thou gau'st to": [0, 65535], "thou gau'st to me": [0, 65535], "gau'st to me to": [0, 65535], "to me to be": [0, 65535], "me to be my": [0, 65535], "to be my wife": [0, 65535], "be my wife that": [0, 65535], "my wife that hath": [0, 65535], "wife that hath abused": [0, 65535], "that hath abused and": [0, 65535], "hath abused and dishonored": [0, 65535], "abused and dishonored me": [0, 65535], "and dishonored me euen": [0, 65535], "dishonored me euen in": [0, 65535], "me euen in the": [0, 65535], "euen in the strength": [0, 65535], "in the strength and": [0, 65535], "the strength and height": [0, 65535], "strength and height of": [0, 65535], "and height of iniurie": [0, 65535], "height of iniurie beyond": [0, 65535], "of iniurie beyond imagination": [0, 65535], "iniurie beyond imagination is": [0, 65535], "beyond imagination is the": [0, 65535], "imagination is the wrong": [0, 65535], "is the wrong that": [0, 65535], "the wrong that she": [0, 65535], "wrong that she this": [0, 65535], "that she this day": [0, 65535], "she this day hath": [0, 65535], "this day hath shamelesse": [0, 65535], "day hath shamelesse throwne": [0, 65535], "hath shamelesse throwne on": [0, 65535], "shamelesse throwne on me": [0, 65535], "throwne on me duke": [0, 65535], "on me duke discouer": [0, 65535], "me duke discouer how": [0, 65535], "duke discouer how and": [0, 65535], "discouer how and thou": [0, 65535], "how and thou shalt": [0, 65535], "and thou shalt finde": [0, 65535], "thou shalt finde me": [0, 65535], "shalt finde me iust": [0, 65535], "finde me iust e": [0, 65535], "me iust e ant": [0, 65535], "iust e ant this": [0, 65535], "e ant this day": [0, 65535], "ant this day great": [0, 65535], "this day great duke": [0, 65535], "day great duke she": [0, 65535], "great duke she shut": [0, 65535], "duke she shut the": [0, 65535], "she shut the doores": [0, 65535], "shut the doores vpon": [0, 65535], "the doores vpon me": [0, 65535], "doores vpon me while": [0, 65535], "vpon me while she": [0, 65535], "me while she with": [0, 65535], "while she with harlots": [0, 65535], "she with harlots feasted": [0, 65535], "with harlots feasted in": [0, 65535], "harlots feasted in my": [0, 65535], "feasted in my house": [0, 65535], "in my house duke": [0, 65535], "my house duke a": [0, 65535], "house duke a greeuous": [0, 65535], "duke a greeuous fault": [0, 65535], "a greeuous fault say": [0, 65535], "greeuous fault say woman": [0, 65535], "fault say woman didst": [0, 65535], "say woman didst thou": [0, 65535], "woman didst thou so": [0, 65535], "didst thou so adr": [0, 65535], "thou so adr no": [0, 65535], "so adr no my": [0, 65535], "adr no my good": [0, 65535], "no my good lord": [0, 65535], "my good lord my": [0, 65535], "good lord my selfe": [0, 65535], "lord my selfe he": [0, 65535], "my selfe he and": [0, 65535], "selfe he and my": [0, 65535], "he and my sister": [0, 65535], "and my sister to": [0, 65535], "my sister to day": [0, 65535], "sister to day did": [0, 65535], "to day did dine": [0, 65535], "day did dine together": [0, 65535], "did dine together so": [0, 65535], "dine together so befall": [0, 65535], "together so befall my": [0, 65535], "so befall my soule": [0, 65535], "befall my soule as": [0, 65535], "my soule as this": [0, 65535], "soule as this is": [0, 65535], "as this is false": [0, 65535], "this is false he": [0, 65535], "is false he burthens": [0, 65535], "false he burthens me": [0, 65535], "he burthens me withall": [0, 65535], "burthens me withall luc": [0, 65535], "me withall luc nere": [0, 65535], "withall luc nere may": [0, 65535], "luc nere may i": [0, 65535], "nere may i looke": [0, 65535], "may i looke on": [0, 65535], "i looke on day": [0, 65535], "looke on day nor": [0, 65535], "on day nor sleepe": [0, 65535], "day nor sleepe on": [0, 65535], "nor sleepe on night": [0, 65535], "sleepe on night but": [0, 65535], "on night but she": [0, 65535], "night but she tels": [0, 65535], "but she tels to": [0, 65535], "she tels to your": [0, 65535], "tels to your highnesse": [0, 65535], "to your highnesse simple": [0, 65535], "your highnesse simple truth": [0, 65535], "highnesse simple truth gold": [0, 65535], "simple truth gold o": [0, 65535], "truth gold o periur'd": [0, 65535], "gold o periur'd woman": [0, 65535], "o periur'd woman they": [0, 65535], "periur'd woman they are": [0, 65535], "woman they are both": [0, 65535], "they are both forsworne": [0, 65535], "are both forsworne in": [0, 65535], "both forsworne in this": [0, 65535], "forsworne in this the": [0, 65535], "in this the madman": [0, 65535], "this the madman iustly": [0, 65535], "the madman iustly chargeth": [0, 65535], "madman iustly chargeth them": [0, 65535], "iustly chargeth them e": [0, 65535], "chargeth them e ant": [0, 65535], "them e ant my": [0, 65535], "e ant my liege": [0, 65535], "ant my liege i": [0, 65535], "my liege i am": [0, 65535], "liege i am aduised": [0, 65535], "i am aduised what": [0, 65535], "am aduised what i": [0, 65535], "aduised what i say": [0, 65535], "what i say neither": [0, 65535], "i say neither disturbed": [0, 65535], "say neither disturbed with": [0, 65535], "neither disturbed with the": [0, 65535], "disturbed with the effect": [0, 65535], "with the effect of": [0, 65535], "the effect of wine": [0, 65535], "effect of wine nor": [0, 65535], "of wine nor headie": [0, 65535], "wine nor headie rash": [0, 65535], "nor headie rash prouoak'd": [0, 65535], "headie rash prouoak'd with": [0, 65535], "rash prouoak'd with raging": [0, 65535], "prouoak'd with raging ire": [0, 65535], "with raging ire albeit": [0, 65535], "raging ire albeit my": [0, 65535], "ire albeit my wrongs": [0, 65535], "albeit my wrongs might": [0, 65535], "my wrongs might make": [0, 65535], "wrongs might make one": [0, 65535], "might make one wiser": [0, 65535], "make one wiser mad": [0, 65535], "one wiser mad this": [0, 65535], "wiser mad this woman": [0, 65535], "mad this woman lock'd": [0, 65535], "this woman lock'd me": [0, 65535], "woman lock'd me out": [0, 65535], "lock'd me out this": [0, 65535], "me out this day": [0, 65535], "out this day from": [0, 65535], "this day from dinner": [0, 65535], "day from dinner that": [0, 65535], "from dinner that goldsmith": [0, 65535], "dinner that goldsmith there": [0, 65535], "that goldsmith there were": [0, 65535], "goldsmith there were he": [0, 65535], "there were he not": [0, 65535], "were he not pack'd": [0, 65535], "he not pack'd with": [0, 65535], "not pack'd with her": [0, 65535], "pack'd with her could": [0, 65535], "with her could witnesse": [0, 65535], "her could witnesse it": [0, 65535], "could witnesse it for": [0, 65535], "witnesse it for he": [0, 65535], "it for he was": [0, 65535], "for he was with": [0, 65535], "he was with me": [0, 65535], "was with me then": [0, 65535], "with me then who": [0, 65535], "me then who parted": [0, 65535], "then who parted with": [0, 65535], "who parted with me": [0, 65535], "parted with me to": [0, 65535], "with me to go": [0, 65535], "me to go fetch": [0, 65535], "to go fetch a": [0, 65535], "go fetch a chaine": [0, 65535], "fetch a chaine promising": [0, 65535], "a chaine promising to": [0, 65535], "chaine promising to bring": [0, 65535], "promising to bring it": [0, 65535], "to bring it to": [0, 65535], "bring it to the": [0, 65535], "it to the porpentine": [0, 65535], "to the porpentine where": [0, 65535], "the porpentine where balthasar": [0, 65535], "porpentine where balthasar and": [0, 65535], "where balthasar and i": [0, 65535], "balthasar and i did": [0, 65535], "and i did dine": [0, 65535], "i did dine together": [0, 65535], "did dine together our": [0, 65535], "dine together our dinner": [0, 65535], "together our dinner done": [0, 65535], "our dinner done and": [0, 65535], "dinner done and he": [0, 65535], "done and he not": [0, 65535], "and he not comming": [0, 65535], "he not comming thither": [0, 65535], "not comming thither i": [0, 65535], "comming thither i went": [0, 65535], "thither i went to": [0, 65535], "i went to seeke": [0, 65535], "went to seeke him": [0, 65535], "to seeke him in": [0, 65535], "seeke him in the": [0, 65535], "him in the street": [0, 65535], "in the street i": [0, 65535], "the street i met": [0, 65535], "street i met him": [0, 65535], "i met him and": [0, 65535], "met him and in": [0, 65535], "him and in his": [0, 65535], "and in his companie": [0, 65535], "in his companie that": [0, 65535], "his companie that gentleman": [0, 65535], "companie that gentleman there": [0, 65535], "that gentleman there did": [0, 65535], "gentleman there did this": [0, 65535], "there did this periur'd": [0, 65535], "did this periur'd goldsmith": [0, 65535], "this periur'd goldsmith sweare": [0, 65535], "periur'd goldsmith sweare me": [0, 65535], "goldsmith sweare me downe": [0, 65535], "sweare me downe that": [0, 65535], "me downe that i": [0, 65535], "downe that i this": [0, 65535], "that i this day": [0, 65535], "i this day of": [0, 65535], "this day of him": [0, 65535], "day of him receiu'd": [0, 65535], "of him receiu'd the": [0, 65535], "him receiu'd the chaine": [0, 65535], "receiu'd the chaine which": [0, 65535], "the chaine which god": [0, 65535], "chaine which god he": [0, 65535], "which god he knowes": [0, 65535], "god he knowes i": [0, 65535], "he knowes i saw": [0, 65535], "knowes i saw not": [0, 65535], "i saw not for": [0, 65535], "saw not for the": [0, 65535], "not for the which": [0, 65535], "for the which he": [0, 65535], "the which he did": [0, 65535], "which he did arrest": [0, 65535], "he did arrest me": [0, 65535], "did arrest me with": [0, 65535], "arrest me with an": [0, 65535], "me with an officer": [0, 65535], "with an officer i": [0, 65535], "an officer i did": [0, 65535], "officer i did obey": [0, 65535], "i did obey and": [0, 65535], "did obey and sent": [0, 65535], "obey and sent my": [0, 65535], "and sent my pesant": [0, 65535], "sent my pesant home": [0, 65535], "my pesant home for": [0, 65535], "pesant home for certaine": [0, 65535], "home for certaine duckets": [0, 65535], "for certaine duckets he": [0, 65535], "certaine duckets he with": [0, 65535], "duckets he with none": [0, 65535], "he with none return'd": [0, 65535], "with none return'd then": [0, 65535], "none return'd then fairely": [0, 65535], "return'd then fairely i": [0, 65535], "then fairely i bespoke": [0, 65535], "fairely i bespoke the": [0, 65535], "i bespoke the officer": [0, 65535], "bespoke the officer to": [0, 65535], "the officer to go": [0, 65535], "officer to go in": [0, 65535], "to go in person": [0, 65535], "go in person with": [0, 65535], "in person with me": [0, 65535], "person with me to": [0, 65535], "with me to my": [0, 65535], "me to my house": [0, 65535], "to my house by'th'": [0, 65535], "my house by'th' way": [0, 65535], "house by'th' way we": [0, 65535], "by'th' way we met": [0, 65535], "way we met my": [0, 65535], "we met my wife": [0, 65535], "met my wife her": [0, 65535], "my wife her sister": [0, 65535], "wife her sister and": [0, 65535], "her sister and a": [0, 65535], "sister and a rabble": [0, 65535], "and a rabble more": [0, 65535], "a rabble more of": [0, 65535], "rabble more of vilde": [0, 65535], "more of vilde confederates": [0, 65535], "of vilde confederates along": [0, 65535], "vilde confederates along with": [0, 65535], "confederates along with them": [0, 65535], "along with them they": [0, 65535], "with them they brought": [0, 65535], "them they brought one": [0, 65535], "they brought one pinch": [0, 65535], "brought one pinch a": [0, 65535], "one pinch a hungry": [0, 65535], "pinch a hungry leane": [0, 65535], "a hungry leane fac'd": [0, 65535], "hungry leane fac'd villaine": [0, 65535], "leane fac'd villaine a": [0, 65535], "fac'd villaine a meere": [0, 65535], "villaine a meere anatomie": [0, 65535], "a meere anatomie a": [0, 65535], "meere anatomie a mountebanke": [0, 65535], "anatomie a mountebanke a": [0, 65535], "a mountebanke a thred": [0, 65535], "mountebanke a thred bare": [0, 65535], "a thred bare iugler": [0, 65535], "thred bare iugler and": [0, 65535], "bare iugler and a": [0, 65535], "iugler and a fortune": [0, 65535], "and a fortune teller": [0, 65535], "a fortune teller a": [0, 65535], "fortune teller a needy": [0, 65535], "teller a needy hollow": [0, 65535], "a needy hollow ey'd": [0, 65535], "needy hollow ey'd sharpe": [0, 65535], "hollow ey'd sharpe looking": [0, 65535], "ey'd sharpe looking wretch": [0, 65535], "sharpe looking wretch a": [0, 65535], "looking wretch a liuing": [0, 65535], "wretch a liuing dead": [0, 65535], "a liuing dead man": [0, 65535], "liuing dead man this": [0, 65535], "dead man this pernicious": [0, 65535], "man this pernicious slaue": [0, 65535], "this pernicious slaue forsooth": [0, 65535], "pernicious slaue forsooth tooke": [0, 65535], "slaue forsooth tooke on": [0, 65535], "forsooth tooke on him": [0, 65535], "tooke on him as": [0, 65535], "on him as a": [0, 65535], "him as a coniurer": [0, 65535], "as a coniurer and": [0, 65535], "a coniurer and gazing": [0, 65535], "coniurer and gazing in": [0, 65535], "and gazing in mine": [0, 65535], "gazing in mine eyes": [0, 65535], "in mine eyes feeling": [0, 65535], "mine eyes feeling my": [0, 65535], "eyes feeling my pulse": [0, 65535], "feeling my pulse and": [0, 65535], "my pulse and with": [0, 65535], "pulse and with no": [0, 65535], "and with no face": [0, 65535], "with no face as": [0, 65535], "no face as 'twere": [0, 65535], "face as 'twere out": [0, 65535], "as 'twere out facing": [0, 65535], "'twere out facing me": [0, 65535], "out facing me cries": [0, 65535], "facing me cries out": [0, 65535], "me cries out i": [0, 65535], "cries out i was": [0, 65535], "out i was possest": [0, 65535], "i was possest then": [0, 65535], "was possest then altogether": [0, 65535], "possest then altogether they": [0, 65535], "then altogether they fell": [0, 65535], "altogether they fell vpon": [0, 65535], "they fell vpon me": [0, 65535], "fell vpon me bound": [0, 65535], "vpon me bound me": [0, 65535], "me bound me bore": [0, 65535], "bound me bore me": [0, 65535], "me bore me thence": [0, 65535], "bore me thence and": [0, 65535], "me thence and in": [0, 65535], "thence and in a": [0, 65535], "and in a darke": [0, 65535], "in a darke and": [0, 65535], "a darke and dankish": [0, 65535], "darke and dankish vault": [0, 65535], "and dankish vault at": [0, 65535], "dankish vault at home": [0, 65535], "vault at home there": [0, 65535], "at home there left": [0, 65535], "home there left me": [0, 65535], "there left me and": [0, 65535], "left me and my": [0, 65535], "me and my man": [0, 65535], "and my man both": [0, 65535], "my man both bound": [0, 65535], "man both bound together": [0, 65535], "both bound together till": [0, 65535], "bound together till gnawing": [0, 65535], "together till gnawing with": [0, 65535], "till gnawing with my": [0, 65535], "gnawing with my teeth": [0, 65535], "with my teeth my": [0, 65535], "my teeth my bonds": [0, 65535], "teeth my bonds in": [0, 65535], "my bonds in sunder": [0, 65535], "bonds in sunder i": [0, 65535], "in sunder i gain'd": [0, 65535], "sunder i gain'd my": [0, 65535], "i gain'd my freedome": [0, 65535], "gain'd my freedome and": [0, 65535], "my freedome and immediately": [0, 65535], "freedome and immediately ran": [0, 65535], "and immediately ran hether": [0, 65535], "immediately ran hether to": [0, 65535], "ran hether to your": [0, 65535], "hether to your grace": [0, 65535], "to your grace whom": [0, 65535], "your grace whom i": [0, 65535], "grace whom i beseech": [0, 65535], "whom i beseech to": [0, 65535], "i beseech to giue": [0, 65535], "beseech to giue me": [0, 65535], "to giue me ample": [0, 65535], "giue me ample satisfaction": [0, 65535], "me ample satisfaction for": [0, 65535], "ample satisfaction for these": [0, 65535], "satisfaction for these deepe": [0, 65535], "for these deepe shames": [0, 65535], "these deepe shames and": [0, 65535], "deepe shames and great": [0, 65535], "shames and great indignities": [0, 65535], "and great indignities gold": [0, 65535], "great indignities gold my": [0, 65535], "indignities gold my lord": [0, 65535], "gold my lord in": [0, 65535], "my lord in truth": [0, 65535], "lord in truth thus": [0, 65535], "in truth thus far": [0, 65535], "truth thus far i": [0, 65535], "thus far i witnes": [0, 65535], "far i witnes with": [0, 65535], "i witnes with him": [0, 65535], "witnes with him that": [0, 65535], "with him that he": [0, 65535], "him that he din'd": [0, 65535], "that he din'd not": [0, 65535], "he din'd not at": [0, 65535], "din'd not at home": [0, 65535], "not at home but": [0, 65535], "at home but was": [0, 65535], "home but was lock'd": [0, 65535], "but was lock'd out": [0, 65535], "was lock'd out duke": [0, 65535], "lock'd out duke but": [0, 65535], "out duke but had": [0, 65535], "duke but had he": [0, 65535], "but had he such": [0, 65535], "had he such a": [0, 65535], "he such a chaine": [0, 65535], "such a chaine of": [0, 65535], "a chaine of thee": [0, 65535], "chaine of thee or": [0, 65535], "of thee or no": [0, 65535], "thee or no gold": [0, 65535], "or no gold he": [0, 65535], "no gold he had": [0, 65535], "gold he had my": [0, 65535], "he had my lord": [0, 65535], "had my lord and": [0, 65535], "my lord and when": [0, 65535], "lord and when he": [0, 65535], "and when he ran": [0, 65535], "when he ran in": [0, 65535], "he ran in heere": [0, 65535], "ran in heere these": [0, 65535], "in heere these people": [0, 65535], "heere these people saw": [0, 65535], "these people saw the": [0, 65535], "people saw the chaine": [0, 65535], "saw the chaine about": [0, 65535], "the chaine about his": [0, 65535], "about his necke mar": [0, 65535], "his necke mar besides": [0, 65535], "necke mar besides i": [0, 65535], "mar besides i will": [0, 65535], "besides i will be": [0, 65535], "i will be sworne": [0, 65535], "will be sworne these": [0, 65535], "be sworne these eares": [0, 65535], "sworne these eares of": [0, 65535], "eares of mine heard": [0, 65535], "of mine heard you": [0, 65535], "mine heard you confesse": [0, 65535], "heard you confesse you": [0, 65535], "you confesse you had": [0, 65535], "confesse you had the": [0, 65535], "you had the chaine": [0, 65535], "the chaine of him": [0, 65535], "chaine of him after": [0, 65535], "of him after you": [0, 65535], "him after you first": [0, 65535], "after you first forswore": [0, 65535], "you first forswore it": [0, 65535], "first forswore it on": [0, 65535], "forswore it on the": [0, 65535], "it on the mart": [0, 65535], "the mart and thereupon": [0, 65535], "mart and thereupon i": [0, 65535], "and thereupon i drew": [0, 65535], "thereupon i drew my": [0, 65535], "i drew my sword": [0, 65535], "drew my sword on": [0, 65535], "my sword on you": [0, 65535], "sword on you and": [0, 65535], "on you and then": [0, 65535], "you and then you": [0, 65535], "and then you fled": [0, 65535], "then you fled into": [0, 65535], "you fled into this": [0, 65535], "into this abbey heere": [0, 65535], "this abbey heere from": [0, 65535], "abbey heere from whence": [0, 65535], "heere from whence i": [0, 65535], "from whence i thinke": [0, 65535], "whence i thinke you": [0, 65535], "i thinke you are": [0, 65535], "thinke you are come": [0, 65535], "you are come by": [0, 65535], "are come by miracle": [0, 65535], "come by miracle e": [0, 65535], "by miracle e ant": [0, 65535], "miracle e ant i": [0, 65535], "e ant i neuer": [0, 65535], "ant i neuer came": [0, 65535], "i neuer came within": [0, 65535], "neuer came within these": [0, 65535], "came within these abbey": [0, 65535], "within these abbey wals": [0, 65535], "these abbey wals nor": [0, 65535], "abbey wals nor euer": [0, 65535], "wals nor euer didst": [0, 65535], "nor euer didst thou": [0, 65535], "euer didst thou draw": [0, 65535], "didst thou draw thy": [0, 65535], "thou draw thy sword": [0, 65535], "draw thy sword on": [0, 65535], "thy sword on me": [0, 65535], "sword on me i": [0, 65535], "on me i neuer": [0, 65535], "me i neuer saw": [0, 65535], "i neuer saw the": [0, 65535], "neuer saw the chaine": [0, 65535], "saw the chaine so": [0, 65535], "the chaine so helpe": [0, 65535], "chaine so helpe me": [0, 65535], "so helpe me heauen": [0, 65535], "helpe me heauen and": [0, 65535], "me heauen and this": [0, 65535], "heauen and this is": [0, 65535], "and this is false": [0, 65535], "this is false you": [0, 65535], "is false you burthen": [0, 65535], "false you burthen me": [0, 65535], "you burthen me withall": [0, 65535], "burthen me withall duke": [0, 65535], "me withall duke why": [0, 65535], "withall duke why what": [0, 65535], "duke why what an": [0, 65535], "why what an intricate": [0, 65535], "what an intricate impeach": [0, 65535], "an intricate impeach is": [0, 65535], "intricate impeach is this": [0, 65535], "impeach is this i": [0, 65535], "is this i thinke": [0, 65535], "this i thinke you": [0, 65535], "i thinke you all": [0, 65535], "thinke you all haue": [0, 65535], "you all haue drunke": [0, 65535], "all haue drunke of": [0, 65535], "haue drunke of circes": [0, 65535], "drunke of circes cup": [0, 65535], "of circes cup if": [0, 65535], "circes cup if heere": [0, 65535], "cup if heere you": [0, 65535], "if heere you hous'd": [0, 65535], "heere you hous'd him": [0, 65535], "you hous'd him heere": [0, 65535], "hous'd him heere he": [0, 65535], "him heere he would": [0, 65535], "heere he would haue": [0, 65535], "he would haue bin": [0, 65535], "would haue bin if": [0, 65535], "haue bin if he": [0, 65535], "bin if he were": [0, 65535], "if he were mad": [0, 65535], "he were mad he": [0, 65535], "were mad he would": [0, 65535], "mad he would not": [0, 65535], "he would not pleade": [0, 65535], "would not pleade so": [0, 65535], "not pleade so coldly": [0, 65535], "pleade so coldly you": [0, 65535], "so coldly you say": [0, 65535], "coldly you say he": [0, 65535], "you say he din'd": [0, 65535], "say he din'd at": [0, 65535], "he din'd at home": [0, 65535], "din'd at home the": [0, 65535], "at home the goldsmith": [0, 65535], "home the goldsmith heere": [0, 65535], "the goldsmith heere denies": [0, 65535], "goldsmith heere denies that": [0, 65535], "heere denies that saying": [0, 65535], "denies that saying sirra": [0, 65535], "that saying sirra what": [0, 65535], "saying sirra what say": [0, 65535], "sirra what say you": [0, 65535], "what say you e": [0, 65535], "say you e dro": [0, 65535], "you e dro sir": [0, 65535], "e dro sir he": [0, 65535], "dro sir he din'de": [0, 65535], "sir he din'de with": [0, 65535], "he din'de with her": [0, 65535], "din'de with her there": [0, 65535], "with her there at": [0, 65535], "her there at the": [0, 65535], "there at the porpentine": [0, 65535], "at the porpentine cur": [0, 65535], "the porpentine cur he": [0, 65535], "porpentine cur he did": [0, 65535], "cur he did and": [0, 65535], "he did and from": [0, 65535], "did and from my": [0, 65535], "and from my finger": [0, 65535], "from my finger snacht": [0, 65535], "my finger snacht that": [0, 65535], "finger snacht that ring": [0, 65535], "snacht that ring e": [0, 65535], "that ring e anti": [0, 65535], "ring e anti tis": [0, 65535], "e anti tis true": [0, 65535], "anti tis true my": [0, 65535], "tis true my liege": [0, 65535], "true my liege this": [0, 65535], "my liege this ring": [0, 65535], "liege this ring i": [0, 65535], "this ring i had": [0, 65535], "ring i had of": [0, 65535], "i had of her": [0, 65535], "had of her duke": [0, 65535], "of her duke saw'st": [0, 65535], "her duke saw'st thou": [0, 65535], "duke saw'st thou him": [0, 65535], "saw'st thou him enter": [0, 65535], "thou him enter at": [0, 65535], "him enter at the": [0, 65535], "enter at the abbey": [0, 65535], "at the abbey heere": [0, 65535], "the abbey heere curt": [0, 65535], "abbey heere curt as": [0, 65535], "heere curt as sure": [0, 65535], "curt as sure my": [0, 65535], "as sure my liege": [0, 65535], "sure my liege as": [0, 65535], "my liege as i": [0, 65535], "liege as i do": [0, 65535], "as i do see": [0, 65535], "i do see your": [0, 65535], "do see your grace": [0, 65535], "see your grace duke": [0, 65535], "your grace duke why": [0, 65535], "grace duke why this": [0, 65535], "duke why this is": [0, 65535], "why this is straunge": [0, 65535], "this is straunge go": [0, 65535], "is straunge go call": [0, 65535], "straunge go call the": [0, 65535], "go call the abbesse": [0, 65535], "call the abbesse hither": [0, 65535], "the abbesse hither i": [0, 65535], "abbesse hither i thinke": [0, 65535], "hither i thinke you": [0, 65535], "thinke you are all": [0, 65535], "you are all mated": [0, 65535], "are all mated or": [0, 65535], "all mated or starke": [0, 65535], "mated or starke mad": [0, 65535], "or starke mad exit": [0, 65535], "starke mad exit one": [0, 65535], "mad exit one to": [0, 65535], "exit one to the": [0, 65535], "one to the abbesse": [0, 65535], "to the abbesse fa": [0, 65535], "the abbesse fa most": [0, 65535], "abbesse fa most mighty": [0, 65535], "fa most mighty duke": [0, 65535], "most mighty duke vouchsafe": [0, 65535], "mighty duke vouchsafe me": [0, 65535], "duke vouchsafe me speak": [0, 65535], "vouchsafe me speak a": [0, 65535], "me speak a word": [0, 65535], "speak a word haply": [0, 65535], "a word haply i": [0, 65535], "word haply i see": [0, 65535], "haply i see a": [0, 65535], "i see a friend": [0, 65535], "see a friend will": [0, 65535], "a friend will saue": [0, 65535], "friend will saue my": [0, 65535], "will saue my life": [0, 65535], "saue my life and": [0, 65535], "my life and pay": [0, 65535], "life and pay the": [0, 65535], "and pay the sum": [0, 65535], "pay the sum that": [0, 65535], "the sum that may": [0, 65535], "sum that may deliuer": [0, 65535], "that may deliuer me": [0, 65535], "may deliuer me duke": [0, 65535], "deliuer me duke speake": [0, 65535], "me duke speake freely": [0, 65535], "duke speake freely siracusian": [0, 65535], "speake freely siracusian what": [0, 65535], "freely siracusian what thou": [0, 65535], "siracusian what thou wilt": [0, 65535], "what thou wilt fath": [0, 65535], "thou wilt fath is": [0, 65535], "wilt fath is not": [0, 65535], "fath is not your": [0, 65535], "is not your name": [0, 65535], "not your name sir": [0, 65535], "your name sir call'd": [0, 65535], "name sir call'd antipholus": [0, 65535], "sir call'd antipholus and": [0, 65535], "call'd antipholus and is": [0, 65535], "antipholus and is not": [0, 65535], "and is not that": [0, 65535], "is not that your": [0, 65535], "not that your bondman": [0, 65535], "that your bondman dromio": [0, 65535], "your bondman dromio e": [0, 65535], "bondman dromio e dro": [0, 65535], "dromio e dro within": [0, 65535], "e dro within this": [0, 65535], "dro within this houre": [0, 65535], "within this houre i": [0, 65535], "this houre i was": [0, 65535], "houre i was his": [0, 65535], "i was his bondman": [0, 65535], "was his bondman sir": [0, 65535], "his bondman sir but": [0, 65535], "bondman sir but he": [0, 65535], "sir but he i": [0, 65535], "but he i thanke": [0, 65535], "he i thanke him": [0, 65535], "i thanke him gnaw'd": [0, 65535], "thanke him gnaw'd in": [0, 65535], "him gnaw'd in two": [0, 65535], "gnaw'd in two my": [0, 65535], "in two my cords": [0, 65535], "two my cords now": [0, 65535], "my cords now am": [0, 65535], "cords now am i": [0, 65535], "now am i dromio": [0, 65535], "am i dromio and": [0, 65535], "i dromio and his": [0, 65535], "dromio and his man": [0, 65535], "and his man vnbound": [0, 65535], "his man vnbound fath": [0, 65535], "man vnbound fath i": [0, 65535], "vnbound fath i am": [0, 65535], "fath i am sure": [0, 65535], "i am sure you": [0, 65535], "am sure you both": [0, 65535], "sure you both of": [0, 65535], "you both of you": [0, 65535], "both of you remember": [0, 65535], "of you remember me": [0, 65535], "you remember me dro": [0, 65535], "remember me dro our": [0, 65535], "me dro our selues": [0, 65535], "dro our selues we": [0, 65535], "our selues we do": [0, 65535], "selues we do remember": [0, 65535], "we do remember sir": [0, 65535], "do remember sir by": [0, 65535], "remember sir by you": [0, 65535], "sir by you for": [0, 65535], "by you for lately": [0, 65535], "you for lately we": [0, 65535], "for lately we were": [0, 65535], "lately we were bound": [0, 65535], "we were bound as": [0, 65535], "were bound as you": [0, 65535], "bound as you are": [0, 65535], "as you are now": [0, 65535], "you are now you": [0, 65535], "are now you are": [0, 65535], "now you are not": [0, 65535], "you are not pinches": [0, 65535], "are not pinches patient": [0, 65535], "not pinches patient are": [0, 65535], "pinches patient are you": [0, 65535], "patient are you sir": [0, 65535], "are you sir father": [0, 65535], "you sir father why": [0, 65535], "sir father why looke": [0, 65535], "father why looke you": [0, 65535], "why looke you strange": [0, 65535], "looke you strange on": [0, 65535], "you strange on me": [0, 65535], "strange on me you": [0, 65535], "on me you know": [0, 65535], "me you know me": [0, 65535], "you know me well": [0, 65535], "know me well e": [0, 65535], "me well e ant": [0, 65535], "well e ant i": [0, 65535], "ant i neuer saw": [0, 65535], "i neuer saw you": [0, 65535], "neuer saw you in": [0, 65535], "saw you in my": [0, 65535], "you in my life": [0, 65535], "in my life till": [0, 65535], "my life till now": [0, 65535], "life till now fa": [0, 65535], "till now fa oh": [0, 65535], "now fa oh griefe": [0, 65535], "fa oh griefe hath": [0, 65535], "oh griefe hath chang'd": [0, 65535], "griefe hath chang'd me": [0, 65535], "hath chang'd me since": [0, 65535], "chang'd me since you": [0, 65535], "me since you saw": [0, 65535], "since you saw me": [0, 65535], "you saw me last": [0, 65535], "saw me last and": [0, 65535], "me last and carefull": [0, 65535], "last and carefull houres": [0, 65535], "and carefull houres with": [0, 65535], "carefull houres with times": [0, 65535], "houres with times deformed": [0, 65535], "with times deformed hand": [0, 65535], "times deformed hand haue": [0, 65535], "deformed hand haue written": [0, 65535], "hand haue written strange": [0, 65535], "haue written strange defeatures": [0, 65535], "written strange defeatures in": [0, 65535], "strange defeatures in my": [0, 65535], "defeatures in my face": [0, 65535], "in my face but": [0, 65535], "my face but tell": [0, 65535], "face but tell me": [0, 65535], "but tell me yet": [0, 65535], "tell me yet dost": [0, 65535], "me yet dost thou": [0, 65535], "yet dost thou not": [0, 65535], "thou not know my": [0, 65535], "not know my voice": [0, 65535], "know my voice ant": [0, 65535], "my voice ant neither": [0, 65535], "voice ant neither fat": [0, 65535], "ant neither fat dromio": [0, 65535], "neither fat dromio nor": [0, 65535], "fat dromio nor thou": [0, 65535], "dromio nor thou dro": [0, 65535], "nor thou dro no": [0, 65535], "thou dro no trust": [0, 65535], "dro no trust me": [0, 65535], "no trust me sir": [0, 65535], "trust me sir nor": [0, 65535], "me sir nor i": [0, 65535], "sir nor i fa": [0, 65535], "nor i fa i": [0, 65535], "i fa i am": [0, 65535], "fa i am sure": [0, 65535], "i am sure thou": [0, 65535], "am sure thou dost": [0, 65535], "sure thou dost e": [0, 65535], "thou dost e dromio": [0, 65535], "dost e dromio i": [0, 65535], "e dromio i sir": [0, 65535], "dromio i sir but": [0, 65535], "i sir but i": [0, 65535], "sir but i am": [0, 65535], "but i am sure": [0, 65535], "i am sure i": [0, 65535], "am sure i do": [0, 65535], "sure i do not": [0, 65535], "i do not and": [0, 65535], "do not and whatsoeuer": [0, 65535], "not and whatsoeuer a": [0, 65535], "and whatsoeuer a man": [0, 65535], "whatsoeuer a man denies": [0, 65535], "a man denies you": [0, 65535], "man denies you are": [0, 65535], "denies you are now": [0, 65535], "you are now bound": [0, 65535], "are now bound to": [0, 65535], "now bound to beleeue": [0, 65535], "bound to beleeue him": [0, 65535], "to beleeue him fath": [0, 65535], "beleeue him fath not": [0, 65535], "him fath not know": [0, 65535], "fath not know my": [0, 65535], "know my voice oh": [0, 65535], "my voice oh times": [0, 65535], "voice oh times extremity": [0, 65535], "oh times extremity hast": [0, 65535], "times extremity hast thou": [0, 65535], "extremity hast thou so": [0, 65535], "hast thou so crack'd": [0, 65535], "thou so crack'd and": [0, 65535], "so crack'd and splitted": [0, 65535], "crack'd and splitted my": [0, 65535], "and splitted my poore": [0, 65535], "splitted my poore tongue": [0, 65535], "my poore tongue in": [0, 65535], "poore tongue in seuen": [0, 65535], "tongue in seuen short": [0, 65535], "in seuen short yeares": [0, 65535], "seuen short yeares that": [0, 65535], "short yeares that heere": [0, 65535], "yeares that heere my": [0, 65535], "that heere my onely": [0, 65535], "heere my onely sonne": [0, 65535], "my onely sonne knowes": [0, 65535], "onely sonne knowes not": [0, 65535], "sonne knowes not my": [0, 65535], "knowes not my feeble": [0, 65535], "not my feeble key": [0, 65535], "my feeble key of": [0, 65535], "feeble key of vntun'd": [0, 65535], "key of vntun'd cares": [0, 65535], "of vntun'd cares though": [0, 65535], "vntun'd cares though now": [0, 65535], "cares though now this": [0, 65535], "though now this grained": [0, 65535], "now this grained face": [0, 65535], "this grained face of": [0, 65535], "grained face of mine": [0, 65535], "face of mine be": [0, 65535], "of mine be hid": [0, 65535], "mine be hid in": [0, 65535], "be hid in sap": [0, 65535], "hid in sap consuming": [0, 65535], "in sap consuming winters": [0, 65535], "sap consuming winters drizled": [0, 65535], "consuming winters drizled snow": [0, 65535], "winters drizled snow and": [0, 65535], "drizled snow and all": [0, 65535], "snow and all the": [0, 65535], "and all the conduits": [0, 65535], "all the conduits of": [0, 65535], "the conduits of my": [0, 65535], "conduits of my blood": [0, 65535], "of my blood froze": [0, 65535], "my blood froze vp": [0, 65535], "blood froze vp yet": [0, 65535], "froze vp yet hath": [0, 65535], "vp yet hath my": [0, 65535], "yet hath my night": [0, 65535], "hath my night of": [0, 65535], "my night of life": [0, 65535], "night of life some": [0, 65535], "of life some memorie": [0, 65535], "life some memorie my": [0, 65535], "some memorie my wasting": [0, 65535], "memorie my wasting lampes": [0, 65535], "my wasting lampes some": [0, 65535], "wasting lampes some fading": [0, 65535], "lampes some fading glimmer": [0, 65535], "some fading glimmer left": [0, 65535], "fading glimmer left my": [0, 65535], "glimmer left my dull": [0, 65535], "left my dull deafe": [0, 65535], "my dull deafe eares": [0, 65535], "dull deafe eares a": [0, 65535], "deafe eares a little": [0, 65535], "eares a little vse": [0, 65535], "a little vse to": [0, 65535], "little vse to heare": [0, 65535], "vse to heare all": [0, 65535], "to heare all these": [0, 65535], "heare all these old": [0, 65535], "all these old witnesses": [0, 65535], "these old witnesses i": [0, 65535], "old witnesses i cannot": [0, 65535], "witnesses i cannot erre": [0, 65535], "i cannot erre tell": [0, 65535], "cannot erre tell me": [0, 65535], "erre tell me thou": [0, 65535], "tell me thou art": [0, 65535], "me thou art my": [0, 65535], "thou art my sonne": [0, 65535], "art my sonne antipholus": [0, 65535], "my sonne antipholus ant": [0, 65535], "sonne antipholus ant i": [0, 65535], "antipholus ant i neuer": [0, 65535], "i neuer saw my": [0, 65535], "neuer saw my father": [0, 65535], "saw my father in": [0, 65535], "my father in my": [0, 65535], "father in my life": [0, 65535], "in my life fa": [0, 65535], "my life fa but": [0, 65535], "life fa but seuen": [0, 65535], "fa but seuen yeares": [0, 65535], "but seuen yeares since": [0, 65535], "seuen yeares since in": [0, 65535], "yeares since in siracusa": [0, 65535], "since in siracusa boy": [0, 65535], "in siracusa boy thou": [0, 65535], "siracusa boy thou know'st": [0, 65535], "boy thou know'st we": [0, 65535], "thou know'st we parted": [0, 65535], "know'st we parted but": [0, 65535], "we parted but perhaps": [0, 65535], "parted but perhaps my": [0, 65535], "but perhaps my sonne": [0, 65535], "perhaps my sonne thou": [0, 65535], "my sonne thou sham'st": [0, 65535], "sonne thou sham'st to": [0, 65535], "thou sham'st to acknowledge": [0, 65535], "sham'st to acknowledge me": [0, 65535], "to acknowledge me in": [0, 65535], "acknowledge me in miserie": [0, 65535], "me in miserie ant": [0, 65535], "in miserie ant the": [0, 65535], "miserie ant the duke": [0, 65535], "ant the duke and": [0, 65535], "the duke and all": [0, 65535], "duke and all that": [0, 65535], "and all that know": [0, 65535], "all that know me": [0, 65535], "that know me in": [0, 65535], "know me in the": [0, 65535], "me in the city": [0, 65535], "in the city can": [0, 65535], "the city can witnesse": [0, 65535], "city can witnesse with": [0, 65535], "can witnesse with me": [0, 65535], "witnesse with me that": [0, 65535], "with me that it": [0, 65535], "me that it is": [0, 65535], "that it is not": [0, 65535], "it is not so": [0, 65535], "is not so i": [0, 65535], "not so i ne're": [0, 65535], "so i ne're saw": [0, 65535], "i ne're saw siracusa": [0, 65535], "ne're saw siracusa in": [0, 65535], "saw siracusa in my": [0, 65535], "siracusa in my life": [0, 65535], "in my life duke": [0, 65535], "my life duke i": [0, 65535], "life duke i tell": [0, 65535], "duke i tell thee": [0, 65535], "i tell thee siracusian": [0, 65535], "tell thee siracusian twentie": [0, 65535], "thee siracusian twentie yeares": [0, 65535], "siracusian twentie yeares haue": [0, 65535], "twentie yeares haue i": [0, 65535], "yeares haue i bin": [0, 65535], "haue i bin patron": [0, 65535], "i bin patron to": [0, 65535], "bin patron to antipholus": [0, 65535], "patron to antipholus during": [0, 65535], "to antipholus during which": [0, 65535], "antipholus during which time": [0, 65535], "during which time he": [0, 65535], "which time he ne're": [0, 65535], "time he ne're saw": [0, 65535], "he ne're saw siracusa": [0, 65535], "ne're saw siracusa i": [0, 65535], "saw siracusa i see": [0, 65535], "siracusa i see thy": [0, 65535], "i see thy age": [0, 65535], "see thy age and": [0, 65535], "thy age and dangers": [0, 65535], "age and dangers make": [0, 65535], "and dangers make thee": [0, 65535], "dangers make thee dote": [0, 65535], "make thee dote enter": [0, 65535], "thee dote enter the": [0, 65535], "dote enter the abbesse": [0, 65535], "enter the abbesse with": [0, 65535], "the abbesse with antipholus": [0, 65535], "abbesse with antipholus siracusa": [0, 65535], "with antipholus siracusa and": [0, 65535], "antipholus siracusa and dromio": [0, 65535], "siracusa and dromio sir": [0, 65535], "and dromio sir abbesse": [0, 65535], "dromio sir abbesse most": [0, 65535], "sir abbesse most mightie": [0, 65535], "abbesse most mightie duke": [0, 65535], "most mightie duke behold": [0, 65535], "mightie duke behold a": [0, 65535], "duke behold a man": [0, 65535], "behold a man much": [0, 65535], "a man much wrong'd": [0, 65535], "man much wrong'd all": [0, 65535], "much wrong'd all gather": [0, 65535], "wrong'd all gather to": [0, 65535], "all gather to see": [0, 65535], "gather to see them": [0, 65535], "to see them adr": [0, 65535], "see them adr i": [0, 65535], "them adr i see": [0, 65535], "adr i see two": [0, 65535], "i see two husbands": [0, 65535], "see two husbands or": [0, 65535], "two husbands or mine": [0, 65535], "husbands or mine eyes": [0, 65535], "or mine eyes deceiue": [0, 65535], "mine eyes deceiue me": [0, 65535], "eyes deceiue me duke": [0, 65535], "deceiue me duke one": [0, 65535], "me duke one of": [0, 65535], "duke one of these": [0, 65535], "one of these men": [0, 65535], "of these men is": [0, 65535], "these men is genius": [0, 65535], "men is genius to": [0, 65535], "is genius to the": [0, 65535], "genius to the other": [0, 65535], "to the other and": [0, 65535], "the other and so": [0, 65535], "other and so of": [0, 65535], "and so of these": [0, 65535], "so of these which": [0, 65535], "of these which is": [0, 65535], "these which is the": [0, 65535], "which is the naturall": [0, 65535], "is the naturall man": [0, 65535], "the naturall man and": [0, 65535], "naturall man and which": [0, 65535], "man and which the": [0, 65535], "and which the spirit": [0, 65535], "which the spirit who": [0, 65535], "the spirit who deciphers": [0, 65535], "spirit who deciphers them": [0, 65535], "who deciphers them s": [0, 65535], "deciphers them s dromio": [0, 65535], "them s dromio i": [0, 65535], "s dromio i sir": [0, 65535], "dromio i sir am": [0, 65535], "i sir am dromio": [0, 65535], "sir am dromio command": [0, 65535], "am dromio command him": [0, 65535], "dromio command him away": [0, 65535], "command him away e": [0, 65535], "him away e dro": [0, 65535], "away e dro i": [0, 65535], "e dro i sir": [0, 65535], "dro i sir am": [0, 65535], "sir am dromio pray": [0, 65535], "am dromio pray let": [0, 65535], "dromio pray let me": [0, 65535], "pray let me stay": [0, 65535], "let me stay s": [0, 65535], "me stay s ant": [0, 65535], "stay s ant egeon": [0, 65535], "s ant egeon art": [0, 65535], "ant egeon art thou": [0, 65535], "egeon art thou not": [0, 65535], "art thou not or": [0, 65535], "thou not or else": [0, 65535], "not or else his": [0, 65535], "or else his ghost": [0, 65535], "else his ghost s": [0, 65535], "his ghost s drom": [0, 65535], "ghost s drom oh": [0, 65535], "s drom oh my": [0, 65535], "drom oh my olde": [0, 65535], "oh my olde master": [0, 65535], "my olde master who": [0, 65535], "olde master who hath": [0, 65535], "master who hath bound": [0, 65535], "who hath bound him": [0, 65535], "hath bound him heere": [0, 65535], "bound him heere abb": [0, 65535], "him heere abb who": [0, 65535], "heere abb who euer": [0, 65535], "abb who euer bound": [0, 65535], "who euer bound him": [0, 65535], "euer bound him i": [0, 65535], "bound him i will": [0, 65535], "him i will lose": [0, 65535], "i will lose his": [0, 65535], "will lose his bonds": [0, 65535], "lose his bonds and": [0, 65535], "his bonds and gaine": [0, 65535], "bonds and gaine a": [0, 65535], "and gaine a husband": [0, 65535], "gaine a husband by": [0, 65535], "a husband by his": [0, 65535], "husband by his libertie": [0, 65535], "by his libertie speake": [0, 65535], "his libertie speake olde": [0, 65535], "libertie speake olde egeon": [0, 65535], "speake olde egeon if": [0, 65535], "olde egeon if thou": [0, 65535], "egeon if thou bee'st": [0, 65535], "if thou bee'st the": [0, 65535], "thou bee'st the man": [0, 65535], "bee'st the man that": [0, 65535], "the man that hadst": [0, 65535], "man that hadst a": [0, 65535], "that hadst a wife": [0, 65535], "hadst a wife once": [0, 65535], "a wife once call'd": [0, 65535], "wife once call'd \u00e6milia": [0, 65535], "once call'd \u00e6milia that": [0, 65535], "call'd \u00e6milia that bore": [0, 65535], "\u00e6milia that bore thee": [0, 65535], "that bore thee at": [0, 65535], "bore thee at a": [0, 65535], "thee at a burthen": [0, 65535], "at a burthen two": [0, 65535], "a burthen two faire": [0, 65535], "burthen two faire sonnes": [0, 65535], "two faire sonnes oh": [0, 65535], "faire sonnes oh if": [0, 65535], "sonnes oh if thou": [0, 65535], "oh if thou bee'st": [0, 65535], "thou bee'st the same": [0, 65535], "bee'st the same egeon": [0, 65535], "the same egeon speake": [0, 65535], "same egeon speake and": [0, 65535], "egeon speake and speake": [0, 65535], "speake and speake vnto": [0, 65535], "and speake vnto the": [0, 65535], "speake vnto the same": [0, 65535], "vnto the same \u00e6milia": [0, 65535], "the same \u00e6milia duke": [0, 65535], "same \u00e6milia duke why": [0, 65535], "\u00e6milia duke why heere": [0, 65535], "duke why heere begins": [0, 65535], "why heere begins his": [0, 65535], "heere begins his morning": [0, 65535], "begins his morning storie": [0, 65535], "his morning storie right": [0, 65535], "morning storie right these": [0, 65535], "storie right these twoantipholus": [0, 65535], "right these twoantipholus these": [0, 65535], "these twoantipholus these two": [0, 65535], "twoantipholus these two so": [0, 65535], "these two so like": [0, 65535], "two so like and": [0, 65535], "so like and these": [0, 65535], "like and these two": [0, 65535], "and these two dromio's": [0, 65535], "these two dromio's one": [0, 65535], "two dromio's one in": [0, 65535], "dromio's one in semblance": [0, 65535], "one in semblance besides": [0, 65535], "in semblance besides her": [0, 65535], "semblance besides her vrging": [0, 65535], "besides her vrging of": [0, 65535], "her vrging of her": [0, 65535], "vrging of her wracke": [0, 65535], "of her wracke at": [0, 65535], "her wracke at sea": [0, 65535], "wracke at sea these": [0, 65535], "at sea these are": [0, 65535], "sea these are the": [0, 65535], "these are the parents": [0, 65535], "are the parents to": [0, 65535], "the parents to these": [0, 65535], "parents to these children": [0, 65535], "to these children which": [0, 65535], "these children which accidentally": [0, 65535], "children which accidentally are": [0, 65535], "which accidentally are met": [0, 65535], "accidentally are met together": [0, 65535], "are met together fa": [0, 65535], "met together fa if": [0, 65535], "together fa if i": [0, 65535], "fa if i dreame": [0, 65535], "if i dreame not": [0, 65535], "i dreame not thou": [0, 65535], "dreame not thou art": [0, 65535], "not thou art \u00e6milia": [0, 65535], "thou art \u00e6milia if": [0, 65535], "art \u00e6milia if thou": [0, 65535], "\u00e6milia if thou art": [0, 65535], "if thou art she": [0, 65535], "thou art she tell": [0, 65535], "art she tell me": [0, 65535], "she tell me where": [0, 65535], "tell me where is": [0, 65535], "me where is that": [0, 65535], "where is that sonne": [0, 65535], "is that sonne that": [0, 65535], "that sonne that floated": [0, 65535], "sonne that floated with": [0, 65535], "that floated with thee": [0, 65535], "floated with thee on": [0, 65535], "with thee on the": [0, 65535], "thee on the fatall": [0, 65535], "on the fatall rafte": [0, 65535], "the fatall rafte abb": [0, 65535], "fatall rafte abb by": [0, 65535], "rafte abb by men": [0, 65535], "abb by men of": [0, 65535], "by men of epidamium": [0, 65535], "men of epidamium he": [0, 65535], "of epidamium he and": [0, 65535], "epidamium he and i": [0, 65535], "he and i and": [0, 65535], "and i and the": [0, 65535], "i and the twin": [0, 65535], "and the twin dromio": [0, 65535], "the twin dromio all": [0, 65535], "twin dromio all were": [0, 65535], "dromio all were taken": [0, 65535], "all were taken vp": [0, 65535], "were taken vp but": [0, 65535], "taken vp but by": [0, 65535], "vp but by and": [0, 65535], "by and by rude": [0, 65535], "and by rude fishermen": [0, 65535], "by rude fishermen of": [0, 65535], "rude fishermen of corinth": [0, 65535], "fishermen of corinth by": [0, 65535], "of corinth by force": [0, 65535], "corinth by force tooke": [0, 65535], "by force tooke dromio": [0, 65535], "force tooke dromio and": [0, 65535], "tooke dromio and my": [0, 65535], "dromio and my sonne": [0, 65535], "and my sonne from": [0, 65535], "my sonne from them": [0, 65535], "sonne from them and": [0, 65535], "from them and me": [0, 65535], "them and me they": [0, 65535], "and me they left": [0, 65535], "me they left with": [0, 65535], "they left with those": [0, 65535], "left with those of": [0, 65535], "with those of epidamium": [0, 65535], "those of epidamium what": [0, 65535], "of epidamium what then": [0, 65535], "epidamium what then became": [0, 65535], "what then became of": [0, 65535], "then became of them": [0, 65535], "became of them i": [0, 65535], "of them i cannot": [0, 65535], "them i cannot tell": [0, 65535], "i cannot tell i": [0, 65535], "cannot tell i to": [0, 65535], "tell i to this": [0, 65535], "i to this fortune": [0, 65535], "to this fortune that": [0, 65535], "this fortune that you": [0, 65535], "fortune that you see": [0, 65535], "that you see mee": [0, 65535], "you see mee in": [0, 65535], "see mee in duke": [0, 65535], "mee in duke antipholus": [0, 65535], "in duke antipholus thou": [0, 65535], "duke antipholus thou cam'st": [0, 65535], "antipholus thou cam'st from": [0, 65535], "thou cam'st from corinth": [0, 65535], "cam'st from corinth first": [0, 65535], "from corinth first s": [0, 65535], "corinth first s ant": [0, 65535], "first s ant no": [0, 65535], "s ant no sir": [0, 65535], "ant no sir not": [0, 65535], "no sir not i": [0, 65535], "sir not i i": [0, 65535], "not i i came": [0, 65535], "i i came from": [0, 65535], "i came from siracuse": [0, 65535], "came from siracuse duke": [0, 65535], "from siracuse duke stay": [0, 65535], "siracuse duke stay stand": [0, 65535], "duke stay stand apart": [0, 65535], "stay stand apart i": [0, 65535], "stand apart i know": [0, 65535], "apart i know not": [0, 65535], "i know not which": [0, 65535], "know not which is": [0, 65535], "not which is which": [0, 65535], "which is which e": [0, 65535], "is which e ant": [0, 65535], "which e ant i": [0, 65535], "e ant i came": [0, 65535], "ant i came from": [0, 65535], "i came from corinth": [0, 65535], "came from corinth my": [0, 65535], "from corinth my most": [0, 65535], "corinth my most gracious": [0, 65535], "my most gracious lord": [0, 65535], "most gracious lord e": [0, 65535], "gracious lord e dro": [0, 65535], "lord e dro and": [0, 65535], "e dro and i": [0, 65535], "dro and i with": [0, 65535], "and i with him": [0, 65535], "i with him e": [0, 65535], "with him e ant": [0, 65535], "him e ant brought": [0, 65535], "e ant brought to": [0, 65535], "ant brought to this": [0, 65535], "brought to this town": [0, 65535], "to this town by": [0, 65535], "this town by that": [0, 65535], "town by that most": [0, 65535], "by that most famous": [0, 65535], "that most famous warriour": [0, 65535], "most famous warriour duke": [0, 65535], "famous warriour duke menaphon": [0, 65535], "warriour duke menaphon your": [0, 65535], "duke menaphon your most": [0, 65535], "menaphon your most renowned": [0, 65535], "your most renowned vnckle": [0, 65535], "most renowned vnckle adr": [0, 65535], "renowned vnckle adr which": [0, 65535], "vnckle adr which of": [0, 65535], "adr which of you": [0, 65535], "which of you two": [0, 65535], "of you two did": [0, 65535], "you two did dine": [0, 65535], "two did dine with": [0, 65535], "did dine with me": [0, 65535], "dine with me to": [0, 65535], "with me to day": [0, 65535], "me to day s": [0, 65535], "to day s ant": [0, 65535], "day s ant i": [0, 65535], "s ant i gentle": [0, 65535], "ant i gentle mistris": [0, 65535], "i gentle mistris adr": [0, 65535], "gentle mistris adr and": [0, 65535], "mistris adr and are": [0, 65535], "adr and are not": [0, 65535], "and are not you": [0, 65535], "are not you my": [0, 65535], "not you my husband": [0, 65535], "you my husband e": [0, 65535], "my husband e ant": [0, 65535], "husband e ant no": [0, 65535], "e ant no i": [0, 65535], "ant no i say": [0, 65535], "no i say nay": [0, 65535], "i say nay to": [0, 65535], "say nay to that": [0, 65535], "nay to that s": [0, 65535], "to that s ant": [0, 65535], "that s ant and": [0, 65535], "s ant and so": [0, 65535], "ant and so do": [0, 65535], "and so do i": [0, 65535], "so do i yet": [0, 65535], "do i yet did": [0, 65535], "i yet did she": [0, 65535], "yet did she call": [0, 65535], "did she call me": [0, 65535], "she call me so": [0, 65535], "call me so and": [0, 65535], "me so and this": [0, 65535], "so and this faire": [0, 65535], "and this faire gentlewoman": [0, 65535], "this faire gentlewoman her": [0, 65535], "faire gentlewoman her sister": [0, 65535], "gentlewoman her sister heere": [0, 65535], "her sister heere did": [0, 65535], "sister heere did call": [0, 65535], "heere did call me": [0, 65535], "did call me brother": [0, 65535], "call me brother what": [0, 65535], "me brother what i": [0, 65535], "brother what i told": [0, 65535], "what i told you": [0, 65535], "i told you then": [0, 65535], "told you then i": [0, 65535], "you then i hope": [0, 65535], "then i hope i": [0, 65535], "i hope i shall": [0, 65535], "hope i shall haue": [0, 65535], "i shall haue leisure": [0, 65535], "shall haue leisure to": [0, 65535], "haue leisure to make": [0, 65535], "leisure to make good": [0, 65535], "to make good if": [0, 65535], "make good if this": [0, 65535], "good if this be": [0, 65535], "if this be not": [0, 65535], "this be not a": [0, 65535], "be not a dreame": [0, 65535], "not a dreame i": [0, 65535], "a dreame i see": [0, 65535], "dreame i see and": [0, 65535], "i see and heare": [0, 65535], "see and heare goldsmith": [0, 65535], "and heare goldsmith that": [0, 65535], "heare goldsmith that is": [0, 65535], "goldsmith that is the": [0, 65535], "that is the chaine": [0, 65535], "is the chaine sir": [0, 65535], "the chaine sir which": [0, 65535], "chaine sir which you": [0, 65535], "sir which you had": [0, 65535], "which you had of": [0, 65535], "you had of mee": [0, 65535], "had of mee s": [0, 65535], "of mee s ant": [0, 65535], "mee s ant i": [0, 65535], "s ant i thinke": [0, 65535], "ant i thinke it": [0, 65535], "i thinke it be": [0, 65535], "thinke it be sir": [0, 65535], "be sir i denie": [0, 65535], "sir i denie it": [0, 65535], "i denie it not": [0, 65535], "denie it not e": [0, 65535], "it not e ant": [0, 65535], "not e ant and": [0, 65535], "e ant and you": [0, 65535], "ant and you sir": [0, 65535], "and you sir for": [0, 65535], "you sir for this": [0, 65535], "sir for this chaine": [0, 65535], "for this chaine arrested": [0, 65535], "this chaine arrested me": [0, 65535], "chaine arrested me gold": [0, 65535], "arrested me gold i": [0, 65535], "me gold i thinke": [0, 65535], "gold i thinke i": [0, 65535], "i thinke i did": [0, 65535], "thinke i did sir": [0, 65535], "i did sir i": [0, 65535], "did sir i deny": [0, 65535], "sir i deny it": [0, 65535], "i deny it not": [0, 65535], "deny it not adr": [0, 65535], "it not adr i": [0, 65535], "not adr i sent": [0, 65535], "adr i sent you": [0, 65535], "i sent you monie": [0, 65535], "sent you monie sir": [0, 65535], "you monie sir to": [0, 65535], "monie sir to be": [0, 65535], "sir to be your": [0, 65535], "to be your baile": [0, 65535], "be your baile by": [0, 65535], "your baile by dromio": [0, 65535], "baile by dromio but": [0, 65535], "by dromio but i": [0, 65535], "dromio but i thinke": [0, 65535], "but i thinke he": [0, 65535], "i thinke he brought": [0, 65535], "thinke he brought it": [0, 65535], "he brought it not": [0, 65535], "brought it not e": [0, 65535], "it not e dro": [0, 65535], "not e dro no": [0, 65535], "e dro no none": [0, 65535], "dro no none by": [0, 65535], "no none by me": [0, 65535], "none by me s": [0, 65535], "by me s ant": [0, 65535], "me s ant this": [0, 65535], "s ant this purse": [0, 65535], "ant this purse of": [0, 65535], "this purse of duckets": [0, 65535], "purse of duckets i": [0, 65535], "of duckets i receiu'd": [0, 65535], "duckets i receiu'd from": [0, 65535], "i receiu'd from you": [0, 65535], "receiu'd from you and": [0, 65535], "from you and dromio": [0, 65535], "you and dromio my": [0, 65535], "and dromio my man": [0, 65535], "dromio my man did": [0, 65535], "my man did bring": [0, 65535], "man did bring them": [0, 65535], "did bring them me": [0, 65535], "bring them me i": [0, 65535], "them me i see": [0, 65535], "me i see we": [0, 65535], "i see we still": [0, 65535], "see we still did": [0, 65535], "we still did meete": [0, 65535], "still did meete each": [0, 65535], "did meete each others": [0, 65535], "meete each others man": [0, 65535], "each others man and": [0, 65535], "others man and i": [0, 65535], "man and i was": [0, 65535], "and i was tane": [0, 65535], "i was tane for": [0, 65535], "was tane for him": [0, 65535], "tane for him and": [0, 65535], "for him and he": [0, 65535], "him and he for": [0, 65535], "and he for me": [0, 65535], "he for me and": [0, 65535], "for me and thereupon": [0, 65535], "me and thereupon these": [0, 65535], "and thereupon these errors": [0, 65535], "thereupon these errors are": [0, 65535], "these errors are arose": [0, 65535], "errors are arose e": [0, 65535], "are arose e ant": [0, 65535], "arose e ant these": [0, 65535], "e ant these duckets": [0, 65535], "ant these duckets pawne": [0, 65535], "these duckets pawne i": [0, 65535], "duckets pawne i for": [0, 65535], "pawne i for my": [0, 65535], "i for my father": [0, 65535], "for my father heere": [0, 65535], "my father heere duke": [0, 65535], "father heere duke it": [0, 65535], "heere duke it shall": [0, 65535], "duke it shall not": [0, 65535], "it shall not neede": [0, 65535], "shall not neede thy": [0, 65535], "not neede thy father": [0, 65535], "neede thy father hath": [0, 65535], "thy father hath his": [0, 65535], "father hath his life": [0, 65535], "hath his life cur": [0, 65535], "his life cur sir": [0, 65535], "life cur sir i": [0, 65535], "cur sir i must": [0, 65535], "sir i must haue": [0, 65535], "i must haue that": [0, 65535], "must haue that diamond": [0, 65535], "haue that diamond from": [0, 65535], "that diamond from you": [0, 65535], "diamond from you e": [0, 65535], "from you e ant": [0, 65535], "you e ant there": [0, 65535], "e ant there take": [0, 65535], "ant there take it": [0, 65535], "there take it and": [0, 65535], "take it and much": [0, 65535], "it and much thanks": [0, 65535], "and much thanks for": [0, 65535], "much thanks for my": [0, 65535], "thanks for my good": [0, 65535], "for my good cheere": [0, 65535], "my good cheere abb": [0, 65535], "good cheere abb renowned": [0, 65535], "cheere abb renowned duke": [0, 65535], "abb renowned duke vouchsafe": [0, 65535], "renowned duke vouchsafe to": [0, 65535], "duke vouchsafe to take": [0, 65535], "vouchsafe to take the": [0, 65535], "to take the paines": [0, 65535], "take the paines to": [0, 65535], "the paines to go": [0, 65535], "paines to go with": [0, 65535], "to go with vs": [0, 65535], "go with vs into": [0, 65535], "with vs into the": [0, 65535], "vs into the abbey": [0, 65535], "into the abbey heere": [0, 65535], "abbey heere and heare": [0, 65535], "heere and heare at": [0, 65535], "and heare at large": [0, 65535], "heare at large discoursed": [0, 65535], "at large discoursed all": [0, 65535], "large discoursed all our": [0, 65535], "discoursed all our fortunes": [0, 65535], "all our fortunes and": [0, 65535], "our fortunes and all": [0, 65535], "fortunes and all that": [0, 65535], "and all that are": [0, 65535], "all that are assembled": [0, 65535], "that are assembled in": [0, 65535], "are assembled in this": [0, 65535], "assembled in this place": [0, 65535], "in this place that": [0, 65535], "this place that by": [0, 65535], "place that by this": [0, 65535], "that by this simpathized": [0, 65535], "by this simpathized one": [0, 65535], "this simpathized one daies": [0, 65535], "simpathized one daies error": [0, 65535], "one daies error haue": [0, 65535], "daies error haue suffer'd": [0, 65535], "error haue suffer'd wrong": [0, 65535], "haue suffer'd wrong goe": [0, 65535], "suffer'd wrong goe keepe": [0, 65535], "wrong goe keepe vs": [0, 65535], "goe keepe vs companie": [0, 65535], "keepe vs companie and": [0, 65535], "vs companie and we": [0, 65535], "companie and we shall": [0, 65535], "and we shall make": [0, 65535], "we shall make full": [0, 65535], "shall make full satisfaction": [0, 65535], "make full satisfaction thirtie": [0, 65535], "full satisfaction thirtie three": [0, 65535], "satisfaction thirtie three yeares": [0, 65535], "thirtie three yeares haue": [0, 65535], "three yeares haue i": [0, 65535], "yeares haue i but": [0, 65535], "haue i but gone": [0, 65535], "i but gone in": [0, 65535], "but gone in trauaile": [0, 65535], "gone in trauaile of": [0, 65535], "in trauaile of you": [0, 65535], "trauaile of you my": [0, 65535], "of you my sonnes": [0, 65535], "you my sonnes and": [0, 65535], "my sonnes and till": [0, 65535], "sonnes and till this": [0, 65535], "and till this present": [0, 65535], "till this present houre": [0, 65535], "this present houre my": [0, 65535], "present houre my heauie": [0, 65535], "houre my heauie burthen": [0, 65535], "my heauie burthen are": [0, 65535], "heauie burthen are deliuered": [0, 65535], "burthen are deliuered the": [0, 65535], "are deliuered the duke": [0, 65535], "deliuered the duke my": [0, 65535], "the duke my husband": [0, 65535], "duke my husband and": [0, 65535], "my husband and my": [0, 65535], "husband and my children": [0, 65535], "and my children both": [0, 65535], "my children both and": [0, 65535], "children both and you": [0, 65535], "both and you the": [0, 65535], "and you the kalenders": [0, 65535], "you the kalenders of": [0, 65535], "the kalenders of their": [0, 65535], "kalenders of their natiuity": [0, 65535], "of their natiuity go": [0, 65535], "their natiuity go to": [0, 65535], "natiuity go to a": [0, 65535], "go to a gossips": [0, 65535], "to a gossips feast": [0, 65535], "a gossips feast and": [0, 65535], "gossips feast and go": [0, 65535], "feast and go with": [0, 65535], "and go with mee": [0, 65535], "go with mee after": [0, 65535], "with mee after so": [0, 65535], "mee after so long": [0, 65535], "after so long greefe": [0, 65535], "so long greefe such": [0, 65535], "long greefe such natiuitie": [0, 65535], "greefe such natiuitie duke": [0, 65535], "such natiuitie duke with": [0, 65535], "natiuitie duke with all": [0, 65535], "duke with all my": [0, 65535], "with all my heart": [0, 65535], "all my heart ile": [0, 65535], "my heart ile gossip": [0, 65535], "heart ile gossip at": [0, 65535], "ile gossip at this": [0, 65535], "gossip at this feast": [0, 65535], "at this feast exeunt": [0, 65535], "this feast exeunt omnes": [0, 65535], "feast exeunt omnes manet": [0, 65535], "exeunt omnes manet the": [0, 65535], "omnes manet the two": [0, 65535], "manet the two dromio's": [0, 65535], "the two dromio's and": [0, 65535], "two dromio's and two": [0, 65535], "dromio's and two brothers": [0, 65535], "and two brothers s": [0, 65535], "two brothers s dro": [0, 65535], "brothers s dro mast": [0, 65535], "s dro mast shall": [0, 65535], "dro mast shall i": [0, 65535], "mast shall i fetch": [0, 65535], "shall i fetch your": [0, 65535], "i fetch your stuffe": [0, 65535], "fetch your stuffe from": [0, 65535], "your stuffe from shipbord": [0, 65535], "stuffe from shipbord e": [0, 65535], "from shipbord e an": [0, 65535], "shipbord e an dromio": [0, 65535], "e an dromio what": [0, 65535], "an dromio what stuffe": [0, 65535], "dromio what stuffe of": [0, 65535], "what stuffe of mine": [0, 65535], "stuffe of mine hast": [0, 65535], "of mine hast thou": [0, 65535], "mine hast thou imbarkt": [0, 65535], "hast thou imbarkt s": [0, 65535], "thou imbarkt s dro": [0, 65535], "imbarkt s dro your": [0, 65535], "s dro your goods": [0, 65535], "dro your goods that": [0, 65535], "your goods that lay": [0, 65535], "goods that lay at": [0, 65535], "that lay at host": [0, 65535], "lay at host sir": [0, 65535], "at host sir in": [0, 65535], "host sir in the": [0, 65535], "sir in the centaur": [0, 65535], "in the centaur s": [0, 65535], "the centaur s ant": [0, 65535], "centaur s ant he": [0, 65535], "s ant he speakes": [0, 65535], "ant he speakes to": [0, 65535], "he speakes to me": [0, 65535], "speakes to me i": [0, 65535], "to me i am": [0, 65535], "me i am your": [0, 65535], "i am your master": [0, 65535], "am your master dromio": [0, 65535], "your master dromio come": [0, 65535], "master dromio come go": [0, 65535], "dromio come go with": [0, 65535], "come go with vs": [0, 65535], "go with vs wee'l": [0, 65535], "with vs wee'l looke": [0, 65535], "vs wee'l looke to": [0, 65535], "wee'l looke to that": [0, 65535], "looke to that anon": [0, 65535], "to that anon embrace": [0, 65535], "that anon embrace thy": [0, 65535], "anon embrace thy brother": [0, 65535], "embrace thy brother there": [0, 65535], "thy brother there reioyce": [0, 65535], "brother there reioyce with": [0, 65535], "there reioyce with him": [0, 65535], "reioyce with him exit": [0, 65535], "with him exit s": [0, 65535], "him exit s dro": [0, 65535], "exit s dro there": [0, 65535], "s dro there is": [0, 65535], "dro there is a": [0, 65535], "there is a fat": [0, 65535], "is a fat friend": [0, 65535], "a fat friend at": [0, 65535], "fat friend at your": [0, 65535], "friend at your masters": [0, 65535], "at your masters house": [0, 65535], "your masters house that": [0, 65535], "masters house that kitchin'd": [0, 65535], "house that kitchin'd me": [0, 65535], "that kitchin'd me for": [0, 65535], "kitchin'd me for you": [0, 65535], "me for you to": [0, 65535], "for you to day": [0, 65535], "you to day at": [0, 65535], "to day at dinner": [0, 65535], "day at dinner she": [0, 65535], "at dinner she now": [0, 65535], "dinner she now shall": [0, 65535], "she now shall be": [0, 65535], "now shall be my": [0, 65535], "shall be my sister": [0, 65535], "be my sister not": [0, 65535], "my sister not my": [0, 65535], "sister not my wife": [0, 65535], "not my wife e": [0, 65535], "my wife e d": [0, 65535], "wife e d me": [0, 65535], "e d me thinks": [0, 65535], "d me thinks you": [0, 65535], "me thinks you are": [0, 65535], "thinks you are my": [0, 65535], "you are my glasse": [0, 65535], "are my glasse not": [0, 65535], "my glasse not my": [0, 65535], "glasse not my brother": [0, 65535], "not my brother i": [0, 65535], "my brother i see": [0, 65535], "brother i see by": [0, 65535], "i see by you": [0, 65535], "see by you i": [0, 65535], "by you i am": [0, 65535], "you i am a": [0, 65535], "i am a sweet": [0, 65535], "am a sweet fac'd": [0, 65535], "a sweet fac'd youth": [0, 65535], "sweet fac'd youth will": [0, 65535], "fac'd youth will you": [0, 65535], "youth will you walke": [0, 65535], "will you walke in": [0, 65535], "you walke in to": [0, 65535], "walke in to see": [0, 65535], "in to see their": [0, 65535], "to see their gossipping": [0, 65535], "see their gossipping s": [0, 65535], "their gossipping s dro": [0, 65535], "gossipping s dro not": [0, 65535], "s dro not i": [0, 65535], "dro not i sir": [0, 65535], "not i sir you": [0, 65535], "i sir you are": [0, 65535], "sir you are my": [0, 65535], "you are my elder": [0, 65535], "are my elder e": [0, 65535], "my elder e dro": [0, 65535], "elder e dro that's": [0, 65535], "e dro that's a": [0, 65535], "dro that's a question": [0, 65535], "that's a question how": [0, 65535], "a question how shall": [0, 65535], "question how shall we": [0, 65535], "how shall we trie": [0, 65535], "shall we trie it": [0, 65535], "we trie it s": [0, 65535], "trie it s dro": [0, 65535], "it s dro wee'l": [0, 65535], "s dro wee'l draw": [0, 65535], "dro wee'l draw cuts": [0, 65535], "wee'l draw cuts for": [0, 65535], "draw cuts for the": [0, 65535], "cuts for the signior": [0, 65535], "for the signior till": [0, 65535], "the signior till then": [0, 65535], "signior till then lead": [0, 65535], "till then lead thou": [0, 65535], "then lead thou first": [0, 65535], "lead thou first e": [0, 65535], "thou first e dro": [0, 65535], "first e dro nay": [0, 65535], "e dro nay then": [0, 65535], "dro nay then thus": [0, 65535], "nay then thus we": [0, 65535], "then thus we came": [0, 65535], "thus we came into": [0, 65535], "we came into the": [0, 65535], "came into the world": [0, 65535], "into the world like": [0, 65535], "the world like brother": [0, 65535], "world like brother and": [0, 65535], "like brother and brother": [0, 65535], "brother and brother and": [0, 65535], "and brother and now": [0, 65535], "brother and now let's": [0, 65535], "and now let's go": [0, 65535], "now let's go hand": [0, 65535], "let's go hand in": [0, 65535], "go hand in hand": [0, 65535], "hand in hand not": [0, 65535], "in hand not one": [0, 65535], "hand not one before": [0, 65535], "not one before another": [0, 65535], "one before another exeunt": [0, 65535], "before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter": [0, 65535], "quintus sc\u0153na prima enter the": [0, 65535], "sc\u0153na prima enter the merchant": [0, 65535], "prima enter the merchant and": [0, 65535], "enter the merchant and the": [0, 65535], "the merchant and the goldsmith": [0, 65535], "merchant and the goldsmith gold": [0, 65535], "and the goldsmith gold i": [0, 65535], "the goldsmith gold i am": [0, 65535], "goldsmith gold i am sorry": [0, 65535], "gold i am sorry sir": [0, 65535], "i am sorry sir that": [0, 65535], "am sorry sir that i": [0, 65535], "sorry sir that i haue": [0, 65535], "sir that i haue hindred": [0, 65535], "that i haue hindred you": [0, 65535], "i haue hindred you but": [0, 65535], "haue hindred you but i": [0, 65535], "hindred you but i protest": [0, 65535], "you but i protest he": [0, 65535], "but i protest he had": [0, 65535], "i protest he had the": [0, 65535], "protest he had the chaine": [0, 65535], "he had the chaine of": [0, 65535], "had the chaine of me": [0, 65535], "the chaine of me though": [0, 65535], "chaine of me though most": [0, 65535], "of me though most dishonestly": [0, 65535], "me though most dishonestly he": [0, 65535], "though most dishonestly he doth": [0, 65535], "most dishonestly he doth denie": [0, 65535], "dishonestly he doth denie it": [0, 65535], "he doth denie it mar": [0, 65535], "doth denie it mar how": [0, 65535], "denie it mar how is": [0, 65535], "it mar how is the": [0, 65535], "mar how is the man": [0, 65535], "how is the man esteem'd": [0, 65535], "is the man esteem'd heere": [0, 65535], "the man esteem'd heere in": [0, 65535], "man esteem'd heere in the": [0, 65535], "esteem'd heere in the citie": [0, 65535], "heere in the citie gold": [0, 65535], "in the citie gold of": [0, 65535], "the citie gold of very": [0, 65535], "citie gold of very reuerent": [0, 65535], "gold of very reuerent reputation": [0, 65535], "of very reuerent reputation sir": [0, 65535], "very reuerent reputation sir of": [0, 65535], "reuerent reputation sir of credit": [0, 65535], "reputation sir of credit infinite": [0, 65535], "sir of credit infinite highly": [0, 65535], "of credit infinite highly belou'd": [0, 65535], "credit infinite highly belou'd second": [0, 65535], "infinite highly belou'd second to": [0, 65535], "highly belou'd second to none": [0, 65535], "belou'd second to none that": [0, 65535], "second to none that liues": [0, 65535], "to none that liues heere": [0, 65535], "none that liues heere in": [0, 65535], "that liues heere in the": [0, 65535], "liues heere in the citie": [0, 65535], "heere in the citie his": [0, 65535], "in the citie his word": [0, 65535], "the citie his word might": [0, 65535], "citie his word might beare": [0, 65535], "his word might beare my": [0, 65535], "word might beare my wealth": [0, 65535], "might beare my wealth at": [0, 65535], "beare my wealth at any": [0, 65535], "my wealth at any time": [0, 65535], "wealth at any time mar": [0, 65535], "at any time mar speake": [0, 65535], "any time mar speake softly": [0, 65535], "time mar speake softly yonder": [0, 65535], "mar speake softly yonder as": [0, 65535], "speake softly yonder as i": [0, 65535], "softly yonder as i thinke": [0, 65535], "yonder as i thinke he": [0, 65535], "as i thinke he walkes": [0, 65535], "i thinke he walkes enter": [0, 65535], "thinke he walkes enter antipholus": [0, 65535], "he walkes enter antipholus and": [0, 65535], "walkes enter antipholus and dromio": [0, 65535], "enter antipholus and dromio againe": [0, 65535], "antipholus and dromio againe gold": [0, 65535], "and dromio againe gold 'tis": [0, 65535], "dromio againe gold 'tis so": [0, 65535], "againe gold 'tis so and": [0, 65535], "gold 'tis so and that": [0, 65535], "'tis so and that selfe": [0, 65535], "so and that selfe chaine": [0, 65535], "and that selfe chaine about": [0, 65535], "that selfe chaine about his": [0, 65535], "selfe chaine about his necke": [0, 65535], "chaine about his necke which": [0, 65535], "about his necke which he": [0, 65535], "his necke which he forswore": [0, 65535], "necke which he forswore most": [0, 65535], "which he forswore most monstrously": [0, 65535], "he forswore most monstrously to": [0, 65535], "forswore most monstrously to haue": [0, 65535], "most monstrously to haue good": [0, 65535], "monstrously to haue good sir": [0, 65535], "to haue good sir draw": [0, 65535], "haue good sir draw neere": [0, 65535], "good sir draw neere to": [0, 65535], "sir draw neere to me": [0, 65535], "draw neere to me ile": [0, 65535], "neere to me ile speake": [0, 65535], "to me ile speake to": [0, 65535], "me ile speake to him": [0, 65535], "ile speake to him signior": [0, 65535], "speake to him signior antipholus": [0, 65535], "to him signior antipholus i": [0, 65535], "him signior antipholus i wonder": [0, 65535], "signior antipholus i wonder much": [0, 65535], "antipholus i wonder much that": [0, 65535], "i wonder much that you": [0, 65535], "wonder much that you would": [0, 65535], "much that you would put": [0, 65535], "that you would put me": [0, 65535], "you would put me to": [0, 65535], "would put me to this": [0, 65535], "put me to this shame": [0, 65535], "me to this shame and": [0, 65535], "to this shame and trouble": [0, 65535], "this shame and trouble and": [0, 65535], "shame and trouble and not": [0, 65535], "and trouble and not without": [0, 65535], "trouble and not without some": [0, 65535], "and not without some scandall": [0, 65535], "not without some scandall to": [0, 65535], "without some scandall to your": [0, 65535], "some scandall to your selfe": [0, 65535], "scandall to your selfe with": [0, 65535], "to your selfe with circumstance": [0, 65535], "your selfe with circumstance and": [0, 65535], "selfe with circumstance and oaths": [0, 65535], "with circumstance and oaths so": [0, 65535], "circumstance and oaths so to": [0, 65535], "and oaths so to denie": [0, 65535], "oaths so to denie this": [0, 65535], "so to denie this chaine": [0, 65535], "to denie this chaine which": [0, 65535], "denie this chaine which now": [0, 65535], "this chaine which now you": [0, 65535], "chaine which now you weare": [0, 65535], "which now you weare so": [0, 65535], "now you weare so openly": [0, 65535], "you weare so openly beside": [0, 65535], "weare so openly beside the": [0, 65535], "so openly beside the charge": [0, 65535], "openly beside the charge the": [0, 65535], "beside the charge the shame": [0, 65535], "the charge the shame imprisonment": [0, 65535], "charge the shame imprisonment you": [0, 65535], "the shame imprisonment you haue": [0, 65535], "shame imprisonment you haue done": [0, 65535], "imprisonment you haue done wrong": [0, 65535], "you haue done wrong to": [0, 65535], "haue done wrong to this": [0, 65535], "done wrong to this my": [0, 65535], "wrong to this my honest": [0, 65535], "to this my honest friend": [0, 65535], "this my honest friend who": [0, 65535], "my honest friend who but": [0, 65535], "honest friend who but for": [0, 65535], "friend who but for staying": [0, 65535], "who but for staying on": [0, 65535], "but for staying on our": [0, 65535], "for staying on our controuersie": [0, 65535], "staying on our controuersie had": [0, 65535], "on our controuersie had hoisted": [0, 65535], "our controuersie had hoisted saile": [0, 65535], "controuersie had hoisted saile and": [0, 65535], "had hoisted saile and put": [0, 65535], "hoisted saile and put to": [0, 65535], "saile and put to sea": [0, 65535], "and put to sea to": [0, 65535], "put to sea to day": [0, 65535], "to sea to day this": [0, 65535], "sea to day this chaine": [0, 65535], "to day this chaine you": [0, 65535], "day this chaine you had": [0, 65535], "this chaine you had of": [0, 65535], "chaine you had of me": [0, 65535], "you had of me can": [0, 65535], "had of me can you": [0, 65535], "of me can you deny": [0, 65535], "me can you deny it": [0, 65535], "can you deny it ant": [0, 65535], "you deny it ant i": [0, 65535], "deny it ant i thinke": [0, 65535], "it ant i thinke i": [0, 65535], "ant i thinke i had": [0, 65535], "i thinke i had i": [0, 65535], "thinke i had i neuer": [0, 65535], "i had i neuer did": [0, 65535], "had i neuer did deny": [0, 65535], "i neuer did deny it": [0, 65535], "neuer did deny it mar": [0, 65535], "did deny it mar yes": [0, 65535], "deny it mar yes that": [0, 65535], "it mar yes that you": [0, 65535], "mar yes that you did": [0, 65535], "yes that you did sir": [0, 65535], "that you did sir and": [0, 65535], "you did sir and forswore": [0, 65535], "did sir and forswore it": [0, 65535], "sir and forswore it too": [0, 65535], "and forswore it too ant": [0, 65535], "forswore it too ant who": [0, 65535], "it too ant who heard": [0, 65535], "too ant who heard me": [0, 65535], "ant who heard me to": [0, 65535], "who heard me to denie": [0, 65535], "heard me to denie it": [0, 65535], "me to denie it or": [0, 65535], "to denie it or forsweare": [0, 65535], "denie it or forsweare it": [0, 65535], "it or forsweare it mar": [0, 65535], "or forsweare it mar these": [0, 65535], "forsweare it mar these eares": [0, 65535], "it mar these eares of": [0, 65535], "mar these eares of mine": [0, 65535], "these eares of mine thou": [0, 65535], "eares of mine thou knowst": [0, 65535], "of mine thou knowst did": [0, 65535], "mine thou knowst did hear": [0, 65535], "thou knowst did hear thee": [0, 65535], "knowst did hear thee fie": [0, 65535], "did hear thee fie on": [0, 65535], "hear thee fie on thee": [0, 65535], "thee fie on thee wretch": [0, 65535], "fie on thee wretch 'tis": [0, 65535], "on thee wretch 'tis pitty": [0, 65535], "thee wretch 'tis pitty that": [0, 65535], "wretch 'tis pitty that thou": [0, 65535], "'tis pitty that thou liu'st": [0, 65535], "pitty that thou liu'st to": [0, 65535], "that thou liu'st to walke": [0, 65535], "thou liu'st to walke where": [0, 65535], "liu'st to walke where any": [0, 65535], "to walke where any honest": [0, 65535], "walke where any honest men": [0, 65535], "where any honest men resort": [0, 65535], "any honest men resort ant": [0, 65535], "honest men resort ant thou": [0, 65535], "men resort ant thou art": [0, 65535], "resort ant thou art a": [0, 65535], "ant thou art a villaine": [0, 65535], "thou art a villaine to": [0, 65535], "art a villaine to impeach": [0, 65535], "a villaine to impeach me": [0, 65535], "villaine to impeach me thus": [0, 65535], "to impeach me thus ile": [0, 65535], "impeach me thus ile proue": [0, 65535], "me thus ile proue mine": [0, 65535], "thus ile proue mine honor": [0, 65535], "ile proue mine honor and": [0, 65535], "proue mine honor and mine": [0, 65535], "mine honor and mine honestie": [0, 65535], "honor and mine honestie against": [0, 65535], "and mine honestie against thee": [0, 65535], "mine honestie against thee presently": [0, 65535], "honestie against thee presently if": [0, 65535], "against thee presently if thou": [0, 65535], "thee presently if thou dar'st": [0, 65535], "presently if thou dar'st stand": [0, 65535], "if thou dar'st stand mar": [0, 65535], "thou dar'st stand mar i": [0, 65535], "dar'st stand mar i dare": [0, 65535], "stand mar i dare and": [0, 65535], "mar i dare and do": [0, 65535], "i dare and do defie": [0, 65535], "dare and do defie thee": [0, 65535], "and do defie thee for": [0, 65535], "do defie thee for a": [0, 65535], "defie thee for a villaine": [0, 65535], "thee for a villaine they": [0, 65535], "for a villaine they draw": [0, 65535], "a villaine they draw enter": [0, 65535], "villaine they draw enter adriana": [0, 65535], "they draw enter adriana luciana": [0, 65535], "draw enter adriana luciana courtezan": [0, 65535], "enter adriana luciana courtezan others": [0, 65535], "adriana luciana courtezan others adr": [0, 65535], "luciana courtezan others adr hold": [0, 65535], "courtezan others adr hold hurt": [0, 65535], "others adr hold hurt him": [0, 65535], "adr hold hurt him not": [0, 65535], "hold hurt him not for": [0, 65535], "hurt him not for god": [0, 65535], "him not for god sake": [0, 65535], "not for god sake he": [0, 65535], "for god sake he is": [0, 65535], "god sake he is mad": [0, 65535], "sake he is mad some": [0, 65535], "he is mad some get": [0, 65535], "is mad some get within": [0, 65535], "mad some get within him": [0, 65535], "some get within him take": [0, 65535], "get within him take his": [0, 65535], "within him take his sword": [0, 65535], "him take his sword away": [0, 65535], "take his sword away binde": [0, 65535], "his sword away binde dromio": [0, 65535], "sword away binde dromio too": [0, 65535], "away binde dromio too and": [0, 65535], "binde dromio too and beare": [0, 65535], "dromio too and beare them": [0, 65535], "too and beare them to": [0, 65535], "and beare them to my": [0, 65535], "beare them to my house": [0, 65535], "them to my house s": [0, 65535], "to my house s dro": [0, 65535], "my house s dro runne": [0, 65535], "house s dro runne master": [0, 65535], "s dro runne master run": [0, 65535], "dro runne master run for": [0, 65535], "runne master run for gods": [0, 65535], "master run for gods sake": [0, 65535], "run for gods sake take": [0, 65535], "for gods sake take a": [0, 65535], "gods sake take a house": [0, 65535], "sake take a house this": [0, 65535], "take a house this is": [0, 65535], "a house this is some": [0, 65535], "house this is some priorie": [0, 65535], "this is some priorie in": [0, 65535], "is some priorie in or": [0, 65535], "some priorie in or we": [0, 65535], "priorie in or we are": [0, 65535], "in or we are spoyl'd": [0, 65535], "or we are spoyl'd exeunt": [0, 65535], "we are spoyl'd exeunt to": [0, 65535], "are spoyl'd exeunt to the": [0, 65535], "spoyl'd exeunt to the priorie": [0, 65535], "exeunt to the priorie enter": [0, 65535], "to the priorie enter ladie": [0, 65535], "the priorie enter ladie abbesse": [0, 65535], "priorie enter ladie abbesse ab": [0, 65535], "enter ladie abbesse ab be": [0, 65535], "ladie abbesse ab be quiet": [0, 65535], "abbesse ab be quiet people": [0, 65535], "ab be quiet people wherefore": [0, 65535], "be quiet people wherefore throng": [0, 65535], "quiet people wherefore throng you": [0, 65535], "people wherefore throng you hither": [0, 65535], "wherefore throng you hither adr": [0, 65535], "throng you hither adr to": [0, 65535], "you hither adr to fetch": [0, 65535], "hither adr to fetch my": [0, 65535], "adr to fetch my poore": [0, 65535], "to fetch my poore distracted": [0, 65535], "fetch my poore distracted husband": [0, 65535], "my poore distracted husband hence": [0, 65535], "poore distracted husband hence let": [0, 65535], "distracted husband hence let vs": [0, 65535], "husband hence let vs come": [0, 65535], "hence let vs come in": [0, 65535], "let vs come in that": [0, 65535], "vs come in that we": [0, 65535], "come in that we may": [0, 65535], "in that we may binde": [0, 65535], "that we may binde him": [0, 65535], "we may binde him fast": [0, 65535], "may binde him fast and": [0, 65535], "binde him fast and beare": [0, 65535], "him fast and beare him": [0, 65535], "fast and beare him home": [0, 65535], "and beare him home for": [0, 65535], "beare him home for his": [0, 65535], "him home for his recouerie": [0, 65535], "home for his recouerie gold": [0, 65535], "for his recouerie gold i": [0, 65535], "his recouerie gold i knew": [0, 65535], "recouerie gold i knew he": [0, 65535], "gold i knew he was": [0, 65535], "i knew he was not": [0, 65535], "knew he was not in": [0, 65535], "he was not in his": [0, 65535], "was not in his perfect": [0, 65535], "not in his perfect wits": [0, 65535], "in his perfect wits mar": [0, 65535], "his perfect wits mar i": [0, 65535], "perfect wits mar i am": [0, 65535], "wits mar i am sorry": [0, 65535], "mar i am sorry now": [0, 65535], "i am sorry now that": [0, 65535], "am sorry now that i": [0, 65535], "sorry now that i did": [0, 65535], "now that i did draw": [0, 65535], "that i did draw on": [0, 65535], "i did draw on him": [0, 65535], "did draw on him ab": [0, 65535], "draw on him ab how": [0, 65535], "on him ab how long": [0, 65535], "him ab how long hath": [0, 65535], "ab how long hath this": [0, 65535], "how long hath this possession": [0, 65535], "long hath this possession held": [0, 65535], "hath this possession held the": [0, 65535], "this possession held the man": [0, 65535], "possession held the man adr": [0, 65535], "held the man adr this": [0, 65535], "the man adr this weeke": [0, 65535], "man adr this weeke he": [0, 65535], "adr this weeke he hath": [0, 65535], "this weeke he hath beene": [0, 65535], "weeke he hath beene heauie": [0, 65535], "he hath beene heauie sower": [0, 65535], "hath beene heauie sower sad": [0, 65535], "beene heauie sower sad and": [0, 65535], "heauie sower sad and much": [0, 65535], "sower sad and much different": [0, 65535], "sad and much different from": [0, 65535], "and much different from the": [0, 65535], "much different from the man": [0, 65535], "different from the man he": [0, 65535], "from the man he was": [0, 65535], "the man he was but": [0, 65535], "man he was but till": [0, 65535], "he was but till this": [0, 65535], "was but till this afternoone": [0, 65535], "but till this afternoone his": [0, 65535], "till this afternoone his passion": [0, 65535], "this afternoone his passion ne're": [0, 65535], "afternoone his passion ne're brake": [0, 65535], "his passion ne're brake into": [0, 65535], "passion ne're brake into extremity": [0, 65535], "ne're brake into extremity of": [0, 65535], "brake into extremity of rage": [0, 65535], "into extremity of rage ab": [0, 65535], "extremity of rage ab hath": [0, 65535], "of rage ab hath he": [0, 65535], "rage ab hath he not": [0, 65535], "ab hath he not lost": [0, 65535], "hath he not lost much": [0, 65535], "he not lost much wealth": [0, 65535], "not lost much wealth by": [0, 65535], "lost much wealth by wrack": [0, 65535], "much wealth by wrack of": [0, 65535], "wealth by wrack of sea": [0, 65535], "by wrack of sea buried": [0, 65535], "wrack of sea buried some": [0, 65535], "of sea buried some deere": [0, 65535], "sea buried some deere friend": [0, 65535], "buried some deere friend hath": [0, 65535], "some deere friend hath not": [0, 65535], "deere friend hath not else": [0, 65535], "friend hath not else his": [0, 65535], "hath not else his eye": [0, 65535], "not else his eye stray'd": [0, 65535], "else his eye stray'd his": [0, 65535], "his eye stray'd his affection": [0, 65535], "eye stray'd his affection in": [0, 65535], "stray'd his affection in vnlawfull": [0, 65535], "his affection in vnlawfull loue": [0, 65535], "affection in vnlawfull loue a": [0, 65535], "in vnlawfull loue a sinne": [0, 65535], "vnlawfull loue a sinne preuailing": [0, 65535], "loue a sinne preuailing much": [0, 65535], "a sinne preuailing much in": [0, 65535], "sinne preuailing much in youthfull": [0, 65535], "preuailing much in youthfull men": [0, 65535], "much in youthfull men who": [0, 65535], "in youthfull men who giue": [0, 65535], "youthfull men who giue their": [0, 65535], "men who giue their eies": [0, 65535], "who giue their eies the": [0, 65535], "giue their eies the liberty": [0, 65535], "their eies the liberty of": [0, 65535], "eies the liberty of gazing": [0, 65535], "the liberty of gazing which": [0, 65535], "liberty of gazing which of": [0, 65535], "of gazing which of these": [0, 65535], "gazing which of these sorrowes": [0, 65535], "which of these sorrowes is": [0, 65535], "of these sorrowes is he": [0, 65535], "these sorrowes is he subiect": [0, 65535], "sorrowes is he subiect too": [0, 65535], "is he subiect too adr": [0, 65535], "he subiect too adr to": [0, 65535], "subiect too adr to none": [0, 65535], "too adr to none of": [0, 65535], "adr to none of these": [0, 65535], "to none of these except": [0, 65535], "none of these except it": [0, 65535], "of these except it be": [0, 65535], "these except it be the": [0, 65535], "except it be the last": [0, 65535], "it be the last namely": [0, 65535], "be the last namely some": [0, 65535], "the last namely some loue": [0, 65535], "last namely some loue that": [0, 65535], "namely some loue that drew": [0, 65535], "some loue that drew him": [0, 65535], "loue that drew him oft": [0, 65535], "that drew him oft from": [0, 65535], "drew him oft from home": [0, 65535], "him oft from home ab": [0, 65535], "oft from home ab you": [0, 65535], "from home ab you should": [0, 65535], "home ab you should for": [0, 65535], "ab you should for that": [0, 65535], "you should for that haue": [0, 65535], "should for that haue reprehended": [0, 65535], "for that haue reprehended him": [0, 65535], "that haue reprehended him adr": [0, 65535], "haue reprehended him adr why": [0, 65535], "reprehended him adr why so": [0, 65535], "him adr why so i": [0, 65535], "adr why so i did": [0, 65535], "why so i did ab": [0, 65535], "so i did ab i": [0, 65535], "i did ab i but": [0, 65535], "did ab i but not": [0, 65535], "ab i but not rough": [0, 65535], "i but not rough enough": [0, 65535], "but not rough enough adr": [0, 65535], "not rough enough adr as": [0, 65535], "rough enough adr as roughly": [0, 65535], "enough adr as roughly as": [0, 65535], "adr as roughly as my": [0, 65535], "as roughly as my modestie": [0, 65535], "roughly as my modestie would": [0, 65535], "as my modestie would let": [0, 65535], "my modestie would let me": [0, 65535], "modestie would let me ab": [0, 65535], "would let me ab haply": [0, 65535], "let me ab haply in": [0, 65535], "me ab haply in priuate": [0, 65535], "ab haply in priuate adr": [0, 65535], "haply in priuate adr and": [0, 65535], "in priuate adr and in": [0, 65535], "priuate adr and in assemblies": [0, 65535], "adr and in assemblies too": [0, 65535], "and in assemblies too ab": [0, 65535], "in assemblies too ab i": [0, 65535], "assemblies too ab i but": [0, 65535], "too ab i but not": [0, 65535], "ab i but not enough": [0, 65535], "i but not enough adr": [0, 65535], "but not enough adr it": [0, 65535], "not enough adr it was": [0, 65535], "enough adr it was the": [0, 65535], "adr it was the copie": [0, 65535], "it was the copie of": [0, 65535], "was the copie of our": [0, 65535], "the copie of our conference": [0, 65535], "copie of our conference in": [0, 65535], "of our conference in bed": [0, 65535], "our conference in bed he": [0, 65535], "conference in bed he slept": [0, 65535], "in bed he slept not": [0, 65535], "bed he slept not for": [0, 65535], "he slept not for my": [0, 65535], "slept not for my vrging": [0, 65535], "not for my vrging it": [0, 65535], "for my vrging it at": [0, 65535], "my vrging it at boord": [0, 65535], "vrging it at boord he": [0, 65535], "it at boord he fed": [0, 65535], "at boord he fed not": [0, 65535], "boord he fed not for": [0, 65535], "he fed not for my": [0, 65535], "fed not for my vrging": [0, 65535], "for my vrging it alone": [0, 65535], "my vrging it alone it": [0, 65535], "vrging it alone it was": [0, 65535], "it alone it was the": [0, 65535], "alone it was the subiect": [0, 65535], "it was the subiect of": [0, 65535], "was the subiect of my": [0, 65535], "the subiect of my theame": [0, 65535], "subiect of my theame in": [0, 65535], "of my theame in company": [0, 65535], "my theame in company i": [0, 65535], "theame in company i often": [0, 65535], "in company i often glanced": [0, 65535], "company i often glanced it": [0, 65535], "i often glanced it still": [0, 65535], "often glanced it still did": [0, 65535], "glanced it still did i": [0, 65535], "it still did i tell": [0, 65535], "still did i tell him": [0, 65535], "did i tell him it": [0, 65535], "i tell him it was": [0, 65535], "tell him it was vilde": [0, 65535], "him it was vilde and": [0, 65535], "it was vilde and bad": [0, 65535], "was vilde and bad ab": [0, 65535], "vilde and bad ab and": [0, 65535], "and bad ab and thereof": [0, 65535], "bad ab and thereof came": [0, 65535], "ab and thereof came it": [0, 65535], "and thereof came it that": [0, 65535], "thereof came it that the": [0, 65535], "came it that the man": [0, 65535], "it that the man was": [0, 65535], "that the man was mad": [0, 65535], "the man was mad the": [0, 65535], "man was mad the venome": [0, 65535], "was mad the venome clamors": [0, 65535], "mad the venome clamors of": [0, 65535], "the venome clamors of a": [0, 65535], "venome clamors of a iealous": [0, 65535], "clamors of a iealous woman": [0, 65535], "of a iealous woman poisons": [0, 65535], "a iealous woman poisons more": [0, 65535], "iealous woman poisons more deadly": [0, 65535], "woman poisons more deadly then": [0, 65535], "poisons more deadly then a": [0, 65535], "more deadly then a mad": [0, 65535], "deadly then a mad dogges": [0, 65535], "then a mad dogges tooth": [0, 65535], "a mad dogges tooth it": [0, 65535], "mad dogges tooth it seemes": [0, 65535], "dogges tooth it seemes his": [0, 65535], "tooth it seemes his sleepes": [0, 65535], "it seemes his sleepes were": [0, 65535], "seemes his sleepes were hindred": [0, 65535], "his sleepes were hindred by": [0, 65535], "sleepes were hindred by thy": [0, 65535], "were hindred by thy railing": [0, 65535], "hindred by thy railing and": [0, 65535], "by thy railing and thereof": [0, 65535], "thy railing and thereof comes": [0, 65535], "railing and thereof comes it": [0, 65535], "and thereof comes it that": [0, 65535], "thereof comes it that his": [0, 65535], "comes it that his head": [0, 65535], "it that his head is": [0, 65535], "that his head is light": [0, 65535], "his head is light thou": [0, 65535], "head is light thou saist": [0, 65535], "is light thou saist his": [0, 65535], "light thou saist his meate": [0, 65535], "thou saist his meate was": [0, 65535], "saist his meate was sawc'd": [0, 65535], "his meate was sawc'd with": [0, 65535], "meate was sawc'd with thy": [0, 65535], "was sawc'd with thy vpbraidings": [0, 65535], "sawc'd with thy vpbraidings vnquiet": [0, 65535], "with thy vpbraidings vnquiet meales": [0, 65535], "thy vpbraidings vnquiet meales make": [0, 65535], "vpbraidings vnquiet meales make ill": [0, 65535], "vnquiet meales make ill digestions": [0, 65535], "meales make ill digestions thereof": [0, 65535], "make ill digestions thereof the": [0, 65535], "ill digestions thereof the raging": [0, 65535], "digestions thereof the raging fire": [0, 65535], "thereof the raging fire of": [0, 65535], "the raging fire of feauer": [0, 65535], "raging fire of feauer bred": [0, 65535], "fire of feauer bred and": [0, 65535], "of feauer bred and what's": [0, 65535], "feauer bred and what's a": [0, 65535], "bred and what's a feauer": [0, 65535], "and what's a feauer but": [0, 65535], "what's a feauer but a": [0, 65535], "a feauer but a fit": [0, 65535], "feauer but a fit of": [0, 65535], "but a fit of madnesse": [0, 65535], "a fit of madnesse thou": [0, 65535], "fit of madnesse thou sayest": [0, 65535], "of madnesse thou sayest his": [0, 65535], "madnesse thou sayest his sports": [0, 65535], "thou sayest his sports were": [0, 65535], "sayest his sports were hindred": [0, 65535], "his sports were hindred by": [0, 65535], "sports were hindred by thy": [0, 65535], "were hindred by thy bralles": [0, 65535], "hindred by thy bralles sweet": [0, 65535], "by thy bralles sweet recreation": [0, 65535], "thy bralles sweet recreation barr'd": [0, 65535], "bralles sweet recreation barr'd what": [0, 65535], "sweet recreation barr'd what doth": [0, 65535], "recreation barr'd what doth ensue": [0, 65535], "barr'd what doth ensue but": [0, 65535], "what doth ensue but moodie": [0, 65535], "doth ensue but moodie and": [0, 65535], "ensue but moodie and dull": [0, 65535], "but moodie and dull melancholly": [0, 65535], "moodie and dull melancholly kinsman": [0, 65535], "and dull melancholly kinsman to": [0, 65535], "dull melancholly kinsman to grim": [0, 65535], "melancholly kinsman to grim and": [0, 65535], "kinsman to grim and comfortlesse": [0, 65535], "to grim and comfortlesse dispaire": [0, 65535], "grim and comfortlesse dispaire and": [0, 65535], "and comfortlesse dispaire and at": [0, 65535], "comfortlesse dispaire and at her": [0, 65535], "dispaire and at her heeles": [0, 65535], "and at her heeles a": [0, 65535], "at her heeles a huge": [0, 65535], "her heeles a huge infectious": [0, 65535], "heeles a huge infectious troope": [0, 65535], "a huge infectious troope of": [0, 65535], "huge infectious troope of pale": [0, 65535], "infectious troope of pale distemperatures": [0, 65535], "troope of pale distemperatures and": [0, 65535], "of pale distemperatures and foes": [0, 65535], "pale distemperatures and foes to": [0, 65535], "distemperatures and foes to life": [0, 65535], "and foes to life in": [0, 65535], "foes to life in food": [0, 65535], "to life in food in": [0, 65535], "life in food in sport": [0, 65535], "in food in sport and": [0, 65535], "food in sport and life": [0, 65535], "in sport and life preseruing": [0, 65535], "sport and life preseruing rest": [0, 65535], "and life preseruing rest to": [0, 65535], "life preseruing rest to be": [0, 65535], "preseruing rest to be disturb'd": [0, 65535], "rest to be disturb'd would": [0, 65535], "to be disturb'd would mad": [0, 65535], "be disturb'd would mad or": [0, 65535], "disturb'd would mad or man": [0, 65535], "would mad or man or": [0, 65535], "mad or man or beast": [0, 65535], "or man or beast the": [0, 65535], "man or beast the consequence": [0, 65535], "or beast the consequence is": [0, 65535], "beast the consequence is then": [0, 65535], "the consequence is then thy": [0, 65535], "consequence is then thy iealous": [0, 65535], "is then thy iealous fits": [0, 65535], "then thy iealous fits hath": [0, 65535], "thy iealous fits hath scar'd": [0, 65535], "iealous fits hath scar'd thy": [0, 65535], "fits hath scar'd thy husband": [0, 65535], "hath scar'd thy husband from": [0, 65535], "scar'd thy husband from the": [0, 65535], "thy husband from the vse": [0, 65535], "husband from the vse of": [0, 65535], "from the vse of wits": [0, 65535], "the vse of wits luc": [0, 65535], "vse of wits luc she": [0, 65535], "of wits luc she neuer": [0, 65535], "wits luc she neuer reprehended": [0, 65535], "luc she neuer reprehended him": [0, 65535], "she neuer reprehended him but": [0, 65535], "neuer reprehended him but mildely": [0, 65535], "reprehended him but mildely when": [0, 65535], "him but mildely when he": [0, 65535], "but mildely when he demean'd": [0, 65535], "mildely when he demean'd himselfe": [0, 65535], "when he demean'd himselfe rough": [0, 65535], "he demean'd himselfe rough rude": [0, 65535], "demean'd himselfe rough rude and": [0, 65535], "himselfe rough rude and wildly": [0, 65535], "rough rude and wildly why": [0, 65535], "rude and wildly why beare": [0, 65535], "and wildly why beare you": [0, 65535], "wildly why beare you these": [0, 65535], "why beare you these rebukes": [0, 65535], "beare you these rebukes and": [0, 65535], "you these rebukes and answer": [0, 65535], "these rebukes and answer not": [0, 65535], "rebukes and answer not adri": [0, 65535], "and answer not adri she": [0, 65535], "answer not adri she did": [0, 65535], "not adri she did betray": [0, 65535], "adri she did betray me": [0, 65535], "she did betray me to": [0, 65535], "did betray me to my": [0, 65535], "betray me to my owne": [0, 65535], "me to my owne reproofe": [0, 65535], "to my owne reproofe good": [0, 65535], "my owne reproofe good people": [0, 65535], "owne reproofe good people enter": [0, 65535], "reproofe good people enter and": [0, 65535], "good people enter and lay": [0, 65535], "people enter and lay hold": [0, 65535], "enter and lay hold on": [0, 65535], "and lay hold on him": [0, 65535], "lay hold on him ab": [0, 65535], "hold on him ab no": [0, 65535], "on him ab no not": [0, 65535], "him ab no not a": [0, 65535], "ab no not a creature": [0, 65535], "no not a creature enters": [0, 65535], "not a creature enters in": [0, 65535], "a creature enters in my": [0, 65535], "creature enters in my house": [0, 65535], "enters in my house ad": [0, 65535], "in my house ad then": [0, 65535], "my house ad then let": [0, 65535], "house ad then let your": [0, 65535], "ad then let your seruants": [0, 65535], "then let your seruants bring": [0, 65535], "let your seruants bring my": [0, 65535], "your seruants bring my husband": [0, 65535], "seruants bring my husband forth": [0, 65535], "bring my husband forth ab": [0, 65535], "my husband forth ab neither": [0, 65535], "husband forth ab neither he": [0, 65535], "forth ab neither he tooke": [0, 65535], "ab neither he tooke this": [0, 65535], "neither he tooke this place": [0, 65535], "he tooke this place for": [0, 65535], "tooke this place for sanctuary": [0, 65535], "this place for sanctuary and": [0, 65535], "place for sanctuary and it": [0, 65535], "for sanctuary and it shall": [0, 65535], "sanctuary and it shall priuiledge": [0, 65535], "and it shall priuiledge him": [0, 65535], "it shall priuiledge him from": [0, 65535], "shall priuiledge him from your": [0, 65535], "priuiledge him from your hands": [0, 65535], "him from your hands till": [0, 65535], "from your hands till i": [0, 65535], "your hands till i haue": [0, 65535], "hands till i haue brought": [0, 65535], "till i haue brought him": [0, 65535], "i haue brought him to": [0, 65535], "haue brought him to his": [0, 65535], "brought him to his wits": [0, 65535], "him to his wits againe": [0, 65535], "to his wits againe or": [0, 65535], "his wits againe or loose": [0, 65535], "wits againe or loose my": [0, 65535], "againe or loose my labour": [0, 65535], "or loose my labour in": [0, 65535], "loose my labour in assaying": [0, 65535], "my labour in assaying it": [0, 65535], "labour in assaying it adr": [0, 65535], "in assaying it adr i": [0, 65535], "assaying it adr i will": [0, 65535], "it adr i will attend": [0, 65535], "adr i will attend my": [0, 65535], "i will attend my husband": [0, 65535], "will attend my husband be": [0, 65535], "attend my husband be his": [0, 65535], "my husband be his nurse": [0, 65535], "husband be his nurse diet": [0, 65535], "be his nurse diet his": [0, 65535], "his nurse diet his sicknesse": [0, 65535], "nurse diet his sicknesse for": [0, 65535], "diet his sicknesse for it": [0, 65535], "his sicknesse for it is": [0, 65535], "sicknesse for it is my": [0, 65535], "for it is my office": [0, 65535], "it is my office and": [0, 65535], "is my office and will": [0, 65535], "my office and will haue": [0, 65535], "office and will haue no": [0, 65535], "and will haue no atturney": [0, 65535], "will haue no atturney but": [0, 65535], "haue no atturney but my": [0, 65535], "no atturney but my selfe": [0, 65535], "atturney but my selfe and": [0, 65535], "but my selfe and therefore": [0, 65535], "my selfe and therefore let": [0, 65535], "selfe and therefore let me": [0, 65535], "and therefore let me haue": [0, 65535], "therefore let me haue him": [0, 65535], "let me haue him home": [0, 65535], "me haue him home with": [0, 65535], "haue him home with me": [0, 65535], "him home with me ab": [0, 65535], "home with me ab be": [0, 65535], "with me ab be patient": [0, 65535], "me ab be patient for": [0, 65535], "ab be patient for i": [0, 65535], "be patient for i will": [0, 65535], "patient for i will not": [0, 65535], "for i will not let": [0, 65535], "i will not let him": [0, 65535], "will not let him stirre": [0, 65535], "not let him stirre till": [0, 65535], "let him stirre till i": [0, 65535], "him stirre till i haue": [0, 65535], "stirre till i haue vs'd": [0, 65535], "till i haue vs'd the": [0, 65535], "i haue vs'd the approoued": [0, 65535], "haue vs'd the approoued meanes": [0, 65535], "vs'd the approoued meanes i": [0, 65535], "the approoued meanes i haue": [0, 65535], "approoued meanes i haue with": [0, 65535], "meanes i haue with wholsome": [0, 65535], "i haue with wholsome sirrups": [0, 65535], "haue with wholsome sirrups drugges": [0, 65535], "with wholsome sirrups drugges and": [0, 65535], "wholsome sirrups drugges and holy": [0, 65535], "sirrups drugges and holy prayers": [0, 65535], "drugges and holy prayers to": [0, 65535], "and holy prayers to make": [0, 65535], "holy prayers to make of": [0, 65535], "prayers to make of him": [0, 65535], "to make of him a": [0, 65535], "make of him a formall": [0, 65535], "of him a formall man": [0, 65535], "him a formall man againe": [0, 65535], "a formall man againe it": [0, 65535], "formall man againe it is": [0, 65535], "man againe it is a": [0, 65535], "againe it is a branch": [0, 65535], "it is a branch and": [0, 65535], "is a branch and parcell": [0, 65535], "a branch and parcell of": [0, 65535], "branch and parcell of mine": [0, 65535], "and parcell of mine oath": [0, 65535], "parcell of mine oath a": [0, 65535], "of mine oath a charitable": [0, 65535], "mine oath a charitable dutie": [0, 65535], "oath a charitable dutie of": [0, 65535], "a charitable dutie of my": [0, 65535], "charitable dutie of my order": [0, 65535], "dutie of my order therefore": [0, 65535], "of my order therefore depart": [0, 65535], "my order therefore depart and": [0, 65535], "order therefore depart and leaue": [0, 65535], "therefore depart and leaue him": [0, 65535], "depart and leaue him heere": [0, 65535], "and leaue him heere with": [0, 65535], "leaue him heere with me": [0, 65535], "him heere with me adr": [0, 65535], "heere with me adr i": [0, 65535], "with me adr i will": [0, 65535], "me adr i will not": [0, 65535], "adr i will not hence": [0, 65535], "i will not hence and": [0, 65535], "will not hence and leaue": [0, 65535], "not hence and leaue my": [0, 65535], "hence and leaue my husband": [0, 65535], "and leaue my husband heere": [0, 65535], "leaue my husband heere and": [0, 65535], "my husband heere and ill": [0, 65535], "husband heere and ill it": [0, 65535], "heere and ill it doth": [0, 65535], "and ill it doth beseeme": [0, 65535], "ill it doth beseeme your": [0, 65535], "it doth beseeme your holinesse": [0, 65535], "doth beseeme your holinesse to": [0, 65535], "beseeme your holinesse to separate": [0, 65535], "your holinesse to separate the": [0, 65535], "holinesse to separate the husband": [0, 65535], "to separate the husband and": [0, 65535], "separate the husband and the": [0, 65535], "the husband and the wife": [0, 65535], "husband and the wife ab": [0, 65535], "and the wife ab be": [0, 65535], "the wife ab be quiet": [0, 65535], "wife ab be quiet and": [0, 65535], "ab be quiet and depart": [0, 65535], "be quiet and depart thou": [0, 65535], "quiet and depart thou shalt": [0, 65535], "and depart thou shalt not": [0, 65535], "depart thou shalt not haue": [0, 65535], "thou shalt not haue him": [0, 65535], "shalt not haue him luc": [0, 65535], "not haue him luc complaine": [0, 65535], "haue him luc complaine vnto": [0, 65535], "him luc complaine vnto the": [0, 65535], "luc complaine vnto the duke": [0, 65535], "complaine vnto the duke of": [0, 65535], "vnto the duke of this": [0, 65535], "the duke of this indignity": [0, 65535], "duke of this indignity adr": [0, 65535], "of this indignity adr come": [0, 65535], "this indignity adr come go": [0, 65535], "indignity adr come go i": [0, 65535], "adr come go i will": [0, 65535], "come go i will fall": [0, 65535], "go i will fall prostrate": [0, 65535], "i will fall prostrate at": [0, 65535], "will fall prostrate at his": [0, 65535], "fall prostrate at his feete": [0, 65535], "prostrate at his feete and": [0, 65535], "at his feete and neuer": [0, 65535], "his feete and neuer rise": [0, 65535], "feete and neuer rise vntill": [0, 65535], "and neuer rise vntill my": [0, 65535], "neuer rise vntill my teares": [0, 65535], "rise vntill my teares and": [0, 65535], "vntill my teares and prayers": [0, 65535], "my teares and prayers haue": [0, 65535], "teares and prayers haue won": [0, 65535], "and prayers haue won his": [0, 65535], "prayers haue won his grace": [0, 65535], "haue won his grace to": [0, 65535], "won his grace to come": [0, 65535], "his grace to come in": [0, 65535], "grace to come in person": [0, 65535], "to come in person hither": [0, 65535], "come in person hither and": [0, 65535], "in person hither and take": [0, 65535], "person hither and take perforce": [0, 65535], "hither and take perforce my": [0, 65535], "and take perforce my husband": [0, 65535], "take perforce my husband from": [0, 65535], "perforce my husband from the": [0, 65535], "my husband from the abbesse": [0, 65535], "husband from the abbesse mar": [0, 65535], "from the abbesse mar by": [0, 65535], "the abbesse mar by this": [0, 65535], "abbesse mar by this i": [0, 65535], "mar by this i thinke": [0, 65535], "by this i thinke the": [0, 65535], "this i thinke the diall": [0, 65535], "i thinke the diall points": [0, 65535], "thinke the diall points at": [0, 65535], "the diall points at fiue": [0, 65535], "diall points at fiue anon": [0, 65535], "points at fiue anon i'me": [0, 65535], "at fiue anon i'me sure": [0, 65535], "fiue anon i'me sure the": [0, 65535], "anon i'me sure the duke": [0, 65535], "i'me sure the duke himselfe": [0, 65535], "sure the duke himselfe in": [0, 65535], "the duke himselfe in person": [0, 65535], "duke himselfe in person comes": [0, 65535], "himselfe in person comes this": [0, 65535], "in person comes this way": [0, 65535], "person comes this way to": [0, 65535], "comes this way to the": [0, 65535], "this way to the melancholly": [0, 65535], "way to the melancholly vale": [0, 65535], "to the melancholly vale the": [0, 65535], "the melancholly vale the place": [0, 65535], "melancholly vale the place of": [0, 65535], "vale the place of depth": [0, 65535], "the place of depth and": [0, 65535], "place of depth and sorrie": [0, 65535], "of depth and sorrie execution": [0, 65535], "depth and sorrie execution behinde": [0, 65535], "and sorrie execution behinde the": [0, 65535], "sorrie execution behinde the ditches": [0, 65535], "execution behinde the ditches of": [0, 65535], "behinde the ditches of the": [0, 65535], "the ditches of the abbey": [0, 65535], "ditches of the abbey heere": [0, 65535], "of the abbey heere gold": [0, 65535], "the abbey heere gold vpon": [0, 65535], "abbey heere gold vpon what": [0, 65535], "heere gold vpon what cause": [0, 65535], "gold vpon what cause mar": [0, 65535], "vpon what cause mar to": [0, 65535], "what cause mar to see": [0, 65535], "cause mar to see a": [0, 65535], "mar to see a reuerent": [0, 65535], "to see a reuerent siracusian": [0, 65535], "see a reuerent siracusian merchant": [0, 65535], "a reuerent siracusian merchant who": [0, 65535], "reuerent siracusian merchant who put": [0, 65535], "siracusian merchant who put vnluckily": [0, 65535], "merchant who put vnluckily into": [0, 65535], "who put vnluckily into this": [0, 65535], "put vnluckily into this bay": [0, 65535], "vnluckily into this bay against": [0, 65535], "into this bay against the": [0, 65535], "this bay against the lawes": [0, 65535], "bay against the lawes and": [0, 65535], "against the lawes and statutes": [0, 65535], "the lawes and statutes of": [0, 65535], "lawes and statutes of this": [0, 65535], "and statutes of this towne": [0, 65535], "statutes of this towne beheaded": [0, 65535], "of this towne beheaded publikely": [0, 65535], "this towne beheaded publikely for": [0, 65535], "towne beheaded publikely for his": [0, 65535], "beheaded publikely for his offence": [0, 65535], "publikely for his offence gold": [0, 65535], "for his offence gold see": [0, 65535], "his offence gold see where": [0, 65535], "offence gold see where they": [0, 65535], "gold see where they come": [0, 65535], "see where they come we": [0, 65535], "where they come we wil": [0, 65535], "they come we wil behold": [0, 65535], "come we wil behold his": [0, 65535], "we wil behold his death": [0, 65535], "wil behold his death luc": [0, 65535], "behold his death luc kneele": [0, 65535], "his death luc kneele to": [0, 65535], "death luc kneele to the": [0, 65535], "luc kneele to the duke": [0, 65535], "kneele to the duke before": [0, 65535], "to the duke before he": [0, 65535], "the duke before he passe": [0, 65535], "duke before he passe the": [0, 65535], "before he passe the abbey": [0, 65535], "he passe the abbey enter": [0, 65535], "passe the abbey enter the": [0, 65535], "the abbey enter the duke": [0, 65535], "abbey enter the duke of": [0, 65535], "enter the duke of ephesus": [0, 65535], "the duke of ephesus and": [0, 65535], "duke of ephesus and the": [0, 65535], "of ephesus and the merchant": [0, 65535], "ephesus and the merchant of": [0, 65535], "and the merchant of siracuse": [0, 65535], "the merchant of siracuse bare": [0, 65535], "merchant of siracuse bare head": [0, 65535], "of siracuse bare head with": [0, 65535], "siracuse bare head with the": [0, 65535], "bare head with the headsman": [0, 65535], "head with the headsman other": [0, 65535], "with the headsman other officers": [0, 65535], "the headsman other officers duke": [0, 65535], "headsman other officers duke yet": [0, 65535], "other officers duke yet once": [0, 65535], "officers duke yet once againe": [0, 65535], "duke yet once againe proclaime": [0, 65535], "yet once againe proclaime it": [0, 65535], "once againe proclaime it publikely": [0, 65535], "againe proclaime it publikely if": [0, 65535], "proclaime it publikely if any": [0, 65535], "it publikely if any friend": [0, 65535], "publikely if any friend will": [0, 65535], "if any friend will pay": [0, 65535], "any friend will pay the": [0, 65535], "friend will pay the summe": [0, 65535], "will pay the summe for": [0, 65535], "pay the summe for him": [0, 65535], "the summe for him he": [0, 65535], "summe for him he shall": [0, 65535], "for him he shall not": [0, 65535], "him he shall not die": [0, 65535], "he shall not die so": [0, 65535], "shall not die so much": [0, 65535], "not die so much we": [0, 65535], "die so much we tender": [0, 65535], "so much we tender him": [0, 65535], "much we tender him adr": [0, 65535], "we tender him adr iustice": [0, 65535], "tender him adr iustice most": [0, 65535], "him adr iustice most sacred": [0, 65535], "adr iustice most sacred duke": [0, 65535], "iustice most sacred duke against": [0, 65535], "most sacred duke against the": [0, 65535], "sacred duke against the abbesse": [0, 65535], "duke against the abbesse duke": [0, 65535], "against the abbesse duke she": [0, 65535], "the abbesse duke she is": [0, 65535], "abbesse duke she is a": [0, 65535], "duke she is a vertuous": [0, 65535], "she is a vertuous and": [0, 65535], "is a vertuous and a": [0, 65535], "a vertuous and a reuerend": [0, 65535], "vertuous and a reuerend lady": [0, 65535], "and a reuerend lady it": [0, 65535], "a reuerend lady it cannot": [0, 65535], "reuerend lady it cannot be": [0, 65535], "lady it cannot be that": [0, 65535], "it cannot be that she": [0, 65535], "cannot be that she hath": [0, 65535], "be that she hath done": [0, 65535], "that she hath done thee": [0, 65535], "she hath done thee wrong": [0, 65535], "hath done thee wrong adr": [0, 65535], "done thee wrong adr may": [0, 65535], "thee wrong adr may it": [0, 65535], "wrong adr may it please": [0, 65535], "adr may it please your": [0, 65535], "may it please your grace": [0, 65535], "it please your grace antipholus": [0, 65535], "please your grace antipholus my": [0, 65535], "your grace antipholus my husba": [0, 65535], "grace antipholus my husba n": [0, 65535], "antipholus my husba n d": [0, 65535], "my husba n d who": [0, 65535], "husba n d who i": [0, 65535], "n d who i made": [0, 65535], "d who i made lord": [0, 65535], "who i made lord of": [0, 65535], "i made lord of me": [0, 65535], "made lord of me and": [0, 65535], "lord of me and all": [0, 65535], "of me and all i": [0, 65535], "me and all i had": [0, 65535], "and all i had at": [0, 65535], "all i had at your": [0, 65535], "i had at your important": [0, 65535], "had at your important letters": [0, 65535], "at your important letters this": [0, 65535], "your important letters this ill": [0, 65535], "important letters this ill day": [0, 65535], "letters this ill day a": [0, 65535], "this ill day a most": [0, 65535], "ill day a most outragious": [0, 65535], "day a most outragious fit": [0, 65535], "a most outragious fit of": [0, 65535], "most outragious fit of madnesse": [0, 65535], "outragious fit of madnesse tooke": [0, 65535], "fit of madnesse tooke him": [0, 65535], "of madnesse tooke him that": [0, 65535], "madnesse tooke him that desp'rately": [0, 65535], "tooke him that desp'rately he": [0, 65535], "him that desp'rately he hurried": [0, 65535], "that desp'rately he hurried through": [0, 65535], "desp'rately he hurried through the": [0, 65535], "he hurried through the streete": [0, 65535], "hurried through the streete with": [0, 65535], "through the streete with him": [0, 65535], "the streete with him his": [0, 65535], "streete with him his bondman": [0, 65535], "with him his bondman all": [0, 65535], "him his bondman all as": [0, 65535], "his bondman all as mad": [0, 65535], "bondman all as mad as": [0, 65535], "all as mad as he": [0, 65535], "as mad as he doing": [0, 65535], "mad as he doing displeasure": [0, 65535], "as he doing displeasure to": [0, 65535], "he doing displeasure to the": [0, 65535], "doing displeasure to the citizens": [0, 65535], "displeasure to the citizens by": [0, 65535], "to the citizens by rushing": [0, 65535], "the citizens by rushing in": [0, 65535], "citizens by rushing in their": [0, 65535], "by rushing in their houses": [0, 65535], "rushing in their houses bearing": [0, 65535], "in their houses bearing thence": [0, 65535], "their houses bearing thence rings": [0, 65535], "houses bearing thence rings iewels": [0, 65535], "bearing thence rings iewels any": [0, 65535], "thence rings iewels any thing": [0, 65535], "rings iewels any thing his": [0, 65535], "iewels any thing his rage": [0, 65535], "any thing his rage did": [0, 65535], "thing his rage did like": [0, 65535], "his rage did like once": [0, 65535], "rage did like once did": [0, 65535], "did like once did i": [0, 65535], "like once did i get": [0, 65535], "once did i get him": [0, 65535], "did i get him bound": [0, 65535], "i get him bound and": [0, 65535], "get him bound and sent": [0, 65535], "him bound and sent him": [0, 65535], "bound and sent him home": [0, 65535], "and sent him home whil'st": [0, 65535], "sent him home whil'st to": [0, 65535], "him home whil'st to take": [0, 65535], "home whil'st to take order": [0, 65535], "whil'st to take order for": [0, 65535], "to take order for the": [0, 65535], "take order for the wrongs": [0, 65535], "order for the wrongs i": [0, 65535], "for the wrongs i went": [0, 65535], "the wrongs i went that": [0, 65535], "wrongs i went that heere": [0, 65535], "i went that heere and": [0, 65535], "went that heere and there": [0, 65535], "that heere and there his": [0, 65535], "heere and there his furie": [0, 65535], "and there his furie had": [0, 65535], "there his furie had committed": [0, 65535], "his furie had committed anon": [0, 65535], "furie had committed anon i": [0, 65535], "had committed anon i wot": [0, 65535], "committed anon i wot not": [0, 65535], "anon i wot not by": [0, 65535], "i wot not by what": [0, 65535], "wot not by what strong": [0, 65535], "not by what strong escape": [0, 65535], "by what strong escape he": [0, 65535], "what strong escape he broke": [0, 65535], "strong escape he broke from": [0, 65535], "escape he broke from those": [0, 65535], "he broke from those that": [0, 65535], "broke from those that had": [0, 65535], "from those that had the": [0, 65535], "those that had the guard": [0, 65535], "that had the guard of": [0, 65535], "had the guard of him": [0, 65535], "the guard of him and": [0, 65535], "guard of him and with": [0, 65535], "of him and with his": [0, 65535], "him and with his mad": [0, 65535], "and with his mad attendant": [0, 65535], "with his mad attendant and": [0, 65535], "his mad attendant and himselfe": [0, 65535], "mad attendant and himselfe each": [0, 65535], "attendant and himselfe each one": [0, 65535], "and himselfe each one with": [0, 65535], "himselfe each one with irefull": [0, 65535], "each one with irefull passion": [0, 65535], "one with irefull passion with": [0, 65535], "with irefull passion with drawne": [0, 65535], "irefull passion with drawne swords": [0, 65535], "passion with drawne swords met": [0, 65535], "with drawne swords met vs": [0, 65535], "drawne swords met vs againe": [0, 65535], "swords met vs againe and": [0, 65535], "met vs againe and madly": [0, 65535], "vs againe and madly bent": [0, 65535], "againe and madly bent on": [0, 65535], "and madly bent on vs": [0, 65535], "madly bent on vs chac'd": [0, 65535], "bent on vs chac'd vs": [0, 65535], "on vs chac'd vs away": [0, 65535], "vs chac'd vs away till": [0, 65535], "chac'd vs away till raising": [0, 65535], "vs away till raising of": [0, 65535], "away till raising of more": [0, 65535], "till raising of more aide": [0, 65535], "raising of more aide we": [0, 65535], "of more aide we came": [0, 65535], "more aide we came againe": [0, 65535], "aide we came againe to": [0, 65535], "we came againe to binde": [0, 65535], "came againe to binde them": [0, 65535], "againe to binde them then": [0, 65535], "to binde them then they": [0, 65535], "binde them then they fled": [0, 65535], "them then they fled into": [0, 65535], "then they fled into this": [0, 65535], "they fled into this abbey": [0, 65535], "fled into this abbey whether": [0, 65535], "into this abbey whether we": [0, 65535], "this abbey whether we pursu'd": [0, 65535], "abbey whether we pursu'd them": [0, 65535], "whether we pursu'd them and": [0, 65535], "we pursu'd them and heere": [0, 65535], "pursu'd them and heere the": [0, 65535], "them and heere the abbesse": [0, 65535], "and heere the abbesse shuts": [0, 65535], "heere the abbesse shuts the": [0, 65535], "the abbesse shuts the gates": [0, 65535], "abbesse shuts the gates on": [0, 65535], "shuts the gates on vs": [0, 65535], "the gates on vs and": [0, 65535], "gates on vs and will": [0, 65535], "on vs and will not": [0, 65535], "vs and will not suffer": [0, 65535], "and will not suffer vs": [0, 65535], "will not suffer vs to": [0, 65535], "not suffer vs to fetch": [0, 65535], "suffer vs to fetch him": [0, 65535], "vs to fetch him out": [0, 65535], "to fetch him out nor": [0, 65535], "fetch him out nor send": [0, 65535], "him out nor send him": [0, 65535], "out nor send him forth": [0, 65535], "nor send him forth that": [0, 65535], "send him forth that we": [0, 65535], "him forth that we may": [0, 65535], "forth that we may beare": [0, 65535], "that we may beare him": [0, 65535], "we may beare him hence": [0, 65535], "may beare him hence therefore": [0, 65535], "beare him hence therefore most": [0, 65535], "him hence therefore most gracious": [0, 65535], "hence therefore most gracious duke": [0, 65535], "therefore most gracious duke with": [0, 65535], "most gracious duke with thy": [0, 65535], "gracious duke with thy command": [0, 65535], "duke with thy command let": [0, 65535], "with thy command let him": [0, 65535], "thy command let him be": [0, 65535], "command let him be brought": [0, 65535], "let him be brought forth": [0, 65535], "him be brought forth and": [0, 65535], "be brought forth and borne": [0, 65535], "brought forth and borne hence": [0, 65535], "forth and borne hence for": [0, 65535], "and borne hence for helpe": [0, 65535], "borne hence for helpe duke": [0, 65535], "hence for helpe duke long": [0, 65535], "for helpe duke long since": [0, 65535], "helpe duke long since thy": [0, 65535], "duke long since thy husband": [0, 65535], "long since thy husband seru'd": [0, 65535], "since thy husband seru'd me": [0, 65535], "thy husband seru'd me in": [0, 65535], "husband seru'd me in my": [0, 65535], "seru'd me in my wars": [0, 65535], "me in my wars and": [0, 65535], "in my wars and i": [0, 65535], "my wars and i to": [0, 65535], "wars and i to thee": [0, 65535], "and i to thee ingag'd": [0, 65535], "i to thee ingag'd a": [0, 65535], "to thee ingag'd a princes": [0, 65535], "thee ingag'd a princes word": [0, 65535], "ingag'd a princes word when": [0, 65535], "a princes word when thou": [0, 65535], "princes word when thou didst": [0, 65535], "word when thou didst make": [0, 65535], "when thou didst make him": [0, 65535], "thou didst make him master": [0, 65535], "didst make him master of": [0, 65535], "make him master of thy": [0, 65535], "him master of thy bed": [0, 65535], "master of thy bed to": [0, 65535], "of thy bed to do": [0, 65535], "thy bed to do him": [0, 65535], "bed to do him all": [0, 65535], "to do him all the": [0, 65535], "do him all the grace": [0, 65535], "him all the grace and": [0, 65535], "all the grace and good": [0, 65535], "the grace and good i": [0, 65535], "grace and good i could": [0, 65535], "and good i could go": [0, 65535], "good i could go some": [0, 65535], "i could go some of": [0, 65535], "could go some of you": [0, 65535], "go some of you knocke": [0, 65535], "some of you knocke at": [0, 65535], "of you knocke at the": [0, 65535], "you knocke at the abbey": [0, 65535], "knocke at the abbey gate": [0, 65535], "at the abbey gate and": [0, 65535], "the abbey gate and bid": [0, 65535], "abbey gate and bid the": [0, 65535], "gate and bid the lady": [0, 65535], "and bid the lady abbesse": [0, 65535], "bid the lady abbesse come": [0, 65535], "the lady abbesse come to": [0, 65535], "lady abbesse come to me": [0, 65535], "abbesse come to me i": [0, 65535], "come to me i will": [0, 65535], "to me i will determine": [0, 65535], "me i will determine this": [0, 65535], "i will determine this before": [0, 65535], "will determine this before i": [0, 65535], "determine this before i stirre": [0, 65535], "this before i stirre enter": [0, 65535], "before i stirre enter a": [0, 65535], "i stirre enter a messenger": [0, 65535], "stirre enter a messenger oh": [0, 65535], "enter a messenger oh mistris": [0, 65535], "a messenger oh mistris mistris": [0, 65535], "messenger oh mistris mistris shift": [0, 65535], "oh mistris mistris shift and": [0, 65535], "mistris mistris shift and saue": [0, 65535], "mistris shift and saue your": [0, 65535], "shift and saue your selfe": [0, 65535], "and saue your selfe my": [0, 65535], "saue your selfe my master": [0, 65535], "your selfe my master and": [0, 65535], "selfe my master and his": [0, 65535], "my master and his man": [0, 65535], "master and his man are": [0, 65535], "and his man are both": [0, 65535], "his man are both broke": [0, 65535], "man are both broke loose": [0, 65535], "are both broke loose beaten": [0, 65535], "both broke loose beaten the": [0, 65535], "broke loose beaten the maids": [0, 65535], "loose beaten the maids a": [0, 65535], "beaten the maids a row": [0, 65535], "the maids a row and": [0, 65535], "maids a row and bound": [0, 65535], "a row and bound the": [0, 65535], "row and bound the doctor": [0, 65535], "and bound the doctor whose": [0, 65535], "bound the doctor whose beard": [0, 65535], "the doctor whose beard they": [0, 65535], "doctor whose beard they haue": [0, 65535], "whose beard they haue sindg'd": [0, 65535], "beard they haue sindg'd off": [0, 65535], "they haue sindg'd off with": [0, 65535], "haue sindg'd off with brands": [0, 65535], "sindg'd off with brands of": [0, 65535], "off with brands of fire": [0, 65535], "with brands of fire and": [0, 65535], "brands of fire and euer": [0, 65535], "of fire and euer as": [0, 65535], "fire and euer as it": [0, 65535], "and euer as it blaz'd": [0, 65535], "euer as it blaz'd they": [0, 65535], "as it blaz'd they threw": [0, 65535], "it blaz'd they threw on": [0, 65535], "blaz'd they threw on him": [0, 65535], "they threw on him great": [0, 65535], "threw on him great pailes": [0, 65535], "on him great pailes of": [0, 65535], "him great pailes of puddled": [0, 65535], "great pailes of puddled myre": [0, 65535], "pailes of puddled myre to": [0, 65535], "of puddled myre to quench": [0, 65535], "puddled myre to quench the": [0, 65535], "myre to quench the haire": [0, 65535], "to quench the haire my": [0, 65535], "quench the haire my mr": [0, 65535], "the haire my mr preaches": [0, 65535], "haire my mr preaches patience": [0, 65535], "my mr preaches patience to": [0, 65535], "mr preaches patience to him": [0, 65535], "preaches patience to him and": [0, 65535], "patience to him and the": [0, 65535], "to him and the while": [0, 65535], "him and the while his": [0, 65535], "and the while his man": [0, 65535], "the while his man with": [0, 65535], "while his man with cizers": [0, 65535], "his man with cizers nickes": [0, 65535], "man with cizers nickes him": [0, 65535], "with cizers nickes him like": [0, 65535], "cizers nickes him like a": [0, 65535], "nickes him like a foole": [0, 65535], "him like a foole and": [0, 65535], "like a foole and sure": [0, 65535], "a foole and sure vnlesse": [0, 65535], "foole and sure vnlesse you": [0, 65535], "and sure vnlesse you send": [0, 65535], "sure vnlesse you send some": [0, 65535], "vnlesse you send some present": [0, 65535], "you send some present helpe": [0, 65535], "send some present helpe betweene": [0, 65535], "some present helpe betweene them": [0, 65535], "present helpe betweene them they": [0, 65535], "helpe betweene them they will": [0, 65535], "betweene them they will kill": [0, 65535], "them they will kill the": [0, 65535], "they will kill the coniurer": [0, 65535], "will kill the coniurer adr": [0, 65535], "kill the coniurer adr peace": [0, 65535], "the coniurer adr peace foole": [0, 65535], "coniurer adr peace foole thy": [0, 65535], "adr peace foole thy master": [0, 65535], "peace foole thy master and": [0, 65535], "foole thy master and his": [0, 65535], "thy master and his man": [0, 65535], "and his man are here": [0, 65535], "his man are here and": [0, 65535], "man are here and that": [0, 65535], "are here and that is": [0, 65535], "here and that is false": [0, 65535], "and that is false thou": [0, 65535], "that is false thou dost": [0, 65535], "is false thou dost report": [0, 65535], "false thou dost report to": [0, 65535], "thou dost report to vs": [0, 65535], "dost report to vs mess": [0, 65535], "report to vs mess mistris": [0, 65535], "to vs mess mistris vpon": [0, 65535], "vs mess mistris vpon my": [0, 65535], "mess mistris vpon my life": [0, 65535], "mistris vpon my life i": [0, 65535], "vpon my life i tel": [0, 65535], "my life i tel you": [0, 65535], "life i tel you true": [0, 65535], "i tel you true i": [0, 65535], "tel you true i haue": [0, 65535], "you true i haue not": [0, 65535], "true i haue not breath'd": [0, 65535], "i haue not breath'd almost": [0, 65535], "haue not breath'd almost since": [0, 65535], "not breath'd almost since i": [0, 65535], "breath'd almost since i did": [0, 65535], "almost since i did see": [0, 65535], "since i did see it": [0, 65535], "i did see it he": [0, 65535], "did see it he cries": [0, 65535], "see it he cries for": [0, 65535], "it he cries for you": [0, 65535], "he cries for you and": [0, 65535], "cries for you and vowes": [0, 65535], "for you and vowes if": [0, 65535], "you and vowes if he": [0, 65535], "and vowes if he can": [0, 65535], "vowes if he can take": [0, 65535], "if he can take you": [0, 65535], "he can take you to": [0, 65535], "can take you to scorch": [0, 65535], "take you to scorch your": [0, 65535], "you to scorch your face": [0, 65535], "to scorch your face and": [0, 65535], "scorch your face and to": [0, 65535], "your face and to disfigure": [0, 65535], "face and to disfigure you": [0, 65535], "and to disfigure you cry": [0, 65535], "to disfigure you cry within": [0, 65535], "disfigure you cry within harke": [0, 65535], "you cry within harke harke": [0, 65535], "cry within harke harke i": [0, 65535], "within harke harke i heare": [0, 65535], "harke harke i heare him": [0, 65535], "harke i heare him mistris": [0, 65535], "i heare him mistris flie": [0, 65535], "heare him mistris flie be": [0, 65535], "him mistris flie be gone": [0, 65535], "mistris flie be gone duke": [0, 65535], "flie be gone duke come": [0, 65535], "be gone duke come stand": [0, 65535], "gone duke come stand by": [0, 65535], "duke come stand by me": [0, 65535], "come stand by me feare": [0, 65535], "stand by me feare nothing": [0, 65535], "by me feare nothing guard": [0, 65535], "me feare nothing guard with": [0, 65535], "feare nothing guard with halberds": [0, 65535], "nothing guard with halberds adr": [0, 65535], "guard with halberds adr ay": [0, 65535], "with halberds adr ay me": [0, 65535], "halberds adr ay me it": [0, 65535], "adr ay me it is": [0, 65535], "ay me it is my": [0, 65535], "me it is my husband": [0, 65535], "it is my husband witnesse": [0, 65535], "is my husband witnesse you": [0, 65535], "my husband witnesse you that": [0, 65535], "husband witnesse you that he": [0, 65535], "witnesse you that he is": [0, 65535], "you that he is borne": [0, 65535], "that he is borne about": [0, 65535], "he is borne about inuisible": [0, 65535], "is borne about inuisible euen": [0, 65535], "borne about inuisible euen now": [0, 65535], "about inuisible euen now we": [0, 65535], "inuisible euen now we hous'd": [0, 65535], "euen now we hous'd him": [0, 65535], "now we hous'd him in": [0, 65535], "we hous'd him in the": [0, 65535], "hous'd him in the abbey": [0, 65535], "him in the abbey heere": [0, 65535], "in the abbey heere and": [0, 65535], "the abbey heere and now": [0, 65535], "abbey heere and now he's": [0, 65535], "heere and now he's there": [0, 65535], "and now he's there past": [0, 65535], "now he's there past thought": [0, 65535], "he's there past thought of": [0, 65535], "there past thought of humane": [0, 65535], "past thought of humane reason": [0, 65535], "thought of humane reason enter": [0, 65535], "of humane reason enter antipholus": [0, 65535], "humane reason enter antipholus and": [0, 65535], "reason enter antipholus and e": [0, 65535], "enter antipholus and e dromio": [0, 65535], "antipholus and e dromio of": [0, 65535], "and e dromio of ephesus": [0, 65535], "e dromio of ephesus e": [0, 65535], "dromio of ephesus e ant": [0, 65535], "of ephesus e ant iustice": [0, 65535], "ephesus e ant iustice most": [0, 65535], "e ant iustice most gracious": [0, 65535], "ant iustice most gracious duke": [0, 65535], "iustice most gracious duke oh": [0, 65535], "most gracious duke oh grant": [0, 65535], "gracious duke oh grant me": [0, 65535], "duke oh grant me iustice": [0, 65535], "oh grant me iustice euen": [0, 65535], "grant me iustice euen for": [0, 65535], "me iustice euen for the": [0, 65535], "iustice euen for the seruice": [0, 65535], "euen for the seruice that": [0, 65535], "for the seruice that long": [0, 65535], "the seruice that long since": [0, 65535], "seruice that long since i": [0, 65535], "that long since i did": [0, 65535], "long since i did thee": [0, 65535], "since i did thee when": [0, 65535], "i did thee when i": [0, 65535], "did thee when i bestrid": [0, 65535], "thee when i bestrid thee": [0, 65535], "when i bestrid thee in": [0, 65535], "i bestrid thee in the": [0, 65535], "bestrid thee in the warres": [0, 65535], "thee in the warres and": [0, 65535], "in the warres and tooke": [0, 65535], "the warres and tooke deepe": [0, 65535], "warres and tooke deepe scarres": [0, 65535], "and tooke deepe scarres to": [0, 65535], "tooke deepe scarres to saue": [0, 65535], "deepe scarres to saue thy": [0, 65535], "scarres to saue thy life": [0, 65535], "to saue thy life euen": [0, 65535], "saue thy life euen for": [0, 65535], "thy life euen for the": [0, 65535], "life euen for the blood": [0, 65535], "euen for the blood that": [0, 65535], "for the blood that then": [0, 65535], "the blood that then i": [0, 65535], "blood that then i lost": [0, 65535], "that then i lost for": [0, 65535], "then i lost for thee": [0, 65535], "i lost for thee now": [0, 65535], "lost for thee now grant": [0, 65535], "for thee now grant me": [0, 65535], "thee now grant me iustice": [0, 65535], "now grant me iustice mar": [0, 65535], "grant me iustice mar fat": [0, 65535], "me iustice mar fat vnlesse": [0, 65535], "iustice mar fat vnlesse the": [0, 65535], "mar fat vnlesse the feare": [0, 65535], "fat vnlesse the feare of": [0, 65535], "vnlesse the feare of death": [0, 65535], "the feare of death doth": [0, 65535], "feare of death doth make": [0, 65535], "of death doth make me": [0, 65535], "death doth make me dote": [0, 65535], "doth make me dote i": [0, 65535], "make me dote i see": [0, 65535], "me dote i see my": [0, 65535], "dote i see my sonne": [0, 65535], "i see my sonne antipholus": [0, 65535], "see my sonne antipholus and": [0, 65535], "my sonne antipholus and dromio": [0, 65535], "sonne antipholus and dromio e": [0, 65535], "antipholus and dromio e ant": [0, 65535], "and dromio e ant iustice": [0, 65535], "dromio e ant iustice sweet": [0, 65535], "e ant iustice sweet prince": [0, 65535], "ant iustice sweet prince against": [0, 65535], "iustice sweet prince against that": [0, 65535], "sweet prince against that woman": [0, 65535], "prince against that woman there": [0, 65535], "against that woman there she": [0, 65535], "that woman there she whom": [0, 65535], "woman there she whom thou": [0, 65535], "there she whom thou gau'st": [0, 65535], "she whom thou gau'st to": [0, 65535], "whom thou gau'st to me": [0, 65535], "thou gau'st to me to": [0, 65535], "gau'st to me to be": [0, 65535], "to me to be my": [0, 65535], "me to be my wife": [0, 65535], "to be my wife that": [0, 65535], "be my wife that hath": [0, 65535], "my wife that hath abused": [0, 65535], "wife that hath abused and": [0, 65535], "that hath abused and dishonored": [0, 65535], "hath abused and dishonored me": [0, 65535], "abused and dishonored me euen": [0, 65535], "and dishonored me euen in": [0, 65535], "dishonored me euen in the": [0, 65535], "me euen in the strength": [0, 65535], "euen in the strength and": [0, 65535], "in the strength and height": [0, 65535], "the strength and height of": [0, 65535], "strength and height of iniurie": [0, 65535], "and height of iniurie beyond": [0, 65535], "height of iniurie beyond imagination": [0, 65535], "of iniurie beyond imagination is": [0, 65535], "iniurie beyond imagination is the": [0, 65535], "beyond imagination is the wrong": [0, 65535], "imagination is the wrong that": [0, 65535], "is the wrong that she": [0, 65535], "the wrong that she this": [0, 65535], "wrong that she this day": [0, 65535], "that she this day hath": [0, 65535], "she this day hath shamelesse": [0, 65535], "this day hath shamelesse throwne": [0, 65535], "day hath shamelesse throwne on": [0, 65535], "hath shamelesse throwne on me": [0, 65535], "shamelesse throwne on me duke": [0, 65535], "throwne on me duke discouer": [0, 65535], "on me duke discouer how": [0, 65535], "me duke discouer how and": [0, 65535], "duke discouer how and thou": [0, 65535], "discouer how and thou shalt": [0, 65535], "how and thou shalt finde": [0, 65535], "and thou shalt finde me": [0, 65535], "thou shalt finde me iust": [0, 65535], "shalt finde me iust e": [0, 65535], "finde me iust e ant": [0, 65535], "me iust e ant this": [0, 65535], "iust e ant this day": [0, 65535], "e ant this day great": [0, 65535], "ant this day great duke": [0, 65535], "this day great duke she": [0, 65535], "day great duke she shut": [0, 65535], "great duke she shut the": [0, 65535], "duke she shut the doores": [0, 65535], "she shut the doores vpon": [0, 65535], "shut the doores vpon me": [0, 65535], "the doores vpon me while": [0, 65535], "doores vpon me while she": [0, 65535], "vpon me while she with": [0, 65535], "me while she with harlots": [0, 65535], "while she with harlots feasted": [0, 65535], "she with harlots feasted in": [0, 65535], "with harlots feasted in my": [0, 65535], "harlots feasted in my house": [0, 65535], "feasted in my house duke": [0, 65535], "in my house duke a": [0, 65535], "my house duke a greeuous": [0, 65535], "house duke a greeuous fault": [0, 65535], "duke a greeuous fault say": [0, 65535], "a greeuous fault say woman": [0, 65535], "greeuous fault say woman didst": [0, 65535], "fault say woman didst thou": [0, 65535], "say woman didst thou so": [0, 65535], "woman didst thou so adr": [0, 65535], "didst thou so adr no": [0, 65535], "thou so adr no my": [0, 65535], "so adr no my good": [0, 65535], "adr no my good lord": [0, 65535], "no my good lord my": [0, 65535], "my good lord my selfe": [0, 65535], "good lord my selfe he": [0, 65535], "lord my selfe he and": [0, 65535], "my selfe he and my": [0, 65535], "selfe he and my sister": [0, 65535], "he and my sister to": [0, 65535], "and my sister to day": [0, 65535], "my sister to day did": [0, 65535], "sister to day did dine": [0, 65535], "to day did dine together": [0, 65535], "day did dine together so": [0, 65535], "did dine together so befall": [0, 65535], "dine together so befall my": [0, 65535], "together so befall my soule": [0, 65535], "so befall my soule as": [0, 65535], "befall my soule as this": [0, 65535], "my soule as this is": [0, 65535], "soule as this is false": [0, 65535], "as this is false he": [0, 65535], "this is false he burthens": [0, 65535], "is false he burthens me": [0, 65535], "false he burthens me withall": [0, 65535], "he burthens me withall luc": [0, 65535], "burthens me withall luc nere": [0, 65535], "me withall luc nere may": [0, 65535], "withall luc nere may i": [0, 65535], "luc nere may i looke": [0, 65535], "nere may i looke on": [0, 65535], "may i looke on day": [0, 65535], "i looke on day nor": [0, 65535], "looke on day nor sleepe": [0, 65535], "on day nor sleepe on": [0, 65535], "day nor sleepe on night": [0, 65535], "nor sleepe on night but": [0, 65535], "sleepe on night but she": [0, 65535], "on night but she tels": [0, 65535], "night but she tels to": [0, 65535], "but she tels to your": [0, 65535], "she tels to your highnesse": [0, 65535], "tels to your highnesse simple": [0, 65535], "to your highnesse simple truth": [0, 65535], "your highnesse simple truth gold": [0, 65535], "highnesse simple truth gold o": [0, 65535], "simple truth gold o periur'd": [0, 65535], "truth gold o periur'd woman": [0, 65535], "gold o periur'd woman they": [0, 65535], "o periur'd woman they are": [0, 65535], "periur'd woman they are both": [0, 65535], "woman they are both forsworne": [0, 65535], "they are both forsworne in": [0, 65535], "are both forsworne in this": [0, 65535], "both forsworne in this the": [0, 65535], "forsworne in this the madman": [0, 65535], "in this the madman iustly": [0, 65535], "this the madman iustly chargeth": [0, 65535], "the madman iustly chargeth them": [0, 65535], "madman iustly chargeth them e": [0, 65535], "iustly chargeth them e ant": [0, 65535], "chargeth them e ant my": [0, 65535], "them e ant my liege": [0, 65535], "e ant my liege i": [0, 65535], "ant my liege i am": [0, 65535], "my liege i am aduised": [0, 65535], "liege i am aduised what": [0, 65535], "i am aduised what i": [0, 65535], "am aduised what i say": [0, 65535], "aduised what i say neither": [0, 65535], "what i say neither disturbed": [0, 65535], "i say neither disturbed with": [0, 65535], "say neither disturbed with the": [0, 65535], "neither disturbed with the effect": [0, 65535], "disturbed with the effect of": [0, 65535], "with the effect of wine": [0, 65535], "the effect of wine nor": [0, 65535], "effect of wine nor headie": [0, 65535], "of wine nor headie rash": [0, 65535], "wine nor headie rash prouoak'd": [0, 65535], "nor headie rash prouoak'd with": [0, 65535], "headie rash prouoak'd with raging": [0, 65535], "rash prouoak'd with raging ire": [0, 65535], "prouoak'd with raging ire albeit": [0, 65535], "with raging ire albeit my": [0, 65535], "raging ire albeit my wrongs": [0, 65535], "ire albeit my wrongs might": [0, 65535], "albeit my wrongs might make": [0, 65535], "my wrongs might make one": [0, 65535], "wrongs might make one wiser": [0, 65535], "might make one wiser mad": [0, 65535], "make one wiser mad this": [0, 65535], "one wiser mad this woman": [0, 65535], "wiser mad this woman lock'd": [0, 65535], "mad this woman lock'd me": [0, 65535], "this woman lock'd me out": [0, 65535], "woman lock'd me out this": [0, 65535], "lock'd me out this day": [0, 65535], "me out this day from": [0, 65535], "out this day from dinner": [0, 65535], "this day from dinner that": [0, 65535], "day from dinner that goldsmith": [0, 65535], "from dinner that goldsmith there": [0, 65535], "dinner that goldsmith there were": [0, 65535], "that goldsmith there were he": [0, 65535], "goldsmith there were he not": [0, 65535], "there were he not pack'd": [0, 65535], "were he not pack'd with": [0, 65535], "he not pack'd with her": [0, 65535], "not pack'd with her could": [0, 65535], "pack'd with her could witnesse": [0, 65535], "with her could witnesse it": [0, 65535], "her could witnesse it for": [0, 65535], "could witnesse it for he": [0, 65535], "witnesse it for he was": [0, 65535], "it for he was with": [0, 65535], "for he was with me": [0, 65535], "he was with me then": [0, 65535], "was with me then who": [0, 65535], "with me then who parted": [0, 65535], "me then who parted with": [0, 65535], "then who parted with me": [0, 65535], "who parted with me to": [0, 65535], "parted with me to go": [0, 65535], "with me to go fetch": [0, 65535], "me to go fetch a": [0, 65535], "to go fetch a chaine": [0, 65535], "go fetch a chaine promising": [0, 65535], "fetch a chaine promising to": [0, 65535], "a chaine promising to bring": [0, 65535], "chaine promising to bring it": [0, 65535], "promising to bring it to": [0, 65535], "to bring it to the": [0, 65535], "bring it to the porpentine": [0, 65535], "it to the porpentine where": [0, 65535], "to the porpentine where balthasar": [0, 65535], "the porpentine where balthasar and": [0, 65535], "porpentine where balthasar and i": [0, 65535], "where balthasar and i did": [0, 65535], "balthasar and i did dine": [0, 65535], "and i did dine together": [0, 65535], "i did dine together our": [0, 65535], "did dine together our dinner": [0, 65535], "dine together our dinner done": [0, 65535], "together our dinner done and": [0, 65535], "our dinner done and he": [0, 65535], "dinner done and he not": [0, 65535], "done and he not comming": [0, 65535], "and he not comming thither": [0, 65535], "he not comming thither i": [0, 65535], "not comming thither i went": [0, 65535], "comming thither i went to": [0, 65535], "thither i went to seeke": [0, 65535], "i went to seeke him": [0, 65535], "went to seeke him in": [0, 65535], "to seeke him in the": [0, 65535], "seeke him in the street": [0, 65535], "him in the street i": [0, 65535], "in the street i met": [0, 65535], "the street i met him": [0, 65535], "street i met him and": [0, 65535], "i met him and in": [0, 65535], "met him and in his": [0, 65535], "him and in his companie": [0, 65535], "and in his companie that": [0, 65535], "in his companie that gentleman": [0, 65535], "his companie that gentleman there": [0, 65535], "companie that gentleman there did": [0, 65535], "that gentleman there did this": [0, 65535], "gentleman there did this periur'd": [0, 65535], "there did this periur'd goldsmith": [0, 65535], "did this periur'd goldsmith sweare": [0, 65535], "this periur'd goldsmith sweare me": [0, 65535], "periur'd goldsmith sweare me downe": [0, 65535], "goldsmith sweare me downe that": [0, 65535], "sweare me downe that i": [0, 65535], "me downe that i this": [0, 65535], "downe that i this day": [0, 65535], "that i this day of": [0, 65535], "i this day of him": [0, 65535], "this day of him receiu'd": [0, 65535], "day of him receiu'd the": [0, 65535], "of him receiu'd the chaine": [0, 65535], "him receiu'd the chaine which": [0, 65535], "receiu'd the chaine which god": [0, 65535], "the chaine which god he": [0, 65535], "chaine which god he knowes": [0, 65535], "which god he knowes i": [0, 65535], "god he knowes i saw": [0, 65535], "he knowes i saw not": [0, 65535], "knowes i saw not for": [0, 65535], "i saw not for the": [0, 65535], "saw not for the which": [0, 65535], "not for the which he": [0, 65535], "for the which he did": [0, 65535], "the which he did arrest": [0, 65535], "which he did arrest me": [0, 65535], "he did arrest me with": [0, 65535], "did arrest me with an": [0, 65535], "arrest me with an officer": [0, 65535], "me with an officer i": [0, 65535], "with an officer i did": [0, 65535], "an officer i did obey": [0, 65535], "officer i did obey and": [0, 65535], "i did obey and sent": [0, 65535], "did obey and sent my": [0, 65535], "obey and sent my pesant": [0, 65535], "and sent my pesant home": [0, 65535], "sent my pesant home for": [0, 65535], "my pesant home for certaine": [0, 65535], "pesant home for certaine duckets": [0, 65535], "home for certaine duckets he": [0, 65535], "for certaine duckets he with": [0, 65535], "certaine duckets he with none": [0, 65535], "duckets he with none return'd": [0, 65535], "he with none return'd then": [0, 65535], "with none return'd then fairely": [0, 65535], "none return'd then fairely i": [0, 65535], "return'd then fairely i bespoke": [0, 65535], "then fairely i bespoke the": [0, 65535], "fairely i bespoke the officer": [0, 65535], "i bespoke the officer to": [0, 65535], "bespoke the officer to go": [0, 65535], "the officer to go in": [0, 65535], "officer to go in person": [0, 65535], "to go in person with": [0, 65535], "go in person with me": [0, 65535], "in person with me to": [0, 65535], "person with me to my": [0, 65535], "with me to my house": [0, 65535], "me to my house by'th'": [0, 65535], "to my house by'th' way": [0, 65535], "my house by'th' way we": [0, 65535], "house by'th' way we met": [0, 65535], "by'th' way we met my": [0, 65535], "way we met my wife": [0, 65535], "we met my wife her": [0, 65535], "met my wife her sister": [0, 65535], "my wife her sister and": [0, 65535], "wife her sister and a": [0, 65535], "her sister and a rabble": [0, 65535], "sister and a rabble more": [0, 65535], "and a rabble more of": [0, 65535], "a rabble more of vilde": [0, 65535], "rabble more of vilde confederates": [0, 65535], "more of vilde confederates along": [0, 65535], "of vilde confederates along with": [0, 65535], "vilde confederates along with them": [0, 65535], "confederates along with them they": [0, 65535], "along with them they brought": [0, 65535], "with them they brought one": [0, 65535], "them they brought one pinch": [0, 65535], "they brought one pinch a": [0, 65535], "brought one pinch a hungry": [0, 65535], "one pinch a hungry leane": [0, 65535], "pinch a hungry leane fac'd": [0, 65535], "a hungry leane fac'd villaine": [0, 65535], "hungry leane fac'd villaine a": [0, 65535], "leane fac'd villaine a meere": [0, 65535], "fac'd villaine a meere anatomie": [0, 65535], "villaine a meere anatomie a": [0, 65535], "a meere anatomie a mountebanke": [0, 65535], "meere anatomie a mountebanke a": [0, 65535], "anatomie a mountebanke a thred": [0, 65535], "a mountebanke a thred bare": [0, 65535], "mountebanke a thred bare iugler": [0, 65535], "a thred bare iugler and": [0, 65535], "thred bare iugler and a": [0, 65535], "bare iugler and a fortune": [0, 65535], "iugler and a fortune teller": [0, 65535], "and a fortune teller a": [0, 65535], "a fortune teller a needy": [0, 65535], "fortune teller a needy hollow": [0, 65535], "teller a needy hollow ey'd": [0, 65535], "a needy hollow ey'd sharpe": [0, 65535], "needy hollow ey'd sharpe looking": [0, 65535], "hollow ey'd sharpe looking wretch": [0, 65535], "ey'd sharpe looking wretch a": [0, 65535], "sharpe looking wretch a liuing": [0, 65535], "looking wretch a liuing dead": [0, 65535], "wretch a liuing dead man": [0, 65535], "a liuing dead man this": [0, 65535], "liuing dead man this pernicious": [0, 65535], "dead man this pernicious slaue": [0, 65535], "man this pernicious slaue forsooth": [0, 65535], "this pernicious slaue forsooth tooke": [0, 65535], "pernicious slaue forsooth tooke on": [0, 65535], "slaue forsooth tooke on him": [0, 65535], "forsooth tooke on him as": [0, 65535], "tooke on him as a": [0, 65535], "on him as a coniurer": [0, 65535], "him as a coniurer and": [0, 65535], "as a coniurer and gazing": [0, 65535], "a coniurer and gazing in": [0, 65535], "coniurer and gazing in mine": [0, 65535], "and gazing in mine eyes": [0, 65535], "gazing in mine eyes feeling": [0, 65535], "in mine eyes feeling my": [0, 65535], "mine eyes feeling my pulse": [0, 65535], "eyes feeling my pulse and": [0, 65535], "feeling my pulse and with": [0, 65535], "my pulse and with no": [0, 65535], "pulse and with no face": [0, 65535], "and with no face as": [0, 65535], "with no face as 'twere": [0, 65535], "no face as 'twere out": [0, 65535], "face as 'twere out facing": [0, 65535], "as 'twere out facing me": [0, 65535], "'twere out facing me cries": [0, 65535], "out facing me cries out": [0, 65535], "facing me cries out i": [0, 65535], "me cries out i was": [0, 65535], "cries out i was possest": [0, 65535], "out i was possest then": [0, 65535], "i was possest then altogether": [0, 65535], "was possest then altogether they": [0, 65535], "possest then altogether they fell": [0, 65535], "then altogether they fell vpon": [0, 65535], "altogether they fell vpon me": [0, 65535], "they fell vpon me bound": [0, 65535], "fell vpon me bound me": [0, 65535], "vpon me bound me bore": [0, 65535], "me bound me bore me": [0, 65535], "bound me bore me thence": [0, 65535], "me bore me thence and": [0, 65535], "bore me thence and in": [0, 65535], "me thence and in a": [0, 65535], "thence and in a darke": [0, 65535], "and in a darke and": [0, 65535], "in a darke and dankish": [0, 65535], "a darke and dankish vault": [0, 65535], "darke and dankish vault at": [0, 65535], "and dankish vault at home": [0, 65535], "dankish vault at home there": [0, 65535], "vault at home there left": [0, 65535], "at home there left me": [0, 65535], "home there left me and": [0, 65535], "there left me and my": [0, 65535], "left me and my man": [0, 65535], "me and my man both": [0, 65535], "and my man both bound": [0, 65535], "my man both bound together": [0, 65535], "man both bound together till": [0, 65535], "both bound together till gnawing": [0, 65535], "bound together till gnawing with": [0, 65535], "together till gnawing with my": [0, 65535], "till gnawing with my teeth": [0, 65535], "gnawing with my teeth my": [0, 65535], "with my teeth my bonds": [0, 65535], "my teeth my bonds in": [0, 65535], "teeth my bonds in sunder": [0, 65535], "my bonds in sunder i": [0, 65535], "bonds in sunder i gain'd": [0, 65535], "in sunder i gain'd my": [0, 65535], "sunder i gain'd my freedome": [0, 65535], "i gain'd my freedome and": [0, 65535], "gain'd my freedome and immediately": [0, 65535], "my freedome and immediately ran": [0, 65535], "freedome and immediately ran hether": [0, 65535], "and immediately ran hether to": [0, 65535], "immediately ran hether to your": [0, 65535], "ran hether to your grace": [0, 65535], "hether to your grace whom": [0, 65535], "to your grace whom i": [0, 65535], "your grace whom i beseech": [0, 65535], "grace whom i beseech to": [0, 65535], "whom i beseech to giue": [0, 65535], "i beseech to giue me": [0, 65535], "beseech to giue me ample": [0, 65535], "to giue me ample satisfaction": [0, 65535], "giue me ample satisfaction for": [0, 65535], "me ample satisfaction for these": [0, 65535], "ample satisfaction for these deepe": [0, 65535], "satisfaction for these deepe shames": [0, 65535], "for these deepe shames and": [0, 65535], "these deepe shames and great": [0, 65535], "deepe shames and great indignities": [0, 65535], "shames and great indignities gold": [0, 65535], "and great indignities gold my": [0, 65535], "great indignities gold my lord": [0, 65535], "indignities gold my lord in": [0, 65535], "gold my lord in truth": [0, 65535], "my lord in truth thus": [0, 65535], "lord in truth thus far": [0, 65535], "in truth thus far i": [0, 65535], "truth thus far i witnes": [0, 65535], "thus far i witnes with": [0, 65535], "far i witnes with him": [0, 65535], "i witnes with him that": [0, 65535], "witnes with him that he": [0, 65535], "with him that he din'd": [0, 65535], "him that he din'd not": [0, 65535], "that he din'd not at": [0, 65535], "he din'd not at home": [0, 65535], "din'd not at home but": [0, 65535], "not at home but was": [0, 65535], "at home but was lock'd": [0, 65535], "home but was lock'd out": [0, 65535], "but was lock'd out duke": [0, 65535], "was lock'd out duke but": [0, 65535], "lock'd out duke but had": [0, 65535], "out duke but had he": [0, 65535], "duke but had he such": [0, 65535], "but had he such a": [0, 65535], "had he such a chaine": [0, 65535], "he such a chaine of": [0, 65535], "such a chaine of thee": [0, 65535], "a chaine of thee or": [0, 65535], "chaine of thee or no": [0, 65535], "of thee or no gold": [0, 65535], "thee or no gold he": [0, 65535], "or no gold he had": [0, 65535], "no gold he had my": [0, 65535], "gold he had my lord": [0, 65535], "he had my lord and": [0, 65535], "had my lord and when": [0, 65535], "my lord and when he": [0, 65535], "lord and when he ran": [0, 65535], "and when he ran in": [0, 65535], "when he ran in heere": [0, 65535], "he ran in heere these": [0, 65535], "ran in heere these people": [0, 65535], "in heere these people saw": [0, 65535], "heere these people saw the": [0, 65535], "these people saw the chaine": [0, 65535], "people saw the chaine about": [0, 65535], "saw the chaine about his": [0, 65535], "the chaine about his necke": [0, 65535], "chaine about his necke mar": [0, 65535], "about his necke mar besides": [0, 65535], "his necke mar besides i": [0, 65535], "necke mar besides i will": [0, 65535], "mar besides i will be": [0, 65535], "besides i will be sworne": [0, 65535], "i will be sworne these": [0, 65535], "will be sworne these eares": [0, 65535], "be sworne these eares of": [0, 65535], "sworne these eares of mine": [0, 65535], "these eares of mine heard": [0, 65535], "eares of mine heard you": [0, 65535], "of mine heard you confesse": [0, 65535], "mine heard you confesse you": [0, 65535], "heard you confesse you had": [0, 65535], "you confesse you had the": [0, 65535], "confesse you had the chaine": [0, 65535], "you had the chaine of": [0, 65535], "had the chaine of him": [0, 65535], "the chaine of him after": [0, 65535], "chaine of him after you": [0, 65535], "of him after you first": [0, 65535], "him after you first forswore": [0, 65535], "after you first forswore it": [0, 65535], "you first forswore it on": [0, 65535], "first forswore it on the": [0, 65535], "forswore it on the mart": [0, 65535], "it on the mart and": [0, 65535], "on the mart and thereupon": [0, 65535], "the mart and thereupon i": [0, 65535], "mart and thereupon i drew": [0, 65535], "and thereupon i drew my": [0, 65535], "thereupon i drew my sword": [0, 65535], "i drew my sword on": [0, 65535], "drew my sword on you": [0, 65535], "my sword on you and": [0, 65535], "sword on you and then": [0, 65535], "on you and then you": [0, 65535], "you and then you fled": [0, 65535], "and then you fled into": [0, 65535], "then you fled into this": [0, 65535], "you fled into this abbey": [0, 65535], "fled into this abbey heere": [0, 65535], "into this abbey heere from": [0, 65535], "this abbey heere from whence": [0, 65535], "abbey heere from whence i": [0, 65535], "heere from whence i thinke": [0, 65535], "from whence i thinke you": [0, 65535], "whence i thinke you are": [0, 65535], "i thinke you are come": [0, 65535], "thinke you are come by": [0, 65535], "you are come by miracle": [0, 65535], "are come by miracle e": [0, 65535], "come by miracle e ant": [0, 65535], "by miracle e ant i": [0, 65535], "miracle e ant i neuer": [0, 65535], "e ant i neuer came": [0, 65535], "ant i neuer came within": [0, 65535], "i neuer came within these": [0, 65535], "neuer came within these abbey": [0, 65535], "came within these abbey wals": [0, 65535], "within these abbey wals nor": [0, 65535], "these abbey wals nor euer": [0, 65535], "abbey wals nor euer didst": [0, 65535], "wals nor euer didst thou": [0, 65535], "nor euer didst thou draw": [0, 65535], "euer didst thou draw thy": [0, 65535], "didst thou draw thy sword": [0, 65535], "thou draw thy sword on": [0, 65535], "draw thy sword on me": [0, 65535], "thy sword on me i": [0, 65535], "sword on me i neuer": [0, 65535], "on me i neuer saw": [0, 65535], "me i neuer saw the": [0, 65535], "i neuer saw the chaine": [0, 65535], "neuer saw the chaine so": [0, 65535], "saw the chaine so helpe": [0, 65535], "the chaine so helpe me": [0, 65535], "chaine so helpe me heauen": [0, 65535], "so helpe me heauen and": [0, 65535], "helpe me heauen and this": [0, 65535], "me heauen and this is": [0, 65535], "heauen and this is false": [0, 65535], "and this is false you": [0, 65535], "this is false you burthen": [0, 65535], "is false you burthen me": [0, 65535], "false you burthen me withall": [0, 65535], "you burthen me withall duke": [0, 65535], "burthen me withall duke why": [0, 65535], "me withall duke why what": [0, 65535], "withall duke why what an": [0, 65535], "duke why what an intricate": [0, 65535], "why what an intricate impeach": [0, 65535], "what an intricate impeach is": [0, 65535], "an intricate impeach is this": [0, 65535], "intricate impeach is this i": [0, 65535], "impeach is this i thinke": [0, 65535], "is this i thinke you": [0, 65535], "this i thinke you all": [0, 65535], "i thinke you all haue": [0, 65535], "thinke you all haue drunke": [0, 65535], "you all haue drunke of": [0, 65535], "all haue drunke of circes": [0, 65535], "haue drunke of circes cup": [0, 65535], "drunke of circes cup if": [0, 65535], "of circes cup if heere": [0, 65535], "circes cup if heere you": [0, 65535], "cup if heere you hous'd": [0, 65535], "if heere you hous'd him": [0, 65535], "heere you hous'd him heere": [0, 65535], "you hous'd him heere he": [0, 65535], "hous'd him heere he would": [0, 65535], "him heere he would haue": [0, 65535], "heere he would haue bin": [0, 65535], "he would haue bin if": [0, 65535], "would haue bin if he": [0, 65535], "haue bin if he were": [0, 65535], "bin if he were mad": [0, 65535], "if he were mad he": [0, 65535], "he were mad he would": [0, 65535], "were mad he would not": [0, 65535], "mad he would not pleade": [0, 65535], "he would not pleade so": [0, 65535], "would not pleade so coldly": [0, 65535], "not pleade so coldly you": [0, 65535], "pleade so coldly you say": [0, 65535], "so coldly you say he": [0, 65535], "coldly you say he din'd": [0, 65535], "you say he din'd at": [0, 65535], "say he din'd at home": [0, 65535], "he din'd at home the": [0, 65535], "din'd at home the goldsmith": [0, 65535], "at home the goldsmith heere": [0, 65535], "home the goldsmith heere denies": [0, 65535], "the goldsmith heere denies that": [0, 65535], "goldsmith heere denies that saying": [0, 65535], "heere denies that saying sirra": [0, 65535], "denies that saying sirra what": [0, 65535], "that saying sirra what say": [0, 65535], "saying sirra what say you": [0, 65535], "sirra what say you e": [0, 65535], "what say you e dro": [0, 65535], "say you e dro sir": [0, 65535], "you e dro sir he": [0, 65535], "e dro sir he din'de": [0, 65535], "dro sir he din'de with": [0, 65535], "sir he din'de with her": [0, 65535], "he din'de with her there": [0, 65535], "din'de with her there at": [0, 65535], "with her there at the": [0, 65535], "her there at the porpentine": [0, 65535], "there at the porpentine cur": [0, 65535], "at the porpentine cur he": [0, 65535], "the porpentine cur he did": [0, 65535], "porpentine cur he did and": [0, 65535], "cur he did and from": [0, 65535], "he did and from my": [0, 65535], "did and from my finger": [0, 65535], "and from my finger snacht": [0, 65535], "from my finger snacht that": [0, 65535], "my finger snacht that ring": [0, 65535], "finger snacht that ring e": [0, 65535], "snacht that ring e anti": [0, 65535], "that ring e anti tis": [0, 65535], "ring e anti tis true": [0, 65535], "e anti tis true my": [0, 65535], "anti tis true my liege": [0, 65535], "tis true my liege this": [0, 65535], "true my liege this ring": [0, 65535], "my liege this ring i": [0, 65535], "liege this ring i had": [0, 65535], "this ring i had of": [0, 65535], "ring i had of her": [0, 65535], "i had of her duke": [0, 65535], "had of her duke saw'st": [0, 65535], "of her duke saw'st thou": [0, 65535], "her duke saw'st thou him": [0, 65535], "duke saw'st thou him enter": [0, 65535], "saw'st thou him enter at": [0, 65535], "thou him enter at the": [0, 65535], "him enter at the abbey": [0, 65535], "enter at the abbey heere": [0, 65535], "at the abbey heere curt": [0, 65535], "the abbey heere curt as": [0, 65535], "abbey heere curt as sure": [0, 65535], "heere curt as sure my": [0, 65535], "curt as sure my liege": [0, 65535], "as sure my liege as": [0, 65535], "sure my liege as i": [0, 65535], "my liege as i do": [0, 65535], "liege as i do see": [0, 65535], "as i do see your": [0, 65535], "i do see your grace": [0, 65535], "do see your grace duke": [0, 65535], "see your grace duke why": [0, 65535], "your grace duke why this": [0, 65535], "grace duke why this is": [0, 65535], "duke why this is straunge": [0, 65535], "why this is straunge go": [0, 65535], "this is straunge go call": [0, 65535], "is straunge go call the": [0, 65535], "straunge go call the abbesse": [0, 65535], "go call the abbesse hither": [0, 65535], "call the abbesse hither i": [0, 65535], "the abbesse hither i thinke": [0, 65535], "abbesse hither i thinke you": [0, 65535], "hither i thinke you are": [0, 65535], "i thinke you are all": [0, 65535], "thinke you are all mated": [0, 65535], "you are all mated or": [0, 65535], "are all mated or starke": [0, 65535], "all mated or starke mad": [0, 65535], "mated or starke mad exit": [0, 65535], "or starke mad exit one": [0, 65535], "starke mad exit one to": [0, 65535], "mad exit one to the": [0, 65535], "exit one to the abbesse": [0, 65535], "one to the abbesse fa": [0, 65535], "to the abbesse fa most": [0, 65535], "the abbesse fa most mighty": [0, 65535], "abbesse fa most mighty duke": [0, 65535], "fa most mighty duke vouchsafe": [0, 65535], "most mighty duke vouchsafe me": [0, 65535], "mighty duke vouchsafe me speak": [0, 65535], "duke vouchsafe me speak a": [0, 65535], "vouchsafe me speak a word": [0, 65535], "me speak a word haply": [0, 65535], "speak a word haply i": [0, 65535], "a word haply i see": [0, 65535], "word haply i see a": [0, 65535], "haply i see a friend": [0, 65535], "i see a friend will": [0, 65535], "see a friend will saue": [0, 65535], "a friend will saue my": [0, 65535], "friend will saue my life": [0, 65535], "will saue my life and": [0, 65535], "saue my life and pay": [0, 65535], "my life and pay the": [0, 65535], "life and pay the sum": [0, 65535], "and pay the sum that": [0, 65535], "pay the sum that may": [0, 65535], "the sum that may deliuer": [0, 65535], "sum that may deliuer me": [0, 65535], "that may deliuer me duke": [0, 65535], "may deliuer me duke speake": [0, 65535], "deliuer me duke speake freely": [0, 65535], "me duke speake freely siracusian": [0, 65535], "duke speake freely siracusian what": [0, 65535], "speake freely siracusian what thou": [0, 65535], "freely siracusian what thou wilt": [0, 65535], "siracusian what thou wilt fath": [0, 65535], "what thou wilt fath is": [0, 65535], "thou wilt fath is not": [0, 65535], "wilt fath is not your": [0, 65535], "fath is not your name": [0, 65535], "is not your name sir": [0, 65535], "not your name sir call'd": [0, 65535], "your name sir call'd antipholus": [0, 65535], "name sir call'd antipholus and": [0, 65535], "sir call'd antipholus and is": [0, 65535], "call'd antipholus and is not": [0, 65535], "antipholus and is not that": [0, 65535], "and is not that your": [0, 65535], "is not that your bondman": [0, 65535], "not that your bondman dromio": [0, 65535], "that your bondman dromio e": [0, 65535], "your bondman dromio e dro": [0, 65535], "bondman dromio e dro within": [0, 65535], "dromio e dro within this": [0, 65535], "e dro within this houre": [0, 65535], "dro within this houre i": [0, 65535], "within this houre i was": [0, 65535], "this houre i was his": [0, 65535], "houre i was his bondman": [0, 65535], "i was his bondman sir": [0, 65535], "was his bondman sir but": [0, 65535], "his bondman sir but he": [0, 65535], "bondman sir but he i": [0, 65535], "sir but he i thanke": [0, 65535], "but he i thanke him": [0, 65535], "he i thanke him gnaw'd": [0, 65535], "i thanke him gnaw'd in": [0, 65535], "thanke him gnaw'd in two": [0, 65535], "him gnaw'd in two my": [0, 65535], "gnaw'd in two my cords": [0, 65535], "in two my cords now": [0, 65535], "two my cords now am": [0, 65535], "my cords now am i": [0, 65535], "cords now am i dromio": [0, 65535], "now am i dromio and": [0, 65535], "am i dromio and his": [0, 65535], "i dromio and his man": [0, 65535], "dromio and his man vnbound": [0, 65535], "and his man vnbound fath": [0, 65535], "his man vnbound fath i": [0, 65535], "man vnbound fath i am": [0, 65535], "vnbound fath i am sure": [0, 65535], "fath i am sure you": [0, 65535], "i am sure you both": [0, 65535], "am sure you both of": [0, 65535], "sure you both of you": [0, 65535], "you both of you remember": [0, 65535], "both of you remember me": [0, 65535], "of you remember me dro": [0, 65535], "you remember me dro our": [0, 65535], "remember me dro our selues": [0, 65535], "me dro our selues we": [0, 65535], "dro our selues we do": [0, 65535], "our selues we do remember": [0, 65535], "selues we do remember sir": [0, 65535], "we do remember sir by": [0, 65535], "do remember sir by you": [0, 65535], "remember sir by you for": [0, 65535], "sir by you for lately": [0, 65535], "by you for lately we": [0, 65535], "you for lately we were": [0, 65535], "for lately we were bound": [0, 65535], "lately we were bound as": [0, 65535], "we were bound as you": [0, 65535], "were bound as you are": [0, 65535], "bound as you are now": [0, 65535], "as you are now you": [0, 65535], "you are now you are": [0, 65535], "are now you are not": [0, 65535], "now you are not pinches": [0, 65535], "you are not pinches patient": [0, 65535], "are not pinches patient are": [0, 65535], "not pinches patient are you": [0, 65535], "pinches patient are you sir": [0, 65535], "patient are you sir father": [0, 65535], "are you sir father why": [0, 65535], "you sir father why looke": [0, 65535], "sir father why looke you": [0, 65535], "father why looke you strange": [0, 65535], "why looke you strange on": [0, 65535], "looke you strange on me": [0, 65535], "you strange on me you": [0, 65535], "strange on me you know": [0, 65535], "on me you know me": [0, 65535], "me you know me well": [0, 65535], "you know me well e": [0, 65535], "know me well e ant": [0, 65535], "me well e ant i": [0, 65535], "well e ant i neuer": [0, 65535], "e ant i neuer saw": [0, 65535], "ant i neuer saw you": [0, 65535], "i neuer saw you in": [0, 65535], "neuer saw you in my": [0, 65535], "saw you in my life": [0, 65535], "you in my life till": [0, 65535], "in my life till now": [0, 65535], "my life till now fa": [0, 65535], "life till now fa oh": [0, 65535], "till now fa oh griefe": [0, 65535], "now fa oh griefe hath": [0, 65535], "fa oh griefe hath chang'd": [0, 65535], "oh griefe hath chang'd me": [0, 65535], "griefe hath chang'd me since": [0, 65535], "hath chang'd me since you": [0, 65535], "chang'd me since you saw": [0, 65535], "me since you saw me": [0, 65535], "since you saw me last": [0, 65535], "you saw me last and": [0, 65535], "saw me last and carefull": [0, 65535], "me last and carefull houres": [0, 65535], "last and carefull houres with": [0, 65535], "and carefull houres with times": [0, 65535], "carefull houres with times deformed": [0, 65535], "houres with times deformed hand": [0, 65535], "with times deformed hand haue": [0, 65535], "times deformed hand haue written": [0, 65535], "deformed hand haue written strange": [0, 65535], "hand haue written strange defeatures": [0, 65535], "haue written strange defeatures in": [0, 65535], "written strange defeatures in my": [0, 65535], "strange defeatures in my face": [0, 65535], "defeatures in my face but": [0, 65535], "in my face but tell": [0, 65535], "my face but tell me": [0, 65535], "face but tell me yet": [0, 65535], "but tell me yet dost": [0, 65535], "tell me yet dost thou": [0, 65535], "me yet dost thou not": [0, 65535], "yet dost thou not know": [0, 65535], "dost thou not know my": [0, 65535], "thou not know my voice": [0, 65535], "not know my voice ant": [0, 65535], "know my voice ant neither": [0, 65535], "my voice ant neither fat": [0, 65535], "voice ant neither fat dromio": [0, 65535], "ant neither fat dromio nor": [0, 65535], "neither fat dromio nor thou": [0, 65535], "fat dromio nor thou dro": [0, 65535], "dromio nor thou dro no": [0, 65535], "nor thou dro no trust": [0, 65535], "thou dro no trust me": [0, 65535], "dro no trust me sir": [0, 65535], "no trust me sir nor": [0, 65535], "trust me sir nor i": [0, 65535], "me sir nor i fa": [0, 65535], "sir nor i fa i": [0, 65535], "nor i fa i am": [0, 65535], "i fa i am sure": [0, 65535], "fa i am sure thou": [0, 65535], "i am sure thou dost": [0, 65535], "am sure thou dost e": [0, 65535], "sure thou dost e dromio": [0, 65535], "thou dost e dromio i": [0, 65535], "dost e dromio i sir": [0, 65535], "e dromio i sir but": [0, 65535], "dromio i sir but i": [0, 65535], "i sir but i am": [0, 65535], "sir but i am sure": [0, 65535], "but i am sure i": [0, 65535], "i am sure i do": [0, 65535], "am sure i do not": [0, 65535], "sure i do not and": [0, 65535], "i do not and whatsoeuer": [0, 65535], "do not and whatsoeuer a": [0, 65535], "not and whatsoeuer a man": [0, 65535], "and whatsoeuer a man denies": [0, 65535], "whatsoeuer a man denies you": [0, 65535], "a man denies you are": [0, 65535], "man denies you are now": [0, 65535], "denies you are now bound": [0, 65535], "you are now bound to": [0, 65535], "are now bound to beleeue": [0, 65535], "now bound to beleeue him": [0, 65535], "bound to beleeue him fath": [0, 65535], "to beleeue him fath not": [0, 65535], "beleeue him fath not know": [0, 65535], "him fath not know my": [0, 65535], "fath not know my voice": [0, 65535], "not know my voice oh": [0, 65535], "know my voice oh times": [0, 65535], "my voice oh times extremity": [0, 65535], "voice oh times extremity hast": [0, 65535], "oh times extremity hast thou": [0, 65535], "times extremity hast thou so": [0, 65535], "extremity hast thou so crack'd": [0, 65535], "hast thou so crack'd and": [0, 65535], "thou so crack'd and splitted": [0, 65535], "so crack'd and splitted my": [0, 65535], "crack'd and splitted my poore": [0, 65535], "and splitted my poore tongue": [0, 65535], "splitted my poore tongue in": [0, 65535], "my poore tongue in seuen": [0, 65535], "poore tongue in seuen short": [0, 65535], "tongue in seuen short yeares": [0, 65535], "in seuen short yeares that": [0, 65535], "seuen short yeares that heere": [0, 65535], "short yeares that heere my": [0, 65535], "yeares that heere my onely": [0, 65535], "that heere my onely sonne": [0, 65535], "heere my onely sonne knowes": [0, 65535], "my onely sonne knowes not": [0, 65535], "onely sonne knowes not my": [0, 65535], "sonne knowes not my feeble": [0, 65535], "knowes not my feeble key": [0, 65535], "not my feeble key of": [0, 65535], "my feeble key of vntun'd": [0, 65535], "feeble key of vntun'd cares": [0, 65535], "key of vntun'd cares though": [0, 65535], "of vntun'd cares though now": [0, 65535], "vntun'd cares though now this": [0, 65535], "cares though now this grained": [0, 65535], "though now this grained face": [0, 65535], "now this grained face of": [0, 65535], "this grained face of mine": [0, 65535], "grained face of mine be": [0, 65535], "face of mine be hid": [0, 65535], "of mine be hid in": [0, 65535], "mine be hid in sap": [0, 65535], "be hid in sap consuming": [0, 65535], "hid in sap consuming winters": [0, 65535], "in sap consuming winters drizled": [0, 65535], "sap consuming winters drizled snow": [0, 65535], "consuming winters drizled snow and": [0, 65535], "winters drizled snow and all": [0, 65535], "drizled snow and all the": [0, 65535], "snow and all the conduits": [0, 65535], "and all the conduits of": [0, 65535], "all the conduits of my": [0, 65535], "the conduits of my blood": [0, 65535], "conduits of my blood froze": [0, 65535], "of my blood froze vp": [0, 65535], "my blood froze vp yet": [0, 65535], "blood froze vp yet hath": [0, 65535], "froze vp yet hath my": [0, 65535], "vp yet hath my night": [0, 65535], "yet hath my night of": [0, 65535], "hath my night of life": [0, 65535], "my night of life some": [0, 65535], "night of life some memorie": [0, 65535], "of life some memorie my": [0, 65535], "life some memorie my wasting": [0, 65535], "some memorie my wasting lampes": [0, 65535], "memorie my wasting lampes some": [0, 65535], "my wasting lampes some fading": [0, 65535], "wasting lampes some fading glimmer": [0, 65535], "lampes some fading glimmer left": [0, 65535], "some fading glimmer left my": [0, 65535], "fading glimmer left my dull": [0, 65535], "glimmer left my dull deafe": [0, 65535], "left my dull deafe eares": [0, 65535], "my dull deafe eares a": [0, 65535], "dull deafe eares a little": [0, 65535], "deafe eares a little vse": [0, 65535], "eares a little vse to": [0, 65535], "a little vse to heare": [0, 65535], "little vse to heare all": [0, 65535], "vse to heare all these": [0, 65535], "to heare all these old": [0, 65535], "heare all these old witnesses": [0, 65535], "all these old witnesses i": [0, 65535], "these old witnesses i cannot": [0, 65535], "old witnesses i cannot erre": [0, 65535], "witnesses i cannot erre tell": [0, 65535], "i cannot erre tell me": [0, 65535], "cannot erre tell me thou": [0, 65535], "erre tell me thou art": [0, 65535], "tell me thou art my": [0, 65535], "me thou art my sonne": [0, 65535], "thou art my sonne antipholus": [0, 65535], "art my sonne antipholus ant": [0, 65535], "my sonne antipholus ant i": [0, 65535], "sonne antipholus ant i neuer": [0, 65535], "antipholus ant i neuer saw": [0, 65535], "ant i neuer saw my": [0, 65535], "i neuer saw my father": [0, 65535], "neuer saw my father in": [0, 65535], "saw my father in my": [0, 65535], "my father in my life": [0, 65535], "father in my life fa": [0, 65535], "in my life fa but": [0, 65535], "my life fa but seuen": [0, 65535], "life fa but seuen yeares": [0, 65535], "fa but seuen yeares since": [0, 65535], "but seuen yeares since in": [0, 65535], "seuen yeares since in siracusa": [0, 65535], "yeares since in siracusa boy": [0, 65535], "since in siracusa boy thou": [0, 65535], "in siracusa boy thou know'st": [0, 65535], "siracusa boy thou know'st we": [0, 65535], "boy thou know'st we parted": [0, 65535], "thou know'st we parted but": [0, 65535], "know'st we parted but perhaps": [0, 65535], "we parted but perhaps my": [0, 65535], "parted but perhaps my sonne": [0, 65535], "but perhaps my sonne thou": [0, 65535], "perhaps my sonne thou sham'st": [0, 65535], "my sonne thou sham'st to": [0, 65535], "sonne thou sham'st to acknowledge": [0, 65535], "thou sham'st to acknowledge me": [0, 65535], "sham'st to acknowledge me in": [0, 65535], "to acknowledge me in miserie": [0, 65535], "acknowledge me in miserie ant": [0, 65535], "me in miserie ant the": [0, 65535], "in miserie ant the duke": [0, 65535], "miserie ant the duke and": [0, 65535], "ant the duke and all": [0, 65535], "the duke and all that": [0, 65535], "duke and all that know": [0, 65535], "and all that know me": [0, 65535], "all that know me in": [0, 65535], "that know me in the": [0, 65535], "know me in the city": [0, 65535], "me in the city can": [0, 65535], "in the city can witnesse": [0, 65535], "the city can witnesse with": [0, 65535], "city can witnesse with me": [0, 65535], "can witnesse with me that": [0, 65535], "witnesse with me that it": [0, 65535], "with me that it is": [0, 65535], "me that it is not": [0, 65535], "that it is not so": [0, 65535], "it is not so i": [0, 65535], "is not so i ne're": [0, 65535], "not so i ne're saw": [0, 65535], "so i ne're saw siracusa": [0, 65535], "i ne're saw siracusa in": [0, 65535], "ne're saw siracusa in my": [0, 65535], "saw siracusa in my life": [0, 65535], "siracusa in my life duke": [0, 65535], "in my life duke i": [0, 65535], "my life duke i tell": [0, 65535], "life duke i tell thee": [0, 65535], "duke i tell thee siracusian": [0, 65535], "i tell thee siracusian twentie": [0, 65535], "tell thee siracusian twentie yeares": [0, 65535], "thee siracusian twentie yeares haue": [0, 65535], "siracusian twentie yeares haue i": [0, 65535], "twentie yeares haue i bin": [0, 65535], "yeares haue i bin patron": [0, 65535], "haue i bin patron to": [0, 65535], "i bin patron to antipholus": [0, 65535], "bin patron to antipholus during": [0, 65535], "patron to antipholus during which": [0, 65535], "to antipholus during which time": [0, 65535], "antipholus during which time he": [0, 65535], "during which time he ne're": [0, 65535], "which time he ne're saw": [0, 65535], "time he ne're saw siracusa": [0, 65535], "he ne're saw siracusa i": [0, 65535], "ne're saw siracusa i see": [0, 65535], "saw siracusa i see thy": [0, 65535], "siracusa i see thy age": [0, 65535], "i see thy age and": [0, 65535], "see thy age and dangers": [0, 65535], "thy age and dangers make": [0, 65535], "age and dangers make thee": [0, 65535], "and dangers make thee dote": [0, 65535], "dangers make thee dote enter": [0, 65535], "make thee dote enter the": [0, 65535], "thee dote enter the abbesse": [0, 65535], "dote enter the abbesse with": [0, 65535], "enter the abbesse with antipholus": [0, 65535], "the abbesse with antipholus siracusa": [0, 65535], "abbesse with antipholus siracusa and": [0, 65535], "with antipholus siracusa and dromio": [0, 65535], "antipholus siracusa and dromio sir": [0, 65535], "siracusa and dromio sir abbesse": [0, 65535], "and dromio sir abbesse most": [0, 65535], "dromio sir abbesse most mightie": [0, 65535], "sir abbesse most mightie duke": [0, 65535], "abbesse most mightie duke behold": [0, 65535], "most mightie duke behold a": [0, 65535], "mightie duke behold a man": [0, 65535], "duke behold a man much": [0, 65535], "behold a man much wrong'd": [0, 65535], "a man much wrong'd all": [0, 65535], "man much wrong'd all gather": [0, 65535], "much wrong'd all gather to": [0, 65535], "wrong'd all gather to see": [0, 65535], "all gather to see them": [0, 65535], "gather to see them adr": [0, 65535], "to see them adr i": [0, 65535], "see them adr i see": [0, 65535], "them adr i see two": [0, 65535], "adr i see two husbands": [0, 65535], "i see two husbands or": [0, 65535], "see two husbands or mine": [0, 65535], "two husbands or mine eyes": [0, 65535], "husbands or mine eyes deceiue": [0, 65535], "or mine eyes deceiue me": [0, 65535], "mine eyes deceiue me duke": [0, 65535], "eyes deceiue me duke one": [0, 65535], "deceiue me duke one of": [0, 65535], "me duke one of these": [0, 65535], "duke one of these men": [0, 65535], "one of these men is": [0, 65535], "of these men is genius": [0, 65535], "these men is genius to": [0, 65535], "men is genius to the": [0, 65535], "is genius to the other": [0, 65535], "genius to the other and": [0, 65535], "to the other and so": [0, 65535], "the other and so of": [0, 65535], "other and so of these": [0, 65535], "and so of these which": [0, 65535], "so of these which is": [0, 65535], "of these which is the": [0, 65535], "these which is the naturall": [0, 65535], "which is the naturall man": [0, 65535], "is the naturall man and": [0, 65535], "the naturall man and which": [0, 65535], "naturall man and which the": [0, 65535], "man and which the spirit": [0, 65535], "and which the spirit who": [0, 65535], "which the spirit who deciphers": [0, 65535], "the spirit who deciphers them": [0, 65535], "spirit who deciphers them s": [0, 65535], "who deciphers them s dromio": [0, 65535], "deciphers them s dromio i": [0, 65535], "them s dromio i sir": [0, 65535], "s dromio i sir am": [0, 65535], "dromio i sir am dromio": [0, 65535], "i sir am dromio command": [0, 65535], "sir am dromio command him": [0, 65535], "am dromio command him away": [0, 65535], "dromio command him away e": [0, 65535], "command him away e dro": [0, 65535], "him away e dro i": [0, 65535], "away e dro i sir": [0, 65535], "e dro i sir am": [0, 65535], "dro i sir am dromio": [0, 65535], "i sir am dromio pray": [0, 65535], "sir am dromio pray let": [0, 65535], "am dromio pray let me": [0, 65535], "dromio pray let me stay": [0, 65535], "pray let me stay s": [0, 65535], "let me stay s ant": [0, 65535], "me stay s ant egeon": [0, 65535], "stay s ant egeon art": [0, 65535], "s ant egeon art thou": [0, 65535], "ant egeon art thou not": [0, 65535], "egeon art thou not or": [0, 65535], "art thou not or else": [0, 65535], "thou not or else his": [0, 65535], "not or else his ghost": [0, 65535], "or else his ghost s": [0, 65535], "else his ghost s drom": [0, 65535], "his ghost s drom oh": [0, 65535], "ghost s drom oh my": [0, 65535], "s drom oh my olde": [0, 65535], "drom oh my olde master": [0, 65535], "oh my olde master who": [0, 65535], "my olde master who hath": [0, 65535], "olde master who hath bound": [0, 65535], "master who hath bound him": [0, 65535], "who hath bound him heere": [0, 65535], "hath bound him heere abb": [0, 65535], "bound him heere abb who": [0, 65535], "him heere abb who euer": [0, 65535], "heere abb who euer bound": [0, 65535], "abb who euer bound him": [0, 65535], "who euer bound him i": [0, 65535], "euer bound him i will": [0, 65535], "bound him i will lose": [0, 65535], "him i will lose his": [0, 65535], "i will lose his bonds": [0, 65535], "will lose his bonds and": [0, 65535], "lose his bonds and gaine": [0, 65535], "his bonds and gaine a": [0, 65535], "bonds and gaine a husband": [0, 65535], "and gaine a husband by": [0, 65535], "gaine a husband by his": [0, 65535], "a husband by his libertie": [0, 65535], "husband by his libertie speake": [0, 65535], "by his libertie speake olde": [0, 65535], "his libertie speake olde egeon": [0, 65535], "libertie speake olde egeon if": [0, 65535], "speake olde egeon if thou": [0, 65535], "olde egeon if thou bee'st": [0, 65535], "egeon if thou bee'st the": [0, 65535], "if thou bee'st the man": [0, 65535], "thou bee'st the man that": [0, 65535], "bee'st the man that hadst": [0, 65535], "the man that hadst a": [0, 65535], "man that hadst a wife": [0, 65535], "that hadst a wife once": [0, 65535], "hadst a wife once call'd": [0, 65535], "a wife once call'd \u00e6milia": [0, 65535], "wife once call'd \u00e6milia that": [0, 65535], "once call'd \u00e6milia that bore": [0, 65535], "call'd \u00e6milia that bore thee": [0, 65535], "\u00e6milia that bore thee at": [0, 65535], "that bore thee at a": [0, 65535], "bore thee at a burthen": [0, 65535], "thee at a burthen two": [0, 65535], "at a burthen two faire": [0, 65535], "a burthen two faire sonnes": [0, 65535], "burthen two faire sonnes oh": [0, 65535], "two faire sonnes oh if": [0, 65535], "faire sonnes oh if thou": [0, 65535], "sonnes oh if thou bee'st": [0, 65535], "oh if thou bee'st the": [0, 65535], "if thou bee'st the same": [0, 65535], "thou bee'st the same egeon": [0, 65535], "bee'st the same egeon speake": [0, 65535], "the same egeon speake and": [0, 65535], "same egeon speake and speake": [0, 65535], "egeon speake and speake vnto": [0, 65535], "speake and speake vnto the": [0, 65535], "and speake vnto the same": [0, 65535], "speake vnto the same \u00e6milia": [0, 65535], "vnto the same \u00e6milia duke": [0, 65535], "the same \u00e6milia duke why": [0, 65535], "same \u00e6milia duke why heere": [0, 65535], "\u00e6milia duke why heere begins": [0, 65535], "duke why heere begins his": [0, 65535], "why heere begins his morning": [0, 65535], "heere begins his morning storie": [0, 65535], "begins his morning storie right": [0, 65535], "his morning storie right these": [0, 65535], "morning storie right these twoantipholus": [0, 65535], "storie right these twoantipholus these": [0, 65535], "right these twoantipholus these two": [0, 65535], "these twoantipholus these two so": [0, 65535], "twoantipholus these two so like": [0, 65535], "these two so like and": [0, 65535], "two so like and these": [0, 65535], "so like and these two": [0, 65535], "like and these two dromio's": [0, 65535], "and these two dromio's one": [0, 65535], "these two dromio's one in": [0, 65535], "two dromio's one in semblance": [0, 65535], "dromio's one in semblance besides": [0, 65535], "one in semblance besides her": [0, 65535], "in semblance besides her vrging": [0, 65535], "semblance besides her vrging of": [0, 65535], "besides her vrging of her": [0, 65535], "her vrging of her wracke": [0, 65535], "vrging of her wracke at": [0, 65535], "of her wracke at sea": [0, 65535], "her wracke at sea these": [0, 65535], "wracke at sea these are": [0, 65535], "at sea these are the": [0, 65535], "sea these are the parents": [0, 65535], "these are the parents to": [0, 65535], "are the parents to these": [0, 65535], "the parents to these children": [0, 65535], "parents to these children which": [0, 65535], "to these children which accidentally": [0, 65535], "these children which accidentally are": [0, 65535], "children which accidentally are met": [0, 65535], "which accidentally are met together": [0, 65535], "accidentally are met together fa": [0, 65535], "are met together fa if": [0, 65535], "met together fa if i": [0, 65535], "together fa if i dreame": [0, 65535], "fa if i dreame not": [0, 65535], "if i dreame not thou": [0, 65535], "i dreame not thou art": [0, 65535], "dreame not thou art \u00e6milia": [0, 65535], "not thou art \u00e6milia if": [0, 65535], "thou art \u00e6milia if thou": [0, 65535], "art \u00e6milia if thou art": [0, 65535], "\u00e6milia if thou art she": [0, 65535], "if thou art she tell": [0, 65535], "thou art she tell me": [0, 65535], "art she tell me where": [0, 65535], "she tell me where is": [0, 65535], "tell me where is that": [0, 65535], "me where is that sonne": [0, 65535], "where is that sonne that": [0, 65535], "is that sonne that floated": [0, 65535], "that sonne that floated with": [0, 65535], "sonne that floated with thee": [0, 65535], "that floated with thee on": [0, 65535], "floated with thee on the": [0, 65535], "with thee on the fatall": [0, 65535], "thee on the fatall rafte": [0, 65535], "on the fatall rafte abb": [0, 65535], "the fatall rafte abb by": [0, 65535], "fatall rafte abb by men": [0, 65535], "rafte abb by men of": [0, 65535], "abb by men of epidamium": [0, 65535], "by men of epidamium he": [0, 65535], "men of epidamium he and": [0, 65535], "of epidamium he and i": [0, 65535], "epidamium he and i and": [0, 65535], "he and i and the": [0, 65535], "and i and the twin": [0, 65535], "i and the twin dromio": [0, 65535], "and the twin dromio all": [0, 65535], "the twin dromio all were": [0, 65535], "twin dromio all were taken": [0, 65535], "dromio all were taken vp": [0, 65535], "all were taken vp but": [0, 65535], "were taken vp but by": [0, 65535], "taken vp but by and": [0, 65535], "vp but by and by": [0, 65535], "but by and by rude": [0, 65535], "by and by rude fishermen": [0, 65535], "and by rude fishermen of": [0, 65535], "by rude fishermen of corinth": [0, 65535], "rude fishermen of corinth by": [0, 65535], "fishermen of corinth by force": [0, 65535], "of corinth by force tooke": [0, 65535], "corinth by force tooke dromio": [0, 65535], "by force tooke dromio and": [0, 65535], "force tooke dromio and my": [0, 65535], "tooke dromio and my sonne": [0, 65535], "dromio and my sonne from": [0, 65535], "and my sonne from them": [0, 65535], "my sonne from them and": [0, 65535], "sonne from them and me": [0, 65535], "from them and me they": [0, 65535], "them and me they left": [0, 65535], "and me they left with": [0, 65535], "me they left with those": [0, 65535], "they left with those of": [0, 65535], "left with those of epidamium": [0, 65535], "with those of epidamium what": [0, 65535], "those of epidamium what then": [0, 65535], "of epidamium what then became": [0, 65535], "epidamium what then became of": [0, 65535], "what then became of them": [0, 65535], "then became of them i": [0, 65535], "became of them i cannot": [0, 65535], "of them i cannot tell": [0, 65535], "them i cannot tell i": [0, 65535], "i cannot tell i to": [0, 65535], "cannot tell i to this": [0, 65535], "tell i to this fortune": [0, 65535], "i to this fortune that": [0, 65535], "to this fortune that you": [0, 65535], "this fortune that you see": [0, 65535], "fortune that you see mee": [0, 65535], "that you see mee in": [0, 65535], "you see mee in duke": [0, 65535], "see mee in duke antipholus": [0, 65535], "mee in duke antipholus thou": [0, 65535], "in duke antipholus thou cam'st": [0, 65535], "duke antipholus thou cam'st from": [0, 65535], "antipholus thou cam'st from corinth": [0, 65535], "thou cam'st from corinth first": [0, 65535], "cam'st from corinth first s": [0, 65535], "from corinth first s ant": [0, 65535], "corinth first s ant no": [0, 65535], "first s ant no sir": [0, 65535], "s ant no sir not": [0, 65535], "ant no sir not i": [0, 65535], "no sir not i i": [0, 65535], "sir not i i came": [0, 65535], "not i i came from": [0, 65535], "i i came from siracuse": [0, 65535], "i came from siracuse duke": [0, 65535], "came from siracuse duke stay": [0, 65535], "from siracuse duke stay stand": [0, 65535], "siracuse duke stay stand apart": [0, 65535], "duke stay stand apart i": [0, 65535], "stay stand apart i know": [0, 65535], "stand apart i know not": [0, 65535], "apart i know not which": [0, 65535], "i know not which is": [0, 65535], "know not which is which": [0, 65535], "not which is which e": [0, 65535], "which is which e ant": [0, 65535], "is which e ant i": [0, 65535], "which e ant i came": [0, 65535], "e ant i came from": [0, 65535], "ant i came from corinth": [0, 65535], "i came from corinth my": [0, 65535], "came from corinth my most": [0, 65535], "from corinth my most gracious": [0, 65535], "corinth my most gracious lord": [0, 65535], "my most gracious lord e": [0, 65535], "most gracious lord e dro": [0, 65535], "gracious lord e dro and": [0, 65535], "lord e dro and i": [0, 65535], "e dro and i with": [0, 65535], "dro and i with him": [0, 65535], "and i with him e": [0, 65535], "i with him e ant": [0, 65535], "with him e ant brought": [0, 65535], "him e ant brought to": [0, 65535], "e ant brought to this": [0, 65535], "ant brought to this town": [0, 65535], "brought to this town by": [0, 65535], "to this town by that": [0, 65535], "this town by that most": [0, 65535], "town by that most famous": [0, 65535], "by that most famous warriour": [0, 65535], "that most famous warriour duke": [0, 65535], "most famous warriour duke menaphon": [0, 65535], "famous warriour duke menaphon your": [0, 65535], "warriour duke menaphon your most": [0, 65535], "duke menaphon your most renowned": [0, 65535], "menaphon your most renowned vnckle": [0, 65535], "your most renowned vnckle adr": [0, 65535], "most renowned vnckle adr which": [0, 65535], "renowned vnckle adr which of": [0, 65535], "vnckle adr which of you": [0, 65535], "adr which of you two": [0, 65535], "which of you two did": [0, 65535], "of you two did dine": [0, 65535], "you two did dine with": [0, 65535], "two did dine with me": [0, 65535], "did dine with me to": [0, 65535], "dine with me to day": [0, 65535], "with me to day s": [0, 65535], "me to day s ant": [0, 65535], "to day s ant i": [0, 65535], "day s ant i gentle": [0, 65535], "s ant i gentle mistris": [0, 65535], "ant i gentle mistris adr": [0, 65535], "i gentle mistris adr and": [0, 65535], "gentle mistris adr and are": [0, 65535], "mistris adr and are not": [0, 65535], "adr and are not you": [0, 65535], "and are not you my": [0, 65535], "are not you my husband": [0, 65535], "not you my husband e": [0, 65535], "you my husband e ant": [0, 65535], "my husband e ant no": [0, 65535], "husband e ant no i": [0, 65535], "e ant no i say": [0, 65535], "ant no i say nay": [0, 65535], "no i say nay to": [0, 65535], "i say nay to that": [0, 65535], "say nay to that s": [0, 65535], "nay to that s ant": [0, 65535], "to that s ant and": [0, 65535], "that s ant and so": [0, 65535], "s ant and so do": [0, 65535], "ant and so do i": [0, 65535], "and so do i yet": [0, 65535], "so do i yet did": [0, 65535], "do i yet did she": [0, 65535], "i yet did she call": [0, 65535], "yet did she call me": [0, 65535], "did she call me so": [0, 65535], "she call me so and": [0, 65535], "call me so and this": [0, 65535], "me so and this faire": [0, 65535], "so and this faire gentlewoman": [0, 65535], "and this faire gentlewoman her": [0, 65535], "this faire gentlewoman her sister": [0, 65535], "faire gentlewoman her sister heere": [0, 65535], "gentlewoman her sister heere did": [0, 65535], "her sister heere did call": [0, 65535], "sister heere did call me": [0, 65535], "heere did call me brother": [0, 65535], "did call me brother what": [0, 65535], "call me brother what i": [0, 65535], "me brother what i told": [0, 65535], "brother what i told you": [0, 65535], "what i told you then": [0, 65535], "i told you then i": [0, 65535], "told you then i hope": [0, 65535], "you then i hope i": [0, 65535], "then i hope i shall": [0, 65535], "i hope i shall haue": [0, 65535], "hope i shall haue leisure": [0, 65535], "i shall haue leisure to": [0, 65535], "shall haue leisure to make": [0, 65535], "haue leisure to make good": [0, 65535], "leisure to make good if": [0, 65535], "to make good if this": [0, 65535], "make good if this be": [0, 65535], "good if this be not": [0, 65535], "if this be not a": [0, 65535], "this be not a dreame": [0, 65535], "be not a dreame i": [0, 65535], "not a dreame i see": [0, 65535], "a dreame i see and": [0, 65535], "dreame i see and heare": [0, 65535], "i see and heare goldsmith": [0, 65535], "see and heare goldsmith that": [0, 65535], "and heare goldsmith that is": [0, 65535], "heare goldsmith that is the": [0, 65535], "goldsmith that is the chaine": [0, 65535], "that is the chaine sir": [0, 65535], "is the chaine sir which": [0, 65535], "the chaine sir which you": [0, 65535], "chaine sir which you had": [0, 65535], "sir which you had of": [0, 65535], "which you had of mee": [0, 65535], "you had of mee s": [0, 65535], "had of mee s ant": [0, 65535], "of mee s ant i": [0, 65535], "mee s ant i thinke": [0, 65535], "s ant i thinke it": [0, 65535], "ant i thinke it be": [0, 65535], "i thinke it be sir": [0, 65535], "thinke it be sir i": [0, 65535], "it be sir i denie": [0, 65535], "be sir i denie it": [0, 65535], "sir i denie it not": [0, 65535], "i denie it not e": [0, 65535], "denie it not e ant": [0, 65535], "it not e ant and": [0, 65535], "not e ant and you": [0, 65535], "e ant and you sir": [0, 65535], "ant and you sir for": [0, 65535], "and you sir for this": [0, 65535], "you sir for this chaine": [0, 65535], "sir for this chaine arrested": [0, 65535], "for this chaine arrested me": [0, 65535], "this chaine arrested me gold": [0, 65535], "chaine arrested me gold i": [0, 65535], "arrested me gold i thinke": [0, 65535], "me gold i thinke i": [0, 65535], "gold i thinke i did": [0, 65535], "i thinke i did sir": [0, 65535], "thinke i did sir i": [0, 65535], "i did sir i deny": [0, 65535], "did sir i deny it": [0, 65535], "sir i deny it not": [0, 65535], "i deny it not adr": [0, 65535], "deny it not adr i": [0, 65535], "it not adr i sent": [0, 65535], "not adr i sent you": [0, 65535], "adr i sent you monie": [0, 65535], "i sent you monie sir": [0, 65535], "sent you monie sir to": [0, 65535], "you monie sir to be": [0, 65535], "monie sir to be your": [0, 65535], "sir to be your baile": [0, 65535], "to be your baile by": [0, 65535], "be your baile by dromio": [0, 65535], "your baile by dromio but": [0, 65535], "baile by dromio but i": [0, 65535], "by dromio but i thinke": [0, 65535], "dromio but i thinke he": [0, 65535], "but i thinke he brought": [0, 65535], "i thinke he brought it": [0, 65535], "thinke he brought it not": [0, 65535], "he brought it not e": [0, 65535], "brought it not e dro": [0, 65535], "it not e dro no": [0, 65535], "not e dro no none": [0, 65535], "e dro no none by": [0, 65535], "dro no none by me": [0, 65535], "no none by me s": [0, 65535], "none by me s ant": [0, 65535], "by me s ant this": [0, 65535], "me s ant this purse": [0, 65535], "s ant this purse of": [0, 65535], "ant this purse of duckets": [0, 65535], "this purse of duckets i": [0, 65535], "purse of duckets i receiu'd": [0, 65535], "of duckets i receiu'd from": [0, 65535], "duckets i receiu'd from you": [0, 65535], "i receiu'd from you and": [0, 65535], "receiu'd from you and dromio": [0, 65535], "from you and dromio my": [0, 65535], "you and dromio my man": [0, 65535], "and dromio my man did": [0, 65535], "dromio my man did bring": [0, 65535], "my man did bring them": [0, 65535], "man did bring them me": [0, 65535], "did bring them me i": [0, 65535], "bring them me i see": [0, 65535], "them me i see we": [0, 65535], "me i see we still": [0, 65535], "i see we still did": [0, 65535], "see we still did meete": [0, 65535], "we still did meete each": [0, 65535], "still did meete each others": [0, 65535], "did meete each others man": [0, 65535], "meete each others man and": [0, 65535], "each others man and i": [0, 65535], "others man and i was": [0, 65535], "man and i was tane": [0, 65535], "and i was tane for": [0, 65535], "i was tane for him": [0, 65535], "was tane for him and": [0, 65535], "tane for him and he": [0, 65535], "for him and he for": [0, 65535], "him and he for me": [0, 65535], "and he for me and": [0, 65535], "he for me and thereupon": [0, 65535], "for me and thereupon these": [0, 65535], "me and thereupon these errors": [0, 65535], "and thereupon these errors are": [0, 65535], "thereupon these errors are arose": [0, 65535], "these errors are arose e": [0, 65535], "errors are arose e ant": [0, 65535], "are arose e ant these": [0, 65535], "arose e ant these duckets": [0, 65535], "e ant these duckets pawne": [0, 65535], "ant these duckets pawne i": [0, 65535], "these duckets pawne i for": [0, 65535], "duckets pawne i for my": [0, 65535], "pawne i for my father": [0, 65535], "i for my father heere": [0, 65535], "for my father heere duke": [0, 65535], "my father heere duke it": [0, 65535], "father heere duke it shall": [0, 65535], "heere duke it shall not": [0, 65535], "duke it shall not neede": [0, 65535], "it shall not neede thy": [0, 65535], "shall not neede thy father": [0, 65535], "not neede thy father hath": [0, 65535], "neede thy father hath his": [0, 65535], "thy father hath his life": [0, 65535], "father hath his life cur": [0, 65535], "hath his life cur sir": [0, 65535], "his life cur sir i": [0, 65535], "life cur sir i must": [0, 65535], "cur sir i must haue": [0, 65535], "sir i must haue that": [0, 65535], "i must haue that diamond": [0, 65535], "must haue that diamond from": [0, 65535], "haue that diamond from you": [0, 65535], "that diamond from you e": [0, 65535], "diamond from you e ant": [0, 65535], "from you e ant there": [0, 65535], "you e ant there take": [0, 65535], "e ant there take it": [0, 65535], "ant there take it and": [0, 65535], "there take it and much": [0, 65535], "take it and much thanks": [0, 65535], "it and much thanks for": [0, 65535], "and much thanks for my": [0, 65535], "much thanks for my good": [0, 65535], "thanks for my good cheere": [0, 65535], "for my good cheere abb": [0, 65535], "my good cheere abb renowned": [0, 65535], "good cheere abb renowned duke": [0, 65535], "cheere abb renowned duke vouchsafe": [0, 65535], "abb renowned duke vouchsafe to": [0, 65535], "renowned duke vouchsafe to take": [0, 65535], "duke vouchsafe to take the": [0, 65535], "vouchsafe to take the paines": [0, 65535], "to take the paines to": [0, 65535], "take the paines to go": [0, 65535], "the paines to go with": [0, 65535], "paines to go with vs": [0, 65535], "to go with vs into": [0, 65535], "go with vs into the": [0, 65535], "with vs into the abbey": [0, 65535], "vs into the abbey heere": [0, 65535], "into the abbey heere and": [0, 65535], "the abbey heere and heare": [0, 65535], "abbey heere and heare at": [0, 65535], "heere and heare at large": [0, 65535], "and heare at large discoursed": [0, 65535], "heare at large discoursed all": [0, 65535], "at large discoursed all our": [0, 65535], "large discoursed all our fortunes": [0, 65535], "discoursed all our fortunes and": [0, 65535], "all our fortunes and all": [0, 65535], "our fortunes and all that": [0, 65535], "fortunes and all that are": [0, 65535], "and all that are assembled": [0, 65535], "all that are assembled in": [0, 65535], "that are assembled in this": [0, 65535], "are assembled in this place": [0, 65535], "assembled in this place that": [0, 65535], "in this place that by": [0, 65535], "this place that by this": [0, 65535], "place that by this simpathized": [0, 65535], "that by this simpathized one": [0, 65535], "by this simpathized one daies": [0, 65535], "this simpathized one daies error": [0, 65535], "simpathized one daies error haue": [0, 65535], "one daies error haue suffer'd": [0, 65535], "daies error haue suffer'd wrong": [0, 65535], "error haue suffer'd wrong goe": [0, 65535], "haue suffer'd wrong goe keepe": [0, 65535], "suffer'd wrong goe keepe vs": [0, 65535], "wrong goe keepe vs companie": [0, 65535], "goe keepe vs companie and": [0, 65535], "keepe vs companie and we": [0, 65535], "vs companie and we shall": [0, 65535], "companie and we shall make": [0, 65535], "and we shall make full": [0, 65535], "we shall make full satisfaction": [0, 65535], "shall make full satisfaction thirtie": [0, 65535], "make full satisfaction thirtie three": [0, 65535], "full satisfaction thirtie three yeares": [0, 65535], "satisfaction thirtie three yeares haue": [0, 65535], "thirtie three yeares haue i": [0, 65535], "three yeares haue i but": [0, 65535], "yeares haue i but gone": [0, 65535], "haue i but gone in": [0, 65535], "i but gone in trauaile": [0, 65535], "but gone in trauaile of": [0, 65535], "gone in trauaile of you": [0, 65535], "in trauaile of you my": [0, 65535], "trauaile of you my sonnes": [0, 65535], "of you my sonnes and": [0, 65535], "you my sonnes and till": [0, 65535], "my sonnes and till this": [0, 65535], "sonnes and till this present": [0, 65535], "and till this present houre": [0, 65535], "till this present houre my": [0, 65535], "this present houre my heauie": [0, 65535], "present houre my heauie burthen": [0, 65535], "houre my heauie burthen are": [0, 65535], "my heauie burthen are deliuered": [0, 65535], "heauie burthen are deliuered the": [0, 65535], "burthen are deliuered the duke": [0, 65535], "are deliuered the duke my": [0, 65535], "deliuered the duke my husband": [0, 65535], "the duke my husband and": [0, 65535], "duke my husband and my": [0, 65535], "my husband and my children": [0, 65535], "husband and my children both": [0, 65535], "and my children both and": [0, 65535], "my children both and you": [0, 65535], "children both and you the": [0, 65535], "both and you the kalenders": [0, 65535], "and you the kalenders of": [0, 65535], "you the kalenders of their": [0, 65535], "the kalenders of their natiuity": [0, 65535], "kalenders of their natiuity go": [0, 65535], "of their natiuity go to": [0, 65535], "their natiuity go to a": [0, 65535], "natiuity go to a gossips": [0, 65535], "go to a gossips feast": [0, 65535], "to a gossips feast and": [0, 65535], "a gossips feast and go": [0, 65535], "gossips feast and go with": [0, 65535], "feast and go with mee": [0, 65535], "and go with mee after": [0, 65535], "go with mee after so": [0, 65535], "with mee after so long": [0, 65535], "mee after so long greefe": [0, 65535], "after so long greefe such": [0, 65535], "so long greefe such natiuitie": [0, 65535], "long greefe such natiuitie duke": [0, 65535], "greefe such natiuitie duke with": [0, 65535], "such natiuitie duke with all": [0, 65535], "natiuitie duke with all my": [0, 65535], "duke with all my heart": [0, 65535], "with all my heart ile": [0, 65535], "all my heart ile gossip": [0, 65535], "my heart ile gossip at": [0, 65535], "heart ile gossip at this": [0, 65535], "ile gossip at this feast": [0, 65535], "gossip at this feast exeunt": [0, 65535], "at this feast exeunt omnes": [0, 65535], "this feast exeunt omnes manet": [0, 65535], "feast exeunt omnes manet the": [0, 65535], "exeunt omnes manet the two": [0, 65535], "omnes manet the two dromio's": [0, 65535], "manet the two dromio's and": [0, 65535], "the two dromio's and two": [0, 65535], "two dromio's and two brothers": [0, 65535], "dromio's and two brothers s": [0, 65535], "and two brothers s dro": [0, 65535], "two brothers s dro mast": [0, 65535], "brothers s dro mast shall": [0, 65535], "s dro mast shall i": [0, 65535], "dro mast shall i fetch": [0, 65535], "mast shall i fetch your": [0, 65535], "shall i fetch your stuffe": [0, 65535], "i fetch your stuffe from": [0, 65535], "fetch your stuffe from shipbord": [0, 65535], "your stuffe from shipbord e": [0, 65535], "stuffe from shipbord e an": [0, 65535], "from shipbord e an dromio": [0, 65535], "shipbord e an dromio what": [0, 65535], "e an dromio what stuffe": [0, 65535], "an dromio what stuffe of": [0, 65535], "dromio what stuffe of mine": [0, 65535], "what stuffe of mine hast": [0, 65535], "stuffe of mine hast thou": [0, 65535], "of mine hast thou imbarkt": [0, 65535], "mine hast thou imbarkt s": [0, 65535], "hast thou imbarkt s dro": [0, 65535], "thou imbarkt s dro your": [0, 65535], "imbarkt s dro your goods": [0, 65535], "s dro your goods that": [0, 65535], "dro your goods that lay": [0, 65535], "your goods that lay at": [0, 65535], "goods that lay at host": [0, 65535], "that lay at host sir": [0, 65535], "lay at host sir in": [0, 65535], "at host sir in the": [0, 65535], "host sir in the centaur": [0, 65535], "sir in the centaur s": [0, 65535], "in the centaur s ant": [0, 65535], "the centaur s ant he": [0, 65535], "centaur s ant he speakes": [0, 65535], "s ant he speakes to": [0, 65535], "ant he speakes to me": [0, 65535], "he speakes to me i": [0, 65535], "speakes to me i am": [0, 65535], "to me i am your": [0, 65535], "me i am your master": [0, 65535], "i am your master dromio": [0, 65535], "am your master dromio come": [0, 65535], "your master dromio come go": [0, 65535], "master dromio come go with": [0, 65535], "dromio come go with vs": [0, 65535], "come go with vs wee'l": [0, 65535], "go with vs wee'l looke": [0, 65535], "with vs wee'l looke to": [0, 65535], "vs wee'l looke to that": [0, 65535], "wee'l looke to that anon": [0, 65535], "looke to that anon embrace": [0, 65535], "to that anon embrace thy": [0, 65535], "that anon embrace thy brother": [0, 65535], "anon embrace thy brother there": [0, 65535], "embrace thy brother there reioyce": [0, 65535], "thy brother there reioyce with": [0, 65535], "brother there reioyce with him": [0, 65535], "there reioyce with him exit": [0, 65535], "reioyce with him exit s": [0, 65535], "with him exit s dro": [0, 65535], "him exit s dro there": [0, 65535], "exit s dro there is": [0, 65535], "s dro there is a": [0, 65535], "dro there is a fat": [0, 65535], "there is a fat friend": [0, 65535], "is a fat friend at": [0, 65535], "a fat friend at your": [0, 65535], "fat friend at your masters": [0, 65535], "friend at your masters house": [0, 65535], "at your masters house that": [0, 65535], "your masters house that kitchin'd": [0, 65535], "masters house that kitchin'd me": [0, 65535], "house that kitchin'd me for": [0, 65535], "that kitchin'd me for you": [0, 65535], "kitchin'd me for you to": [0, 65535], "me for you to day": [0, 65535], "for you to day at": [0, 65535], "you to day at dinner": [0, 65535], "to day at dinner she": [0, 65535], "day at dinner she now": [0, 65535], "at dinner she now shall": [0, 65535], "dinner she now shall be": [0, 65535], "she now shall be my": [0, 65535], "now shall be my sister": [0, 65535], "shall be my sister not": [0, 65535], "be my sister not my": [0, 65535], "my sister not my wife": [0, 65535], "sister not my wife e": [0, 65535], "not my wife e d": [0, 65535], "my wife e d me": [0, 65535], "wife e d me thinks": [0, 65535], "e d me thinks you": [0, 65535], "d me thinks you are": [0, 65535], "me thinks you are my": [0, 65535], "thinks you are my glasse": [0, 65535], "you are my glasse not": [0, 65535], "are my glasse not my": [0, 65535], "my glasse not my brother": [0, 65535], "glasse not my brother i": [0, 65535], "not my brother i see": [0, 65535], "my brother i see by": [0, 65535], "brother i see by you": [0, 65535], "i see by you i": [0, 65535], "see by you i am": [0, 65535], "by you i am a": [0, 65535], "you i am a sweet": [0, 65535], "i am a sweet fac'd": [0, 65535], "am a sweet fac'd youth": [0, 65535], "a sweet fac'd youth will": [0, 65535], "sweet fac'd youth will you": [0, 65535], "fac'd youth will you walke": [0, 65535], "youth will you walke in": [0, 65535], "will you walke in to": [0, 65535], "you walke in to see": [0, 65535], "walke in to see their": [0, 65535], "in to see their gossipping": [0, 65535], "to see their gossipping s": [0, 65535], "see their gossipping s dro": [0, 65535], "their gossipping s dro not": [0, 65535], "gossipping s dro not i": [0, 65535], "s dro not i sir": [0, 65535], "dro not i sir you": [0, 65535], "not i sir you are": [0, 65535], "i sir you are my": [0, 65535], "sir you are my elder": [0, 65535], "you are my elder e": [0, 65535], "are my elder e dro": [0, 65535], "my elder e dro that's": [0, 65535], "elder e dro that's a": [0, 65535], "e dro that's a question": [0, 65535], "dro that's a question how": [0, 65535], "that's a question how shall": [0, 65535], "a question how shall we": [0, 65535], "question how shall we trie": [0, 65535], "how shall we trie it": [0, 65535], "shall we trie it s": [0, 65535], "we trie it s dro": [0, 65535], "trie it s dro wee'l": [0, 65535], "it s dro wee'l draw": [0, 65535], "s dro wee'l draw cuts": [0, 65535], "dro wee'l draw cuts for": [0, 65535], "wee'l draw cuts for the": [0, 65535], "draw cuts for the signior": [0, 65535], "cuts for the signior till": [0, 65535], "for the signior till then": [0, 65535], "the signior till then lead": [0, 65535], "signior till then lead thou": [0, 65535], "till then lead thou first": [0, 65535], "then lead thou first e": [0, 65535], "lead thou first e dro": [0, 65535], "thou first e dro nay": [0, 65535], "first e dro nay then": [0, 65535], "e dro nay then thus": [0, 65535], "dro nay then thus we": [0, 65535], "nay then thus we came": [0, 65535], "then thus we came into": [0, 65535], "thus we came into the": [0, 65535], "we came into the world": [0, 65535], "came into the world like": [0, 65535], "into the world like brother": [0, 65535], "the world like brother and": [0, 65535], "world like brother and brother": [0, 65535], "like brother and brother and": [0, 65535], "brother and brother and now": [0, 65535], "and brother and now let's": [0, 65535], "brother and now let's go": [0, 65535], "and now let's go hand": [0, 65535], "now let's go hand in": [0, 65535], "let's go hand in hand": [0, 65535], "go hand in hand not": [0, 65535], "hand in hand not one": [0, 65535], "in hand not one before": [0, 65535], "hand not one before another": [0, 65535], "not one before another exeunt": [0, 65535], "one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the": [0, 65535], "quintus sc\u0153na prima enter the merchant": [0, 65535], "sc\u0153na prima enter the merchant and": [0, 65535], "prima enter the merchant and the": [0, 65535], "enter the merchant and the goldsmith": [0, 65535], "the merchant and the goldsmith gold": [0, 65535], "merchant and the goldsmith gold i": [0, 65535], "and the goldsmith gold i am": [0, 65535], "the goldsmith gold i am sorry": [0, 65535], "goldsmith gold i am sorry sir": [0, 65535], "gold i am sorry sir that": [0, 65535], "i am sorry sir that i": [0, 65535], "am sorry sir that i haue": [0, 65535], "sorry sir that i haue hindred": [0, 65535], "sir that i haue hindred you": [0, 65535], "that i haue hindred you but": [0, 65535], "i haue hindred you but i": [0, 65535], "haue hindred you but i protest": [0, 65535], "hindred you but i protest he": [0, 65535], "you but i protest he had": [0, 65535], "but i protest he had the": [0, 65535], "i protest he had the chaine": [0, 65535], "protest he had the chaine of": [0, 65535], "he had the chaine of me": [0, 65535], "had the chaine of me though": [0, 65535], "the chaine of me though most": [0, 65535], "chaine of me though most dishonestly": [0, 65535], "of me though most dishonestly he": [0, 65535], "me though most dishonestly he doth": [0, 65535], "though most dishonestly he doth denie": [0, 65535], "most dishonestly he doth denie it": [0, 65535], "dishonestly he doth denie it mar": [0, 65535], "he doth denie it mar how": [0, 65535], "doth denie it mar how is": [0, 65535], "denie it mar how is the": [0, 65535], "it mar how is the man": [0, 65535], "mar how is the man esteem'd": [0, 65535], "how is the man esteem'd heere": [0, 65535], "is the man esteem'd heere in": [0, 65535], "the man esteem'd heere in the": [0, 65535], "man esteem'd heere in the citie": [0, 65535], "esteem'd heere in the citie gold": [0, 65535], "heere in the citie gold of": [0, 65535], "in the citie gold of very": [0, 65535], "the citie gold of very reuerent": [0, 65535], "citie gold of very reuerent reputation": [0, 65535], "gold of very reuerent reputation sir": [0, 65535], "of very reuerent reputation sir of": [0, 65535], "very reuerent reputation sir of credit": [0, 65535], "reuerent reputation sir of credit infinite": [0, 65535], "reputation sir of credit infinite highly": [0, 65535], "sir of credit infinite highly belou'd": [0, 65535], "of credit infinite highly belou'd second": [0, 65535], "credit infinite highly belou'd second to": [0, 65535], "infinite highly belou'd second to none": [0, 65535], "highly belou'd second to none that": [0, 65535], "belou'd second to none that liues": [0, 65535], "second to none that liues heere": [0, 65535], "to none that liues heere in": [0, 65535], "none that liues heere in the": [0, 65535], "that liues heere in the citie": [0, 65535], "liues heere in the citie his": [0, 65535], "heere in the citie his word": [0, 65535], "in the citie his word might": [0, 65535], "the citie his word might beare": [0, 65535], "citie his word might beare my": [0, 65535], "his word might beare my wealth": [0, 65535], "word might beare my wealth at": [0, 65535], "might beare my wealth at any": [0, 65535], "beare my wealth at any time": [0, 65535], "my wealth at any time mar": [0, 65535], "wealth at any time mar speake": [0, 65535], "at any time mar speake softly": [0, 65535], "any time mar speake softly yonder": [0, 65535], "time mar speake softly yonder as": [0, 65535], "mar speake softly yonder as i": [0, 65535], "speake softly yonder as i thinke": [0, 65535], "softly yonder as i thinke he": [0, 65535], "yonder as i thinke he walkes": [0, 65535], "as i thinke he walkes enter": [0, 65535], "i thinke he walkes enter antipholus": [0, 65535], "thinke he walkes enter antipholus and": [0, 65535], "he walkes enter antipholus and dromio": [0, 65535], "walkes enter antipholus and dromio againe": [0, 65535], "enter antipholus and dromio againe gold": [0, 65535], "antipholus and dromio againe gold 'tis": [0, 65535], "and dromio againe gold 'tis so": [0, 65535], "dromio againe gold 'tis so and": [0, 65535], "againe gold 'tis so and that": [0, 65535], "gold 'tis so and that selfe": [0, 65535], "'tis so and that selfe chaine": [0, 65535], "so and that selfe chaine about": [0, 65535], "and that selfe chaine about his": [0, 65535], "that selfe chaine about his necke": [0, 65535], "selfe chaine about his necke which": [0, 65535], "chaine about his necke which he": [0, 65535], "about his necke which he forswore": [0, 65535], "his necke which he forswore most": [0, 65535], "necke which he forswore most monstrously": [0, 65535], "which he forswore most monstrously to": [0, 65535], "he forswore most monstrously to haue": [0, 65535], "forswore most monstrously to haue good": [0, 65535], "most monstrously to haue good sir": [0, 65535], "monstrously to haue good sir draw": [0, 65535], "to haue good sir draw neere": [0, 65535], "haue good sir draw neere to": [0, 65535], "good sir draw neere to me": [0, 65535], "sir draw neere to me ile": [0, 65535], "draw neere to me ile speake": [0, 65535], "neere to me ile speake to": [0, 65535], "to me ile speake to him": [0, 65535], "me ile speake to him signior": [0, 65535], "ile speake to him signior antipholus": [0, 65535], "speake to him signior antipholus i": [0, 65535], "to him signior antipholus i wonder": [0, 65535], "him signior antipholus i wonder much": [0, 65535], "signior antipholus i wonder much that": [0, 65535], "antipholus i wonder much that you": [0, 65535], "i wonder much that you would": [0, 65535], "wonder much that you would put": [0, 65535], "much that you would put me": [0, 65535], "that you would put me to": [0, 65535], "you would put me to this": [0, 65535], "would put me to this shame": [0, 65535], "put me to this shame and": [0, 65535], "me to this shame and trouble": [0, 65535], "to this shame and trouble and": [0, 65535], "this shame and trouble and not": [0, 65535], "shame and trouble and not without": [0, 65535], "and trouble and not without some": [0, 65535], "trouble and not without some scandall": [0, 65535], "and not without some scandall to": [0, 65535], "not without some scandall to your": [0, 65535], "without some scandall to your selfe": [0, 65535], "some scandall to your selfe with": [0, 65535], "scandall to your selfe with circumstance": [0, 65535], "to your selfe with circumstance and": [0, 65535], "your selfe with circumstance and oaths": [0, 65535], "selfe with circumstance and oaths so": [0, 65535], "with circumstance and oaths so to": [0, 65535], "circumstance and oaths so to denie": [0, 65535], "and oaths so to denie this": [0, 65535], "oaths so to denie this chaine": [0, 65535], "so to denie this chaine which": [0, 65535], "to denie this chaine which now": [0, 65535], "denie this chaine which now you": [0, 65535], "this chaine which now you weare": [0, 65535], "chaine which now you weare so": [0, 65535], "which now you weare so openly": [0, 65535], "now you weare so openly beside": [0, 65535], "you weare so openly beside the": [0, 65535], "weare so openly beside the charge": [0, 65535], "so openly beside the charge the": [0, 65535], "openly beside the charge the shame": [0, 65535], "beside the charge the shame imprisonment": [0, 65535], "the charge the shame imprisonment you": [0, 65535], "charge the shame imprisonment you haue": [0, 65535], "the shame imprisonment you haue done": [0, 65535], "shame imprisonment you haue done wrong": [0, 65535], "imprisonment you haue done wrong to": [0, 65535], "you haue done wrong to this": [0, 65535], "haue done wrong to this my": [0, 65535], "done wrong to this my honest": [0, 65535], "wrong to this my honest friend": [0, 65535], "to this my honest friend who": [0, 65535], "this my honest friend who but": [0, 65535], "my honest friend who but for": [0, 65535], "honest friend who but for staying": [0, 65535], "friend who but for staying on": [0, 65535], "who but for staying on our": [0, 65535], "but for staying on our controuersie": [0, 65535], "for staying on our controuersie had": [0, 65535], "staying on our controuersie had hoisted": [0, 65535], "on our controuersie had hoisted saile": [0, 65535], "our controuersie had hoisted saile and": [0, 65535], "controuersie had hoisted saile and put": [0, 65535], "had hoisted saile and put to": [0, 65535], "hoisted saile and put to sea": [0, 65535], "saile and put to sea to": [0, 65535], "and put to sea to day": [0, 65535], "put to sea to day this": [0, 65535], "to sea to day this chaine": [0, 65535], "sea to day this chaine you": [0, 65535], "to day this chaine you had": [0, 65535], "day this chaine you had of": [0, 65535], "this chaine you had of me": [0, 65535], "chaine you had of me can": [0, 65535], "you had of me can you": [0, 65535], "had of me can you deny": [0, 65535], "of me can you deny it": [0, 65535], "me can you deny it ant": [0, 65535], "can you deny it ant i": [0, 65535], "you deny it ant i thinke": [0, 65535], "deny it ant i thinke i": [0, 65535], "it ant i thinke i had": [0, 65535], "ant i thinke i had i": [0, 65535], "i thinke i had i neuer": [0, 65535], "thinke i had i neuer did": [0, 65535], "i had i neuer did deny": [0, 65535], "had i neuer did deny it": [0, 65535], "i neuer did deny it mar": [0, 65535], "neuer did deny it mar yes": [0, 65535], "did deny it mar yes that": [0, 65535], "deny it mar yes that you": [0, 65535], "it mar yes that you did": [0, 65535], "mar yes that you did sir": [0, 65535], "yes that you did sir and": [0, 65535], "that you did sir and forswore": [0, 65535], "you did sir and forswore it": [0, 65535], "did sir and forswore it too": [0, 65535], "sir and forswore it too ant": [0, 65535], "and forswore it too ant who": [0, 65535], "forswore it too ant who heard": [0, 65535], "it too ant who heard me": [0, 65535], "too ant who heard me to": [0, 65535], "ant who heard me to denie": [0, 65535], "who heard me to denie it": [0, 65535], "heard me to denie it or": [0, 65535], "me to denie it or forsweare": [0, 65535], "to denie it or forsweare it": [0, 65535], "denie it or forsweare it mar": [0, 65535], "it or forsweare it mar these": [0, 65535], "or forsweare it mar these eares": [0, 65535], "forsweare it mar these eares of": [0, 65535], "it mar these eares of mine": [0, 65535], "mar these eares of mine thou": [0, 65535], "these eares of mine thou knowst": [0, 65535], "eares of mine thou knowst did": [0, 65535], "of mine thou knowst did hear": [0, 65535], "mine thou knowst did hear thee": [0, 65535], "thou knowst did hear thee fie": [0, 65535], "knowst did hear thee fie on": [0, 65535], "did hear thee fie on thee": [0, 65535], "hear thee fie on thee wretch": [0, 65535], "thee fie on thee wretch 'tis": [0, 65535], "fie on thee wretch 'tis pitty": [0, 65535], "on thee wretch 'tis pitty that": [0, 65535], "thee wretch 'tis pitty that thou": [0, 65535], "wretch 'tis pitty that thou liu'st": [0, 65535], "'tis pitty that thou liu'st to": [0, 65535], "pitty that thou liu'st to walke": [0, 65535], "that thou liu'st to walke where": [0, 65535], "thou liu'st to walke where any": [0, 65535], "liu'st to walke where any honest": [0, 65535], "to walke where any honest men": [0, 65535], "walke where any honest men resort": [0, 65535], "where any honest men resort ant": [0, 65535], "any honest men resort ant thou": [0, 65535], "honest men resort ant thou art": [0, 65535], "men resort ant thou art a": [0, 65535], "resort ant thou art a villaine": [0, 65535], "ant thou art a villaine to": [0, 65535], "thou art a villaine to impeach": [0, 65535], "art a villaine to impeach me": [0, 65535], "a villaine to impeach me thus": [0, 65535], "villaine to impeach me thus ile": [0, 65535], "to impeach me thus ile proue": [0, 65535], "impeach me thus ile proue mine": [0, 65535], "me thus ile proue mine honor": [0, 65535], "thus ile proue mine honor and": [0, 65535], "ile proue mine honor and mine": [0, 65535], "proue mine honor and mine honestie": [0, 65535], "mine honor and mine honestie against": [0, 65535], "honor and mine honestie against thee": [0, 65535], "and mine honestie against thee presently": [0, 65535], "mine honestie against thee presently if": [0, 65535], "honestie against thee presently if thou": [0, 65535], "against thee presently if thou dar'st": [0, 65535], "thee presently if thou dar'st stand": [0, 65535], "presently if thou dar'st stand mar": [0, 65535], "if thou dar'st stand mar i": [0, 65535], "thou dar'st stand mar i dare": [0, 65535], "dar'st stand mar i dare and": [0, 65535], "stand mar i dare and do": [0, 65535], "mar i dare and do defie": [0, 65535], "i dare and do defie thee": [0, 65535], "dare and do defie thee for": [0, 65535], "and do defie thee for a": [0, 65535], "do defie thee for a villaine": [0, 65535], "defie thee for a villaine they": [0, 65535], "thee for a villaine they draw": [0, 65535], "for a villaine they draw enter": [0, 65535], "a villaine they draw enter adriana": [0, 65535], "villaine they draw enter adriana luciana": [0, 65535], "they draw enter adriana luciana courtezan": [0, 65535], "draw enter adriana luciana courtezan others": [0, 65535], "enter adriana luciana courtezan others adr": [0, 65535], "adriana luciana courtezan others adr hold": [0, 65535], "luciana courtezan others adr hold hurt": [0, 65535], "courtezan others adr hold hurt him": [0, 65535], "others adr hold hurt him not": [0, 65535], "adr hold hurt him not for": [0, 65535], "hold hurt him not for god": [0, 65535], "hurt him not for god sake": [0, 65535], "him not for god sake he": [0, 65535], "not for god sake he is": [0, 65535], "for god sake he is mad": [0, 65535], "god sake he is mad some": [0, 65535], "sake he is mad some get": [0, 65535], "he is mad some get within": [0, 65535], "is mad some get within him": [0, 65535], "mad some get within him take": [0, 65535], "some get within him take his": [0, 65535], "get within him take his sword": [0, 65535], "within him take his sword away": [0, 65535], "him take his sword away binde": [0, 65535], "take his sword away binde dromio": [0, 65535], "his sword away binde dromio too": [0, 65535], "sword away binde dromio too and": [0, 65535], "away binde dromio too and beare": [0, 65535], "binde dromio too and beare them": [0, 65535], "dromio too and beare them to": [0, 65535], "too and beare them to my": [0, 65535], "and beare them to my house": [0, 65535], "beare them to my house s": [0, 65535], "them to my house s dro": [0, 65535], "to my house s dro runne": [0, 65535], "my house s dro runne master": [0, 65535], "house s dro runne master run": [0, 65535], "s dro runne master run for": [0, 65535], "dro runne master run for gods": [0, 65535], "runne master run for gods sake": [0, 65535], "master run for gods sake take": [0, 65535], "run for gods sake take a": [0, 65535], "for gods sake take a house": [0, 65535], "gods sake take a house this": [0, 65535], "sake take a house this is": [0, 65535], "take a house this is some": [0, 65535], "a house this is some priorie": [0, 65535], "house this is some priorie in": [0, 65535], "this is some priorie in or": [0, 65535], "is some priorie in or we": [0, 65535], "some priorie in or we are": [0, 65535], "priorie in or we are spoyl'd": [0, 65535], "in or we are spoyl'd exeunt": [0, 65535], "or we are spoyl'd exeunt to": [0, 65535], "we are spoyl'd exeunt to the": [0, 65535], "are spoyl'd exeunt to the priorie": [0, 65535], "spoyl'd exeunt to the priorie enter": [0, 65535], "exeunt to the priorie enter ladie": [0, 65535], "to the priorie enter ladie abbesse": [0, 65535], "the priorie enter ladie abbesse ab": [0, 65535], "priorie enter ladie abbesse ab be": [0, 65535], "enter ladie abbesse ab be quiet": [0, 65535], "ladie abbesse ab be quiet people": [0, 65535], "abbesse ab be quiet people wherefore": [0, 65535], "ab be quiet people wherefore throng": [0, 65535], "be quiet people wherefore throng you": [0, 65535], "quiet people wherefore throng you hither": [0, 65535], "people wherefore throng you hither adr": [0, 65535], "wherefore throng you hither adr to": [0, 65535], "throng you hither adr to fetch": [0, 65535], "you hither adr to fetch my": [0, 65535], "hither adr to fetch my poore": [0, 65535], "adr to fetch my poore distracted": [0, 65535], "to fetch my poore distracted husband": [0, 65535], "fetch my poore distracted husband hence": [0, 65535], "my poore distracted husband hence let": [0, 65535], "poore distracted husband hence let vs": [0, 65535], "distracted husband hence let vs come": [0, 65535], "husband hence let vs come in": [0, 65535], "hence let vs come in that": [0, 65535], "let vs come in that we": [0, 65535], "vs come in that we may": [0, 65535], "come in that we may binde": [0, 65535], "in that we may binde him": [0, 65535], "that we may binde him fast": [0, 65535], "we may binde him fast and": [0, 65535], "may binde him fast and beare": [0, 65535], "binde him fast and beare him": [0, 65535], "him fast and beare him home": [0, 65535], "fast and beare him home for": [0, 65535], "and beare him home for his": [0, 65535], "beare him home for his recouerie": [0, 65535], "him home for his recouerie gold": [0, 65535], "home for his recouerie gold i": [0, 65535], "for his recouerie gold i knew": [0, 65535], "his recouerie gold i knew he": [0, 65535], "recouerie gold i knew he was": [0, 65535], "gold i knew he was not": [0, 65535], "i knew he was not in": [0, 65535], "knew he was not in his": [0, 65535], "he was not in his perfect": [0, 65535], "was not in his perfect wits": [0, 65535], "not in his perfect wits mar": [0, 65535], "in his perfect wits mar i": [0, 65535], "his perfect wits mar i am": [0, 65535], "perfect wits mar i am sorry": [0, 65535], "wits mar i am sorry now": [0, 65535], "mar i am sorry now that": [0, 65535], "i am sorry now that i": [0, 65535], "am sorry now that i did": [0, 65535], "sorry now that i did draw": [0, 65535], "now that i did draw on": [0, 65535], "that i did draw on him": [0, 65535], "i did draw on him ab": [0, 65535], "did draw on him ab how": [0, 65535], "draw on him ab how long": [0, 65535], "on him ab how long hath": [0, 65535], "him ab how long hath this": [0, 65535], "ab how long hath this possession": [0, 65535], "how long hath this possession held": [0, 65535], "long hath this possession held the": [0, 65535], "hath this possession held the man": [0, 65535], "this possession held the man adr": [0, 65535], "possession held the man adr this": [0, 65535], "held the man adr this weeke": [0, 65535], "the man adr this weeke he": [0, 65535], "man adr this weeke he hath": [0, 65535], "adr this weeke he hath beene": [0, 65535], "this weeke he hath beene heauie": [0, 65535], "weeke he hath beene heauie sower": [0, 65535], "he hath beene heauie sower sad": [0, 65535], "hath beene heauie sower sad and": [0, 65535], "beene heauie sower sad and much": [0, 65535], "heauie sower sad and much different": [0, 65535], "sower sad and much different from": [0, 65535], "sad and much different from the": [0, 65535], "and much different from the man": [0, 65535], "much different from the man he": [0, 65535], "different from the man he was": [0, 65535], "from the man he was but": [0, 65535], "the man he was but till": [0, 65535], "man he was but till this": [0, 65535], "he was but till this afternoone": [0, 65535], "was but till this afternoone his": [0, 65535], "but till this afternoone his passion": [0, 65535], "till this afternoone his passion ne're": [0, 65535], "this afternoone his passion ne're brake": [0, 65535], "afternoone his passion ne're brake into": [0, 65535], "his passion ne're brake into extremity": [0, 65535], "passion ne're brake into extremity of": [0, 65535], "ne're brake into extremity of rage": [0, 65535], "brake into extremity of rage ab": [0, 65535], "into extremity of rage ab hath": [0, 65535], "extremity of rage ab hath he": [0, 65535], "of rage ab hath he not": [0, 65535], "rage ab hath he not lost": [0, 65535], "ab hath he not lost much": [0, 65535], "hath he not lost much wealth": [0, 65535], "he not lost much wealth by": [0, 65535], "not lost much wealth by wrack": [0, 65535], "lost much wealth by wrack of": [0, 65535], "much wealth by wrack of sea": [0, 65535], "wealth by wrack of sea buried": [0, 65535], "by wrack of sea buried some": [0, 65535], "wrack of sea buried some deere": [0, 65535], "of sea buried some deere friend": [0, 65535], "sea buried some deere friend hath": [0, 65535], "buried some deere friend hath not": [0, 65535], "some deere friend hath not else": [0, 65535], "deere friend hath not else his": [0, 65535], "friend hath not else his eye": [0, 65535], "hath not else his eye stray'd": [0, 65535], "not else his eye stray'd his": [0, 65535], "else his eye stray'd his affection": [0, 65535], "his eye stray'd his affection in": [0, 65535], "eye stray'd his affection in vnlawfull": [0, 65535], "stray'd his affection in vnlawfull loue": [0, 65535], "his affection in vnlawfull loue a": [0, 65535], "affection in vnlawfull loue a sinne": [0, 65535], "in vnlawfull loue a sinne preuailing": [0, 65535], "vnlawfull loue a sinne preuailing much": [0, 65535], "loue a sinne preuailing much in": [0, 65535], "a sinne preuailing much in youthfull": [0, 65535], "sinne preuailing much in youthfull men": [0, 65535], "preuailing much in youthfull men who": [0, 65535], "much in youthfull men who giue": [0, 65535], "in youthfull men who giue their": [0, 65535], "youthfull men who giue their eies": [0, 65535], "men who giue their eies the": [0, 65535], "who giue their eies the liberty": [0, 65535], "giue their eies the liberty of": [0, 65535], "their eies the liberty of gazing": [0, 65535], "eies the liberty of gazing which": [0, 65535], "the liberty of gazing which of": [0, 65535], "liberty of gazing which of these": [0, 65535], "of gazing which of these sorrowes": [0, 65535], "gazing which of these sorrowes is": [0, 65535], "which of these sorrowes is he": [0, 65535], "of these sorrowes is he subiect": [0, 65535], "these sorrowes is he subiect too": [0, 65535], "sorrowes is he subiect too adr": [0, 65535], "is he subiect too adr to": [0, 65535], "he subiect too adr to none": [0, 65535], "subiect too adr to none of": [0, 65535], "too adr to none of these": [0, 65535], "adr to none of these except": [0, 65535], "to none of these except it": [0, 65535], "none of these except it be": [0, 65535], "of these except it be the": [0, 65535], "these except it be the last": [0, 65535], "except it be the last namely": [0, 65535], "it be the last namely some": [0, 65535], "be the last namely some loue": [0, 65535], "the last namely some loue that": [0, 65535], "last namely some loue that drew": [0, 65535], "namely some loue that drew him": [0, 65535], "some loue that drew him oft": [0, 65535], "loue that drew him oft from": [0, 65535], "that drew him oft from home": [0, 65535], "drew him oft from home ab": [0, 65535], "him oft from home ab you": [0, 65535], "oft from home ab you should": [0, 65535], "from home ab you should for": [0, 65535], "home ab you should for that": [0, 65535], "ab you should for that haue": [0, 65535], "you should for that haue reprehended": [0, 65535], "should for that haue reprehended him": [0, 65535], "for that haue reprehended him adr": [0, 65535], "that haue reprehended him adr why": [0, 65535], "haue reprehended him adr why so": [0, 65535], "reprehended him adr why so i": [0, 65535], "him adr why so i did": [0, 65535], "adr why so i did ab": [0, 65535], "why so i did ab i": [0, 65535], "so i did ab i but": [0, 65535], "i did ab i but not": [0, 65535], "did ab i but not rough": [0, 65535], "ab i but not rough enough": [0, 65535], "i but not rough enough adr": [0, 65535], "but not rough enough adr as": [0, 65535], "not rough enough adr as roughly": [0, 65535], "rough enough adr as roughly as": [0, 65535], "enough adr as roughly as my": [0, 65535], "adr as roughly as my modestie": [0, 65535], "as roughly as my modestie would": [0, 65535], "roughly as my modestie would let": [0, 65535], "as my modestie would let me": [0, 65535], "my modestie would let me ab": [0, 65535], "modestie would let me ab haply": [0, 65535], "would let me ab haply in": [0, 65535], "let me ab haply in priuate": [0, 65535], "me ab haply in priuate adr": [0, 65535], "ab haply in priuate adr and": [0, 65535], "haply in priuate adr and in": [0, 65535], "in priuate adr and in assemblies": [0, 65535], "priuate adr and in assemblies too": [0, 65535], "adr and in assemblies too ab": [0, 65535], "and in assemblies too ab i": [0, 65535], "in assemblies too ab i but": [0, 65535], "assemblies too ab i but not": [0, 65535], "too ab i but not enough": [0, 65535], "ab i but not enough adr": [0, 65535], "i but not enough adr it": [0, 65535], "but not enough adr it was": [0, 65535], "not enough adr it was the": [0, 65535], "enough adr it was the copie": [0, 65535], "adr it was the copie of": [0, 65535], "it was the copie of our": [0, 65535], "was the copie of our conference": [0, 65535], "the copie of our conference in": [0, 65535], "copie of our conference in bed": [0, 65535], "of our conference in bed he": [0, 65535], "our conference in bed he slept": [0, 65535], "conference in bed he slept not": [0, 65535], "in bed he slept not for": [0, 65535], "bed he slept not for my": [0, 65535], "he slept not for my vrging": [0, 65535], "slept not for my vrging it": [0, 65535], "not for my vrging it at": [0, 65535], "for my vrging it at boord": [0, 65535], "my vrging it at boord he": [0, 65535], "vrging it at boord he fed": [0, 65535], "it at boord he fed not": [0, 65535], "at boord he fed not for": [0, 65535], "boord he fed not for my": [0, 65535], "he fed not for my vrging": [0, 65535], "fed not for my vrging it": [0, 65535], "not for my vrging it alone": [0, 65535], "for my vrging it alone it": [0, 65535], "my vrging it alone it was": [0, 65535], "vrging it alone it was the": [0, 65535], "it alone it was the subiect": [0, 65535], "alone it was the subiect of": [0, 65535], "it was the subiect of my": [0, 65535], "was the subiect of my theame": [0, 65535], "the subiect of my theame in": [0, 65535], "subiect of my theame in company": [0, 65535], "of my theame in company i": [0, 65535], "my theame in company i often": [0, 65535], "theame in company i often glanced": [0, 65535], "in company i often glanced it": [0, 65535], "company i often glanced it still": [0, 65535], "i often glanced it still did": [0, 65535], "often glanced it still did i": [0, 65535], "glanced it still did i tell": [0, 65535], "it still did i tell him": [0, 65535], "still did i tell him it": [0, 65535], "did i tell him it was": [0, 65535], "i tell him it was vilde": [0, 65535], "tell him it was vilde and": [0, 65535], "him it was vilde and bad": [0, 65535], "it was vilde and bad ab": [0, 65535], "was vilde and bad ab and": [0, 65535], "vilde and bad ab and thereof": [0, 65535], "and bad ab and thereof came": [0, 65535], "bad ab and thereof came it": [0, 65535], "ab and thereof came it that": [0, 65535], "and thereof came it that the": [0, 65535], "thereof came it that the man": [0, 65535], "came it that the man was": [0, 65535], "it that the man was mad": [0, 65535], "that the man was mad the": [0, 65535], "the man was mad the venome": [0, 65535], "man was mad the venome clamors": [0, 65535], "was mad the venome clamors of": [0, 65535], "mad the venome clamors of a": [0, 65535], "the venome clamors of a iealous": [0, 65535], "venome clamors of a iealous woman": [0, 65535], "clamors of a iealous woman poisons": [0, 65535], "of a iealous woman poisons more": [0, 65535], "a iealous woman poisons more deadly": [0, 65535], "iealous woman poisons more deadly then": [0, 65535], "woman poisons more deadly then a": [0, 65535], "poisons more deadly then a mad": [0, 65535], "more deadly then a mad dogges": [0, 65535], "deadly then a mad dogges tooth": [0, 65535], "then a mad dogges tooth it": [0, 65535], "a mad dogges tooth it seemes": [0, 65535], "mad dogges tooth it seemes his": [0, 65535], "dogges tooth it seemes his sleepes": [0, 65535], "tooth it seemes his sleepes were": [0, 65535], "it seemes his sleepes were hindred": [0, 65535], "seemes his sleepes were hindred by": [0, 65535], "his sleepes were hindred by thy": [0, 65535], "sleepes were hindred by thy railing": [0, 65535], "were hindred by thy railing and": [0, 65535], "hindred by thy railing and thereof": [0, 65535], "by thy railing and thereof comes": [0, 65535], "thy railing and thereof comes it": [0, 65535], "railing and thereof comes it that": [0, 65535], "and thereof comes it that his": [0, 65535], "thereof comes it that his head": [0, 65535], "comes it that his head is": [0, 65535], "it that his head is light": [0, 65535], "that his head is light thou": [0, 65535], "his head is light thou saist": [0, 65535], "head is light thou saist his": [0, 65535], "is light thou saist his meate": [0, 65535], "light thou saist his meate was": [0, 65535], "thou saist his meate was sawc'd": [0, 65535], "saist his meate was sawc'd with": [0, 65535], "his meate was sawc'd with thy": [0, 65535], "meate was sawc'd with thy vpbraidings": [0, 65535], "was sawc'd with thy vpbraidings vnquiet": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "with thy vpbraidings vnquiet meales make": [0, 65535], "thy vpbraidings vnquiet meales make ill": [0, 65535], "vpbraidings vnquiet meales make ill digestions": [0, 65535], "vnquiet meales make ill digestions thereof": [0, 65535], "meales make ill digestions thereof the": [0, 65535], "make ill digestions thereof the raging": [0, 65535], "ill digestions thereof the raging fire": [0, 65535], "digestions thereof the raging fire of": [0, 65535], "thereof the raging fire of feauer": [0, 65535], "the raging fire of feauer bred": [0, 65535], "raging fire of feauer bred and": [0, 65535], "fire of feauer bred and what's": [0, 65535], "of feauer bred and what's a": [0, 65535], "feauer bred and what's a feauer": [0, 65535], "bred and what's a feauer but": [0, 65535], "and what's a feauer but a": [0, 65535], "what's a feauer but a fit": [0, 65535], "a feauer but a fit of": [0, 65535], "feauer but a fit of madnesse": [0, 65535], "but a fit of madnesse thou": [0, 65535], "a fit of madnesse thou sayest": [0, 65535], "fit of madnesse thou sayest his": [0, 65535], "of madnesse thou sayest his sports": [0, 65535], "madnesse thou sayest his sports were": [0, 65535], "thou sayest his sports were hindred": [0, 65535], "sayest his sports were hindred by": [0, 65535], "his sports were hindred by thy": [0, 65535], "sports were hindred by thy bralles": [0, 65535], "were hindred by thy bralles sweet": [0, 65535], "hindred by thy bralles sweet recreation": [0, 65535], "by thy bralles sweet recreation barr'd": [0, 65535], "thy bralles sweet recreation barr'd what": [0, 65535], "bralles sweet recreation barr'd what doth": [0, 65535], "sweet recreation barr'd what doth ensue": [0, 65535], "recreation barr'd what doth ensue but": [0, 65535], "barr'd what doth ensue but moodie": [0, 65535], "what doth ensue but moodie and": [0, 65535], "doth ensue but moodie and dull": [0, 65535], "ensue but moodie and dull melancholly": [0, 65535], "but moodie and dull melancholly kinsman": [0, 65535], "moodie and dull melancholly kinsman to": [0, 65535], "and dull melancholly kinsman to grim": [0, 65535], "dull melancholly kinsman to grim and": [0, 65535], "melancholly kinsman to grim and comfortlesse": [0, 65535], "kinsman to grim and comfortlesse dispaire": [0, 65535], "to grim and comfortlesse dispaire and": [0, 65535], "grim and comfortlesse dispaire and at": [0, 65535], "and comfortlesse dispaire and at her": [0, 65535], "comfortlesse dispaire and at her heeles": [0, 65535], "dispaire and at her heeles a": [0, 65535], "and at her heeles a huge": [0, 65535], "at her heeles a huge infectious": [0, 65535], "her heeles a huge infectious troope": [0, 65535], "heeles a huge infectious troope of": [0, 65535], "a huge infectious troope of pale": [0, 65535], "huge infectious troope of pale distemperatures": [0, 65535], "infectious troope of pale distemperatures and": [0, 65535], "troope of pale distemperatures and foes": [0, 65535], "of pale distemperatures and foes to": [0, 65535], "pale distemperatures and foes to life": [0, 65535], "distemperatures and foes to life in": [0, 65535], "and foes to life in food": [0, 65535], "foes to life in food in": [0, 65535], "to life in food in sport": [0, 65535], "life in food in sport and": [0, 65535], "in food in sport and life": [0, 65535], "food in sport and life preseruing": [0, 65535], "in sport and life preseruing rest": [0, 65535], "sport and life preseruing rest to": [0, 65535], "and life preseruing rest to be": [0, 65535], "life preseruing rest to be disturb'd": [0, 65535], "preseruing rest to be disturb'd would": [0, 65535], "rest to be disturb'd would mad": [0, 65535], "to be disturb'd would mad or": [0, 65535], "be disturb'd would mad or man": [0, 65535], "disturb'd would mad or man or": [0, 65535], "would mad or man or beast": [0, 65535], "mad or man or beast the": [0, 65535], "or man or beast the consequence": [0, 65535], "man or beast the consequence is": [0, 65535], "or beast the consequence is then": [0, 65535], "beast the consequence is then thy": [0, 65535], "the consequence is then thy iealous": [0, 65535], "consequence is then thy iealous fits": [0, 65535], "is then thy iealous fits hath": [0, 65535], "then thy iealous fits hath scar'd": [0, 65535], "thy iealous fits hath scar'd thy": [0, 65535], "iealous fits hath scar'd thy husband": [0, 65535], "fits hath scar'd thy husband from": [0, 65535], "hath scar'd thy husband from the": [0, 65535], "scar'd thy husband from the vse": [0, 65535], "thy husband from the vse of": [0, 65535], "husband from the vse of wits": [0, 65535], "from the vse of wits luc": [0, 65535], "the vse of wits luc she": [0, 65535], "vse of wits luc she neuer": [0, 65535], "of wits luc she neuer reprehended": [0, 65535], "wits luc she neuer reprehended him": [0, 65535], "luc she neuer reprehended him but": [0, 65535], "she neuer reprehended him but mildely": [0, 65535], "neuer reprehended him but mildely when": [0, 65535], "reprehended him but mildely when he": [0, 65535], "him but mildely when he demean'd": [0, 65535], "but mildely when he demean'd himselfe": [0, 65535], "mildely when he demean'd himselfe rough": [0, 65535], "when he demean'd himselfe rough rude": [0, 65535], "he demean'd himselfe rough rude and": [0, 65535], "demean'd himselfe rough rude and wildly": [0, 65535], "himselfe rough rude and wildly why": [0, 65535], "rough rude and wildly why beare": [0, 65535], "rude and wildly why beare you": [0, 65535], "and wildly why beare you these": [0, 65535], "wildly why beare you these rebukes": [0, 65535], "why beare you these rebukes and": [0, 65535], "beare you these rebukes and answer": [0, 65535], "you these rebukes and answer not": [0, 65535], "these rebukes and answer not adri": [0, 65535], "rebukes and answer not adri she": [0, 65535], "and answer not adri she did": [0, 65535], "answer not adri she did betray": [0, 65535], "not adri she did betray me": [0, 65535], "adri she did betray me to": [0, 65535], "she did betray me to my": [0, 65535], "did betray me to my owne": [0, 65535], "betray me to my owne reproofe": [0, 65535], "me to my owne reproofe good": [0, 65535], "to my owne reproofe good people": [0, 65535], "my owne reproofe good people enter": [0, 65535], "owne reproofe good people enter and": [0, 65535], "reproofe good people enter and lay": [0, 65535], "good people enter and lay hold": [0, 65535], "people enter and lay hold on": [0, 65535], "enter and lay hold on him": [0, 65535], "and lay hold on him ab": [0, 65535], "lay hold on him ab no": [0, 65535], "hold on him ab no not": [0, 65535], "on him ab no not a": [0, 65535], "him ab no not a creature": [0, 65535], "ab no not a creature enters": [0, 65535], "no not a creature enters in": [0, 65535], "not a creature enters in my": [0, 65535], "a creature enters in my house": [0, 65535], "creature enters in my house ad": [0, 65535], "enters in my house ad then": [0, 65535], "in my house ad then let": [0, 65535], "my house ad then let your": [0, 65535], "house ad then let your seruants": [0, 65535], "ad then let your seruants bring": [0, 65535], "then let your seruants bring my": [0, 65535], "let your seruants bring my husband": [0, 65535], "your seruants bring my husband forth": [0, 65535], "seruants bring my husband forth ab": [0, 65535], "bring my husband forth ab neither": [0, 65535], "my husband forth ab neither he": [0, 65535], "husband forth ab neither he tooke": [0, 65535], "forth ab neither he tooke this": [0, 65535], "ab neither he tooke this place": [0, 65535], "neither he tooke this place for": [0, 65535], "he tooke this place for sanctuary": [0, 65535], "tooke this place for sanctuary and": [0, 65535], "this place for sanctuary and it": [0, 65535], "place for sanctuary and it shall": [0, 65535], "for sanctuary and it shall priuiledge": [0, 65535], "sanctuary and it shall priuiledge him": [0, 65535], "and it shall priuiledge him from": [0, 65535], "it shall priuiledge him from your": [0, 65535], "shall priuiledge him from your hands": [0, 65535], "priuiledge him from your hands till": [0, 65535], "him from your hands till i": [0, 65535], "from your hands till i haue": [0, 65535], "your hands till i haue brought": [0, 65535], "hands till i haue brought him": [0, 65535], "till i haue brought him to": [0, 65535], "i haue brought him to his": [0, 65535], "haue brought him to his wits": [0, 65535], "brought him to his wits againe": [0, 65535], "him to his wits againe or": [0, 65535], "to his wits againe or loose": [0, 65535], "his wits againe or loose my": [0, 65535], "wits againe or loose my labour": [0, 65535], "againe or loose my labour in": [0, 65535], "or loose my labour in assaying": [0, 65535], "loose my labour in assaying it": [0, 65535], "my labour in assaying it adr": [0, 65535], "labour in assaying it adr i": [0, 65535], "in assaying it adr i will": [0, 65535], "assaying it adr i will attend": [0, 65535], "it adr i will attend my": [0, 65535], "adr i will attend my husband": [0, 65535], "i will attend my husband be": [0, 65535], "will attend my husband be his": [0, 65535], "attend my husband be his nurse": [0, 65535], "my husband be his nurse diet": [0, 65535], "husband be his nurse diet his": [0, 65535], "be his nurse diet his sicknesse": [0, 65535], "his nurse diet his sicknesse for": [0, 65535], "nurse diet his sicknesse for it": [0, 65535], "diet his sicknesse for it is": [0, 65535], "his sicknesse for it is my": [0, 65535], "sicknesse for it is my office": [0, 65535], "for it is my office and": [0, 65535], "it is my office and will": [0, 65535], "is my office and will haue": [0, 65535], "my office and will haue no": [0, 65535], "office and will haue no atturney": [0, 65535], "and will haue no atturney but": [0, 65535], "will haue no atturney but my": [0, 65535], "haue no atturney but my selfe": [0, 65535], "no atturney but my selfe and": [0, 65535], "atturney but my selfe and therefore": [0, 65535], "but my selfe and therefore let": [0, 65535], "my selfe and therefore let me": [0, 65535], "selfe and therefore let me haue": [0, 65535], "and therefore let me haue him": [0, 65535], "therefore let me haue him home": [0, 65535], "let me haue him home with": [0, 65535], "me haue him home with me": [0, 65535], "haue him home with me ab": [0, 65535], "him home with me ab be": [0, 65535], "home with me ab be patient": [0, 65535], "with me ab be patient for": [0, 65535], "me ab be patient for i": [0, 65535], "ab be patient for i will": [0, 65535], "be patient for i will not": [0, 65535], "patient for i will not let": [0, 65535], "for i will not let him": [0, 65535], "i will not let him stirre": [0, 65535], "will not let him stirre till": [0, 65535], "not let him stirre till i": [0, 65535], "let him stirre till i haue": [0, 65535], "him stirre till i haue vs'd": [0, 65535], "stirre till i haue vs'd the": [0, 65535], "till i haue vs'd the approoued": [0, 65535], "i haue vs'd the approoued meanes": [0, 65535], "haue vs'd the approoued meanes i": [0, 65535], "vs'd the approoued meanes i haue": [0, 65535], "the approoued meanes i haue with": [0, 65535], "approoued meanes i haue with wholsome": [0, 65535], "meanes i haue with wholsome sirrups": [0, 65535], "i haue with wholsome sirrups drugges": [0, 65535], "haue with wholsome sirrups drugges and": [0, 65535], "with wholsome sirrups drugges and holy": [0, 65535], "wholsome sirrups drugges and holy prayers": [0, 65535], "sirrups drugges and holy prayers to": [0, 65535], "drugges and holy prayers to make": [0, 65535], "and holy prayers to make of": [0, 65535], "holy prayers to make of him": [0, 65535], "prayers to make of him a": [0, 65535], "to make of him a formall": [0, 65535], "make of him a formall man": [0, 65535], "of him a formall man againe": [0, 65535], "him a formall man againe it": [0, 65535], "a formall man againe it is": [0, 65535], "formall man againe it is a": [0, 65535], "man againe it is a branch": [0, 65535], "againe it is a branch and": [0, 65535], "it is a branch and parcell": [0, 65535], "is a branch and parcell of": [0, 65535], "a branch and parcell of mine": [0, 65535], "branch and parcell of mine oath": [0, 65535], "and parcell of mine oath a": [0, 65535], "parcell of mine oath a charitable": [0, 65535], "of mine oath a charitable dutie": [0, 65535], "mine oath a charitable dutie of": [0, 65535], "oath a charitable dutie of my": [0, 65535], "a charitable dutie of my order": [0, 65535], "charitable dutie of my order therefore": [0, 65535], "dutie of my order therefore depart": [0, 65535], "of my order therefore depart and": [0, 65535], "my order therefore depart and leaue": [0, 65535], "order therefore depart and leaue him": [0, 65535], "therefore depart and leaue him heere": [0, 65535], "depart and leaue him heere with": [0, 65535], "and leaue him heere with me": [0, 65535], "leaue him heere with me adr": [0, 65535], "him heere with me adr i": [0, 65535], "heere with me adr i will": [0, 65535], "with me adr i will not": [0, 65535], "me adr i will not hence": [0, 65535], "adr i will not hence and": [0, 65535], "i will not hence and leaue": [0, 65535], "will not hence and leaue my": [0, 65535], "not hence and leaue my husband": [0, 65535], "hence and leaue my husband heere": [0, 65535], "and leaue my husband heere and": [0, 65535], "leaue my husband heere and ill": [0, 65535], "my husband heere and ill it": [0, 65535], "husband heere and ill it doth": [0, 65535], "heere and ill it doth beseeme": [0, 65535], "and ill it doth beseeme your": [0, 65535], "ill it doth beseeme your holinesse": [0, 65535], "it doth beseeme your holinesse to": [0, 65535], "doth beseeme your holinesse to separate": [0, 65535], "beseeme your holinesse to separate the": [0, 65535], "your holinesse to separate the husband": [0, 65535], "holinesse to separate the husband and": [0, 65535], "to separate the husband and the": [0, 65535], "separate the husband and the wife": [0, 65535], "the husband and the wife ab": [0, 65535], "husband and the wife ab be": [0, 65535], "and the wife ab be quiet": [0, 65535], "the wife ab be quiet and": [0, 65535], "wife ab be quiet and depart": [0, 65535], "ab be quiet and depart thou": [0, 65535], "be quiet and depart thou shalt": [0, 65535], "quiet and depart thou shalt not": [0, 65535], "and depart thou shalt not haue": [0, 65535], "depart thou shalt not haue him": [0, 65535], "thou shalt not haue him luc": [0, 65535], "shalt not haue him luc complaine": [0, 65535], "not haue him luc complaine vnto": [0, 65535], "haue him luc complaine vnto the": [0, 65535], "him luc complaine vnto the duke": [0, 65535], "luc complaine vnto the duke of": [0, 65535], "complaine vnto the duke of this": [0, 65535], "vnto the duke of this indignity": [0, 65535], "the duke of this indignity adr": [0, 65535], "duke of this indignity adr come": [0, 65535], "of this indignity adr come go": [0, 65535], "this indignity adr come go i": [0, 65535], "indignity adr come go i will": [0, 65535], "adr come go i will fall": [0, 65535], "come go i will fall prostrate": [0, 65535], "go i will fall prostrate at": [0, 65535], "i will fall prostrate at his": [0, 65535], "will fall prostrate at his feete": [0, 65535], "fall prostrate at his feete and": [0, 65535], "prostrate at his feete and neuer": [0, 65535], "at his feete and neuer rise": [0, 65535], "his feete and neuer rise vntill": [0, 65535], "feete and neuer rise vntill my": [0, 65535], "and neuer rise vntill my teares": [0, 65535], "neuer rise vntill my teares and": [0, 65535], "rise vntill my teares and prayers": [0, 65535], "vntill my teares and prayers haue": [0, 65535], "my teares and prayers haue won": [0, 65535], "teares and prayers haue won his": [0, 65535], "and prayers haue won his grace": [0, 65535], "prayers haue won his grace to": [0, 65535], "haue won his grace to come": [0, 65535], "won his grace to come in": [0, 65535], "his grace to come in person": [0, 65535], "grace to come in person hither": [0, 65535], "to come in person hither and": [0, 65535], "come in person hither and take": [0, 65535], "in person hither and take perforce": [0, 65535], "person hither and take perforce my": [0, 65535], "hither and take perforce my husband": [0, 65535], "and take perforce my husband from": [0, 65535], "take perforce my husband from the": [0, 65535], "perforce my husband from the abbesse": [0, 65535], "my husband from the abbesse mar": [0, 65535], "husband from the abbesse mar by": [0, 65535], "from the abbesse mar by this": [0, 65535], "the abbesse mar by this i": [0, 65535], "abbesse mar by this i thinke": [0, 65535], "mar by this i thinke the": [0, 65535], "by this i thinke the diall": [0, 65535], "this i thinke the diall points": [0, 65535], "i thinke the diall points at": [0, 65535], "thinke the diall points at fiue": [0, 65535], "the diall points at fiue anon": [0, 65535], "diall points at fiue anon i'me": [0, 65535], "points at fiue anon i'me sure": [0, 65535], "at fiue anon i'me sure the": [0, 65535], "fiue anon i'me sure the duke": [0, 65535], "anon i'me sure the duke himselfe": [0, 65535], "i'me sure the duke himselfe in": [0, 65535], "sure the duke himselfe in person": [0, 65535], "the duke himselfe in person comes": [0, 65535], "duke himselfe in person comes this": [0, 65535], "himselfe in person comes this way": [0, 65535], "in person comes this way to": [0, 65535], "person comes this way to the": [0, 65535], "comes this way to the melancholly": [0, 65535], "this way to the melancholly vale": [0, 65535], "way to the melancholly vale the": [0, 65535], "to the melancholly vale the place": [0, 65535], "the melancholly vale the place of": [0, 65535], "melancholly vale the place of depth": [0, 65535], "vale the place of depth and": [0, 65535], "the place of depth and sorrie": [0, 65535], "place of depth and sorrie execution": [0, 65535], "of depth and sorrie execution behinde": [0, 65535], "depth and sorrie execution behinde the": [0, 65535], "and sorrie execution behinde the ditches": [0, 65535], "sorrie execution behinde the ditches of": [0, 65535], "execution behinde the ditches of the": [0, 65535], "behinde the ditches of the abbey": [0, 65535], "the ditches of the abbey heere": [0, 65535], "ditches of the abbey heere gold": [0, 65535], "of the abbey heere gold vpon": [0, 65535], "the abbey heere gold vpon what": [0, 65535], "abbey heere gold vpon what cause": [0, 65535], "heere gold vpon what cause mar": [0, 65535], "gold vpon what cause mar to": [0, 65535], "vpon what cause mar to see": [0, 65535], "what cause mar to see a": [0, 65535], "cause mar to see a reuerent": [0, 65535], "mar to see a reuerent siracusian": [0, 65535], "to see a reuerent siracusian merchant": [0, 65535], "see a reuerent siracusian merchant who": [0, 65535], "a reuerent siracusian merchant who put": [0, 65535], "reuerent siracusian merchant who put vnluckily": [0, 65535], "siracusian merchant who put vnluckily into": [0, 65535], "merchant who put vnluckily into this": [0, 65535], "who put vnluckily into this bay": [0, 65535], "put vnluckily into this bay against": [0, 65535], "vnluckily into this bay against the": [0, 65535], "into this bay against the lawes": [0, 65535], "this bay against the lawes and": [0, 65535], "bay against the lawes and statutes": [0, 65535], "against the lawes and statutes of": [0, 65535], "the lawes and statutes of this": [0, 65535], "lawes and statutes of this towne": [0, 65535], "and statutes of this towne beheaded": [0, 65535], "statutes of this towne beheaded publikely": [0, 65535], "of this towne beheaded publikely for": [0, 65535], "this towne beheaded publikely for his": [0, 65535], "towne beheaded publikely for his offence": [0, 65535], "beheaded publikely for his offence gold": [0, 65535], "publikely for his offence gold see": [0, 65535], "for his offence gold see where": [0, 65535], "his offence gold see where they": [0, 65535], "offence gold see where they come": [0, 65535], "gold see where they come we": [0, 65535], "see where they come we wil": [0, 65535], "where they come we wil behold": [0, 65535], "they come we wil behold his": [0, 65535], "come we wil behold his death": [0, 65535], "we wil behold his death luc": [0, 65535], "wil behold his death luc kneele": [0, 65535], "behold his death luc kneele to": [0, 65535], "his death luc kneele to the": [0, 65535], "death luc kneele to the duke": [0, 65535], "luc kneele to the duke before": [0, 65535], "kneele to the duke before he": [0, 65535], "to the duke before he passe": [0, 65535], "the duke before he passe the": [0, 65535], "duke before he passe the abbey": [0, 65535], "before he passe the abbey enter": [0, 65535], "he passe the abbey enter the": [0, 65535], "passe the abbey enter the duke": [0, 65535], "the abbey enter the duke of": [0, 65535], "abbey enter the duke of ephesus": [0, 65535], "enter the duke of ephesus and": [0, 65535], "the duke of ephesus and the": [0, 65535], "duke of ephesus and the merchant": [0, 65535], "of ephesus and the merchant of": [0, 65535], "ephesus and the merchant of siracuse": [0, 65535], "and the merchant of siracuse bare": [0, 65535], "the merchant of siracuse bare head": [0, 65535], "merchant of siracuse bare head with": [0, 65535], "of siracuse bare head with the": [0, 65535], "siracuse bare head with the headsman": [0, 65535], "bare head with the headsman other": [0, 65535], "head with the headsman other officers": [0, 65535], "with the headsman other officers duke": [0, 65535], "the headsman other officers duke yet": [0, 65535], "headsman other officers duke yet once": [0, 65535], "other officers duke yet once againe": [0, 65535], "officers duke yet once againe proclaime": [0, 65535], "duke yet once againe proclaime it": [0, 65535], "yet once againe proclaime it publikely": [0, 65535], "once againe proclaime it publikely if": [0, 65535], "againe proclaime it publikely if any": [0, 65535], "proclaime it publikely if any friend": [0, 65535], "it publikely if any friend will": [0, 65535], "publikely if any friend will pay": [0, 65535], "if any friend will pay the": [0, 65535], "any friend will pay the summe": [0, 65535], "friend will pay the summe for": [0, 65535], "will pay the summe for him": [0, 65535], "pay the summe for him he": [0, 65535], "the summe for him he shall": [0, 65535], "summe for him he shall not": [0, 65535], "for him he shall not die": [0, 65535], "him he shall not die so": [0, 65535], "he shall not die so much": [0, 65535], "shall not die so much we": [0, 65535], "not die so much we tender": [0, 65535], "die so much we tender him": [0, 65535], "so much we tender him adr": [0, 65535], "much we tender him adr iustice": [0, 65535], "we tender him adr iustice most": [0, 65535], "tender him adr iustice most sacred": [0, 65535], "him adr iustice most sacred duke": [0, 65535], "adr iustice most sacred duke against": [0, 65535], "iustice most sacred duke against the": [0, 65535], "most sacred duke against the abbesse": [0, 65535], "sacred duke against the abbesse duke": [0, 65535], "duke against the abbesse duke she": [0, 65535], "against the abbesse duke she is": [0, 65535], "the abbesse duke she is a": [0, 65535], "abbesse duke she is a vertuous": [0, 65535], "duke she is a vertuous and": [0, 65535], "she is a vertuous and a": [0, 65535], "is a vertuous and a reuerend": [0, 65535], "a vertuous and a reuerend lady": [0, 65535], "vertuous and a reuerend lady it": [0, 65535], "and a reuerend lady it cannot": [0, 65535], "a reuerend lady it cannot be": [0, 65535], "reuerend lady it cannot be that": [0, 65535], "lady it cannot be that she": [0, 65535], "it cannot be that she hath": [0, 65535], "cannot be that she hath done": [0, 65535], "be that she hath done thee": [0, 65535], "that she hath done thee wrong": [0, 65535], "she hath done thee wrong adr": [0, 65535], "hath done thee wrong adr may": [0, 65535], "done thee wrong adr may it": [0, 65535], "thee wrong adr may it please": [0, 65535], "wrong adr may it please your": [0, 65535], "adr may it please your grace": [0, 65535], "may it please your grace antipholus": [0, 65535], "it please your grace antipholus my": [0, 65535], "please your grace antipholus my husba": [0, 65535], "your grace antipholus my husba n": [0, 65535], "grace antipholus my husba n d": [0, 65535], "antipholus my husba n d who": [0, 65535], "my husba n d who i": [0, 65535], "husba n d who i made": [0, 65535], "n d who i made lord": [0, 65535], "d who i made lord of": [0, 65535], "who i made lord of me": [0, 65535], "i made lord of me and": [0, 65535], "made lord of me and all": [0, 65535], "lord of me and all i": [0, 65535], "of me and all i had": [0, 65535], "me and all i had at": [0, 65535], "and all i had at your": [0, 65535], "all i had at your important": [0, 65535], "i had at your important letters": [0, 65535], "had at your important letters this": [0, 65535], "at your important letters this ill": [0, 65535], "your important letters this ill day": [0, 65535], "important letters this ill day a": [0, 65535], "letters this ill day a most": [0, 65535], "this ill day a most outragious": [0, 65535], "ill day a most outragious fit": [0, 65535], "day a most outragious fit of": [0, 65535], "a most outragious fit of madnesse": [0, 65535], "most outragious fit of madnesse tooke": [0, 65535], "outragious fit of madnesse tooke him": [0, 65535], "fit of madnesse tooke him that": [0, 65535], "of madnesse tooke him that desp'rately": [0, 65535], "madnesse tooke him that desp'rately he": [0, 65535], "tooke him that desp'rately he hurried": [0, 65535], "him that desp'rately he hurried through": [0, 65535], "that desp'rately he hurried through the": [0, 65535], "desp'rately he hurried through the streete": [0, 65535], "he hurried through the streete with": [0, 65535], "hurried through the streete with him": [0, 65535], "through the streete with him his": [0, 65535], "the streete with him his bondman": [0, 65535], "streete with him his bondman all": [0, 65535], "with him his bondman all as": [0, 65535], "him his bondman all as mad": [0, 65535], "his bondman all as mad as": [0, 65535], "bondman all as mad as he": [0, 65535], "all as mad as he doing": [0, 65535], "as mad as he doing displeasure": [0, 65535], "mad as he doing displeasure to": [0, 65535], "as he doing displeasure to the": [0, 65535], "he doing displeasure to the citizens": [0, 65535], "doing displeasure to the citizens by": [0, 65535], "displeasure to the citizens by rushing": [0, 65535], "to the citizens by rushing in": [0, 65535], "the citizens by rushing in their": [0, 65535], "citizens by rushing in their houses": [0, 65535], "by rushing in their houses bearing": [0, 65535], "rushing in their houses bearing thence": [0, 65535], "in their houses bearing thence rings": [0, 65535], "their houses bearing thence rings iewels": [0, 65535], "houses bearing thence rings iewels any": [0, 65535], "bearing thence rings iewels any thing": [0, 65535], "thence rings iewels any thing his": [0, 65535], "rings iewels any thing his rage": [0, 65535], "iewels any thing his rage did": [0, 65535], "any thing his rage did like": [0, 65535], "thing his rage did like once": [0, 65535], "his rage did like once did": [0, 65535], "rage did like once did i": [0, 65535], "did like once did i get": [0, 65535], "like once did i get him": [0, 65535], "once did i get him bound": [0, 65535], "did i get him bound and": [0, 65535], "i get him bound and sent": [0, 65535], "get him bound and sent him": [0, 65535], "him bound and sent him home": [0, 65535], "bound and sent him home whil'st": [0, 65535], "and sent him home whil'st to": [0, 65535], "sent him home whil'st to take": [0, 65535], "him home whil'st to take order": [0, 65535], "home whil'st to take order for": [0, 65535], "whil'st to take order for the": [0, 65535], "to take order for the wrongs": [0, 65535], "take order for the wrongs i": [0, 65535], "order for the wrongs i went": [0, 65535], "for the wrongs i went that": [0, 65535], "the wrongs i went that heere": [0, 65535], "wrongs i went that heere and": [0, 65535], "i went that heere and there": [0, 65535], "went that heere and there his": [0, 65535], "that heere and there his furie": [0, 65535], "heere and there his furie had": [0, 65535], "and there his furie had committed": [0, 65535], "there his furie had committed anon": [0, 65535], "his furie had committed anon i": [0, 65535], "furie had committed anon i wot": [0, 65535], "had committed anon i wot not": [0, 65535], "committed anon i wot not by": [0, 65535], "anon i wot not by what": [0, 65535], "i wot not by what strong": [0, 65535], "wot not by what strong escape": [0, 65535], "not by what strong escape he": [0, 65535], "by what strong escape he broke": [0, 65535], "what strong escape he broke from": [0, 65535], "strong escape he broke from those": [0, 65535], "escape he broke from those that": [0, 65535], "he broke from those that had": [0, 65535], "broke from those that had the": [0, 65535], "from those that had the guard": [0, 65535], "those that had the guard of": [0, 65535], "that had the guard of him": [0, 65535], "had the guard of him and": [0, 65535], "the guard of him and with": [0, 65535], "guard of him and with his": [0, 65535], "of him and with his mad": [0, 65535], "him and with his mad attendant": [0, 65535], "and with his mad attendant and": [0, 65535], "with his mad attendant and himselfe": [0, 65535], "his mad attendant and himselfe each": [0, 65535], "mad attendant and himselfe each one": [0, 65535], "attendant and himselfe each one with": [0, 65535], "and himselfe each one with irefull": [0, 65535], "himselfe each one with irefull passion": [0, 65535], "each one with irefull passion with": [0, 65535], "one with irefull passion with drawne": [0, 65535], "with irefull passion with drawne swords": [0, 65535], "irefull passion with drawne swords met": [0, 65535], "passion with drawne swords met vs": [0, 65535], "with drawne swords met vs againe": [0, 65535], "drawne swords met vs againe and": [0, 65535], "swords met vs againe and madly": [0, 65535], "met vs againe and madly bent": [0, 65535], "vs againe and madly bent on": [0, 65535], "againe and madly bent on vs": [0, 65535], "and madly bent on vs chac'd": [0, 65535], "madly bent on vs chac'd vs": [0, 65535], "bent on vs chac'd vs away": [0, 65535], "on vs chac'd vs away till": [0, 65535], "vs chac'd vs away till raising": [0, 65535], "chac'd vs away till raising of": [0, 65535], "vs away till raising of more": [0, 65535], "away till raising of more aide": [0, 65535], "till raising of more aide we": [0, 65535], "raising of more aide we came": [0, 65535], "of more aide we came againe": [0, 65535], "more aide we came againe to": [0, 65535], "aide we came againe to binde": [0, 65535], "we came againe to binde them": [0, 65535], "came againe to binde them then": [0, 65535], "againe to binde them then they": [0, 65535], "to binde them then they fled": [0, 65535], "binde them then they fled into": [0, 65535], "them then they fled into this": [0, 65535], "then they fled into this abbey": [0, 65535], "they fled into this abbey whether": [0, 65535], "fled into this abbey whether we": [0, 65535], "into this abbey whether we pursu'd": [0, 65535], "this abbey whether we pursu'd them": [0, 65535], "abbey whether we pursu'd them and": [0, 65535], "whether we pursu'd them and heere": [0, 65535], "we pursu'd them and heere the": [0, 65535], "pursu'd them and heere the abbesse": [0, 65535], "them and heere the abbesse shuts": [0, 65535], "and heere the abbesse shuts the": [0, 65535], "heere the abbesse shuts the gates": [0, 65535], "the abbesse shuts the gates on": [0, 65535], "abbesse shuts the gates on vs": [0, 65535], "shuts the gates on vs and": [0, 65535], "the gates on vs and will": [0, 65535], "gates on vs and will not": [0, 65535], "on vs and will not suffer": [0, 65535], "vs and will not suffer vs": [0, 65535], "and will not suffer vs to": [0, 65535], "will not suffer vs to fetch": [0, 65535], "not suffer vs to fetch him": [0, 65535], "suffer vs to fetch him out": [0, 65535], "vs to fetch him out nor": [0, 65535], "to fetch him out nor send": [0, 65535], "fetch him out nor send him": [0, 65535], "him out nor send him forth": [0, 65535], "out nor send him forth that": [0, 65535], "nor send him forth that we": [0, 65535], "send him forth that we may": [0, 65535], "him forth that we may beare": [0, 65535], "forth that we may beare him": [0, 65535], "that we may beare him hence": [0, 65535], "we may beare him hence therefore": [0, 65535], "may beare him hence therefore most": [0, 65535], "beare him hence therefore most gracious": [0, 65535], "him hence therefore most gracious duke": [0, 65535], "hence therefore most gracious duke with": [0, 65535], "therefore most gracious duke with thy": [0, 65535], "most gracious duke with thy command": [0, 65535], "gracious duke with thy command let": [0, 65535], "duke with thy command let him": [0, 65535], "with thy command let him be": [0, 65535], "thy command let him be brought": [0, 65535], "command let him be brought forth": [0, 65535], "let him be brought forth and": [0, 65535], "him be brought forth and borne": [0, 65535], "be brought forth and borne hence": [0, 65535], "brought forth and borne hence for": [0, 65535], "forth and borne hence for helpe": [0, 65535], "and borne hence for helpe duke": [0, 65535], "borne hence for helpe duke long": [0, 65535], "hence for helpe duke long since": [0, 65535], "for helpe duke long since thy": [0, 65535], "helpe duke long since thy husband": [0, 65535], "duke long since thy husband seru'd": [0, 65535], "long since thy husband seru'd me": [0, 65535], "since thy husband seru'd me in": [0, 65535], "thy husband seru'd me in my": [0, 65535], "husband seru'd me in my wars": [0, 65535], "seru'd me in my wars and": [0, 65535], "me in my wars and i": [0, 65535], "in my wars and i to": [0, 65535], "my wars and i to thee": [0, 65535], "wars and i to thee ingag'd": [0, 65535], "and i to thee ingag'd a": [0, 65535], "i to thee ingag'd a princes": [0, 65535], "to thee ingag'd a princes word": [0, 65535], "thee ingag'd a princes word when": [0, 65535], "ingag'd a princes word when thou": [0, 65535], "a princes word when thou didst": [0, 65535], "princes word when thou didst make": [0, 65535], "word when thou didst make him": [0, 65535], "when thou didst make him master": [0, 65535], "thou didst make him master of": [0, 65535], "didst make him master of thy": [0, 65535], "make him master of thy bed": [0, 65535], "him master of thy bed to": [0, 65535], "master of thy bed to do": [0, 65535], "of thy bed to do him": [0, 65535], "thy bed to do him all": [0, 65535], "bed to do him all the": [0, 65535], "to do him all the grace": [0, 65535], "do him all the grace and": [0, 65535], "him all the grace and good": [0, 65535], "all the grace and good i": [0, 65535], "the grace and good i could": [0, 65535], "grace and good i could go": [0, 65535], "and good i could go some": [0, 65535], "good i could go some of": [0, 65535], "i could go some of you": [0, 65535], "could go some of you knocke": [0, 65535], "go some of you knocke at": [0, 65535], "some of you knocke at the": [0, 65535], "of you knocke at the abbey": [0, 65535], "you knocke at the abbey gate": [0, 65535], "knocke at the abbey gate and": [0, 65535], "at the abbey gate and bid": [0, 65535], "the abbey gate and bid the": [0, 65535], "abbey gate and bid the lady": [0, 65535], "gate and bid the lady abbesse": [0, 65535], "and bid the lady abbesse come": [0, 65535], "bid the lady abbesse come to": [0, 65535], "the lady abbesse come to me": [0, 65535], "lady abbesse come to me i": [0, 65535], "abbesse come to me i will": [0, 65535], "come to me i will determine": [0, 65535], "to me i will determine this": [0, 65535], "me i will determine this before": [0, 65535], "i will determine this before i": [0, 65535], "will determine this before i stirre": [0, 65535], "determine this before i stirre enter": [0, 65535], "this before i stirre enter a": [0, 65535], "before i stirre enter a messenger": [0, 65535], "i stirre enter a messenger oh": [0, 65535], "stirre enter a messenger oh mistris": [0, 65535], "enter a messenger oh mistris mistris": [0, 65535], "a messenger oh mistris mistris shift": [0, 65535], "messenger oh mistris mistris shift and": [0, 65535], "oh mistris mistris shift and saue": [0, 65535], "mistris mistris shift and saue your": [0, 65535], "mistris shift and saue your selfe": [0, 65535], "shift and saue your selfe my": [0, 65535], "and saue your selfe my master": [0, 65535], "saue your selfe my master and": [0, 65535], "your selfe my master and his": [0, 65535], "selfe my master and his man": [0, 65535], "my master and his man are": [0, 65535], "master and his man are both": [0, 65535], "and his man are both broke": [0, 65535], "his man are both broke loose": [0, 65535], "man are both broke loose beaten": [0, 65535], "are both broke loose beaten the": [0, 65535], "both broke loose beaten the maids": [0, 65535], "broke loose beaten the maids a": [0, 65535], "loose beaten the maids a row": [0, 65535], "beaten the maids a row and": [0, 65535], "the maids a row and bound": [0, 65535], "maids a row and bound the": [0, 65535], "a row and bound the doctor": [0, 65535], "row and bound the doctor whose": [0, 65535], "and bound the doctor whose beard": [0, 65535], "bound the doctor whose beard they": [0, 65535], "the doctor whose beard they haue": [0, 65535], "doctor whose beard they haue sindg'd": [0, 65535], "whose beard they haue sindg'd off": [0, 65535], "beard they haue sindg'd off with": [0, 65535], "they haue sindg'd off with brands": [0, 65535], "haue sindg'd off with brands of": [0, 65535], "sindg'd off with brands of fire": [0, 65535], "off with brands of fire and": [0, 65535], "with brands of fire and euer": [0, 65535], "brands of fire and euer as": [0, 65535], "of fire and euer as it": [0, 65535], "fire and euer as it blaz'd": [0, 65535], "and euer as it blaz'd they": [0, 65535], "euer as it blaz'd they threw": [0, 65535], "as it blaz'd they threw on": [0, 65535], "it blaz'd they threw on him": [0, 65535], "blaz'd they threw on him great": [0, 65535], "they threw on him great pailes": [0, 65535], "threw on him great pailes of": [0, 65535], "on him great pailes of puddled": [0, 65535], "him great pailes of puddled myre": [0, 65535], "great pailes of puddled myre to": [0, 65535], "pailes of puddled myre to quench": [0, 65535], "of puddled myre to quench the": [0, 65535], "puddled myre to quench the haire": [0, 65535], "myre to quench the haire my": [0, 65535], "to quench the haire my mr": [0, 65535], "quench the haire my mr preaches": [0, 65535], "the haire my mr preaches patience": [0, 65535], "haire my mr preaches patience to": [0, 65535], "my mr preaches patience to him": [0, 65535], "mr preaches patience to him and": [0, 65535], "preaches patience to him and the": [0, 65535], "patience to him and the while": [0, 65535], "to him and the while his": [0, 65535], "him and the while his man": [0, 65535], "and the while his man with": [0, 65535], "the while his man with cizers": [0, 65535], "while his man with cizers nickes": [0, 65535], "his man with cizers nickes him": [0, 65535], "man with cizers nickes him like": [0, 65535], "with cizers nickes him like a": [0, 65535], "cizers nickes him like a foole": [0, 65535], "nickes him like a foole and": [0, 65535], "him like a foole and sure": [0, 65535], "like a foole and sure vnlesse": [0, 65535], "a foole and sure vnlesse you": [0, 65535], "foole and sure vnlesse you send": [0, 65535], "and sure vnlesse you send some": [0, 65535], "sure vnlesse you send some present": [0, 65535], "vnlesse you send some present helpe": [0, 65535], "you send some present helpe betweene": [0, 65535], "send some present helpe betweene them": [0, 65535], "some present helpe betweene them they": [0, 65535], "present helpe betweene them they will": [0, 65535], "helpe betweene them they will kill": [0, 65535], "betweene them they will kill the": [0, 65535], "them they will kill the coniurer": [0, 65535], "they will kill the coniurer adr": [0, 65535], "will kill the coniurer adr peace": [0, 65535], "kill the coniurer adr peace foole": [0, 65535], "the coniurer adr peace foole thy": [0, 65535], "coniurer adr peace foole thy master": [0, 65535], "adr peace foole thy master and": [0, 65535], "peace foole thy master and his": [0, 65535], "foole thy master and his man": [0, 65535], "thy master and his man are": [0, 65535], "master and his man are here": [0, 65535], "and his man are here and": [0, 65535], "his man are here and that": [0, 65535], "man are here and that is": [0, 65535], "are here and that is false": [0, 65535], "here and that is false thou": [0, 65535], "and that is false thou dost": [0, 65535], "that is false thou dost report": [0, 65535], "is false thou dost report to": [0, 65535], "false thou dost report to vs": [0, 65535], "thou dost report to vs mess": [0, 65535], "dost report to vs mess mistris": [0, 65535], "report to vs mess mistris vpon": [0, 65535], "to vs mess mistris vpon my": [0, 65535], "vs mess mistris vpon my life": [0, 65535], "mess mistris vpon my life i": [0, 65535], "mistris vpon my life i tel": [0, 65535], "vpon my life i tel you": [0, 65535], "my life i tel you true": [0, 65535], "life i tel you true i": [0, 65535], "i tel you true i haue": [0, 65535], "tel you true i haue not": [0, 65535], "you true i haue not breath'd": [0, 65535], "true i haue not breath'd almost": [0, 65535], "i haue not breath'd almost since": [0, 65535], "haue not breath'd almost since i": [0, 65535], "not breath'd almost since i did": [0, 65535], "breath'd almost since i did see": [0, 65535], "almost since i did see it": [0, 65535], "since i did see it he": [0, 65535], "i did see it he cries": [0, 65535], "did see it he cries for": [0, 65535], "see it he cries for you": [0, 65535], "it he cries for you and": [0, 65535], "he cries for you and vowes": [0, 65535], "cries for you and vowes if": [0, 65535], "for you and vowes if he": [0, 65535], "you and vowes if he can": [0, 65535], "and vowes if he can take": [0, 65535], "vowes if he can take you": [0, 65535], "if he can take you to": [0, 65535], "he can take you to scorch": [0, 65535], "can take you to scorch your": [0, 65535], "take you to scorch your face": [0, 65535], "you to scorch your face and": [0, 65535], "to scorch your face and to": [0, 65535], "scorch your face and to disfigure": [0, 65535], "your face and to disfigure you": [0, 65535], "face and to disfigure you cry": [0, 65535], "and to disfigure you cry within": [0, 65535], "to disfigure you cry within harke": [0, 65535], "disfigure you cry within harke harke": [0, 65535], "you cry within harke harke i": [0, 65535], "cry within harke harke i heare": [0, 65535], "within harke harke i heare him": [0, 65535], "harke harke i heare him mistris": [0, 65535], "harke i heare him mistris flie": [0, 65535], "i heare him mistris flie be": [0, 65535], "heare him mistris flie be gone": [0, 65535], "him mistris flie be gone duke": [0, 65535], "mistris flie be gone duke come": [0, 65535], "flie be gone duke come stand": [0, 65535], "be gone duke come stand by": [0, 65535], "gone duke come stand by me": [0, 65535], "duke come stand by me feare": [0, 65535], "come stand by me feare nothing": [0, 65535], "stand by me feare nothing guard": [0, 65535], "by me feare nothing guard with": [0, 65535], "me feare nothing guard with halberds": [0, 65535], "feare nothing guard with halberds adr": [0, 65535], "nothing guard with halberds adr ay": [0, 65535], "guard with halberds adr ay me": [0, 65535], "with halberds adr ay me it": [0, 65535], "halberds adr ay me it is": [0, 65535], "adr ay me it is my": [0, 65535], "ay me it is my husband": [0, 65535], "me it is my husband witnesse": [0, 65535], "it is my husband witnesse you": [0, 65535], "is my husband witnesse you that": [0, 65535], "my husband witnesse you that he": [0, 65535], "husband witnesse you that he is": [0, 65535], "witnesse you that he is borne": [0, 65535], "you that he is borne about": [0, 65535], "that he is borne about inuisible": [0, 65535], "he is borne about inuisible euen": [0, 65535], "is borne about inuisible euen now": [0, 65535], "borne about inuisible euen now we": [0, 65535], "about inuisible euen now we hous'd": [0, 65535], "inuisible euen now we hous'd him": [0, 65535], "euen now we hous'd him in": [0, 65535], "now we hous'd him in the": [0, 65535], "we hous'd him in the abbey": [0, 65535], "hous'd him in the abbey heere": [0, 65535], "him in the abbey heere and": [0, 65535], "in the abbey heere and now": [0, 65535], "the abbey heere and now he's": [0, 65535], "abbey heere and now he's there": [0, 65535], "heere and now he's there past": [0, 65535], "and now he's there past thought": [0, 65535], "now he's there past thought of": [0, 65535], "he's there past thought of humane": [0, 65535], "there past thought of humane reason": [0, 65535], "past thought of humane reason enter": [0, 65535], "thought of humane reason enter antipholus": [0, 65535], "of humane reason enter antipholus and": [0, 65535], "humane reason enter antipholus and e": [0, 65535], "reason enter antipholus and e dromio": [0, 65535], "enter antipholus and e dromio of": [0, 65535], "antipholus and e dromio of ephesus": [0, 65535], "and e dromio of ephesus e": [0, 65535], "e dromio of ephesus e ant": [0, 65535], "dromio of ephesus e ant iustice": [0, 65535], "of ephesus e ant iustice most": [0, 65535], "ephesus e ant iustice most gracious": [0, 65535], "e ant iustice most gracious duke": [0, 65535], "ant iustice most gracious duke oh": [0, 65535], "iustice most gracious duke oh grant": [0, 65535], "most gracious duke oh grant me": [0, 65535], "gracious duke oh grant me iustice": [0, 65535], "duke oh grant me iustice euen": [0, 65535], "oh grant me iustice euen for": [0, 65535], "grant me iustice euen for the": [0, 65535], "me iustice euen for the seruice": [0, 65535], "iustice euen for the seruice that": [0, 65535], "euen for the seruice that long": [0, 65535], "for the seruice that long since": [0, 65535], "the seruice that long since i": [0, 65535], "seruice that long since i did": [0, 65535], "that long since i did thee": [0, 65535], "long since i did thee when": [0, 65535], "since i did thee when i": [0, 65535], "i did thee when i bestrid": [0, 65535], "did thee when i bestrid thee": [0, 65535], "thee when i bestrid thee in": [0, 65535], "when i bestrid thee in the": [0, 65535], "i bestrid thee in the warres": [0, 65535], "bestrid thee in the warres and": [0, 65535], "thee in the warres and tooke": [0, 65535], "in the warres and tooke deepe": [0, 65535], "the warres and tooke deepe scarres": [0, 65535], "warres and tooke deepe scarres to": [0, 65535], "and tooke deepe scarres to saue": [0, 65535], "tooke deepe scarres to saue thy": [0, 65535], "deepe scarres to saue thy life": [0, 65535], "scarres to saue thy life euen": [0, 65535], "to saue thy life euen for": [0, 65535], "saue thy life euen for the": [0, 65535], "thy life euen for the blood": [0, 65535], "life euen for the blood that": [0, 65535], "euen for the blood that then": [0, 65535], "for the blood that then i": [0, 65535], "the blood that then i lost": [0, 65535], "blood that then i lost for": [0, 65535], "that then i lost for thee": [0, 65535], "then i lost for thee now": [0, 65535], "i lost for thee now grant": [0, 65535], "lost for thee now grant me": [0, 65535], "for thee now grant me iustice": [0, 65535], "thee now grant me iustice mar": [0, 65535], "now grant me iustice mar fat": [0, 65535], "grant me iustice mar fat vnlesse": [0, 65535], "me iustice mar fat vnlesse the": [0, 65535], "iustice mar fat vnlesse the feare": [0, 65535], "mar fat vnlesse the feare of": [0, 65535], "fat vnlesse the feare of death": [0, 65535], "vnlesse the feare of death doth": [0, 65535], "the feare of death doth make": [0, 65535], "feare of death doth make me": [0, 65535], "of death doth make me dote": [0, 65535], "death doth make me dote i": [0, 65535], "doth make me dote i see": [0, 65535], "make me dote i see my": [0, 65535], "me dote i see my sonne": [0, 65535], "dote i see my sonne antipholus": [0, 65535], "i see my sonne antipholus and": [0, 65535], "see my sonne antipholus and dromio": [0, 65535], "my sonne antipholus and dromio e": [0, 65535], "sonne antipholus and dromio e ant": [0, 65535], "antipholus and dromio e ant iustice": [0, 65535], "and dromio e ant iustice sweet": [0, 65535], "dromio e ant iustice sweet prince": [0, 65535], "e ant iustice sweet prince against": [0, 65535], "ant iustice sweet prince against that": [0, 65535], "iustice sweet prince against that woman": [0, 65535], "sweet prince against that woman there": [0, 65535], "prince against that woman there she": [0, 65535], "against that woman there she whom": [0, 65535], "that woman there she whom thou": [0, 65535], "woman there she whom thou gau'st": [0, 65535], "there she whom thou gau'st to": [0, 65535], "she whom thou gau'st to me": [0, 65535], "whom thou gau'st to me to": [0, 65535], "thou gau'st to me to be": [0, 65535], "gau'st to me to be my": [0, 65535], "to me to be my wife": [0, 65535], "me to be my wife that": [0, 65535], "to be my wife that hath": [0, 65535], "be my wife that hath abused": [0, 65535], "my wife that hath abused and": [0, 65535], "wife that hath abused and dishonored": [0, 65535], "that hath abused and dishonored me": [0, 65535], "hath abused and dishonored me euen": [0, 65535], "abused and dishonored me euen in": [0, 65535], "and dishonored me euen in the": [0, 65535], "dishonored me euen in the strength": [0, 65535], "me euen in the strength and": [0, 65535], "euen in the strength and height": [0, 65535], "in the strength and height of": [0, 65535], "the strength and height of iniurie": [0, 65535], "strength and height of iniurie beyond": [0, 65535], "and height of iniurie beyond imagination": [0, 65535], "height of iniurie beyond imagination is": [0, 65535], "of iniurie beyond imagination is the": [0, 65535], "iniurie beyond imagination is the wrong": [0, 65535], "beyond imagination is the wrong that": [0, 65535], "imagination is the wrong that she": [0, 65535], "is the wrong that she this": [0, 65535], "the wrong that she this day": [0, 65535], "wrong that she this day hath": [0, 65535], "that she this day hath shamelesse": [0, 65535], "she this day hath shamelesse throwne": [0, 65535], "this day hath shamelesse throwne on": [0, 65535], "day hath shamelesse throwne on me": [0, 65535], "hath shamelesse throwne on me duke": [0, 65535], "shamelesse throwne on me duke discouer": [0, 65535], "throwne on me duke discouer how": [0, 65535], "on me duke discouer how and": [0, 65535], "me duke discouer how and thou": [0, 65535], "duke discouer how and thou shalt": [0, 65535], "discouer how and thou shalt finde": [0, 65535], "how and thou shalt finde me": [0, 65535], "and thou shalt finde me iust": [0, 65535], "thou shalt finde me iust e": [0, 65535], "shalt finde me iust e ant": [0, 65535], "finde me iust e ant this": [0, 65535], "me iust e ant this day": [0, 65535], "iust e ant this day great": [0, 65535], "e ant this day great duke": [0, 65535], "ant this day great duke she": [0, 65535], "this day great duke she shut": [0, 65535], "day great duke she shut the": [0, 65535], "great duke she shut the doores": [0, 65535], "duke she shut the doores vpon": [0, 65535], "she shut the doores vpon me": [0, 65535], "shut the doores vpon me while": [0, 65535], "the doores vpon me while she": [0, 65535], "doores vpon me while she with": [0, 65535], "vpon me while she with harlots": [0, 65535], "me while she with harlots feasted": [0, 65535], "while she with harlots feasted in": [0, 65535], "she with harlots feasted in my": [0, 65535], "with harlots feasted in my house": [0, 65535], "harlots feasted in my house duke": [0, 65535], "feasted in my house duke a": [0, 65535], "in my house duke a greeuous": [0, 65535], "my house duke a greeuous fault": [0, 65535], "house duke a greeuous fault say": [0, 65535], "duke a greeuous fault say woman": [0, 65535], "a greeuous fault say woman didst": [0, 65535], "greeuous fault say woman didst thou": [0, 65535], "fault say woman didst thou so": [0, 65535], "say woman didst thou so adr": [0, 65535], "woman didst thou so adr no": [0, 65535], "didst thou so adr no my": [0, 65535], "thou so adr no my good": [0, 65535], "so adr no my good lord": [0, 65535], "adr no my good lord my": [0, 65535], "no my good lord my selfe": [0, 65535], "my good lord my selfe he": [0, 65535], "good lord my selfe he and": [0, 65535], "lord my selfe he and my": [0, 65535], "my selfe he and my sister": [0, 65535], "selfe he and my sister to": [0, 65535], "he and my sister to day": [0, 65535], "and my sister to day did": [0, 65535], "my sister to day did dine": [0, 65535], "sister to day did dine together": [0, 65535], "to day did dine together so": [0, 65535], "day did dine together so befall": [0, 65535], "did dine together so befall my": [0, 65535], "dine together so befall my soule": [0, 65535], "together so befall my soule as": [0, 65535], "so befall my soule as this": [0, 65535], "befall my soule as this is": [0, 65535], "my soule as this is false": [0, 65535], "soule as this is false he": [0, 65535], "as this is false he burthens": [0, 65535], "this is false he burthens me": [0, 65535], "is false he burthens me withall": [0, 65535], "false he burthens me withall luc": [0, 65535], "he burthens me withall luc nere": [0, 65535], "burthens me withall luc nere may": [0, 65535], "me withall luc nere may i": [0, 65535], "withall luc nere may i looke": [0, 65535], "luc nere may i looke on": [0, 65535], "nere may i looke on day": [0, 65535], "may i looke on day nor": [0, 65535], "i looke on day nor sleepe": [0, 65535], "looke on day nor sleepe on": [0, 65535], "on day nor sleepe on night": [0, 65535], "day nor sleepe on night but": [0, 65535], "nor sleepe on night but she": [0, 65535], "sleepe on night but she tels": [0, 65535], "on night but she tels to": [0, 65535], "night but she tels to your": [0, 65535], "but she tels to your highnesse": [0, 65535], "she tels to your highnesse simple": [0, 65535], "tels to your highnesse simple truth": [0, 65535], "to your highnesse simple truth gold": [0, 65535], "your highnesse simple truth gold o": [0, 65535], "highnesse simple truth gold o periur'd": [0, 65535], "simple truth gold o periur'd woman": [0, 65535], "truth gold o periur'd woman they": [0, 65535], "gold o periur'd woman they are": [0, 65535], "o periur'd woman they are both": [0, 65535], "periur'd woman they are both forsworne": [0, 65535], "woman they are both forsworne in": [0, 65535], "they are both forsworne in this": [0, 65535], "are both forsworne in this the": [0, 65535], "both forsworne in this the madman": [0, 65535], "forsworne in this the madman iustly": [0, 65535], "in this the madman iustly chargeth": [0, 65535], "this the madman iustly chargeth them": [0, 65535], "the madman iustly chargeth them e": [0, 65535], "madman iustly chargeth them e ant": [0, 65535], "iustly chargeth them e ant my": [0, 65535], "chargeth them e ant my liege": [0, 65535], "them e ant my liege i": [0, 65535], "e ant my liege i am": [0, 65535], "ant my liege i am aduised": [0, 65535], "my liege i am aduised what": [0, 65535], "liege i am aduised what i": [0, 65535], "i am aduised what i say": [0, 65535], "am aduised what i say neither": [0, 65535], "aduised what i say neither disturbed": [0, 65535], "what i say neither disturbed with": [0, 65535], "i say neither disturbed with the": [0, 65535], "say neither disturbed with the effect": [0, 65535], "neither disturbed with the effect of": [0, 65535], "disturbed with the effect of wine": [0, 65535], "with the effect of wine nor": [0, 65535], "the effect of wine nor headie": [0, 65535], "effect of wine nor headie rash": [0, 65535], "of wine nor headie rash prouoak'd": [0, 65535], "wine nor headie rash prouoak'd with": [0, 65535], "nor headie rash prouoak'd with raging": [0, 65535], "headie rash prouoak'd with raging ire": [0, 65535], "rash prouoak'd with raging ire albeit": [0, 65535], "prouoak'd with raging ire albeit my": [0, 65535], "with raging ire albeit my wrongs": [0, 65535], "raging ire albeit my wrongs might": [0, 65535], "ire albeit my wrongs might make": [0, 65535], "albeit my wrongs might make one": [0, 65535], "my wrongs might make one wiser": [0, 65535], "wrongs might make one wiser mad": [0, 65535], "might make one wiser mad this": [0, 65535], "make one wiser mad this woman": [0, 65535], "one wiser mad this woman lock'd": [0, 65535], "wiser mad this woman lock'd me": [0, 65535], "mad this woman lock'd me out": [0, 65535], "this woman lock'd me out this": [0, 65535], "woman lock'd me out this day": [0, 65535], "lock'd me out this day from": [0, 65535], "me out this day from dinner": [0, 65535], "out this day from dinner that": [0, 65535], "this day from dinner that goldsmith": [0, 65535], "day from dinner that goldsmith there": [0, 65535], "from dinner that goldsmith there were": [0, 65535], "dinner that goldsmith there were he": [0, 65535], "that goldsmith there were he not": [0, 65535], "goldsmith there were he not pack'd": [0, 65535], "there were he not pack'd with": [0, 65535], "were he not pack'd with her": [0, 65535], "he not pack'd with her could": [0, 65535], "not pack'd with her could witnesse": [0, 65535], "pack'd with her could witnesse it": [0, 65535], "with her could witnesse it for": [0, 65535], "her could witnesse it for he": [0, 65535], "could witnesse it for he was": [0, 65535], "witnesse it for he was with": [0, 65535], "it for he was with me": [0, 65535], "for he was with me then": [0, 65535], "he was with me then who": [0, 65535], "was with me then who parted": [0, 65535], "with me then who parted with": [0, 65535], "me then who parted with me": [0, 65535], "then who parted with me to": [0, 65535], "who parted with me to go": [0, 65535], "parted with me to go fetch": [0, 65535], "with me to go fetch a": [0, 65535], "me to go fetch a chaine": [0, 65535], "to go fetch a chaine promising": [0, 65535], "go fetch a chaine promising to": [0, 65535], "fetch a chaine promising to bring": [0, 65535], "a chaine promising to bring it": [0, 65535], "chaine promising to bring it to": [0, 65535], "promising to bring it to the": [0, 65535], "to bring it to the porpentine": [0, 65535], "bring it to the porpentine where": [0, 65535], "it to the porpentine where balthasar": [0, 65535], "to the porpentine where balthasar and": [0, 65535], "the porpentine where balthasar and i": [0, 65535], "porpentine where balthasar and i did": [0, 65535], "where balthasar and i did dine": [0, 65535], "balthasar and i did dine together": [0, 65535], "and i did dine together our": [0, 65535], "i did dine together our dinner": [0, 65535], "did dine together our dinner done": [0, 65535], "dine together our dinner done and": [0, 65535], "together our dinner done and he": [0, 65535], "our dinner done and he not": [0, 65535], "dinner done and he not comming": [0, 65535], "done and he not comming thither": [0, 65535], "and he not comming thither i": [0, 65535], "he not comming thither i went": [0, 65535], "not comming thither i went to": [0, 65535], "comming thither i went to seeke": [0, 65535], "thither i went to seeke him": [0, 65535], "i went to seeke him in": [0, 65535], "went to seeke him in the": [0, 65535], "to seeke him in the street": [0, 65535], "seeke him in the street i": [0, 65535], "him in the street i met": [0, 65535], "in the street i met him": [0, 65535], "the street i met him and": [0, 65535], "street i met him and in": [0, 65535], "i met him and in his": [0, 65535], "met him and in his companie": [0, 65535], "him and in his companie that": [0, 65535], "and in his companie that gentleman": [0, 65535], "in his companie that gentleman there": [0, 65535], "his companie that gentleman there did": [0, 65535], "companie that gentleman there did this": [0, 65535], "that gentleman there did this periur'd": [0, 65535], "gentleman there did this periur'd goldsmith": [0, 65535], "there did this periur'd goldsmith sweare": [0, 65535], "did this periur'd goldsmith sweare me": [0, 65535], "this periur'd goldsmith sweare me downe": [0, 65535], "periur'd goldsmith sweare me downe that": [0, 65535], "goldsmith sweare me downe that i": [0, 65535], "sweare me downe that i this": [0, 65535], "me downe that i this day": [0, 65535], "downe that i this day of": [0, 65535], "that i this day of him": [0, 65535], "i this day of him receiu'd": [0, 65535], "this day of him receiu'd the": [0, 65535], "day of him receiu'd the chaine": [0, 65535], "of him receiu'd the chaine which": [0, 65535], "him receiu'd the chaine which god": [0, 65535], "receiu'd the chaine which god he": [0, 65535], "the chaine which god he knowes": [0, 65535], "chaine which god he knowes i": [0, 65535], "which god he knowes i saw": [0, 65535], "god he knowes i saw not": [0, 65535], "he knowes i saw not for": [0, 65535], "knowes i saw not for the": [0, 65535], "i saw not for the which": [0, 65535], "saw not for the which he": [0, 65535], "not for the which he did": [0, 65535], "for the which he did arrest": [0, 65535], "the which he did arrest me": [0, 65535], "which he did arrest me with": [0, 65535], "he did arrest me with an": [0, 65535], "did arrest me with an officer": [0, 65535], "arrest me with an officer i": [0, 65535], "me with an officer i did": [0, 65535], "with an officer i did obey": [0, 65535], "an officer i did obey and": [0, 65535], "officer i did obey and sent": [0, 65535], "i did obey and sent my": [0, 65535], "did obey and sent my pesant": [0, 65535], "obey and sent my pesant home": [0, 65535], "and sent my pesant home for": [0, 65535], "sent my pesant home for certaine": [0, 65535], "my pesant home for certaine duckets": [0, 65535], "pesant home for certaine duckets he": [0, 65535], "home for certaine duckets he with": [0, 65535], "for certaine duckets he with none": [0, 65535], "certaine duckets he with none return'd": [0, 65535], "duckets he with none return'd then": [0, 65535], "he with none return'd then fairely": [0, 65535], "with none return'd then fairely i": [0, 65535], "none return'd then fairely i bespoke": [0, 65535], "return'd then fairely i bespoke the": [0, 65535], "then fairely i bespoke the officer": [0, 65535], "fairely i bespoke the officer to": [0, 65535], "i bespoke the officer to go": [0, 65535], "bespoke the officer to go in": [0, 65535], "the officer to go in person": [0, 65535], "officer to go in person with": [0, 65535], "to go in person with me": [0, 65535], "go in person with me to": [0, 65535], "in person with me to my": [0, 65535], "person with me to my house": [0, 65535], "with me to my house by'th'": [0, 65535], "me to my house by'th' way": [0, 65535], "to my house by'th' way we": [0, 65535], "my house by'th' way we met": [0, 65535], "house by'th' way we met my": [0, 65535], "by'th' way we met my wife": [0, 65535], "way we met my wife her": [0, 65535], "we met my wife her sister": [0, 65535], "met my wife her sister and": [0, 65535], "my wife her sister and a": [0, 65535], "wife her sister and a rabble": [0, 65535], "her sister and a rabble more": [0, 65535], "sister and a rabble more of": [0, 65535], "and a rabble more of vilde": [0, 65535], "a rabble more of vilde confederates": [0, 65535], "rabble more of vilde confederates along": [0, 65535], "more of vilde confederates along with": [0, 65535], "of vilde confederates along with them": [0, 65535], "vilde confederates along with them they": [0, 65535], "confederates along with them they brought": [0, 65535], "along with them they brought one": [0, 65535], "with them they brought one pinch": [0, 65535], "them they brought one pinch a": [0, 65535], "they brought one pinch a hungry": [0, 65535], "brought one pinch a hungry leane": [0, 65535], "one pinch a hungry leane fac'd": [0, 65535], "pinch a hungry leane fac'd villaine": [0, 65535], "a hungry leane fac'd villaine a": [0, 65535], "hungry leane fac'd villaine a meere": [0, 65535], "leane fac'd villaine a meere anatomie": [0, 65535], "fac'd villaine a meere anatomie a": [0, 65535], "villaine a meere anatomie a mountebanke": [0, 65535], "a meere anatomie a mountebanke a": [0, 65535], "meere anatomie a mountebanke a thred": [0, 65535], "anatomie a mountebanke a thred bare": [0, 65535], "a mountebanke a thred bare iugler": [0, 65535], "mountebanke a thred bare iugler and": [0, 65535], "a thred bare iugler and a": [0, 65535], "thred bare iugler and a fortune": [0, 65535], "bare iugler and a fortune teller": [0, 65535], "iugler and a fortune teller a": [0, 65535], "and a fortune teller a needy": [0, 65535], "a fortune teller a needy hollow": [0, 65535], "fortune teller a needy hollow ey'd": [0, 65535], "teller a needy hollow ey'd sharpe": [0, 65535], "a needy hollow ey'd sharpe looking": [0, 65535], "needy hollow ey'd sharpe looking wretch": [0, 65535], "hollow ey'd sharpe looking wretch a": [0, 65535], "ey'd sharpe looking wretch a liuing": [0, 65535], "sharpe looking wretch a liuing dead": [0, 65535], "looking wretch a liuing dead man": [0, 65535], "wretch a liuing dead man this": [0, 65535], "a liuing dead man this pernicious": [0, 65535], "liuing dead man this pernicious slaue": [0, 65535], "dead man this pernicious slaue forsooth": [0, 65535], "man this pernicious slaue forsooth tooke": [0, 65535], "this pernicious slaue forsooth tooke on": [0, 65535], "pernicious slaue forsooth tooke on him": [0, 65535], "slaue forsooth tooke on him as": [0, 65535], "forsooth tooke on him as a": [0, 65535], "tooke on him as a coniurer": [0, 65535], "on him as a coniurer and": [0, 65535], "him as a coniurer and gazing": [0, 65535], "as a coniurer and gazing in": [0, 65535], "a coniurer and gazing in mine": [0, 65535], "coniurer and gazing in mine eyes": [0, 65535], "and gazing in mine eyes feeling": [0, 65535], "gazing in mine eyes feeling my": [0, 65535], "in mine eyes feeling my pulse": [0, 65535], "mine eyes feeling my pulse and": [0, 65535], "eyes feeling my pulse and with": [0, 65535], "feeling my pulse and with no": [0, 65535], "my pulse and with no face": [0, 65535], "pulse and with no face as": [0, 65535], "and with no face as 'twere": [0, 65535], "with no face as 'twere out": [0, 65535], "no face as 'twere out facing": [0, 65535], "face as 'twere out facing me": [0, 65535], "as 'twere out facing me cries": [0, 65535], "'twere out facing me cries out": [0, 65535], "out facing me cries out i": [0, 65535], "facing me cries out i was": [0, 65535], "me cries out i was possest": [0, 65535], "cries out i was possest then": [0, 65535], "out i was possest then altogether": [0, 65535], "i was possest then altogether they": [0, 65535], "was possest then altogether they fell": [0, 65535], "possest then altogether they fell vpon": [0, 65535], "then altogether they fell vpon me": [0, 65535], "altogether they fell vpon me bound": [0, 65535], "they fell vpon me bound me": [0, 65535], "fell vpon me bound me bore": [0, 65535], "vpon me bound me bore me": [0, 65535], "me bound me bore me thence": [0, 65535], "bound me bore me thence and": [0, 65535], "me bore me thence and in": [0, 65535], "bore me thence and in a": [0, 65535], "me thence and in a darke": [0, 65535], "thence and in a darke and": [0, 65535], "and in a darke and dankish": [0, 65535], "in a darke and dankish vault": [0, 65535], "a darke and dankish vault at": [0, 65535], "darke and dankish vault at home": [0, 65535], "and dankish vault at home there": [0, 65535], "dankish vault at home there left": [0, 65535], "vault at home there left me": [0, 65535], "at home there left me and": [0, 65535], "home there left me and my": [0, 65535], "there left me and my man": [0, 65535], "left me and my man both": [0, 65535], "me and my man both bound": [0, 65535], "and my man both bound together": [0, 65535], "my man both bound together till": [0, 65535], "man both bound together till gnawing": [0, 65535], "both bound together till gnawing with": [0, 65535], "bound together till gnawing with my": [0, 65535], "together till gnawing with my teeth": [0, 65535], "till gnawing with my teeth my": [0, 65535], "gnawing with my teeth my bonds": [0, 65535], "with my teeth my bonds in": [0, 65535], "my teeth my bonds in sunder": [0, 65535], "teeth my bonds in sunder i": [0, 65535], "my bonds in sunder i gain'd": [0, 65535], "bonds in sunder i gain'd my": [0, 65535], "in sunder i gain'd my freedome": [0, 65535], "sunder i gain'd my freedome and": [0, 65535], "i gain'd my freedome and immediately": [0, 65535], "gain'd my freedome and immediately ran": [0, 65535], "my freedome and immediately ran hether": [0, 65535], "freedome and immediately ran hether to": [0, 65535], "and immediately ran hether to your": [0, 65535], "immediately ran hether to your grace": [0, 65535], "ran hether to your grace whom": [0, 65535], "hether to your grace whom i": [0, 65535], "to your grace whom i beseech": [0, 65535], "your grace whom i beseech to": [0, 65535], "grace whom i beseech to giue": [0, 65535], "whom i beseech to giue me": [0, 65535], "i beseech to giue me ample": [0, 65535], "beseech to giue me ample satisfaction": [0, 65535], "to giue me ample satisfaction for": [0, 65535], "giue me ample satisfaction for these": [0, 65535], "me ample satisfaction for these deepe": [0, 65535], "ample satisfaction for these deepe shames": [0, 65535], "satisfaction for these deepe shames and": [0, 65535], "for these deepe shames and great": [0, 65535], "these deepe shames and great indignities": [0, 65535], "deepe shames and great indignities gold": [0, 65535], "shames and great indignities gold my": [0, 65535], "and great indignities gold my lord": [0, 65535], "great indignities gold my lord in": [0, 65535], "indignities gold my lord in truth": [0, 65535], "gold my lord in truth thus": [0, 65535], "my lord in truth thus far": [0, 65535], "lord in truth thus far i": [0, 65535], "in truth thus far i witnes": [0, 65535], "truth thus far i witnes with": [0, 65535], "thus far i witnes with him": [0, 65535], "far i witnes with him that": [0, 65535], "i witnes with him that he": [0, 65535], "witnes with him that he din'd": [0, 65535], "with him that he din'd not": [0, 65535], "him that he din'd not at": [0, 65535], "that he din'd not at home": [0, 65535], "he din'd not at home but": [0, 65535], "din'd not at home but was": [0, 65535], "not at home but was lock'd": [0, 65535], "at home but was lock'd out": [0, 65535], "home but was lock'd out duke": [0, 65535], "but was lock'd out duke but": [0, 65535], "was lock'd out duke but had": [0, 65535], "lock'd out duke but had he": [0, 65535], "out duke but had he such": [0, 65535], "duke but had he such a": [0, 65535], "but had he such a chaine": [0, 65535], "had he such a chaine of": [0, 65535], "he such a chaine of thee": [0, 65535], "such a chaine of thee or": [0, 65535], "a chaine of thee or no": [0, 65535], "chaine of thee or no gold": [0, 65535], "of thee or no gold he": [0, 65535], "thee or no gold he had": [0, 65535], "or no gold he had my": [0, 65535], "no gold he had my lord": [0, 65535], "gold he had my lord and": [0, 65535], "he had my lord and when": [0, 65535], "had my lord and when he": [0, 65535], "my lord and when he ran": [0, 65535], "lord and when he ran in": [0, 65535], "and when he ran in heere": [0, 65535], "when he ran in heere these": [0, 65535], "he ran in heere these people": [0, 65535], "ran in heere these people saw": [0, 65535], "in heere these people saw the": [0, 65535], "heere these people saw the chaine": [0, 65535], "these people saw the chaine about": [0, 65535], "people saw the chaine about his": [0, 65535], "saw the chaine about his necke": [0, 65535], "the chaine about his necke mar": [0, 65535], "chaine about his necke mar besides": [0, 65535], "about his necke mar besides i": [0, 65535], "his necke mar besides i will": [0, 65535], "necke mar besides i will be": [0, 65535], "mar besides i will be sworne": [0, 65535], "besides i will be sworne these": [0, 65535], "i will be sworne these eares": [0, 65535], "will be sworne these eares of": [0, 65535], "be sworne these eares of mine": [0, 65535], "sworne these eares of mine heard": [0, 65535], "these eares of mine heard you": [0, 65535], "eares of mine heard you confesse": [0, 65535], "of mine heard you confesse you": [0, 65535], "mine heard you confesse you had": [0, 65535], "heard you confesse you had the": [0, 65535], "you confesse you had the chaine": [0, 65535], "confesse you had the chaine of": [0, 65535], "you had the chaine of him": [0, 65535], "had the chaine of him after": [0, 65535], "the chaine of him after you": [0, 65535], "chaine of him after you first": [0, 65535], "of him after you first forswore": [0, 65535], "him after you first forswore it": [0, 65535], "after you first forswore it on": [0, 65535], "you first forswore it on the": [0, 65535], "first forswore it on the mart": [0, 65535], "forswore it on the mart and": [0, 65535], "it on the mart and thereupon": [0, 65535], "on the mart and thereupon i": [0, 65535], "the mart and thereupon i drew": [0, 65535], "mart and thereupon i drew my": [0, 65535], "and thereupon i drew my sword": [0, 65535], "thereupon i drew my sword on": [0, 65535], "i drew my sword on you": [0, 65535], "drew my sword on you and": [0, 65535], "my sword on you and then": [0, 65535], "sword on you and then you": [0, 65535], "on you and then you fled": [0, 65535], "you and then you fled into": [0, 65535], "and then you fled into this": [0, 65535], "then you fled into this abbey": [0, 65535], "you fled into this abbey heere": [0, 65535], "fled into this abbey heere from": [0, 65535], "into this abbey heere from whence": [0, 65535], "this abbey heere from whence i": [0, 65535], "abbey heere from whence i thinke": [0, 65535], "heere from whence i thinke you": [0, 65535], "from whence i thinke you are": [0, 65535], "whence i thinke you are come": [0, 65535], "i thinke you are come by": [0, 65535], "thinke you are come by miracle": [0, 65535], "you are come by miracle e": [0, 65535], "are come by miracle e ant": [0, 65535], "come by miracle e ant i": [0, 65535], "by miracle e ant i neuer": [0, 65535], "miracle e ant i neuer came": [0, 65535], "e ant i neuer came within": [0, 65535], "ant i neuer came within these": [0, 65535], "i neuer came within these abbey": [0, 65535], "neuer came within these abbey wals": [0, 65535], "came within these abbey wals nor": [0, 65535], "within these abbey wals nor euer": [0, 65535], "these abbey wals nor euer didst": [0, 65535], "abbey wals nor euer didst thou": [0, 65535], "wals nor euer didst thou draw": [0, 65535], "nor euer didst thou draw thy": [0, 65535], "euer didst thou draw thy sword": [0, 65535], "didst thou draw thy sword on": [0, 65535], "thou draw thy sword on me": [0, 65535], "draw thy sword on me i": [0, 65535], "thy sword on me i neuer": [0, 65535], "sword on me i neuer saw": [0, 65535], "on me i neuer saw the": [0, 65535], "me i neuer saw the chaine": [0, 65535], "i neuer saw the chaine so": [0, 65535], "neuer saw the chaine so helpe": [0, 65535], "saw the chaine so helpe me": [0, 65535], "the chaine so helpe me heauen": [0, 65535], "chaine so helpe me heauen and": [0, 65535], "so helpe me heauen and this": [0, 65535], "helpe me heauen and this is": [0, 65535], "me heauen and this is false": [0, 65535], "heauen and this is false you": [0, 65535], "and this is false you burthen": [0, 65535], "this is false you burthen me": [0, 65535], "is false you burthen me withall": [0, 65535], "false you burthen me withall duke": [0, 65535], "you burthen me withall duke why": [0, 65535], "burthen me withall duke why what": [0, 65535], "me withall duke why what an": [0, 65535], "withall duke why what an intricate": [0, 65535], "duke why what an intricate impeach": [0, 65535], "why what an intricate impeach is": [0, 65535], "what an intricate impeach is this": [0, 65535], "an intricate impeach is this i": [0, 65535], "intricate impeach is this i thinke": [0, 65535], "impeach is this i thinke you": [0, 65535], "is this i thinke you all": [0, 65535], "this i thinke you all haue": [0, 65535], "i thinke you all haue drunke": [0, 65535], "thinke you all haue drunke of": [0, 65535], "you all haue drunke of circes": [0, 65535], "all haue drunke of circes cup": [0, 65535], "haue drunke of circes cup if": [0, 65535], "drunke of circes cup if heere": [0, 65535], "of circes cup if heere you": [0, 65535], "circes cup if heere you hous'd": [0, 65535], "cup if heere you hous'd him": [0, 65535], "if heere you hous'd him heere": [0, 65535], "heere you hous'd him heere he": [0, 65535], "you hous'd him heere he would": [0, 65535], "hous'd him heere he would haue": [0, 65535], "him heere he would haue bin": [0, 65535], "heere he would haue bin if": [0, 65535], "he would haue bin if he": [0, 65535], "would haue bin if he were": [0, 65535], "haue bin if he were mad": [0, 65535], "bin if he were mad he": [0, 65535], "if he were mad he would": [0, 65535], "he were mad he would not": [0, 65535], "were mad he would not pleade": [0, 65535], "mad he would not pleade so": [0, 65535], "he would not pleade so coldly": [0, 65535], "would not pleade so coldly you": [0, 65535], "not pleade so coldly you say": [0, 65535], "pleade so coldly you say he": [0, 65535], "so coldly you say he din'd": [0, 65535], "coldly you say he din'd at": [0, 65535], "you say he din'd at home": [0, 65535], "say he din'd at home the": [0, 65535], "he din'd at home the goldsmith": [0, 65535], "din'd at home the goldsmith heere": [0, 65535], "at home the goldsmith heere denies": [0, 65535], "home the goldsmith heere denies that": [0, 65535], "the goldsmith heere denies that saying": [0, 65535], "goldsmith heere denies that saying sirra": [0, 65535], "heere denies that saying sirra what": [0, 65535], "denies that saying sirra what say": [0, 65535], "that saying sirra what say you": [0, 65535], "saying sirra what say you e": [0, 65535], "sirra what say you e dro": [0, 65535], "what say you e dro sir": [0, 65535], "say you e dro sir he": [0, 65535], "you e dro sir he din'de": [0, 65535], "e dro sir he din'de with": [0, 65535], "dro sir he din'de with her": [0, 65535], "sir he din'de with her there": [0, 65535], "he din'de with her there at": [0, 65535], "din'de with her there at the": [0, 65535], "with her there at the porpentine": [0, 65535], "her there at the porpentine cur": [0, 65535], "there at the porpentine cur he": [0, 65535], "at the porpentine cur he did": [0, 65535], "the porpentine cur he did and": [0, 65535], "porpentine cur he did and from": [0, 65535], "cur he did and from my": [0, 65535], "he did and from my finger": [0, 65535], "did and from my finger snacht": [0, 65535], "and from my finger snacht that": [0, 65535], "from my finger snacht that ring": [0, 65535], "my finger snacht that ring e": [0, 65535], "finger snacht that ring e anti": [0, 65535], "snacht that ring e anti tis": [0, 65535], "that ring e anti tis true": [0, 65535], "ring e anti tis true my": [0, 65535], "e anti tis true my liege": [0, 65535], "anti tis true my liege this": [0, 65535], "tis true my liege this ring": [0, 65535], "true my liege this ring i": [0, 65535], "my liege this ring i had": [0, 65535], "liege this ring i had of": [0, 65535], "this ring i had of her": [0, 65535], "ring i had of her duke": [0, 65535], "i had of her duke saw'st": [0, 65535], "had of her duke saw'st thou": [0, 65535], "of her duke saw'st thou him": [0, 65535], "her duke saw'st thou him enter": [0, 65535], "duke saw'st thou him enter at": [0, 65535], "saw'st thou him enter at the": [0, 65535], "thou him enter at the abbey": [0, 65535], "him enter at the abbey heere": [0, 65535], "enter at the abbey heere curt": [0, 65535], "at the abbey heere curt as": [0, 65535], "the abbey heere curt as sure": [0, 65535], "abbey heere curt as sure my": [0, 65535], "heere curt as sure my liege": [0, 65535], "curt as sure my liege as": [0, 65535], "as sure my liege as i": [0, 65535], "sure my liege as i do": [0, 65535], "my liege as i do see": [0, 65535], "liege as i do see your": [0, 65535], "as i do see your grace": [0, 65535], "i do see your grace duke": [0, 65535], "do see your grace duke why": [0, 65535], "see your grace duke why this": [0, 65535], "your grace duke why this is": [0, 65535], "grace duke why this is straunge": [0, 65535], "duke why this is straunge go": [0, 65535], "why this is straunge go call": [0, 65535], "this is straunge go call the": [0, 65535], "is straunge go call the abbesse": [0, 65535], "straunge go call the abbesse hither": [0, 65535], "go call the abbesse hither i": [0, 65535], "call the abbesse hither i thinke": [0, 65535], "the abbesse hither i thinke you": [0, 65535], "abbesse hither i thinke you are": [0, 65535], "hither i thinke you are all": [0, 65535], "i thinke you are all mated": [0, 65535], "thinke you are all mated or": [0, 65535], "you are all mated or starke": [0, 65535], "are all mated or starke mad": [0, 65535], "all mated or starke mad exit": [0, 65535], "mated or starke mad exit one": [0, 65535], "or starke mad exit one to": [0, 65535], "starke mad exit one to the": [0, 65535], "mad exit one to the abbesse": [0, 65535], "exit one to the abbesse fa": [0, 65535], "one to the abbesse fa most": [0, 65535], "to the abbesse fa most mighty": [0, 65535], "the abbesse fa most mighty duke": [0, 65535], "abbesse fa most mighty duke vouchsafe": [0, 65535], "fa most mighty duke vouchsafe me": [0, 65535], "most mighty duke vouchsafe me speak": [0, 65535], "mighty duke vouchsafe me speak a": [0, 65535], "duke vouchsafe me speak a word": [0, 65535], "vouchsafe me speak a word haply": [0, 65535], "me speak a word haply i": [0, 65535], "speak a word haply i see": [0, 65535], "a word haply i see a": [0, 65535], "word haply i see a friend": [0, 65535], "haply i see a friend will": [0, 65535], "i see a friend will saue": [0, 65535], "see a friend will saue my": [0, 65535], "a friend will saue my life": [0, 65535], "friend will saue my life and": [0, 65535], "will saue my life and pay": [0, 65535], "saue my life and pay the": [0, 65535], "my life and pay the sum": [0, 65535], "life and pay the sum that": [0, 65535], "and pay the sum that may": [0, 65535], "pay the sum that may deliuer": [0, 65535], "the sum that may deliuer me": [0, 65535], "sum that may deliuer me duke": [0, 65535], "that may deliuer me duke speake": [0, 65535], "may deliuer me duke speake freely": [0, 65535], "deliuer me duke speake freely siracusian": [0, 65535], "me duke speake freely siracusian what": [0, 65535], "duke speake freely siracusian what thou": [0, 65535], "speake freely siracusian what thou wilt": [0, 65535], "freely siracusian what thou wilt fath": [0, 65535], "siracusian what thou wilt fath is": [0, 65535], "what thou wilt fath is not": [0, 65535], "thou wilt fath is not your": [0, 65535], "wilt fath is not your name": [0, 65535], "fath is not your name sir": [0, 65535], "is not your name sir call'd": [0, 65535], "not your name sir call'd antipholus": [0, 65535], "your name sir call'd antipholus and": [0, 65535], "name sir call'd antipholus and is": [0, 65535], "sir call'd antipholus and is not": [0, 65535], "call'd antipholus and is not that": [0, 65535], "antipholus and is not that your": [0, 65535], "and is not that your bondman": [0, 65535], "is not that your bondman dromio": [0, 65535], "not that your bondman dromio e": [0, 65535], "that your bondman dromio e dro": [0, 65535], "your bondman dromio e dro within": [0, 65535], "bondman dromio e dro within this": [0, 65535], "dromio e dro within this houre": [0, 65535], "e dro within this houre i": [0, 65535], "dro within this houre i was": [0, 65535], "within this houre i was his": [0, 65535], "this houre i was his bondman": [0, 65535], "houre i was his bondman sir": [0, 65535], "i was his bondman sir but": [0, 65535], "was his bondman sir but he": [0, 65535], "his bondman sir but he i": [0, 65535], "bondman sir but he i thanke": [0, 65535], "sir but he i thanke him": [0, 65535], "but he i thanke him gnaw'd": [0, 65535], "he i thanke him gnaw'd in": [0, 65535], "i thanke him gnaw'd in two": [0, 65535], "thanke him gnaw'd in two my": [0, 65535], "him gnaw'd in two my cords": [0, 65535], "gnaw'd in two my cords now": [0, 65535], "in two my cords now am": [0, 65535], "two my cords now am i": [0, 65535], "my cords now am i dromio": [0, 65535], "cords now am i dromio and": [0, 65535], "now am i dromio and his": [0, 65535], "am i dromio and his man": [0, 65535], "i dromio and his man vnbound": [0, 65535], "dromio and his man vnbound fath": [0, 65535], "and his man vnbound fath i": [0, 65535], "his man vnbound fath i am": [0, 65535], "man vnbound fath i am sure": [0, 65535], "vnbound fath i am sure you": [0, 65535], "fath i am sure you both": [0, 65535], "i am sure you both of": [0, 65535], "am sure you both of you": [0, 65535], "sure you both of you remember": [0, 65535], "you both of you remember me": [0, 65535], "both of you remember me dro": [0, 65535], "of you remember me dro our": [0, 65535], "you remember me dro our selues": [0, 65535], "remember me dro our selues we": [0, 65535], "me dro our selues we do": [0, 65535], "dro our selues we do remember": [0, 65535], "our selues we do remember sir": [0, 65535], "selues we do remember sir by": [0, 65535], "we do remember sir by you": [0, 65535], "do remember sir by you for": [0, 65535], "remember sir by you for lately": [0, 65535], "sir by you for lately we": [0, 65535], "by you for lately we were": [0, 65535], "you for lately we were bound": [0, 65535], "for lately we were bound as": [0, 65535], "lately we were bound as you": [0, 65535], "we were bound as you are": [0, 65535], "were bound as you are now": [0, 65535], "bound as you are now you": [0, 65535], "as you are now you are": [0, 65535], "you are now you are not": [0, 65535], "are now you are not pinches": [0, 65535], "now you are not pinches patient": [0, 65535], "you are not pinches patient are": [0, 65535], "are not pinches patient are you": [0, 65535], "not pinches patient are you sir": [0, 65535], "pinches patient are you sir father": [0, 65535], "patient are you sir father why": [0, 65535], "are you sir father why looke": [0, 65535], "you sir father why looke you": [0, 65535], "sir father why looke you strange": [0, 65535], "father why looke you strange on": [0, 65535], "why looke you strange on me": [0, 65535], "looke you strange on me you": [0, 65535], "you strange on me you know": [0, 65535], "strange on me you know me": [0, 65535], "on me you know me well": [0, 65535], "me you know me well e": [0, 65535], "you know me well e ant": [0, 65535], "know me well e ant i": [0, 65535], "me well e ant i neuer": [0, 65535], "well e ant i neuer saw": [0, 65535], "e ant i neuer saw you": [0, 65535], "ant i neuer saw you in": [0, 65535], "i neuer saw you in my": [0, 65535], "neuer saw you in my life": [0, 65535], "saw you in my life till": [0, 65535], "you in my life till now": [0, 65535], "in my life till now fa": [0, 65535], "my life till now fa oh": [0, 65535], "life till now fa oh griefe": [0, 65535], "till now fa oh griefe hath": [0, 65535], "now fa oh griefe hath chang'd": [0, 65535], "fa oh griefe hath chang'd me": [0, 65535], "oh griefe hath chang'd me since": [0, 65535], "griefe hath chang'd me since you": [0, 65535], "hath chang'd me since you saw": [0, 65535], "chang'd me since you saw me": [0, 65535], "me since you saw me last": [0, 65535], "since you saw me last and": [0, 65535], "you saw me last and carefull": [0, 65535], "saw me last and carefull houres": [0, 65535], "me last and carefull houres with": [0, 65535], "last and carefull houres with times": [0, 65535], "and carefull houres with times deformed": [0, 65535], "carefull houres with times deformed hand": [0, 65535], "houres with times deformed hand haue": [0, 65535], "with times deformed hand haue written": [0, 65535], "times deformed hand haue written strange": [0, 65535], "deformed hand haue written strange defeatures": [0, 65535], "hand haue written strange defeatures in": [0, 65535], "haue written strange defeatures in my": [0, 65535], "written strange defeatures in my face": [0, 65535], "strange defeatures in my face but": [0, 65535], "defeatures in my face but tell": [0, 65535], "in my face but tell me": [0, 65535], "my face but tell me yet": [0, 65535], "face but tell me yet dost": [0, 65535], "but tell me yet dost thou": [0, 65535], "tell me yet dost thou not": [0, 65535], "me yet dost thou not know": [0, 65535], "yet dost thou not know my": [0, 65535], "dost thou not know my voice": [0, 65535], "thou not know my voice ant": [0, 65535], "not know my voice ant neither": [0, 65535], "know my voice ant neither fat": [0, 65535], "my voice ant neither fat dromio": [0, 65535], "voice ant neither fat dromio nor": [0, 65535], "ant neither fat dromio nor thou": [0, 65535], "neither fat dromio nor thou dro": [0, 65535], "fat dromio nor thou dro no": [0, 65535], "dromio nor thou dro no trust": [0, 65535], "nor thou dro no trust me": [0, 65535], "thou dro no trust me sir": [0, 65535], "dro no trust me sir nor": [0, 65535], "no trust me sir nor i": [0, 65535], "trust me sir nor i fa": [0, 65535], "me sir nor i fa i": [0, 65535], "sir nor i fa i am": [0, 65535], "nor i fa i am sure": [0, 65535], "i fa i am sure thou": [0, 65535], "fa i am sure thou dost": [0, 65535], "i am sure thou dost e": [0, 65535], "am sure thou dost e dromio": [0, 65535], "sure thou dost e dromio i": [0, 65535], "thou dost e dromio i sir": [0, 65535], "dost e dromio i sir but": [0, 65535], "e dromio i sir but i": [0, 65535], "dromio i sir but i am": [0, 65535], "i sir but i am sure": [0, 65535], "sir but i am sure i": [0, 65535], "but i am sure i do": [0, 65535], "i am sure i do not": [0, 65535], "am sure i do not and": [0, 65535], "sure i do not and whatsoeuer": [0, 65535], "i do not and whatsoeuer a": [0, 65535], "do not and whatsoeuer a man": [0, 65535], "not and whatsoeuer a man denies": [0, 65535], "and whatsoeuer a man denies you": [0, 65535], "whatsoeuer a man denies you are": [0, 65535], "a man denies you are now": [0, 65535], "man denies you are now bound": [0, 65535], "denies you are now bound to": [0, 65535], "you are now bound to beleeue": [0, 65535], "are now bound to beleeue him": [0, 65535], "now bound to beleeue him fath": [0, 65535], "bound to beleeue him fath not": [0, 65535], "to beleeue him fath not know": [0, 65535], "beleeue him fath not know my": [0, 65535], "him fath not know my voice": [0, 65535], "fath not know my voice oh": [0, 65535], "not know my voice oh times": [0, 65535], "know my voice oh times extremity": [0, 65535], "my voice oh times extremity hast": [0, 65535], "voice oh times extremity hast thou": [0, 65535], "oh times extremity hast thou so": [0, 65535], "times extremity hast thou so crack'd": [0, 65535], "extremity hast thou so crack'd and": [0, 65535], "hast thou so crack'd and splitted": [0, 65535], "thou so crack'd and splitted my": [0, 65535], "so crack'd and splitted my poore": [0, 65535], "crack'd and splitted my poore tongue": [0, 65535], "and splitted my poore tongue in": [0, 65535], "splitted my poore tongue in seuen": [0, 65535], "my poore tongue in seuen short": [0, 65535], "poore tongue in seuen short yeares": [0, 65535], "tongue in seuen short yeares that": [0, 65535], "in seuen short yeares that heere": [0, 65535], "seuen short yeares that heere my": [0, 65535], "short yeares that heere my onely": [0, 65535], "yeares that heere my onely sonne": [0, 65535], "that heere my onely sonne knowes": [0, 65535], "heere my onely sonne knowes not": [0, 65535], "my onely sonne knowes not my": [0, 65535], "onely sonne knowes not my feeble": [0, 65535], "sonne knowes not my feeble key": [0, 65535], "knowes not my feeble key of": [0, 65535], "not my feeble key of vntun'd": [0, 65535], "my feeble key of vntun'd cares": [0, 65535], "feeble key of vntun'd cares though": [0, 65535], "key of vntun'd cares though now": [0, 65535], "of vntun'd cares though now this": [0, 65535], "vntun'd cares though now this grained": [0, 65535], "cares though now this grained face": [0, 65535], "though now this grained face of": [0, 65535], "now this grained face of mine": [0, 65535], "this grained face of mine be": [0, 65535], "grained face of mine be hid": [0, 65535], "face of mine be hid in": [0, 65535], "of mine be hid in sap": [0, 65535], "mine be hid in sap consuming": [0, 65535], "be hid in sap consuming winters": [0, 65535], "hid in sap consuming winters drizled": [0, 65535], "in sap consuming winters drizled snow": [0, 65535], "sap consuming winters drizled snow and": [0, 65535], "consuming winters drizled snow and all": [0, 65535], "winters drizled snow and all the": [0, 65535], "drizled snow and all the conduits": [0, 65535], "snow and all the conduits of": [0, 65535], "and all the conduits of my": [0, 65535], "all the conduits of my blood": [0, 65535], "the conduits of my blood froze": [0, 65535], "conduits of my blood froze vp": [0, 65535], "of my blood froze vp yet": [0, 65535], "my blood froze vp yet hath": [0, 65535], "blood froze vp yet hath my": [0, 65535], "froze vp yet hath my night": [0, 65535], "vp yet hath my night of": [0, 65535], "yet hath my night of life": [0, 65535], "hath my night of life some": [0, 65535], "my night of life some memorie": [0, 65535], "night of life some memorie my": [0, 65535], "of life some memorie my wasting": [0, 65535], "life some memorie my wasting lampes": [0, 65535], "some memorie my wasting lampes some": [0, 65535], "memorie my wasting lampes some fading": [0, 65535], "my wasting lampes some fading glimmer": [0, 65535], "wasting lampes some fading glimmer left": [0, 65535], "lampes some fading glimmer left my": [0, 65535], "some fading glimmer left my dull": [0, 65535], "fading glimmer left my dull deafe": [0, 65535], "glimmer left my dull deafe eares": [0, 65535], "left my dull deafe eares a": [0, 65535], "my dull deafe eares a little": [0, 65535], "dull deafe eares a little vse": [0, 65535], "deafe eares a little vse to": [0, 65535], "eares a little vse to heare": [0, 65535], "a little vse to heare all": [0, 65535], "little vse to heare all these": [0, 65535], "vse to heare all these old": [0, 65535], "to heare all these old witnesses": [0, 65535], "heare all these old witnesses i": [0, 65535], "all these old witnesses i cannot": [0, 65535], "these old witnesses i cannot erre": [0, 65535], "old witnesses i cannot erre tell": [0, 65535], "witnesses i cannot erre tell me": [0, 65535], "i cannot erre tell me thou": [0, 65535], "cannot erre tell me thou art": [0, 65535], "erre tell me thou art my": [0, 65535], "tell me thou art my sonne": [0, 65535], "me thou art my sonne antipholus": [0, 65535], "thou art my sonne antipholus ant": [0, 65535], "art my sonne antipholus ant i": [0, 65535], "my sonne antipholus ant i neuer": [0, 65535], "sonne antipholus ant i neuer saw": [0, 65535], "antipholus ant i neuer saw my": [0, 65535], "ant i neuer saw my father": [0, 65535], "i neuer saw my father in": [0, 65535], "neuer saw my father in my": [0, 65535], "saw my father in my life": [0, 65535], "my father in my life fa": [0, 65535], "father in my life fa but": [0, 65535], "in my life fa but seuen": [0, 65535], "my life fa but seuen yeares": [0, 65535], "life fa but seuen yeares since": [0, 65535], "fa but seuen yeares since in": [0, 65535], "but seuen yeares since in siracusa": [0, 65535], "seuen yeares since in siracusa boy": [0, 65535], "yeares since in siracusa boy thou": [0, 65535], "since in siracusa boy thou know'st": [0, 65535], "in siracusa boy thou know'st we": [0, 65535], "siracusa boy thou know'st we parted": [0, 65535], "boy thou know'st we parted but": [0, 65535], "thou know'st we parted but perhaps": [0, 65535], "know'st we parted but perhaps my": [0, 65535], "we parted but perhaps my sonne": [0, 65535], "parted but perhaps my sonne thou": [0, 65535], "but perhaps my sonne thou sham'st": [0, 65535], "perhaps my sonne thou sham'st to": [0, 65535], "my sonne thou sham'st to acknowledge": [0, 65535], "sonne thou sham'st to acknowledge me": [0, 65535], "thou sham'st to acknowledge me in": [0, 65535], "sham'st to acknowledge me in miserie": [0, 65535], "to acknowledge me in miserie ant": [0, 65535], "acknowledge me in miserie ant the": [0, 65535], "me in miserie ant the duke": [0, 65535], "in miserie ant the duke and": [0, 65535], "miserie ant the duke and all": [0, 65535], "ant the duke and all that": [0, 65535], "the duke and all that know": [0, 65535], "duke and all that know me": [0, 65535], "and all that know me in": [0, 65535], "all that know me in the": [0, 65535], "that know me in the city": [0, 65535], "know me in the city can": [0, 65535], "me in the city can witnesse": [0, 65535], "in the city can witnesse with": [0, 65535], "the city can witnesse with me": [0, 65535], "city can witnesse with me that": [0, 65535], "can witnesse with me that it": [0, 65535], "witnesse with me that it is": [0, 65535], "with me that it is not": [0, 65535], "me that it is not so": [0, 65535], "that it is not so i": [0, 65535], "it is not so i ne're": [0, 65535], "is not so i ne're saw": [0, 65535], "not so i ne're saw siracusa": [0, 65535], "so i ne're saw siracusa in": [0, 65535], "i ne're saw siracusa in my": [0, 65535], "ne're saw siracusa in my life": [0, 65535], "saw siracusa in my life duke": [0, 65535], "siracusa in my life duke i": [0, 65535], "in my life duke i tell": [0, 65535], "my life duke i tell thee": [0, 65535], "life duke i tell thee siracusian": [0, 65535], "duke i tell thee siracusian twentie": [0, 65535], "i tell thee siracusian twentie yeares": [0, 65535], "tell thee siracusian twentie yeares haue": [0, 65535], "thee siracusian twentie yeares haue i": [0, 65535], "siracusian twentie yeares haue i bin": [0, 65535], "twentie yeares haue i bin patron": [0, 65535], "yeares haue i bin patron to": [0, 65535], "haue i bin patron to antipholus": [0, 65535], "i bin patron to antipholus during": [0, 65535], "bin patron to antipholus during which": [0, 65535], "patron to antipholus during which time": [0, 65535], "to antipholus during which time he": [0, 65535], "antipholus during which time he ne're": [0, 65535], "during which time he ne're saw": [0, 65535], "which time he ne're saw siracusa": [0, 65535], "time he ne're saw siracusa i": [0, 65535], "he ne're saw siracusa i see": [0, 65535], "ne're saw siracusa i see thy": [0, 65535], "saw siracusa i see thy age": [0, 65535], "siracusa i see thy age and": [0, 65535], "i see thy age and dangers": [0, 65535], "see thy age and dangers make": [0, 65535], "thy age and dangers make thee": [0, 65535], "age and dangers make thee dote": [0, 65535], "and dangers make thee dote enter": [0, 65535], "dangers make thee dote enter the": [0, 65535], "make thee dote enter the abbesse": [0, 65535], "thee dote enter the abbesse with": [0, 65535], "dote enter the abbesse with antipholus": [0, 65535], "enter the abbesse with antipholus siracusa": [0, 65535], "the abbesse with antipholus siracusa and": [0, 65535], "abbesse with antipholus siracusa and dromio": [0, 65535], "with antipholus siracusa and dromio sir": [0, 65535], "antipholus siracusa and dromio sir abbesse": [0, 65535], "siracusa and dromio sir abbesse most": [0, 65535], "and dromio sir abbesse most mightie": [0, 65535], "dromio sir abbesse most mightie duke": [0, 65535], "sir abbesse most mightie duke behold": [0, 65535], "abbesse most mightie duke behold a": [0, 65535], "most mightie duke behold a man": [0, 65535], "mightie duke behold a man much": [0, 65535], "duke behold a man much wrong'd": [0, 65535], "behold a man much wrong'd all": [0, 65535], "a man much wrong'd all gather": [0, 65535], "man much wrong'd all gather to": [0, 65535], "much wrong'd all gather to see": [0, 65535], "wrong'd all gather to see them": [0, 65535], "all gather to see them adr": [0, 65535], "gather to see them adr i": [0, 65535], "to see them adr i see": [0, 65535], "see them adr i see two": [0, 65535], "them adr i see two husbands": [0, 65535], "adr i see two husbands or": [0, 65535], "i see two husbands or mine": [0, 65535], "see two husbands or mine eyes": [0, 65535], "two husbands or mine eyes deceiue": [0, 65535], "husbands or mine eyes deceiue me": [0, 65535], "or mine eyes deceiue me duke": [0, 65535], "mine eyes deceiue me duke one": [0, 65535], "eyes deceiue me duke one of": [0, 65535], "deceiue me duke one of these": [0, 65535], "me duke one of these men": [0, 65535], "duke one of these men is": [0, 65535], "one of these men is genius": [0, 65535], "of these men is genius to": [0, 65535], "these men is genius to the": [0, 65535], "men is genius to the other": [0, 65535], "is genius to the other and": [0, 65535], "genius to the other and so": [0, 65535], "to the other and so of": [0, 65535], "the other and so of these": [0, 65535], "other and so of these which": [0, 65535], "and so of these which is": [0, 65535], "so of these which is the": [0, 65535], "of these which is the naturall": [0, 65535], "these which is the naturall man": [0, 65535], "which is the naturall man and": [0, 65535], "is the naturall man and which": [0, 65535], "the naturall man and which the": [0, 65535], "naturall man and which the spirit": [0, 65535], "man and which the spirit who": [0, 65535], "and which the spirit who deciphers": [0, 65535], "which the spirit who deciphers them": [0, 65535], "the spirit who deciphers them s": [0, 65535], "spirit who deciphers them s dromio": [0, 65535], "who deciphers them s dromio i": [0, 65535], "deciphers them s dromio i sir": [0, 65535], "them s dromio i sir am": [0, 65535], "s dromio i sir am dromio": [0, 65535], "dromio i sir am dromio command": [0, 65535], "i sir am dromio command him": [0, 65535], "sir am dromio command him away": [0, 65535], "am dromio command him away e": [0, 65535], "dromio command him away e dro": [0, 65535], "command him away e dro i": [0, 65535], "him away e dro i sir": [0, 65535], "away e dro i sir am": [0, 65535], "e dro i sir am dromio": [0, 65535], "dro i sir am dromio pray": [0, 65535], "i sir am dromio pray let": [0, 65535], "sir am dromio pray let me": [0, 65535], "am dromio pray let me stay": [0, 65535], "dromio pray let me stay s": [0, 65535], "pray let me stay s ant": [0, 65535], "let me stay s ant egeon": [0, 65535], "me stay s ant egeon art": [0, 65535], "stay s ant egeon art thou": [0, 65535], "s ant egeon art thou not": [0, 65535], "ant egeon art thou not or": [0, 65535], "egeon art thou not or else": [0, 65535], "art thou not or else his": [0, 65535], "thou not or else his ghost": [0, 65535], "not or else his ghost s": [0, 65535], "or else his ghost s drom": [0, 65535], "else his ghost s drom oh": [0, 65535], "his ghost s drom oh my": [0, 65535], "ghost s drom oh my olde": [0, 65535], "s drom oh my olde master": [0, 65535], "drom oh my olde master who": [0, 65535], "oh my olde master who hath": [0, 65535], "my olde master who hath bound": [0, 65535], "olde master who hath bound him": [0, 65535], "master who hath bound him heere": [0, 65535], "who hath bound him heere abb": [0, 65535], "hath bound him heere abb who": [0, 65535], "bound him heere abb who euer": [0, 65535], "him heere abb who euer bound": [0, 65535], "heere abb who euer bound him": [0, 65535], "abb who euer bound him i": [0, 65535], "who euer bound him i will": [0, 65535], "euer bound him i will lose": [0, 65535], "bound him i will lose his": [0, 65535], "him i will lose his bonds": [0, 65535], "i will lose his bonds and": [0, 65535], "will lose his bonds and gaine": [0, 65535], "lose his bonds and gaine a": [0, 65535], "his bonds and gaine a husband": [0, 65535], "bonds and gaine a husband by": [0, 65535], "and gaine a husband by his": [0, 65535], "gaine a husband by his libertie": [0, 65535], "a husband by his libertie speake": [0, 65535], "husband by his libertie speake olde": [0, 65535], "by his libertie speake olde egeon": [0, 65535], "his libertie speake olde egeon if": [0, 65535], "libertie speake olde egeon if thou": [0, 65535], "speake olde egeon if thou bee'st": [0, 65535], "olde egeon if thou bee'st the": [0, 65535], "egeon if thou bee'st the man": [0, 65535], "if thou bee'st the man that": [0, 65535], "thou bee'st the man that hadst": [0, 65535], "bee'st the man that hadst a": [0, 65535], "the man that hadst a wife": [0, 65535], "man that hadst a wife once": [0, 65535], "that hadst a wife once call'd": [0, 65535], "hadst a wife once call'd \u00e6milia": [0, 65535], "a wife once call'd \u00e6milia that": [0, 65535], "wife once call'd \u00e6milia that bore": [0, 65535], "once call'd \u00e6milia that bore thee": [0, 65535], "call'd \u00e6milia that bore thee at": [0, 65535], "\u00e6milia that bore thee at a": [0, 65535], "that bore thee at a burthen": [0, 65535], "bore thee at a burthen two": [0, 65535], "thee at a burthen two faire": [0, 65535], "at a burthen two faire sonnes": [0, 65535], "a burthen two faire sonnes oh": [0, 65535], "burthen two faire sonnes oh if": [0, 65535], "two faire sonnes oh if thou": [0, 65535], "faire sonnes oh if thou bee'st": [0, 65535], "sonnes oh if thou bee'st the": [0, 65535], "oh if thou bee'st the same": [0, 65535], "if thou bee'st the same egeon": [0, 65535], "thou bee'st the same egeon speake": [0, 65535], "bee'st the same egeon speake and": [0, 65535], "the same egeon speake and speake": [0, 65535], "same egeon speake and speake vnto": [0, 65535], "egeon speake and speake vnto the": [0, 65535], "speake and speake vnto the same": [0, 65535], "and speake vnto the same \u00e6milia": [0, 65535], "speake vnto the same \u00e6milia duke": [0, 65535], "vnto the same \u00e6milia duke why": [0, 65535], "the same \u00e6milia duke why heere": [0, 65535], "same \u00e6milia duke why heere begins": [0, 65535], "\u00e6milia duke why heere begins his": [0, 65535], "duke why heere begins his morning": [0, 65535], "why heere begins his morning storie": [0, 65535], "heere begins his morning storie right": [0, 65535], "begins his morning storie right these": [0, 65535], "his morning storie right these twoantipholus": [0, 65535], "morning storie right these twoantipholus these": [0, 65535], "storie right these twoantipholus these two": [0, 65535], "right these twoantipholus these two so": [0, 65535], "these twoantipholus these two so like": [0, 65535], "twoantipholus these two so like and": [0, 65535], "these two so like and these": [0, 65535], "two so like and these two": [0, 65535], "so like and these two dromio's": [0, 65535], "like and these two dromio's one": [0, 65535], "and these two dromio's one in": [0, 65535], "these two dromio's one in semblance": [0, 65535], "two dromio's one in semblance besides": [0, 65535], "dromio's one in semblance besides her": [0, 65535], "one in semblance besides her vrging": [0, 65535], "in semblance besides her vrging of": [0, 65535], "semblance besides her vrging of her": [0, 65535], "besides her vrging of her wracke": [0, 65535], "her vrging of her wracke at": [0, 65535], "vrging of her wracke at sea": [0, 65535], "of her wracke at sea these": [0, 65535], "her wracke at sea these are": [0, 65535], "wracke at sea these are the": [0, 65535], "at sea these are the parents": [0, 65535], "sea these are the parents to": [0, 65535], "these are the parents to these": [0, 65535], "are the parents to these children": [0, 65535], "the parents to these children which": [0, 65535], "parents to these children which accidentally": [0, 65535], "to these children which accidentally are": [0, 65535], "these children which accidentally are met": [0, 65535], "children which accidentally are met together": [0, 65535], "which accidentally are met together fa": [0, 65535], "accidentally are met together fa if": [0, 65535], "are met together fa if i": [0, 65535], "met together fa if i dreame": [0, 65535], "together fa if i dreame not": [0, 65535], "fa if i dreame not thou": [0, 65535], "if i dreame not thou art": [0, 65535], "i dreame not thou art \u00e6milia": [0, 65535], "dreame not thou art \u00e6milia if": [0, 65535], "not thou art \u00e6milia if thou": [0, 65535], "thou art \u00e6milia if thou art": [0, 65535], "art \u00e6milia if thou art she": [0, 65535], "\u00e6milia if thou art she tell": [0, 65535], "if thou art she tell me": [0, 65535], "thou art she tell me where": [0, 65535], "art she tell me where is": [0, 65535], "she tell me where is that": [0, 65535], "tell me where is that sonne": [0, 65535], "me where is that sonne that": [0, 65535], "where is that sonne that floated": [0, 65535], "is that sonne that floated with": [0, 65535], "that sonne that floated with thee": [0, 65535], "sonne that floated with thee on": [0, 65535], "that floated with thee on the": [0, 65535], "floated with thee on the fatall": [0, 65535], "with thee on the fatall rafte": [0, 65535], "thee on the fatall rafte abb": [0, 65535], "on the fatall rafte abb by": [0, 65535], "the fatall rafte abb by men": [0, 65535], "fatall rafte abb by men of": [0, 65535], "rafte abb by men of epidamium": [0, 65535], "abb by men of epidamium he": [0, 65535], "by men of epidamium he and": [0, 65535], "men of epidamium he and i": [0, 65535], "of epidamium he and i and": [0, 65535], "epidamium he and i and the": [0, 65535], "he and i and the twin": [0, 65535], "and i and the twin dromio": [0, 65535], "i and the twin dromio all": [0, 65535], "and the twin dromio all were": [0, 65535], "the twin dromio all were taken": [0, 65535], "twin dromio all were taken vp": [0, 65535], "dromio all were taken vp but": [0, 65535], "all were taken vp but by": [0, 65535], "were taken vp but by and": [0, 65535], "taken vp but by and by": [0, 65535], "vp but by and by rude": [0, 65535], "but by and by rude fishermen": [0, 65535], "by and by rude fishermen of": [0, 65535], "and by rude fishermen of corinth": [0, 65535], "by rude fishermen of corinth by": [0, 65535], "rude fishermen of corinth by force": [0, 65535], "fishermen of corinth by force tooke": [0, 65535], "of corinth by force tooke dromio": [0, 65535], "corinth by force tooke dromio and": [0, 65535], "by force tooke dromio and my": [0, 65535], "force tooke dromio and my sonne": [0, 65535], "tooke dromio and my sonne from": [0, 65535], "dromio and my sonne from them": [0, 65535], "and my sonne from them and": [0, 65535], "my sonne from them and me": [0, 65535], "sonne from them and me they": [0, 65535], "from them and me they left": [0, 65535], "them and me they left with": [0, 65535], "and me they left with those": [0, 65535], "me they left with those of": [0, 65535], "they left with those of epidamium": [0, 65535], "left with those of epidamium what": [0, 65535], "with those of epidamium what then": [0, 65535], "those of epidamium what then became": [0, 65535], "of epidamium what then became of": [0, 65535], "epidamium what then became of them": [0, 65535], "what then became of them i": [0, 65535], "then became of them i cannot": [0, 65535], "became of them i cannot tell": [0, 65535], "of them i cannot tell i": [0, 65535], "them i cannot tell i to": [0, 65535], "i cannot tell i to this": [0, 65535], "cannot tell i to this fortune": [0, 65535], "tell i to this fortune that": [0, 65535], "i to this fortune that you": [0, 65535], "to this fortune that you see": [0, 65535], "this fortune that you see mee": [0, 65535], "fortune that you see mee in": [0, 65535], "that you see mee in duke": [0, 65535], "you see mee in duke antipholus": [0, 65535], "see mee in duke antipholus thou": [0, 65535], "mee in duke antipholus thou cam'st": [0, 65535], "in duke antipholus thou cam'st from": [0, 65535], "duke antipholus thou cam'st from corinth": [0, 65535], "antipholus thou cam'st from corinth first": [0, 65535], "thou cam'st from corinth first s": [0, 65535], "cam'st from corinth first s ant": [0, 65535], "from corinth first s ant no": [0, 65535], "corinth first s ant no sir": [0, 65535], "first s ant no sir not": [0, 65535], "s ant no sir not i": [0, 65535], "ant no sir not i i": [0, 65535], "no sir not i i came": [0, 65535], "sir not i i came from": [0, 65535], "not i i came from siracuse": [0, 65535], "i i came from siracuse duke": [0, 65535], "i came from siracuse duke stay": [0, 65535], "came from siracuse duke stay stand": [0, 65535], "from siracuse duke stay stand apart": [0, 65535], "siracuse duke stay stand apart i": [0, 65535], "duke stay stand apart i know": [0, 65535], "stay stand apart i know not": [0, 65535], "stand apart i know not which": [0, 65535], "apart i know not which is": [0, 65535], "i know not which is which": [0, 65535], "know not which is which e": [0, 65535], "not which is which e ant": [0, 65535], "which is which e ant i": [0, 65535], "is which e ant i came": [0, 65535], "which e ant i came from": [0, 65535], "e ant i came from corinth": [0, 65535], "ant i came from corinth my": [0, 65535], "i came from corinth my most": [0, 65535], "came from corinth my most gracious": [0, 65535], "from corinth my most gracious lord": [0, 65535], "corinth my most gracious lord e": [0, 65535], "my most gracious lord e dro": [0, 65535], "most gracious lord e dro and": [0, 65535], "gracious lord e dro and i": [0, 65535], "lord e dro and i with": [0, 65535], "e dro and i with him": [0, 65535], "dro and i with him e": [0, 65535], "and i with him e ant": [0, 65535], "i with him e ant brought": [0, 65535], "with him e ant brought to": [0, 65535], "him e ant brought to this": [0, 65535], "e ant brought to this town": [0, 65535], "ant brought to this town by": [0, 65535], "brought to this town by that": [0, 65535], "to this town by that most": [0, 65535], "this town by that most famous": [0, 65535], "town by that most famous warriour": [0, 65535], "by that most famous warriour duke": [0, 65535], "that most famous warriour duke menaphon": [0, 65535], "most famous warriour duke menaphon your": [0, 65535], "famous warriour duke menaphon your most": [0, 65535], "warriour duke menaphon your most renowned": [0, 65535], "duke menaphon your most renowned vnckle": [0, 65535], "menaphon your most renowned vnckle adr": [0, 65535], "your most renowned vnckle adr which": [0, 65535], "most renowned vnckle adr which of": [0, 65535], "renowned vnckle adr which of you": [0, 65535], "vnckle adr which of you two": [0, 65535], "adr which of you two did": [0, 65535], "which of you two did dine": [0, 65535], "of you two did dine with": [0, 65535], "you two did dine with me": [0, 65535], "two did dine with me to": [0, 65535], "did dine with me to day": [0, 65535], "dine with me to day s": [0, 65535], "with me to day s ant": [0, 65535], "me to day s ant i": [0, 65535], "to day s ant i gentle": [0, 65535], "day s ant i gentle mistris": [0, 65535], "s ant i gentle mistris adr": [0, 65535], "ant i gentle mistris adr and": [0, 65535], "i gentle mistris adr and are": [0, 65535], "gentle mistris adr and are not": [0, 65535], "mistris adr and are not you": [0, 65535], "adr and are not you my": [0, 65535], "and are not you my husband": [0, 65535], "are not you my husband e": [0, 65535], "not you my husband e ant": [0, 65535], "you my husband e ant no": [0, 65535], "my husband e ant no i": [0, 65535], "husband e ant no i say": [0, 65535], "e ant no i say nay": [0, 65535], "ant no i say nay to": [0, 65535], "no i say nay to that": [0, 65535], "i say nay to that s": [0, 65535], "say nay to that s ant": [0, 65535], "nay to that s ant and": [0, 65535], "to that s ant and so": [0, 65535], "that s ant and so do": [0, 65535], "s ant and so do i": [0, 65535], "ant and so do i yet": [0, 65535], "and so do i yet did": [0, 65535], "so do i yet did she": [0, 65535], "do i yet did she call": [0, 65535], "i yet did she call me": [0, 65535], "yet did she call me so": [0, 65535], "did she call me so and": [0, 65535], "she call me so and this": [0, 65535], "call me so and this faire": [0, 65535], "me so and this faire gentlewoman": [0, 65535], "so and this faire gentlewoman her": [0, 65535], "and this faire gentlewoman her sister": [0, 65535], "this faire gentlewoman her sister heere": [0, 65535], "faire gentlewoman her sister heere did": [0, 65535], "gentlewoman her sister heere did call": [0, 65535], "her sister heere did call me": [0, 65535], "sister heere did call me brother": [0, 65535], "heere did call me brother what": [0, 65535], "did call me brother what i": [0, 65535], "call me brother what i told": [0, 65535], "me brother what i told you": [0, 65535], "brother what i told you then": [0, 65535], "what i told you then i": [0, 65535], "i told you then i hope": [0, 65535], "told you then i hope i": [0, 65535], "you then i hope i shall": [0, 65535], "then i hope i shall haue": [0, 65535], "i hope i shall haue leisure": [0, 65535], "hope i shall haue leisure to": [0, 65535], "i shall haue leisure to make": [0, 65535], "shall haue leisure to make good": [0, 65535], "haue leisure to make good if": [0, 65535], "leisure to make good if this": [0, 65535], "to make good if this be": [0, 65535], "make good if this be not": [0, 65535], "good if this be not a": [0, 65535], "if this be not a dreame": [0, 65535], "this be not a dreame i": [0, 65535], "be not a dreame i see": [0, 65535], "not a dreame i see and": [0, 65535], "a dreame i see and heare": [0, 65535], "dreame i see and heare goldsmith": [0, 65535], "i see and heare goldsmith that": [0, 65535], "see and heare goldsmith that is": [0, 65535], "and heare goldsmith that is the": [0, 65535], "heare goldsmith that is the chaine": [0, 65535], "goldsmith that is the chaine sir": [0, 65535], "that is the chaine sir which": [0, 65535], "is the chaine sir which you": [0, 65535], "the chaine sir which you had": [0, 65535], "chaine sir which you had of": [0, 65535], "sir which you had of mee": [0, 65535], "which you had of mee s": [0, 65535], "you had of mee s ant": [0, 65535], "had of mee s ant i": [0, 65535], "of mee s ant i thinke": [0, 65535], "mee s ant i thinke it": [0, 65535], "s ant i thinke it be": [0, 65535], "ant i thinke it be sir": [0, 65535], "i thinke it be sir i": [0, 65535], "thinke it be sir i denie": [0, 65535], "it be sir i denie it": [0, 65535], "be sir i denie it not": [0, 65535], "sir i denie it not e": [0, 65535], "i denie it not e ant": [0, 65535], "denie it not e ant and": [0, 65535], "it not e ant and you": [0, 65535], "not e ant and you sir": [0, 65535], "e ant and you sir for": [0, 65535], "ant and you sir for this": [0, 65535], "and you sir for this chaine": [0, 65535], "you sir for this chaine arrested": [0, 65535], "sir for this chaine arrested me": [0, 65535], "for this chaine arrested me gold": [0, 65535], "this chaine arrested me gold i": [0, 65535], "chaine arrested me gold i thinke": [0, 65535], "arrested me gold i thinke i": [0, 65535], "me gold i thinke i did": [0, 65535], "gold i thinke i did sir": [0, 65535], "i thinke i did sir i": [0, 65535], "thinke i did sir i deny": [0, 65535], "i did sir i deny it": [0, 65535], "did sir i deny it not": [0, 65535], "sir i deny it not adr": [0, 65535], "i deny it not adr i": [0, 65535], "deny it not adr i sent": [0, 65535], "it not adr i sent you": [0, 65535], "not adr i sent you monie": [0, 65535], "adr i sent you monie sir": [0, 65535], "i sent you monie sir to": [0, 65535], "sent you monie sir to be": [0, 65535], "you monie sir to be your": [0, 65535], "monie sir to be your baile": [0, 65535], "sir to be your baile by": [0, 65535], "to be your baile by dromio": [0, 65535], "be your baile by dromio but": [0, 65535], "your baile by dromio but i": [0, 65535], "baile by dromio but i thinke": [0, 65535], "by dromio but i thinke he": [0, 65535], "dromio but i thinke he brought": [0, 65535], "but i thinke he brought it": [0, 65535], "i thinke he brought it not": [0, 65535], "thinke he brought it not e": [0, 65535], "he brought it not e dro": [0, 65535], "brought it not e dro no": [0, 65535], "it not e dro no none": [0, 65535], "not e dro no none by": [0, 65535], "e dro no none by me": [0, 65535], "dro no none by me s": [0, 65535], "no none by me s ant": [0, 65535], "none by me s ant this": [0, 65535], "by me s ant this purse": [0, 65535], "me s ant this purse of": [0, 65535], "s ant this purse of duckets": [0, 65535], "ant this purse of duckets i": [0, 65535], "this purse of duckets i receiu'd": [0, 65535], "purse of duckets i receiu'd from": [0, 65535], "of duckets i receiu'd from you": [0, 65535], "duckets i receiu'd from you and": [0, 65535], "i receiu'd from you and dromio": [0, 65535], "receiu'd from you and dromio my": [0, 65535], "from you and dromio my man": [0, 65535], "you and dromio my man did": [0, 65535], "and dromio my man did bring": [0, 65535], "dromio my man did bring them": [0, 65535], "my man did bring them me": [0, 65535], "man did bring them me i": [0, 65535], "did bring them me i see": [0, 65535], "bring them me i see we": [0, 65535], "them me i see we still": [0, 65535], "me i see we still did": [0, 65535], "i see we still did meete": [0, 65535], "see we still did meete each": [0, 65535], "we still did meete each others": [0, 65535], "still did meete each others man": [0, 65535], "did meete each others man and": [0, 65535], "meete each others man and i": [0, 65535], "each others man and i was": [0, 65535], "others man and i was tane": [0, 65535], "man and i was tane for": [0, 65535], "and i was tane for him": [0, 65535], "i was tane for him and": [0, 65535], "was tane for him and he": [0, 65535], "tane for him and he for": [0, 65535], "for him and he for me": [0, 65535], "him and he for me and": [0, 65535], "and he for me and thereupon": [0, 65535], "he for me and thereupon these": [0, 65535], "for me and thereupon these errors": [0, 65535], "me and thereupon these errors are": [0, 65535], "and thereupon these errors are arose": [0, 65535], "thereupon these errors are arose e": [0, 65535], "these errors are arose e ant": [0, 65535], "errors are arose e ant these": [0, 65535], "are arose e ant these duckets": [0, 65535], "arose e ant these duckets pawne": [0, 65535], "e ant these duckets pawne i": [0, 65535], "ant these duckets pawne i for": [0, 65535], "these duckets pawne i for my": [0, 65535], "duckets pawne i for my father": [0, 65535], "pawne i for my father heere": [0, 65535], "i for my father heere duke": [0, 65535], "for my father heere duke it": [0, 65535], "my father heere duke it shall": [0, 65535], "father heere duke it shall not": [0, 65535], "heere duke it shall not neede": [0, 65535], "duke it shall not neede thy": [0, 65535], "it shall not neede thy father": [0, 65535], "shall not neede thy father hath": [0, 65535], "not neede thy father hath his": [0, 65535], "neede thy father hath his life": [0, 65535], "thy father hath his life cur": [0, 65535], "father hath his life cur sir": [0, 65535], "hath his life cur sir i": [0, 65535], "his life cur sir i must": [0, 65535], "life cur sir i must haue": [0, 65535], "cur sir i must haue that": [0, 65535], "sir i must haue that diamond": [0, 65535], "i must haue that diamond from": [0, 65535], "must haue that diamond from you": [0, 65535], "haue that diamond from you e": [0, 65535], "that diamond from you e ant": [0, 65535], "diamond from you e ant there": [0, 65535], "from you e ant there take": [0, 65535], "you e ant there take it": [0, 65535], "e ant there take it and": [0, 65535], "ant there take it and much": [0, 65535], "there take it and much thanks": [0, 65535], "take it and much thanks for": [0, 65535], "it and much thanks for my": [0, 65535], "and much thanks for my good": [0, 65535], "much thanks for my good cheere": [0, 65535], "thanks for my good cheere abb": [0, 65535], "for my good cheere abb renowned": [0, 65535], "my good cheere abb renowned duke": [0, 65535], "good cheere abb renowned duke vouchsafe": [0, 65535], "cheere abb renowned duke vouchsafe to": [0, 65535], "abb renowned duke vouchsafe to take": [0, 65535], "renowned duke vouchsafe to take the": [0, 65535], "duke vouchsafe to take the paines": [0, 65535], "vouchsafe to take the paines to": [0, 65535], "to take the paines to go": [0, 65535], "take the paines to go with": [0, 65535], "the paines to go with vs": [0, 65535], "paines to go with vs into": [0, 65535], "to go with vs into the": [0, 65535], "go with vs into the abbey": [0, 65535], "with vs into the abbey heere": [0, 65535], "vs into the abbey heere and": [0, 65535], "into the abbey heere and heare": [0, 65535], "the abbey heere and heare at": [0, 65535], "abbey heere and heare at large": [0, 65535], "heere and heare at large discoursed": [0, 65535], "and heare at large discoursed all": [0, 65535], "heare at large discoursed all our": [0, 65535], "at large discoursed all our fortunes": [0, 65535], "large discoursed all our fortunes and": [0, 65535], "discoursed all our fortunes and all": [0, 65535], "all our fortunes and all that": [0, 65535], "our fortunes and all that are": [0, 65535], "fortunes and all that are assembled": [0, 65535], "and all that are assembled in": [0, 65535], "all that are assembled in this": [0, 65535], "that are assembled in this place": [0, 65535], "are assembled in this place that": [0, 65535], "assembled in this place that by": [0, 65535], "in this place that by this": [0, 65535], "this place that by this simpathized": [0, 65535], "place that by this simpathized one": [0, 65535], "that by this simpathized one daies": [0, 65535], "by this simpathized one daies error": [0, 65535], "this simpathized one daies error haue": [0, 65535], "simpathized one daies error haue suffer'd": [0, 65535], "one daies error haue suffer'd wrong": [0, 65535], "daies error haue suffer'd wrong goe": [0, 65535], "error haue suffer'd wrong goe keepe": [0, 65535], "haue suffer'd wrong goe keepe vs": [0, 65535], "suffer'd wrong goe keepe vs companie": [0, 65535], "wrong goe keepe vs companie and": [0, 65535], "goe keepe vs companie and we": [0, 65535], "keepe vs companie and we shall": [0, 65535], "vs companie and we shall make": [0, 65535], "companie and we shall make full": [0, 65535], "and we shall make full satisfaction": [0, 65535], "we shall make full satisfaction thirtie": [0, 65535], "shall make full satisfaction thirtie three": [0, 65535], "make full satisfaction thirtie three yeares": [0, 65535], "full satisfaction thirtie three yeares haue": [0, 65535], "satisfaction thirtie three yeares haue i": [0, 65535], "thirtie three yeares haue i but": [0, 65535], "three yeares haue i but gone": [0, 65535], "yeares haue i but gone in": [0, 65535], "haue i but gone in trauaile": [0, 65535], "i but gone in trauaile of": [0, 65535], "but gone in trauaile of you": [0, 65535], "gone in trauaile of you my": [0, 65535], "in trauaile of you my sonnes": [0, 65535], "trauaile of you my sonnes and": [0, 65535], "of you my sonnes and till": [0, 65535], "you my sonnes and till this": [0, 65535], "my sonnes and till this present": [0, 65535], "sonnes and till this present houre": [0, 65535], "and till this present houre my": [0, 65535], "till this present houre my heauie": [0, 65535], "this present houre my heauie burthen": [0, 65535], "present houre my heauie burthen are": [0, 65535], "houre my heauie burthen are deliuered": [0, 65535], "my heauie burthen are deliuered the": [0, 65535], "heauie burthen are deliuered the duke": [0, 65535], "burthen are deliuered the duke my": [0, 65535], "are deliuered the duke my husband": [0, 65535], "deliuered the duke my husband and": [0, 65535], "the duke my husband and my": [0, 65535], "duke my husband and my children": [0, 65535], "my husband and my children both": [0, 65535], "husband and my children both and": [0, 65535], "and my children both and you": [0, 65535], "my children both and you the": [0, 65535], "children both and you the kalenders": [0, 65535], "both and you the kalenders of": [0, 65535], "and you the kalenders of their": [0, 65535], "you the kalenders of their natiuity": [0, 65535], "the kalenders of their natiuity go": [0, 65535], "kalenders of their natiuity go to": [0, 65535], "of their natiuity go to a": [0, 65535], "their natiuity go to a gossips": [0, 65535], "natiuity go to a gossips feast": [0, 65535], "go to a gossips feast and": [0, 65535], "to a gossips feast and go": [0, 65535], "a gossips feast and go with": [0, 65535], "gossips feast and go with mee": [0, 65535], "feast and go with mee after": [0, 65535], "and go with mee after so": [0, 65535], "go with mee after so long": [0, 65535], "with mee after so long greefe": [0, 65535], "mee after so long greefe such": [0, 65535], "after so long greefe such natiuitie": [0, 65535], "so long greefe such natiuitie duke": [0, 65535], "long greefe such natiuitie duke with": [0, 65535], "greefe such natiuitie duke with all": [0, 65535], "such natiuitie duke with all my": [0, 65535], "natiuitie duke with all my heart": [0, 65535], "duke with all my heart ile": [0, 65535], "with all my heart ile gossip": [0, 65535], "all my heart ile gossip at": [0, 65535], "my heart ile gossip at this": [0, 65535], "heart ile gossip at this feast": [0, 65535], "ile gossip at this feast exeunt": [0, 65535], "gossip at this feast exeunt omnes": [0, 65535], "at this feast exeunt omnes manet": [0, 65535], "this feast exeunt omnes manet the": [0, 65535], "feast exeunt omnes manet the two": [0, 65535], "exeunt omnes manet the two dromio's": [0, 65535], "omnes manet the two dromio's and": [0, 65535], "manet the two dromio's and two": [0, 65535], "the two dromio's and two brothers": [0, 65535], "two dromio's and two brothers s": [0, 65535], "dromio's and two brothers s dro": [0, 65535], "and two brothers s dro mast": [0, 65535], "two brothers s dro mast shall": [0, 65535], "brothers s dro mast shall i": [0, 65535], "s dro mast shall i fetch": [0, 65535], "dro mast shall i fetch your": [0, 65535], "mast shall i fetch your stuffe": [0, 65535], "shall i fetch your stuffe from": [0, 65535], "i fetch your stuffe from shipbord": [0, 65535], "fetch your stuffe from shipbord e": [0, 65535], "your stuffe from shipbord e an": [0, 65535], "stuffe from shipbord e an dromio": [0, 65535], "from shipbord e an dromio what": [0, 65535], "shipbord e an dromio what stuffe": [0, 65535], "e an dromio what stuffe of": [0, 65535], "an dromio what stuffe of mine": [0, 65535], "dromio what stuffe of mine hast": [0, 65535], "what stuffe of mine hast thou": [0, 65535], "stuffe of mine hast thou imbarkt": [0, 65535], "of mine hast thou imbarkt s": [0, 65535], "mine hast thou imbarkt s dro": [0, 65535], "hast thou imbarkt s dro your": [0, 65535], "thou imbarkt s dro your goods": [0, 65535], "imbarkt s dro your goods that": [0, 65535], "s dro your goods that lay": [0, 65535], "dro your goods that lay at": [0, 65535], "your goods that lay at host": [0, 65535], "goods that lay at host sir": [0, 65535], "that lay at host sir in": [0, 65535], "lay at host sir in the": [0, 65535], "at host sir in the centaur": [0, 65535], "host sir in the centaur s": [0, 65535], "sir in the centaur s ant": [0, 65535], "in the centaur s ant he": [0, 65535], "the centaur s ant he speakes": [0, 65535], "centaur s ant he speakes to": [0, 65535], "s ant he speakes to me": [0, 65535], "ant he speakes to me i": [0, 65535], "he speakes to me i am": [0, 65535], "speakes to me i am your": [0, 65535], "to me i am your master": [0, 65535], "me i am your master dromio": [0, 65535], "i am your master dromio come": [0, 65535], "am your master dromio come go": [0, 65535], "your master dromio come go with": [0, 65535], "master dromio come go with vs": [0, 65535], "dromio come go with vs wee'l": [0, 65535], "come go with vs wee'l looke": [0, 65535], "go with vs wee'l looke to": [0, 65535], "with vs wee'l looke to that": [0, 65535], "vs wee'l looke to that anon": [0, 65535], "wee'l looke to that anon embrace": [0, 65535], "looke to that anon embrace thy": [0, 65535], "to that anon embrace thy brother": [0, 65535], "that anon embrace thy brother there": [0, 65535], "anon embrace thy brother there reioyce": [0, 65535], "embrace thy brother there reioyce with": [0, 65535], "thy brother there reioyce with him": [0, 65535], "brother there reioyce with him exit": [0, 65535], "there reioyce with him exit s": [0, 65535], "reioyce with him exit s dro": [0, 65535], "with him exit s dro there": [0, 65535], "him exit s dro there is": [0, 65535], "exit s dro there is a": [0, 65535], "s dro there is a fat": [0, 65535], "dro there is a fat friend": [0, 65535], "there is a fat friend at": [0, 65535], "is a fat friend at your": [0, 65535], "a fat friend at your masters": [0, 65535], "fat friend at your masters house": [0, 65535], "friend at your masters house that": [0, 65535], "at your masters house that kitchin'd": [0, 65535], "your masters house that kitchin'd me": [0, 65535], "masters house that kitchin'd me for": [0, 65535], "house that kitchin'd me for you": [0, 65535], "that kitchin'd me for you to": [0, 65535], "kitchin'd me for you to day": [0, 65535], "me for you to day at": [0, 65535], "for you to day at dinner": [0, 65535], "you to day at dinner she": [0, 65535], "to day at dinner she now": [0, 65535], "day at dinner she now shall": [0, 65535], "at dinner she now shall be": [0, 65535], "dinner she now shall be my": [0, 65535], "she now shall be my sister": [0, 65535], "now shall be my sister not": [0, 65535], "shall be my sister not my": [0, 65535], "be my sister not my wife": [0, 65535], "my sister not my wife e": [0, 65535], "sister not my wife e d": [0, 65535], "not my wife e d me": [0, 65535], "my wife e d me thinks": [0, 65535], "wife e d me thinks you": [0, 65535], "e d me thinks you are": [0, 65535], "d me thinks you are my": [0, 65535], "me thinks you are my glasse": [0, 65535], "thinks you are my glasse not": [0, 65535], "you are my glasse not my": [0, 65535], "are my glasse not my brother": [0, 65535], "my glasse not my brother i": [0, 65535], "glasse not my brother i see": [0, 65535], "not my brother i see by": [0, 65535], "my brother i see by you": [0, 65535], "brother i see by you i": [0, 65535], "i see by you i am": [0, 65535], "see by you i am a": [0, 65535], "by you i am a sweet": [0, 65535], "you i am a sweet fac'd": [0, 65535], "i am a sweet fac'd youth": [0, 65535], "am a sweet fac'd youth will": [0, 65535], "a sweet fac'd youth will you": [0, 65535], "sweet fac'd youth will you walke": [0, 65535], "fac'd youth will you walke in": [0, 65535], "youth will you walke in to": [0, 65535], "will you walke in to see": [0, 65535], "you walke in to see their": [0, 65535], "walke in to see their gossipping": [0, 65535], "in to see their gossipping s": [0, 65535], "to see their gossipping s dro": [0, 65535], "see their gossipping s dro not": [0, 65535], "their gossipping s dro not i": [0, 65535], "gossipping s dro not i sir": [0, 65535], "s dro not i sir you": [0, 65535], "dro not i sir you are": [0, 65535], "not i sir you are my": [0, 65535], "i sir you are my elder": [0, 65535], "sir you are my elder e": [0, 65535], "you are my elder e dro": [0, 65535], "are my elder e dro that's": [0, 65535], "my elder e dro that's a": [0, 65535], "elder e dro that's a question": [0, 65535], "e dro that's a question how": [0, 65535], "dro that's a question how shall": [0, 65535], "that's a question how shall we": [0, 65535], "a question how shall we trie": [0, 65535], "question how shall we trie it": [0, 65535], "how shall we trie it s": [0, 65535], "shall we trie it s dro": [0, 65535], "we trie it s dro wee'l": [0, 65535], "trie it s dro wee'l draw": [0, 65535], "it s dro wee'l draw cuts": [0, 65535], "s dro wee'l draw cuts for": [0, 65535], "dro wee'l draw cuts for the": [0, 65535], "wee'l draw cuts for the signior": [0, 65535], "draw cuts for the signior till": [0, 65535], "cuts for the signior till then": [0, 65535], "for the signior till then lead": [0, 65535], "the signior till then lead thou": [0, 65535], "signior till then lead thou first": [0, 65535], "till then lead thou first e": [0, 65535], "then lead thou first e dro": [0, 65535], "lead thou first e dro nay": [0, 65535], "thou first e dro nay then": [0, 65535], "first e dro nay then thus": [0, 65535], "e dro nay then thus we": [0, 65535], "dro nay then thus we came": [0, 65535], "nay then thus we came into": [0, 65535], "then thus we came into the": [0, 65535], "thus we came into the world": [0, 65535], "we came into the world like": [0, 65535], "came into the world like brother": [0, 65535], "into the world like brother and": [0, 65535], "the world like brother and brother": [0, 65535], "world like brother and brother and": [0, 65535], "like brother and brother and now": [0, 65535], "brother and brother and now let's": [0, 65535], "and brother and now let's go": [0, 65535], "brother and now let's go hand": [0, 65535], "and now let's go hand in": [0, 65535], "now let's go hand in hand": [0, 65535], "let's go hand in hand not": [0, 65535], "go hand in hand not one": [0, 65535], "hand in hand not one before": [0, 65535], "in hand not one before another": [0, 65535], "hand not one before another exeunt": [0, 65535], "not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant": [0, 65535], "quintus sc\u0153na prima enter the merchant and": [0, 65535], "sc\u0153na prima enter the merchant and the": [0, 65535], "prima enter the merchant and the goldsmith": [0, 65535], "enter the merchant and the goldsmith gold": [0, 65535], "the merchant and the goldsmith gold i": [0, 65535], "merchant and the goldsmith gold i am": [0, 65535], "and the goldsmith gold i am sorry": [0, 65535], "the goldsmith gold i am sorry sir": [0, 65535], "goldsmith gold i am sorry sir that": [0, 65535], "gold i am sorry sir that i": [0, 65535], "i am sorry sir that i haue": [0, 65535], "am sorry sir that i haue hindred": [0, 65535], "sorry sir that i haue hindred you": [0, 65535], "sir that i haue hindred you but": [0, 65535], "that i haue hindred you but i": [0, 65535], "i haue hindred you but i protest": [0, 65535], "haue hindred you but i protest he": [0, 65535], "hindred you but i protest he had": [0, 65535], "you but i protest he had the": [0, 65535], "but i protest he had the chaine": [0, 65535], "i protest he had the chaine of": [0, 65535], "protest he had the chaine of me": [0, 65535], "he had the chaine of me though": [0, 65535], "had the chaine of me though most": [0, 65535], "the chaine of me though most dishonestly": [0, 65535], "chaine of me though most dishonestly he": [0, 65535], "of me though most dishonestly he doth": [0, 65535], "me though most dishonestly he doth denie": [0, 65535], "though most dishonestly he doth denie it": [0, 65535], "most dishonestly he doth denie it mar": [0, 65535], "dishonestly he doth denie it mar how": [0, 65535], "he doth denie it mar how is": [0, 65535], "doth denie it mar how is the": [0, 65535], "denie it mar how is the man": [0, 65535], "it mar how is the man esteem'd": [0, 65535], "mar how is the man esteem'd heere": [0, 65535], "how is the man esteem'd heere in": [0, 65535], "is the man esteem'd heere in the": [0, 65535], "the man esteem'd heere in the citie": [0, 65535], "man esteem'd heere in the citie gold": [0, 65535], "esteem'd heere in the citie gold of": [0, 65535], "heere in the citie gold of very": [0, 65535], "in the citie gold of very reuerent": [0, 65535], "the citie gold of very reuerent reputation": [0, 65535], "citie gold of very reuerent reputation sir": [0, 65535], "gold of very reuerent reputation sir of": [0, 65535], "of very reuerent reputation sir of credit": [0, 65535], "very reuerent reputation sir of credit infinite": [0, 65535], "reuerent reputation sir of credit infinite highly": [0, 65535], "reputation sir of credit infinite highly belou'd": [0, 65535], "sir of credit infinite highly belou'd second": [0, 65535], "of credit infinite highly belou'd second to": [0, 65535], "credit infinite highly belou'd second to none": [0, 65535], "infinite highly belou'd second to none that": [0, 65535], "highly belou'd second to none that liues": [0, 65535], "belou'd second to none that liues heere": [0, 65535], "second to none that liues heere in": [0, 65535], "to none that liues heere in the": [0, 65535], "none that liues heere in the citie": [0, 65535], "that liues heere in the citie his": [0, 65535], "liues heere in the citie his word": [0, 65535], "heere in the citie his word might": [0, 65535], "in the citie his word might beare": [0, 65535], "the citie his word might beare my": [0, 65535], "citie his word might beare my wealth": [0, 65535], "his word might beare my wealth at": [0, 65535], "word might beare my wealth at any": [0, 65535], "might beare my wealth at any time": [0, 65535], "beare my wealth at any time mar": [0, 65535], "my wealth at any time mar speake": [0, 65535], "wealth at any time mar speake softly": [0, 65535], "at any time mar speake softly yonder": [0, 65535], "any time mar speake softly yonder as": [0, 65535], "time mar speake softly yonder as i": [0, 65535], "mar speake softly yonder as i thinke": [0, 65535], "speake softly yonder as i thinke he": [0, 65535], "softly yonder as i thinke he walkes": [0, 65535], "yonder as i thinke he walkes enter": [0, 65535], "as i thinke he walkes enter antipholus": [0, 65535], "i thinke he walkes enter antipholus and": [0, 65535], "thinke he walkes enter antipholus and dromio": [0, 65535], "he walkes enter antipholus and dromio againe": [0, 65535], "walkes enter antipholus and dromio againe gold": [0, 65535], "enter antipholus and dromio againe gold 'tis": [0, 65535], "antipholus and dromio againe gold 'tis so": [0, 65535], "and dromio againe gold 'tis so and": [0, 65535], "dromio againe gold 'tis so and that": [0, 65535], "againe gold 'tis so and that selfe": [0, 65535], "gold 'tis so and that selfe chaine": [0, 65535], "'tis so and that selfe chaine about": [0, 65535], "so and that selfe chaine about his": [0, 65535], "and that selfe chaine about his necke": [0, 65535], "that selfe chaine about his necke which": [0, 65535], "selfe chaine about his necke which he": [0, 65535], "chaine about his necke which he forswore": [0, 65535], "about his necke which he forswore most": [0, 65535], "his necke which he forswore most monstrously": [0, 65535], "necke which he forswore most monstrously to": [0, 65535], "which he forswore most monstrously to haue": [0, 65535], "he forswore most monstrously to haue good": [0, 65535], "forswore most monstrously to haue good sir": [0, 65535], "most monstrously to haue good sir draw": [0, 65535], "monstrously to haue good sir draw neere": [0, 65535], "to haue good sir draw neere to": [0, 65535], "haue good sir draw neere to me": [0, 65535], "good sir draw neere to me ile": [0, 65535], "sir draw neere to me ile speake": [0, 65535], "draw neere to me ile speake to": [0, 65535], "neere to me ile speake to him": [0, 65535], "to me ile speake to him signior": [0, 65535], "me ile speake to him signior antipholus": [0, 65535], "ile speake to him signior antipholus i": [0, 65535], "speake to him signior antipholus i wonder": [0, 65535], "to him signior antipholus i wonder much": [0, 65535], "him signior antipholus i wonder much that": [0, 65535], "signior antipholus i wonder much that you": [0, 65535], "antipholus i wonder much that you would": [0, 65535], "i wonder much that you would put": [0, 65535], "wonder much that you would put me": [0, 65535], "much that you would put me to": [0, 65535], "that you would put me to this": [0, 65535], "you would put me to this shame": [0, 65535], "would put me to this shame and": [0, 65535], "put me to this shame and trouble": [0, 65535], "me to this shame and trouble and": [0, 65535], "to this shame and trouble and not": [0, 65535], "this shame and trouble and not without": [0, 65535], "shame and trouble and not without some": [0, 65535], "and trouble and not without some scandall": [0, 65535], "trouble and not without some scandall to": [0, 65535], "and not without some scandall to your": [0, 65535], "not without some scandall to your selfe": [0, 65535], "without some scandall to your selfe with": [0, 65535], "some scandall to your selfe with circumstance": [0, 65535], "scandall to your selfe with circumstance and": [0, 65535], "to your selfe with circumstance and oaths": [0, 65535], "your selfe with circumstance and oaths so": [0, 65535], "selfe with circumstance and oaths so to": [0, 65535], "with circumstance and oaths so to denie": [0, 65535], "circumstance and oaths so to denie this": [0, 65535], "and oaths so to denie this chaine": [0, 65535], "oaths so to denie this chaine which": [0, 65535], "so to denie this chaine which now": [0, 65535], "to denie this chaine which now you": [0, 65535], "denie this chaine which now you weare": [0, 65535], "this chaine which now you weare so": [0, 65535], "chaine which now you weare so openly": [0, 65535], "which now you weare so openly beside": [0, 65535], "now you weare so openly beside the": [0, 65535], "you weare so openly beside the charge": [0, 65535], "weare so openly beside the charge the": [0, 65535], "so openly beside the charge the shame": [0, 65535], "openly beside the charge the shame imprisonment": [0, 65535], "beside the charge the shame imprisonment you": [0, 65535], "the charge the shame imprisonment you haue": [0, 65535], "charge the shame imprisonment you haue done": [0, 65535], "the shame imprisonment you haue done wrong": [0, 65535], "shame imprisonment you haue done wrong to": [0, 65535], "imprisonment you haue done wrong to this": [0, 65535], "you haue done wrong to this my": [0, 65535], "haue done wrong to this my honest": [0, 65535], "done wrong to this my honest friend": [0, 65535], "wrong to this my honest friend who": [0, 65535], "to this my honest friend who but": [0, 65535], "this my honest friend who but for": [0, 65535], "my honest friend who but for staying": [0, 65535], "honest friend who but for staying on": [0, 65535], "friend who but for staying on our": [0, 65535], "who but for staying on our controuersie": [0, 65535], "but for staying on our controuersie had": [0, 65535], "for staying on our controuersie had hoisted": [0, 65535], "staying on our controuersie had hoisted saile": [0, 65535], "on our controuersie had hoisted saile and": [0, 65535], "our controuersie had hoisted saile and put": [0, 65535], "controuersie had hoisted saile and put to": [0, 65535], "had hoisted saile and put to sea": [0, 65535], "hoisted saile and put to sea to": [0, 65535], "saile and put to sea to day": [0, 65535], "and put to sea to day this": [0, 65535], "put to sea to day this chaine": [0, 65535], "to sea to day this chaine you": [0, 65535], "sea to day this chaine you had": [0, 65535], "to day this chaine you had of": [0, 65535], "day this chaine you had of me": [0, 65535], "this chaine you had of me can": [0, 65535], "chaine you had of me can you": [0, 65535], "you had of me can you deny": [0, 65535], "had of me can you deny it": [0, 65535], "of me can you deny it ant": [0, 65535], "me can you deny it ant i": [0, 65535], "can you deny it ant i thinke": [0, 65535], "you deny it ant i thinke i": [0, 65535], "deny it ant i thinke i had": [0, 65535], "it ant i thinke i had i": [0, 65535], "ant i thinke i had i neuer": [0, 65535], "i thinke i had i neuer did": [0, 65535], "thinke i had i neuer did deny": [0, 65535], "i had i neuer did deny it": [0, 65535], "had i neuer did deny it mar": [0, 65535], "i neuer did deny it mar yes": [0, 65535], "neuer did deny it mar yes that": [0, 65535], "did deny it mar yes that you": [0, 65535], "deny it mar yes that you did": [0, 65535], "it mar yes that you did sir": [0, 65535], "mar yes that you did sir and": [0, 65535], "yes that you did sir and forswore": [0, 65535], "that you did sir and forswore it": [0, 65535], "you did sir and forswore it too": [0, 65535], "did sir and forswore it too ant": [0, 65535], "sir and forswore it too ant who": [0, 65535], "and forswore it too ant who heard": [0, 65535], "forswore it too ant who heard me": [0, 65535], "it too ant who heard me to": [0, 65535], "too ant who heard me to denie": [0, 65535], "ant who heard me to denie it": [0, 65535], "who heard me to denie it or": [0, 65535], "heard me to denie it or forsweare": [0, 65535], "me to denie it or forsweare it": [0, 65535], "to denie it or forsweare it mar": [0, 65535], "denie it or forsweare it mar these": [0, 65535], "it or forsweare it mar these eares": [0, 65535], "or forsweare it mar these eares of": [0, 65535], "forsweare it mar these eares of mine": [0, 65535], "it mar these eares of mine thou": [0, 65535], "mar these eares of mine thou knowst": [0, 65535], "these eares of mine thou knowst did": [0, 65535], "eares of mine thou knowst did hear": [0, 65535], "of mine thou knowst did hear thee": [0, 65535], "mine thou knowst did hear thee fie": [0, 65535], "thou knowst did hear thee fie on": [0, 65535], "knowst did hear thee fie on thee": [0, 65535], "did hear thee fie on thee wretch": [0, 65535], "hear thee fie on thee wretch 'tis": [0, 65535], "thee fie on thee wretch 'tis pitty": [0, 65535], "fie on thee wretch 'tis pitty that": [0, 65535], "on thee wretch 'tis pitty that thou": [0, 65535], "thee wretch 'tis pitty that thou liu'st": [0, 65535], "wretch 'tis pitty that thou liu'st to": [0, 65535], "'tis pitty that thou liu'st to walke": [0, 65535], "pitty that thou liu'st to walke where": [0, 65535], "that thou liu'st to walke where any": [0, 65535], "thou liu'st to walke where any honest": [0, 65535], "liu'st to walke where any honest men": [0, 65535], "to walke where any honest men resort": [0, 65535], "walke where any honest men resort ant": [0, 65535], "where any honest men resort ant thou": [0, 65535], "any honest men resort ant thou art": [0, 65535], "honest men resort ant thou art a": [0, 65535], "men resort ant thou art a villaine": [0, 65535], "resort ant thou art a villaine to": [0, 65535], "ant thou art a villaine to impeach": [0, 65535], "thou art a villaine to impeach me": [0, 65535], "art a villaine to impeach me thus": [0, 65535], "a villaine to impeach me thus ile": [0, 65535], "villaine to impeach me thus ile proue": [0, 65535], "to impeach me thus ile proue mine": [0, 65535], "impeach me thus ile proue mine honor": [0, 65535], "me thus ile proue mine honor and": [0, 65535], "thus ile proue mine honor and mine": [0, 65535], "ile proue mine honor and mine honestie": [0, 65535], "proue mine honor and mine honestie against": [0, 65535], "mine honor and mine honestie against thee": [0, 65535], "honor and mine honestie against thee presently": [0, 65535], "and mine honestie against thee presently if": [0, 65535], "mine honestie against thee presently if thou": [0, 65535], "honestie against thee presently if thou dar'st": [0, 65535], "against thee presently if thou dar'st stand": [0, 65535], "thee presently if thou dar'st stand mar": [0, 65535], "presently if thou dar'st stand mar i": [0, 65535], "if thou dar'st stand mar i dare": [0, 65535], "thou dar'st stand mar i dare and": [0, 65535], "dar'st stand mar i dare and do": [0, 65535], "stand mar i dare and do defie": [0, 65535], "mar i dare and do defie thee": [0, 65535], "i dare and do defie thee for": [0, 65535], "dare and do defie thee for a": [0, 65535], "and do defie thee for a villaine": [0, 65535], "do defie thee for a villaine they": [0, 65535], "defie thee for a villaine they draw": [0, 65535], "thee for a villaine they draw enter": [0, 65535], "for a villaine they draw enter adriana": [0, 65535], "a villaine they draw enter adriana luciana": [0, 65535], "villaine they draw enter adriana luciana courtezan": [0, 65535], "they draw enter adriana luciana courtezan others": [0, 65535], "draw enter adriana luciana courtezan others adr": [0, 65535], "enter adriana luciana courtezan others adr hold": [0, 65535], "adriana luciana courtezan others adr hold hurt": [0, 65535], "luciana courtezan others adr hold hurt him": [0, 65535], "courtezan others adr hold hurt him not": [0, 65535], "others adr hold hurt him not for": [0, 65535], "adr hold hurt him not for god": [0, 65535], "hold hurt him not for god sake": [0, 65535], "hurt him not for god sake he": [0, 65535], "him not for god sake he is": [0, 65535], "not for god sake he is mad": [0, 65535], "for god sake he is mad some": [0, 65535], "god sake he is mad some get": [0, 65535], "sake he is mad some get within": [0, 65535], "he is mad some get within him": [0, 65535], "is mad some get within him take": [0, 65535], "mad some get within him take his": [0, 65535], "some get within him take his sword": [0, 65535], "get within him take his sword away": [0, 65535], "within him take his sword away binde": [0, 65535], "him take his sword away binde dromio": [0, 65535], "take his sword away binde dromio too": [0, 65535], "his sword away binde dromio too and": [0, 65535], "sword away binde dromio too and beare": [0, 65535], "away binde dromio too and beare them": [0, 65535], "binde dromio too and beare them to": [0, 65535], "dromio too and beare them to my": [0, 65535], "too and beare them to my house": [0, 65535], "and beare them to my house s": [0, 65535], "beare them to my house s dro": [0, 65535], "them to my house s dro runne": [0, 65535], "to my house s dro runne master": [0, 65535], "my house s dro runne master run": [0, 65535], "house s dro runne master run for": [0, 65535], "s dro runne master run for gods": [0, 65535], "dro runne master run for gods sake": [0, 65535], "runne master run for gods sake take": [0, 65535], "master run for gods sake take a": [0, 65535], "run for gods sake take a house": [0, 65535], "for gods sake take a house this": [0, 65535], "gods sake take a house this is": [0, 65535], "sake take a house this is some": [0, 65535], "take a house this is some priorie": [0, 65535], "a house this is some priorie in": [0, 65535], "house this is some priorie in or": [0, 65535], "this is some priorie in or we": [0, 65535], "is some priorie in or we are": [0, 65535], "some priorie in or we are spoyl'd": [0, 65535], "priorie in or we are spoyl'd exeunt": [0, 65535], "in or we are spoyl'd exeunt to": [0, 65535], "or we are spoyl'd exeunt to the": [0, 65535], "we are spoyl'd exeunt to the priorie": [0, 65535], "are spoyl'd exeunt to the priorie enter": [0, 65535], "spoyl'd exeunt to the priorie enter ladie": [0, 65535], "exeunt to the priorie enter ladie abbesse": [0, 65535], "to the priorie enter ladie abbesse ab": [0, 65535], "the priorie enter ladie abbesse ab be": [0, 65535], "priorie enter ladie abbesse ab be quiet": [0, 65535], "enter ladie abbesse ab be quiet people": [0, 65535], "ladie abbesse ab be quiet people wherefore": [0, 65535], "abbesse ab be quiet people wherefore throng": [0, 65535], "ab be quiet people wherefore throng you": [0, 65535], "be quiet people wherefore throng you hither": [0, 65535], "quiet people wherefore throng you hither adr": [0, 65535], "people wherefore throng you hither adr to": [0, 65535], "wherefore throng you hither adr to fetch": [0, 65535], "throng you hither adr to fetch my": [0, 65535], "you hither adr to fetch my poore": [0, 65535], "hither adr to fetch my poore distracted": [0, 65535], "adr to fetch my poore distracted husband": [0, 65535], "to fetch my poore distracted husband hence": [0, 65535], "fetch my poore distracted husband hence let": [0, 65535], "my poore distracted husband hence let vs": [0, 65535], "poore distracted husband hence let vs come": [0, 65535], "distracted husband hence let vs come in": [0, 65535], "husband hence let vs come in that": [0, 65535], "hence let vs come in that we": [0, 65535], "let vs come in that we may": [0, 65535], "vs come in that we may binde": [0, 65535], "come in that we may binde him": [0, 65535], "in that we may binde him fast": [0, 65535], "that we may binde him fast and": [0, 65535], "we may binde him fast and beare": [0, 65535], "may binde him fast and beare him": [0, 65535], "binde him fast and beare him home": [0, 65535], "him fast and beare him home for": [0, 65535], "fast and beare him home for his": [0, 65535], "and beare him home for his recouerie": [0, 65535], "beare him home for his recouerie gold": [0, 65535], "him home for his recouerie gold i": [0, 65535], "home for his recouerie gold i knew": [0, 65535], "for his recouerie gold i knew he": [0, 65535], "his recouerie gold i knew he was": [0, 65535], "recouerie gold i knew he was not": [0, 65535], "gold i knew he was not in": [0, 65535], "i knew he was not in his": [0, 65535], "knew he was not in his perfect": [0, 65535], "he was not in his perfect wits": [0, 65535], "was not in his perfect wits mar": [0, 65535], "not in his perfect wits mar i": [0, 65535], "in his perfect wits mar i am": [0, 65535], "his perfect wits mar i am sorry": [0, 65535], "perfect wits mar i am sorry now": [0, 65535], "wits mar i am sorry now that": [0, 65535], "mar i am sorry now that i": [0, 65535], "i am sorry now that i did": [0, 65535], "am sorry now that i did draw": [0, 65535], "sorry now that i did draw on": [0, 65535], "now that i did draw on him": [0, 65535], "that i did draw on him ab": [0, 65535], "i did draw on him ab how": [0, 65535], "did draw on him ab how long": [0, 65535], "draw on him ab how long hath": [0, 65535], "on him ab how long hath this": [0, 65535], "him ab how long hath this possession": [0, 65535], "ab how long hath this possession held": [0, 65535], "how long hath this possession held the": [0, 65535], "long hath this possession held the man": [0, 65535], "hath this possession held the man adr": [0, 65535], "this possession held the man adr this": [0, 65535], "possession held the man adr this weeke": [0, 65535], "held the man adr this weeke he": [0, 65535], "the man adr this weeke he hath": [0, 65535], "man adr this weeke he hath beene": [0, 65535], "adr this weeke he hath beene heauie": [0, 65535], "this weeke he hath beene heauie sower": [0, 65535], "weeke he hath beene heauie sower sad": [0, 65535], "he hath beene heauie sower sad and": [0, 65535], "hath beene heauie sower sad and much": [0, 65535], "beene heauie sower sad and much different": [0, 65535], "heauie sower sad and much different from": [0, 65535], "sower sad and much different from the": [0, 65535], "sad and much different from the man": [0, 65535], "and much different from the man he": [0, 65535], "much different from the man he was": [0, 65535], "different from the man he was but": [0, 65535], "from the man he was but till": [0, 65535], "the man he was but till this": [0, 65535], "man he was but till this afternoone": [0, 65535], "he was but till this afternoone his": [0, 65535], "was but till this afternoone his passion": [0, 65535], "but till this afternoone his passion ne're": [0, 65535], "till this afternoone his passion ne're brake": [0, 65535], "this afternoone his passion ne're brake into": [0, 65535], "afternoone his passion ne're brake into extremity": [0, 65535], "his passion ne're brake into extremity of": [0, 65535], "passion ne're brake into extremity of rage": [0, 65535], "ne're brake into extremity of rage ab": [0, 65535], "brake into extremity of rage ab hath": [0, 65535], "into extremity of rage ab hath he": [0, 65535], "extremity of rage ab hath he not": [0, 65535], "of rage ab hath he not lost": [0, 65535], "rage ab hath he not lost much": [0, 65535], "ab hath he not lost much wealth": [0, 65535], "hath he not lost much wealth by": [0, 65535], "he not lost much wealth by wrack": [0, 65535], "not lost much wealth by wrack of": [0, 65535], "lost much wealth by wrack of sea": [0, 65535], "much wealth by wrack of sea buried": [0, 65535], "wealth by wrack of sea buried some": [0, 65535], "by wrack of sea buried some deere": [0, 65535], "wrack of sea buried some deere friend": [0, 65535], "of sea buried some deere friend hath": [0, 65535], "sea buried some deere friend hath not": [0, 65535], "buried some deere friend hath not else": [0, 65535], "some deere friend hath not else his": [0, 65535], "deere friend hath not else his eye": [0, 65535], "friend hath not else his eye stray'd": [0, 65535], "hath not else his eye stray'd his": [0, 65535], "not else his eye stray'd his affection": [0, 65535], "else his eye stray'd his affection in": [0, 65535], "his eye stray'd his affection in vnlawfull": [0, 65535], "eye stray'd his affection in vnlawfull loue": [0, 65535], "stray'd his affection in vnlawfull loue a": [0, 65535], "his affection in vnlawfull loue a sinne": [0, 65535], "affection in vnlawfull loue a sinne preuailing": [0, 65535], "in vnlawfull loue a sinne preuailing much": [0, 65535], "vnlawfull loue a sinne preuailing much in": [0, 65535], "loue a sinne preuailing much in youthfull": [0, 65535], "a sinne preuailing much in youthfull men": [0, 65535], "sinne preuailing much in youthfull men who": [0, 65535], "preuailing much in youthfull men who giue": [0, 65535], "much in youthfull men who giue their": [0, 65535], "in youthfull men who giue their eies": [0, 65535], "youthfull men who giue their eies the": [0, 65535], "men who giue their eies the liberty": [0, 65535], "who giue their eies the liberty of": [0, 65535], "giue their eies the liberty of gazing": [0, 65535], "their eies the liberty of gazing which": [0, 65535], "eies the liberty of gazing which of": [0, 65535], "the liberty of gazing which of these": [0, 65535], "liberty of gazing which of these sorrowes": [0, 65535], "of gazing which of these sorrowes is": [0, 65535], "gazing which of these sorrowes is he": [0, 65535], "which of these sorrowes is he subiect": [0, 65535], "of these sorrowes is he subiect too": [0, 65535], "these sorrowes is he subiect too adr": [0, 65535], "sorrowes is he subiect too adr to": [0, 65535], "is he subiect too adr to none": [0, 65535], "he subiect too adr to none of": [0, 65535], "subiect too adr to none of these": [0, 65535], "too adr to none of these except": [0, 65535], "adr to none of these except it": [0, 65535], "to none of these except it be": [0, 65535], "none of these except it be the": [0, 65535], "of these except it be the last": [0, 65535], "these except it be the last namely": [0, 65535], "except it be the last namely some": [0, 65535], "it be the last namely some loue": [0, 65535], "be the last namely some loue that": [0, 65535], "the last namely some loue that drew": [0, 65535], "last namely some loue that drew him": [0, 65535], "namely some loue that drew him oft": [0, 65535], "some loue that drew him oft from": [0, 65535], "loue that drew him oft from home": [0, 65535], "that drew him oft from home ab": [0, 65535], "drew him oft from home ab you": [0, 65535], "him oft from home ab you should": [0, 65535], "oft from home ab you should for": [0, 65535], "from home ab you should for that": [0, 65535], "home ab you should for that haue": [0, 65535], "ab you should for that haue reprehended": [0, 65535], "you should for that haue reprehended him": [0, 65535], "should for that haue reprehended him adr": [0, 65535], "for that haue reprehended him adr why": [0, 65535], "that haue reprehended him adr why so": [0, 65535], "haue reprehended him adr why so i": [0, 65535], "reprehended him adr why so i did": [0, 65535], "him adr why so i did ab": [0, 65535], "adr why so i did ab i": [0, 65535], "why so i did ab i but": [0, 65535], "so i did ab i but not": [0, 65535], "i did ab i but not rough": [0, 65535], "did ab i but not rough enough": [0, 65535], "ab i but not rough enough adr": [0, 65535], "i but not rough enough adr as": [0, 65535], "but not rough enough adr as roughly": [0, 65535], "not rough enough adr as roughly as": [0, 65535], "rough enough adr as roughly as my": [0, 65535], "enough adr as roughly as my modestie": [0, 65535], "adr as roughly as my modestie would": [0, 65535], "as roughly as my modestie would let": [0, 65535], "roughly as my modestie would let me": [0, 65535], "as my modestie would let me ab": [0, 65535], "my modestie would let me ab haply": [0, 65535], "modestie would let me ab haply in": [0, 65535], "would let me ab haply in priuate": [0, 65535], "let me ab haply in priuate adr": [0, 65535], "me ab haply in priuate adr and": [0, 65535], "ab haply in priuate adr and in": [0, 65535], "haply in priuate adr and in assemblies": [0, 65535], "in priuate adr and in assemblies too": [0, 65535], "priuate adr and in assemblies too ab": [0, 65535], "adr and in assemblies too ab i": [0, 65535], "and in assemblies too ab i but": [0, 65535], "in assemblies too ab i but not": [0, 65535], "assemblies too ab i but not enough": [0, 65535], "too ab i but not enough adr": [0, 65535], "ab i but not enough adr it": [0, 65535], "i but not enough adr it was": [0, 65535], "but not enough adr it was the": [0, 65535], "not enough adr it was the copie": [0, 65535], "enough adr it was the copie of": [0, 65535], "adr it was the copie of our": [0, 65535], "it was the copie of our conference": [0, 65535], "was the copie of our conference in": [0, 65535], "the copie of our conference in bed": [0, 65535], "copie of our conference in bed he": [0, 65535], "of our conference in bed he slept": [0, 65535], "our conference in bed he slept not": [0, 65535], "conference in bed he slept not for": [0, 65535], "in bed he slept not for my": [0, 65535], "bed he slept not for my vrging": [0, 65535], "he slept not for my vrging it": [0, 65535], "slept not for my vrging it at": [0, 65535], "not for my vrging it at boord": [0, 65535], "for my vrging it at boord he": [0, 65535], "my vrging it at boord he fed": [0, 65535], "vrging it at boord he fed not": [0, 65535], "it at boord he fed not for": [0, 65535], "at boord he fed not for my": [0, 65535], "boord he fed not for my vrging": [0, 65535], "he fed not for my vrging it": [0, 65535], "fed not for my vrging it alone": [0, 65535], "not for my vrging it alone it": [0, 65535], "for my vrging it alone it was": [0, 65535], "my vrging it alone it was the": [0, 65535], "vrging it alone it was the subiect": [0, 65535], "it alone it was the subiect of": [0, 65535], "alone it was the subiect of my": [0, 65535], "it was the subiect of my theame": [0, 65535], "was the subiect of my theame in": [0, 65535], "the subiect of my theame in company": [0, 65535], "subiect of my theame in company i": [0, 65535], "of my theame in company i often": [0, 65535], "my theame in company i often glanced": [0, 65535], "theame in company i often glanced it": [0, 65535], "in company i often glanced it still": [0, 65535], "company i often glanced it still did": [0, 65535], "i often glanced it still did i": [0, 65535], "often glanced it still did i tell": [0, 65535], "glanced it still did i tell him": [0, 65535], "it still did i tell him it": [0, 65535], "still did i tell him it was": [0, 65535], "did i tell him it was vilde": [0, 65535], "i tell him it was vilde and": [0, 65535], "tell him it was vilde and bad": [0, 65535], "him it was vilde and bad ab": [0, 65535], "it was vilde and bad ab and": [0, 65535], "was vilde and bad ab and thereof": [0, 65535], "vilde and bad ab and thereof came": [0, 65535], "and bad ab and thereof came it": [0, 65535], "bad ab and thereof came it that": [0, 65535], "ab and thereof came it that the": [0, 65535], "and thereof came it that the man": [0, 65535], "thereof came it that the man was": [0, 65535], "came it that the man was mad": [0, 65535], "it that the man was mad the": [0, 65535], "that the man was mad the venome": [0, 65535], "the man was mad the venome clamors": [0, 65535], "man was mad the venome clamors of": [0, 65535], "was mad the venome clamors of a": [0, 65535], "mad the venome clamors of a iealous": [0, 65535], "the venome clamors of a iealous woman": [0, 65535], "venome clamors of a iealous woman poisons": [0, 65535], "clamors of a iealous woman poisons more": [0, 65535], "of a iealous woman poisons more deadly": [0, 65535], "a iealous woman poisons more deadly then": [0, 65535], "iealous woman poisons more deadly then a": [0, 65535], "woman poisons more deadly then a mad": [0, 65535], "poisons more deadly then a mad dogges": [0, 65535], "more deadly then a mad dogges tooth": [0, 65535], "deadly then a mad dogges tooth it": [0, 65535], "then a mad dogges tooth it seemes": [0, 65535], "a mad dogges tooth it seemes his": [0, 65535], "mad dogges tooth it seemes his sleepes": [0, 65535], "dogges tooth it seemes his sleepes were": [0, 65535], "tooth it seemes his sleepes were hindred": [0, 65535], "it seemes his sleepes were hindred by": [0, 65535], "seemes his sleepes were hindred by thy": [0, 65535], "his sleepes were hindred by thy railing": [0, 65535], "sleepes were hindred by thy railing and": [0, 65535], "were hindred by thy railing and thereof": [0, 65535], "hindred by thy railing and thereof comes": [0, 65535], "by thy railing and thereof comes it": [0, 65535], "thy railing and thereof comes it that": [0, 65535], "railing and thereof comes it that his": [0, 65535], "and thereof comes it that his head": [0, 65535], "thereof comes it that his head is": [0, 65535], "comes it that his head is light": [0, 65535], "it that his head is light thou": [0, 65535], "that his head is light thou saist": [0, 65535], "his head is light thou saist his": [0, 65535], "head is light thou saist his meate": [0, 65535], "is light thou saist his meate was": [0, 65535], "light thou saist his meate was sawc'd": [0, 65535], "thou saist his meate was sawc'd with": [0, 65535], "saist his meate was sawc'd with thy": [0, 65535], "his meate was sawc'd with thy vpbraidings": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "with thy vpbraidings vnquiet meales make ill": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "vnquiet meales make ill digestions thereof the": [0, 65535], "meales make ill digestions thereof the raging": [0, 65535], "make ill digestions thereof the raging fire": [0, 65535], "ill digestions thereof the raging fire of": [0, 65535], "digestions thereof the raging fire of feauer": [0, 65535], "thereof the raging fire of feauer bred": [0, 65535], "the raging fire of feauer bred and": [0, 65535], "raging fire of feauer bred and what's": [0, 65535], "fire of feauer bred and what's a": [0, 65535], "of feauer bred and what's a feauer": [0, 65535], "feauer bred and what's a feauer but": [0, 65535], "bred and what's a feauer but a": [0, 65535], "and what's a feauer but a fit": [0, 65535], "what's a feauer but a fit of": [0, 65535], "a feauer but a fit of madnesse": [0, 65535], "feauer but a fit of madnesse thou": [0, 65535], "but a fit of madnesse thou sayest": [0, 65535], "a fit of madnesse thou sayest his": [0, 65535], "fit of madnesse thou sayest his sports": [0, 65535], "of madnesse thou sayest his sports were": [0, 65535], "madnesse thou sayest his sports were hindred": [0, 65535], "thou sayest his sports were hindred by": [0, 65535], "sayest his sports were hindred by thy": [0, 65535], "his sports were hindred by thy bralles": [0, 65535], "sports were hindred by thy bralles sweet": [0, 65535], "were hindred by thy bralles sweet recreation": [0, 65535], "hindred by thy bralles sweet recreation barr'd": [0, 65535], "by thy bralles sweet recreation barr'd what": [0, 65535], "thy bralles sweet recreation barr'd what doth": [0, 65535], "bralles sweet recreation barr'd what doth ensue": [0, 65535], "sweet recreation barr'd what doth ensue but": [0, 65535], "recreation barr'd what doth ensue but moodie": [0, 65535], "barr'd what doth ensue but moodie and": [0, 65535], "what doth ensue but moodie and dull": [0, 65535], "doth ensue but moodie and dull melancholly": [0, 65535], "ensue but moodie and dull melancholly kinsman": [0, 65535], "but moodie and dull melancholly kinsman to": [0, 65535], "moodie and dull melancholly kinsman to grim": [0, 65535], "and dull melancholly kinsman to grim and": [0, 65535], "dull melancholly kinsman to grim and comfortlesse": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "kinsman to grim and comfortlesse dispaire and": [0, 65535], "to grim and comfortlesse dispaire and at": [0, 65535], "grim and comfortlesse dispaire and at her": [0, 65535], "and comfortlesse dispaire and at her heeles": [0, 65535], "comfortlesse dispaire and at her heeles a": [0, 65535], "dispaire and at her heeles a huge": [0, 65535], "and at her heeles a huge infectious": [0, 65535], "at her heeles a huge infectious troope": [0, 65535], "her heeles a huge infectious troope of": [0, 65535], "heeles a huge infectious troope of pale": [0, 65535], "a huge infectious troope of pale distemperatures": [0, 65535], "huge infectious troope of pale distemperatures and": [0, 65535], "infectious troope of pale distemperatures and foes": [0, 65535], "troope of pale distemperatures and foes to": [0, 65535], "of pale distemperatures and foes to life": [0, 65535], "pale distemperatures and foes to life in": [0, 65535], "distemperatures and foes to life in food": [0, 65535], "and foes to life in food in": [0, 65535], "foes to life in food in sport": [0, 65535], "to life in food in sport and": [0, 65535], "life in food in sport and life": [0, 65535], "in food in sport and life preseruing": [0, 65535], "food in sport and life preseruing rest": [0, 65535], "in sport and life preseruing rest to": [0, 65535], "sport and life preseruing rest to be": [0, 65535], "and life preseruing rest to be disturb'd": [0, 65535], "life preseruing rest to be disturb'd would": [0, 65535], "preseruing rest to be disturb'd would mad": [0, 65535], "rest to be disturb'd would mad or": [0, 65535], "to be disturb'd would mad or man": [0, 65535], "be disturb'd would mad or man or": [0, 65535], "disturb'd would mad or man or beast": [0, 65535], "would mad or man or beast the": [0, 65535], "mad or man or beast the consequence": [0, 65535], "or man or beast the consequence is": [0, 65535], "man or beast the consequence is then": [0, 65535], "or beast the consequence is then thy": [0, 65535], "beast the consequence is then thy iealous": [0, 65535], "the consequence is then thy iealous fits": [0, 65535], "consequence is then thy iealous fits hath": [0, 65535], "is then thy iealous fits hath scar'd": [0, 65535], "then thy iealous fits hath scar'd thy": [0, 65535], "thy iealous fits hath scar'd thy husband": [0, 65535], "iealous fits hath scar'd thy husband from": [0, 65535], "fits hath scar'd thy husband from the": [0, 65535], "hath scar'd thy husband from the vse": [0, 65535], "scar'd thy husband from the vse of": [0, 65535], "thy husband from the vse of wits": [0, 65535], "husband from the vse of wits luc": [0, 65535], "from the vse of wits luc she": [0, 65535], "the vse of wits luc she neuer": [0, 65535], "vse of wits luc she neuer reprehended": [0, 65535], "of wits luc she neuer reprehended him": [0, 65535], "wits luc she neuer reprehended him but": [0, 65535], "luc she neuer reprehended him but mildely": [0, 65535], "she neuer reprehended him but mildely when": [0, 65535], "neuer reprehended him but mildely when he": [0, 65535], "reprehended him but mildely when he demean'd": [0, 65535], "him but mildely when he demean'd himselfe": [0, 65535], "but mildely when he demean'd himselfe rough": [0, 65535], "mildely when he demean'd himselfe rough rude": [0, 65535], "when he demean'd himselfe rough rude and": [0, 65535], "he demean'd himselfe rough rude and wildly": [0, 65535], "demean'd himselfe rough rude and wildly why": [0, 65535], "himselfe rough rude and wildly why beare": [0, 65535], "rough rude and wildly why beare you": [0, 65535], "rude and wildly why beare you these": [0, 65535], "and wildly why beare you these rebukes": [0, 65535], "wildly why beare you these rebukes and": [0, 65535], "why beare you these rebukes and answer": [0, 65535], "beare you these rebukes and answer not": [0, 65535], "you these rebukes and answer not adri": [0, 65535], "these rebukes and answer not adri she": [0, 65535], "rebukes and answer not adri she did": [0, 65535], "and answer not adri she did betray": [0, 65535], "answer not adri she did betray me": [0, 65535], "not adri she did betray me to": [0, 65535], "adri she did betray me to my": [0, 65535], "she did betray me to my owne": [0, 65535], "did betray me to my owne reproofe": [0, 65535], "betray me to my owne reproofe good": [0, 65535], "me to my owne reproofe good people": [0, 65535], "to my owne reproofe good people enter": [0, 65535], "my owne reproofe good people enter and": [0, 65535], "owne reproofe good people enter and lay": [0, 65535], "reproofe good people enter and lay hold": [0, 65535], "good people enter and lay hold on": [0, 65535], "people enter and lay hold on him": [0, 65535], "enter and lay hold on him ab": [0, 65535], "and lay hold on him ab no": [0, 65535], "lay hold on him ab no not": [0, 65535], "hold on him ab no not a": [0, 65535], "on him ab no not a creature": [0, 65535], "him ab no not a creature enters": [0, 65535], "ab no not a creature enters in": [0, 65535], "no not a creature enters in my": [0, 65535], "not a creature enters in my house": [0, 65535], "a creature enters in my house ad": [0, 65535], "creature enters in my house ad then": [0, 65535], "enters in my house ad then let": [0, 65535], "in my house ad then let your": [0, 65535], "my house ad then let your seruants": [0, 65535], "house ad then let your seruants bring": [0, 65535], "ad then let your seruants bring my": [0, 65535], "then let your seruants bring my husband": [0, 65535], "let your seruants bring my husband forth": [0, 65535], "your seruants bring my husband forth ab": [0, 65535], "seruants bring my husband forth ab neither": [0, 65535], "bring my husband forth ab neither he": [0, 65535], "my husband forth ab neither he tooke": [0, 65535], "husband forth ab neither he tooke this": [0, 65535], "forth ab neither he tooke this place": [0, 65535], "ab neither he tooke this place for": [0, 65535], "neither he tooke this place for sanctuary": [0, 65535], "he tooke this place for sanctuary and": [0, 65535], "tooke this place for sanctuary and it": [0, 65535], "this place for sanctuary and it shall": [0, 65535], "place for sanctuary and it shall priuiledge": [0, 65535], "for sanctuary and it shall priuiledge him": [0, 65535], "sanctuary and it shall priuiledge him from": [0, 65535], "and it shall priuiledge him from your": [0, 65535], "it shall priuiledge him from your hands": [0, 65535], "shall priuiledge him from your hands till": [0, 65535], "priuiledge him from your hands till i": [0, 65535], "him from your hands till i haue": [0, 65535], "from your hands till i haue brought": [0, 65535], "your hands till i haue brought him": [0, 65535], "hands till i haue brought him to": [0, 65535], "till i haue brought him to his": [0, 65535], "i haue brought him to his wits": [0, 65535], "haue brought him to his wits againe": [0, 65535], "brought him to his wits againe or": [0, 65535], "him to his wits againe or loose": [0, 65535], "to his wits againe or loose my": [0, 65535], "his wits againe or loose my labour": [0, 65535], "wits againe or loose my labour in": [0, 65535], "againe or loose my labour in assaying": [0, 65535], "or loose my labour in assaying it": [0, 65535], "loose my labour in assaying it adr": [0, 65535], "my labour in assaying it adr i": [0, 65535], "labour in assaying it adr i will": [0, 65535], "in assaying it adr i will attend": [0, 65535], "assaying it adr i will attend my": [0, 65535], "it adr i will attend my husband": [0, 65535], "adr i will attend my husband be": [0, 65535], "i will attend my husband be his": [0, 65535], "will attend my husband be his nurse": [0, 65535], "attend my husband be his nurse diet": [0, 65535], "my husband be his nurse diet his": [0, 65535], "husband be his nurse diet his sicknesse": [0, 65535], "be his nurse diet his sicknesse for": [0, 65535], "his nurse diet his sicknesse for it": [0, 65535], "nurse diet his sicknesse for it is": [0, 65535], "diet his sicknesse for it is my": [0, 65535], "his sicknesse for it is my office": [0, 65535], "sicknesse for it is my office and": [0, 65535], "for it is my office and will": [0, 65535], "it is my office and will haue": [0, 65535], "is my office and will haue no": [0, 65535], "my office and will haue no atturney": [0, 65535], "office and will haue no atturney but": [0, 65535], "and will haue no atturney but my": [0, 65535], "will haue no atturney but my selfe": [0, 65535], "haue no atturney but my selfe and": [0, 65535], "no atturney but my selfe and therefore": [0, 65535], "atturney but my selfe and therefore let": [0, 65535], "but my selfe and therefore let me": [0, 65535], "my selfe and therefore let me haue": [0, 65535], "selfe and therefore let me haue him": [0, 65535], "and therefore let me haue him home": [0, 65535], "therefore let me haue him home with": [0, 65535], "let me haue him home with me": [0, 65535], "me haue him home with me ab": [0, 65535], "haue him home with me ab be": [0, 65535], "him home with me ab be patient": [0, 65535], "home with me ab be patient for": [0, 65535], "with me ab be patient for i": [0, 65535], "me ab be patient for i will": [0, 65535], "ab be patient for i will not": [0, 65535], "be patient for i will not let": [0, 65535], "patient for i will not let him": [0, 65535], "for i will not let him stirre": [0, 65535], "i will not let him stirre till": [0, 65535], "will not let him stirre till i": [0, 65535], "not let him stirre till i haue": [0, 65535], "let him stirre till i haue vs'd": [0, 65535], "him stirre till i haue vs'd the": [0, 65535], "stirre till i haue vs'd the approoued": [0, 65535], "till i haue vs'd the approoued meanes": [0, 65535], "i haue vs'd the approoued meanes i": [0, 65535], "haue vs'd the approoued meanes i haue": [0, 65535], "vs'd the approoued meanes i haue with": [0, 65535], "the approoued meanes i haue with wholsome": [0, 65535], "approoued meanes i haue with wholsome sirrups": [0, 65535], "meanes i haue with wholsome sirrups drugges": [0, 65535], "i haue with wholsome sirrups drugges and": [0, 65535], "haue with wholsome sirrups drugges and holy": [0, 65535], "with wholsome sirrups drugges and holy prayers": [0, 65535], "wholsome sirrups drugges and holy prayers to": [0, 65535], "sirrups drugges and holy prayers to make": [0, 65535], "drugges and holy prayers to make of": [0, 65535], "and holy prayers to make of him": [0, 65535], "holy prayers to make of him a": [0, 65535], "prayers to make of him a formall": [0, 65535], "to make of him a formall man": [0, 65535], "make of him a formall man againe": [0, 65535], "of him a formall man againe it": [0, 65535], "him a formall man againe it is": [0, 65535], "a formall man againe it is a": [0, 65535], "formall man againe it is a branch": [0, 65535], "man againe it is a branch and": [0, 65535], "againe it is a branch and parcell": [0, 65535], "it is a branch and parcell of": [0, 65535], "is a branch and parcell of mine": [0, 65535], "a branch and parcell of mine oath": [0, 65535], "branch and parcell of mine oath a": [0, 65535], "and parcell of mine oath a charitable": [0, 65535], "parcell of mine oath a charitable dutie": [0, 65535], "of mine oath a charitable dutie of": [0, 65535], "mine oath a charitable dutie of my": [0, 65535], "oath a charitable dutie of my order": [0, 65535], "a charitable dutie of my order therefore": [0, 65535], "charitable dutie of my order therefore depart": [0, 65535], "dutie of my order therefore depart and": [0, 65535], "of my order therefore depart and leaue": [0, 65535], "my order therefore depart and leaue him": [0, 65535], "order therefore depart and leaue him heere": [0, 65535], "therefore depart and leaue him heere with": [0, 65535], "depart and leaue him heere with me": [0, 65535], "and leaue him heere with me adr": [0, 65535], "leaue him heere with me adr i": [0, 65535], "him heere with me adr i will": [0, 65535], "heere with me adr i will not": [0, 65535], "with me adr i will not hence": [0, 65535], "me adr i will not hence and": [0, 65535], "adr i will not hence and leaue": [0, 65535], "i will not hence and leaue my": [0, 65535], "will not hence and leaue my husband": [0, 65535], "not hence and leaue my husband heere": [0, 65535], "hence and leaue my husband heere and": [0, 65535], "and leaue my husband heere and ill": [0, 65535], "leaue my husband heere and ill it": [0, 65535], "my husband heere and ill it doth": [0, 65535], "husband heere and ill it doth beseeme": [0, 65535], "heere and ill it doth beseeme your": [0, 65535], "and ill it doth beseeme your holinesse": [0, 65535], "ill it doth beseeme your holinesse to": [0, 65535], "it doth beseeme your holinesse to separate": [0, 65535], "doth beseeme your holinesse to separate the": [0, 65535], "beseeme your holinesse to separate the husband": [0, 65535], "your holinesse to separate the husband and": [0, 65535], "holinesse to separate the husband and the": [0, 65535], "to separate the husband and the wife": [0, 65535], "separate the husband and the wife ab": [0, 65535], "the husband and the wife ab be": [0, 65535], "husband and the wife ab be quiet": [0, 65535], "and the wife ab be quiet and": [0, 65535], "the wife ab be quiet and depart": [0, 65535], "wife ab be quiet and depart thou": [0, 65535], "ab be quiet and depart thou shalt": [0, 65535], "be quiet and depart thou shalt not": [0, 65535], "quiet and depart thou shalt not haue": [0, 65535], "and depart thou shalt not haue him": [0, 65535], "depart thou shalt not haue him luc": [0, 65535], "thou shalt not haue him luc complaine": [0, 65535], "shalt not haue him luc complaine vnto": [0, 65535], "not haue him luc complaine vnto the": [0, 65535], "haue him luc complaine vnto the duke": [0, 65535], "him luc complaine vnto the duke of": [0, 65535], "luc complaine vnto the duke of this": [0, 65535], "complaine vnto the duke of this indignity": [0, 65535], "vnto the duke of this indignity adr": [0, 65535], "the duke of this indignity adr come": [0, 65535], "duke of this indignity adr come go": [0, 65535], "of this indignity adr come go i": [0, 65535], "this indignity adr come go i will": [0, 65535], "indignity adr come go i will fall": [0, 65535], "adr come go i will fall prostrate": [0, 65535], "come go i will fall prostrate at": [0, 65535], "go i will fall prostrate at his": [0, 65535], "i will fall prostrate at his feete": [0, 65535], "will fall prostrate at his feete and": [0, 65535], "fall prostrate at his feete and neuer": [0, 65535], "prostrate at his feete and neuer rise": [0, 65535], "at his feete and neuer rise vntill": [0, 65535], "his feete and neuer rise vntill my": [0, 65535], "feete and neuer rise vntill my teares": [0, 65535], "and neuer rise vntill my teares and": [0, 65535], "neuer rise vntill my teares and prayers": [0, 65535], "rise vntill my teares and prayers haue": [0, 65535], "vntill my teares and prayers haue won": [0, 65535], "my teares and prayers haue won his": [0, 65535], "teares and prayers haue won his grace": [0, 65535], "and prayers haue won his grace to": [0, 65535], "prayers haue won his grace to come": [0, 65535], "haue won his grace to come in": [0, 65535], "won his grace to come in person": [0, 65535], "his grace to come in person hither": [0, 65535], "grace to come in person hither and": [0, 65535], "to come in person hither and take": [0, 65535], "come in person hither and take perforce": [0, 65535], "in person hither and take perforce my": [0, 65535], "person hither and take perforce my husband": [0, 65535], "hither and take perforce my husband from": [0, 65535], "and take perforce my husband from the": [0, 65535], "take perforce my husband from the abbesse": [0, 65535], "perforce my husband from the abbesse mar": [0, 65535], "my husband from the abbesse mar by": [0, 65535], "husband from the abbesse mar by this": [0, 65535], "from the abbesse mar by this i": [0, 65535], "the abbesse mar by this i thinke": [0, 65535], "abbesse mar by this i thinke the": [0, 65535], "mar by this i thinke the diall": [0, 65535], "by this i thinke the diall points": [0, 65535], "this i thinke the diall points at": [0, 65535], "i thinke the diall points at fiue": [0, 65535], "thinke the diall points at fiue anon": [0, 65535], "the diall points at fiue anon i'me": [0, 65535], "diall points at fiue anon i'me sure": [0, 65535], "points at fiue anon i'me sure the": [0, 65535], "at fiue anon i'me sure the duke": [0, 65535], "fiue anon i'me sure the duke himselfe": [0, 65535], "anon i'me sure the duke himselfe in": [0, 65535], "i'me sure the duke himselfe in person": [0, 65535], "sure the duke himselfe in person comes": [0, 65535], "the duke himselfe in person comes this": [0, 65535], "duke himselfe in person comes this way": [0, 65535], "himselfe in person comes this way to": [0, 65535], "in person comes this way to the": [0, 65535], "person comes this way to the melancholly": [0, 65535], "comes this way to the melancholly vale": [0, 65535], "this way to the melancholly vale the": [0, 65535], "way to the melancholly vale the place": [0, 65535], "to the melancholly vale the place of": [0, 65535], "the melancholly vale the place of depth": [0, 65535], "melancholly vale the place of depth and": [0, 65535], "vale the place of depth and sorrie": [0, 65535], "the place of depth and sorrie execution": [0, 65535], "place of depth and sorrie execution behinde": [0, 65535], "of depth and sorrie execution behinde the": [0, 65535], "depth and sorrie execution behinde the ditches": [0, 65535], "and sorrie execution behinde the ditches of": [0, 65535], "sorrie execution behinde the ditches of the": [0, 65535], "execution behinde the ditches of the abbey": [0, 65535], "behinde the ditches of the abbey heere": [0, 65535], "the ditches of the abbey heere gold": [0, 65535], "ditches of the abbey heere gold vpon": [0, 65535], "of the abbey heere gold vpon what": [0, 65535], "the abbey heere gold vpon what cause": [0, 65535], "abbey heere gold vpon what cause mar": [0, 65535], "heere gold vpon what cause mar to": [0, 65535], "gold vpon what cause mar to see": [0, 65535], "vpon what cause mar to see a": [0, 65535], "what cause mar to see a reuerent": [0, 65535], "cause mar to see a reuerent siracusian": [0, 65535], "mar to see a reuerent siracusian merchant": [0, 65535], "to see a reuerent siracusian merchant who": [0, 65535], "see a reuerent siracusian merchant who put": [0, 65535], "a reuerent siracusian merchant who put vnluckily": [0, 65535], "reuerent siracusian merchant who put vnluckily into": [0, 65535], "siracusian merchant who put vnluckily into this": [0, 65535], "merchant who put vnluckily into this bay": [0, 65535], "who put vnluckily into this bay against": [0, 65535], "put vnluckily into this bay against the": [0, 65535], "vnluckily into this bay against the lawes": [0, 65535], "into this bay against the lawes and": [0, 65535], "this bay against the lawes and statutes": [0, 65535], "bay against the lawes and statutes of": [0, 65535], "against the lawes and statutes of this": [0, 65535], "the lawes and statutes of this towne": [0, 65535], "lawes and statutes of this towne beheaded": [0, 65535], "and statutes of this towne beheaded publikely": [0, 65535], "statutes of this towne beheaded publikely for": [0, 65535], "of this towne beheaded publikely for his": [0, 65535], "this towne beheaded publikely for his offence": [0, 65535], "towne beheaded publikely for his offence gold": [0, 65535], "beheaded publikely for his offence gold see": [0, 65535], "publikely for his offence gold see where": [0, 65535], "for his offence gold see where they": [0, 65535], "his offence gold see where they come": [0, 65535], "offence gold see where they come we": [0, 65535], "gold see where they come we wil": [0, 65535], "see where they come we wil behold": [0, 65535], "where they come we wil behold his": [0, 65535], "they come we wil behold his death": [0, 65535], "come we wil behold his death luc": [0, 65535], "we wil behold his death luc kneele": [0, 65535], "wil behold his death luc kneele to": [0, 65535], "behold his death luc kneele to the": [0, 65535], "his death luc kneele to the duke": [0, 65535], "death luc kneele to the duke before": [0, 65535], "luc kneele to the duke before he": [0, 65535], "kneele to the duke before he passe": [0, 65535], "to the duke before he passe the": [0, 65535], "the duke before he passe the abbey": [0, 65535], "duke before he passe the abbey enter": [0, 65535], "before he passe the abbey enter the": [0, 65535], "he passe the abbey enter the duke": [0, 65535], "passe the abbey enter the duke of": [0, 65535], "the abbey enter the duke of ephesus": [0, 65535], "abbey enter the duke of ephesus and": [0, 65535], "enter the duke of ephesus and the": [0, 65535], "the duke of ephesus and the merchant": [0, 65535], "duke of ephesus and the merchant of": [0, 65535], "of ephesus and the merchant of siracuse": [0, 65535], "ephesus and the merchant of siracuse bare": [0, 65535], "and the merchant of siracuse bare head": [0, 65535], "the merchant of siracuse bare head with": [0, 65535], "merchant of siracuse bare head with the": [0, 65535], "of siracuse bare head with the headsman": [0, 65535], "siracuse bare head with the headsman other": [0, 65535], "bare head with the headsman other officers": [0, 65535], "head with the headsman other officers duke": [0, 65535], "with the headsman other officers duke yet": [0, 65535], "the headsman other officers duke yet once": [0, 65535], "headsman other officers duke yet once againe": [0, 65535], "other officers duke yet once againe proclaime": [0, 65535], "officers duke yet once againe proclaime it": [0, 65535], "duke yet once againe proclaime it publikely": [0, 65535], "yet once againe proclaime it publikely if": [0, 65535], "once againe proclaime it publikely if any": [0, 65535], "againe proclaime it publikely if any friend": [0, 65535], "proclaime it publikely if any friend will": [0, 65535], "it publikely if any friend will pay": [0, 65535], "publikely if any friend will pay the": [0, 65535], "if any friend will pay the summe": [0, 65535], "any friend will pay the summe for": [0, 65535], "friend will pay the summe for him": [0, 65535], "will pay the summe for him he": [0, 65535], "pay the summe for him he shall": [0, 65535], "the summe for him he shall not": [0, 65535], "summe for him he shall not die": [0, 65535], "for him he shall not die so": [0, 65535], "him he shall not die so much": [0, 65535], "he shall not die so much we": [0, 65535], "shall not die so much we tender": [0, 65535], "not die so much we tender him": [0, 65535], "die so much we tender him adr": [0, 65535], "so much we tender him adr iustice": [0, 65535], "much we tender him adr iustice most": [0, 65535], "we tender him adr iustice most sacred": [0, 65535], "tender him adr iustice most sacred duke": [0, 65535], "him adr iustice most sacred duke against": [0, 65535], "adr iustice most sacred duke against the": [0, 65535], "iustice most sacred duke against the abbesse": [0, 65535], "most sacred duke against the abbesse duke": [0, 65535], "sacred duke against the abbesse duke she": [0, 65535], "duke against the abbesse duke she is": [0, 65535], "against the abbesse duke she is a": [0, 65535], "the abbesse duke she is a vertuous": [0, 65535], "abbesse duke she is a vertuous and": [0, 65535], "duke she is a vertuous and a": [0, 65535], "she is a vertuous and a reuerend": [0, 65535], "is a vertuous and a reuerend lady": [0, 65535], "a vertuous and a reuerend lady it": [0, 65535], "vertuous and a reuerend lady it cannot": [0, 65535], "and a reuerend lady it cannot be": [0, 65535], "a reuerend lady it cannot be that": [0, 65535], "reuerend lady it cannot be that she": [0, 65535], "lady it cannot be that she hath": [0, 65535], "it cannot be that she hath done": [0, 65535], "cannot be that she hath done thee": [0, 65535], "be that she hath done thee wrong": [0, 65535], "that she hath done thee wrong adr": [0, 65535], "she hath done thee wrong adr may": [0, 65535], "hath done thee wrong adr may it": [0, 65535], "done thee wrong adr may it please": [0, 65535], "thee wrong adr may it please your": [0, 65535], "wrong adr may it please your grace": [0, 65535], "adr may it please your grace antipholus": [0, 65535], "may it please your grace antipholus my": [0, 65535], "it please your grace antipholus my husba": [0, 65535], "please your grace antipholus my husba n": [0, 65535], "your grace antipholus my husba n d": [0, 65535], "grace antipholus my husba n d who": [0, 65535], "antipholus my husba n d who i": [0, 65535], "my husba n d who i made": [0, 65535], "husba n d who i made lord": [0, 65535], "n d who i made lord of": [0, 65535], "d who i made lord of me": [0, 65535], "who i made lord of me and": [0, 65535], "i made lord of me and all": [0, 65535], "made lord of me and all i": [0, 65535], "lord of me and all i had": [0, 65535], "of me and all i had at": [0, 65535], "me and all i had at your": [0, 65535], "and all i had at your important": [0, 65535], "all i had at your important letters": [0, 65535], "i had at your important letters this": [0, 65535], "had at your important letters this ill": [0, 65535], "at your important letters this ill day": [0, 65535], "your important letters this ill day a": [0, 65535], "important letters this ill day a most": [0, 65535], "letters this ill day a most outragious": [0, 65535], "this ill day a most outragious fit": [0, 65535], "ill day a most outragious fit of": [0, 65535], "day a most outragious fit of madnesse": [0, 65535], "a most outragious fit of madnesse tooke": [0, 65535], "most outragious fit of madnesse tooke him": [0, 65535], "outragious fit of madnesse tooke him that": [0, 65535], "fit of madnesse tooke him that desp'rately": [0, 65535], "of madnesse tooke him that desp'rately he": [0, 65535], "madnesse tooke him that desp'rately he hurried": [0, 65535], "tooke him that desp'rately he hurried through": [0, 65535], "him that desp'rately he hurried through the": [0, 65535], "that desp'rately he hurried through the streete": [0, 65535], "desp'rately he hurried through the streete with": [0, 65535], "he hurried through the streete with him": [0, 65535], "hurried through the streete with him his": [0, 65535], "through the streete with him his bondman": [0, 65535], "the streete with him his bondman all": [0, 65535], "streete with him his bondman all as": [0, 65535], "with him his bondman all as mad": [0, 65535], "him his bondman all as mad as": [0, 65535], "his bondman all as mad as he": [0, 65535], "bondman all as mad as he doing": [0, 65535], "all as mad as he doing displeasure": [0, 65535], "as mad as he doing displeasure to": [0, 65535], "mad as he doing displeasure to the": [0, 65535], "as he doing displeasure to the citizens": [0, 65535], "he doing displeasure to the citizens by": [0, 65535], "doing displeasure to the citizens by rushing": [0, 65535], "displeasure to the citizens by rushing in": [0, 65535], "to the citizens by rushing in their": [0, 65535], "the citizens by rushing in their houses": [0, 65535], "citizens by rushing in their houses bearing": [0, 65535], "by rushing in their houses bearing thence": [0, 65535], "rushing in their houses bearing thence rings": [0, 65535], "in their houses bearing thence rings iewels": [0, 65535], "their houses bearing thence rings iewels any": [0, 65535], "houses bearing thence rings iewels any thing": [0, 65535], "bearing thence rings iewels any thing his": [0, 65535], "thence rings iewels any thing his rage": [0, 65535], "rings iewels any thing his rage did": [0, 65535], "iewels any thing his rage did like": [0, 65535], "any thing his rage did like once": [0, 65535], "thing his rage did like once did": [0, 65535], "his rage did like once did i": [0, 65535], "rage did like once did i get": [0, 65535], "did like once did i get him": [0, 65535], "like once did i get him bound": [0, 65535], "once did i get him bound and": [0, 65535], "did i get him bound and sent": [0, 65535], "i get him bound and sent him": [0, 65535], "get him bound and sent him home": [0, 65535], "him bound and sent him home whil'st": [0, 65535], "bound and sent him home whil'st to": [0, 65535], "and sent him home whil'st to take": [0, 65535], "sent him home whil'st to take order": [0, 65535], "him home whil'st to take order for": [0, 65535], "home whil'st to take order for the": [0, 65535], "whil'st to take order for the wrongs": [0, 65535], "to take order for the wrongs i": [0, 65535], "take order for the wrongs i went": [0, 65535], "order for the wrongs i went that": [0, 65535], "for the wrongs i went that heere": [0, 65535], "the wrongs i went that heere and": [0, 65535], "wrongs i went that heere and there": [0, 65535], "i went that heere and there his": [0, 65535], "went that heere and there his furie": [0, 65535], "that heere and there his furie had": [0, 65535], "heere and there his furie had committed": [0, 65535], "and there his furie had committed anon": [0, 65535], "there his furie had committed anon i": [0, 65535], "his furie had committed anon i wot": [0, 65535], "furie had committed anon i wot not": [0, 65535], "had committed anon i wot not by": [0, 65535], "committed anon i wot not by what": [0, 65535], "anon i wot not by what strong": [0, 65535], "i wot not by what strong escape": [0, 65535], "wot not by what strong escape he": [0, 65535], "not by what strong escape he broke": [0, 65535], "by what strong escape he broke from": [0, 65535], "what strong escape he broke from those": [0, 65535], "strong escape he broke from those that": [0, 65535], "escape he broke from those that had": [0, 65535], "he broke from those that had the": [0, 65535], "broke from those that had the guard": [0, 65535], "from those that had the guard of": [0, 65535], "those that had the guard of him": [0, 65535], "that had the guard of him and": [0, 65535], "had the guard of him and with": [0, 65535], "the guard of him and with his": [0, 65535], "guard of him and with his mad": [0, 65535], "of him and with his mad attendant": [0, 65535], "him and with his mad attendant and": [0, 65535], "and with his mad attendant and himselfe": [0, 65535], "with his mad attendant and himselfe each": [0, 65535], "his mad attendant and himselfe each one": [0, 65535], "mad attendant and himselfe each one with": [0, 65535], "attendant and himselfe each one with irefull": [0, 65535], "and himselfe each one with irefull passion": [0, 65535], "himselfe each one with irefull passion with": [0, 65535], "each one with irefull passion with drawne": [0, 65535], "one with irefull passion with drawne swords": [0, 65535], "with irefull passion with drawne swords met": [0, 65535], "irefull passion with drawne swords met vs": [0, 65535], "passion with drawne swords met vs againe": [0, 65535], "with drawne swords met vs againe and": [0, 65535], "drawne swords met vs againe and madly": [0, 65535], "swords met vs againe and madly bent": [0, 65535], "met vs againe and madly bent on": [0, 65535], "vs againe and madly bent on vs": [0, 65535], "againe and madly bent on vs chac'd": [0, 65535], "and madly bent on vs chac'd vs": [0, 65535], "madly bent on vs chac'd vs away": [0, 65535], "bent on vs chac'd vs away till": [0, 65535], "on vs chac'd vs away till raising": [0, 65535], "vs chac'd vs away till raising of": [0, 65535], "chac'd vs away till raising of more": [0, 65535], "vs away till raising of more aide": [0, 65535], "away till raising of more aide we": [0, 65535], "till raising of more aide we came": [0, 65535], "raising of more aide we came againe": [0, 65535], "of more aide we came againe to": [0, 65535], "more aide we came againe to binde": [0, 65535], "aide we came againe to binde them": [0, 65535], "we came againe to binde them then": [0, 65535], "came againe to binde them then they": [0, 65535], "againe to binde them then they fled": [0, 65535], "to binde them then they fled into": [0, 65535], "binde them then they fled into this": [0, 65535], "them then they fled into this abbey": [0, 65535], "then they fled into this abbey whether": [0, 65535], "they fled into this abbey whether we": [0, 65535], "fled into this abbey whether we pursu'd": [0, 65535], "into this abbey whether we pursu'd them": [0, 65535], "this abbey whether we pursu'd them and": [0, 65535], "abbey whether we pursu'd them and heere": [0, 65535], "whether we pursu'd them and heere the": [0, 65535], "we pursu'd them and heere the abbesse": [0, 65535], "pursu'd them and heere the abbesse shuts": [0, 65535], "them and heere the abbesse shuts the": [0, 65535], "and heere the abbesse shuts the gates": [0, 65535], "heere the abbesse shuts the gates on": [0, 65535], "the abbesse shuts the gates on vs": [0, 65535], "abbesse shuts the gates on vs and": [0, 65535], "shuts the gates on vs and will": [0, 65535], "the gates on vs and will not": [0, 65535], "gates on vs and will not suffer": [0, 65535], "on vs and will not suffer vs": [0, 65535], "vs and will not suffer vs to": [0, 65535], "and will not suffer vs to fetch": [0, 65535], "will not suffer vs to fetch him": [0, 65535], "not suffer vs to fetch him out": [0, 65535], "suffer vs to fetch him out nor": [0, 65535], "vs to fetch him out nor send": [0, 65535], "to fetch him out nor send him": [0, 65535], "fetch him out nor send him forth": [0, 65535], "him out nor send him forth that": [0, 65535], "out nor send him forth that we": [0, 65535], "nor send him forth that we may": [0, 65535], "send him forth that we may beare": [0, 65535], "him forth that we may beare him": [0, 65535], "forth that we may beare him hence": [0, 65535], "that we may beare him hence therefore": [0, 65535], "we may beare him hence therefore most": [0, 65535], "may beare him hence therefore most gracious": [0, 65535], "beare him hence therefore most gracious duke": [0, 65535], "him hence therefore most gracious duke with": [0, 65535], "hence therefore most gracious duke with thy": [0, 65535], "therefore most gracious duke with thy command": [0, 65535], "most gracious duke with thy command let": [0, 65535], "gracious duke with thy command let him": [0, 65535], "duke with thy command let him be": [0, 65535], "with thy command let him be brought": [0, 65535], "thy command let him be brought forth": [0, 65535], "command let him be brought forth and": [0, 65535], "let him be brought forth and borne": [0, 65535], "him be brought forth and borne hence": [0, 65535], "be brought forth and borne hence for": [0, 65535], "brought forth and borne hence for helpe": [0, 65535], "forth and borne hence for helpe duke": [0, 65535], "and borne hence for helpe duke long": [0, 65535], "borne hence for helpe duke long since": [0, 65535], "hence for helpe duke long since thy": [0, 65535], "for helpe duke long since thy husband": [0, 65535], "helpe duke long since thy husband seru'd": [0, 65535], "duke long since thy husband seru'd me": [0, 65535], "long since thy husband seru'd me in": [0, 65535], "since thy husband seru'd me in my": [0, 65535], "thy husband seru'd me in my wars": [0, 65535], "husband seru'd me in my wars and": [0, 65535], "seru'd me in my wars and i": [0, 65535], "me in my wars and i to": [0, 65535], "in my wars and i to thee": [0, 65535], "my wars and i to thee ingag'd": [0, 65535], "wars and i to thee ingag'd a": [0, 65535], "and i to thee ingag'd a princes": [0, 65535], "i to thee ingag'd a princes word": [0, 65535], "to thee ingag'd a princes word when": [0, 65535], "thee ingag'd a princes word when thou": [0, 65535], "ingag'd a princes word when thou didst": [0, 65535], "a princes word when thou didst make": [0, 65535], "princes word when thou didst make him": [0, 65535], "word when thou didst make him master": [0, 65535], "when thou didst make him master of": [0, 65535], "thou didst make him master of thy": [0, 65535], "didst make him master of thy bed": [0, 65535], "make him master of thy bed to": [0, 65535], "him master of thy bed to do": [0, 65535], "master of thy bed to do him": [0, 65535], "of thy bed to do him all": [0, 65535], "thy bed to do him all the": [0, 65535], "bed to do him all the grace": [0, 65535], "to do him all the grace and": [0, 65535], "do him all the grace and good": [0, 65535], "him all the grace and good i": [0, 65535], "all the grace and good i could": [0, 65535], "the grace and good i could go": [0, 65535], "grace and good i could go some": [0, 65535], "and good i could go some of": [0, 65535], "good i could go some of you": [0, 65535], "i could go some of you knocke": [0, 65535], "could go some of you knocke at": [0, 65535], "go some of you knocke at the": [0, 65535], "some of you knocke at the abbey": [0, 65535], "of you knocke at the abbey gate": [0, 65535], "you knocke at the abbey gate and": [0, 65535], "knocke at the abbey gate and bid": [0, 65535], "at the abbey gate and bid the": [0, 65535], "the abbey gate and bid the lady": [0, 65535], "abbey gate and bid the lady abbesse": [0, 65535], "gate and bid the lady abbesse come": [0, 65535], "and bid the lady abbesse come to": [0, 65535], "bid the lady abbesse come to me": [0, 65535], "the lady abbesse come to me i": [0, 65535], "lady abbesse come to me i will": [0, 65535], "abbesse come to me i will determine": [0, 65535], "come to me i will determine this": [0, 65535], "to me i will determine this before": [0, 65535], "me i will determine this before i": [0, 65535], "i will determine this before i stirre": [0, 65535], "will determine this before i stirre enter": [0, 65535], "determine this before i stirre enter a": [0, 65535], "this before i stirre enter a messenger": [0, 65535], "before i stirre enter a messenger oh": [0, 65535], "i stirre enter a messenger oh mistris": [0, 65535], "stirre enter a messenger oh mistris mistris": [0, 65535], "enter a messenger oh mistris mistris shift": [0, 65535], "a messenger oh mistris mistris shift and": [0, 65535], "messenger oh mistris mistris shift and saue": [0, 65535], "oh mistris mistris shift and saue your": [0, 65535], "mistris mistris shift and saue your selfe": [0, 65535], "mistris shift and saue your selfe my": [0, 65535], "shift and saue your selfe my master": [0, 65535], "and saue your selfe my master and": [0, 65535], "saue your selfe my master and his": [0, 65535], "your selfe my master and his man": [0, 65535], "selfe my master and his man are": [0, 65535], "my master and his man are both": [0, 65535], "master and his man are both broke": [0, 65535], "and his man are both broke loose": [0, 65535], "his man are both broke loose beaten": [0, 65535], "man are both broke loose beaten the": [0, 65535], "are both broke loose beaten the maids": [0, 65535], "both broke loose beaten the maids a": [0, 65535], "broke loose beaten the maids a row": [0, 65535], "loose beaten the maids a row and": [0, 65535], "beaten the maids a row and bound": [0, 65535], "the maids a row and bound the": [0, 65535], "maids a row and bound the doctor": [0, 65535], "a row and bound the doctor whose": [0, 65535], "row and bound the doctor whose beard": [0, 65535], "and bound the doctor whose beard they": [0, 65535], "bound the doctor whose beard they haue": [0, 65535], "the doctor whose beard they haue sindg'd": [0, 65535], "doctor whose beard they haue sindg'd off": [0, 65535], "whose beard they haue sindg'd off with": [0, 65535], "beard they haue sindg'd off with brands": [0, 65535], "they haue sindg'd off with brands of": [0, 65535], "haue sindg'd off with brands of fire": [0, 65535], "sindg'd off with brands of fire and": [0, 65535], "off with brands of fire and euer": [0, 65535], "with brands of fire and euer as": [0, 65535], "brands of fire and euer as it": [0, 65535], "of fire and euer as it blaz'd": [0, 65535], "fire and euer as it blaz'd they": [0, 65535], "and euer as it blaz'd they threw": [0, 65535], "euer as it blaz'd they threw on": [0, 65535], "as it blaz'd they threw on him": [0, 65535], "it blaz'd they threw on him great": [0, 65535], "blaz'd they threw on him great pailes": [0, 65535], "they threw on him great pailes of": [0, 65535], "threw on him great pailes of puddled": [0, 65535], "on him great pailes of puddled myre": [0, 65535], "him great pailes of puddled myre to": [0, 65535], "great pailes of puddled myre to quench": [0, 65535], "pailes of puddled myre to quench the": [0, 65535], "of puddled myre to quench the haire": [0, 65535], "puddled myre to quench the haire my": [0, 65535], "myre to quench the haire my mr": [0, 65535], "to quench the haire my mr preaches": [0, 65535], "quench the haire my mr preaches patience": [0, 65535], "the haire my mr preaches patience to": [0, 65535], "haire my mr preaches patience to him": [0, 65535], "my mr preaches patience to him and": [0, 65535], "mr preaches patience to him and the": [0, 65535], "preaches patience to him and the while": [0, 65535], "patience to him and the while his": [0, 65535], "to him and the while his man": [0, 65535], "him and the while his man with": [0, 65535], "and the while his man with cizers": [0, 65535], "the while his man with cizers nickes": [0, 65535], "while his man with cizers nickes him": [0, 65535], "his man with cizers nickes him like": [0, 65535], "man with cizers nickes him like a": [0, 65535], "with cizers nickes him like a foole": [0, 65535], "cizers nickes him like a foole and": [0, 65535], "nickes him like a foole and sure": [0, 65535], "him like a foole and sure vnlesse": [0, 65535], "like a foole and sure vnlesse you": [0, 65535], "a foole and sure vnlesse you send": [0, 65535], "foole and sure vnlesse you send some": [0, 65535], "and sure vnlesse you send some present": [0, 65535], "sure vnlesse you send some present helpe": [0, 65535], "vnlesse you send some present helpe betweene": [0, 65535], "you send some present helpe betweene them": [0, 65535], "send some present helpe betweene them they": [0, 65535], "some present helpe betweene them they will": [0, 65535], "present helpe betweene them they will kill": [0, 65535], "helpe betweene them they will kill the": [0, 65535], "betweene them they will kill the coniurer": [0, 65535], "them they will kill the coniurer adr": [0, 65535], "they will kill the coniurer adr peace": [0, 65535], "will kill the coniurer adr peace foole": [0, 65535], "kill the coniurer adr peace foole thy": [0, 65535], "the coniurer adr peace foole thy master": [0, 65535], "coniurer adr peace foole thy master and": [0, 65535], "adr peace foole thy master and his": [0, 65535], "peace foole thy master and his man": [0, 65535], "foole thy master and his man are": [0, 65535], "thy master and his man are here": [0, 65535], "master and his man are here and": [0, 65535], "and his man are here and that": [0, 65535], "his man are here and that is": [0, 65535], "man are here and that is false": [0, 65535], "are here and that is false thou": [0, 65535], "here and that is false thou dost": [0, 65535], "and that is false thou dost report": [0, 65535], "that is false thou dost report to": [0, 65535], "is false thou dost report to vs": [0, 65535], "false thou dost report to vs mess": [0, 65535], "thou dost report to vs mess mistris": [0, 65535], "dost report to vs mess mistris vpon": [0, 65535], "report to vs mess mistris vpon my": [0, 65535], "to vs mess mistris vpon my life": [0, 65535], "vs mess mistris vpon my life i": [0, 65535], "mess mistris vpon my life i tel": [0, 65535], "mistris vpon my life i tel you": [0, 65535], "vpon my life i tel you true": [0, 65535], "my life i tel you true i": [0, 65535], "life i tel you true i haue": [0, 65535], "i tel you true i haue not": [0, 65535], "tel you true i haue not breath'd": [0, 65535], "you true i haue not breath'd almost": [0, 65535], "true i haue not breath'd almost since": [0, 65535], "i haue not breath'd almost since i": [0, 65535], "haue not breath'd almost since i did": [0, 65535], "not breath'd almost since i did see": [0, 65535], "breath'd almost since i did see it": [0, 65535], "almost since i did see it he": [0, 65535], "since i did see it he cries": [0, 65535], "i did see it he cries for": [0, 65535], "did see it he cries for you": [0, 65535], "see it he cries for you and": [0, 65535], "it he cries for you and vowes": [0, 65535], "he cries for you and vowes if": [0, 65535], "cries for you and vowes if he": [0, 65535], "for you and vowes if he can": [0, 65535], "you and vowes if he can take": [0, 65535], "and vowes if he can take you": [0, 65535], "vowes if he can take you to": [0, 65535], "if he can take you to scorch": [0, 65535], "he can take you to scorch your": [0, 65535], "can take you to scorch your face": [0, 65535], "take you to scorch your face and": [0, 65535], "you to scorch your face and to": [0, 65535], "to scorch your face and to disfigure": [0, 65535], "scorch your face and to disfigure you": [0, 65535], "your face and to disfigure you cry": [0, 65535], "face and to disfigure you cry within": [0, 65535], "and to disfigure you cry within harke": [0, 65535], "to disfigure you cry within harke harke": [0, 65535], "disfigure you cry within harke harke i": [0, 65535], "you cry within harke harke i heare": [0, 65535], "cry within harke harke i heare him": [0, 65535], "within harke harke i heare him mistris": [0, 65535], "harke harke i heare him mistris flie": [0, 65535], "harke i heare him mistris flie be": [0, 65535], "i heare him mistris flie be gone": [0, 65535], "heare him mistris flie be gone duke": [0, 65535], "him mistris flie be gone duke come": [0, 65535], "mistris flie be gone duke come stand": [0, 65535], "flie be gone duke come stand by": [0, 65535], "be gone duke come stand by me": [0, 65535], "gone duke come stand by me feare": [0, 65535], "duke come stand by me feare nothing": [0, 65535], "come stand by me feare nothing guard": [0, 65535], "stand by me feare nothing guard with": [0, 65535], "by me feare nothing guard with halberds": [0, 65535], "me feare nothing guard with halberds adr": [0, 65535], "feare nothing guard with halberds adr ay": [0, 65535], "nothing guard with halberds adr ay me": [0, 65535], "guard with halberds adr ay me it": [0, 65535], "with halberds adr ay me it is": [0, 65535], "halberds adr ay me it is my": [0, 65535], "adr ay me it is my husband": [0, 65535], "ay me it is my husband witnesse": [0, 65535], "me it is my husband witnesse you": [0, 65535], "it is my husband witnesse you that": [0, 65535], "is my husband witnesse you that he": [0, 65535], "my husband witnesse you that he is": [0, 65535], "husband witnesse you that he is borne": [0, 65535], "witnesse you that he is borne about": [0, 65535], "you that he is borne about inuisible": [0, 65535], "that he is borne about inuisible euen": [0, 65535], "he is borne about inuisible euen now": [0, 65535], "is borne about inuisible euen now we": [0, 65535], "borne about inuisible euen now we hous'd": [0, 65535], "about inuisible euen now we hous'd him": [0, 65535], "inuisible euen now we hous'd him in": [0, 65535], "euen now we hous'd him in the": [0, 65535], "now we hous'd him in the abbey": [0, 65535], "we hous'd him in the abbey heere": [0, 65535], "hous'd him in the abbey heere and": [0, 65535], "him in the abbey heere and now": [0, 65535], "in the abbey heere and now he's": [0, 65535], "the abbey heere and now he's there": [0, 65535], "abbey heere and now he's there past": [0, 65535], "heere and now he's there past thought": [0, 65535], "and now he's there past thought of": [0, 65535], "now he's there past thought of humane": [0, 65535], "he's there past thought of humane reason": [0, 65535], "there past thought of humane reason enter": [0, 65535], "past thought of humane reason enter antipholus": [0, 65535], "thought of humane reason enter antipholus and": [0, 65535], "of humane reason enter antipholus and e": [0, 65535], "humane reason enter antipholus and e dromio": [0, 65535], "reason enter antipholus and e dromio of": [0, 65535], "enter antipholus and e dromio of ephesus": [0, 65535], "antipholus and e dromio of ephesus e": [0, 65535], "and e dromio of ephesus e ant": [0, 65535], "e dromio of ephesus e ant iustice": [0, 65535], "dromio of ephesus e ant iustice most": [0, 65535], "of ephesus e ant iustice most gracious": [0, 65535], "ephesus e ant iustice most gracious duke": [0, 65535], "e ant iustice most gracious duke oh": [0, 65535], "ant iustice most gracious duke oh grant": [0, 65535], "iustice most gracious duke oh grant me": [0, 65535], "most gracious duke oh grant me iustice": [0, 65535], "gracious duke oh grant me iustice euen": [0, 65535], "duke oh grant me iustice euen for": [0, 65535], "oh grant me iustice euen for the": [0, 65535], "grant me iustice euen for the seruice": [0, 65535], "me iustice euen for the seruice that": [0, 65535], "iustice euen for the seruice that long": [0, 65535], "euen for the seruice that long since": [0, 65535], "for the seruice that long since i": [0, 65535], "the seruice that long since i did": [0, 65535], "seruice that long since i did thee": [0, 65535], "that long since i did thee when": [0, 65535], "long since i did thee when i": [0, 65535], "since i did thee when i bestrid": [0, 65535], "i did thee when i bestrid thee": [0, 65535], "did thee when i bestrid thee in": [0, 65535], "thee when i bestrid thee in the": [0, 65535], "when i bestrid thee in the warres": [0, 65535], "i bestrid thee in the warres and": [0, 65535], "bestrid thee in the warres and tooke": [0, 65535], "thee in the warres and tooke deepe": [0, 65535], "in the warres and tooke deepe scarres": [0, 65535], "the warres and tooke deepe scarres to": [0, 65535], "warres and tooke deepe scarres to saue": [0, 65535], "and tooke deepe scarres to saue thy": [0, 65535], "tooke deepe scarres to saue thy life": [0, 65535], "deepe scarres to saue thy life euen": [0, 65535], "scarres to saue thy life euen for": [0, 65535], "to saue thy life euen for the": [0, 65535], "saue thy life euen for the blood": [0, 65535], "thy life euen for the blood that": [0, 65535], "life euen for the blood that then": [0, 65535], "euen for the blood that then i": [0, 65535], "for the blood that then i lost": [0, 65535], "the blood that then i lost for": [0, 65535], "blood that then i lost for thee": [0, 65535], "that then i lost for thee now": [0, 65535], "then i lost for thee now grant": [0, 65535], "i lost for thee now grant me": [0, 65535], "lost for thee now grant me iustice": [0, 65535], "for thee now grant me iustice mar": [0, 65535], "thee now grant me iustice mar fat": [0, 65535], "now grant me iustice mar fat vnlesse": [0, 65535], "grant me iustice mar fat vnlesse the": [0, 65535], "me iustice mar fat vnlesse the feare": [0, 65535], "iustice mar fat vnlesse the feare of": [0, 65535], "mar fat vnlesse the feare of death": [0, 65535], "fat vnlesse the feare of death doth": [0, 65535], "vnlesse the feare of death doth make": [0, 65535], "the feare of death doth make me": [0, 65535], "feare of death doth make me dote": [0, 65535], "of death doth make me dote i": [0, 65535], "death doth make me dote i see": [0, 65535], "doth make me dote i see my": [0, 65535], "make me dote i see my sonne": [0, 65535], "me dote i see my sonne antipholus": [0, 65535], "dote i see my sonne antipholus and": [0, 65535], "i see my sonne antipholus and dromio": [0, 65535], "see my sonne antipholus and dromio e": [0, 65535], "my sonne antipholus and dromio e ant": [0, 65535], "sonne antipholus and dromio e ant iustice": [0, 65535], "antipholus and dromio e ant iustice sweet": [0, 65535], "and dromio e ant iustice sweet prince": [0, 65535], "dromio e ant iustice sweet prince against": [0, 65535], "e ant iustice sweet prince against that": [0, 65535], "ant iustice sweet prince against that woman": [0, 65535], "iustice sweet prince against that woman there": [0, 65535], "sweet prince against that woman there she": [0, 65535], "prince against that woman there she whom": [0, 65535], "against that woman there she whom thou": [0, 65535], "that woman there she whom thou gau'st": [0, 65535], "woman there she whom thou gau'st to": [0, 65535], "there she whom thou gau'st to me": [0, 65535], "she whom thou gau'st to me to": [0, 65535], "whom thou gau'st to me to be": [0, 65535], "thou gau'st to me to be my": [0, 65535], "gau'st to me to be my wife": [0, 65535], "to me to be my wife that": [0, 65535], "me to be my wife that hath": [0, 65535], "to be my wife that hath abused": [0, 65535], "be my wife that hath abused and": [0, 65535], "my wife that hath abused and dishonored": [0, 65535], "wife that hath abused and dishonored me": [0, 65535], "that hath abused and dishonored me euen": [0, 65535], "hath abused and dishonored me euen in": [0, 65535], "abused and dishonored me euen in the": [0, 65535], "and dishonored me euen in the strength": [0, 65535], "dishonored me euen in the strength and": [0, 65535], "me euen in the strength and height": [0, 65535], "euen in the strength and height of": [0, 65535], "in the strength and height of iniurie": [0, 65535], "the strength and height of iniurie beyond": [0, 65535], "strength and height of iniurie beyond imagination": [0, 65535], "and height of iniurie beyond imagination is": [0, 65535], "height of iniurie beyond imagination is the": [0, 65535], "of iniurie beyond imagination is the wrong": [0, 65535], "iniurie beyond imagination is the wrong that": [0, 65535], "beyond imagination is the wrong that she": [0, 65535], "imagination is the wrong that she this": [0, 65535], "is the wrong that she this day": [0, 65535], "the wrong that she this day hath": [0, 65535], "wrong that she this day hath shamelesse": [0, 65535], "that she this day hath shamelesse throwne": [0, 65535], "she this day hath shamelesse throwne on": [0, 65535], "this day hath shamelesse throwne on me": [0, 65535], "day hath shamelesse throwne on me duke": [0, 65535], "hath shamelesse throwne on me duke discouer": [0, 65535], "shamelesse throwne on me duke discouer how": [0, 65535], "throwne on me duke discouer how and": [0, 65535], "on me duke discouer how and thou": [0, 65535], "me duke discouer how and thou shalt": [0, 65535], "duke discouer how and thou shalt finde": [0, 65535], "discouer how and thou shalt finde me": [0, 65535], "how and thou shalt finde me iust": [0, 65535], "and thou shalt finde me iust e": [0, 65535], "thou shalt finde me iust e ant": [0, 65535], "shalt finde me iust e ant this": [0, 65535], "finde me iust e ant this day": [0, 65535], "me iust e ant this day great": [0, 65535], "iust e ant this day great duke": [0, 65535], "e ant this day great duke she": [0, 65535], "ant this day great duke she shut": [0, 65535], "this day great duke she shut the": [0, 65535], "day great duke she shut the doores": [0, 65535], "great duke she shut the doores vpon": [0, 65535], "duke she shut the doores vpon me": [0, 65535], "she shut the doores vpon me while": [0, 65535], "shut the doores vpon me while she": [0, 65535], "the doores vpon me while she with": [0, 65535], "doores vpon me while she with harlots": [0, 65535], "vpon me while she with harlots feasted": [0, 65535], "me while she with harlots feasted in": [0, 65535], "while she with harlots feasted in my": [0, 65535], "she with harlots feasted in my house": [0, 65535], "with harlots feasted in my house duke": [0, 65535], "harlots feasted in my house duke a": [0, 65535], "feasted in my house duke a greeuous": [0, 65535], "in my house duke a greeuous fault": [0, 65535], "my house duke a greeuous fault say": [0, 65535], "house duke a greeuous fault say woman": [0, 65535], "duke a greeuous fault say woman didst": [0, 65535], "a greeuous fault say woman didst thou": [0, 65535], "greeuous fault say woman didst thou so": [0, 65535], "fault say woman didst thou so adr": [0, 65535], "say woman didst thou so adr no": [0, 65535], "woman didst thou so adr no my": [0, 65535], "didst thou so adr no my good": [0, 65535], "thou so adr no my good lord": [0, 65535], "so adr no my good lord my": [0, 65535], "adr no my good lord my selfe": [0, 65535], "no my good lord my selfe he": [0, 65535], "my good lord my selfe he and": [0, 65535], "good lord my selfe he and my": [0, 65535], "lord my selfe he and my sister": [0, 65535], "my selfe he and my sister to": [0, 65535], "selfe he and my sister to day": [0, 65535], "he and my sister to day did": [0, 65535], "and my sister to day did dine": [0, 65535], "my sister to day did dine together": [0, 65535], "sister to day did dine together so": [0, 65535], "to day did dine together so befall": [0, 65535], "day did dine together so befall my": [0, 65535], "did dine together so befall my soule": [0, 65535], "dine together so befall my soule as": [0, 65535], "together so befall my soule as this": [0, 65535], "so befall my soule as this is": [0, 65535], "befall my soule as this is false": [0, 65535], "my soule as this is false he": [0, 65535], "soule as this is false he burthens": [0, 65535], "as this is false he burthens me": [0, 65535], "this is false he burthens me withall": [0, 65535], "is false he burthens me withall luc": [0, 65535], "false he burthens me withall luc nere": [0, 65535], "he burthens me withall luc nere may": [0, 65535], "burthens me withall luc nere may i": [0, 65535], "me withall luc nere may i looke": [0, 65535], "withall luc nere may i looke on": [0, 65535], "luc nere may i looke on day": [0, 65535], "nere may i looke on day nor": [0, 65535], "may i looke on day nor sleepe": [0, 65535], "i looke on day nor sleepe on": [0, 65535], "looke on day nor sleepe on night": [0, 65535], "on day nor sleepe on night but": [0, 65535], "day nor sleepe on night but she": [0, 65535], "nor sleepe on night but she tels": [0, 65535], "sleepe on night but she tels to": [0, 65535], "on night but she tels to your": [0, 65535], "night but she tels to your highnesse": [0, 65535], "but she tels to your highnesse simple": [0, 65535], "she tels to your highnesse simple truth": [0, 65535], "tels to your highnesse simple truth gold": [0, 65535], "to your highnesse simple truth gold o": [0, 65535], "your highnesse simple truth gold o periur'd": [0, 65535], "highnesse simple truth gold o periur'd woman": [0, 65535], "simple truth gold o periur'd woman they": [0, 65535], "truth gold o periur'd woman they are": [0, 65535], "gold o periur'd woman they are both": [0, 65535], "o periur'd woman they are both forsworne": [0, 65535], "periur'd woman they are both forsworne in": [0, 65535], "woman they are both forsworne in this": [0, 65535], "they are both forsworne in this the": [0, 65535], "are both forsworne in this the madman": [0, 65535], "both forsworne in this the madman iustly": [0, 65535], "forsworne in this the madman iustly chargeth": [0, 65535], "in this the madman iustly chargeth them": [0, 65535], "this the madman iustly chargeth them e": [0, 65535], "the madman iustly chargeth them e ant": [0, 65535], "madman iustly chargeth them e ant my": [0, 65535], "iustly chargeth them e ant my liege": [0, 65535], "chargeth them e ant my liege i": [0, 65535], "them e ant my liege i am": [0, 65535], "e ant my liege i am aduised": [0, 65535], "ant my liege i am aduised what": [0, 65535], "my liege i am aduised what i": [0, 65535], "liege i am aduised what i say": [0, 65535], "i am aduised what i say neither": [0, 65535], "am aduised what i say neither disturbed": [0, 65535], "aduised what i say neither disturbed with": [0, 65535], "what i say neither disturbed with the": [0, 65535], "i say neither disturbed with the effect": [0, 65535], "say neither disturbed with the effect of": [0, 65535], "neither disturbed with the effect of wine": [0, 65535], "disturbed with the effect of wine nor": [0, 65535], "with the effect of wine nor headie": [0, 65535], "the effect of wine nor headie rash": [0, 65535], "effect of wine nor headie rash prouoak'd": [0, 65535], "of wine nor headie rash prouoak'd with": [0, 65535], "wine nor headie rash prouoak'd with raging": [0, 65535], "nor headie rash prouoak'd with raging ire": [0, 65535], "headie rash prouoak'd with raging ire albeit": [0, 65535], "rash prouoak'd with raging ire albeit my": [0, 65535], "prouoak'd with raging ire albeit my wrongs": [0, 65535], "with raging ire albeit my wrongs might": [0, 65535], "raging ire albeit my wrongs might make": [0, 65535], "ire albeit my wrongs might make one": [0, 65535], "albeit my wrongs might make one wiser": [0, 65535], "my wrongs might make one wiser mad": [0, 65535], "wrongs might make one wiser mad this": [0, 65535], "might make one wiser mad this woman": [0, 65535], "make one wiser mad this woman lock'd": [0, 65535], "one wiser mad this woman lock'd me": [0, 65535], "wiser mad this woman lock'd me out": [0, 65535], "mad this woman lock'd me out this": [0, 65535], "this woman lock'd me out this day": [0, 65535], "woman lock'd me out this day from": [0, 65535], "lock'd me out this day from dinner": [0, 65535], "me out this day from dinner that": [0, 65535], "out this day from dinner that goldsmith": [0, 65535], "this day from dinner that goldsmith there": [0, 65535], "day from dinner that goldsmith there were": [0, 65535], "from dinner that goldsmith there were he": [0, 65535], "dinner that goldsmith there were he not": [0, 65535], "that goldsmith there were he not pack'd": [0, 65535], "goldsmith there were he not pack'd with": [0, 65535], "there were he not pack'd with her": [0, 65535], "were he not pack'd with her could": [0, 65535], "he not pack'd with her could witnesse": [0, 65535], "not pack'd with her could witnesse it": [0, 65535], "pack'd with her could witnesse it for": [0, 65535], "with her could witnesse it for he": [0, 65535], "her could witnesse it for he was": [0, 65535], "could witnesse it for he was with": [0, 65535], "witnesse it for he was with me": [0, 65535], "it for he was with me then": [0, 65535], "for he was with me then who": [0, 65535], "he was with me then who parted": [0, 65535], "was with me then who parted with": [0, 65535], "with me then who parted with me": [0, 65535], "me then who parted with me to": [0, 65535], "then who parted with me to go": [0, 65535], "who parted with me to go fetch": [0, 65535], "parted with me to go fetch a": [0, 65535], "with me to go fetch a chaine": [0, 65535], "me to go fetch a chaine promising": [0, 65535], "to go fetch a chaine promising to": [0, 65535], "go fetch a chaine promising to bring": [0, 65535], "fetch a chaine promising to bring it": [0, 65535], "a chaine promising to bring it to": [0, 65535], "chaine promising to bring it to the": [0, 65535], "promising to bring it to the porpentine": [0, 65535], "to bring it to the porpentine where": [0, 65535], "bring it to the porpentine where balthasar": [0, 65535], "it to the porpentine where balthasar and": [0, 65535], "to the porpentine where balthasar and i": [0, 65535], "the porpentine where balthasar and i did": [0, 65535], "porpentine where balthasar and i did dine": [0, 65535], "where balthasar and i did dine together": [0, 65535], "balthasar and i did dine together our": [0, 65535], "and i did dine together our dinner": [0, 65535], "i did dine together our dinner done": [0, 65535], "did dine together our dinner done and": [0, 65535], "dine together our dinner done and he": [0, 65535], "together our dinner done and he not": [0, 65535], "our dinner done and he not comming": [0, 65535], "dinner done and he not comming thither": [0, 65535], "done and he not comming thither i": [0, 65535], "and he not comming thither i went": [0, 65535], "he not comming thither i went to": [0, 65535], "not comming thither i went to seeke": [0, 65535], "comming thither i went to seeke him": [0, 65535], "thither i went to seeke him in": [0, 65535], "i went to seeke him in the": [0, 65535], "went to seeke him in the street": [0, 65535], "to seeke him in the street i": [0, 65535], "seeke him in the street i met": [0, 65535], "him in the street i met him": [0, 65535], "in the street i met him and": [0, 65535], "the street i met him and in": [0, 65535], "street i met him and in his": [0, 65535], "i met him and in his companie": [0, 65535], "met him and in his companie that": [0, 65535], "him and in his companie that gentleman": [0, 65535], "and in his companie that gentleman there": [0, 65535], "in his companie that gentleman there did": [0, 65535], "his companie that gentleman there did this": [0, 65535], "companie that gentleman there did this periur'd": [0, 65535], "that gentleman there did this periur'd goldsmith": [0, 65535], "gentleman there did this periur'd goldsmith sweare": [0, 65535], "there did this periur'd goldsmith sweare me": [0, 65535], "did this periur'd goldsmith sweare me downe": [0, 65535], "this periur'd goldsmith sweare me downe that": [0, 65535], "periur'd goldsmith sweare me downe that i": [0, 65535], "goldsmith sweare me downe that i this": [0, 65535], "sweare me downe that i this day": [0, 65535], "me downe that i this day of": [0, 65535], "downe that i this day of him": [0, 65535], "that i this day of him receiu'd": [0, 65535], "i this day of him receiu'd the": [0, 65535], "this day of him receiu'd the chaine": [0, 65535], "day of him receiu'd the chaine which": [0, 65535], "of him receiu'd the chaine which god": [0, 65535], "him receiu'd the chaine which god he": [0, 65535], "receiu'd the chaine which god he knowes": [0, 65535], "the chaine which god he knowes i": [0, 65535], "chaine which god he knowes i saw": [0, 65535], "which god he knowes i saw not": [0, 65535], "god he knowes i saw not for": [0, 65535], "he knowes i saw not for the": [0, 65535], "knowes i saw not for the which": [0, 65535], "i saw not for the which he": [0, 65535], "saw not for the which he did": [0, 65535], "not for the which he did arrest": [0, 65535], "for the which he did arrest me": [0, 65535], "the which he did arrest me with": [0, 65535], "which he did arrest me with an": [0, 65535], "he did arrest me with an officer": [0, 65535], "did arrest me with an officer i": [0, 65535], "arrest me with an officer i did": [0, 65535], "me with an officer i did obey": [0, 65535], "with an officer i did obey and": [0, 65535], "an officer i did obey and sent": [0, 65535], "officer i did obey and sent my": [0, 65535], "i did obey and sent my pesant": [0, 65535], "did obey and sent my pesant home": [0, 65535], "obey and sent my pesant home for": [0, 65535], "and sent my pesant home for certaine": [0, 65535], "sent my pesant home for certaine duckets": [0, 65535], "my pesant home for certaine duckets he": [0, 65535], "pesant home for certaine duckets he with": [0, 65535], "home for certaine duckets he with none": [0, 65535], "for certaine duckets he with none return'd": [0, 65535], "certaine duckets he with none return'd then": [0, 65535], "duckets he with none return'd then fairely": [0, 65535], "he with none return'd then fairely i": [0, 65535], "with none return'd then fairely i bespoke": [0, 65535], "none return'd then fairely i bespoke the": [0, 65535], "return'd then fairely i bespoke the officer": [0, 65535], "then fairely i bespoke the officer to": [0, 65535], "fairely i bespoke the officer to go": [0, 65535], "i bespoke the officer to go in": [0, 65535], "bespoke the officer to go in person": [0, 65535], "the officer to go in person with": [0, 65535], "officer to go in person with me": [0, 65535], "to go in person with me to": [0, 65535], "go in person with me to my": [0, 65535], "in person with me to my house": [0, 65535], "person with me to my house by'th'": [0, 65535], "with me to my house by'th' way": [0, 65535], "me to my house by'th' way we": [0, 65535], "to my house by'th' way we met": [0, 65535], "my house by'th' way we met my": [0, 65535], "house by'th' way we met my wife": [0, 65535], "by'th' way we met my wife her": [0, 65535], "way we met my wife her sister": [0, 65535], "we met my wife her sister and": [0, 65535], "met my wife her sister and a": [0, 65535], "my wife her sister and a rabble": [0, 65535], "wife her sister and a rabble more": [0, 65535], "her sister and a rabble more of": [0, 65535], "sister and a rabble more of vilde": [0, 65535], "and a rabble more of vilde confederates": [0, 65535], "a rabble more of vilde confederates along": [0, 65535], "rabble more of vilde confederates along with": [0, 65535], "more of vilde confederates along with them": [0, 65535], "of vilde confederates along with them they": [0, 65535], "vilde confederates along with them they brought": [0, 65535], "confederates along with them they brought one": [0, 65535], "along with them they brought one pinch": [0, 65535], "with them they brought one pinch a": [0, 65535], "them they brought one pinch a hungry": [0, 65535], "they brought one pinch a hungry leane": [0, 65535], "brought one pinch a hungry leane fac'd": [0, 65535], "one pinch a hungry leane fac'd villaine": [0, 65535], "pinch a hungry leane fac'd villaine a": [0, 65535], "a hungry leane fac'd villaine a meere": [0, 65535], "hungry leane fac'd villaine a meere anatomie": [0, 65535], "leane fac'd villaine a meere anatomie a": [0, 65535], "fac'd villaine a meere anatomie a mountebanke": [0, 65535], "villaine a meere anatomie a mountebanke a": [0, 65535], "a meere anatomie a mountebanke a thred": [0, 65535], "meere anatomie a mountebanke a thred bare": [0, 65535], "anatomie a mountebanke a thred bare iugler": [0, 65535], "a mountebanke a thred bare iugler and": [0, 65535], "mountebanke a thred bare iugler and a": [0, 65535], "a thred bare iugler and a fortune": [0, 65535], "thred bare iugler and a fortune teller": [0, 65535], "bare iugler and a fortune teller a": [0, 65535], "iugler and a fortune teller a needy": [0, 65535], "and a fortune teller a needy hollow": [0, 65535], "a fortune teller a needy hollow ey'd": [0, 65535], "fortune teller a needy hollow ey'd sharpe": [0, 65535], "teller a needy hollow ey'd sharpe looking": [0, 65535], "a needy hollow ey'd sharpe looking wretch": [0, 65535], "needy hollow ey'd sharpe looking wretch a": [0, 65535], "hollow ey'd sharpe looking wretch a liuing": [0, 65535], "ey'd sharpe looking wretch a liuing dead": [0, 65535], "sharpe looking wretch a liuing dead man": [0, 65535], "looking wretch a liuing dead man this": [0, 65535], "wretch a liuing dead man this pernicious": [0, 65535], "a liuing dead man this pernicious slaue": [0, 65535], "liuing dead man this pernicious slaue forsooth": [0, 65535], "dead man this pernicious slaue forsooth tooke": [0, 65535], "man this pernicious slaue forsooth tooke on": [0, 65535], "this pernicious slaue forsooth tooke on him": [0, 65535], "pernicious slaue forsooth tooke on him as": [0, 65535], "slaue forsooth tooke on him as a": [0, 65535], "forsooth tooke on him as a coniurer": [0, 65535], "tooke on him as a coniurer and": [0, 65535], "on him as a coniurer and gazing": [0, 65535], "him as a coniurer and gazing in": [0, 65535], "as a coniurer and gazing in mine": [0, 65535], "a coniurer and gazing in mine eyes": [0, 65535], "coniurer and gazing in mine eyes feeling": [0, 65535], "and gazing in mine eyes feeling my": [0, 65535], "gazing in mine eyes feeling my pulse": [0, 65535], "in mine eyes feeling my pulse and": [0, 65535], "mine eyes feeling my pulse and with": [0, 65535], "eyes feeling my pulse and with no": [0, 65535], "feeling my pulse and with no face": [0, 65535], "my pulse and with no face as": [0, 65535], "pulse and with no face as 'twere": [0, 65535], "and with no face as 'twere out": [0, 65535], "with no face as 'twere out facing": [0, 65535], "no face as 'twere out facing me": [0, 65535], "face as 'twere out facing me cries": [0, 65535], "as 'twere out facing me cries out": [0, 65535], "'twere out facing me cries out i": [0, 65535], "out facing me cries out i was": [0, 65535], "facing me cries out i was possest": [0, 65535], "me cries out i was possest then": [0, 65535], "cries out i was possest then altogether": [0, 65535], "out i was possest then altogether they": [0, 65535], "i was possest then altogether they fell": [0, 65535], "was possest then altogether they fell vpon": [0, 65535], "possest then altogether they fell vpon me": [0, 65535], "then altogether they fell vpon me bound": [0, 65535], "altogether they fell vpon me bound me": [0, 65535], "they fell vpon me bound me bore": [0, 65535], "fell vpon me bound me bore me": [0, 65535], "vpon me bound me bore me thence": [0, 65535], "me bound me bore me thence and": [0, 65535], "bound me bore me thence and in": [0, 65535], "me bore me thence and in a": [0, 65535], "bore me thence and in a darke": [0, 65535], "me thence and in a darke and": [0, 65535], "thence and in a darke and dankish": [0, 65535], "and in a darke and dankish vault": [0, 65535], "in a darke and dankish vault at": [0, 65535], "a darke and dankish vault at home": [0, 65535], "darke and dankish vault at home there": [0, 65535], "and dankish vault at home there left": [0, 65535], "dankish vault at home there left me": [0, 65535], "vault at home there left me and": [0, 65535], "at home there left me and my": [0, 65535], "home there left me and my man": [0, 65535], "there left me and my man both": [0, 65535], "left me and my man both bound": [0, 65535], "me and my man both bound together": [0, 65535], "and my man both bound together till": [0, 65535], "my man both bound together till gnawing": [0, 65535], "man both bound together till gnawing with": [0, 65535], "both bound together till gnawing with my": [0, 65535], "bound together till gnawing with my teeth": [0, 65535], "together till gnawing with my teeth my": [0, 65535], "till gnawing with my teeth my bonds": [0, 65535], "gnawing with my teeth my bonds in": [0, 65535], "with my teeth my bonds in sunder": [0, 65535], "my teeth my bonds in sunder i": [0, 65535], "teeth my bonds in sunder i gain'd": [0, 65535], "my bonds in sunder i gain'd my": [0, 65535], "bonds in sunder i gain'd my freedome": [0, 65535], "in sunder i gain'd my freedome and": [0, 65535], "sunder i gain'd my freedome and immediately": [0, 65535], "i gain'd my freedome and immediately ran": [0, 65535], "gain'd my freedome and immediately ran hether": [0, 65535], "my freedome and immediately ran hether to": [0, 65535], "freedome and immediately ran hether to your": [0, 65535], "and immediately ran hether to your grace": [0, 65535], "immediately ran hether to your grace whom": [0, 65535], "ran hether to your grace whom i": [0, 65535], "hether to your grace whom i beseech": [0, 65535], "to your grace whom i beseech to": [0, 65535], "your grace whom i beseech to giue": [0, 65535], "grace whom i beseech to giue me": [0, 65535], "whom i beseech to giue me ample": [0, 65535], "i beseech to giue me ample satisfaction": [0, 65535], "beseech to giue me ample satisfaction for": [0, 65535], "to giue me ample satisfaction for these": [0, 65535], "giue me ample satisfaction for these deepe": [0, 65535], "me ample satisfaction for these deepe shames": [0, 65535], "ample satisfaction for these deepe shames and": [0, 65535], "satisfaction for these deepe shames and great": [0, 65535], "for these deepe shames and great indignities": [0, 65535], "these deepe shames and great indignities gold": [0, 65535], "deepe shames and great indignities gold my": [0, 65535], "shames and great indignities gold my lord": [0, 65535], "and great indignities gold my lord in": [0, 65535], "great indignities gold my lord in truth": [0, 65535], "indignities gold my lord in truth thus": [0, 65535], "gold my lord in truth thus far": [0, 65535], "my lord in truth thus far i": [0, 65535], "lord in truth thus far i witnes": [0, 65535], "in truth thus far i witnes with": [0, 65535], "truth thus far i witnes with him": [0, 65535], "thus far i witnes with him that": [0, 65535], "far i witnes with him that he": [0, 65535], "i witnes with him that he din'd": [0, 65535], "witnes with him that he din'd not": [0, 65535], "with him that he din'd not at": [0, 65535], "him that he din'd not at home": [0, 65535], "that he din'd not at home but": [0, 65535], "he din'd not at home but was": [0, 65535], "din'd not at home but was lock'd": [0, 65535], "not at home but was lock'd out": [0, 65535], "at home but was lock'd out duke": [0, 65535], "home but was lock'd out duke but": [0, 65535], "but was lock'd out duke but had": [0, 65535], "was lock'd out duke but had he": [0, 65535], "lock'd out duke but had he such": [0, 65535], "out duke but had he such a": [0, 65535], "duke but had he such a chaine": [0, 65535], "but had he such a chaine of": [0, 65535], "had he such a chaine of thee": [0, 65535], "he such a chaine of thee or": [0, 65535], "such a chaine of thee or no": [0, 65535], "a chaine of thee or no gold": [0, 65535], "chaine of thee or no gold he": [0, 65535], "of thee or no gold he had": [0, 65535], "thee or no gold he had my": [0, 65535], "or no gold he had my lord": [0, 65535], "no gold he had my lord and": [0, 65535], "gold he had my lord and when": [0, 65535], "he had my lord and when he": [0, 65535], "had my lord and when he ran": [0, 65535], "my lord and when he ran in": [0, 65535], "lord and when he ran in heere": [0, 65535], "and when he ran in heere these": [0, 65535], "when he ran in heere these people": [0, 65535], "he ran in heere these people saw": [0, 65535], "ran in heere these people saw the": [0, 65535], "in heere these people saw the chaine": [0, 65535], "heere these people saw the chaine about": [0, 65535], "these people saw the chaine about his": [0, 65535], "people saw the chaine about his necke": [0, 65535], "saw the chaine about his necke mar": [0, 65535], "the chaine about his necke mar besides": [0, 65535], "chaine about his necke mar besides i": [0, 65535], "about his necke mar besides i will": [0, 65535], "his necke mar besides i will be": [0, 65535], "necke mar besides i will be sworne": [0, 65535], "mar besides i will be sworne these": [0, 65535], "besides i will be sworne these eares": [0, 65535], "i will be sworne these eares of": [0, 65535], "will be sworne these eares of mine": [0, 65535], "be sworne these eares of mine heard": [0, 65535], "sworne these eares of mine heard you": [0, 65535], "these eares of mine heard you confesse": [0, 65535], "eares of mine heard you confesse you": [0, 65535], "of mine heard you confesse you had": [0, 65535], "mine heard you confesse you had the": [0, 65535], "heard you confesse you had the chaine": [0, 65535], "you confesse you had the chaine of": [0, 65535], "confesse you had the chaine of him": [0, 65535], "you had the chaine of him after": [0, 65535], "had the chaine of him after you": [0, 65535], "the chaine of him after you first": [0, 65535], "chaine of him after you first forswore": [0, 65535], "of him after you first forswore it": [0, 65535], "him after you first forswore it on": [0, 65535], "after you first forswore it on the": [0, 65535], "you first forswore it on the mart": [0, 65535], "first forswore it on the mart and": [0, 65535], "forswore it on the mart and thereupon": [0, 65535], "it on the mart and thereupon i": [0, 65535], "on the mart and thereupon i drew": [0, 65535], "the mart and thereupon i drew my": [0, 65535], "mart and thereupon i drew my sword": [0, 65535], "and thereupon i drew my sword on": [0, 65535], "thereupon i drew my sword on you": [0, 65535], "i drew my sword on you and": [0, 65535], "drew my sword on you and then": [0, 65535], "my sword on you and then you": [0, 65535], "sword on you and then you fled": [0, 65535], "on you and then you fled into": [0, 65535], "you and then you fled into this": [0, 65535], "and then you fled into this abbey": [0, 65535], "then you fled into this abbey heere": [0, 65535], "you fled into this abbey heere from": [0, 65535], "fled into this abbey heere from whence": [0, 65535], "into this abbey heere from whence i": [0, 65535], "this abbey heere from whence i thinke": [0, 65535], "abbey heere from whence i thinke you": [0, 65535], "heere from whence i thinke you are": [0, 65535], "from whence i thinke you are come": [0, 65535], "whence i thinke you are come by": [0, 65535], "i thinke you are come by miracle": [0, 65535], "thinke you are come by miracle e": [0, 65535], "you are come by miracle e ant": [0, 65535], "are come by miracle e ant i": [0, 65535], "come by miracle e ant i neuer": [0, 65535], "by miracle e ant i neuer came": [0, 65535], "miracle e ant i neuer came within": [0, 65535], "e ant i neuer came within these": [0, 65535], "ant i neuer came within these abbey": [0, 65535], "i neuer came within these abbey wals": [0, 65535], "neuer came within these abbey wals nor": [0, 65535], "came within these abbey wals nor euer": [0, 65535], "within these abbey wals nor euer didst": [0, 65535], "these abbey wals nor euer didst thou": [0, 65535], "abbey wals nor euer didst thou draw": [0, 65535], "wals nor euer didst thou draw thy": [0, 65535], "nor euer didst thou draw thy sword": [0, 65535], "euer didst thou draw thy sword on": [0, 65535], "didst thou draw thy sword on me": [0, 65535], "thou draw thy sword on me i": [0, 65535], "draw thy sword on me i neuer": [0, 65535], "thy sword on me i neuer saw": [0, 65535], "sword on me i neuer saw the": [0, 65535], "on me i neuer saw the chaine": [0, 65535], "me i neuer saw the chaine so": [0, 65535], "i neuer saw the chaine so helpe": [0, 65535], "neuer saw the chaine so helpe me": [0, 65535], "saw the chaine so helpe me heauen": [0, 65535], "the chaine so helpe me heauen and": [0, 65535], "chaine so helpe me heauen and this": [0, 65535], "so helpe me heauen and this is": [0, 65535], "helpe me heauen and this is false": [0, 65535], "me heauen and this is false you": [0, 65535], "heauen and this is false you burthen": [0, 65535], "and this is false you burthen me": [0, 65535], "this is false you burthen me withall": [0, 65535], "is false you burthen me withall duke": [0, 65535], "false you burthen me withall duke why": [0, 65535], "you burthen me withall duke why what": [0, 65535], "burthen me withall duke why what an": [0, 65535], "me withall duke why what an intricate": [0, 65535], "withall duke why what an intricate impeach": [0, 65535], "duke why what an intricate impeach is": [0, 65535], "why what an intricate impeach is this": [0, 65535], "what an intricate impeach is this i": [0, 65535], "an intricate impeach is this i thinke": [0, 65535], "intricate impeach is this i thinke you": [0, 65535], "impeach is this i thinke you all": [0, 65535], "is this i thinke you all haue": [0, 65535], "this i thinke you all haue drunke": [0, 65535], "i thinke you all haue drunke of": [0, 65535], "thinke you all haue drunke of circes": [0, 65535], "you all haue drunke of circes cup": [0, 65535], "all haue drunke of circes cup if": [0, 65535], "haue drunke of circes cup if heere": [0, 65535], "drunke of circes cup if heere you": [0, 65535], "of circes cup if heere you hous'd": [0, 65535], "circes cup if heere you hous'd him": [0, 65535], "cup if heere you hous'd him heere": [0, 65535], "if heere you hous'd him heere he": [0, 65535], "heere you hous'd him heere he would": [0, 65535], "you hous'd him heere he would haue": [0, 65535], "hous'd him heere he would haue bin": [0, 65535], "him heere he would haue bin if": [0, 65535], "heere he would haue bin if he": [0, 65535], "he would haue bin if he were": [0, 65535], "would haue bin if he were mad": [0, 65535], "haue bin if he were mad he": [0, 65535], "bin if he were mad he would": [0, 65535], "if he were mad he would not": [0, 65535], "he were mad he would not pleade": [0, 65535], "were mad he would not pleade so": [0, 65535], "mad he would not pleade so coldly": [0, 65535], "he would not pleade so coldly you": [0, 65535], "would not pleade so coldly you say": [0, 65535], "not pleade so coldly you say he": [0, 65535], "pleade so coldly you say he din'd": [0, 65535], "so coldly you say he din'd at": [0, 65535], "coldly you say he din'd at home": [0, 65535], "you say he din'd at home the": [0, 65535], "say he din'd at home the goldsmith": [0, 65535], "he din'd at home the goldsmith heere": [0, 65535], "din'd at home the goldsmith heere denies": [0, 65535], "at home the goldsmith heere denies that": [0, 65535], "home the goldsmith heere denies that saying": [0, 65535], "the goldsmith heere denies that saying sirra": [0, 65535], "goldsmith heere denies that saying sirra what": [0, 65535], "heere denies that saying sirra what say": [0, 65535], "denies that saying sirra what say you": [0, 65535], "that saying sirra what say you e": [0, 65535], "saying sirra what say you e dro": [0, 65535], "sirra what say you e dro sir": [0, 65535], "what say you e dro sir he": [0, 65535], "say you e dro sir he din'de": [0, 65535], "you e dro sir he din'de with": [0, 65535], "e dro sir he din'de with her": [0, 65535], "dro sir he din'de with her there": [0, 65535], "sir he din'de with her there at": [0, 65535], "he din'de with her there at the": [0, 65535], "din'de with her there at the porpentine": [0, 65535], "with her there at the porpentine cur": [0, 65535], "her there at the porpentine cur he": [0, 65535], "there at the porpentine cur he did": [0, 65535], "at the porpentine cur he did and": [0, 65535], "the porpentine cur he did and from": [0, 65535], "porpentine cur he did and from my": [0, 65535], "cur he did and from my finger": [0, 65535], "he did and from my finger snacht": [0, 65535], "did and from my finger snacht that": [0, 65535], "and from my finger snacht that ring": [0, 65535], "from my finger snacht that ring e": [0, 65535], "my finger snacht that ring e anti": [0, 65535], "finger snacht that ring e anti tis": [0, 65535], "snacht that ring e anti tis true": [0, 65535], "that ring e anti tis true my": [0, 65535], "ring e anti tis true my liege": [0, 65535], "e anti tis true my liege this": [0, 65535], "anti tis true my liege this ring": [0, 65535], "tis true my liege this ring i": [0, 65535], "true my liege this ring i had": [0, 65535], "my liege this ring i had of": [0, 65535], "liege this ring i had of her": [0, 65535], "this ring i had of her duke": [0, 65535], "ring i had of her duke saw'st": [0, 65535], "i had of her duke saw'st thou": [0, 65535], "had of her duke saw'st thou him": [0, 65535], "of her duke saw'st thou him enter": [0, 65535], "her duke saw'st thou him enter at": [0, 65535], "duke saw'st thou him enter at the": [0, 65535], "saw'st thou him enter at the abbey": [0, 65535], "thou him enter at the abbey heere": [0, 65535], "him enter at the abbey heere curt": [0, 65535], "enter at the abbey heere curt as": [0, 65535], "at the abbey heere curt as sure": [0, 65535], "the abbey heere curt as sure my": [0, 65535], "abbey heere curt as sure my liege": [0, 65535], "heere curt as sure my liege as": [0, 65535], "curt as sure my liege as i": [0, 65535], "as sure my liege as i do": [0, 65535], "sure my liege as i do see": [0, 65535], "my liege as i do see your": [0, 65535], "liege as i do see your grace": [0, 65535], "as i do see your grace duke": [0, 65535], "i do see your grace duke why": [0, 65535], "do see your grace duke why this": [0, 65535], "see your grace duke why this is": [0, 65535], "your grace duke why this is straunge": [0, 65535], "grace duke why this is straunge go": [0, 65535], "duke why this is straunge go call": [0, 65535], "why this is straunge go call the": [0, 65535], "this is straunge go call the abbesse": [0, 65535], "is straunge go call the abbesse hither": [0, 65535], "straunge go call the abbesse hither i": [0, 65535], "go call the abbesse hither i thinke": [0, 65535], "call the abbesse hither i thinke you": [0, 65535], "the abbesse hither i thinke you are": [0, 65535], "abbesse hither i thinke you are all": [0, 65535], "hither i thinke you are all mated": [0, 65535], "i thinke you are all mated or": [0, 65535], "thinke you are all mated or starke": [0, 65535], "you are all mated or starke mad": [0, 65535], "are all mated or starke mad exit": [0, 65535], "all mated or starke mad exit one": [0, 65535], "mated or starke mad exit one to": [0, 65535], "or starke mad exit one to the": [0, 65535], "starke mad exit one to the abbesse": [0, 65535], "mad exit one to the abbesse fa": [0, 65535], "exit one to the abbesse fa most": [0, 65535], "one to the abbesse fa most mighty": [0, 65535], "to the abbesse fa most mighty duke": [0, 65535], "the abbesse fa most mighty duke vouchsafe": [0, 65535], "abbesse fa most mighty duke vouchsafe me": [0, 65535], "fa most mighty duke vouchsafe me speak": [0, 65535], "most mighty duke vouchsafe me speak a": [0, 65535], "mighty duke vouchsafe me speak a word": [0, 65535], "duke vouchsafe me speak a word haply": [0, 65535], "vouchsafe me speak a word haply i": [0, 65535], "me speak a word haply i see": [0, 65535], "speak a word haply i see a": [0, 65535], "a word haply i see a friend": [0, 65535], "word haply i see a friend will": [0, 65535], "haply i see a friend will saue": [0, 65535], "i see a friend will saue my": [0, 65535], "see a friend will saue my life": [0, 65535], "a friend will saue my life and": [0, 65535], "friend will saue my life and pay": [0, 65535], "will saue my life and pay the": [0, 65535], "saue my life and pay the sum": [0, 65535], "my life and pay the sum that": [0, 65535], "life and pay the sum that may": [0, 65535], "and pay the sum that may deliuer": [0, 65535], "pay the sum that may deliuer me": [0, 65535], "the sum that may deliuer me duke": [0, 65535], "sum that may deliuer me duke speake": [0, 65535], "that may deliuer me duke speake freely": [0, 65535], "may deliuer me duke speake freely siracusian": [0, 65535], "deliuer me duke speake freely siracusian what": [0, 65535], "me duke speake freely siracusian what thou": [0, 65535], "duke speake freely siracusian what thou wilt": [0, 65535], "speake freely siracusian what thou wilt fath": [0, 65535], "freely siracusian what thou wilt fath is": [0, 65535], "siracusian what thou wilt fath is not": [0, 65535], "what thou wilt fath is not your": [0, 65535], "thou wilt fath is not your name": [0, 65535], "wilt fath is not your name sir": [0, 65535], "fath is not your name sir call'd": [0, 65535], "is not your name sir call'd antipholus": [0, 65535], "not your name sir call'd antipholus and": [0, 65535], "your name sir call'd antipholus and is": [0, 65535], "name sir call'd antipholus and is not": [0, 65535], "sir call'd antipholus and is not that": [0, 65535], "call'd antipholus and is not that your": [0, 65535], "antipholus and is not that your bondman": [0, 65535], "and is not that your bondman dromio": [0, 65535], "is not that your bondman dromio e": [0, 65535], "not that your bondman dromio e dro": [0, 65535], "that your bondman dromio e dro within": [0, 65535], "your bondman dromio e dro within this": [0, 65535], "bondman dromio e dro within this houre": [0, 65535], "dromio e dro within this houre i": [0, 65535], "e dro within this houre i was": [0, 65535], "dro within this houre i was his": [0, 65535], "within this houre i was his bondman": [0, 65535], "this houre i was his bondman sir": [0, 65535], "houre i was his bondman sir but": [0, 65535], "i was his bondman sir but he": [0, 65535], "was his bondman sir but he i": [0, 65535], "his bondman sir but he i thanke": [0, 65535], "bondman sir but he i thanke him": [0, 65535], "sir but he i thanke him gnaw'd": [0, 65535], "but he i thanke him gnaw'd in": [0, 65535], "he i thanke him gnaw'd in two": [0, 65535], "i thanke him gnaw'd in two my": [0, 65535], "thanke him gnaw'd in two my cords": [0, 65535], "him gnaw'd in two my cords now": [0, 65535], "gnaw'd in two my cords now am": [0, 65535], "in two my cords now am i": [0, 65535], "two my cords now am i dromio": [0, 65535], "my cords now am i dromio and": [0, 65535], "cords now am i dromio and his": [0, 65535], "now am i dromio and his man": [0, 65535], "am i dromio and his man vnbound": [0, 65535], "i dromio and his man vnbound fath": [0, 65535], "dromio and his man vnbound fath i": [0, 65535], "and his man vnbound fath i am": [0, 65535], "his man vnbound fath i am sure": [0, 65535], "man vnbound fath i am sure you": [0, 65535], "vnbound fath i am sure you both": [0, 65535], "fath i am sure you both of": [0, 65535], "i am sure you both of you": [0, 65535], "am sure you both of you remember": [0, 65535], "sure you both of you remember me": [0, 65535], "you both of you remember me dro": [0, 65535], "both of you remember me dro our": [0, 65535], "of you remember me dro our selues": [0, 65535], "you remember me dro our selues we": [0, 65535], "remember me dro our selues we do": [0, 65535], "me dro our selues we do remember": [0, 65535], "dro our selues we do remember sir": [0, 65535], "our selues we do remember sir by": [0, 65535], "selues we do remember sir by you": [0, 65535], "we do remember sir by you for": [0, 65535], "do remember sir by you for lately": [0, 65535], "remember sir by you for lately we": [0, 65535], "sir by you for lately we were": [0, 65535], "by you for lately we were bound": [0, 65535], "you for lately we were bound as": [0, 65535], "for lately we were bound as you": [0, 65535], "lately we were bound as you are": [0, 65535], "we were bound as you are now": [0, 65535], "were bound as you are now you": [0, 65535], "bound as you are now you are": [0, 65535], "as you are now you are not": [0, 65535], "you are now you are not pinches": [0, 65535], "are now you are not pinches patient": [0, 65535], "now you are not pinches patient are": [0, 65535], "you are not pinches patient are you": [0, 65535], "are not pinches patient are you sir": [0, 65535], "not pinches patient are you sir father": [0, 65535], "pinches patient are you sir father why": [0, 65535], "patient are you sir father why looke": [0, 65535], "are you sir father why looke you": [0, 65535], "you sir father why looke you strange": [0, 65535], "sir father why looke you strange on": [0, 65535], "father why looke you strange on me": [0, 65535], "why looke you strange on me you": [0, 65535], "looke you strange on me you know": [0, 65535], "you strange on me you know me": [0, 65535], "strange on me you know me well": [0, 65535], "on me you know me well e": [0, 65535], "me you know me well e ant": [0, 65535], "you know me well e ant i": [0, 65535], "know me well e ant i neuer": [0, 65535], "me well e ant i neuer saw": [0, 65535], "well e ant i neuer saw you": [0, 65535], "e ant i neuer saw you in": [0, 65535], "ant i neuer saw you in my": [0, 65535], "i neuer saw you in my life": [0, 65535], "neuer saw you in my life till": [0, 65535], "saw you in my life till now": [0, 65535], "you in my life till now fa": [0, 65535], "in my life till now fa oh": [0, 65535], "my life till now fa oh griefe": [0, 65535], "life till now fa oh griefe hath": [0, 65535], "till now fa oh griefe hath chang'd": [0, 65535], "now fa oh griefe hath chang'd me": [0, 65535], "fa oh griefe hath chang'd me since": [0, 65535], "oh griefe hath chang'd me since you": [0, 65535], "griefe hath chang'd me since you saw": [0, 65535], "hath chang'd me since you saw me": [0, 65535], "chang'd me since you saw me last": [0, 65535], "me since you saw me last and": [0, 65535], "since you saw me last and carefull": [0, 65535], "you saw me last and carefull houres": [0, 65535], "saw me last and carefull houres with": [0, 65535], "me last and carefull houres with times": [0, 65535], "last and carefull houres with times deformed": [0, 65535], "and carefull houres with times deformed hand": [0, 65535], "carefull houres with times deformed hand haue": [0, 65535], "houres with times deformed hand haue written": [0, 65535], "with times deformed hand haue written strange": [0, 65535], "times deformed hand haue written strange defeatures": [0, 65535], "deformed hand haue written strange defeatures in": [0, 65535], "hand haue written strange defeatures in my": [0, 65535], "haue written strange defeatures in my face": [0, 65535], "written strange defeatures in my face but": [0, 65535], "strange defeatures in my face but tell": [0, 65535], "defeatures in my face but tell me": [0, 65535], "in my face but tell me yet": [0, 65535], "my face but tell me yet dost": [0, 65535], "face but tell me yet dost thou": [0, 65535], "but tell me yet dost thou not": [0, 65535], "tell me yet dost thou not know": [0, 65535], "me yet dost thou not know my": [0, 65535], "yet dost thou not know my voice": [0, 65535], "dost thou not know my voice ant": [0, 65535], "thou not know my voice ant neither": [0, 65535], "not know my voice ant neither fat": [0, 65535], "know my voice ant neither fat dromio": [0, 65535], "my voice ant neither fat dromio nor": [0, 65535], "voice ant neither fat dromio nor thou": [0, 65535], "ant neither fat dromio nor thou dro": [0, 65535], "neither fat dromio nor thou dro no": [0, 65535], "fat dromio nor thou dro no trust": [0, 65535], "dromio nor thou dro no trust me": [0, 65535], "nor thou dro no trust me sir": [0, 65535], "thou dro no trust me sir nor": [0, 65535], "dro no trust me sir nor i": [0, 65535], "no trust me sir nor i fa": [0, 65535], "trust me sir nor i fa i": [0, 65535], "me sir nor i fa i am": [0, 65535], "sir nor i fa i am sure": [0, 65535], "nor i fa i am sure thou": [0, 65535], "i fa i am sure thou dost": [0, 65535], "fa i am sure thou dost e": [0, 65535], "i am sure thou dost e dromio": [0, 65535], "am sure thou dost e dromio i": [0, 65535], "sure thou dost e dromio i sir": [0, 65535], "thou dost e dromio i sir but": [0, 65535], "dost e dromio i sir but i": [0, 65535], "e dromio i sir but i am": [0, 65535], "dromio i sir but i am sure": [0, 65535], "i sir but i am sure i": [0, 65535], "sir but i am sure i do": [0, 65535], "but i am sure i do not": [0, 65535], "i am sure i do not and": [0, 65535], "am sure i do not and whatsoeuer": [0, 65535], "sure i do not and whatsoeuer a": [0, 65535], "i do not and whatsoeuer a man": [0, 65535], "do not and whatsoeuer a man denies": [0, 65535], "not and whatsoeuer a man denies you": [0, 65535], "and whatsoeuer a man denies you are": [0, 65535], "whatsoeuer a man denies you are now": [0, 65535], "a man denies you are now bound": [0, 65535], "man denies you are now bound to": [0, 65535], "denies you are now bound to beleeue": [0, 65535], "you are now bound to beleeue him": [0, 65535], "are now bound to beleeue him fath": [0, 65535], "now bound to beleeue him fath not": [0, 65535], "bound to beleeue him fath not know": [0, 65535], "to beleeue him fath not know my": [0, 65535], "beleeue him fath not know my voice": [0, 65535], "him fath not know my voice oh": [0, 65535], "fath not know my voice oh times": [0, 65535], "not know my voice oh times extremity": [0, 65535], "know my voice oh times extremity hast": [0, 65535], "my voice oh times extremity hast thou": [0, 65535], "voice oh times extremity hast thou so": [0, 65535], "oh times extremity hast thou so crack'd": [0, 65535], "times extremity hast thou so crack'd and": [0, 65535], "extremity hast thou so crack'd and splitted": [0, 65535], "hast thou so crack'd and splitted my": [0, 65535], "thou so crack'd and splitted my poore": [0, 65535], "so crack'd and splitted my poore tongue": [0, 65535], "crack'd and splitted my poore tongue in": [0, 65535], "and splitted my poore tongue in seuen": [0, 65535], "splitted my poore tongue in seuen short": [0, 65535], "my poore tongue in seuen short yeares": [0, 65535], "poore tongue in seuen short yeares that": [0, 65535], "tongue in seuen short yeares that heere": [0, 65535], "in seuen short yeares that heere my": [0, 65535], "seuen short yeares that heere my onely": [0, 65535], "short yeares that heere my onely sonne": [0, 65535], "yeares that heere my onely sonne knowes": [0, 65535], "that heere my onely sonne knowes not": [0, 65535], "heere my onely sonne knowes not my": [0, 65535], "my onely sonne knowes not my feeble": [0, 65535], "onely sonne knowes not my feeble key": [0, 65535], "sonne knowes not my feeble key of": [0, 65535], "knowes not my feeble key of vntun'd": [0, 65535], "not my feeble key of vntun'd cares": [0, 65535], "my feeble key of vntun'd cares though": [0, 65535], "feeble key of vntun'd cares though now": [0, 65535], "key of vntun'd cares though now this": [0, 65535], "of vntun'd cares though now this grained": [0, 65535], "vntun'd cares though now this grained face": [0, 65535], "cares though now this grained face of": [0, 65535], "though now this grained face of mine": [0, 65535], "now this grained face of mine be": [0, 65535], "this grained face of mine be hid": [0, 65535], "grained face of mine be hid in": [0, 65535], "face of mine be hid in sap": [0, 65535], "of mine be hid in sap consuming": [0, 65535], "mine be hid in sap consuming winters": [0, 65535], "be hid in sap consuming winters drizled": [0, 65535], "hid in sap consuming winters drizled snow": [0, 65535], "in sap consuming winters drizled snow and": [0, 65535], "sap consuming winters drizled snow and all": [0, 65535], "consuming winters drizled snow and all the": [0, 65535], "winters drizled snow and all the conduits": [0, 65535], "drizled snow and all the conduits of": [0, 65535], "snow and all the conduits of my": [0, 65535], "and all the conduits of my blood": [0, 65535], "all the conduits of my blood froze": [0, 65535], "the conduits of my blood froze vp": [0, 65535], "conduits of my blood froze vp yet": [0, 65535], "of my blood froze vp yet hath": [0, 65535], "my blood froze vp yet hath my": [0, 65535], "blood froze vp yet hath my night": [0, 65535], "froze vp yet hath my night of": [0, 65535], "vp yet hath my night of life": [0, 65535], "yet hath my night of life some": [0, 65535], "hath my night of life some memorie": [0, 65535], "my night of life some memorie my": [0, 65535], "night of life some memorie my wasting": [0, 65535], "of life some memorie my wasting lampes": [0, 65535], "life some memorie my wasting lampes some": [0, 65535], "some memorie my wasting lampes some fading": [0, 65535], "memorie my wasting lampes some fading glimmer": [0, 65535], "my wasting lampes some fading glimmer left": [0, 65535], "wasting lampes some fading glimmer left my": [0, 65535], "lampes some fading glimmer left my dull": [0, 65535], "some fading glimmer left my dull deafe": [0, 65535], "fading glimmer left my dull deafe eares": [0, 65535], "glimmer left my dull deafe eares a": [0, 65535], "left my dull deafe eares a little": [0, 65535], "my dull deafe eares a little vse": [0, 65535], "dull deafe eares a little vse to": [0, 65535], "deafe eares a little vse to heare": [0, 65535], "eares a little vse to heare all": [0, 65535], "a little vse to heare all these": [0, 65535], "little vse to heare all these old": [0, 65535], "vse to heare all these old witnesses": [0, 65535], "to heare all these old witnesses i": [0, 65535], "heare all these old witnesses i cannot": [0, 65535], "all these old witnesses i cannot erre": [0, 65535], "these old witnesses i cannot erre tell": [0, 65535], "old witnesses i cannot erre tell me": [0, 65535], "witnesses i cannot erre tell me thou": [0, 65535], "i cannot erre tell me thou art": [0, 65535], "cannot erre tell me thou art my": [0, 65535], "erre tell me thou art my sonne": [0, 65535], "tell me thou art my sonne antipholus": [0, 65535], "me thou art my sonne antipholus ant": [0, 65535], "thou art my sonne antipholus ant i": [0, 65535], "art my sonne antipholus ant i neuer": [0, 65535], "my sonne antipholus ant i neuer saw": [0, 65535], "sonne antipholus ant i neuer saw my": [0, 65535], "antipholus ant i neuer saw my father": [0, 65535], "ant i neuer saw my father in": [0, 65535], "i neuer saw my father in my": [0, 65535], "neuer saw my father in my life": [0, 65535], "saw my father in my life fa": [0, 65535], "my father in my life fa but": [0, 65535], "father in my life fa but seuen": [0, 65535], "in my life fa but seuen yeares": [0, 65535], "my life fa but seuen yeares since": [0, 65535], "life fa but seuen yeares since in": [0, 65535], "fa but seuen yeares since in siracusa": [0, 65535], "but seuen yeares since in siracusa boy": [0, 65535], "seuen yeares since in siracusa boy thou": [0, 65535], "yeares since in siracusa boy thou know'st": [0, 65535], "since in siracusa boy thou know'st we": [0, 65535], "in siracusa boy thou know'st we parted": [0, 65535], "siracusa boy thou know'st we parted but": [0, 65535], "boy thou know'st we parted but perhaps": [0, 65535], "thou know'st we parted but perhaps my": [0, 65535], "know'st we parted but perhaps my sonne": [0, 65535], "we parted but perhaps my sonne thou": [0, 65535], "parted but perhaps my sonne thou sham'st": [0, 65535], "but perhaps my sonne thou sham'st to": [0, 65535], "perhaps my sonne thou sham'st to acknowledge": [0, 65535], "my sonne thou sham'st to acknowledge me": [0, 65535], "sonne thou sham'st to acknowledge me in": [0, 65535], "thou sham'st to acknowledge me in miserie": [0, 65535], "sham'st to acknowledge me in miserie ant": [0, 65535], "to acknowledge me in miserie ant the": [0, 65535], "acknowledge me in miserie ant the duke": [0, 65535], "me in miserie ant the duke and": [0, 65535], "in miserie ant the duke and all": [0, 65535], "miserie ant the duke and all that": [0, 65535], "ant the duke and all that know": [0, 65535], "the duke and all that know me": [0, 65535], "duke and all that know me in": [0, 65535], "and all that know me in the": [0, 65535], "all that know me in the city": [0, 65535], "that know me in the city can": [0, 65535], "know me in the city can witnesse": [0, 65535], "me in the city can witnesse with": [0, 65535], "in the city can witnesse with me": [0, 65535], "the city can witnesse with me that": [0, 65535], "city can witnesse with me that it": [0, 65535], "can witnesse with me that it is": [0, 65535], "witnesse with me that it is not": [0, 65535], "with me that it is not so": [0, 65535], "me that it is not so i": [0, 65535], "that it is not so i ne're": [0, 65535], "it is not so i ne're saw": [0, 65535], "is not so i ne're saw siracusa": [0, 65535], "not so i ne're saw siracusa in": [0, 65535], "so i ne're saw siracusa in my": [0, 65535], "i ne're saw siracusa in my life": [0, 65535], "ne're saw siracusa in my life duke": [0, 65535], "saw siracusa in my life duke i": [0, 65535], "siracusa in my life duke i tell": [0, 65535], "in my life duke i tell thee": [0, 65535], "my life duke i tell thee siracusian": [0, 65535], "life duke i tell thee siracusian twentie": [0, 65535], "duke i tell thee siracusian twentie yeares": [0, 65535], "i tell thee siracusian twentie yeares haue": [0, 65535], "tell thee siracusian twentie yeares haue i": [0, 65535], "thee siracusian twentie yeares haue i bin": [0, 65535], "siracusian twentie yeares haue i bin patron": [0, 65535], "twentie yeares haue i bin patron to": [0, 65535], "yeares haue i bin patron to antipholus": [0, 65535], "haue i bin patron to antipholus during": [0, 65535], "i bin patron to antipholus during which": [0, 65535], "bin patron to antipholus during which time": [0, 65535], "patron to antipholus during which time he": [0, 65535], "to antipholus during which time he ne're": [0, 65535], "antipholus during which time he ne're saw": [0, 65535], "during which time he ne're saw siracusa": [0, 65535], "which time he ne're saw siracusa i": [0, 65535], "time he ne're saw siracusa i see": [0, 65535], "he ne're saw siracusa i see thy": [0, 65535], "ne're saw siracusa i see thy age": [0, 65535], "saw siracusa i see thy age and": [0, 65535], "siracusa i see thy age and dangers": [0, 65535], "i see thy age and dangers make": [0, 65535], "see thy age and dangers make thee": [0, 65535], "thy age and dangers make thee dote": [0, 65535], "age and dangers make thee dote enter": [0, 65535], "and dangers make thee dote enter the": [0, 65535], "dangers make thee dote enter the abbesse": [0, 65535], "make thee dote enter the abbesse with": [0, 65535], "thee dote enter the abbesse with antipholus": [0, 65535], "dote enter the abbesse with antipholus siracusa": [0, 65535], "enter the abbesse with antipholus siracusa and": [0, 65535], "the abbesse with antipholus siracusa and dromio": [0, 65535], "abbesse with antipholus siracusa and dromio sir": [0, 65535], "with antipholus siracusa and dromio sir abbesse": [0, 65535], "antipholus siracusa and dromio sir abbesse most": [0, 65535], "siracusa and dromio sir abbesse most mightie": [0, 65535], "and dromio sir abbesse most mightie duke": [0, 65535], "dromio sir abbesse most mightie duke behold": [0, 65535], "sir abbesse most mightie duke behold a": [0, 65535], "abbesse most mightie duke behold a man": [0, 65535], "most mightie duke behold a man much": [0, 65535], "mightie duke behold a man much wrong'd": [0, 65535], "duke behold a man much wrong'd all": [0, 65535], "behold a man much wrong'd all gather": [0, 65535], "a man much wrong'd all gather to": [0, 65535], "man much wrong'd all gather to see": [0, 65535], "much wrong'd all gather to see them": [0, 65535], "wrong'd all gather to see them adr": [0, 65535], "all gather to see them adr i": [0, 65535], "gather to see them adr i see": [0, 65535], "to see them adr i see two": [0, 65535], "see them adr i see two husbands": [0, 65535], "them adr i see two husbands or": [0, 65535], "adr i see two husbands or mine": [0, 65535], "i see two husbands or mine eyes": [0, 65535], "see two husbands or mine eyes deceiue": [0, 65535], "two husbands or mine eyes deceiue me": [0, 65535], "husbands or mine eyes deceiue me duke": [0, 65535], "or mine eyes deceiue me duke one": [0, 65535], "mine eyes deceiue me duke one of": [0, 65535], "eyes deceiue me duke one of these": [0, 65535], "deceiue me duke one of these men": [0, 65535], "me duke one of these men is": [0, 65535], "duke one of these men is genius": [0, 65535], "one of these men is genius to": [0, 65535], "of these men is genius to the": [0, 65535], "these men is genius to the other": [0, 65535], "men is genius to the other and": [0, 65535], "is genius to the other and so": [0, 65535], "genius to the other and so of": [0, 65535], "to the other and so of these": [0, 65535], "the other and so of these which": [0, 65535], "other and so of these which is": [0, 65535], "and so of these which is the": [0, 65535], "so of these which is the naturall": [0, 65535], "of these which is the naturall man": [0, 65535], "these which is the naturall man and": [0, 65535], "which is the naturall man and which": [0, 65535], "is the naturall man and which the": [0, 65535], "the naturall man and which the spirit": [0, 65535], "naturall man and which the spirit who": [0, 65535], "man and which the spirit who deciphers": [0, 65535], "and which the spirit who deciphers them": [0, 65535], "which the spirit who deciphers them s": [0, 65535], "the spirit who deciphers them s dromio": [0, 65535], "spirit who deciphers them s dromio i": [0, 65535], "who deciphers them s dromio i sir": [0, 65535], "deciphers them s dromio i sir am": [0, 65535], "them s dromio i sir am dromio": [0, 65535], "s dromio i sir am dromio command": [0, 65535], "dromio i sir am dromio command him": [0, 65535], "i sir am dromio command him away": [0, 65535], "sir am dromio command him away e": [0, 65535], "am dromio command him away e dro": [0, 65535], "dromio command him away e dro i": [0, 65535], "command him away e dro i sir": [0, 65535], "him away e dro i sir am": [0, 65535], "away e dro i sir am dromio": [0, 65535], "e dro i sir am dromio pray": [0, 65535], "dro i sir am dromio pray let": [0, 65535], "i sir am dromio pray let me": [0, 65535], "sir am dromio pray let me stay": [0, 65535], "am dromio pray let me stay s": [0, 65535], "dromio pray let me stay s ant": [0, 65535], "pray let me stay s ant egeon": [0, 65535], "let me stay s ant egeon art": [0, 65535], "me stay s ant egeon art thou": [0, 65535], "stay s ant egeon art thou not": [0, 65535], "s ant egeon art thou not or": [0, 65535], "ant egeon art thou not or else": [0, 65535], "egeon art thou not or else his": [0, 65535], "art thou not or else his ghost": [0, 65535], "thou not or else his ghost s": [0, 65535], "not or else his ghost s drom": [0, 65535], "or else his ghost s drom oh": [0, 65535], "else his ghost s drom oh my": [0, 65535], "his ghost s drom oh my olde": [0, 65535], "ghost s drom oh my olde master": [0, 65535], "s drom oh my olde master who": [0, 65535], "drom oh my olde master who hath": [0, 65535], "oh my olde master who hath bound": [0, 65535], "my olde master who hath bound him": [0, 65535], "olde master who hath bound him heere": [0, 65535], "master who hath bound him heere abb": [0, 65535], "who hath bound him heere abb who": [0, 65535], "hath bound him heere abb who euer": [0, 65535], "bound him heere abb who euer bound": [0, 65535], "him heere abb who euer bound him": [0, 65535], "heere abb who euer bound him i": [0, 65535], "abb who euer bound him i will": [0, 65535], "who euer bound him i will lose": [0, 65535], "euer bound him i will lose his": [0, 65535], "bound him i will lose his bonds": [0, 65535], "him i will lose his bonds and": [0, 65535], "i will lose his bonds and gaine": [0, 65535], "will lose his bonds and gaine a": [0, 65535], "lose his bonds and gaine a husband": [0, 65535], "his bonds and gaine a husband by": [0, 65535], "bonds and gaine a husband by his": [0, 65535], "and gaine a husband by his libertie": [0, 65535], "gaine a husband by his libertie speake": [0, 65535], "a husband by his libertie speake olde": [0, 65535], "husband by his libertie speake olde egeon": [0, 65535], "by his libertie speake olde egeon if": [0, 65535], "his libertie speake olde egeon if thou": [0, 65535], "libertie speake olde egeon if thou bee'st": [0, 65535], "speake olde egeon if thou bee'st the": [0, 65535], "olde egeon if thou bee'st the man": [0, 65535], "egeon if thou bee'st the man that": [0, 65535], "if thou bee'st the man that hadst": [0, 65535], "thou bee'st the man that hadst a": [0, 65535], "bee'st the man that hadst a wife": [0, 65535], "the man that hadst a wife once": [0, 65535], "man that hadst a wife once call'd": [0, 65535], "that hadst a wife once call'd \u00e6milia": [0, 65535], "hadst a wife once call'd \u00e6milia that": [0, 65535], "a wife once call'd \u00e6milia that bore": [0, 65535], "wife once call'd \u00e6milia that bore thee": [0, 65535], "once call'd \u00e6milia that bore thee at": [0, 65535], "call'd \u00e6milia that bore thee at a": [0, 65535], "\u00e6milia that bore thee at a burthen": [0, 65535], "that bore thee at a burthen two": [0, 65535], "bore thee at a burthen two faire": [0, 65535], "thee at a burthen two faire sonnes": [0, 65535], "at a burthen two faire sonnes oh": [0, 65535], "a burthen two faire sonnes oh if": [0, 65535], "burthen two faire sonnes oh if thou": [0, 65535], "two faire sonnes oh if thou bee'st": [0, 65535], "faire sonnes oh if thou bee'st the": [0, 65535], "sonnes oh if thou bee'st the same": [0, 65535], "oh if thou bee'st the same egeon": [0, 65535], "if thou bee'st the same egeon speake": [0, 65535], "thou bee'st the same egeon speake and": [0, 65535], "bee'st the same egeon speake and speake": [0, 65535], "the same egeon speake and speake vnto": [0, 65535], "same egeon speake and speake vnto the": [0, 65535], "egeon speake and speake vnto the same": [0, 65535], "speake and speake vnto the same \u00e6milia": [0, 65535], "and speake vnto the same \u00e6milia duke": [0, 65535], "speake vnto the same \u00e6milia duke why": [0, 65535], "vnto the same \u00e6milia duke why heere": [0, 65535], "the same \u00e6milia duke why heere begins": [0, 65535], "same \u00e6milia duke why heere begins his": [0, 65535], "\u00e6milia duke why heere begins his morning": [0, 65535], "duke why heere begins his morning storie": [0, 65535], "why heere begins his morning storie right": [0, 65535], "heere begins his morning storie right these": [0, 65535], "begins his morning storie right these twoantipholus": [0, 65535], "his morning storie right these twoantipholus these": [0, 65535], "morning storie right these twoantipholus these two": [0, 65535], "storie right these twoantipholus these two so": [0, 65535], "right these twoantipholus these two so like": [0, 65535], "these twoantipholus these two so like and": [0, 65535], "twoantipholus these two so like and these": [0, 65535], "these two so like and these two": [0, 65535], "two so like and these two dromio's": [0, 65535], "so like and these two dromio's one": [0, 65535], "like and these two dromio's one in": [0, 65535], "and these two dromio's one in semblance": [0, 65535], "these two dromio's one in semblance besides": [0, 65535], "two dromio's one in semblance besides her": [0, 65535], "dromio's one in semblance besides her vrging": [0, 65535], "one in semblance besides her vrging of": [0, 65535], "in semblance besides her vrging of her": [0, 65535], "semblance besides her vrging of her wracke": [0, 65535], "besides her vrging of her wracke at": [0, 65535], "her vrging of her wracke at sea": [0, 65535], "vrging of her wracke at sea these": [0, 65535], "of her wracke at sea these are": [0, 65535], "her wracke at sea these are the": [0, 65535], "wracke at sea these are the parents": [0, 65535], "at sea these are the parents to": [0, 65535], "sea these are the parents to these": [0, 65535], "these are the parents to these children": [0, 65535], "are the parents to these children which": [0, 65535], "the parents to these children which accidentally": [0, 65535], "parents to these children which accidentally are": [0, 65535], "to these children which accidentally are met": [0, 65535], "these children which accidentally are met together": [0, 65535], "children which accidentally are met together fa": [0, 65535], "which accidentally are met together fa if": [0, 65535], "accidentally are met together fa if i": [0, 65535], "are met together fa if i dreame": [0, 65535], "met together fa if i dreame not": [0, 65535], "together fa if i dreame not thou": [0, 65535], "fa if i dreame not thou art": [0, 65535], "if i dreame not thou art \u00e6milia": [0, 65535], "i dreame not thou art \u00e6milia if": [0, 65535], "dreame not thou art \u00e6milia if thou": [0, 65535], "not thou art \u00e6milia if thou art": [0, 65535], "thou art \u00e6milia if thou art she": [0, 65535], "art \u00e6milia if thou art she tell": [0, 65535], "\u00e6milia if thou art she tell me": [0, 65535], "if thou art she tell me where": [0, 65535], "thou art she tell me where is": [0, 65535], "art she tell me where is that": [0, 65535], "she tell me where is that sonne": [0, 65535], "tell me where is that sonne that": [0, 65535], "me where is that sonne that floated": [0, 65535], "where is that sonne that floated with": [0, 65535], "is that sonne that floated with thee": [0, 65535], "that sonne that floated with thee on": [0, 65535], "sonne that floated with thee on the": [0, 65535], "that floated with thee on the fatall": [0, 65535], "floated with thee on the fatall rafte": [0, 65535], "with thee on the fatall rafte abb": [0, 65535], "thee on the fatall rafte abb by": [0, 65535], "on the fatall rafte abb by men": [0, 65535], "the fatall rafte abb by men of": [0, 65535], "fatall rafte abb by men of epidamium": [0, 65535], "rafte abb by men of epidamium he": [0, 65535], "abb by men of epidamium he and": [0, 65535], "by men of epidamium he and i": [0, 65535], "men of epidamium he and i and": [0, 65535], "of epidamium he and i and the": [0, 65535], "epidamium he and i and the twin": [0, 65535], "he and i and the twin dromio": [0, 65535], "and i and the twin dromio all": [0, 65535], "i and the twin dromio all were": [0, 65535], "and the twin dromio all were taken": [0, 65535], "the twin dromio all were taken vp": [0, 65535], "twin dromio all were taken vp but": [0, 65535], "dromio all were taken vp but by": [0, 65535], "all were taken vp but by and": [0, 65535], "were taken vp but by and by": [0, 65535], "taken vp but by and by rude": [0, 65535], "vp but by and by rude fishermen": [0, 65535], "but by and by rude fishermen of": [0, 65535], "by and by rude fishermen of corinth": [0, 65535], "and by rude fishermen of corinth by": [0, 65535], "by rude fishermen of corinth by force": [0, 65535], "rude fishermen of corinth by force tooke": [0, 65535], "fishermen of corinth by force tooke dromio": [0, 65535], "of corinth by force tooke dromio and": [0, 65535], "corinth by force tooke dromio and my": [0, 65535], "by force tooke dromio and my sonne": [0, 65535], "force tooke dromio and my sonne from": [0, 65535], "tooke dromio and my sonne from them": [0, 65535], "dromio and my sonne from them and": [0, 65535], "and my sonne from them and me": [0, 65535], "my sonne from them and me they": [0, 65535], "sonne from them and me they left": [0, 65535], "from them and me they left with": [0, 65535], "them and me they left with those": [0, 65535], "and me they left with those of": [0, 65535], "me they left with those of epidamium": [0, 65535], "they left with those of epidamium what": [0, 65535], "left with those of epidamium what then": [0, 65535], "with those of epidamium what then became": [0, 65535], "those of epidamium what then became of": [0, 65535], "of epidamium what then became of them": [0, 65535], "epidamium what then became of them i": [0, 65535], "what then became of them i cannot": [0, 65535], "then became of them i cannot tell": [0, 65535], "became of them i cannot tell i": [0, 65535], "of them i cannot tell i to": [0, 65535], "them i cannot tell i to this": [0, 65535], "i cannot tell i to this fortune": [0, 65535], "cannot tell i to this fortune that": [0, 65535], "tell i to this fortune that you": [0, 65535], "i to this fortune that you see": [0, 65535], "to this fortune that you see mee": [0, 65535], "this fortune that you see mee in": [0, 65535], "fortune that you see mee in duke": [0, 65535], "that you see mee in duke antipholus": [0, 65535], "you see mee in duke antipholus thou": [0, 65535], "see mee in duke antipholus thou cam'st": [0, 65535], "mee in duke antipholus thou cam'st from": [0, 65535], "in duke antipholus thou cam'st from corinth": [0, 65535], "duke antipholus thou cam'st from corinth first": [0, 65535], "antipholus thou cam'st from corinth first s": [0, 65535], "thou cam'st from corinth first s ant": [0, 65535], "cam'st from corinth first s ant no": [0, 65535], "from corinth first s ant no sir": [0, 65535], "corinth first s ant no sir not": [0, 65535], "first s ant no sir not i": [0, 65535], "s ant no sir not i i": [0, 65535], "ant no sir not i i came": [0, 65535], "no sir not i i came from": [0, 65535], "sir not i i came from siracuse": [0, 65535], "not i i came from siracuse duke": [0, 65535], "i i came from siracuse duke stay": [0, 65535], "i came from siracuse duke stay stand": [0, 65535], "came from siracuse duke stay stand apart": [0, 65535], "from siracuse duke stay stand apart i": [0, 65535], "siracuse duke stay stand apart i know": [0, 65535], "duke stay stand apart i know not": [0, 65535], "stay stand apart i know not which": [0, 65535], "stand apart i know not which is": [0, 65535], "apart i know not which is which": [0, 65535], "i know not which is which e": [0, 65535], "know not which is which e ant": [0, 65535], "not which is which e ant i": [0, 65535], "which is which e ant i came": [0, 65535], "is which e ant i came from": [0, 65535], "which e ant i came from corinth": [0, 65535], "e ant i came from corinth my": [0, 65535], "ant i came from corinth my most": [0, 65535], "i came from corinth my most gracious": [0, 65535], "came from corinth my most gracious lord": [0, 65535], "from corinth my most gracious lord e": [0, 65535], "corinth my most gracious lord e dro": [0, 65535], "my most gracious lord e dro and": [0, 65535], "most gracious lord e dro and i": [0, 65535], "gracious lord e dro and i with": [0, 65535], "lord e dro and i with him": [0, 65535], "e dro and i with him e": [0, 65535], "dro and i with him e ant": [0, 65535], "and i with him e ant brought": [0, 65535], "i with him e ant brought to": [0, 65535], "with him e ant brought to this": [0, 65535], "him e ant brought to this town": [0, 65535], "e ant brought to this town by": [0, 65535], "ant brought to this town by that": [0, 65535], "brought to this town by that most": [0, 65535], "to this town by that most famous": [0, 65535], "this town by that most famous warriour": [0, 65535], "town by that most famous warriour duke": [0, 65535], "by that most famous warriour duke menaphon": [0, 65535], "that most famous warriour duke menaphon your": [0, 65535], "most famous warriour duke menaphon your most": [0, 65535], "famous warriour duke menaphon your most renowned": [0, 65535], "warriour duke menaphon your most renowned vnckle": [0, 65535], "duke menaphon your most renowned vnckle adr": [0, 65535], "menaphon your most renowned vnckle adr which": [0, 65535], "your most renowned vnckle adr which of": [0, 65535], "most renowned vnckle adr which of you": [0, 65535], "renowned vnckle adr which of you two": [0, 65535], "vnckle adr which of you two did": [0, 65535], "adr which of you two did dine": [0, 65535], "which of you two did dine with": [0, 65535], "of you two did dine with me": [0, 65535], "you two did dine with me to": [0, 65535], "two did dine with me to day": [0, 65535], "did dine with me to day s": [0, 65535], "dine with me to day s ant": [0, 65535], "with me to day s ant i": [0, 65535], "me to day s ant i gentle": [0, 65535], "to day s ant i gentle mistris": [0, 65535], "day s ant i gentle mistris adr": [0, 65535], "s ant i gentle mistris adr and": [0, 65535], "ant i gentle mistris adr and are": [0, 65535], "i gentle mistris adr and are not": [0, 65535], "gentle mistris adr and are not you": [0, 65535], "mistris adr and are not you my": [0, 65535], "adr and are not you my husband": [0, 65535], "and are not you my husband e": [0, 65535], "are not you my husband e ant": [0, 65535], "not you my husband e ant no": [0, 65535], "you my husband e ant no i": [0, 65535], "my husband e ant no i say": [0, 65535], "husband e ant no i say nay": [0, 65535], "e ant no i say nay to": [0, 65535], "ant no i say nay to that": [0, 65535], "no i say nay to that s": [0, 65535], "i say nay to that s ant": [0, 65535], "say nay to that s ant and": [0, 65535], "nay to that s ant and so": [0, 65535], "to that s ant and so do": [0, 65535], "that s ant and so do i": [0, 65535], "s ant and so do i yet": [0, 65535], "ant and so do i yet did": [0, 65535], "and so do i yet did she": [0, 65535], "so do i yet did she call": [0, 65535], "do i yet did she call me": [0, 65535], "i yet did she call me so": [0, 65535], "yet did she call me so and": [0, 65535], "did she call me so and this": [0, 65535], "she call me so and this faire": [0, 65535], "call me so and this faire gentlewoman": [0, 65535], "me so and this faire gentlewoman her": [0, 65535], "so and this faire gentlewoman her sister": [0, 65535], "and this faire gentlewoman her sister heere": [0, 65535], "this faire gentlewoman her sister heere did": [0, 65535], "faire gentlewoman her sister heere did call": [0, 65535], "gentlewoman her sister heere did call me": [0, 65535], "her sister heere did call me brother": [0, 65535], "sister heere did call me brother what": [0, 65535], "heere did call me brother what i": [0, 65535], "did call me brother what i told": [0, 65535], "call me brother what i told you": [0, 65535], "me brother what i told you then": [0, 65535], "brother what i told you then i": [0, 65535], "what i told you then i hope": [0, 65535], "i told you then i hope i": [0, 65535], "told you then i hope i shall": [0, 65535], "you then i hope i shall haue": [0, 65535], "then i hope i shall haue leisure": [0, 65535], "i hope i shall haue leisure to": [0, 65535], "hope i shall haue leisure to make": [0, 65535], "i shall haue leisure to make good": [0, 65535], "shall haue leisure to make good if": [0, 65535], "haue leisure to make good if this": [0, 65535], "leisure to make good if this be": [0, 65535], "to make good if this be not": [0, 65535], "make good if this be not a": [0, 65535], "good if this be not a dreame": [0, 65535], "if this be not a dreame i": [0, 65535], "this be not a dreame i see": [0, 65535], "be not a dreame i see and": [0, 65535], "not a dreame i see and heare": [0, 65535], "a dreame i see and heare goldsmith": [0, 65535], "dreame i see and heare goldsmith that": [0, 65535], "i see and heare goldsmith that is": [0, 65535], "see and heare goldsmith that is the": [0, 65535], "and heare goldsmith that is the chaine": [0, 65535], "heare goldsmith that is the chaine sir": [0, 65535], "goldsmith that is the chaine sir which": [0, 65535], "that is the chaine sir which you": [0, 65535], "is the chaine sir which you had": [0, 65535], "the chaine sir which you had of": [0, 65535], "chaine sir which you had of mee": [0, 65535], "sir which you had of mee s": [0, 65535], "which you had of mee s ant": [0, 65535], "you had of mee s ant i": [0, 65535], "had of mee s ant i thinke": [0, 65535], "of mee s ant i thinke it": [0, 65535], "mee s ant i thinke it be": [0, 65535], "s ant i thinke it be sir": [0, 65535], "ant i thinke it be sir i": [0, 65535], "i thinke it be sir i denie": [0, 65535], "thinke it be sir i denie it": [0, 65535], "it be sir i denie it not": [0, 65535], "be sir i denie it not e": [0, 65535], "sir i denie it not e ant": [0, 65535], "i denie it not e ant and": [0, 65535], "denie it not e ant and you": [0, 65535], "it not e ant and you sir": [0, 65535], "not e ant and you sir for": [0, 65535], "e ant and you sir for this": [0, 65535], "ant and you sir for this chaine": [0, 65535], "and you sir for this chaine arrested": [0, 65535], "you sir for this chaine arrested me": [0, 65535], "sir for this chaine arrested me gold": [0, 65535], "for this chaine arrested me gold i": [0, 65535], "this chaine arrested me gold i thinke": [0, 65535], "chaine arrested me gold i thinke i": [0, 65535], "arrested me gold i thinke i did": [0, 65535], "me gold i thinke i did sir": [0, 65535], "gold i thinke i did sir i": [0, 65535], "i thinke i did sir i deny": [0, 65535], "thinke i did sir i deny it": [0, 65535], "i did sir i deny it not": [0, 65535], "did sir i deny it not adr": [0, 65535], "sir i deny it not adr i": [0, 65535], "i deny it not adr i sent": [0, 65535], "deny it not adr i sent you": [0, 65535], "it not adr i sent you monie": [0, 65535], "not adr i sent you monie sir": [0, 65535], "adr i sent you monie sir to": [0, 65535], "i sent you monie sir to be": [0, 65535], "sent you monie sir to be your": [0, 65535], "you monie sir to be your baile": [0, 65535], "monie sir to be your baile by": [0, 65535], "sir to be your baile by dromio": [0, 65535], "to be your baile by dromio but": [0, 65535], "be your baile by dromio but i": [0, 65535], "your baile by dromio but i thinke": [0, 65535], "baile by dromio but i thinke he": [0, 65535], "by dromio but i thinke he brought": [0, 65535], "dromio but i thinke he brought it": [0, 65535], "but i thinke he brought it not": [0, 65535], "i thinke he brought it not e": [0, 65535], "thinke he brought it not e dro": [0, 65535], "he brought it not e dro no": [0, 65535], "brought it not e dro no none": [0, 65535], "it not e dro no none by": [0, 65535], "not e dro no none by me": [0, 65535], "e dro no none by me s": [0, 65535], "dro no none by me s ant": [0, 65535], "no none by me s ant this": [0, 65535], "none by me s ant this purse": [0, 65535], "by me s ant this purse of": [0, 65535], "me s ant this purse of duckets": [0, 65535], "s ant this purse of duckets i": [0, 65535], "ant this purse of duckets i receiu'd": [0, 65535], "this purse of duckets i receiu'd from": [0, 65535], "purse of duckets i receiu'd from you": [0, 65535], "of duckets i receiu'd from you and": [0, 65535], "duckets i receiu'd from you and dromio": [0, 65535], "i receiu'd from you and dromio my": [0, 65535], "receiu'd from you and dromio my man": [0, 65535], "from you and dromio my man did": [0, 65535], "you and dromio my man did bring": [0, 65535], "and dromio my man did bring them": [0, 65535], "dromio my man did bring them me": [0, 65535], "my man did bring them me i": [0, 65535], "man did bring them me i see": [0, 65535], "did bring them me i see we": [0, 65535], "bring them me i see we still": [0, 65535], "them me i see we still did": [0, 65535], "me i see we still did meete": [0, 65535], "i see we still did meete each": [0, 65535], "see we still did meete each others": [0, 65535], "we still did meete each others man": [0, 65535], "still did meete each others man and": [0, 65535], "did meete each others man and i": [0, 65535], "meete each others man and i was": [0, 65535], "each others man and i was tane": [0, 65535], "others man and i was tane for": [0, 65535], "man and i was tane for him": [0, 65535], "and i was tane for him and": [0, 65535], "i was tane for him and he": [0, 65535], "was tane for him and he for": [0, 65535], "tane for him and he for me": [0, 65535], "for him and he for me and": [0, 65535], "him and he for me and thereupon": [0, 65535], "and he for me and thereupon these": [0, 65535], "he for me and thereupon these errors": [0, 65535], "for me and thereupon these errors are": [0, 65535], "me and thereupon these errors are arose": [0, 65535], "and thereupon these errors are arose e": [0, 65535], "thereupon these errors are arose e ant": [0, 65535], "these errors are arose e ant these": [0, 65535], "errors are arose e ant these duckets": [0, 65535], "are arose e ant these duckets pawne": [0, 65535], "arose e ant these duckets pawne i": [0, 65535], "e ant these duckets pawne i for": [0, 65535], "ant these duckets pawne i for my": [0, 65535], "these duckets pawne i for my father": [0, 65535], "duckets pawne i for my father heere": [0, 65535], "pawne i for my father heere duke": [0, 65535], "i for my father heere duke it": [0, 65535], "for my father heere duke it shall": [0, 65535], "my father heere duke it shall not": [0, 65535], "father heere duke it shall not neede": [0, 65535], "heere duke it shall not neede thy": [0, 65535], "duke it shall not neede thy father": [0, 65535], "it shall not neede thy father hath": [0, 65535], "shall not neede thy father hath his": [0, 65535], "not neede thy father hath his life": [0, 65535], "neede thy father hath his life cur": [0, 65535], "thy father hath his life cur sir": [0, 65535], "father hath his life cur sir i": [0, 65535], "hath his life cur sir i must": [0, 65535], "his life cur sir i must haue": [0, 65535], "life cur sir i must haue that": [0, 65535], "cur sir i must haue that diamond": [0, 65535], "sir i must haue that diamond from": [0, 65535], "i must haue that diamond from you": [0, 65535], "must haue that diamond from you e": [0, 65535], "haue that diamond from you e ant": [0, 65535], "that diamond from you e ant there": [0, 65535], "diamond from you e ant there take": [0, 65535], "from you e ant there take it": [0, 65535], "you e ant there take it and": [0, 65535], "e ant there take it and much": [0, 65535], "ant there take it and much thanks": [0, 65535], "there take it and much thanks for": [0, 65535], "take it and much thanks for my": [0, 65535], "it and much thanks for my good": [0, 65535], "and much thanks for my good cheere": [0, 65535], "much thanks for my good cheere abb": [0, 65535], "thanks for my good cheere abb renowned": [0, 65535], "for my good cheere abb renowned duke": [0, 65535], "my good cheere abb renowned duke vouchsafe": [0, 65535], "good cheere abb renowned duke vouchsafe to": [0, 65535], "cheere abb renowned duke vouchsafe to take": [0, 65535], "abb renowned duke vouchsafe to take the": [0, 65535], "renowned duke vouchsafe to take the paines": [0, 65535], "duke vouchsafe to take the paines to": [0, 65535], "vouchsafe to take the paines to go": [0, 65535], "to take the paines to go with": [0, 65535], "take the paines to go with vs": [0, 65535], "the paines to go with vs into": [0, 65535], "paines to go with vs into the": [0, 65535], "to go with vs into the abbey": [0, 65535], "go with vs into the abbey heere": [0, 65535], "with vs into the abbey heere and": [0, 65535], "vs into the abbey heere and heare": [0, 65535], "into the abbey heere and heare at": [0, 65535], "the abbey heere and heare at large": [0, 65535], "abbey heere and heare at large discoursed": [0, 65535], "heere and heare at large discoursed all": [0, 65535], "and heare at large discoursed all our": [0, 65535], "heare at large discoursed all our fortunes": [0, 65535], "at large discoursed all our fortunes and": [0, 65535], "large discoursed all our fortunes and all": [0, 65535], "discoursed all our fortunes and all that": [0, 65535], "all our fortunes and all that are": [0, 65535], "our fortunes and all that are assembled": [0, 65535], "fortunes and all that are assembled in": [0, 65535], "and all that are assembled in this": [0, 65535], "all that are assembled in this place": [0, 65535], "that are assembled in this place that": [0, 65535], "are assembled in this place that by": [0, 65535], "assembled in this place that by this": [0, 65535], "in this place that by this simpathized": [0, 65535], "this place that by this simpathized one": [0, 65535], "place that by this simpathized one daies": [0, 65535], "that by this simpathized one daies error": [0, 65535], "by this simpathized one daies error haue": [0, 65535], "this simpathized one daies error haue suffer'd": [0, 65535], "simpathized one daies error haue suffer'd wrong": [0, 65535], "one daies error haue suffer'd wrong goe": [0, 65535], "daies error haue suffer'd wrong goe keepe": [0, 65535], "error haue suffer'd wrong goe keepe vs": [0, 65535], "haue suffer'd wrong goe keepe vs companie": [0, 65535], "suffer'd wrong goe keepe vs companie and": [0, 65535], "wrong goe keepe vs companie and we": [0, 65535], "goe keepe vs companie and we shall": [0, 65535], "keepe vs companie and we shall make": [0, 65535], "vs companie and we shall make full": [0, 65535], "companie and we shall make full satisfaction": [0, 65535], "and we shall make full satisfaction thirtie": [0, 65535], "we shall make full satisfaction thirtie three": [0, 65535], "shall make full satisfaction thirtie three yeares": [0, 65535], "make full satisfaction thirtie three yeares haue": [0, 65535], "full satisfaction thirtie three yeares haue i": [0, 65535], "satisfaction thirtie three yeares haue i but": [0, 65535], "thirtie three yeares haue i but gone": [0, 65535], "three yeares haue i but gone in": [0, 65535], "yeares haue i but gone in trauaile": [0, 65535], "haue i but gone in trauaile of": [0, 65535], "i but gone in trauaile of you": [0, 65535], "but gone in trauaile of you my": [0, 65535], "gone in trauaile of you my sonnes": [0, 65535], "in trauaile of you my sonnes and": [0, 65535], "trauaile of you my sonnes and till": [0, 65535], "of you my sonnes and till this": [0, 65535], "you my sonnes and till this present": [0, 65535], "my sonnes and till this present houre": [0, 65535], "sonnes and till this present houre my": [0, 65535], "and till this present houre my heauie": [0, 65535], "till this present houre my heauie burthen": [0, 65535], "this present houre my heauie burthen are": [0, 65535], "present houre my heauie burthen are deliuered": [0, 65535], "houre my heauie burthen are deliuered the": [0, 65535], "my heauie burthen are deliuered the duke": [0, 65535], "heauie burthen are deliuered the duke my": [0, 65535], "burthen are deliuered the duke my husband": [0, 65535], "are deliuered the duke my husband and": [0, 65535], "deliuered the duke my husband and my": [0, 65535], "the duke my husband and my children": [0, 65535], "duke my husband and my children both": [0, 65535], "my husband and my children both and": [0, 65535], "husband and my children both and you": [0, 65535], "and my children both and you the": [0, 65535], "my children both and you the kalenders": [0, 65535], "children both and you the kalenders of": [0, 65535], "both and you the kalenders of their": [0, 65535], "and you the kalenders of their natiuity": [0, 65535], "you the kalenders of their natiuity go": [0, 65535], "the kalenders of their natiuity go to": [0, 65535], "kalenders of their natiuity go to a": [0, 65535], "of their natiuity go to a gossips": [0, 65535], "their natiuity go to a gossips feast": [0, 65535], "natiuity go to a gossips feast and": [0, 65535], "go to a gossips feast and go": [0, 65535], "to a gossips feast and go with": [0, 65535], "a gossips feast and go with mee": [0, 65535], "gossips feast and go with mee after": [0, 65535], "feast and go with mee after so": [0, 65535], "and go with mee after so long": [0, 65535], "go with mee after so long greefe": [0, 65535], "with mee after so long greefe such": [0, 65535], "mee after so long greefe such natiuitie": [0, 65535], "after so long greefe such natiuitie duke": [0, 65535], "so long greefe such natiuitie duke with": [0, 65535], "long greefe such natiuitie duke with all": [0, 65535], "greefe such natiuitie duke with all my": [0, 65535], "such natiuitie duke with all my heart": [0, 65535], "natiuitie duke with all my heart ile": [0, 65535], "duke with all my heart ile gossip": [0, 65535], "with all my heart ile gossip at": [0, 65535], "all my heart ile gossip at this": [0, 65535], "my heart ile gossip at this feast": [0, 65535], "heart ile gossip at this feast exeunt": [0, 65535], "ile gossip at this feast exeunt omnes": [0, 65535], "gossip at this feast exeunt omnes manet": [0, 65535], "at this feast exeunt omnes manet the": [0, 65535], "this feast exeunt omnes manet the two": [0, 65535], "feast exeunt omnes manet the two dromio's": [0, 65535], "exeunt omnes manet the two dromio's and": [0, 65535], "omnes manet the two dromio's and two": [0, 65535], "manet the two dromio's and two brothers": [0, 65535], "the two dromio's and two brothers s": [0, 65535], "two dromio's and two brothers s dro": [0, 65535], "dromio's and two brothers s dro mast": [0, 65535], "and two brothers s dro mast shall": [0, 65535], "two brothers s dro mast shall i": [0, 65535], "brothers s dro mast shall i fetch": [0, 65535], "s dro mast shall i fetch your": [0, 65535], "dro mast shall i fetch your stuffe": [0, 65535], "mast shall i fetch your stuffe from": [0, 65535], "shall i fetch your stuffe from shipbord": [0, 65535], "i fetch your stuffe from shipbord e": [0, 65535], "fetch your stuffe from shipbord e an": [0, 65535], "your stuffe from shipbord e an dromio": [0, 65535], "stuffe from shipbord e an dromio what": [0, 65535], "from shipbord e an dromio what stuffe": [0, 65535], "shipbord e an dromio what stuffe of": [0, 65535], "e an dromio what stuffe of mine": [0, 65535], "an dromio what stuffe of mine hast": [0, 65535], "dromio what stuffe of mine hast thou": [0, 65535], "what stuffe of mine hast thou imbarkt": [0, 65535], "stuffe of mine hast thou imbarkt s": [0, 65535], "of mine hast thou imbarkt s dro": [0, 65535], "mine hast thou imbarkt s dro your": [0, 65535], "hast thou imbarkt s dro your goods": [0, 65535], "thou imbarkt s dro your goods that": [0, 65535], "imbarkt s dro your goods that lay": [0, 65535], "s dro your goods that lay at": [0, 65535], "dro your goods that lay at host": [0, 65535], "your goods that lay at host sir": [0, 65535], "goods that lay at host sir in": [0, 65535], "that lay at host sir in the": [0, 65535], "lay at host sir in the centaur": [0, 65535], "at host sir in the centaur s": [0, 65535], "host sir in the centaur s ant": [0, 65535], "sir in the centaur s ant he": [0, 65535], "in the centaur s ant he speakes": [0, 65535], "the centaur s ant he speakes to": [0, 65535], "centaur s ant he speakes to me": [0, 65535], "s ant he speakes to me i": [0, 65535], "ant he speakes to me i am": [0, 65535], "he speakes to me i am your": [0, 65535], "speakes to me i am your master": [0, 65535], "to me i am your master dromio": [0, 65535], "me i am your master dromio come": [0, 65535], "i am your master dromio come go": [0, 65535], "am your master dromio come go with": [0, 65535], "your master dromio come go with vs": [0, 65535], "master dromio come go with vs wee'l": [0, 65535], "dromio come go with vs wee'l looke": [0, 65535], "come go with vs wee'l looke to": [0, 65535], "go with vs wee'l looke to that": [0, 65535], "with vs wee'l looke to that anon": [0, 65535], "vs wee'l looke to that anon embrace": [0, 65535], "wee'l looke to that anon embrace thy": [0, 65535], "looke to that anon embrace thy brother": [0, 65535], "to that anon embrace thy brother there": [0, 65535], "that anon embrace thy brother there reioyce": [0, 65535], "anon embrace thy brother there reioyce with": [0, 65535], "embrace thy brother there reioyce with him": [0, 65535], "thy brother there reioyce with him exit": [0, 65535], "brother there reioyce with him exit s": [0, 65535], "there reioyce with him exit s dro": [0, 65535], "reioyce with him exit s dro there": [0, 65535], "with him exit s dro there is": [0, 65535], "him exit s dro there is a": [0, 65535], "exit s dro there is a fat": [0, 65535], "s dro there is a fat friend": [0, 65535], "dro there is a fat friend at": [0, 65535], "there is a fat friend at your": [0, 65535], "is a fat friend at your masters": [0, 65535], "a fat friend at your masters house": [0, 65535], "fat friend at your masters house that": [0, 65535], "friend at your masters house that kitchin'd": [0, 65535], "at your masters house that kitchin'd me": [0, 65535], "your masters house that kitchin'd me for": [0, 65535], "masters house that kitchin'd me for you": [0, 65535], "house that kitchin'd me for you to": [0, 65535], "that kitchin'd me for you to day": [0, 65535], "kitchin'd me for you to day at": [0, 65535], "me for you to day at dinner": [0, 65535], "for you to day at dinner she": [0, 65535], "you to day at dinner she now": [0, 65535], "to day at dinner she now shall": [0, 65535], "day at dinner she now shall be": [0, 65535], "at dinner she now shall be my": [0, 65535], "dinner she now shall be my sister": [0, 65535], "she now shall be my sister not": [0, 65535], "now shall be my sister not my": [0, 65535], "shall be my sister not my wife": [0, 65535], "be my sister not my wife e": [0, 65535], "my sister not my wife e d": [0, 65535], "sister not my wife e d me": [0, 65535], "not my wife e d me thinks": [0, 65535], "my wife e d me thinks you": [0, 65535], "wife e d me thinks you are": [0, 65535], "e d me thinks you are my": [0, 65535], "d me thinks you are my glasse": [0, 65535], "me thinks you are my glasse not": [0, 65535], "thinks you are my glasse not my": [0, 65535], "you are my glasse not my brother": [0, 65535], "are my glasse not my brother i": [0, 65535], "my glasse not my brother i see": [0, 65535], "glasse not my brother i see by": [0, 65535], "not my brother i see by you": [0, 65535], "my brother i see by you i": [0, 65535], "brother i see by you i am": [0, 65535], "i see by you i am a": [0, 65535], "see by you i am a sweet": [0, 65535], "by you i am a sweet fac'd": [0, 65535], "you i am a sweet fac'd youth": [0, 65535], "i am a sweet fac'd youth will": [0, 65535], "am a sweet fac'd youth will you": [0, 65535], "a sweet fac'd youth will you walke": [0, 65535], "sweet fac'd youth will you walke in": [0, 65535], "fac'd youth will you walke in to": [0, 65535], "youth will you walke in to see": [0, 65535], "will you walke in to see their": [0, 65535], "you walke in to see their gossipping": [0, 65535], "walke in to see their gossipping s": [0, 65535], "in to see their gossipping s dro": [0, 65535], "to see their gossipping s dro not": [0, 65535], "see their gossipping s dro not i": [0, 65535], "their gossipping s dro not i sir": [0, 65535], "gossipping s dro not i sir you": [0, 65535], "s dro not i sir you are": [0, 65535], "dro not i sir you are my": [0, 65535], "not i sir you are my elder": [0, 65535], "i sir you are my elder e": [0, 65535], "sir you are my elder e dro": [0, 65535], "you are my elder e dro that's": [0, 65535], "are my elder e dro that's a": [0, 65535], "my elder e dro that's a question": [0, 65535], "elder e dro that's a question how": [0, 65535], "e dro that's a question how shall": [0, 65535], "dro that's a question how shall we": [0, 65535], "that's a question how shall we trie": [0, 65535], "a question how shall we trie it": [0, 65535], "question how shall we trie it s": [0, 65535], "how shall we trie it s dro": [0, 65535], "shall we trie it s dro wee'l": [0, 65535], "we trie it s dro wee'l draw": [0, 65535], "trie it s dro wee'l draw cuts": [0, 65535], "it s dro wee'l draw cuts for": [0, 65535], "s dro wee'l draw cuts for the": [0, 65535], "dro wee'l draw cuts for the signior": [0, 65535], "wee'l draw cuts for the signior till": [0, 65535], "draw cuts for the signior till then": [0, 65535], "cuts for the signior till then lead": [0, 65535], "for the signior till then lead thou": [0, 65535], "the signior till then lead thou first": [0, 65535], "signior till then lead thou first e": [0, 65535], "till then lead thou first e dro": [0, 65535], "then lead thou first e dro nay": [0, 65535], "lead thou first e dro nay then": [0, 65535], "thou first e dro nay then thus": [0, 65535], "first e dro nay then thus we": [0, 65535], "e dro nay then thus we came": [0, 65535], "dro nay then thus we came into": [0, 65535], "nay then thus we came into the": [0, 65535], "then thus we came into the world": [0, 65535], "thus we came into the world like": [0, 65535], "we came into the world like brother": [0, 65535], "came into the world like brother and": [0, 65535], "into the world like brother and brother": [0, 65535], "the world like brother and brother and": [0, 65535], "world like brother and brother and now": [0, 65535], "like brother and brother and now let's": [0, 65535], "brother and brother and now let's go": [0, 65535], "and brother and now let's go hand": [0, 65535], "brother and now let's go hand in": [0, 65535], "and now let's go hand in hand": [0, 65535], "now let's go hand in hand not": [0, 65535], "let's go hand in hand not one": [0, 65535], "go hand in hand not one before": [0, 65535], "hand in hand not one before another": [0, 65535], "in hand not one before another exeunt": [0, 65535], "hand not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant and": [0, 65535], "quintus sc\u0153na prima enter the merchant and the": [0, 65535], "sc\u0153na prima enter the merchant and the goldsmith": [0, 65535], "prima enter the merchant and the goldsmith gold": [0, 65535], "enter the merchant and the goldsmith gold i": [0, 65535], "the merchant and the goldsmith gold i am": [0, 65535], "merchant and the goldsmith gold i am sorry": [0, 65535], "and the goldsmith gold i am sorry sir": [0, 65535], "the goldsmith gold i am sorry sir that": [0, 65535], "goldsmith gold i am sorry sir that i": [0, 65535], "gold i am sorry sir that i haue": [0, 65535], "i am sorry sir that i haue hindred": [0, 65535], "am sorry sir that i haue hindred you": [0, 65535], "sorry sir that i haue hindred you but": [0, 65535], "sir that i haue hindred you but i": [0, 65535], "that i haue hindred you but i protest": [0, 65535], "i haue hindred you but i protest he": [0, 65535], "haue hindred you but i protest he had": [0, 65535], "hindred you but i protest he had the": [0, 65535], "you but i protest he had the chaine": [0, 65535], "but i protest he had the chaine of": [0, 65535], "i protest he had the chaine of me": [0, 65535], "protest he had the chaine of me though": [0, 65535], "he had the chaine of me though most": [0, 65535], "had the chaine of me though most dishonestly": [0, 65535], "the chaine of me though most dishonestly he": [0, 65535], "chaine of me though most dishonestly he doth": [0, 65535], "of me though most dishonestly he doth denie": [0, 65535], "me though most dishonestly he doth denie it": [0, 65535], "though most dishonestly he doth denie it mar": [0, 65535], "most dishonestly he doth denie it mar how": [0, 65535], "dishonestly he doth denie it mar how is": [0, 65535], "he doth denie it mar how is the": [0, 65535], "doth denie it mar how is the man": [0, 65535], "denie it mar how is the man esteem'd": [0, 65535], "it mar how is the man esteem'd heere": [0, 65535], "mar how is the man esteem'd heere in": [0, 65535], "how is the man esteem'd heere in the": [0, 65535], "is the man esteem'd heere in the citie": [0, 65535], "the man esteem'd heere in the citie gold": [0, 65535], "man esteem'd heere in the citie gold of": [0, 65535], "esteem'd heere in the citie gold of very": [0, 65535], "heere in the citie gold of very reuerent": [0, 65535], "in the citie gold of very reuerent reputation": [0, 65535], "the citie gold of very reuerent reputation sir": [0, 65535], "citie gold of very reuerent reputation sir of": [0, 65535], "gold of very reuerent reputation sir of credit": [0, 65535], "of very reuerent reputation sir of credit infinite": [0, 65535], "very reuerent reputation sir of credit infinite highly": [0, 65535], "reuerent reputation sir of credit infinite highly belou'd": [0, 65535], "reputation sir of credit infinite highly belou'd second": [0, 65535], "sir of credit infinite highly belou'd second to": [0, 65535], "of credit infinite highly belou'd second to none": [0, 65535], "credit infinite highly belou'd second to none that": [0, 65535], "infinite highly belou'd second to none that liues": [0, 65535], "highly belou'd second to none that liues heere": [0, 65535], "belou'd second to none that liues heere in": [0, 65535], "second to none that liues heere in the": [0, 65535], "to none that liues heere in the citie": [0, 65535], "none that liues heere in the citie his": [0, 65535], "that liues heere in the citie his word": [0, 65535], "liues heere in the citie his word might": [0, 65535], "heere in the citie his word might beare": [0, 65535], "in the citie his word might beare my": [0, 65535], "the citie his word might beare my wealth": [0, 65535], "citie his word might beare my wealth at": [0, 65535], "his word might beare my wealth at any": [0, 65535], "word might beare my wealth at any time": [0, 65535], "might beare my wealth at any time mar": [0, 65535], "beare my wealth at any time mar speake": [0, 65535], "my wealth at any time mar speake softly": [0, 65535], "wealth at any time mar speake softly yonder": [0, 65535], "at any time mar speake softly yonder as": [0, 65535], "any time mar speake softly yonder as i": [0, 65535], "time mar speake softly yonder as i thinke": [0, 65535], "mar speake softly yonder as i thinke he": [0, 65535], "speake softly yonder as i thinke he walkes": [0, 65535], "softly yonder as i thinke he walkes enter": [0, 65535], "yonder as i thinke he walkes enter antipholus": [0, 65535], "as i thinke he walkes enter antipholus and": [0, 65535], "i thinke he walkes enter antipholus and dromio": [0, 65535], "thinke he walkes enter antipholus and dromio againe": [0, 65535], "he walkes enter antipholus and dromio againe gold": [0, 65535], "walkes enter antipholus and dromio againe gold 'tis": [0, 65535], "enter antipholus and dromio againe gold 'tis so": [0, 65535], "antipholus and dromio againe gold 'tis so and": [0, 65535], "and dromio againe gold 'tis so and that": [0, 65535], "dromio againe gold 'tis so and that selfe": [0, 65535], "againe gold 'tis so and that selfe chaine": [0, 65535], "gold 'tis so and that selfe chaine about": [0, 65535], "'tis so and that selfe chaine about his": [0, 65535], "so and that selfe chaine about his necke": [0, 65535], "and that selfe chaine about his necke which": [0, 65535], "that selfe chaine about his necke which he": [0, 65535], "selfe chaine about his necke which he forswore": [0, 65535], "chaine about his necke which he forswore most": [0, 65535], "about his necke which he forswore most monstrously": [0, 65535], "his necke which he forswore most monstrously to": [0, 65535], "necke which he forswore most monstrously to haue": [0, 65535], "which he forswore most monstrously to haue good": [0, 65535], "he forswore most monstrously to haue good sir": [0, 65535], "forswore most monstrously to haue good sir draw": [0, 65535], "most monstrously to haue good sir draw neere": [0, 65535], "monstrously to haue good sir draw neere to": [0, 65535], "to haue good sir draw neere to me": [0, 65535], "haue good sir draw neere to me ile": [0, 65535], "good sir draw neere to me ile speake": [0, 65535], "sir draw neere to me ile speake to": [0, 65535], "draw neere to me ile speake to him": [0, 65535], "neere to me ile speake to him signior": [0, 65535], "to me ile speake to him signior antipholus": [0, 65535], "me ile speake to him signior antipholus i": [0, 65535], "ile speake to him signior antipholus i wonder": [0, 65535], "speake to him signior antipholus i wonder much": [0, 65535], "to him signior antipholus i wonder much that": [0, 65535], "him signior antipholus i wonder much that you": [0, 65535], "signior antipholus i wonder much that you would": [0, 65535], "antipholus i wonder much that you would put": [0, 65535], "i wonder much that you would put me": [0, 65535], "wonder much that you would put me to": [0, 65535], "much that you would put me to this": [0, 65535], "that you would put me to this shame": [0, 65535], "you would put me to this shame and": [0, 65535], "would put me to this shame and trouble": [0, 65535], "put me to this shame and trouble and": [0, 65535], "me to this shame and trouble and not": [0, 65535], "to this shame and trouble and not without": [0, 65535], "this shame and trouble and not without some": [0, 65535], "shame and trouble and not without some scandall": [0, 65535], "and trouble and not without some scandall to": [0, 65535], "trouble and not without some scandall to your": [0, 65535], "and not without some scandall to your selfe": [0, 65535], "not without some scandall to your selfe with": [0, 65535], "without some scandall to your selfe with circumstance": [0, 65535], "some scandall to your selfe with circumstance and": [0, 65535], "scandall to your selfe with circumstance and oaths": [0, 65535], "to your selfe with circumstance and oaths so": [0, 65535], "your selfe with circumstance and oaths so to": [0, 65535], "selfe with circumstance and oaths so to denie": [0, 65535], "with circumstance and oaths so to denie this": [0, 65535], "circumstance and oaths so to denie this chaine": [0, 65535], "and oaths so to denie this chaine which": [0, 65535], "oaths so to denie this chaine which now": [0, 65535], "so to denie this chaine which now you": [0, 65535], "to denie this chaine which now you weare": [0, 65535], "denie this chaine which now you weare so": [0, 65535], "this chaine which now you weare so openly": [0, 65535], "chaine which now you weare so openly beside": [0, 65535], "which now you weare so openly beside the": [0, 65535], "now you weare so openly beside the charge": [0, 65535], "you weare so openly beside the charge the": [0, 65535], "weare so openly beside the charge the shame": [0, 65535], "so openly beside the charge the shame imprisonment": [0, 65535], "openly beside the charge the shame imprisonment you": [0, 65535], "beside the charge the shame imprisonment you haue": [0, 65535], "the charge the shame imprisonment you haue done": [0, 65535], "charge the shame imprisonment you haue done wrong": [0, 65535], "the shame imprisonment you haue done wrong to": [0, 65535], "shame imprisonment you haue done wrong to this": [0, 65535], "imprisonment you haue done wrong to this my": [0, 65535], "you haue done wrong to this my honest": [0, 65535], "haue done wrong to this my honest friend": [0, 65535], "done wrong to this my honest friend who": [0, 65535], "wrong to this my honest friend who but": [0, 65535], "to this my honest friend who but for": [0, 65535], "this my honest friend who but for staying": [0, 65535], "my honest friend who but for staying on": [0, 65535], "honest friend who but for staying on our": [0, 65535], "friend who but for staying on our controuersie": [0, 65535], "who but for staying on our controuersie had": [0, 65535], "but for staying on our controuersie had hoisted": [0, 65535], "for staying on our controuersie had hoisted saile": [0, 65535], "staying on our controuersie had hoisted saile and": [0, 65535], "on our controuersie had hoisted saile and put": [0, 65535], "our controuersie had hoisted saile and put to": [0, 65535], "controuersie had hoisted saile and put to sea": [0, 65535], "had hoisted saile and put to sea to": [0, 65535], "hoisted saile and put to sea to day": [0, 65535], "saile and put to sea to day this": [0, 65535], "and put to sea to day this chaine": [0, 65535], "put to sea to day this chaine you": [0, 65535], "to sea to day this chaine you had": [0, 65535], "sea to day this chaine you had of": [0, 65535], "to day this chaine you had of me": [0, 65535], "day this chaine you had of me can": [0, 65535], "this chaine you had of me can you": [0, 65535], "chaine you had of me can you deny": [0, 65535], "you had of me can you deny it": [0, 65535], "had of me can you deny it ant": [0, 65535], "of me can you deny it ant i": [0, 65535], "me can you deny it ant i thinke": [0, 65535], "can you deny it ant i thinke i": [0, 65535], "you deny it ant i thinke i had": [0, 65535], "deny it ant i thinke i had i": [0, 65535], "it ant i thinke i had i neuer": [0, 65535], "ant i thinke i had i neuer did": [0, 65535], "i thinke i had i neuer did deny": [0, 65535], "thinke i had i neuer did deny it": [0, 65535], "i had i neuer did deny it mar": [0, 65535], "had i neuer did deny it mar yes": [0, 65535], "i neuer did deny it mar yes that": [0, 65535], "neuer did deny it mar yes that you": [0, 65535], "did deny it mar yes that you did": [0, 65535], "deny it mar yes that you did sir": [0, 65535], "it mar yes that you did sir and": [0, 65535], "mar yes that you did sir and forswore": [0, 65535], "yes that you did sir and forswore it": [0, 65535], "that you did sir and forswore it too": [0, 65535], "you did sir and forswore it too ant": [0, 65535], "did sir and forswore it too ant who": [0, 65535], "sir and forswore it too ant who heard": [0, 65535], "and forswore it too ant who heard me": [0, 65535], "forswore it too ant who heard me to": [0, 65535], "it too ant who heard me to denie": [0, 65535], "too ant who heard me to denie it": [0, 65535], "ant who heard me to denie it or": [0, 65535], "who heard me to denie it or forsweare": [0, 65535], "heard me to denie it or forsweare it": [0, 65535], "me to denie it or forsweare it mar": [0, 65535], "to denie it or forsweare it mar these": [0, 65535], "denie it or forsweare it mar these eares": [0, 65535], "it or forsweare it mar these eares of": [0, 65535], "or forsweare it mar these eares of mine": [0, 65535], "forsweare it mar these eares of mine thou": [0, 65535], "it mar these eares of mine thou knowst": [0, 65535], "mar these eares of mine thou knowst did": [0, 65535], "these eares of mine thou knowst did hear": [0, 65535], "eares of mine thou knowst did hear thee": [0, 65535], "of mine thou knowst did hear thee fie": [0, 65535], "mine thou knowst did hear thee fie on": [0, 65535], "thou knowst did hear thee fie on thee": [0, 65535], "knowst did hear thee fie on thee wretch": [0, 65535], "did hear thee fie on thee wretch 'tis": [0, 65535], "hear thee fie on thee wretch 'tis pitty": [0, 65535], "thee fie on thee wretch 'tis pitty that": [0, 65535], "fie on thee wretch 'tis pitty that thou": [0, 65535], "on thee wretch 'tis pitty that thou liu'st": [0, 65535], "thee wretch 'tis pitty that thou liu'st to": [0, 65535], "wretch 'tis pitty that thou liu'st to walke": [0, 65535], "'tis pitty that thou liu'st to walke where": [0, 65535], "pitty that thou liu'st to walke where any": [0, 65535], "that thou liu'st to walke where any honest": [0, 65535], "thou liu'st to walke where any honest men": [0, 65535], "liu'st to walke where any honest men resort": [0, 65535], "to walke where any honest men resort ant": [0, 65535], "walke where any honest men resort ant thou": [0, 65535], "where any honest men resort ant thou art": [0, 65535], "any honest men resort ant thou art a": [0, 65535], "honest men resort ant thou art a villaine": [0, 65535], "men resort ant thou art a villaine to": [0, 65535], "resort ant thou art a villaine to impeach": [0, 65535], "ant thou art a villaine to impeach me": [0, 65535], "thou art a villaine to impeach me thus": [0, 65535], "art a villaine to impeach me thus ile": [0, 65535], "a villaine to impeach me thus ile proue": [0, 65535], "villaine to impeach me thus ile proue mine": [0, 65535], "to impeach me thus ile proue mine honor": [0, 65535], "impeach me thus ile proue mine honor and": [0, 65535], "me thus ile proue mine honor and mine": [0, 65535], "thus ile proue mine honor and mine honestie": [0, 65535], "ile proue mine honor and mine honestie against": [0, 65535], "proue mine honor and mine honestie against thee": [0, 65535], "mine honor and mine honestie against thee presently": [0, 65535], "honor and mine honestie against thee presently if": [0, 65535], "and mine honestie against thee presently if thou": [0, 65535], "mine honestie against thee presently if thou dar'st": [0, 65535], "honestie against thee presently if thou dar'st stand": [0, 65535], "against thee presently if thou dar'st stand mar": [0, 65535], "thee presently if thou dar'st stand mar i": [0, 65535], "presently if thou dar'st stand mar i dare": [0, 65535], "if thou dar'st stand mar i dare and": [0, 65535], "thou dar'st stand mar i dare and do": [0, 65535], "dar'st stand mar i dare and do defie": [0, 65535], "stand mar i dare and do defie thee": [0, 65535], "mar i dare and do defie thee for": [0, 65535], "i dare and do defie thee for a": [0, 65535], "dare and do defie thee for a villaine": [0, 65535], "and do defie thee for a villaine they": [0, 65535], "do defie thee for a villaine they draw": [0, 65535], "defie thee for a villaine they draw enter": [0, 65535], "thee for a villaine they draw enter adriana": [0, 65535], "for a villaine they draw enter adriana luciana": [0, 65535], "a villaine they draw enter adriana luciana courtezan": [0, 65535], "villaine they draw enter adriana luciana courtezan others": [0, 65535], "they draw enter adriana luciana courtezan others adr": [0, 65535], "draw enter adriana luciana courtezan others adr hold": [0, 65535], "enter adriana luciana courtezan others adr hold hurt": [0, 65535], "adriana luciana courtezan others adr hold hurt him": [0, 65535], "luciana courtezan others adr hold hurt him not": [0, 65535], "courtezan others adr hold hurt him not for": [0, 65535], "others adr hold hurt him not for god": [0, 65535], "adr hold hurt him not for god sake": [0, 65535], "hold hurt him not for god sake he": [0, 65535], "hurt him not for god sake he is": [0, 65535], "him not for god sake he is mad": [0, 65535], "not for god sake he is mad some": [0, 65535], "for god sake he is mad some get": [0, 65535], "god sake he is mad some get within": [0, 65535], "sake he is mad some get within him": [0, 65535], "he is mad some get within him take": [0, 65535], "is mad some get within him take his": [0, 65535], "mad some get within him take his sword": [0, 65535], "some get within him take his sword away": [0, 65535], "get within him take his sword away binde": [0, 65535], "within him take his sword away binde dromio": [0, 65535], "him take his sword away binde dromio too": [0, 65535], "take his sword away binde dromio too and": [0, 65535], "his sword away binde dromio too and beare": [0, 65535], "sword away binde dromio too and beare them": [0, 65535], "away binde dromio too and beare them to": [0, 65535], "binde dromio too and beare them to my": [0, 65535], "dromio too and beare them to my house": [0, 65535], "too and beare them to my house s": [0, 65535], "and beare them to my house s dro": [0, 65535], "beare them to my house s dro runne": [0, 65535], "them to my house s dro runne master": [0, 65535], "to my house s dro runne master run": [0, 65535], "my house s dro runne master run for": [0, 65535], "house s dro runne master run for gods": [0, 65535], "s dro runne master run for gods sake": [0, 65535], "dro runne master run for gods sake take": [0, 65535], "runne master run for gods sake take a": [0, 65535], "master run for gods sake take a house": [0, 65535], "run for gods sake take a house this": [0, 65535], "for gods sake take a house this is": [0, 65535], "gods sake take a house this is some": [0, 65535], "sake take a house this is some priorie": [0, 65535], "take a house this is some priorie in": [0, 65535], "a house this is some priorie in or": [0, 65535], "house this is some priorie in or we": [0, 65535], "this is some priorie in or we are": [0, 65535], "is some priorie in or we are spoyl'd": [0, 65535], "some priorie in or we are spoyl'd exeunt": [0, 65535], "priorie in or we are spoyl'd exeunt to": [0, 65535], "in or we are spoyl'd exeunt to the": [0, 65535], "or we are spoyl'd exeunt to the priorie": [0, 65535], "we are spoyl'd exeunt to the priorie enter": [0, 65535], "are spoyl'd exeunt to the priorie enter ladie": [0, 65535], "spoyl'd exeunt to the priorie enter ladie abbesse": [0, 65535], "exeunt to the priorie enter ladie abbesse ab": [0, 65535], "to the priorie enter ladie abbesse ab be": [0, 65535], "the priorie enter ladie abbesse ab be quiet": [0, 65535], "priorie enter ladie abbesse ab be quiet people": [0, 65535], "enter ladie abbesse ab be quiet people wherefore": [0, 65535], "ladie abbesse ab be quiet people wherefore throng": [0, 65535], "abbesse ab be quiet people wherefore throng you": [0, 65535], "ab be quiet people wherefore throng you hither": [0, 65535], "be quiet people wherefore throng you hither adr": [0, 65535], "quiet people wherefore throng you hither adr to": [0, 65535], "people wherefore throng you hither adr to fetch": [0, 65535], "wherefore throng you hither adr to fetch my": [0, 65535], "throng you hither adr to fetch my poore": [0, 65535], "you hither adr to fetch my poore distracted": [0, 65535], "hither adr to fetch my poore distracted husband": [0, 65535], "adr to fetch my poore distracted husband hence": [0, 65535], "to fetch my poore distracted husband hence let": [0, 65535], "fetch my poore distracted husband hence let vs": [0, 65535], "my poore distracted husband hence let vs come": [0, 65535], "poore distracted husband hence let vs come in": [0, 65535], "distracted husband hence let vs come in that": [0, 65535], "husband hence let vs come in that we": [0, 65535], "hence let vs come in that we may": [0, 65535], "let vs come in that we may binde": [0, 65535], "vs come in that we may binde him": [0, 65535], "come in that we may binde him fast": [0, 65535], "in that we may binde him fast and": [0, 65535], "that we may binde him fast and beare": [0, 65535], "we may binde him fast and beare him": [0, 65535], "may binde him fast and beare him home": [0, 65535], "binde him fast and beare him home for": [0, 65535], "him fast and beare him home for his": [0, 65535], "fast and beare him home for his recouerie": [0, 65535], "and beare him home for his recouerie gold": [0, 65535], "beare him home for his recouerie gold i": [0, 65535], "him home for his recouerie gold i knew": [0, 65535], "home for his recouerie gold i knew he": [0, 65535], "for his recouerie gold i knew he was": [0, 65535], "his recouerie gold i knew he was not": [0, 65535], "recouerie gold i knew he was not in": [0, 65535], "gold i knew he was not in his": [0, 65535], "i knew he was not in his perfect": [0, 65535], "knew he was not in his perfect wits": [0, 65535], "he was not in his perfect wits mar": [0, 65535], "was not in his perfect wits mar i": [0, 65535], "not in his perfect wits mar i am": [0, 65535], "in his perfect wits mar i am sorry": [0, 65535], "his perfect wits mar i am sorry now": [0, 65535], "perfect wits mar i am sorry now that": [0, 65535], "wits mar i am sorry now that i": [0, 65535], "mar i am sorry now that i did": [0, 65535], "i am sorry now that i did draw": [0, 65535], "am sorry now that i did draw on": [0, 65535], "sorry now that i did draw on him": [0, 65535], "now that i did draw on him ab": [0, 65535], "that i did draw on him ab how": [0, 65535], "i did draw on him ab how long": [0, 65535], "did draw on him ab how long hath": [0, 65535], "draw on him ab how long hath this": [0, 65535], "on him ab how long hath this possession": [0, 65535], "him ab how long hath this possession held": [0, 65535], "ab how long hath this possession held the": [0, 65535], "how long hath this possession held the man": [0, 65535], "long hath this possession held the man adr": [0, 65535], "hath this possession held the man adr this": [0, 65535], "this possession held the man adr this weeke": [0, 65535], "possession held the man adr this weeke he": [0, 65535], "held the man adr this weeke he hath": [0, 65535], "the man adr this weeke he hath beene": [0, 65535], "man adr this weeke he hath beene heauie": [0, 65535], "adr this weeke he hath beene heauie sower": [0, 65535], "this weeke he hath beene heauie sower sad": [0, 65535], "weeke he hath beene heauie sower sad and": [0, 65535], "he hath beene heauie sower sad and much": [0, 65535], "hath beene heauie sower sad and much different": [0, 65535], "beene heauie sower sad and much different from": [0, 65535], "heauie sower sad and much different from the": [0, 65535], "sower sad and much different from the man": [0, 65535], "sad and much different from the man he": [0, 65535], "and much different from the man he was": [0, 65535], "much different from the man he was but": [0, 65535], "different from the man he was but till": [0, 65535], "from the man he was but till this": [0, 65535], "the man he was but till this afternoone": [0, 65535], "man he was but till this afternoone his": [0, 65535], "he was but till this afternoone his passion": [0, 65535], "was but till this afternoone his passion ne're": [0, 65535], "but till this afternoone his passion ne're brake": [0, 65535], "till this afternoone his passion ne're brake into": [0, 65535], "this afternoone his passion ne're brake into extremity": [0, 65535], "afternoone his passion ne're brake into extremity of": [0, 65535], "his passion ne're brake into extremity of rage": [0, 65535], "passion ne're brake into extremity of rage ab": [0, 65535], "ne're brake into extremity of rage ab hath": [0, 65535], "brake into extremity of rage ab hath he": [0, 65535], "into extremity of rage ab hath he not": [0, 65535], "extremity of rage ab hath he not lost": [0, 65535], "of rage ab hath he not lost much": [0, 65535], "rage ab hath he not lost much wealth": [0, 65535], "ab hath he not lost much wealth by": [0, 65535], "hath he not lost much wealth by wrack": [0, 65535], "he not lost much wealth by wrack of": [0, 65535], "not lost much wealth by wrack of sea": [0, 65535], "lost much wealth by wrack of sea buried": [0, 65535], "much wealth by wrack of sea buried some": [0, 65535], "wealth by wrack of sea buried some deere": [0, 65535], "by wrack of sea buried some deere friend": [0, 65535], "wrack of sea buried some deere friend hath": [0, 65535], "of sea buried some deere friend hath not": [0, 65535], "sea buried some deere friend hath not else": [0, 65535], "buried some deere friend hath not else his": [0, 65535], "some deere friend hath not else his eye": [0, 65535], "deere friend hath not else his eye stray'd": [0, 65535], "friend hath not else his eye stray'd his": [0, 65535], "hath not else his eye stray'd his affection": [0, 65535], "not else his eye stray'd his affection in": [0, 65535], "else his eye stray'd his affection in vnlawfull": [0, 65535], "his eye stray'd his affection in vnlawfull loue": [0, 65535], "eye stray'd his affection in vnlawfull loue a": [0, 65535], "stray'd his affection in vnlawfull loue a sinne": [0, 65535], "his affection in vnlawfull loue a sinne preuailing": [0, 65535], "affection in vnlawfull loue a sinne preuailing much": [0, 65535], "in vnlawfull loue a sinne preuailing much in": [0, 65535], "vnlawfull loue a sinne preuailing much in youthfull": [0, 65535], "loue a sinne preuailing much in youthfull men": [0, 65535], "a sinne preuailing much in youthfull men who": [0, 65535], "sinne preuailing much in youthfull men who giue": [0, 65535], "preuailing much in youthfull men who giue their": [0, 65535], "much in youthfull men who giue their eies": [0, 65535], "in youthfull men who giue their eies the": [0, 65535], "youthfull men who giue their eies the liberty": [0, 65535], "men who giue their eies the liberty of": [0, 65535], "who giue their eies the liberty of gazing": [0, 65535], "giue their eies the liberty of gazing which": [0, 65535], "their eies the liberty of gazing which of": [0, 65535], "eies the liberty of gazing which of these": [0, 65535], "the liberty of gazing which of these sorrowes": [0, 65535], "liberty of gazing which of these sorrowes is": [0, 65535], "of gazing which of these sorrowes is he": [0, 65535], "gazing which of these sorrowes is he subiect": [0, 65535], "which of these sorrowes is he subiect too": [0, 65535], "of these sorrowes is he subiect too adr": [0, 65535], "these sorrowes is he subiect too adr to": [0, 65535], "sorrowes is he subiect too adr to none": [0, 65535], "is he subiect too adr to none of": [0, 65535], "he subiect too adr to none of these": [0, 65535], "subiect too adr to none of these except": [0, 65535], "too adr to none of these except it": [0, 65535], "adr to none of these except it be": [0, 65535], "to none of these except it be the": [0, 65535], "none of these except it be the last": [0, 65535], "of these except it be the last namely": [0, 65535], "these except it be the last namely some": [0, 65535], "except it be the last namely some loue": [0, 65535], "it be the last namely some loue that": [0, 65535], "be the last namely some loue that drew": [0, 65535], "the last namely some loue that drew him": [0, 65535], "last namely some loue that drew him oft": [0, 65535], "namely some loue that drew him oft from": [0, 65535], "some loue that drew him oft from home": [0, 65535], "loue that drew him oft from home ab": [0, 65535], "that drew him oft from home ab you": [0, 65535], "drew him oft from home ab you should": [0, 65535], "him oft from home ab you should for": [0, 65535], "oft from home ab you should for that": [0, 65535], "from home ab you should for that haue": [0, 65535], "home ab you should for that haue reprehended": [0, 65535], "ab you should for that haue reprehended him": [0, 65535], "you should for that haue reprehended him adr": [0, 65535], "should for that haue reprehended him adr why": [0, 65535], "for that haue reprehended him adr why so": [0, 65535], "that haue reprehended him adr why so i": [0, 65535], "haue reprehended him adr why so i did": [0, 65535], "reprehended him adr why so i did ab": [0, 65535], "him adr why so i did ab i": [0, 65535], "adr why so i did ab i but": [0, 65535], "why so i did ab i but not": [0, 65535], "so i did ab i but not rough": [0, 65535], "i did ab i but not rough enough": [0, 65535], "did ab i but not rough enough adr": [0, 65535], "ab i but not rough enough adr as": [0, 65535], "i but not rough enough adr as roughly": [0, 65535], "but not rough enough adr as roughly as": [0, 65535], "not rough enough adr as roughly as my": [0, 65535], "rough enough adr as roughly as my modestie": [0, 65535], "enough adr as roughly as my modestie would": [0, 65535], "adr as roughly as my modestie would let": [0, 65535], "as roughly as my modestie would let me": [0, 65535], "roughly as my modestie would let me ab": [0, 65535], "as my modestie would let me ab haply": [0, 65535], "my modestie would let me ab haply in": [0, 65535], "modestie would let me ab haply in priuate": [0, 65535], "would let me ab haply in priuate adr": [0, 65535], "let me ab haply in priuate adr and": [0, 65535], "me ab haply in priuate adr and in": [0, 65535], "ab haply in priuate adr and in assemblies": [0, 65535], "haply in priuate adr and in assemblies too": [0, 65535], "in priuate adr and in assemblies too ab": [0, 65535], "priuate adr and in assemblies too ab i": [0, 65535], "adr and in assemblies too ab i but": [0, 65535], "and in assemblies too ab i but not": [0, 65535], "in assemblies too ab i but not enough": [0, 65535], "assemblies too ab i but not enough adr": [0, 65535], "too ab i but not enough adr it": [0, 65535], "ab i but not enough adr it was": [0, 65535], "i but not enough adr it was the": [0, 65535], "but not enough adr it was the copie": [0, 65535], "not enough adr it was the copie of": [0, 65535], "enough adr it was the copie of our": [0, 65535], "adr it was the copie of our conference": [0, 65535], "it was the copie of our conference in": [0, 65535], "was the copie of our conference in bed": [0, 65535], "the copie of our conference in bed he": [0, 65535], "copie of our conference in bed he slept": [0, 65535], "of our conference in bed he slept not": [0, 65535], "our conference in bed he slept not for": [0, 65535], "conference in bed he slept not for my": [0, 65535], "in bed he slept not for my vrging": [0, 65535], "bed he slept not for my vrging it": [0, 65535], "he slept not for my vrging it at": [0, 65535], "slept not for my vrging it at boord": [0, 65535], "not for my vrging it at boord he": [0, 65535], "for my vrging it at boord he fed": [0, 65535], "my vrging it at boord he fed not": [0, 65535], "vrging it at boord he fed not for": [0, 65535], "it at boord he fed not for my": [0, 65535], "at boord he fed not for my vrging": [0, 65535], "boord he fed not for my vrging it": [0, 65535], "he fed not for my vrging it alone": [0, 65535], "fed not for my vrging it alone it": [0, 65535], "not for my vrging it alone it was": [0, 65535], "for my vrging it alone it was the": [0, 65535], "my vrging it alone it was the subiect": [0, 65535], "vrging it alone it was the subiect of": [0, 65535], "it alone it was the subiect of my": [0, 65535], "alone it was the subiect of my theame": [0, 65535], "it was the subiect of my theame in": [0, 65535], "was the subiect of my theame in company": [0, 65535], "the subiect of my theame in company i": [0, 65535], "subiect of my theame in company i often": [0, 65535], "of my theame in company i often glanced": [0, 65535], "my theame in company i often glanced it": [0, 65535], "theame in company i often glanced it still": [0, 65535], "in company i often glanced it still did": [0, 65535], "company i often glanced it still did i": [0, 65535], "i often glanced it still did i tell": [0, 65535], "often glanced it still did i tell him": [0, 65535], "glanced it still did i tell him it": [0, 65535], "it still did i tell him it was": [0, 65535], "still did i tell him it was vilde": [0, 65535], "did i tell him it was vilde and": [0, 65535], "i tell him it was vilde and bad": [0, 65535], "tell him it was vilde and bad ab": [0, 65535], "him it was vilde and bad ab and": [0, 65535], "it was vilde and bad ab and thereof": [0, 65535], "was vilde and bad ab and thereof came": [0, 65535], "vilde and bad ab and thereof came it": [0, 65535], "and bad ab and thereof came it that": [0, 65535], "bad ab and thereof came it that the": [0, 65535], "ab and thereof came it that the man": [0, 65535], "and thereof came it that the man was": [0, 65535], "thereof came it that the man was mad": [0, 65535], "came it that the man was mad the": [0, 65535], "it that the man was mad the venome": [0, 65535], "that the man was mad the venome clamors": [0, 65535], "the man was mad the venome clamors of": [0, 65535], "man was mad the venome clamors of a": [0, 65535], "was mad the venome clamors of a iealous": [0, 65535], "mad the venome clamors of a iealous woman": [0, 65535], "the venome clamors of a iealous woman poisons": [0, 65535], "venome clamors of a iealous woman poisons more": [0, 65535], "clamors of a iealous woman poisons more deadly": [0, 65535], "of a iealous woman poisons more deadly then": [0, 65535], "a iealous woman poisons more deadly then a": [0, 65535], "iealous woman poisons more deadly then a mad": [0, 65535], "woman poisons more deadly then a mad dogges": [0, 65535], "poisons more deadly then a mad dogges tooth": [0, 65535], "more deadly then a mad dogges tooth it": [0, 65535], "deadly then a mad dogges tooth it seemes": [0, 65535], "then a mad dogges tooth it seemes his": [0, 65535], "a mad dogges tooth it seemes his sleepes": [0, 65535], "mad dogges tooth it seemes his sleepes were": [0, 65535], "dogges tooth it seemes his sleepes were hindred": [0, 65535], "tooth it seemes his sleepes were hindred by": [0, 65535], "it seemes his sleepes were hindred by thy": [0, 65535], "seemes his sleepes were hindred by thy railing": [0, 65535], "his sleepes were hindred by thy railing and": [0, 65535], "sleepes were hindred by thy railing and thereof": [0, 65535], "were hindred by thy railing and thereof comes": [0, 65535], "hindred by thy railing and thereof comes it": [0, 65535], "by thy railing and thereof comes it that": [0, 65535], "thy railing and thereof comes it that his": [0, 65535], "railing and thereof comes it that his head": [0, 65535], "and thereof comes it that his head is": [0, 65535], "thereof comes it that his head is light": [0, 65535], "comes it that his head is light thou": [0, 65535], "it that his head is light thou saist": [0, 65535], "that his head is light thou saist his": [0, 65535], "his head is light thou saist his meate": [0, 65535], "head is light thou saist his meate was": [0, 65535], "is light thou saist his meate was sawc'd": [0, 65535], "light thou saist his meate was sawc'd with": [0, 65535], "thou saist his meate was sawc'd with thy": [0, 65535], "saist his meate was sawc'd with thy vpbraidings": [0, 65535], "his meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make ill": [0, 65535], "with thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof the": [0, 65535], "vnquiet meales make ill digestions thereof the raging": [0, 65535], "meales make ill digestions thereof the raging fire": [0, 65535], "make ill digestions thereof the raging fire of": [0, 65535], "ill digestions thereof the raging fire of feauer": [0, 65535], "digestions thereof the raging fire of feauer bred": [0, 65535], "thereof the raging fire of feauer bred and": [0, 65535], "the raging fire of feauer bred and what's": [0, 65535], "raging fire of feauer bred and what's a": [0, 65535], "fire of feauer bred and what's a feauer": [0, 65535], "of feauer bred and what's a feauer but": [0, 65535], "feauer bred and what's a feauer but a": [0, 65535], "bred and what's a feauer but a fit": [0, 65535], "and what's a feauer but a fit of": [0, 65535], "what's a feauer but a fit of madnesse": [0, 65535], "a feauer but a fit of madnesse thou": [0, 65535], "feauer but a fit of madnesse thou sayest": [0, 65535], "but a fit of madnesse thou sayest his": [0, 65535], "a fit of madnesse thou sayest his sports": [0, 65535], "fit of madnesse thou sayest his sports were": [0, 65535], "of madnesse thou sayest his sports were hindred": [0, 65535], "madnesse thou sayest his sports were hindred by": [0, 65535], "thou sayest his sports were hindred by thy": [0, 65535], "sayest his sports were hindred by thy bralles": [0, 65535], "his sports were hindred by thy bralles sweet": [0, 65535], "sports were hindred by thy bralles sweet recreation": [0, 65535], "were hindred by thy bralles sweet recreation barr'd": [0, 65535], "hindred by thy bralles sweet recreation barr'd what": [0, 65535], "by thy bralles sweet recreation barr'd what doth": [0, 65535], "thy bralles sweet recreation barr'd what doth ensue": [0, 65535], "bralles sweet recreation barr'd what doth ensue but": [0, 65535], "sweet recreation barr'd what doth ensue but moodie": [0, 65535], "recreation barr'd what doth ensue but moodie and": [0, 65535], "barr'd what doth ensue but moodie and dull": [0, 65535], "what doth ensue but moodie and dull melancholly": [0, 65535], "doth ensue but moodie and dull melancholly kinsman": [0, 65535], "ensue but moodie and dull melancholly kinsman to": [0, 65535], "but moodie and dull melancholly kinsman to grim": [0, 65535], "moodie and dull melancholly kinsman to grim and": [0, 65535], "and dull melancholly kinsman to grim and comfortlesse": [0, 65535], "dull melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire and": [0, 65535], "kinsman to grim and comfortlesse dispaire and at": [0, 65535], "to grim and comfortlesse dispaire and at her": [0, 65535], "grim and comfortlesse dispaire and at her heeles": [0, 65535], "and comfortlesse dispaire and at her heeles a": [0, 65535], "comfortlesse dispaire and at her heeles a huge": [0, 65535], "dispaire and at her heeles a huge infectious": [0, 65535], "and at her heeles a huge infectious troope": [0, 65535], "at her heeles a huge infectious troope of": [0, 65535], "her heeles a huge infectious troope of pale": [0, 65535], "heeles a huge infectious troope of pale distemperatures": [0, 65535], "a huge infectious troope of pale distemperatures and": [0, 65535], "huge infectious troope of pale distemperatures and foes": [0, 65535], "infectious troope of pale distemperatures and foes to": [0, 65535], "troope of pale distemperatures and foes to life": [0, 65535], "of pale distemperatures and foes to life in": [0, 65535], "pale distemperatures and foes to life in food": [0, 65535], "distemperatures and foes to life in food in": [0, 65535], "and foes to life in food in sport": [0, 65535], "foes to life in food in sport and": [0, 65535], "to life in food in sport and life": [0, 65535], "life in food in sport and life preseruing": [0, 65535], "in food in sport and life preseruing rest": [0, 65535], "food in sport and life preseruing rest to": [0, 65535], "in sport and life preseruing rest to be": [0, 65535], "sport and life preseruing rest to be disturb'd": [0, 65535], "and life preseruing rest to be disturb'd would": [0, 65535], "life preseruing rest to be disturb'd would mad": [0, 65535], "preseruing rest to be disturb'd would mad or": [0, 65535], "rest to be disturb'd would mad or man": [0, 65535], "to be disturb'd would mad or man or": [0, 65535], "be disturb'd would mad or man or beast": [0, 65535], "disturb'd would mad or man or beast the": [0, 65535], "would mad or man or beast the consequence": [0, 65535], "mad or man or beast the consequence is": [0, 65535], "or man or beast the consequence is then": [0, 65535], "man or beast the consequence is then thy": [0, 65535], "or beast the consequence is then thy iealous": [0, 65535], "beast the consequence is then thy iealous fits": [0, 65535], "the consequence is then thy iealous fits hath": [0, 65535], "consequence is then thy iealous fits hath scar'd": [0, 65535], "is then thy iealous fits hath scar'd thy": [0, 65535], "then thy iealous fits hath scar'd thy husband": [0, 65535], "thy iealous fits hath scar'd thy husband from": [0, 65535], "iealous fits hath scar'd thy husband from the": [0, 65535], "fits hath scar'd thy husband from the vse": [0, 65535], "hath scar'd thy husband from the vse of": [0, 65535], "scar'd thy husband from the vse of wits": [0, 65535], "thy husband from the vse of wits luc": [0, 65535], "husband from the vse of wits luc she": [0, 65535], "from the vse of wits luc she neuer": [0, 65535], "the vse of wits luc she neuer reprehended": [0, 65535], "vse of wits luc she neuer reprehended him": [0, 65535], "of wits luc she neuer reprehended him but": [0, 65535], "wits luc she neuer reprehended him but mildely": [0, 65535], "luc she neuer reprehended him but mildely when": [0, 65535], "she neuer reprehended him but mildely when he": [0, 65535], "neuer reprehended him but mildely when he demean'd": [0, 65535], "reprehended him but mildely when he demean'd himselfe": [0, 65535], "him but mildely when he demean'd himselfe rough": [0, 65535], "but mildely when he demean'd himselfe rough rude": [0, 65535], "mildely when he demean'd himselfe rough rude and": [0, 65535], "when he demean'd himselfe rough rude and wildly": [0, 65535], "he demean'd himselfe rough rude and wildly why": [0, 65535], "demean'd himselfe rough rude and wildly why beare": [0, 65535], "himselfe rough rude and wildly why beare you": [0, 65535], "rough rude and wildly why beare you these": [0, 65535], "rude and wildly why beare you these rebukes": [0, 65535], "and wildly why beare you these rebukes and": [0, 65535], "wildly why beare you these rebukes and answer": [0, 65535], "why beare you these rebukes and answer not": [0, 65535], "beare you these rebukes and answer not adri": [0, 65535], "you these rebukes and answer not adri she": [0, 65535], "these rebukes and answer not adri she did": [0, 65535], "rebukes and answer not adri she did betray": [0, 65535], "and answer not adri she did betray me": [0, 65535], "answer not adri she did betray me to": [0, 65535], "not adri she did betray me to my": [0, 65535], "adri she did betray me to my owne": [0, 65535], "she did betray me to my owne reproofe": [0, 65535], "did betray me to my owne reproofe good": [0, 65535], "betray me to my owne reproofe good people": [0, 65535], "me to my owne reproofe good people enter": [0, 65535], "to my owne reproofe good people enter and": [0, 65535], "my owne reproofe good people enter and lay": [0, 65535], "owne reproofe good people enter and lay hold": [0, 65535], "reproofe good people enter and lay hold on": [0, 65535], "good people enter and lay hold on him": [0, 65535], "people enter and lay hold on him ab": [0, 65535], "enter and lay hold on him ab no": [0, 65535], "and lay hold on him ab no not": [0, 65535], "lay hold on him ab no not a": [0, 65535], "hold on him ab no not a creature": [0, 65535], "on him ab no not a creature enters": [0, 65535], "him ab no not a creature enters in": [0, 65535], "ab no not a creature enters in my": [0, 65535], "no not a creature enters in my house": [0, 65535], "not a creature enters in my house ad": [0, 65535], "a creature enters in my house ad then": [0, 65535], "creature enters in my house ad then let": [0, 65535], "enters in my house ad then let your": [0, 65535], "in my house ad then let your seruants": [0, 65535], "my house ad then let your seruants bring": [0, 65535], "house ad then let your seruants bring my": [0, 65535], "ad then let your seruants bring my husband": [0, 65535], "then let your seruants bring my husband forth": [0, 65535], "let your seruants bring my husband forth ab": [0, 65535], "your seruants bring my husband forth ab neither": [0, 65535], "seruants bring my husband forth ab neither he": [0, 65535], "bring my husband forth ab neither he tooke": [0, 65535], "my husband forth ab neither he tooke this": [0, 65535], "husband forth ab neither he tooke this place": [0, 65535], "forth ab neither he tooke this place for": [0, 65535], "ab neither he tooke this place for sanctuary": [0, 65535], "neither he tooke this place for sanctuary and": [0, 65535], "he tooke this place for sanctuary and it": [0, 65535], "tooke this place for sanctuary and it shall": [0, 65535], "this place for sanctuary and it shall priuiledge": [0, 65535], "place for sanctuary and it shall priuiledge him": [0, 65535], "for sanctuary and it shall priuiledge him from": [0, 65535], "sanctuary and it shall priuiledge him from your": [0, 65535], "and it shall priuiledge him from your hands": [0, 65535], "it shall priuiledge him from your hands till": [0, 65535], "shall priuiledge him from your hands till i": [0, 65535], "priuiledge him from your hands till i haue": [0, 65535], "him from your hands till i haue brought": [0, 65535], "from your hands till i haue brought him": [0, 65535], "your hands till i haue brought him to": [0, 65535], "hands till i haue brought him to his": [0, 65535], "till i haue brought him to his wits": [0, 65535], "i haue brought him to his wits againe": [0, 65535], "haue brought him to his wits againe or": [0, 65535], "brought him to his wits againe or loose": [0, 65535], "him to his wits againe or loose my": [0, 65535], "to his wits againe or loose my labour": [0, 65535], "his wits againe or loose my labour in": [0, 65535], "wits againe or loose my labour in assaying": [0, 65535], "againe or loose my labour in assaying it": [0, 65535], "or loose my labour in assaying it adr": [0, 65535], "loose my labour in assaying it adr i": [0, 65535], "my labour in assaying it adr i will": [0, 65535], "labour in assaying it adr i will attend": [0, 65535], "in assaying it adr i will attend my": [0, 65535], "assaying it adr i will attend my husband": [0, 65535], "it adr i will attend my husband be": [0, 65535], "adr i will attend my husband be his": [0, 65535], "i will attend my husband be his nurse": [0, 65535], "will attend my husband be his nurse diet": [0, 65535], "attend my husband be his nurse diet his": [0, 65535], "my husband be his nurse diet his sicknesse": [0, 65535], "husband be his nurse diet his sicknesse for": [0, 65535], "be his nurse diet his sicknesse for it": [0, 65535], "his nurse diet his sicknesse for it is": [0, 65535], "nurse diet his sicknesse for it is my": [0, 65535], "diet his sicknesse for it is my office": [0, 65535], "his sicknesse for it is my office and": [0, 65535], "sicknesse for it is my office and will": [0, 65535], "for it is my office and will haue": [0, 65535], "it is my office and will haue no": [0, 65535], "is my office and will haue no atturney": [0, 65535], "my office and will haue no atturney but": [0, 65535], "office and will haue no atturney but my": [0, 65535], "and will haue no atturney but my selfe": [0, 65535], "will haue no atturney but my selfe and": [0, 65535], "haue no atturney but my selfe and therefore": [0, 65535], "no atturney but my selfe and therefore let": [0, 65535], "atturney but my selfe and therefore let me": [0, 65535], "but my selfe and therefore let me haue": [0, 65535], "my selfe and therefore let me haue him": [0, 65535], "selfe and therefore let me haue him home": [0, 65535], "and therefore let me haue him home with": [0, 65535], "therefore let me haue him home with me": [0, 65535], "let me haue him home with me ab": [0, 65535], "me haue him home with me ab be": [0, 65535], "haue him home with me ab be patient": [0, 65535], "him home with me ab be patient for": [0, 65535], "home with me ab be patient for i": [0, 65535], "with me ab be patient for i will": [0, 65535], "me ab be patient for i will not": [0, 65535], "ab be patient for i will not let": [0, 65535], "be patient for i will not let him": [0, 65535], "patient for i will not let him stirre": [0, 65535], "for i will not let him stirre till": [0, 65535], "i will not let him stirre till i": [0, 65535], "will not let him stirre till i haue": [0, 65535], "not let him stirre till i haue vs'd": [0, 65535], "let him stirre till i haue vs'd the": [0, 65535], "him stirre till i haue vs'd the approoued": [0, 65535], "stirre till i haue vs'd the approoued meanes": [0, 65535], "till i haue vs'd the approoued meanes i": [0, 65535], "i haue vs'd the approoued meanes i haue": [0, 65535], "haue vs'd the approoued meanes i haue with": [0, 65535], "vs'd the approoued meanes i haue with wholsome": [0, 65535], "the approoued meanes i haue with wholsome sirrups": [0, 65535], "approoued meanes i haue with wholsome sirrups drugges": [0, 65535], "meanes i haue with wholsome sirrups drugges and": [0, 65535], "i haue with wholsome sirrups drugges and holy": [0, 65535], "haue with wholsome sirrups drugges and holy prayers": [0, 65535], "with wholsome sirrups drugges and holy prayers to": [0, 65535], "wholsome sirrups drugges and holy prayers to make": [0, 65535], "sirrups drugges and holy prayers to make of": [0, 65535], "drugges and holy prayers to make of him": [0, 65535], "and holy prayers to make of him a": [0, 65535], "holy prayers to make of him a formall": [0, 65535], "prayers to make of him a formall man": [0, 65535], "to make of him a formall man againe": [0, 65535], "make of him a formall man againe it": [0, 65535], "of him a formall man againe it is": [0, 65535], "him a formall man againe it is a": [0, 65535], "a formall man againe it is a branch": [0, 65535], "formall man againe it is a branch and": [0, 65535], "man againe it is a branch and parcell": [0, 65535], "againe it is a branch and parcell of": [0, 65535], "it is a branch and parcell of mine": [0, 65535], "is a branch and parcell of mine oath": [0, 65535], "a branch and parcell of mine oath a": [0, 65535], "branch and parcell of mine oath a charitable": [0, 65535], "and parcell of mine oath a charitable dutie": [0, 65535], "parcell of mine oath a charitable dutie of": [0, 65535], "of mine oath a charitable dutie of my": [0, 65535], "mine oath a charitable dutie of my order": [0, 65535], "oath a charitable dutie of my order therefore": [0, 65535], "a charitable dutie of my order therefore depart": [0, 65535], "charitable dutie of my order therefore depart and": [0, 65535], "dutie of my order therefore depart and leaue": [0, 65535], "of my order therefore depart and leaue him": [0, 65535], "my order therefore depart and leaue him heere": [0, 65535], "order therefore depart and leaue him heere with": [0, 65535], "therefore depart and leaue him heere with me": [0, 65535], "depart and leaue him heere with me adr": [0, 65535], "and leaue him heere with me adr i": [0, 65535], "leaue him heere with me adr i will": [0, 65535], "him heere with me adr i will not": [0, 65535], "heere with me adr i will not hence": [0, 65535], "with me adr i will not hence and": [0, 65535], "me adr i will not hence and leaue": [0, 65535], "adr i will not hence and leaue my": [0, 65535], "i will not hence and leaue my husband": [0, 65535], "will not hence and leaue my husband heere": [0, 65535], "not hence and leaue my husband heere and": [0, 65535], "hence and leaue my husband heere and ill": [0, 65535], "and leaue my husband heere and ill it": [0, 65535], "leaue my husband heere and ill it doth": [0, 65535], "my husband heere and ill it doth beseeme": [0, 65535], "husband heere and ill it doth beseeme your": [0, 65535], "heere and ill it doth beseeme your holinesse": [0, 65535], "and ill it doth beseeme your holinesse to": [0, 65535], "ill it doth beseeme your holinesse to separate": [0, 65535], "it doth beseeme your holinesse to separate the": [0, 65535], "doth beseeme your holinesse to separate the husband": [0, 65535], "beseeme your holinesse to separate the husband and": [0, 65535], "your holinesse to separate the husband and the": [0, 65535], "holinesse to separate the husband and the wife": [0, 65535], "to separate the husband and the wife ab": [0, 65535], "separate the husband and the wife ab be": [0, 65535], "the husband and the wife ab be quiet": [0, 65535], "husband and the wife ab be quiet and": [0, 65535], "and the wife ab be quiet and depart": [0, 65535], "the wife ab be quiet and depart thou": [0, 65535], "wife ab be quiet and depart thou shalt": [0, 65535], "ab be quiet and depart thou shalt not": [0, 65535], "be quiet and depart thou shalt not haue": [0, 65535], "quiet and depart thou shalt not haue him": [0, 65535], "and depart thou shalt not haue him luc": [0, 65535], "depart thou shalt not haue him luc complaine": [0, 65535], "thou shalt not haue him luc complaine vnto": [0, 65535], "shalt not haue him luc complaine vnto the": [0, 65535], "not haue him luc complaine vnto the duke": [0, 65535], "haue him luc complaine vnto the duke of": [0, 65535], "him luc complaine vnto the duke of this": [0, 65535], "luc complaine vnto the duke of this indignity": [0, 65535], "complaine vnto the duke of this indignity adr": [0, 65535], "vnto the duke of this indignity adr come": [0, 65535], "the duke of this indignity adr come go": [0, 65535], "duke of this indignity adr come go i": [0, 65535], "of this indignity adr come go i will": [0, 65535], "this indignity adr come go i will fall": [0, 65535], "indignity adr come go i will fall prostrate": [0, 65535], "adr come go i will fall prostrate at": [0, 65535], "come go i will fall prostrate at his": [0, 65535], "go i will fall prostrate at his feete": [0, 65535], "i will fall prostrate at his feete and": [0, 65535], "will fall prostrate at his feete and neuer": [0, 65535], "fall prostrate at his feete and neuer rise": [0, 65535], "prostrate at his feete and neuer rise vntill": [0, 65535], "at his feete and neuer rise vntill my": [0, 65535], "his feete and neuer rise vntill my teares": [0, 65535], "feete and neuer rise vntill my teares and": [0, 65535], "and neuer rise vntill my teares and prayers": [0, 65535], "neuer rise vntill my teares and prayers haue": [0, 65535], "rise vntill my teares and prayers haue won": [0, 65535], "vntill my teares and prayers haue won his": [0, 65535], "my teares and prayers haue won his grace": [0, 65535], "teares and prayers haue won his grace to": [0, 65535], "and prayers haue won his grace to come": [0, 65535], "prayers haue won his grace to come in": [0, 65535], "haue won his grace to come in person": [0, 65535], "won his grace to come in person hither": [0, 65535], "his grace to come in person hither and": [0, 65535], "grace to come in person hither and take": [0, 65535], "to come in person hither and take perforce": [0, 65535], "come in person hither and take perforce my": [0, 65535], "in person hither and take perforce my husband": [0, 65535], "person hither and take perforce my husband from": [0, 65535], "hither and take perforce my husband from the": [0, 65535], "and take perforce my husband from the abbesse": [0, 65535], "take perforce my husband from the abbesse mar": [0, 65535], "perforce my husband from the abbesse mar by": [0, 65535], "my husband from the abbesse mar by this": [0, 65535], "husband from the abbesse mar by this i": [0, 65535], "from the abbesse mar by this i thinke": [0, 65535], "the abbesse mar by this i thinke the": [0, 65535], "abbesse mar by this i thinke the diall": [0, 65535], "mar by this i thinke the diall points": [0, 65535], "by this i thinke the diall points at": [0, 65535], "this i thinke the diall points at fiue": [0, 65535], "i thinke the diall points at fiue anon": [0, 65535], "thinke the diall points at fiue anon i'me": [0, 65535], "the diall points at fiue anon i'me sure": [0, 65535], "diall points at fiue anon i'me sure the": [0, 65535], "points at fiue anon i'me sure the duke": [0, 65535], "at fiue anon i'me sure the duke himselfe": [0, 65535], "fiue anon i'me sure the duke himselfe in": [0, 65535], "anon i'me sure the duke himselfe in person": [0, 65535], "i'me sure the duke himselfe in person comes": [0, 65535], "sure the duke himselfe in person comes this": [0, 65535], "the duke himselfe in person comes this way": [0, 65535], "duke himselfe in person comes this way to": [0, 65535], "himselfe in person comes this way to the": [0, 65535], "in person comes this way to the melancholly": [0, 65535], "person comes this way to the melancholly vale": [0, 65535], "comes this way to the melancholly vale the": [0, 65535], "this way to the melancholly vale the place": [0, 65535], "way to the melancholly vale the place of": [0, 65535], "to the melancholly vale the place of depth": [0, 65535], "the melancholly vale the place of depth and": [0, 65535], "melancholly vale the place of depth and sorrie": [0, 65535], "vale the place of depth and sorrie execution": [0, 65535], "the place of depth and sorrie execution behinde": [0, 65535], "place of depth and sorrie execution behinde the": [0, 65535], "of depth and sorrie execution behinde the ditches": [0, 65535], "depth and sorrie execution behinde the ditches of": [0, 65535], "and sorrie execution behinde the ditches of the": [0, 65535], "sorrie execution behinde the ditches of the abbey": [0, 65535], "execution behinde the ditches of the abbey heere": [0, 65535], "behinde the ditches of the abbey heere gold": [0, 65535], "the ditches of the abbey heere gold vpon": [0, 65535], "ditches of the abbey heere gold vpon what": [0, 65535], "of the abbey heere gold vpon what cause": [0, 65535], "the abbey heere gold vpon what cause mar": [0, 65535], "abbey heere gold vpon what cause mar to": [0, 65535], "heere gold vpon what cause mar to see": [0, 65535], "gold vpon what cause mar to see a": [0, 65535], "vpon what cause mar to see a reuerent": [0, 65535], "what cause mar to see a reuerent siracusian": [0, 65535], "cause mar to see a reuerent siracusian merchant": [0, 65535], "mar to see a reuerent siracusian merchant who": [0, 65535], "to see a reuerent siracusian merchant who put": [0, 65535], "see a reuerent siracusian merchant who put vnluckily": [0, 65535], "a reuerent siracusian merchant who put vnluckily into": [0, 65535], "reuerent siracusian merchant who put vnluckily into this": [0, 65535], "siracusian merchant who put vnluckily into this bay": [0, 65535], "merchant who put vnluckily into this bay against": [0, 65535], "who put vnluckily into this bay against the": [0, 65535], "put vnluckily into this bay against the lawes": [0, 65535], "vnluckily into this bay against the lawes and": [0, 65535], "into this bay against the lawes and statutes": [0, 65535], "this bay against the lawes and statutes of": [0, 65535], "bay against the lawes and statutes of this": [0, 65535], "against the lawes and statutes of this towne": [0, 65535], "the lawes and statutes of this towne beheaded": [0, 65535], "lawes and statutes of this towne beheaded publikely": [0, 65535], "and statutes of this towne beheaded publikely for": [0, 65535], "statutes of this towne beheaded publikely for his": [0, 65535], "of this towne beheaded publikely for his offence": [0, 65535], "this towne beheaded publikely for his offence gold": [0, 65535], "towne beheaded publikely for his offence gold see": [0, 65535], "beheaded publikely for his offence gold see where": [0, 65535], "publikely for his offence gold see where they": [0, 65535], "for his offence gold see where they come": [0, 65535], "his offence gold see where they come we": [0, 65535], "offence gold see where they come we wil": [0, 65535], "gold see where they come we wil behold": [0, 65535], "see where they come we wil behold his": [0, 65535], "where they come we wil behold his death": [0, 65535], "they come we wil behold his death luc": [0, 65535], "come we wil behold his death luc kneele": [0, 65535], "we wil behold his death luc kneele to": [0, 65535], "wil behold his death luc kneele to the": [0, 65535], "behold his death luc kneele to the duke": [0, 65535], "his death luc kneele to the duke before": [0, 65535], "death luc kneele to the duke before he": [0, 65535], "luc kneele to the duke before he passe": [0, 65535], "kneele to the duke before he passe the": [0, 65535], "to the duke before he passe the abbey": [0, 65535], "the duke before he passe the abbey enter": [0, 65535], "duke before he passe the abbey enter the": [0, 65535], "before he passe the abbey enter the duke": [0, 65535], "he passe the abbey enter the duke of": [0, 65535], "passe the abbey enter the duke of ephesus": [0, 65535], "the abbey enter the duke of ephesus and": [0, 65535], "abbey enter the duke of ephesus and the": [0, 65535], "enter the duke of ephesus and the merchant": [0, 65535], "the duke of ephesus and the merchant of": [0, 65535], "duke of ephesus and the merchant of siracuse": [0, 65535], "of ephesus and the merchant of siracuse bare": [0, 65535], "ephesus and the merchant of siracuse bare head": [0, 65535], "and the merchant of siracuse bare head with": [0, 65535], "the merchant of siracuse bare head with the": [0, 65535], "merchant of siracuse bare head with the headsman": [0, 65535], "of siracuse bare head with the headsman other": [0, 65535], "siracuse bare head with the headsman other officers": [0, 65535], "bare head with the headsman other officers duke": [0, 65535], "head with the headsman other officers duke yet": [0, 65535], "with the headsman other officers duke yet once": [0, 65535], "the headsman other officers duke yet once againe": [0, 65535], "headsman other officers duke yet once againe proclaime": [0, 65535], "other officers duke yet once againe proclaime it": [0, 65535], "officers duke yet once againe proclaime it publikely": [0, 65535], "duke yet once againe proclaime it publikely if": [0, 65535], "yet once againe proclaime it publikely if any": [0, 65535], "once againe proclaime it publikely if any friend": [0, 65535], "againe proclaime it publikely if any friend will": [0, 65535], "proclaime it publikely if any friend will pay": [0, 65535], "it publikely if any friend will pay the": [0, 65535], "publikely if any friend will pay the summe": [0, 65535], "if any friend will pay the summe for": [0, 65535], "any friend will pay the summe for him": [0, 65535], "friend will pay the summe for him he": [0, 65535], "will pay the summe for him he shall": [0, 65535], "pay the summe for him he shall not": [0, 65535], "the summe for him he shall not die": [0, 65535], "summe for him he shall not die so": [0, 65535], "for him he shall not die so much": [0, 65535], "him he shall not die so much we": [0, 65535], "he shall not die so much we tender": [0, 65535], "shall not die so much we tender him": [0, 65535], "not die so much we tender him adr": [0, 65535], "die so much we tender him adr iustice": [0, 65535], "so much we tender him adr iustice most": [0, 65535], "much we tender him adr iustice most sacred": [0, 65535], "we tender him adr iustice most sacred duke": [0, 65535], "tender him adr iustice most sacred duke against": [0, 65535], "him adr iustice most sacred duke against the": [0, 65535], "adr iustice most sacred duke against the abbesse": [0, 65535], "iustice most sacred duke against the abbesse duke": [0, 65535], "most sacred duke against the abbesse duke she": [0, 65535], "sacred duke against the abbesse duke she is": [0, 65535], "duke against the abbesse duke she is a": [0, 65535], "against the abbesse duke she is a vertuous": [0, 65535], "the abbesse duke she is a vertuous and": [0, 65535], "abbesse duke she is a vertuous and a": [0, 65535], "duke she is a vertuous and a reuerend": [0, 65535], "she is a vertuous and a reuerend lady": [0, 65535], "is a vertuous and a reuerend lady it": [0, 65535], "a vertuous and a reuerend lady it cannot": [0, 65535], "vertuous and a reuerend lady it cannot be": [0, 65535], "and a reuerend lady it cannot be that": [0, 65535], "a reuerend lady it cannot be that she": [0, 65535], "reuerend lady it cannot be that she hath": [0, 65535], "lady it cannot be that she hath done": [0, 65535], "it cannot be that she hath done thee": [0, 65535], "cannot be that she hath done thee wrong": [0, 65535], "be that she hath done thee wrong adr": [0, 65535], "that she hath done thee wrong adr may": [0, 65535], "she hath done thee wrong adr may it": [0, 65535], "hath done thee wrong adr may it please": [0, 65535], "done thee wrong adr may it please your": [0, 65535], "thee wrong adr may it please your grace": [0, 65535], "wrong adr may it please your grace antipholus": [0, 65535], "adr may it please your grace antipholus my": [0, 65535], "may it please your grace antipholus my husba": [0, 65535], "it please your grace antipholus my husba n": [0, 65535], "please your grace antipholus my husba n d": [0, 65535], "your grace antipholus my husba n d who": [0, 65535], "grace antipholus my husba n d who i": [0, 65535], "antipholus my husba n d who i made": [0, 65535], "my husba n d who i made lord": [0, 65535], "husba n d who i made lord of": [0, 65535], "n d who i made lord of me": [0, 65535], "d who i made lord of me and": [0, 65535], "who i made lord of me and all": [0, 65535], "i made lord of me and all i": [0, 65535], "made lord of me and all i had": [0, 65535], "lord of me and all i had at": [0, 65535], "of me and all i had at your": [0, 65535], "me and all i had at your important": [0, 65535], "and all i had at your important letters": [0, 65535], "all i had at your important letters this": [0, 65535], "i had at your important letters this ill": [0, 65535], "had at your important letters this ill day": [0, 65535], "at your important letters this ill day a": [0, 65535], "your important letters this ill day a most": [0, 65535], "important letters this ill day a most outragious": [0, 65535], "letters this ill day a most outragious fit": [0, 65535], "this ill day a most outragious fit of": [0, 65535], "ill day a most outragious fit of madnesse": [0, 65535], "day a most outragious fit of madnesse tooke": [0, 65535], "a most outragious fit of madnesse tooke him": [0, 65535], "most outragious fit of madnesse tooke him that": [0, 65535], "outragious fit of madnesse tooke him that desp'rately": [0, 65535], "fit of madnesse tooke him that desp'rately he": [0, 65535], "of madnesse tooke him that desp'rately he hurried": [0, 65535], "madnesse tooke him that desp'rately he hurried through": [0, 65535], "tooke him that desp'rately he hurried through the": [0, 65535], "him that desp'rately he hurried through the streete": [0, 65535], "that desp'rately he hurried through the streete with": [0, 65535], "desp'rately he hurried through the streete with him": [0, 65535], "he hurried through the streete with him his": [0, 65535], "hurried through the streete with him his bondman": [0, 65535], "through the streete with him his bondman all": [0, 65535], "the streete with him his bondman all as": [0, 65535], "streete with him his bondman all as mad": [0, 65535], "with him his bondman all as mad as": [0, 65535], "him his bondman all as mad as he": [0, 65535], "his bondman all as mad as he doing": [0, 65535], "bondman all as mad as he doing displeasure": [0, 65535], "all as mad as he doing displeasure to": [0, 65535], "as mad as he doing displeasure to the": [0, 65535], "mad as he doing displeasure to the citizens": [0, 65535], "as he doing displeasure to the citizens by": [0, 65535], "he doing displeasure to the citizens by rushing": [0, 65535], "doing displeasure to the citizens by rushing in": [0, 65535], "displeasure to the citizens by rushing in their": [0, 65535], "to the citizens by rushing in their houses": [0, 65535], "the citizens by rushing in their houses bearing": [0, 65535], "citizens by rushing in their houses bearing thence": [0, 65535], "by rushing in their houses bearing thence rings": [0, 65535], "rushing in their houses bearing thence rings iewels": [0, 65535], "in their houses bearing thence rings iewels any": [0, 65535], "their houses bearing thence rings iewels any thing": [0, 65535], "houses bearing thence rings iewels any thing his": [0, 65535], "bearing thence rings iewels any thing his rage": [0, 65535], "thence rings iewels any thing his rage did": [0, 65535], "rings iewels any thing his rage did like": [0, 65535], "iewels any thing his rage did like once": [0, 65535], "any thing his rage did like once did": [0, 65535], "thing his rage did like once did i": [0, 65535], "his rage did like once did i get": [0, 65535], "rage did like once did i get him": [0, 65535], "did like once did i get him bound": [0, 65535], "like once did i get him bound and": [0, 65535], "once did i get him bound and sent": [0, 65535], "did i get him bound and sent him": [0, 65535], "i get him bound and sent him home": [0, 65535], "get him bound and sent him home whil'st": [0, 65535], "him bound and sent him home whil'st to": [0, 65535], "bound and sent him home whil'st to take": [0, 65535], "and sent him home whil'st to take order": [0, 65535], "sent him home whil'st to take order for": [0, 65535], "him home whil'st to take order for the": [0, 65535], "home whil'st to take order for the wrongs": [0, 65535], "whil'st to take order for the wrongs i": [0, 65535], "to take order for the wrongs i went": [0, 65535], "take order for the wrongs i went that": [0, 65535], "order for the wrongs i went that heere": [0, 65535], "for the wrongs i went that heere and": [0, 65535], "the wrongs i went that heere and there": [0, 65535], "wrongs i went that heere and there his": [0, 65535], "i went that heere and there his furie": [0, 65535], "went that heere and there his furie had": [0, 65535], "that heere and there his furie had committed": [0, 65535], "heere and there his furie had committed anon": [0, 65535], "and there his furie had committed anon i": [0, 65535], "there his furie had committed anon i wot": [0, 65535], "his furie had committed anon i wot not": [0, 65535], "furie had committed anon i wot not by": [0, 65535], "had committed anon i wot not by what": [0, 65535], "committed anon i wot not by what strong": [0, 65535], "anon i wot not by what strong escape": [0, 65535], "i wot not by what strong escape he": [0, 65535], "wot not by what strong escape he broke": [0, 65535], "not by what strong escape he broke from": [0, 65535], "by what strong escape he broke from those": [0, 65535], "what strong escape he broke from those that": [0, 65535], "strong escape he broke from those that had": [0, 65535], "escape he broke from those that had the": [0, 65535], "he broke from those that had the guard": [0, 65535], "broke from those that had the guard of": [0, 65535], "from those that had the guard of him": [0, 65535], "those that had the guard of him and": [0, 65535], "that had the guard of him and with": [0, 65535], "had the guard of him and with his": [0, 65535], "the guard of him and with his mad": [0, 65535], "guard of him and with his mad attendant": [0, 65535], "of him and with his mad attendant and": [0, 65535], "him and with his mad attendant and himselfe": [0, 65535], "and with his mad attendant and himselfe each": [0, 65535], "with his mad attendant and himselfe each one": [0, 65535], "his mad attendant and himselfe each one with": [0, 65535], "mad attendant and himselfe each one with irefull": [0, 65535], "attendant and himselfe each one with irefull passion": [0, 65535], "and himselfe each one with irefull passion with": [0, 65535], "himselfe each one with irefull passion with drawne": [0, 65535], "each one with irefull passion with drawne swords": [0, 65535], "one with irefull passion with drawne swords met": [0, 65535], "with irefull passion with drawne swords met vs": [0, 65535], "irefull passion with drawne swords met vs againe": [0, 65535], "passion with drawne swords met vs againe and": [0, 65535], "with drawne swords met vs againe and madly": [0, 65535], "drawne swords met vs againe and madly bent": [0, 65535], "swords met vs againe and madly bent on": [0, 65535], "met vs againe and madly bent on vs": [0, 65535], "vs againe and madly bent on vs chac'd": [0, 65535], "againe and madly bent on vs chac'd vs": [0, 65535], "and madly bent on vs chac'd vs away": [0, 65535], "madly bent on vs chac'd vs away till": [0, 65535], "bent on vs chac'd vs away till raising": [0, 65535], "on vs chac'd vs away till raising of": [0, 65535], "vs chac'd vs away till raising of more": [0, 65535], "chac'd vs away till raising of more aide": [0, 65535], "vs away till raising of more aide we": [0, 65535], "away till raising of more aide we came": [0, 65535], "till raising of more aide we came againe": [0, 65535], "raising of more aide we came againe to": [0, 65535], "of more aide we came againe to binde": [0, 65535], "more aide we came againe to binde them": [0, 65535], "aide we came againe to binde them then": [0, 65535], "we came againe to binde them then they": [0, 65535], "came againe to binde them then they fled": [0, 65535], "againe to binde them then they fled into": [0, 65535], "to binde them then they fled into this": [0, 65535], "binde them then they fled into this abbey": [0, 65535], "them then they fled into this abbey whether": [0, 65535], "then they fled into this abbey whether we": [0, 65535], "they fled into this abbey whether we pursu'd": [0, 65535], "fled into this abbey whether we pursu'd them": [0, 65535], "into this abbey whether we pursu'd them and": [0, 65535], "this abbey whether we pursu'd them and heere": [0, 65535], "abbey whether we pursu'd them and heere the": [0, 65535], "whether we pursu'd them and heere the abbesse": [0, 65535], "we pursu'd them and heere the abbesse shuts": [0, 65535], "pursu'd them and heere the abbesse shuts the": [0, 65535], "them and heere the abbesse shuts the gates": [0, 65535], "and heere the abbesse shuts the gates on": [0, 65535], "heere the abbesse shuts the gates on vs": [0, 65535], "the abbesse shuts the gates on vs and": [0, 65535], "abbesse shuts the gates on vs and will": [0, 65535], "shuts the gates on vs and will not": [0, 65535], "the gates on vs and will not suffer": [0, 65535], "gates on vs and will not suffer vs": [0, 65535], "on vs and will not suffer vs to": [0, 65535], "vs and will not suffer vs to fetch": [0, 65535], "and will not suffer vs to fetch him": [0, 65535], "will not suffer vs to fetch him out": [0, 65535], "not suffer vs to fetch him out nor": [0, 65535], "suffer vs to fetch him out nor send": [0, 65535], "vs to fetch him out nor send him": [0, 65535], "to fetch him out nor send him forth": [0, 65535], "fetch him out nor send him forth that": [0, 65535], "him out nor send him forth that we": [0, 65535], "out nor send him forth that we may": [0, 65535], "nor send him forth that we may beare": [0, 65535], "send him forth that we may beare him": [0, 65535], "him forth that we may beare him hence": [0, 65535], "forth that we may beare him hence therefore": [0, 65535], "that we may beare him hence therefore most": [0, 65535], "we may beare him hence therefore most gracious": [0, 65535], "may beare him hence therefore most gracious duke": [0, 65535], "beare him hence therefore most gracious duke with": [0, 65535], "him hence therefore most gracious duke with thy": [0, 65535], "hence therefore most gracious duke with thy command": [0, 65535], "therefore most gracious duke with thy command let": [0, 65535], "most gracious duke with thy command let him": [0, 65535], "gracious duke with thy command let him be": [0, 65535], "duke with thy command let him be brought": [0, 65535], "with thy command let him be brought forth": [0, 65535], "thy command let him be brought forth and": [0, 65535], "command let him be brought forth and borne": [0, 65535], "let him be brought forth and borne hence": [0, 65535], "him be brought forth and borne hence for": [0, 65535], "be brought forth and borne hence for helpe": [0, 65535], "brought forth and borne hence for helpe duke": [0, 65535], "forth and borne hence for helpe duke long": [0, 65535], "and borne hence for helpe duke long since": [0, 65535], "borne hence for helpe duke long since thy": [0, 65535], "hence for helpe duke long since thy husband": [0, 65535], "for helpe duke long since thy husband seru'd": [0, 65535], "helpe duke long since thy husband seru'd me": [0, 65535], "duke long since thy husband seru'd me in": [0, 65535], "long since thy husband seru'd me in my": [0, 65535], "since thy husband seru'd me in my wars": [0, 65535], "thy husband seru'd me in my wars and": [0, 65535], "husband seru'd me in my wars and i": [0, 65535], "seru'd me in my wars and i to": [0, 65535], "me in my wars and i to thee": [0, 65535], "in my wars and i to thee ingag'd": [0, 65535], "my wars and i to thee ingag'd a": [0, 65535], "wars and i to thee ingag'd a princes": [0, 65535], "and i to thee ingag'd a princes word": [0, 65535], "i to thee ingag'd a princes word when": [0, 65535], "to thee ingag'd a princes word when thou": [0, 65535], "thee ingag'd a princes word when thou didst": [0, 65535], "ingag'd a princes word when thou didst make": [0, 65535], "a princes word when thou didst make him": [0, 65535], "princes word when thou didst make him master": [0, 65535], "word when thou didst make him master of": [0, 65535], "when thou didst make him master of thy": [0, 65535], "thou didst make him master of thy bed": [0, 65535], "didst make him master of thy bed to": [0, 65535], "make him master of thy bed to do": [0, 65535], "him master of thy bed to do him": [0, 65535], "master of thy bed to do him all": [0, 65535], "of thy bed to do him all the": [0, 65535], "thy bed to do him all the grace": [0, 65535], "bed to do him all the grace and": [0, 65535], "to do him all the grace and good": [0, 65535], "do him all the grace and good i": [0, 65535], "him all the grace and good i could": [0, 65535], "all the grace and good i could go": [0, 65535], "the grace and good i could go some": [0, 65535], "grace and good i could go some of": [0, 65535], "and good i could go some of you": [0, 65535], "good i could go some of you knocke": [0, 65535], "i could go some of you knocke at": [0, 65535], "could go some of you knocke at the": [0, 65535], "go some of you knocke at the abbey": [0, 65535], "some of you knocke at the abbey gate": [0, 65535], "of you knocke at the abbey gate and": [0, 65535], "you knocke at the abbey gate and bid": [0, 65535], "knocke at the abbey gate and bid the": [0, 65535], "at the abbey gate and bid the lady": [0, 65535], "the abbey gate and bid the lady abbesse": [0, 65535], "abbey gate and bid the lady abbesse come": [0, 65535], "gate and bid the lady abbesse come to": [0, 65535], "and bid the lady abbesse come to me": [0, 65535], "bid the lady abbesse come to me i": [0, 65535], "the lady abbesse come to me i will": [0, 65535], "lady abbesse come to me i will determine": [0, 65535], "abbesse come to me i will determine this": [0, 65535], "come to me i will determine this before": [0, 65535], "to me i will determine this before i": [0, 65535], "me i will determine this before i stirre": [0, 65535], "i will determine this before i stirre enter": [0, 65535], "will determine this before i stirre enter a": [0, 65535], "determine this before i stirre enter a messenger": [0, 65535], "this before i stirre enter a messenger oh": [0, 65535], "before i stirre enter a messenger oh mistris": [0, 65535], "i stirre enter a messenger oh mistris mistris": [0, 65535], "stirre enter a messenger oh mistris mistris shift": [0, 65535], "enter a messenger oh mistris mistris shift and": [0, 65535], "a messenger oh mistris mistris shift and saue": [0, 65535], "messenger oh mistris mistris shift and saue your": [0, 65535], "oh mistris mistris shift and saue your selfe": [0, 65535], "mistris mistris shift and saue your selfe my": [0, 65535], "mistris shift and saue your selfe my master": [0, 65535], "shift and saue your selfe my master and": [0, 65535], "and saue your selfe my master and his": [0, 65535], "saue your selfe my master and his man": [0, 65535], "your selfe my master and his man are": [0, 65535], "selfe my master and his man are both": [0, 65535], "my master and his man are both broke": [0, 65535], "master and his man are both broke loose": [0, 65535], "and his man are both broke loose beaten": [0, 65535], "his man are both broke loose beaten the": [0, 65535], "man are both broke loose beaten the maids": [0, 65535], "are both broke loose beaten the maids a": [0, 65535], "both broke loose beaten the maids a row": [0, 65535], "broke loose beaten the maids a row and": [0, 65535], "loose beaten the maids a row and bound": [0, 65535], "beaten the maids a row and bound the": [0, 65535], "the maids a row and bound the doctor": [0, 65535], "maids a row and bound the doctor whose": [0, 65535], "a row and bound the doctor whose beard": [0, 65535], "row and bound the doctor whose beard they": [0, 65535], "and bound the doctor whose beard they haue": [0, 65535], "bound the doctor whose beard they haue sindg'd": [0, 65535], "the doctor whose beard they haue sindg'd off": [0, 65535], "doctor whose beard they haue sindg'd off with": [0, 65535], "whose beard they haue sindg'd off with brands": [0, 65535], "beard they haue sindg'd off with brands of": [0, 65535], "they haue sindg'd off with brands of fire": [0, 65535], "haue sindg'd off with brands of fire and": [0, 65535], "sindg'd off with brands of fire and euer": [0, 65535], "off with brands of fire and euer as": [0, 65535], "with brands of fire and euer as it": [0, 65535], "brands of fire and euer as it blaz'd": [0, 65535], "of fire and euer as it blaz'd they": [0, 65535], "fire and euer as it blaz'd they threw": [0, 65535], "and euer as it blaz'd they threw on": [0, 65535], "euer as it blaz'd they threw on him": [0, 65535], "as it blaz'd they threw on him great": [0, 65535], "it blaz'd they threw on him great pailes": [0, 65535], "blaz'd they threw on him great pailes of": [0, 65535], "they threw on him great pailes of puddled": [0, 65535], "threw on him great pailes of puddled myre": [0, 65535], "on him great pailes of puddled myre to": [0, 65535], "him great pailes of puddled myre to quench": [0, 65535], "great pailes of puddled myre to quench the": [0, 65535], "pailes of puddled myre to quench the haire": [0, 65535], "of puddled myre to quench the haire my": [0, 65535], "puddled myre to quench the haire my mr": [0, 65535], "myre to quench the haire my mr preaches": [0, 65535], "to quench the haire my mr preaches patience": [0, 65535], "quench the haire my mr preaches patience to": [0, 65535], "the haire my mr preaches patience to him": [0, 65535], "haire my mr preaches patience to him and": [0, 65535], "my mr preaches patience to him and the": [0, 65535], "mr preaches patience to him and the while": [0, 65535], "preaches patience to him and the while his": [0, 65535], "patience to him and the while his man": [0, 65535], "to him and the while his man with": [0, 65535], "him and the while his man with cizers": [0, 65535], "and the while his man with cizers nickes": [0, 65535], "the while his man with cizers nickes him": [0, 65535], "while his man with cizers nickes him like": [0, 65535], "his man with cizers nickes him like a": [0, 65535], "man with cizers nickes him like a foole": [0, 65535], "with cizers nickes him like a foole and": [0, 65535], "cizers nickes him like a foole and sure": [0, 65535], "nickes him like a foole and sure vnlesse": [0, 65535], "him like a foole and sure vnlesse you": [0, 65535], "like a foole and sure vnlesse you send": [0, 65535], "a foole and sure vnlesse you send some": [0, 65535], "foole and sure vnlesse you send some present": [0, 65535], "and sure vnlesse you send some present helpe": [0, 65535], "sure vnlesse you send some present helpe betweene": [0, 65535], "vnlesse you send some present helpe betweene them": [0, 65535], "you send some present helpe betweene them they": [0, 65535], "send some present helpe betweene them they will": [0, 65535], "some present helpe betweene them they will kill": [0, 65535], "present helpe betweene them they will kill the": [0, 65535], "helpe betweene them they will kill the coniurer": [0, 65535], "betweene them they will kill the coniurer adr": [0, 65535], "them they will kill the coniurer adr peace": [0, 65535], "they will kill the coniurer adr peace foole": [0, 65535], "will kill the coniurer adr peace foole thy": [0, 65535], "kill the coniurer adr peace foole thy master": [0, 65535], "the coniurer adr peace foole thy master and": [0, 65535], "coniurer adr peace foole thy master and his": [0, 65535], "adr peace foole thy master and his man": [0, 65535], "peace foole thy master and his man are": [0, 65535], "foole thy master and his man are here": [0, 65535], "thy master and his man are here and": [0, 65535], "master and his man are here and that": [0, 65535], "and his man are here and that is": [0, 65535], "his man are here and that is false": [0, 65535], "man are here and that is false thou": [0, 65535], "are here and that is false thou dost": [0, 65535], "here and that is false thou dost report": [0, 65535], "and that is false thou dost report to": [0, 65535], "that is false thou dost report to vs": [0, 65535], "is false thou dost report to vs mess": [0, 65535], "false thou dost report to vs mess mistris": [0, 65535], "thou dost report to vs mess mistris vpon": [0, 65535], "dost report to vs mess mistris vpon my": [0, 65535], "report to vs mess mistris vpon my life": [0, 65535], "to vs mess mistris vpon my life i": [0, 65535], "vs mess mistris vpon my life i tel": [0, 65535], "mess mistris vpon my life i tel you": [0, 65535], "mistris vpon my life i tel you true": [0, 65535], "vpon my life i tel you true i": [0, 65535], "my life i tel you true i haue": [0, 65535], "life i tel you true i haue not": [0, 65535], "i tel you true i haue not breath'd": [0, 65535], "tel you true i haue not breath'd almost": [0, 65535], "you true i haue not breath'd almost since": [0, 65535], "true i haue not breath'd almost since i": [0, 65535], "i haue not breath'd almost since i did": [0, 65535], "haue not breath'd almost since i did see": [0, 65535], "not breath'd almost since i did see it": [0, 65535], "breath'd almost since i did see it he": [0, 65535], "almost since i did see it he cries": [0, 65535], "since i did see it he cries for": [0, 65535], "i did see it he cries for you": [0, 65535], "did see it he cries for you and": [0, 65535], "see it he cries for you and vowes": [0, 65535], "it he cries for you and vowes if": [0, 65535], "he cries for you and vowes if he": [0, 65535], "cries for you and vowes if he can": [0, 65535], "for you and vowes if he can take": [0, 65535], "you and vowes if he can take you": [0, 65535], "and vowes if he can take you to": [0, 65535], "vowes if he can take you to scorch": [0, 65535], "if he can take you to scorch your": [0, 65535], "he can take you to scorch your face": [0, 65535], "can take you to scorch your face and": [0, 65535], "take you to scorch your face and to": [0, 65535], "you to scorch your face and to disfigure": [0, 65535], "to scorch your face and to disfigure you": [0, 65535], "scorch your face and to disfigure you cry": [0, 65535], "your face and to disfigure you cry within": [0, 65535], "face and to disfigure you cry within harke": [0, 65535], "and to disfigure you cry within harke harke": [0, 65535], "to disfigure you cry within harke harke i": [0, 65535], "disfigure you cry within harke harke i heare": [0, 65535], "you cry within harke harke i heare him": [0, 65535], "cry within harke harke i heare him mistris": [0, 65535], "within harke harke i heare him mistris flie": [0, 65535], "harke harke i heare him mistris flie be": [0, 65535], "harke i heare him mistris flie be gone": [0, 65535], "i heare him mistris flie be gone duke": [0, 65535], "heare him mistris flie be gone duke come": [0, 65535], "him mistris flie be gone duke come stand": [0, 65535], "mistris flie be gone duke come stand by": [0, 65535], "flie be gone duke come stand by me": [0, 65535], "be gone duke come stand by me feare": [0, 65535], "gone duke come stand by me feare nothing": [0, 65535], "duke come stand by me feare nothing guard": [0, 65535], "come stand by me feare nothing guard with": [0, 65535], "stand by me feare nothing guard with halberds": [0, 65535], "by me feare nothing guard with halberds adr": [0, 65535], "me feare nothing guard with halberds adr ay": [0, 65535], "feare nothing guard with halberds adr ay me": [0, 65535], "nothing guard with halberds adr ay me it": [0, 65535], "guard with halberds adr ay me it is": [0, 65535], "with halberds adr ay me it is my": [0, 65535], "halberds adr ay me it is my husband": [0, 65535], "adr ay me it is my husband witnesse": [0, 65535], "ay me it is my husband witnesse you": [0, 65535], "me it is my husband witnesse you that": [0, 65535], "it is my husband witnesse you that he": [0, 65535], "is my husband witnesse you that he is": [0, 65535], "my husband witnesse you that he is borne": [0, 65535], "husband witnesse you that he is borne about": [0, 65535], "witnesse you that he is borne about inuisible": [0, 65535], "you that he is borne about inuisible euen": [0, 65535], "that he is borne about inuisible euen now": [0, 65535], "he is borne about inuisible euen now we": [0, 65535], "is borne about inuisible euen now we hous'd": [0, 65535], "borne about inuisible euen now we hous'd him": [0, 65535], "about inuisible euen now we hous'd him in": [0, 65535], "inuisible euen now we hous'd him in the": [0, 65535], "euen now we hous'd him in the abbey": [0, 65535], "now we hous'd him in the abbey heere": [0, 65535], "we hous'd him in the abbey heere and": [0, 65535], "hous'd him in the abbey heere and now": [0, 65535], "him in the abbey heere and now he's": [0, 65535], "in the abbey heere and now he's there": [0, 65535], "the abbey heere and now he's there past": [0, 65535], "abbey heere and now he's there past thought": [0, 65535], "heere and now he's there past thought of": [0, 65535], "and now he's there past thought of humane": [0, 65535], "now he's there past thought of humane reason": [0, 65535], "he's there past thought of humane reason enter": [0, 65535], "there past thought of humane reason enter antipholus": [0, 65535], "past thought of humane reason enter antipholus and": [0, 65535], "thought of humane reason enter antipholus and e": [0, 65535], "of humane reason enter antipholus and e dromio": [0, 65535], "humane reason enter antipholus and e dromio of": [0, 65535], "reason enter antipholus and e dromio of ephesus": [0, 65535], "enter antipholus and e dromio of ephesus e": [0, 65535], "antipholus and e dromio of ephesus e ant": [0, 65535], "and e dromio of ephesus e ant iustice": [0, 65535], "e dromio of ephesus e ant iustice most": [0, 65535], "dromio of ephesus e ant iustice most gracious": [0, 65535], "of ephesus e ant iustice most gracious duke": [0, 65535], "ephesus e ant iustice most gracious duke oh": [0, 65535], "e ant iustice most gracious duke oh grant": [0, 65535], "ant iustice most gracious duke oh grant me": [0, 65535], "iustice most gracious duke oh grant me iustice": [0, 65535], "most gracious duke oh grant me iustice euen": [0, 65535], "gracious duke oh grant me iustice euen for": [0, 65535], "duke oh grant me iustice euen for the": [0, 65535], "oh grant me iustice euen for the seruice": [0, 65535], "grant me iustice euen for the seruice that": [0, 65535], "me iustice euen for the seruice that long": [0, 65535], "iustice euen for the seruice that long since": [0, 65535], "euen for the seruice that long since i": [0, 65535], "for the seruice that long since i did": [0, 65535], "the seruice that long since i did thee": [0, 65535], "seruice that long since i did thee when": [0, 65535], "that long since i did thee when i": [0, 65535], "long since i did thee when i bestrid": [0, 65535], "since i did thee when i bestrid thee": [0, 65535], "i did thee when i bestrid thee in": [0, 65535], "did thee when i bestrid thee in the": [0, 65535], "thee when i bestrid thee in the warres": [0, 65535], "when i bestrid thee in the warres and": [0, 65535], "i bestrid thee in the warres and tooke": [0, 65535], "bestrid thee in the warres and tooke deepe": [0, 65535], "thee in the warres and tooke deepe scarres": [0, 65535], "in the warres and tooke deepe scarres to": [0, 65535], "the warres and tooke deepe scarres to saue": [0, 65535], "warres and tooke deepe scarres to saue thy": [0, 65535], "and tooke deepe scarres to saue thy life": [0, 65535], "tooke deepe scarres to saue thy life euen": [0, 65535], "deepe scarres to saue thy life euen for": [0, 65535], "scarres to saue thy life euen for the": [0, 65535], "to saue thy life euen for the blood": [0, 65535], "saue thy life euen for the blood that": [0, 65535], "thy life euen for the blood that then": [0, 65535], "life euen for the blood that then i": [0, 65535], "euen for the blood that then i lost": [0, 65535], "for the blood that then i lost for": [0, 65535], "the blood that then i lost for thee": [0, 65535], "blood that then i lost for thee now": [0, 65535], "that then i lost for thee now grant": [0, 65535], "then i lost for thee now grant me": [0, 65535], "i lost for thee now grant me iustice": [0, 65535], "lost for thee now grant me iustice mar": [0, 65535], "for thee now grant me iustice mar fat": [0, 65535], "thee now grant me iustice mar fat vnlesse": [0, 65535], "now grant me iustice mar fat vnlesse the": [0, 65535], "grant me iustice mar fat vnlesse the feare": [0, 65535], "me iustice mar fat vnlesse the feare of": [0, 65535], "iustice mar fat vnlesse the feare of death": [0, 65535], "mar fat vnlesse the feare of death doth": [0, 65535], "fat vnlesse the feare of death doth make": [0, 65535], "vnlesse the feare of death doth make me": [0, 65535], "the feare of death doth make me dote": [0, 65535], "feare of death doth make me dote i": [0, 65535], "of death doth make me dote i see": [0, 65535], "death doth make me dote i see my": [0, 65535], "doth make me dote i see my sonne": [0, 65535], "make me dote i see my sonne antipholus": [0, 65535], "me dote i see my sonne antipholus and": [0, 65535], "dote i see my sonne antipholus and dromio": [0, 65535], "i see my sonne antipholus and dromio e": [0, 65535], "see my sonne antipholus and dromio e ant": [0, 65535], "my sonne antipholus and dromio e ant iustice": [0, 65535], "sonne antipholus and dromio e ant iustice sweet": [0, 65535], "antipholus and dromio e ant iustice sweet prince": [0, 65535], "and dromio e ant iustice sweet prince against": [0, 65535], "dromio e ant iustice sweet prince against that": [0, 65535], "e ant iustice sweet prince against that woman": [0, 65535], "ant iustice sweet prince against that woman there": [0, 65535], "iustice sweet prince against that woman there she": [0, 65535], "sweet prince against that woman there she whom": [0, 65535], "prince against that woman there she whom thou": [0, 65535], "against that woman there she whom thou gau'st": [0, 65535], "that woman there she whom thou gau'st to": [0, 65535], "woman there she whom thou gau'st to me": [0, 65535], "there she whom thou gau'st to me to": [0, 65535], "she whom thou gau'st to me to be": [0, 65535], "whom thou gau'st to me to be my": [0, 65535], "thou gau'st to me to be my wife": [0, 65535], "gau'st to me to be my wife that": [0, 65535], "to me to be my wife that hath": [0, 65535], "me to be my wife that hath abused": [0, 65535], "to be my wife that hath abused and": [0, 65535], "be my wife that hath abused and dishonored": [0, 65535], "my wife that hath abused and dishonored me": [0, 65535], "wife that hath abused and dishonored me euen": [0, 65535], "that hath abused and dishonored me euen in": [0, 65535], "hath abused and dishonored me euen in the": [0, 65535], "abused and dishonored me euen in the strength": [0, 65535], "and dishonored me euen in the strength and": [0, 65535], "dishonored me euen in the strength and height": [0, 65535], "me euen in the strength and height of": [0, 65535], "euen in the strength and height of iniurie": [0, 65535], "in the strength and height of iniurie beyond": [0, 65535], "the strength and height of iniurie beyond imagination": [0, 65535], "strength and height of iniurie beyond imagination is": [0, 65535], "and height of iniurie beyond imagination is the": [0, 65535], "height of iniurie beyond imagination is the wrong": [0, 65535], "of iniurie beyond imagination is the wrong that": [0, 65535], "iniurie beyond imagination is the wrong that she": [0, 65535], "beyond imagination is the wrong that she this": [0, 65535], "imagination is the wrong that she this day": [0, 65535], "is the wrong that she this day hath": [0, 65535], "the wrong that she this day hath shamelesse": [0, 65535], "wrong that she this day hath shamelesse throwne": [0, 65535], "that she this day hath shamelesse throwne on": [0, 65535], "she this day hath shamelesse throwne on me": [0, 65535], "this day hath shamelesse throwne on me duke": [0, 65535], "day hath shamelesse throwne on me duke discouer": [0, 65535], "hath shamelesse throwne on me duke discouer how": [0, 65535], "shamelesse throwne on me duke discouer how and": [0, 65535], "throwne on me duke discouer how and thou": [0, 65535], "on me duke discouer how and thou shalt": [0, 65535], "me duke discouer how and thou shalt finde": [0, 65535], "duke discouer how and thou shalt finde me": [0, 65535], "discouer how and thou shalt finde me iust": [0, 65535], "how and thou shalt finde me iust e": [0, 65535], "and thou shalt finde me iust e ant": [0, 65535], "thou shalt finde me iust e ant this": [0, 65535], "shalt finde me iust e ant this day": [0, 65535], "finde me iust e ant this day great": [0, 65535], "me iust e ant this day great duke": [0, 65535], "iust e ant this day great duke she": [0, 65535], "e ant this day great duke she shut": [0, 65535], "ant this day great duke she shut the": [0, 65535], "this day great duke she shut the doores": [0, 65535], "day great duke she shut the doores vpon": [0, 65535], "great duke she shut the doores vpon me": [0, 65535], "duke she shut the doores vpon me while": [0, 65535], "she shut the doores vpon me while she": [0, 65535], "shut the doores vpon me while she with": [0, 65535], "the doores vpon me while she with harlots": [0, 65535], "doores vpon me while she with harlots feasted": [0, 65535], "vpon me while she with harlots feasted in": [0, 65535], "me while she with harlots feasted in my": [0, 65535], "while she with harlots feasted in my house": [0, 65535], "she with harlots feasted in my house duke": [0, 65535], "with harlots feasted in my house duke a": [0, 65535], "harlots feasted in my house duke a greeuous": [0, 65535], "feasted in my house duke a greeuous fault": [0, 65535], "in my house duke a greeuous fault say": [0, 65535], "my house duke a greeuous fault say woman": [0, 65535], "house duke a greeuous fault say woman didst": [0, 65535], "duke a greeuous fault say woman didst thou": [0, 65535], "a greeuous fault say woman didst thou so": [0, 65535], "greeuous fault say woman didst thou so adr": [0, 65535], "fault say woman didst thou so adr no": [0, 65535], "say woman didst thou so adr no my": [0, 65535], "woman didst thou so adr no my good": [0, 65535], "didst thou so adr no my good lord": [0, 65535], "thou so adr no my good lord my": [0, 65535], "so adr no my good lord my selfe": [0, 65535], "adr no my good lord my selfe he": [0, 65535], "no my good lord my selfe he and": [0, 65535], "my good lord my selfe he and my": [0, 65535], "good lord my selfe he and my sister": [0, 65535], "lord my selfe he and my sister to": [0, 65535], "my selfe he and my sister to day": [0, 65535], "selfe he and my sister to day did": [0, 65535], "he and my sister to day did dine": [0, 65535], "and my sister to day did dine together": [0, 65535], "my sister to day did dine together so": [0, 65535], "sister to day did dine together so befall": [0, 65535], "to day did dine together so befall my": [0, 65535], "day did dine together so befall my soule": [0, 65535], "did dine together so befall my soule as": [0, 65535], "dine together so befall my soule as this": [0, 65535], "together so befall my soule as this is": [0, 65535], "so befall my soule as this is false": [0, 65535], "befall my soule as this is false he": [0, 65535], "my soule as this is false he burthens": [0, 65535], "soule as this is false he burthens me": [0, 65535], "as this is false he burthens me withall": [0, 65535], "this is false he burthens me withall luc": [0, 65535], "is false he burthens me withall luc nere": [0, 65535], "false he burthens me withall luc nere may": [0, 65535], "he burthens me withall luc nere may i": [0, 65535], "burthens me withall luc nere may i looke": [0, 65535], "me withall luc nere may i looke on": [0, 65535], "withall luc nere may i looke on day": [0, 65535], "luc nere may i looke on day nor": [0, 65535], "nere may i looke on day nor sleepe": [0, 65535], "may i looke on day nor sleepe on": [0, 65535], "i looke on day nor sleepe on night": [0, 65535], "looke on day nor sleepe on night but": [0, 65535], "on day nor sleepe on night but she": [0, 65535], "day nor sleepe on night but she tels": [0, 65535], "nor sleepe on night but she tels to": [0, 65535], "sleepe on night but she tels to your": [0, 65535], "on night but she tels to your highnesse": [0, 65535], "night but she tels to your highnesse simple": [0, 65535], "but she tels to your highnesse simple truth": [0, 65535], "she tels to your highnesse simple truth gold": [0, 65535], "tels to your highnesse simple truth gold o": [0, 65535], "to your highnesse simple truth gold o periur'd": [0, 65535], "your highnesse simple truth gold o periur'd woman": [0, 65535], "highnesse simple truth gold o periur'd woman they": [0, 65535], "simple truth gold o periur'd woman they are": [0, 65535], "truth gold o periur'd woman they are both": [0, 65535], "gold o periur'd woman they are both forsworne": [0, 65535], "o periur'd woman they are both forsworne in": [0, 65535], "periur'd woman they are both forsworne in this": [0, 65535], "woman they are both forsworne in this the": [0, 65535], "they are both forsworne in this the madman": [0, 65535], "are both forsworne in this the madman iustly": [0, 65535], "both forsworne in this the madman iustly chargeth": [0, 65535], "forsworne in this the madman iustly chargeth them": [0, 65535], "in this the madman iustly chargeth them e": [0, 65535], "this the madman iustly chargeth them e ant": [0, 65535], "the madman iustly chargeth them e ant my": [0, 65535], "madman iustly chargeth them e ant my liege": [0, 65535], "iustly chargeth them e ant my liege i": [0, 65535], "chargeth them e ant my liege i am": [0, 65535], "them e ant my liege i am aduised": [0, 65535], "e ant my liege i am aduised what": [0, 65535], "ant my liege i am aduised what i": [0, 65535], "my liege i am aduised what i say": [0, 65535], "liege i am aduised what i say neither": [0, 65535], "i am aduised what i say neither disturbed": [0, 65535], "am aduised what i say neither disturbed with": [0, 65535], "aduised what i say neither disturbed with the": [0, 65535], "what i say neither disturbed with the effect": [0, 65535], "i say neither disturbed with the effect of": [0, 65535], "say neither disturbed with the effect of wine": [0, 65535], "neither disturbed with the effect of wine nor": [0, 65535], "disturbed with the effect of wine nor headie": [0, 65535], "with the effect of wine nor headie rash": [0, 65535], "the effect of wine nor headie rash prouoak'd": [0, 65535], "effect of wine nor headie rash prouoak'd with": [0, 65535], "of wine nor headie rash prouoak'd with raging": [0, 65535], "wine nor headie rash prouoak'd with raging ire": [0, 65535], "nor headie rash prouoak'd with raging ire albeit": [0, 65535], "headie rash prouoak'd with raging ire albeit my": [0, 65535], "rash prouoak'd with raging ire albeit my wrongs": [0, 65535], "prouoak'd with raging ire albeit my wrongs might": [0, 65535], "with raging ire albeit my wrongs might make": [0, 65535], "raging ire albeit my wrongs might make one": [0, 65535], "ire albeit my wrongs might make one wiser": [0, 65535], "albeit my wrongs might make one wiser mad": [0, 65535], "my wrongs might make one wiser mad this": [0, 65535], "wrongs might make one wiser mad this woman": [0, 65535], "might make one wiser mad this woman lock'd": [0, 65535], "make one wiser mad this woman lock'd me": [0, 65535], "one wiser mad this woman lock'd me out": [0, 65535], "wiser mad this woman lock'd me out this": [0, 65535], "mad this woman lock'd me out this day": [0, 65535], "this woman lock'd me out this day from": [0, 65535], "woman lock'd me out this day from dinner": [0, 65535], "lock'd me out this day from dinner that": [0, 65535], "me out this day from dinner that goldsmith": [0, 65535], "out this day from dinner that goldsmith there": [0, 65535], "this day from dinner that goldsmith there were": [0, 65535], "day from dinner that goldsmith there were he": [0, 65535], "from dinner that goldsmith there were he not": [0, 65535], "dinner that goldsmith there were he not pack'd": [0, 65535], "that goldsmith there were he not pack'd with": [0, 65535], "goldsmith there were he not pack'd with her": [0, 65535], "there were he not pack'd with her could": [0, 65535], "were he not pack'd with her could witnesse": [0, 65535], "he not pack'd with her could witnesse it": [0, 65535], "not pack'd with her could witnesse it for": [0, 65535], "pack'd with her could witnesse it for he": [0, 65535], "with her could witnesse it for he was": [0, 65535], "her could witnesse it for he was with": [0, 65535], "could witnesse it for he was with me": [0, 65535], "witnesse it for he was with me then": [0, 65535], "it for he was with me then who": [0, 65535], "for he was with me then who parted": [0, 65535], "he was with me then who parted with": [0, 65535], "was with me then who parted with me": [0, 65535], "with me then who parted with me to": [0, 65535], "me then who parted with me to go": [0, 65535], "then who parted with me to go fetch": [0, 65535], "who parted with me to go fetch a": [0, 65535], "parted with me to go fetch a chaine": [0, 65535], "with me to go fetch a chaine promising": [0, 65535], "me to go fetch a chaine promising to": [0, 65535], "to go fetch a chaine promising to bring": [0, 65535], "go fetch a chaine promising to bring it": [0, 65535], "fetch a chaine promising to bring it to": [0, 65535], "a chaine promising to bring it to the": [0, 65535], "chaine promising to bring it to the porpentine": [0, 65535], "promising to bring it to the porpentine where": [0, 65535], "to bring it to the porpentine where balthasar": [0, 65535], "bring it to the porpentine where balthasar and": [0, 65535], "it to the porpentine where balthasar and i": [0, 65535], "to the porpentine where balthasar and i did": [0, 65535], "the porpentine where balthasar and i did dine": [0, 65535], "porpentine where balthasar and i did dine together": [0, 65535], "where balthasar and i did dine together our": [0, 65535], "balthasar and i did dine together our dinner": [0, 65535], "and i did dine together our dinner done": [0, 65535], "i did dine together our dinner done and": [0, 65535], "did dine together our dinner done and he": [0, 65535], "dine together our dinner done and he not": [0, 65535], "together our dinner done and he not comming": [0, 65535], "our dinner done and he not comming thither": [0, 65535], "dinner done and he not comming thither i": [0, 65535], "done and he not comming thither i went": [0, 65535], "and he not comming thither i went to": [0, 65535], "he not comming thither i went to seeke": [0, 65535], "not comming thither i went to seeke him": [0, 65535], "comming thither i went to seeke him in": [0, 65535], "thither i went to seeke him in the": [0, 65535], "i went to seeke him in the street": [0, 65535], "went to seeke him in the street i": [0, 65535], "to seeke him in the street i met": [0, 65535], "seeke him in the street i met him": [0, 65535], "him in the street i met him and": [0, 65535], "in the street i met him and in": [0, 65535], "the street i met him and in his": [0, 65535], "street i met him and in his companie": [0, 65535], "i met him and in his companie that": [0, 65535], "met him and in his companie that gentleman": [0, 65535], "him and in his companie that gentleman there": [0, 65535], "and in his companie that gentleman there did": [0, 65535], "in his companie that gentleman there did this": [0, 65535], "his companie that gentleman there did this periur'd": [0, 65535], "companie that gentleman there did this periur'd goldsmith": [0, 65535], "that gentleman there did this periur'd goldsmith sweare": [0, 65535], "gentleman there did this periur'd goldsmith sweare me": [0, 65535], "there did this periur'd goldsmith sweare me downe": [0, 65535], "did this periur'd goldsmith sweare me downe that": [0, 65535], "this periur'd goldsmith sweare me downe that i": [0, 65535], "periur'd goldsmith sweare me downe that i this": [0, 65535], "goldsmith sweare me downe that i this day": [0, 65535], "sweare me downe that i this day of": [0, 65535], "me downe that i this day of him": [0, 65535], "downe that i this day of him receiu'd": [0, 65535], "that i this day of him receiu'd the": [0, 65535], "i this day of him receiu'd the chaine": [0, 65535], "this day of him receiu'd the chaine which": [0, 65535], "day of him receiu'd the chaine which god": [0, 65535], "of him receiu'd the chaine which god he": [0, 65535], "him receiu'd the chaine which god he knowes": [0, 65535], "receiu'd the chaine which god he knowes i": [0, 65535], "the chaine which god he knowes i saw": [0, 65535], "chaine which god he knowes i saw not": [0, 65535], "which god he knowes i saw not for": [0, 65535], "god he knowes i saw not for the": [0, 65535], "he knowes i saw not for the which": [0, 65535], "knowes i saw not for the which he": [0, 65535], "i saw not for the which he did": [0, 65535], "saw not for the which he did arrest": [0, 65535], "not for the which he did arrest me": [0, 65535], "for the which he did arrest me with": [0, 65535], "the which he did arrest me with an": [0, 65535], "which he did arrest me with an officer": [0, 65535], "he did arrest me with an officer i": [0, 65535], "did arrest me with an officer i did": [0, 65535], "arrest me with an officer i did obey": [0, 65535], "me with an officer i did obey and": [0, 65535], "with an officer i did obey and sent": [0, 65535], "an officer i did obey and sent my": [0, 65535], "officer i did obey and sent my pesant": [0, 65535], "i did obey and sent my pesant home": [0, 65535], "did obey and sent my pesant home for": [0, 65535], "obey and sent my pesant home for certaine": [0, 65535], "and sent my pesant home for certaine duckets": [0, 65535], "sent my pesant home for certaine duckets he": [0, 65535], "my pesant home for certaine duckets he with": [0, 65535], "pesant home for certaine duckets he with none": [0, 65535], "home for certaine duckets he with none return'd": [0, 65535], "for certaine duckets he with none return'd then": [0, 65535], "certaine duckets he with none return'd then fairely": [0, 65535], "duckets he with none return'd then fairely i": [0, 65535], "he with none return'd then fairely i bespoke": [0, 65535], "with none return'd then fairely i bespoke the": [0, 65535], "none return'd then fairely i bespoke the officer": [0, 65535], "return'd then fairely i bespoke the officer to": [0, 65535], "then fairely i bespoke the officer to go": [0, 65535], "fairely i bespoke the officer to go in": [0, 65535], "i bespoke the officer to go in person": [0, 65535], "bespoke the officer to go in person with": [0, 65535], "the officer to go in person with me": [0, 65535], "officer to go in person with me to": [0, 65535], "to go in person with me to my": [0, 65535], "go in person with me to my house": [0, 65535], "in person with me to my house by'th'": [0, 65535], "person with me to my house by'th' way": [0, 65535], "with me to my house by'th' way we": [0, 65535], "me to my house by'th' way we met": [0, 65535], "to my house by'th' way we met my": [0, 65535], "my house by'th' way we met my wife": [0, 65535], "house by'th' way we met my wife her": [0, 65535], "by'th' way we met my wife her sister": [0, 65535], "way we met my wife her sister and": [0, 65535], "we met my wife her sister and a": [0, 65535], "met my wife her sister and a rabble": [0, 65535], "my wife her sister and a rabble more": [0, 65535], "wife her sister and a rabble more of": [0, 65535], "her sister and a rabble more of vilde": [0, 65535], "sister and a rabble more of vilde confederates": [0, 65535], "and a rabble more of vilde confederates along": [0, 65535], "a rabble more of vilde confederates along with": [0, 65535], "rabble more of vilde confederates along with them": [0, 65535], "more of vilde confederates along with them they": [0, 65535], "of vilde confederates along with them they brought": [0, 65535], "vilde confederates along with them they brought one": [0, 65535], "confederates along with them they brought one pinch": [0, 65535], "along with them they brought one pinch a": [0, 65535], "with them they brought one pinch a hungry": [0, 65535], "them they brought one pinch a hungry leane": [0, 65535], "they brought one pinch a hungry leane fac'd": [0, 65535], "brought one pinch a hungry leane fac'd villaine": [0, 65535], "one pinch a hungry leane fac'd villaine a": [0, 65535], "pinch a hungry leane fac'd villaine a meere": [0, 65535], "a hungry leane fac'd villaine a meere anatomie": [0, 65535], "hungry leane fac'd villaine a meere anatomie a": [0, 65535], "leane fac'd villaine a meere anatomie a mountebanke": [0, 65535], "fac'd villaine a meere anatomie a mountebanke a": [0, 65535], "villaine a meere anatomie a mountebanke a thred": [0, 65535], "a meere anatomie a mountebanke a thred bare": [0, 65535], "meere anatomie a mountebanke a thred bare iugler": [0, 65535], "anatomie a mountebanke a thred bare iugler and": [0, 65535], "a mountebanke a thred bare iugler and a": [0, 65535], "mountebanke a thred bare iugler and a fortune": [0, 65535], "a thred bare iugler and a fortune teller": [0, 65535], "thred bare iugler and a fortune teller a": [0, 65535], "bare iugler and a fortune teller a needy": [0, 65535], "iugler and a fortune teller a needy hollow": [0, 65535], "and a fortune teller a needy hollow ey'd": [0, 65535], "a fortune teller a needy hollow ey'd sharpe": [0, 65535], "fortune teller a needy hollow ey'd sharpe looking": [0, 65535], "teller a needy hollow ey'd sharpe looking wretch": [0, 65535], "a needy hollow ey'd sharpe looking wretch a": [0, 65535], "needy hollow ey'd sharpe looking wretch a liuing": [0, 65535], "hollow ey'd sharpe looking wretch a liuing dead": [0, 65535], "ey'd sharpe looking wretch a liuing dead man": [0, 65535], "sharpe looking wretch a liuing dead man this": [0, 65535], "looking wretch a liuing dead man this pernicious": [0, 65535], "wretch a liuing dead man this pernicious slaue": [0, 65535], "a liuing dead man this pernicious slaue forsooth": [0, 65535], "liuing dead man this pernicious slaue forsooth tooke": [0, 65535], "dead man this pernicious slaue forsooth tooke on": [0, 65535], "man this pernicious slaue forsooth tooke on him": [0, 65535], "this pernicious slaue forsooth tooke on him as": [0, 65535], "pernicious slaue forsooth tooke on him as a": [0, 65535], "slaue forsooth tooke on him as a coniurer": [0, 65535], "forsooth tooke on him as a coniurer and": [0, 65535], "tooke on him as a coniurer and gazing": [0, 65535], "on him as a coniurer and gazing in": [0, 65535], "him as a coniurer and gazing in mine": [0, 65535], "as a coniurer and gazing in mine eyes": [0, 65535], "a coniurer and gazing in mine eyes feeling": [0, 65535], "coniurer and gazing in mine eyes feeling my": [0, 65535], "and gazing in mine eyes feeling my pulse": [0, 65535], "gazing in mine eyes feeling my pulse and": [0, 65535], "in mine eyes feeling my pulse and with": [0, 65535], "mine eyes feeling my pulse and with no": [0, 65535], "eyes feeling my pulse and with no face": [0, 65535], "feeling my pulse and with no face as": [0, 65535], "my pulse and with no face as 'twere": [0, 65535], "pulse and with no face as 'twere out": [0, 65535], "and with no face as 'twere out facing": [0, 65535], "with no face as 'twere out facing me": [0, 65535], "no face as 'twere out facing me cries": [0, 65535], "face as 'twere out facing me cries out": [0, 65535], "as 'twere out facing me cries out i": [0, 65535], "'twere out facing me cries out i was": [0, 65535], "out facing me cries out i was possest": [0, 65535], "facing me cries out i was possest then": [0, 65535], "me cries out i was possest then altogether": [0, 65535], "cries out i was possest then altogether they": [0, 65535], "out i was possest then altogether they fell": [0, 65535], "i was possest then altogether they fell vpon": [0, 65535], "was possest then altogether they fell vpon me": [0, 65535], "possest then altogether they fell vpon me bound": [0, 65535], "then altogether they fell vpon me bound me": [0, 65535], "altogether they fell vpon me bound me bore": [0, 65535], "they fell vpon me bound me bore me": [0, 65535], "fell vpon me bound me bore me thence": [0, 65535], "vpon me bound me bore me thence and": [0, 65535], "me bound me bore me thence and in": [0, 65535], "bound me bore me thence and in a": [0, 65535], "me bore me thence and in a darke": [0, 65535], "bore me thence and in a darke and": [0, 65535], "me thence and in a darke and dankish": [0, 65535], "thence and in a darke and dankish vault": [0, 65535], "and in a darke and dankish vault at": [0, 65535], "in a darke and dankish vault at home": [0, 65535], "a darke and dankish vault at home there": [0, 65535], "darke and dankish vault at home there left": [0, 65535], "and dankish vault at home there left me": [0, 65535], "dankish vault at home there left me and": [0, 65535], "vault at home there left me and my": [0, 65535], "at home there left me and my man": [0, 65535], "home there left me and my man both": [0, 65535], "there left me and my man both bound": [0, 65535], "left me and my man both bound together": [0, 65535], "me and my man both bound together till": [0, 65535], "and my man both bound together till gnawing": [0, 65535], "my man both bound together till gnawing with": [0, 65535], "man both bound together till gnawing with my": [0, 65535], "both bound together till gnawing with my teeth": [0, 65535], "bound together till gnawing with my teeth my": [0, 65535], "together till gnawing with my teeth my bonds": [0, 65535], "till gnawing with my teeth my bonds in": [0, 65535], "gnawing with my teeth my bonds in sunder": [0, 65535], "with my teeth my bonds in sunder i": [0, 65535], "my teeth my bonds in sunder i gain'd": [0, 65535], "teeth my bonds in sunder i gain'd my": [0, 65535], "my bonds in sunder i gain'd my freedome": [0, 65535], "bonds in sunder i gain'd my freedome and": [0, 65535], "in sunder i gain'd my freedome and immediately": [0, 65535], "sunder i gain'd my freedome and immediately ran": [0, 65535], "i gain'd my freedome and immediately ran hether": [0, 65535], "gain'd my freedome and immediately ran hether to": [0, 65535], "my freedome and immediately ran hether to your": [0, 65535], "freedome and immediately ran hether to your grace": [0, 65535], "and immediately ran hether to your grace whom": [0, 65535], "immediately ran hether to your grace whom i": [0, 65535], "ran hether to your grace whom i beseech": [0, 65535], "hether to your grace whom i beseech to": [0, 65535], "to your grace whom i beseech to giue": [0, 65535], "your grace whom i beseech to giue me": [0, 65535], "grace whom i beseech to giue me ample": [0, 65535], "whom i beseech to giue me ample satisfaction": [0, 65535], "i beseech to giue me ample satisfaction for": [0, 65535], "beseech to giue me ample satisfaction for these": [0, 65535], "to giue me ample satisfaction for these deepe": [0, 65535], "giue me ample satisfaction for these deepe shames": [0, 65535], "me ample satisfaction for these deepe shames and": [0, 65535], "ample satisfaction for these deepe shames and great": [0, 65535], "satisfaction for these deepe shames and great indignities": [0, 65535], "for these deepe shames and great indignities gold": [0, 65535], "these deepe shames and great indignities gold my": [0, 65535], "deepe shames and great indignities gold my lord": [0, 65535], "shames and great indignities gold my lord in": [0, 65535], "and great indignities gold my lord in truth": [0, 65535], "great indignities gold my lord in truth thus": [0, 65535], "indignities gold my lord in truth thus far": [0, 65535], "gold my lord in truth thus far i": [0, 65535], "my lord in truth thus far i witnes": [0, 65535], "lord in truth thus far i witnes with": [0, 65535], "in truth thus far i witnes with him": [0, 65535], "truth thus far i witnes with him that": [0, 65535], "thus far i witnes with him that he": [0, 65535], "far i witnes with him that he din'd": [0, 65535], "i witnes with him that he din'd not": [0, 65535], "witnes with him that he din'd not at": [0, 65535], "with him that he din'd not at home": [0, 65535], "him that he din'd not at home but": [0, 65535], "that he din'd not at home but was": [0, 65535], "he din'd not at home but was lock'd": [0, 65535], "din'd not at home but was lock'd out": [0, 65535], "not at home but was lock'd out duke": [0, 65535], "at home but was lock'd out duke but": [0, 65535], "home but was lock'd out duke but had": [0, 65535], "but was lock'd out duke but had he": [0, 65535], "was lock'd out duke but had he such": [0, 65535], "lock'd out duke but had he such a": [0, 65535], "out duke but had he such a chaine": [0, 65535], "duke but had he such a chaine of": [0, 65535], "but had he such a chaine of thee": [0, 65535], "had he such a chaine of thee or": [0, 65535], "he such a chaine of thee or no": [0, 65535], "such a chaine of thee or no gold": [0, 65535], "a chaine of thee or no gold he": [0, 65535], "chaine of thee or no gold he had": [0, 65535], "of thee or no gold he had my": [0, 65535], "thee or no gold he had my lord": [0, 65535], "or no gold he had my lord and": [0, 65535], "no gold he had my lord and when": [0, 65535], "gold he had my lord and when he": [0, 65535], "he had my lord and when he ran": [0, 65535], "had my lord and when he ran in": [0, 65535], "my lord and when he ran in heere": [0, 65535], "lord and when he ran in heere these": [0, 65535], "and when he ran in heere these people": [0, 65535], "when he ran in heere these people saw": [0, 65535], "he ran in heere these people saw the": [0, 65535], "ran in heere these people saw the chaine": [0, 65535], "in heere these people saw the chaine about": [0, 65535], "heere these people saw the chaine about his": [0, 65535], "these people saw the chaine about his necke": [0, 65535], "people saw the chaine about his necke mar": [0, 65535], "saw the chaine about his necke mar besides": [0, 65535], "the chaine about his necke mar besides i": [0, 65535], "chaine about his necke mar besides i will": [0, 65535], "about his necke mar besides i will be": [0, 65535], "his necke mar besides i will be sworne": [0, 65535], "necke mar besides i will be sworne these": [0, 65535], "mar besides i will be sworne these eares": [0, 65535], "besides i will be sworne these eares of": [0, 65535], "i will be sworne these eares of mine": [0, 65535], "will be sworne these eares of mine heard": [0, 65535], "be sworne these eares of mine heard you": [0, 65535], "sworne these eares of mine heard you confesse": [0, 65535], "these eares of mine heard you confesse you": [0, 65535], "eares of mine heard you confesse you had": [0, 65535], "of mine heard you confesse you had the": [0, 65535], "mine heard you confesse you had the chaine": [0, 65535], "heard you confesse you had the chaine of": [0, 65535], "you confesse you had the chaine of him": [0, 65535], "confesse you had the chaine of him after": [0, 65535], "you had the chaine of him after you": [0, 65535], "had the chaine of him after you first": [0, 65535], "the chaine of him after you first forswore": [0, 65535], "chaine of him after you first forswore it": [0, 65535], "of him after you first forswore it on": [0, 65535], "him after you first forswore it on the": [0, 65535], "after you first forswore it on the mart": [0, 65535], "you first forswore it on the mart and": [0, 65535], "first forswore it on the mart and thereupon": [0, 65535], "forswore it on the mart and thereupon i": [0, 65535], "it on the mart and thereupon i drew": [0, 65535], "on the mart and thereupon i drew my": [0, 65535], "the mart and thereupon i drew my sword": [0, 65535], "mart and thereupon i drew my sword on": [0, 65535], "and thereupon i drew my sword on you": [0, 65535], "thereupon i drew my sword on you and": [0, 65535], "i drew my sword on you and then": [0, 65535], "drew my sword on you and then you": [0, 65535], "my sword on you and then you fled": [0, 65535], "sword on you and then you fled into": [0, 65535], "on you and then you fled into this": [0, 65535], "you and then you fled into this abbey": [0, 65535], "and then you fled into this abbey heere": [0, 65535], "then you fled into this abbey heere from": [0, 65535], "you fled into this abbey heere from whence": [0, 65535], "fled into this abbey heere from whence i": [0, 65535], "into this abbey heere from whence i thinke": [0, 65535], "this abbey heere from whence i thinke you": [0, 65535], "abbey heere from whence i thinke you are": [0, 65535], "heere from whence i thinke you are come": [0, 65535], "from whence i thinke you are come by": [0, 65535], "whence i thinke you are come by miracle": [0, 65535], "i thinke you are come by miracle e": [0, 65535], "thinke you are come by miracle e ant": [0, 65535], "you are come by miracle e ant i": [0, 65535], "are come by miracle e ant i neuer": [0, 65535], "come by miracle e ant i neuer came": [0, 65535], "by miracle e ant i neuer came within": [0, 65535], "miracle e ant i neuer came within these": [0, 65535], "e ant i neuer came within these abbey": [0, 65535], "ant i neuer came within these abbey wals": [0, 65535], "i neuer came within these abbey wals nor": [0, 65535], "neuer came within these abbey wals nor euer": [0, 65535], "came within these abbey wals nor euer didst": [0, 65535], "within these abbey wals nor euer didst thou": [0, 65535], "these abbey wals nor euer didst thou draw": [0, 65535], "abbey wals nor euer didst thou draw thy": [0, 65535], "wals nor euer didst thou draw thy sword": [0, 65535], "nor euer didst thou draw thy sword on": [0, 65535], "euer didst thou draw thy sword on me": [0, 65535], "didst thou draw thy sword on me i": [0, 65535], "thou draw thy sword on me i neuer": [0, 65535], "draw thy sword on me i neuer saw": [0, 65535], "thy sword on me i neuer saw the": [0, 65535], "sword on me i neuer saw the chaine": [0, 65535], "on me i neuer saw the chaine so": [0, 65535], "me i neuer saw the chaine so helpe": [0, 65535], "i neuer saw the chaine so helpe me": [0, 65535], "neuer saw the chaine so helpe me heauen": [0, 65535], "saw the chaine so helpe me heauen and": [0, 65535], "the chaine so helpe me heauen and this": [0, 65535], "chaine so helpe me heauen and this is": [0, 65535], "so helpe me heauen and this is false": [0, 65535], "helpe me heauen and this is false you": [0, 65535], "me heauen and this is false you burthen": [0, 65535], "heauen and this is false you burthen me": [0, 65535], "and this is false you burthen me withall": [0, 65535], "this is false you burthen me withall duke": [0, 65535], "is false you burthen me withall duke why": [0, 65535], "false you burthen me withall duke why what": [0, 65535], "you burthen me withall duke why what an": [0, 65535], "burthen me withall duke why what an intricate": [0, 65535], "me withall duke why what an intricate impeach": [0, 65535], "withall duke why what an intricate impeach is": [0, 65535], "duke why what an intricate impeach is this": [0, 65535], "why what an intricate impeach is this i": [0, 65535], "what an intricate impeach is this i thinke": [0, 65535], "an intricate impeach is this i thinke you": [0, 65535], "intricate impeach is this i thinke you all": [0, 65535], "impeach is this i thinke you all haue": [0, 65535], "is this i thinke you all haue drunke": [0, 65535], "this i thinke you all haue drunke of": [0, 65535], "i thinke you all haue drunke of circes": [0, 65535], "thinke you all haue drunke of circes cup": [0, 65535], "you all haue drunke of circes cup if": [0, 65535], "all haue drunke of circes cup if heere": [0, 65535], "haue drunke of circes cup if heere you": [0, 65535], "drunke of circes cup if heere you hous'd": [0, 65535], "of circes cup if heere you hous'd him": [0, 65535], "circes cup if heere you hous'd him heere": [0, 65535], "cup if heere you hous'd him heere he": [0, 65535], "if heere you hous'd him heere he would": [0, 65535], "heere you hous'd him heere he would haue": [0, 65535], "you hous'd him heere he would haue bin": [0, 65535], "hous'd him heere he would haue bin if": [0, 65535], "him heere he would haue bin if he": [0, 65535], "heere he would haue bin if he were": [0, 65535], "he would haue bin if he were mad": [0, 65535], "would haue bin if he were mad he": [0, 65535], "haue bin if he were mad he would": [0, 65535], "bin if he were mad he would not": [0, 65535], "if he were mad he would not pleade": [0, 65535], "he were mad he would not pleade so": [0, 65535], "were mad he would not pleade so coldly": [0, 65535], "mad he would not pleade so coldly you": [0, 65535], "he would not pleade so coldly you say": [0, 65535], "would not pleade so coldly you say he": [0, 65535], "not pleade so coldly you say he din'd": [0, 65535], "pleade so coldly you say he din'd at": [0, 65535], "so coldly you say he din'd at home": [0, 65535], "coldly you say he din'd at home the": [0, 65535], "you say he din'd at home the goldsmith": [0, 65535], "say he din'd at home the goldsmith heere": [0, 65535], "he din'd at home the goldsmith heere denies": [0, 65535], "din'd at home the goldsmith heere denies that": [0, 65535], "at home the goldsmith heere denies that saying": [0, 65535], "home the goldsmith heere denies that saying sirra": [0, 65535], "the goldsmith heere denies that saying sirra what": [0, 65535], "goldsmith heere denies that saying sirra what say": [0, 65535], "heere denies that saying sirra what say you": [0, 65535], "denies that saying sirra what say you e": [0, 65535], "that saying sirra what say you e dro": [0, 65535], "saying sirra what say you e dro sir": [0, 65535], "sirra what say you e dro sir he": [0, 65535], "what say you e dro sir he din'de": [0, 65535], "say you e dro sir he din'de with": [0, 65535], "you e dro sir he din'de with her": [0, 65535], "e dro sir he din'de with her there": [0, 65535], "dro sir he din'de with her there at": [0, 65535], "sir he din'de with her there at the": [0, 65535], "he din'de with her there at the porpentine": [0, 65535], "din'de with her there at the porpentine cur": [0, 65535], "with her there at the porpentine cur he": [0, 65535], "her there at the porpentine cur he did": [0, 65535], "there at the porpentine cur he did and": [0, 65535], "at the porpentine cur he did and from": [0, 65535], "the porpentine cur he did and from my": [0, 65535], "porpentine cur he did and from my finger": [0, 65535], "cur he did and from my finger snacht": [0, 65535], "he did and from my finger snacht that": [0, 65535], "did and from my finger snacht that ring": [0, 65535], "and from my finger snacht that ring e": [0, 65535], "from my finger snacht that ring e anti": [0, 65535], "my finger snacht that ring e anti tis": [0, 65535], "finger snacht that ring e anti tis true": [0, 65535], "snacht that ring e anti tis true my": [0, 65535], "that ring e anti tis true my liege": [0, 65535], "ring e anti tis true my liege this": [0, 65535], "e anti tis true my liege this ring": [0, 65535], "anti tis true my liege this ring i": [0, 65535], "tis true my liege this ring i had": [0, 65535], "true my liege this ring i had of": [0, 65535], "my liege this ring i had of her": [0, 65535], "liege this ring i had of her duke": [0, 65535], "this ring i had of her duke saw'st": [0, 65535], "ring i had of her duke saw'st thou": [0, 65535], "i had of her duke saw'st thou him": [0, 65535], "had of her duke saw'st thou him enter": [0, 65535], "of her duke saw'st thou him enter at": [0, 65535], "her duke saw'st thou him enter at the": [0, 65535], "duke saw'st thou him enter at the abbey": [0, 65535], "saw'st thou him enter at the abbey heere": [0, 65535], "thou him enter at the abbey heere curt": [0, 65535], "him enter at the abbey heere curt as": [0, 65535], "enter at the abbey heere curt as sure": [0, 65535], "at the abbey heere curt as sure my": [0, 65535], "the abbey heere curt as sure my liege": [0, 65535], "abbey heere curt as sure my liege as": [0, 65535], "heere curt as sure my liege as i": [0, 65535], "curt as sure my liege as i do": [0, 65535], "as sure my liege as i do see": [0, 65535], "sure my liege as i do see your": [0, 65535], "my liege as i do see your grace": [0, 65535], "liege as i do see your grace duke": [0, 65535], "as i do see your grace duke why": [0, 65535], "i do see your grace duke why this": [0, 65535], "do see your grace duke why this is": [0, 65535], "see your grace duke why this is straunge": [0, 65535], "your grace duke why this is straunge go": [0, 65535], "grace duke why this is straunge go call": [0, 65535], "duke why this is straunge go call the": [0, 65535], "why this is straunge go call the abbesse": [0, 65535], "this is straunge go call the abbesse hither": [0, 65535], "is straunge go call the abbesse hither i": [0, 65535], "straunge go call the abbesse hither i thinke": [0, 65535], "go call the abbesse hither i thinke you": [0, 65535], "call the abbesse hither i thinke you are": [0, 65535], "the abbesse hither i thinke you are all": [0, 65535], "abbesse hither i thinke you are all mated": [0, 65535], "hither i thinke you are all mated or": [0, 65535], "i thinke you are all mated or starke": [0, 65535], "thinke you are all mated or starke mad": [0, 65535], "you are all mated or starke mad exit": [0, 65535], "are all mated or starke mad exit one": [0, 65535], "all mated or starke mad exit one to": [0, 65535], "mated or starke mad exit one to the": [0, 65535], "or starke mad exit one to the abbesse": [0, 65535], "starke mad exit one to the abbesse fa": [0, 65535], "mad exit one to the abbesse fa most": [0, 65535], "exit one to the abbesse fa most mighty": [0, 65535], "one to the abbesse fa most mighty duke": [0, 65535], "to the abbesse fa most mighty duke vouchsafe": [0, 65535], "the abbesse fa most mighty duke vouchsafe me": [0, 65535], "abbesse fa most mighty duke vouchsafe me speak": [0, 65535], "fa most mighty duke vouchsafe me speak a": [0, 65535], "most mighty duke vouchsafe me speak a word": [0, 65535], "mighty duke vouchsafe me speak a word haply": [0, 65535], "duke vouchsafe me speak a word haply i": [0, 65535], "vouchsafe me speak a word haply i see": [0, 65535], "me speak a word haply i see a": [0, 65535], "speak a word haply i see a friend": [0, 65535], "a word haply i see a friend will": [0, 65535], "word haply i see a friend will saue": [0, 65535], "haply i see a friend will saue my": [0, 65535], "i see a friend will saue my life": [0, 65535], "see a friend will saue my life and": [0, 65535], "a friend will saue my life and pay": [0, 65535], "friend will saue my life and pay the": [0, 65535], "will saue my life and pay the sum": [0, 65535], "saue my life and pay the sum that": [0, 65535], "my life and pay the sum that may": [0, 65535], "life and pay the sum that may deliuer": [0, 65535], "and pay the sum that may deliuer me": [0, 65535], "pay the sum that may deliuer me duke": [0, 65535], "the sum that may deliuer me duke speake": [0, 65535], "sum that may deliuer me duke speake freely": [0, 65535], "that may deliuer me duke speake freely siracusian": [0, 65535], "may deliuer me duke speake freely siracusian what": [0, 65535], "deliuer me duke speake freely siracusian what thou": [0, 65535], "me duke speake freely siracusian what thou wilt": [0, 65535], "duke speake freely siracusian what thou wilt fath": [0, 65535], "speake freely siracusian what thou wilt fath is": [0, 65535], "freely siracusian what thou wilt fath is not": [0, 65535], "siracusian what thou wilt fath is not your": [0, 65535], "what thou wilt fath is not your name": [0, 65535], "thou wilt fath is not your name sir": [0, 65535], "wilt fath is not your name sir call'd": [0, 65535], "fath is not your name sir call'd antipholus": [0, 65535], "is not your name sir call'd antipholus and": [0, 65535], "not your name sir call'd antipholus and is": [0, 65535], "your name sir call'd antipholus and is not": [0, 65535], "name sir call'd antipholus and is not that": [0, 65535], "sir call'd antipholus and is not that your": [0, 65535], "call'd antipholus and is not that your bondman": [0, 65535], "antipholus and is not that your bondman dromio": [0, 65535], "and is not that your bondman dromio e": [0, 65535], "is not that your bondman dromio e dro": [0, 65535], "not that your bondman dromio e dro within": [0, 65535], "that your bondman dromio e dro within this": [0, 65535], "your bondman dromio e dro within this houre": [0, 65535], "bondman dromio e dro within this houre i": [0, 65535], "dromio e dro within this houre i was": [0, 65535], "e dro within this houre i was his": [0, 65535], "dro within this houre i was his bondman": [0, 65535], "within this houre i was his bondman sir": [0, 65535], "this houre i was his bondman sir but": [0, 65535], "houre i was his bondman sir but he": [0, 65535], "i was his bondman sir but he i": [0, 65535], "was his bondman sir but he i thanke": [0, 65535], "his bondman sir but he i thanke him": [0, 65535], "bondman sir but he i thanke him gnaw'd": [0, 65535], "sir but he i thanke him gnaw'd in": [0, 65535], "but he i thanke him gnaw'd in two": [0, 65535], "he i thanke him gnaw'd in two my": [0, 65535], "i thanke him gnaw'd in two my cords": [0, 65535], "thanke him gnaw'd in two my cords now": [0, 65535], "him gnaw'd in two my cords now am": [0, 65535], "gnaw'd in two my cords now am i": [0, 65535], "in two my cords now am i dromio": [0, 65535], "two my cords now am i dromio and": [0, 65535], "my cords now am i dromio and his": [0, 65535], "cords now am i dromio and his man": [0, 65535], "now am i dromio and his man vnbound": [0, 65535], "am i dromio and his man vnbound fath": [0, 65535], "i dromio and his man vnbound fath i": [0, 65535], "dromio and his man vnbound fath i am": [0, 65535], "and his man vnbound fath i am sure": [0, 65535], "his man vnbound fath i am sure you": [0, 65535], "man vnbound fath i am sure you both": [0, 65535], "vnbound fath i am sure you both of": [0, 65535], "fath i am sure you both of you": [0, 65535], "i am sure you both of you remember": [0, 65535], "am sure you both of you remember me": [0, 65535], "sure you both of you remember me dro": [0, 65535], "you both of you remember me dro our": [0, 65535], "both of you remember me dro our selues": [0, 65535], "of you remember me dro our selues we": [0, 65535], "you remember me dro our selues we do": [0, 65535], "remember me dro our selues we do remember": [0, 65535], "me dro our selues we do remember sir": [0, 65535], "dro our selues we do remember sir by": [0, 65535], "our selues we do remember sir by you": [0, 65535], "selues we do remember sir by you for": [0, 65535], "we do remember sir by you for lately": [0, 65535], "do remember sir by you for lately we": [0, 65535], "remember sir by you for lately we were": [0, 65535], "sir by you for lately we were bound": [0, 65535], "by you for lately we were bound as": [0, 65535], "you for lately we were bound as you": [0, 65535], "for lately we were bound as you are": [0, 65535], "lately we were bound as you are now": [0, 65535], "we were bound as you are now you": [0, 65535], "were bound as you are now you are": [0, 65535], "bound as you are now you are not": [0, 65535], "as you are now you are not pinches": [0, 65535], "you are now you are not pinches patient": [0, 65535], "are now you are not pinches patient are": [0, 65535], "now you are not pinches patient are you": [0, 65535], "you are not pinches patient are you sir": [0, 65535], "are not pinches patient are you sir father": [0, 65535], "not pinches patient are you sir father why": [0, 65535], "pinches patient are you sir father why looke": [0, 65535], "patient are you sir father why looke you": [0, 65535], "are you sir father why looke you strange": [0, 65535], "you sir father why looke you strange on": [0, 65535], "sir father why looke you strange on me": [0, 65535], "father why looke you strange on me you": [0, 65535], "why looke you strange on me you know": [0, 65535], "looke you strange on me you know me": [0, 65535], "you strange on me you know me well": [0, 65535], "strange on me you know me well e": [0, 65535], "on me you know me well e ant": [0, 65535], "me you know me well e ant i": [0, 65535], "you know me well e ant i neuer": [0, 65535], "know me well e ant i neuer saw": [0, 65535], "me well e ant i neuer saw you": [0, 65535], "well e ant i neuer saw you in": [0, 65535], "e ant i neuer saw you in my": [0, 65535], "ant i neuer saw you in my life": [0, 65535], "i neuer saw you in my life till": [0, 65535], "neuer saw you in my life till now": [0, 65535], "saw you in my life till now fa": [0, 65535], "you in my life till now fa oh": [0, 65535], "in my life till now fa oh griefe": [0, 65535], "my life till now fa oh griefe hath": [0, 65535], "life till now fa oh griefe hath chang'd": [0, 65535], "till now fa oh griefe hath chang'd me": [0, 65535], "now fa oh griefe hath chang'd me since": [0, 65535], "fa oh griefe hath chang'd me since you": [0, 65535], "oh griefe hath chang'd me since you saw": [0, 65535], "griefe hath chang'd me since you saw me": [0, 65535], "hath chang'd me since you saw me last": [0, 65535], "chang'd me since you saw me last and": [0, 65535], "me since you saw me last and carefull": [0, 65535], "since you saw me last and carefull houres": [0, 65535], "you saw me last and carefull houres with": [0, 65535], "saw me last and carefull houres with times": [0, 65535], "me last and carefull houres with times deformed": [0, 65535], "last and carefull houres with times deformed hand": [0, 65535], "and carefull houres with times deformed hand haue": [0, 65535], "carefull houres with times deformed hand haue written": [0, 65535], "houres with times deformed hand haue written strange": [0, 65535], "with times deformed hand haue written strange defeatures": [0, 65535], "times deformed hand haue written strange defeatures in": [0, 65535], "deformed hand haue written strange defeatures in my": [0, 65535], "hand haue written strange defeatures in my face": [0, 65535], "haue written strange defeatures in my face but": [0, 65535], "written strange defeatures in my face but tell": [0, 65535], "strange defeatures in my face but tell me": [0, 65535], "defeatures in my face but tell me yet": [0, 65535], "in my face but tell me yet dost": [0, 65535], "my face but tell me yet dost thou": [0, 65535], "face but tell me yet dost thou not": [0, 65535], "but tell me yet dost thou not know": [0, 65535], "tell me yet dost thou not know my": [0, 65535], "me yet dost thou not know my voice": [0, 65535], "yet dost thou not know my voice ant": [0, 65535], "dost thou not know my voice ant neither": [0, 65535], "thou not know my voice ant neither fat": [0, 65535], "not know my voice ant neither fat dromio": [0, 65535], "know my voice ant neither fat dromio nor": [0, 65535], "my voice ant neither fat dromio nor thou": [0, 65535], "voice ant neither fat dromio nor thou dro": [0, 65535], "ant neither fat dromio nor thou dro no": [0, 65535], "neither fat dromio nor thou dro no trust": [0, 65535], "fat dromio nor thou dro no trust me": [0, 65535], "dromio nor thou dro no trust me sir": [0, 65535], "nor thou dro no trust me sir nor": [0, 65535], "thou dro no trust me sir nor i": [0, 65535], "dro no trust me sir nor i fa": [0, 65535], "no trust me sir nor i fa i": [0, 65535], "trust me sir nor i fa i am": [0, 65535], "me sir nor i fa i am sure": [0, 65535], "sir nor i fa i am sure thou": [0, 65535], "nor i fa i am sure thou dost": [0, 65535], "i fa i am sure thou dost e": [0, 65535], "fa i am sure thou dost e dromio": [0, 65535], "i am sure thou dost e dromio i": [0, 65535], "am sure thou dost e dromio i sir": [0, 65535], "sure thou dost e dromio i sir but": [0, 65535], "thou dost e dromio i sir but i": [0, 65535], "dost e dromio i sir but i am": [0, 65535], "e dromio i sir but i am sure": [0, 65535], "dromio i sir but i am sure i": [0, 65535], "i sir but i am sure i do": [0, 65535], "sir but i am sure i do not": [0, 65535], "but i am sure i do not and": [0, 65535], "i am sure i do not and whatsoeuer": [0, 65535], "am sure i do not and whatsoeuer a": [0, 65535], "sure i do not and whatsoeuer a man": [0, 65535], "i do not and whatsoeuer a man denies": [0, 65535], "do not and whatsoeuer a man denies you": [0, 65535], "not and whatsoeuer a man denies you are": [0, 65535], "and whatsoeuer a man denies you are now": [0, 65535], "whatsoeuer a man denies you are now bound": [0, 65535], "a man denies you are now bound to": [0, 65535], "man denies you are now bound to beleeue": [0, 65535], "denies you are now bound to beleeue him": [0, 65535], "you are now bound to beleeue him fath": [0, 65535], "are now bound to beleeue him fath not": [0, 65535], "now bound to beleeue him fath not know": [0, 65535], "bound to beleeue him fath not know my": [0, 65535], "to beleeue him fath not know my voice": [0, 65535], "beleeue him fath not know my voice oh": [0, 65535], "him fath not know my voice oh times": [0, 65535], "fath not know my voice oh times extremity": [0, 65535], "not know my voice oh times extremity hast": [0, 65535], "know my voice oh times extremity hast thou": [0, 65535], "my voice oh times extremity hast thou so": [0, 65535], "voice oh times extremity hast thou so crack'd": [0, 65535], "oh times extremity hast thou so crack'd and": [0, 65535], "times extremity hast thou so crack'd and splitted": [0, 65535], "extremity hast thou so crack'd and splitted my": [0, 65535], "hast thou so crack'd and splitted my poore": [0, 65535], "thou so crack'd and splitted my poore tongue": [0, 65535], "so crack'd and splitted my poore tongue in": [0, 65535], "crack'd and splitted my poore tongue in seuen": [0, 65535], "and splitted my poore tongue in seuen short": [0, 65535], "splitted my poore tongue in seuen short yeares": [0, 65535], "my poore tongue in seuen short yeares that": [0, 65535], "poore tongue in seuen short yeares that heere": [0, 65535], "tongue in seuen short yeares that heere my": [0, 65535], "in seuen short yeares that heere my onely": [0, 65535], "seuen short yeares that heere my onely sonne": [0, 65535], "short yeares that heere my onely sonne knowes": [0, 65535], "yeares that heere my onely sonne knowes not": [0, 65535], "that heere my onely sonne knowes not my": [0, 65535], "heere my onely sonne knowes not my feeble": [0, 65535], "my onely sonne knowes not my feeble key": [0, 65535], "onely sonne knowes not my feeble key of": [0, 65535], "sonne knowes not my feeble key of vntun'd": [0, 65535], "knowes not my feeble key of vntun'd cares": [0, 65535], "not my feeble key of vntun'd cares though": [0, 65535], "my feeble key of vntun'd cares though now": [0, 65535], "feeble key of vntun'd cares though now this": [0, 65535], "key of vntun'd cares though now this grained": [0, 65535], "of vntun'd cares though now this grained face": [0, 65535], "vntun'd cares though now this grained face of": [0, 65535], "cares though now this grained face of mine": [0, 65535], "though now this grained face of mine be": [0, 65535], "now this grained face of mine be hid": [0, 65535], "this grained face of mine be hid in": [0, 65535], "grained face of mine be hid in sap": [0, 65535], "face of mine be hid in sap consuming": [0, 65535], "of mine be hid in sap consuming winters": [0, 65535], "mine be hid in sap consuming winters drizled": [0, 65535], "be hid in sap consuming winters drizled snow": [0, 65535], "hid in sap consuming winters drizled snow and": [0, 65535], "in sap consuming winters drizled snow and all": [0, 65535], "sap consuming winters drizled snow and all the": [0, 65535], "consuming winters drizled snow and all the conduits": [0, 65535], "winters drizled snow and all the conduits of": [0, 65535], "drizled snow and all the conduits of my": [0, 65535], "snow and all the conduits of my blood": [0, 65535], "and all the conduits of my blood froze": [0, 65535], "all the conduits of my blood froze vp": [0, 65535], "the conduits of my blood froze vp yet": [0, 65535], "conduits of my blood froze vp yet hath": [0, 65535], "of my blood froze vp yet hath my": [0, 65535], "my blood froze vp yet hath my night": [0, 65535], "blood froze vp yet hath my night of": [0, 65535], "froze vp yet hath my night of life": [0, 65535], "vp yet hath my night of life some": [0, 65535], "yet hath my night of life some memorie": [0, 65535], "hath my night of life some memorie my": [0, 65535], "my night of life some memorie my wasting": [0, 65535], "night of life some memorie my wasting lampes": [0, 65535], "of life some memorie my wasting lampes some": [0, 65535], "life some memorie my wasting lampes some fading": [0, 65535], "some memorie my wasting lampes some fading glimmer": [0, 65535], "memorie my wasting lampes some fading glimmer left": [0, 65535], "my wasting lampes some fading glimmer left my": [0, 65535], "wasting lampes some fading glimmer left my dull": [0, 65535], "lampes some fading glimmer left my dull deafe": [0, 65535], "some fading glimmer left my dull deafe eares": [0, 65535], "fading glimmer left my dull deafe eares a": [0, 65535], "glimmer left my dull deafe eares a little": [0, 65535], "left my dull deafe eares a little vse": [0, 65535], "my dull deafe eares a little vse to": [0, 65535], "dull deafe eares a little vse to heare": [0, 65535], "deafe eares a little vse to heare all": [0, 65535], "eares a little vse to heare all these": [0, 65535], "a little vse to heare all these old": [0, 65535], "little vse to heare all these old witnesses": [0, 65535], "vse to heare all these old witnesses i": [0, 65535], "to heare all these old witnesses i cannot": [0, 65535], "heare all these old witnesses i cannot erre": [0, 65535], "all these old witnesses i cannot erre tell": [0, 65535], "these old witnesses i cannot erre tell me": [0, 65535], "old witnesses i cannot erre tell me thou": [0, 65535], "witnesses i cannot erre tell me thou art": [0, 65535], "i cannot erre tell me thou art my": [0, 65535], "cannot erre tell me thou art my sonne": [0, 65535], "erre tell me thou art my sonne antipholus": [0, 65535], "tell me thou art my sonne antipholus ant": [0, 65535], "me thou art my sonne antipholus ant i": [0, 65535], "thou art my sonne antipholus ant i neuer": [0, 65535], "art my sonne antipholus ant i neuer saw": [0, 65535], "my sonne antipholus ant i neuer saw my": [0, 65535], "sonne antipholus ant i neuer saw my father": [0, 65535], "antipholus ant i neuer saw my father in": [0, 65535], "ant i neuer saw my father in my": [0, 65535], "i neuer saw my father in my life": [0, 65535], "neuer saw my father in my life fa": [0, 65535], "saw my father in my life fa but": [0, 65535], "my father in my life fa but seuen": [0, 65535], "father in my life fa but seuen yeares": [0, 65535], "in my life fa but seuen yeares since": [0, 65535], "my life fa but seuen yeares since in": [0, 65535], "life fa but seuen yeares since in siracusa": [0, 65535], "fa but seuen yeares since in siracusa boy": [0, 65535], "but seuen yeares since in siracusa boy thou": [0, 65535], "seuen yeares since in siracusa boy thou know'st": [0, 65535], "yeares since in siracusa boy thou know'st we": [0, 65535], "since in siracusa boy thou know'st we parted": [0, 65535], "in siracusa boy thou know'st we parted but": [0, 65535], "siracusa boy thou know'st we parted but perhaps": [0, 65535], "boy thou know'st we parted but perhaps my": [0, 65535], "thou know'st we parted but perhaps my sonne": [0, 65535], "know'st we parted but perhaps my sonne thou": [0, 65535], "we parted but perhaps my sonne thou sham'st": [0, 65535], "parted but perhaps my sonne thou sham'st to": [0, 65535], "but perhaps my sonne thou sham'st to acknowledge": [0, 65535], "perhaps my sonne thou sham'st to acknowledge me": [0, 65535], "my sonne thou sham'st to acknowledge me in": [0, 65535], "sonne thou sham'st to acknowledge me in miserie": [0, 65535], "thou sham'st to acknowledge me in miserie ant": [0, 65535], "sham'st to acknowledge me in miserie ant the": [0, 65535], "to acknowledge me in miserie ant the duke": [0, 65535], "acknowledge me in miserie ant the duke and": [0, 65535], "me in miserie ant the duke and all": [0, 65535], "in miserie ant the duke and all that": [0, 65535], "miserie ant the duke and all that know": [0, 65535], "ant the duke and all that know me": [0, 65535], "the duke and all that know me in": [0, 65535], "duke and all that know me in the": [0, 65535], "and all that know me in the city": [0, 65535], "all that know me in the city can": [0, 65535], "that know me in the city can witnesse": [0, 65535], "know me in the city can witnesse with": [0, 65535], "me in the city can witnesse with me": [0, 65535], "in the city can witnesse with me that": [0, 65535], "the city can witnesse with me that it": [0, 65535], "city can witnesse with me that it is": [0, 65535], "can witnesse with me that it is not": [0, 65535], "witnesse with me that it is not so": [0, 65535], "with me that it is not so i": [0, 65535], "me that it is not so i ne're": [0, 65535], "that it is not so i ne're saw": [0, 65535], "it is not so i ne're saw siracusa": [0, 65535], "is not so i ne're saw siracusa in": [0, 65535], "not so i ne're saw siracusa in my": [0, 65535], "so i ne're saw siracusa in my life": [0, 65535], "i ne're saw siracusa in my life duke": [0, 65535], "ne're saw siracusa in my life duke i": [0, 65535], "saw siracusa in my life duke i tell": [0, 65535], "siracusa in my life duke i tell thee": [0, 65535], "in my life duke i tell thee siracusian": [0, 65535], "my life duke i tell thee siracusian twentie": [0, 65535], "life duke i tell thee siracusian twentie yeares": [0, 65535], "duke i tell thee siracusian twentie yeares haue": [0, 65535], "i tell thee siracusian twentie yeares haue i": [0, 65535], "tell thee siracusian twentie yeares haue i bin": [0, 65535], "thee siracusian twentie yeares haue i bin patron": [0, 65535], "siracusian twentie yeares haue i bin patron to": [0, 65535], "twentie yeares haue i bin patron to antipholus": [0, 65535], "yeares haue i bin patron to antipholus during": [0, 65535], "haue i bin patron to antipholus during which": [0, 65535], "i bin patron to antipholus during which time": [0, 65535], "bin patron to antipholus during which time he": [0, 65535], "patron to antipholus during which time he ne're": [0, 65535], "to antipholus during which time he ne're saw": [0, 65535], "antipholus during which time he ne're saw siracusa": [0, 65535], "during which time he ne're saw siracusa i": [0, 65535], "which time he ne're saw siracusa i see": [0, 65535], "time he ne're saw siracusa i see thy": [0, 65535], "he ne're saw siracusa i see thy age": [0, 65535], "ne're saw siracusa i see thy age and": [0, 65535], "saw siracusa i see thy age and dangers": [0, 65535], "siracusa i see thy age and dangers make": [0, 65535], "i see thy age and dangers make thee": [0, 65535], "see thy age and dangers make thee dote": [0, 65535], "thy age and dangers make thee dote enter": [0, 65535], "age and dangers make thee dote enter the": [0, 65535], "and dangers make thee dote enter the abbesse": [0, 65535], "dangers make thee dote enter the abbesse with": [0, 65535], "make thee dote enter the abbesse with antipholus": [0, 65535], "thee dote enter the abbesse with antipholus siracusa": [0, 65535], "dote enter the abbesse with antipholus siracusa and": [0, 65535], "enter the abbesse with antipholus siracusa and dromio": [0, 65535], "the abbesse with antipholus siracusa and dromio sir": [0, 65535], "abbesse with antipholus siracusa and dromio sir abbesse": [0, 65535], "with antipholus siracusa and dromio sir abbesse most": [0, 65535], "antipholus siracusa and dromio sir abbesse most mightie": [0, 65535], "siracusa and dromio sir abbesse most mightie duke": [0, 65535], "and dromio sir abbesse most mightie duke behold": [0, 65535], "dromio sir abbesse most mightie duke behold a": [0, 65535], "sir abbesse most mightie duke behold a man": [0, 65535], "abbesse most mightie duke behold a man much": [0, 65535], "most mightie duke behold a man much wrong'd": [0, 65535], "mightie duke behold a man much wrong'd all": [0, 65535], "duke behold a man much wrong'd all gather": [0, 65535], "behold a man much wrong'd all gather to": [0, 65535], "a man much wrong'd all gather to see": [0, 65535], "man much wrong'd all gather to see them": [0, 65535], "much wrong'd all gather to see them adr": [0, 65535], "wrong'd all gather to see them adr i": [0, 65535], "all gather to see them adr i see": [0, 65535], "gather to see them adr i see two": [0, 65535], "to see them adr i see two husbands": [0, 65535], "see them adr i see two husbands or": [0, 65535], "them adr i see two husbands or mine": [0, 65535], "adr i see two husbands or mine eyes": [0, 65535], "i see two husbands or mine eyes deceiue": [0, 65535], "see two husbands or mine eyes deceiue me": [0, 65535], "two husbands or mine eyes deceiue me duke": [0, 65535], "husbands or mine eyes deceiue me duke one": [0, 65535], "or mine eyes deceiue me duke one of": [0, 65535], "mine eyes deceiue me duke one of these": [0, 65535], "eyes deceiue me duke one of these men": [0, 65535], "deceiue me duke one of these men is": [0, 65535], "me duke one of these men is genius": [0, 65535], "duke one of these men is genius to": [0, 65535], "one of these men is genius to the": [0, 65535], "of these men is genius to the other": [0, 65535], "these men is genius to the other and": [0, 65535], "men is genius to the other and so": [0, 65535], "is genius to the other and so of": [0, 65535], "genius to the other and so of these": [0, 65535], "to the other and so of these which": [0, 65535], "the other and so of these which is": [0, 65535], "other and so of these which is the": [0, 65535], "and so of these which is the naturall": [0, 65535], "so of these which is the naturall man": [0, 65535], "of these which is the naturall man and": [0, 65535], "these which is the naturall man and which": [0, 65535], "which is the naturall man and which the": [0, 65535], "is the naturall man and which the spirit": [0, 65535], "the naturall man and which the spirit who": [0, 65535], "naturall man and which the spirit who deciphers": [0, 65535], "man and which the spirit who deciphers them": [0, 65535], "and which the spirit who deciphers them s": [0, 65535], "which the spirit who deciphers them s dromio": [0, 65535], "the spirit who deciphers them s dromio i": [0, 65535], "spirit who deciphers them s dromio i sir": [0, 65535], "who deciphers them s dromio i sir am": [0, 65535], "deciphers them s dromio i sir am dromio": [0, 65535], "them s dromio i sir am dromio command": [0, 65535], "s dromio i sir am dromio command him": [0, 65535], "dromio i sir am dromio command him away": [0, 65535], "i sir am dromio command him away e": [0, 65535], "sir am dromio command him away e dro": [0, 65535], "am dromio command him away e dro i": [0, 65535], "dromio command him away e dro i sir": [0, 65535], "command him away e dro i sir am": [0, 65535], "him away e dro i sir am dromio": [0, 65535], "away e dro i sir am dromio pray": [0, 65535], "e dro i sir am dromio pray let": [0, 65535], "dro i sir am dromio pray let me": [0, 65535], "i sir am dromio pray let me stay": [0, 65535], "sir am dromio pray let me stay s": [0, 65535], "am dromio pray let me stay s ant": [0, 65535], "dromio pray let me stay s ant egeon": [0, 65535], "pray let me stay s ant egeon art": [0, 65535], "let me stay s ant egeon art thou": [0, 65535], "me stay s ant egeon art thou not": [0, 65535], "stay s ant egeon art thou not or": [0, 65535], "s ant egeon art thou not or else": [0, 65535], "ant egeon art thou not or else his": [0, 65535], "egeon art thou not or else his ghost": [0, 65535], "art thou not or else his ghost s": [0, 65535], "thou not or else his ghost s drom": [0, 65535], "not or else his ghost s drom oh": [0, 65535], "or else his ghost s drom oh my": [0, 65535], "else his ghost s drom oh my olde": [0, 65535], "his ghost s drom oh my olde master": [0, 65535], "ghost s drom oh my olde master who": [0, 65535], "s drom oh my olde master who hath": [0, 65535], "drom oh my olde master who hath bound": [0, 65535], "oh my olde master who hath bound him": [0, 65535], "my olde master who hath bound him heere": [0, 65535], "olde master who hath bound him heere abb": [0, 65535], "master who hath bound him heere abb who": [0, 65535], "who hath bound him heere abb who euer": [0, 65535], "hath bound him heere abb who euer bound": [0, 65535], "bound him heere abb who euer bound him": [0, 65535], "him heere abb who euer bound him i": [0, 65535], "heere abb who euer bound him i will": [0, 65535], "abb who euer bound him i will lose": [0, 65535], "who euer bound him i will lose his": [0, 65535], "euer bound him i will lose his bonds": [0, 65535], "bound him i will lose his bonds and": [0, 65535], "him i will lose his bonds and gaine": [0, 65535], "i will lose his bonds and gaine a": [0, 65535], "will lose his bonds and gaine a husband": [0, 65535], "lose his bonds and gaine a husband by": [0, 65535], "his bonds and gaine a husband by his": [0, 65535], "bonds and gaine a husband by his libertie": [0, 65535], "and gaine a husband by his libertie speake": [0, 65535], "gaine a husband by his libertie speake olde": [0, 65535], "a husband by his libertie speake olde egeon": [0, 65535], "husband by his libertie speake olde egeon if": [0, 65535], "by his libertie speake olde egeon if thou": [0, 65535], "his libertie speake olde egeon if thou bee'st": [0, 65535], "libertie speake olde egeon if thou bee'st the": [0, 65535], "speake olde egeon if thou bee'st the man": [0, 65535], "olde egeon if thou bee'st the man that": [0, 65535], "egeon if thou bee'st the man that hadst": [0, 65535], "if thou bee'st the man that hadst a": [0, 65535], "thou bee'st the man that hadst a wife": [0, 65535], "bee'st the man that hadst a wife once": [0, 65535], "the man that hadst a wife once call'd": [0, 65535], "man that hadst a wife once call'd \u00e6milia": [0, 65535], "that hadst a wife once call'd \u00e6milia that": [0, 65535], "hadst a wife once call'd \u00e6milia that bore": [0, 65535], "a wife once call'd \u00e6milia that bore thee": [0, 65535], "wife once call'd \u00e6milia that bore thee at": [0, 65535], "once call'd \u00e6milia that bore thee at a": [0, 65535], "call'd \u00e6milia that bore thee at a burthen": [0, 65535], "\u00e6milia that bore thee at a burthen two": [0, 65535], "that bore thee at a burthen two faire": [0, 65535], "bore thee at a burthen two faire sonnes": [0, 65535], "thee at a burthen two faire sonnes oh": [0, 65535], "at a burthen two faire sonnes oh if": [0, 65535], "a burthen two faire sonnes oh if thou": [0, 65535], "burthen two faire sonnes oh if thou bee'st": [0, 65535], "two faire sonnes oh if thou bee'st the": [0, 65535], "faire sonnes oh if thou bee'st the same": [0, 65535], "sonnes oh if thou bee'st the same egeon": [0, 65535], "oh if thou bee'st the same egeon speake": [0, 65535], "if thou bee'st the same egeon speake and": [0, 65535], "thou bee'st the same egeon speake and speake": [0, 65535], "bee'st the same egeon speake and speake vnto": [0, 65535], "the same egeon speake and speake vnto the": [0, 65535], "same egeon speake and speake vnto the same": [0, 65535], "egeon speake and speake vnto the same \u00e6milia": [0, 65535], "speake and speake vnto the same \u00e6milia duke": [0, 65535], "and speake vnto the same \u00e6milia duke why": [0, 65535], "speake vnto the same \u00e6milia duke why heere": [0, 65535], "vnto the same \u00e6milia duke why heere begins": [0, 65535], "the same \u00e6milia duke why heere begins his": [0, 65535], "same \u00e6milia duke why heere begins his morning": [0, 65535], "\u00e6milia duke why heere begins his morning storie": [0, 65535], "duke why heere begins his morning storie right": [0, 65535], "why heere begins his morning storie right these": [0, 65535], "heere begins his morning storie right these twoantipholus": [0, 65535], "begins his morning storie right these twoantipholus these": [0, 65535], "his morning storie right these twoantipholus these two": [0, 65535], "morning storie right these twoantipholus these two so": [0, 65535], "storie right these twoantipholus these two so like": [0, 65535], "right these twoantipholus these two so like and": [0, 65535], "these twoantipholus these two so like and these": [0, 65535], "twoantipholus these two so like and these two": [0, 65535], "these two so like and these two dromio's": [0, 65535], "two so like and these two dromio's one": [0, 65535], "so like and these two dromio's one in": [0, 65535], "like and these two dromio's one in semblance": [0, 65535], "and these two dromio's one in semblance besides": [0, 65535], "these two dromio's one in semblance besides her": [0, 65535], "two dromio's one in semblance besides her vrging": [0, 65535], "dromio's one in semblance besides her vrging of": [0, 65535], "one in semblance besides her vrging of her": [0, 65535], "in semblance besides her vrging of her wracke": [0, 65535], "semblance besides her vrging of her wracke at": [0, 65535], "besides her vrging of her wracke at sea": [0, 65535], "her vrging of her wracke at sea these": [0, 65535], "vrging of her wracke at sea these are": [0, 65535], "of her wracke at sea these are the": [0, 65535], "her wracke at sea these are the parents": [0, 65535], "wracke at sea these are the parents to": [0, 65535], "at sea these are the parents to these": [0, 65535], "sea these are the parents to these children": [0, 65535], "these are the parents to these children which": [0, 65535], "are the parents to these children which accidentally": [0, 65535], "the parents to these children which accidentally are": [0, 65535], "parents to these children which accidentally are met": [0, 65535], "to these children which accidentally are met together": [0, 65535], "these children which accidentally are met together fa": [0, 65535], "children which accidentally are met together fa if": [0, 65535], "which accidentally are met together fa if i": [0, 65535], "accidentally are met together fa if i dreame": [0, 65535], "are met together fa if i dreame not": [0, 65535], "met together fa if i dreame not thou": [0, 65535], "together fa if i dreame not thou art": [0, 65535], "fa if i dreame not thou art \u00e6milia": [0, 65535], "if i dreame not thou art \u00e6milia if": [0, 65535], "i dreame not thou art \u00e6milia if thou": [0, 65535], "dreame not thou art \u00e6milia if thou art": [0, 65535], "not thou art \u00e6milia if thou art she": [0, 65535], "thou art \u00e6milia if thou art she tell": [0, 65535], "art \u00e6milia if thou art she tell me": [0, 65535], "\u00e6milia if thou art she tell me where": [0, 65535], "if thou art she tell me where is": [0, 65535], "thou art she tell me where is that": [0, 65535], "art she tell me where is that sonne": [0, 65535], "she tell me where is that sonne that": [0, 65535], "tell me where is that sonne that floated": [0, 65535], "me where is that sonne that floated with": [0, 65535], "where is that sonne that floated with thee": [0, 65535], "is that sonne that floated with thee on": [0, 65535], "that sonne that floated with thee on the": [0, 65535], "sonne that floated with thee on the fatall": [0, 65535], "that floated with thee on the fatall rafte": [0, 65535], "floated with thee on the fatall rafte abb": [0, 65535], "with thee on the fatall rafte abb by": [0, 65535], "thee on the fatall rafte abb by men": [0, 65535], "on the fatall rafte abb by men of": [0, 65535], "the fatall rafte abb by men of epidamium": [0, 65535], "fatall rafte abb by men of epidamium he": [0, 65535], "rafte abb by men of epidamium he and": [0, 65535], "abb by men of epidamium he and i": [0, 65535], "by men of epidamium he and i and": [0, 65535], "men of epidamium he and i and the": [0, 65535], "of epidamium he and i and the twin": [0, 65535], "epidamium he and i and the twin dromio": [0, 65535], "he and i and the twin dromio all": [0, 65535], "and i and the twin dromio all were": [0, 65535], "i and the twin dromio all were taken": [0, 65535], "and the twin dromio all were taken vp": [0, 65535], "the twin dromio all were taken vp but": [0, 65535], "twin dromio all were taken vp but by": [0, 65535], "dromio all were taken vp but by and": [0, 65535], "all were taken vp but by and by": [0, 65535], "were taken vp but by and by rude": [0, 65535], "taken vp but by and by rude fishermen": [0, 65535], "vp but by and by rude fishermen of": [0, 65535], "but by and by rude fishermen of corinth": [0, 65535], "by and by rude fishermen of corinth by": [0, 65535], "and by rude fishermen of corinth by force": [0, 65535], "by rude fishermen of corinth by force tooke": [0, 65535], "rude fishermen of corinth by force tooke dromio": [0, 65535], "fishermen of corinth by force tooke dromio and": [0, 65535], "of corinth by force tooke dromio and my": [0, 65535], "corinth by force tooke dromio and my sonne": [0, 65535], "by force tooke dromio and my sonne from": [0, 65535], "force tooke dromio and my sonne from them": [0, 65535], "tooke dromio and my sonne from them and": [0, 65535], "dromio and my sonne from them and me": [0, 65535], "and my sonne from them and me they": [0, 65535], "my sonne from them and me they left": [0, 65535], "sonne from them and me they left with": [0, 65535], "from them and me they left with those": [0, 65535], "them and me they left with those of": [0, 65535], "and me they left with those of epidamium": [0, 65535], "me they left with those of epidamium what": [0, 65535], "they left with those of epidamium what then": [0, 65535], "left with those of epidamium what then became": [0, 65535], "with those of epidamium what then became of": [0, 65535], "those of epidamium what then became of them": [0, 65535], "of epidamium what then became of them i": [0, 65535], "epidamium what then became of them i cannot": [0, 65535], "what then became of them i cannot tell": [0, 65535], "then became of them i cannot tell i": [0, 65535], "became of them i cannot tell i to": [0, 65535], "of them i cannot tell i to this": [0, 65535], "them i cannot tell i to this fortune": [0, 65535], "i cannot tell i to this fortune that": [0, 65535], "cannot tell i to this fortune that you": [0, 65535], "tell i to this fortune that you see": [0, 65535], "i to this fortune that you see mee": [0, 65535], "to this fortune that you see mee in": [0, 65535], "this fortune that you see mee in duke": [0, 65535], "fortune that you see mee in duke antipholus": [0, 65535], "that you see mee in duke antipholus thou": [0, 65535], "you see mee in duke antipholus thou cam'st": [0, 65535], "see mee in duke antipholus thou cam'st from": [0, 65535], "mee in duke antipholus thou cam'st from corinth": [0, 65535], "in duke antipholus thou cam'st from corinth first": [0, 65535], "duke antipholus thou cam'st from corinth first s": [0, 65535], "antipholus thou cam'st from corinth first s ant": [0, 65535], "thou cam'st from corinth first s ant no": [0, 65535], "cam'st from corinth first s ant no sir": [0, 65535], "from corinth first s ant no sir not": [0, 65535], "corinth first s ant no sir not i": [0, 65535], "first s ant no sir not i i": [0, 65535], "s ant no sir not i i came": [0, 65535], "ant no sir not i i came from": [0, 65535], "no sir not i i came from siracuse": [0, 65535], "sir not i i came from siracuse duke": [0, 65535], "not i i came from siracuse duke stay": [0, 65535], "i i came from siracuse duke stay stand": [0, 65535], "i came from siracuse duke stay stand apart": [0, 65535], "came from siracuse duke stay stand apart i": [0, 65535], "from siracuse duke stay stand apart i know": [0, 65535], "siracuse duke stay stand apart i know not": [0, 65535], "duke stay stand apart i know not which": [0, 65535], "stay stand apart i know not which is": [0, 65535], "stand apart i know not which is which": [0, 65535], "apart i know not which is which e": [0, 65535], "i know not which is which e ant": [0, 65535], "know not which is which e ant i": [0, 65535], "not which is which e ant i came": [0, 65535], "which is which e ant i came from": [0, 65535], "is which e ant i came from corinth": [0, 65535], "which e ant i came from corinth my": [0, 65535], "e ant i came from corinth my most": [0, 65535], "ant i came from corinth my most gracious": [0, 65535], "i came from corinth my most gracious lord": [0, 65535], "came from corinth my most gracious lord e": [0, 65535], "from corinth my most gracious lord e dro": [0, 65535], "corinth my most gracious lord e dro and": [0, 65535], "my most gracious lord e dro and i": [0, 65535], "most gracious lord e dro and i with": [0, 65535], "gracious lord e dro and i with him": [0, 65535], "lord e dro and i with him e": [0, 65535], "e dro and i with him e ant": [0, 65535], "dro and i with him e ant brought": [0, 65535], "and i with him e ant brought to": [0, 65535], "i with him e ant brought to this": [0, 65535], "with him e ant brought to this town": [0, 65535], "him e ant brought to this town by": [0, 65535], "e ant brought to this town by that": [0, 65535], "ant brought to this town by that most": [0, 65535], "brought to this town by that most famous": [0, 65535], "to this town by that most famous warriour": [0, 65535], "this town by that most famous warriour duke": [0, 65535], "town by that most famous warriour duke menaphon": [0, 65535], "by that most famous warriour duke menaphon your": [0, 65535], "that most famous warriour duke menaphon your most": [0, 65535], "most famous warriour duke menaphon your most renowned": [0, 65535], "famous warriour duke menaphon your most renowned vnckle": [0, 65535], "warriour duke menaphon your most renowned vnckle adr": [0, 65535], "duke menaphon your most renowned vnckle adr which": [0, 65535], "menaphon your most renowned vnckle adr which of": [0, 65535], "your most renowned vnckle adr which of you": [0, 65535], "most renowned vnckle adr which of you two": [0, 65535], "renowned vnckle adr which of you two did": [0, 65535], "vnckle adr which of you two did dine": [0, 65535], "adr which of you two did dine with": [0, 65535], "which of you two did dine with me": [0, 65535], "of you two did dine with me to": [0, 65535], "you two did dine with me to day": [0, 65535], "two did dine with me to day s": [0, 65535], "did dine with me to day s ant": [0, 65535], "dine with me to day s ant i": [0, 65535], "with me to day s ant i gentle": [0, 65535], "me to day s ant i gentle mistris": [0, 65535], "to day s ant i gentle mistris adr": [0, 65535], "day s ant i gentle mistris adr and": [0, 65535], "s ant i gentle mistris adr and are": [0, 65535], "ant i gentle mistris adr and are not": [0, 65535], "i gentle mistris adr and are not you": [0, 65535], "gentle mistris adr and are not you my": [0, 65535], "mistris adr and are not you my husband": [0, 65535], "adr and are not you my husband e": [0, 65535], "and are not you my husband e ant": [0, 65535], "are not you my husband e ant no": [0, 65535], "not you my husband e ant no i": [0, 65535], "you my husband e ant no i say": [0, 65535], "my husband e ant no i say nay": [0, 65535], "husband e ant no i say nay to": [0, 65535], "e ant no i say nay to that": [0, 65535], "ant no i say nay to that s": [0, 65535], "no i say nay to that s ant": [0, 65535], "i say nay to that s ant and": [0, 65535], "say nay to that s ant and so": [0, 65535], "nay to that s ant and so do": [0, 65535], "to that s ant and so do i": [0, 65535], "that s ant and so do i yet": [0, 65535], "s ant and so do i yet did": [0, 65535], "ant and so do i yet did she": [0, 65535], "and so do i yet did she call": [0, 65535], "so do i yet did she call me": [0, 65535], "do i yet did she call me so": [0, 65535], "i yet did she call me so and": [0, 65535], "yet did she call me so and this": [0, 65535], "did she call me so and this faire": [0, 65535], "she call me so and this faire gentlewoman": [0, 65535], "call me so and this faire gentlewoman her": [0, 65535], "me so and this faire gentlewoman her sister": [0, 65535], "so and this faire gentlewoman her sister heere": [0, 65535], "and this faire gentlewoman her sister heere did": [0, 65535], "this faire gentlewoman her sister heere did call": [0, 65535], "faire gentlewoman her sister heere did call me": [0, 65535], "gentlewoman her sister heere did call me brother": [0, 65535], "her sister heere did call me brother what": [0, 65535], "sister heere did call me brother what i": [0, 65535], "heere did call me brother what i told": [0, 65535], "did call me brother what i told you": [0, 65535], "call me brother what i told you then": [0, 65535], "me brother what i told you then i": [0, 65535], "brother what i told you then i hope": [0, 65535], "what i told you then i hope i": [0, 65535], "i told you then i hope i shall": [0, 65535], "told you then i hope i shall haue": [0, 65535], "you then i hope i shall haue leisure": [0, 65535], "then i hope i shall haue leisure to": [0, 65535], "i hope i shall haue leisure to make": [0, 65535], "hope i shall haue leisure to make good": [0, 65535], "i shall haue leisure to make good if": [0, 65535], "shall haue leisure to make good if this": [0, 65535], "haue leisure to make good if this be": [0, 65535], "leisure to make good if this be not": [0, 65535], "to make good if this be not a": [0, 65535], "make good if this be not a dreame": [0, 65535], "good if this be not a dreame i": [0, 65535], "if this be not a dreame i see": [0, 65535], "this be not a dreame i see and": [0, 65535], "be not a dreame i see and heare": [0, 65535], "not a dreame i see and heare goldsmith": [0, 65535], "a dreame i see and heare goldsmith that": [0, 65535], "dreame i see and heare goldsmith that is": [0, 65535], "i see and heare goldsmith that is the": [0, 65535], "see and heare goldsmith that is the chaine": [0, 65535], "and heare goldsmith that is the chaine sir": [0, 65535], "heare goldsmith that is the chaine sir which": [0, 65535], "goldsmith that is the chaine sir which you": [0, 65535], "that is the chaine sir which you had": [0, 65535], "is the chaine sir which you had of": [0, 65535], "the chaine sir which you had of mee": [0, 65535], "chaine sir which you had of mee s": [0, 65535], "sir which you had of mee s ant": [0, 65535], "which you had of mee s ant i": [0, 65535], "you had of mee s ant i thinke": [0, 65535], "had of mee s ant i thinke it": [0, 65535], "of mee s ant i thinke it be": [0, 65535], "mee s ant i thinke it be sir": [0, 65535], "s ant i thinke it be sir i": [0, 65535], "ant i thinke it be sir i denie": [0, 65535], "i thinke it be sir i denie it": [0, 65535], "thinke it be sir i denie it not": [0, 65535], "it be sir i denie it not e": [0, 65535], "be sir i denie it not e ant": [0, 65535], "sir i denie it not e ant and": [0, 65535], "i denie it not e ant and you": [0, 65535], "denie it not e ant and you sir": [0, 65535], "it not e ant and you sir for": [0, 65535], "not e ant and you sir for this": [0, 65535], "e ant and you sir for this chaine": [0, 65535], "ant and you sir for this chaine arrested": [0, 65535], "and you sir for this chaine arrested me": [0, 65535], "you sir for this chaine arrested me gold": [0, 65535], "sir for this chaine arrested me gold i": [0, 65535], "for this chaine arrested me gold i thinke": [0, 65535], "this chaine arrested me gold i thinke i": [0, 65535], "chaine arrested me gold i thinke i did": [0, 65535], "arrested me gold i thinke i did sir": [0, 65535], "me gold i thinke i did sir i": [0, 65535], "gold i thinke i did sir i deny": [0, 65535], "i thinke i did sir i deny it": [0, 65535], "thinke i did sir i deny it not": [0, 65535], "i did sir i deny it not adr": [0, 65535], "did sir i deny it not adr i": [0, 65535], "sir i deny it not adr i sent": [0, 65535], "i deny it not adr i sent you": [0, 65535], "deny it not adr i sent you monie": [0, 65535], "it not adr i sent you monie sir": [0, 65535], "not adr i sent you monie sir to": [0, 65535], "adr i sent you monie sir to be": [0, 65535], "i sent you monie sir to be your": [0, 65535], "sent you monie sir to be your baile": [0, 65535], "you monie sir to be your baile by": [0, 65535], "monie sir to be your baile by dromio": [0, 65535], "sir to be your baile by dromio but": [0, 65535], "to be your baile by dromio but i": [0, 65535], "be your baile by dromio but i thinke": [0, 65535], "your baile by dromio but i thinke he": [0, 65535], "baile by dromio but i thinke he brought": [0, 65535], "by dromio but i thinke he brought it": [0, 65535], "dromio but i thinke he brought it not": [0, 65535], "but i thinke he brought it not e": [0, 65535], "i thinke he brought it not e dro": [0, 65535], "thinke he brought it not e dro no": [0, 65535], "he brought it not e dro no none": [0, 65535], "brought it not e dro no none by": [0, 65535], "it not e dro no none by me": [0, 65535], "not e dro no none by me s": [0, 65535], "e dro no none by me s ant": [0, 65535], "dro no none by me s ant this": [0, 65535], "no none by me s ant this purse": [0, 65535], "none by me s ant this purse of": [0, 65535], "by me s ant this purse of duckets": [0, 65535], "me s ant this purse of duckets i": [0, 65535], "s ant this purse of duckets i receiu'd": [0, 65535], "ant this purse of duckets i receiu'd from": [0, 65535], "this purse of duckets i receiu'd from you": [0, 65535], "purse of duckets i receiu'd from you and": [0, 65535], "of duckets i receiu'd from you and dromio": [0, 65535], "duckets i receiu'd from you and dromio my": [0, 65535], "i receiu'd from you and dromio my man": [0, 65535], "receiu'd from you and dromio my man did": [0, 65535], "from you and dromio my man did bring": [0, 65535], "you and dromio my man did bring them": [0, 65535], "and dromio my man did bring them me": [0, 65535], "dromio my man did bring them me i": [0, 65535], "my man did bring them me i see": [0, 65535], "man did bring them me i see we": [0, 65535], "did bring them me i see we still": [0, 65535], "bring them me i see we still did": [0, 65535], "them me i see we still did meete": [0, 65535], "me i see we still did meete each": [0, 65535], "i see we still did meete each others": [0, 65535], "see we still did meete each others man": [0, 65535], "we still did meete each others man and": [0, 65535], "still did meete each others man and i": [0, 65535], "did meete each others man and i was": [0, 65535], "meete each others man and i was tane": [0, 65535], "each others man and i was tane for": [0, 65535], "others man and i was tane for him": [0, 65535], "man and i was tane for him and": [0, 65535], "and i was tane for him and he": [0, 65535], "i was tane for him and he for": [0, 65535], "was tane for him and he for me": [0, 65535], "tane for him and he for me and": [0, 65535], "for him and he for me and thereupon": [0, 65535], "him and he for me and thereupon these": [0, 65535], "and he for me and thereupon these errors": [0, 65535], "he for me and thereupon these errors are": [0, 65535], "for me and thereupon these errors are arose": [0, 65535], "me and thereupon these errors are arose e": [0, 65535], "and thereupon these errors are arose e ant": [0, 65535], "thereupon these errors are arose e ant these": [0, 65535], "these errors are arose e ant these duckets": [0, 65535], "errors are arose e ant these duckets pawne": [0, 65535], "are arose e ant these duckets pawne i": [0, 65535], "arose e ant these duckets pawne i for": [0, 65535], "e ant these duckets pawne i for my": [0, 65535], "ant these duckets pawne i for my father": [0, 65535], "these duckets pawne i for my father heere": [0, 65535], "duckets pawne i for my father heere duke": [0, 65535], "pawne i for my father heere duke it": [0, 65535], "i for my father heere duke it shall": [0, 65535], "for my father heere duke it shall not": [0, 65535], "my father heere duke it shall not neede": [0, 65535], "father heere duke it shall not neede thy": [0, 65535], "heere duke it shall not neede thy father": [0, 65535], "duke it shall not neede thy father hath": [0, 65535], "it shall not neede thy father hath his": [0, 65535], "shall not neede thy father hath his life": [0, 65535], "not neede thy father hath his life cur": [0, 65535], "neede thy father hath his life cur sir": [0, 65535], "thy father hath his life cur sir i": [0, 65535], "father hath his life cur sir i must": [0, 65535], "hath his life cur sir i must haue": [0, 65535], "his life cur sir i must haue that": [0, 65535], "life cur sir i must haue that diamond": [0, 65535], "cur sir i must haue that diamond from": [0, 65535], "sir i must haue that diamond from you": [0, 65535], "i must haue that diamond from you e": [0, 65535], "must haue that diamond from you e ant": [0, 65535], "haue that diamond from you e ant there": [0, 65535], "that diamond from you e ant there take": [0, 65535], "diamond from you e ant there take it": [0, 65535], "from you e ant there take it and": [0, 65535], "you e ant there take it and much": [0, 65535], "e ant there take it and much thanks": [0, 65535], "ant there take it and much thanks for": [0, 65535], "there take it and much thanks for my": [0, 65535], "take it and much thanks for my good": [0, 65535], "it and much thanks for my good cheere": [0, 65535], "and much thanks for my good cheere abb": [0, 65535], "much thanks for my good cheere abb renowned": [0, 65535], "thanks for my good cheere abb renowned duke": [0, 65535], "for my good cheere abb renowned duke vouchsafe": [0, 65535], "my good cheere abb renowned duke vouchsafe to": [0, 65535], "good cheere abb renowned duke vouchsafe to take": [0, 65535], "cheere abb renowned duke vouchsafe to take the": [0, 65535], "abb renowned duke vouchsafe to take the paines": [0, 65535], "renowned duke vouchsafe to take the paines to": [0, 65535], "duke vouchsafe to take the paines to go": [0, 65535], "vouchsafe to take the paines to go with": [0, 65535], "to take the paines to go with vs": [0, 65535], "take the paines to go with vs into": [0, 65535], "the paines to go with vs into the": [0, 65535], "paines to go with vs into the abbey": [0, 65535], "to go with vs into the abbey heere": [0, 65535], "go with vs into the abbey heere and": [0, 65535], "with vs into the abbey heere and heare": [0, 65535], "vs into the abbey heere and heare at": [0, 65535], "into the abbey heere and heare at large": [0, 65535], "the abbey heere and heare at large discoursed": [0, 65535], "abbey heere and heare at large discoursed all": [0, 65535], "heere and heare at large discoursed all our": [0, 65535], "and heare at large discoursed all our fortunes": [0, 65535], "heare at large discoursed all our fortunes and": [0, 65535], "at large discoursed all our fortunes and all": [0, 65535], "large discoursed all our fortunes and all that": [0, 65535], "discoursed all our fortunes and all that are": [0, 65535], "all our fortunes and all that are assembled": [0, 65535], "our fortunes and all that are assembled in": [0, 65535], "fortunes and all that are assembled in this": [0, 65535], "and all that are assembled in this place": [0, 65535], "all that are assembled in this place that": [0, 65535], "that are assembled in this place that by": [0, 65535], "are assembled in this place that by this": [0, 65535], "assembled in this place that by this simpathized": [0, 65535], "in this place that by this simpathized one": [0, 65535], "this place that by this simpathized one daies": [0, 65535], "place that by this simpathized one daies error": [0, 65535], "that by this simpathized one daies error haue": [0, 65535], "by this simpathized one daies error haue suffer'd": [0, 65535], "this simpathized one daies error haue suffer'd wrong": [0, 65535], "simpathized one daies error haue suffer'd wrong goe": [0, 65535], "one daies error haue suffer'd wrong goe keepe": [0, 65535], "daies error haue suffer'd wrong goe keepe vs": [0, 65535], "error haue suffer'd wrong goe keepe vs companie": [0, 65535], "haue suffer'd wrong goe keepe vs companie and": [0, 65535], "suffer'd wrong goe keepe vs companie and we": [0, 65535], "wrong goe keepe vs companie and we shall": [0, 65535], "goe keepe vs companie and we shall make": [0, 65535], "keepe vs companie and we shall make full": [0, 65535], "vs companie and we shall make full satisfaction": [0, 65535], "companie and we shall make full satisfaction thirtie": [0, 65535], "and we shall make full satisfaction thirtie three": [0, 65535], "we shall make full satisfaction thirtie three yeares": [0, 65535], "shall make full satisfaction thirtie three yeares haue": [0, 65535], "make full satisfaction thirtie three yeares haue i": [0, 65535], "full satisfaction thirtie three yeares haue i but": [0, 65535], "satisfaction thirtie three yeares haue i but gone": [0, 65535], "thirtie three yeares haue i but gone in": [0, 65535], "three yeares haue i but gone in trauaile": [0, 65535], "yeares haue i but gone in trauaile of": [0, 65535], "haue i but gone in trauaile of you": [0, 65535], "i but gone in trauaile of you my": [0, 65535], "but gone in trauaile of you my sonnes": [0, 65535], "gone in trauaile of you my sonnes and": [0, 65535], "in trauaile of you my sonnes and till": [0, 65535], "trauaile of you my sonnes and till this": [0, 65535], "of you my sonnes and till this present": [0, 65535], "you my sonnes and till this present houre": [0, 65535], "my sonnes and till this present houre my": [0, 65535], "sonnes and till this present houre my heauie": [0, 65535], "and till this present houre my heauie burthen": [0, 65535], "till this present houre my heauie burthen are": [0, 65535], "this present houre my heauie burthen are deliuered": [0, 65535], "present houre my heauie burthen are deliuered the": [0, 65535], "houre my heauie burthen are deliuered the duke": [0, 65535], "my heauie burthen are deliuered the duke my": [0, 65535], "heauie burthen are deliuered the duke my husband": [0, 65535], "burthen are deliuered the duke my husband and": [0, 65535], "are deliuered the duke my husband and my": [0, 65535], "deliuered the duke my husband and my children": [0, 65535], "the duke my husband and my children both": [0, 65535], "duke my husband and my children both and": [0, 65535], "my husband and my children both and you": [0, 65535], "husband and my children both and you the": [0, 65535], "and my children both and you the kalenders": [0, 65535], "my children both and you the kalenders of": [0, 65535], "children both and you the kalenders of their": [0, 65535], "both and you the kalenders of their natiuity": [0, 65535], "and you the kalenders of their natiuity go": [0, 65535], "you the kalenders of their natiuity go to": [0, 65535], "the kalenders of their natiuity go to a": [0, 65535], "kalenders of their natiuity go to a gossips": [0, 65535], "of their natiuity go to a gossips feast": [0, 65535], "their natiuity go to a gossips feast and": [0, 65535], "natiuity go to a gossips feast and go": [0, 65535], "go to a gossips feast and go with": [0, 65535], "to a gossips feast and go with mee": [0, 65535], "a gossips feast and go with mee after": [0, 65535], "gossips feast and go with mee after so": [0, 65535], "feast and go with mee after so long": [0, 65535], "and go with mee after so long greefe": [0, 65535], "go with mee after so long greefe such": [0, 65535], "with mee after so long greefe such natiuitie": [0, 65535], "mee after so long greefe such natiuitie duke": [0, 65535], "after so long greefe such natiuitie duke with": [0, 65535], "so long greefe such natiuitie duke with all": [0, 65535], "long greefe such natiuitie duke with all my": [0, 65535], "greefe such natiuitie duke with all my heart": [0, 65535], "such natiuitie duke with all my heart ile": [0, 65535], "natiuitie duke with all my heart ile gossip": [0, 65535], "duke with all my heart ile gossip at": [0, 65535], "with all my heart ile gossip at this": [0, 65535], "all my heart ile gossip at this feast": [0, 65535], "my heart ile gossip at this feast exeunt": [0, 65535], "heart ile gossip at this feast exeunt omnes": [0, 65535], "ile gossip at this feast exeunt omnes manet": [0, 65535], "gossip at this feast exeunt omnes manet the": [0, 65535], "at this feast exeunt omnes manet the two": [0, 65535], "this feast exeunt omnes manet the two dromio's": [0, 65535], "feast exeunt omnes manet the two dromio's and": [0, 65535], "exeunt omnes manet the two dromio's and two": [0, 65535], "omnes manet the two dromio's and two brothers": [0, 65535], "manet the two dromio's and two brothers s": [0, 65535], "the two dromio's and two brothers s dro": [0, 65535], "two dromio's and two brothers s dro mast": [0, 65535], "dromio's and two brothers s dro mast shall": [0, 65535], "and two brothers s dro mast shall i": [0, 65535], "two brothers s dro mast shall i fetch": [0, 65535], "brothers s dro mast shall i fetch your": [0, 65535], "s dro mast shall i fetch your stuffe": [0, 65535], "dro mast shall i fetch your stuffe from": [0, 65535], "mast shall i fetch your stuffe from shipbord": [0, 65535], "shall i fetch your stuffe from shipbord e": [0, 65535], "i fetch your stuffe from shipbord e an": [0, 65535], "fetch your stuffe from shipbord e an dromio": [0, 65535], "your stuffe from shipbord e an dromio what": [0, 65535], "stuffe from shipbord e an dromio what stuffe": [0, 65535], "from shipbord e an dromio what stuffe of": [0, 65535], "shipbord e an dromio what stuffe of mine": [0, 65535], "e an dromio what stuffe of mine hast": [0, 65535], "an dromio what stuffe of mine hast thou": [0, 65535], "dromio what stuffe of mine hast thou imbarkt": [0, 65535], "what stuffe of mine hast thou imbarkt s": [0, 65535], "stuffe of mine hast thou imbarkt s dro": [0, 65535], "of mine hast thou imbarkt s dro your": [0, 65535], "mine hast thou imbarkt s dro your goods": [0, 65535], "hast thou imbarkt s dro your goods that": [0, 65535], "thou imbarkt s dro your goods that lay": [0, 65535], "imbarkt s dro your goods that lay at": [0, 65535], "s dro your goods that lay at host": [0, 65535], "dro your goods that lay at host sir": [0, 65535], "your goods that lay at host sir in": [0, 65535], "goods that lay at host sir in the": [0, 65535], "that lay at host sir in the centaur": [0, 65535], "lay at host sir in the centaur s": [0, 65535], "at host sir in the centaur s ant": [0, 65535], "host sir in the centaur s ant he": [0, 65535], "sir in the centaur s ant he speakes": [0, 65535], "in the centaur s ant he speakes to": [0, 65535], "the centaur s ant he speakes to me": [0, 65535], "centaur s ant he speakes to me i": [0, 65535], "s ant he speakes to me i am": [0, 65535], "ant he speakes to me i am your": [0, 65535], "he speakes to me i am your master": [0, 65535], "speakes to me i am your master dromio": [0, 65535], "to me i am your master dromio come": [0, 65535], "me i am your master dromio come go": [0, 65535], "i am your master dromio come go with": [0, 65535], "am your master dromio come go with vs": [0, 65535], "your master dromio come go with vs wee'l": [0, 65535], "master dromio come go with vs wee'l looke": [0, 65535], "dromio come go with vs wee'l looke to": [0, 65535], "come go with vs wee'l looke to that": [0, 65535], "go with vs wee'l looke to that anon": [0, 65535], "with vs wee'l looke to that anon embrace": [0, 65535], "vs wee'l looke to that anon embrace thy": [0, 65535], "wee'l looke to that anon embrace thy brother": [0, 65535], "looke to that anon embrace thy brother there": [0, 65535], "to that anon embrace thy brother there reioyce": [0, 65535], "that anon embrace thy brother there reioyce with": [0, 65535], "anon embrace thy brother there reioyce with him": [0, 65535], "embrace thy brother there reioyce with him exit": [0, 65535], "thy brother there reioyce with him exit s": [0, 65535], "brother there reioyce with him exit s dro": [0, 65535], "there reioyce with him exit s dro there": [0, 65535], "reioyce with him exit s dro there is": [0, 65535], "with him exit s dro there is a": [0, 65535], "him exit s dro there is a fat": [0, 65535], "exit s dro there is a fat friend": [0, 65535], "s dro there is a fat friend at": [0, 65535], "dro there is a fat friend at your": [0, 65535], "there is a fat friend at your masters": [0, 65535], "is a fat friend at your masters house": [0, 65535], "a fat friend at your masters house that": [0, 65535], "fat friend at your masters house that kitchin'd": [0, 65535], "friend at your masters house that kitchin'd me": [0, 65535], "at your masters house that kitchin'd me for": [0, 65535], "your masters house that kitchin'd me for you": [0, 65535], "masters house that kitchin'd me for you to": [0, 65535], "house that kitchin'd me for you to day": [0, 65535], "that kitchin'd me for you to day at": [0, 65535], "kitchin'd me for you to day at dinner": [0, 65535], "me for you to day at dinner she": [0, 65535], "for you to day at dinner she now": [0, 65535], "you to day at dinner she now shall": [0, 65535], "to day at dinner she now shall be": [0, 65535], "day at dinner she now shall be my": [0, 65535], "at dinner she now shall be my sister": [0, 65535], "dinner she now shall be my sister not": [0, 65535], "she now shall be my sister not my": [0, 65535], "now shall be my sister not my wife": [0, 65535], "shall be my sister not my wife e": [0, 65535], "be my sister not my wife e d": [0, 65535], "my sister not my wife e d me": [0, 65535], "sister not my wife e d me thinks": [0, 65535], "not my wife e d me thinks you": [0, 65535], "my wife e d me thinks you are": [0, 65535], "wife e d me thinks you are my": [0, 65535], "e d me thinks you are my glasse": [0, 65535], "d me thinks you are my glasse not": [0, 65535], "me thinks you are my glasse not my": [0, 65535], "thinks you are my glasse not my brother": [0, 65535], "you are my glasse not my brother i": [0, 65535], "are my glasse not my brother i see": [0, 65535], "my glasse not my brother i see by": [0, 65535], "glasse not my brother i see by you": [0, 65535], "not my brother i see by you i": [0, 65535], "my brother i see by you i am": [0, 65535], "brother i see by you i am a": [0, 65535], "i see by you i am a sweet": [0, 65535], "see by you i am a sweet fac'd": [0, 65535], "by you i am a sweet fac'd youth": [0, 65535], "you i am a sweet fac'd youth will": [0, 65535], "i am a sweet fac'd youth will you": [0, 65535], "am a sweet fac'd youth will you walke": [0, 65535], "a sweet fac'd youth will you walke in": [0, 65535], "sweet fac'd youth will you walke in to": [0, 65535], "fac'd youth will you walke in to see": [0, 65535], "youth will you walke in to see their": [0, 65535], "will you walke in to see their gossipping": [0, 65535], "you walke in to see their gossipping s": [0, 65535], "walke in to see their gossipping s dro": [0, 65535], "in to see their gossipping s dro not": [0, 65535], "to see their gossipping s dro not i": [0, 65535], "see their gossipping s dro not i sir": [0, 65535], "their gossipping s dro not i sir you": [0, 65535], "gossipping s dro not i sir you are": [0, 65535], "s dro not i sir you are my": [0, 65535], "dro not i sir you are my elder": [0, 65535], "not i sir you are my elder e": [0, 65535], "i sir you are my elder e dro": [0, 65535], "sir you are my elder e dro that's": [0, 65535], "you are my elder e dro that's a": [0, 65535], "are my elder e dro that's a question": [0, 65535], "my elder e dro that's a question how": [0, 65535], "elder e dro that's a question how shall": [0, 65535], "e dro that's a question how shall we": [0, 65535], "dro that's a question how shall we trie": [0, 65535], "that's a question how shall we trie it": [0, 65535], "a question how shall we trie it s": [0, 65535], "question how shall we trie it s dro": [0, 65535], "how shall we trie it s dro wee'l": [0, 65535], "shall we trie it s dro wee'l draw": [0, 65535], "we trie it s dro wee'l draw cuts": [0, 65535], "trie it s dro wee'l draw cuts for": [0, 65535], "it s dro wee'l draw cuts for the": [0, 65535], "s dro wee'l draw cuts for the signior": [0, 65535], "dro wee'l draw cuts for the signior till": [0, 65535], "wee'l draw cuts for the signior till then": [0, 65535], "draw cuts for the signior till then lead": [0, 65535], "cuts for the signior till then lead thou": [0, 65535], "for the signior till then lead thou first": [0, 65535], "the signior till then lead thou first e": [0, 65535], "signior till then lead thou first e dro": [0, 65535], "till then lead thou first e dro nay": [0, 65535], "then lead thou first e dro nay then": [0, 65535], "lead thou first e dro nay then thus": [0, 65535], "thou first e dro nay then thus we": [0, 65535], "first e dro nay then thus we came": [0, 65535], "e dro nay then thus we came into": [0, 65535], "dro nay then thus we came into the": [0, 65535], "nay then thus we came into the world": [0, 65535], "then thus we came into the world like": [0, 65535], "thus we came into the world like brother": [0, 65535], "we came into the world like brother and": [0, 65535], "came into the world like brother and brother": [0, 65535], "into the world like brother and brother and": [0, 65535], "the world like brother and brother and now": [0, 65535], "world like brother and brother and now let's": [0, 65535], "like brother and brother and now let's go": [0, 65535], "brother and brother and now let's go hand": [0, 65535], "and brother and now let's go hand in": [0, 65535], "brother and now let's go hand in hand": [0, 65535], "and now let's go hand in hand not": [0, 65535], "now let's go hand in hand not one": [0, 65535], "let's go hand in hand not one before": [0, 65535], "go hand in hand not one before another": [0, 65535], "hand in hand not one before another exeunt": [0, 65535], "in hand not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant and the": [0, 65535], "quintus sc\u0153na prima enter the merchant and the goldsmith": [0, 65535], "sc\u0153na prima enter the merchant and the goldsmith gold": [0, 65535], "prima enter the merchant and the goldsmith gold i": [0, 65535], "enter the merchant and the goldsmith gold i am": [0, 65535], "the merchant and the goldsmith gold i am sorry": [0, 65535], "merchant and the goldsmith gold i am sorry sir": [0, 65535], "and the goldsmith gold i am sorry sir that": [0, 65535], "the goldsmith gold i am sorry sir that i": [0, 65535], "goldsmith gold i am sorry sir that i haue": [0, 65535], "gold i am sorry sir that i haue hindred": [0, 65535], "i am sorry sir that i haue hindred you": [0, 65535], "am sorry sir that i haue hindred you but": [0, 65535], "sorry sir that i haue hindred you but i": [0, 65535], "sir that i haue hindred you but i protest": [0, 65535], "that i haue hindred you but i protest he": [0, 65535], "i haue hindred you but i protest he had": [0, 65535], "haue hindred you but i protest he had the": [0, 65535], "hindred you but i protest he had the chaine": [0, 65535], "you but i protest he had the chaine of": [0, 65535], "but i protest he had the chaine of me": [0, 65535], "i protest he had the chaine of me though": [0, 65535], "protest he had the chaine of me though most": [0, 65535], "he had the chaine of me though most dishonestly": [0, 65535], "had the chaine of me though most dishonestly he": [0, 65535], "the chaine of me though most dishonestly he doth": [0, 65535], "chaine of me though most dishonestly he doth denie": [0, 65535], "of me though most dishonestly he doth denie it": [0, 65535], "me though most dishonestly he doth denie it mar": [0, 65535], "though most dishonestly he doth denie it mar how": [0, 65535], "most dishonestly he doth denie it mar how is": [0, 65535], "dishonestly he doth denie it mar how is the": [0, 65535], "he doth denie it mar how is the man": [0, 65535], "doth denie it mar how is the man esteem'd": [0, 65535], "denie it mar how is the man esteem'd heere": [0, 65535], "it mar how is the man esteem'd heere in": [0, 65535], "mar how is the man esteem'd heere in the": [0, 65535], "how is the man esteem'd heere in the citie": [0, 65535], "is the man esteem'd heere in the citie gold": [0, 65535], "the man esteem'd heere in the citie gold of": [0, 65535], "man esteem'd heere in the citie gold of very": [0, 65535], "esteem'd heere in the citie gold of very reuerent": [0, 65535], "heere in the citie gold of very reuerent reputation": [0, 65535], "in the citie gold of very reuerent reputation sir": [0, 65535], "the citie gold of very reuerent reputation sir of": [0, 65535], "citie gold of very reuerent reputation sir of credit": [0, 65535], "gold of very reuerent reputation sir of credit infinite": [0, 65535], "of very reuerent reputation sir of credit infinite highly": [0, 65535], "very reuerent reputation sir of credit infinite highly belou'd": [0, 65535], "reuerent reputation sir of credit infinite highly belou'd second": [0, 65535], "reputation sir of credit infinite highly belou'd second to": [0, 65535], "sir of credit infinite highly belou'd second to none": [0, 65535], "of credit infinite highly belou'd second to none that": [0, 65535], "credit infinite highly belou'd second to none that liues": [0, 65535], "infinite highly belou'd second to none that liues heere": [0, 65535], "highly belou'd second to none that liues heere in": [0, 65535], "belou'd second to none that liues heere in the": [0, 65535], "second to none that liues heere in the citie": [0, 65535], "to none that liues heere in the citie his": [0, 65535], "none that liues heere in the citie his word": [0, 65535], "that liues heere in the citie his word might": [0, 65535], "liues heere in the citie his word might beare": [0, 65535], "heere in the citie his word might beare my": [0, 65535], "in the citie his word might beare my wealth": [0, 65535], "the citie his word might beare my wealth at": [0, 65535], "citie his word might beare my wealth at any": [0, 65535], "his word might beare my wealth at any time": [0, 65535], "word might beare my wealth at any time mar": [0, 65535], "might beare my wealth at any time mar speake": [0, 65535], "beare my wealth at any time mar speake softly": [0, 65535], "my wealth at any time mar speake softly yonder": [0, 65535], "wealth at any time mar speake softly yonder as": [0, 65535], "at any time mar speake softly yonder as i": [0, 65535], "any time mar speake softly yonder as i thinke": [0, 65535], "time mar speake softly yonder as i thinke he": [0, 65535], "mar speake softly yonder as i thinke he walkes": [0, 65535], "speake softly yonder as i thinke he walkes enter": [0, 65535], "softly yonder as i thinke he walkes enter antipholus": [0, 65535], "yonder as i thinke he walkes enter antipholus and": [0, 65535], "as i thinke he walkes enter antipholus and dromio": [0, 65535], "i thinke he walkes enter antipholus and dromio againe": [0, 65535], "thinke he walkes enter antipholus and dromio againe gold": [0, 65535], "he walkes enter antipholus and dromio againe gold 'tis": [0, 65535], "walkes enter antipholus and dromio againe gold 'tis so": [0, 65535], "enter antipholus and dromio againe gold 'tis so and": [0, 65535], "antipholus and dromio againe gold 'tis so and that": [0, 65535], "and dromio againe gold 'tis so and that selfe": [0, 65535], "dromio againe gold 'tis so and that selfe chaine": [0, 65535], "againe gold 'tis so and that selfe chaine about": [0, 65535], "gold 'tis so and that selfe chaine about his": [0, 65535], "'tis so and that selfe chaine about his necke": [0, 65535], "so and that selfe chaine about his necke which": [0, 65535], "and that selfe chaine about his necke which he": [0, 65535], "that selfe chaine about his necke which he forswore": [0, 65535], "selfe chaine about his necke which he forswore most": [0, 65535], "chaine about his necke which he forswore most monstrously": [0, 65535], "about his necke which he forswore most monstrously to": [0, 65535], "his necke which he forswore most monstrously to haue": [0, 65535], "necke which he forswore most monstrously to haue good": [0, 65535], "which he forswore most monstrously to haue good sir": [0, 65535], "he forswore most monstrously to haue good sir draw": [0, 65535], "forswore most monstrously to haue good sir draw neere": [0, 65535], "most monstrously to haue good sir draw neere to": [0, 65535], "monstrously to haue good sir draw neere to me": [0, 65535], "to haue good sir draw neere to me ile": [0, 65535], "haue good sir draw neere to me ile speake": [0, 65535], "good sir draw neere to me ile speake to": [0, 65535], "sir draw neere to me ile speake to him": [0, 65535], "draw neere to me ile speake to him signior": [0, 65535], "neere to me ile speake to him signior antipholus": [0, 65535], "to me ile speake to him signior antipholus i": [0, 65535], "me ile speake to him signior antipholus i wonder": [0, 65535], "ile speake to him signior antipholus i wonder much": [0, 65535], "speake to him signior antipholus i wonder much that": [0, 65535], "to him signior antipholus i wonder much that you": [0, 65535], "him signior antipholus i wonder much that you would": [0, 65535], "signior antipholus i wonder much that you would put": [0, 65535], "antipholus i wonder much that you would put me": [0, 65535], "i wonder much that you would put me to": [0, 65535], "wonder much that you would put me to this": [0, 65535], "much that you would put me to this shame": [0, 65535], "that you would put me to this shame and": [0, 65535], "you would put me to this shame and trouble": [0, 65535], "would put me to this shame and trouble and": [0, 65535], "put me to this shame and trouble and not": [0, 65535], "me to this shame and trouble and not without": [0, 65535], "to this shame and trouble and not without some": [0, 65535], "this shame and trouble and not without some scandall": [0, 65535], "shame and trouble and not without some scandall to": [0, 65535], "and trouble and not without some scandall to your": [0, 65535], "trouble and not without some scandall to your selfe": [0, 65535], "and not without some scandall to your selfe with": [0, 65535], "not without some scandall to your selfe with circumstance": [0, 65535], "without some scandall to your selfe with circumstance and": [0, 65535], "some scandall to your selfe with circumstance and oaths": [0, 65535], "scandall to your selfe with circumstance and oaths so": [0, 65535], "to your selfe with circumstance and oaths so to": [0, 65535], "your selfe with circumstance and oaths so to denie": [0, 65535], "selfe with circumstance and oaths so to denie this": [0, 65535], "with circumstance and oaths so to denie this chaine": [0, 65535], "circumstance and oaths so to denie this chaine which": [0, 65535], "and oaths so to denie this chaine which now": [0, 65535], "oaths so to denie this chaine which now you": [0, 65535], "so to denie this chaine which now you weare": [0, 65535], "to denie this chaine which now you weare so": [0, 65535], "denie this chaine which now you weare so openly": [0, 65535], "this chaine which now you weare so openly beside": [0, 65535], "chaine which now you weare so openly beside the": [0, 65535], "which now you weare so openly beside the charge": [0, 65535], "now you weare so openly beside the charge the": [0, 65535], "you weare so openly beside the charge the shame": [0, 65535], "weare so openly beside the charge the shame imprisonment": [0, 65535], "so openly beside the charge the shame imprisonment you": [0, 65535], "openly beside the charge the shame imprisonment you haue": [0, 65535], "beside the charge the shame imprisonment you haue done": [0, 65535], "the charge the shame imprisonment you haue done wrong": [0, 65535], "charge the shame imprisonment you haue done wrong to": [0, 65535], "the shame imprisonment you haue done wrong to this": [0, 65535], "shame imprisonment you haue done wrong to this my": [0, 65535], "imprisonment you haue done wrong to this my honest": [0, 65535], "you haue done wrong to this my honest friend": [0, 65535], "haue done wrong to this my honest friend who": [0, 65535], "done wrong to this my honest friend who but": [0, 65535], "wrong to this my honest friend who but for": [0, 65535], "to this my honest friend who but for staying": [0, 65535], "this my honest friend who but for staying on": [0, 65535], "my honest friend who but for staying on our": [0, 65535], "honest friend who but for staying on our controuersie": [0, 65535], "friend who but for staying on our controuersie had": [0, 65535], "who but for staying on our controuersie had hoisted": [0, 65535], "but for staying on our controuersie had hoisted saile": [0, 65535], "for staying on our controuersie had hoisted saile and": [0, 65535], "staying on our controuersie had hoisted saile and put": [0, 65535], "on our controuersie had hoisted saile and put to": [0, 65535], "our controuersie had hoisted saile and put to sea": [0, 65535], "controuersie had hoisted saile and put to sea to": [0, 65535], "had hoisted saile and put to sea to day": [0, 65535], "hoisted saile and put to sea to day this": [0, 65535], "saile and put to sea to day this chaine": [0, 65535], "and put to sea to day this chaine you": [0, 65535], "put to sea to day this chaine you had": [0, 65535], "to sea to day this chaine you had of": [0, 65535], "sea to day this chaine you had of me": [0, 65535], "to day this chaine you had of me can": [0, 65535], "day this chaine you had of me can you": [0, 65535], "this chaine you had of me can you deny": [0, 65535], "chaine you had of me can you deny it": [0, 65535], "you had of me can you deny it ant": [0, 65535], "had of me can you deny it ant i": [0, 65535], "of me can you deny it ant i thinke": [0, 65535], "me can you deny it ant i thinke i": [0, 65535], "can you deny it ant i thinke i had": [0, 65535], "you deny it ant i thinke i had i": [0, 65535], "deny it ant i thinke i had i neuer": [0, 65535], "it ant i thinke i had i neuer did": [0, 65535], "ant i thinke i had i neuer did deny": [0, 65535], "i thinke i had i neuer did deny it": [0, 65535], "thinke i had i neuer did deny it mar": [0, 65535], "i had i neuer did deny it mar yes": [0, 65535], "had i neuer did deny it mar yes that": [0, 65535], "i neuer did deny it mar yes that you": [0, 65535], "neuer did deny it mar yes that you did": [0, 65535], "did deny it mar yes that you did sir": [0, 65535], "deny it mar yes that you did sir and": [0, 65535], "it mar yes that you did sir and forswore": [0, 65535], "mar yes that you did sir and forswore it": [0, 65535], "yes that you did sir and forswore it too": [0, 65535], "that you did sir and forswore it too ant": [0, 65535], "you did sir and forswore it too ant who": [0, 65535], "did sir and forswore it too ant who heard": [0, 65535], "sir and forswore it too ant who heard me": [0, 65535], "and forswore it too ant who heard me to": [0, 65535], "forswore it too ant who heard me to denie": [0, 65535], "it too ant who heard me to denie it": [0, 65535], "too ant who heard me to denie it or": [0, 65535], "ant who heard me to denie it or forsweare": [0, 65535], "who heard me to denie it or forsweare it": [0, 65535], "heard me to denie it or forsweare it mar": [0, 65535], "me to denie it or forsweare it mar these": [0, 65535], "to denie it or forsweare it mar these eares": [0, 65535], "denie it or forsweare it mar these eares of": [0, 65535], "it or forsweare it mar these eares of mine": [0, 65535], "or forsweare it mar these eares of mine thou": [0, 65535], "forsweare it mar these eares of mine thou knowst": [0, 65535], "it mar these eares of mine thou knowst did": [0, 65535], "mar these eares of mine thou knowst did hear": [0, 65535], "these eares of mine thou knowst did hear thee": [0, 65535], "eares of mine thou knowst did hear thee fie": [0, 65535], "of mine thou knowst did hear thee fie on": [0, 65535], "mine thou knowst did hear thee fie on thee": [0, 65535], "thou knowst did hear thee fie on thee wretch": [0, 65535], "knowst did hear thee fie on thee wretch 'tis": [0, 65535], "did hear thee fie on thee wretch 'tis pitty": [0, 65535], "hear thee fie on thee wretch 'tis pitty that": [0, 65535], "thee fie on thee wretch 'tis pitty that thou": [0, 65535], "fie on thee wretch 'tis pitty that thou liu'st": [0, 65535], "on thee wretch 'tis pitty that thou liu'st to": [0, 65535], "thee wretch 'tis pitty that thou liu'st to walke": [0, 65535], "wretch 'tis pitty that thou liu'st to walke where": [0, 65535], "'tis pitty that thou liu'st to walke where any": [0, 65535], "pitty that thou liu'st to walke where any honest": [0, 65535], "that thou liu'st to walke where any honest men": [0, 65535], "thou liu'st to walke where any honest men resort": [0, 65535], "liu'st to walke where any honest men resort ant": [0, 65535], "to walke where any honest men resort ant thou": [0, 65535], "walke where any honest men resort ant thou art": [0, 65535], "where any honest men resort ant thou art a": [0, 65535], "any honest men resort ant thou art a villaine": [0, 65535], "honest men resort ant thou art a villaine to": [0, 65535], "men resort ant thou art a villaine to impeach": [0, 65535], "resort ant thou art a villaine to impeach me": [0, 65535], "ant thou art a villaine to impeach me thus": [0, 65535], "thou art a villaine to impeach me thus ile": [0, 65535], "art a villaine to impeach me thus ile proue": [0, 65535], "a villaine to impeach me thus ile proue mine": [0, 65535], "villaine to impeach me thus ile proue mine honor": [0, 65535], "to impeach me thus ile proue mine honor and": [0, 65535], "impeach me thus ile proue mine honor and mine": [0, 65535], "me thus ile proue mine honor and mine honestie": [0, 65535], "thus ile proue mine honor and mine honestie against": [0, 65535], "ile proue mine honor and mine honestie against thee": [0, 65535], "proue mine honor and mine honestie against thee presently": [0, 65535], "mine honor and mine honestie against thee presently if": [0, 65535], "honor and mine honestie against thee presently if thou": [0, 65535], "and mine honestie against thee presently if thou dar'st": [0, 65535], "mine honestie against thee presently if thou dar'st stand": [0, 65535], "honestie against thee presently if thou dar'st stand mar": [0, 65535], "against thee presently if thou dar'st stand mar i": [0, 65535], "thee presently if thou dar'st stand mar i dare": [0, 65535], "presently if thou dar'st stand mar i dare and": [0, 65535], "if thou dar'st stand mar i dare and do": [0, 65535], "thou dar'st stand mar i dare and do defie": [0, 65535], "dar'st stand mar i dare and do defie thee": [0, 65535], "stand mar i dare and do defie thee for": [0, 65535], "mar i dare and do defie thee for a": [0, 65535], "i dare and do defie thee for a villaine": [0, 65535], "dare and do defie thee for a villaine they": [0, 65535], "and do defie thee for a villaine they draw": [0, 65535], "do defie thee for a villaine they draw enter": [0, 65535], "defie thee for a villaine they draw enter adriana": [0, 65535], "thee for a villaine they draw enter adriana luciana": [0, 65535], "for a villaine they draw enter adriana luciana courtezan": [0, 65535], "a villaine they draw enter adriana luciana courtezan others": [0, 65535], "villaine they draw enter adriana luciana courtezan others adr": [0, 65535], "they draw enter adriana luciana courtezan others adr hold": [0, 65535], "draw enter adriana luciana courtezan others adr hold hurt": [0, 65535], "enter adriana luciana courtezan others adr hold hurt him": [0, 65535], "adriana luciana courtezan others adr hold hurt him not": [0, 65535], "luciana courtezan others adr hold hurt him not for": [0, 65535], "courtezan others adr hold hurt him not for god": [0, 65535], "others adr hold hurt him not for god sake": [0, 65535], "adr hold hurt him not for god sake he": [0, 65535], "hold hurt him not for god sake he is": [0, 65535], "hurt him not for god sake he is mad": [0, 65535], "him not for god sake he is mad some": [0, 65535], "not for god sake he is mad some get": [0, 65535], "for god sake he is mad some get within": [0, 65535], "god sake he is mad some get within him": [0, 65535], "sake he is mad some get within him take": [0, 65535], "he is mad some get within him take his": [0, 65535], "is mad some get within him take his sword": [0, 65535], "mad some get within him take his sword away": [0, 65535], "some get within him take his sword away binde": [0, 65535], "get within him take his sword away binde dromio": [0, 65535], "within him take his sword away binde dromio too": [0, 65535], "him take his sword away binde dromio too and": [0, 65535], "take his sword away binde dromio too and beare": [0, 65535], "his sword away binde dromio too and beare them": [0, 65535], "sword away binde dromio too and beare them to": [0, 65535], "away binde dromio too and beare them to my": [0, 65535], "binde dromio too and beare them to my house": [0, 65535], "dromio too and beare them to my house s": [0, 65535], "too and beare them to my house s dro": [0, 65535], "and beare them to my house s dro runne": [0, 65535], "beare them to my house s dro runne master": [0, 65535], "them to my house s dro runne master run": [0, 65535], "to my house s dro runne master run for": [0, 65535], "my house s dro runne master run for gods": [0, 65535], "house s dro runne master run for gods sake": [0, 65535], "s dro runne master run for gods sake take": [0, 65535], "dro runne master run for gods sake take a": [0, 65535], "runne master run for gods sake take a house": [0, 65535], "master run for gods sake take a house this": [0, 65535], "run for gods sake take a house this is": [0, 65535], "for gods sake take a house this is some": [0, 65535], "gods sake take a house this is some priorie": [0, 65535], "sake take a house this is some priorie in": [0, 65535], "take a house this is some priorie in or": [0, 65535], "a house this is some priorie in or we": [0, 65535], "house this is some priorie in or we are": [0, 65535], "this is some priorie in or we are spoyl'd": [0, 65535], "is some priorie in or we are spoyl'd exeunt": [0, 65535], "some priorie in or we are spoyl'd exeunt to": [0, 65535], "priorie in or we are spoyl'd exeunt to the": [0, 65535], "in or we are spoyl'd exeunt to the priorie": [0, 65535], "or we are spoyl'd exeunt to the priorie enter": [0, 65535], "we are spoyl'd exeunt to the priorie enter ladie": [0, 65535], "are spoyl'd exeunt to the priorie enter ladie abbesse": [0, 65535], "spoyl'd exeunt to the priorie enter ladie abbesse ab": [0, 65535], "exeunt to the priorie enter ladie abbesse ab be": [0, 65535], "to the priorie enter ladie abbesse ab be quiet": [0, 65535], "the priorie enter ladie abbesse ab be quiet people": [0, 65535], "priorie enter ladie abbesse ab be quiet people wherefore": [0, 65535], "enter ladie abbesse ab be quiet people wherefore throng": [0, 65535], "ladie abbesse ab be quiet people wherefore throng you": [0, 65535], "abbesse ab be quiet people wherefore throng you hither": [0, 65535], "ab be quiet people wherefore throng you hither adr": [0, 65535], "be quiet people wherefore throng you hither adr to": [0, 65535], "quiet people wherefore throng you hither adr to fetch": [0, 65535], "people wherefore throng you hither adr to fetch my": [0, 65535], "wherefore throng you hither adr to fetch my poore": [0, 65535], "throng you hither adr to fetch my poore distracted": [0, 65535], "you hither adr to fetch my poore distracted husband": [0, 65535], "hither adr to fetch my poore distracted husband hence": [0, 65535], "adr to fetch my poore distracted husband hence let": [0, 65535], "to fetch my poore distracted husband hence let vs": [0, 65535], "fetch my poore distracted husband hence let vs come": [0, 65535], "my poore distracted husband hence let vs come in": [0, 65535], "poore distracted husband hence let vs come in that": [0, 65535], "distracted husband hence let vs come in that we": [0, 65535], "husband hence let vs come in that we may": [0, 65535], "hence let vs come in that we may binde": [0, 65535], "let vs come in that we may binde him": [0, 65535], "vs come in that we may binde him fast": [0, 65535], "come in that we may binde him fast and": [0, 65535], "in that we may binde him fast and beare": [0, 65535], "that we may binde him fast and beare him": [0, 65535], "we may binde him fast and beare him home": [0, 65535], "may binde him fast and beare him home for": [0, 65535], "binde him fast and beare him home for his": [0, 65535], "him fast and beare him home for his recouerie": [0, 65535], "fast and beare him home for his recouerie gold": [0, 65535], "and beare him home for his recouerie gold i": [0, 65535], "beare him home for his recouerie gold i knew": [0, 65535], "him home for his recouerie gold i knew he": [0, 65535], "home for his recouerie gold i knew he was": [0, 65535], "for his recouerie gold i knew he was not": [0, 65535], "his recouerie gold i knew he was not in": [0, 65535], "recouerie gold i knew he was not in his": [0, 65535], "gold i knew he was not in his perfect": [0, 65535], "i knew he was not in his perfect wits": [0, 65535], "knew he was not in his perfect wits mar": [0, 65535], "he was not in his perfect wits mar i": [0, 65535], "was not in his perfect wits mar i am": [0, 65535], "not in his perfect wits mar i am sorry": [0, 65535], "in his perfect wits mar i am sorry now": [0, 65535], "his perfect wits mar i am sorry now that": [0, 65535], "perfect wits mar i am sorry now that i": [0, 65535], "wits mar i am sorry now that i did": [0, 65535], "mar i am sorry now that i did draw": [0, 65535], "i am sorry now that i did draw on": [0, 65535], "am sorry now that i did draw on him": [0, 65535], "sorry now that i did draw on him ab": [0, 65535], "now that i did draw on him ab how": [0, 65535], "that i did draw on him ab how long": [0, 65535], "i did draw on him ab how long hath": [0, 65535], "did draw on him ab how long hath this": [0, 65535], "draw on him ab how long hath this possession": [0, 65535], "on him ab how long hath this possession held": [0, 65535], "him ab how long hath this possession held the": [0, 65535], "ab how long hath this possession held the man": [0, 65535], "how long hath this possession held the man adr": [0, 65535], "long hath this possession held the man adr this": [0, 65535], "hath this possession held the man adr this weeke": [0, 65535], "this possession held the man adr this weeke he": [0, 65535], "possession held the man adr this weeke he hath": [0, 65535], "held the man adr this weeke he hath beene": [0, 65535], "the man adr this weeke he hath beene heauie": [0, 65535], "man adr this weeke he hath beene heauie sower": [0, 65535], "adr this weeke he hath beene heauie sower sad": [0, 65535], "this weeke he hath beene heauie sower sad and": [0, 65535], "weeke he hath beene heauie sower sad and much": [0, 65535], "he hath beene heauie sower sad and much different": [0, 65535], "hath beene heauie sower sad and much different from": [0, 65535], "beene heauie sower sad and much different from the": [0, 65535], "heauie sower sad and much different from the man": [0, 65535], "sower sad and much different from the man he": [0, 65535], "sad and much different from the man he was": [0, 65535], "and much different from the man he was but": [0, 65535], "much different from the man he was but till": [0, 65535], "different from the man he was but till this": [0, 65535], "from the man he was but till this afternoone": [0, 65535], "the man he was but till this afternoone his": [0, 65535], "man he was but till this afternoone his passion": [0, 65535], "he was but till this afternoone his passion ne're": [0, 65535], "was but till this afternoone his passion ne're brake": [0, 65535], "but till this afternoone his passion ne're brake into": [0, 65535], "till this afternoone his passion ne're brake into extremity": [0, 65535], "this afternoone his passion ne're brake into extremity of": [0, 65535], "afternoone his passion ne're brake into extremity of rage": [0, 65535], "his passion ne're brake into extremity of rage ab": [0, 65535], "passion ne're brake into extremity of rage ab hath": [0, 65535], "ne're brake into extremity of rage ab hath he": [0, 65535], "brake into extremity of rage ab hath he not": [0, 65535], "into extremity of rage ab hath he not lost": [0, 65535], "extremity of rage ab hath he not lost much": [0, 65535], "of rage ab hath he not lost much wealth": [0, 65535], "rage ab hath he not lost much wealth by": [0, 65535], "ab hath he not lost much wealth by wrack": [0, 65535], "hath he not lost much wealth by wrack of": [0, 65535], "he not lost much wealth by wrack of sea": [0, 65535], "not lost much wealth by wrack of sea buried": [0, 65535], "lost much wealth by wrack of sea buried some": [0, 65535], "much wealth by wrack of sea buried some deere": [0, 65535], "wealth by wrack of sea buried some deere friend": [0, 65535], "by wrack of sea buried some deere friend hath": [0, 65535], "wrack of sea buried some deere friend hath not": [0, 65535], "of sea buried some deere friend hath not else": [0, 65535], "sea buried some deere friend hath not else his": [0, 65535], "buried some deere friend hath not else his eye": [0, 65535], "some deere friend hath not else his eye stray'd": [0, 65535], "deere friend hath not else his eye stray'd his": [0, 65535], "friend hath not else his eye stray'd his affection": [0, 65535], "hath not else his eye stray'd his affection in": [0, 65535], "not else his eye stray'd his affection in vnlawfull": [0, 65535], "else his eye stray'd his affection in vnlawfull loue": [0, 65535], "his eye stray'd his affection in vnlawfull loue a": [0, 65535], "eye stray'd his affection in vnlawfull loue a sinne": [0, 65535], "stray'd his affection in vnlawfull loue a sinne preuailing": [0, 65535], "his affection in vnlawfull loue a sinne preuailing much": [0, 65535], "affection in vnlawfull loue a sinne preuailing much in": [0, 65535], "in vnlawfull loue a sinne preuailing much in youthfull": [0, 65535], "vnlawfull loue a sinne preuailing much in youthfull men": [0, 65535], "loue a sinne preuailing much in youthfull men who": [0, 65535], "a sinne preuailing much in youthfull men who giue": [0, 65535], "sinne preuailing much in youthfull men who giue their": [0, 65535], "preuailing much in youthfull men who giue their eies": [0, 65535], "much in youthfull men who giue their eies the": [0, 65535], "in youthfull men who giue their eies the liberty": [0, 65535], "youthfull men who giue their eies the liberty of": [0, 65535], "men who giue their eies the liberty of gazing": [0, 65535], "who giue their eies the liberty of gazing which": [0, 65535], "giue their eies the liberty of gazing which of": [0, 65535], "their eies the liberty of gazing which of these": [0, 65535], "eies the liberty of gazing which of these sorrowes": [0, 65535], "the liberty of gazing which of these sorrowes is": [0, 65535], "liberty of gazing which of these sorrowes is he": [0, 65535], "of gazing which of these sorrowes is he subiect": [0, 65535], "gazing which of these sorrowes is he subiect too": [0, 65535], "which of these sorrowes is he subiect too adr": [0, 65535], "of these sorrowes is he subiect too adr to": [0, 65535], "these sorrowes is he subiect too adr to none": [0, 65535], "sorrowes is he subiect too adr to none of": [0, 65535], "is he subiect too adr to none of these": [0, 65535], "he subiect too adr to none of these except": [0, 65535], "subiect too adr to none of these except it": [0, 65535], "too adr to none of these except it be": [0, 65535], "adr to none of these except it be the": [0, 65535], "to none of these except it be the last": [0, 65535], "none of these except it be the last namely": [0, 65535], "of these except it be the last namely some": [0, 65535], "these except it be the last namely some loue": [0, 65535], "except it be the last namely some loue that": [0, 65535], "it be the last namely some loue that drew": [0, 65535], "be the last namely some loue that drew him": [0, 65535], "the last namely some loue that drew him oft": [0, 65535], "last namely some loue that drew him oft from": [0, 65535], "namely some loue that drew him oft from home": [0, 65535], "some loue that drew him oft from home ab": [0, 65535], "loue that drew him oft from home ab you": [0, 65535], "that drew him oft from home ab you should": [0, 65535], "drew him oft from home ab you should for": [0, 65535], "him oft from home ab you should for that": [0, 65535], "oft from home ab you should for that haue": [0, 65535], "from home ab you should for that haue reprehended": [0, 65535], "home ab you should for that haue reprehended him": [0, 65535], "ab you should for that haue reprehended him adr": [0, 65535], "you should for that haue reprehended him adr why": [0, 65535], "should for that haue reprehended him adr why so": [0, 65535], "for that haue reprehended him adr why so i": [0, 65535], "that haue reprehended him adr why so i did": [0, 65535], "haue reprehended him adr why so i did ab": [0, 65535], "reprehended him adr why so i did ab i": [0, 65535], "him adr why so i did ab i but": [0, 65535], "adr why so i did ab i but not": [0, 65535], "why so i did ab i but not rough": [0, 65535], "so i did ab i but not rough enough": [0, 65535], "i did ab i but not rough enough adr": [0, 65535], "did ab i but not rough enough adr as": [0, 65535], "ab i but not rough enough adr as roughly": [0, 65535], "i but not rough enough adr as roughly as": [0, 65535], "but not rough enough adr as roughly as my": [0, 65535], "not rough enough adr as roughly as my modestie": [0, 65535], "rough enough adr as roughly as my modestie would": [0, 65535], "enough adr as roughly as my modestie would let": [0, 65535], "adr as roughly as my modestie would let me": [0, 65535], "as roughly as my modestie would let me ab": [0, 65535], "roughly as my modestie would let me ab haply": [0, 65535], "as my modestie would let me ab haply in": [0, 65535], "my modestie would let me ab haply in priuate": [0, 65535], "modestie would let me ab haply in priuate adr": [0, 65535], "would let me ab haply in priuate adr and": [0, 65535], "let me ab haply in priuate adr and in": [0, 65535], "me ab haply in priuate adr and in assemblies": [0, 65535], "ab haply in priuate adr and in assemblies too": [0, 65535], "haply in priuate adr and in assemblies too ab": [0, 65535], "in priuate adr and in assemblies too ab i": [0, 65535], "priuate adr and in assemblies too ab i but": [0, 65535], "adr and in assemblies too ab i but not": [0, 65535], "and in assemblies too ab i but not enough": [0, 65535], "in assemblies too ab i but not enough adr": [0, 65535], "assemblies too ab i but not enough adr it": [0, 65535], "too ab i but not enough adr it was": [0, 65535], "ab i but not enough adr it was the": [0, 65535], "i but not enough adr it was the copie": [0, 65535], "but not enough adr it was the copie of": [0, 65535], "not enough adr it was the copie of our": [0, 65535], "enough adr it was the copie of our conference": [0, 65535], "adr it was the copie of our conference in": [0, 65535], "it was the copie of our conference in bed": [0, 65535], "was the copie of our conference in bed he": [0, 65535], "the copie of our conference in bed he slept": [0, 65535], "copie of our conference in bed he slept not": [0, 65535], "of our conference in bed he slept not for": [0, 65535], "our conference in bed he slept not for my": [0, 65535], "conference in bed he slept not for my vrging": [0, 65535], "in bed he slept not for my vrging it": [0, 65535], "bed he slept not for my vrging it at": [0, 65535], "he slept not for my vrging it at boord": [0, 65535], "slept not for my vrging it at boord he": [0, 65535], "not for my vrging it at boord he fed": [0, 65535], "for my vrging it at boord he fed not": [0, 65535], "my vrging it at boord he fed not for": [0, 65535], "vrging it at boord he fed not for my": [0, 65535], "it at boord he fed not for my vrging": [0, 65535], "at boord he fed not for my vrging it": [0, 65535], "boord he fed not for my vrging it alone": [0, 65535], "he fed not for my vrging it alone it": [0, 65535], "fed not for my vrging it alone it was": [0, 65535], "not for my vrging it alone it was the": [0, 65535], "for my vrging it alone it was the subiect": [0, 65535], "my vrging it alone it was the subiect of": [0, 65535], "vrging it alone it was the subiect of my": [0, 65535], "it alone it was the subiect of my theame": [0, 65535], "alone it was the subiect of my theame in": [0, 65535], "it was the subiect of my theame in company": [0, 65535], "was the subiect of my theame in company i": [0, 65535], "the subiect of my theame in company i often": [0, 65535], "subiect of my theame in company i often glanced": [0, 65535], "of my theame in company i often glanced it": [0, 65535], "my theame in company i often glanced it still": [0, 65535], "theame in company i often glanced it still did": [0, 65535], "in company i often glanced it still did i": [0, 65535], "company i often glanced it still did i tell": [0, 65535], "i often glanced it still did i tell him": [0, 65535], "often glanced it still did i tell him it": [0, 65535], "glanced it still did i tell him it was": [0, 65535], "it still did i tell him it was vilde": [0, 65535], "still did i tell him it was vilde and": [0, 65535], "did i tell him it was vilde and bad": [0, 65535], "i tell him it was vilde and bad ab": [0, 65535], "tell him it was vilde and bad ab and": [0, 65535], "him it was vilde and bad ab and thereof": [0, 65535], "it was vilde and bad ab and thereof came": [0, 65535], "was vilde and bad ab and thereof came it": [0, 65535], "vilde and bad ab and thereof came it that": [0, 65535], "and bad ab and thereof came it that the": [0, 65535], "bad ab and thereof came it that the man": [0, 65535], "ab and thereof came it that the man was": [0, 65535], "and thereof came it that the man was mad": [0, 65535], "thereof came it that the man was mad the": [0, 65535], "came it that the man was mad the venome": [0, 65535], "it that the man was mad the venome clamors": [0, 65535], "that the man was mad the venome clamors of": [0, 65535], "the man was mad the venome clamors of a": [0, 65535], "man was mad the venome clamors of a iealous": [0, 65535], "was mad the venome clamors of a iealous woman": [0, 65535], "mad the venome clamors of a iealous woman poisons": [0, 65535], "the venome clamors of a iealous woman poisons more": [0, 65535], "venome clamors of a iealous woman poisons more deadly": [0, 65535], "clamors of a iealous woman poisons more deadly then": [0, 65535], "of a iealous woman poisons more deadly then a": [0, 65535], "a iealous woman poisons more deadly then a mad": [0, 65535], "iealous woman poisons more deadly then a mad dogges": [0, 65535], "woman poisons more deadly then a mad dogges tooth": [0, 65535], "poisons more deadly then a mad dogges tooth it": [0, 65535], "more deadly then a mad dogges tooth it seemes": [0, 65535], "deadly then a mad dogges tooth it seemes his": [0, 65535], "then a mad dogges tooth it seemes his sleepes": [0, 65535], "a mad dogges tooth it seemes his sleepes were": [0, 65535], "mad dogges tooth it seemes his sleepes were hindred": [0, 65535], "dogges tooth it seemes his sleepes were hindred by": [0, 65535], "tooth it seemes his sleepes were hindred by thy": [0, 65535], "it seemes his sleepes were hindred by thy railing": [0, 65535], "seemes his sleepes were hindred by thy railing and": [0, 65535], "his sleepes were hindred by thy railing and thereof": [0, 65535], "sleepes were hindred by thy railing and thereof comes": [0, 65535], "were hindred by thy railing and thereof comes it": [0, 65535], "hindred by thy railing and thereof comes it that": [0, 65535], "by thy railing and thereof comes it that his": [0, 65535], "thy railing and thereof comes it that his head": [0, 65535], "railing and thereof comes it that his head is": [0, 65535], "and thereof comes it that his head is light": [0, 65535], "thereof comes it that his head is light thou": [0, 65535], "comes it that his head is light thou saist": [0, 65535], "it that his head is light thou saist his": [0, 65535], "that his head is light thou saist his meate": [0, 65535], "his head is light thou saist his meate was": [0, 65535], "head is light thou saist his meate was sawc'd": [0, 65535], "is light thou saist his meate was sawc'd with": [0, 65535], "light thou saist his meate was sawc'd with thy": [0, 65535], "thou saist his meate was sawc'd with thy vpbraidings": [0, 65535], "saist his meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "his meate was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales make ill": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "with thy vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions thereof the": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof the raging": [0, 65535], "vnquiet meales make ill digestions thereof the raging fire": [0, 65535], "meales make ill digestions thereof the raging fire of": [0, 65535], "make ill digestions thereof the raging fire of feauer": [0, 65535], "ill digestions thereof the raging fire of feauer bred": [0, 65535], "digestions thereof the raging fire of feauer bred and": [0, 65535], "thereof the raging fire of feauer bred and what's": [0, 65535], "the raging fire of feauer bred and what's a": [0, 65535], "raging fire of feauer bred and what's a feauer": [0, 65535], "fire of feauer bred and what's a feauer but": [0, 65535], "of feauer bred and what's a feauer but a": [0, 65535], "feauer bred and what's a feauer but a fit": [0, 65535], "bred and what's a feauer but a fit of": [0, 65535], "and what's a feauer but a fit of madnesse": [0, 65535], "what's a feauer but a fit of madnesse thou": [0, 65535], "a feauer but a fit of madnesse thou sayest": [0, 65535], "feauer but a fit of madnesse thou sayest his": [0, 65535], "but a fit of madnesse thou sayest his sports": [0, 65535], "a fit of madnesse thou sayest his sports were": [0, 65535], "fit of madnesse thou sayest his sports were hindred": [0, 65535], "of madnesse thou sayest his sports were hindred by": [0, 65535], "madnesse thou sayest his sports were hindred by thy": [0, 65535], "thou sayest his sports were hindred by thy bralles": [0, 65535], "sayest his sports were hindred by thy bralles sweet": [0, 65535], "his sports were hindred by thy bralles sweet recreation": [0, 65535], "sports were hindred by thy bralles sweet recreation barr'd": [0, 65535], "were hindred by thy bralles sweet recreation barr'd what": [0, 65535], "hindred by thy bralles sweet recreation barr'd what doth": [0, 65535], "by thy bralles sweet recreation barr'd what doth ensue": [0, 65535], "thy bralles sweet recreation barr'd what doth ensue but": [0, 65535], "bralles sweet recreation barr'd what doth ensue but moodie": [0, 65535], "sweet recreation barr'd what doth ensue but moodie and": [0, 65535], "recreation barr'd what doth ensue but moodie and dull": [0, 65535], "barr'd what doth ensue but moodie and dull melancholly": [0, 65535], "what doth ensue but moodie and dull melancholly kinsman": [0, 65535], "doth ensue but moodie and dull melancholly kinsman to": [0, 65535], "ensue but moodie and dull melancholly kinsman to grim": [0, 65535], "but moodie and dull melancholly kinsman to grim and": [0, 65535], "moodie and dull melancholly kinsman to grim and comfortlesse": [0, 65535], "and dull melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "dull melancholly kinsman to grim and comfortlesse dispaire and": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire and at": [0, 65535], "kinsman to grim and comfortlesse dispaire and at her": [0, 65535], "to grim and comfortlesse dispaire and at her heeles": [0, 65535], "grim and comfortlesse dispaire and at her heeles a": [0, 65535], "and comfortlesse dispaire and at her heeles a huge": [0, 65535], "comfortlesse dispaire and at her heeles a huge infectious": [0, 65535], "dispaire and at her heeles a huge infectious troope": [0, 65535], "and at her heeles a huge infectious troope of": [0, 65535], "at her heeles a huge infectious troope of pale": [0, 65535], "her heeles a huge infectious troope of pale distemperatures": [0, 65535], "heeles a huge infectious troope of pale distemperatures and": [0, 65535], "a huge infectious troope of pale distemperatures and foes": [0, 65535], "huge infectious troope of pale distemperatures and foes to": [0, 65535], "infectious troope of pale distemperatures and foes to life": [0, 65535], "troope of pale distemperatures and foes to life in": [0, 65535], "of pale distemperatures and foes to life in food": [0, 65535], "pale distemperatures and foes to life in food in": [0, 65535], "distemperatures and foes to life in food in sport": [0, 65535], "and foes to life in food in sport and": [0, 65535], "foes to life in food in sport and life": [0, 65535], "to life in food in sport and life preseruing": [0, 65535], "life in food in sport and life preseruing rest": [0, 65535], "in food in sport and life preseruing rest to": [0, 65535], "food in sport and life preseruing rest to be": [0, 65535], "in sport and life preseruing rest to be disturb'd": [0, 65535], "sport and life preseruing rest to be disturb'd would": [0, 65535], "and life preseruing rest to be disturb'd would mad": [0, 65535], "life preseruing rest to be disturb'd would mad or": [0, 65535], "preseruing rest to be disturb'd would mad or man": [0, 65535], "rest to be disturb'd would mad or man or": [0, 65535], "to be disturb'd would mad or man or beast": [0, 65535], "be disturb'd would mad or man or beast the": [0, 65535], "disturb'd would mad or man or beast the consequence": [0, 65535], "would mad or man or beast the consequence is": [0, 65535], "mad or man or beast the consequence is then": [0, 65535], "or man or beast the consequence is then thy": [0, 65535], "man or beast the consequence is then thy iealous": [0, 65535], "or beast the consequence is then thy iealous fits": [0, 65535], "beast the consequence is then thy iealous fits hath": [0, 65535], "the consequence is then thy iealous fits hath scar'd": [0, 65535], "consequence is then thy iealous fits hath scar'd thy": [0, 65535], "is then thy iealous fits hath scar'd thy husband": [0, 65535], "then thy iealous fits hath scar'd thy husband from": [0, 65535], "thy iealous fits hath scar'd thy husband from the": [0, 65535], "iealous fits hath scar'd thy husband from the vse": [0, 65535], "fits hath scar'd thy husband from the vse of": [0, 65535], "hath scar'd thy husband from the vse of wits": [0, 65535], "scar'd thy husband from the vse of wits luc": [0, 65535], "thy husband from the vse of wits luc she": [0, 65535], "husband from the vse of wits luc she neuer": [0, 65535], "from the vse of wits luc she neuer reprehended": [0, 65535], "the vse of wits luc she neuer reprehended him": [0, 65535], "vse of wits luc she neuer reprehended him but": [0, 65535], "of wits luc she neuer reprehended him but mildely": [0, 65535], "wits luc she neuer reprehended him but mildely when": [0, 65535], "luc she neuer reprehended him but mildely when he": [0, 65535], "she neuer reprehended him but mildely when he demean'd": [0, 65535], "neuer reprehended him but mildely when he demean'd himselfe": [0, 65535], "reprehended him but mildely when he demean'd himselfe rough": [0, 65535], "him but mildely when he demean'd himselfe rough rude": [0, 65535], "but mildely when he demean'd himselfe rough rude and": [0, 65535], "mildely when he demean'd himselfe rough rude and wildly": [0, 65535], "when he demean'd himselfe rough rude and wildly why": [0, 65535], "he demean'd himselfe rough rude and wildly why beare": [0, 65535], "demean'd himselfe rough rude and wildly why beare you": [0, 65535], "himselfe rough rude and wildly why beare you these": [0, 65535], "rough rude and wildly why beare you these rebukes": [0, 65535], "rude and wildly why beare you these rebukes and": [0, 65535], "and wildly why beare you these rebukes and answer": [0, 65535], "wildly why beare you these rebukes and answer not": [0, 65535], "why beare you these rebukes and answer not adri": [0, 65535], "beare you these rebukes and answer not adri she": [0, 65535], "you these rebukes and answer not adri she did": [0, 65535], "these rebukes and answer not adri she did betray": [0, 65535], "rebukes and answer not adri she did betray me": [0, 65535], "and answer not adri she did betray me to": [0, 65535], "answer not adri she did betray me to my": [0, 65535], "not adri she did betray me to my owne": [0, 65535], "adri she did betray me to my owne reproofe": [0, 65535], "she did betray me to my owne reproofe good": [0, 65535], "did betray me to my owne reproofe good people": [0, 65535], "betray me to my owne reproofe good people enter": [0, 65535], "me to my owne reproofe good people enter and": [0, 65535], "to my owne reproofe good people enter and lay": [0, 65535], "my owne reproofe good people enter and lay hold": [0, 65535], "owne reproofe good people enter and lay hold on": [0, 65535], "reproofe good people enter and lay hold on him": [0, 65535], "good people enter and lay hold on him ab": [0, 65535], "people enter and lay hold on him ab no": [0, 65535], "enter and lay hold on him ab no not": [0, 65535], "and lay hold on him ab no not a": [0, 65535], "lay hold on him ab no not a creature": [0, 65535], "hold on him ab no not a creature enters": [0, 65535], "on him ab no not a creature enters in": [0, 65535], "him ab no not a creature enters in my": [0, 65535], "ab no not a creature enters in my house": [0, 65535], "no not a creature enters in my house ad": [0, 65535], "not a creature enters in my house ad then": [0, 65535], "a creature enters in my house ad then let": [0, 65535], "creature enters in my house ad then let your": [0, 65535], "enters in my house ad then let your seruants": [0, 65535], "in my house ad then let your seruants bring": [0, 65535], "my house ad then let your seruants bring my": [0, 65535], "house ad then let your seruants bring my husband": [0, 65535], "ad then let your seruants bring my husband forth": [0, 65535], "then let your seruants bring my husband forth ab": [0, 65535], "let your seruants bring my husband forth ab neither": [0, 65535], "your seruants bring my husband forth ab neither he": [0, 65535], "seruants bring my husband forth ab neither he tooke": [0, 65535], "bring my husband forth ab neither he tooke this": [0, 65535], "my husband forth ab neither he tooke this place": [0, 65535], "husband forth ab neither he tooke this place for": [0, 65535], "forth ab neither he tooke this place for sanctuary": [0, 65535], "ab neither he tooke this place for sanctuary and": [0, 65535], "neither he tooke this place for sanctuary and it": [0, 65535], "he tooke this place for sanctuary and it shall": [0, 65535], "tooke this place for sanctuary and it shall priuiledge": [0, 65535], "this place for sanctuary and it shall priuiledge him": [0, 65535], "place for sanctuary and it shall priuiledge him from": [0, 65535], "for sanctuary and it shall priuiledge him from your": [0, 65535], "sanctuary and it shall priuiledge him from your hands": [0, 65535], "and it shall priuiledge him from your hands till": [0, 65535], "it shall priuiledge him from your hands till i": [0, 65535], "shall priuiledge him from your hands till i haue": [0, 65535], "priuiledge him from your hands till i haue brought": [0, 65535], "him from your hands till i haue brought him": [0, 65535], "from your hands till i haue brought him to": [0, 65535], "your hands till i haue brought him to his": [0, 65535], "hands till i haue brought him to his wits": [0, 65535], "till i haue brought him to his wits againe": [0, 65535], "i haue brought him to his wits againe or": [0, 65535], "haue brought him to his wits againe or loose": [0, 65535], "brought him to his wits againe or loose my": [0, 65535], "him to his wits againe or loose my labour": [0, 65535], "to his wits againe or loose my labour in": [0, 65535], "his wits againe or loose my labour in assaying": [0, 65535], "wits againe or loose my labour in assaying it": [0, 65535], "againe or loose my labour in assaying it adr": [0, 65535], "or loose my labour in assaying it adr i": [0, 65535], "loose my labour in assaying it adr i will": [0, 65535], "my labour in assaying it adr i will attend": [0, 65535], "labour in assaying it adr i will attend my": [0, 65535], "in assaying it adr i will attend my husband": [0, 65535], "assaying it adr i will attend my husband be": [0, 65535], "it adr i will attend my husband be his": [0, 65535], "adr i will attend my husband be his nurse": [0, 65535], "i will attend my husband be his nurse diet": [0, 65535], "will attend my husband be his nurse diet his": [0, 65535], "attend my husband be his nurse diet his sicknesse": [0, 65535], "my husband be his nurse diet his sicknesse for": [0, 65535], "husband be his nurse diet his sicknesse for it": [0, 65535], "be his nurse diet his sicknesse for it is": [0, 65535], "his nurse diet his sicknesse for it is my": [0, 65535], "nurse diet his sicknesse for it is my office": [0, 65535], "diet his sicknesse for it is my office and": [0, 65535], "his sicknesse for it is my office and will": [0, 65535], "sicknesse for it is my office and will haue": [0, 65535], "for it is my office and will haue no": [0, 65535], "it is my office and will haue no atturney": [0, 65535], "is my office and will haue no atturney but": [0, 65535], "my office and will haue no atturney but my": [0, 65535], "office and will haue no atturney but my selfe": [0, 65535], "and will haue no atturney but my selfe and": [0, 65535], "will haue no atturney but my selfe and therefore": [0, 65535], "haue no atturney but my selfe and therefore let": [0, 65535], "no atturney but my selfe and therefore let me": [0, 65535], "atturney but my selfe and therefore let me haue": [0, 65535], "but my selfe and therefore let me haue him": [0, 65535], "my selfe and therefore let me haue him home": [0, 65535], "selfe and therefore let me haue him home with": [0, 65535], "and therefore let me haue him home with me": [0, 65535], "therefore let me haue him home with me ab": [0, 65535], "let me haue him home with me ab be": [0, 65535], "me haue him home with me ab be patient": [0, 65535], "haue him home with me ab be patient for": [0, 65535], "him home with me ab be patient for i": [0, 65535], "home with me ab be patient for i will": [0, 65535], "with me ab be patient for i will not": [0, 65535], "me ab be patient for i will not let": [0, 65535], "ab be patient for i will not let him": [0, 65535], "be patient for i will not let him stirre": [0, 65535], "patient for i will not let him stirre till": [0, 65535], "for i will not let him stirre till i": [0, 65535], "i will not let him stirre till i haue": [0, 65535], "will not let him stirre till i haue vs'd": [0, 65535], "not let him stirre till i haue vs'd the": [0, 65535], "let him stirre till i haue vs'd the approoued": [0, 65535], "him stirre till i haue vs'd the approoued meanes": [0, 65535], "stirre till i haue vs'd the approoued meanes i": [0, 65535], "till i haue vs'd the approoued meanes i haue": [0, 65535], "i haue vs'd the approoued meanes i haue with": [0, 65535], "haue vs'd the approoued meanes i haue with wholsome": [0, 65535], "vs'd the approoued meanes i haue with wholsome sirrups": [0, 65535], "the approoued meanes i haue with wholsome sirrups drugges": [0, 65535], "approoued meanes i haue with wholsome sirrups drugges and": [0, 65535], "meanes i haue with wholsome sirrups drugges and holy": [0, 65535], "i haue with wholsome sirrups drugges and holy prayers": [0, 65535], "haue with wholsome sirrups drugges and holy prayers to": [0, 65535], "with wholsome sirrups drugges and holy prayers to make": [0, 65535], "wholsome sirrups drugges and holy prayers to make of": [0, 65535], "sirrups drugges and holy prayers to make of him": [0, 65535], "drugges and holy prayers to make of him a": [0, 65535], "and holy prayers to make of him a formall": [0, 65535], "holy prayers to make of him a formall man": [0, 65535], "prayers to make of him a formall man againe": [0, 65535], "to make of him a formall man againe it": [0, 65535], "make of him a formall man againe it is": [0, 65535], "of him a formall man againe it is a": [0, 65535], "him a formall man againe it is a branch": [0, 65535], "a formall man againe it is a branch and": [0, 65535], "formall man againe it is a branch and parcell": [0, 65535], "man againe it is a branch and parcell of": [0, 65535], "againe it is a branch and parcell of mine": [0, 65535], "it is a branch and parcell of mine oath": [0, 65535], "is a branch and parcell of mine oath a": [0, 65535], "a branch and parcell of mine oath a charitable": [0, 65535], "branch and parcell of mine oath a charitable dutie": [0, 65535], "and parcell of mine oath a charitable dutie of": [0, 65535], "parcell of mine oath a charitable dutie of my": [0, 65535], "of mine oath a charitable dutie of my order": [0, 65535], "mine oath a charitable dutie of my order therefore": [0, 65535], "oath a charitable dutie of my order therefore depart": [0, 65535], "a charitable dutie of my order therefore depart and": [0, 65535], "charitable dutie of my order therefore depart and leaue": [0, 65535], "dutie of my order therefore depart and leaue him": [0, 65535], "of my order therefore depart and leaue him heere": [0, 65535], "my order therefore depart and leaue him heere with": [0, 65535], "order therefore depart and leaue him heere with me": [0, 65535], "therefore depart and leaue him heere with me adr": [0, 65535], "depart and leaue him heere with me adr i": [0, 65535], "and leaue him heere with me adr i will": [0, 65535], "leaue him heere with me adr i will not": [0, 65535], "him heere with me adr i will not hence": [0, 65535], "heere with me adr i will not hence and": [0, 65535], "with me adr i will not hence and leaue": [0, 65535], "me adr i will not hence and leaue my": [0, 65535], "adr i will not hence and leaue my husband": [0, 65535], "i will not hence and leaue my husband heere": [0, 65535], "will not hence and leaue my husband heere and": [0, 65535], "not hence and leaue my husband heere and ill": [0, 65535], "hence and leaue my husband heere and ill it": [0, 65535], "and leaue my husband heere and ill it doth": [0, 65535], "leaue my husband heere and ill it doth beseeme": [0, 65535], "my husband heere and ill it doth beseeme your": [0, 65535], "husband heere and ill it doth beseeme your holinesse": [0, 65535], "heere and ill it doth beseeme your holinesse to": [0, 65535], "and ill it doth beseeme your holinesse to separate": [0, 65535], "ill it doth beseeme your holinesse to separate the": [0, 65535], "it doth beseeme your holinesse to separate the husband": [0, 65535], "doth beseeme your holinesse to separate the husband and": [0, 65535], "beseeme your holinesse to separate the husband and the": [0, 65535], "your holinesse to separate the husband and the wife": [0, 65535], "holinesse to separate the husband and the wife ab": [0, 65535], "to separate the husband and the wife ab be": [0, 65535], "separate the husband and the wife ab be quiet": [0, 65535], "the husband and the wife ab be quiet and": [0, 65535], "husband and the wife ab be quiet and depart": [0, 65535], "and the wife ab be quiet and depart thou": [0, 65535], "the wife ab be quiet and depart thou shalt": [0, 65535], "wife ab be quiet and depart thou shalt not": [0, 65535], "ab be quiet and depart thou shalt not haue": [0, 65535], "be quiet and depart thou shalt not haue him": [0, 65535], "quiet and depart thou shalt not haue him luc": [0, 65535], "and depart thou shalt not haue him luc complaine": [0, 65535], "depart thou shalt not haue him luc complaine vnto": [0, 65535], "thou shalt not haue him luc complaine vnto the": [0, 65535], "shalt not haue him luc complaine vnto the duke": [0, 65535], "not haue him luc complaine vnto the duke of": [0, 65535], "haue him luc complaine vnto the duke of this": [0, 65535], "him luc complaine vnto the duke of this indignity": [0, 65535], "luc complaine vnto the duke of this indignity adr": [0, 65535], "complaine vnto the duke of this indignity adr come": [0, 65535], "vnto the duke of this indignity adr come go": [0, 65535], "the duke of this indignity adr come go i": [0, 65535], "duke of this indignity adr come go i will": [0, 65535], "of this indignity adr come go i will fall": [0, 65535], "this indignity adr come go i will fall prostrate": [0, 65535], "indignity adr come go i will fall prostrate at": [0, 65535], "adr come go i will fall prostrate at his": [0, 65535], "come go i will fall prostrate at his feete": [0, 65535], "go i will fall prostrate at his feete and": [0, 65535], "i will fall prostrate at his feete and neuer": [0, 65535], "will fall prostrate at his feete and neuer rise": [0, 65535], "fall prostrate at his feete and neuer rise vntill": [0, 65535], "prostrate at his feete and neuer rise vntill my": [0, 65535], "at his feete and neuer rise vntill my teares": [0, 65535], "his feete and neuer rise vntill my teares and": [0, 65535], "feete and neuer rise vntill my teares and prayers": [0, 65535], "and neuer rise vntill my teares and prayers haue": [0, 65535], "neuer rise vntill my teares and prayers haue won": [0, 65535], "rise vntill my teares and prayers haue won his": [0, 65535], "vntill my teares and prayers haue won his grace": [0, 65535], "my teares and prayers haue won his grace to": [0, 65535], "teares and prayers haue won his grace to come": [0, 65535], "and prayers haue won his grace to come in": [0, 65535], "prayers haue won his grace to come in person": [0, 65535], "haue won his grace to come in person hither": [0, 65535], "won his grace to come in person hither and": [0, 65535], "his grace to come in person hither and take": [0, 65535], "grace to come in person hither and take perforce": [0, 65535], "to come in person hither and take perforce my": [0, 65535], "come in person hither and take perforce my husband": [0, 65535], "in person hither and take perforce my husband from": [0, 65535], "person hither and take perforce my husband from the": [0, 65535], "hither and take perforce my husband from the abbesse": [0, 65535], "and take perforce my husband from the abbesse mar": [0, 65535], "take perforce my husband from the abbesse mar by": [0, 65535], "perforce my husband from the abbesse mar by this": [0, 65535], "my husband from the abbesse mar by this i": [0, 65535], "husband from the abbesse mar by this i thinke": [0, 65535], "from the abbesse mar by this i thinke the": [0, 65535], "the abbesse mar by this i thinke the diall": [0, 65535], "abbesse mar by this i thinke the diall points": [0, 65535], "mar by this i thinke the diall points at": [0, 65535], "by this i thinke the diall points at fiue": [0, 65535], "this i thinke the diall points at fiue anon": [0, 65535], "i thinke the diall points at fiue anon i'me": [0, 65535], "thinke the diall points at fiue anon i'me sure": [0, 65535], "the diall points at fiue anon i'me sure the": [0, 65535], "diall points at fiue anon i'me sure the duke": [0, 65535], "points at fiue anon i'me sure the duke himselfe": [0, 65535], "at fiue anon i'me sure the duke himselfe in": [0, 65535], "fiue anon i'me sure the duke himselfe in person": [0, 65535], "anon i'me sure the duke himselfe in person comes": [0, 65535], "i'me sure the duke himselfe in person comes this": [0, 65535], "sure the duke himselfe in person comes this way": [0, 65535], "the duke himselfe in person comes this way to": [0, 65535], "duke himselfe in person comes this way to the": [0, 65535], "himselfe in person comes this way to the melancholly": [0, 65535], "in person comes this way to the melancholly vale": [0, 65535], "person comes this way to the melancholly vale the": [0, 65535], "comes this way to the melancholly vale the place": [0, 65535], "this way to the melancholly vale the place of": [0, 65535], "way to the melancholly vale the place of depth": [0, 65535], "to the melancholly vale the place of depth and": [0, 65535], "the melancholly vale the place of depth and sorrie": [0, 65535], "melancholly vale the place of depth and sorrie execution": [0, 65535], "vale the place of depth and sorrie execution behinde": [0, 65535], "the place of depth and sorrie execution behinde the": [0, 65535], "place of depth and sorrie execution behinde the ditches": [0, 65535], "of depth and sorrie execution behinde the ditches of": [0, 65535], "depth and sorrie execution behinde the ditches of the": [0, 65535], "and sorrie execution behinde the ditches of the abbey": [0, 65535], "sorrie execution behinde the ditches of the abbey heere": [0, 65535], "execution behinde the ditches of the abbey heere gold": [0, 65535], "behinde the ditches of the abbey heere gold vpon": [0, 65535], "the ditches of the abbey heere gold vpon what": [0, 65535], "ditches of the abbey heere gold vpon what cause": [0, 65535], "of the abbey heere gold vpon what cause mar": [0, 65535], "the abbey heere gold vpon what cause mar to": [0, 65535], "abbey heere gold vpon what cause mar to see": [0, 65535], "heere gold vpon what cause mar to see a": [0, 65535], "gold vpon what cause mar to see a reuerent": [0, 65535], "vpon what cause mar to see a reuerent siracusian": [0, 65535], "what cause mar to see a reuerent siracusian merchant": [0, 65535], "cause mar to see a reuerent siracusian merchant who": [0, 65535], "mar to see a reuerent siracusian merchant who put": [0, 65535], "to see a reuerent siracusian merchant who put vnluckily": [0, 65535], "see a reuerent siracusian merchant who put vnluckily into": [0, 65535], "a reuerent siracusian merchant who put vnluckily into this": [0, 65535], "reuerent siracusian merchant who put vnluckily into this bay": [0, 65535], "siracusian merchant who put vnluckily into this bay against": [0, 65535], "merchant who put vnluckily into this bay against the": [0, 65535], "who put vnluckily into this bay against the lawes": [0, 65535], "put vnluckily into this bay against the lawes and": [0, 65535], "vnluckily into this bay against the lawes and statutes": [0, 65535], "into this bay against the lawes and statutes of": [0, 65535], "this bay against the lawes and statutes of this": [0, 65535], "bay against the lawes and statutes of this towne": [0, 65535], "against the lawes and statutes of this towne beheaded": [0, 65535], "the lawes and statutes of this towne beheaded publikely": [0, 65535], "lawes and statutes of this towne beheaded publikely for": [0, 65535], "and statutes of this towne beheaded publikely for his": [0, 65535], "statutes of this towne beheaded publikely for his offence": [0, 65535], "of this towne beheaded publikely for his offence gold": [0, 65535], "this towne beheaded publikely for his offence gold see": [0, 65535], "towne beheaded publikely for his offence gold see where": [0, 65535], "beheaded publikely for his offence gold see where they": [0, 65535], "publikely for his offence gold see where they come": [0, 65535], "for his offence gold see where they come we": [0, 65535], "his offence gold see where they come we wil": [0, 65535], "offence gold see where they come we wil behold": [0, 65535], "gold see where they come we wil behold his": [0, 65535], "see where they come we wil behold his death": [0, 65535], "where they come we wil behold his death luc": [0, 65535], "they come we wil behold his death luc kneele": [0, 65535], "come we wil behold his death luc kneele to": [0, 65535], "we wil behold his death luc kneele to the": [0, 65535], "wil behold his death luc kneele to the duke": [0, 65535], "behold his death luc kneele to the duke before": [0, 65535], "his death luc kneele to the duke before he": [0, 65535], "death luc kneele to the duke before he passe": [0, 65535], "luc kneele to the duke before he passe the": [0, 65535], "kneele to the duke before he passe the abbey": [0, 65535], "to the duke before he passe the abbey enter": [0, 65535], "the duke before he passe the abbey enter the": [0, 65535], "duke before he passe the abbey enter the duke": [0, 65535], "before he passe the abbey enter the duke of": [0, 65535], "he passe the abbey enter the duke of ephesus": [0, 65535], "passe the abbey enter the duke of ephesus and": [0, 65535], "the abbey enter the duke of ephesus and the": [0, 65535], "abbey enter the duke of ephesus and the merchant": [0, 65535], "enter the duke of ephesus and the merchant of": [0, 65535], "the duke of ephesus and the merchant of siracuse": [0, 65535], "duke of ephesus and the merchant of siracuse bare": [0, 65535], "of ephesus and the merchant of siracuse bare head": [0, 65535], "ephesus and the merchant of siracuse bare head with": [0, 65535], "and the merchant of siracuse bare head with the": [0, 65535], "the merchant of siracuse bare head with the headsman": [0, 65535], "merchant of siracuse bare head with the headsman other": [0, 65535], "of siracuse bare head with the headsman other officers": [0, 65535], "siracuse bare head with the headsman other officers duke": [0, 65535], "bare head with the headsman other officers duke yet": [0, 65535], "head with the headsman other officers duke yet once": [0, 65535], "with the headsman other officers duke yet once againe": [0, 65535], "the headsman other officers duke yet once againe proclaime": [0, 65535], "headsman other officers duke yet once againe proclaime it": [0, 65535], "other officers duke yet once againe proclaime it publikely": [0, 65535], "officers duke yet once againe proclaime it publikely if": [0, 65535], "duke yet once againe proclaime it publikely if any": [0, 65535], "yet once againe proclaime it publikely if any friend": [0, 65535], "once againe proclaime it publikely if any friend will": [0, 65535], "againe proclaime it publikely if any friend will pay": [0, 65535], "proclaime it publikely if any friend will pay the": [0, 65535], "it publikely if any friend will pay the summe": [0, 65535], "publikely if any friend will pay the summe for": [0, 65535], "if any friend will pay the summe for him": [0, 65535], "any friend will pay the summe for him he": [0, 65535], "friend will pay the summe for him he shall": [0, 65535], "will pay the summe for him he shall not": [0, 65535], "pay the summe for him he shall not die": [0, 65535], "the summe for him he shall not die so": [0, 65535], "summe for him he shall not die so much": [0, 65535], "for him he shall not die so much we": [0, 65535], "him he shall not die so much we tender": [0, 65535], "he shall not die so much we tender him": [0, 65535], "shall not die so much we tender him adr": [0, 65535], "not die so much we tender him adr iustice": [0, 65535], "die so much we tender him adr iustice most": [0, 65535], "so much we tender him adr iustice most sacred": [0, 65535], "much we tender him adr iustice most sacred duke": [0, 65535], "we tender him adr iustice most sacred duke against": [0, 65535], "tender him adr iustice most sacred duke against the": [0, 65535], "him adr iustice most sacred duke against the abbesse": [0, 65535], "adr iustice most sacred duke against the abbesse duke": [0, 65535], "iustice most sacred duke against the abbesse duke she": [0, 65535], "most sacred duke against the abbesse duke she is": [0, 65535], "sacred duke against the abbesse duke she is a": [0, 65535], "duke against the abbesse duke she is a vertuous": [0, 65535], "against the abbesse duke she is a vertuous and": [0, 65535], "the abbesse duke she is a vertuous and a": [0, 65535], "abbesse duke she is a vertuous and a reuerend": [0, 65535], "duke she is a vertuous and a reuerend lady": [0, 65535], "she is a vertuous and a reuerend lady it": [0, 65535], "is a vertuous and a reuerend lady it cannot": [0, 65535], "a vertuous and a reuerend lady it cannot be": [0, 65535], "vertuous and a reuerend lady it cannot be that": [0, 65535], "and a reuerend lady it cannot be that she": [0, 65535], "a reuerend lady it cannot be that she hath": [0, 65535], "reuerend lady it cannot be that she hath done": [0, 65535], "lady it cannot be that she hath done thee": [0, 65535], "it cannot be that she hath done thee wrong": [0, 65535], "cannot be that she hath done thee wrong adr": [0, 65535], "be that she hath done thee wrong adr may": [0, 65535], "that she hath done thee wrong adr may it": [0, 65535], "she hath done thee wrong adr may it please": [0, 65535], "hath done thee wrong adr may it please your": [0, 65535], "done thee wrong adr may it please your grace": [0, 65535], "thee wrong adr may it please your grace antipholus": [0, 65535], "wrong adr may it please your grace antipholus my": [0, 65535], "adr may it please your grace antipholus my husba": [0, 65535], "may it please your grace antipholus my husba n": [0, 65535], "it please your grace antipholus my husba n d": [0, 65535], "please your grace antipholus my husba n d who": [0, 65535], "your grace antipholus my husba n d who i": [0, 65535], "grace antipholus my husba n d who i made": [0, 65535], "antipholus my husba n d who i made lord": [0, 65535], "my husba n d who i made lord of": [0, 65535], "husba n d who i made lord of me": [0, 65535], "n d who i made lord of me and": [0, 65535], "d who i made lord of me and all": [0, 65535], "who i made lord of me and all i": [0, 65535], "i made lord of me and all i had": [0, 65535], "made lord of me and all i had at": [0, 65535], "lord of me and all i had at your": [0, 65535], "of me and all i had at your important": [0, 65535], "me and all i had at your important letters": [0, 65535], "and all i had at your important letters this": [0, 65535], "all i had at your important letters this ill": [0, 65535], "i had at your important letters this ill day": [0, 65535], "had at your important letters this ill day a": [0, 65535], "at your important letters this ill day a most": [0, 65535], "your important letters this ill day a most outragious": [0, 65535], "important letters this ill day a most outragious fit": [0, 65535], "letters this ill day a most outragious fit of": [0, 65535], "this ill day a most outragious fit of madnesse": [0, 65535], "ill day a most outragious fit of madnesse tooke": [0, 65535], "day a most outragious fit of madnesse tooke him": [0, 65535], "a most outragious fit of madnesse tooke him that": [0, 65535], "most outragious fit of madnesse tooke him that desp'rately": [0, 65535], "outragious fit of madnesse tooke him that desp'rately he": [0, 65535], "fit of madnesse tooke him that desp'rately he hurried": [0, 65535], "of madnesse tooke him that desp'rately he hurried through": [0, 65535], "madnesse tooke him that desp'rately he hurried through the": [0, 65535], "tooke him that desp'rately he hurried through the streete": [0, 65535], "him that desp'rately he hurried through the streete with": [0, 65535], "that desp'rately he hurried through the streete with him": [0, 65535], "desp'rately he hurried through the streete with him his": [0, 65535], "he hurried through the streete with him his bondman": [0, 65535], "hurried through the streete with him his bondman all": [0, 65535], "through the streete with him his bondman all as": [0, 65535], "the streete with him his bondman all as mad": [0, 65535], "streete with him his bondman all as mad as": [0, 65535], "with him his bondman all as mad as he": [0, 65535], "him his bondman all as mad as he doing": [0, 65535], "his bondman all as mad as he doing displeasure": [0, 65535], "bondman all as mad as he doing displeasure to": [0, 65535], "all as mad as he doing displeasure to the": [0, 65535], "as mad as he doing displeasure to the citizens": [0, 65535], "mad as he doing displeasure to the citizens by": [0, 65535], "as he doing displeasure to the citizens by rushing": [0, 65535], "he doing displeasure to the citizens by rushing in": [0, 65535], "doing displeasure to the citizens by rushing in their": [0, 65535], "displeasure to the citizens by rushing in their houses": [0, 65535], "to the citizens by rushing in their houses bearing": [0, 65535], "the citizens by rushing in their houses bearing thence": [0, 65535], "citizens by rushing in their houses bearing thence rings": [0, 65535], "by rushing in their houses bearing thence rings iewels": [0, 65535], "rushing in their houses bearing thence rings iewels any": [0, 65535], "in their houses bearing thence rings iewels any thing": [0, 65535], "their houses bearing thence rings iewels any thing his": [0, 65535], "houses bearing thence rings iewels any thing his rage": [0, 65535], "bearing thence rings iewels any thing his rage did": [0, 65535], "thence rings iewels any thing his rage did like": [0, 65535], "rings iewels any thing his rage did like once": [0, 65535], "iewels any thing his rage did like once did": [0, 65535], "any thing his rage did like once did i": [0, 65535], "thing his rage did like once did i get": [0, 65535], "his rage did like once did i get him": [0, 65535], "rage did like once did i get him bound": [0, 65535], "did like once did i get him bound and": [0, 65535], "like once did i get him bound and sent": [0, 65535], "once did i get him bound and sent him": [0, 65535], "did i get him bound and sent him home": [0, 65535], "i get him bound and sent him home whil'st": [0, 65535], "get him bound and sent him home whil'st to": [0, 65535], "him bound and sent him home whil'st to take": [0, 65535], "bound and sent him home whil'st to take order": [0, 65535], "and sent him home whil'st to take order for": [0, 65535], "sent him home whil'st to take order for the": [0, 65535], "him home whil'st to take order for the wrongs": [0, 65535], "home whil'st to take order for the wrongs i": [0, 65535], "whil'st to take order for the wrongs i went": [0, 65535], "to take order for the wrongs i went that": [0, 65535], "take order for the wrongs i went that heere": [0, 65535], "order for the wrongs i went that heere and": [0, 65535], "for the wrongs i went that heere and there": [0, 65535], "the wrongs i went that heere and there his": [0, 65535], "wrongs i went that heere and there his furie": [0, 65535], "i went that heere and there his furie had": [0, 65535], "went that heere and there his furie had committed": [0, 65535], "that heere and there his furie had committed anon": [0, 65535], "heere and there his furie had committed anon i": [0, 65535], "and there his furie had committed anon i wot": [0, 65535], "there his furie had committed anon i wot not": [0, 65535], "his furie had committed anon i wot not by": [0, 65535], "furie had committed anon i wot not by what": [0, 65535], "had committed anon i wot not by what strong": [0, 65535], "committed anon i wot not by what strong escape": [0, 65535], "anon i wot not by what strong escape he": [0, 65535], "i wot not by what strong escape he broke": [0, 65535], "wot not by what strong escape he broke from": [0, 65535], "not by what strong escape he broke from those": [0, 65535], "by what strong escape he broke from those that": [0, 65535], "what strong escape he broke from those that had": [0, 65535], "strong escape he broke from those that had the": [0, 65535], "escape he broke from those that had the guard": [0, 65535], "he broke from those that had the guard of": [0, 65535], "broke from those that had the guard of him": [0, 65535], "from those that had the guard of him and": [0, 65535], "those that had the guard of him and with": [0, 65535], "that had the guard of him and with his": [0, 65535], "had the guard of him and with his mad": [0, 65535], "the guard of him and with his mad attendant": [0, 65535], "guard of him and with his mad attendant and": [0, 65535], "of him and with his mad attendant and himselfe": [0, 65535], "him and with his mad attendant and himselfe each": [0, 65535], "and with his mad attendant and himselfe each one": [0, 65535], "with his mad attendant and himselfe each one with": [0, 65535], "his mad attendant and himselfe each one with irefull": [0, 65535], "mad attendant and himselfe each one with irefull passion": [0, 65535], "attendant and himselfe each one with irefull passion with": [0, 65535], "and himselfe each one with irefull passion with drawne": [0, 65535], "himselfe each one with irefull passion with drawne swords": [0, 65535], "each one with irefull passion with drawne swords met": [0, 65535], "one with irefull passion with drawne swords met vs": [0, 65535], "with irefull passion with drawne swords met vs againe": [0, 65535], "irefull passion with drawne swords met vs againe and": [0, 65535], "passion with drawne swords met vs againe and madly": [0, 65535], "with drawne swords met vs againe and madly bent": [0, 65535], "drawne swords met vs againe and madly bent on": [0, 65535], "swords met vs againe and madly bent on vs": [0, 65535], "met vs againe and madly bent on vs chac'd": [0, 65535], "vs againe and madly bent on vs chac'd vs": [0, 65535], "againe and madly bent on vs chac'd vs away": [0, 65535], "and madly bent on vs chac'd vs away till": [0, 65535], "madly bent on vs chac'd vs away till raising": [0, 65535], "bent on vs chac'd vs away till raising of": [0, 65535], "on vs chac'd vs away till raising of more": [0, 65535], "vs chac'd vs away till raising of more aide": [0, 65535], "chac'd vs away till raising of more aide we": [0, 65535], "vs away till raising of more aide we came": [0, 65535], "away till raising of more aide we came againe": [0, 65535], "till raising of more aide we came againe to": [0, 65535], "raising of more aide we came againe to binde": [0, 65535], "of more aide we came againe to binde them": [0, 65535], "more aide we came againe to binde them then": [0, 65535], "aide we came againe to binde them then they": [0, 65535], "we came againe to binde them then they fled": [0, 65535], "came againe to binde them then they fled into": [0, 65535], "againe to binde them then they fled into this": [0, 65535], "to binde them then they fled into this abbey": [0, 65535], "binde them then they fled into this abbey whether": [0, 65535], "them then they fled into this abbey whether we": [0, 65535], "then they fled into this abbey whether we pursu'd": [0, 65535], "they fled into this abbey whether we pursu'd them": [0, 65535], "fled into this abbey whether we pursu'd them and": [0, 65535], "into this abbey whether we pursu'd them and heere": [0, 65535], "this abbey whether we pursu'd them and heere the": [0, 65535], "abbey whether we pursu'd them and heere the abbesse": [0, 65535], "whether we pursu'd them and heere the abbesse shuts": [0, 65535], "we pursu'd them and heere the abbesse shuts the": [0, 65535], "pursu'd them and heere the abbesse shuts the gates": [0, 65535], "them and heere the abbesse shuts the gates on": [0, 65535], "and heere the abbesse shuts the gates on vs": [0, 65535], "heere the abbesse shuts the gates on vs and": [0, 65535], "the abbesse shuts the gates on vs and will": [0, 65535], "abbesse shuts the gates on vs and will not": [0, 65535], "shuts the gates on vs and will not suffer": [0, 65535], "the gates on vs and will not suffer vs": [0, 65535], "gates on vs and will not suffer vs to": [0, 65535], "on vs and will not suffer vs to fetch": [0, 65535], "vs and will not suffer vs to fetch him": [0, 65535], "and will not suffer vs to fetch him out": [0, 65535], "will not suffer vs to fetch him out nor": [0, 65535], "not suffer vs to fetch him out nor send": [0, 65535], "suffer vs to fetch him out nor send him": [0, 65535], "vs to fetch him out nor send him forth": [0, 65535], "to fetch him out nor send him forth that": [0, 65535], "fetch him out nor send him forth that we": [0, 65535], "him out nor send him forth that we may": [0, 65535], "out nor send him forth that we may beare": [0, 65535], "nor send him forth that we may beare him": [0, 65535], "send him forth that we may beare him hence": [0, 65535], "him forth that we may beare him hence therefore": [0, 65535], "forth that we may beare him hence therefore most": [0, 65535], "that we may beare him hence therefore most gracious": [0, 65535], "we may beare him hence therefore most gracious duke": [0, 65535], "may beare him hence therefore most gracious duke with": [0, 65535], "beare him hence therefore most gracious duke with thy": [0, 65535], "him hence therefore most gracious duke with thy command": [0, 65535], "hence therefore most gracious duke with thy command let": [0, 65535], "therefore most gracious duke with thy command let him": [0, 65535], "most gracious duke with thy command let him be": [0, 65535], "gracious duke with thy command let him be brought": [0, 65535], "duke with thy command let him be brought forth": [0, 65535], "with thy command let him be brought forth and": [0, 65535], "thy command let him be brought forth and borne": [0, 65535], "command let him be brought forth and borne hence": [0, 65535], "let him be brought forth and borne hence for": [0, 65535], "him be brought forth and borne hence for helpe": [0, 65535], "be brought forth and borne hence for helpe duke": [0, 65535], "brought forth and borne hence for helpe duke long": [0, 65535], "forth and borne hence for helpe duke long since": [0, 65535], "and borne hence for helpe duke long since thy": [0, 65535], "borne hence for helpe duke long since thy husband": [0, 65535], "hence for helpe duke long since thy husband seru'd": [0, 65535], "for helpe duke long since thy husband seru'd me": [0, 65535], "helpe duke long since thy husband seru'd me in": [0, 65535], "duke long since thy husband seru'd me in my": [0, 65535], "long since thy husband seru'd me in my wars": [0, 65535], "since thy husband seru'd me in my wars and": [0, 65535], "thy husband seru'd me in my wars and i": [0, 65535], "husband seru'd me in my wars and i to": [0, 65535], "seru'd me in my wars and i to thee": [0, 65535], "me in my wars and i to thee ingag'd": [0, 65535], "in my wars and i to thee ingag'd a": [0, 65535], "my wars and i to thee ingag'd a princes": [0, 65535], "wars and i to thee ingag'd a princes word": [0, 65535], "and i to thee ingag'd a princes word when": [0, 65535], "i to thee ingag'd a princes word when thou": [0, 65535], "to thee ingag'd a princes word when thou didst": [0, 65535], "thee ingag'd a princes word when thou didst make": [0, 65535], "ingag'd a princes word when thou didst make him": [0, 65535], "a princes word when thou didst make him master": [0, 65535], "princes word when thou didst make him master of": [0, 65535], "word when thou didst make him master of thy": [0, 65535], "when thou didst make him master of thy bed": [0, 65535], "thou didst make him master of thy bed to": [0, 65535], "didst make him master of thy bed to do": [0, 65535], "make him master of thy bed to do him": [0, 65535], "him master of thy bed to do him all": [0, 65535], "master of thy bed to do him all the": [0, 65535], "of thy bed to do him all the grace": [0, 65535], "thy bed to do him all the grace and": [0, 65535], "bed to do him all the grace and good": [0, 65535], "to do him all the grace and good i": [0, 65535], "do him all the grace and good i could": [0, 65535], "him all the grace and good i could go": [0, 65535], "all the grace and good i could go some": [0, 65535], "the grace and good i could go some of": [0, 65535], "grace and good i could go some of you": [0, 65535], "and good i could go some of you knocke": [0, 65535], "good i could go some of you knocke at": [0, 65535], "i could go some of you knocke at the": [0, 65535], "could go some of you knocke at the abbey": [0, 65535], "go some of you knocke at the abbey gate": [0, 65535], "some of you knocke at the abbey gate and": [0, 65535], "of you knocke at the abbey gate and bid": [0, 65535], "you knocke at the abbey gate and bid the": [0, 65535], "knocke at the abbey gate and bid the lady": [0, 65535], "at the abbey gate and bid the lady abbesse": [0, 65535], "the abbey gate and bid the lady abbesse come": [0, 65535], "abbey gate and bid the lady abbesse come to": [0, 65535], "gate and bid the lady abbesse come to me": [0, 65535], "and bid the lady abbesse come to me i": [0, 65535], "bid the lady abbesse come to me i will": [0, 65535], "the lady abbesse come to me i will determine": [0, 65535], "lady abbesse come to me i will determine this": [0, 65535], "abbesse come to me i will determine this before": [0, 65535], "come to me i will determine this before i": [0, 65535], "to me i will determine this before i stirre": [0, 65535], "me i will determine this before i stirre enter": [0, 65535], "i will determine this before i stirre enter a": [0, 65535], "will determine this before i stirre enter a messenger": [0, 65535], "determine this before i stirre enter a messenger oh": [0, 65535], "this before i stirre enter a messenger oh mistris": [0, 65535], "before i stirre enter a messenger oh mistris mistris": [0, 65535], "i stirre enter a messenger oh mistris mistris shift": [0, 65535], "stirre enter a messenger oh mistris mistris shift and": [0, 65535], "enter a messenger oh mistris mistris shift and saue": [0, 65535], "a messenger oh mistris mistris shift and saue your": [0, 65535], "messenger oh mistris mistris shift and saue your selfe": [0, 65535], "oh mistris mistris shift and saue your selfe my": [0, 65535], "mistris mistris shift and saue your selfe my master": [0, 65535], "mistris shift and saue your selfe my master and": [0, 65535], "shift and saue your selfe my master and his": [0, 65535], "and saue your selfe my master and his man": [0, 65535], "saue your selfe my master and his man are": [0, 65535], "your selfe my master and his man are both": [0, 65535], "selfe my master and his man are both broke": [0, 65535], "my master and his man are both broke loose": [0, 65535], "master and his man are both broke loose beaten": [0, 65535], "and his man are both broke loose beaten the": [0, 65535], "his man are both broke loose beaten the maids": [0, 65535], "man are both broke loose beaten the maids a": [0, 65535], "are both broke loose beaten the maids a row": [0, 65535], "both broke loose beaten the maids a row and": [0, 65535], "broke loose beaten the maids a row and bound": [0, 65535], "loose beaten the maids a row and bound the": [0, 65535], "beaten the maids a row and bound the doctor": [0, 65535], "the maids a row and bound the doctor whose": [0, 65535], "maids a row and bound the doctor whose beard": [0, 65535], "a row and bound the doctor whose beard they": [0, 65535], "row and bound the doctor whose beard they haue": [0, 65535], "and bound the doctor whose beard they haue sindg'd": [0, 65535], "bound the doctor whose beard they haue sindg'd off": [0, 65535], "the doctor whose beard they haue sindg'd off with": [0, 65535], "doctor whose beard they haue sindg'd off with brands": [0, 65535], "whose beard they haue sindg'd off with brands of": [0, 65535], "beard they haue sindg'd off with brands of fire": [0, 65535], "they haue sindg'd off with brands of fire and": [0, 65535], "haue sindg'd off with brands of fire and euer": [0, 65535], "sindg'd off with brands of fire and euer as": [0, 65535], "off with brands of fire and euer as it": [0, 65535], "with brands of fire and euer as it blaz'd": [0, 65535], "brands of fire and euer as it blaz'd they": [0, 65535], "of fire and euer as it blaz'd they threw": [0, 65535], "fire and euer as it blaz'd they threw on": [0, 65535], "and euer as it blaz'd they threw on him": [0, 65535], "euer as it blaz'd they threw on him great": [0, 65535], "as it blaz'd they threw on him great pailes": [0, 65535], "it blaz'd they threw on him great pailes of": [0, 65535], "blaz'd they threw on him great pailes of puddled": [0, 65535], "they threw on him great pailes of puddled myre": [0, 65535], "threw on him great pailes of puddled myre to": [0, 65535], "on him great pailes of puddled myre to quench": [0, 65535], "him great pailes of puddled myre to quench the": [0, 65535], "great pailes of puddled myre to quench the haire": [0, 65535], "pailes of puddled myre to quench the haire my": [0, 65535], "of puddled myre to quench the haire my mr": [0, 65535], "puddled myre to quench the haire my mr preaches": [0, 65535], "myre to quench the haire my mr preaches patience": [0, 65535], "to quench the haire my mr preaches patience to": [0, 65535], "quench the haire my mr preaches patience to him": [0, 65535], "the haire my mr preaches patience to him and": [0, 65535], "haire my mr preaches patience to him and the": [0, 65535], "my mr preaches patience to him and the while": [0, 65535], "mr preaches patience to him and the while his": [0, 65535], "preaches patience to him and the while his man": [0, 65535], "patience to him and the while his man with": [0, 65535], "to him and the while his man with cizers": [0, 65535], "him and the while his man with cizers nickes": [0, 65535], "and the while his man with cizers nickes him": [0, 65535], "the while his man with cizers nickes him like": [0, 65535], "while his man with cizers nickes him like a": [0, 65535], "his man with cizers nickes him like a foole": [0, 65535], "man with cizers nickes him like a foole and": [0, 65535], "with cizers nickes him like a foole and sure": [0, 65535], "cizers nickes him like a foole and sure vnlesse": [0, 65535], "nickes him like a foole and sure vnlesse you": [0, 65535], "him like a foole and sure vnlesse you send": [0, 65535], "like a foole and sure vnlesse you send some": [0, 65535], "a foole and sure vnlesse you send some present": [0, 65535], "foole and sure vnlesse you send some present helpe": [0, 65535], "and sure vnlesse you send some present helpe betweene": [0, 65535], "sure vnlesse you send some present helpe betweene them": [0, 65535], "vnlesse you send some present helpe betweene them they": [0, 65535], "you send some present helpe betweene them they will": [0, 65535], "send some present helpe betweene them they will kill": [0, 65535], "some present helpe betweene them they will kill the": [0, 65535], "present helpe betweene them they will kill the coniurer": [0, 65535], "helpe betweene them they will kill the coniurer adr": [0, 65535], "betweene them they will kill the coniurer adr peace": [0, 65535], "them they will kill the coniurer adr peace foole": [0, 65535], "they will kill the coniurer adr peace foole thy": [0, 65535], "will kill the coniurer adr peace foole thy master": [0, 65535], "kill the coniurer adr peace foole thy master and": [0, 65535], "the coniurer adr peace foole thy master and his": [0, 65535], "coniurer adr peace foole thy master and his man": [0, 65535], "adr peace foole thy master and his man are": [0, 65535], "peace foole thy master and his man are here": [0, 65535], "foole thy master and his man are here and": [0, 65535], "thy master and his man are here and that": [0, 65535], "master and his man are here and that is": [0, 65535], "and his man are here and that is false": [0, 65535], "his man are here and that is false thou": [0, 65535], "man are here and that is false thou dost": [0, 65535], "are here and that is false thou dost report": [0, 65535], "here and that is false thou dost report to": [0, 65535], "and that is false thou dost report to vs": [0, 65535], "that is false thou dost report to vs mess": [0, 65535], "is false thou dost report to vs mess mistris": [0, 65535], "false thou dost report to vs mess mistris vpon": [0, 65535], "thou dost report to vs mess mistris vpon my": [0, 65535], "dost report to vs mess mistris vpon my life": [0, 65535], "report to vs mess mistris vpon my life i": [0, 65535], "to vs mess mistris vpon my life i tel": [0, 65535], "vs mess mistris vpon my life i tel you": [0, 65535], "mess mistris vpon my life i tel you true": [0, 65535], "mistris vpon my life i tel you true i": [0, 65535], "vpon my life i tel you true i haue": [0, 65535], "my life i tel you true i haue not": [0, 65535], "life i tel you true i haue not breath'd": [0, 65535], "i tel you true i haue not breath'd almost": [0, 65535], "tel you true i haue not breath'd almost since": [0, 65535], "you true i haue not breath'd almost since i": [0, 65535], "true i haue not breath'd almost since i did": [0, 65535], "i haue not breath'd almost since i did see": [0, 65535], "haue not breath'd almost since i did see it": [0, 65535], "not breath'd almost since i did see it he": [0, 65535], "breath'd almost since i did see it he cries": [0, 65535], "almost since i did see it he cries for": [0, 65535], "since i did see it he cries for you": [0, 65535], "i did see it he cries for you and": [0, 65535], "did see it he cries for you and vowes": [0, 65535], "see it he cries for you and vowes if": [0, 65535], "it he cries for you and vowes if he": [0, 65535], "he cries for you and vowes if he can": [0, 65535], "cries for you and vowes if he can take": [0, 65535], "for you and vowes if he can take you": [0, 65535], "you and vowes if he can take you to": [0, 65535], "and vowes if he can take you to scorch": [0, 65535], "vowes if he can take you to scorch your": [0, 65535], "if he can take you to scorch your face": [0, 65535], "he can take you to scorch your face and": [0, 65535], "can take you to scorch your face and to": [0, 65535], "take you to scorch your face and to disfigure": [0, 65535], "you to scorch your face and to disfigure you": [0, 65535], "to scorch your face and to disfigure you cry": [0, 65535], "scorch your face and to disfigure you cry within": [0, 65535], "your face and to disfigure you cry within harke": [0, 65535], "face and to disfigure you cry within harke harke": [0, 65535], "and to disfigure you cry within harke harke i": [0, 65535], "to disfigure you cry within harke harke i heare": [0, 65535], "disfigure you cry within harke harke i heare him": [0, 65535], "you cry within harke harke i heare him mistris": [0, 65535], "cry within harke harke i heare him mistris flie": [0, 65535], "within harke harke i heare him mistris flie be": [0, 65535], "harke harke i heare him mistris flie be gone": [0, 65535], "harke i heare him mistris flie be gone duke": [0, 65535], "i heare him mistris flie be gone duke come": [0, 65535], "heare him mistris flie be gone duke come stand": [0, 65535], "him mistris flie be gone duke come stand by": [0, 65535], "mistris flie be gone duke come stand by me": [0, 65535], "flie be gone duke come stand by me feare": [0, 65535], "be gone duke come stand by me feare nothing": [0, 65535], "gone duke come stand by me feare nothing guard": [0, 65535], "duke come stand by me feare nothing guard with": [0, 65535], "come stand by me feare nothing guard with halberds": [0, 65535], "stand by me feare nothing guard with halberds adr": [0, 65535], "by me feare nothing guard with halberds adr ay": [0, 65535], "me feare nothing guard with halberds adr ay me": [0, 65535], "feare nothing guard with halberds adr ay me it": [0, 65535], "nothing guard with halberds adr ay me it is": [0, 65535], "guard with halberds adr ay me it is my": [0, 65535], "with halberds adr ay me it is my husband": [0, 65535], "halberds adr ay me it is my husband witnesse": [0, 65535], "adr ay me it is my husband witnesse you": [0, 65535], "ay me it is my husband witnesse you that": [0, 65535], "me it is my husband witnesse you that he": [0, 65535], "it is my husband witnesse you that he is": [0, 65535], "is my husband witnesse you that he is borne": [0, 65535], "my husband witnesse you that he is borne about": [0, 65535], "husband witnesse you that he is borne about inuisible": [0, 65535], "witnesse you that he is borne about inuisible euen": [0, 65535], "you that he is borne about inuisible euen now": [0, 65535], "that he is borne about inuisible euen now we": [0, 65535], "he is borne about inuisible euen now we hous'd": [0, 65535], "is borne about inuisible euen now we hous'd him": [0, 65535], "borne about inuisible euen now we hous'd him in": [0, 65535], "about inuisible euen now we hous'd him in the": [0, 65535], "inuisible euen now we hous'd him in the abbey": [0, 65535], "euen now we hous'd him in the abbey heere": [0, 65535], "now we hous'd him in the abbey heere and": [0, 65535], "we hous'd him in the abbey heere and now": [0, 65535], "hous'd him in the abbey heere and now he's": [0, 65535], "him in the abbey heere and now he's there": [0, 65535], "in the abbey heere and now he's there past": [0, 65535], "the abbey heere and now he's there past thought": [0, 65535], "abbey heere and now he's there past thought of": [0, 65535], "heere and now he's there past thought of humane": [0, 65535], "and now he's there past thought of humane reason": [0, 65535], "now he's there past thought of humane reason enter": [0, 65535], "he's there past thought of humane reason enter antipholus": [0, 65535], "there past thought of humane reason enter antipholus and": [0, 65535], "past thought of humane reason enter antipholus and e": [0, 65535], "thought of humane reason enter antipholus and e dromio": [0, 65535], "of humane reason enter antipholus and e dromio of": [0, 65535], "humane reason enter antipholus and e dromio of ephesus": [0, 65535], "reason enter antipholus and e dromio of ephesus e": [0, 65535], "enter antipholus and e dromio of ephesus e ant": [0, 65535], "antipholus and e dromio of ephesus e ant iustice": [0, 65535], "and e dromio of ephesus e ant iustice most": [0, 65535], "e dromio of ephesus e ant iustice most gracious": [0, 65535], "dromio of ephesus e ant iustice most gracious duke": [0, 65535], "of ephesus e ant iustice most gracious duke oh": [0, 65535], "ephesus e ant iustice most gracious duke oh grant": [0, 65535], "e ant iustice most gracious duke oh grant me": [0, 65535], "ant iustice most gracious duke oh grant me iustice": [0, 65535], "iustice most gracious duke oh grant me iustice euen": [0, 65535], "most gracious duke oh grant me iustice euen for": [0, 65535], "gracious duke oh grant me iustice euen for the": [0, 65535], "duke oh grant me iustice euen for the seruice": [0, 65535], "oh grant me iustice euen for the seruice that": [0, 65535], "grant me iustice euen for the seruice that long": [0, 65535], "me iustice euen for the seruice that long since": [0, 65535], "iustice euen for the seruice that long since i": [0, 65535], "euen for the seruice that long since i did": [0, 65535], "for the seruice that long since i did thee": [0, 65535], "the seruice that long since i did thee when": [0, 65535], "seruice that long since i did thee when i": [0, 65535], "that long since i did thee when i bestrid": [0, 65535], "long since i did thee when i bestrid thee": [0, 65535], "since i did thee when i bestrid thee in": [0, 65535], "i did thee when i bestrid thee in the": [0, 65535], "did thee when i bestrid thee in the warres": [0, 65535], "thee when i bestrid thee in the warres and": [0, 65535], "when i bestrid thee in the warres and tooke": [0, 65535], "i bestrid thee in the warres and tooke deepe": [0, 65535], "bestrid thee in the warres and tooke deepe scarres": [0, 65535], "thee in the warres and tooke deepe scarres to": [0, 65535], "in the warres and tooke deepe scarres to saue": [0, 65535], "the warres and tooke deepe scarres to saue thy": [0, 65535], "warres and tooke deepe scarres to saue thy life": [0, 65535], "and tooke deepe scarres to saue thy life euen": [0, 65535], "tooke deepe scarres to saue thy life euen for": [0, 65535], "deepe scarres to saue thy life euen for the": [0, 65535], "scarres to saue thy life euen for the blood": [0, 65535], "to saue thy life euen for the blood that": [0, 65535], "saue thy life euen for the blood that then": [0, 65535], "thy life euen for the blood that then i": [0, 65535], "life euen for the blood that then i lost": [0, 65535], "euen for the blood that then i lost for": [0, 65535], "for the blood that then i lost for thee": [0, 65535], "the blood that then i lost for thee now": [0, 65535], "blood that then i lost for thee now grant": [0, 65535], "that then i lost for thee now grant me": [0, 65535], "then i lost for thee now grant me iustice": [0, 65535], "i lost for thee now grant me iustice mar": [0, 65535], "lost for thee now grant me iustice mar fat": [0, 65535], "for thee now grant me iustice mar fat vnlesse": [0, 65535], "thee now grant me iustice mar fat vnlesse the": [0, 65535], "now grant me iustice mar fat vnlesse the feare": [0, 65535], "grant me iustice mar fat vnlesse the feare of": [0, 65535], "me iustice mar fat vnlesse the feare of death": [0, 65535], "iustice mar fat vnlesse the feare of death doth": [0, 65535], "mar fat vnlesse the feare of death doth make": [0, 65535], "fat vnlesse the feare of death doth make me": [0, 65535], "vnlesse the feare of death doth make me dote": [0, 65535], "the feare of death doth make me dote i": [0, 65535], "feare of death doth make me dote i see": [0, 65535], "of death doth make me dote i see my": [0, 65535], "death doth make me dote i see my sonne": [0, 65535], "doth make me dote i see my sonne antipholus": [0, 65535], "make me dote i see my sonne antipholus and": [0, 65535], "me dote i see my sonne antipholus and dromio": [0, 65535], "dote i see my sonne antipholus and dromio e": [0, 65535], "i see my sonne antipholus and dromio e ant": [0, 65535], "see my sonne antipholus and dromio e ant iustice": [0, 65535], "my sonne antipholus and dromio e ant iustice sweet": [0, 65535], "sonne antipholus and dromio e ant iustice sweet prince": [0, 65535], "antipholus and dromio e ant iustice sweet prince against": [0, 65535], "and dromio e ant iustice sweet prince against that": [0, 65535], "dromio e ant iustice sweet prince against that woman": [0, 65535], "e ant iustice sweet prince against that woman there": [0, 65535], "ant iustice sweet prince against that woman there she": [0, 65535], "iustice sweet prince against that woman there she whom": [0, 65535], "sweet prince against that woman there she whom thou": [0, 65535], "prince against that woman there she whom thou gau'st": [0, 65535], "against that woman there she whom thou gau'st to": [0, 65535], "that woman there she whom thou gau'st to me": [0, 65535], "woman there she whom thou gau'st to me to": [0, 65535], "there she whom thou gau'st to me to be": [0, 65535], "she whom thou gau'st to me to be my": [0, 65535], "whom thou gau'st to me to be my wife": [0, 65535], "thou gau'st to me to be my wife that": [0, 65535], "gau'st to me to be my wife that hath": [0, 65535], "to me to be my wife that hath abused": [0, 65535], "me to be my wife that hath abused and": [0, 65535], "to be my wife that hath abused and dishonored": [0, 65535], "be my wife that hath abused and dishonored me": [0, 65535], "my wife that hath abused and dishonored me euen": [0, 65535], "wife that hath abused and dishonored me euen in": [0, 65535], "that hath abused and dishonored me euen in the": [0, 65535], "hath abused and dishonored me euen in the strength": [0, 65535], "abused and dishonored me euen in the strength and": [0, 65535], "and dishonored me euen in the strength and height": [0, 65535], "dishonored me euen in the strength and height of": [0, 65535], "me euen in the strength and height of iniurie": [0, 65535], "euen in the strength and height of iniurie beyond": [0, 65535], "in the strength and height of iniurie beyond imagination": [0, 65535], "the strength and height of iniurie beyond imagination is": [0, 65535], "strength and height of iniurie beyond imagination is the": [0, 65535], "and height of iniurie beyond imagination is the wrong": [0, 65535], "height of iniurie beyond imagination is the wrong that": [0, 65535], "of iniurie beyond imagination is the wrong that she": [0, 65535], "iniurie beyond imagination is the wrong that she this": [0, 65535], "beyond imagination is the wrong that she this day": [0, 65535], "imagination is the wrong that she this day hath": [0, 65535], "is the wrong that she this day hath shamelesse": [0, 65535], "the wrong that she this day hath shamelesse throwne": [0, 65535], "wrong that she this day hath shamelesse throwne on": [0, 65535], "that she this day hath shamelesse throwne on me": [0, 65535], "she this day hath shamelesse throwne on me duke": [0, 65535], "this day hath shamelesse throwne on me duke discouer": [0, 65535], "day hath shamelesse throwne on me duke discouer how": [0, 65535], "hath shamelesse throwne on me duke discouer how and": [0, 65535], "shamelesse throwne on me duke discouer how and thou": [0, 65535], "throwne on me duke discouer how and thou shalt": [0, 65535], "on me duke discouer how and thou shalt finde": [0, 65535], "me duke discouer how and thou shalt finde me": [0, 65535], "duke discouer how and thou shalt finde me iust": [0, 65535], "discouer how and thou shalt finde me iust e": [0, 65535], "how and thou shalt finde me iust e ant": [0, 65535], "and thou shalt finde me iust e ant this": [0, 65535], "thou shalt finde me iust e ant this day": [0, 65535], "shalt finde me iust e ant this day great": [0, 65535], "finde me iust e ant this day great duke": [0, 65535], "me iust e ant this day great duke she": [0, 65535], "iust e ant this day great duke she shut": [0, 65535], "e ant this day great duke she shut the": [0, 65535], "ant this day great duke she shut the doores": [0, 65535], "this day great duke she shut the doores vpon": [0, 65535], "day great duke she shut the doores vpon me": [0, 65535], "great duke she shut the doores vpon me while": [0, 65535], "duke she shut the doores vpon me while she": [0, 65535], "she shut the doores vpon me while she with": [0, 65535], "shut the doores vpon me while she with harlots": [0, 65535], "the doores vpon me while she with harlots feasted": [0, 65535], "doores vpon me while she with harlots feasted in": [0, 65535], "vpon me while she with harlots feasted in my": [0, 65535], "me while she with harlots feasted in my house": [0, 65535], "while she with harlots feasted in my house duke": [0, 65535], "she with harlots feasted in my house duke a": [0, 65535], "with harlots feasted in my house duke a greeuous": [0, 65535], "harlots feasted in my house duke a greeuous fault": [0, 65535], "feasted in my house duke a greeuous fault say": [0, 65535], "in my house duke a greeuous fault say woman": [0, 65535], "my house duke a greeuous fault say woman didst": [0, 65535], "house duke a greeuous fault say woman didst thou": [0, 65535], "duke a greeuous fault say woman didst thou so": [0, 65535], "a greeuous fault say woman didst thou so adr": [0, 65535], "greeuous fault say woman didst thou so adr no": [0, 65535], "fault say woman didst thou so adr no my": [0, 65535], "say woman didst thou so adr no my good": [0, 65535], "woman didst thou so adr no my good lord": [0, 65535], "didst thou so adr no my good lord my": [0, 65535], "thou so adr no my good lord my selfe": [0, 65535], "so adr no my good lord my selfe he": [0, 65535], "adr no my good lord my selfe he and": [0, 65535], "no my good lord my selfe he and my": [0, 65535], "my good lord my selfe he and my sister": [0, 65535], "good lord my selfe he and my sister to": [0, 65535], "lord my selfe he and my sister to day": [0, 65535], "my selfe he and my sister to day did": [0, 65535], "selfe he and my sister to day did dine": [0, 65535], "he and my sister to day did dine together": [0, 65535], "and my sister to day did dine together so": [0, 65535], "my sister to day did dine together so befall": [0, 65535], "sister to day did dine together so befall my": [0, 65535], "to day did dine together so befall my soule": [0, 65535], "day did dine together so befall my soule as": [0, 65535], "did dine together so befall my soule as this": [0, 65535], "dine together so befall my soule as this is": [0, 65535], "together so befall my soule as this is false": [0, 65535], "so befall my soule as this is false he": [0, 65535], "befall my soule as this is false he burthens": [0, 65535], "my soule as this is false he burthens me": [0, 65535], "soule as this is false he burthens me withall": [0, 65535], "as this is false he burthens me withall luc": [0, 65535], "this is false he burthens me withall luc nere": [0, 65535], "is false he burthens me withall luc nere may": [0, 65535], "false he burthens me withall luc nere may i": [0, 65535], "he burthens me withall luc nere may i looke": [0, 65535], "burthens me withall luc nere may i looke on": [0, 65535], "me withall luc nere may i looke on day": [0, 65535], "withall luc nere may i looke on day nor": [0, 65535], "luc nere may i looke on day nor sleepe": [0, 65535], "nere may i looke on day nor sleepe on": [0, 65535], "may i looke on day nor sleepe on night": [0, 65535], "i looke on day nor sleepe on night but": [0, 65535], "looke on day nor sleepe on night but she": [0, 65535], "on day nor sleepe on night but she tels": [0, 65535], "day nor sleepe on night but she tels to": [0, 65535], "nor sleepe on night but she tels to your": [0, 65535], "sleepe on night but she tels to your highnesse": [0, 65535], "on night but she tels to your highnesse simple": [0, 65535], "night but she tels to your highnesse simple truth": [0, 65535], "but she tels to your highnesse simple truth gold": [0, 65535], "she tels to your highnesse simple truth gold o": [0, 65535], "tels to your highnesse simple truth gold o periur'd": [0, 65535], "to your highnesse simple truth gold o periur'd woman": [0, 65535], "your highnesse simple truth gold o periur'd woman they": [0, 65535], "highnesse simple truth gold o periur'd woman they are": [0, 65535], "simple truth gold o periur'd woman they are both": [0, 65535], "truth gold o periur'd woman they are both forsworne": [0, 65535], "gold o periur'd woman they are both forsworne in": [0, 65535], "o periur'd woman they are both forsworne in this": [0, 65535], "periur'd woman they are both forsworne in this the": [0, 65535], "woman they are both forsworne in this the madman": [0, 65535], "they are both forsworne in this the madman iustly": [0, 65535], "are both forsworne in this the madman iustly chargeth": [0, 65535], "both forsworne in this the madman iustly chargeth them": [0, 65535], "forsworne in this the madman iustly chargeth them e": [0, 65535], "in this the madman iustly chargeth them e ant": [0, 65535], "this the madman iustly chargeth them e ant my": [0, 65535], "the madman iustly chargeth them e ant my liege": [0, 65535], "madman iustly chargeth them e ant my liege i": [0, 65535], "iustly chargeth them e ant my liege i am": [0, 65535], "chargeth them e ant my liege i am aduised": [0, 65535], "them e ant my liege i am aduised what": [0, 65535], "e ant my liege i am aduised what i": [0, 65535], "ant my liege i am aduised what i say": [0, 65535], "my liege i am aduised what i say neither": [0, 65535], "liege i am aduised what i say neither disturbed": [0, 65535], "i am aduised what i say neither disturbed with": [0, 65535], "am aduised what i say neither disturbed with the": [0, 65535], "aduised what i say neither disturbed with the effect": [0, 65535], "what i say neither disturbed with the effect of": [0, 65535], "i say neither disturbed with the effect of wine": [0, 65535], "say neither disturbed with the effect of wine nor": [0, 65535], "neither disturbed with the effect of wine nor headie": [0, 65535], "disturbed with the effect of wine nor headie rash": [0, 65535], "with the effect of wine nor headie rash prouoak'd": [0, 65535], "the effect of wine nor headie rash prouoak'd with": [0, 65535], "effect of wine nor headie rash prouoak'd with raging": [0, 65535], "of wine nor headie rash prouoak'd with raging ire": [0, 65535], "wine nor headie rash prouoak'd with raging ire albeit": [0, 65535], "nor headie rash prouoak'd with raging ire albeit my": [0, 65535], "headie rash prouoak'd with raging ire albeit my wrongs": [0, 65535], "rash prouoak'd with raging ire albeit my wrongs might": [0, 65535], "prouoak'd with raging ire albeit my wrongs might make": [0, 65535], "with raging ire albeit my wrongs might make one": [0, 65535], "raging ire albeit my wrongs might make one wiser": [0, 65535], "ire albeit my wrongs might make one wiser mad": [0, 65535], "albeit my wrongs might make one wiser mad this": [0, 65535], "my wrongs might make one wiser mad this woman": [0, 65535], "wrongs might make one wiser mad this woman lock'd": [0, 65535], "might make one wiser mad this woman lock'd me": [0, 65535], "make one wiser mad this woman lock'd me out": [0, 65535], "one wiser mad this woman lock'd me out this": [0, 65535], "wiser mad this woman lock'd me out this day": [0, 65535], "mad this woman lock'd me out this day from": [0, 65535], "this woman lock'd me out this day from dinner": [0, 65535], "woman lock'd me out this day from dinner that": [0, 65535], "lock'd me out this day from dinner that goldsmith": [0, 65535], "me out this day from dinner that goldsmith there": [0, 65535], "out this day from dinner that goldsmith there were": [0, 65535], "this day from dinner that goldsmith there were he": [0, 65535], "day from dinner that goldsmith there were he not": [0, 65535], "from dinner that goldsmith there were he not pack'd": [0, 65535], "dinner that goldsmith there were he not pack'd with": [0, 65535], "that goldsmith there were he not pack'd with her": [0, 65535], "goldsmith there were he not pack'd with her could": [0, 65535], "there were he not pack'd with her could witnesse": [0, 65535], "were he not pack'd with her could witnesse it": [0, 65535], "he not pack'd with her could witnesse it for": [0, 65535], "not pack'd with her could witnesse it for he": [0, 65535], "pack'd with her could witnesse it for he was": [0, 65535], "with her could witnesse it for he was with": [0, 65535], "her could witnesse it for he was with me": [0, 65535], "could witnesse it for he was with me then": [0, 65535], "witnesse it for he was with me then who": [0, 65535], "it for he was with me then who parted": [0, 65535], "for he was with me then who parted with": [0, 65535], "he was with me then who parted with me": [0, 65535], "was with me then who parted with me to": [0, 65535], "with me then who parted with me to go": [0, 65535], "me then who parted with me to go fetch": [0, 65535], "then who parted with me to go fetch a": [0, 65535], "who parted with me to go fetch a chaine": [0, 65535], "parted with me to go fetch a chaine promising": [0, 65535], "with me to go fetch a chaine promising to": [0, 65535], "me to go fetch a chaine promising to bring": [0, 65535], "to go fetch a chaine promising to bring it": [0, 65535], "go fetch a chaine promising to bring it to": [0, 65535], "fetch a chaine promising to bring it to the": [0, 65535], "a chaine promising to bring it to the porpentine": [0, 65535], "chaine promising to bring it to the porpentine where": [0, 65535], "promising to bring it to the porpentine where balthasar": [0, 65535], "to bring it to the porpentine where balthasar and": [0, 65535], "bring it to the porpentine where balthasar and i": [0, 65535], "it to the porpentine where balthasar and i did": [0, 65535], "to the porpentine where balthasar and i did dine": [0, 65535], "the porpentine where balthasar and i did dine together": [0, 65535], "porpentine where balthasar and i did dine together our": [0, 65535], "where balthasar and i did dine together our dinner": [0, 65535], "balthasar and i did dine together our dinner done": [0, 65535], "and i did dine together our dinner done and": [0, 65535], "i did dine together our dinner done and he": [0, 65535], "did dine together our dinner done and he not": [0, 65535], "dine together our dinner done and he not comming": [0, 65535], "together our dinner done and he not comming thither": [0, 65535], "our dinner done and he not comming thither i": [0, 65535], "dinner done and he not comming thither i went": [0, 65535], "done and he not comming thither i went to": [0, 65535], "and he not comming thither i went to seeke": [0, 65535], "he not comming thither i went to seeke him": [0, 65535], "not comming thither i went to seeke him in": [0, 65535], "comming thither i went to seeke him in the": [0, 65535], "thither i went to seeke him in the street": [0, 65535], "i went to seeke him in the street i": [0, 65535], "went to seeke him in the street i met": [0, 65535], "to seeke him in the street i met him": [0, 65535], "seeke him in the street i met him and": [0, 65535], "him in the street i met him and in": [0, 65535], "in the street i met him and in his": [0, 65535], "the street i met him and in his companie": [0, 65535], "street i met him and in his companie that": [0, 65535], "i met him and in his companie that gentleman": [0, 65535], "met him and in his companie that gentleman there": [0, 65535], "him and in his companie that gentleman there did": [0, 65535], "and in his companie that gentleman there did this": [0, 65535], "in his companie that gentleman there did this periur'd": [0, 65535], "his companie that gentleman there did this periur'd goldsmith": [0, 65535], "companie that gentleman there did this periur'd goldsmith sweare": [0, 65535], "that gentleman there did this periur'd goldsmith sweare me": [0, 65535], "gentleman there did this periur'd goldsmith sweare me downe": [0, 65535], "there did this periur'd goldsmith sweare me downe that": [0, 65535], "did this periur'd goldsmith sweare me downe that i": [0, 65535], "this periur'd goldsmith sweare me downe that i this": [0, 65535], "periur'd goldsmith sweare me downe that i this day": [0, 65535], "goldsmith sweare me downe that i this day of": [0, 65535], "sweare me downe that i this day of him": [0, 65535], "me downe that i this day of him receiu'd": [0, 65535], "downe that i this day of him receiu'd the": [0, 65535], "that i this day of him receiu'd the chaine": [0, 65535], "i this day of him receiu'd the chaine which": [0, 65535], "this day of him receiu'd the chaine which god": [0, 65535], "day of him receiu'd the chaine which god he": [0, 65535], "of him receiu'd the chaine which god he knowes": [0, 65535], "him receiu'd the chaine which god he knowes i": [0, 65535], "receiu'd the chaine which god he knowes i saw": [0, 65535], "the chaine which god he knowes i saw not": [0, 65535], "chaine which god he knowes i saw not for": [0, 65535], "which god he knowes i saw not for the": [0, 65535], "god he knowes i saw not for the which": [0, 65535], "he knowes i saw not for the which he": [0, 65535], "knowes i saw not for the which he did": [0, 65535], "i saw not for the which he did arrest": [0, 65535], "saw not for the which he did arrest me": [0, 65535], "not for the which he did arrest me with": [0, 65535], "for the which he did arrest me with an": [0, 65535], "the which he did arrest me with an officer": [0, 65535], "which he did arrest me with an officer i": [0, 65535], "he did arrest me with an officer i did": [0, 65535], "did arrest me with an officer i did obey": [0, 65535], "arrest me with an officer i did obey and": [0, 65535], "me with an officer i did obey and sent": [0, 65535], "with an officer i did obey and sent my": [0, 65535], "an officer i did obey and sent my pesant": [0, 65535], "officer i did obey and sent my pesant home": [0, 65535], "i did obey and sent my pesant home for": [0, 65535], "did obey and sent my pesant home for certaine": [0, 65535], "obey and sent my pesant home for certaine duckets": [0, 65535], "and sent my pesant home for certaine duckets he": [0, 65535], "sent my pesant home for certaine duckets he with": [0, 65535], "my pesant home for certaine duckets he with none": [0, 65535], "pesant home for certaine duckets he with none return'd": [0, 65535], "home for certaine duckets he with none return'd then": [0, 65535], "for certaine duckets he with none return'd then fairely": [0, 65535], "certaine duckets he with none return'd then fairely i": [0, 65535], "duckets he with none return'd then fairely i bespoke": [0, 65535], "he with none return'd then fairely i bespoke the": [0, 65535], "with none return'd then fairely i bespoke the officer": [0, 65535], "none return'd then fairely i bespoke the officer to": [0, 65535], "return'd then fairely i bespoke the officer to go": [0, 65535], "then fairely i bespoke the officer to go in": [0, 65535], "fairely i bespoke the officer to go in person": [0, 65535], "i bespoke the officer to go in person with": [0, 65535], "bespoke the officer to go in person with me": [0, 65535], "the officer to go in person with me to": [0, 65535], "officer to go in person with me to my": [0, 65535], "to go in person with me to my house": [0, 65535], "go in person with me to my house by'th'": [0, 65535], "in person with me to my house by'th' way": [0, 65535], "person with me to my house by'th' way we": [0, 65535], "with me to my house by'th' way we met": [0, 65535], "me to my house by'th' way we met my": [0, 65535], "to my house by'th' way we met my wife": [0, 65535], "my house by'th' way we met my wife her": [0, 65535], "house by'th' way we met my wife her sister": [0, 65535], "by'th' way we met my wife her sister and": [0, 65535], "way we met my wife her sister and a": [0, 65535], "we met my wife her sister and a rabble": [0, 65535], "met my wife her sister and a rabble more": [0, 65535], "my wife her sister and a rabble more of": [0, 65535], "wife her sister and a rabble more of vilde": [0, 65535], "her sister and a rabble more of vilde confederates": [0, 65535], "sister and a rabble more of vilde confederates along": [0, 65535], "and a rabble more of vilde confederates along with": [0, 65535], "a rabble more of vilde confederates along with them": [0, 65535], "rabble more of vilde confederates along with them they": [0, 65535], "more of vilde confederates along with them they brought": [0, 65535], "of vilde confederates along with them they brought one": [0, 65535], "vilde confederates along with them they brought one pinch": [0, 65535], "confederates along with them they brought one pinch a": [0, 65535], "along with them they brought one pinch a hungry": [0, 65535], "with them they brought one pinch a hungry leane": [0, 65535], "them they brought one pinch a hungry leane fac'd": [0, 65535], "they brought one pinch a hungry leane fac'd villaine": [0, 65535], "brought one pinch a hungry leane fac'd villaine a": [0, 65535], "one pinch a hungry leane fac'd villaine a meere": [0, 65535], "pinch a hungry leane fac'd villaine a meere anatomie": [0, 65535], "a hungry leane fac'd villaine a meere anatomie a": [0, 65535], "hungry leane fac'd villaine a meere anatomie a mountebanke": [0, 65535], "leane fac'd villaine a meere anatomie a mountebanke a": [0, 65535], "fac'd villaine a meere anatomie a mountebanke a thred": [0, 65535], "villaine a meere anatomie a mountebanke a thred bare": [0, 65535], "a meere anatomie a mountebanke a thred bare iugler": [0, 65535], "meere anatomie a mountebanke a thred bare iugler and": [0, 65535], "anatomie a mountebanke a thred bare iugler and a": [0, 65535], "a mountebanke a thred bare iugler and a fortune": [0, 65535], "mountebanke a thred bare iugler and a fortune teller": [0, 65535], "a thred bare iugler and a fortune teller a": [0, 65535], "thred bare iugler and a fortune teller a needy": [0, 65535], "bare iugler and a fortune teller a needy hollow": [0, 65535], "iugler and a fortune teller a needy hollow ey'd": [0, 65535], "and a fortune teller a needy hollow ey'd sharpe": [0, 65535], "a fortune teller a needy hollow ey'd sharpe looking": [0, 65535], "fortune teller a needy hollow ey'd sharpe looking wretch": [0, 65535], "teller a needy hollow ey'd sharpe looking wretch a": [0, 65535], "a needy hollow ey'd sharpe looking wretch a liuing": [0, 65535], "needy hollow ey'd sharpe looking wretch a liuing dead": [0, 65535], "hollow ey'd sharpe looking wretch a liuing dead man": [0, 65535], "ey'd sharpe looking wretch a liuing dead man this": [0, 65535], "sharpe looking wretch a liuing dead man this pernicious": [0, 65535], "looking wretch a liuing dead man this pernicious slaue": [0, 65535], "wretch a liuing dead man this pernicious slaue forsooth": [0, 65535], "a liuing dead man this pernicious slaue forsooth tooke": [0, 65535], "liuing dead man this pernicious slaue forsooth tooke on": [0, 65535], "dead man this pernicious slaue forsooth tooke on him": [0, 65535], "man this pernicious slaue forsooth tooke on him as": [0, 65535], "this pernicious slaue forsooth tooke on him as a": [0, 65535], "pernicious slaue forsooth tooke on him as a coniurer": [0, 65535], "slaue forsooth tooke on him as a coniurer and": [0, 65535], "forsooth tooke on him as a coniurer and gazing": [0, 65535], "tooke on him as a coniurer and gazing in": [0, 65535], "on him as a coniurer and gazing in mine": [0, 65535], "him as a coniurer and gazing in mine eyes": [0, 65535], "as a coniurer and gazing in mine eyes feeling": [0, 65535], "a coniurer and gazing in mine eyes feeling my": [0, 65535], "coniurer and gazing in mine eyes feeling my pulse": [0, 65535], "and gazing in mine eyes feeling my pulse and": [0, 65535], "gazing in mine eyes feeling my pulse and with": [0, 65535], "in mine eyes feeling my pulse and with no": [0, 65535], "mine eyes feeling my pulse and with no face": [0, 65535], "eyes feeling my pulse and with no face as": [0, 65535], "feeling my pulse and with no face as 'twere": [0, 65535], "my pulse and with no face as 'twere out": [0, 65535], "pulse and with no face as 'twere out facing": [0, 65535], "and with no face as 'twere out facing me": [0, 65535], "with no face as 'twere out facing me cries": [0, 65535], "no face as 'twere out facing me cries out": [0, 65535], "face as 'twere out facing me cries out i": [0, 65535], "as 'twere out facing me cries out i was": [0, 65535], "'twere out facing me cries out i was possest": [0, 65535], "out facing me cries out i was possest then": [0, 65535], "facing me cries out i was possest then altogether": [0, 65535], "me cries out i was possest then altogether they": [0, 65535], "cries out i was possest then altogether they fell": [0, 65535], "out i was possest then altogether they fell vpon": [0, 65535], "i was possest then altogether they fell vpon me": [0, 65535], "was possest then altogether they fell vpon me bound": [0, 65535], "possest then altogether they fell vpon me bound me": [0, 65535], "then altogether they fell vpon me bound me bore": [0, 65535], "altogether they fell vpon me bound me bore me": [0, 65535], "they fell vpon me bound me bore me thence": [0, 65535], "fell vpon me bound me bore me thence and": [0, 65535], "vpon me bound me bore me thence and in": [0, 65535], "me bound me bore me thence and in a": [0, 65535], "bound me bore me thence and in a darke": [0, 65535], "me bore me thence and in a darke and": [0, 65535], "bore me thence and in a darke and dankish": [0, 65535], "me thence and in a darke and dankish vault": [0, 65535], "thence and in a darke and dankish vault at": [0, 65535], "and in a darke and dankish vault at home": [0, 65535], "in a darke and dankish vault at home there": [0, 65535], "a darke and dankish vault at home there left": [0, 65535], "darke and dankish vault at home there left me": [0, 65535], "and dankish vault at home there left me and": [0, 65535], "dankish vault at home there left me and my": [0, 65535], "vault at home there left me and my man": [0, 65535], "at home there left me and my man both": [0, 65535], "home there left me and my man both bound": [0, 65535], "there left me and my man both bound together": [0, 65535], "left me and my man both bound together till": [0, 65535], "me and my man both bound together till gnawing": [0, 65535], "and my man both bound together till gnawing with": [0, 65535], "my man both bound together till gnawing with my": [0, 65535], "man both bound together till gnawing with my teeth": [0, 65535], "both bound together till gnawing with my teeth my": [0, 65535], "bound together till gnawing with my teeth my bonds": [0, 65535], "together till gnawing with my teeth my bonds in": [0, 65535], "till gnawing with my teeth my bonds in sunder": [0, 65535], "gnawing with my teeth my bonds in sunder i": [0, 65535], "with my teeth my bonds in sunder i gain'd": [0, 65535], "my teeth my bonds in sunder i gain'd my": [0, 65535], "teeth my bonds in sunder i gain'd my freedome": [0, 65535], "my bonds in sunder i gain'd my freedome and": [0, 65535], "bonds in sunder i gain'd my freedome and immediately": [0, 65535], "in sunder i gain'd my freedome and immediately ran": [0, 65535], "sunder i gain'd my freedome and immediately ran hether": [0, 65535], "i gain'd my freedome and immediately ran hether to": [0, 65535], "gain'd my freedome and immediately ran hether to your": [0, 65535], "my freedome and immediately ran hether to your grace": [0, 65535], "freedome and immediately ran hether to your grace whom": [0, 65535], "and immediately ran hether to your grace whom i": [0, 65535], "immediately ran hether to your grace whom i beseech": [0, 65535], "ran hether to your grace whom i beseech to": [0, 65535], "hether to your grace whom i beseech to giue": [0, 65535], "to your grace whom i beseech to giue me": [0, 65535], "your grace whom i beseech to giue me ample": [0, 65535], "grace whom i beseech to giue me ample satisfaction": [0, 65535], "whom i beseech to giue me ample satisfaction for": [0, 65535], "i beseech to giue me ample satisfaction for these": [0, 65535], "beseech to giue me ample satisfaction for these deepe": [0, 65535], "to giue me ample satisfaction for these deepe shames": [0, 65535], "giue me ample satisfaction for these deepe shames and": [0, 65535], "me ample satisfaction for these deepe shames and great": [0, 65535], "ample satisfaction for these deepe shames and great indignities": [0, 65535], "satisfaction for these deepe shames and great indignities gold": [0, 65535], "for these deepe shames and great indignities gold my": [0, 65535], "these deepe shames and great indignities gold my lord": [0, 65535], "deepe shames and great indignities gold my lord in": [0, 65535], "shames and great indignities gold my lord in truth": [0, 65535], "and great indignities gold my lord in truth thus": [0, 65535], "great indignities gold my lord in truth thus far": [0, 65535], "indignities gold my lord in truth thus far i": [0, 65535], "gold my lord in truth thus far i witnes": [0, 65535], "my lord in truth thus far i witnes with": [0, 65535], "lord in truth thus far i witnes with him": [0, 65535], "in truth thus far i witnes with him that": [0, 65535], "truth thus far i witnes with him that he": [0, 65535], "thus far i witnes with him that he din'd": [0, 65535], "far i witnes with him that he din'd not": [0, 65535], "i witnes with him that he din'd not at": [0, 65535], "witnes with him that he din'd not at home": [0, 65535], "with him that he din'd not at home but": [0, 65535], "him that he din'd not at home but was": [0, 65535], "that he din'd not at home but was lock'd": [0, 65535], "he din'd not at home but was lock'd out": [0, 65535], "din'd not at home but was lock'd out duke": [0, 65535], "not at home but was lock'd out duke but": [0, 65535], "at home but was lock'd out duke but had": [0, 65535], "home but was lock'd out duke but had he": [0, 65535], "but was lock'd out duke but had he such": [0, 65535], "was lock'd out duke but had he such a": [0, 65535], "lock'd out duke but had he such a chaine": [0, 65535], "out duke but had he such a chaine of": [0, 65535], "duke but had he such a chaine of thee": [0, 65535], "but had he such a chaine of thee or": [0, 65535], "had he such a chaine of thee or no": [0, 65535], "he such a chaine of thee or no gold": [0, 65535], "such a chaine of thee or no gold he": [0, 65535], "a chaine of thee or no gold he had": [0, 65535], "chaine of thee or no gold he had my": [0, 65535], "of thee or no gold he had my lord": [0, 65535], "thee or no gold he had my lord and": [0, 65535], "or no gold he had my lord and when": [0, 65535], "no gold he had my lord and when he": [0, 65535], "gold he had my lord and when he ran": [0, 65535], "he had my lord and when he ran in": [0, 65535], "had my lord and when he ran in heere": [0, 65535], "my lord and when he ran in heere these": [0, 65535], "lord and when he ran in heere these people": [0, 65535], "and when he ran in heere these people saw": [0, 65535], "when he ran in heere these people saw the": [0, 65535], "he ran in heere these people saw the chaine": [0, 65535], "ran in heere these people saw the chaine about": [0, 65535], "in heere these people saw the chaine about his": [0, 65535], "heere these people saw the chaine about his necke": [0, 65535], "these people saw the chaine about his necke mar": [0, 65535], "people saw the chaine about his necke mar besides": [0, 65535], "saw the chaine about his necke mar besides i": [0, 65535], "the chaine about his necke mar besides i will": [0, 65535], "chaine about his necke mar besides i will be": [0, 65535], "about his necke mar besides i will be sworne": [0, 65535], "his necke mar besides i will be sworne these": [0, 65535], "necke mar besides i will be sworne these eares": [0, 65535], "mar besides i will be sworne these eares of": [0, 65535], "besides i will be sworne these eares of mine": [0, 65535], "i will be sworne these eares of mine heard": [0, 65535], "will be sworne these eares of mine heard you": [0, 65535], "be sworne these eares of mine heard you confesse": [0, 65535], "sworne these eares of mine heard you confesse you": [0, 65535], "these eares of mine heard you confesse you had": [0, 65535], "eares of mine heard you confesse you had the": [0, 65535], "of mine heard you confesse you had the chaine": [0, 65535], "mine heard you confesse you had the chaine of": [0, 65535], "heard you confesse you had the chaine of him": [0, 65535], "you confesse you had the chaine of him after": [0, 65535], "confesse you had the chaine of him after you": [0, 65535], "you had the chaine of him after you first": [0, 65535], "had the chaine of him after you first forswore": [0, 65535], "the chaine of him after you first forswore it": [0, 65535], "chaine of him after you first forswore it on": [0, 65535], "of him after you first forswore it on the": [0, 65535], "him after you first forswore it on the mart": [0, 65535], "after you first forswore it on the mart and": [0, 65535], "you first forswore it on the mart and thereupon": [0, 65535], "first forswore it on the mart and thereupon i": [0, 65535], "forswore it on the mart and thereupon i drew": [0, 65535], "it on the mart and thereupon i drew my": [0, 65535], "on the mart and thereupon i drew my sword": [0, 65535], "the mart and thereupon i drew my sword on": [0, 65535], "mart and thereupon i drew my sword on you": [0, 65535], "and thereupon i drew my sword on you and": [0, 65535], "thereupon i drew my sword on you and then": [0, 65535], "i drew my sword on you and then you": [0, 65535], "drew my sword on you and then you fled": [0, 65535], "my sword on you and then you fled into": [0, 65535], "sword on you and then you fled into this": [0, 65535], "on you and then you fled into this abbey": [0, 65535], "you and then you fled into this abbey heere": [0, 65535], "and then you fled into this abbey heere from": [0, 65535], "then you fled into this abbey heere from whence": [0, 65535], "you fled into this abbey heere from whence i": [0, 65535], "fled into this abbey heere from whence i thinke": [0, 65535], "into this abbey heere from whence i thinke you": [0, 65535], "this abbey heere from whence i thinke you are": [0, 65535], "abbey heere from whence i thinke you are come": [0, 65535], "heere from whence i thinke you are come by": [0, 65535], "from whence i thinke you are come by miracle": [0, 65535], "whence i thinke you are come by miracle e": [0, 65535], "i thinke you are come by miracle e ant": [0, 65535], "thinke you are come by miracle e ant i": [0, 65535], "you are come by miracle e ant i neuer": [0, 65535], "are come by miracle e ant i neuer came": [0, 65535], "come by miracle e ant i neuer came within": [0, 65535], "by miracle e ant i neuer came within these": [0, 65535], "miracle e ant i neuer came within these abbey": [0, 65535], "e ant i neuer came within these abbey wals": [0, 65535], "ant i neuer came within these abbey wals nor": [0, 65535], "i neuer came within these abbey wals nor euer": [0, 65535], "neuer came within these abbey wals nor euer didst": [0, 65535], "came within these abbey wals nor euer didst thou": [0, 65535], "within these abbey wals nor euer didst thou draw": [0, 65535], "these abbey wals nor euer didst thou draw thy": [0, 65535], "abbey wals nor euer didst thou draw thy sword": [0, 65535], "wals nor euer didst thou draw thy sword on": [0, 65535], "nor euer didst thou draw thy sword on me": [0, 65535], "euer didst thou draw thy sword on me i": [0, 65535], "didst thou draw thy sword on me i neuer": [0, 65535], "thou draw thy sword on me i neuer saw": [0, 65535], "draw thy sword on me i neuer saw the": [0, 65535], "thy sword on me i neuer saw the chaine": [0, 65535], "sword on me i neuer saw the chaine so": [0, 65535], "on me i neuer saw the chaine so helpe": [0, 65535], "me i neuer saw the chaine so helpe me": [0, 65535], "i neuer saw the chaine so helpe me heauen": [0, 65535], "neuer saw the chaine so helpe me heauen and": [0, 65535], "saw the chaine so helpe me heauen and this": [0, 65535], "the chaine so helpe me heauen and this is": [0, 65535], "chaine so helpe me heauen and this is false": [0, 65535], "so helpe me heauen and this is false you": [0, 65535], "helpe me heauen and this is false you burthen": [0, 65535], "me heauen and this is false you burthen me": [0, 65535], "heauen and this is false you burthen me withall": [0, 65535], "and this is false you burthen me withall duke": [0, 65535], "this is false you burthen me withall duke why": [0, 65535], "is false you burthen me withall duke why what": [0, 65535], "false you burthen me withall duke why what an": [0, 65535], "you burthen me withall duke why what an intricate": [0, 65535], "burthen me withall duke why what an intricate impeach": [0, 65535], "me withall duke why what an intricate impeach is": [0, 65535], "withall duke why what an intricate impeach is this": [0, 65535], "duke why what an intricate impeach is this i": [0, 65535], "why what an intricate impeach is this i thinke": [0, 65535], "what an intricate impeach is this i thinke you": [0, 65535], "an intricate impeach is this i thinke you all": [0, 65535], "intricate impeach is this i thinke you all haue": [0, 65535], "impeach is this i thinke you all haue drunke": [0, 65535], "is this i thinke you all haue drunke of": [0, 65535], "this i thinke you all haue drunke of circes": [0, 65535], "i thinke you all haue drunke of circes cup": [0, 65535], "thinke you all haue drunke of circes cup if": [0, 65535], "you all haue drunke of circes cup if heere": [0, 65535], "all haue drunke of circes cup if heere you": [0, 65535], "haue drunke of circes cup if heere you hous'd": [0, 65535], "drunke of circes cup if heere you hous'd him": [0, 65535], "of circes cup if heere you hous'd him heere": [0, 65535], "circes cup if heere you hous'd him heere he": [0, 65535], "cup if heere you hous'd him heere he would": [0, 65535], "if heere you hous'd him heere he would haue": [0, 65535], "heere you hous'd him heere he would haue bin": [0, 65535], "you hous'd him heere he would haue bin if": [0, 65535], "hous'd him heere he would haue bin if he": [0, 65535], "him heere he would haue bin if he were": [0, 65535], "heere he would haue bin if he were mad": [0, 65535], "he would haue bin if he were mad he": [0, 65535], "would haue bin if he were mad he would": [0, 65535], "haue bin if he were mad he would not": [0, 65535], "bin if he were mad he would not pleade": [0, 65535], "if he were mad he would not pleade so": [0, 65535], "he were mad he would not pleade so coldly": [0, 65535], "were mad he would not pleade so coldly you": [0, 65535], "mad he would not pleade so coldly you say": [0, 65535], "he would not pleade so coldly you say he": [0, 65535], "would not pleade so coldly you say he din'd": [0, 65535], "not pleade so coldly you say he din'd at": [0, 65535], "pleade so coldly you say he din'd at home": [0, 65535], "so coldly you say he din'd at home the": [0, 65535], "coldly you say he din'd at home the goldsmith": [0, 65535], "you say he din'd at home the goldsmith heere": [0, 65535], "say he din'd at home the goldsmith heere denies": [0, 65535], "he din'd at home the goldsmith heere denies that": [0, 65535], "din'd at home the goldsmith heere denies that saying": [0, 65535], "at home the goldsmith heere denies that saying sirra": [0, 65535], "home the goldsmith heere denies that saying sirra what": [0, 65535], "the goldsmith heere denies that saying sirra what say": [0, 65535], "goldsmith heere denies that saying sirra what say you": [0, 65535], "heere denies that saying sirra what say you e": [0, 65535], "denies that saying sirra what say you e dro": [0, 65535], "that saying sirra what say you e dro sir": [0, 65535], "saying sirra what say you e dro sir he": [0, 65535], "sirra what say you e dro sir he din'de": [0, 65535], "what say you e dro sir he din'de with": [0, 65535], "say you e dro sir he din'de with her": [0, 65535], "you e dro sir he din'de with her there": [0, 65535], "e dro sir he din'de with her there at": [0, 65535], "dro sir he din'de with her there at the": [0, 65535], "sir he din'de with her there at the porpentine": [0, 65535], "he din'de with her there at the porpentine cur": [0, 65535], "din'de with her there at the porpentine cur he": [0, 65535], "with her there at the porpentine cur he did": [0, 65535], "her there at the porpentine cur he did and": [0, 65535], "there at the porpentine cur he did and from": [0, 65535], "at the porpentine cur he did and from my": [0, 65535], "the porpentine cur he did and from my finger": [0, 65535], "porpentine cur he did and from my finger snacht": [0, 65535], "cur he did and from my finger snacht that": [0, 65535], "he did and from my finger snacht that ring": [0, 65535], "did and from my finger snacht that ring e": [0, 65535], "and from my finger snacht that ring e anti": [0, 65535], "from my finger snacht that ring e anti tis": [0, 65535], "my finger snacht that ring e anti tis true": [0, 65535], "finger snacht that ring e anti tis true my": [0, 65535], "snacht that ring e anti tis true my liege": [0, 65535], "that ring e anti tis true my liege this": [0, 65535], "ring e anti tis true my liege this ring": [0, 65535], "e anti tis true my liege this ring i": [0, 65535], "anti tis true my liege this ring i had": [0, 65535], "tis true my liege this ring i had of": [0, 65535], "true my liege this ring i had of her": [0, 65535], "my liege this ring i had of her duke": [0, 65535], "liege this ring i had of her duke saw'st": [0, 65535], "this ring i had of her duke saw'st thou": [0, 65535], "ring i had of her duke saw'st thou him": [0, 65535], "i had of her duke saw'st thou him enter": [0, 65535], "had of her duke saw'st thou him enter at": [0, 65535], "of her duke saw'st thou him enter at the": [0, 65535], "her duke saw'st thou him enter at the abbey": [0, 65535], "duke saw'st thou him enter at the abbey heere": [0, 65535], "saw'st thou him enter at the abbey heere curt": [0, 65535], "thou him enter at the abbey heere curt as": [0, 65535], "him enter at the abbey heere curt as sure": [0, 65535], "enter at the abbey heere curt as sure my": [0, 65535], "at the abbey heere curt as sure my liege": [0, 65535], "the abbey heere curt as sure my liege as": [0, 65535], "abbey heere curt as sure my liege as i": [0, 65535], "heere curt as sure my liege as i do": [0, 65535], "curt as sure my liege as i do see": [0, 65535], "as sure my liege as i do see your": [0, 65535], "sure my liege as i do see your grace": [0, 65535], "my liege as i do see your grace duke": [0, 65535], "liege as i do see your grace duke why": [0, 65535], "as i do see your grace duke why this": [0, 65535], "i do see your grace duke why this is": [0, 65535], "do see your grace duke why this is straunge": [0, 65535], "see your grace duke why this is straunge go": [0, 65535], "your grace duke why this is straunge go call": [0, 65535], "grace duke why this is straunge go call the": [0, 65535], "duke why this is straunge go call the abbesse": [0, 65535], "why this is straunge go call the abbesse hither": [0, 65535], "this is straunge go call the abbesse hither i": [0, 65535], "is straunge go call the abbesse hither i thinke": [0, 65535], "straunge go call the abbesse hither i thinke you": [0, 65535], "go call the abbesse hither i thinke you are": [0, 65535], "call the abbesse hither i thinke you are all": [0, 65535], "the abbesse hither i thinke you are all mated": [0, 65535], "abbesse hither i thinke you are all mated or": [0, 65535], "hither i thinke you are all mated or starke": [0, 65535], "i thinke you are all mated or starke mad": [0, 65535], "thinke you are all mated or starke mad exit": [0, 65535], "you are all mated or starke mad exit one": [0, 65535], "are all mated or starke mad exit one to": [0, 65535], "all mated or starke mad exit one to the": [0, 65535], "mated or starke mad exit one to the abbesse": [0, 65535], "or starke mad exit one to the abbesse fa": [0, 65535], "starke mad exit one to the abbesse fa most": [0, 65535], "mad exit one to the abbesse fa most mighty": [0, 65535], "exit one to the abbesse fa most mighty duke": [0, 65535], "one to the abbesse fa most mighty duke vouchsafe": [0, 65535], "to the abbesse fa most mighty duke vouchsafe me": [0, 65535], "the abbesse fa most mighty duke vouchsafe me speak": [0, 65535], "abbesse fa most mighty duke vouchsafe me speak a": [0, 65535], "fa most mighty duke vouchsafe me speak a word": [0, 65535], "most mighty duke vouchsafe me speak a word haply": [0, 65535], "mighty duke vouchsafe me speak a word haply i": [0, 65535], "duke vouchsafe me speak a word haply i see": [0, 65535], "vouchsafe me speak a word haply i see a": [0, 65535], "me speak a word haply i see a friend": [0, 65535], "speak a word haply i see a friend will": [0, 65535], "a word haply i see a friend will saue": [0, 65535], "word haply i see a friend will saue my": [0, 65535], "haply i see a friend will saue my life": [0, 65535], "i see a friend will saue my life and": [0, 65535], "see a friend will saue my life and pay": [0, 65535], "a friend will saue my life and pay the": [0, 65535], "friend will saue my life and pay the sum": [0, 65535], "will saue my life and pay the sum that": [0, 65535], "saue my life and pay the sum that may": [0, 65535], "my life and pay the sum that may deliuer": [0, 65535], "life and pay the sum that may deliuer me": [0, 65535], "and pay the sum that may deliuer me duke": [0, 65535], "pay the sum that may deliuer me duke speake": [0, 65535], "the sum that may deliuer me duke speake freely": [0, 65535], "sum that may deliuer me duke speake freely siracusian": [0, 65535], "that may deliuer me duke speake freely siracusian what": [0, 65535], "may deliuer me duke speake freely siracusian what thou": [0, 65535], "deliuer me duke speake freely siracusian what thou wilt": [0, 65535], "me duke speake freely siracusian what thou wilt fath": [0, 65535], "duke speake freely siracusian what thou wilt fath is": [0, 65535], "speake freely siracusian what thou wilt fath is not": [0, 65535], "freely siracusian what thou wilt fath is not your": [0, 65535], "siracusian what thou wilt fath is not your name": [0, 65535], "what thou wilt fath is not your name sir": [0, 65535], "thou wilt fath is not your name sir call'd": [0, 65535], "wilt fath is not your name sir call'd antipholus": [0, 65535], "fath is not your name sir call'd antipholus and": [0, 65535], "is not your name sir call'd antipholus and is": [0, 65535], "not your name sir call'd antipholus and is not": [0, 65535], "your name sir call'd antipholus and is not that": [0, 65535], "name sir call'd antipholus and is not that your": [0, 65535], "sir call'd antipholus and is not that your bondman": [0, 65535], "call'd antipholus and is not that your bondman dromio": [0, 65535], "antipholus and is not that your bondman dromio e": [0, 65535], "and is not that your bondman dromio e dro": [0, 65535], "is not that your bondman dromio e dro within": [0, 65535], "not that your bondman dromio e dro within this": [0, 65535], "that your bondman dromio e dro within this houre": [0, 65535], "your bondman dromio e dro within this houre i": [0, 65535], "bondman dromio e dro within this houre i was": [0, 65535], "dromio e dro within this houre i was his": [0, 65535], "e dro within this houre i was his bondman": [0, 65535], "dro within this houre i was his bondman sir": [0, 65535], "within this houre i was his bondman sir but": [0, 65535], "this houre i was his bondman sir but he": [0, 65535], "houre i was his bondman sir but he i": [0, 65535], "i was his bondman sir but he i thanke": [0, 65535], "was his bondman sir but he i thanke him": [0, 65535], "his bondman sir but he i thanke him gnaw'd": [0, 65535], "bondman sir but he i thanke him gnaw'd in": [0, 65535], "sir but he i thanke him gnaw'd in two": [0, 65535], "but he i thanke him gnaw'd in two my": [0, 65535], "he i thanke him gnaw'd in two my cords": [0, 65535], "i thanke him gnaw'd in two my cords now": [0, 65535], "thanke him gnaw'd in two my cords now am": [0, 65535], "him gnaw'd in two my cords now am i": [0, 65535], "gnaw'd in two my cords now am i dromio": [0, 65535], "in two my cords now am i dromio and": [0, 65535], "two my cords now am i dromio and his": [0, 65535], "my cords now am i dromio and his man": [0, 65535], "cords now am i dromio and his man vnbound": [0, 65535], "now am i dromio and his man vnbound fath": [0, 65535], "am i dromio and his man vnbound fath i": [0, 65535], "i dromio and his man vnbound fath i am": [0, 65535], "dromio and his man vnbound fath i am sure": [0, 65535], "and his man vnbound fath i am sure you": [0, 65535], "his man vnbound fath i am sure you both": [0, 65535], "man vnbound fath i am sure you both of": [0, 65535], "vnbound fath i am sure you both of you": [0, 65535], "fath i am sure you both of you remember": [0, 65535], "i am sure you both of you remember me": [0, 65535], "am sure you both of you remember me dro": [0, 65535], "sure you both of you remember me dro our": [0, 65535], "you both of you remember me dro our selues": [0, 65535], "both of you remember me dro our selues we": [0, 65535], "of you remember me dro our selues we do": [0, 65535], "you remember me dro our selues we do remember": [0, 65535], "remember me dro our selues we do remember sir": [0, 65535], "me dro our selues we do remember sir by": [0, 65535], "dro our selues we do remember sir by you": [0, 65535], "our selues we do remember sir by you for": [0, 65535], "selues we do remember sir by you for lately": [0, 65535], "we do remember sir by you for lately we": [0, 65535], "do remember sir by you for lately we were": [0, 65535], "remember sir by you for lately we were bound": [0, 65535], "sir by you for lately we were bound as": [0, 65535], "by you for lately we were bound as you": [0, 65535], "you for lately we were bound as you are": [0, 65535], "for lately we were bound as you are now": [0, 65535], "lately we were bound as you are now you": [0, 65535], "we were bound as you are now you are": [0, 65535], "were bound as you are now you are not": [0, 65535], "bound as you are now you are not pinches": [0, 65535], "as you are now you are not pinches patient": [0, 65535], "you are now you are not pinches patient are": [0, 65535], "are now you are not pinches patient are you": [0, 65535], "now you are not pinches patient are you sir": [0, 65535], "you are not pinches patient are you sir father": [0, 65535], "are not pinches patient are you sir father why": [0, 65535], "not pinches patient are you sir father why looke": [0, 65535], "pinches patient are you sir father why looke you": [0, 65535], "patient are you sir father why looke you strange": [0, 65535], "are you sir father why looke you strange on": [0, 65535], "you sir father why looke you strange on me": [0, 65535], "sir father why looke you strange on me you": [0, 65535], "father why looke you strange on me you know": [0, 65535], "why looke you strange on me you know me": [0, 65535], "looke you strange on me you know me well": [0, 65535], "you strange on me you know me well e": [0, 65535], "strange on me you know me well e ant": [0, 65535], "on me you know me well e ant i": [0, 65535], "me you know me well e ant i neuer": [0, 65535], "you know me well e ant i neuer saw": [0, 65535], "know me well e ant i neuer saw you": [0, 65535], "me well e ant i neuer saw you in": [0, 65535], "well e ant i neuer saw you in my": [0, 65535], "e ant i neuer saw you in my life": [0, 65535], "ant i neuer saw you in my life till": [0, 65535], "i neuer saw you in my life till now": [0, 65535], "neuer saw you in my life till now fa": [0, 65535], "saw you in my life till now fa oh": [0, 65535], "you in my life till now fa oh griefe": [0, 65535], "in my life till now fa oh griefe hath": [0, 65535], "my life till now fa oh griefe hath chang'd": [0, 65535], "life till now fa oh griefe hath chang'd me": [0, 65535], "till now fa oh griefe hath chang'd me since": [0, 65535], "now fa oh griefe hath chang'd me since you": [0, 65535], "fa oh griefe hath chang'd me since you saw": [0, 65535], "oh griefe hath chang'd me since you saw me": [0, 65535], "griefe hath chang'd me since you saw me last": [0, 65535], "hath chang'd me since you saw me last and": [0, 65535], "chang'd me since you saw me last and carefull": [0, 65535], "me since you saw me last and carefull houres": [0, 65535], "since you saw me last and carefull houres with": [0, 65535], "you saw me last and carefull houres with times": [0, 65535], "saw me last and carefull houres with times deformed": [0, 65535], "me last and carefull houres with times deformed hand": [0, 65535], "last and carefull houres with times deformed hand haue": [0, 65535], "and carefull houres with times deformed hand haue written": [0, 65535], "carefull houres with times deformed hand haue written strange": [0, 65535], "houres with times deformed hand haue written strange defeatures": [0, 65535], "with times deformed hand haue written strange defeatures in": [0, 65535], "times deformed hand haue written strange defeatures in my": [0, 65535], "deformed hand haue written strange defeatures in my face": [0, 65535], "hand haue written strange defeatures in my face but": [0, 65535], "haue written strange defeatures in my face but tell": [0, 65535], "written strange defeatures in my face but tell me": [0, 65535], "strange defeatures in my face but tell me yet": [0, 65535], "defeatures in my face but tell me yet dost": [0, 65535], "in my face but tell me yet dost thou": [0, 65535], "my face but tell me yet dost thou not": [0, 65535], "face but tell me yet dost thou not know": [0, 65535], "but tell me yet dost thou not know my": [0, 65535], "tell me yet dost thou not know my voice": [0, 65535], "me yet dost thou not know my voice ant": [0, 65535], "yet dost thou not know my voice ant neither": [0, 65535], "dost thou not know my voice ant neither fat": [0, 65535], "thou not know my voice ant neither fat dromio": [0, 65535], "not know my voice ant neither fat dromio nor": [0, 65535], "know my voice ant neither fat dromio nor thou": [0, 65535], "my voice ant neither fat dromio nor thou dro": [0, 65535], "voice ant neither fat dromio nor thou dro no": [0, 65535], "ant neither fat dromio nor thou dro no trust": [0, 65535], "neither fat dromio nor thou dro no trust me": [0, 65535], "fat dromio nor thou dro no trust me sir": [0, 65535], "dromio nor thou dro no trust me sir nor": [0, 65535], "nor thou dro no trust me sir nor i": [0, 65535], "thou dro no trust me sir nor i fa": [0, 65535], "dro no trust me sir nor i fa i": [0, 65535], "no trust me sir nor i fa i am": [0, 65535], "trust me sir nor i fa i am sure": [0, 65535], "me sir nor i fa i am sure thou": [0, 65535], "sir nor i fa i am sure thou dost": [0, 65535], "nor i fa i am sure thou dost e": [0, 65535], "i fa i am sure thou dost e dromio": [0, 65535], "fa i am sure thou dost e dromio i": [0, 65535], "i am sure thou dost e dromio i sir": [0, 65535], "am sure thou dost e dromio i sir but": [0, 65535], "sure thou dost e dromio i sir but i": [0, 65535], "thou dost e dromio i sir but i am": [0, 65535], "dost e dromio i sir but i am sure": [0, 65535], "e dromio i sir but i am sure i": [0, 65535], "dromio i sir but i am sure i do": [0, 65535], "i sir but i am sure i do not": [0, 65535], "sir but i am sure i do not and": [0, 65535], "but i am sure i do not and whatsoeuer": [0, 65535], "i am sure i do not and whatsoeuer a": [0, 65535], "am sure i do not and whatsoeuer a man": [0, 65535], "sure i do not and whatsoeuer a man denies": [0, 65535], "i do not and whatsoeuer a man denies you": [0, 65535], "do not and whatsoeuer a man denies you are": [0, 65535], "not and whatsoeuer a man denies you are now": [0, 65535], "and whatsoeuer a man denies you are now bound": [0, 65535], "whatsoeuer a man denies you are now bound to": [0, 65535], "a man denies you are now bound to beleeue": [0, 65535], "man denies you are now bound to beleeue him": [0, 65535], "denies you are now bound to beleeue him fath": [0, 65535], "you are now bound to beleeue him fath not": [0, 65535], "are now bound to beleeue him fath not know": [0, 65535], "now bound to beleeue him fath not know my": [0, 65535], "bound to beleeue him fath not know my voice": [0, 65535], "to beleeue him fath not know my voice oh": [0, 65535], "beleeue him fath not know my voice oh times": [0, 65535], "him fath not know my voice oh times extremity": [0, 65535], "fath not know my voice oh times extremity hast": [0, 65535], "not know my voice oh times extremity hast thou": [0, 65535], "know my voice oh times extremity hast thou so": [0, 65535], "my voice oh times extremity hast thou so crack'd": [0, 65535], "voice oh times extremity hast thou so crack'd and": [0, 65535], "oh times extremity hast thou so crack'd and splitted": [0, 65535], "times extremity hast thou so crack'd and splitted my": [0, 65535], "extremity hast thou so crack'd and splitted my poore": [0, 65535], "hast thou so crack'd and splitted my poore tongue": [0, 65535], "thou so crack'd and splitted my poore tongue in": [0, 65535], "so crack'd and splitted my poore tongue in seuen": [0, 65535], "crack'd and splitted my poore tongue in seuen short": [0, 65535], "and splitted my poore tongue in seuen short yeares": [0, 65535], "splitted my poore tongue in seuen short yeares that": [0, 65535], "my poore tongue in seuen short yeares that heere": [0, 65535], "poore tongue in seuen short yeares that heere my": [0, 65535], "tongue in seuen short yeares that heere my onely": [0, 65535], "in seuen short yeares that heere my onely sonne": [0, 65535], "seuen short yeares that heere my onely sonne knowes": [0, 65535], "short yeares that heere my onely sonne knowes not": [0, 65535], "yeares that heere my onely sonne knowes not my": [0, 65535], "that heere my onely sonne knowes not my feeble": [0, 65535], "heere my onely sonne knowes not my feeble key": [0, 65535], "my onely sonne knowes not my feeble key of": [0, 65535], "onely sonne knowes not my feeble key of vntun'd": [0, 65535], "sonne knowes not my feeble key of vntun'd cares": [0, 65535], "knowes not my feeble key of vntun'd cares though": [0, 65535], "not my feeble key of vntun'd cares though now": [0, 65535], "my feeble key of vntun'd cares though now this": [0, 65535], "feeble key of vntun'd cares though now this grained": [0, 65535], "key of vntun'd cares though now this grained face": [0, 65535], "of vntun'd cares though now this grained face of": [0, 65535], "vntun'd cares though now this grained face of mine": [0, 65535], "cares though now this grained face of mine be": [0, 65535], "though now this grained face of mine be hid": [0, 65535], "now this grained face of mine be hid in": [0, 65535], "this grained face of mine be hid in sap": [0, 65535], "grained face of mine be hid in sap consuming": [0, 65535], "face of mine be hid in sap consuming winters": [0, 65535], "of mine be hid in sap consuming winters drizled": [0, 65535], "mine be hid in sap consuming winters drizled snow": [0, 65535], "be hid in sap consuming winters drizled snow and": [0, 65535], "hid in sap consuming winters drizled snow and all": [0, 65535], "in sap consuming winters drizled snow and all the": [0, 65535], "sap consuming winters drizled snow and all the conduits": [0, 65535], "consuming winters drizled snow and all the conduits of": [0, 65535], "winters drizled snow and all the conduits of my": [0, 65535], "drizled snow and all the conduits of my blood": [0, 65535], "snow and all the conduits of my blood froze": [0, 65535], "and all the conduits of my blood froze vp": [0, 65535], "all the conduits of my blood froze vp yet": [0, 65535], "the conduits of my blood froze vp yet hath": [0, 65535], "conduits of my blood froze vp yet hath my": [0, 65535], "of my blood froze vp yet hath my night": [0, 65535], "my blood froze vp yet hath my night of": [0, 65535], "blood froze vp yet hath my night of life": [0, 65535], "froze vp yet hath my night of life some": [0, 65535], "vp yet hath my night of life some memorie": [0, 65535], "yet hath my night of life some memorie my": [0, 65535], "hath my night of life some memorie my wasting": [0, 65535], "my night of life some memorie my wasting lampes": [0, 65535], "night of life some memorie my wasting lampes some": [0, 65535], "of life some memorie my wasting lampes some fading": [0, 65535], "life some memorie my wasting lampes some fading glimmer": [0, 65535], "some memorie my wasting lampes some fading glimmer left": [0, 65535], "memorie my wasting lampes some fading glimmer left my": [0, 65535], "my wasting lampes some fading glimmer left my dull": [0, 65535], "wasting lampes some fading glimmer left my dull deafe": [0, 65535], "lampes some fading glimmer left my dull deafe eares": [0, 65535], "some fading glimmer left my dull deafe eares a": [0, 65535], "fading glimmer left my dull deafe eares a little": [0, 65535], "glimmer left my dull deafe eares a little vse": [0, 65535], "left my dull deafe eares a little vse to": [0, 65535], "my dull deafe eares a little vse to heare": [0, 65535], "dull deafe eares a little vse to heare all": [0, 65535], "deafe eares a little vse to heare all these": [0, 65535], "eares a little vse to heare all these old": [0, 65535], "a little vse to heare all these old witnesses": [0, 65535], "little vse to heare all these old witnesses i": [0, 65535], "vse to heare all these old witnesses i cannot": [0, 65535], "to heare all these old witnesses i cannot erre": [0, 65535], "heare all these old witnesses i cannot erre tell": [0, 65535], "all these old witnesses i cannot erre tell me": [0, 65535], "these old witnesses i cannot erre tell me thou": [0, 65535], "old witnesses i cannot erre tell me thou art": [0, 65535], "witnesses i cannot erre tell me thou art my": [0, 65535], "i cannot erre tell me thou art my sonne": [0, 65535], "cannot erre tell me thou art my sonne antipholus": [0, 65535], "erre tell me thou art my sonne antipholus ant": [0, 65535], "tell me thou art my sonne antipholus ant i": [0, 65535], "me thou art my sonne antipholus ant i neuer": [0, 65535], "thou art my sonne antipholus ant i neuer saw": [0, 65535], "art my sonne antipholus ant i neuer saw my": [0, 65535], "my sonne antipholus ant i neuer saw my father": [0, 65535], "sonne antipholus ant i neuer saw my father in": [0, 65535], "antipholus ant i neuer saw my father in my": [0, 65535], "ant i neuer saw my father in my life": [0, 65535], "i neuer saw my father in my life fa": [0, 65535], "neuer saw my father in my life fa but": [0, 65535], "saw my father in my life fa but seuen": [0, 65535], "my father in my life fa but seuen yeares": [0, 65535], "father in my life fa but seuen yeares since": [0, 65535], "in my life fa but seuen yeares since in": [0, 65535], "my life fa but seuen yeares since in siracusa": [0, 65535], "life fa but seuen yeares since in siracusa boy": [0, 65535], "fa but seuen yeares since in siracusa boy thou": [0, 65535], "but seuen yeares since in siracusa boy thou know'st": [0, 65535], "seuen yeares since in siracusa boy thou know'st we": [0, 65535], "yeares since in siracusa boy thou know'st we parted": [0, 65535], "since in siracusa boy thou know'st we parted but": [0, 65535], "in siracusa boy thou know'st we parted but perhaps": [0, 65535], "siracusa boy thou know'st we parted but perhaps my": [0, 65535], "boy thou know'st we parted but perhaps my sonne": [0, 65535], "thou know'st we parted but perhaps my sonne thou": [0, 65535], "know'st we parted but perhaps my sonne thou sham'st": [0, 65535], "we parted but perhaps my sonne thou sham'st to": [0, 65535], "parted but perhaps my sonne thou sham'st to acknowledge": [0, 65535], "but perhaps my sonne thou sham'st to acknowledge me": [0, 65535], "perhaps my sonne thou sham'st to acknowledge me in": [0, 65535], "my sonne thou sham'st to acknowledge me in miserie": [0, 65535], "sonne thou sham'st to acknowledge me in miserie ant": [0, 65535], "thou sham'st to acknowledge me in miserie ant the": [0, 65535], "sham'st to acknowledge me in miserie ant the duke": [0, 65535], "to acknowledge me in miserie ant the duke and": [0, 65535], "acknowledge me in miserie ant the duke and all": [0, 65535], "me in miserie ant the duke and all that": [0, 65535], "in miserie ant the duke and all that know": [0, 65535], "miserie ant the duke and all that know me": [0, 65535], "ant the duke and all that know me in": [0, 65535], "the duke and all that know me in the": [0, 65535], "duke and all that know me in the city": [0, 65535], "and all that know me in the city can": [0, 65535], "all that know me in the city can witnesse": [0, 65535], "that know me in the city can witnesse with": [0, 65535], "know me in the city can witnesse with me": [0, 65535], "me in the city can witnesse with me that": [0, 65535], "in the city can witnesse with me that it": [0, 65535], "the city can witnesse with me that it is": [0, 65535], "city can witnesse with me that it is not": [0, 65535], "can witnesse with me that it is not so": [0, 65535], "witnesse with me that it is not so i": [0, 65535], "with me that it is not so i ne're": [0, 65535], "me that it is not so i ne're saw": [0, 65535], "that it is not so i ne're saw siracusa": [0, 65535], "it is not so i ne're saw siracusa in": [0, 65535], "is not so i ne're saw siracusa in my": [0, 65535], "not so i ne're saw siracusa in my life": [0, 65535], "so i ne're saw siracusa in my life duke": [0, 65535], "i ne're saw siracusa in my life duke i": [0, 65535], "ne're saw siracusa in my life duke i tell": [0, 65535], "saw siracusa in my life duke i tell thee": [0, 65535], "siracusa in my life duke i tell thee siracusian": [0, 65535], "in my life duke i tell thee siracusian twentie": [0, 65535], "my life duke i tell thee siracusian twentie yeares": [0, 65535], "life duke i tell thee siracusian twentie yeares haue": [0, 65535], "duke i tell thee siracusian twentie yeares haue i": [0, 65535], "i tell thee siracusian twentie yeares haue i bin": [0, 65535], "tell thee siracusian twentie yeares haue i bin patron": [0, 65535], "thee siracusian twentie yeares haue i bin patron to": [0, 65535], "siracusian twentie yeares haue i bin patron to antipholus": [0, 65535], "twentie yeares haue i bin patron to antipholus during": [0, 65535], "yeares haue i bin patron to antipholus during which": [0, 65535], "haue i bin patron to antipholus during which time": [0, 65535], "i bin patron to antipholus during which time he": [0, 65535], "bin patron to antipholus during which time he ne're": [0, 65535], "patron to antipholus during which time he ne're saw": [0, 65535], "to antipholus during which time he ne're saw siracusa": [0, 65535], "antipholus during which time he ne're saw siracusa i": [0, 65535], "during which time he ne're saw siracusa i see": [0, 65535], "which time he ne're saw siracusa i see thy": [0, 65535], "time he ne're saw siracusa i see thy age": [0, 65535], "he ne're saw siracusa i see thy age and": [0, 65535], "ne're saw siracusa i see thy age and dangers": [0, 65535], "saw siracusa i see thy age and dangers make": [0, 65535], "siracusa i see thy age and dangers make thee": [0, 65535], "i see thy age and dangers make thee dote": [0, 65535], "see thy age and dangers make thee dote enter": [0, 65535], "thy age and dangers make thee dote enter the": [0, 65535], "age and dangers make thee dote enter the abbesse": [0, 65535], "and dangers make thee dote enter the abbesse with": [0, 65535], "dangers make thee dote enter the abbesse with antipholus": [0, 65535], "make thee dote enter the abbesse with antipholus siracusa": [0, 65535], "thee dote enter the abbesse with antipholus siracusa and": [0, 65535], "dote enter the abbesse with antipholus siracusa and dromio": [0, 65535], "enter the abbesse with antipholus siracusa and dromio sir": [0, 65535], "the abbesse with antipholus siracusa and dromio sir abbesse": [0, 65535], "abbesse with antipholus siracusa and dromio sir abbesse most": [0, 65535], "with antipholus siracusa and dromio sir abbesse most mightie": [0, 65535], "antipholus siracusa and dromio sir abbesse most mightie duke": [0, 65535], "siracusa and dromio sir abbesse most mightie duke behold": [0, 65535], "and dromio sir abbesse most mightie duke behold a": [0, 65535], "dromio sir abbesse most mightie duke behold a man": [0, 65535], "sir abbesse most mightie duke behold a man much": [0, 65535], "abbesse most mightie duke behold a man much wrong'd": [0, 65535], "most mightie duke behold a man much wrong'd all": [0, 65535], "mightie duke behold a man much wrong'd all gather": [0, 65535], "duke behold a man much wrong'd all gather to": [0, 65535], "behold a man much wrong'd all gather to see": [0, 65535], "a man much wrong'd all gather to see them": [0, 65535], "man much wrong'd all gather to see them adr": [0, 65535], "much wrong'd all gather to see them adr i": [0, 65535], "wrong'd all gather to see them adr i see": [0, 65535], "all gather to see them adr i see two": [0, 65535], "gather to see them adr i see two husbands": [0, 65535], "to see them adr i see two husbands or": [0, 65535], "see them adr i see two husbands or mine": [0, 65535], "them adr i see two husbands or mine eyes": [0, 65535], "adr i see two husbands or mine eyes deceiue": [0, 65535], "i see two husbands or mine eyes deceiue me": [0, 65535], "see two husbands or mine eyes deceiue me duke": [0, 65535], "two husbands or mine eyes deceiue me duke one": [0, 65535], "husbands or mine eyes deceiue me duke one of": [0, 65535], "or mine eyes deceiue me duke one of these": [0, 65535], "mine eyes deceiue me duke one of these men": [0, 65535], "eyes deceiue me duke one of these men is": [0, 65535], "deceiue me duke one of these men is genius": [0, 65535], "me duke one of these men is genius to": [0, 65535], "duke one of these men is genius to the": [0, 65535], "one of these men is genius to the other": [0, 65535], "of these men is genius to the other and": [0, 65535], "these men is genius to the other and so": [0, 65535], "men is genius to the other and so of": [0, 65535], "is genius to the other and so of these": [0, 65535], "genius to the other and so of these which": [0, 65535], "to the other and so of these which is": [0, 65535], "the other and so of these which is the": [0, 65535], "other and so of these which is the naturall": [0, 65535], "and so of these which is the naturall man": [0, 65535], "so of these which is the naturall man and": [0, 65535], "of these which is the naturall man and which": [0, 65535], "these which is the naturall man and which the": [0, 65535], "which is the naturall man and which the spirit": [0, 65535], "is the naturall man and which the spirit who": [0, 65535], "the naturall man and which the spirit who deciphers": [0, 65535], "naturall man and which the spirit who deciphers them": [0, 65535], "man and which the spirit who deciphers them s": [0, 65535], "and which the spirit who deciphers them s dromio": [0, 65535], "which the spirit who deciphers them s dromio i": [0, 65535], "the spirit who deciphers them s dromio i sir": [0, 65535], "spirit who deciphers them s dromio i sir am": [0, 65535], "who deciphers them s dromio i sir am dromio": [0, 65535], "deciphers them s dromio i sir am dromio command": [0, 65535], "them s dromio i sir am dromio command him": [0, 65535], "s dromio i sir am dromio command him away": [0, 65535], "dromio i sir am dromio command him away e": [0, 65535], "i sir am dromio command him away e dro": [0, 65535], "sir am dromio command him away e dro i": [0, 65535], "am dromio command him away e dro i sir": [0, 65535], "dromio command him away e dro i sir am": [0, 65535], "command him away e dro i sir am dromio": [0, 65535], "him away e dro i sir am dromio pray": [0, 65535], "away e dro i sir am dromio pray let": [0, 65535], "e dro i sir am dromio pray let me": [0, 65535], "dro i sir am dromio pray let me stay": [0, 65535], "i sir am dromio pray let me stay s": [0, 65535], "sir am dromio pray let me stay s ant": [0, 65535], "am dromio pray let me stay s ant egeon": [0, 65535], "dromio pray let me stay s ant egeon art": [0, 65535], "pray let me stay s ant egeon art thou": [0, 65535], "let me stay s ant egeon art thou not": [0, 65535], "me stay s ant egeon art thou not or": [0, 65535], "stay s ant egeon art thou not or else": [0, 65535], "s ant egeon art thou not or else his": [0, 65535], "ant egeon art thou not or else his ghost": [0, 65535], "egeon art thou not or else his ghost s": [0, 65535], "art thou not or else his ghost s drom": [0, 65535], "thou not or else his ghost s drom oh": [0, 65535], "not or else his ghost s drom oh my": [0, 65535], "or else his ghost s drom oh my olde": [0, 65535], "else his ghost s drom oh my olde master": [0, 65535], "his ghost s drom oh my olde master who": [0, 65535], "ghost s drom oh my olde master who hath": [0, 65535], "s drom oh my olde master who hath bound": [0, 65535], "drom oh my olde master who hath bound him": [0, 65535], "oh my olde master who hath bound him heere": [0, 65535], "my olde master who hath bound him heere abb": [0, 65535], "olde master who hath bound him heere abb who": [0, 65535], "master who hath bound him heere abb who euer": [0, 65535], "who hath bound him heere abb who euer bound": [0, 65535], "hath bound him heere abb who euer bound him": [0, 65535], "bound him heere abb who euer bound him i": [0, 65535], "him heere abb who euer bound him i will": [0, 65535], "heere abb who euer bound him i will lose": [0, 65535], "abb who euer bound him i will lose his": [0, 65535], "who euer bound him i will lose his bonds": [0, 65535], "euer bound him i will lose his bonds and": [0, 65535], "bound him i will lose his bonds and gaine": [0, 65535], "him i will lose his bonds and gaine a": [0, 65535], "i will lose his bonds and gaine a husband": [0, 65535], "will lose his bonds and gaine a husband by": [0, 65535], "lose his bonds and gaine a husband by his": [0, 65535], "his bonds and gaine a husband by his libertie": [0, 65535], "bonds and gaine a husband by his libertie speake": [0, 65535], "and gaine a husband by his libertie speake olde": [0, 65535], "gaine a husband by his libertie speake olde egeon": [0, 65535], "a husband by his libertie speake olde egeon if": [0, 65535], "husband by his libertie speake olde egeon if thou": [0, 65535], "by his libertie speake olde egeon if thou bee'st": [0, 65535], "his libertie speake olde egeon if thou bee'st the": [0, 65535], "libertie speake olde egeon if thou bee'st the man": [0, 65535], "speake olde egeon if thou bee'st the man that": [0, 65535], "olde egeon if thou bee'st the man that hadst": [0, 65535], "egeon if thou bee'st the man that hadst a": [0, 65535], "if thou bee'st the man that hadst a wife": [0, 65535], "thou bee'st the man that hadst a wife once": [0, 65535], "bee'st the man that hadst a wife once call'd": [0, 65535], "the man that hadst a wife once call'd \u00e6milia": [0, 65535], "man that hadst a wife once call'd \u00e6milia that": [0, 65535], "that hadst a wife once call'd \u00e6milia that bore": [0, 65535], "hadst a wife once call'd \u00e6milia that bore thee": [0, 65535], "a wife once call'd \u00e6milia that bore thee at": [0, 65535], "wife once call'd \u00e6milia that bore thee at a": [0, 65535], "once call'd \u00e6milia that bore thee at a burthen": [0, 65535], "call'd \u00e6milia that bore thee at a burthen two": [0, 65535], "\u00e6milia that bore thee at a burthen two faire": [0, 65535], "that bore thee at a burthen two faire sonnes": [0, 65535], "bore thee at a burthen two faire sonnes oh": [0, 65535], "thee at a burthen two faire sonnes oh if": [0, 65535], "at a burthen two faire sonnes oh if thou": [0, 65535], "a burthen two faire sonnes oh if thou bee'st": [0, 65535], "burthen two faire sonnes oh if thou bee'st the": [0, 65535], "two faire sonnes oh if thou bee'st the same": [0, 65535], "faire sonnes oh if thou bee'st the same egeon": [0, 65535], "sonnes oh if thou bee'st the same egeon speake": [0, 65535], "oh if thou bee'st the same egeon speake and": [0, 65535], "if thou bee'st the same egeon speake and speake": [0, 65535], "thou bee'st the same egeon speake and speake vnto": [0, 65535], "bee'st the same egeon speake and speake vnto the": [0, 65535], "the same egeon speake and speake vnto the same": [0, 65535], "same egeon speake and speake vnto the same \u00e6milia": [0, 65535], "egeon speake and speake vnto the same \u00e6milia duke": [0, 65535], "speake and speake vnto the same \u00e6milia duke why": [0, 65535], "and speake vnto the same \u00e6milia duke why heere": [0, 65535], "speake vnto the same \u00e6milia duke why heere begins": [0, 65535], "vnto the same \u00e6milia duke why heere begins his": [0, 65535], "the same \u00e6milia duke why heere begins his morning": [0, 65535], "same \u00e6milia duke why heere begins his morning storie": [0, 65535], "\u00e6milia duke why heere begins his morning storie right": [0, 65535], "duke why heere begins his morning storie right these": [0, 65535], "why heere begins his morning storie right these twoantipholus": [0, 65535], "heere begins his morning storie right these twoantipholus these": [0, 65535], "begins his morning storie right these twoantipholus these two": [0, 65535], "his morning storie right these twoantipholus these two so": [0, 65535], "morning storie right these twoantipholus these two so like": [0, 65535], "storie right these twoantipholus these two so like and": [0, 65535], "right these twoantipholus these two so like and these": [0, 65535], "these twoantipholus these two so like and these two": [0, 65535], "twoantipholus these two so like and these two dromio's": [0, 65535], "these two so like and these two dromio's one": [0, 65535], "two so like and these two dromio's one in": [0, 65535], "so like and these two dromio's one in semblance": [0, 65535], "like and these two dromio's one in semblance besides": [0, 65535], "and these two dromio's one in semblance besides her": [0, 65535], "these two dromio's one in semblance besides her vrging": [0, 65535], "two dromio's one in semblance besides her vrging of": [0, 65535], "dromio's one in semblance besides her vrging of her": [0, 65535], "one in semblance besides her vrging of her wracke": [0, 65535], "in semblance besides her vrging of her wracke at": [0, 65535], "semblance besides her vrging of her wracke at sea": [0, 65535], "besides her vrging of her wracke at sea these": [0, 65535], "her vrging of her wracke at sea these are": [0, 65535], "vrging of her wracke at sea these are the": [0, 65535], "of her wracke at sea these are the parents": [0, 65535], "her wracke at sea these are the parents to": [0, 65535], "wracke at sea these are the parents to these": [0, 65535], "at sea these are the parents to these children": [0, 65535], "sea these are the parents to these children which": [0, 65535], "these are the parents to these children which accidentally": [0, 65535], "are the parents to these children which accidentally are": [0, 65535], "the parents to these children which accidentally are met": [0, 65535], "parents to these children which accidentally are met together": [0, 65535], "to these children which accidentally are met together fa": [0, 65535], "these children which accidentally are met together fa if": [0, 65535], "children which accidentally are met together fa if i": [0, 65535], "which accidentally are met together fa if i dreame": [0, 65535], "accidentally are met together fa if i dreame not": [0, 65535], "are met together fa if i dreame not thou": [0, 65535], "met together fa if i dreame not thou art": [0, 65535], "together fa if i dreame not thou art \u00e6milia": [0, 65535], "fa if i dreame not thou art \u00e6milia if": [0, 65535], "if i dreame not thou art \u00e6milia if thou": [0, 65535], "i dreame not thou art \u00e6milia if thou art": [0, 65535], "dreame not thou art \u00e6milia if thou art she": [0, 65535], "not thou art \u00e6milia if thou art she tell": [0, 65535], "thou art \u00e6milia if thou art she tell me": [0, 65535], "art \u00e6milia if thou art she tell me where": [0, 65535], "\u00e6milia if thou art she tell me where is": [0, 65535], "if thou art she tell me where is that": [0, 65535], "thou art she tell me where is that sonne": [0, 65535], "art she tell me where is that sonne that": [0, 65535], "she tell me where is that sonne that floated": [0, 65535], "tell me where is that sonne that floated with": [0, 65535], "me where is that sonne that floated with thee": [0, 65535], "where is that sonne that floated with thee on": [0, 65535], "is that sonne that floated with thee on the": [0, 65535], "that sonne that floated with thee on the fatall": [0, 65535], "sonne that floated with thee on the fatall rafte": [0, 65535], "that floated with thee on the fatall rafte abb": [0, 65535], "floated with thee on the fatall rafte abb by": [0, 65535], "with thee on the fatall rafte abb by men": [0, 65535], "thee on the fatall rafte abb by men of": [0, 65535], "on the fatall rafte abb by men of epidamium": [0, 65535], "the fatall rafte abb by men of epidamium he": [0, 65535], "fatall rafte abb by men of epidamium he and": [0, 65535], "rafte abb by men of epidamium he and i": [0, 65535], "abb by men of epidamium he and i and": [0, 65535], "by men of epidamium he and i and the": [0, 65535], "men of epidamium he and i and the twin": [0, 65535], "of epidamium he and i and the twin dromio": [0, 65535], "epidamium he and i and the twin dromio all": [0, 65535], "he and i and the twin dromio all were": [0, 65535], "and i and the twin dromio all were taken": [0, 65535], "i and the twin dromio all were taken vp": [0, 65535], "and the twin dromio all were taken vp but": [0, 65535], "the twin dromio all were taken vp but by": [0, 65535], "twin dromio all were taken vp but by and": [0, 65535], "dromio all were taken vp but by and by": [0, 65535], "all were taken vp but by and by rude": [0, 65535], "were taken vp but by and by rude fishermen": [0, 65535], "taken vp but by and by rude fishermen of": [0, 65535], "vp but by and by rude fishermen of corinth": [0, 65535], "but by and by rude fishermen of corinth by": [0, 65535], "by and by rude fishermen of corinth by force": [0, 65535], "and by rude fishermen of corinth by force tooke": [0, 65535], "by rude fishermen of corinth by force tooke dromio": [0, 65535], "rude fishermen of corinth by force tooke dromio and": [0, 65535], "fishermen of corinth by force tooke dromio and my": [0, 65535], "of corinth by force tooke dromio and my sonne": [0, 65535], "corinth by force tooke dromio and my sonne from": [0, 65535], "by force tooke dromio and my sonne from them": [0, 65535], "force tooke dromio and my sonne from them and": [0, 65535], "tooke dromio and my sonne from them and me": [0, 65535], "dromio and my sonne from them and me they": [0, 65535], "and my sonne from them and me they left": [0, 65535], "my sonne from them and me they left with": [0, 65535], "sonne from them and me they left with those": [0, 65535], "from them and me they left with those of": [0, 65535], "them and me they left with those of epidamium": [0, 65535], "and me they left with those of epidamium what": [0, 65535], "me they left with those of epidamium what then": [0, 65535], "they left with those of epidamium what then became": [0, 65535], "left with those of epidamium what then became of": [0, 65535], "with those of epidamium what then became of them": [0, 65535], "those of epidamium what then became of them i": [0, 65535], "of epidamium what then became of them i cannot": [0, 65535], "epidamium what then became of them i cannot tell": [0, 65535], "what then became of them i cannot tell i": [0, 65535], "then became of them i cannot tell i to": [0, 65535], "became of them i cannot tell i to this": [0, 65535], "of them i cannot tell i to this fortune": [0, 65535], "them i cannot tell i to this fortune that": [0, 65535], "i cannot tell i to this fortune that you": [0, 65535], "cannot tell i to this fortune that you see": [0, 65535], "tell i to this fortune that you see mee": [0, 65535], "i to this fortune that you see mee in": [0, 65535], "to this fortune that you see mee in duke": [0, 65535], "this fortune that you see mee in duke antipholus": [0, 65535], "fortune that you see mee in duke antipholus thou": [0, 65535], "that you see mee in duke antipholus thou cam'st": [0, 65535], "you see mee in duke antipholus thou cam'st from": [0, 65535], "see mee in duke antipholus thou cam'st from corinth": [0, 65535], "mee in duke antipholus thou cam'st from corinth first": [0, 65535], "in duke antipholus thou cam'st from corinth first s": [0, 65535], "duke antipholus thou cam'st from corinth first s ant": [0, 65535], "antipholus thou cam'st from corinth first s ant no": [0, 65535], "thou cam'st from corinth first s ant no sir": [0, 65535], "cam'st from corinth first s ant no sir not": [0, 65535], "from corinth first s ant no sir not i": [0, 65535], "corinth first s ant no sir not i i": [0, 65535], "first s ant no sir not i i came": [0, 65535], "s ant no sir not i i came from": [0, 65535], "ant no sir not i i came from siracuse": [0, 65535], "no sir not i i came from siracuse duke": [0, 65535], "sir not i i came from siracuse duke stay": [0, 65535], "not i i came from siracuse duke stay stand": [0, 65535], "i i came from siracuse duke stay stand apart": [0, 65535], "i came from siracuse duke stay stand apart i": [0, 65535], "came from siracuse duke stay stand apart i know": [0, 65535], "from siracuse duke stay stand apart i know not": [0, 65535], "siracuse duke stay stand apart i know not which": [0, 65535], "duke stay stand apart i know not which is": [0, 65535], "stay stand apart i know not which is which": [0, 65535], "stand apart i know not which is which e": [0, 65535], "apart i know not which is which e ant": [0, 65535], "i know not which is which e ant i": [0, 65535], "know not which is which e ant i came": [0, 65535], "not which is which e ant i came from": [0, 65535], "which is which e ant i came from corinth": [0, 65535], "is which e ant i came from corinth my": [0, 65535], "which e ant i came from corinth my most": [0, 65535], "e ant i came from corinth my most gracious": [0, 65535], "ant i came from corinth my most gracious lord": [0, 65535], "i came from corinth my most gracious lord e": [0, 65535], "came from corinth my most gracious lord e dro": [0, 65535], "from corinth my most gracious lord e dro and": [0, 65535], "corinth my most gracious lord e dro and i": [0, 65535], "my most gracious lord e dro and i with": [0, 65535], "most gracious lord e dro and i with him": [0, 65535], "gracious lord e dro and i with him e": [0, 65535], "lord e dro and i with him e ant": [0, 65535], "e dro and i with him e ant brought": [0, 65535], "dro and i with him e ant brought to": [0, 65535], "and i with him e ant brought to this": [0, 65535], "i with him e ant brought to this town": [0, 65535], "with him e ant brought to this town by": [0, 65535], "him e ant brought to this town by that": [0, 65535], "e ant brought to this town by that most": [0, 65535], "ant brought to this town by that most famous": [0, 65535], "brought to this town by that most famous warriour": [0, 65535], "to this town by that most famous warriour duke": [0, 65535], "this town by that most famous warriour duke menaphon": [0, 65535], "town by that most famous warriour duke menaphon your": [0, 65535], "by that most famous warriour duke menaphon your most": [0, 65535], "that most famous warriour duke menaphon your most renowned": [0, 65535], "most famous warriour duke menaphon your most renowned vnckle": [0, 65535], "famous warriour duke menaphon your most renowned vnckle adr": [0, 65535], "warriour duke menaphon your most renowned vnckle adr which": [0, 65535], "duke menaphon your most renowned vnckle adr which of": [0, 65535], "menaphon your most renowned vnckle adr which of you": [0, 65535], "your most renowned vnckle adr which of you two": [0, 65535], "most renowned vnckle adr which of you two did": [0, 65535], "renowned vnckle adr which of you two did dine": [0, 65535], "vnckle adr which of you two did dine with": [0, 65535], "adr which of you two did dine with me": [0, 65535], "which of you two did dine with me to": [0, 65535], "of you two did dine with me to day": [0, 65535], "you two did dine with me to day s": [0, 65535], "two did dine with me to day s ant": [0, 65535], "did dine with me to day s ant i": [0, 65535], "dine with me to day s ant i gentle": [0, 65535], "with me to day s ant i gentle mistris": [0, 65535], "me to day s ant i gentle mistris adr": [0, 65535], "to day s ant i gentle mistris adr and": [0, 65535], "day s ant i gentle mistris adr and are": [0, 65535], "s ant i gentle mistris adr and are not": [0, 65535], "ant i gentle mistris adr and are not you": [0, 65535], "i gentle mistris adr and are not you my": [0, 65535], "gentle mistris adr and are not you my husband": [0, 65535], "mistris adr and are not you my husband e": [0, 65535], "adr and are not you my husband e ant": [0, 65535], "and are not you my husband e ant no": [0, 65535], "are not you my husband e ant no i": [0, 65535], "not you my husband e ant no i say": [0, 65535], "you my husband e ant no i say nay": [0, 65535], "my husband e ant no i say nay to": [0, 65535], "husband e ant no i say nay to that": [0, 65535], "e ant no i say nay to that s": [0, 65535], "ant no i say nay to that s ant": [0, 65535], "no i say nay to that s ant and": [0, 65535], "i say nay to that s ant and so": [0, 65535], "say nay to that s ant and so do": [0, 65535], "nay to that s ant and so do i": [0, 65535], "to that s ant and so do i yet": [0, 65535], "that s ant and so do i yet did": [0, 65535], "s ant and so do i yet did she": [0, 65535], "ant and so do i yet did she call": [0, 65535], "and so do i yet did she call me": [0, 65535], "so do i yet did she call me so": [0, 65535], "do i yet did she call me so and": [0, 65535], "i yet did she call me so and this": [0, 65535], "yet did she call me so and this faire": [0, 65535], "did she call me so and this faire gentlewoman": [0, 65535], "she call me so and this faire gentlewoman her": [0, 65535], "call me so and this faire gentlewoman her sister": [0, 65535], "me so and this faire gentlewoman her sister heere": [0, 65535], "so and this faire gentlewoman her sister heere did": [0, 65535], "and this faire gentlewoman her sister heere did call": [0, 65535], "this faire gentlewoman her sister heere did call me": [0, 65535], "faire gentlewoman her sister heere did call me brother": [0, 65535], "gentlewoman her sister heere did call me brother what": [0, 65535], "her sister heere did call me brother what i": [0, 65535], "sister heere did call me brother what i told": [0, 65535], "heere did call me brother what i told you": [0, 65535], "did call me brother what i told you then": [0, 65535], "call me brother what i told you then i": [0, 65535], "me brother what i told you then i hope": [0, 65535], "brother what i told you then i hope i": [0, 65535], "what i told you then i hope i shall": [0, 65535], "i told you then i hope i shall haue": [0, 65535], "told you then i hope i shall haue leisure": [0, 65535], "you then i hope i shall haue leisure to": [0, 65535], "then i hope i shall haue leisure to make": [0, 65535], "i hope i shall haue leisure to make good": [0, 65535], "hope i shall haue leisure to make good if": [0, 65535], "i shall haue leisure to make good if this": [0, 65535], "shall haue leisure to make good if this be": [0, 65535], "haue leisure to make good if this be not": [0, 65535], "leisure to make good if this be not a": [0, 65535], "to make good if this be not a dreame": [0, 65535], "make good if this be not a dreame i": [0, 65535], "good if this be not a dreame i see": [0, 65535], "if this be not a dreame i see and": [0, 65535], "this be not a dreame i see and heare": [0, 65535], "be not a dreame i see and heare goldsmith": [0, 65535], "not a dreame i see and heare goldsmith that": [0, 65535], "a dreame i see and heare goldsmith that is": [0, 65535], "dreame i see and heare goldsmith that is the": [0, 65535], "i see and heare goldsmith that is the chaine": [0, 65535], "see and heare goldsmith that is the chaine sir": [0, 65535], "and heare goldsmith that is the chaine sir which": [0, 65535], "heare goldsmith that is the chaine sir which you": [0, 65535], "goldsmith that is the chaine sir which you had": [0, 65535], "that is the chaine sir which you had of": [0, 65535], "is the chaine sir which you had of mee": [0, 65535], "the chaine sir which you had of mee s": [0, 65535], "chaine sir which you had of mee s ant": [0, 65535], "sir which you had of mee s ant i": [0, 65535], "which you had of mee s ant i thinke": [0, 65535], "you had of mee s ant i thinke it": [0, 65535], "had of mee s ant i thinke it be": [0, 65535], "of mee s ant i thinke it be sir": [0, 65535], "mee s ant i thinke it be sir i": [0, 65535], "s ant i thinke it be sir i denie": [0, 65535], "ant i thinke it be sir i denie it": [0, 65535], "i thinke it be sir i denie it not": [0, 65535], "thinke it be sir i denie it not e": [0, 65535], "it be sir i denie it not e ant": [0, 65535], "be sir i denie it not e ant and": [0, 65535], "sir i denie it not e ant and you": [0, 65535], "i denie it not e ant and you sir": [0, 65535], "denie it not e ant and you sir for": [0, 65535], "it not e ant and you sir for this": [0, 65535], "not e ant and you sir for this chaine": [0, 65535], "e ant and you sir for this chaine arrested": [0, 65535], "ant and you sir for this chaine arrested me": [0, 65535], "and you sir for this chaine arrested me gold": [0, 65535], "you sir for this chaine arrested me gold i": [0, 65535], "sir for this chaine arrested me gold i thinke": [0, 65535], "for this chaine arrested me gold i thinke i": [0, 65535], "this chaine arrested me gold i thinke i did": [0, 65535], "chaine arrested me gold i thinke i did sir": [0, 65535], "arrested me gold i thinke i did sir i": [0, 65535], "me gold i thinke i did sir i deny": [0, 65535], "gold i thinke i did sir i deny it": [0, 65535], "i thinke i did sir i deny it not": [0, 65535], "thinke i did sir i deny it not adr": [0, 65535], "i did sir i deny it not adr i": [0, 65535], "did sir i deny it not adr i sent": [0, 65535], "sir i deny it not adr i sent you": [0, 65535], "i deny it not adr i sent you monie": [0, 65535], "deny it not adr i sent you monie sir": [0, 65535], "it not adr i sent you monie sir to": [0, 65535], "not adr i sent you monie sir to be": [0, 65535], "adr i sent you monie sir to be your": [0, 65535], "i sent you monie sir to be your baile": [0, 65535], "sent you monie sir to be your baile by": [0, 65535], "you monie sir to be your baile by dromio": [0, 65535], "monie sir to be your baile by dromio but": [0, 65535], "sir to be your baile by dromio but i": [0, 65535], "to be your baile by dromio but i thinke": [0, 65535], "be your baile by dromio but i thinke he": [0, 65535], "your baile by dromio but i thinke he brought": [0, 65535], "baile by dromio but i thinke he brought it": [0, 65535], "by dromio but i thinke he brought it not": [0, 65535], "dromio but i thinke he brought it not e": [0, 65535], "but i thinke he brought it not e dro": [0, 65535], "i thinke he brought it not e dro no": [0, 65535], "thinke he brought it not e dro no none": [0, 65535], "he brought it not e dro no none by": [0, 65535], "brought it not e dro no none by me": [0, 65535], "it not e dro no none by me s": [0, 65535], "not e dro no none by me s ant": [0, 65535], "e dro no none by me s ant this": [0, 65535], "dro no none by me s ant this purse": [0, 65535], "no none by me s ant this purse of": [0, 65535], "none by me s ant this purse of duckets": [0, 65535], "by me s ant this purse of duckets i": [0, 65535], "me s ant this purse of duckets i receiu'd": [0, 65535], "s ant this purse of duckets i receiu'd from": [0, 65535], "ant this purse of duckets i receiu'd from you": [0, 65535], "this purse of duckets i receiu'd from you and": [0, 65535], "purse of duckets i receiu'd from you and dromio": [0, 65535], "of duckets i receiu'd from you and dromio my": [0, 65535], "duckets i receiu'd from you and dromio my man": [0, 65535], "i receiu'd from you and dromio my man did": [0, 65535], "receiu'd from you and dromio my man did bring": [0, 65535], "from you and dromio my man did bring them": [0, 65535], "you and dromio my man did bring them me": [0, 65535], "and dromio my man did bring them me i": [0, 65535], "dromio my man did bring them me i see": [0, 65535], "my man did bring them me i see we": [0, 65535], "man did bring them me i see we still": [0, 65535], "did bring them me i see we still did": [0, 65535], "bring them me i see we still did meete": [0, 65535], "them me i see we still did meete each": [0, 65535], "me i see we still did meete each others": [0, 65535], "i see we still did meete each others man": [0, 65535], "see we still did meete each others man and": [0, 65535], "we still did meete each others man and i": [0, 65535], "still did meete each others man and i was": [0, 65535], "did meete each others man and i was tane": [0, 65535], "meete each others man and i was tane for": [0, 65535], "each others man and i was tane for him": [0, 65535], "others man and i was tane for him and": [0, 65535], "man and i was tane for him and he": [0, 65535], "and i was tane for him and he for": [0, 65535], "i was tane for him and he for me": [0, 65535], "was tane for him and he for me and": [0, 65535], "tane for him and he for me and thereupon": [0, 65535], "for him and he for me and thereupon these": [0, 65535], "him and he for me and thereupon these errors": [0, 65535], "and he for me and thereupon these errors are": [0, 65535], "he for me and thereupon these errors are arose": [0, 65535], "for me and thereupon these errors are arose e": [0, 65535], "me and thereupon these errors are arose e ant": [0, 65535], "and thereupon these errors are arose e ant these": [0, 65535], "thereupon these errors are arose e ant these duckets": [0, 65535], "these errors are arose e ant these duckets pawne": [0, 65535], "errors are arose e ant these duckets pawne i": [0, 65535], "are arose e ant these duckets pawne i for": [0, 65535], "arose e ant these duckets pawne i for my": [0, 65535], "e ant these duckets pawne i for my father": [0, 65535], "ant these duckets pawne i for my father heere": [0, 65535], "these duckets pawne i for my father heere duke": [0, 65535], "duckets pawne i for my father heere duke it": [0, 65535], "pawne i for my father heere duke it shall": [0, 65535], "i for my father heere duke it shall not": [0, 65535], "for my father heere duke it shall not neede": [0, 65535], "my father heere duke it shall not neede thy": [0, 65535], "father heere duke it shall not neede thy father": [0, 65535], "heere duke it shall not neede thy father hath": [0, 65535], "duke it shall not neede thy father hath his": [0, 65535], "it shall not neede thy father hath his life": [0, 65535], "shall not neede thy father hath his life cur": [0, 65535], "not neede thy father hath his life cur sir": [0, 65535], "neede thy father hath his life cur sir i": [0, 65535], "thy father hath his life cur sir i must": [0, 65535], "father hath his life cur sir i must haue": [0, 65535], "hath his life cur sir i must haue that": [0, 65535], "his life cur sir i must haue that diamond": [0, 65535], "life cur sir i must haue that diamond from": [0, 65535], "cur sir i must haue that diamond from you": [0, 65535], "sir i must haue that diamond from you e": [0, 65535], "i must haue that diamond from you e ant": [0, 65535], "must haue that diamond from you e ant there": [0, 65535], "haue that diamond from you e ant there take": [0, 65535], "that diamond from you e ant there take it": [0, 65535], "diamond from you e ant there take it and": [0, 65535], "from you e ant there take it and much": [0, 65535], "you e ant there take it and much thanks": [0, 65535], "e ant there take it and much thanks for": [0, 65535], "ant there take it and much thanks for my": [0, 65535], "there take it and much thanks for my good": [0, 65535], "take it and much thanks for my good cheere": [0, 65535], "it and much thanks for my good cheere abb": [0, 65535], "and much thanks for my good cheere abb renowned": [0, 65535], "much thanks for my good cheere abb renowned duke": [0, 65535], "thanks for my good cheere abb renowned duke vouchsafe": [0, 65535], "for my good cheere abb renowned duke vouchsafe to": [0, 65535], "my good cheere abb renowned duke vouchsafe to take": [0, 65535], "good cheere abb renowned duke vouchsafe to take the": [0, 65535], "cheere abb renowned duke vouchsafe to take the paines": [0, 65535], "abb renowned duke vouchsafe to take the paines to": [0, 65535], "renowned duke vouchsafe to take the paines to go": [0, 65535], "duke vouchsafe to take the paines to go with": [0, 65535], "vouchsafe to take the paines to go with vs": [0, 65535], "to take the paines to go with vs into": [0, 65535], "take the paines to go with vs into the": [0, 65535], "the paines to go with vs into the abbey": [0, 65535], "paines to go with vs into the abbey heere": [0, 65535], "to go with vs into the abbey heere and": [0, 65535], "go with vs into the abbey heere and heare": [0, 65535], "with vs into the abbey heere and heare at": [0, 65535], "vs into the abbey heere and heare at large": [0, 65535], "into the abbey heere and heare at large discoursed": [0, 65535], "the abbey heere and heare at large discoursed all": [0, 65535], "abbey heere and heare at large discoursed all our": [0, 65535], "heere and heare at large discoursed all our fortunes": [0, 65535], "and heare at large discoursed all our fortunes and": [0, 65535], "heare at large discoursed all our fortunes and all": [0, 65535], "at large discoursed all our fortunes and all that": [0, 65535], "large discoursed all our fortunes and all that are": [0, 65535], "discoursed all our fortunes and all that are assembled": [0, 65535], "all our fortunes and all that are assembled in": [0, 65535], "our fortunes and all that are assembled in this": [0, 65535], "fortunes and all that are assembled in this place": [0, 65535], "and all that are assembled in this place that": [0, 65535], "all that are assembled in this place that by": [0, 65535], "that are assembled in this place that by this": [0, 65535], "are assembled in this place that by this simpathized": [0, 65535], "assembled in this place that by this simpathized one": [0, 65535], "in this place that by this simpathized one daies": [0, 65535], "this place that by this simpathized one daies error": [0, 65535], "place that by this simpathized one daies error haue": [0, 65535], "that by this simpathized one daies error haue suffer'd": [0, 65535], "by this simpathized one daies error haue suffer'd wrong": [0, 65535], "this simpathized one daies error haue suffer'd wrong goe": [0, 65535], "simpathized one daies error haue suffer'd wrong goe keepe": [0, 65535], "one daies error haue suffer'd wrong goe keepe vs": [0, 65535], "daies error haue suffer'd wrong goe keepe vs companie": [0, 65535], "error haue suffer'd wrong goe keepe vs companie and": [0, 65535], "haue suffer'd wrong goe keepe vs companie and we": [0, 65535], "suffer'd wrong goe keepe vs companie and we shall": [0, 65535], "wrong goe keepe vs companie and we shall make": [0, 65535], "goe keepe vs companie and we shall make full": [0, 65535], "keepe vs companie and we shall make full satisfaction": [0, 65535], "vs companie and we shall make full satisfaction thirtie": [0, 65535], "companie and we shall make full satisfaction thirtie three": [0, 65535], "and we shall make full satisfaction thirtie three yeares": [0, 65535], "we shall make full satisfaction thirtie three yeares haue": [0, 65535], "shall make full satisfaction thirtie three yeares haue i": [0, 65535], "make full satisfaction thirtie three yeares haue i but": [0, 65535], "full satisfaction thirtie three yeares haue i but gone": [0, 65535], "satisfaction thirtie three yeares haue i but gone in": [0, 65535], "thirtie three yeares haue i but gone in trauaile": [0, 65535], "three yeares haue i but gone in trauaile of": [0, 65535], "yeares haue i but gone in trauaile of you": [0, 65535], "haue i but gone in trauaile of you my": [0, 65535], "i but gone in trauaile of you my sonnes": [0, 65535], "but gone in trauaile of you my sonnes and": [0, 65535], "gone in trauaile of you my sonnes and till": [0, 65535], "in trauaile of you my sonnes and till this": [0, 65535], "trauaile of you my sonnes and till this present": [0, 65535], "of you my sonnes and till this present houre": [0, 65535], "you my sonnes and till this present houre my": [0, 65535], "my sonnes and till this present houre my heauie": [0, 65535], "sonnes and till this present houre my heauie burthen": [0, 65535], "and till this present houre my heauie burthen are": [0, 65535], "till this present houre my heauie burthen are deliuered": [0, 65535], "this present houre my heauie burthen are deliuered the": [0, 65535], "present houre my heauie burthen are deliuered the duke": [0, 65535], "houre my heauie burthen are deliuered the duke my": [0, 65535], "my heauie burthen are deliuered the duke my husband": [0, 65535], "heauie burthen are deliuered the duke my husband and": [0, 65535], "burthen are deliuered the duke my husband and my": [0, 65535], "are deliuered the duke my husband and my children": [0, 65535], "deliuered the duke my husband and my children both": [0, 65535], "the duke my husband and my children both and": [0, 65535], "duke my husband and my children both and you": [0, 65535], "my husband and my children both and you the": [0, 65535], "husband and my children both and you the kalenders": [0, 65535], "and my children both and you the kalenders of": [0, 65535], "my children both and you the kalenders of their": [0, 65535], "children both and you the kalenders of their natiuity": [0, 65535], "both and you the kalenders of their natiuity go": [0, 65535], "and you the kalenders of their natiuity go to": [0, 65535], "you the kalenders of their natiuity go to a": [0, 65535], "the kalenders of their natiuity go to a gossips": [0, 65535], "kalenders of their natiuity go to a gossips feast": [0, 65535], "of their natiuity go to a gossips feast and": [0, 65535], "their natiuity go to a gossips feast and go": [0, 65535], "natiuity go to a gossips feast and go with": [0, 65535], "go to a gossips feast and go with mee": [0, 65535], "to a gossips feast and go with mee after": [0, 65535], "a gossips feast and go with mee after so": [0, 65535], "gossips feast and go with mee after so long": [0, 65535], "feast and go with mee after so long greefe": [0, 65535], "and go with mee after so long greefe such": [0, 65535], "go with mee after so long greefe such natiuitie": [0, 65535], "with mee after so long greefe such natiuitie duke": [0, 65535], "mee after so long greefe such natiuitie duke with": [0, 65535], "after so long greefe such natiuitie duke with all": [0, 65535], "so long greefe such natiuitie duke with all my": [0, 65535], "long greefe such natiuitie duke with all my heart": [0, 65535], "greefe such natiuitie duke with all my heart ile": [0, 65535], "such natiuitie duke with all my heart ile gossip": [0, 65535], "natiuitie duke with all my heart ile gossip at": [0, 65535], "duke with all my heart ile gossip at this": [0, 65535], "with all my heart ile gossip at this feast": [0, 65535], "all my heart ile gossip at this feast exeunt": [0, 65535], "my heart ile gossip at this feast exeunt omnes": [0, 65535], "heart ile gossip at this feast exeunt omnes manet": [0, 65535], "ile gossip at this feast exeunt omnes manet the": [0, 65535], "gossip at this feast exeunt omnes manet the two": [0, 65535], "at this feast exeunt omnes manet the two dromio's": [0, 65535], "this feast exeunt omnes manet the two dromio's and": [0, 65535], "feast exeunt omnes manet the two dromio's and two": [0, 65535], "exeunt omnes manet the two dromio's and two brothers": [0, 65535], "omnes manet the two dromio's and two brothers s": [0, 65535], "manet the two dromio's and two brothers s dro": [0, 65535], "the two dromio's and two brothers s dro mast": [0, 65535], "two dromio's and two brothers s dro mast shall": [0, 65535], "dromio's and two brothers s dro mast shall i": [0, 65535], "and two brothers s dro mast shall i fetch": [0, 65535], "two brothers s dro mast shall i fetch your": [0, 65535], "brothers s dro mast shall i fetch your stuffe": [0, 65535], "s dro mast shall i fetch your stuffe from": [0, 65535], "dro mast shall i fetch your stuffe from shipbord": [0, 65535], "mast shall i fetch your stuffe from shipbord e": [0, 65535], "shall i fetch your stuffe from shipbord e an": [0, 65535], "i fetch your stuffe from shipbord e an dromio": [0, 65535], "fetch your stuffe from shipbord e an dromio what": [0, 65535], "your stuffe from shipbord e an dromio what stuffe": [0, 65535], "stuffe from shipbord e an dromio what stuffe of": [0, 65535], "from shipbord e an dromio what stuffe of mine": [0, 65535], "shipbord e an dromio what stuffe of mine hast": [0, 65535], "e an dromio what stuffe of mine hast thou": [0, 65535], "an dromio what stuffe of mine hast thou imbarkt": [0, 65535], "dromio what stuffe of mine hast thou imbarkt s": [0, 65535], "what stuffe of mine hast thou imbarkt s dro": [0, 65535], "stuffe of mine hast thou imbarkt s dro your": [0, 65535], "of mine hast thou imbarkt s dro your goods": [0, 65535], "mine hast thou imbarkt s dro your goods that": [0, 65535], "hast thou imbarkt s dro your goods that lay": [0, 65535], "thou imbarkt s dro your goods that lay at": [0, 65535], "imbarkt s dro your goods that lay at host": [0, 65535], "s dro your goods that lay at host sir": [0, 65535], "dro your goods that lay at host sir in": [0, 65535], "your goods that lay at host sir in the": [0, 65535], "goods that lay at host sir in the centaur": [0, 65535], "that lay at host sir in the centaur s": [0, 65535], "lay at host sir in the centaur s ant": [0, 65535], "at host sir in the centaur s ant he": [0, 65535], "host sir in the centaur s ant he speakes": [0, 65535], "sir in the centaur s ant he speakes to": [0, 65535], "in the centaur s ant he speakes to me": [0, 65535], "the centaur s ant he speakes to me i": [0, 65535], "centaur s ant he speakes to me i am": [0, 65535], "s ant he speakes to me i am your": [0, 65535], "ant he speakes to me i am your master": [0, 65535], "he speakes to me i am your master dromio": [0, 65535], "speakes to me i am your master dromio come": [0, 65535], "to me i am your master dromio come go": [0, 65535], "me i am your master dromio come go with": [0, 65535], "i am your master dromio come go with vs": [0, 65535], "am your master dromio come go with vs wee'l": [0, 65535], "your master dromio come go with vs wee'l looke": [0, 65535], "master dromio come go with vs wee'l looke to": [0, 65535], "dromio come go with vs wee'l looke to that": [0, 65535], "come go with vs wee'l looke to that anon": [0, 65535], "go with vs wee'l looke to that anon embrace": [0, 65535], "with vs wee'l looke to that anon embrace thy": [0, 65535], "vs wee'l looke to that anon embrace thy brother": [0, 65535], "wee'l looke to that anon embrace thy brother there": [0, 65535], "looke to that anon embrace thy brother there reioyce": [0, 65535], "to that anon embrace thy brother there reioyce with": [0, 65535], "that anon embrace thy brother there reioyce with him": [0, 65535], "anon embrace thy brother there reioyce with him exit": [0, 65535], "embrace thy brother there reioyce with him exit s": [0, 65535], "thy brother there reioyce with him exit s dro": [0, 65535], "brother there reioyce with him exit s dro there": [0, 65535], "there reioyce with him exit s dro there is": [0, 65535], "reioyce with him exit s dro there is a": [0, 65535], "with him exit s dro there is a fat": [0, 65535], "him exit s dro there is a fat friend": [0, 65535], "exit s dro there is a fat friend at": [0, 65535], "s dro there is a fat friend at your": [0, 65535], "dro there is a fat friend at your masters": [0, 65535], "there is a fat friend at your masters house": [0, 65535], "is a fat friend at your masters house that": [0, 65535], "a fat friend at your masters house that kitchin'd": [0, 65535], "fat friend at your masters house that kitchin'd me": [0, 65535], "friend at your masters house that kitchin'd me for": [0, 65535], "at your masters house that kitchin'd me for you": [0, 65535], "your masters house that kitchin'd me for you to": [0, 65535], "masters house that kitchin'd me for you to day": [0, 65535], "house that kitchin'd me for you to day at": [0, 65535], "that kitchin'd me for you to day at dinner": [0, 65535], "kitchin'd me for you to day at dinner she": [0, 65535], "me for you to day at dinner she now": [0, 65535], "for you to day at dinner she now shall": [0, 65535], "you to day at dinner she now shall be": [0, 65535], "to day at dinner she now shall be my": [0, 65535], "day at dinner she now shall be my sister": [0, 65535], "at dinner she now shall be my sister not": [0, 65535], "dinner she now shall be my sister not my": [0, 65535], "she now shall be my sister not my wife": [0, 65535], "now shall be my sister not my wife e": [0, 65535], "shall be my sister not my wife e d": [0, 65535], "be my sister not my wife e d me": [0, 65535], "my sister not my wife e d me thinks": [0, 65535], "sister not my wife e d me thinks you": [0, 65535], "not my wife e d me thinks you are": [0, 65535], "my wife e d me thinks you are my": [0, 65535], "wife e d me thinks you are my glasse": [0, 65535], "e d me thinks you are my glasse not": [0, 65535], "d me thinks you are my glasse not my": [0, 65535], "me thinks you are my glasse not my brother": [0, 65535], "thinks you are my glasse not my brother i": [0, 65535], "you are my glasse not my brother i see": [0, 65535], "are my glasse not my brother i see by": [0, 65535], "my glasse not my brother i see by you": [0, 65535], "glasse not my brother i see by you i": [0, 65535], "not my brother i see by you i am": [0, 65535], "my brother i see by you i am a": [0, 65535], "brother i see by you i am a sweet": [0, 65535], "i see by you i am a sweet fac'd": [0, 65535], "see by you i am a sweet fac'd youth": [0, 65535], "by you i am a sweet fac'd youth will": [0, 65535], "you i am a sweet fac'd youth will you": [0, 65535], "i am a sweet fac'd youth will you walke": [0, 65535], "am a sweet fac'd youth will you walke in": [0, 65535], "a sweet fac'd youth will you walke in to": [0, 65535], "sweet fac'd youth will you walke in to see": [0, 65535], "fac'd youth will you walke in to see their": [0, 65535], "youth will you walke in to see their gossipping": [0, 65535], "will you walke in to see their gossipping s": [0, 65535], "you walke in to see their gossipping s dro": [0, 65535], "walke in to see their gossipping s dro not": [0, 65535], "in to see their gossipping s dro not i": [0, 65535], "to see their gossipping s dro not i sir": [0, 65535], "see their gossipping s dro not i sir you": [0, 65535], "their gossipping s dro not i sir you are": [0, 65535], "gossipping s dro not i sir you are my": [0, 65535], "s dro not i sir you are my elder": [0, 65535], "dro not i sir you are my elder e": [0, 65535], "not i sir you are my elder e dro": [0, 65535], "i sir you are my elder e dro that's": [0, 65535], "sir you are my elder e dro that's a": [0, 65535], "you are my elder e dro that's a question": [0, 65535], "are my elder e dro that's a question how": [0, 65535], "my elder e dro that's a question how shall": [0, 65535], "elder e dro that's a question how shall we": [0, 65535], "e dro that's a question how shall we trie": [0, 65535], "dro that's a question how shall we trie it": [0, 65535], "that's a question how shall we trie it s": [0, 65535], "a question how shall we trie it s dro": [0, 65535], "question how shall we trie it s dro wee'l": [0, 65535], "how shall we trie it s dro wee'l draw": [0, 65535], "shall we trie it s dro wee'l draw cuts": [0, 65535], "we trie it s dro wee'l draw cuts for": [0, 65535], "trie it s dro wee'l draw cuts for the": [0, 65535], "it s dro wee'l draw cuts for the signior": [0, 65535], "s dro wee'l draw cuts for the signior till": [0, 65535], "dro wee'l draw cuts for the signior till then": [0, 65535], "wee'l draw cuts for the signior till then lead": [0, 65535], "draw cuts for the signior till then lead thou": [0, 65535], "cuts for the signior till then lead thou first": [0, 65535], "for the signior till then lead thou first e": [0, 65535], "the signior till then lead thou first e dro": [0, 65535], "signior till then lead thou first e dro nay": [0, 65535], "till then lead thou first e dro nay then": [0, 65535], "then lead thou first e dro nay then thus": [0, 65535], "lead thou first e dro nay then thus we": [0, 65535], "thou first e dro nay then thus we came": [0, 65535], "first e dro nay then thus we came into": [0, 65535], "e dro nay then thus we came into the": [0, 65535], "dro nay then thus we came into the world": [0, 65535], "nay then thus we came into the world like": [0, 65535], "then thus we came into the world like brother": [0, 65535], "thus we came into the world like brother and": [0, 65535], "we came into the world like brother and brother": [0, 65535], "came into the world like brother and brother and": [0, 65535], "into the world like brother and brother and now": [0, 65535], "the world like brother and brother and now let's": [0, 65535], "world like brother and brother and now let's go": [0, 65535], "like brother and brother and now let's go hand": [0, 65535], "brother and brother and now let's go hand in": [0, 65535], "and brother and now let's go hand in hand": [0, 65535], "brother and now let's go hand in hand not": [0, 65535], "and now let's go hand in hand not one": [0, 65535], "now let's go hand in hand not one before": [0, 65535], "let's go hand in hand not one before another": [0, 65535], "go hand in hand not one before another exeunt": [0, 65535], "hand in hand not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant and the goldsmith": [0, 65535], "quintus sc\u0153na prima enter the merchant and the goldsmith gold": [0, 65535], "sc\u0153na prima enter the merchant and the goldsmith gold i": [0, 65535], "prima enter the merchant and the goldsmith gold i am": [0, 65535], "enter the merchant and the goldsmith gold i am sorry": [0, 65535], "the merchant and the goldsmith gold i am sorry sir": [0, 65535], "merchant and the goldsmith gold i am sorry sir that": [0, 65535], "and the goldsmith gold i am sorry sir that i": [0, 65535], "the goldsmith gold i am sorry sir that i haue": [0, 65535], "goldsmith gold i am sorry sir that i haue hindred": [0, 65535], "gold i am sorry sir that i haue hindred you": [0, 65535], "i am sorry sir that i haue hindred you but": [0, 65535], "am sorry sir that i haue hindred you but i": [0, 65535], "sorry sir that i haue hindred you but i protest": [0, 65535], "sir that i haue hindred you but i protest he": [0, 65535], "that i haue hindred you but i protest he had": [0, 65535], "i haue hindred you but i protest he had the": [0, 65535], "haue hindred you but i protest he had the chaine": [0, 65535], "hindred you but i protest he had the chaine of": [0, 65535], "you but i protest he had the chaine of me": [0, 65535], "but i protest he had the chaine of me though": [0, 65535], "i protest he had the chaine of me though most": [0, 65535], "protest he had the chaine of me though most dishonestly": [0, 65535], "he had the chaine of me though most dishonestly he": [0, 65535], "had the chaine of me though most dishonestly he doth": [0, 65535], "the chaine of me though most dishonestly he doth denie": [0, 65535], "chaine of me though most dishonestly he doth denie it": [0, 65535], "of me though most dishonestly he doth denie it mar": [0, 65535], "me though most dishonestly he doth denie it mar how": [0, 65535], "though most dishonestly he doth denie it mar how is": [0, 65535], "most dishonestly he doth denie it mar how is the": [0, 65535], "dishonestly he doth denie it mar how is the man": [0, 65535], "he doth denie it mar how is the man esteem'd": [0, 65535], "doth denie it mar how is the man esteem'd heere": [0, 65535], "denie it mar how is the man esteem'd heere in": [0, 65535], "it mar how is the man esteem'd heere in the": [0, 65535], "mar how is the man esteem'd heere in the citie": [0, 65535], "how is the man esteem'd heere in the citie gold": [0, 65535], "is the man esteem'd heere in the citie gold of": [0, 65535], "the man esteem'd heere in the citie gold of very": [0, 65535], "man esteem'd heere in the citie gold of very reuerent": [0, 65535], "esteem'd heere in the citie gold of very reuerent reputation": [0, 65535], "heere in the citie gold of very reuerent reputation sir": [0, 65535], "in the citie gold of very reuerent reputation sir of": [0, 65535], "the citie gold of very reuerent reputation sir of credit": [0, 65535], "citie gold of very reuerent reputation sir of credit infinite": [0, 65535], "gold of very reuerent reputation sir of credit infinite highly": [0, 65535], "of very reuerent reputation sir of credit infinite highly belou'd": [0, 65535], "very reuerent reputation sir of credit infinite highly belou'd second": [0, 65535], "reuerent reputation sir of credit infinite highly belou'd second to": [0, 65535], "reputation sir of credit infinite highly belou'd second to none": [0, 65535], "sir of credit infinite highly belou'd second to none that": [0, 65535], "of credit infinite highly belou'd second to none that liues": [0, 65535], "credit infinite highly belou'd second to none that liues heere": [0, 65535], "infinite highly belou'd second to none that liues heere in": [0, 65535], "highly belou'd second to none that liues heere in the": [0, 65535], "belou'd second to none that liues heere in the citie": [0, 65535], "second to none that liues heere in the citie his": [0, 65535], "to none that liues heere in the citie his word": [0, 65535], "none that liues heere in the citie his word might": [0, 65535], "that liues heere in the citie his word might beare": [0, 65535], "liues heere in the citie his word might beare my": [0, 65535], "heere in the citie his word might beare my wealth": [0, 65535], "in the citie his word might beare my wealth at": [0, 65535], "the citie his word might beare my wealth at any": [0, 65535], "citie his word might beare my wealth at any time": [0, 65535], "his word might beare my wealth at any time mar": [0, 65535], "word might beare my wealth at any time mar speake": [0, 65535], "might beare my wealth at any time mar speake softly": [0, 65535], "beare my wealth at any time mar speake softly yonder": [0, 65535], "my wealth at any time mar speake softly yonder as": [0, 65535], "wealth at any time mar speake softly yonder as i": [0, 65535], "at any time mar speake softly yonder as i thinke": [0, 65535], "any time mar speake softly yonder as i thinke he": [0, 65535], "time mar speake softly yonder as i thinke he walkes": [0, 65535], "mar speake softly yonder as i thinke he walkes enter": [0, 65535], "speake softly yonder as i thinke he walkes enter antipholus": [0, 65535], "softly yonder as i thinke he walkes enter antipholus and": [0, 65535], "yonder as i thinke he walkes enter antipholus and dromio": [0, 65535], "as i thinke he walkes enter antipholus and dromio againe": [0, 65535], "i thinke he walkes enter antipholus and dromio againe gold": [0, 65535], "thinke he walkes enter antipholus and dromio againe gold 'tis": [0, 65535], "he walkes enter antipholus and dromio againe gold 'tis so": [0, 65535], "walkes enter antipholus and dromio againe gold 'tis so and": [0, 65535], "enter antipholus and dromio againe gold 'tis so and that": [0, 65535], "antipholus and dromio againe gold 'tis so and that selfe": [0, 65535], "and dromio againe gold 'tis so and that selfe chaine": [0, 65535], "dromio againe gold 'tis so and that selfe chaine about": [0, 65535], "againe gold 'tis so and that selfe chaine about his": [0, 65535], "gold 'tis so and that selfe chaine about his necke": [0, 65535], "'tis so and that selfe chaine about his necke which": [0, 65535], "so and that selfe chaine about his necke which he": [0, 65535], "and that selfe chaine about his necke which he forswore": [0, 65535], "that selfe chaine about his necke which he forswore most": [0, 65535], "selfe chaine about his necke which he forswore most monstrously": [0, 65535], "chaine about his necke which he forswore most monstrously to": [0, 65535], "about his necke which he forswore most monstrously to haue": [0, 65535], "his necke which he forswore most monstrously to haue good": [0, 65535], "necke which he forswore most monstrously to haue good sir": [0, 65535], "which he forswore most monstrously to haue good sir draw": [0, 65535], "he forswore most monstrously to haue good sir draw neere": [0, 65535], "forswore most monstrously to haue good sir draw neere to": [0, 65535], "most monstrously to haue good sir draw neere to me": [0, 65535], "monstrously to haue good sir draw neere to me ile": [0, 65535], "to haue good sir draw neere to me ile speake": [0, 65535], "haue good sir draw neere to me ile speake to": [0, 65535], "good sir draw neere to me ile speake to him": [0, 65535], "sir draw neere to me ile speake to him signior": [0, 65535], "draw neere to me ile speake to him signior antipholus": [0, 65535], "neere to me ile speake to him signior antipholus i": [0, 65535], "to me ile speake to him signior antipholus i wonder": [0, 65535], "me ile speake to him signior antipholus i wonder much": [0, 65535], "ile speake to him signior antipholus i wonder much that": [0, 65535], "speake to him signior antipholus i wonder much that you": [0, 65535], "to him signior antipholus i wonder much that you would": [0, 65535], "him signior antipholus i wonder much that you would put": [0, 65535], "signior antipholus i wonder much that you would put me": [0, 65535], "antipholus i wonder much that you would put me to": [0, 65535], "i wonder much that you would put me to this": [0, 65535], "wonder much that you would put me to this shame": [0, 65535], "much that you would put me to this shame and": [0, 65535], "that you would put me to this shame and trouble": [0, 65535], "you would put me to this shame and trouble and": [0, 65535], "would put me to this shame and trouble and not": [0, 65535], "put me to this shame and trouble and not without": [0, 65535], "me to this shame and trouble and not without some": [0, 65535], "to this shame and trouble and not without some scandall": [0, 65535], "this shame and trouble and not without some scandall to": [0, 65535], "shame and trouble and not without some scandall to your": [0, 65535], "and trouble and not without some scandall to your selfe": [0, 65535], "trouble and not without some scandall to your selfe with": [0, 65535], "and not without some scandall to your selfe with circumstance": [0, 65535], "not without some scandall to your selfe with circumstance and": [0, 65535], "without some scandall to your selfe with circumstance and oaths": [0, 65535], "some scandall to your selfe with circumstance and oaths so": [0, 65535], "scandall to your selfe with circumstance and oaths so to": [0, 65535], "to your selfe with circumstance and oaths so to denie": [0, 65535], "your selfe with circumstance and oaths so to denie this": [0, 65535], "selfe with circumstance and oaths so to denie this chaine": [0, 65535], "with circumstance and oaths so to denie this chaine which": [0, 65535], "circumstance and oaths so to denie this chaine which now": [0, 65535], "and oaths so to denie this chaine which now you": [0, 65535], "oaths so to denie this chaine which now you weare": [0, 65535], "so to denie this chaine which now you weare so": [0, 65535], "to denie this chaine which now you weare so openly": [0, 65535], "denie this chaine which now you weare so openly beside": [0, 65535], "this chaine which now you weare so openly beside the": [0, 65535], "chaine which now you weare so openly beside the charge": [0, 65535], "which now you weare so openly beside the charge the": [0, 65535], "now you weare so openly beside the charge the shame": [0, 65535], "you weare so openly beside the charge the shame imprisonment": [0, 65535], "weare so openly beside the charge the shame imprisonment you": [0, 65535], "so openly beside the charge the shame imprisonment you haue": [0, 65535], "openly beside the charge the shame imprisonment you haue done": [0, 65535], "beside the charge the shame imprisonment you haue done wrong": [0, 65535], "the charge the shame imprisonment you haue done wrong to": [0, 65535], "charge the shame imprisonment you haue done wrong to this": [0, 65535], "the shame imprisonment you haue done wrong to this my": [0, 65535], "shame imprisonment you haue done wrong to this my honest": [0, 65535], "imprisonment you haue done wrong to this my honest friend": [0, 65535], "you haue done wrong to this my honest friend who": [0, 65535], "haue done wrong to this my honest friend who but": [0, 65535], "done wrong to this my honest friend who but for": [0, 65535], "wrong to this my honest friend who but for staying": [0, 65535], "to this my honest friend who but for staying on": [0, 65535], "this my honest friend who but for staying on our": [0, 65535], "my honest friend who but for staying on our controuersie": [0, 65535], "honest friend who but for staying on our controuersie had": [0, 65535], "friend who but for staying on our controuersie had hoisted": [0, 65535], "who but for staying on our controuersie had hoisted saile": [0, 65535], "but for staying on our controuersie had hoisted saile and": [0, 65535], "for staying on our controuersie had hoisted saile and put": [0, 65535], "staying on our controuersie had hoisted saile and put to": [0, 65535], "on our controuersie had hoisted saile and put to sea": [0, 65535], "our controuersie had hoisted saile and put to sea to": [0, 65535], "controuersie had hoisted saile and put to sea to day": [0, 65535], "had hoisted saile and put to sea to day this": [0, 65535], "hoisted saile and put to sea to day this chaine": [0, 65535], "saile and put to sea to day this chaine you": [0, 65535], "and put to sea to day this chaine you had": [0, 65535], "put to sea to day this chaine you had of": [0, 65535], "to sea to day this chaine you had of me": [0, 65535], "sea to day this chaine you had of me can": [0, 65535], "to day this chaine you had of me can you": [0, 65535], "day this chaine you had of me can you deny": [0, 65535], "this chaine you had of me can you deny it": [0, 65535], "chaine you had of me can you deny it ant": [0, 65535], "you had of me can you deny it ant i": [0, 65535], "had of me can you deny it ant i thinke": [0, 65535], "of me can you deny it ant i thinke i": [0, 65535], "me can you deny it ant i thinke i had": [0, 65535], "can you deny it ant i thinke i had i": [0, 65535], "you deny it ant i thinke i had i neuer": [0, 65535], "deny it ant i thinke i had i neuer did": [0, 65535], "it ant i thinke i had i neuer did deny": [0, 65535], "ant i thinke i had i neuer did deny it": [0, 65535], "i thinke i had i neuer did deny it mar": [0, 65535], "thinke i had i neuer did deny it mar yes": [0, 65535], "i had i neuer did deny it mar yes that": [0, 65535], "had i neuer did deny it mar yes that you": [0, 65535], "i neuer did deny it mar yes that you did": [0, 65535], "neuer did deny it mar yes that you did sir": [0, 65535], "did deny it mar yes that you did sir and": [0, 65535], "deny it mar yes that you did sir and forswore": [0, 65535], "it mar yes that you did sir and forswore it": [0, 65535], "mar yes that you did sir and forswore it too": [0, 65535], "yes that you did sir and forswore it too ant": [0, 65535], "that you did sir and forswore it too ant who": [0, 65535], "you did sir and forswore it too ant who heard": [0, 65535], "did sir and forswore it too ant who heard me": [0, 65535], "sir and forswore it too ant who heard me to": [0, 65535], "and forswore it too ant who heard me to denie": [0, 65535], "forswore it too ant who heard me to denie it": [0, 65535], "it too ant who heard me to denie it or": [0, 65535], "too ant who heard me to denie it or forsweare": [0, 65535], "ant who heard me to denie it or forsweare it": [0, 65535], "who heard me to denie it or forsweare it mar": [0, 65535], "heard me to denie it or forsweare it mar these": [0, 65535], "me to denie it or forsweare it mar these eares": [0, 65535], "to denie it or forsweare it mar these eares of": [0, 65535], "denie it or forsweare it mar these eares of mine": [0, 65535], "it or forsweare it mar these eares of mine thou": [0, 65535], "or forsweare it mar these eares of mine thou knowst": [0, 65535], "forsweare it mar these eares of mine thou knowst did": [0, 65535], "it mar these eares of mine thou knowst did hear": [0, 65535], "mar these eares of mine thou knowst did hear thee": [0, 65535], "these eares of mine thou knowst did hear thee fie": [0, 65535], "eares of mine thou knowst did hear thee fie on": [0, 65535], "of mine thou knowst did hear thee fie on thee": [0, 65535], "mine thou knowst did hear thee fie on thee wretch": [0, 65535], "thou knowst did hear thee fie on thee wretch 'tis": [0, 65535], "knowst did hear thee fie on thee wretch 'tis pitty": [0, 65535], "did hear thee fie on thee wretch 'tis pitty that": [0, 65535], "hear thee fie on thee wretch 'tis pitty that thou": [0, 65535], "thee fie on thee wretch 'tis pitty that thou liu'st": [0, 65535], "fie on thee wretch 'tis pitty that thou liu'st to": [0, 65535], "on thee wretch 'tis pitty that thou liu'st to walke": [0, 65535], "thee wretch 'tis pitty that thou liu'st to walke where": [0, 65535], "wretch 'tis pitty that thou liu'st to walke where any": [0, 65535], "'tis pitty that thou liu'st to walke where any honest": [0, 65535], "pitty that thou liu'st to walke where any honest men": [0, 65535], "that thou liu'st to walke where any honest men resort": [0, 65535], "thou liu'st to walke where any honest men resort ant": [0, 65535], "liu'st to walke where any honest men resort ant thou": [0, 65535], "to walke where any honest men resort ant thou art": [0, 65535], "walke where any honest men resort ant thou art a": [0, 65535], "where any honest men resort ant thou art a villaine": [0, 65535], "any honest men resort ant thou art a villaine to": [0, 65535], "honest men resort ant thou art a villaine to impeach": [0, 65535], "men resort ant thou art a villaine to impeach me": [0, 65535], "resort ant thou art a villaine to impeach me thus": [0, 65535], "ant thou art a villaine to impeach me thus ile": [0, 65535], "thou art a villaine to impeach me thus ile proue": [0, 65535], "art a villaine to impeach me thus ile proue mine": [0, 65535], "a villaine to impeach me thus ile proue mine honor": [0, 65535], "villaine to impeach me thus ile proue mine honor and": [0, 65535], "to impeach me thus ile proue mine honor and mine": [0, 65535], "impeach me thus ile proue mine honor and mine honestie": [0, 65535], "me thus ile proue mine honor and mine honestie against": [0, 65535], "thus ile proue mine honor and mine honestie against thee": [0, 65535], "ile proue mine honor and mine honestie against thee presently": [0, 65535], "proue mine honor and mine honestie against thee presently if": [0, 65535], "mine honor and mine honestie against thee presently if thou": [0, 65535], "honor and mine honestie against thee presently if thou dar'st": [0, 65535], "and mine honestie against thee presently if thou dar'st stand": [0, 65535], "mine honestie against thee presently if thou dar'st stand mar": [0, 65535], "honestie against thee presently if thou dar'st stand mar i": [0, 65535], "against thee presently if thou dar'st stand mar i dare": [0, 65535], "thee presently if thou dar'st stand mar i dare and": [0, 65535], "presently if thou dar'st stand mar i dare and do": [0, 65535], "if thou dar'st stand mar i dare and do defie": [0, 65535], "thou dar'st stand mar i dare and do defie thee": [0, 65535], "dar'st stand mar i dare and do defie thee for": [0, 65535], "stand mar i dare and do defie thee for a": [0, 65535], "mar i dare and do defie thee for a villaine": [0, 65535], "i dare and do defie thee for a villaine they": [0, 65535], "dare and do defie thee for a villaine they draw": [0, 65535], "and do defie thee for a villaine they draw enter": [0, 65535], "do defie thee for a villaine they draw enter adriana": [0, 65535], "defie thee for a villaine they draw enter adriana luciana": [0, 65535], "thee for a villaine they draw enter adriana luciana courtezan": [0, 65535], "for a villaine they draw enter adriana luciana courtezan others": [0, 65535], "a villaine they draw enter adriana luciana courtezan others adr": [0, 65535], "villaine they draw enter adriana luciana courtezan others adr hold": [0, 65535], "they draw enter adriana luciana courtezan others adr hold hurt": [0, 65535], "draw enter adriana luciana courtezan others adr hold hurt him": [0, 65535], "enter adriana luciana courtezan others adr hold hurt him not": [0, 65535], "adriana luciana courtezan others adr hold hurt him not for": [0, 65535], "luciana courtezan others adr hold hurt him not for god": [0, 65535], "courtezan others adr hold hurt him not for god sake": [0, 65535], "others adr hold hurt him not for god sake he": [0, 65535], "adr hold hurt him not for god sake he is": [0, 65535], "hold hurt him not for god sake he is mad": [0, 65535], "hurt him not for god sake he is mad some": [0, 65535], "him not for god sake he is mad some get": [0, 65535], "not for god sake he is mad some get within": [0, 65535], "for god sake he is mad some get within him": [0, 65535], "god sake he is mad some get within him take": [0, 65535], "sake he is mad some get within him take his": [0, 65535], "he is mad some get within him take his sword": [0, 65535], "is mad some get within him take his sword away": [0, 65535], "mad some get within him take his sword away binde": [0, 65535], "some get within him take his sword away binde dromio": [0, 65535], "get within him take his sword away binde dromio too": [0, 65535], "within him take his sword away binde dromio too and": [0, 65535], "him take his sword away binde dromio too and beare": [0, 65535], "take his sword away binde dromio too and beare them": [0, 65535], "his sword away binde dromio too and beare them to": [0, 65535], "sword away binde dromio too and beare them to my": [0, 65535], "away binde dromio too and beare them to my house": [0, 65535], "binde dromio too and beare them to my house s": [0, 65535], "dromio too and beare them to my house s dro": [0, 65535], "too and beare them to my house s dro runne": [0, 65535], "and beare them to my house s dro runne master": [0, 65535], "beare them to my house s dro runne master run": [0, 65535], "them to my house s dro runne master run for": [0, 65535], "to my house s dro runne master run for gods": [0, 65535], "my house s dro runne master run for gods sake": [0, 65535], "house s dro runne master run for gods sake take": [0, 65535], "s dro runne master run for gods sake take a": [0, 65535], "dro runne master run for gods sake take a house": [0, 65535], "runne master run for gods sake take a house this": [0, 65535], "master run for gods sake take a house this is": [0, 65535], "run for gods sake take a house this is some": [0, 65535], "for gods sake take a house this is some priorie": [0, 65535], "gods sake take a house this is some priorie in": [0, 65535], "sake take a house this is some priorie in or": [0, 65535], "take a house this is some priorie in or we": [0, 65535], "a house this is some priorie in or we are": [0, 65535], "house this is some priorie in or we are spoyl'd": [0, 65535], "this is some priorie in or we are spoyl'd exeunt": [0, 65535], "is some priorie in or we are spoyl'd exeunt to": [0, 65535], "some priorie in or we are spoyl'd exeunt to the": [0, 65535], "priorie in or we are spoyl'd exeunt to the priorie": [0, 65535], "in or we are spoyl'd exeunt to the priorie enter": [0, 65535], "or we are spoyl'd exeunt to the priorie enter ladie": [0, 65535], "we are spoyl'd exeunt to the priorie enter ladie abbesse": [0, 65535], "are spoyl'd exeunt to the priorie enter ladie abbesse ab": [0, 65535], "spoyl'd exeunt to the priorie enter ladie abbesse ab be": [0, 65535], "exeunt to the priorie enter ladie abbesse ab be quiet": [0, 65535], "to the priorie enter ladie abbesse ab be quiet people": [0, 65535], "the priorie enter ladie abbesse ab be quiet people wherefore": [0, 65535], "priorie enter ladie abbesse ab be quiet people wherefore throng": [0, 65535], "enter ladie abbesse ab be quiet people wherefore throng you": [0, 65535], "ladie abbesse ab be quiet people wherefore throng you hither": [0, 65535], "abbesse ab be quiet people wherefore throng you hither adr": [0, 65535], "ab be quiet people wherefore throng you hither adr to": [0, 65535], "be quiet people wherefore throng you hither adr to fetch": [0, 65535], "quiet people wherefore throng you hither adr to fetch my": [0, 65535], "people wherefore throng you hither adr to fetch my poore": [0, 65535], "wherefore throng you hither adr to fetch my poore distracted": [0, 65535], "throng you hither adr to fetch my poore distracted husband": [0, 65535], "you hither adr to fetch my poore distracted husband hence": [0, 65535], "hither adr to fetch my poore distracted husband hence let": [0, 65535], "adr to fetch my poore distracted husband hence let vs": [0, 65535], "to fetch my poore distracted husband hence let vs come": [0, 65535], "fetch my poore distracted husband hence let vs come in": [0, 65535], "my poore distracted husband hence let vs come in that": [0, 65535], "poore distracted husband hence let vs come in that we": [0, 65535], "distracted husband hence let vs come in that we may": [0, 65535], "husband hence let vs come in that we may binde": [0, 65535], "hence let vs come in that we may binde him": [0, 65535], "let vs come in that we may binde him fast": [0, 65535], "vs come in that we may binde him fast and": [0, 65535], "come in that we may binde him fast and beare": [0, 65535], "in that we may binde him fast and beare him": [0, 65535], "that we may binde him fast and beare him home": [0, 65535], "we may binde him fast and beare him home for": [0, 65535], "may binde him fast and beare him home for his": [0, 65535], "binde him fast and beare him home for his recouerie": [0, 65535], "him fast and beare him home for his recouerie gold": [0, 65535], "fast and beare him home for his recouerie gold i": [0, 65535], "and beare him home for his recouerie gold i knew": [0, 65535], "beare him home for his recouerie gold i knew he": [0, 65535], "him home for his recouerie gold i knew he was": [0, 65535], "home for his recouerie gold i knew he was not": [0, 65535], "for his recouerie gold i knew he was not in": [0, 65535], "his recouerie gold i knew he was not in his": [0, 65535], "recouerie gold i knew he was not in his perfect": [0, 65535], "gold i knew he was not in his perfect wits": [0, 65535], "i knew he was not in his perfect wits mar": [0, 65535], "knew he was not in his perfect wits mar i": [0, 65535], "he was not in his perfect wits mar i am": [0, 65535], "was not in his perfect wits mar i am sorry": [0, 65535], "not in his perfect wits mar i am sorry now": [0, 65535], "in his perfect wits mar i am sorry now that": [0, 65535], "his perfect wits mar i am sorry now that i": [0, 65535], "perfect wits mar i am sorry now that i did": [0, 65535], "wits mar i am sorry now that i did draw": [0, 65535], "mar i am sorry now that i did draw on": [0, 65535], "i am sorry now that i did draw on him": [0, 65535], "am sorry now that i did draw on him ab": [0, 65535], "sorry now that i did draw on him ab how": [0, 65535], "now that i did draw on him ab how long": [0, 65535], "that i did draw on him ab how long hath": [0, 65535], "i did draw on him ab how long hath this": [0, 65535], "did draw on him ab how long hath this possession": [0, 65535], "draw on him ab how long hath this possession held": [0, 65535], "on him ab how long hath this possession held the": [0, 65535], "him ab how long hath this possession held the man": [0, 65535], "ab how long hath this possession held the man adr": [0, 65535], "how long hath this possession held the man adr this": [0, 65535], "long hath this possession held the man adr this weeke": [0, 65535], "hath this possession held the man adr this weeke he": [0, 65535], "this possession held the man adr this weeke he hath": [0, 65535], "possession held the man adr this weeke he hath beene": [0, 65535], "held the man adr this weeke he hath beene heauie": [0, 65535], "the man adr this weeke he hath beene heauie sower": [0, 65535], "man adr this weeke he hath beene heauie sower sad": [0, 65535], "adr this weeke he hath beene heauie sower sad and": [0, 65535], "this weeke he hath beene heauie sower sad and much": [0, 65535], "weeke he hath beene heauie sower sad and much different": [0, 65535], "he hath beene heauie sower sad and much different from": [0, 65535], "hath beene heauie sower sad and much different from the": [0, 65535], "beene heauie sower sad and much different from the man": [0, 65535], "heauie sower sad and much different from the man he": [0, 65535], "sower sad and much different from the man he was": [0, 65535], "sad and much different from the man he was but": [0, 65535], "and much different from the man he was but till": [0, 65535], "much different from the man he was but till this": [0, 65535], "different from the man he was but till this afternoone": [0, 65535], "from the man he was but till this afternoone his": [0, 65535], "the man he was but till this afternoone his passion": [0, 65535], "man he was but till this afternoone his passion ne're": [0, 65535], "he was but till this afternoone his passion ne're brake": [0, 65535], "was but till this afternoone his passion ne're brake into": [0, 65535], "but till this afternoone his passion ne're brake into extremity": [0, 65535], "till this afternoone his passion ne're brake into extremity of": [0, 65535], "this afternoone his passion ne're brake into extremity of rage": [0, 65535], "afternoone his passion ne're brake into extremity of rage ab": [0, 65535], "his passion ne're brake into extremity of rage ab hath": [0, 65535], "passion ne're brake into extremity of rage ab hath he": [0, 65535], "ne're brake into extremity of rage ab hath he not": [0, 65535], "brake into extremity of rage ab hath he not lost": [0, 65535], "into extremity of rage ab hath he not lost much": [0, 65535], "extremity of rage ab hath he not lost much wealth": [0, 65535], "of rage ab hath he not lost much wealth by": [0, 65535], "rage ab hath he not lost much wealth by wrack": [0, 65535], "ab hath he not lost much wealth by wrack of": [0, 65535], "hath he not lost much wealth by wrack of sea": [0, 65535], "he not lost much wealth by wrack of sea buried": [0, 65535], "not lost much wealth by wrack of sea buried some": [0, 65535], "lost much wealth by wrack of sea buried some deere": [0, 65535], "much wealth by wrack of sea buried some deere friend": [0, 65535], "wealth by wrack of sea buried some deere friend hath": [0, 65535], "by wrack of sea buried some deere friend hath not": [0, 65535], "wrack of sea buried some deere friend hath not else": [0, 65535], "of sea buried some deere friend hath not else his": [0, 65535], "sea buried some deere friend hath not else his eye": [0, 65535], "buried some deere friend hath not else his eye stray'd": [0, 65535], "some deere friend hath not else his eye stray'd his": [0, 65535], "deere friend hath not else his eye stray'd his affection": [0, 65535], "friend hath not else his eye stray'd his affection in": [0, 65535], "hath not else his eye stray'd his affection in vnlawfull": [0, 65535], "not else his eye stray'd his affection in vnlawfull loue": [0, 65535], "else his eye stray'd his affection in vnlawfull loue a": [0, 65535], "his eye stray'd his affection in vnlawfull loue a sinne": [0, 65535], "eye stray'd his affection in vnlawfull loue a sinne preuailing": [0, 65535], "stray'd his affection in vnlawfull loue a sinne preuailing much": [0, 65535], "his affection in vnlawfull loue a sinne preuailing much in": [0, 65535], "affection in vnlawfull loue a sinne preuailing much in youthfull": [0, 65535], "in vnlawfull loue a sinne preuailing much in youthfull men": [0, 65535], "vnlawfull loue a sinne preuailing much in youthfull men who": [0, 65535], "loue a sinne preuailing much in youthfull men who giue": [0, 65535], "a sinne preuailing much in youthfull men who giue their": [0, 65535], "sinne preuailing much in youthfull men who giue their eies": [0, 65535], "preuailing much in youthfull men who giue their eies the": [0, 65535], "much in youthfull men who giue their eies the liberty": [0, 65535], "in youthfull men who giue their eies the liberty of": [0, 65535], "youthfull men who giue their eies the liberty of gazing": [0, 65535], "men who giue their eies the liberty of gazing which": [0, 65535], "who giue their eies the liberty of gazing which of": [0, 65535], "giue their eies the liberty of gazing which of these": [0, 65535], "their eies the liberty of gazing which of these sorrowes": [0, 65535], "eies the liberty of gazing which of these sorrowes is": [0, 65535], "the liberty of gazing which of these sorrowes is he": [0, 65535], "liberty of gazing which of these sorrowes is he subiect": [0, 65535], "of gazing which of these sorrowes is he subiect too": [0, 65535], "gazing which of these sorrowes is he subiect too adr": [0, 65535], "which of these sorrowes is he subiect too adr to": [0, 65535], "of these sorrowes is he subiect too adr to none": [0, 65535], "these sorrowes is he subiect too adr to none of": [0, 65535], "sorrowes is he subiect too adr to none of these": [0, 65535], "is he subiect too adr to none of these except": [0, 65535], "he subiect too adr to none of these except it": [0, 65535], "subiect too adr to none of these except it be": [0, 65535], "too adr to none of these except it be the": [0, 65535], "adr to none of these except it be the last": [0, 65535], "to none of these except it be the last namely": [0, 65535], "none of these except it be the last namely some": [0, 65535], "of these except it be the last namely some loue": [0, 65535], "these except it be the last namely some loue that": [0, 65535], "except it be the last namely some loue that drew": [0, 65535], "it be the last namely some loue that drew him": [0, 65535], "be the last namely some loue that drew him oft": [0, 65535], "the last namely some loue that drew him oft from": [0, 65535], "last namely some loue that drew him oft from home": [0, 65535], "namely some loue that drew him oft from home ab": [0, 65535], "some loue that drew him oft from home ab you": [0, 65535], "loue that drew him oft from home ab you should": [0, 65535], "that drew him oft from home ab you should for": [0, 65535], "drew him oft from home ab you should for that": [0, 65535], "him oft from home ab you should for that haue": [0, 65535], "oft from home ab you should for that haue reprehended": [0, 65535], "from home ab you should for that haue reprehended him": [0, 65535], "home ab you should for that haue reprehended him adr": [0, 65535], "ab you should for that haue reprehended him adr why": [0, 65535], "you should for that haue reprehended him adr why so": [0, 65535], "should for that haue reprehended him adr why so i": [0, 65535], "for that haue reprehended him adr why so i did": [0, 65535], "that haue reprehended him adr why so i did ab": [0, 65535], "haue reprehended him adr why so i did ab i": [0, 65535], "reprehended him adr why so i did ab i but": [0, 65535], "him adr why so i did ab i but not": [0, 65535], "adr why so i did ab i but not rough": [0, 65535], "why so i did ab i but not rough enough": [0, 65535], "so i did ab i but not rough enough adr": [0, 65535], "i did ab i but not rough enough adr as": [0, 65535], "did ab i but not rough enough adr as roughly": [0, 65535], "ab i but not rough enough adr as roughly as": [0, 65535], "i but not rough enough adr as roughly as my": [0, 65535], "but not rough enough adr as roughly as my modestie": [0, 65535], "not rough enough adr as roughly as my modestie would": [0, 65535], "rough enough adr as roughly as my modestie would let": [0, 65535], "enough adr as roughly as my modestie would let me": [0, 65535], "adr as roughly as my modestie would let me ab": [0, 65535], "as roughly as my modestie would let me ab haply": [0, 65535], "roughly as my modestie would let me ab haply in": [0, 65535], "as my modestie would let me ab haply in priuate": [0, 65535], "my modestie would let me ab haply in priuate adr": [0, 65535], "modestie would let me ab haply in priuate adr and": [0, 65535], "would let me ab haply in priuate adr and in": [0, 65535], "let me ab haply in priuate adr and in assemblies": [0, 65535], "me ab haply in priuate adr and in assemblies too": [0, 65535], "ab haply in priuate adr and in assemblies too ab": [0, 65535], "haply in priuate adr and in assemblies too ab i": [0, 65535], "in priuate adr and in assemblies too ab i but": [0, 65535], "priuate adr and in assemblies too ab i but not": [0, 65535], "adr and in assemblies too ab i but not enough": [0, 65535], "and in assemblies too ab i but not enough adr": [0, 65535], "in assemblies too ab i but not enough adr it": [0, 65535], "assemblies too ab i but not enough adr it was": [0, 65535], "too ab i but not enough adr it was the": [0, 65535], "ab i but not enough adr it was the copie": [0, 65535], "i but not enough adr it was the copie of": [0, 65535], "but not enough adr it was the copie of our": [0, 65535], "not enough adr it was the copie of our conference": [0, 65535], "enough adr it was the copie of our conference in": [0, 65535], "adr it was the copie of our conference in bed": [0, 65535], "it was the copie of our conference in bed he": [0, 65535], "was the copie of our conference in bed he slept": [0, 65535], "the copie of our conference in bed he slept not": [0, 65535], "copie of our conference in bed he slept not for": [0, 65535], "of our conference in bed he slept not for my": [0, 65535], "our conference in bed he slept not for my vrging": [0, 65535], "conference in bed he slept not for my vrging it": [0, 65535], "in bed he slept not for my vrging it at": [0, 65535], "bed he slept not for my vrging it at boord": [0, 65535], "he slept not for my vrging it at boord he": [0, 65535], "slept not for my vrging it at boord he fed": [0, 65535], "not for my vrging it at boord he fed not": [0, 65535], "for my vrging it at boord he fed not for": [0, 65535], "my vrging it at boord he fed not for my": [0, 65535], "vrging it at boord he fed not for my vrging": [0, 65535], "it at boord he fed not for my vrging it": [0, 65535], "at boord he fed not for my vrging it alone": [0, 65535], "boord he fed not for my vrging it alone it": [0, 65535], "he fed not for my vrging it alone it was": [0, 65535], "fed not for my vrging it alone it was the": [0, 65535], "not for my vrging it alone it was the subiect": [0, 65535], "for my vrging it alone it was the subiect of": [0, 65535], "my vrging it alone it was the subiect of my": [0, 65535], "vrging it alone it was the subiect of my theame": [0, 65535], "it alone it was the subiect of my theame in": [0, 65535], "alone it was the subiect of my theame in company": [0, 65535], "it was the subiect of my theame in company i": [0, 65535], "was the subiect of my theame in company i often": [0, 65535], "the subiect of my theame in company i often glanced": [0, 65535], "subiect of my theame in company i often glanced it": [0, 65535], "of my theame in company i often glanced it still": [0, 65535], "my theame in company i often glanced it still did": [0, 65535], "theame in company i often glanced it still did i": [0, 65535], "in company i often glanced it still did i tell": [0, 65535], "company i often glanced it still did i tell him": [0, 65535], "i often glanced it still did i tell him it": [0, 65535], "often glanced it still did i tell him it was": [0, 65535], "glanced it still did i tell him it was vilde": [0, 65535], "it still did i tell him it was vilde and": [0, 65535], "still did i tell him it was vilde and bad": [0, 65535], "did i tell him it was vilde and bad ab": [0, 65535], "i tell him it was vilde and bad ab and": [0, 65535], "tell him it was vilde and bad ab and thereof": [0, 65535], "him it was vilde and bad ab and thereof came": [0, 65535], "it was vilde and bad ab and thereof came it": [0, 65535], "was vilde and bad ab and thereof came it that": [0, 65535], "vilde and bad ab and thereof came it that the": [0, 65535], "and bad ab and thereof came it that the man": [0, 65535], "bad ab and thereof came it that the man was": [0, 65535], "ab and thereof came it that the man was mad": [0, 65535], "and thereof came it that the man was mad the": [0, 65535], "thereof came it that the man was mad the venome": [0, 65535], "came it that the man was mad the venome clamors": [0, 65535], "it that the man was mad the venome clamors of": [0, 65535], "that the man was mad the venome clamors of a": [0, 65535], "the man was mad the venome clamors of a iealous": [0, 65535], "man was mad the venome clamors of a iealous woman": [0, 65535], "was mad the venome clamors of a iealous woman poisons": [0, 65535], "mad the venome clamors of a iealous woman poisons more": [0, 65535], "the venome clamors of a iealous woman poisons more deadly": [0, 65535], "venome clamors of a iealous woman poisons more deadly then": [0, 65535], "clamors of a iealous woman poisons more deadly then a": [0, 65535], "of a iealous woman poisons more deadly then a mad": [0, 65535], "a iealous woman poisons more deadly then a mad dogges": [0, 65535], "iealous woman poisons more deadly then a mad dogges tooth": [0, 65535], "woman poisons more deadly then a mad dogges tooth it": [0, 65535], "poisons more deadly then a mad dogges tooth it seemes": [0, 65535], "more deadly then a mad dogges tooth it seemes his": [0, 65535], "deadly then a mad dogges tooth it seemes his sleepes": [0, 65535], "then a mad dogges tooth it seemes his sleepes were": [0, 65535], "a mad dogges tooth it seemes his sleepes were hindred": [0, 65535], "mad dogges tooth it seemes his sleepes were hindred by": [0, 65535], "dogges tooth it seemes his sleepes were hindred by thy": [0, 65535], "tooth it seemes his sleepes were hindred by thy railing": [0, 65535], "it seemes his sleepes were hindred by thy railing and": [0, 65535], "seemes his sleepes were hindred by thy railing and thereof": [0, 65535], "his sleepes were hindred by thy railing and thereof comes": [0, 65535], "sleepes were hindred by thy railing and thereof comes it": [0, 65535], "were hindred by thy railing and thereof comes it that": [0, 65535], "hindred by thy railing and thereof comes it that his": [0, 65535], "by thy railing and thereof comes it that his head": [0, 65535], "thy railing and thereof comes it that his head is": [0, 65535], "railing and thereof comes it that his head is light": [0, 65535], "and thereof comes it that his head is light thou": [0, 65535], "thereof comes it that his head is light thou saist": [0, 65535], "comes it that his head is light thou saist his": [0, 65535], "it that his head is light thou saist his meate": [0, 65535], "that his head is light thou saist his meate was": [0, 65535], "his head is light thou saist his meate was sawc'd": [0, 65535], "head is light thou saist his meate was sawc'd with": [0, 65535], "is light thou saist his meate was sawc'd with thy": [0, 65535], "light thou saist his meate was sawc'd with thy vpbraidings": [0, 65535], "thou saist his meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "saist his meate was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "his meate was sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet meales make ill": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "with thy vpbraidings vnquiet meales make ill digestions thereof the": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions thereof the raging": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof the raging fire": [0, 65535], "vnquiet meales make ill digestions thereof the raging fire of": [0, 65535], "meales make ill digestions thereof the raging fire of feauer": [0, 65535], "make ill digestions thereof the raging fire of feauer bred": [0, 65535], "ill digestions thereof the raging fire of feauer bred and": [0, 65535], "digestions thereof the raging fire of feauer bred and what's": [0, 65535], "thereof the raging fire of feauer bred and what's a": [0, 65535], "the raging fire of feauer bred and what's a feauer": [0, 65535], "raging fire of feauer bred and what's a feauer but": [0, 65535], "fire of feauer bred and what's a feauer but a": [0, 65535], "of feauer bred and what's a feauer but a fit": [0, 65535], "feauer bred and what's a feauer but a fit of": [0, 65535], "bred and what's a feauer but a fit of madnesse": [0, 65535], "and what's a feauer but a fit of madnesse thou": [0, 65535], "what's a feauer but a fit of madnesse thou sayest": [0, 65535], "a feauer but a fit of madnesse thou sayest his": [0, 65535], "feauer but a fit of madnesse thou sayest his sports": [0, 65535], "but a fit of madnesse thou sayest his sports were": [0, 65535], "a fit of madnesse thou sayest his sports were hindred": [0, 65535], "fit of madnesse thou sayest his sports were hindred by": [0, 65535], "of madnesse thou sayest his sports were hindred by thy": [0, 65535], "madnesse thou sayest his sports were hindred by thy bralles": [0, 65535], "thou sayest his sports were hindred by thy bralles sweet": [0, 65535], "sayest his sports were hindred by thy bralles sweet recreation": [0, 65535], "his sports were hindred by thy bralles sweet recreation barr'd": [0, 65535], "sports were hindred by thy bralles sweet recreation barr'd what": [0, 65535], "were hindred by thy bralles sweet recreation barr'd what doth": [0, 65535], "hindred by thy bralles sweet recreation barr'd what doth ensue": [0, 65535], "by thy bralles sweet recreation barr'd what doth ensue but": [0, 65535], "thy bralles sweet recreation barr'd what doth ensue but moodie": [0, 65535], "bralles sweet recreation barr'd what doth ensue but moodie and": [0, 65535], "sweet recreation barr'd what doth ensue but moodie and dull": [0, 65535], "recreation barr'd what doth ensue but moodie and dull melancholly": [0, 65535], "barr'd what doth ensue but moodie and dull melancholly kinsman": [0, 65535], "what doth ensue but moodie and dull melancholly kinsman to": [0, 65535], "doth ensue but moodie and dull melancholly kinsman to grim": [0, 65535], "ensue but moodie and dull melancholly kinsman to grim and": [0, 65535], "but moodie and dull melancholly kinsman to grim and comfortlesse": [0, 65535], "moodie and dull melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "and dull melancholly kinsman to grim and comfortlesse dispaire and": [0, 65535], "dull melancholly kinsman to grim and comfortlesse dispaire and at": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire and at her": [0, 65535], "kinsman to grim and comfortlesse dispaire and at her heeles": [0, 65535], "to grim and comfortlesse dispaire and at her heeles a": [0, 65535], "grim and comfortlesse dispaire and at her heeles a huge": [0, 65535], "and comfortlesse dispaire and at her heeles a huge infectious": [0, 65535], "comfortlesse dispaire and at her heeles a huge infectious troope": [0, 65535], "dispaire and at her heeles a huge infectious troope of": [0, 65535], "and at her heeles a huge infectious troope of pale": [0, 65535], "at her heeles a huge infectious troope of pale distemperatures": [0, 65535], "her heeles a huge infectious troope of pale distemperatures and": [0, 65535], "heeles a huge infectious troope of pale distemperatures and foes": [0, 65535], "a huge infectious troope of pale distemperatures and foes to": [0, 65535], "huge infectious troope of pale distemperatures and foes to life": [0, 65535], "infectious troope of pale distemperatures and foes to life in": [0, 65535], "troope of pale distemperatures and foes to life in food": [0, 65535], "of pale distemperatures and foes to life in food in": [0, 65535], "pale distemperatures and foes to life in food in sport": [0, 65535], "distemperatures and foes to life in food in sport and": [0, 65535], "and foes to life in food in sport and life": [0, 65535], "foes to life in food in sport and life preseruing": [0, 65535], "to life in food in sport and life preseruing rest": [0, 65535], "life in food in sport and life preseruing rest to": [0, 65535], "in food in sport and life preseruing rest to be": [0, 65535], "food in sport and life preseruing rest to be disturb'd": [0, 65535], "in sport and life preseruing rest to be disturb'd would": [0, 65535], "sport and life preseruing rest to be disturb'd would mad": [0, 65535], "and life preseruing rest to be disturb'd would mad or": [0, 65535], "life preseruing rest to be disturb'd would mad or man": [0, 65535], "preseruing rest to be disturb'd would mad or man or": [0, 65535], "rest to be disturb'd would mad or man or beast": [0, 65535], "to be disturb'd would mad or man or beast the": [0, 65535], "be disturb'd would mad or man or beast the consequence": [0, 65535], "disturb'd would mad or man or beast the consequence is": [0, 65535], "would mad or man or beast the consequence is then": [0, 65535], "mad or man or beast the consequence is then thy": [0, 65535], "or man or beast the consequence is then thy iealous": [0, 65535], "man or beast the consequence is then thy iealous fits": [0, 65535], "or beast the consequence is then thy iealous fits hath": [0, 65535], "beast the consequence is then thy iealous fits hath scar'd": [0, 65535], "the consequence is then thy iealous fits hath scar'd thy": [0, 65535], "consequence is then thy iealous fits hath scar'd thy husband": [0, 65535], "is then thy iealous fits hath scar'd thy husband from": [0, 65535], "then thy iealous fits hath scar'd thy husband from the": [0, 65535], "thy iealous fits hath scar'd thy husband from the vse": [0, 65535], "iealous fits hath scar'd thy husband from the vse of": [0, 65535], "fits hath scar'd thy husband from the vse of wits": [0, 65535], "hath scar'd thy husband from the vse of wits luc": [0, 65535], "scar'd thy husband from the vse of wits luc she": [0, 65535], "thy husband from the vse of wits luc she neuer": [0, 65535], "husband from the vse of wits luc she neuer reprehended": [0, 65535], "from the vse of wits luc she neuer reprehended him": [0, 65535], "the vse of wits luc she neuer reprehended him but": [0, 65535], "vse of wits luc she neuer reprehended him but mildely": [0, 65535], "of wits luc she neuer reprehended him but mildely when": [0, 65535], "wits luc she neuer reprehended him but mildely when he": [0, 65535], "luc she neuer reprehended him but mildely when he demean'd": [0, 65535], "she neuer reprehended him but mildely when he demean'd himselfe": [0, 65535], "neuer reprehended him but mildely when he demean'd himselfe rough": [0, 65535], "reprehended him but mildely when he demean'd himselfe rough rude": [0, 65535], "him but mildely when he demean'd himselfe rough rude and": [0, 65535], "but mildely when he demean'd himselfe rough rude and wildly": [0, 65535], "mildely when he demean'd himselfe rough rude and wildly why": [0, 65535], "when he demean'd himselfe rough rude and wildly why beare": [0, 65535], "he demean'd himselfe rough rude and wildly why beare you": [0, 65535], "demean'd himselfe rough rude and wildly why beare you these": [0, 65535], "himselfe rough rude and wildly why beare you these rebukes": [0, 65535], "rough rude and wildly why beare you these rebukes and": [0, 65535], "rude and wildly why beare you these rebukes and answer": [0, 65535], "and wildly why beare you these rebukes and answer not": [0, 65535], "wildly why beare you these rebukes and answer not adri": [0, 65535], "why beare you these rebukes and answer not adri she": [0, 65535], "beare you these rebukes and answer not adri she did": [0, 65535], "you these rebukes and answer not adri she did betray": [0, 65535], "these rebukes and answer not adri she did betray me": [0, 65535], "rebukes and answer not adri she did betray me to": [0, 65535], "and answer not adri she did betray me to my": [0, 65535], "answer not adri she did betray me to my owne": [0, 65535], "not adri she did betray me to my owne reproofe": [0, 65535], "adri she did betray me to my owne reproofe good": [0, 65535], "she did betray me to my owne reproofe good people": [0, 65535], "did betray me to my owne reproofe good people enter": [0, 65535], "betray me to my owne reproofe good people enter and": [0, 65535], "me to my owne reproofe good people enter and lay": [0, 65535], "to my owne reproofe good people enter and lay hold": [0, 65535], "my owne reproofe good people enter and lay hold on": [0, 65535], "owne reproofe good people enter and lay hold on him": [0, 65535], "reproofe good people enter and lay hold on him ab": [0, 65535], "good people enter and lay hold on him ab no": [0, 65535], "people enter and lay hold on him ab no not": [0, 65535], "enter and lay hold on him ab no not a": [0, 65535], "and lay hold on him ab no not a creature": [0, 65535], "lay hold on him ab no not a creature enters": [0, 65535], "hold on him ab no not a creature enters in": [0, 65535], "on him ab no not a creature enters in my": [0, 65535], "him ab no not a creature enters in my house": [0, 65535], "ab no not a creature enters in my house ad": [0, 65535], "no not a creature enters in my house ad then": [0, 65535], "not a creature enters in my house ad then let": [0, 65535], "a creature enters in my house ad then let your": [0, 65535], "creature enters in my house ad then let your seruants": [0, 65535], "enters in my house ad then let your seruants bring": [0, 65535], "in my house ad then let your seruants bring my": [0, 65535], "my house ad then let your seruants bring my husband": [0, 65535], "house ad then let your seruants bring my husband forth": [0, 65535], "ad then let your seruants bring my husband forth ab": [0, 65535], "then let your seruants bring my husband forth ab neither": [0, 65535], "let your seruants bring my husband forth ab neither he": [0, 65535], "your seruants bring my husband forth ab neither he tooke": [0, 65535], "seruants bring my husband forth ab neither he tooke this": [0, 65535], "bring my husband forth ab neither he tooke this place": [0, 65535], "my husband forth ab neither he tooke this place for": [0, 65535], "husband forth ab neither he tooke this place for sanctuary": [0, 65535], "forth ab neither he tooke this place for sanctuary and": [0, 65535], "ab neither he tooke this place for sanctuary and it": [0, 65535], "neither he tooke this place for sanctuary and it shall": [0, 65535], "he tooke this place for sanctuary and it shall priuiledge": [0, 65535], "tooke this place for sanctuary and it shall priuiledge him": [0, 65535], "this place for sanctuary and it shall priuiledge him from": [0, 65535], "place for sanctuary and it shall priuiledge him from your": [0, 65535], "for sanctuary and it shall priuiledge him from your hands": [0, 65535], "sanctuary and it shall priuiledge him from your hands till": [0, 65535], "and it shall priuiledge him from your hands till i": [0, 65535], "it shall priuiledge him from your hands till i haue": [0, 65535], "shall priuiledge him from your hands till i haue brought": [0, 65535], "priuiledge him from your hands till i haue brought him": [0, 65535], "him from your hands till i haue brought him to": [0, 65535], "from your hands till i haue brought him to his": [0, 65535], "your hands till i haue brought him to his wits": [0, 65535], "hands till i haue brought him to his wits againe": [0, 65535], "till i haue brought him to his wits againe or": [0, 65535], "i haue brought him to his wits againe or loose": [0, 65535], "haue brought him to his wits againe or loose my": [0, 65535], "brought him to his wits againe or loose my labour": [0, 65535], "him to his wits againe or loose my labour in": [0, 65535], "to his wits againe or loose my labour in assaying": [0, 65535], "his wits againe or loose my labour in assaying it": [0, 65535], "wits againe or loose my labour in assaying it adr": [0, 65535], "againe or loose my labour in assaying it adr i": [0, 65535], "or loose my labour in assaying it adr i will": [0, 65535], "loose my labour in assaying it adr i will attend": [0, 65535], "my labour in assaying it adr i will attend my": [0, 65535], "labour in assaying it adr i will attend my husband": [0, 65535], "in assaying it adr i will attend my husband be": [0, 65535], "assaying it adr i will attend my husband be his": [0, 65535], "it adr i will attend my husband be his nurse": [0, 65535], "adr i will attend my husband be his nurse diet": [0, 65535], "i will attend my husband be his nurse diet his": [0, 65535], "will attend my husband be his nurse diet his sicknesse": [0, 65535], "attend my husband be his nurse diet his sicknesse for": [0, 65535], "my husband be his nurse diet his sicknesse for it": [0, 65535], "husband be his nurse diet his sicknesse for it is": [0, 65535], "be his nurse diet his sicknesse for it is my": [0, 65535], "his nurse diet his sicknesse for it is my office": [0, 65535], "nurse diet his sicknesse for it is my office and": [0, 65535], "diet his sicknesse for it is my office and will": [0, 65535], "his sicknesse for it is my office and will haue": [0, 65535], "sicknesse for it is my office and will haue no": [0, 65535], "for it is my office and will haue no atturney": [0, 65535], "it is my office and will haue no atturney but": [0, 65535], "is my office and will haue no atturney but my": [0, 65535], "my office and will haue no atturney but my selfe": [0, 65535], "office and will haue no atturney but my selfe and": [0, 65535], "and will haue no atturney but my selfe and therefore": [0, 65535], "will haue no atturney but my selfe and therefore let": [0, 65535], "haue no atturney but my selfe and therefore let me": [0, 65535], "no atturney but my selfe and therefore let me haue": [0, 65535], "atturney but my selfe and therefore let me haue him": [0, 65535], "but my selfe and therefore let me haue him home": [0, 65535], "my selfe and therefore let me haue him home with": [0, 65535], "selfe and therefore let me haue him home with me": [0, 65535], "and therefore let me haue him home with me ab": [0, 65535], "therefore let me haue him home with me ab be": [0, 65535], "let me haue him home with me ab be patient": [0, 65535], "me haue him home with me ab be patient for": [0, 65535], "haue him home with me ab be patient for i": [0, 65535], "him home with me ab be patient for i will": [0, 65535], "home with me ab be patient for i will not": [0, 65535], "with me ab be patient for i will not let": [0, 65535], "me ab be patient for i will not let him": [0, 65535], "ab be patient for i will not let him stirre": [0, 65535], "be patient for i will not let him stirre till": [0, 65535], "patient for i will not let him stirre till i": [0, 65535], "for i will not let him stirre till i haue": [0, 65535], "i will not let him stirre till i haue vs'd": [0, 65535], "will not let him stirre till i haue vs'd the": [0, 65535], "not let him stirre till i haue vs'd the approoued": [0, 65535], "let him stirre till i haue vs'd the approoued meanes": [0, 65535], "him stirre till i haue vs'd the approoued meanes i": [0, 65535], "stirre till i haue vs'd the approoued meanes i haue": [0, 65535], "till i haue vs'd the approoued meanes i haue with": [0, 65535], "i haue vs'd the approoued meanes i haue with wholsome": [0, 65535], "haue vs'd the approoued meanes i haue with wholsome sirrups": [0, 65535], "vs'd the approoued meanes i haue with wholsome sirrups drugges": [0, 65535], "the approoued meanes i haue with wholsome sirrups drugges and": [0, 65535], "approoued meanes i haue with wholsome sirrups drugges and holy": [0, 65535], "meanes i haue with wholsome sirrups drugges and holy prayers": [0, 65535], "i haue with wholsome sirrups drugges and holy prayers to": [0, 65535], "haue with wholsome sirrups drugges and holy prayers to make": [0, 65535], "with wholsome sirrups drugges and holy prayers to make of": [0, 65535], "wholsome sirrups drugges and holy prayers to make of him": [0, 65535], "sirrups drugges and holy prayers to make of him a": [0, 65535], "drugges and holy prayers to make of him a formall": [0, 65535], "and holy prayers to make of him a formall man": [0, 65535], "holy prayers to make of him a formall man againe": [0, 65535], "prayers to make of him a formall man againe it": [0, 65535], "to make of him a formall man againe it is": [0, 65535], "make of him a formall man againe it is a": [0, 65535], "of him a formall man againe it is a branch": [0, 65535], "him a formall man againe it is a branch and": [0, 65535], "a formall man againe it is a branch and parcell": [0, 65535], "formall man againe it is a branch and parcell of": [0, 65535], "man againe it is a branch and parcell of mine": [0, 65535], "againe it is a branch and parcell of mine oath": [0, 65535], "it is a branch and parcell of mine oath a": [0, 65535], "is a branch and parcell of mine oath a charitable": [0, 65535], "a branch and parcell of mine oath a charitable dutie": [0, 65535], "branch and parcell of mine oath a charitable dutie of": [0, 65535], "and parcell of mine oath a charitable dutie of my": [0, 65535], "parcell of mine oath a charitable dutie of my order": [0, 65535], "of mine oath a charitable dutie of my order therefore": [0, 65535], "mine oath a charitable dutie of my order therefore depart": [0, 65535], "oath a charitable dutie of my order therefore depart and": [0, 65535], "a charitable dutie of my order therefore depart and leaue": [0, 65535], "charitable dutie of my order therefore depart and leaue him": [0, 65535], "dutie of my order therefore depart and leaue him heere": [0, 65535], "of my order therefore depart and leaue him heere with": [0, 65535], "my order therefore depart and leaue him heere with me": [0, 65535], "order therefore depart and leaue him heere with me adr": [0, 65535], "therefore depart and leaue him heere with me adr i": [0, 65535], "depart and leaue him heere with me adr i will": [0, 65535], "and leaue him heere with me adr i will not": [0, 65535], "leaue him heere with me adr i will not hence": [0, 65535], "him heere with me adr i will not hence and": [0, 65535], "heere with me adr i will not hence and leaue": [0, 65535], "with me adr i will not hence and leaue my": [0, 65535], "me adr i will not hence and leaue my husband": [0, 65535], "adr i will not hence and leaue my husband heere": [0, 65535], "i will not hence and leaue my husband heere and": [0, 65535], "will not hence and leaue my husband heere and ill": [0, 65535], "not hence and leaue my husband heere and ill it": [0, 65535], "hence and leaue my husband heere and ill it doth": [0, 65535], "and leaue my husband heere and ill it doth beseeme": [0, 65535], "leaue my husband heere and ill it doth beseeme your": [0, 65535], "my husband heere and ill it doth beseeme your holinesse": [0, 65535], "husband heere and ill it doth beseeme your holinesse to": [0, 65535], "heere and ill it doth beseeme your holinesse to separate": [0, 65535], "and ill it doth beseeme your holinesse to separate the": [0, 65535], "ill it doth beseeme your holinesse to separate the husband": [0, 65535], "it doth beseeme your holinesse to separate the husband and": [0, 65535], "doth beseeme your holinesse to separate the husband and the": [0, 65535], "beseeme your holinesse to separate the husband and the wife": [0, 65535], "your holinesse to separate the husband and the wife ab": [0, 65535], "holinesse to separate the husband and the wife ab be": [0, 65535], "to separate the husband and the wife ab be quiet": [0, 65535], "separate the husband and the wife ab be quiet and": [0, 65535], "the husband and the wife ab be quiet and depart": [0, 65535], "husband and the wife ab be quiet and depart thou": [0, 65535], "and the wife ab be quiet and depart thou shalt": [0, 65535], "the wife ab be quiet and depart thou shalt not": [0, 65535], "wife ab be quiet and depart thou shalt not haue": [0, 65535], "ab be quiet and depart thou shalt not haue him": [0, 65535], "be quiet and depart thou shalt not haue him luc": [0, 65535], "quiet and depart thou shalt not haue him luc complaine": [0, 65535], "and depart thou shalt not haue him luc complaine vnto": [0, 65535], "depart thou shalt not haue him luc complaine vnto the": [0, 65535], "thou shalt not haue him luc complaine vnto the duke": [0, 65535], "shalt not haue him luc complaine vnto the duke of": [0, 65535], "not haue him luc complaine vnto the duke of this": [0, 65535], "haue him luc complaine vnto the duke of this indignity": [0, 65535], "him luc complaine vnto the duke of this indignity adr": [0, 65535], "luc complaine vnto the duke of this indignity adr come": [0, 65535], "complaine vnto the duke of this indignity adr come go": [0, 65535], "vnto the duke of this indignity adr come go i": [0, 65535], "the duke of this indignity adr come go i will": [0, 65535], "duke of this indignity adr come go i will fall": [0, 65535], "of this indignity adr come go i will fall prostrate": [0, 65535], "this indignity adr come go i will fall prostrate at": [0, 65535], "indignity adr come go i will fall prostrate at his": [0, 65535], "adr come go i will fall prostrate at his feete": [0, 65535], "come go i will fall prostrate at his feete and": [0, 65535], "go i will fall prostrate at his feete and neuer": [0, 65535], "i will fall prostrate at his feete and neuer rise": [0, 65535], "will fall prostrate at his feete and neuer rise vntill": [0, 65535], "fall prostrate at his feete and neuer rise vntill my": [0, 65535], "prostrate at his feete and neuer rise vntill my teares": [0, 65535], "at his feete and neuer rise vntill my teares and": [0, 65535], "his feete and neuer rise vntill my teares and prayers": [0, 65535], "feete and neuer rise vntill my teares and prayers haue": [0, 65535], "and neuer rise vntill my teares and prayers haue won": [0, 65535], "neuer rise vntill my teares and prayers haue won his": [0, 65535], "rise vntill my teares and prayers haue won his grace": [0, 65535], "vntill my teares and prayers haue won his grace to": [0, 65535], "my teares and prayers haue won his grace to come": [0, 65535], "teares and prayers haue won his grace to come in": [0, 65535], "and prayers haue won his grace to come in person": [0, 65535], "prayers haue won his grace to come in person hither": [0, 65535], "haue won his grace to come in person hither and": [0, 65535], "won his grace to come in person hither and take": [0, 65535], "his grace to come in person hither and take perforce": [0, 65535], "grace to come in person hither and take perforce my": [0, 65535], "to come in person hither and take perforce my husband": [0, 65535], "come in person hither and take perforce my husband from": [0, 65535], "in person hither and take perforce my husband from the": [0, 65535], "person hither and take perforce my husband from the abbesse": [0, 65535], "hither and take perforce my husband from the abbesse mar": [0, 65535], "and take perforce my husband from the abbesse mar by": [0, 65535], "take perforce my husband from the abbesse mar by this": [0, 65535], "perforce my husband from the abbesse mar by this i": [0, 65535], "my husband from the abbesse mar by this i thinke": [0, 65535], "husband from the abbesse mar by this i thinke the": [0, 65535], "from the abbesse mar by this i thinke the diall": [0, 65535], "the abbesse mar by this i thinke the diall points": [0, 65535], "abbesse mar by this i thinke the diall points at": [0, 65535], "mar by this i thinke the diall points at fiue": [0, 65535], "by this i thinke the diall points at fiue anon": [0, 65535], "this i thinke the diall points at fiue anon i'me": [0, 65535], "i thinke the diall points at fiue anon i'me sure": [0, 65535], "thinke the diall points at fiue anon i'me sure the": [0, 65535], "the diall points at fiue anon i'me sure the duke": [0, 65535], "diall points at fiue anon i'me sure the duke himselfe": [0, 65535], "points at fiue anon i'me sure the duke himselfe in": [0, 65535], "at fiue anon i'me sure the duke himselfe in person": [0, 65535], "fiue anon i'me sure the duke himselfe in person comes": [0, 65535], "anon i'me sure the duke himselfe in person comes this": [0, 65535], "i'me sure the duke himselfe in person comes this way": [0, 65535], "sure the duke himselfe in person comes this way to": [0, 65535], "the duke himselfe in person comes this way to the": [0, 65535], "duke himselfe in person comes this way to the melancholly": [0, 65535], "himselfe in person comes this way to the melancholly vale": [0, 65535], "in person comes this way to the melancholly vale the": [0, 65535], "person comes this way to the melancholly vale the place": [0, 65535], "comes this way to the melancholly vale the place of": [0, 65535], "this way to the melancholly vale the place of depth": [0, 65535], "way to the melancholly vale the place of depth and": [0, 65535], "to the melancholly vale the place of depth and sorrie": [0, 65535], "the melancholly vale the place of depth and sorrie execution": [0, 65535], "melancholly vale the place of depth and sorrie execution behinde": [0, 65535], "vale the place of depth and sorrie execution behinde the": [0, 65535], "the place of depth and sorrie execution behinde the ditches": [0, 65535], "place of depth and sorrie execution behinde the ditches of": [0, 65535], "of depth and sorrie execution behinde the ditches of the": [0, 65535], "depth and sorrie execution behinde the ditches of the abbey": [0, 65535], "and sorrie execution behinde the ditches of the abbey heere": [0, 65535], "sorrie execution behinde the ditches of the abbey heere gold": [0, 65535], "execution behinde the ditches of the abbey heere gold vpon": [0, 65535], "behinde the ditches of the abbey heere gold vpon what": [0, 65535], "the ditches of the abbey heere gold vpon what cause": [0, 65535], "ditches of the abbey heere gold vpon what cause mar": [0, 65535], "of the abbey heere gold vpon what cause mar to": [0, 65535], "the abbey heere gold vpon what cause mar to see": [0, 65535], "abbey heere gold vpon what cause mar to see a": [0, 65535], "heere gold vpon what cause mar to see a reuerent": [0, 65535], "gold vpon what cause mar to see a reuerent siracusian": [0, 65535], "vpon what cause mar to see a reuerent siracusian merchant": [0, 65535], "what cause mar to see a reuerent siracusian merchant who": [0, 65535], "cause mar to see a reuerent siracusian merchant who put": [0, 65535], "mar to see a reuerent siracusian merchant who put vnluckily": [0, 65535], "to see a reuerent siracusian merchant who put vnluckily into": [0, 65535], "see a reuerent siracusian merchant who put vnluckily into this": [0, 65535], "a reuerent siracusian merchant who put vnluckily into this bay": [0, 65535], "reuerent siracusian merchant who put vnluckily into this bay against": [0, 65535], "siracusian merchant who put vnluckily into this bay against the": [0, 65535], "merchant who put vnluckily into this bay against the lawes": [0, 65535], "who put vnluckily into this bay against the lawes and": [0, 65535], "put vnluckily into this bay against the lawes and statutes": [0, 65535], "vnluckily into this bay against the lawes and statutes of": [0, 65535], "into this bay against the lawes and statutes of this": [0, 65535], "this bay against the lawes and statutes of this towne": [0, 65535], "bay against the lawes and statutes of this towne beheaded": [0, 65535], "against the lawes and statutes of this towne beheaded publikely": [0, 65535], "the lawes and statutes of this towne beheaded publikely for": [0, 65535], "lawes and statutes of this towne beheaded publikely for his": [0, 65535], "and statutes of this towne beheaded publikely for his offence": [0, 65535], "statutes of this towne beheaded publikely for his offence gold": [0, 65535], "of this towne beheaded publikely for his offence gold see": [0, 65535], "this towne beheaded publikely for his offence gold see where": [0, 65535], "towne beheaded publikely for his offence gold see where they": [0, 65535], "beheaded publikely for his offence gold see where they come": [0, 65535], "publikely for his offence gold see where they come we": [0, 65535], "for his offence gold see where they come we wil": [0, 65535], "his offence gold see where they come we wil behold": [0, 65535], "offence gold see where they come we wil behold his": [0, 65535], "gold see where they come we wil behold his death": [0, 65535], "see where they come we wil behold his death luc": [0, 65535], "where they come we wil behold his death luc kneele": [0, 65535], "they come we wil behold his death luc kneele to": [0, 65535], "come we wil behold his death luc kneele to the": [0, 65535], "we wil behold his death luc kneele to the duke": [0, 65535], "wil behold his death luc kneele to the duke before": [0, 65535], "behold his death luc kneele to the duke before he": [0, 65535], "his death luc kneele to the duke before he passe": [0, 65535], "death luc kneele to the duke before he passe the": [0, 65535], "luc kneele to the duke before he passe the abbey": [0, 65535], "kneele to the duke before he passe the abbey enter": [0, 65535], "to the duke before he passe the abbey enter the": [0, 65535], "the duke before he passe the abbey enter the duke": [0, 65535], "duke before he passe the abbey enter the duke of": [0, 65535], "before he passe the abbey enter the duke of ephesus": [0, 65535], "he passe the abbey enter the duke of ephesus and": [0, 65535], "passe the abbey enter the duke of ephesus and the": [0, 65535], "the abbey enter the duke of ephesus and the merchant": [0, 65535], "abbey enter the duke of ephesus and the merchant of": [0, 65535], "enter the duke of ephesus and the merchant of siracuse": [0, 65535], "the duke of ephesus and the merchant of siracuse bare": [0, 65535], "duke of ephesus and the merchant of siracuse bare head": [0, 65535], "of ephesus and the merchant of siracuse bare head with": [0, 65535], "ephesus and the merchant of siracuse bare head with the": [0, 65535], "and the merchant of siracuse bare head with the headsman": [0, 65535], "the merchant of siracuse bare head with the headsman other": [0, 65535], "merchant of siracuse bare head with the headsman other officers": [0, 65535], "of siracuse bare head with the headsman other officers duke": [0, 65535], "siracuse bare head with the headsman other officers duke yet": [0, 65535], "bare head with the headsman other officers duke yet once": [0, 65535], "head with the headsman other officers duke yet once againe": [0, 65535], "with the headsman other officers duke yet once againe proclaime": [0, 65535], "the headsman other officers duke yet once againe proclaime it": [0, 65535], "headsman other officers duke yet once againe proclaime it publikely": [0, 65535], "other officers duke yet once againe proclaime it publikely if": [0, 65535], "officers duke yet once againe proclaime it publikely if any": [0, 65535], "duke yet once againe proclaime it publikely if any friend": [0, 65535], "yet once againe proclaime it publikely if any friend will": [0, 65535], "once againe proclaime it publikely if any friend will pay": [0, 65535], "againe proclaime it publikely if any friend will pay the": [0, 65535], "proclaime it publikely if any friend will pay the summe": [0, 65535], "it publikely if any friend will pay the summe for": [0, 65535], "publikely if any friend will pay the summe for him": [0, 65535], "if any friend will pay the summe for him he": [0, 65535], "any friend will pay the summe for him he shall": [0, 65535], "friend will pay the summe for him he shall not": [0, 65535], "will pay the summe for him he shall not die": [0, 65535], "pay the summe for him he shall not die so": [0, 65535], "the summe for him he shall not die so much": [0, 65535], "summe for him he shall not die so much we": [0, 65535], "for him he shall not die so much we tender": [0, 65535], "him he shall not die so much we tender him": [0, 65535], "he shall not die so much we tender him adr": [0, 65535], "shall not die so much we tender him adr iustice": [0, 65535], "not die so much we tender him adr iustice most": [0, 65535], "die so much we tender him adr iustice most sacred": [0, 65535], "so much we tender him adr iustice most sacred duke": [0, 65535], "much we tender him adr iustice most sacred duke against": [0, 65535], "we tender him adr iustice most sacred duke against the": [0, 65535], "tender him adr iustice most sacred duke against the abbesse": [0, 65535], "him adr iustice most sacred duke against the abbesse duke": [0, 65535], "adr iustice most sacred duke against the abbesse duke she": [0, 65535], "iustice most sacred duke against the abbesse duke she is": [0, 65535], "most sacred duke against the abbesse duke she is a": [0, 65535], "sacred duke against the abbesse duke she is a vertuous": [0, 65535], "duke against the abbesse duke she is a vertuous and": [0, 65535], "against the abbesse duke she is a vertuous and a": [0, 65535], "the abbesse duke she is a vertuous and a reuerend": [0, 65535], "abbesse duke she is a vertuous and a reuerend lady": [0, 65535], "duke she is a vertuous and a reuerend lady it": [0, 65535], "she is a vertuous and a reuerend lady it cannot": [0, 65535], "is a vertuous and a reuerend lady it cannot be": [0, 65535], "a vertuous and a reuerend lady it cannot be that": [0, 65535], "vertuous and a reuerend lady it cannot be that she": [0, 65535], "and a reuerend lady it cannot be that she hath": [0, 65535], "a reuerend lady it cannot be that she hath done": [0, 65535], "reuerend lady it cannot be that she hath done thee": [0, 65535], "lady it cannot be that she hath done thee wrong": [0, 65535], "it cannot be that she hath done thee wrong adr": [0, 65535], "cannot be that she hath done thee wrong adr may": [0, 65535], "be that she hath done thee wrong adr may it": [0, 65535], "that she hath done thee wrong adr may it please": [0, 65535], "she hath done thee wrong adr may it please your": [0, 65535], "hath done thee wrong adr may it please your grace": [0, 65535], "done thee wrong adr may it please your grace antipholus": [0, 65535], "thee wrong adr may it please your grace antipholus my": [0, 65535], "wrong adr may it please your grace antipholus my husba": [0, 65535], "adr may it please your grace antipholus my husba n": [0, 65535], "may it please your grace antipholus my husba n d": [0, 65535], "it please your grace antipholus my husba n d who": [0, 65535], "please your grace antipholus my husba n d who i": [0, 65535], "your grace antipholus my husba n d who i made": [0, 65535], "grace antipholus my husba n d who i made lord": [0, 65535], "antipholus my husba n d who i made lord of": [0, 65535], "my husba n d who i made lord of me": [0, 65535], "husba n d who i made lord of me and": [0, 65535], "n d who i made lord of me and all": [0, 65535], "d who i made lord of me and all i": [0, 65535], "who i made lord of me and all i had": [0, 65535], "i made lord of me and all i had at": [0, 65535], "made lord of me and all i had at your": [0, 65535], "lord of me and all i had at your important": [0, 65535], "of me and all i had at your important letters": [0, 65535], "me and all i had at your important letters this": [0, 65535], "and all i had at your important letters this ill": [0, 65535], "all i had at your important letters this ill day": [0, 65535], "i had at your important letters this ill day a": [0, 65535], "had at your important letters this ill day a most": [0, 65535], "at your important letters this ill day a most outragious": [0, 65535], "your important letters this ill day a most outragious fit": [0, 65535], "important letters this ill day a most outragious fit of": [0, 65535], "letters this ill day a most outragious fit of madnesse": [0, 65535], "this ill day a most outragious fit of madnesse tooke": [0, 65535], "ill day a most outragious fit of madnesse tooke him": [0, 65535], "day a most outragious fit of madnesse tooke him that": [0, 65535], "a most outragious fit of madnesse tooke him that desp'rately": [0, 65535], "most outragious fit of madnesse tooke him that desp'rately he": [0, 65535], "outragious fit of madnesse tooke him that desp'rately he hurried": [0, 65535], "fit of madnesse tooke him that desp'rately he hurried through": [0, 65535], "of madnesse tooke him that desp'rately he hurried through the": [0, 65535], "madnesse tooke him that desp'rately he hurried through the streete": [0, 65535], "tooke him that desp'rately he hurried through the streete with": [0, 65535], "him that desp'rately he hurried through the streete with him": [0, 65535], "that desp'rately he hurried through the streete with him his": [0, 65535], "desp'rately he hurried through the streete with him his bondman": [0, 65535], "he hurried through the streete with him his bondman all": [0, 65535], "hurried through the streete with him his bondman all as": [0, 65535], "through the streete with him his bondman all as mad": [0, 65535], "the streete with him his bondman all as mad as": [0, 65535], "streete with him his bondman all as mad as he": [0, 65535], "with him his bondman all as mad as he doing": [0, 65535], "him his bondman all as mad as he doing displeasure": [0, 65535], "his bondman all as mad as he doing displeasure to": [0, 65535], "bondman all as mad as he doing displeasure to the": [0, 65535], "all as mad as he doing displeasure to the citizens": [0, 65535], "as mad as he doing displeasure to the citizens by": [0, 65535], "mad as he doing displeasure to the citizens by rushing": [0, 65535], "as he doing displeasure to the citizens by rushing in": [0, 65535], "he doing displeasure to the citizens by rushing in their": [0, 65535], "doing displeasure to the citizens by rushing in their houses": [0, 65535], "displeasure to the citizens by rushing in their houses bearing": [0, 65535], "to the citizens by rushing in their houses bearing thence": [0, 65535], "the citizens by rushing in their houses bearing thence rings": [0, 65535], "citizens by rushing in their houses bearing thence rings iewels": [0, 65535], "by rushing in their houses bearing thence rings iewels any": [0, 65535], "rushing in their houses bearing thence rings iewels any thing": [0, 65535], "in their houses bearing thence rings iewels any thing his": [0, 65535], "their houses bearing thence rings iewels any thing his rage": [0, 65535], "houses bearing thence rings iewels any thing his rage did": [0, 65535], "bearing thence rings iewels any thing his rage did like": [0, 65535], "thence rings iewels any thing his rage did like once": [0, 65535], "rings iewels any thing his rage did like once did": [0, 65535], "iewels any thing his rage did like once did i": [0, 65535], "any thing his rage did like once did i get": [0, 65535], "thing his rage did like once did i get him": [0, 65535], "his rage did like once did i get him bound": [0, 65535], "rage did like once did i get him bound and": [0, 65535], "did like once did i get him bound and sent": [0, 65535], "like once did i get him bound and sent him": [0, 65535], "once did i get him bound and sent him home": [0, 65535], "did i get him bound and sent him home whil'st": [0, 65535], "i get him bound and sent him home whil'st to": [0, 65535], "get him bound and sent him home whil'st to take": [0, 65535], "him bound and sent him home whil'st to take order": [0, 65535], "bound and sent him home whil'st to take order for": [0, 65535], "and sent him home whil'st to take order for the": [0, 65535], "sent him home whil'st to take order for the wrongs": [0, 65535], "him home whil'st to take order for the wrongs i": [0, 65535], "home whil'st to take order for the wrongs i went": [0, 65535], "whil'st to take order for the wrongs i went that": [0, 65535], "to take order for the wrongs i went that heere": [0, 65535], "take order for the wrongs i went that heere and": [0, 65535], "order for the wrongs i went that heere and there": [0, 65535], "for the wrongs i went that heere and there his": [0, 65535], "the wrongs i went that heere and there his furie": [0, 65535], "wrongs i went that heere and there his furie had": [0, 65535], "i went that heere and there his furie had committed": [0, 65535], "went that heere and there his furie had committed anon": [0, 65535], "that heere and there his furie had committed anon i": [0, 65535], "heere and there his furie had committed anon i wot": [0, 65535], "and there his furie had committed anon i wot not": [0, 65535], "there his furie had committed anon i wot not by": [0, 65535], "his furie had committed anon i wot not by what": [0, 65535], "furie had committed anon i wot not by what strong": [0, 65535], "had committed anon i wot not by what strong escape": [0, 65535], "committed anon i wot not by what strong escape he": [0, 65535], "anon i wot not by what strong escape he broke": [0, 65535], "i wot not by what strong escape he broke from": [0, 65535], "wot not by what strong escape he broke from those": [0, 65535], "not by what strong escape he broke from those that": [0, 65535], "by what strong escape he broke from those that had": [0, 65535], "what strong escape he broke from those that had the": [0, 65535], "strong escape he broke from those that had the guard": [0, 65535], "escape he broke from those that had the guard of": [0, 65535], "he broke from those that had the guard of him": [0, 65535], "broke from those that had the guard of him and": [0, 65535], "from those that had the guard of him and with": [0, 65535], "those that had the guard of him and with his": [0, 65535], "that had the guard of him and with his mad": [0, 65535], "had the guard of him and with his mad attendant": [0, 65535], "the guard of him and with his mad attendant and": [0, 65535], "guard of him and with his mad attendant and himselfe": [0, 65535], "of him and with his mad attendant and himselfe each": [0, 65535], "him and with his mad attendant and himselfe each one": [0, 65535], "and with his mad attendant and himselfe each one with": [0, 65535], "with his mad attendant and himselfe each one with irefull": [0, 65535], "his mad attendant and himselfe each one with irefull passion": [0, 65535], "mad attendant and himselfe each one with irefull passion with": [0, 65535], "attendant and himselfe each one with irefull passion with drawne": [0, 65535], "and himselfe each one with irefull passion with drawne swords": [0, 65535], "himselfe each one with irefull passion with drawne swords met": [0, 65535], "each one with irefull passion with drawne swords met vs": [0, 65535], "one with irefull passion with drawne swords met vs againe": [0, 65535], "with irefull passion with drawne swords met vs againe and": [0, 65535], "irefull passion with drawne swords met vs againe and madly": [0, 65535], "passion with drawne swords met vs againe and madly bent": [0, 65535], "with drawne swords met vs againe and madly bent on": [0, 65535], "drawne swords met vs againe and madly bent on vs": [0, 65535], "swords met vs againe and madly bent on vs chac'd": [0, 65535], "met vs againe and madly bent on vs chac'd vs": [0, 65535], "vs againe and madly bent on vs chac'd vs away": [0, 65535], "againe and madly bent on vs chac'd vs away till": [0, 65535], "and madly bent on vs chac'd vs away till raising": [0, 65535], "madly bent on vs chac'd vs away till raising of": [0, 65535], "bent on vs chac'd vs away till raising of more": [0, 65535], "on vs chac'd vs away till raising of more aide": [0, 65535], "vs chac'd vs away till raising of more aide we": [0, 65535], "chac'd vs away till raising of more aide we came": [0, 65535], "vs away till raising of more aide we came againe": [0, 65535], "away till raising of more aide we came againe to": [0, 65535], "till raising of more aide we came againe to binde": [0, 65535], "raising of more aide we came againe to binde them": [0, 65535], "of more aide we came againe to binde them then": [0, 65535], "more aide we came againe to binde them then they": [0, 65535], "aide we came againe to binde them then they fled": [0, 65535], "we came againe to binde them then they fled into": [0, 65535], "came againe to binde them then they fled into this": [0, 65535], "againe to binde them then they fled into this abbey": [0, 65535], "to binde them then they fled into this abbey whether": [0, 65535], "binde them then they fled into this abbey whether we": [0, 65535], "them then they fled into this abbey whether we pursu'd": [0, 65535], "then they fled into this abbey whether we pursu'd them": [0, 65535], "they fled into this abbey whether we pursu'd them and": [0, 65535], "fled into this abbey whether we pursu'd them and heere": [0, 65535], "into this abbey whether we pursu'd them and heere the": [0, 65535], "this abbey whether we pursu'd them and heere the abbesse": [0, 65535], "abbey whether we pursu'd them and heere the abbesse shuts": [0, 65535], "whether we pursu'd them and heere the abbesse shuts the": [0, 65535], "we pursu'd them and heere the abbesse shuts the gates": [0, 65535], "pursu'd them and heere the abbesse shuts the gates on": [0, 65535], "them and heere the abbesse shuts the gates on vs": [0, 65535], "and heere the abbesse shuts the gates on vs and": [0, 65535], "heere the abbesse shuts the gates on vs and will": [0, 65535], "the abbesse shuts the gates on vs and will not": [0, 65535], "abbesse shuts the gates on vs and will not suffer": [0, 65535], "shuts the gates on vs and will not suffer vs": [0, 65535], "the gates on vs and will not suffer vs to": [0, 65535], "gates on vs and will not suffer vs to fetch": [0, 65535], "on vs and will not suffer vs to fetch him": [0, 65535], "vs and will not suffer vs to fetch him out": [0, 65535], "and will not suffer vs to fetch him out nor": [0, 65535], "will not suffer vs to fetch him out nor send": [0, 65535], "not suffer vs to fetch him out nor send him": [0, 65535], "suffer vs to fetch him out nor send him forth": [0, 65535], "vs to fetch him out nor send him forth that": [0, 65535], "to fetch him out nor send him forth that we": [0, 65535], "fetch him out nor send him forth that we may": [0, 65535], "him out nor send him forth that we may beare": [0, 65535], "out nor send him forth that we may beare him": [0, 65535], "nor send him forth that we may beare him hence": [0, 65535], "send him forth that we may beare him hence therefore": [0, 65535], "him forth that we may beare him hence therefore most": [0, 65535], "forth that we may beare him hence therefore most gracious": [0, 65535], "that we may beare him hence therefore most gracious duke": [0, 65535], "we may beare him hence therefore most gracious duke with": [0, 65535], "may beare him hence therefore most gracious duke with thy": [0, 65535], "beare him hence therefore most gracious duke with thy command": [0, 65535], "him hence therefore most gracious duke with thy command let": [0, 65535], "hence therefore most gracious duke with thy command let him": [0, 65535], "therefore most gracious duke with thy command let him be": [0, 65535], "most gracious duke with thy command let him be brought": [0, 65535], "gracious duke with thy command let him be brought forth": [0, 65535], "duke with thy command let him be brought forth and": [0, 65535], "with thy command let him be brought forth and borne": [0, 65535], "thy command let him be brought forth and borne hence": [0, 65535], "command let him be brought forth and borne hence for": [0, 65535], "let him be brought forth and borne hence for helpe": [0, 65535], "him be brought forth and borne hence for helpe duke": [0, 65535], "be brought forth and borne hence for helpe duke long": [0, 65535], "brought forth and borne hence for helpe duke long since": [0, 65535], "forth and borne hence for helpe duke long since thy": [0, 65535], "and borne hence for helpe duke long since thy husband": [0, 65535], "borne hence for helpe duke long since thy husband seru'd": [0, 65535], "hence for helpe duke long since thy husband seru'd me": [0, 65535], "for helpe duke long since thy husband seru'd me in": [0, 65535], "helpe duke long since thy husband seru'd me in my": [0, 65535], "duke long since thy husband seru'd me in my wars": [0, 65535], "long since thy husband seru'd me in my wars and": [0, 65535], "since thy husband seru'd me in my wars and i": [0, 65535], "thy husband seru'd me in my wars and i to": [0, 65535], "husband seru'd me in my wars and i to thee": [0, 65535], "seru'd me in my wars and i to thee ingag'd": [0, 65535], "me in my wars and i to thee ingag'd a": [0, 65535], "in my wars and i to thee ingag'd a princes": [0, 65535], "my wars and i to thee ingag'd a princes word": [0, 65535], "wars and i to thee ingag'd a princes word when": [0, 65535], "and i to thee ingag'd a princes word when thou": [0, 65535], "i to thee ingag'd a princes word when thou didst": [0, 65535], "to thee ingag'd a princes word when thou didst make": [0, 65535], "thee ingag'd a princes word when thou didst make him": [0, 65535], "ingag'd a princes word when thou didst make him master": [0, 65535], "a princes word when thou didst make him master of": [0, 65535], "princes word when thou didst make him master of thy": [0, 65535], "word when thou didst make him master of thy bed": [0, 65535], "when thou didst make him master of thy bed to": [0, 65535], "thou didst make him master of thy bed to do": [0, 65535], "didst make him master of thy bed to do him": [0, 65535], "make him master of thy bed to do him all": [0, 65535], "him master of thy bed to do him all the": [0, 65535], "master of thy bed to do him all the grace": [0, 65535], "of thy bed to do him all the grace and": [0, 65535], "thy bed to do him all the grace and good": [0, 65535], "bed to do him all the grace and good i": [0, 65535], "to do him all the grace and good i could": [0, 65535], "do him all the grace and good i could go": [0, 65535], "him all the grace and good i could go some": [0, 65535], "all the grace and good i could go some of": [0, 65535], "the grace and good i could go some of you": [0, 65535], "grace and good i could go some of you knocke": [0, 65535], "and good i could go some of you knocke at": [0, 65535], "good i could go some of you knocke at the": [0, 65535], "i could go some of you knocke at the abbey": [0, 65535], "could go some of you knocke at the abbey gate": [0, 65535], "go some of you knocke at the abbey gate and": [0, 65535], "some of you knocke at the abbey gate and bid": [0, 65535], "of you knocke at the abbey gate and bid the": [0, 65535], "you knocke at the abbey gate and bid the lady": [0, 65535], "knocke at the abbey gate and bid the lady abbesse": [0, 65535], "at the abbey gate and bid the lady abbesse come": [0, 65535], "the abbey gate and bid the lady abbesse come to": [0, 65535], "abbey gate and bid the lady abbesse come to me": [0, 65535], "gate and bid the lady abbesse come to me i": [0, 65535], "and bid the lady abbesse come to me i will": [0, 65535], "bid the lady abbesse come to me i will determine": [0, 65535], "the lady abbesse come to me i will determine this": [0, 65535], "lady abbesse come to me i will determine this before": [0, 65535], "abbesse come to me i will determine this before i": [0, 65535], "come to me i will determine this before i stirre": [0, 65535], "to me i will determine this before i stirre enter": [0, 65535], "me i will determine this before i stirre enter a": [0, 65535], "i will determine this before i stirre enter a messenger": [0, 65535], "will determine this before i stirre enter a messenger oh": [0, 65535], "determine this before i stirre enter a messenger oh mistris": [0, 65535], "this before i stirre enter a messenger oh mistris mistris": [0, 65535], "before i stirre enter a messenger oh mistris mistris shift": [0, 65535], "i stirre enter a messenger oh mistris mistris shift and": [0, 65535], "stirre enter a messenger oh mistris mistris shift and saue": [0, 65535], "enter a messenger oh mistris mistris shift and saue your": [0, 65535], "a messenger oh mistris mistris shift and saue your selfe": [0, 65535], "messenger oh mistris mistris shift and saue your selfe my": [0, 65535], "oh mistris mistris shift and saue your selfe my master": [0, 65535], "mistris mistris shift and saue your selfe my master and": [0, 65535], "mistris shift and saue your selfe my master and his": [0, 65535], "shift and saue your selfe my master and his man": [0, 65535], "and saue your selfe my master and his man are": [0, 65535], "saue your selfe my master and his man are both": [0, 65535], "your selfe my master and his man are both broke": [0, 65535], "selfe my master and his man are both broke loose": [0, 65535], "my master and his man are both broke loose beaten": [0, 65535], "master and his man are both broke loose beaten the": [0, 65535], "and his man are both broke loose beaten the maids": [0, 65535], "his man are both broke loose beaten the maids a": [0, 65535], "man are both broke loose beaten the maids a row": [0, 65535], "are both broke loose beaten the maids a row and": [0, 65535], "both broke loose beaten the maids a row and bound": [0, 65535], "broke loose beaten the maids a row and bound the": [0, 65535], "loose beaten the maids a row and bound the doctor": [0, 65535], "beaten the maids a row and bound the doctor whose": [0, 65535], "the maids a row and bound the doctor whose beard": [0, 65535], "maids a row and bound the doctor whose beard they": [0, 65535], "a row and bound the doctor whose beard they haue": [0, 65535], "row and bound the doctor whose beard they haue sindg'd": [0, 65535], "and bound the doctor whose beard they haue sindg'd off": [0, 65535], "bound the doctor whose beard they haue sindg'd off with": [0, 65535], "the doctor whose beard they haue sindg'd off with brands": [0, 65535], "doctor whose beard they haue sindg'd off with brands of": [0, 65535], "whose beard they haue sindg'd off with brands of fire": [0, 65535], "beard they haue sindg'd off with brands of fire and": [0, 65535], "they haue sindg'd off with brands of fire and euer": [0, 65535], "haue sindg'd off with brands of fire and euer as": [0, 65535], "sindg'd off with brands of fire and euer as it": [0, 65535], "off with brands of fire and euer as it blaz'd": [0, 65535], "with brands of fire and euer as it blaz'd they": [0, 65535], "brands of fire and euer as it blaz'd they threw": [0, 65535], "of fire and euer as it blaz'd they threw on": [0, 65535], "fire and euer as it blaz'd they threw on him": [0, 65535], "and euer as it blaz'd they threw on him great": [0, 65535], "euer as it blaz'd they threw on him great pailes": [0, 65535], "as it blaz'd they threw on him great pailes of": [0, 65535], "it blaz'd they threw on him great pailes of puddled": [0, 65535], "blaz'd they threw on him great pailes of puddled myre": [0, 65535], "they threw on him great pailes of puddled myre to": [0, 65535], "threw on him great pailes of puddled myre to quench": [0, 65535], "on him great pailes of puddled myre to quench the": [0, 65535], "him great pailes of puddled myre to quench the haire": [0, 65535], "great pailes of puddled myre to quench the haire my": [0, 65535], "pailes of puddled myre to quench the haire my mr": [0, 65535], "of puddled myre to quench the haire my mr preaches": [0, 65535], "puddled myre to quench the haire my mr preaches patience": [0, 65535], "myre to quench the haire my mr preaches patience to": [0, 65535], "to quench the haire my mr preaches patience to him": [0, 65535], "quench the haire my mr preaches patience to him and": [0, 65535], "the haire my mr preaches patience to him and the": [0, 65535], "haire my mr preaches patience to him and the while": [0, 65535], "my mr preaches patience to him and the while his": [0, 65535], "mr preaches patience to him and the while his man": [0, 65535], "preaches patience to him and the while his man with": [0, 65535], "patience to him and the while his man with cizers": [0, 65535], "to him and the while his man with cizers nickes": [0, 65535], "him and the while his man with cizers nickes him": [0, 65535], "and the while his man with cizers nickes him like": [0, 65535], "the while his man with cizers nickes him like a": [0, 65535], "while his man with cizers nickes him like a foole": [0, 65535], "his man with cizers nickes him like a foole and": [0, 65535], "man with cizers nickes him like a foole and sure": [0, 65535], "with cizers nickes him like a foole and sure vnlesse": [0, 65535], "cizers nickes him like a foole and sure vnlesse you": [0, 65535], "nickes him like a foole and sure vnlesse you send": [0, 65535], "him like a foole and sure vnlesse you send some": [0, 65535], "like a foole and sure vnlesse you send some present": [0, 65535], "a foole and sure vnlesse you send some present helpe": [0, 65535], "foole and sure vnlesse you send some present helpe betweene": [0, 65535], "and sure vnlesse you send some present helpe betweene them": [0, 65535], "sure vnlesse you send some present helpe betweene them they": [0, 65535], "vnlesse you send some present helpe betweene them they will": [0, 65535], "you send some present helpe betweene them they will kill": [0, 65535], "send some present helpe betweene them they will kill the": [0, 65535], "some present helpe betweene them they will kill the coniurer": [0, 65535], "present helpe betweene them they will kill the coniurer adr": [0, 65535], "helpe betweene them they will kill the coniurer adr peace": [0, 65535], "betweene them they will kill the coniurer adr peace foole": [0, 65535], "them they will kill the coniurer adr peace foole thy": [0, 65535], "they will kill the coniurer adr peace foole thy master": [0, 65535], "will kill the coniurer adr peace foole thy master and": [0, 65535], "kill the coniurer adr peace foole thy master and his": [0, 65535], "the coniurer adr peace foole thy master and his man": [0, 65535], "coniurer adr peace foole thy master and his man are": [0, 65535], "adr peace foole thy master and his man are here": [0, 65535], "peace foole thy master and his man are here and": [0, 65535], "foole thy master and his man are here and that": [0, 65535], "thy master and his man are here and that is": [0, 65535], "master and his man are here and that is false": [0, 65535], "and his man are here and that is false thou": [0, 65535], "his man are here and that is false thou dost": [0, 65535], "man are here and that is false thou dost report": [0, 65535], "are here and that is false thou dost report to": [0, 65535], "here and that is false thou dost report to vs": [0, 65535], "and that is false thou dost report to vs mess": [0, 65535], "that is false thou dost report to vs mess mistris": [0, 65535], "is false thou dost report to vs mess mistris vpon": [0, 65535], "false thou dost report to vs mess mistris vpon my": [0, 65535], "thou dost report to vs mess mistris vpon my life": [0, 65535], "dost report to vs mess mistris vpon my life i": [0, 65535], "report to vs mess mistris vpon my life i tel": [0, 65535], "to vs mess mistris vpon my life i tel you": [0, 65535], "vs mess mistris vpon my life i tel you true": [0, 65535], "mess mistris vpon my life i tel you true i": [0, 65535], "mistris vpon my life i tel you true i haue": [0, 65535], "vpon my life i tel you true i haue not": [0, 65535], "my life i tel you true i haue not breath'd": [0, 65535], "life i tel you true i haue not breath'd almost": [0, 65535], "i tel you true i haue not breath'd almost since": [0, 65535], "tel you true i haue not breath'd almost since i": [0, 65535], "you true i haue not breath'd almost since i did": [0, 65535], "true i haue not breath'd almost since i did see": [0, 65535], "i haue not breath'd almost since i did see it": [0, 65535], "haue not breath'd almost since i did see it he": [0, 65535], "not breath'd almost since i did see it he cries": [0, 65535], "breath'd almost since i did see it he cries for": [0, 65535], "almost since i did see it he cries for you": [0, 65535], "since i did see it he cries for you and": [0, 65535], "i did see it he cries for you and vowes": [0, 65535], "did see it he cries for you and vowes if": [0, 65535], "see it he cries for you and vowes if he": [0, 65535], "it he cries for you and vowes if he can": [0, 65535], "he cries for you and vowes if he can take": [0, 65535], "cries for you and vowes if he can take you": [0, 65535], "for you and vowes if he can take you to": [0, 65535], "you and vowes if he can take you to scorch": [0, 65535], "and vowes if he can take you to scorch your": [0, 65535], "vowes if he can take you to scorch your face": [0, 65535], "if he can take you to scorch your face and": [0, 65535], "he can take you to scorch your face and to": [0, 65535], "can take you to scorch your face and to disfigure": [0, 65535], "take you to scorch your face and to disfigure you": [0, 65535], "you to scorch your face and to disfigure you cry": [0, 65535], "to scorch your face and to disfigure you cry within": [0, 65535], "scorch your face and to disfigure you cry within harke": [0, 65535], "your face and to disfigure you cry within harke harke": [0, 65535], "face and to disfigure you cry within harke harke i": [0, 65535], "and to disfigure you cry within harke harke i heare": [0, 65535], "to disfigure you cry within harke harke i heare him": [0, 65535], "disfigure you cry within harke harke i heare him mistris": [0, 65535], "you cry within harke harke i heare him mistris flie": [0, 65535], "cry within harke harke i heare him mistris flie be": [0, 65535], "within harke harke i heare him mistris flie be gone": [0, 65535], "harke harke i heare him mistris flie be gone duke": [0, 65535], "harke i heare him mistris flie be gone duke come": [0, 65535], "i heare him mistris flie be gone duke come stand": [0, 65535], "heare him mistris flie be gone duke come stand by": [0, 65535], "him mistris flie be gone duke come stand by me": [0, 65535], "mistris flie be gone duke come stand by me feare": [0, 65535], "flie be gone duke come stand by me feare nothing": [0, 65535], "be gone duke come stand by me feare nothing guard": [0, 65535], "gone duke come stand by me feare nothing guard with": [0, 65535], "duke come stand by me feare nothing guard with halberds": [0, 65535], "come stand by me feare nothing guard with halberds adr": [0, 65535], "stand by me feare nothing guard with halberds adr ay": [0, 65535], "by me feare nothing guard with halberds adr ay me": [0, 65535], "me feare nothing guard with halberds adr ay me it": [0, 65535], "feare nothing guard with halberds adr ay me it is": [0, 65535], "nothing guard with halberds adr ay me it is my": [0, 65535], "guard with halberds adr ay me it is my husband": [0, 65535], "with halberds adr ay me it is my husband witnesse": [0, 65535], "halberds adr ay me it is my husband witnesse you": [0, 65535], "adr ay me it is my husband witnesse you that": [0, 65535], "ay me it is my husband witnesse you that he": [0, 65535], "me it is my husband witnesse you that he is": [0, 65535], "it is my husband witnesse you that he is borne": [0, 65535], "is my husband witnesse you that he is borne about": [0, 65535], "my husband witnesse you that he is borne about inuisible": [0, 65535], "husband witnesse you that he is borne about inuisible euen": [0, 65535], "witnesse you that he is borne about inuisible euen now": [0, 65535], "you that he is borne about inuisible euen now we": [0, 65535], "that he is borne about inuisible euen now we hous'd": [0, 65535], "he is borne about inuisible euen now we hous'd him": [0, 65535], "is borne about inuisible euen now we hous'd him in": [0, 65535], "borne about inuisible euen now we hous'd him in the": [0, 65535], "about inuisible euen now we hous'd him in the abbey": [0, 65535], "inuisible euen now we hous'd him in the abbey heere": [0, 65535], "euen now we hous'd him in the abbey heere and": [0, 65535], "now we hous'd him in the abbey heere and now": [0, 65535], "we hous'd him in the abbey heere and now he's": [0, 65535], "hous'd him in the abbey heere and now he's there": [0, 65535], "him in the abbey heere and now he's there past": [0, 65535], "in the abbey heere and now he's there past thought": [0, 65535], "the abbey heere and now he's there past thought of": [0, 65535], "abbey heere and now he's there past thought of humane": [0, 65535], "heere and now he's there past thought of humane reason": [0, 65535], "and now he's there past thought of humane reason enter": [0, 65535], "now he's there past thought of humane reason enter antipholus": [0, 65535], "he's there past thought of humane reason enter antipholus and": [0, 65535], "there past thought of humane reason enter antipholus and e": [0, 65535], "past thought of humane reason enter antipholus and e dromio": [0, 65535], "thought of humane reason enter antipholus and e dromio of": [0, 65535], "of humane reason enter antipholus and e dromio of ephesus": [0, 65535], "humane reason enter antipholus and e dromio of ephesus e": [0, 65535], "reason enter antipholus and e dromio of ephesus e ant": [0, 65535], "enter antipholus and e dromio of ephesus e ant iustice": [0, 65535], "antipholus and e dromio of ephesus e ant iustice most": [0, 65535], "and e dromio of ephesus e ant iustice most gracious": [0, 65535], "e dromio of ephesus e ant iustice most gracious duke": [0, 65535], "dromio of ephesus e ant iustice most gracious duke oh": [0, 65535], "of ephesus e ant iustice most gracious duke oh grant": [0, 65535], "ephesus e ant iustice most gracious duke oh grant me": [0, 65535], "e ant iustice most gracious duke oh grant me iustice": [0, 65535], "ant iustice most gracious duke oh grant me iustice euen": [0, 65535], "iustice most gracious duke oh grant me iustice euen for": [0, 65535], "most gracious duke oh grant me iustice euen for the": [0, 65535], "gracious duke oh grant me iustice euen for the seruice": [0, 65535], "duke oh grant me iustice euen for the seruice that": [0, 65535], "oh grant me iustice euen for the seruice that long": [0, 65535], "grant me iustice euen for the seruice that long since": [0, 65535], "me iustice euen for the seruice that long since i": [0, 65535], "iustice euen for the seruice that long since i did": [0, 65535], "euen for the seruice that long since i did thee": [0, 65535], "for the seruice that long since i did thee when": [0, 65535], "the seruice that long since i did thee when i": [0, 65535], "seruice that long since i did thee when i bestrid": [0, 65535], "that long since i did thee when i bestrid thee": [0, 65535], "long since i did thee when i bestrid thee in": [0, 65535], "since i did thee when i bestrid thee in the": [0, 65535], "i did thee when i bestrid thee in the warres": [0, 65535], "did thee when i bestrid thee in the warres and": [0, 65535], "thee when i bestrid thee in the warres and tooke": [0, 65535], "when i bestrid thee in the warres and tooke deepe": [0, 65535], "i bestrid thee in the warres and tooke deepe scarres": [0, 65535], "bestrid thee in the warres and tooke deepe scarres to": [0, 65535], "thee in the warres and tooke deepe scarres to saue": [0, 65535], "in the warres and tooke deepe scarres to saue thy": [0, 65535], "the warres and tooke deepe scarres to saue thy life": [0, 65535], "warres and tooke deepe scarres to saue thy life euen": [0, 65535], "and tooke deepe scarres to saue thy life euen for": [0, 65535], "tooke deepe scarres to saue thy life euen for the": [0, 65535], "deepe scarres to saue thy life euen for the blood": [0, 65535], "scarres to saue thy life euen for the blood that": [0, 65535], "to saue thy life euen for the blood that then": [0, 65535], "saue thy life euen for the blood that then i": [0, 65535], "thy life euen for the blood that then i lost": [0, 65535], "life euen for the blood that then i lost for": [0, 65535], "euen for the blood that then i lost for thee": [0, 65535], "for the blood that then i lost for thee now": [0, 65535], "the blood that then i lost for thee now grant": [0, 65535], "blood that then i lost for thee now grant me": [0, 65535], "that then i lost for thee now grant me iustice": [0, 65535], "then i lost for thee now grant me iustice mar": [0, 65535], "i lost for thee now grant me iustice mar fat": [0, 65535], "lost for thee now grant me iustice mar fat vnlesse": [0, 65535], "for thee now grant me iustice mar fat vnlesse the": [0, 65535], "thee now grant me iustice mar fat vnlesse the feare": [0, 65535], "now grant me iustice mar fat vnlesse the feare of": [0, 65535], "grant me iustice mar fat vnlesse the feare of death": [0, 65535], "me iustice mar fat vnlesse the feare of death doth": [0, 65535], "iustice mar fat vnlesse the feare of death doth make": [0, 65535], "mar fat vnlesse the feare of death doth make me": [0, 65535], "fat vnlesse the feare of death doth make me dote": [0, 65535], "vnlesse the feare of death doth make me dote i": [0, 65535], "the feare of death doth make me dote i see": [0, 65535], "feare of death doth make me dote i see my": [0, 65535], "of death doth make me dote i see my sonne": [0, 65535], "death doth make me dote i see my sonne antipholus": [0, 65535], "doth make me dote i see my sonne antipholus and": [0, 65535], "make me dote i see my sonne antipholus and dromio": [0, 65535], "me dote i see my sonne antipholus and dromio e": [0, 65535], "dote i see my sonne antipholus and dromio e ant": [0, 65535], "i see my sonne antipholus and dromio e ant iustice": [0, 65535], "see my sonne antipholus and dromio e ant iustice sweet": [0, 65535], "my sonne antipholus and dromio e ant iustice sweet prince": [0, 65535], "sonne antipholus and dromio e ant iustice sweet prince against": [0, 65535], "antipholus and dromio e ant iustice sweet prince against that": [0, 65535], "and dromio e ant iustice sweet prince against that woman": [0, 65535], "dromio e ant iustice sweet prince against that woman there": [0, 65535], "e ant iustice sweet prince against that woman there she": [0, 65535], "ant iustice sweet prince against that woman there she whom": [0, 65535], "iustice sweet prince against that woman there she whom thou": [0, 65535], "sweet prince against that woman there she whom thou gau'st": [0, 65535], "prince against that woman there she whom thou gau'st to": [0, 65535], "against that woman there she whom thou gau'st to me": [0, 65535], "that woman there she whom thou gau'st to me to": [0, 65535], "woman there she whom thou gau'st to me to be": [0, 65535], "there she whom thou gau'st to me to be my": [0, 65535], "she whom thou gau'st to me to be my wife": [0, 65535], "whom thou gau'st to me to be my wife that": [0, 65535], "thou gau'st to me to be my wife that hath": [0, 65535], "gau'st to me to be my wife that hath abused": [0, 65535], "to me to be my wife that hath abused and": [0, 65535], "me to be my wife that hath abused and dishonored": [0, 65535], "to be my wife that hath abused and dishonored me": [0, 65535], "be my wife that hath abused and dishonored me euen": [0, 65535], "my wife that hath abused and dishonored me euen in": [0, 65535], "wife that hath abused and dishonored me euen in the": [0, 65535], "that hath abused and dishonored me euen in the strength": [0, 65535], "hath abused and dishonored me euen in the strength and": [0, 65535], "abused and dishonored me euen in the strength and height": [0, 65535], "and dishonored me euen in the strength and height of": [0, 65535], "dishonored me euen in the strength and height of iniurie": [0, 65535], "me euen in the strength and height of iniurie beyond": [0, 65535], "euen in the strength and height of iniurie beyond imagination": [0, 65535], "in the strength and height of iniurie beyond imagination is": [0, 65535], "the strength and height of iniurie beyond imagination is the": [0, 65535], "strength and height of iniurie beyond imagination is the wrong": [0, 65535], "and height of iniurie beyond imagination is the wrong that": [0, 65535], "height of iniurie beyond imagination is the wrong that she": [0, 65535], "of iniurie beyond imagination is the wrong that she this": [0, 65535], "iniurie beyond imagination is the wrong that she this day": [0, 65535], "beyond imagination is the wrong that she this day hath": [0, 65535], "imagination is the wrong that she this day hath shamelesse": [0, 65535], "is the wrong that she this day hath shamelesse throwne": [0, 65535], "the wrong that she this day hath shamelesse throwne on": [0, 65535], "wrong that she this day hath shamelesse throwne on me": [0, 65535], "that she this day hath shamelesse throwne on me duke": [0, 65535], "she this day hath shamelesse throwne on me duke discouer": [0, 65535], "this day hath shamelesse throwne on me duke discouer how": [0, 65535], "day hath shamelesse throwne on me duke discouer how and": [0, 65535], "hath shamelesse throwne on me duke discouer how and thou": [0, 65535], "shamelesse throwne on me duke discouer how and thou shalt": [0, 65535], "throwne on me duke discouer how and thou shalt finde": [0, 65535], "on me duke discouer how and thou shalt finde me": [0, 65535], "me duke discouer how and thou shalt finde me iust": [0, 65535], "duke discouer how and thou shalt finde me iust e": [0, 65535], "discouer how and thou shalt finde me iust e ant": [0, 65535], "how and thou shalt finde me iust e ant this": [0, 65535], "and thou shalt finde me iust e ant this day": [0, 65535], "thou shalt finde me iust e ant this day great": [0, 65535], "shalt finde me iust e ant this day great duke": [0, 65535], "finde me iust e ant this day great duke she": [0, 65535], "me iust e ant this day great duke she shut": [0, 65535], "iust e ant this day great duke she shut the": [0, 65535], "e ant this day great duke she shut the doores": [0, 65535], "ant this day great duke she shut the doores vpon": [0, 65535], "this day great duke she shut the doores vpon me": [0, 65535], "day great duke she shut the doores vpon me while": [0, 65535], "great duke she shut the doores vpon me while she": [0, 65535], "duke she shut the doores vpon me while she with": [0, 65535], "she shut the doores vpon me while she with harlots": [0, 65535], "shut the doores vpon me while she with harlots feasted": [0, 65535], "the doores vpon me while she with harlots feasted in": [0, 65535], "doores vpon me while she with harlots feasted in my": [0, 65535], "vpon me while she with harlots feasted in my house": [0, 65535], "me while she with harlots feasted in my house duke": [0, 65535], "while she with harlots feasted in my house duke a": [0, 65535], "she with harlots feasted in my house duke a greeuous": [0, 65535], "with harlots feasted in my house duke a greeuous fault": [0, 65535], "harlots feasted in my house duke a greeuous fault say": [0, 65535], "feasted in my house duke a greeuous fault say woman": [0, 65535], "in my house duke a greeuous fault say woman didst": [0, 65535], "my house duke a greeuous fault say woman didst thou": [0, 65535], "house duke a greeuous fault say woman didst thou so": [0, 65535], "duke a greeuous fault say woman didst thou so adr": [0, 65535], "a greeuous fault say woman didst thou so adr no": [0, 65535], "greeuous fault say woman didst thou so adr no my": [0, 65535], "fault say woman didst thou so adr no my good": [0, 65535], "say woman didst thou so adr no my good lord": [0, 65535], "woman didst thou so adr no my good lord my": [0, 65535], "didst thou so adr no my good lord my selfe": [0, 65535], "thou so adr no my good lord my selfe he": [0, 65535], "so adr no my good lord my selfe he and": [0, 65535], "adr no my good lord my selfe he and my": [0, 65535], "no my good lord my selfe he and my sister": [0, 65535], "my good lord my selfe he and my sister to": [0, 65535], "good lord my selfe he and my sister to day": [0, 65535], "lord my selfe he and my sister to day did": [0, 65535], "my selfe he and my sister to day did dine": [0, 65535], "selfe he and my sister to day did dine together": [0, 65535], "he and my sister to day did dine together so": [0, 65535], "and my sister to day did dine together so befall": [0, 65535], "my sister to day did dine together so befall my": [0, 65535], "sister to day did dine together so befall my soule": [0, 65535], "to day did dine together so befall my soule as": [0, 65535], "day did dine together so befall my soule as this": [0, 65535], "did dine together so befall my soule as this is": [0, 65535], "dine together so befall my soule as this is false": [0, 65535], "together so befall my soule as this is false he": [0, 65535], "so befall my soule as this is false he burthens": [0, 65535], "befall my soule as this is false he burthens me": [0, 65535], "my soule as this is false he burthens me withall": [0, 65535], "soule as this is false he burthens me withall luc": [0, 65535], "as this is false he burthens me withall luc nere": [0, 65535], "this is false he burthens me withall luc nere may": [0, 65535], "is false he burthens me withall luc nere may i": [0, 65535], "false he burthens me withall luc nere may i looke": [0, 65535], "he burthens me withall luc nere may i looke on": [0, 65535], "burthens me withall luc nere may i looke on day": [0, 65535], "me withall luc nere may i looke on day nor": [0, 65535], "withall luc nere may i looke on day nor sleepe": [0, 65535], "luc nere may i looke on day nor sleepe on": [0, 65535], "nere may i looke on day nor sleepe on night": [0, 65535], "may i looke on day nor sleepe on night but": [0, 65535], "i looke on day nor sleepe on night but she": [0, 65535], "looke on day nor sleepe on night but she tels": [0, 65535], "on day nor sleepe on night but she tels to": [0, 65535], "day nor sleepe on night but she tels to your": [0, 65535], "nor sleepe on night but she tels to your highnesse": [0, 65535], "sleepe on night but she tels to your highnesse simple": [0, 65535], "on night but she tels to your highnesse simple truth": [0, 65535], "night but she tels to your highnesse simple truth gold": [0, 65535], "but she tels to your highnesse simple truth gold o": [0, 65535], "she tels to your highnesse simple truth gold o periur'd": [0, 65535], "tels to your highnesse simple truth gold o periur'd woman": [0, 65535], "to your highnesse simple truth gold o periur'd woman they": [0, 65535], "your highnesse simple truth gold o periur'd woman they are": [0, 65535], "highnesse simple truth gold o periur'd woman they are both": [0, 65535], "simple truth gold o periur'd woman they are both forsworne": [0, 65535], "truth gold o periur'd woman they are both forsworne in": [0, 65535], "gold o periur'd woman they are both forsworne in this": [0, 65535], "o periur'd woman they are both forsworne in this the": [0, 65535], "periur'd woman they are both forsworne in this the madman": [0, 65535], "woman they are both forsworne in this the madman iustly": [0, 65535], "they are both forsworne in this the madman iustly chargeth": [0, 65535], "are both forsworne in this the madman iustly chargeth them": [0, 65535], "both forsworne in this the madman iustly chargeth them e": [0, 65535], "forsworne in this the madman iustly chargeth them e ant": [0, 65535], "in this the madman iustly chargeth them e ant my": [0, 65535], "this the madman iustly chargeth them e ant my liege": [0, 65535], "the madman iustly chargeth them e ant my liege i": [0, 65535], "madman iustly chargeth them e ant my liege i am": [0, 65535], "iustly chargeth them e ant my liege i am aduised": [0, 65535], "chargeth them e ant my liege i am aduised what": [0, 65535], "them e ant my liege i am aduised what i": [0, 65535], "e ant my liege i am aduised what i say": [0, 65535], "ant my liege i am aduised what i say neither": [0, 65535], "my liege i am aduised what i say neither disturbed": [0, 65535], "liege i am aduised what i say neither disturbed with": [0, 65535], "i am aduised what i say neither disturbed with the": [0, 65535], "am aduised what i say neither disturbed with the effect": [0, 65535], "aduised what i say neither disturbed with the effect of": [0, 65535], "what i say neither disturbed with the effect of wine": [0, 65535], "i say neither disturbed with the effect of wine nor": [0, 65535], "say neither disturbed with the effect of wine nor headie": [0, 65535], "neither disturbed with the effect of wine nor headie rash": [0, 65535], "disturbed with the effect of wine nor headie rash prouoak'd": [0, 65535], "with the effect of wine nor headie rash prouoak'd with": [0, 65535], "the effect of wine nor headie rash prouoak'd with raging": [0, 65535], "effect of wine nor headie rash prouoak'd with raging ire": [0, 65535], "of wine nor headie rash prouoak'd with raging ire albeit": [0, 65535], "wine nor headie rash prouoak'd with raging ire albeit my": [0, 65535], "nor headie rash prouoak'd with raging ire albeit my wrongs": [0, 65535], "headie rash prouoak'd with raging ire albeit my wrongs might": [0, 65535], "rash prouoak'd with raging ire albeit my wrongs might make": [0, 65535], "prouoak'd with raging ire albeit my wrongs might make one": [0, 65535], "with raging ire albeit my wrongs might make one wiser": [0, 65535], "raging ire albeit my wrongs might make one wiser mad": [0, 65535], "ire albeit my wrongs might make one wiser mad this": [0, 65535], "albeit my wrongs might make one wiser mad this woman": [0, 65535], "my wrongs might make one wiser mad this woman lock'd": [0, 65535], "wrongs might make one wiser mad this woman lock'd me": [0, 65535], "might make one wiser mad this woman lock'd me out": [0, 65535], "make one wiser mad this woman lock'd me out this": [0, 65535], "one wiser mad this woman lock'd me out this day": [0, 65535], "wiser mad this woman lock'd me out this day from": [0, 65535], "mad this woman lock'd me out this day from dinner": [0, 65535], "this woman lock'd me out this day from dinner that": [0, 65535], "woman lock'd me out this day from dinner that goldsmith": [0, 65535], "lock'd me out this day from dinner that goldsmith there": [0, 65535], "me out this day from dinner that goldsmith there were": [0, 65535], "out this day from dinner that goldsmith there were he": [0, 65535], "this day from dinner that goldsmith there were he not": [0, 65535], "day from dinner that goldsmith there were he not pack'd": [0, 65535], "from dinner that goldsmith there were he not pack'd with": [0, 65535], "dinner that goldsmith there were he not pack'd with her": [0, 65535], "that goldsmith there were he not pack'd with her could": [0, 65535], "goldsmith there were he not pack'd with her could witnesse": [0, 65535], "there were he not pack'd with her could witnesse it": [0, 65535], "were he not pack'd with her could witnesse it for": [0, 65535], "he not pack'd with her could witnesse it for he": [0, 65535], "not pack'd with her could witnesse it for he was": [0, 65535], "pack'd with her could witnesse it for he was with": [0, 65535], "with her could witnesse it for he was with me": [0, 65535], "her could witnesse it for he was with me then": [0, 65535], "could witnesse it for he was with me then who": [0, 65535], "witnesse it for he was with me then who parted": [0, 65535], "it for he was with me then who parted with": [0, 65535], "for he was with me then who parted with me": [0, 65535], "he was with me then who parted with me to": [0, 65535], "was with me then who parted with me to go": [0, 65535], "with me then who parted with me to go fetch": [0, 65535], "me then who parted with me to go fetch a": [0, 65535], "then who parted with me to go fetch a chaine": [0, 65535], "who parted with me to go fetch a chaine promising": [0, 65535], "parted with me to go fetch a chaine promising to": [0, 65535], "with me to go fetch a chaine promising to bring": [0, 65535], "me to go fetch a chaine promising to bring it": [0, 65535], "to go fetch a chaine promising to bring it to": [0, 65535], "go fetch a chaine promising to bring it to the": [0, 65535], "fetch a chaine promising to bring it to the porpentine": [0, 65535], "a chaine promising to bring it to the porpentine where": [0, 65535], "chaine promising to bring it to the porpentine where balthasar": [0, 65535], "promising to bring it to the porpentine where balthasar and": [0, 65535], "to bring it to the porpentine where balthasar and i": [0, 65535], "bring it to the porpentine where balthasar and i did": [0, 65535], "it to the porpentine where balthasar and i did dine": [0, 65535], "to the porpentine where balthasar and i did dine together": [0, 65535], "the porpentine where balthasar and i did dine together our": [0, 65535], "porpentine where balthasar and i did dine together our dinner": [0, 65535], "where balthasar and i did dine together our dinner done": [0, 65535], "balthasar and i did dine together our dinner done and": [0, 65535], "and i did dine together our dinner done and he": [0, 65535], "i did dine together our dinner done and he not": [0, 65535], "did dine together our dinner done and he not comming": [0, 65535], "dine together our dinner done and he not comming thither": [0, 65535], "together our dinner done and he not comming thither i": [0, 65535], "our dinner done and he not comming thither i went": [0, 65535], "dinner done and he not comming thither i went to": [0, 65535], "done and he not comming thither i went to seeke": [0, 65535], "and he not comming thither i went to seeke him": [0, 65535], "he not comming thither i went to seeke him in": [0, 65535], "not comming thither i went to seeke him in the": [0, 65535], "comming thither i went to seeke him in the street": [0, 65535], "thither i went to seeke him in the street i": [0, 65535], "i went to seeke him in the street i met": [0, 65535], "went to seeke him in the street i met him": [0, 65535], "to seeke him in the street i met him and": [0, 65535], "seeke him in the street i met him and in": [0, 65535], "him in the street i met him and in his": [0, 65535], "in the street i met him and in his companie": [0, 65535], "the street i met him and in his companie that": [0, 65535], "street i met him and in his companie that gentleman": [0, 65535], "i met him and in his companie that gentleman there": [0, 65535], "met him and in his companie that gentleman there did": [0, 65535], "him and in his companie that gentleman there did this": [0, 65535], "and in his companie that gentleman there did this periur'd": [0, 65535], "in his companie that gentleman there did this periur'd goldsmith": [0, 65535], "his companie that gentleman there did this periur'd goldsmith sweare": [0, 65535], "companie that gentleman there did this periur'd goldsmith sweare me": [0, 65535], "that gentleman there did this periur'd goldsmith sweare me downe": [0, 65535], "gentleman there did this periur'd goldsmith sweare me downe that": [0, 65535], "there did this periur'd goldsmith sweare me downe that i": [0, 65535], "did this periur'd goldsmith sweare me downe that i this": [0, 65535], "this periur'd goldsmith sweare me downe that i this day": [0, 65535], "periur'd goldsmith sweare me downe that i this day of": [0, 65535], "goldsmith sweare me downe that i this day of him": [0, 65535], "sweare me downe that i this day of him receiu'd": [0, 65535], "me downe that i this day of him receiu'd the": [0, 65535], "downe that i this day of him receiu'd the chaine": [0, 65535], "that i this day of him receiu'd the chaine which": [0, 65535], "i this day of him receiu'd the chaine which god": [0, 65535], "this day of him receiu'd the chaine which god he": [0, 65535], "day of him receiu'd the chaine which god he knowes": [0, 65535], "of him receiu'd the chaine which god he knowes i": [0, 65535], "him receiu'd the chaine which god he knowes i saw": [0, 65535], "receiu'd the chaine which god he knowes i saw not": [0, 65535], "the chaine which god he knowes i saw not for": [0, 65535], "chaine which god he knowes i saw not for the": [0, 65535], "which god he knowes i saw not for the which": [0, 65535], "god he knowes i saw not for the which he": [0, 65535], "he knowes i saw not for the which he did": [0, 65535], "knowes i saw not for the which he did arrest": [0, 65535], "i saw not for the which he did arrest me": [0, 65535], "saw not for the which he did arrest me with": [0, 65535], "not for the which he did arrest me with an": [0, 65535], "for the which he did arrest me with an officer": [0, 65535], "the which he did arrest me with an officer i": [0, 65535], "which he did arrest me with an officer i did": [0, 65535], "he did arrest me with an officer i did obey": [0, 65535], "did arrest me with an officer i did obey and": [0, 65535], "arrest me with an officer i did obey and sent": [0, 65535], "me with an officer i did obey and sent my": [0, 65535], "with an officer i did obey and sent my pesant": [0, 65535], "an officer i did obey and sent my pesant home": [0, 65535], "officer i did obey and sent my pesant home for": [0, 65535], "i did obey and sent my pesant home for certaine": [0, 65535], "did obey and sent my pesant home for certaine duckets": [0, 65535], "obey and sent my pesant home for certaine duckets he": [0, 65535], "and sent my pesant home for certaine duckets he with": [0, 65535], "sent my pesant home for certaine duckets he with none": [0, 65535], "my pesant home for certaine duckets he with none return'd": [0, 65535], "pesant home for certaine duckets he with none return'd then": [0, 65535], "home for certaine duckets he with none return'd then fairely": [0, 65535], "for certaine duckets he with none return'd then fairely i": [0, 65535], "certaine duckets he with none return'd then fairely i bespoke": [0, 65535], "duckets he with none return'd then fairely i bespoke the": [0, 65535], "he with none return'd then fairely i bespoke the officer": [0, 65535], "with none return'd then fairely i bespoke the officer to": [0, 65535], "none return'd then fairely i bespoke the officer to go": [0, 65535], "return'd then fairely i bespoke the officer to go in": [0, 65535], "then fairely i bespoke the officer to go in person": [0, 65535], "fairely i bespoke the officer to go in person with": [0, 65535], "i bespoke the officer to go in person with me": [0, 65535], "bespoke the officer to go in person with me to": [0, 65535], "the officer to go in person with me to my": [0, 65535], "officer to go in person with me to my house": [0, 65535], "to go in person with me to my house by'th'": [0, 65535], "go in person with me to my house by'th' way": [0, 65535], "in person with me to my house by'th' way we": [0, 65535], "person with me to my house by'th' way we met": [0, 65535], "with me to my house by'th' way we met my": [0, 65535], "me to my house by'th' way we met my wife": [0, 65535], "to my house by'th' way we met my wife her": [0, 65535], "my house by'th' way we met my wife her sister": [0, 65535], "house by'th' way we met my wife her sister and": [0, 65535], "by'th' way we met my wife her sister and a": [0, 65535], "way we met my wife her sister and a rabble": [0, 65535], "we met my wife her sister and a rabble more": [0, 65535], "met my wife her sister and a rabble more of": [0, 65535], "my wife her sister and a rabble more of vilde": [0, 65535], "wife her sister and a rabble more of vilde confederates": [0, 65535], "her sister and a rabble more of vilde confederates along": [0, 65535], "sister and a rabble more of vilde confederates along with": [0, 65535], "and a rabble more of vilde confederates along with them": [0, 65535], "a rabble more of vilde confederates along with them they": [0, 65535], "rabble more of vilde confederates along with them they brought": [0, 65535], "more of vilde confederates along with them they brought one": [0, 65535], "of vilde confederates along with them they brought one pinch": [0, 65535], "vilde confederates along with them they brought one pinch a": [0, 65535], "confederates along with them they brought one pinch a hungry": [0, 65535], "along with them they brought one pinch a hungry leane": [0, 65535], "with them they brought one pinch a hungry leane fac'd": [0, 65535], "them they brought one pinch a hungry leane fac'd villaine": [0, 65535], "they brought one pinch a hungry leane fac'd villaine a": [0, 65535], "brought one pinch a hungry leane fac'd villaine a meere": [0, 65535], "one pinch a hungry leane fac'd villaine a meere anatomie": [0, 65535], "pinch a hungry leane fac'd villaine a meere anatomie a": [0, 65535], "a hungry leane fac'd villaine a meere anatomie a mountebanke": [0, 65535], "hungry leane fac'd villaine a meere anatomie a mountebanke a": [0, 65535], "leane fac'd villaine a meere anatomie a mountebanke a thred": [0, 65535], "fac'd villaine a meere anatomie a mountebanke a thred bare": [0, 65535], "villaine a meere anatomie a mountebanke a thred bare iugler": [0, 65535], "a meere anatomie a mountebanke a thred bare iugler and": [0, 65535], "meere anatomie a mountebanke a thred bare iugler and a": [0, 65535], "anatomie a mountebanke a thred bare iugler and a fortune": [0, 65535], "a mountebanke a thred bare iugler and a fortune teller": [0, 65535], "mountebanke a thred bare iugler and a fortune teller a": [0, 65535], "a thred bare iugler and a fortune teller a needy": [0, 65535], "thred bare iugler and a fortune teller a needy hollow": [0, 65535], "bare iugler and a fortune teller a needy hollow ey'd": [0, 65535], "iugler and a fortune teller a needy hollow ey'd sharpe": [0, 65535], "and a fortune teller a needy hollow ey'd sharpe looking": [0, 65535], "a fortune teller a needy hollow ey'd sharpe looking wretch": [0, 65535], "fortune teller a needy hollow ey'd sharpe looking wretch a": [0, 65535], "teller a needy hollow ey'd sharpe looking wretch a liuing": [0, 65535], "a needy hollow ey'd sharpe looking wretch a liuing dead": [0, 65535], "needy hollow ey'd sharpe looking wretch a liuing dead man": [0, 65535], "hollow ey'd sharpe looking wretch a liuing dead man this": [0, 65535], "ey'd sharpe looking wretch a liuing dead man this pernicious": [0, 65535], "sharpe looking wretch a liuing dead man this pernicious slaue": [0, 65535], "looking wretch a liuing dead man this pernicious slaue forsooth": [0, 65535], "wretch a liuing dead man this pernicious slaue forsooth tooke": [0, 65535], "a liuing dead man this pernicious slaue forsooth tooke on": [0, 65535], "liuing dead man this pernicious slaue forsooth tooke on him": [0, 65535], "dead man this pernicious slaue forsooth tooke on him as": [0, 65535], "man this pernicious slaue forsooth tooke on him as a": [0, 65535], "this pernicious slaue forsooth tooke on him as a coniurer": [0, 65535], "pernicious slaue forsooth tooke on him as a coniurer and": [0, 65535], "slaue forsooth tooke on him as a coniurer and gazing": [0, 65535], "forsooth tooke on him as a coniurer and gazing in": [0, 65535], "tooke on him as a coniurer and gazing in mine": [0, 65535], "on him as a coniurer and gazing in mine eyes": [0, 65535], "him as a coniurer and gazing in mine eyes feeling": [0, 65535], "as a coniurer and gazing in mine eyes feeling my": [0, 65535], "a coniurer and gazing in mine eyes feeling my pulse": [0, 65535], "coniurer and gazing in mine eyes feeling my pulse and": [0, 65535], "and gazing in mine eyes feeling my pulse and with": [0, 65535], "gazing in mine eyes feeling my pulse and with no": [0, 65535], "in mine eyes feeling my pulse and with no face": [0, 65535], "mine eyes feeling my pulse and with no face as": [0, 65535], "eyes feeling my pulse and with no face as 'twere": [0, 65535], "feeling my pulse and with no face as 'twere out": [0, 65535], "my pulse and with no face as 'twere out facing": [0, 65535], "pulse and with no face as 'twere out facing me": [0, 65535], "and with no face as 'twere out facing me cries": [0, 65535], "with no face as 'twere out facing me cries out": [0, 65535], "no face as 'twere out facing me cries out i": [0, 65535], "face as 'twere out facing me cries out i was": [0, 65535], "as 'twere out facing me cries out i was possest": [0, 65535], "'twere out facing me cries out i was possest then": [0, 65535], "out facing me cries out i was possest then altogether": [0, 65535], "facing me cries out i was possest then altogether they": [0, 65535], "me cries out i was possest then altogether they fell": [0, 65535], "cries out i was possest then altogether they fell vpon": [0, 65535], "out i was possest then altogether they fell vpon me": [0, 65535], "i was possest then altogether they fell vpon me bound": [0, 65535], "was possest then altogether they fell vpon me bound me": [0, 65535], "possest then altogether they fell vpon me bound me bore": [0, 65535], "then altogether they fell vpon me bound me bore me": [0, 65535], "altogether they fell vpon me bound me bore me thence": [0, 65535], "they fell vpon me bound me bore me thence and": [0, 65535], "fell vpon me bound me bore me thence and in": [0, 65535], "vpon me bound me bore me thence and in a": [0, 65535], "me bound me bore me thence and in a darke": [0, 65535], "bound me bore me thence and in a darke and": [0, 65535], "me bore me thence and in a darke and dankish": [0, 65535], "bore me thence and in a darke and dankish vault": [0, 65535], "me thence and in a darke and dankish vault at": [0, 65535], "thence and in a darke and dankish vault at home": [0, 65535], "and in a darke and dankish vault at home there": [0, 65535], "in a darke and dankish vault at home there left": [0, 65535], "a darke and dankish vault at home there left me": [0, 65535], "darke and dankish vault at home there left me and": [0, 65535], "and dankish vault at home there left me and my": [0, 65535], "dankish vault at home there left me and my man": [0, 65535], "vault at home there left me and my man both": [0, 65535], "at home there left me and my man both bound": [0, 65535], "home there left me and my man both bound together": [0, 65535], "there left me and my man both bound together till": [0, 65535], "left me and my man both bound together till gnawing": [0, 65535], "me and my man both bound together till gnawing with": [0, 65535], "and my man both bound together till gnawing with my": [0, 65535], "my man both bound together till gnawing with my teeth": [0, 65535], "man both bound together till gnawing with my teeth my": [0, 65535], "both bound together till gnawing with my teeth my bonds": [0, 65535], "bound together till gnawing with my teeth my bonds in": [0, 65535], "together till gnawing with my teeth my bonds in sunder": [0, 65535], "till gnawing with my teeth my bonds in sunder i": [0, 65535], "gnawing with my teeth my bonds in sunder i gain'd": [0, 65535], "with my teeth my bonds in sunder i gain'd my": [0, 65535], "my teeth my bonds in sunder i gain'd my freedome": [0, 65535], "teeth my bonds in sunder i gain'd my freedome and": [0, 65535], "my bonds in sunder i gain'd my freedome and immediately": [0, 65535], "bonds in sunder i gain'd my freedome and immediately ran": [0, 65535], "in sunder i gain'd my freedome and immediately ran hether": [0, 65535], "sunder i gain'd my freedome and immediately ran hether to": [0, 65535], "i gain'd my freedome and immediately ran hether to your": [0, 65535], "gain'd my freedome and immediately ran hether to your grace": [0, 65535], "my freedome and immediately ran hether to your grace whom": [0, 65535], "freedome and immediately ran hether to your grace whom i": [0, 65535], "and immediately ran hether to your grace whom i beseech": [0, 65535], "immediately ran hether to your grace whom i beseech to": [0, 65535], "ran hether to your grace whom i beseech to giue": [0, 65535], "hether to your grace whom i beseech to giue me": [0, 65535], "to your grace whom i beseech to giue me ample": [0, 65535], "your grace whom i beseech to giue me ample satisfaction": [0, 65535], "grace whom i beseech to giue me ample satisfaction for": [0, 65535], "whom i beseech to giue me ample satisfaction for these": [0, 65535], "i beseech to giue me ample satisfaction for these deepe": [0, 65535], "beseech to giue me ample satisfaction for these deepe shames": [0, 65535], "to giue me ample satisfaction for these deepe shames and": [0, 65535], "giue me ample satisfaction for these deepe shames and great": [0, 65535], "me ample satisfaction for these deepe shames and great indignities": [0, 65535], "ample satisfaction for these deepe shames and great indignities gold": [0, 65535], "satisfaction for these deepe shames and great indignities gold my": [0, 65535], "for these deepe shames and great indignities gold my lord": [0, 65535], "these deepe shames and great indignities gold my lord in": [0, 65535], "deepe shames and great indignities gold my lord in truth": [0, 65535], "shames and great indignities gold my lord in truth thus": [0, 65535], "and great indignities gold my lord in truth thus far": [0, 65535], "great indignities gold my lord in truth thus far i": [0, 65535], "indignities gold my lord in truth thus far i witnes": [0, 65535], "gold my lord in truth thus far i witnes with": [0, 65535], "my lord in truth thus far i witnes with him": [0, 65535], "lord in truth thus far i witnes with him that": [0, 65535], "in truth thus far i witnes with him that he": [0, 65535], "truth thus far i witnes with him that he din'd": [0, 65535], "thus far i witnes with him that he din'd not": [0, 65535], "far i witnes with him that he din'd not at": [0, 65535], "i witnes with him that he din'd not at home": [0, 65535], "witnes with him that he din'd not at home but": [0, 65535], "with him that he din'd not at home but was": [0, 65535], "him that he din'd not at home but was lock'd": [0, 65535], "that he din'd not at home but was lock'd out": [0, 65535], "he din'd not at home but was lock'd out duke": [0, 65535], "din'd not at home but was lock'd out duke but": [0, 65535], "not at home but was lock'd out duke but had": [0, 65535], "at home but was lock'd out duke but had he": [0, 65535], "home but was lock'd out duke but had he such": [0, 65535], "but was lock'd out duke but had he such a": [0, 65535], "was lock'd out duke but had he such a chaine": [0, 65535], "lock'd out duke but had he such a chaine of": [0, 65535], "out duke but had he such a chaine of thee": [0, 65535], "duke but had he such a chaine of thee or": [0, 65535], "but had he such a chaine of thee or no": [0, 65535], "had he such a chaine of thee or no gold": [0, 65535], "he such a chaine of thee or no gold he": [0, 65535], "such a chaine of thee or no gold he had": [0, 65535], "a chaine of thee or no gold he had my": [0, 65535], "chaine of thee or no gold he had my lord": [0, 65535], "of thee or no gold he had my lord and": [0, 65535], "thee or no gold he had my lord and when": [0, 65535], "or no gold he had my lord and when he": [0, 65535], "no gold he had my lord and when he ran": [0, 65535], "gold he had my lord and when he ran in": [0, 65535], "he had my lord and when he ran in heere": [0, 65535], "had my lord and when he ran in heere these": [0, 65535], "my lord and when he ran in heere these people": [0, 65535], "lord and when he ran in heere these people saw": [0, 65535], "and when he ran in heere these people saw the": [0, 65535], "when he ran in heere these people saw the chaine": [0, 65535], "he ran in heere these people saw the chaine about": [0, 65535], "ran in heere these people saw the chaine about his": [0, 65535], "in heere these people saw the chaine about his necke": [0, 65535], "heere these people saw the chaine about his necke mar": [0, 65535], "these people saw the chaine about his necke mar besides": [0, 65535], "people saw the chaine about his necke mar besides i": [0, 65535], "saw the chaine about his necke mar besides i will": [0, 65535], "the chaine about his necke mar besides i will be": [0, 65535], "chaine about his necke mar besides i will be sworne": [0, 65535], "about his necke mar besides i will be sworne these": [0, 65535], "his necke mar besides i will be sworne these eares": [0, 65535], "necke mar besides i will be sworne these eares of": [0, 65535], "mar besides i will be sworne these eares of mine": [0, 65535], "besides i will be sworne these eares of mine heard": [0, 65535], "i will be sworne these eares of mine heard you": [0, 65535], "will be sworne these eares of mine heard you confesse": [0, 65535], "be sworne these eares of mine heard you confesse you": [0, 65535], "sworne these eares of mine heard you confesse you had": [0, 65535], "these eares of mine heard you confesse you had the": [0, 65535], "eares of mine heard you confesse you had the chaine": [0, 65535], "of mine heard you confesse you had the chaine of": [0, 65535], "mine heard you confesse you had the chaine of him": [0, 65535], "heard you confesse you had the chaine of him after": [0, 65535], "you confesse you had the chaine of him after you": [0, 65535], "confesse you had the chaine of him after you first": [0, 65535], "you had the chaine of him after you first forswore": [0, 65535], "had the chaine of him after you first forswore it": [0, 65535], "the chaine of him after you first forswore it on": [0, 65535], "chaine of him after you first forswore it on the": [0, 65535], "of him after you first forswore it on the mart": [0, 65535], "him after you first forswore it on the mart and": [0, 65535], "after you first forswore it on the mart and thereupon": [0, 65535], "you first forswore it on the mart and thereupon i": [0, 65535], "first forswore it on the mart and thereupon i drew": [0, 65535], "forswore it on the mart and thereupon i drew my": [0, 65535], "it on the mart and thereupon i drew my sword": [0, 65535], "on the mart and thereupon i drew my sword on": [0, 65535], "the mart and thereupon i drew my sword on you": [0, 65535], "mart and thereupon i drew my sword on you and": [0, 65535], "and thereupon i drew my sword on you and then": [0, 65535], "thereupon i drew my sword on you and then you": [0, 65535], "i drew my sword on you and then you fled": [0, 65535], "drew my sword on you and then you fled into": [0, 65535], "my sword on you and then you fled into this": [0, 65535], "sword on you and then you fled into this abbey": [0, 65535], "on you and then you fled into this abbey heere": [0, 65535], "you and then you fled into this abbey heere from": [0, 65535], "and then you fled into this abbey heere from whence": [0, 65535], "then you fled into this abbey heere from whence i": [0, 65535], "you fled into this abbey heere from whence i thinke": [0, 65535], "fled into this abbey heere from whence i thinke you": [0, 65535], "into this abbey heere from whence i thinke you are": [0, 65535], "this abbey heere from whence i thinke you are come": [0, 65535], "abbey heere from whence i thinke you are come by": [0, 65535], "heere from whence i thinke you are come by miracle": [0, 65535], "from whence i thinke you are come by miracle e": [0, 65535], "whence i thinke you are come by miracle e ant": [0, 65535], "i thinke you are come by miracle e ant i": [0, 65535], "thinke you are come by miracle e ant i neuer": [0, 65535], "you are come by miracle e ant i neuer came": [0, 65535], "are come by miracle e ant i neuer came within": [0, 65535], "come by miracle e ant i neuer came within these": [0, 65535], "by miracle e ant i neuer came within these abbey": [0, 65535], "miracle e ant i neuer came within these abbey wals": [0, 65535], "e ant i neuer came within these abbey wals nor": [0, 65535], "ant i neuer came within these abbey wals nor euer": [0, 65535], "i neuer came within these abbey wals nor euer didst": [0, 65535], "neuer came within these abbey wals nor euer didst thou": [0, 65535], "came within these abbey wals nor euer didst thou draw": [0, 65535], "within these abbey wals nor euer didst thou draw thy": [0, 65535], "these abbey wals nor euer didst thou draw thy sword": [0, 65535], "abbey wals nor euer didst thou draw thy sword on": [0, 65535], "wals nor euer didst thou draw thy sword on me": [0, 65535], "nor euer didst thou draw thy sword on me i": [0, 65535], "euer didst thou draw thy sword on me i neuer": [0, 65535], "didst thou draw thy sword on me i neuer saw": [0, 65535], "thou draw thy sword on me i neuer saw the": [0, 65535], "draw thy sword on me i neuer saw the chaine": [0, 65535], "thy sword on me i neuer saw the chaine so": [0, 65535], "sword on me i neuer saw the chaine so helpe": [0, 65535], "on me i neuer saw the chaine so helpe me": [0, 65535], "me i neuer saw the chaine so helpe me heauen": [0, 65535], "i neuer saw the chaine so helpe me heauen and": [0, 65535], "neuer saw the chaine so helpe me heauen and this": [0, 65535], "saw the chaine so helpe me heauen and this is": [0, 65535], "the chaine so helpe me heauen and this is false": [0, 65535], "chaine so helpe me heauen and this is false you": [0, 65535], "so helpe me heauen and this is false you burthen": [0, 65535], "helpe me heauen and this is false you burthen me": [0, 65535], "me heauen and this is false you burthen me withall": [0, 65535], "heauen and this is false you burthen me withall duke": [0, 65535], "and this is false you burthen me withall duke why": [0, 65535], "this is false you burthen me withall duke why what": [0, 65535], "is false you burthen me withall duke why what an": [0, 65535], "false you burthen me withall duke why what an intricate": [0, 65535], "you burthen me withall duke why what an intricate impeach": [0, 65535], "burthen me withall duke why what an intricate impeach is": [0, 65535], "me withall duke why what an intricate impeach is this": [0, 65535], "withall duke why what an intricate impeach is this i": [0, 65535], "duke why what an intricate impeach is this i thinke": [0, 65535], "why what an intricate impeach is this i thinke you": [0, 65535], "what an intricate impeach is this i thinke you all": [0, 65535], "an intricate impeach is this i thinke you all haue": [0, 65535], "intricate impeach is this i thinke you all haue drunke": [0, 65535], "impeach is this i thinke you all haue drunke of": [0, 65535], "is this i thinke you all haue drunke of circes": [0, 65535], "this i thinke you all haue drunke of circes cup": [0, 65535], "i thinke you all haue drunke of circes cup if": [0, 65535], "thinke you all haue drunke of circes cup if heere": [0, 65535], "you all haue drunke of circes cup if heere you": [0, 65535], "all haue drunke of circes cup if heere you hous'd": [0, 65535], "haue drunke of circes cup if heere you hous'd him": [0, 65535], "drunke of circes cup if heere you hous'd him heere": [0, 65535], "of circes cup if heere you hous'd him heere he": [0, 65535], "circes cup if heere you hous'd him heere he would": [0, 65535], "cup if heere you hous'd him heere he would haue": [0, 65535], "if heere you hous'd him heere he would haue bin": [0, 65535], "heere you hous'd him heere he would haue bin if": [0, 65535], "you hous'd him heere he would haue bin if he": [0, 65535], "hous'd him heere he would haue bin if he were": [0, 65535], "him heere he would haue bin if he were mad": [0, 65535], "heere he would haue bin if he were mad he": [0, 65535], "he would haue bin if he were mad he would": [0, 65535], "would haue bin if he were mad he would not": [0, 65535], "haue bin if he were mad he would not pleade": [0, 65535], "bin if he were mad he would not pleade so": [0, 65535], "if he were mad he would not pleade so coldly": [0, 65535], "he were mad he would not pleade so coldly you": [0, 65535], "were mad he would not pleade so coldly you say": [0, 65535], "mad he would not pleade so coldly you say he": [0, 65535], "he would not pleade so coldly you say he din'd": [0, 65535], "would not pleade so coldly you say he din'd at": [0, 65535], "not pleade so coldly you say he din'd at home": [0, 65535], "pleade so coldly you say he din'd at home the": [0, 65535], "so coldly you say he din'd at home the goldsmith": [0, 65535], "coldly you say he din'd at home the goldsmith heere": [0, 65535], "you say he din'd at home the goldsmith heere denies": [0, 65535], "say he din'd at home the goldsmith heere denies that": [0, 65535], "he din'd at home the goldsmith heere denies that saying": [0, 65535], "din'd at home the goldsmith heere denies that saying sirra": [0, 65535], "at home the goldsmith heere denies that saying sirra what": [0, 65535], "home the goldsmith heere denies that saying sirra what say": [0, 65535], "the goldsmith heere denies that saying sirra what say you": [0, 65535], "goldsmith heere denies that saying sirra what say you e": [0, 65535], "heere denies that saying sirra what say you e dro": [0, 65535], "denies that saying sirra what say you e dro sir": [0, 65535], "that saying sirra what say you e dro sir he": [0, 65535], "saying sirra what say you e dro sir he din'de": [0, 65535], "sirra what say you e dro sir he din'de with": [0, 65535], "what say you e dro sir he din'de with her": [0, 65535], "say you e dro sir he din'de with her there": [0, 65535], "you e dro sir he din'de with her there at": [0, 65535], "e dro sir he din'de with her there at the": [0, 65535], "dro sir he din'de with her there at the porpentine": [0, 65535], "sir he din'de with her there at the porpentine cur": [0, 65535], "he din'de with her there at the porpentine cur he": [0, 65535], "din'de with her there at the porpentine cur he did": [0, 65535], "with her there at the porpentine cur he did and": [0, 65535], "her there at the porpentine cur he did and from": [0, 65535], "there at the porpentine cur he did and from my": [0, 65535], "at the porpentine cur he did and from my finger": [0, 65535], "the porpentine cur he did and from my finger snacht": [0, 65535], "porpentine cur he did and from my finger snacht that": [0, 65535], "cur he did and from my finger snacht that ring": [0, 65535], "he did and from my finger snacht that ring e": [0, 65535], "did and from my finger snacht that ring e anti": [0, 65535], "and from my finger snacht that ring e anti tis": [0, 65535], "from my finger snacht that ring e anti tis true": [0, 65535], "my finger snacht that ring e anti tis true my": [0, 65535], "finger snacht that ring e anti tis true my liege": [0, 65535], "snacht that ring e anti tis true my liege this": [0, 65535], "that ring e anti tis true my liege this ring": [0, 65535], "ring e anti tis true my liege this ring i": [0, 65535], "e anti tis true my liege this ring i had": [0, 65535], "anti tis true my liege this ring i had of": [0, 65535], "tis true my liege this ring i had of her": [0, 65535], "true my liege this ring i had of her duke": [0, 65535], "my liege this ring i had of her duke saw'st": [0, 65535], "liege this ring i had of her duke saw'st thou": [0, 65535], "this ring i had of her duke saw'st thou him": [0, 65535], "ring i had of her duke saw'st thou him enter": [0, 65535], "i had of her duke saw'st thou him enter at": [0, 65535], "had of her duke saw'st thou him enter at the": [0, 65535], "of her duke saw'st thou him enter at the abbey": [0, 65535], "her duke saw'st thou him enter at the abbey heere": [0, 65535], "duke saw'st thou him enter at the abbey heere curt": [0, 65535], "saw'st thou him enter at the abbey heere curt as": [0, 65535], "thou him enter at the abbey heere curt as sure": [0, 65535], "him enter at the abbey heere curt as sure my": [0, 65535], "enter at the abbey heere curt as sure my liege": [0, 65535], "at the abbey heere curt as sure my liege as": [0, 65535], "the abbey heere curt as sure my liege as i": [0, 65535], "abbey heere curt as sure my liege as i do": [0, 65535], "heere curt as sure my liege as i do see": [0, 65535], "curt as sure my liege as i do see your": [0, 65535], "as sure my liege as i do see your grace": [0, 65535], "sure my liege as i do see your grace duke": [0, 65535], "my liege as i do see your grace duke why": [0, 65535], "liege as i do see your grace duke why this": [0, 65535], "as i do see your grace duke why this is": [0, 65535], "i do see your grace duke why this is straunge": [0, 65535], "do see your grace duke why this is straunge go": [0, 65535], "see your grace duke why this is straunge go call": [0, 65535], "your grace duke why this is straunge go call the": [0, 65535], "grace duke why this is straunge go call the abbesse": [0, 65535], "duke why this is straunge go call the abbesse hither": [0, 65535], "why this is straunge go call the abbesse hither i": [0, 65535], "this is straunge go call the abbesse hither i thinke": [0, 65535], "is straunge go call the abbesse hither i thinke you": [0, 65535], "straunge go call the abbesse hither i thinke you are": [0, 65535], "go call the abbesse hither i thinke you are all": [0, 65535], "call the abbesse hither i thinke you are all mated": [0, 65535], "the abbesse hither i thinke you are all mated or": [0, 65535], "abbesse hither i thinke you are all mated or starke": [0, 65535], "hither i thinke you are all mated or starke mad": [0, 65535], "i thinke you are all mated or starke mad exit": [0, 65535], "thinke you are all mated or starke mad exit one": [0, 65535], "you are all mated or starke mad exit one to": [0, 65535], "are all mated or starke mad exit one to the": [0, 65535], "all mated or starke mad exit one to the abbesse": [0, 65535], "mated or starke mad exit one to the abbesse fa": [0, 65535], "or starke mad exit one to the abbesse fa most": [0, 65535], "starke mad exit one to the abbesse fa most mighty": [0, 65535], "mad exit one to the abbesse fa most mighty duke": [0, 65535], "exit one to the abbesse fa most mighty duke vouchsafe": [0, 65535], "one to the abbesse fa most mighty duke vouchsafe me": [0, 65535], "to the abbesse fa most mighty duke vouchsafe me speak": [0, 65535], "the abbesse fa most mighty duke vouchsafe me speak a": [0, 65535], "abbesse fa most mighty duke vouchsafe me speak a word": [0, 65535], "fa most mighty duke vouchsafe me speak a word haply": [0, 65535], "most mighty duke vouchsafe me speak a word haply i": [0, 65535], "mighty duke vouchsafe me speak a word haply i see": [0, 65535], "duke vouchsafe me speak a word haply i see a": [0, 65535], "vouchsafe me speak a word haply i see a friend": [0, 65535], "me speak a word haply i see a friend will": [0, 65535], "speak a word haply i see a friend will saue": [0, 65535], "a word haply i see a friend will saue my": [0, 65535], "word haply i see a friend will saue my life": [0, 65535], "haply i see a friend will saue my life and": [0, 65535], "i see a friend will saue my life and pay": [0, 65535], "see a friend will saue my life and pay the": [0, 65535], "a friend will saue my life and pay the sum": [0, 65535], "friend will saue my life and pay the sum that": [0, 65535], "will saue my life and pay the sum that may": [0, 65535], "saue my life and pay the sum that may deliuer": [0, 65535], "my life and pay the sum that may deliuer me": [0, 65535], "life and pay the sum that may deliuer me duke": [0, 65535], "and pay the sum that may deliuer me duke speake": [0, 65535], "pay the sum that may deliuer me duke speake freely": [0, 65535], "the sum that may deliuer me duke speake freely siracusian": [0, 65535], "sum that may deliuer me duke speake freely siracusian what": [0, 65535], "that may deliuer me duke speake freely siracusian what thou": [0, 65535], "may deliuer me duke speake freely siracusian what thou wilt": [0, 65535], "deliuer me duke speake freely siracusian what thou wilt fath": [0, 65535], "me duke speake freely siracusian what thou wilt fath is": [0, 65535], "duke speake freely siracusian what thou wilt fath is not": [0, 65535], "speake freely siracusian what thou wilt fath is not your": [0, 65535], "freely siracusian what thou wilt fath is not your name": [0, 65535], "siracusian what thou wilt fath is not your name sir": [0, 65535], "what thou wilt fath is not your name sir call'd": [0, 65535], "thou wilt fath is not your name sir call'd antipholus": [0, 65535], "wilt fath is not your name sir call'd antipholus and": [0, 65535], "fath is not your name sir call'd antipholus and is": [0, 65535], "is not your name sir call'd antipholus and is not": [0, 65535], "not your name sir call'd antipholus and is not that": [0, 65535], "your name sir call'd antipholus and is not that your": [0, 65535], "name sir call'd antipholus and is not that your bondman": [0, 65535], "sir call'd antipholus and is not that your bondman dromio": [0, 65535], "call'd antipholus and is not that your bondman dromio e": [0, 65535], "antipholus and is not that your bondman dromio e dro": [0, 65535], "and is not that your bondman dromio e dro within": [0, 65535], "is not that your bondman dromio e dro within this": [0, 65535], "not that your bondman dromio e dro within this houre": [0, 65535], "that your bondman dromio e dro within this houre i": [0, 65535], "your bondman dromio e dro within this houre i was": [0, 65535], "bondman dromio e dro within this houre i was his": [0, 65535], "dromio e dro within this houre i was his bondman": [0, 65535], "e dro within this houre i was his bondman sir": [0, 65535], "dro within this houre i was his bondman sir but": [0, 65535], "within this houre i was his bondman sir but he": [0, 65535], "this houre i was his bondman sir but he i": [0, 65535], "houre i was his bondman sir but he i thanke": [0, 65535], "i was his bondman sir but he i thanke him": [0, 65535], "was his bondman sir but he i thanke him gnaw'd": [0, 65535], "his bondman sir but he i thanke him gnaw'd in": [0, 65535], "bondman sir but he i thanke him gnaw'd in two": [0, 65535], "sir but he i thanke him gnaw'd in two my": [0, 65535], "but he i thanke him gnaw'd in two my cords": [0, 65535], "he i thanke him gnaw'd in two my cords now": [0, 65535], "i thanke him gnaw'd in two my cords now am": [0, 65535], "thanke him gnaw'd in two my cords now am i": [0, 65535], "him gnaw'd in two my cords now am i dromio": [0, 65535], "gnaw'd in two my cords now am i dromio and": [0, 65535], "in two my cords now am i dromio and his": [0, 65535], "two my cords now am i dromio and his man": [0, 65535], "my cords now am i dromio and his man vnbound": [0, 65535], "cords now am i dromio and his man vnbound fath": [0, 65535], "now am i dromio and his man vnbound fath i": [0, 65535], "am i dromio and his man vnbound fath i am": [0, 65535], "i dromio and his man vnbound fath i am sure": [0, 65535], "dromio and his man vnbound fath i am sure you": [0, 65535], "and his man vnbound fath i am sure you both": [0, 65535], "his man vnbound fath i am sure you both of": [0, 65535], "man vnbound fath i am sure you both of you": [0, 65535], "vnbound fath i am sure you both of you remember": [0, 65535], "fath i am sure you both of you remember me": [0, 65535], "i am sure you both of you remember me dro": [0, 65535], "am sure you both of you remember me dro our": [0, 65535], "sure you both of you remember me dro our selues": [0, 65535], "you both of you remember me dro our selues we": [0, 65535], "both of you remember me dro our selues we do": [0, 65535], "of you remember me dro our selues we do remember": [0, 65535], "you remember me dro our selues we do remember sir": [0, 65535], "remember me dro our selues we do remember sir by": [0, 65535], "me dro our selues we do remember sir by you": [0, 65535], "dro our selues we do remember sir by you for": [0, 65535], "our selues we do remember sir by you for lately": [0, 65535], "selues we do remember sir by you for lately we": [0, 65535], "we do remember sir by you for lately we were": [0, 65535], "do remember sir by you for lately we were bound": [0, 65535], "remember sir by you for lately we were bound as": [0, 65535], "sir by you for lately we were bound as you": [0, 65535], "by you for lately we were bound as you are": [0, 65535], "you for lately we were bound as you are now": [0, 65535], "for lately we were bound as you are now you": [0, 65535], "lately we were bound as you are now you are": [0, 65535], "we were bound as you are now you are not": [0, 65535], "were bound as you are now you are not pinches": [0, 65535], "bound as you are now you are not pinches patient": [0, 65535], "as you are now you are not pinches patient are": [0, 65535], "you are now you are not pinches patient are you": [0, 65535], "are now you are not pinches patient are you sir": [0, 65535], "now you are not pinches patient are you sir father": [0, 65535], "you are not pinches patient are you sir father why": [0, 65535], "are not pinches patient are you sir father why looke": [0, 65535], "not pinches patient are you sir father why looke you": [0, 65535], "pinches patient are you sir father why looke you strange": [0, 65535], "patient are you sir father why looke you strange on": [0, 65535], "are you sir father why looke you strange on me": [0, 65535], "you sir father why looke you strange on me you": [0, 65535], "sir father why looke you strange on me you know": [0, 65535], "father why looke you strange on me you know me": [0, 65535], "why looke you strange on me you know me well": [0, 65535], "looke you strange on me you know me well e": [0, 65535], "you strange on me you know me well e ant": [0, 65535], "strange on me you know me well e ant i": [0, 65535], "on me you know me well e ant i neuer": [0, 65535], "me you know me well e ant i neuer saw": [0, 65535], "you know me well e ant i neuer saw you": [0, 65535], "know me well e ant i neuer saw you in": [0, 65535], "me well e ant i neuer saw you in my": [0, 65535], "well e ant i neuer saw you in my life": [0, 65535], "e ant i neuer saw you in my life till": [0, 65535], "ant i neuer saw you in my life till now": [0, 65535], "i neuer saw you in my life till now fa": [0, 65535], "neuer saw you in my life till now fa oh": [0, 65535], "saw you in my life till now fa oh griefe": [0, 65535], "you in my life till now fa oh griefe hath": [0, 65535], "in my life till now fa oh griefe hath chang'd": [0, 65535], "my life till now fa oh griefe hath chang'd me": [0, 65535], "life till now fa oh griefe hath chang'd me since": [0, 65535], "till now fa oh griefe hath chang'd me since you": [0, 65535], "now fa oh griefe hath chang'd me since you saw": [0, 65535], "fa oh griefe hath chang'd me since you saw me": [0, 65535], "oh griefe hath chang'd me since you saw me last": [0, 65535], "griefe hath chang'd me since you saw me last and": [0, 65535], "hath chang'd me since you saw me last and carefull": [0, 65535], "chang'd me since you saw me last and carefull houres": [0, 65535], "me since you saw me last and carefull houres with": [0, 65535], "since you saw me last and carefull houres with times": [0, 65535], "you saw me last and carefull houres with times deformed": [0, 65535], "saw me last and carefull houres with times deformed hand": [0, 65535], "me last and carefull houres with times deformed hand haue": [0, 65535], "last and carefull houres with times deformed hand haue written": [0, 65535], "and carefull houres with times deformed hand haue written strange": [0, 65535], "carefull houres with times deformed hand haue written strange defeatures": [0, 65535], "houres with times deformed hand haue written strange defeatures in": [0, 65535], "with times deformed hand haue written strange defeatures in my": [0, 65535], "times deformed hand haue written strange defeatures in my face": [0, 65535], "deformed hand haue written strange defeatures in my face but": [0, 65535], "hand haue written strange defeatures in my face but tell": [0, 65535], "haue written strange defeatures in my face but tell me": [0, 65535], "written strange defeatures in my face but tell me yet": [0, 65535], "strange defeatures in my face but tell me yet dost": [0, 65535], "defeatures in my face but tell me yet dost thou": [0, 65535], "in my face but tell me yet dost thou not": [0, 65535], "my face but tell me yet dost thou not know": [0, 65535], "face but tell me yet dost thou not know my": [0, 65535], "but tell me yet dost thou not know my voice": [0, 65535], "tell me yet dost thou not know my voice ant": [0, 65535], "me yet dost thou not know my voice ant neither": [0, 65535], "yet dost thou not know my voice ant neither fat": [0, 65535], "dost thou not know my voice ant neither fat dromio": [0, 65535], "thou not know my voice ant neither fat dromio nor": [0, 65535], "not know my voice ant neither fat dromio nor thou": [0, 65535], "know my voice ant neither fat dromio nor thou dro": [0, 65535], "my voice ant neither fat dromio nor thou dro no": [0, 65535], "voice ant neither fat dromio nor thou dro no trust": [0, 65535], "ant neither fat dromio nor thou dro no trust me": [0, 65535], "neither fat dromio nor thou dro no trust me sir": [0, 65535], "fat dromio nor thou dro no trust me sir nor": [0, 65535], "dromio nor thou dro no trust me sir nor i": [0, 65535], "nor thou dro no trust me sir nor i fa": [0, 65535], "thou dro no trust me sir nor i fa i": [0, 65535], "dro no trust me sir nor i fa i am": [0, 65535], "no trust me sir nor i fa i am sure": [0, 65535], "trust me sir nor i fa i am sure thou": [0, 65535], "me sir nor i fa i am sure thou dost": [0, 65535], "sir nor i fa i am sure thou dost e": [0, 65535], "nor i fa i am sure thou dost e dromio": [0, 65535], "i fa i am sure thou dost e dromio i": [0, 65535], "fa i am sure thou dost e dromio i sir": [0, 65535], "i am sure thou dost e dromio i sir but": [0, 65535], "am sure thou dost e dromio i sir but i": [0, 65535], "sure thou dost e dromio i sir but i am": [0, 65535], "thou dost e dromio i sir but i am sure": [0, 65535], "dost e dromio i sir but i am sure i": [0, 65535], "e dromio i sir but i am sure i do": [0, 65535], "dromio i sir but i am sure i do not": [0, 65535], "i sir but i am sure i do not and": [0, 65535], "sir but i am sure i do not and whatsoeuer": [0, 65535], "but i am sure i do not and whatsoeuer a": [0, 65535], "i am sure i do not and whatsoeuer a man": [0, 65535], "am sure i do not and whatsoeuer a man denies": [0, 65535], "sure i do not and whatsoeuer a man denies you": [0, 65535], "i do not and whatsoeuer a man denies you are": [0, 65535], "do not and whatsoeuer a man denies you are now": [0, 65535], "not and whatsoeuer a man denies you are now bound": [0, 65535], "and whatsoeuer a man denies you are now bound to": [0, 65535], "whatsoeuer a man denies you are now bound to beleeue": [0, 65535], "a man denies you are now bound to beleeue him": [0, 65535], "man denies you are now bound to beleeue him fath": [0, 65535], "denies you are now bound to beleeue him fath not": [0, 65535], "you are now bound to beleeue him fath not know": [0, 65535], "are now bound to beleeue him fath not know my": [0, 65535], "now bound to beleeue him fath not know my voice": [0, 65535], "bound to beleeue him fath not know my voice oh": [0, 65535], "to beleeue him fath not know my voice oh times": [0, 65535], "beleeue him fath not know my voice oh times extremity": [0, 65535], "him fath not know my voice oh times extremity hast": [0, 65535], "fath not know my voice oh times extremity hast thou": [0, 65535], "not know my voice oh times extremity hast thou so": [0, 65535], "know my voice oh times extremity hast thou so crack'd": [0, 65535], "my voice oh times extremity hast thou so crack'd and": [0, 65535], "voice oh times extremity hast thou so crack'd and splitted": [0, 65535], "oh times extremity hast thou so crack'd and splitted my": [0, 65535], "times extremity hast thou so crack'd and splitted my poore": [0, 65535], "extremity hast thou so crack'd and splitted my poore tongue": [0, 65535], "hast thou so crack'd and splitted my poore tongue in": [0, 65535], "thou so crack'd and splitted my poore tongue in seuen": [0, 65535], "so crack'd and splitted my poore tongue in seuen short": [0, 65535], "crack'd and splitted my poore tongue in seuen short yeares": [0, 65535], "and splitted my poore tongue in seuen short yeares that": [0, 65535], "splitted my poore tongue in seuen short yeares that heere": [0, 65535], "my poore tongue in seuen short yeares that heere my": [0, 65535], "poore tongue in seuen short yeares that heere my onely": [0, 65535], "tongue in seuen short yeares that heere my onely sonne": [0, 65535], "in seuen short yeares that heere my onely sonne knowes": [0, 65535], "seuen short yeares that heere my onely sonne knowes not": [0, 65535], "short yeares that heere my onely sonne knowes not my": [0, 65535], "yeares that heere my onely sonne knowes not my feeble": [0, 65535], "that heere my onely sonne knowes not my feeble key": [0, 65535], "heere my onely sonne knowes not my feeble key of": [0, 65535], "my onely sonne knowes not my feeble key of vntun'd": [0, 65535], "onely sonne knowes not my feeble key of vntun'd cares": [0, 65535], "sonne knowes not my feeble key of vntun'd cares though": [0, 65535], "knowes not my feeble key of vntun'd cares though now": [0, 65535], "not my feeble key of vntun'd cares though now this": [0, 65535], "my feeble key of vntun'd cares though now this grained": [0, 65535], "feeble key of vntun'd cares though now this grained face": [0, 65535], "key of vntun'd cares though now this grained face of": [0, 65535], "of vntun'd cares though now this grained face of mine": [0, 65535], "vntun'd cares though now this grained face of mine be": [0, 65535], "cares though now this grained face of mine be hid": [0, 65535], "though now this grained face of mine be hid in": [0, 65535], "now this grained face of mine be hid in sap": [0, 65535], "this grained face of mine be hid in sap consuming": [0, 65535], "grained face of mine be hid in sap consuming winters": [0, 65535], "face of mine be hid in sap consuming winters drizled": [0, 65535], "of mine be hid in sap consuming winters drizled snow": [0, 65535], "mine be hid in sap consuming winters drizled snow and": [0, 65535], "be hid in sap consuming winters drizled snow and all": [0, 65535], "hid in sap consuming winters drizled snow and all the": [0, 65535], "in sap consuming winters drizled snow and all the conduits": [0, 65535], "sap consuming winters drizled snow and all the conduits of": [0, 65535], "consuming winters drizled snow and all the conduits of my": [0, 65535], "winters drizled snow and all the conduits of my blood": [0, 65535], "drizled snow and all the conduits of my blood froze": [0, 65535], "snow and all the conduits of my blood froze vp": [0, 65535], "and all the conduits of my blood froze vp yet": [0, 65535], "all the conduits of my blood froze vp yet hath": [0, 65535], "the conduits of my blood froze vp yet hath my": [0, 65535], "conduits of my blood froze vp yet hath my night": [0, 65535], "of my blood froze vp yet hath my night of": [0, 65535], "my blood froze vp yet hath my night of life": [0, 65535], "blood froze vp yet hath my night of life some": [0, 65535], "froze vp yet hath my night of life some memorie": [0, 65535], "vp yet hath my night of life some memorie my": [0, 65535], "yet hath my night of life some memorie my wasting": [0, 65535], "hath my night of life some memorie my wasting lampes": [0, 65535], "my night of life some memorie my wasting lampes some": [0, 65535], "night of life some memorie my wasting lampes some fading": [0, 65535], "of life some memorie my wasting lampes some fading glimmer": [0, 65535], "life some memorie my wasting lampes some fading glimmer left": [0, 65535], "some memorie my wasting lampes some fading glimmer left my": [0, 65535], "memorie my wasting lampes some fading glimmer left my dull": [0, 65535], "my wasting lampes some fading glimmer left my dull deafe": [0, 65535], "wasting lampes some fading glimmer left my dull deafe eares": [0, 65535], "lampes some fading glimmer left my dull deafe eares a": [0, 65535], "some fading glimmer left my dull deafe eares a little": [0, 65535], "fading glimmer left my dull deafe eares a little vse": [0, 65535], "glimmer left my dull deafe eares a little vse to": [0, 65535], "left my dull deafe eares a little vse to heare": [0, 65535], "my dull deafe eares a little vse to heare all": [0, 65535], "dull deafe eares a little vse to heare all these": [0, 65535], "deafe eares a little vse to heare all these old": [0, 65535], "eares a little vse to heare all these old witnesses": [0, 65535], "a little vse to heare all these old witnesses i": [0, 65535], "little vse to heare all these old witnesses i cannot": [0, 65535], "vse to heare all these old witnesses i cannot erre": [0, 65535], "to heare all these old witnesses i cannot erre tell": [0, 65535], "heare all these old witnesses i cannot erre tell me": [0, 65535], "all these old witnesses i cannot erre tell me thou": [0, 65535], "these old witnesses i cannot erre tell me thou art": [0, 65535], "old witnesses i cannot erre tell me thou art my": [0, 65535], "witnesses i cannot erre tell me thou art my sonne": [0, 65535], "i cannot erre tell me thou art my sonne antipholus": [0, 65535], "cannot erre tell me thou art my sonne antipholus ant": [0, 65535], "erre tell me thou art my sonne antipholus ant i": [0, 65535], "tell me thou art my sonne antipholus ant i neuer": [0, 65535], "me thou art my sonne antipholus ant i neuer saw": [0, 65535], "thou art my sonne antipholus ant i neuer saw my": [0, 65535], "art my sonne antipholus ant i neuer saw my father": [0, 65535], "my sonne antipholus ant i neuer saw my father in": [0, 65535], "sonne antipholus ant i neuer saw my father in my": [0, 65535], "antipholus ant i neuer saw my father in my life": [0, 65535], "ant i neuer saw my father in my life fa": [0, 65535], "i neuer saw my father in my life fa but": [0, 65535], "neuer saw my father in my life fa but seuen": [0, 65535], "saw my father in my life fa but seuen yeares": [0, 65535], "my father in my life fa but seuen yeares since": [0, 65535], "father in my life fa but seuen yeares since in": [0, 65535], "in my life fa but seuen yeares since in siracusa": [0, 65535], "my life fa but seuen yeares since in siracusa boy": [0, 65535], "life fa but seuen yeares since in siracusa boy thou": [0, 65535], "fa but seuen yeares since in siracusa boy thou know'st": [0, 65535], "but seuen yeares since in siracusa boy thou know'st we": [0, 65535], "seuen yeares since in siracusa boy thou know'st we parted": [0, 65535], "yeares since in siracusa boy thou know'st we parted but": [0, 65535], "since in siracusa boy thou know'st we parted but perhaps": [0, 65535], "in siracusa boy thou know'st we parted but perhaps my": [0, 65535], "siracusa boy thou know'st we parted but perhaps my sonne": [0, 65535], "boy thou know'st we parted but perhaps my sonne thou": [0, 65535], "thou know'st we parted but perhaps my sonne thou sham'st": [0, 65535], "know'st we parted but perhaps my sonne thou sham'st to": [0, 65535], "we parted but perhaps my sonne thou sham'st to acknowledge": [0, 65535], "parted but perhaps my sonne thou sham'st to acknowledge me": [0, 65535], "but perhaps my sonne thou sham'st to acknowledge me in": [0, 65535], "perhaps my sonne thou sham'st to acknowledge me in miserie": [0, 65535], "my sonne thou sham'st to acknowledge me in miserie ant": [0, 65535], "sonne thou sham'st to acknowledge me in miserie ant the": [0, 65535], "thou sham'st to acknowledge me in miserie ant the duke": [0, 65535], "sham'st to acknowledge me in miserie ant the duke and": [0, 65535], "to acknowledge me in miserie ant the duke and all": [0, 65535], "acknowledge me in miserie ant the duke and all that": [0, 65535], "me in miserie ant the duke and all that know": [0, 65535], "in miserie ant the duke and all that know me": [0, 65535], "miserie ant the duke and all that know me in": [0, 65535], "ant the duke and all that know me in the": [0, 65535], "the duke and all that know me in the city": [0, 65535], "duke and all that know me in the city can": [0, 65535], "and all that know me in the city can witnesse": [0, 65535], "all that know me in the city can witnesse with": [0, 65535], "that know me in the city can witnesse with me": [0, 65535], "know me in the city can witnesse with me that": [0, 65535], "me in the city can witnesse with me that it": [0, 65535], "in the city can witnesse with me that it is": [0, 65535], "the city can witnesse with me that it is not": [0, 65535], "city can witnesse with me that it is not so": [0, 65535], "can witnesse with me that it is not so i": [0, 65535], "witnesse with me that it is not so i ne're": [0, 65535], "with me that it is not so i ne're saw": [0, 65535], "me that it is not so i ne're saw siracusa": [0, 65535], "that it is not so i ne're saw siracusa in": [0, 65535], "it is not so i ne're saw siracusa in my": [0, 65535], "is not so i ne're saw siracusa in my life": [0, 65535], "not so i ne're saw siracusa in my life duke": [0, 65535], "so i ne're saw siracusa in my life duke i": [0, 65535], "i ne're saw siracusa in my life duke i tell": [0, 65535], "ne're saw siracusa in my life duke i tell thee": [0, 65535], "saw siracusa in my life duke i tell thee siracusian": [0, 65535], "siracusa in my life duke i tell thee siracusian twentie": [0, 65535], "in my life duke i tell thee siracusian twentie yeares": [0, 65535], "my life duke i tell thee siracusian twentie yeares haue": [0, 65535], "life duke i tell thee siracusian twentie yeares haue i": [0, 65535], "duke i tell thee siracusian twentie yeares haue i bin": [0, 65535], "i tell thee siracusian twentie yeares haue i bin patron": [0, 65535], "tell thee siracusian twentie yeares haue i bin patron to": [0, 65535], "thee siracusian twentie yeares haue i bin patron to antipholus": [0, 65535], "siracusian twentie yeares haue i bin patron to antipholus during": [0, 65535], "twentie yeares haue i bin patron to antipholus during which": [0, 65535], "yeares haue i bin patron to antipholus during which time": [0, 65535], "haue i bin patron to antipholus during which time he": [0, 65535], "i bin patron to antipholus during which time he ne're": [0, 65535], "bin patron to antipholus during which time he ne're saw": [0, 65535], "patron to antipholus during which time he ne're saw siracusa": [0, 65535], "to antipholus during which time he ne're saw siracusa i": [0, 65535], "antipholus during which time he ne're saw siracusa i see": [0, 65535], "during which time he ne're saw siracusa i see thy": [0, 65535], "which time he ne're saw siracusa i see thy age": [0, 65535], "time he ne're saw siracusa i see thy age and": [0, 65535], "he ne're saw siracusa i see thy age and dangers": [0, 65535], "ne're saw siracusa i see thy age and dangers make": [0, 65535], "saw siracusa i see thy age and dangers make thee": [0, 65535], "siracusa i see thy age and dangers make thee dote": [0, 65535], "i see thy age and dangers make thee dote enter": [0, 65535], "see thy age and dangers make thee dote enter the": [0, 65535], "thy age and dangers make thee dote enter the abbesse": [0, 65535], "age and dangers make thee dote enter the abbesse with": [0, 65535], "and dangers make thee dote enter the abbesse with antipholus": [0, 65535], "dangers make thee dote enter the abbesse with antipholus siracusa": [0, 65535], "make thee dote enter the abbesse with antipholus siracusa and": [0, 65535], "thee dote enter the abbesse with antipholus siracusa and dromio": [0, 65535], "dote enter the abbesse with antipholus siracusa and dromio sir": [0, 65535], "enter the abbesse with antipholus siracusa and dromio sir abbesse": [0, 65535], "the abbesse with antipholus siracusa and dromio sir abbesse most": [0, 65535], "abbesse with antipholus siracusa and dromio sir abbesse most mightie": [0, 65535], "with antipholus siracusa and dromio sir abbesse most mightie duke": [0, 65535], "antipholus siracusa and dromio sir abbesse most mightie duke behold": [0, 65535], "siracusa and dromio sir abbesse most mightie duke behold a": [0, 65535], "and dromio sir abbesse most mightie duke behold a man": [0, 65535], "dromio sir abbesse most mightie duke behold a man much": [0, 65535], "sir abbesse most mightie duke behold a man much wrong'd": [0, 65535], "abbesse most mightie duke behold a man much wrong'd all": [0, 65535], "most mightie duke behold a man much wrong'd all gather": [0, 65535], "mightie duke behold a man much wrong'd all gather to": [0, 65535], "duke behold a man much wrong'd all gather to see": [0, 65535], "behold a man much wrong'd all gather to see them": [0, 65535], "a man much wrong'd all gather to see them adr": [0, 65535], "man much wrong'd all gather to see them adr i": [0, 65535], "much wrong'd all gather to see them adr i see": [0, 65535], "wrong'd all gather to see them adr i see two": [0, 65535], "all gather to see them adr i see two husbands": [0, 65535], "gather to see them adr i see two husbands or": [0, 65535], "to see them adr i see two husbands or mine": [0, 65535], "see them adr i see two husbands or mine eyes": [0, 65535], "them adr i see two husbands or mine eyes deceiue": [0, 65535], "adr i see two husbands or mine eyes deceiue me": [0, 65535], "i see two husbands or mine eyes deceiue me duke": [0, 65535], "see two husbands or mine eyes deceiue me duke one": [0, 65535], "two husbands or mine eyes deceiue me duke one of": [0, 65535], "husbands or mine eyes deceiue me duke one of these": [0, 65535], "or mine eyes deceiue me duke one of these men": [0, 65535], "mine eyes deceiue me duke one of these men is": [0, 65535], "eyes deceiue me duke one of these men is genius": [0, 65535], "deceiue me duke one of these men is genius to": [0, 65535], "me duke one of these men is genius to the": [0, 65535], "duke one of these men is genius to the other": [0, 65535], "one of these men is genius to the other and": [0, 65535], "of these men is genius to the other and so": [0, 65535], "these men is genius to the other and so of": [0, 65535], "men is genius to the other and so of these": [0, 65535], "is genius to the other and so of these which": [0, 65535], "genius to the other and so of these which is": [0, 65535], "to the other and so of these which is the": [0, 65535], "the other and so of these which is the naturall": [0, 65535], "other and so of these which is the naturall man": [0, 65535], "and so of these which is the naturall man and": [0, 65535], "so of these which is the naturall man and which": [0, 65535], "of these which is the naturall man and which the": [0, 65535], "these which is the naturall man and which the spirit": [0, 65535], "which is the naturall man and which the spirit who": [0, 65535], "is the naturall man and which the spirit who deciphers": [0, 65535], "the naturall man and which the spirit who deciphers them": [0, 65535], "naturall man and which the spirit who deciphers them s": [0, 65535], "man and which the spirit who deciphers them s dromio": [0, 65535], "and which the spirit who deciphers them s dromio i": [0, 65535], "which the spirit who deciphers them s dromio i sir": [0, 65535], "the spirit who deciphers them s dromio i sir am": [0, 65535], "spirit who deciphers them s dromio i sir am dromio": [0, 65535], "who deciphers them s dromio i sir am dromio command": [0, 65535], "deciphers them s dromio i sir am dromio command him": [0, 65535], "them s dromio i sir am dromio command him away": [0, 65535], "s dromio i sir am dromio command him away e": [0, 65535], "dromio i sir am dromio command him away e dro": [0, 65535], "i sir am dromio command him away e dro i": [0, 65535], "sir am dromio command him away e dro i sir": [0, 65535], "am dromio command him away e dro i sir am": [0, 65535], "dromio command him away e dro i sir am dromio": [0, 65535], "command him away e dro i sir am dromio pray": [0, 65535], "him away e dro i sir am dromio pray let": [0, 65535], "away e dro i sir am dromio pray let me": [0, 65535], "e dro i sir am dromio pray let me stay": [0, 65535], "dro i sir am dromio pray let me stay s": [0, 65535], "i sir am dromio pray let me stay s ant": [0, 65535], "sir am dromio pray let me stay s ant egeon": [0, 65535], "am dromio pray let me stay s ant egeon art": [0, 65535], "dromio pray let me stay s ant egeon art thou": [0, 65535], "pray let me stay s ant egeon art thou not": [0, 65535], "let me stay s ant egeon art thou not or": [0, 65535], "me stay s ant egeon art thou not or else": [0, 65535], "stay s ant egeon art thou not or else his": [0, 65535], "s ant egeon art thou not or else his ghost": [0, 65535], "ant egeon art thou not or else his ghost s": [0, 65535], "egeon art thou not or else his ghost s drom": [0, 65535], "art thou not or else his ghost s drom oh": [0, 65535], "thou not or else his ghost s drom oh my": [0, 65535], "not or else his ghost s drom oh my olde": [0, 65535], "or else his ghost s drom oh my olde master": [0, 65535], "else his ghost s drom oh my olde master who": [0, 65535], "his ghost s drom oh my olde master who hath": [0, 65535], "ghost s drom oh my olde master who hath bound": [0, 65535], "s drom oh my olde master who hath bound him": [0, 65535], "drom oh my olde master who hath bound him heere": [0, 65535], "oh my olde master who hath bound him heere abb": [0, 65535], "my olde master who hath bound him heere abb who": [0, 65535], "olde master who hath bound him heere abb who euer": [0, 65535], "master who hath bound him heere abb who euer bound": [0, 65535], "who hath bound him heere abb who euer bound him": [0, 65535], "hath bound him heere abb who euer bound him i": [0, 65535], "bound him heere abb who euer bound him i will": [0, 65535], "him heere abb who euer bound him i will lose": [0, 65535], "heere abb who euer bound him i will lose his": [0, 65535], "abb who euer bound him i will lose his bonds": [0, 65535], "who euer bound him i will lose his bonds and": [0, 65535], "euer bound him i will lose his bonds and gaine": [0, 65535], "bound him i will lose his bonds and gaine a": [0, 65535], "him i will lose his bonds and gaine a husband": [0, 65535], "i will lose his bonds and gaine a husband by": [0, 65535], "will lose his bonds and gaine a husband by his": [0, 65535], "lose his bonds and gaine a husband by his libertie": [0, 65535], "his bonds and gaine a husband by his libertie speake": [0, 65535], "bonds and gaine a husband by his libertie speake olde": [0, 65535], "and gaine a husband by his libertie speake olde egeon": [0, 65535], "gaine a husband by his libertie speake olde egeon if": [0, 65535], "a husband by his libertie speake olde egeon if thou": [0, 65535], "husband by his libertie speake olde egeon if thou bee'st": [0, 65535], "by his libertie speake olde egeon if thou bee'st the": [0, 65535], "his libertie speake olde egeon if thou bee'st the man": [0, 65535], "libertie speake olde egeon if thou bee'st the man that": [0, 65535], "speake olde egeon if thou bee'st the man that hadst": [0, 65535], "olde egeon if thou bee'st the man that hadst a": [0, 65535], "egeon if thou bee'st the man that hadst a wife": [0, 65535], "if thou bee'st the man that hadst a wife once": [0, 65535], "thou bee'st the man that hadst a wife once call'd": [0, 65535], "bee'st the man that hadst a wife once call'd \u00e6milia": [0, 65535], "the man that hadst a wife once call'd \u00e6milia that": [0, 65535], "man that hadst a wife once call'd \u00e6milia that bore": [0, 65535], "that hadst a wife once call'd \u00e6milia that bore thee": [0, 65535], "hadst a wife once call'd \u00e6milia that bore thee at": [0, 65535], "a wife once call'd \u00e6milia that bore thee at a": [0, 65535], "wife once call'd \u00e6milia that bore thee at a burthen": [0, 65535], "once call'd \u00e6milia that bore thee at a burthen two": [0, 65535], "call'd \u00e6milia that bore thee at a burthen two faire": [0, 65535], "\u00e6milia that bore thee at a burthen two faire sonnes": [0, 65535], "that bore thee at a burthen two faire sonnes oh": [0, 65535], "bore thee at a burthen two faire sonnes oh if": [0, 65535], "thee at a burthen two faire sonnes oh if thou": [0, 65535], "at a burthen two faire sonnes oh if thou bee'st": [0, 65535], "a burthen two faire sonnes oh if thou bee'st the": [0, 65535], "burthen two faire sonnes oh if thou bee'st the same": [0, 65535], "two faire sonnes oh if thou bee'st the same egeon": [0, 65535], "faire sonnes oh if thou bee'st the same egeon speake": [0, 65535], "sonnes oh if thou bee'st the same egeon speake and": [0, 65535], "oh if thou bee'st the same egeon speake and speake": [0, 65535], "if thou bee'st the same egeon speake and speake vnto": [0, 65535], "thou bee'st the same egeon speake and speake vnto the": [0, 65535], "bee'st the same egeon speake and speake vnto the same": [0, 65535], "the same egeon speake and speake vnto the same \u00e6milia": [0, 65535], "same egeon speake and speake vnto the same \u00e6milia duke": [0, 65535], "egeon speake and speake vnto the same \u00e6milia duke why": [0, 65535], "speake and speake vnto the same \u00e6milia duke why heere": [0, 65535], "and speake vnto the same \u00e6milia duke why heere begins": [0, 65535], "speake vnto the same \u00e6milia duke why heere begins his": [0, 65535], "vnto the same \u00e6milia duke why heere begins his morning": [0, 65535], "the same \u00e6milia duke why heere begins his morning storie": [0, 65535], "same \u00e6milia duke why heere begins his morning storie right": [0, 65535], "\u00e6milia duke why heere begins his morning storie right these": [0, 65535], "duke why heere begins his morning storie right these twoantipholus": [0, 65535], "why heere begins his morning storie right these twoantipholus these": [0, 65535], "heere begins his morning storie right these twoantipholus these two": [0, 65535], "begins his morning storie right these twoantipholus these two so": [0, 65535], "his morning storie right these twoantipholus these two so like": [0, 65535], "morning storie right these twoantipholus these two so like and": [0, 65535], "storie right these twoantipholus these two so like and these": [0, 65535], "right these twoantipholus these two so like and these two": [0, 65535], "these twoantipholus these two so like and these two dromio's": [0, 65535], "twoantipholus these two so like and these two dromio's one": [0, 65535], "these two so like and these two dromio's one in": [0, 65535], "two so like and these two dromio's one in semblance": [0, 65535], "so like and these two dromio's one in semblance besides": [0, 65535], "like and these two dromio's one in semblance besides her": [0, 65535], "and these two dromio's one in semblance besides her vrging": [0, 65535], "these two dromio's one in semblance besides her vrging of": [0, 65535], "two dromio's one in semblance besides her vrging of her": [0, 65535], "dromio's one in semblance besides her vrging of her wracke": [0, 65535], "one in semblance besides her vrging of her wracke at": [0, 65535], "in semblance besides her vrging of her wracke at sea": [0, 65535], "semblance besides her vrging of her wracke at sea these": [0, 65535], "besides her vrging of her wracke at sea these are": [0, 65535], "her vrging of her wracke at sea these are the": [0, 65535], "vrging of her wracke at sea these are the parents": [0, 65535], "of her wracke at sea these are the parents to": [0, 65535], "her wracke at sea these are the parents to these": [0, 65535], "wracke at sea these are the parents to these children": [0, 65535], "at sea these are the parents to these children which": [0, 65535], "sea these are the parents to these children which accidentally": [0, 65535], "these are the parents to these children which accidentally are": [0, 65535], "are the parents to these children which accidentally are met": [0, 65535], "the parents to these children which accidentally are met together": [0, 65535], "parents to these children which accidentally are met together fa": [0, 65535], "to these children which accidentally are met together fa if": [0, 65535], "these children which accidentally are met together fa if i": [0, 65535], "children which accidentally are met together fa if i dreame": [0, 65535], "which accidentally are met together fa if i dreame not": [0, 65535], "accidentally are met together fa if i dreame not thou": [0, 65535], "are met together fa if i dreame not thou art": [0, 65535], "met together fa if i dreame not thou art \u00e6milia": [0, 65535], "together fa if i dreame not thou art \u00e6milia if": [0, 65535], "fa if i dreame not thou art \u00e6milia if thou": [0, 65535], "if i dreame not thou art \u00e6milia if thou art": [0, 65535], "i dreame not thou art \u00e6milia if thou art she": [0, 65535], "dreame not thou art \u00e6milia if thou art she tell": [0, 65535], "not thou art \u00e6milia if thou art she tell me": [0, 65535], "thou art \u00e6milia if thou art she tell me where": [0, 65535], "art \u00e6milia if thou art she tell me where is": [0, 65535], "\u00e6milia if thou art she tell me where is that": [0, 65535], "if thou art she tell me where is that sonne": [0, 65535], "thou art she tell me where is that sonne that": [0, 65535], "art she tell me where is that sonne that floated": [0, 65535], "she tell me where is that sonne that floated with": [0, 65535], "tell me where is that sonne that floated with thee": [0, 65535], "me where is that sonne that floated with thee on": [0, 65535], "where is that sonne that floated with thee on the": [0, 65535], "is that sonne that floated with thee on the fatall": [0, 65535], "that sonne that floated with thee on the fatall rafte": [0, 65535], "sonne that floated with thee on the fatall rafte abb": [0, 65535], "that floated with thee on the fatall rafte abb by": [0, 65535], "floated with thee on the fatall rafte abb by men": [0, 65535], "with thee on the fatall rafte abb by men of": [0, 65535], "thee on the fatall rafte abb by men of epidamium": [0, 65535], "on the fatall rafte abb by men of epidamium he": [0, 65535], "the fatall rafte abb by men of epidamium he and": [0, 65535], "fatall rafte abb by men of epidamium he and i": [0, 65535], "rafte abb by men of epidamium he and i and": [0, 65535], "abb by men of epidamium he and i and the": [0, 65535], "by men of epidamium he and i and the twin": [0, 65535], "men of epidamium he and i and the twin dromio": [0, 65535], "of epidamium he and i and the twin dromio all": [0, 65535], "epidamium he and i and the twin dromio all were": [0, 65535], "he and i and the twin dromio all were taken": [0, 65535], "and i and the twin dromio all were taken vp": [0, 65535], "i and the twin dromio all were taken vp but": [0, 65535], "and the twin dromio all were taken vp but by": [0, 65535], "the twin dromio all were taken vp but by and": [0, 65535], "twin dromio all were taken vp but by and by": [0, 65535], "dromio all were taken vp but by and by rude": [0, 65535], "all were taken vp but by and by rude fishermen": [0, 65535], "were taken vp but by and by rude fishermen of": [0, 65535], "taken vp but by and by rude fishermen of corinth": [0, 65535], "vp but by and by rude fishermen of corinth by": [0, 65535], "but by and by rude fishermen of corinth by force": [0, 65535], "by and by rude fishermen of corinth by force tooke": [0, 65535], "and by rude fishermen of corinth by force tooke dromio": [0, 65535], "by rude fishermen of corinth by force tooke dromio and": [0, 65535], "rude fishermen of corinth by force tooke dromio and my": [0, 65535], "fishermen of corinth by force tooke dromio and my sonne": [0, 65535], "of corinth by force tooke dromio and my sonne from": [0, 65535], "corinth by force tooke dromio and my sonne from them": [0, 65535], "by force tooke dromio and my sonne from them and": [0, 65535], "force tooke dromio and my sonne from them and me": [0, 65535], "tooke dromio and my sonne from them and me they": [0, 65535], "dromio and my sonne from them and me they left": [0, 65535], "and my sonne from them and me they left with": [0, 65535], "my sonne from them and me they left with those": [0, 65535], "sonne from them and me they left with those of": [0, 65535], "from them and me they left with those of epidamium": [0, 65535], "them and me they left with those of epidamium what": [0, 65535], "and me they left with those of epidamium what then": [0, 65535], "me they left with those of epidamium what then became": [0, 65535], "they left with those of epidamium what then became of": [0, 65535], "left with those of epidamium what then became of them": [0, 65535], "with those of epidamium what then became of them i": [0, 65535], "those of epidamium what then became of them i cannot": [0, 65535], "of epidamium what then became of them i cannot tell": [0, 65535], "epidamium what then became of them i cannot tell i": [0, 65535], "what then became of them i cannot tell i to": [0, 65535], "then became of them i cannot tell i to this": [0, 65535], "became of them i cannot tell i to this fortune": [0, 65535], "of them i cannot tell i to this fortune that": [0, 65535], "them i cannot tell i to this fortune that you": [0, 65535], "i cannot tell i to this fortune that you see": [0, 65535], "cannot tell i to this fortune that you see mee": [0, 65535], "tell i to this fortune that you see mee in": [0, 65535], "i to this fortune that you see mee in duke": [0, 65535], "to this fortune that you see mee in duke antipholus": [0, 65535], "this fortune that you see mee in duke antipholus thou": [0, 65535], "fortune that you see mee in duke antipholus thou cam'st": [0, 65535], "that you see mee in duke antipholus thou cam'st from": [0, 65535], "you see mee in duke antipholus thou cam'st from corinth": [0, 65535], "see mee in duke antipholus thou cam'st from corinth first": [0, 65535], "mee in duke antipholus thou cam'st from corinth first s": [0, 65535], "in duke antipholus thou cam'st from corinth first s ant": [0, 65535], "duke antipholus thou cam'st from corinth first s ant no": [0, 65535], "antipholus thou cam'st from corinth first s ant no sir": [0, 65535], "thou cam'st from corinth first s ant no sir not": [0, 65535], "cam'st from corinth first s ant no sir not i": [0, 65535], "from corinth first s ant no sir not i i": [0, 65535], "corinth first s ant no sir not i i came": [0, 65535], "first s ant no sir not i i came from": [0, 65535], "s ant no sir not i i came from siracuse": [0, 65535], "ant no sir not i i came from siracuse duke": [0, 65535], "no sir not i i came from siracuse duke stay": [0, 65535], "sir not i i came from siracuse duke stay stand": [0, 65535], "not i i came from siracuse duke stay stand apart": [0, 65535], "i i came from siracuse duke stay stand apart i": [0, 65535], "i came from siracuse duke stay stand apart i know": [0, 65535], "came from siracuse duke stay stand apart i know not": [0, 65535], "from siracuse duke stay stand apart i know not which": [0, 65535], "siracuse duke stay stand apart i know not which is": [0, 65535], "duke stay stand apart i know not which is which": [0, 65535], "stay stand apart i know not which is which e": [0, 65535], "stand apart i know not which is which e ant": [0, 65535], "apart i know not which is which e ant i": [0, 65535], "i know not which is which e ant i came": [0, 65535], "know not which is which e ant i came from": [0, 65535], "not which is which e ant i came from corinth": [0, 65535], "which is which e ant i came from corinth my": [0, 65535], "is which e ant i came from corinth my most": [0, 65535], "which e ant i came from corinth my most gracious": [0, 65535], "e ant i came from corinth my most gracious lord": [0, 65535], "ant i came from corinth my most gracious lord e": [0, 65535], "i came from corinth my most gracious lord e dro": [0, 65535], "came from corinth my most gracious lord e dro and": [0, 65535], "from corinth my most gracious lord e dro and i": [0, 65535], "corinth my most gracious lord e dro and i with": [0, 65535], "my most gracious lord e dro and i with him": [0, 65535], "most gracious lord e dro and i with him e": [0, 65535], "gracious lord e dro and i with him e ant": [0, 65535], "lord e dro and i with him e ant brought": [0, 65535], "e dro and i with him e ant brought to": [0, 65535], "dro and i with him e ant brought to this": [0, 65535], "and i with him e ant brought to this town": [0, 65535], "i with him e ant brought to this town by": [0, 65535], "with him e ant brought to this town by that": [0, 65535], "him e ant brought to this town by that most": [0, 65535], "e ant brought to this town by that most famous": [0, 65535], "ant brought to this town by that most famous warriour": [0, 65535], "brought to this town by that most famous warriour duke": [0, 65535], "to this town by that most famous warriour duke menaphon": [0, 65535], "this town by that most famous warriour duke menaphon your": [0, 65535], "town by that most famous warriour duke menaphon your most": [0, 65535], "by that most famous warriour duke menaphon your most renowned": [0, 65535], "that most famous warriour duke menaphon your most renowned vnckle": [0, 65535], "most famous warriour duke menaphon your most renowned vnckle adr": [0, 65535], "famous warriour duke menaphon your most renowned vnckle adr which": [0, 65535], "warriour duke menaphon your most renowned vnckle adr which of": [0, 65535], "duke menaphon your most renowned vnckle adr which of you": [0, 65535], "menaphon your most renowned vnckle adr which of you two": [0, 65535], "your most renowned vnckle adr which of you two did": [0, 65535], "most renowned vnckle adr which of you two did dine": [0, 65535], "renowned vnckle adr which of you two did dine with": [0, 65535], "vnckle adr which of you two did dine with me": [0, 65535], "adr which of you two did dine with me to": [0, 65535], "which of you two did dine with me to day": [0, 65535], "of you two did dine with me to day s": [0, 65535], "you two did dine with me to day s ant": [0, 65535], "two did dine with me to day s ant i": [0, 65535], "did dine with me to day s ant i gentle": [0, 65535], "dine with me to day s ant i gentle mistris": [0, 65535], "with me to day s ant i gentle mistris adr": [0, 65535], "me to day s ant i gentle mistris adr and": [0, 65535], "to day s ant i gentle mistris adr and are": [0, 65535], "day s ant i gentle mistris adr and are not": [0, 65535], "s ant i gentle mistris adr and are not you": [0, 65535], "ant i gentle mistris adr and are not you my": [0, 65535], "i gentle mistris adr and are not you my husband": [0, 65535], "gentle mistris adr and are not you my husband e": [0, 65535], "mistris adr and are not you my husband e ant": [0, 65535], "adr and are not you my husband e ant no": [0, 65535], "and are not you my husband e ant no i": [0, 65535], "are not you my husband e ant no i say": [0, 65535], "not you my husband e ant no i say nay": [0, 65535], "you my husband e ant no i say nay to": [0, 65535], "my husband e ant no i say nay to that": [0, 65535], "husband e ant no i say nay to that s": [0, 65535], "e ant no i say nay to that s ant": [0, 65535], "ant no i say nay to that s ant and": [0, 65535], "no i say nay to that s ant and so": [0, 65535], "i say nay to that s ant and so do": [0, 65535], "say nay to that s ant and so do i": [0, 65535], "nay to that s ant and so do i yet": [0, 65535], "to that s ant and so do i yet did": [0, 65535], "that s ant and so do i yet did she": [0, 65535], "s ant and so do i yet did she call": [0, 65535], "ant and so do i yet did she call me": [0, 65535], "and so do i yet did she call me so": [0, 65535], "so do i yet did she call me so and": [0, 65535], "do i yet did she call me so and this": [0, 65535], "i yet did she call me so and this faire": [0, 65535], "yet did she call me so and this faire gentlewoman": [0, 65535], "did she call me so and this faire gentlewoman her": [0, 65535], "she call me so and this faire gentlewoman her sister": [0, 65535], "call me so and this faire gentlewoman her sister heere": [0, 65535], "me so and this faire gentlewoman her sister heere did": [0, 65535], "so and this faire gentlewoman her sister heere did call": [0, 65535], "and this faire gentlewoman her sister heere did call me": [0, 65535], "this faire gentlewoman her sister heere did call me brother": [0, 65535], "faire gentlewoman her sister heere did call me brother what": [0, 65535], "gentlewoman her sister heere did call me brother what i": [0, 65535], "her sister heere did call me brother what i told": [0, 65535], "sister heere did call me brother what i told you": [0, 65535], "heere did call me brother what i told you then": [0, 65535], "did call me brother what i told you then i": [0, 65535], "call me brother what i told you then i hope": [0, 65535], "me brother what i told you then i hope i": [0, 65535], "brother what i told you then i hope i shall": [0, 65535], "what i told you then i hope i shall haue": [0, 65535], "i told you then i hope i shall haue leisure": [0, 65535], "told you then i hope i shall haue leisure to": [0, 65535], "you then i hope i shall haue leisure to make": [0, 65535], "then i hope i shall haue leisure to make good": [0, 65535], "i hope i shall haue leisure to make good if": [0, 65535], "hope i shall haue leisure to make good if this": [0, 65535], "i shall haue leisure to make good if this be": [0, 65535], "shall haue leisure to make good if this be not": [0, 65535], "haue leisure to make good if this be not a": [0, 65535], "leisure to make good if this be not a dreame": [0, 65535], "to make good if this be not a dreame i": [0, 65535], "make good if this be not a dreame i see": [0, 65535], "good if this be not a dreame i see and": [0, 65535], "if this be not a dreame i see and heare": [0, 65535], "this be not a dreame i see and heare goldsmith": [0, 65535], "be not a dreame i see and heare goldsmith that": [0, 65535], "not a dreame i see and heare goldsmith that is": [0, 65535], "a dreame i see and heare goldsmith that is the": [0, 65535], "dreame i see and heare goldsmith that is the chaine": [0, 65535], "i see and heare goldsmith that is the chaine sir": [0, 65535], "see and heare goldsmith that is the chaine sir which": [0, 65535], "and heare goldsmith that is the chaine sir which you": [0, 65535], "heare goldsmith that is the chaine sir which you had": [0, 65535], "goldsmith that is the chaine sir which you had of": [0, 65535], "that is the chaine sir which you had of mee": [0, 65535], "is the chaine sir which you had of mee s": [0, 65535], "the chaine sir which you had of mee s ant": [0, 65535], "chaine sir which you had of mee s ant i": [0, 65535], "sir which you had of mee s ant i thinke": [0, 65535], "which you had of mee s ant i thinke it": [0, 65535], "you had of mee s ant i thinke it be": [0, 65535], "had of mee s ant i thinke it be sir": [0, 65535], "of mee s ant i thinke it be sir i": [0, 65535], "mee s ant i thinke it be sir i denie": [0, 65535], "s ant i thinke it be sir i denie it": [0, 65535], "ant i thinke it be sir i denie it not": [0, 65535], "i thinke it be sir i denie it not e": [0, 65535], "thinke it be sir i denie it not e ant": [0, 65535], "it be sir i denie it not e ant and": [0, 65535], "be sir i denie it not e ant and you": [0, 65535], "sir i denie it not e ant and you sir": [0, 65535], "i denie it not e ant and you sir for": [0, 65535], "denie it not e ant and you sir for this": [0, 65535], "it not e ant and you sir for this chaine": [0, 65535], "not e ant and you sir for this chaine arrested": [0, 65535], "e ant and you sir for this chaine arrested me": [0, 65535], "ant and you sir for this chaine arrested me gold": [0, 65535], "and you sir for this chaine arrested me gold i": [0, 65535], "you sir for this chaine arrested me gold i thinke": [0, 65535], "sir for this chaine arrested me gold i thinke i": [0, 65535], "for this chaine arrested me gold i thinke i did": [0, 65535], "this chaine arrested me gold i thinke i did sir": [0, 65535], "chaine arrested me gold i thinke i did sir i": [0, 65535], "arrested me gold i thinke i did sir i deny": [0, 65535], "me gold i thinke i did sir i deny it": [0, 65535], "gold i thinke i did sir i deny it not": [0, 65535], "i thinke i did sir i deny it not adr": [0, 65535], "thinke i did sir i deny it not adr i": [0, 65535], "i did sir i deny it not adr i sent": [0, 65535], "did sir i deny it not adr i sent you": [0, 65535], "sir i deny it not adr i sent you monie": [0, 65535], "i deny it not adr i sent you monie sir": [0, 65535], "deny it not adr i sent you monie sir to": [0, 65535], "it not adr i sent you monie sir to be": [0, 65535], "not adr i sent you monie sir to be your": [0, 65535], "adr i sent you monie sir to be your baile": [0, 65535], "i sent you monie sir to be your baile by": [0, 65535], "sent you monie sir to be your baile by dromio": [0, 65535], "you monie sir to be your baile by dromio but": [0, 65535], "monie sir to be your baile by dromio but i": [0, 65535], "sir to be your baile by dromio but i thinke": [0, 65535], "to be your baile by dromio but i thinke he": [0, 65535], "be your baile by dromio but i thinke he brought": [0, 65535], "your baile by dromio but i thinke he brought it": [0, 65535], "baile by dromio but i thinke he brought it not": [0, 65535], "by dromio but i thinke he brought it not e": [0, 65535], "dromio but i thinke he brought it not e dro": [0, 65535], "but i thinke he brought it not e dro no": [0, 65535], "i thinke he brought it not e dro no none": [0, 65535], "thinke he brought it not e dro no none by": [0, 65535], "he brought it not e dro no none by me": [0, 65535], "brought it not e dro no none by me s": [0, 65535], "it not e dro no none by me s ant": [0, 65535], "not e dro no none by me s ant this": [0, 65535], "e dro no none by me s ant this purse": [0, 65535], "dro no none by me s ant this purse of": [0, 65535], "no none by me s ant this purse of duckets": [0, 65535], "none by me s ant this purse of duckets i": [0, 65535], "by me s ant this purse of duckets i receiu'd": [0, 65535], "me s ant this purse of duckets i receiu'd from": [0, 65535], "s ant this purse of duckets i receiu'd from you": [0, 65535], "ant this purse of duckets i receiu'd from you and": [0, 65535], "this purse of duckets i receiu'd from you and dromio": [0, 65535], "purse of duckets i receiu'd from you and dromio my": [0, 65535], "of duckets i receiu'd from you and dromio my man": [0, 65535], "duckets i receiu'd from you and dromio my man did": [0, 65535], "i receiu'd from you and dromio my man did bring": [0, 65535], "receiu'd from you and dromio my man did bring them": [0, 65535], "from you and dromio my man did bring them me": [0, 65535], "you and dromio my man did bring them me i": [0, 65535], "and dromio my man did bring them me i see": [0, 65535], "dromio my man did bring them me i see we": [0, 65535], "my man did bring them me i see we still": [0, 65535], "man did bring them me i see we still did": [0, 65535], "did bring them me i see we still did meete": [0, 65535], "bring them me i see we still did meete each": [0, 65535], "them me i see we still did meete each others": [0, 65535], "me i see we still did meete each others man": [0, 65535], "i see we still did meete each others man and": [0, 65535], "see we still did meete each others man and i": [0, 65535], "we still did meete each others man and i was": [0, 65535], "still did meete each others man and i was tane": [0, 65535], "did meete each others man and i was tane for": [0, 65535], "meete each others man and i was tane for him": [0, 65535], "each others man and i was tane for him and": [0, 65535], "others man and i was tane for him and he": [0, 65535], "man and i was tane for him and he for": [0, 65535], "and i was tane for him and he for me": [0, 65535], "i was tane for him and he for me and": [0, 65535], "was tane for him and he for me and thereupon": [0, 65535], "tane for him and he for me and thereupon these": [0, 65535], "for him and he for me and thereupon these errors": [0, 65535], "him and he for me and thereupon these errors are": [0, 65535], "and he for me and thereupon these errors are arose": [0, 65535], "he for me and thereupon these errors are arose e": [0, 65535], "for me and thereupon these errors are arose e ant": [0, 65535], "me and thereupon these errors are arose e ant these": [0, 65535], "and thereupon these errors are arose e ant these duckets": [0, 65535], "thereupon these errors are arose e ant these duckets pawne": [0, 65535], "these errors are arose e ant these duckets pawne i": [0, 65535], "errors are arose e ant these duckets pawne i for": [0, 65535], "are arose e ant these duckets pawne i for my": [0, 65535], "arose e ant these duckets pawne i for my father": [0, 65535], "e ant these duckets pawne i for my father heere": [0, 65535], "ant these duckets pawne i for my father heere duke": [0, 65535], "these duckets pawne i for my father heere duke it": [0, 65535], "duckets pawne i for my father heere duke it shall": [0, 65535], "pawne i for my father heere duke it shall not": [0, 65535], "i for my father heere duke it shall not neede": [0, 65535], "for my father heere duke it shall not neede thy": [0, 65535], "my father heere duke it shall not neede thy father": [0, 65535], "father heere duke it shall not neede thy father hath": [0, 65535], "heere duke it shall not neede thy father hath his": [0, 65535], "duke it shall not neede thy father hath his life": [0, 65535], "it shall not neede thy father hath his life cur": [0, 65535], "shall not neede thy father hath his life cur sir": [0, 65535], "not neede thy father hath his life cur sir i": [0, 65535], "neede thy father hath his life cur sir i must": [0, 65535], "thy father hath his life cur sir i must haue": [0, 65535], "father hath his life cur sir i must haue that": [0, 65535], "hath his life cur sir i must haue that diamond": [0, 65535], "his life cur sir i must haue that diamond from": [0, 65535], "life cur sir i must haue that diamond from you": [0, 65535], "cur sir i must haue that diamond from you e": [0, 65535], "sir i must haue that diamond from you e ant": [0, 65535], "i must haue that diamond from you e ant there": [0, 65535], "must haue that diamond from you e ant there take": [0, 65535], "haue that diamond from you e ant there take it": [0, 65535], "that diamond from you e ant there take it and": [0, 65535], "diamond from you e ant there take it and much": [0, 65535], "from you e ant there take it and much thanks": [0, 65535], "you e ant there take it and much thanks for": [0, 65535], "e ant there take it and much thanks for my": [0, 65535], "ant there take it and much thanks for my good": [0, 65535], "there take it and much thanks for my good cheere": [0, 65535], "take it and much thanks for my good cheere abb": [0, 65535], "it and much thanks for my good cheere abb renowned": [0, 65535], "and much thanks for my good cheere abb renowned duke": [0, 65535], "much thanks for my good cheere abb renowned duke vouchsafe": [0, 65535], "thanks for my good cheere abb renowned duke vouchsafe to": [0, 65535], "for my good cheere abb renowned duke vouchsafe to take": [0, 65535], "my good cheere abb renowned duke vouchsafe to take the": [0, 65535], "good cheere abb renowned duke vouchsafe to take the paines": [0, 65535], "cheere abb renowned duke vouchsafe to take the paines to": [0, 65535], "abb renowned duke vouchsafe to take the paines to go": [0, 65535], "renowned duke vouchsafe to take the paines to go with": [0, 65535], "duke vouchsafe to take the paines to go with vs": [0, 65535], "vouchsafe to take the paines to go with vs into": [0, 65535], "to take the paines to go with vs into the": [0, 65535], "take the paines to go with vs into the abbey": [0, 65535], "the paines to go with vs into the abbey heere": [0, 65535], "paines to go with vs into the abbey heere and": [0, 65535], "to go with vs into the abbey heere and heare": [0, 65535], "go with vs into the abbey heere and heare at": [0, 65535], "with vs into the abbey heere and heare at large": [0, 65535], "vs into the abbey heere and heare at large discoursed": [0, 65535], "into the abbey heere and heare at large discoursed all": [0, 65535], "the abbey heere and heare at large discoursed all our": [0, 65535], "abbey heere and heare at large discoursed all our fortunes": [0, 65535], "heere and heare at large discoursed all our fortunes and": [0, 65535], "and heare at large discoursed all our fortunes and all": [0, 65535], "heare at large discoursed all our fortunes and all that": [0, 65535], "at large discoursed all our fortunes and all that are": [0, 65535], "large discoursed all our fortunes and all that are assembled": [0, 65535], "discoursed all our fortunes and all that are assembled in": [0, 65535], "all our fortunes and all that are assembled in this": [0, 65535], "our fortunes and all that are assembled in this place": [0, 65535], "fortunes and all that are assembled in this place that": [0, 65535], "and all that are assembled in this place that by": [0, 65535], "all that are assembled in this place that by this": [0, 65535], "that are assembled in this place that by this simpathized": [0, 65535], "are assembled in this place that by this simpathized one": [0, 65535], "assembled in this place that by this simpathized one daies": [0, 65535], "in this place that by this simpathized one daies error": [0, 65535], "this place that by this simpathized one daies error haue": [0, 65535], "place that by this simpathized one daies error haue suffer'd": [0, 65535], "that by this simpathized one daies error haue suffer'd wrong": [0, 65535], "by this simpathized one daies error haue suffer'd wrong goe": [0, 65535], "this simpathized one daies error haue suffer'd wrong goe keepe": [0, 65535], "simpathized one daies error haue suffer'd wrong goe keepe vs": [0, 65535], "one daies error haue suffer'd wrong goe keepe vs companie": [0, 65535], "daies error haue suffer'd wrong goe keepe vs companie and": [0, 65535], "error haue suffer'd wrong goe keepe vs companie and we": [0, 65535], "haue suffer'd wrong goe keepe vs companie and we shall": [0, 65535], "suffer'd wrong goe keepe vs companie and we shall make": [0, 65535], "wrong goe keepe vs companie and we shall make full": [0, 65535], "goe keepe vs companie and we shall make full satisfaction": [0, 65535], "keepe vs companie and we shall make full satisfaction thirtie": [0, 65535], "vs companie and we shall make full satisfaction thirtie three": [0, 65535], "companie and we shall make full satisfaction thirtie three yeares": [0, 65535], "and we shall make full satisfaction thirtie three yeares haue": [0, 65535], "we shall make full satisfaction thirtie three yeares haue i": [0, 65535], "shall make full satisfaction thirtie three yeares haue i but": [0, 65535], "make full satisfaction thirtie three yeares haue i but gone": [0, 65535], "full satisfaction thirtie three yeares haue i but gone in": [0, 65535], "satisfaction thirtie three yeares haue i but gone in trauaile": [0, 65535], "thirtie three yeares haue i but gone in trauaile of": [0, 65535], "three yeares haue i but gone in trauaile of you": [0, 65535], "yeares haue i but gone in trauaile of you my": [0, 65535], "haue i but gone in trauaile of you my sonnes": [0, 65535], "i but gone in trauaile of you my sonnes and": [0, 65535], "but gone in trauaile of you my sonnes and till": [0, 65535], "gone in trauaile of you my sonnes and till this": [0, 65535], "in trauaile of you my sonnes and till this present": [0, 65535], "trauaile of you my sonnes and till this present houre": [0, 65535], "of you my sonnes and till this present houre my": [0, 65535], "you my sonnes and till this present houre my heauie": [0, 65535], "my sonnes and till this present houre my heauie burthen": [0, 65535], "sonnes and till this present houre my heauie burthen are": [0, 65535], "and till this present houre my heauie burthen are deliuered": [0, 65535], "till this present houre my heauie burthen are deliuered the": [0, 65535], "this present houre my heauie burthen are deliuered the duke": [0, 65535], "present houre my heauie burthen are deliuered the duke my": [0, 65535], "houre my heauie burthen are deliuered the duke my husband": [0, 65535], "my heauie burthen are deliuered the duke my husband and": [0, 65535], "heauie burthen are deliuered the duke my husband and my": [0, 65535], "burthen are deliuered the duke my husband and my children": [0, 65535], "are deliuered the duke my husband and my children both": [0, 65535], "deliuered the duke my husband and my children both and": [0, 65535], "the duke my husband and my children both and you": [0, 65535], "duke my husband and my children both and you the": [0, 65535], "my husband and my children both and you the kalenders": [0, 65535], "husband and my children both and you the kalenders of": [0, 65535], "and my children both and you the kalenders of their": [0, 65535], "my children both and you the kalenders of their natiuity": [0, 65535], "children both and you the kalenders of their natiuity go": [0, 65535], "both and you the kalenders of their natiuity go to": [0, 65535], "and you the kalenders of their natiuity go to a": [0, 65535], "you the kalenders of their natiuity go to a gossips": [0, 65535], "the kalenders of their natiuity go to a gossips feast": [0, 65535], "kalenders of their natiuity go to a gossips feast and": [0, 65535], "of their natiuity go to a gossips feast and go": [0, 65535], "their natiuity go to a gossips feast and go with": [0, 65535], "natiuity go to a gossips feast and go with mee": [0, 65535], "go to a gossips feast and go with mee after": [0, 65535], "to a gossips feast and go with mee after so": [0, 65535], "a gossips feast and go with mee after so long": [0, 65535], "gossips feast and go with mee after so long greefe": [0, 65535], "feast and go with mee after so long greefe such": [0, 65535], "and go with mee after so long greefe such natiuitie": [0, 65535], "go with mee after so long greefe such natiuitie duke": [0, 65535], "with mee after so long greefe such natiuitie duke with": [0, 65535], "mee after so long greefe such natiuitie duke with all": [0, 65535], "after so long greefe such natiuitie duke with all my": [0, 65535], "so long greefe such natiuitie duke with all my heart": [0, 65535], "long greefe such natiuitie duke with all my heart ile": [0, 65535], "greefe such natiuitie duke with all my heart ile gossip": [0, 65535], "such natiuitie duke with all my heart ile gossip at": [0, 65535], "natiuitie duke with all my heart ile gossip at this": [0, 65535], "duke with all my heart ile gossip at this feast": [0, 65535], "with all my heart ile gossip at this feast exeunt": [0, 65535], "all my heart ile gossip at this feast exeunt omnes": [0, 65535], "my heart ile gossip at this feast exeunt omnes manet": [0, 65535], "heart ile gossip at this feast exeunt omnes manet the": [0, 65535], "ile gossip at this feast exeunt omnes manet the two": [0, 65535], "gossip at this feast exeunt omnes manet the two dromio's": [0, 65535], "at this feast exeunt omnes manet the two dromio's and": [0, 65535], "this feast exeunt omnes manet the two dromio's and two": [0, 65535], "feast exeunt omnes manet the two dromio's and two brothers": [0, 65535], "exeunt omnes manet the two dromio's and two brothers s": [0, 65535], "omnes manet the two dromio's and two brothers s dro": [0, 65535], "manet the two dromio's and two brothers s dro mast": [0, 65535], "the two dromio's and two brothers s dro mast shall": [0, 65535], "two dromio's and two brothers s dro mast shall i": [0, 65535], "dromio's and two brothers s dro mast shall i fetch": [0, 65535], "and two brothers s dro mast shall i fetch your": [0, 65535], "two brothers s dro mast shall i fetch your stuffe": [0, 65535], "brothers s dro mast shall i fetch your stuffe from": [0, 65535], "s dro mast shall i fetch your stuffe from shipbord": [0, 65535], "dro mast shall i fetch your stuffe from shipbord e": [0, 65535], "mast shall i fetch your stuffe from shipbord e an": [0, 65535], "shall i fetch your stuffe from shipbord e an dromio": [0, 65535], "i fetch your stuffe from shipbord e an dromio what": [0, 65535], "fetch your stuffe from shipbord e an dromio what stuffe": [0, 65535], "your stuffe from shipbord e an dromio what stuffe of": [0, 65535], "stuffe from shipbord e an dromio what stuffe of mine": [0, 65535], "from shipbord e an dromio what stuffe of mine hast": [0, 65535], "shipbord e an dromio what stuffe of mine hast thou": [0, 65535], "e an dromio what stuffe of mine hast thou imbarkt": [0, 65535], "an dromio what stuffe of mine hast thou imbarkt s": [0, 65535], "dromio what stuffe of mine hast thou imbarkt s dro": [0, 65535], "what stuffe of mine hast thou imbarkt s dro your": [0, 65535], "stuffe of mine hast thou imbarkt s dro your goods": [0, 65535], "of mine hast thou imbarkt s dro your goods that": [0, 65535], "mine hast thou imbarkt s dro your goods that lay": [0, 65535], "hast thou imbarkt s dro your goods that lay at": [0, 65535], "thou imbarkt s dro your goods that lay at host": [0, 65535], "imbarkt s dro your goods that lay at host sir": [0, 65535], "s dro your goods that lay at host sir in": [0, 65535], "dro your goods that lay at host sir in the": [0, 65535], "your goods that lay at host sir in the centaur": [0, 65535], "goods that lay at host sir in the centaur s": [0, 65535], "that lay at host sir in the centaur s ant": [0, 65535], "lay at host sir in the centaur s ant he": [0, 65535], "at host sir in the centaur s ant he speakes": [0, 65535], "host sir in the centaur s ant he speakes to": [0, 65535], "sir in the centaur s ant he speakes to me": [0, 65535], "in the centaur s ant he speakes to me i": [0, 65535], "the centaur s ant he speakes to me i am": [0, 65535], "centaur s ant he speakes to me i am your": [0, 65535], "s ant he speakes to me i am your master": [0, 65535], "ant he speakes to me i am your master dromio": [0, 65535], "he speakes to me i am your master dromio come": [0, 65535], "speakes to me i am your master dromio come go": [0, 65535], "to me i am your master dromio come go with": [0, 65535], "me i am your master dromio come go with vs": [0, 65535], "i am your master dromio come go with vs wee'l": [0, 65535], "am your master dromio come go with vs wee'l looke": [0, 65535], "your master dromio come go with vs wee'l looke to": [0, 65535], "master dromio come go with vs wee'l looke to that": [0, 65535], "dromio come go with vs wee'l looke to that anon": [0, 65535], "come go with vs wee'l looke to that anon embrace": [0, 65535], "go with vs wee'l looke to that anon embrace thy": [0, 65535], "with vs wee'l looke to that anon embrace thy brother": [0, 65535], "vs wee'l looke to that anon embrace thy brother there": [0, 65535], "wee'l looke to that anon embrace thy brother there reioyce": [0, 65535], "looke to that anon embrace thy brother there reioyce with": [0, 65535], "to that anon embrace thy brother there reioyce with him": [0, 65535], "that anon embrace thy brother there reioyce with him exit": [0, 65535], "anon embrace thy brother there reioyce with him exit s": [0, 65535], "embrace thy brother there reioyce with him exit s dro": [0, 65535], "thy brother there reioyce with him exit s dro there": [0, 65535], "brother there reioyce with him exit s dro there is": [0, 65535], "there reioyce with him exit s dro there is a": [0, 65535], "reioyce with him exit s dro there is a fat": [0, 65535], "with him exit s dro there is a fat friend": [0, 65535], "him exit s dro there is a fat friend at": [0, 65535], "exit s dro there is a fat friend at your": [0, 65535], "s dro there is a fat friend at your masters": [0, 65535], "dro there is a fat friend at your masters house": [0, 65535], "there is a fat friend at your masters house that": [0, 65535], "is a fat friend at your masters house that kitchin'd": [0, 65535], "a fat friend at your masters house that kitchin'd me": [0, 65535], "fat friend at your masters house that kitchin'd me for": [0, 65535], "friend at your masters house that kitchin'd me for you": [0, 65535], "at your masters house that kitchin'd me for you to": [0, 65535], "your masters house that kitchin'd me for you to day": [0, 65535], "masters house that kitchin'd me for you to day at": [0, 65535], "house that kitchin'd me for you to day at dinner": [0, 65535], "that kitchin'd me for you to day at dinner she": [0, 65535], "kitchin'd me for you to day at dinner she now": [0, 65535], "me for you to day at dinner she now shall": [0, 65535], "for you to day at dinner she now shall be": [0, 65535], "you to day at dinner she now shall be my": [0, 65535], "to day at dinner she now shall be my sister": [0, 65535], "day at dinner she now shall be my sister not": [0, 65535], "at dinner she now shall be my sister not my": [0, 65535], "dinner she now shall be my sister not my wife": [0, 65535], "she now shall be my sister not my wife e": [0, 65535], "now shall be my sister not my wife e d": [0, 65535], "shall be my sister not my wife e d me": [0, 65535], "be my sister not my wife e d me thinks": [0, 65535], "my sister not my wife e d me thinks you": [0, 65535], "sister not my wife e d me thinks you are": [0, 65535], "not my wife e d me thinks you are my": [0, 65535], "my wife e d me thinks you are my glasse": [0, 65535], "wife e d me thinks you are my glasse not": [0, 65535], "e d me thinks you are my glasse not my": [0, 65535], "d me thinks you are my glasse not my brother": [0, 65535], "me thinks you are my glasse not my brother i": [0, 65535], "thinks you are my glasse not my brother i see": [0, 65535], "you are my glasse not my brother i see by": [0, 65535], "are my glasse not my brother i see by you": [0, 65535], "my glasse not my brother i see by you i": [0, 65535], "glasse not my brother i see by you i am": [0, 65535], "not my brother i see by you i am a": [0, 65535], "my brother i see by you i am a sweet": [0, 65535], "brother i see by you i am a sweet fac'd": [0, 65535], "i see by you i am a sweet fac'd youth": [0, 65535], "see by you i am a sweet fac'd youth will": [0, 65535], "by you i am a sweet fac'd youth will you": [0, 65535], "you i am a sweet fac'd youth will you walke": [0, 65535], "i am a sweet fac'd youth will you walke in": [0, 65535], "am a sweet fac'd youth will you walke in to": [0, 65535], "a sweet fac'd youth will you walke in to see": [0, 65535], "sweet fac'd youth will you walke in to see their": [0, 65535], "fac'd youth will you walke in to see their gossipping": [0, 65535], "youth will you walke in to see their gossipping s": [0, 65535], "will you walke in to see their gossipping s dro": [0, 65535], "you walke in to see their gossipping s dro not": [0, 65535], "walke in to see their gossipping s dro not i": [0, 65535], "in to see their gossipping s dro not i sir": [0, 65535], "to see their gossipping s dro not i sir you": [0, 65535], "see their gossipping s dro not i sir you are": [0, 65535], "their gossipping s dro not i sir you are my": [0, 65535], "gossipping s dro not i sir you are my elder": [0, 65535], "s dro not i sir you are my elder e": [0, 65535], "dro not i sir you are my elder e dro": [0, 65535], "not i sir you are my elder e dro that's": [0, 65535], "i sir you are my elder e dro that's a": [0, 65535], "sir you are my elder e dro that's a question": [0, 65535], "you are my elder e dro that's a question how": [0, 65535], "are my elder e dro that's a question how shall": [0, 65535], "my elder e dro that's a question how shall we": [0, 65535], "elder e dro that's a question how shall we trie": [0, 65535], "e dro that's a question how shall we trie it": [0, 65535], "dro that's a question how shall we trie it s": [0, 65535], "that's a question how shall we trie it s dro": [0, 65535], "a question how shall we trie it s dro wee'l": [0, 65535], "question how shall we trie it s dro wee'l draw": [0, 65535], "how shall we trie it s dro wee'l draw cuts": [0, 65535], "shall we trie it s dro wee'l draw cuts for": [0, 65535], "we trie it s dro wee'l draw cuts for the": [0, 65535], "trie it s dro wee'l draw cuts for the signior": [0, 65535], "it s dro wee'l draw cuts for the signior till": [0, 65535], "s dro wee'l draw cuts for the signior till then": [0, 65535], "dro wee'l draw cuts for the signior till then lead": [0, 65535], "wee'l draw cuts for the signior till then lead thou": [0, 65535], "draw cuts for the signior till then lead thou first": [0, 65535], "cuts for the signior till then lead thou first e": [0, 65535], "for the signior till then lead thou first e dro": [0, 65535], "the signior till then lead thou first e dro nay": [0, 65535], "signior till then lead thou first e dro nay then": [0, 65535], "till then lead thou first e dro nay then thus": [0, 65535], "then lead thou first e dro nay then thus we": [0, 65535], "lead thou first e dro nay then thus we came": [0, 65535], "thou first e dro nay then thus we came into": [0, 65535], "first e dro nay then thus we came into the": [0, 65535], "e dro nay then thus we came into the world": [0, 65535], "dro nay then thus we came into the world like": [0, 65535], "nay then thus we came into the world like brother": [0, 65535], "then thus we came into the world like brother and": [0, 65535], "thus we came into the world like brother and brother": [0, 65535], "we came into the world like brother and brother and": [0, 65535], "came into the world like brother and brother and now": [0, 65535], "into the world like brother and brother and now let's": [0, 65535], "the world like brother and brother and now let's go": [0, 65535], "world like brother and brother and now let's go hand": [0, 65535], "like brother and brother and now let's go hand in": [0, 65535], "brother and brother and now let's go hand in hand": [0, 65535], "and brother and now let's go hand in hand not": [0, 65535], "brother and now let's go hand in hand not one": [0, 65535], "and now let's go hand in hand not one before": [0, 65535], "now let's go hand in hand not one before another": [0, 65535], "let's go hand in hand not one before another exeunt": [0, 65535], "go hand in hand not one before another exeunt finis": [0, 65535], "comedie": [0, 65535], "primus": [0, 65535], "iaylor": [0, 65535], "attendants": [0, 65535], "marchant": [0, 65535], "broceed": [0, 65535], "solinus": [0, 65535], "procure": [0, 65535], "doome": [0, 65535], "partiall": [0, 65535], "infringe": [0, 65535], "enmity": [0, 65535], "discord": [0, 65535], "sprung": [0, 65535], "rancorous": [0, 65535], "outrage": [0, 65535], "merchants": [0, 65535], "dealing": [0, 65535], "countrimen": [0, 65535], "gilders": [0, 65535], "redeeme": [0, 65535], "seal'd": [0, 65535], "rigorous": [0, 65535], "blouds": [0, 65535], "excludes": [0, 65535], "threatning": [0, 65535], "mortall": [0, 65535], "intestine": [0, 65535], "iarres": [0, 65535], "twixt": [0, 65535], "seditious": [0, 65535], "solemne": [0, 65535], "synodes": [0, 65535], "decreed": [0, 65535], "siracusians": [0, 65535], "admit": [0, 65535], "trafficke": [0, 65535], "aduerse": [0, 65535], "townes": [0, 65535], "seene": [0, 65535], "marts": [0, 65535], "fayres": [0, 65535], "dies": [0, 65535], "confiscate": [0, 65535], "dukes": [0, 65535], "dispose": [0, 65535], "leuied": [0, 65535], "quit": [0, 65535], "penalty": [0, 65535], "ransome": [0, 65535], "substance": [0, 65535], "rate": [0, 65535], "amount": [0, 65535], "condemn'd": [0, 65535], "mer": [0, 65535], "likewise": [0, 65535], "duk": [0, 65535], "briefe": [0, 65535], "departedst": [0, 65535], "natiue": [0, 65535], "heauier": [0, 65535], "taske": [0, 65535], "impos'd": [0, 65535], "griefes": [0, 65535], "vnspeakeable": [0, 65535], "vile": [0, 65535], "vtter": [0, 65535], "sorrow": [0, 65535], "giues": [0, 65535], "syracusa": [0, 65535], "wedde": [0, 65535], "hap": [0, 65535], "liu'd": [0, 65535], "ioy": [0, 65535], "increast": [0, 65535], "prosperous": [0, 65535], "voyages": [0, 65535], "factors": [0, 65535], "randone": [0, 65535], "embracements": [0, 65535], "spouse": [0, 65535], "absence": [0, 65535], "sixe": [0, 65535], "moneths": [0, 65535], "fainting": [0, 65535], "prouision": [0, 65535], "arriued": [0, 65535], "ioyfull": [0, 65535], "goodly": [0, 65535], "distinguish'd": [0, 65535], "inne": [0, 65535], "male": [0, 65535], "twins": [0, 65535], "exceeding": [0, 65535], "meanely": [0, 65535], "prowd": [0, 65535], "boyes": [0, 65535], "motions": [0, 65535], "vnwilling": [0, 65535], "aboord": [0, 65535], "saild": [0, 65535], "alwaies": [0, 65535], "obeying": [0, 65535], "tragicke": [0, 65535], "instance": [0, 65535], "harme": [0, 65535], "retaine": [0, 65535], "obscured": [0, 65535], "conuay": [0, 65535], "fearefull": [0, 65535], "mindes": [0, 65535], "doubtfull": [0, 65535], "immediate": [0, 65535], "gladly": [0, 65535], "imbrac'd": [0, 65535], "incessant": [0, 65535], "weepings": [0, 65535], "pitteous": [0, 65535], "playnings": [0, 65535], "babes": [0, 65535], "mourn'd": [0, 65535], "ignorant": [0, 65535], "forst": [0, 65535], "delayes": [0, 65535], "boate": [0, 65535], "sinking": [0, 65535], "ripe": [0, 65535], "fastned": [0, 65535], "faring": [0, 65535], "prouide": [0, 65535], "stormes": [0, 65535], "dispos'd": [0, 65535], "fixing": [0, 65535], "fixt": [0, 65535], "eyther": [0, 65535], "floating": [0, 65535], "streame": [0, 65535], "towards": [0, 65535], "length": [0, 65535], "disperst": [0, 65535], "vapours": [0, 65535], "offended": [0, 65535], "benefit": [0, 65535], "waxt": [0, 65535], "calme": [0, 65535], "discouered": [0, 65535], "shippes": [0, 65535], "amaine": [0, 65535], "epidarus": [0, 65535], "sequell": [0, 65535], "pardon": [0, 65535], "merch": [0, 65535], "worthily": [0, 65535], "tearm'd": [0, 65535], "mercilesse": [0, 65535], "ships": [0, 65535], "leagues": [0, 65535], "encountred": [0, 65535], "rocke": [0, 65535], "violently": [0, 65535], "helpefull": [0, 65535], "vniust": [0, 65535], "diuorce": [0, 65535], "burdened": [0, 65535], "lesser": [0, 65535], "seiz'd": [0, 65535], "healthfull": [0, 65535], "wrackt": [0, 65535], "guests": [0, 65535], "reft": [0, 65535], "fishers": [0, 65535], "prey": [0, 65535], "seuer'd": [0, 65535], "blisse": [0, 65535], "prolong'd": [0, 65535], "stories": [0, 65535], "mishaps": [0, 65535], "sorrowest": [0, 65535], "fauour": [0, 65535], "dilate": [0, 65535], "befalne": [0, 65535], "yongest": [0, 65535], "eldest": [0, 65535], "eighteene": [0, 65535], "yeeres": [0, 65535], "inquisitiue": [0, 65535], "importun'd": [0, 65535], "retain'd": [0, 65535], "quest": [0, 65535], "laboured": [0, 65535], "hazarded": [0, 65535], "losse": [0, 65535], "lou'd": [0, 65535], "sommers": [0, 65535], "spent": [0, 65535], "farthest": [0, 65535], "greece": [0, 65535], "roming": [0, 65535], "bounds": [0, 65535], "asia": [0, 65535], "coasting": [0, 65535], "hopelesse": [0, 65535], "loth": [0, 65535], "vnsought": [0, 65535], "harbours": [0, 65535], "timelie": [0, 65535], "trauells": [0, 65535], "haplesse": [0, 65535], "fates": [0, 65535], "markt": [0, 65535], "extremitie": [0, 65535], "dire": [0, 65535], "mishap": [0, 65535], "crowne": [0, 65535], "dignity": [0, 65535], "disanull": [0, 65535], "sue": [0, 65535], "aduocate": [0, 65535], "adiudged": [0, 65535], "recal'd": [0, 65535], "honours": [0, 65535], "disparagement": [0, 65535], "limit": [0, 65535], "beneficiall": [0, 65535], "friends": [0, 65535], "beg": [0, 65535], "doom'd": [0, 65535], "custodie": [0, 65535], "egean": [0, 65535], "wend": [0, 65535], "procrastinate": [0, 65535], "liuelesse": [0, 65535], "erotes": [0, 65535], "syracusian": [0, 65535], "apprehended": [0, 65535], "riuall": [0, 65535], "able": [0, 65535], "statute": [0, 65535], "wearie": [0, 65535], "west": [0, 65535], "centaure": [0, 65535], "peruse": [0, 65535], "traders": [0, 65535], "stiffe": [0, 65535], "indeede": [0, 65535], "hauing": [0, 65535], "trustie": [0, 65535], "lightens": [0, 65535], "humour": [0, 65535], "iests": [0, 65535], "marchants": [0, 65535], "craue": [0, 65535], "afterward": [0, 65535], "consort": [0, 65535], "cals": [0, 65535], "farewell": [0, 65535], "commend": [0, 65535], "commends": [0, 65535], "ocean": [0, 65535], "seekes": [0, 65535], "falling": [0, 65535], "vnseene": [0, 65535], "confounds": [0, 65535], "vnhappie": [0, 65535], "almanacke": [0, 65535], "date": [0, 65535], "approacht": [0, 65535], "burnes": [0, 65535], "pig": [0, 65535], "fals": [0, 65535], "strucken": [0, 65535], "twelue": [0, 65535], "colde": [0, 65535], "stomacke": [0, 65535], "penitent": [0, 65535], "default": [0, 65535], "pence": [0, 65535], "wensday": [0, 65535], "sadler": [0, 65535], "crupper": [0, 65535], "sportiue": [0, 65535], "dally": [0, 65535], "strangers": [0, 65535], "scoure": [0, 65535], "thinkes": [0, 65535], "maw": [0, 65535], "cooke": [0, 65535], "reserue": [0, 65535], "merrier": [0, 65535], "foolishnes": [0, 65535], "staies": [0, 65535], "christian": [0, 65535], "bestow'd": [0, 65535], "vndispos'd": [0, 65535], "perchance": [0, 65535], "worships": [0, 65535], "praies": [0, 65535], "flout": [0, 65535], "forbid": [0, 65535], "ep": [0, 65535], "deuise": [0, 65535], "cosenage": [0, 65535], "nimble": [0, 65535], "iuglers": [0, 65535], "sorcerers": [0, 65535], "killing": [0, 65535], "deforme": [0, 65535], "bodie": [0, 65535], "disguised": [0, 65535], "cheaters": [0, 65535], "mountebankes": [0, 65535], "liberties": [0, 65535], "greatly": [0, 65535], "the comedie": [0, 65535], "comedie of": [0, 65535], "of errors": [0, 65535], "errors actus": [0, 65535], "actus primus": [0, 65535], "primus scena": [0, 65535], "ephesus with": [0, 65535], "of siracusa": [0, 65535], "siracusa iaylor": [0, 65535], "iaylor and": [0, 65535], "other attendants": [0, 65535], "attendants marchant": [0, 65535], "marchant broceed": [0, 65535], "broceed solinus": [0, 65535], "solinus to": [0, 65535], "to procure": [0, 65535], "procure my": [0, 65535], "my fall": [0, 65535], "fall and": [0, 65535], "the doome": [0, 65535], "doome of": [0, 65535], "death end": [0, 65535], "end woes": [0, 65535], "woes and": [0, 65535], "all duke": [0, 65535], "duke merchant": [0, 65535], "siracusa plead": [0, 65535], "plead no": [0, 65535], "not partiall": [0, 65535], "partiall to": [0, 65535], "to infringe": [0, 65535], "infringe our": [0, 65535], "our lawes": [0, 65535], "lawes the": [0, 65535], "the enmity": [0, 65535], "enmity and": [0, 65535], "and discord": [0, 65535], "discord which": [0, 65535], "of late": [0, 65535], "late sprung": [0, 65535], "sprung from": [0, 65535], "the rancorous": [0, 65535], "rancorous outrage": [0, 65535], "outrage of": [0, 65535], "your duke": [0, 65535], "duke to": [0, 65535], "to merchants": [0, 65535], "merchants our": [0, 65535], "our well": [0, 65535], "well dealing": [0, 65535], "dealing countrimen": [0, 65535], "countrimen who": [0, 65535], "who wanting": [0, 65535], "wanting gilders": [0, 65535], "gilders to": [0, 65535], "to redeeme": [0, 65535], "redeeme their": [0, 65535], "their liues": [0, 65535], "liues haue": [0, 65535], "haue seal'd": [0, 65535], "seal'd his": [0, 65535], "his rigorous": [0, 65535], "rigorous statutes": [0, 65535], "statutes with": [0, 65535], "their blouds": [0, 65535], "blouds excludes": [0, 65535], "excludes all": [0, 65535], "all pitty": [0, 65535], "pitty from": [0, 65535], "from our": [0, 65535], "our threatning": [0, 65535], "threatning lookes": [0, 65535], "lookes for": [0, 65535], "for since": [0, 65535], "since the": [0, 65535], "the mortall": [0, 65535], "mortall and": [0, 65535], "and intestine": [0, 65535], "intestine iarres": [0, 65535], "iarres twixt": [0, 65535], "twixt thy": [0, 65535], "thy seditious": [0, 65535], "seditious countrimen": [0, 65535], "countrimen and": [0, 65535], "and vs": [0, 65535], "vs it": [0, 65535], "it hath": [0, 65535], "hath in": [0, 65535], "in solemne": [0, 65535], "solemne synodes": [0, 65535], "synodes beene": [0, 65535], "beene decreed": [0, 65535], "decreed both": [0, 65535], "both by": [0, 65535], "the siracusians": [0, 65535], "siracusians and": [0, 65535], "and our": [0, 65535], "selues to": [0, 65535], "to admit": [0, 65535], "admit no": [0, 65535], "no trafficke": [0, 65535], "trafficke to": [0, 65535], "to our": [0, 65535], "our aduerse": [0, 65535], "aduerse townes": [0, 65535], "townes nay": [0, 65535], "nay more": [0, 65535], "more if": [0, 65535], "any borne": [0, 65535], "borne at": [0, 65535], "at ephesus": [0, 65535], "ephesus be": [0, 65535], "be seene": [0, 65535], "seene at": [0, 65535], "any siracusian": [0, 65535], "siracusian marts": [0, 65535], "marts and": [0, 65535], "and fayres": [0, 65535], "fayres againe": [0, 65535], "againe if": [0, 65535], "siracusian borne": [0, 65535], "borne come": [0, 65535], "the bay": [0, 65535], "bay of": [0, 65535], "ephesus he": [0, 65535], "he dies": [0, 65535], "dies his": [0, 65535], "his goods": [0, 65535], "goods confiscate": [0, 65535], "confiscate to": [0, 65535], "the dukes": [0, 65535], "dukes dispose": [0, 65535], "dispose vnlesse": [0, 65535], "vnlesse a": [0, 65535], "markes be": [0, 65535], "be leuied": [0, 65535], "leuied to": [0, 65535], "to quit": [0, 65535], "quit the": [0, 65535], "the penalty": [0, 65535], "penalty and": [0, 65535], "to ransome": [0, 65535], "ransome him": [0, 65535], "him thy": [0, 65535], "thy substance": [0, 65535], "substance valued": [0, 65535], "valued at": [0, 65535], "highest rate": [0, 65535], "rate cannot": [0, 65535], "cannot amount": [0, 65535], "amount vnto": [0, 65535], "vnto a": [0, 65535], "markes therefore": [0, 65535], "therefore by": [0, 65535], "by law": [0, 65535], "law thou": [0, 65535], "art condemn'd": [0, 65535], "condemn'd to": [0, 65535], "die mer": [0, 65535], "mer yet": [0, 65535], "yet this": [0, 65535], "my comfort": [0, 65535], "comfort when": [0, 65535], "when your": [0, 65535], "are done": [0, 65535], "done my": [0, 65535], "woes end": [0, 65535], "end likewise": [0, 65535], "likewise with": [0, 65535], "the euening": [0, 65535], "euening sonne": [0, 65535], "sonne duk": [0, 65535], "duk well": [0, 65535], "well siracusian": [0, 65535], "siracusian say": [0, 65535], "say in": [0, 65535], "in briefe": [0, 65535], "briefe the": [0, 65535], "the cause": [0, 65535], "cause why": [0, 65535], "thou departedst": [0, 65535], "departedst from": [0, 65535], "thy natiue": [0, 65535], "natiue home": [0, 65535], "cause thou": [0, 65535], "cam'st to": [0, 65535], "to ephesus": [0, 65535], "ephesus mer": [0, 65535], "mer a": [0, 65535], "a heauier": [0, 65535], "heauier taske": [0, 65535], "taske could": [0, 65535], "haue beene": [0, 65535], "beene impos'd": [0, 65535], "impos'd then": [0, 65535], "to speake": [0, 65535], "speake my": [0, 65535], "my griefes": [0, 65535], "griefes vnspeakeable": [0, 65535], "vnspeakeable yet": [0, 65535], "yet that": [0, 65535], "world may": [0, 65535], "may witnesse": [0, 65535], "witnesse that": [0, 65535], "my end": [0, 65535], "end was": [0, 65535], "was wrought": [0, 65535], "wrought by": [0, 65535], "nature not": [0, 65535], "by vile": [0, 65535], "vile offence": [0, 65535], "offence ile": [0, 65535], "ile vtter": [0, 65535], "vtter what": [0, 65535], "what my": [0, 65535], "my sorrow": [0, 65535], "sorrow giues": [0, 65535], "giues me": [0, 65535], "me leaue": [0, 65535], "leaue in": [0, 65535], "in syracusa": [0, 65535], "syracusa was": [0, 65535], "i borne": [0, 65535], "borne and": [0, 65535], "and wedde": [0, 65535], "wedde vnto": [0, 65535], "woman happy": [0, 65535], "happy but": [0, 65535], "me had": [0, 65535], "not our": [0, 65535], "our hap": [0, 65535], "hap beene": [0, 65535], "beene bad": [0, 65535], "bad with": [0, 65535], "her i": [0, 65535], "i liu'd": [0, 65535], "liu'd in": [0, 65535], "in ioy": [0, 65535], "ioy our": [0, 65535], "our wealth": [0, 65535], "wealth increast": [0, 65535], "increast by": [0, 65535], "by prosperous": [0, 65535], "prosperous voyages": [0, 65535], "voyages i": [0, 65535], "often made": [0, 65535], "to epidamium": [0, 65535], "epidamium till": [0, 65535], "till my": [0, 65535], "my factors": [0, 65535], "factors death": [0, 65535], "he great": [0, 65535], "of goods": [0, 65535], "goods at": [0, 65535], "at randone": [0, 65535], "randone left": [0, 65535], "left drew": [0, 65535], "drew me": [0, 65535], "me from": [0, 65535], "from kinde": [0, 65535], "kinde embracements": [0, 65535], "embracements of": [0, 65535], "my spouse": [0, 65535], "spouse from": [0, 65535], "from whom": [0, 65535], "whom my": [0, 65535], "my absence": [0, 65535], "absence was": [0, 65535], "not sixe": [0, 65535], "sixe moneths": [0, 65535], "moneths olde": [0, 65535], "olde before": [0, 65535], "her selfe": [0, 65535], "selfe almost": [0, 65535], "almost at": [0, 65535], "at fainting": [0, 65535], "fainting vnder": [0, 65535], "vnder the": [0, 65535], "the pleasing": [0, 65535], "pleasing punishment": [0, 65535], "punishment that": [0, 65535], "that women": [0, 65535], "women beare": [0, 65535], "beare had": [0, 65535], "had made": [0, 65535], "made prouision": [0, 65535], "prouision for": [0, 65535], "her following": [0, 65535], "following me": [0, 65535], "soone and": [0, 65535], "and safe": [0, 65535], "safe arriued": [0, 65535], "arriued where": [0, 65535], "had she": [0, 65535], "she not": [0, 65535], "beene long": [0, 65535], "long but": [0, 65535], "she became": [0, 65535], "became a": [0, 65535], "a ioyfull": [0, 65535], "ioyfull mother": [0, 65535], "mother of": [0, 65535], "two goodly": [0, 65535], "goodly sonnes": [0, 65535], "was strange": [0, 65535], "strange the": [0, 65535], "one so": [0, 65535], "other as": [0, 65535], "as could": [0, 65535], "be distinguish'd": [0, 65535], "distinguish'd but": [0, 65535], "by names": [0, 65535], "names that": [0, 65535], "very howre": [0, 65535], "howre and": [0, 65535], "the selfe": [0, 65535], "selfe same": [0, 65535], "same inne": [0, 65535], "inne a": [0, 65535], "a meane": [0, 65535], "meane woman": [0, 65535], "woman was": [0, 65535], "was deliuered": [0, 65535], "deliuered of": [0, 65535], "burthen male": [0, 65535], "male twins": [0, 65535], "twins both": [0, 65535], "both alike": [0, 65535], "alike those": [0, 65535], "those for": [0, 65535], "parents were": [0, 65535], "were exceeding": [0, 65535], "exceeding poore": [0, 65535], "i bought": [0, 65535], "brought vp": [0, 65535], "vp to": [0, 65535], "to attend": [0, 65535], "sonnes my": [0, 65535], "wife not": [0, 65535], "not meanely": [0, 65535], "meanely prowd": [0, 65535], "prowd of": [0, 65535], "two such": [0, 65535], "such boyes": [0, 65535], "boyes made": [0, 65535], "made daily": [0, 65535], "daily motions": [0, 65535], "motions for": [0, 65535], "for our": [0, 65535], "our home": [0, 65535], "home returne": [0, 65535], "returne vnwilling": [0, 65535], "vnwilling i": [0, 65535], "i agreed": [0, 65535], "agreed alas": [0, 65535], "alas too": [0, 65535], "too soone": [0, 65535], "soone wee": [0, 65535], "wee came": [0, 65535], "came aboord": [0, 65535], "aboord a": [0, 65535], "a league": [0, 65535], "league from": [0, 65535], "from epidamium": [0, 65535], "epidamium had": [0, 65535], "had we": [0, 65535], "we saild": [0, 65535], "saild before": [0, 65535], "the alwaies": [0, 65535], "alwaies winde": [0, 65535], "winde obeying": [0, 65535], "obeying deepe": [0, 65535], "deepe gaue": [0, 65535], "gaue any": [0, 65535], "any tragicke": [0, 65535], "tragicke instance": [0, 65535], "instance of": [0, 65535], "our harme": [0, 65535], "harme but": [0, 65535], "but longer": [0, 65535], "longer did": [0, 65535], "did we": [0, 65535], "we not": [0, 65535], "not retaine": [0, 65535], "retaine much": [0, 65535], "much hope": [0, 65535], "hope for": [0, 65535], "what obscured": [0, 65535], "obscured light": [0, 65535], "light the": [0, 65535], "the heauens": [0, 65535], "heauens did": [0, 65535], "did grant": [0, 65535], "grant did": [0, 65535], "did but": [0, 65535], "but conuay": [0, 65535], "conuay vnto": [0, 65535], "vnto our": [0, 65535], "our fearefull": [0, 65535], "fearefull mindes": [0, 65535], "mindes a": [0, 65535], "a doubtfull": [0, 65535], "doubtfull warrant": [0, 65535], "warrant of": [0, 65535], "of immediate": [0, 65535], "immediate death": [0, 65535], "death which": [0, 65535], "which though": [0, 65535], "selfe would": [0, 65535], "would gladly": [0, 65535], "gladly haue": [0, 65535], "haue imbrac'd": [0, 65535], "imbrac'd yet": [0, 65535], "the incessant": [0, 65535], "incessant weepings": [0, 65535], "weepings of": [0, 65535], "wife weeping": [0, 65535], "weeping before": [0, 65535], "before for": [0, 65535], "saw must": [0, 65535], "must come": [0, 65535], "and pitteous": [0, 65535], "pitteous playnings": [0, 65535], "playnings of": [0, 65535], "the prettie": [0, 65535], "prettie babes": [0, 65535], "babes that": [0, 65535], "that mourn'd": [0, 65535], "mourn'd for": [0, 65535], "for fashion": [0, 65535], "fashion ignorant": [0, 65535], "ignorant what": [0, 65535], "what to": [0, 65535], "to feare": [0, 65535], "feare forst": [0, 65535], "forst me": [0, 65535], "seeke delayes": [0, 65535], "delayes for": [0, 65535], "for them": [0, 65535], "this it": [0, 65535], "for other": [0, 65535], "other meanes": [0, 65535], "meanes was": [0, 65535], "was none": [0, 65535], "none the": [0, 65535], "the sailors": [0, 65535], "sailors sought": [0, 65535], "sought for": [0, 65535], "safety by": [0, 65535], "our boate": [0, 65535], "boate and": [0, 65535], "left the": [0, 65535], "the ship": [0, 65535], "ship then": [0, 65535], "then sinking": [0, 65535], "sinking ripe": [0, 65535], "ripe to": [0, 65535], "vs my": [0, 65535], "wife more": [0, 65535], "more carefull": [0, 65535], "carefull for": [0, 65535], "latter borne": [0, 65535], "borne had": [0, 65535], "had fastned": [0, 65535], "fastned him": [0, 65535], "him vnto": [0, 65535], "small spare": [0, 65535], "spare mast": [0, 65535], "mast such": [0, 65535], "as sea": [0, 65535], "sea faring": [0, 65535], "faring men": [0, 65535], "men prouide": [0, 65535], "prouide for": [0, 65535], "for stormes": [0, 65535], "stormes to": [0, 65535], "him one": [0, 65535], "other twins": [0, 65535], "twins was": [0, 65535], "was bound": [0, 65535], "bound whil'st": [0, 65535], "had beene": [0, 65535], "beene like": [0, 65535], "like heedfull": [0, 65535], "heedfull of": [0, 65535], "other the": [0, 65535], "children thus": [0, 65535], "thus dispos'd": [0, 65535], "dispos'd my": [0, 65535], "i fixing": [0, 65535], "fixing our": [0, 65535], "our eyes": [0, 65535], "eyes on": [0, 65535], "on whom": [0, 65535], "whom our": [0, 65535], "our care": [0, 65535], "care was": [0, 65535], "was fixt": [0, 65535], "fixt fastned": [0, 65535], "fastned our": [0, 65535], "selues at": [0, 65535], "at eyther": [0, 65535], "eyther end": [0, 65535], "end the": [0, 65535], "the mast": [0, 65535], "mast and": [0, 65535], "and floating": [0, 65535], "floating straight": [0, 65535], "straight obedient": [0, 65535], "obedient to": [0, 65535], "the streame": [0, 65535], "streame was": [0, 65535], "was carried": [0, 65535], "carried towards": [0, 65535], "towards corinth": [0, 65535], "corinth as": [0, 65535], "as we": [0, 65535], "we thought": [0, 65535], "thought at": [0, 65535], "at length": [0, 65535], "length the": [0, 65535], "the sonne": [0, 65535], "sonne gazing": [0, 65535], "gazing vpon": [0, 65535], "vpon the": [0, 65535], "the earth": [0, 65535], "earth disperst": [0, 65535], "disperst those": [0, 65535], "those vapours": [0, 65535], "vapours that": [0, 65535], "that offended": [0, 65535], "offended vs": [0, 65535], "the benefit": [0, 65535], "benefit of": [0, 65535], "his wished": [0, 65535], "wished light": [0, 65535], "the seas": [0, 65535], "seas waxt": [0, 65535], "waxt calme": [0, 65535], "calme and": [0, 65535], "we discouered": [0, 65535], "discouered two": [0, 65535], "two shippes": [0, 65535], "shippes from": [0, 65535], "from farre": [0, 65535], "farre making": [0, 65535], "making amaine": [0, 65535], "amaine to": [0, 65535], "vs of": [0, 65535], "corinth that": [0, 65535], "of epidarus": [0, 65535], "epidarus this": [0, 65535], "but ere": [0, 65535], "ere they": [0, 65535], "came oh": [0, 65535], "me say": [0, 65535], "say no": [0, 65535], "more gather": [0, 65535], "gather the": [0, 65535], "the sequell": [0, 65535], "sequell by": [0, 65535], "went before": [0, 65535], "before duk": [0, 65535], "duk nay": [0, 65535], "nay forward": [0, 65535], "forward old": [0, 65535], "old man": [0, 65535], "man doe": [0, 65535], "not breake": [0, 65535], "breake off": [0, 65535], "off so": [0, 65535], "may pitty": [0, 65535], "pitty though": [0, 65535], "though not": [0, 65535], "not pardon": [0, 65535], "pardon thee": [0, 65535], "thee merch": [0, 65535], "merch oh": [0, 65535], "oh had": [0, 65535], "the gods": [0, 65535], "gods done": [0, 65535], "done so": [0, 65535], "not now": [0, 65535], "now worthily": [0, 65535], "worthily tearm'd": [0, 65535], "tearm'd them": [0, 65535], "them mercilesse": [0, 65535], "mercilesse to": [0, 65535], "vs for": [0, 65535], "for ere": [0, 65535], "ere the": [0, 65535], "the ships": [0, 65535], "ships could": [0, 65535], "could meet": [0, 65535], "meet by": [0, 65535], "by twice": [0, 65535], "twice fiue": [0, 65535], "fiue leagues": [0, 65535], "leagues we": [0, 65535], "were encountred": [0, 65535], "encountred by": [0, 65535], "mighty rocke": [0, 65535], "rocke which": [0, 65535], "which being": [0, 65535], "being violently": [0, 65535], "violently borne": [0, 65535], "borne vp": [0, 65535], "vp our": [0, 65535], "our helpefull": [0, 65535], "helpefull ship": [0, 65535], "ship was": [0, 65535], "was splitted": [0, 65535], "splitted in": [0, 65535], "midst so": [0, 65535], "this vniust": [0, 65535], "vniust diuorce": [0, 65535], "diuorce of": [0, 65535], "of vs": [0, 65535], "vs fortune": [0, 65535], "fortune had": [0, 65535], "had left": [0, 65535], "left to": [0, 65535], "to both": [0, 65535], "vs alike": [0, 65535], "alike what": [0, 65535], "to delight": [0, 65535], "delight in": [0, 65535], "to sorrow": [0, 65535], "sorrow for": [0, 65535], "her part": [0, 65535], "part poore": [0, 65535], "poore soule": [0, 65535], "soule seeming": [0, 65535], "seeming as": [0, 65535], "as burdened": [0, 65535], "burdened with": [0, 65535], "with lesser": [0, 65535], "lesser waight": [0, 65535], "waight but": [0, 65535], "lesser woe": [0, 65535], "woe was": [0, 65535], "carried with": [0, 65535], "more speed": [0, 65535], "speed before": [0, 65535], "winde and": [0, 65535], "in our": [0, 65535], "our sight": [0, 65535], "sight they": [0, 65535], "they three": [0, 65535], "three were": [0, 65535], "vp by": [0, 65535], "by fishermen": [0, 65535], "length another": [0, 65535], "another ship": [0, 65535], "ship had": [0, 65535], "had seiz'd": [0, 65535], "seiz'd on": [0, 65535], "and knowing": [0, 65535], "knowing whom": [0, 65535], "whom it": [0, 65535], "was their": [0, 65535], "their hap": [0, 65535], "hap to": [0, 65535], "saue gaue": [0, 65535], "gaue healthfull": [0, 65535], "healthfull welcome": [0, 65535], "their ship": [0, 65535], "ship wrackt": [0, 65535], "wrackt guests": [0, 65535], "guests and": [0, 65535], "and would": [0, 65535], "haue reft": [0, 65535], "reft the": [0, 65535], "the fishers": [0, 65535], "fishers of": [0, 65535], "their prey": [0, 65535], "prey had": [0, 65535], "not their": [0, 65535], "their backe": [0, 65535], "backe beene": [0, 65535], "beene very": [0, 65535], "very slow": [0, 65535], "slow of": [0, 65535], "of saile": [0, 65535], "therefore homeward": [0, 65535], "homeward did": [0, 65535], "did they": [0, 65535], "they bend": [0, 65535], "bend their": [0, 65535], "their course": [0, 65535], "course thus": [0, 65535], "thus haue": [0, 65535], "haue you": [0, 65535], "you heard": [0, 65535], "me seuer'd": [0, 65535], "seuer'd from": [0, 65535], "my blisse": [0, 65535], "blisse that": [0, 65535], "by misfortunes": [0, 65535], "misfortunes was": [0, 65535], "was my": [0, 65535], "life prolong'd": [0, 65535], "prolong'd to": [0, 65535], "tell sad": [0, 65535], "sad stories": [0, 65535], "stories of": [0, 65535], "owne mishaps": [0, 65535], "mishaps duke": [0, 65535], "the sake": [0, 65535], "sake of": [0, 65535], "them thou": [0, 65535], "thou sorrowest": [0, 65535], "sorrowest for": [0, 65535], "for doe": [0, 65535], "doe me": [0, 65535], "me the": [0, 65535], "the fauour": [0, 65535], "fauour to": [0, 65535], "to dilate": [0, 65535], "dilate at": [0, 65535], "at full": [0, 65535], "full what": [0, 65535], "what haue": [0, 65535], "haue befalne": [0, 65535], "befalne of": [0, 65535], "they till": [0, 65535], "now merch": [0, 65535], "merch my": [0, 65535], "my yongest": [0, 65535], "yongest boy": [0, 65535], "yet my": [0, 65535], "my eldest": [0, 65535], "eldest care": [0, 65535], "care at": [0, 65535], "at eighteene": [0, 65535], "eighteene yeeres": [0, 65535], "yeeres became": [0, 65535], "became inquisitiue": [0, 65535], "inquisitiue after": [0, 65535], "after his": [0, 65535], "his brother": [0, 65535], "and importun'd": [0, 65535], "importun'd me": [0, 65535], "his attendant": [0, 65535], "attendant so": [0, 65535], "his case": [0, 65535], "case was": [0, 65535], "like reft": [0, 65535], "reft of": [0, 65535], "brother but": [0, 65535], "but retain'd": [0, 65535], "retain'd his": [0, 65535], "name might": [0, 65535], "him company": [0, 65535], "company in": [0, 65535], "the quest": [0, 65535], "quest of": [0, 65535], "him whom": [0, 65535], "whom whil'st": [0, 65535], "i laboured": [0, 65535], "laboured of": [0, 65535], "loue to": [0, 65535], "see i": [0, 65535], "i hazarded": [0, 65535], "hazarded the": [0, 65535], "the losse": [0, 65535], "losse of": [0, 65535], "of whom": [0, 65535], "i lou'd": [0, 65535], "lou'd fiue": [0, 65535], "fiue sommers": [0, 65535], "sommers haue": [0, 65535], "i spent": [0, 65535], "spent in": [0, 65535], "in farthest": [0, 65535], "farthest greece": [0, 65535], "greece roming": [0, 65535], "roming cleane": [0, 65535], "cleane through": [0, 65535], "the bounds": [0, 65535], "bounds of": [0, 65535], "of asia": [0, 65535], "asia and": [0, 65535], "and coasting": [0, 65535], "coasting homeward": [0, 65535], "homeward came": [0, 65535], "ephesus hopelesse": [0, 65535], "hopelesse to": [0, 65535], "to finde": [0, 65535], "finde yet": [0, 65535], "yet loth": [0, 65535], "loth to": [0, 65535], "to leaue": [0, 65535], "leaue vnsought": [0, 65535], "vnsought or": [0, 65535], "or that": [0, 65535], "that or": [0, 65535], "any place": [0, 65535], "that harbours": [0, 65535], "harbours men": [0, 65535], "men but": [0, 65535], "but heere": [0, 65535], "heere must": [0, 65535], "must end": [0, 65535], "the story": [0, 65535], "story of": [0, 65535], "and happy": [0, 65535], "happy were": [0, 65535], "were i": [0, 65535], "my timelie": [0, 65535], "timelie death": [0, 65535], "death could": [0, 65535], "could all": [0, 65535], "my trauells": [0, 65535], "trauells warrant": [0, 65535], "warrant me": [0, 65535], "they liue": [0, 65535], "liue duke": [0, 65535], "duke haplesse": [0, 65535], "haplesse egeon": [0, 65535], "egeon whom": [0, 65535], "whom the": [0, 65535], "the fates": [0, 65535], "fates haue": [0, 65535], "haue markt": [0, 65535], "markt to": [0, 65535], "to beare": [0, 65535], "beare the": [0, 65535], "the extremitie": [0, 65535], "extremitie of": [0, 65535], "of dire": [0, 65535], "dire mishap": [0, 65535], "mishap now": [0, 65535], "now trust": [0, 65535], "me were": [0, 65535], "were it": [0, 65535], "not against": [0, 65535], "against our": [0, 65535], "lawes against": [0, 65535], "my crowne": [0, 65535], "crowne my": [0, 65535], "my oath": [0, 65535], "oath my": [0, 65535], "my dignity": [0, 65535], "dignity which": [0, 65535], "which princes": [0, 65535], "princes would": [0, 65535], "would they": [0, 65535], "they may": [0, 65535], "not disanull": [0, 65535], "disanull my": [0, 65535], "soule should": [0, 65535], "should sue": [0, 65535], "sue as": [0, 65535], "as aduocate": [0, 65535], "aduocate for": [0, 65535], "thee but": [0, 65535], "though thou": [0, 65535], "art adiudged": [0, 65535], "adiudged to": [0, 65535], "passed sentence": [0, 65535], "sentence may": [0, 65535], "be recal'd": [0, 65535], "recal'd but": [0, 65535], "our honours": [0, 65535], "honours great": [0, 65535], "great disparagement": [0, 65535], "disparagement yet": [0, 65535], "yet will": [0, 65535], "i fauour": [0, 65535], "fauour thee": [0, 65535], "can therefore": [0, 65535], "therefore marchant": [0, 65535], "marchant ile": [0, 65535], "ile limit": [0, 65535], "limit thee": [0, 65535], "thee this": [0, 65535], "day to": [0, 65535], "seeke thy": [0, 65535], "thy helpe": [0, 65535], "helpe by": [0, 65535], "by beneficiall": [0, 65535], "beneficiall helpe": [0, 65535], "helpe try": [0, 65535], "try all": [0, 65535], "the friends": [0, 65535], "friends thou": [0, 65535], "hast in": [0, 65535], "ephesus beg": [0, 65535], "beg thou": [0, 65535], "thou or": [0, 65535], "or borrow": [0, 65535], "borrow to": [0, 65535], "make vp": [0, 65535], "vp the": [0, 65535], "summe and": [0, 65535], "liue if": [0, 65535], "if no": [0, 65535], "no then": [0, 65535], "then thou": [0, 65535], "art doom'd": [0, 65535], "doom'd to": [0, 65535], "die iaylor": [0, 65535], "iaylor take": [0, 65535], "thy custodie": [0, 65535], "custodie iaylor": [0, 65535], "iaylor i": [0, 65535], "will my": [0, 65535], "lord merch": [0, 65535], "merch hopelesse": [0, 65535], "hopelesse and": [0, 65535], "and helpelesse": [0, 65535], "helpelesse doth": [0, 65535], "doth egean": [0, 65535], "egean wend": [0, 65535], "wend but": [0, 65535], "to procrastinate": [0, 65535], "procrastinate his": [0, 65535], "his liuelesse": [0, 65535], "liuelesse end": [0, 65535], "end exeunt": [0, 65535], "antipholis erotes": [0, 65535], "erotes a": [0, 65535], "a marchant": [0, 65535], "marchant and": [0, 65535], "dromio mer": [0, 65535], "mer therefore": [0, 65535], "therefore giue": [0, 65535], "giue out": [0, 65535], "are of": [0, 65535], "epidamium lest": [0, 65535], "lest that": [0, 65535], "goods too": [0, 65535], "soone be": [0, 65535], "be confiscate": [0, 65535], "confiscate this": [0, 65535], "this very": [0, 65535], "very day": [0, 65535], "a syracusian": [0, 65535], "syracusian marchant": [0, 65535], "marchant is": [0, 65535], "is apprehended": [0, 65535], "apprehended for": [0, 65535], "a riuall": [0, 65535], "riuall here": [0, 65535], "not being": [0, 65535], "being able": [0, 65535], "able to": [0, 65535], "buy out": [0, 65535], "life according": [0, 65535], "the statute": [0, 65535], "statute of": [0, 65535], "towne dies": [0, 65535], "dies ere": [0, 65535], "the wearie": [0, 65535], "wearie sunne": [0, 65535], "sunne set": [0, 65535], "the west": [0, 65535], "west there": [0, 65535], "your monie": [0, 65535], "monie that": [0, 65535], "keepe ant": [0, 65535], "ant goe": [0, 65535], "goe beare": [0, 65535], "beare it": [0, 65535], "the centaure": [0, 65535], "centaure where": [0, 65535], "where we": [0, 65535], "we host": [0, 65535], "stay there": [0, 65535], "dromio till": [0, 65535], "i come": [0, 65535], "thee within": [0, 65535], "houre it": [0, 65535], "be dinner": [0, 65535], "time till": [0, 65535], "till that": [0, 65535], "that ile": [0, 65535], "ile view": [0, 65535], "view the": [0, 65535], "the manners": [0, 65535], "manners of": [0, 65535], "towne peruse": [0, 65535], "peruse the": [0, 65535], "the traders": [0, 65535], "traders gaze": [0, 65535], "gaze vpon": [0, 65535], "the buildings": [0, 65535], "buildings and": [0, 65535], "then returne": [0, 65535], "returne and": [0, 65535], "and sleepe": [0, 65535], "sleepe within": [0, 65535], "within mine": [0, 65535], "mine inne": [0, 65535], "inne for": [0, 65535], "for with": [0, 65535], "with long": [0, 65535], "long trauaile": [0, 65535], "trauaile i": [0, 65535], "am stiffe": [0, 65535], "stiffe and": [0, 65535], "and wearie": [0, 65535], "wearie get": [0, 65535], "thee away": [0, 65535], "away dro": [0, 65535], "dro many": [0, 65535], "your word": [0, 65535], "and goe": [0, 65535], "goe indeede": [0, 65535], "indeede hauing": [0, 65535], "hauing so": [0, 65535], "good a": [0, 65535], "meane exit": [0, 65535], "exit dromio": [0, 65535], "dromio ant": [0, 65535], "ant a": [0, 65535], "a trustie": [0, 65535], "trustie villaine": [0, 65535], "villaine sir": [0, 65535], "very oft": [0, 65535], "oft when": [0, 65535], "am dull": [0, 65535], "dull with": [0, 65535], "with care": [0, 65535], "care and": [0, 65535], "and melancholly": [0, 65535], "melancholly lightens": [0, 65535], "lightens my": [0, 65535], "my humour": [0, 65535], "humour with": [0, 65535], "his merry": [0, 65535], "merry iests": [0, 65535], "iests what": [0, 65535], "what will": [0, 65535], "walke with": [0, 65535], "me about": [0, 65535], "towne and": [0, 65535], "then goe": [0, 65535], "goe to": [0, 65535], "my inne": [0, 65535], "inne and": [0, 65535], "and dine": [0, 65535], "me e": [0, 65535], "e mar": [0, 65535], "am inuited": [0, 65535], "inuited sir": [0, 65535], "to certaine": [0, 65535], "certaine marchants": [0, 65535], "marchants of": [0, 65535], "hope to": [0, 65535], "make much": [0, 65535], "much benefit": [0, 65535], "benefit i": [0, 65535], "i craue": [0, 65535], "craue your": [0, 65535], "your pardon": [0, 65535], "pardon soone": [0, 65535], "fiue a": [0, 65535], "clocke please": [0, 65535], "please you": [0, 65535], "you ile": [0, 65535], "ile meete": [0, 65535], "meete with": [0, 65535], "you vpon": [0, 65535], "and afterward": [0, 65535], "afterward consort": [0, 65535], "consort you": [0, 65535], "till bed": [0, 65535], "bed time": [0, 65535], "time my": [0, 65535], "my present": [0, 65535], "present businesse": [0, 65535], "businesse cals": [0, 65535], "cals me": [0, 65535], "you now": [0, 65535], "now ant": [0, 65535], "ant farewell": [0, 65535], "farewell till": [0, 65535], "will goe": [0, 65535], "goe loose": [0, 65535], "and wander": [0, 65535], "wander vp": [0, 65535], "vp and": [0, 65535], "and downe": [0, 65535], "downe to": [0, 65535], "citie e": [0, 65535], "mar sir": [0, 65535], "i commend": [0, 65535], "commend you": [0, 65535], "owne content": [0, 65535], "content exeunt": [0, 65535], "exeunt ant": [0, 65535], "he that": [0, 65535], "that commends": [0, 65535], "commends me": [0, 65535], "to mine": [0, 65535], "content commends": [0, 65535], "thing i": [0, 65535], "get i": [0, 65535], "world am": [0, 65535], "am like": [0, 65535], "water that": [0, 65535], "the ocean": [0, 65535], "ocean seekes": [0, 65535], "seekes another": [0, 65535], "another drop": [0, 65535], "drop who": [0, 65535], "who falling": [0, 65535], "falling there": [0, 65535], "there to": [0, 65535], "finde his": [0, 65535], "his fellow": [0, 65535], "fellow forth": [0, 65535], "forth vnseene": [0, 65535], "vnseene inquisitiue": [0, 65535], "inquisitiue confounds": [0, 65535], "confounds himselfe": [0, 65535], "himselfe so": [0, 65535], "finde a": [0, 65535], "a mother": [0, 65535], "mother and": [0, 65535], "brother in": [0, 65535], "in quest": [0, 65535], "them vnhappie": [0, 65535], "vnhappie a": [0, 65535], "a loose": [0, 65535], "selfe enter": [0, 65535], "ephesus here": [0, 65535], "here comes": [0, 65535], "comes the": [0, 65535], "the almanacke": [0, 65535], "almanacke of": [0, 65535], "my true": [0, 65535], "true date": [0, 65535], "date what": [0, 65535], "what now": [0, 65535], "now how": [0, 65535], "how chance": [0, 65535], "chance thou": [0, 65535], "art return'd": [0, 65535], "return'd so": [0, 65535], "so soone": [0, 65535], "soone e": [0, 65535], "dro return'd": [0, 65535], "soone rather": [0, 65535], "rather approacht": [0, 65535], "approacht too": [0, 65535], "late the": [0, 65535], "the capon": [0, 65535], "capon burnes": [0, 65535], "burnes the": [0, 65535], "the pig": [0, 65535], "pig fals": [0, 65535], "fals from": [0, 65535], "the spit": [0, 65535], "spit the": [0, 65535], "the clocke": [0, 65535], "clocke hath": [0, 65535], "hath strucken": [0, 65535], "strucken twelue": [0, 65535], "twelue vpon": [0, 65535], "bell my": [0, 65535], "my mistris": [0, 65535], "mistris made": [0, 65535], "it one": [0, 65535], "one vpon": [0, 65535], "my cheeke": [0, 65535], "cheeke she": [0, 65535], "so hot": [0, 65535], "hot because": [0, 65535], "the meate": [0, 65535], "meate is": [0, 65535], "is colde": [0, 65535], "colde the": [0, 65535], "colde because": [0, 65535], "come not": [0, 65535], "not home": [0, 65535], "home you": [0, 65535], "home because": [0, 65535], "no stomacke": [0, 65535], "stomacke you": [0, 65535], "stomacke hauing": [0, 65535], "hauing broke": [0, 65535], "broke your": [0, 65535], "your fast": [0, 65535], "fast but": [0, 65535], "but we": [0, 65535], "we that": [0, 65535], "what 'tis": [0, 65535], "to fast": [0, 65535], "and pray": [0, 65535], "pray are": [0, 65535], "are penitent": [0, 65535], "penitent for": [0, 65535], "your default": [0, 65535], "default to": [0, 65535], "day ant": [0, 65535], "ant stop": [0, 65535], "stop in": [0, 65535], "your winde": [0, 65535], "winde sir": [0, 65535], "sir tell": [0, 65535], "me this": [0, 65535], "pray where": [0, 65535], "where haue": [0, 65535], "you left": [0, 65535], "the mony": [0, 65535], "mony that": [0, 65535], "gaue you": [0, 65535], "oh sixe": [0, 65535], "sixe pence": [0, 65535], "pence that": [0, 65535], "a wensday": [0, 65535], "wensday last": [0, 65535], "the sadler": [0, 65535], "sadler for": [0, 65535], "mistris crupper": [0, 65535], "crupper the": [0, 65535], "sadler had": [0, 65535], "had it": [0, 65535], "it sir": [0, 65535], "i kept": [0, 65535], "kept it": [0, 65535], "a sportiue": [0, 65535], "sportiue humor": [0, 65535], "humor now": [0, 65535], "now tell": [0, 65535], "and dally": [0, 65535], "dally not": [0, 65535], "not where": [0, 65535], "the monie": [0, 65535], "monie we": [0, 65535], "we being": [0, 65535], "being strangers": [0, 65535], "strangers here": [0, 65535], "here how": [0, 65535], "how dar'st": [0, 65535], "dar'st thou": [0, 65535], "thou trust": [0, 65535], "trust so": [0, 65535], "great a": [0, 65535], "a charge": [0, 65535], "charge from": [0, 65535], "from thine": [0, 65535], "owne custodie": [0, 65535], "custodie e": [0, 65535], "you iest": [0, 65535], "iest sir": [0, 65535], "sir as": [0, 65535], "you sit": [0, 65535], "sit at": [0, 65535], "mistris come": [0, 65535], "in post": [0, 65535], "post if": [0, 65535], "i returne": [0, 65535], "returne i": [0, 65535], "be post": [0, 65535], "post indeede": [0, 65535], "indeede for": [0, 65535], "will scoure": [0, 65535], "scoure your": [0, 65535], "your fault": [0, 65535], "fault vpon": [0, 65535], "my pate": [0, 65535], "pate me": [0, 65535], "me thinkes": [0, 65535], "thinkes your": [0, 65535], "your maw": [0, 65535], "maw like": [0, 65535], "like mine": [0, 65535], "mine should": [0, 65535], "your cooke": [0, 65535], "cooke and": [0, 65535], "and strike": [0, 65535], "strike you": [0, 65535], "messenger ant": [0, 65535], "ant come": [0, 65535], "come dromio": [0, 65535], "come these": [0, 65535], "these iests": [0, 65535], "iests are": [0, 65535], "are out": [0, 65535], "season reserue": [0, 65535], "reserue them": [0, 65535], "them till": [0, 65535], "till a": [0, 65535], "a merrier": [0, 65535], "merrier houre": [0, 65535], "houre then": [0, 65535], "then this": [0, 65535], "this where": [0, 65535], "gaue in": [0, 65535], "in charge": [0, 65535], "charge to": [0, 65535], "thee e": [0, 65535], "dro to": [0, 65535], "gaue no": [0, 65535], "gold to": [0, 65535], "come on": [0, 65535], "on sir": [0, 65535], "knaue haue": [0, 65535], "done your": [0, 65535], "your foolishnes": [0, 65535], "foolishnes and": [0, 65535], "how thou": [0, 65535], "hast dispos'd": [0, 65535], "dispos'd thy": [0, 65535], "thy charge": [0, 65535], "charge e": [0, 65535], "dro my": [0, 65535], "my charge": [0, 65535], "charge was": [0, 65535], "fetch you": [0, 65535], "mart home": [0, 65535], "your house": [0, 65535], "house the": [0, 65535], "ph\u0153nix sir": [0, 65535], "mistris and": [0, 65535], "sister staies": [0, 65535], "staies for": [0, 65535], "ant now": [0, 65535], "now as": [0, 65535], "a christian": [0, 65535], "christian answer": [0, 65535], "answer me": [0, 65535], "what safe": [0, 65535], "place you": [0, 65535], "haue bestow'd": [0, 65535], "bestow'd my": [0, 65535], "my monie": [0, 65535], "monie or": [0, 65535], "shall breake": [0, 65535], "breake that": [0, 65535], "that merrie": [0, 65535], "merrie sconce": [0, 65535], "sconce of": [0, 65535], "of yours": [0, 65535], "yours that": [0, 65535], "that stands": [0, 65535], "stands on": [0, 65535], "on tricks": [0, 65535], "tricks when": [0, 65535], "am vndispos'd": [0, 65535], "vndispos'd where": [0, 65535], "markes thou": [0, 65535], "hadst of": [0, 65535], "haue some": [0, 65535], "some markes": [0, 65535], "markes of": [0, 65535], "yours vpon": [0, 65535], "pate some": [0, 65535], "mistris markes": [0, 65535], "markes vpon": [0, 65535], "markes betweene": [0, 65535], "both if": [0, 65535], "should pay": [0, 65535], "pay your": [0, 65535], "your worship": [0, 65535], "worship those": [0, 65535], "those againe": [0, 65535], "againe perchance": [0, 65535], "perchance you": [0, 65535], "not beare": [0, 65535], "them patiently": [0, 65535], "patiently ant": [0, 65535], "thy mistris": [0, 65535], "markes what": [0, 65535], "what mistris": [0, 65535], "mistris slaue": [0, 65535], "slaue hast": [0, 65535], "thou e": [0, 65535], "your worships": [0, 65535], "worships wife": [0, 65535], "wife my": [0, 65535], "mistris at": [0, 65535], "ph\u0153nix she": [0, 65535], "doth fast": [0, 65535], "fast till": [0, 65535], "and praies": [0, 65535], "praies that": [0, 65535], "will hie": [0, 65535], "hie you": [0, 65535], "what wilt": [0, 65535], "wilt thou": [0, 65535], "thou flout": [0, 65535], "flout me": [0, 65535], "thus vnto": [0, 65535], "face being": [0, 65535], "being forbid": [0, 65535], "forbid there": [0, 65535], "that sir": [0, 65535], "knaue e": [0, 65535], "what meane": [0, 65535], "sake hold": [0, 65535], "hands nay": [0, 65535], "nay and": [0, 65535], "take my": [0, 65535], "heeles exeunt": [0, 65535], "exeunt dromio": [0, 65535], "dromio ep": [0, 65535], "ep ant": [0, 65535], "ant vpon": [0, 65535], "life by": [0, 65535], "by some": [0, 65535], "some deuise": [0, 65535], "deuise or": [0, 65535], "the villaine": [0, 65535], "villaine is": [0, 65535], "is ore": [0, 65535], "ore wrought": [0, 65535], "wrought of": [0, 65535], "monie they": [0, 65535], "say this": [0, 65535], "is full": [0, 65535], "of cosenage": [0, 65535], "cosenage as": [0, 65535], "as nimble": [0, 65535], "nimble iuglers": [0, 65535], "iuglers that": [0, 65535], "that deceiue": [0, 65535], "deceiue the": [0, 65535], "eie darke": [0, 65535], "darke working": [0, 65535], "working sorcerers": [0, 65535], "sorcerers that": [0, 65535], "that change": [0, 65535], "change the": [0, 65535], "the minde": [0, 65535], "minde soule": [0, 65535], "soule killing": [0, 65535], "killing witches": [0, 65535], "witches that": [0, 65535], "that deforme": [0, 65535], "deforme the": [0, 65535], "the bodie": [0, 65535], "bodie disguised": [0, 65535], "disguised cheaters": [0, 65535], "cheaters prating": [0, 65535], "prating mountebankes": [0, 65535], "mountebankes and": [0, 65535], "and manie": [0, 65535], "manie such": [0, 65535], "such like": [0, 65535], "like liberties": [0, 65535], "liberties of": [0, 65535], "of sinne": [0, 65535], "sinne if": [0, 65535], "it proue": [0, 65535], "proue so": [0, 65535], "gone the": [0, 65535], "sooner ile": [0, 65535], "centaur to": [0, 65535], "to goe": [0, 65535], "goe seeke": [0, 65535], "seeke this": [0, 65535], "this slaue": [0, 65535], "slaue i": [0, 65535], "i greatly": [0, 65535], "greatly feare": [0, 65535], "feare my": [0, 65535], "monie is": [0, 65535], "not safe": [0, 65535], "the comedie of": [0, 65535], "comedie of errors": [0, 65535], "of errors actus": [0, 65535], "errors actus primus": [0, 65535], "actus primus scena": [0, 65535], "primus scena prima": [0, 65535], "of ephesus with": [0, 65535], "ephesus with the": [0, 65535], "with the merchant": [0, 65535], "merchant of siracusa": [0, 65535], "of siracusa iaylor": [0, 65535], "siracusa iaylor and": [0, 65535], "iaylor and other": [0, 65535], "and other attendants": [0, 65535], "other attendants marchant": [0, 65535], "attendants marchant broceed": [0, 65535], "marchant broceed solinus": [0, 65535], "broceed solinus to": [0, 65535], "solinus to procure": [0, 65535], "to procure my": [0, 65535], "procure my fall": [0, 65535], "my fall and": [0, 65535], "fall and by": [0, 65535], "and by the": [0, 65535], "by the doome": [0, 65535], "the doome of": [0, 65535], "doome of death": [0, 65535], "of death end": [0, 65535], "death end woes": [0, 65535], "end woes and": [0, 65535], "woes and all": [0, 65535], "and all duke": [0, 65535], "all duke merchant": [0, 65535], "duke merchant of": [0, 65535], "of siracusa plead": [0, 65535], "siracusa plead no": [0, 65535], "plead no more": [0, 65535], "no more i": [0, 65535], "more i am": [0, 65535], "am not partiall": [0, 65535], "not partiall to": [0, 65535], "partiall to infringe": [0, 65535], "to infringe our": [0, 65535], "infringe our lawes": [0, 65535], "our lawes the": [0, 65535], "lawes the enmity": [0, 65535], "the enmity and": [0, 65535], "enmity and discord": [0, 65535], "and discord which": [0, 65535], "discord which of": [0, 65535], "which of late": [0, 65535], "of late sprung": [0, 65535], "late sprung from": [0, 65535], "sprung from the": [0, 65535], "from the rancorous": [0, 65535], "the rancorous outrage": [0, 65535], "rancorous outrage of": [0, 65535], "outrage of your": [0, 65535], "of your duke": [0, 65535], "your duke to": [0, 65535], "duke to merchants": [0, 65535], "to merchants our": [0, 65535], "merchants our well": [0, 65535], "our well dealing": [0, 65535], "well dealing countrimen": [0, 65535], "dealing countrimen who": [0, 65535], "countrimen who wanting": [0, 65535], "who wanting gilders": [0, 65535], "wanting gilders to": [0, 65535], "gilders to redeeme": [0, 65535], "to redeeme their": [0, 65535], "redeeme their liues": [0, 65535], "their liues haue": [0, 65535], "liues haue seal'd": [0, 65535], "haue seal'd his": [0, 65535], "seal'd his rigorous": [0, 65535], "his rigorous statutes": [0, 65535], "rigorous statutes with": [0, 65535], "statutes with their": [0, 65535], "with their blouds": [0, 65535], "their blouds excludes": [0, 65535], "blouds excludes all": [0, 65535], "excludes all pitty": [0, 65535], "all pitty from": [0, 65535], "pitty from our": [0, 65535], "from our threatning": [0, 65535], "our threatning lookes": [0, 65535], "threatning lookes for": [0, 65535], "lookes for since": [0, 65535], "for since the": [0, 65535], "since the mortall": [0, 65535], "the mortall and": [0, 65535], "mortall and intestine": [0, 65535], "and intestine iarres": [0, 65535], "intestine iarres twixt": [0, 65535], "iarres twixt thy": [0, 65535], "twixt thy seditious": [0, 65535], "thy seditious countrimen": [0, 65535], "seditious countrimen and": [0, 65535], "countrimen and vs": [0, 65535], "and vs it": [0, 65535], "vs it hath": [0, 65535], "it hath in": [0, 65535], "hath in solemne": [0, 65535], "in solemne synodes": [0, 65535], "solemne synodes beene": [0, 65535], "synodes beene decreed": [0, 65535], "beene decreed both": [0, 65535], "decreed both by": [0, 65535], "both by the": [0, 65535], "by the siracusians": [0, 65535], "the siracusians and": [0, 65535], "siracusians and our": [0, 65535], "and our selues": [0, 65535], "our selues to": [0, 65535], "selues to admit": [0, 65535], "to admit no": [0, 65535], "admit no trafficke": [0, 65535], "no trafficke to": [0, 65535], "trafficke to our": [0, 65535], "to our aduerse": [0, 65535], "our aduerse townes": [0, 65535], "aduerse townes nay": [0, 65535], "townes nay more": [0, 65535], "nay more if": [0, 65535], "more if any": [0, 65535], "if any borne": [0, 65535], "any borne at": [0, 65535], "borne at ephesus": [0, 65535], "at ephesus be": [0, 65535], "ephesus be seene": [0, 65535], "be seene at": [0, 65535], "seene at any": [0, 65535], "at any siracusian": [0, 65535], "any siracusian marts": [0, 65535], "siracusian marts and": [0, 65535], "marts and fayres": [0, 65535], "and fayres againe": [0, 65535], "fayres againe if": [0, 65535], "againe if any": [0, 65535], "if any siracusian": [0, 65535], "any siracusian borne": [0, 65535], "siracusian borne come": [0, 65535], "borne come to": [0, 65535], "to the bay": [0, 65535], "the bay of": [0, 65535], "bay of ephesus": [0, 65535], "of ephesus he": [0, 65535], "ephesus he dies": [0, 65535], "he dies his": [0, 65535], "dies his goods": [0, 65535], "his goods confiscate": [0, 65535], "goods confiscate to": [0, 65535], "confiscate to the": [0, 65535], "to the dukes": [0, 65535], "the dukes dispose": [0, 65535], "dukes dispose vnlesse": [0, 65535], "dispose vnlesse a": [0, 65535], "vnlesse a thousand": [0, 65535], "thousand markes be": [0, 65535], "markes be leuied": [0, 65535], "be leuied to": [0, 65535], "leuied to quit": [0, 65535], "to quit the": [0, 65535], "quit the penalty": [0, 65535], "the penalty and": [0, 65535], "penalty and to": [0, 65535], "and to ransome": [0, 65535], "to ransome him": [0, 65535], "ransome him thy": [0, 65535], "him thy substance": [0, 65535], "thy substance valued": [0, 65535], "substance valued at": [0, 65535], "valued at the": [0, 65535], "at the highest": [0, 65535], "the highest rate": [0, 65535], "highest rate cannot": [0, 65535], "rate cannot amount": [0, 65535], "cannot amount vnto": [0, 65535], "amount vnto a": [0, 65535], "vnto a hundred": [0, 65535], "hundred markes therefore": [0, 65535], "markes therefore by": [0, 65535], "therefore by law": [0, 65535], "by law thou": [0, 65535], "law thou art": [0, 65535], "thou art condemn'd": [0, 65535], "art condemn'd to": [0, 65535], "condemn'd to die": [0, 65535], "to die mer": [0, 65535], "die mer yet": [0, 65535], "mer yet this": [0, 65535], "yet this my": [0, 65535], "this my comfort": [0, 65535], "my comfort when": [0, 65535], "comfort when your": [0, 65535], "when your words": [0, 65535], "your words are": [0, 65535], "words are done": [0, 65535], "are done my": [0, 65535], "done my woes": [0, 65535], "my woes end": [0, 65535], "woes end likewise": [0, 65535], "end likewise with": [0, 65535], "likewise with the": [0, 65535], "with the euening": [0, 65535], "the euening sonne": [0, 65535], "euening sonne duk": [0, 65535], "sonne duk well": [0, 65535], "duk well siracusian": [0, 65535], "well siracusian say": [0, 65535], "siracusian say in": [0, 65535], "say in briefe": [0, 65535], "in briefe the": [0, 65535], "briefe the cause": [0, 65535], "the cause why": [0, 65535], "cause why thou": [0, 65535], "why thou departedst": [0, 65535], "thou departedst from": [0, 65535], "departedst from thy": [0, 65535], "from thy natiue": [0, 65535], "thy natiue home": [0, 65535], "natiue home and": [0, 65535], "home and for": [0, 65535], "and for what": [0, 65535], "for what cause": [0, 65535], "what cause thou": [0, 65535], "cause thou cam'st": [0, 65535], "thou cam'st to": [0, 65535], "cam'st to ephesus": [0, 65535], "to ephesus mer": [0, 65535], "ephesus mer a": [0, 65535], "mer a heauier": [0, 65535], "a heauier taske": [0, 65535], "heauier taske could": [0, 65535], "taske could not": [0, 65535], "could not haue": [0, 65535], "not haue beene": [0, 65535], "haue beene impos'd": [0, 65535], "beene impos'd then": [0, 65535], "impos'd then i": [0, 65535], "then i to": [0, 65535], "i to speake": [0, 65535], "to speake my": [0, 65535], "speake my griefes": [0, 65535], "my griefes vnspeakeable": [0, 65535], "griefes vnspeakeable yet": [0, 65535], "vnspeakeable yet that": [0, 65535], "yet that the": [0, 65535], "that the world": [0, 65535], "the world may": [0, 65535], "world may witnesse": [0, 65535], "may witnesse that": [0, 65535], "witnesse that my": [0, 65535], "that my end": [0, 65535], "my end was": [0, 65535], "end was wrought": [0, 65535], "was wrought by": [0, 65535], "wrought by nature": [0, 65535], "by nature not": [0, 65535], "nature not by": [0, 65535], "not by vile": [0, 65535], "by vile offence": [0, 65535], "vile offence ile": [0, 65535], "offence ile vtter": [0, 65535], "ile vtter what": [0, 65535], "vtter what my": [0, 65535], "what my sorrow": [0, 65535], "my sorrow giues": [0, 65535], "sorrow giues me": [0, 65535], "giues me leaue": [0, 65535], "me leaue in": [0, 65535], "leaue in syracusa": [0, 65535], "in syracusa was": [0, 65535], "syracusa was i": [0, 65535], "was i borne": [0, 65535], "i borne and": [0, 65535], "borne and wedde": [0, 65535], "and wedde vnto": [0, 65535], "wedde vnto a": [0, 65535], "vnto a woman": [0, 65535], "a woman happy": [0, 65535], "woman happy but": [0, 65535], "happy but for": [0, 65535], "but for me": [0, 65535], "me and by": [0, 65535], "and by me": [0, 65535], "by me had": [0, 65535], "me had not": [0, 65535], "had not our": [0, 65535], "not our hap": [0, 65535], "our hap beene": [0, 65535], "hap beene bad": [0, 65535], "beene bad with": [0, 65535], "bad with her": [0, 65535], "with her i": [0, 65535], "her i liu'd": [0, 65535], "i liu'd in": [0, 65535], "liu'd in ioy": [0, 65535], "in ioy our": [0, 65535], "ioy our wealth": [0, 65535], "our wealth increast": [0, 65535], "wealth increast by": [0, 65535], "increast by prosperous": [0, 65535], "by prosperous voyages": [0, 65535], "prosperous voyages i": [0, 65535], "voyages i often": [0, 65535], "i often made": [0, 65535], "often made to": [0, 65535], "made to epidamium": [0, 65535], "to epidamium till": [0, 65535], "epidamium till my": [0, 65535], "till my factors": [0, 65535], "my factors death": [0, 65535], "factors death and": [0, 65535], "death and he": [0, 65535], "and he great": [0, 65535], "he great care": [0, 65535], "great care of": [0, 65535], "care of goods": [0, 65535], "of goods at": [0, 65535], "goods at randone": [0, 65535], "at randone left": [0, 65535], "randone left drew": [0, 65535], "left drew me": [0, 65535], "drew me from": [0, 65535], "me from kinde": [0, 65535], "from kinde embracements": [0, 65535], "kinde embracements of": [0, 65535], "embracements of my": [0, 65535], "of my spouse": [0, 65535], "my spouse from": [0, 65535], "spouse from whom": [0, 65535], "from whom my": [0, 65535], "whom my absence": [0, 65535], "my absence was": [0, 65535], "absence was not": [0, 65535], "was not sixe": [0, 65535], "not sixe moneths": [0, 65535], "sixe moneths olde": [0, 65535], "moneths olde before": [0, 65535], "olde before her": [0, 65535], "before her selfe": [0, 65535], "her selfe almost": [0, 65535], "selfe almost at": [0, 65535], "almost at fainting": [0, 65535], "at fainting vnder": [0, 65535], "fainting vnder the": [0, 65535], "vnder the pleasing": [0, 65535], "the pleasing punishment": [0, 65535], "pleasing punishment that": [0, 65535], "punishment that women": [0, 65535], "that women beare": [0, 65535], "women beare had": [0, 65535], "beare had made": [0, 65535], "had made prouision": [0, 65535], "made prouision for": [0, 65535], "prouision for her": [0, 65535], "for her following": [0, 65535], "her following me": [0, 65535], "following me and": [0, 65535], "me and soone": [0, 65535], "and soone and": [0, 65535], "soone and safe": [0, 65535], "and safe arriued": [0, 65535], "safe arriued where": [0, 65535], "arriued where i": [0, 65535], "where i was": [0, 65535], "i was there": [0, 65535], "was there had": [0, 65535], "there had she": [0, 65535], "had she not": [0, 65535], "she not beene": [0, 65535], "not beene long": [0, 65535], "beene long but": [0, 65535], "long but she": [0, 65535], "but she became": [0, 65535], "she became a": [0, 65535], "became a ioyfull": [0, 65535], "a ioyfull mother": [0, 65535], "ioyfull mother of": [0, 65535], "mother of two": [0, 65535], "of two goodly": [0, 65535], "two goodly sonnes": [0, 65535], "goodly sonnes and": [0, 65535], "sonnes and which": [0, 65535], "and which was": [0, 65535], "which was strange": [0, 65535], "was strange the": [0, 65535], "strange the one": [0, 65535], "the one so": [0, 65535], "one so like": [0, 65535], "so like the": [0, 65535], "like the other": [0, 65535], "the other as": [0, 65535], "other as could": [0, 65535], "as could not": [0, 65535], "could not be": [0, 65535], "not be distinguish'd": [0, 65535], "be distinguish'd but": [0, 65535], "distinguish'd but by": [0, 65535], "but by names": [0, 65535], "by names that": [0, 65535], "names that very": [0, 65535], "that very howre": [0, 65535], "very howre and": [0, 65535], "howre and in": [0, 65535], "and in the": [0, 65535], "in the selfe": [0, 65535], "the selfe same": [0, 65535], "selfe same inne": [0, 65535], "same inne a": [0, 65535], "inne a meane": [0, 65535], "a meane woman": [0, 65535], "meane woman was": [0, 65535], "woman was deliuered": [0, 65535], "was deliuered of": [0, 65535], "deliuered of such": [0, 65535], "of such a": [0, 65535], "such a burthen": [0, 65535], "a burthen male": [0, 65535], "burthen male twins": [0, 65535], "male twins both": [0, 65535], "twins both alike": [0, 65535], "both alike those": [0, 65535], "alike those for": [0, 65535], "those for their": [0, 65535], "for their parents": [0, 65535], "their parents were": [0, 65535], "parents were exceeding": [0, 65535], "were exceeding poore": [0, 65535], "exceeding poore i": [0, 65535], "poore i bought": [0, 65535], "i bought and": [0, 65535], "bought and brought": [0, 65535], "and brought vp": [0, 65535], "brought vp to": [0, 65535], "vp to attend": [0, 65535], "to attend my": [0, 65535], "attend my sonnes": [0, 65535], "my sonnes my": [0, 65535], "sonnes my wife": [0, 65535], "my wife not": [0, 65535], "wife not meanely": [0, 65535], "not meanely prowd": [0, 65535], "meanely prowd of": [0, 65535], "prowd of two": [0, 65535], "of two such": [0, 65535], "two such boyes": [0, 65535], "such boyes made": [0, 65535], "boyes made daily": [0, 65535], "made daily motions": [0, 65535], "daily motions for": [0, 65535], "motions for our": [0, 65535], "for our home": [0, 65535], "our home returne": [0, 65535], "home returne vnwilling": [0, 65535], "returne vnwilling i": [0, 65535], "vnwilling i agreed": [0, 65535], "i agreed alas": [0, 65535], "agreed alas too": [0, 65535], "alas too soone": [0, 65535], "too soone wee": [0, 65535], "soone wee came": [0, 65535], "wee came aboord": [0, 65535], "came aboord a": [0, 65535], "aboord a league": [0, 65535], "a league from": [0, 65535], "league from epidamium": [0, 65535], "from epidamium had": [0, 65535], "epidamium had we": [0, 65535], "had we saild": [0, 65535], "we saild before": [0, 65535], "saild before the": [0, 65535], "before the alwaies": [0, 65535], "the alwaies winde": [0, 65535], "alwaies winde obeying": [0, 65535], "winde obeying deepe": [0, 65535], "obeying deepe gaue": [0, 65535], "deepe gaue any": [0, 65535], "gaue any tragicke": [0, 65535], "any tragicke instance": [0, 65535], "tragicke instance of": [0, 65535], "instance of our": [0, 65535], "of our harme": [0, 65535], "our harme but": [0, 65535], "harme but longer": [0, 65535], "but longer did": [0, 65535], "longer did we": [0, 65535], "did we not": [0, 65535], "we not retaine": [0, 65535], "not retaine much": [0, 65535], "retaine much hope": [0, 65535], "much hope for": [0, 65535], "hope for what": [0, 65535], "for what obscured": [0, 65535], "what obscured light": [0, 65535], "obscured light the": [0, 65535], "light the heauens": [0, 65535], "the heauens did": [0, 65535], "heauens did grant": [0, 65535], "did grant did": [0, 65535], "grant did but": [0, 65535], "did but conuay": [0, 65535], "but conuay vnto": [0, 65535], "conuay vnto our": [0, 65535], "vnto our fearefull": [0, 65535], "our fearefull mindes": [0, 65535], "fearefull mindes a": [0, 65535], "mindes a doubtfull": [0, 65535], "a doubtfull warrant": [0, 65535], "doubtfull warrant of": [0, 65535], "warrant of immediate": [0, 65535], "of immediate death": [0, 65535], "immediate death which": [0, 65535], "death which though": [0, 65535], "which though my": [0, 65535], "though my selfe": [0, 65535], "my selfe would": [0, 65535], "selfe would gladly": [0, 65535], "would gladly haue": [0, 65535], "gladly haue imbrac'd": [0, 65535], "haue imbrac'd yet": [0, 65535], "imbrac'd yet the": [0, 65535], "yet the incessant": [0, 65535], "the incessant weepings": [0, 65535], "incessant weepings of": [0, 65535], "weepings of my": [0, 65535], "of my wife": [0, 65535], "my wife weeping": [0, 65535], "wife weeping before": [0, 65535], "weeping before for": [0, 65535], "before for what": [0, 65535], "for what she": [0, 65535], "what she saw": [0, 65535], "she saw must": [0, 65535], "saw must come": [0, 65535], "must come and": [0, 65535], "come and pitteous": [0, 65535], "and pitteous playnings": [0, 65535], "pitteous playnings of": [0, 65535], "playnings of the": [0, 65535], "of the prettie": [0, 65535], "the prettie babes": [0, 65535], "prettie babes that": [0, 65535], "babes that mourn'd": [0, 65535], "that mourn'd for": [0, 65535], "mourn'd for fashion": [0, 65535], "for fashion ignorant": [0, 65535], "fashion ignorant what": [0, 65535], "ignorant what to": [0, 65535], "what to feare": [0, 65535], "to feare forst": [0, 65535], "feare forst me": [0, 65535], "forst me to": [0, 65535], "me to seeke": [0, 65535], "to seeke delayes": [0, 65535], "seeke delayes for": [0, 65535], "delayes for them": [0, 65535], "for them and": [0, 65535], "and me and": [0, 65535], "and this it": [0, 65535], "this it was": [0, 65535], "was for other": [0, 65535], "for other meanes": [0, 65535], "other meanes was": [0, 65535], "meanes was none": [0, 65535], "was none the": [0, 65535], "none the sailors": [0, 65535], "the sailors sought": [0, 65535], "sailors sought for": [0, 65535], "sought for safety": [0, 65535], "for safety by": [0, 65535], "safety by our": [0, 65535], "by our boate": [0, 65535], "our boate and": [0, 65535], "boate and left": [0, 65535], "and left the": [0, 65535], "left the ship": [0, 65535], "the ship then": [0, 65535], "ship then sinking": [0, 65535], "then sinking ripe": [0, 65535], "sinking ripe to": [0, 65535], "ripe to vs": [0, 65535], "to vs my": [0, 65535], "vs my wife": [0, 65535], "my wife more": [0, 65535], "wife more carefull": [0, 65535], "more carefull for": [0, 65535], "carefull for the": [0, 65535], "for the latter": [0, 65535], "the latter borne": [0, 65535], "latter borne had": [0, 65535], "borne had fastned": [0, 65535], "had fastned him": [0, 65535], "fastned him vnto": [0, 65535], "him vnto a": [0, 65535], "vnto a small": [0, 65535], "a small spare": [0, 65535], "small spare mast": [0, 65535], "spare mast such": [0, 65535], "mast such as": [0, 65535], "such as sea": [0, 65535], "as sea faring": [0, 65535], "sea faring men": [0, 65535], "faring men prouide": [0, 65535], "men prouide for": [0, 65535], "prouide for stormes": [0, 65535], "for stormes to": [0, 65535], "stormes to him": [0, 65535], "to him one": [0, 65535], "him one of": [0, 65535], "the other twins": [0, 65535], "other twins was": [0, 65535], "twins was bound": [0, 65535], "was bound whil'st": [0, 65535], "bound whil'st i": [0, 65535], "whil'st i had": [0, 65535], "i had beene": [0, 65535], "had beene like": [0, 65535], "beene like heedfull": [0, 65535], "like heedfull of": [0, 65535], "heedfull of the": [0, 65535], "the other the": [0, 65535], "other the children": [0, 65535], "the children thus": [0, 65535], "children thus dispos'd": [0, 65535], "thus dispos'd my": [0, 65535], "dispos'd my wife": [0, 65535], "wife and i": [0, 65535], "and i fixing": [0, 65535], "i fixing our": [0, 65535], "fixing our eyes": [0, 65535], "our eyes on": [0, 65535], "eyes on whom": [0, 65535], "on whom our": [0, 65535], "whom our care": [0, 65535], "our care was": [0, 65535], "care was fixt": [0, 65535], "was fixt fastned": [0, 65535], "fixt fastned our": [0, 65535], "fastned our selues": [0, 65535], "our selues at": [0, 65535], "selues at eyther": [0, 65535], "at eyther end": [0, 65535], "eyther end the": [0, 65535], "end the mast": [0, 65535], "the mast and": [0, 65535], "mast and floating": [0, 65535], "and floating straight": [0, 65535], "floating straight obedient": [0, 65535], "straight obedient to": [0, 65535], "obedient to the": [0, 65535], "to the streame": [0, 65535], "the streame was": [0, 65535], "streame was carried": [0, 65535], "was carried towards": [0, 65535], "carried towards corinth": [0, 65535], "towards corinth as": [0, 65535], "corinth as we": [0, 65535], "as we thought": [0, 65535], "we thought at": [0, 65535], "thought at length": [0, 65535], "at length the": [0, 65535], "length the sonne": [0, 65535], "the sonne gazing": [0, 65535], "sonne gazing vpon": [0, 65535], "gazing vpon the": [0, 65535], "vpon the earth": [0, 65535], "the earth disperst": [0, 65535], "earth disperst those": [0, 65535], "disperst those vapours": [0, 65535], "those vapours that": [0, 65535], "vapours that offended": [0, 65535], "that offended vs": [0, 65535], "offended vs and": [0, 65535], "vs and by": [0, 65535], "by the benefit": [0, 65535], "the benefit of": [0, 65535], "benefit of his": [0, 65535], "of his wished": [0, 65535], "his wished light": [0, 65535], "wished light the": [0, 65535], "light the seas": [0, 65535], "the seas waxt": [0, 65535], "seas waxt calme": [0, 65535], "waxt calme and": [0, 65535], "calme and we": [0, 65535], "and we discouered": [0, 65535], "we discouered two": [0, 65535], "discouered two shippes": [0, 65535], "two shippes from": [0, 65535], "shippes from farre": [0, 65535], "from farre making": [0, 65535], "farre making amaine": [0, 65535], "making amaine to": [0, 65535], "amaine to vs": [0, 65535], "to vs of": [0, 65535], "vs of corinth": [0, 65535], "of corinth that": [0, 65535], "corinth that of": [0, 65535], "that of epidarus": [0, 65535], "of epidarus this": [0, 65535], "epidarus this but": [0, 65535], "this but ere": [0, 65535], "but ere they": [0, 65535], "ere they came": [0, 65535], "they came oh": [0, 65535], "came oh let": [0, 65535], "oh let me": [0, 65535], "let me say": [0, 65535], "me say no": [0, 65535], "say no more": [0, 65535], "no more gather": [0, 65535], "more gather the": [0, 65535], "gather the sequell": [0, 65535], "the sequell by": [0, 65535], "sequell by that": [0, 65535], "by that went": [0, 65535], "that went before": [0, 65535], "went before duk": [0, 65535], "before duk nay": [0, 65535], "duk nay forward": [0, 65535], "nay forward old": [0, 65535], "forward old man": [0, 65535], "old man doe": [0, 65535], "man doe not": [0, 65535], "doe not breake": [0, 65535], "not breake off": [0, 65535], "breake off so": [0, 65535], "off so for": [0, 65535], "so for we": [0, 65535], "for we may": [0, 65535], "we may pitty": [0, 65535], "may pitty though": [0, 65535], "pitty though not": [0, 65535], "though not pardon": [0, 65535], "not pardon thee": [0, 65535], "pardon thee merch": [0, 65535], "thee merch oh": [0, 65535], "merch oh had": [0, 65535], "oh had the": [0, 65535], "had the gods": [0, 65535], "the gods done": [0, 65535], "gods done so": [0, 65535], "done so i": [0, 65535], "so i had": [0, 65535], "i had not": [0, 65535], "had not now": [0, 65535], "not now worthily": [0, 65535], "now worthily tearm'd": [0, 65535], "worthily tearm'd them": [0, 65535], "tearm'd them mercilesse": [0, 65535], "them mercilesse to": [0, 65535], "mercilesse to vs": [0, 65535], "to vs for": [0, 65535], "vs for ere": [0, 65535], "for ere the": [0, 65535], "ere the ships": [0, 65535], "the ships could": [0, 65535], "ships could meet": [0, 65535], "could meet by": [0, 65535], "meet by twice": [0, 65535], "by twice fiue": [0, 65535], "twice fiue leagues": [0, 65535], "fiue leagues we": [0, 65535], "leagues we were": [0, 65535], "we were encountred": [0, 65535], "were encountred by": [0, 65535], "encountred by a": [0, 65535], "by a mighty": [0, 65535], "a mighty rocke": [0, 65535], "mighty rocke which": [0, 65535], "rocke which being": [0, 65535], "which being violently": [0, 65535], "being violently borne": [0, 65535], "violently borne vp": [0, 65535], "borne vp our": [0, 65535], "vp our helpefull": [0, 65535], "our helpefull ship": [0, 65535], "helpefull ship was": [0, 65535], "ship was splitted": [0, 65535], "was splitted in": [0, 65535], "splitted in the": [0, 65535], "the midst so": [0, 65535], "midst so that": [0, 65535], "so that in": [0, 65535], "that in this": [0, 65535], "in this vniust": [0, 65535], "this vniust diuorce": [0, 65535], "vniust diuorce of": [0, 65535], "diuorce of vs": [0, 65535], "of vs fortune": [0, 65535], "vs fortune had": [0, 65535], "fortune had left": [0, 65535], "had left to": [0, 65535], "left to both": [0, 65535], "to both of": [0, 65535], "both of vs": [0, 65535], "of vs alike": [0, 65535], "vs alike what": [0, 65535], "alike what to": [0, 65535], "what to delight": [0, 65535], "to delight in": [0, 65535], "delight in what": [0, 65535], "in what to": [0, 65535], "what to sorrow": [0, 65535], "to sorrow for": [0, 65535], "sorrow for her": [0, 65535], "for her part": [0, 65535], "her part poore": [0, 65535], "part poore soule": [0, 65535], "poore soule seeming": [0, 65535], "soule seeming as": [0, 65535], "seeming as burdened": [0, 65535], "as burdened with": [0, 65535], "burdened with lesser": [0, 65535], "with lesser waight": [0, 65535], "lesser waight but": [0, 65535], "waight but not": [0, 65535], "not with lesser": [0, 65535], "with lesser woe": [0, 65535], "lesser woe was": [0, 65535], "woe was carried": [0, 65535], "was carried with": [0, 65535], "carried with more": [0, 65535], "with more speed": [0, 65535], "more speed before": [0, 65535], "speed before the": [0, 65535], "before the winde": [0, 65535], "the winde and": [0, 65535], "winde and in": [0, 65535], "and in our": [0, 65535], "in our sight": [0, 65535], "our sight they": [0, 65535], "sight they three": [0, 65535], "they three were": [0, 65535], "three were taken": [0, 65535], "taken vp by": [0, 65535], "vp by fishermen": [0, 65535], "by fishermen of": [0, 65535], "of corinth as": [0, 65535], "at length another": [0, 65535], "length another ship": [0, 65535], "another ship had": [0, 65535], "ship had seiz'd": [0, 65535], "had seiz'd on": [0, 65535], "seiz'd on vs": [0, 65535], "vs and knowing": [0, 65535], "and knowing whom": [0, 65535], "knowing whom it": [0, 65535], "whom it was": [0, 65535], "it was their": [0, 65535], "was their hap": [0, 65535], "their hap to": [0, 65535], "hap to saue": [0, 65535], "to saue gaue": [0, 65535], "saue gaue healthfull": [0, 65535], "gaue healthfull welcome": [0, 65535], "healthfull welcome to": [0, 65535], "welcome to their": [0, 65535], "to their ship": [0, 65535], "their ship wrackt": [0, 65535], "ship wrackt guests": [0, 65535], "wrackt guests and": [0, 65535], "guests and would": [0, 65535], "and would haue": [0, 65535], "would haue reft": [0, 65535], "haue reft the": [0, 65535], "reft the fishers": [0, 65535], "the fishers of": [0, 65535], "fishers of their": [0, 65535], "of their prey": [0, 65535], "their prey had": [0, 65535], "prey had not": [0, 65535], "had not their": [0, 65535], "not their backe": [0, 65535], "their backe beene": [0, 65535], "backe beene very": [0, 65535], "beene very slow": [0, 65535], "very slow of": [0, 65535], "slow of saile": [0, 65535], "of saile and": [0, 65535], "saile and therefore": [0, 65535], "and therefore homeward": [0, 65535], "therefore homeward did": [0, 65535], "homeward did they": [0, 65535], "did they bend": [0, 65535], "they bend their": [0, 65535], "bend their course": [0, 65535], "their course thus": [0, 65535], "course thus haue": [0, 65535], "thus haue you": [0, 65535], "haue you heard": [0, 65535], "you heard me": [0, 65535], "heard me seuer'd": [0, 65535], "me seuer'd from": [0, 65535], "seuer'd from my": [0, 65535], "from my blisse": [0, 65535], "my blisse that": [0, 65535], "blisse that by": [0, 65535], "that by misfortunes": [0, 65535], "by misfortunes was": [0, 65535], "misfortunes was my": [0, 65535], "was my life": [0, 65535], "my life prolong'd": [0, 65535], "life prolong'd to": [0, 65535], "prolong'd to tell": [0, 65535], "to tell sad": [0, 65535], "tell sad stories": [0, 65535], "sad stories of": [0, 65535], "stories of my": [0, 65535], "of my owne": [0, 65535], "my owne mishaps": [0, 65535], "owne mishaps duke": [0, 65535], "mishaps duke and": [0, 65535], "duke and for": [0, 65535], "for the sake": [0, 65535], "the sake of": [0, 65535], "sake of them": [0, 65535], "of them thou": [0, 65535], "them thou sorrowest": [0, 65535], "thou sorrowest for": [0, 65535], "sorrowest for doe": [0, 65535], "for doe me": [0, 65535], "doe me the": [0, 65535], "me the fauour": [0, 65535], "the fauour to": [0, 65535], "fauour to dilate": [0, 65535], "to dilate at": [0, 65535], "dilate at full": [0, 65535], "at full what": [0, 65535], "full what haue": [0, 65535], "what haue befalne": [0, 65535], "haue befalne of": [0, 65535], "befalne of them": [0, 65535], "of them and": [0, 65535], "them and they": [0, 65535], "and they till": [0, 65535], "they till now": [0, 65535], "till now merch": [0, 65535], "now merch my": [0, 65535], "merch my yongest": [0, 65535], "my yongest boy": [0, 65535], "yongest boy and": [0, 65535], "boy and yet": [0, 65535], "and yet my": [0, 65535], "yet my eldest": [0, 65535], "my eldest care": [0, 65535], "eldest care at": [0, 65535], "care at eighteene": [0, 65535], "at eighteene yeeres": [0, 65535], "eighteene yeeres became": [0, 65535], "yeeres became inquisitiue": [0, 65535], "became inquisitiue after": [0, 65535], "inquisitiue after his": [0, 65535], "after his brother": [0, 65535], "his brother and": [0, 65535], "brother and importun'd": [0, 65535], "and importun'd me": [0, 65535], "importun'd me that": [0, 65535], "me that his": [0, 65535], "that his attendant": [0, 65535], "his attendant so": [0, 65535], "attendant so his": [0, 65535], "so his case": [0, 65535], "his case was": [0, 65535], "case was like": [0, 65535], "was like reft": [0, 65535], "like reft of": [0, 65535], "reft of his": [0, 65535], "of his brother": [0, 65535], "his brother but": [0, 65535], "brother but retain'd": [0, 65535], "but retain'd his": [0, 65535], "retain'd his name": [0, 65535], "his name might": [0, 65535], "name might beare": [0, 65535], "might beare him": [0, 65535], "beare him company": [0, 65535], "him company in": [0, 65535], "company in the": [0, 65535], "in the quest": [0, 65535], "the quest of": [0, 65535], "quest of him": [0, 65535], "of him whom": [0, 65535], "him whom whil'st": [0, 65535], "whom whil'st i": [0, 65535], "whil'st i laboured": [0, 65535], "i laboured of": [0, 65535], "laboured of a": [0, 65535], "of a loue": [0, 65535], "a loue to": [0, 65535], "loue to see": [0, 65535], "to see i": [0, 65535], "see i hazarded": [0, 65535], "i hazarded the": [0, 65535], "hazarded the losse": [0, 65535], "the losse of": [0, 65535], "losse of whom": [0, 65535], "of whom i": [0, 65535], "whom i lou'd": [0, 65535], "i lou'd fiue": [0, 65535], "lou'd fiue sommers": [0, 65535], "fiue sommers haue": [0, 65535], "sommers haue i": [0, 65535], "haue i spent": [0, 65535], "i spent in": [0, 65535], "spent in farthest": [0, 65535], "in farthest greece": [0, 65535], "farthest greece roming": [0, 65535], "greece roming cleane": [0, 65535], "roming cleane through": [0, 65535], "cleane through the": [0, 65535], "through the bounds": [0, 65535], "the bounds of": [0, 65535], "bounds of asia": [0, 65535], "of asia and": [0, 65535], "asia and coasting": [0, 65535], "and coasting homeward": [0, 65535], "coasting homeward came": [0, 65535], "homeward came to": [0, 65535], "came to ephesus": [0, 65535], "to ephesus hopelesse": [0, 65535], "ephesus hopelesse to": [0, 65535], "hopelesse to finde": [0, 65535], "to finde yet": [0, 65535], "finde yet loth": [0, 65535], "yet loth to": [0, 65535], "loth to leaue": [0, 65535], "to leaue vnsought": [0, 65535], "leaue vnsought or": [0, 65535], "vnsought or that": [0, 65535], "or that or": [0, 65535], "that or any": [0, 65535], "or any place": [0, 65535], "any place that": [0, 65535], "place that harbours": [0, 65535], "that harbours men": [0, 65535], "harbours men but": [0, 65535], "men but heere": [0, 65535], "but heere must": [0, 65535], "heere must end": [0, 65535], "must end the": [0, 65535], "end the story": [0, 65535], "the story of": [0, 65535], "story of my": [0, 65535], "of my life": [0, 65535], "life and happy": [0, 65535], "and happy were": [0, 65535], "happy were i": [0, 65535], "were i in": [0, 65535], "i in my": [0, 65535], "in my timelie": [0, 65535], "my timelie death": [0, 65535], "timelie death could": [0, 65535], "death could all": [0, 65535], "could all my": [0, 65535], "all my trauells": [0, 65535], "my trauells warrant": [0, 65535], "trauells warrant me": [0, 65535], "warrant me they": [0, 65535], "me they liue": [0, 65535], "they liue duke": [0, 65535], "liue duke haplesse": [0, 65535], "duke haplesse egeon": [0, 65535], "haplesse egeon whom": [0, 65535], "egeon whom the": [0, 65535], "whom the fates": [0, 65535], "the fates haue": [0, 65535], "fates haue markt": [0, 65535], "haue markt to": [0, 65535], "markt to beare": [0, 65535], "to beare the": [0, 65535], "beare the extremitie": [0, 65535], "the extremitie of": [0, 65535], "extremitie of dire": [0, 65535], "of dire mishap": [0, 65535], "dire mishap now": [0, 65535], "mishap now trust": [0, 65535], "now trust me": [0, 65535], "trust me were": [0, 65535], "me were it": [0, 65535], "were it not": [0, 65535], "it not against": [0, 65535], "not against our": [0, 65535], "against our lawes": [0, 65535], "our lawes against": [0, 65535], "lawes against my": [0, 65535], "against my crowne": [0, 65535], "my crowne my": [0, 65535], "crowne my oath": [0, 65535], "my oath my": [0, 65535], "oath my dignity": [0, 65535], "my dignity which": [0, 65535], "dignity which princes": [0, 65535], "which princes would": [0, 65535], "princes would they": [0, 65535], "would they may": [0, 65535], "they may not": [0, 65535], "may not disanull": [0, 65535], "not disanull my": [0, 65535], "disanull my soule": [0, 65535], "my soule should": [0, 65535], "soule should sue": [0, 65535], "should sue as": [0, 65535], "sue as aduocate": [0, 65535], "as aduocate for": [0, 65535], "aduocate for thee": [0, 65535], "for thee but": [0, 65535], "thee but though": [0, 65535], "but though thou": [0, 65535], "though thou art": [0, 65535], "thou art adiudged": [0, 65535], "art adiudged to": [0, 65535], "adiudged to the": [0, 65535], "to the death": [0, 65535], "the death and": [0, 65535], "death and passed": [0, 65535], "and passed sentence": [0, 65535], "passed sentence may": [0, 65535], "sentence may not": [0, 65535], "may not be": [0, 65535], "not be recal'd": [0, 65535], "be recal'd but": [0, 65535], "recal'd but to": [0, 65535], "but to our": [0, 65535], "to our honours": [0, 65535], "our honours great": [0, 65535], "honours great disparagement": [0, 65535], "great disparagement yet": [0, 65535], "disparagement yet will": [0, 65535], "yet will i": [0, 65535], "will i fauour": [0, 65535], "i fauour thee": [0, 65535], "fauour thee in": [0, 65535], "thee in what": [0, 65535], "in what i": [0, 65535], "what i can": [0, 65535], "i can therefore": [0, 65535], "can therefore marchant": [0, 65535], "therefore marchant ile": [0, 65535], "marchant ile limit": [0, 65535], "ile limit thee": [0, 65535], "limit thee this": [0, 65535], "thee this day": [0, 65535], "this day to": [0, 65535], "day to seeke": [0, 65535], "to seeke thy": [0, 65535], "seeke thy helpe": [0, 65535], "thy helpe by": [0, 65535], "helpe by beneficiall": [0, 65535], "by beneficiall helpe": [0, 65535], "beneficiall helpe try": [0, 65535], "helpe try all": [0, 65535], "try all the": [0, 65535], "all the friends": [0, 65535], "the friends thou": [0, 65535], "friends thou hast": [0, 65535], "thou hast in": [0, 65535], "hast in ephesus": [0, 65535], "in ephesus beg": [0, 65535], "ephesus beg thou": [0, 65535], "beg thou or": [0, 65535], "thou or borrow": [0, 65535], "or borrow to": [0, 65535], "borrow to make": [0, 65535], "to make vp": [0, 65535], "make vp the": [0, 65535], "vp the summe": [0, 65535], "the summe and": [0, 65535], "summe and liue": [0, 65535], "and liue if": [0, 65535], "liue if no": [0, 65535], "if no then": [0, 65535], "no then thou": [0, 65535], "then thou art": [0, 65535], "thou art doom'd": [0, 65535], "art doom'd to": [0, 65535], "doom'd to die": [0, 65535], "to die iaylor": [0, 65535], "die iaylor take": [0, 65535], "iaylor take him": [0, 65535], "take him to": [0, 65535], "him to thy": [0, 65535], "to thy custodie": [0, 65535], "thy custodie iaylor": [0, 65535], "custodie iaylor i": [0, 65535], "iaylor i will": [0, 65535], "i will my": [0, 65535], "will my lord": [0, 65535], "my lord merch": [0, 65535], "lord merch hopelesse": [0, 65535], "merch hopelesse and": [0, 65535], "hopelesse and helpelesse": [0, 65535], "and helpelesse doth": [0, 65535], "helpelesse doth egean": [0, 65535], "doth egean wend": [0, 65535], "egean wend but": [0, 65535], "wend but to": [0, 65535], "but to procrastinate": [0, 65535], "to procrastinate his": [0, 65535], "procrastinate his liuelesse": [0, 65535], "his liuelesse end": [0, 65535], "liuelesse end exeunt": [0, 65535], "end exeunt enter": [0, 65535], "exeunt enter antipholis": [0, 65535], "enter antipholis erotes": [0, 65535], "antipholis erotes a": [0, 65535], "erotes a marchant": [0, 65535], "a marchant and": [0, 65535], "marchant and dromio": [0, 65535], "and dromio mer": [0, 65535], "dromio mer therefore": [0, 65535], "mer therefore giue": [0, 65535], "therefore giue out": [0, 65535], "giue out you": [0, 65535], "out you are": [0, 65535], "you are of": [0, 65535], "are of epidamium": [0, 65535], "of epidamium lest": [0, 65535], "epidamium lest that": [0, 65535], "lest that your": [0, 65535], "that your goods": [0, 65535], "your goods too": [0, 65535], "goods too soone": [0, 65535], "too soone be": [0, 65535], "soone be confiscate": [0, 65535], "be confiscate this": [0, 65535], "confiscate this very": [0, 65535], "this very day": [0, 65535], "very day a": [0, 65535], "day a syracusian": [0, 65535], "a syracusian marchant": [0, 65535], "syracusian marchant is": [0, 65535], "marchant is apprehended": [0, 65535], "is apprehended for": [0, 65535], "apprehended for a": [0, 65535], "for a riuall": [0, 65535], "a riuall here": [0, 65535], "riuall here and": [0, 65535], "here and not": [0, 65535], "and not being": [0, 65535], "not being able": [0, 65535], "being able to": [0, 65535], "able to buy": [0, 65535], "to buy out": [0, 65535], "buy out his": [0, 65535], "out his life": [0, 65535], "his life according": [0, 65535], "life according to": [0, 65535], "according to the": [0, 65535], "to the statute": [0, 65535], "the statute of": [0, 65535], "statute of the": [0, 65535], "of the towne": [0, 65535], "the towne dies": [0, 65535], "towne dies ere": [0, 65535], "dies ere the": [0, 65535], "ere the wearie": [0, 65535], "the wearie sunne": [0, 65535], "wearie sunne set": [0, 65535], "sunne set in": [0, 65535], "set in the": [0, 65535], "in the west": [0, 65535], "the west there": [0, 65535], "west there is": [0, 65535], "there is your": [0, 65535], "is your monie": [0, 65535], "your monie that": [0, 65535], "monie that i": [0, 65535], "that i had": [0, 65535], "i had to": [0, 65535], "had to keepe": [0, 65535], "to keepe ant": [0, 65535], "keepe ant goe": [0, 65535], "ant goe beare": [0, 65535], "goe beare it": [0, 65535], "beare it to": [0, 65535], "to the centaure": [0, 65535], "the centaure where": [0, 65535], "centaure where we": [0, 65535], "where we host": [0, 65535], "we host and": [0, 65535], "host and stay": [0, 65535], "and stay there": [0, 65535], "stay there dromio": [0, 65535], "there dromio till": [0, 65535], "dromio till i": [0, 65535], "till i come": [0, 65535], "i come to": [0, 65535], "come to thee": [0, 65535], "to thee within": [0, 65535], "thee within this": [0, 65535], "this houre it": [0, 65535], "houre it will": [0, 65535], "it will be": [0, 65535], "will be dinner": [0, 65535], "be dinner time": [0, 65535], "dinner time till": [0, 65535], "time till that": [0, 65535], "till that ile": [0, 65535], "that ile view": [0, 65535], "ile view the": [0, 65535], "view the manners": [0, 65535], "the manners of": [0, 65535], "manners of the": [0, 65535], "the towne peruse": [0, 65535], "towne peruse the": [0, 65535], "peruse the traders": [0, 65535], "the traders gaze": [0, 65535], "traders gaze vpon": [0, 65535], "gaze vpon the": [0, 65535], "vpon the buildings": [0, 65535], "the buildings and": [0, 65535], "buildings and then": [0, 65535], "and then returne": [0, 65535], "then returne and": [0, 65535], "returne and sleepe": [0, 65535], "and sleepe within": [0, 65535], "sleepe within mine": [0, 65535], "within mine inne": [0, 65535], "mine inne for": [0, 65535], "inne for with": [0, 65535], "for with long": [0, 65535], "with long trauaile": [0, 65535], "long trauaile i": [0, 65535], "trauaile i am": [0, 65535], "i am stiffe": [0, 65535], "am stiffe and": [0, 65535], "stiffe and wearie": [0, 65535], "and wearie get": [0, 65535], "wearie get thee": [0, 65535], "get thee away": [0, 65535], "thee away dro": [0, 65535], "away dro many": [0, 65535], "dro many a": [0, 65535], "many a man": [0, 65535], "man would take": [0, 65535], "would take you": [0, 65535], "take you at": [0, 65535], "at your word": [0, 65535], "your word and": [0, 65535], "word and goe": [0, 65535], "and goe indeede": [0, 65535], "goe indeede hauing": [0, 65535], "indeede hauing so": [0, 65535], "hauing so good": [0, 65535], "so good a": [0, 65535], "good a meane": [0, 65535], "a meane exit": [0, 65535], "meane exit dromio": [0, 65535], "exit dromio ant": [0, 65535], "dromio ant a": [0, 65535], "ant a trustie": [0, 65535], "a trustie villaine": [0, 65535], "trustie villaine sir": [0, 65535], "villaine sir that": [0, 65535], "sir that very": [0, 65535], "that very oft": [0, 65535], "very oft when": [0, 65535], "oft when i": [0, 65535], "when i am": [0, 65535], "i am dull": [0, 65535], "am dull with": [0, 65535], "dull with care": [0, 65535], "with care and": [0, 65535], "care and melancholly": [0, 65535], "and melancholly lightens": [0, 65535], "melancholly lightens my": [0, 65535], "lightens my humour": [0, 65535], "my humour with": [0, 65535], "humour with his": [0, 65535], "with his merry": [0, 65535], "his merry iests": [0, 65535], "merry iests what": [0, 65535], "iests what will": [0, 65535], "what will you": [0, 65535], "you walke with": [0, 65535], "walke with me": [0, 65535], "with me about": [0, 65535], "me about the": [0, 65535], "about the towne": [0, 65535], "the towne and": [0, 65535], "towne and then": [0, 65535], "and then goe": [0, 65535], "then goe to": [0, 65535], "goe to my": [0, 65535], "to my inne": [0, 65535], "my inne and": [0, 65535], "inne and dine": [0, 65535], "and dine with": [0, 65535], "with me e": [0, 65535], "me e mar": [0, 65535], "e mar i": [0, 65535], "i am inuited": [0, 65535], "am inuited sir": [0, 65535], "inuited sir to": [0, 65535], "sir to certaine": [0, 65535], "to certaine marchants": [0, 65535], "certaine marchants of": [0, 65535], "marchants of whom": [0, 65535], "whom i hope": [0, 65535], "i hope to": [0, 65535], "hope to make": [0, 65535], "to make much": [0, 65535], "make much benefit": [0, 65535], "much benefit i": [0, 65535], "benefit i craue": [0, 65535], "i craue your": [0, 65535], "craue your pardon": [0, 65535], "your pardon soone": [0, 65535], "pardon soone at": [0, 65535], "soone at fiue": [0, 65535], "at fiue a": [0, 65535], "fiue a clocke": [0, 65535], "a clocke please": [0, 65535], "clocke please you": [0, 65535], "please you ile": [0, 65535], "you ile meete": [0, 65535], "ile meete with": [0, 65535], "meete with you": [0, 65535], "with you vpon": [0, 65535], "you vpon the": [0, 65535], "vpon the mart": [0, 65535], "mart and afterward": [0, 65535], "and afterward consort": [0, 65535], "afterward consort you": [0, 65535], "consort you till": [0, 65535], "you till bed": [0, 65535], "till bed time": [0, 65535], "bed time my": [0, 65535], "time my present": [0, 65535], "my present businesse": [0, 65535], "present businesse cals": [0, 65535], "businesse cals me": [0, 65535], "cals me from": [0, 65535], "me from you": [0, 65535], "from you now": [0, 65535], "you now ant": [0, 65535], "now ant farewell": [0, 65535], "ant farewell till": [0, 65535], "farewell till then": [0, 65535], "till then i": [0, 65535], "then i will": [0, 65535], "i will goe": [0, 65535], "will goe loose": [0, 65535], "goe loose my": [0, 65535], "loose my selfe": [0, 65535], "selfe and wander": [0, 65535], "and wander vp": [0, 65535], "wander vp and": [0, 65535], "vp and downe": [0, 65535], "and downe to": [0, 65535], "downe to view": [0, 65535], "to view the": [0, 65535], "view the citie": [0, 65535], "the citie e": [0, 65535], "citie e mar": [0, 65535], "e mar sir": [0, 65535], "mar sir i": [0, 65535], "sir i commend": [0, 65535], "i commend you": [0, 65535], "commend you to": [0, 65535], "you to your": [0, 65535], "to your owne": [0, 65535], "your owne content": [0, 65535], "owne content exeunt": [0, 65535], "content exeunt ant": [0, 65535], "exeunt ant he": [0, 65535], "ant he that": [0, 65535], "he that commends": [0, 65535], "that commends me": [0, 65535], "commends me to": [0, 65535], "me to mine": [0, 65535], "to mine owne": [0, 65535], "mine owne content": [0, 65535], "owne content commends": [0, 65535], "content commends me": [0, 65535], "me to the": [0, 65535], "to the thing": [0, 65535], "the thing i": [0, 65535], "thing i cannot": [0, 65535], "i cannot get": [0, 65535], "cannot get i": [0, 65535], "get i to": [0, 65535], "i to the": [0, 65535], "to the world": [0, 65535], "the world am": [0, 65535], "world am like": [0, 65535], "am like a": [0, 65535], "like a drop": [0, 65535], "of water that": [0, 65535], "water that in": [0, 65535], "that in the": [0, 65535], "in the ocean": [0, 65535], "the ocean seekes": [0, 65535], "ocean seekes another": [0, 65535], "seekes another drop": [0, 65535], "another drop who": [0, 65535], "drop who falling": [0, 65535], "who falling there": [0, 65535], "falling there to": [0, 65535], "there to finde": [0, 65535], "to finde his": [0, 65535], "finde his fellow": [0, 65535], "his fellow forth": [0, 65535], "fellow forth vnseene": [0, 65535], "forth vnseene inquisitiue": [0, 65535], "vnseene inquisitiue confounds": [0, 65535], "inquisitiue confounds himselfe": [0, 65535], "confounds himselfe so": [0, 65535], "himselfe so i": [0, 65535], "so i to": [0, 65535], "i to finde": [0, 65535], "to finde a": [0, 65535], "finde a mother": [0, 65535], "a mother and": [0, 65535], "mother and a": [0, 65535], "a brother in": [0, 65535], "brother in quest": [0, 65535], "in quest of": [0, 65535], "quest of them": [0, 65535], "of them vnhappie": [0, 65535], "them vnhappie a": [0, 65535], "vnhappie a loose": [0, 65535], "a loose my": [0, 65535], "my selfe enter": [0, 65535], "selfe enter dromio": [0, 65535], "enter dromio of": [0, 65535], "of ephesus here": [0, 65535], "ephesus here comes": [0, 65535], "here comes the": [0, 65535], "comes the almanacke": [0, 65535], "the almanacke of": [0, 65535], "almanacke of my": [0, 65535], "of my true": [0, 65535], "my true date": [0, 65535], "true date what": [0, 65535], "date what now": [0, 65535], "what now how": [0, 65535], "now how chance": [0, 65535], "how chance thou": [0, 65535], "chance thou art": [0, 65535], "thou art return'd": [0, 65535], "art return'd so": [0, 65535], "return'd so soone": [0, 65535], "so soone e": [0, 65535], "soone e dro": [0, 65535], "e dro return'd": [0, 65535], "dro return'd so": [0, 65535], "so soone rather": [0, 65535], "soone rather approacht": [0, 65535], "rather approacht too": [0, 65535], "approacht too late": [0, 65535], "too late the": [0, 65535], "late the capon": [0, 65535], "the capon burnes": [0, 65535], "capon burnes the": [0, 65535], "burnes the pig": [0, 65535], "the pig fals": [0, 65535], "pig fals from": [0, 65535], "fals from the": [0, 65535], "from the spit": [0, 65535], "the spit the": [0, 65535], "spit the clocke": [0, 65535], "the clocke hath": [0, 65535], "clocke hath strucken": [0, 65535], "hath strucken twelue": [0, 65535], "strucken twelue vpon": [0, 65535], "twelue vpon the": [0, 65535], "vpon the bell": [0, 65535], "the bell my": [0, 65535], "bell my mistris": [0, 65535], "my mistris made": [0, 65535], "mistris made it": [0, 65535], "made it one": [0, 65535], "it one vpon": [0, 65535], "one vpon my": [0, 65535], "vpon my cheeke": [0, 65535], "my cheeke she": [0, 65535], "cheeke she is": [0, 65535], "she is so": [0, 65535], "is so hot": [0, 65535], "so hot because": [0, 65535], "hot because the": [0, 65535], "because the meate": [0, 65535], "the meate is": [0, 65535], "meate is colde": [0, 65535], "is colde the": [0, 65535], "colde the meate": [0, 65535], "is colde because": [0, 65535], "colde because you": [0, 65535], "because you come": [0, 65535], "you come not": [0, 65535], "come not home": [0, 65535], "not home you": [0, 65535], "home you come": [0, 65535], "not home because": [0, 65535], "home because you": [0, 65535], "because you haue": [0, 65535], "you haue no": [0, 65535], "haue no stomacke": [0, 65535], "no stomacke you": [0, 65535], "stomacke you haue": [0, 65535], "no stomacke hauing": [0, 65535], "stomacke hauing broke": [0, 65535], "hauing broke your": [0, 65535], "broke your fast": [0, 65535], "your fast but": [0, 65535], "fast but we": [0, 65535], "but we that": [0, 65535], "we that know": [0, 65535], "that know what": [0, 65535], "know what 'tis": [0, 65535], "what 'tis to": [0, 65535], "'tis to fast": [0, 65535], "to fast and": [0, 65535], "fast and pray": [0, 65535], "and pray are": [0, 65535], "pray are penitent": [0, 65535], "are penitent for": [0, 65535], "penitent for your": [0, 65535], "for your default": [0, 65535], "your default to": [0, 65535], "default to day": [0, 65535], "to day ant": [0, 65535], "day ant stop": [0, 65535], "ant stop in": [0, 65535], "stop in your": [0, 65535], "in your winde": [0, 65535], "your winde sir": [0, 65535], "winde sir tell": [0, 65535], "sir tell me": [0, 65535], "tell me this": [0, 65535], "me this i": [0, 65535], "this i pray": [0, 65535], "i pray where": [0, 65535], "pray where haue": [0, 65535], "where haue you": [0, 65535], "haue you left": [0, 65535], "you left the": [0, 65535], "left the mony": [0, 65535], "the mony that": [0, 65535], "mony that i": [0, 65535], "that i gaue": [0, 65535], "i gaue you": [0, 65535], "gaue you e": [0, 65535], "e dro oh": [0, 65535], "dro oh sixe": [0, 65535], "oh sixe pence": [0, 65535], "sixe pence that": [0, 65535], "pence that i": [0, 65535], "i had a": [0, 65535], "had a wensday": [0, 65535], "a wensday last": [0, 65535], "wensday last to": [0, 65535], "last to pay": [0, 65535], "to pay the": [0, 65535], "pay the sadler": [0, 65535], "the sadler for": [0, 65535], "sadler for my": [0, 65535], "for my mistris": [0, 65535], "my mistris crupper": [0, 65535], "mistris crupper the": [0, 65535], "crupper the sadler": [0, 65535], "the sadler had": [0, 65535], "sadler had it": [0, 65535], "had it sir": [0, 65535], "it sir i": [0, 65535], "sir i kept": [0, 65535], "i kept it": [0, 65535], "kept it not": [0, 65535], "it not ant": [0, 65535], "ant i am": [0, 65535], "am not in": [0, 65535], "not in a": [0, 65535], "in a sportiue": [0, 65535], "a sportiue humor": [0, 65535], "sportiue humor now": [0, 65535], "humor now tell": [0, 65535], "now tell me": [0, 65535], "tell me and": [0, 65535], "me and dally": [0, 65535], "and dally not": [0, 65535], "dally not where": [0, 65535], "not where is": [0, 65535], "is the monie": [0, 65535], "the monie we": [0, 65535], "monie we being": [0, 65535], "we being strangers": [0, 65535], "being strangers here": [0, 65535], "strangers here how": [0, 65535], "here how dar'st": [0, 65535], "how dar'st thou": [0, 65535], "dar'st thou trust": [0, 65535], "thou trust so": [0, 65535], "trust so great": [0, 65535], "so great a": [0, 65535], "great a charge": [0, 65535], "a charge from": [0, 65535], "charge from thine": [0, 65535], "from thine owne": [0, 65535], "thine owne custodie": [0, 65535], "owne custodie e": [0, 65535], "custodie e dro": [0, 65535], "dro i pray": [0, 65535], "pray you iest": [0, 65535], "you iest sir": [0, 65535], "iest sir as": [0, 65535], "sir as you": [0, 65535], "as you sit": [0, 65535], "you sit at": [0, 65535], "sit at dinner": [0, 65535], "at dinner i": [0, 65535], "dinner i from": [0, 65535], "i from my": [0, 65535], "from my mistris": [0, 65535], "my mistris come": [0, 65535], "mistris come to": [0, 65535], "come to you": [0, 65535], "to you in": [0, 65535], "you in post": [0, 65535], "in post if": [0, 65535], "post if i": [0, 65535], "if i returne": [0, 65535], "i returne i": [0, 65535], "returne i shall": [0, 65535], "i shall be": [0, 65535], "shall be post": [0, 65535], "be post indeede": [0, 65535], "post indeede for": [0, 65535], "indeede for she": [0, 65535], "for she will": [0, 65535], "she will scoure": [0, 65535], "will scoure your": [0, 65535], "scoure your fault": [0, 65535], "your fault vpon": [0, 65535], "fault vpon my": [0, 65535], "vpon my pate": [0, 65535], "my pate me": [0, 65535], "pate me thinkes": [0, 65535], "me thinkes your": [0, 65535], "thinkes your maw": [0, 65535], "your maw like": [0, 65535], "maw like mine": [0, 65535], "like mine should": [0, 65535], "mine should be": [0, 65535], "should be your": [0, 65535], "be your cooke": [0, 65535], "your cooke and": [0, 65535], "cooke and strike": [0, 65535], "and strike you": [0, 65535], "strike you home": [0, 65535], "you home without": [0, 65535], "home without a": [0, 65535], "without a messenger": [0, 65535], "a messenger ant": [0, 65535], "messenger ant come": [0, 65535], "ant come dromio": [0, 65535], "come dromio come": [0, 65535], "dromio come these": [0, 65535], "come these iests": [0, 65535], "these iests are": [0, 65535], "iests are out": [0, 65535], "are out of": [0, 65535], "of season reserue": [0, 65535], "season reserue them": [0, 65535], "reserue them till": [0, 65535], "them till a": [0, 65535], "till a merrier": [0, 65535], "a merrier houre": [0, 65535], "merrier houre then": [0, 65535], "houre then this": [0, 65535], "then this where": [0, 65535], "this where is": [0, 65535], "is the gold": [0, 65535], "i gaue in": [0, 65535], "gaue in charge": [0, 65535], "in charge to": [0, 65535], "charge to thee": [0, 65535], "to thee e": [0, 65535], "thee e dro": [0, 65535], "e dro to": [0, 65535], "dro to me": [0, 65535], "to me sir": [0, 65535], "me sir why": [0, 65535], "sir why you": [0, 65535], "why you gaue": [0, 65535], "you gaue no": [0, 65535], "gaue no gold": [0, 65535], "no gold to": [0, 65535], "gold to me": [0, 65535], "to me ant": [0, 65535], "me ant come": [0, 65535], "ant come on": [0, 65535], "come on sir": [0, 65535], "on sir knaue": [0, 65535], "sir knaue haue": [0, 65535], "knaue haue done": [0, 65535], "haue done your": [0, 65535], "done your foolishnes": [0, 65535], "your foolishnes and": [0, 65535], "foolishnes and tell": [0, 65535], "and tell me": [0, 65535], "me how thou": [0, 65535], "how thou hast": [0, 65535], "thou hast dispos'd": [0, 65535], "hast dispos'd thy": [0, 65535], "dispos'd thy charge": [0, 65535], "thy charge e": [0, 65535], "charge e dro": [0, 65535], "e dro my": [0, 65535], "dro my charge": [0, 65535], "my charge was": [0, 65535], "charge was but": [0, 65535], "was but to": [0, 65535], "but to fetch": [0, 65535], "to fetch you": [0, 65535], "fetch you from": [0, 65535], "the mart home": [0, 65535], "mart home to": [0, 65535], "home to your": [0, 65535], "to your house": [0, 65535], "your house the": [0, 65535], "house the ph\u0153nix": [0, 65535], "the ph\u0153nix sir": [0, 65535], "ph\u0153nix sir to": [0, 65535], "dinner my mistris": [0, 65535], "my mistris and": [0, 65535], "mistris and her": [0, 65535], "and her sister": [0, 65535], "her sister staies": [0, 65535], "sister staies for": [0, 65535], "staies for you": [0, 65535], "for you ant": [0, 65535], "you ant now": [0, 65535], "ant now as": [0, 65535], "now as i": [0, 65535], "as i am": [0, 65535], "am a christian": [0, 65535], "a christian answer": [0, 65535], "christian answer me": [0, 65535], "answer me in": [0, 65535], "me in what": [0, 65535], "in what safe": [0, 65535], "what safe place": [0, 65535], "safe place you": [0, 65535], "place you haue": [0, 65535], "you haue bestow'd": [0, 65535], "haue bestow'd my": [0, 65535], "bestow'd my monie": [0, 65535], "my monie or": [0, 65535], "monie or i": [0, 65535], "or i shall": [0, 65535], "i shall breake": [0, 65535], "shall breake that": [0, 65535], "breake that merrie": [0, 65535], "that merrie sconce": [0, 65535], "merrie sconce of": [0, 65535], "sconce of yours": [0, 65535], "of yours that": [0, 65535], "yours that stands": [0, 65535], "that stands on": [0, 65535], "stands on tricks": [0, 65535], "on tricks when": [0, 65535], "tricks when i": [0, 65535], "i am vndispos'd": [0, 65535], "am vndispos'd where": [0, 65535], "vndispos'd where is": [0, 65535], "thousand markes thou": [0, 65535], "markes thou hadst": [0, 65535], "thou hadst of": [0, 65535], "hadst of me": [0, 65535], "of me e": [0, 65535], "me e dro": [0, 65535], "dro i haue": [0, 65535], "i haue some": [0, 65535], "haue some markes": [0, 65535], "some markes of": [0, 65535], "markes of yours": [0, 65535], "of yours vpon": [0, 65535], "yours vpon my": [0, 65535], "my pate some": [0, 65535], "pate some of": [0, 65535], "of my mistris": [0, 65535], "my mistris markes": [0, 65535], "mistris markes vpon": [0, 65535], "markes vpon my": [0, 65535], "shoulders but not": [0, 65535], "but not a": [0, 65535], "not a thousand": [0, 65535], "thousand markes betweene": [0, 65535], "markes betweene you": [0, 65535], "betweene you both": [0, 65535], "you both if": [0, 65535], "both if i": [0, 65535], "if i should": [0, 65535], "i should pay": [0, 65535], "should pay your": [0, 65535], "pay your worship": [0, 65535], "your worship those": [0, 65535], "worship those againe": [0, 65535], "those againe perchance": [0, 65535], "againe perchance you": [0, 65535], "perchance you will": [0, 65535], "you will not": [0, 65535], "will not beare": [0, 65535], "not beare them": [0, 65535], "beare them patiently": [0, 65535], "them patiently ant": [0, 65535], "patiently ant thy": [0, 65535], "ant thy mistris": [0, 65535], "thy mistris markes": [0, 65535], "mistris markes what": [0, 65535], "markes what mistris": [0, 65535], "what mistris slaue": [0, 65535], "mistris slaue hast": [0, 65535], "slaue hast thou": [0, 65535], "hast thou e": [0, 65535], "thou e dro": [0, 65535], "e dro your": [0, 65535], "dro your worships": [0, 65535], "your worships wife": [0, 65535], "worships wife my": [0, 65535], "wife my mistris": [0, 65535], "my mistris at": [0, 65535], "mistris at the": [0, 65535], "the ph\u0153nix she": [0, 65535], "ph\u0153nix she that": [0, 65535], "that doth fast": [0, 65535], "doth fast till": [0, 65535], "fast till you": [0, 65535], "till you come": [0, 65535], "you come home": [0, 65535], "dinner and praies": [0, 65535], "and praies that": [0, 65535], "praies that you": [0, 65535], "that you will": [0, 65535], "you will hie": [0, 65535], "will hie you": [0, 65535], "hie you home": [0, 65535], "you home to": [0, 65535], "dinner ant what": [0, 65535], "ant what wilt": [0, 65535], "what wilt thou": [0, 65535], "wilt thou flout": [0, 65535], "thou flout me": [0, 65535], "flout me thus": [0, 65535], "me thus vnto": [0, 65535], "thus vnto my": [0, 65535], "vnto my face": [0, 65535], "my face being": [0, 65535], "face being forbid": [0, 65535], "being forbid there": [0, 65535], "forbid there take": [0, 65535], "there take you": [0, 65535], "take you that": [0, 65535], "you that sir": [0, 65535], "that sir knaue": [0, 65535], "sir knaue e": [0, 65535], "knaue e dro": [0, 65535], "dro what meane": [0, 65535], "what meane you": [0, 65535], "meane you sir": [0, 65535], "sir for god": [0, 65535], "god sake hold": [0, 65535], "sake hold your": [0, 65535], "hold your hands": [0, 65535], "your hands nay": [0, 65535], "hands nay and": [0, 65535], "nay and you": [0, 65535], "and you will": [0, 65535], "will not sir": [0, 65535], "not sir ile": [0, 65535], "sir ile take": [0, 65535], "ile take my": [0, 65535], "take my heeles": [0, 65535], "my heeles exeunt": [0, 65535], "heeles exeunt dromio": [0, 65535], "exeunt dromio ep": [0, 65535], "dromio ep ant": [0, 65535], "ep ant vpon": [0, 65535], "ant vpon my": [0, 65535], "my life by": [0, 65535], "life by some": [0, 65535], "by some deuise": [0, 65535], "some deuise or": [0, 65535], "deuise or other": [0, 65535], "or other the": [0, 65535], "other the villaine": [0, 65535], "the villaine is": [0, 65535], "villaine is ore": [0, 65535], "is ore wrought": [0, 65535], "ore wrought of": [0, 65535], "wrought of all": [0, 65535], "of all my": [0, 65535], "all my monie": [0, 65535], "my monie they": [0, 65535], "monie they say": [0, 65535], "they say this": [0, 65535], "say this towne": [0, 65535], "this towne is": [0, 65535], "towne is full": [0, 65535], "is full of": [0, 65535], "full of cosenage": [0, 65535], "of cosenage as": [0, 65535], "cosenage as nimble": [0, 65535], "as nimble iuglers": [0, 65535], "nimble iuglers that": [0, 65535], "iuglers that deceiue": [0, 65535], "that deceiue the": [0, 65535], "deceiue the eie": [0, 65535], "the eie darke": [0, 65535], "eie darke working": [0, 65535], "darke working sorcerers": [0, 65535], "working sorcerers that": [0, 65535], "sorcerers that change": [0, 65535], "that change the": [0, 65535], "change the minde": [0, 65535], "the minde soule": [0, 65535], "minde soule killing": [0, 65535], "soule killing witches": [0, 65535], "killing witches that": [0, 65535], "witches that deforme": [0, 65535], "that deforme the": [0, 65535], "deforme the bodie": [0, 65535], "the bodie disguised": [0, 65535], "bodie disguised cheaters": [0, 65535], "disguised cheaters prating": [0, 65535], "cheaters prating mountebankes": [0, 65535], "prating mountebankes and": [0, 65535], "mountebankes and manie": [0, 65535], "and manie such": [0, 65535], "manie such like": [0, 65535], "such like liberties": [0, 65535], "like liberties of": [0, 65535], "liberties of sinne": [0, 65535], "of sinne if": [0, 65535], "sinne if it": [0, 65535], "if it proue": [0, 65535], "it proue so": [0, 65535], "proue so i": [0, 65535], "will be gone": [0, 65535], "be gone the": [0, 65535], "gone the sooner": [0, 65535], "the sooner ile": [0, 65535], "sooner ile to": [0, 65535], "the centaur to": [0, 65535], "centaur to goe": [0, 65535], "to goe seeke": [0, 65535], "goe seeke this": [0, 65535], "seeke this slaue": [0, 65535], "this slaue i": [0, 65535], "slaue i greatly": [0, 65535], "i greatly feare": [0, 65535], "greatly feare my": [0, 65535], "feare my monie": [0, 65535], "my monie is": [0, 65535], "monie is not": [0, 65535], "is not safe": [0, 65535], "the comedie of errors": [0, 65535], "comedie of errors actus": [0, 65535], "of errors actus primus": [0, 65535], "errors actus primus scena": [0, 65535], "actus primus scena prima": [0, 65535], "primus scena prima enter": [0, 65535], "scena prima enter the": [0, 65535], "prima enter the duke": [0, 65535], "duke of ephesus with": [0, 65535], "of ephesus with the": [0, 65535], "ephesus with the merchant": [0, 65535], "with the merchant of": [0, 65535], "the merchant of siracusa": [0, 65535], "merchant of siracusa iaylor": [0, 65535], "of siracusa iaylor and": [0, 65535], "siracusa iaylor and other": [0, 65535], "iaylor and other attendants": [0, 65535], "and other attendants marchant": [0, 65535], "other attendants marchant broceed": [0, 65535], "attendants marchant broceed solinus": [0, 65535], "marchant broceed solinus to": [0, 65535], "broceed solinus to procure": [0, 65535], "solinus to procure my": [0, 65535], "to procure my fall": [0, 65535], "procure my fall and": [0, 65535], "my fall and by": [0, 65535], "fall and by the": [0, 65535], "and by the doome": [0, 65535], "by the doome of": [0, 65535], "the doome of death": [0, 65535], "doome of death end": [0, 65535], "of death end woes": [0, 65535], "death end woes and": [0, 65535], "end woes and all": [0, 65535], "woes and all duke": [0, 65535], "and all duke merchant": [0, 65535], "all duke merchant of": [0, 65535], "duke merchant of siracusa": [0, 65535], "merchant of siracusa plead": [0, 65535], "of siracusa plead no": [0, 65535], "siracusa plead no more": [0, 65535], "plead no more i": [0, 65535], "no more i am": [0, 65535], "more i am not": [0, 65535], "i am not partiall": [0, 65535], "am not partiall to": [0, 65535], "not partiall to infringe": [0, 65535], "partiall to infringe our": [0, 65535], "to infringe our lawes": [0, 65535], "infringe our lawes the": [0, 65535], "our lawes the enmity": [0, 65535], "lawes the enmity and": [0, 65535], "the enmity and discord": [0, 65535], "enmity and discord which": [0, 65535], "and discord which of": [0, 65535], "discord which of late": [0, 65535], "which of late sprung": [0, 65535], "of late sprung from": [0, 65535], "late sprung from the": [0, 65535], "sprung from the rancorous": [0, 65535], "from the rancorous outrage": [0, 65535], "the rancorous outrage of": [0, 65535], "rancorous outrage of your": [0, 65535], "outrage of your duke": [0, 65535], "of your duke to": [0, 65535], "your duke to merchants": [0, 65535], "duke to merchants our": [0, 65535], "to merchants our well": [0, 65535], "merchants our well dealing": [0, 65535], "our well dealing countrimen": [0, 65535], "well dealing countrimen who": [0, 65535], "dealing countrimen who wanting": [0, 65535], "countrimen who wanting gilders": [0, 65535], "who wanting gilders to": [0, 65535], "wanting gilders to redeeme": [0, 65535], "gilders to redeeme their": [0, 65535], "to redeeme their liues": [0, 65535], "redeeme their liues haue": [0, 65535], "their liues haue seal'd": [0, 65535], "liues haue seal'd his": [0, 65535], "haue seal'd his rigorous": [0, 65535], "seal'd his rigorous statutes": [0, 65535], "his rigorous statutes with": [0, 65535], "rigorous statutes with their": [0, 65535], "statutes with their blouds": [0, 65535], "with their blouds excludes": [0, 65535], "their blouds excludes all": [0, 65535], "blouds excludes all pitty": [0, 65535], "excludes all pitty from": [0, 65535], "all pitty from our": [0, 65535], "pitty from our threatning": [0, 65535], "from our threatning lookes": [0, 65535], "our threatning lookes for": [0, 65535], "threatning lookes for since": [0, 65535], "lookes for since the": [0, 65535], "for since the mortall": [0, 65535], "since the mortall and": [0, 65535], "the mortall and intestine": [0, 65535], "mortall and intestine iarres": [0, 65535], "and intestine iarres twixt": [0, 65535], "intestine iarres twixt thy": [0, 65535], "iarres twixt thy seditious": [0, 65535], "twixt thy seditious countrimen": [0, 65535], "thy seditious countrimen and": [0, 65535], "seditious countrimen and vs": [0, 65535], "countrimen and vs it": [0, 65535], "and vs it hath": [0, 65535], "vs it hath in": [0, 65535], "it hath in solemne": [0, 65535], "hath in solemne synodes": [0, 65535], "in solemne synodes beene": [0, 65535], "solemne synodes beene decreed": [0, 65535], "synodes beene decreed both": [0, 65535], "beene decreed both by": [0, 65535], "decreed both by the": [0, 65535], "both by the siracusians": [0, 65535], "by the siracusians and": [0, 65535], "the siracusians and our": [0, 65535], "siracusians and our selues": [0, 65535], "and our selues to": [0, 65535], "our selues to admit": [0, 65535], "selues to admit no": [0, 65535], "to admit no trafficke": [0, 65535], "admit no trafficke to": [0, 65535], "no trafficke to our": [0, 65535], "trafficke to our aduerse": [0, 65535], "to our aduerse townes": [0, 65535], "our aduerse townes nay": [0, 65535], "aduerse townes nay more": [0, 65535], "townes nay more if": [0, 65535], "nay more if any": [0, 65535], "more if any borne": [0, 65535], "if any borne at": [0, 65535], "any borne at ephesus": [0, 65535], "borne at ephesus be": [0, 65535], "at ephesus be seene": [0, 65535], "ephesus be seene at": [0, 65535], "be seene at any": [0, 65535], "seene at any siracusian": [0, 65535], "at any siracusian marts": [0, 65535], "any siracusian marts and": [0, 65535], "siracusian marts and fayres": [0, 65535], "marts and fayres againe": [0, 65535], "and fayres againe if": [0, 65535], "fayres againe if any": [0, 65535], "againe if any siracusian": [0, 65535], "if any siracusian borne": [0, 65535], "any siracusian borne come": [0, 65535], "siracusian borne come to": [0, 65535], "borne come to the": [0, 65535], "come to the bay": [0, 65535], "to the bay of": [0, 65535], "the bay of ephesus": [0, 65535], "bay of ephesus he": [0, 65535], "of ephesus he dies": [0, 65535], "ephesus he dies his": [0, 65535], "he dies his goods": [0, 65535], "dies his goods confiscate": [0, 65535], "his goods confiscate to": [0, 65535], "goods confiscate to the": [0, 65535], "confiscate to the dukes": [0, 65535], "to the dukes dispose": [0, 65535], "the dukes dispose vnlesse": [0, 65535], "dukes dispose vnlesse a": [0, 65535], "dispose vnlesse a thousand": [0, 65535], "vnlesse a thousand markes": [0, 65535], "a thousand markes be": [0, 65535], "thousand markes be leuied": [0, 65535], "markes be leuied to": [0, 65535], "be leuied to quit": [0, 65535], "leuied to quit the": [0, 65535], "to quit the penalty": [0, 65535], "quit the penalty and": [0, 65535], "the penalty and to": [0, 65535], "penalty and to ransome": [0, 65535], "and to ransome him": [0, 65535], "to ransome him thy": [0, 65535], "ransome him thy substance": [0, 65535], "him thy substance valued": [0, 65535], "thy substance valued at": [0, 65535], "substance valued at the": [0, 65535], "valued at the highest": [0, 65535], "at the highest rate": [0, 65535], "the highest rate cannot": [0, 65535], "highest rate cannot amount": [0, 65535], "rate cannot amount vnto": [0, 65535], "cannot amount vnto a": [0, 65535], "amount vnto a hundred": [0, 65535], "vnto a hundred markes": [0, 65535], "a hundred markes therefore": [0, 65535], "hundred markes therefore by": [0, 65535], "markes therefore by law": [0, 65535], "therefore by law thou": [0, 65535], "by law thou art": [0, 65535], "law thou art condemn'd": [0, 65535], "thou art condemn'd to": [0, 65535], "art condemn'd to die": [0, 65535], "condemn'd to die mer": [0, 65535], "to die mer yet": [0, 65535], "die mer yet this": [0, 65535], "mer yet this my": [0, 65535], "yet this my comfort": [0, 65535], "this my comfort when": [0, 65535], "my comfort when your": [0, 65535], "comfort when your words": [0, 65535], "when your words are": [0, 65535], "your words are done": [0, 65535], "words are done my": [0, 65535], "are done my woes": [0, 65535], "done my woes end": [0, 65535], "my woes end likewise": [0, 65535], "woes end likewise with": [0, 65535], "end likewise with the": [0, 65535], "likewise with the euening": [0, 65535], "with the euening sonne": [0, 65535], "the euening sonne duk": [0, 65535], "euening sonne duk well": [0, 65535], "sonne duk well siracusian": [0, 65535], "duk well siracusian say": [0, 65535], "well siracusian say in": [0, 65535], "siracusian say in briefe": [0, 65535], "say in briefe the": [0, 65535], "in briefe the cause": [0, 65535], "briefe the cause why": [0, 65535], "the cause why thou": [0, 65535], "cause why thou departedst": [0, 65535], "why thou departedst from": [0, 65535], "thou departedst from thy": [0, 65535], "departedst from thy natiue": [0, 65535], "from thy natiue home": [0, 65535], "thy natiue home and": [0, 65535], "natiue home and for": [0, 65535], "home and for what": [0, 65535], "and for what cause": [0, 65535], "for what cause thou": [0, 65535], "what cause thou cam'st": [0, 65535], "cause thou cam'st to": [0, 65535], "thou cam'st to ephesus": [0, 65535], "cam'st to ephesus mer": [0, 65535], "to ephesus mer a": [0, 65535], "ephesus mer a heauier": [0, 65535], "mer a heauier taske": [0, 65535], "a heauier taske could": [0, 65535], "heauier taske could not": [0, 65535], "taske could not haue": [0, 65535], "could not haue beene": [0, 65535], "not haue beene impos'd": [0, 65535], "haue beene impos'd then": [0, 65535], "beene impos'd then i": [0, 65535], "impos'd then i to": [0, 65535], "then i to speake": [0, 65535], "i to speake my": [0, 65535], "to speake my griefes": [0, 65535], "speake my griefes vnspeakeable": [0, 65535], "my griefes vnspeakeable yet": [0, 65535], "griefes vnspeakeable yet that": [0, 65535], "vnspeakeable yet that the": [0, 65535], "yet that the world": [0, 65535], "that the world may": [0, 65535], "the world may witnesse": [0, 65535], "world may witnesse that": [0, 65535], "may witnesse that my": [0, 65535], "witnesse that my end": [0, 65535], "that my end was": [0, 65535], "my end was wrought": [0, 65535], "end was wrought by": [0, 65535], "was wrought by nature": [0, 65535], "wrought by nature not": [0, 65535], "by nature not by": [0, 65535], "nature not by vile": [0, 65535], "not by vile offence": [0, 65535], "by vile offence ile": [0, 65535], "vile offence ile vtter": [0, 65535], "offence ile vtter what": [0, 65535], "ile vtter what my": [0, 65535], "vtter what my sorrow": [0, 65535], "what my sorrow giues": [0, 65535], "my sorrow giues me": [0, 65535], "sorrow giues me leaue": [0, 65535], "giues me leaue in": [0, 65535], "me leaue in syracusa": [0, 65535], "leaue in syracusa was": [0, 65535], "in syracusa was i": [0, 65535], "syracusa was i borne": [0, 65535], "was i borne and": [0, 65535], "i borne and wedde": [0, 65535], "borne and wedde vnto": [0, 65535], "and wedde vnto a": [0, 65535], "wedde vnto a woman": [0, 65535], "vnto a woman happy": [0, 65535], "a woman happy but": [0, 65535], "woman happy but for": [0, 65535], "happy but for me": [0, 65535], "but for me and": [0, 65535], "for me and by": [0, 65535], "me and by me": [0, 65535], "and by me had": [0, 65535], "by me had not": [0, 65535], "me had not our": [0, 65535], "had not our hap": [0, 65535], "not our hap beene": [0, 65535], "our hap beene bad": [0, 65535], "hap beene bad with": [0, 65535], "beene bad with her": [0, 65535], "bad with her i": [0, 65535], "with her i liu'd": [0, 65535], "her i liu'd in": [0, 65535], "i liu'd in ioy": [0, 65535], "liu'd in ioy our": [0, 65535], "in ioy our wealth": [0, 65535], "ioy our wealth increast": [0, 65535], "our wealth increast by": [0, 65535], "wealth increast by prosperous": [0, 65535], "increast by prosperous voyages": [0, 65535], "by prosperous voyages i": [0, 65535], "prosperous voyages i often": [0, 65535], "voyages i often made": [0, 65535], "i often made to": [0, 65535], "often made to epidamium": [0, 65535], "made to epidamium till": [0, 65535], "to epidamium till my": [0, 65535], "epidamium till my factors": [0, 65535], "till my factors death": [0, 65535], "my factors death and": [0, 65535], "factors death and he": [0, 65535], "death and he great": [0, 65535], "and he great care": [0, 65535], "he great care of": [0, 65535], "great care of goods": [0, 65535], "care of goods at": [0, 65535], "of goods at randone": [0, 65535], "goods at randone left": [0, 65535], "at randone left drew": [0, 65535], "randone left drew me": [0, 65535], "left drew me from": [0, 65535], "drew me from kinde": [0, 65535], "me from kinde embracements": [0, 65535], "from kinde embracements of": [0, 65535], "kinde embracements of my": [0, 65535], "embracements of my spouse": [0, 65535], "of my spouse from": [0, 65535], "my spouse from whom": [0, 65535], "spouse from whom my": [0, 65535], "from whom my absence": [0, 65535], "whom my absence was": [0, 65535], "my absence was not": [0, 65535], "absence was not sixe": [0, 65535], "was not sixe moneths": [0, 65535], "not sixe moneths olde": [0, 65535], "sixe moneths olde before": [0, 65535], "moneths olde before her": [0, 65535], "olde before her selfe": [0, 65535], "before her selfe almost": [0, 65535], "her selfe almost at": [0, 65535], "selfe almost at fainting": [0, 65535], "almost at fainting vnder": [0, 65535], "at fainting vnder the": [0, 65535], "fainting vnder the pleasing": [0, 65535], "vnder the pleasing punishment": [0, 65535], "the pleasing punishment that": [0, 65535], "pleasing punishment that women": [0, 65535], "punishment that women beare": [0, 65535], "that women beare had": [0, 65535], "women beare had made": [0, 65535], "beare had made prouision": [0, 65535], "had made prouision for": [0, 65535], "made prouision for her": [0, 65535], "prouision for her following": [0, 65535], "for her following me": [0, 65535], "her following me and": [0, 65535], "following me and soone": [0, 65535], "me and soone and": [0, 65535], "and soone and safe": [0, 65535], "soone and safe arriued": [0, 65535], "and safe arriued where": [0, 65535], "safe arriued where i": [0, 65535], "arriued where i was": [0, 65535], "where i was there": [0, 65535], "i was there had": [0, 65535], "was there had she": [0, 65535], "there had she not": [0, 65535], "had she not beene": [0, 65535], "she not beene long": [0, 65535], "not beene long but": [0, 65535], "beene long but she": [0, 65535], "long but she became": [0, 65535], "but she became a": [0, 65535], "she became a ioyfull": [0, 65535], "became a ioyfull mother": [0, 65535], "a ioyfull mother of": [0, 65535], "ioyfull mother of two": [0, 65535], "mother of two goodly": [0, 65535], "of two goodly sonnes": [0, 65535], "two goodly sonnes and": [0, 65535], "goodly sonnes and which": [0, 65535], "sonnes and which was": [0, 65535], "and which was strange": [0, 65535], "which was strange the": [0, 65535], "was strange the one": [0, 65535], "strange the one so": [0, 65535], "the one so like": [0, 65535], "one so like the": [0, 65535], "so like the other": [0, 65535], "like the other as": [0, 65535], "the other as could": [0, 65535], "other as could not": [0, 65535], "as could not be": [0, 65535], "could not be distinguish'd": [0, 65535], "not be distinguish'd but": [0, 65535], "be distinguish'd but by": [0, 65535], "distinguish'd but by names": [0, 65535], "but by names that": [0, 65535], "by names that very": [0, 65535], "names that very howre": [0, 65535], "that very howre and": [0, 65535], "very howre and in": [0, 65535], "howre and in the": [0, 65535], "and in the selfe": [0, 65535], "in the selfe same": [0, 65535], "the selfe same inne": [0, 65535], "selfe same inne a": [0, 65535], "same inne a meane": [0, 65535], "inne a meane woman": [0, 65535], "a meane woman was": [0, 65535], "meane woman was deliuered": [0, 65535], "woman was deliuered of": [0, 65535], "was deliuered of such": [0, 65535], "deliuered of such a": [0, 65535], "of such a burthen": [0, 65535], "such a burthen male": [0, 65535], "a burthen male twins": [0, 65535], "burthen male twins both": [0, 65535], "male twins both alike": [0, 65535], "twins both alike those": [0, 65535], "both alike those for": [0, 65535], "alike those for their": [0, 65535], "those for their parents": [0, 65535], "for their parents were": [0, 65535], "their parents were exceeding": [0, 65535], "parents were exceeding poore": [0, 65535], "were exceeding poore i": [0, 65535], "exceeding poore i bought": [0, 65535], "poore i bought and": [0, 65535], "i bought and brought": [0, 65535], "bought and brought vp": [0, 65535], "and brought vp to": [0, 65535], "brought vp to attend": [0, 65535], "vp to attend my": [0, 65535], "to attend my sonnes": [0, 65535], "attend my sonnes my": [0, 65535], "my sonnes my wife": [0, 65535], "sonnes my wife not": [0, 65535], "my wife not meanely": [0, 65535], "wife not meanely prowd": [0, 65535], "not meanely prowd of": [0, 65535], "meanely prowd of two": [0, 65535], "prowd of two such": [0, 65535], "of two such boyes": [0, 65535], "two such boyes made": [0, 65535], "such boyes made daily": [0, 65535], "boyes made daily motions": [0, 65535], "made daily motions for": [0, 65535], "daily motions for our": [0, 65535], "motions for our home": [0, 65535], "for our home returne": [0, 65535], "our home returne vnwilling": [0, 65535], "home returne vnwilling i": [0, 65535], "returne vnwilling i agreed": [0, 65535], "vnwilling i agreed alas": [0, 65535], "i agreed alas too": [0, 65535], "agreed alas too soone": [0, 65535], "alas too soone wee": [0, 65535], "too soone wee came": [0, 65535], "soone wee came aboord": [0, 65535], "wee came aboord a": [0, 65535], "came aboord a league": [0, 65535], "aboord a league from": [0, 65535], "a league from epidamium": [0, 65535], "league from epidamium had": [0, 65535], "from epidamium had we": [0, 65535], "epidamium had we saild": [0, 65535], "had we saild before": [0, 65535], "we saild before the": [0, 65535], "saild before the alwaies": [0, 65535], "before the alwaies winde": [0, 65535], "the alwaies winde obeying": [0, 65535], "alwaies winde obeying deepe": [0, 65535], "winde obeying deepe gaue": [0, 65535], "obeying deepe gaue any": [0, 65535], "deepe gaue any tragicke": [0, 65535], "gaue any tragicke instance": [0, 65535], "any tragicke instance of": [0, 65535], "tragicke instance of our": [0, 65535], "instance of our harme": [0, 65535], "of our harme but": [0, 65535], "our harme but longer": [0, 65535], "harme but longer did": [0, 65535], "but longer did we": [0, 65535], "longer did we not": [0, 65535], "did we not retaine": [0, 65535], "we not retaine much": [0, 65535], "not retaine much hope": [0, 65535], "retaine much hope for": [0, 65535], "much hope for what": [0, 65535], "hope for what obscured": [0, 65535], "for what obscured light": [0, 65535], "what obscured light the": [0, 65535], "obscured light the heauens": [0, 65535], "light the heauens did": [0, 65535], "the heauens did grant": [0, 65535], "heauens did grant did": [0, 65535], "did grant did but": [0, 65535], "grant did but conuay": [0, 65535], "did but conuay vnto": [0, 65535], "but conuay vnto our": [0, 65535], "conuay vnto our fearefull": [0, 65535], "vnto our fearefull mindes": [0, 65535], "our fearefull mindes a": [0, 65535], "fearefull mindes a doubtfull": [0, 65535], "mindes a doubtfull warrant": [0, 65535], "a doubtfull warrant of": [0, 65535], "doubtfull warrant of immediate": [0, 65535], "warrant of immediate death": [0, 65535], "of immediate death which": [0, 65535], "immediate death which though": [0, 65535], "death which though my": [0, 65535], "which though my selfe": [0, 65535], "though my selfe would": [0, 65535], "my selfe would gladly": [0, 65535], "selfe would gladly haue": [0, 65535], "would gladly haue imbrac'd": [0, 65535], "gladly haue imbrac'd yet": [0, 65535], "haue imbrac'd yet the": [0, 65535], "imbrac'd yet the incessant": [0, 65535], "yet the incessant weepings": [0, 65535], "the incessant weepings of": [0, 65535], "incessant weepings of my": [0, 65535], "weepings of my wife": [0, 65535], "of my wife weeping": [0, 65535], "my wife weeping before": [0, 65535], "wife weeping before for": [0, 65535], "weeping before for what": [0, 65535], "before for what she": [0, 65535], "for what she saw": [0, 65535], "what she saw must": [0, 65535], "she saw must come": [0, 65535], "saw must come and": [0, 65535], "must come and pitteous": [0, 65535], "come and pitteous playnings": [0, 65535], "and pitteous playnings of": [0, 65535], "pitteous playnings of the": [0, 65535], "playnings of the prettie": [0, 65535], "of the prettie babes": [0, 65535], "the prettie babes that": [0, 65535], "prettie babes that mourn'd": [0, 65535], "babes that mourn'd for": [0, 65535], "that mourn'd for fashion": [0, 65535], "mourn'd for fashion ignorant": [0, 65535], "for fashion ignorant what": [0, 65535], "fashion ignorant what to": [0, 65535], "ignorant what to feare": [0, 65535], "what to feare forst": [0, 65535], "to feare forst me": [0, 65535], "feare forst me to": [0, 65535], "forst me to seeke": [0, 65535], "me to seeke delayes": [0, 65535], "to seeke delayes for": [0, 65535], "seeke delayes for them": [0, 65535], "delayes for them and": [0, 65535], "for them and me": [0, 65535], "them and me and": [0, 65535], "and me and this": [0, 65535], "me and this it": [0, 65535], "and this it was": [0, 65535], "this it was for": [0, 65535], "it was for other": [0, 65535], "was for other meanes": [0, 65535], "for other meanes was": [0, 65535], "other meanes was none": [0, 65535], "meanes was none the": [0, 65535], "was none the sailors": [0, 65535], "none the sailors sought": [0, 65535], "the sailors sought for": [0, 65535], "sailors sought for safety": [0, 65535], "sought for safety by": [0, 65535], "for safety by our": [0, 65535], "safety by our boate": [0, 65535], "by our boate and": [0, 65535], "our boate and left": [0, 65535], "boate and left the": [0, 65535], "and left the ship": [0, 65535], "left the ship then": [0, 65535], "the ship then sinking": [0, 65535], "ship then sinking ripe": [0, 65535], "then sinking ripe to": [0, 65535], "sinking ripe to vs": [0, 65535], "ripe to vs my": [0, 65535], "to vs my wife": [0, 65535], "vs my wife more": [0, 65535], "my wife more carefull": [0, 65535], "wife more carefull for": [0, 65535], "more carefull for the": [0, 65535], "carefull for the latter": [0, 65535], "for the latter borne": [0, 65535], "the latter borne had": [0, 65535], "latter borne had fastned": [0, 65535], "borne had fastned him": [0, 65535], "had fastned him vnto": [0, 65535], "fastned him vnto a": [0, 65535], "him vnto a small": [0, 65535], "vnto a small spare": [0, 65535], "a small spare mast": [0, 65535], "small spare mast such": [0, 65535], "spare mast such as": [0, 65535], "mast such as sea": [0, 65535], "such as sea faring": [0, 65535], "as sea faring men": [0, 65535], "sea faring men prouide": [0, 65535], "faring men prouide for": [0, 65535], "men prouide for stormes": [0, 65535], "prouide for stormes to": [0, 65535], "for stormes to him": [0, 65535], "stormes to him one": [0, 65535], "to him one of": [0, 65535], "him one of the": [0, 65535], "one of the other": [0, 65535], "of the other twins": [0, 65535], "the other twins was": [0, 65535], "other twins was bound": [0, 65535], "twins was bound whil'st": [0, 65535], "was bound whil'st i": [0, 65535], "bound whil'st i had": [0, 65535], "whil'st i had beene": [0, 65535], "i had beene like": [0, 65535], "had beene like heedfull": [0, 65535], "beene like heedfull of": [0, 65535], "like heedfull of the": [0, 65535], "heedfull of the other": [0, 65535], "of the other the": [0, 65535], "the other the children": [0, 65535], "other the children thus": [0, 65535], "the children thus dispos'd": [0, 65535], "children thus dispos'd my": [0, 65535], "thus dispos'd my wife": [0, 65535], "dispos'd my wife and": [0, 65535], "my wife and i": [0, 65535], "wife and i fixing": [0, 65535], "and i fixing our": [0, 65535], "i fixing our eyes": [0, 65535], "fixing our eyes on": [0, 65535], "our eyes on whom": [0, 65535], "eyes on whom our": [0, 65535], "on whom our care": [0, 65535], "whom our care was": [0, 65535], "our care was fixt": [0, 65535], "care was fixt fastned": [0, 65535], "was fixt fastned our": [0, 65535], "fixt fastned our selues": [0, 65535], "fastned our selues at": [0, 65535], "our selues at eyther": [0, 65535], "selues at eyther end": [0, 65535], "at eyther end the": [0, 65535], "eyther end the mast": [0, 65535], "end the mast and": [0, 65535], "the mast and floating": [0, 65535], "mast and floating straight": [0, 65535], "and floating straight obedient": [0, 65535], "floating straight obedient to": [0, 65535], "straight obedient to the": [0, 65535], "obedient to the streame": [0, 65535], "to the streame was": [0, 65535], "the streame was carried": [0, 65535], "streame was carried towards": [0, 65535], "was carried towards corinth": [0, 65535], "carried towards corinth as": [0, 65535], "towards corinth as we": [0, 65535], "corinth as we thought": [0, 65535], "as we thought at": [0, 65535], "we thought at length": [0, 65535], "thought at length the": [0, 65535], "at length the sonne": [0, 65535], "length the sonne gazing": [0, 65535], "the sonne gazing vpon": [0, 65535], "sonne gazing vpon the": [0, 65535], "gazing vpon the earth": [0, 65535], "vpon the earth disperst": [0, 65535], "the earth disperst those": [0, 65535], "earth disperst those vapours": [0, 65535], "disperst those vapours that": [0, 65535], "those vapours that offended": [0, 65535], "vapours that offended vs": [0, 65535], "that offended vs and": [0, 65535], "offended vs and by": [0, 65535], "vs and by the": [0, 65535], "and by the benefit": [0, 65535], "by the benefit of": [0, 65535], "the benefit of his": [0, 65535], "benefit of his wished": [0, 65535], "of his wished light": [0, 65535], "his wished light the": [0, 65535], "wished light the seas": [0, 65535], "light the seas waxt": [0, 65535], "the seas waxt calme": [0, 65535], "seas waxt calme and": [0, 65535], "waxt calme and we": [0, 65535], "calme and we discouered": [0, 65535], "and we discouered two": [0, 65535], "we discouered two shippes": [0, 65535], "discouered two shippes from": [0, 65535], "two shippes from farre": [0, 65535], "shippes from farre making": [0, 65535], "from farre making amaine": [0, 65535], "farre making amaine to": [0, 65535], "making amaine to vs": [0, 65535], "amaine to vs of": [0, 65535], "to vs of corinth": [0, 65535], "vs of corinth that": [0, 65535], "of corinth that of": [0, 65535], "corinth that of epidarus": [0, 65535], "that of epidarus this": [0, 65535], "of epidarus this but": [0, 65535], "epidarus this but ere": [0, 65535], "this but ere they": [0, 65535], "but ere they came": [0, 65535], "ere they came oh": [0, 65535], "they came oh let": [0, 65535], "came oh let me": [0, 65535], "oh let me say": [0, 65535], "let me say no": [0, 65535], "me say no more": [0, 65535], "say no more gather": [0, 65535], "no more gather the": [0, 65535], "more gather the sequell": [0, 65535], "gather the sequell by": [0, 65535], "the sequell by that": [0, 65535], "sequell by that went": [0, 65535], "by that went before": [0, 65535], "that went before duk": [0, 65535], "went before duk nay": [0, 65535], "before duk nay forward": [0, 65535], "duk nay forward old": [0, 65535], "nay forward old man": [0, 65535], "forward old man doe": [0, 65535], "old man doe not": [0, 65535], "man doe not breake": [0, 65535], "doe not breake off": [0, 65535], "not breake off so": [0, 65535], "breake off so for": [0, 65535], "off so for we": [0, 65535], "so for we may": [0, 65535], "for we may pitty": [0, 65535], "we may pitty though": [0, 65535], "may pitty though not": [0, 65535], "pitty though not pardon": [0, 65535], "though not pardon thee": [0, 65535], "not pardon thee merch": [0, 65535], "pardon thee merch oh": [0, 65535], "thee merch oh had": [0, 65535], "merch oh had the": [0, 65535], "oh had the gods": [0, 65535], "had the gods done": [0, 65535], "the gods done so": [0, 65535], "gods done so i": [0, 65535], "done so i had": [0, 65535], "so i had not": [0, 65535], "i had not now": [0, 65535], "had not now worthily": [0, 65535], "not now worthily tearm'd": [0, 65535], "now worthily tearm'd them": [0, 65535], "worthily tearm'd them mercilesse": [0, 65535], "tearm'd them mercilesse to": [0, 65535], "them mercilesse to vs": [0, 65535], "mercilesse to vs for": [0, 65535], "to vs for ere": [0, 65535], "vs for ere the": [0, 65535], "for ere the ships": [0, 65535], "ere the ships could": [0, 65535], "the ships could meet": [0, 65535], "ships could meet by": [0, 65535], "could meet by twice": [0, 65535], "meet by twice fiue": [0, 65535], "by twice fiue leagues": [0, 65535], "twice fiue leagues we": [0, 65535], "fiue leagues we were": [0, 65535], "leagues we were encountred": [0, 65535], "we were encountred by": [0, 65535], "were encountred by a": [0, 65535], "encountred by a mighty": [0, 65535], "by a mighty rocke": [0, 65535], "a mighty rocke which": [0, 65535], "mighty rocke which being": [0, 65535], "rocke which being violently": [0, 65535], "which being violently borne": [0, 65535], "being violently borne vp": [0, 65535], "violently borne vp our": [0, 65535], "borne vp our helpefull": [0, 65535], "vp our helpefull ship": [0, 65535], "our helpefull ship was": [0, 65535], "helpefull ship was splitted": [0, 65535], "ship was splitted in": [0, 65535], "was splitted in the": [0, 65535], "splitted in the midst": [0, 65535], "in the midst so": [0, 65535], "the midst so that": [0, 65535], "midst so that in": [0, 65535], "so that in this": [0, 65535], "that in this vniust": [0, 65535], "in this vniust diuorce": [0, 65535], "this vniust diuorce of": [0, 65535], "vniust diuorce of vs": [0, 65535], "diuorce of vs fortune": [0, 65535], "of vs fortune had": [0, 65535], "vs fortune had left": [0, 65535], "fortune had left to": [0, 65535], "had left to both": [0, 65535], "left to both of": [0, 65535], "to both of vs": [0, 65535], "both of vs alike": [0, 65535], "of vs alike what": [0, 65535], "vs alike what to": [0, 65535], "alike what to delight": [0, 65535], "what to delight in": [0, 65535], "to delight in what": [0, 65535], "delight in what to": [0, 65535], "in what to sorrow": [0, 65535], "what to sorrow for": [0, 65535], "to sorrow for her": [0, 65535], "sorrow for her part": [0, 65535], "for her part poore": [0, 65535], "her part poore soule": [0, 65535], "part poore soule seeming": [0, 65535], "poore soule seeming as": [0, 65535], "soule seeming as burdened": [0, 65535], "seeming as burdened with": [0, 65535], "as burdened with lesser": [0, 65535], "burdened with lesser waight": [0, 65535], "with lesser waight but": [0, 65535], "lesser waight but not": [0, 65535], "waight but not with": [0, 65535], "but not with lesser": [0, 65535], "not with lesser woe": [0, 65535], "with lesser woe was": [0, 65535], "lesser woe was carried": [0, 65535], "woe was carried with": [0, 65535], "was carried with more": [0, 65535], "carried with more speed": [0, 65535], "with more speed before": [0, 65535], "more speed before the": [0, 65535], "speed before the winde": [0, 65535], "before the winde and": [0, 65535], "the winde and in": [0, 65535], "winde and in our": [0, 65535], "and in our sight": [0, 65535], "in our sight they": [0, 65535], "our sight they three": [0, 65535], "sight they three were": [0, 65535], "they three were taken": [0, 65535], "three were taken vp": [0, 65535], "were taken vp by": [0, 65535], "taken vp by fishermen": [0, 65535], "vp by fishermen of": [0, 65535], "by fishermen of corinth": [0, 65535], "fishermen of corinth as": [0, 65535], "of corinth as we": [0, 65535], "thought at length another": [0, 65535], "at length another ship": [0, 65535], "length another ship had": [0, 65535], "another ship had seiz'd": [0, 65535], "ship had seiz'd on": [0, 65535], "had seiz'd on vs": [0, 65535], "seiz'd on vs and": [0, 65535], "on vs and knowing": [0, 65535], "vs and knowing whom": [0, 65535], "and knowing whom it": [0, 65535], "knowing whom it was": [0, 65535], "whom it was their": [0, 65535], "it was their hap": [0, 65535], "was their hap to": [0, 65535], "their hap to saue": [0, 65535], "hap to saue gaue": [0, 65535], "to saue gaue healthfull": [0, 65535], "saue gaue healthfull welcome": [0, 65535], "gaue healthfull welcome to": [0, 65535], "healthfull welcome to their": [0, 65535], "welcome to their ship": [0, 65535], "to their ship wrackt": [0, 65535], "their ship wrackt guests": [0, 65535], "ship wrackt guests and": [0, 65535], "wrackt guests and would": [0, 65535], "guests and would haue": [0, 65535], "and would haue reft": [0, 65535], "would haue reft the": [0, 65535], "haue reft the fishers": [0, 65535], "reft the fishers of": [0, 65535], "the fishers of their": [0, 65535], "fishers of their prey": [0, 65535], "of their prey had": [0, 65535], "their prey had not": [0, 65535], "prey had not their": [0, 65535], "had not their backe": [0, 65535], "not their backe beene": [0, 65535], "their backe beene very": [0, 65535], "backe beene very slow": [0, 65535], "beene very slow of": [0, 65535], "very slow of saile": [0, 65535], "slow of saile and": [0, 65535], "of saile and therefore": [0, 65535], "saile and therefore homeward": [0, 65535], "and therefore homeward did": [0, 65535], "therefore homeward did they": [0, 65535], "homeward did they bend": [0, 65535], "did they bend their": [0, 65535], "they bend their course": [0, 65535], "bend their course thus": [0, 65535], "their course thus haue": [0, 65535], "course thus haue you": [0, 65535], "thus haue you heard": [0, 65535], "haue you heard me": [0, 65535], "you heard me seuer'd": [0, 65535], "heard me seuer'd from": [0, 65535], "me seuer'd from my": [0, 65535], "seuer'd from my blisse": [0, 65535], "from my blisse that": [0, 65535], "my blisse that by": [0, 65535], "blisse that by misfortunes": [0, 65535], "that by misfortunes was": [0, 65535], "by misfortunes was my": [0, 65535], "misfortunes was my life": [0, 65535], "was my life prolong'd": [0, 65535], "my life prolong'd to": [0, 65535], "life prolong'd to tell": [0, 65535], "prolong'd to tell sad": [0, 65535], "to tell sad stories": [0, 65535], "tell sad stories of": [0, 65535], "sad stories of my": [0, 65535], "stories of my owne": [0, 65535], "of my owne mishaps": [0, 65535], "my owne mishaps duke": [0, 65535], "owne mishaps duke and": [0, 65535], "mishaps duke and for": [0, 65535], "duke and for the": [0, 65535], "and for the sake": [0, 65535], "for the sake of": [0, 65535], "the sake of them": [0, 65535], "sake of them thou": [0, 65535], "of them thou sorrowest": [0, 65535], "them thou sorrowest for": [0, 65535], "thou sorrowest for doe": [0, 65535], "sorrowest for doe me": [0, 65535], "for doe me the": [0, 65535], "doe me the fauour": [0, 65535], "me the fauour to": [0, 65535], "the fauour to dilate": [0, 65535], "fauour to dilate at": [0, 65535], "to dilate at full": [0, 65535], "dilate at full what": [0, 65535], "at full what haue": [0, 65535], "full what haue befalne": [0, 65535], "what haue befalne of": [0, 65535], "haue befalne of them": [0, 65535], "befalne of them and": [0, 65535], "of them and they": [0, 65535], "them and they till": [0, 65535], "and they till now": [0, 65535], "they till now merch": [0, 65535], "till now merch my": [0, 65535], "now merch my yongest": [0, 65535], "merch my yongest boy": [0, 65535], "my yongest boy and": [0, 65535], "yongest boy and yet": [0, 65535], "boy and yet my": [0, 65535], "and yet my eldest": [0, 65535], "yet my eldest care": [0, 65535], "my eldest care at": [0, 65535], "eldest care at eighteene": [0, 65535], "care at eighteene yeeres": [0, 65535], "at eighteene yeeres became": [0, 65535], "eighteene yeeres became inquisitiue": [0, 65535], "yeeres became inquisitiue after": [0, 65535], "became inquisitiue after his": [0, 65535], "inquisitiue after his brother": [0, 65535], "after his brother and": [0, 65535], "his brother and importun'd": [0, 65535], "brother and importun'd me": [0, 65535], "and importun'd me that": [0, 65535], "importun'd me that his": [0, 65535], "me that his attendant": [0, 65535], "that his attendant so": [0, 65535], "his attendant so his": [0, 65535], "attendant so his case": [0, 65535], "so his case was": [0, 65535], "his case was like": [0, 65535], "case was like reft": [0, 65535], "was like reft of": [0, 65535], "like reft of his": [0, 65535], "reft of his brother": [0, 65535], "of his brother but": [0, 65535], "his brother but retain'd": [0, 65535], "brother but retain'd his": [0, 65535], "but retain'd his name": [0, 65535], "retain'd his name might": [0, 65535], "his name might beare": [0, 65535], "name might beare him": [0, 65535], "might beare him company": [0, 65535], "beare him company in": [0, 65535], "him company in the": [0, 65535], "company in the quest": [0, 65535], "in the quest of": [0, 65535], "the quest of him": [0, 65535], "quest of him whom": [0, 65535], "of him whom whil'st": [0, 65535], "him whom whil'st i": [0, 65535], "whom whil'st i laboured": [0, 65535], "whil'st i laboured of": [0, 65535], "i laboured of a": [0, 65535], "laboured of a loue": [0, 65535], "of a loue to": [0, 65535], "a loue to see": [0, 65535], "loue to see i": [0, 65535], "to see i hazarded": [0, 65535], "see i hazarded the": [0, 65535], "i hazarded the losse": [0, 65535], "hazarded the losse of": [0, 65535], "the losse of whom": [0, 65535], "losse of whom i": [0, 65535], "of whom i lou'd": [0, 65535], "whom i lou'd fiue": [0, 65535], "i lou'd fiue sommers": [0, 65535], "lou'd fiue sommers haue": [0, 65535], "fiue sommers haue i": [0, 65535], "sommers haue i spent": [0, 65535], "haue i spent in": [0, 65535], "i spent in farthest": [0, 65535], "spent in farthest greece": [0, 65535], "in farthest greece roming": [0, 65535], "farthest greece roming cleane": [0, 65535], "greece roming cleane through": [0, 65535], "roming cleane through the": [0, 65535], "cleane through the bounds": [0, 65535], "through the bounds of": [0, 65535], "the bounds of asia": [0, 65535], "bounds of asia and": [0, 65535], "of asia and coasting": [0, 65535], "asia and coasting homeward": [0, 65535], "and coasting homeward came": [0, 65535], "coasting homeward came to": [0, 65535], "homeward came to ephesus": [0, 65535], "came to ephesus hopelesse": [0, 65535], "to ephesus hopelesse to": [0, 65535], "ephesus hopelesse to finde": [0, 65535], "hopelesse to finde yet": [0, 65535], "to finde yet loth": [0, 65535], "finde yet loth to": [0, 65535], "yet loth to leaue": [0, 65535], "loth to leaue vnsought": [0, 65535], "to leaue vnsought or": [0, 65535], "leaue vnsought or that": [0, 65535], "vnsought or that or": [0, 65535], "or that or any": [0, 65535], "that or any place": [0, 65535], "or any place that": [0, 65535], "any place that harbours": [0, 65535], "place that harbours men": [0, 65535], "that harbours men but": [0, 65535], "harbours men but heere": [0, 65535], "men but heere must": [0, 65535], "but heere must end": [0, 65535], "heere must end the": [0, 65535], "must end the story": [0, 65535], "end the story of": [0, 65535], "the story of my": [0, 65535], "story of my life": [0, 65535], "of my life and": [0, 65535], "my life and happy": [0, 65535], "life and happy were": [0, 65535], "and happy were i": [0, 65535], "happy were i in": [0, 65535], "were i in my": [0, 65535], "i in my timelie": [0, 65535], "in my timelie death": [0, 65535], "my timelie death could": [0, 65535], "timelie death could all": [0, 65535], "death could all my": [0, 65535], "could all my trauells": [0, 65535], "all my trauells warrant": [0, 65535], "my trauells warrant me": [0, 65535], "trauells warrant me they": [0, 65535], "warrant me they liue": [0, 65535], "me they liue duke": [0, 65535], "they liue duke haplesse": [0, 65535], "liue duke haplesse egeon": [0, 65535], "duke haplesse egeon whom": [0, 65535], "haplesse egeon whom the": [0, 65535], "egeon whom the fates": [0, 65535], "whom the fates haue": [0, 65535], "the fates haue markt": [0, 65535], "fates haue markt to": [0, 65535], "haue markt to beare": [0, 65535], "markt to beare the": [0, 65535], "to beare the extremitie": [0, 65535], "beare the extremitie of": [0, 65535], "the extremitie of dire": [0, 65535], "extremitie of dire mishap": [0, 65535], "of dire mishap now": [0, 65535], "dire mishap now trust": [0, 65535], "mishap now trust me": [0, 65535], "now trust me were": [0, 65535], "trust me were it": [0, 65535], "me were it not": [0, 65535], "were it not against": [0, 65535], "it not against our": [0, 65535], "not against our lawes": [0, 65535], "against our lawes against": [0, 65535], "our lawes against my": [0, 65535], "lawes against my crowne": [0, 65535], "against my crowne my": [0, 65535], "my crowne my oath": [0, 65535], "crowne my oath my": [0, 65535], "my oath my dignity": [0, 65535], "oath my dignity which": [0, 65535], "my dignity which princes": [0, 65535], "dignity which princes would": [0, 65535], "which princes would they": [0, 65535], "princes would they may": [0, 65535], "would they may not": [0, 65535], "they may not disanull": [0, 65535], "may not disanull my": [0, 65535], "not disanull my soule": [0, 65535], "disanull my soule should": [0, 65535], "my soule should sue": [0, 65535], "soule should sue as": [0, 65535], "should sue as aduocate": [0, 65535], "sue as aduocate for": [0, 65535], "as aduocate for thee": [0, 65535], "aduocate for thee but": [0, 65535], "for thee but though": [0, 65535], "thee but though thou": [0, 65535], "but though thou art": [0, 65535], "though thou art adiudged": [0, 65535], "thou art adiudged to": [0, 65535], "art adiudged to the": [0, 65535], "adiudged to the death": [0, 65535], "to the death and": [0, 65535], "the death and passed": [0, 65535], "death and passed sentence": [0, 65535], "and passed sentence may": [0, 65535], "passed sentence may not": [0, 65535], "sentence may not be": [0, 65535], "may not be recal'd": [0, 65535], "not be recal'd but": [0, 65535], "be recal'd but to": [0, 65535], "recal'd but to our": [0, 65535], "but to our honours": [0, 65535], "to our honours great": [0, 65535], "our honours great disparagement": [0, 65535], "honours great disparagement yet": [0, 65535], "great disparagement yet will": [0, 65535], "disparagement yet will i": [0, 65535], "yet will i fauour": [0, 65535], "will i fauour thee": [0, 65535], "i fauour thee in": [0, 65535], "fauour thee in what": [0, 65535], "thee in what i": [0, 65535], "in what i can": [0, 65535], "what i can therefore": [0, 65535], "i can therefore marchant": [0, 65535], "can therefore marchant ile": [0, 65535], "therefore marchant ile limit": [0, 65535], "marchant ile limit thee": [0, 65535], "ile limit thee this": [0, 65535], "limit thee this day": [0, 65535], "thee this day to": [0, 65535], "this day to seeke": [0, 65535], "day to seeke thy": [0, 65535], "to seeke thy helpe": [0, 65535], "seeke thy helpe by": [0, 65535], "thy helpe by beneficiall": [0, 65535], "helpe by beneficiall helpe": [0, 65535], "by beneficiall helpe try": [0, 65535], "beneficiall helpe try all": [0, 65535], "helpe try all the": [0, 65535], "try all the friends": [0, 65535], "all the friends thou": [0, 65535], "the friends thou hast": [0, 65535], "friends thou hast in": [0, 65535], "thou hast in ephesus": [0, 65535], "hast in ephesus beg": [0, 65535], "in ephesus beg thou": [0, 65535], "ephesus beg thou or": [0, 65535], "beg thou or borrow": [0, 65535], "thou or borrow to": [0, 65535], "or borrow to make": [0, 65535], "borrow to make vp": [0, 65535], "to make vp the": [0, 65535], "make vp the summe": [0, 65535], "vp the summe and": [0, 65535], "the summe and liue": [0, 65535], "summe and liue if": [0, 65535], "and liue if no": [0, 65535], "liue if no then": [0, 65535], "if no then thou": [0, 65535], "no then thou art": [0, 65535], "then thou art doom'd": [0, 65535], "thou art doom'd to": [0, 65535], "art doom'd to die": [0, 65535], "doom'd to die iaylor": [0, 65535], "to die iaylor take": [0, 65535], "die iaylor take him": [0, 65535], "iaylor take him to": [0, 65535], "take him to thy": [0, 65535], "him to thy custodie": [0, 65535], "to thy custodie iaylor": [0, 65535], "thy custodie iaylor i": [0, 65535], "custodie iaylor i will": [0, 65535], "iaylor i will my": [0, 65535], "i will my lord": [0, 65535], "will my lord merch": [0, 65535], "my lord merch hopelesse": [0, 65535], "lord merch hopelesse and": [0, 65535], "merch hopelesse and helpelesse": [0, 65535], "hopelesse and helpelesse doth": [0, 65535], "and helpelesse doth egean": [0, 65535], "helpelesse doth egean wend": [0, 65535], "doth egean wend but": [0, 65535], "egean wend but to": [0, 65535], "wend but to procrastinate": [0, 65535], "but to procrastinate his": [0, 65535], "to procrastinate his liuelesse": [0, 65535], "procrastinate his liuelesse end": [0, 65535], "his liuelesse end exeunt": [0, 65535], "liuelesse end exeunt enter": [0, 65535], "end exeunt enter antipholis": [0, 65535], "exeunt enter antipholis erotes": [0, 65535], "enter antipholis erotes a": [0, 65535], "antipholis erotes a marchant": [0, 65535], "erotes a marchant and": [0, 65535], "a marchant and dromio": [0, 65535], "marchant and dromio mer": [0, 65535], "and dromio mer therefore": [0, 65535], "dromio mer therefore giue": [0, 65535], "mer therefore giue out": [0, 65535], "therefore giue out you": [0, 65535], "giue out you are": [0, 65535], "out you are of": [0, 65535], "you are of epidamium": [0, 65535], "are of epidamium lest": [0, 65535], "of epidamium lest that": [0, 65535], "epidamium lest that your": [0, 65535], "lest that your goods": [0, 65535], "that your goods too": [0, 65535], "your goods too soone": [0, 65535], "goods too soone be": [0, 65535], "too soone be confiscate": [0, 65535], "soone be confiscate this": [0, 65535], "be confiscate this very": [0, 65535], "confiscate this very day": [0, 65535], "this very day a": [0, 65535], "very day a syracusian": [0, 65535], "day a syracusian marchant": [0, 65535], "a syracusian marchant is": [0, 65535], "syracusian marchant is apprehended": [0, 65535], "marchant is apprehended for": [0, 65535], "is apprehended for a": [0, 65535], "apprehended for a riuall": [0, 65535], "for a riuall here": [0, 65535], "a riuall here and": [0, 65535], "riuall here and not": [0, 65535], "here and not being": [0, 65535], "and not being able": [0, 65535], "not being able to": [0, 65535], "being able to buy": [0, 65535], "able to buy out": [0, 65535], "to buy out his": [0, 65535], "buy out his life": [0, 65535], "out his life according": [0, 65535], "his life according to": [0, 65535], "life according to the": [0, 65535], "according to the statute": [0, 65535], "to the statute of": [0, 65535], "the statute of the": [0, 65535], "statute of the towne": [0, 65535], "of the towne dies": [0, 65535], "the towne dies ere": [0, 65535], "towne dies ere the": [0, 65535], "dies ere the wearie": [0, 65535], "ere the wearie sunne": [0, 65535], "the wearie sunne set": [0, 65535], "wearie sunne set in": [0, 65535], "sunne set in the": [0, 65535], "set in the west": [0, 65535], "in the west there": [0, 65535], "the west there is": [0, 65535], "west there is your": [0, 65535], "there is your monie": [0, 65535], "is your monie that": [0, 65535], "your monie that i": [0, 65535], "monie that i had": [0, 65535], "that i had to": [0, 65535], "i had to keepe": [0, 65535], "had to keepe ant": [0, 65535], "to keepe ant goe": [0, 65535], "keepe ant goe beare": [0, 65535], "ant goe beare it": [0, 65535], "goe beare it to": [0, 65535], "beare it to the": [0, 65535], "it to the centaure": [0, 65535], "to the centaure where": [0, 65535], "the centaure where we": [0, 65535], "centaure where we host": [0, 65535], "where we host and": [0, 65535], "we host and stay": [0, 65535], "host and stay there": [0, 65535], "and stay there dromio": [0, 65535], "stay there dromio till": [0, 65535], "there dromio till i": [0, 65535], "dromio till i come": [0, 65535], "till i come to": [0, 65535], "i come to thee": [0, 65535], "come to thee within": [0, 65535], "to thee within this": [0, 65535], "thee within this houre": [0, 65535], "within this houre it": [0, 65535], "this houre it will": [0, 65535], "houre it will be": [0, 65535], "it will be dinner": [0, 65535], "will be dinner time": [0, 65535], "be dinner time till": [0, 65535], "dinner time till that": [0, 65535], "time till that ile": [0, 65535], "till that ile view": [0, 65535], "that ile view the": [0, 65535], "ile view the manners": [0, 65535], "view the manners of": [0, 65535], "the manners of the": [0, 65535], "manners of the towne": [0, 65535], "of the towne peruse": [0, 65535], "the towne peruse the": [0, 65535], "towne peruse the traders": [0, 65535], "peruse the traders gaze": [0, 65535], "the traders gaze vpon": [0, 65535], "traders gaze vpon the": [0, 65535], "gaze vpon the buildings": [0, 65535], "vpon the buildings and": [0, 65535], "the buildings and then": [0, 65535], "buildings and then returne": [0, 65535], "and then returne and": [0, 65535], "then returne and sleepe": [0, 65535], "returne and sleepe within": [0, 65535], "and sleepe within mine": [0, 65535], "sleepe within mine inne": [0, 65535], "within mine inne for": [0, 65535], "mine inne for with": [0, 65535], "inne for with long": [0, 65535], "for with long trauaile": [0, 65535], "with long trauaile i": [0, 65535], "long trauaile i am": [0, 65535], "trauaile i am stiffe": [0, 65535], "i am stiffe and": [0, 65535], "am stiffe and wearie": [0, 65535], "stiffe and wearie get": [0, 65535], "and wearie get thee": [0, 65535], "wearie get thee away": [0, 65535], "get thee away dro": [0, 65535], "thee away dro many": [0, 65535], "away dro many a": [0, 65535], "dro many a man": [0, 65535], "many a man would": [0, 65535], "a man would take": [0, 65535], "man would take you": [0, 65535], "would take you at": [0, 65535], "take you at your": [0, 65535], "you at your word": [0, 65535], "at your word and": [0, 65535], "your word and goe": [0, 65535], "word and goe indeede": [0, 65535], "and goe indeede hauing": [0, 65535], "goe indeede hauing so": [0, 65535], "indeede hauing so good": [0, 65535], "hauing so good a": [0, 65535], "so good a meane": [0, 65535], "good a meane exit": [0, 65535], "a meane exit dromio": [0, 65535], "meane exit dromio ant": [0, 65535], "exit dromio ant a": [0, 65535], "dromio ant a trustie": [0, 65535], "ant a trustie villaine": [0, 65535], "a trustie villaine sir": [0, 65535], "trustie villaine sir that": [0, 65535], "villaine sir that very": [0, 65535], "sir that very oft": [0, 65535], "that very oft when": [0, 65535], "very oft when i": [0, 65535], "oft when i am": [0, 65535], "when i am dull": [0, 65535], "i am dull with": [0, 65535], "am dull with care": [0, 65535], "dull with care and": [0, 65535], "with care and melancholly": [0, 65535], "care and melancholly lightens": [0, 65535], "and melancholly lightens my": [0, 65535], "melancholly lightens my humour": [0, 65535], "lightens my humour with": [0, 65535], "my humour with his": [0, 65535], "humour with his merry": [0, 65535], "with his merry iests": [0, 65535], "his merry iests what": [0, 65535], "merry iests what will": [0, 65535], "iests what will you": [0, 65535], "what will you walke": [0, 65535], "will you walke with": [0, 65535], "you walke with me": [0, 65535], "walke with me about": [0, 65535], "with me about the": [0, 65535], "me about the towne": [0, 65535], "about the towne and": [0, 65535], "the towne and then": [0, 65535], "towne and then goe": [0, 65535], "and then goe to": [0, 65535], "then goe to my": [0, 65535], "goe to my inne": [0, 65535], "to my inne and": [0, 65535], "my inne and dine": [0, 65535], "inne and dine with": [0, 65535], "and dine with me": [0, 65535], "dine with me e": [0, 65535], "with me e mar": [0, 65535], "me e mar i": [0, 65535], "e mar i am": [0, 65535], "mar i am inuited": [0, 65535], "i am inuited sir": [0, 65535], "am inuited sir to": [0, 65535], "inuited sir to certaine": [0, 65535], "sir to certaine marchants": [0, 65535], "to certaine marchants of": [0, 65535], "certaine marchants of whom": [0, 65535], "marchants of whom i": [0, 65535], "of whom i hope": [0, 65535], "whom i hope to": [0, 65535], "i hope to make": [0, 65535], "hope to make much": [0, 65535], "to make much benefit": [0, 65535], "make much benefit i": [0, 65535], "much benefit i craue": [0, 65535], "benefit i craue your": [0, 65535], "i craue your pardon": [0, 65535], "craue your pardon soone": [0, 65535], "your pardon soone at": [0, 65535], "pardon soone at fiue": [0, 65535], "soone at fiue a": [0, 65535], "at fiue a clocke": [0, 65535], "fiue a clocke please": [0, 65535], "a clocke please you": [0, 65535], "clocke please you ile": [0, 65535], "please you ile meete": [0, 65535], "you ile meete with": [0, 65535], "ile meete with you": [0, 65535], "meete with you vpon": [0, 65535], "with you vpon the": [0, 65535], "you vpon the mart": [0, 65535], "vpon the mart and": [0, 65535], "the mart and afterward": [0, 65535], "mart and afterward consort": [0, 65535], "and afterward consort you": [0, 65535], "afterward consort you till": [0, 65535], "consort you till bed": [0, 65535], "you till bed time": [0, 65535], "till bed time my": [0, 65535], "bed time my present": [0, 65535], "time my present businesse": [0, 65535], "my present businesse cals": [0, 65535], "present businesse cals me": [0, 65535], "businesse cals me from": [0, 65535], "cals me from you": [0, 65535], "me from you now": [0, 65535], "from you now ant": [0, 65535], "you now ant farewell": [0, 65535], "now ant farewell till": [0, 65535], "ant farewell till then": [0, 65535], "farewell till then i": [0, 65535], "till then i will": [0, 65535], "then i will goe": [0, 65535], "i will goe loose": [0, 65535], "will goe loose my": [0, 65535], "goe loose my selfe": [0, 65535], "loose my selfe and": [0, 65535], "my selfe and wander": [0, 65535], "selfe and wander vp": [0, 65535], "and wander vp and": [0, 65535], "wander vp and downe": [0, 65535], "vp and downe to": [0, 65535], "and downe to view": [0, 65535], "downe to view the": [0, 65535], "to view the citie": [0, 65535], "view the citie e": [0, 65535], "the citie e mar": [0, 65535], "citie e mar sir": [0, 65535], "e mar sir i": [0, 65535], "mar sir i commend": [0, 65535], "sir i commend you": [0, 65535], "i commend you to": [0, 65535], "commend you to your": [0, 65535], "you to your owne": [0, 65535], "to your owne content": [0, 65535], "your owne content exeunt": [0, 65535], "owne content exeunt ant": [0, 65535], "content exeunt ant he": [0, 65535], "exeunt ant he that": [0, 65535], "ant he that commends": [0, 65535], "he that commends me": [0, 65535], "that commends me to": [0, 65535], "commends me to mine": [0, 65535], "me to mine owne": [0, 65535], "to mine owne content": [0, 65535], "mine owne content commends": [0, 65535], "owne content commends me": [0, 65535], "content commends me to": [0, 65535], "commends me to the": [0, 65535], "me to the thing": [0, 65535], "to the thing i": [0, 65535], "the thing i cannot": [0, 65535], "thing i cannot get": [0, 65535], "i cannot get i": [0, 65535], "cannot get i to": [0, 65535], "get i to the": [0, 65535], "i to the world": [0, 65535], "to the world am": [0, 65535], "the world am like": [0, 65535], "world am like a": [0, 65535], "am like a drop": [0, 65535], "like a drop of": [0, 65535], "drop of water that": [0, 65535], "of water that in": [0, 65535], "water that in the": [0, 65535], "that in the ocean": [0, 65535], "in the ocean seekes": [0, 65535], "the ocean seekes another": [0, 65535], "ocean seekes another drop": [0, 65535], "seekes another drop who": [0, 65535], "another drop who falling": [0, 65535], "drop who falling there": [0, 65535], "who falling there to": [0, 65535], "falling there to finde": [0, 65535], "there to finde his": [0, 65535], "to finde his fellow": [0, 65535], "finde his fellow forth": [0, 65535], "his fellow forth vnseene": [0, 65535], "fellow forth vnseene inquisitiue": [0, 65535], "forth vnseene inquisitiue confounds": [0, 65535], "vnseene inquisitiue confounds himselfe": [0, 65535], "inquisitiue confounds himselfe so": [0, 65535], "confounds himselfe so i": [0, 65535], "himselfe so i to": [0, 65535], "so i to finde": [0, 65535], "i to finde a": [0, 65535], "to finde a mother": [0, 65535], "finde a mother and": [0, 65535], "a mother and a": [0, 65535], "mother and a brother": [0, 65535], "and a brother in": [0, 65535], "a brother in quest": [0, 65535], "brother in quest of": [0, 65535], "in quest of them": [0, 65535], "quest of them vnhappie": [0, 65535], "of them vnhappie a": [0, 65535], "them vnhappie a loose": [0, 65535], "vnhappie a loose my": [0, 65535], "a loose my selfe": [0, 65535], "loose my selfe enter": [0, 65535], "my selfe enter dromio": [0, 65535], "selfe enter dromio of": [0, 65535], "enter dromio of ephesus": [0, 65535], "dromio of ephesus here": [0, 65535], "of ephesus here comes": [0, 65535], "ephesus here comes the": [0, 65535], "here comes the almanacke": [0, 65535], "comes the almanacke of": [0, 65535], "the almanacke of my": [0, 65535], "almanacke of my true": [0, 65535], "of my true date": [0, 65535], "my true date what": [0, 65535], "true date what now": [0, 65535], "date what now how": [0, 65535], "what now how chance": [0, 65535], "now how chance thou": [0, 65535], "how chance thou art": [0, 65535], "chance thou art return'd": [0, 65535], "thou art return'd so": [0, 65535], "art return'd so soone": [0, 65535], "return'd so soone e": [0, 65535], "so soone e dro": [0, 65535], "soone e dro return'd": [0, 65535], "e dro return'd so": [0, 65535], "dro return'd so soone": [0, 65535], "return'd so soone rather": [0, 65535], "so soone rather approacht": [0, 65535], "soone rather approacht too": [0, 65535], "rather approacht too late": [0, 65535], "approacht too late the": [0, 65535], "too late the capon": [0, 65535], "late the capon burnes": [0, 65535], "the capon burnes the": [0, 65535], "capon burnes the pig": [0, 65535], "burnes the pig fals": [0, 65535], "the pig fals from": [0, 65535], "pig fals from the": [0, 65535], "fals from the spit": [0, 65535], "from the spit the": [0, 65535], "the spit the clocke": [0, 65535], "spit the clocke hath": [0, 65535], "the clocke hath strucken": [0, 65535], "clocke hath strucken twelue": [0, 65535], "hath strucken twelue vpon": [0, 65535], "strucken twelue vpon the": [0, 65535], "twelue vpon the bell": [0, 65535], "vpon the bell my": [0, 65535], "the bell my mistris": [0, 65535], "bell my mistris made": [0, 65535], "my mistris made it": [0, 65535], "mistris made it one": [0, 65535], "made it one vpon": [0, 65535], "it one vpon my": [0, 65535], "one vpon my cheeke": [0, 65535], "vpon my cheeke she": [0, 65535], "my cheeke she is": [0, 65535], "cheeke she is so": [0, 65535], "she is so hot": [0, 65535], "is so hot because": [0, 65535], "so hot because the": [0, 65535], "hot because the meate": [0, 65535], "because the meate is": [0, 65535], "the meate is colde": [0, 65535], "meate is colde the": [0, 65535], "is colde the meate": [0, 65535], "colde the meate is": [0, 65535], "meate is colde because": [0, 65535], "is colde because you": [0, 65535], "colde because you come": [0, 65535], "because you come not": [0, 65535], "you come not home": [0, 65535], "come not home you": [0, 65535], "not home you come": [0, 65535], "home you come not": [0, 65535], "come not home because": [0, 65535], "not home because you": [0, 65535], "home because you haue": [0, 65535], "because you haue no": [0, 65535], "you haue no stomacke": [0, 65535], "haue no stomacke you": [0, 65535], "no stomacke you haue": [0, 65535], "stomacke you haue no": [0, 65535], "haue no stomacke hauing": [0, 65535], "no stomacke hauing broke": [0, 65535], "stomacke hauing broke your": [0, 65535], "hauing broke your fast": [0, 65535], "broke your fast but": [0, 65535], "your fast but we": [0, 65535], "fast but we that": [0, 65535], "but we that know": [0, 65535], "we that know what": [0, 65535], "that know what 'tis": [0, 65535], "know what 'tis to": [0, 65535], "what 'tis to fast": [0, 65535], "'tis to fast and": [0, 65535], "to fast and pray": [0, 65535], "fast and pray are": [0, 65535], "and pray are penitent": [0, 65535], "pray are penitent for": [0, 65535], "are penitent for your": [0, 65535], "penitent for your default": [0, 65535], "for your default to": [0, 65535], "your default to day": [0, 65535], "default to day ant": [0, 65535], "to day ant stop": [0, 65535], "day ant stop in": [0, 65535], "ant stop in your": [0, 65535], "stop in your winde": [0, 65535], "in your winde sir": [0, 65535], "your winde sir tell": [0, 65535], "winde sir tell me": [0, 65535], "sir tell me this": [0, 65535], "tell me this i": [0, 65535], "me this i pray": [0, 65535], "this i pray where": [0, 65535], "i pray where haue": [0, 65535], "pray where haue you": [0, 65535], "where haue you left": [0, 65535], "haue you left the": [0, 65535], "you left the mony": [0, 65535], "left the mony that": [0, 65535], "the mony that i": [0, 65535], "mony that i gaue": [0, 65535], "that i gaue you": [0, 65535], "i gaue you e": [0, 65535], "gaue you e dro": [0, 65535], "you e dro oh": [0, 65535], "e dro oh sixe": [0, 65535], "dro oh sixe pence": [0, 65535], "oh sixe pence that": [0, 65535], "sixe pence that i": [0, 65535], "pence that i had": [0, 65535], "that i had a": [0, 65535], "i had a wensday": [0, 65535], "had a wensday last": [0, 65535], "a wensday last to": [0, 65535], "wensday last to pay": [0, 65535], "last to pay the": [0, 65535], "to pay the sadler": [0, 65535], "pay the sadler for": [0, 65535], "the sadler for my": [0, 65535], "sadler for my mistris": [0, 65535], "for my mistris crupper": [0, 65535], "my mistris crupper the": [0, 65535], "mistris crupper the sadler": [0, 65535], "crupper the sadler had": [0, 65535], "the sadler had it": [0, 65535], "sadler had it sir": [0, 65535], "had it sir i": [0, 65535], "it sir i kept": [0, 65535], "sir i kept it": [0, 65535], "i kept it not": [0, 65535], "kept it not ant": [0, 65535], "it not ant i": [0, 65535], "not ant i am": [0, 65535], "ant i am not": [0, 65535], "i am not in": [0, 65535], "am not in a": [0, 65535], "not in a sportiue": [0, 65535], "in a sportiue humor": [0, 65535], "a sportiue humor now": [0, 65535], "sportiue humor now tell": [0, 65535], "humor now tell me": [0, 65535], "now tell me and": [0, 65535], "tell me and dally": [0, 65535], "me and dally not": [0, 65535], "and dally not where": [0, 65535], "dally not where is": [0, 65535], "not where is the": [0, 65535], "where is the monie": [0, 65535], "is the monie we": [0, 65535], "the monie we being": [0, 65535], "monie we being strangers": [0, 65535], "we being strangers here": [0, 65535], "being strangers here how": [0, 65535], "strangers here how dar'st": [0, 65535], "here how dar'st thou": [0, 65535], "how dar'st thou trust": [0, 65535], "dar'st thou trust so": [0, 65535], "thou trust so great": [0, 65535], "trust so great a": [0, 65535], "so great a charge": [0, 65535], "great a charge from": [0, 65535], "a charge from thine": [0, 65535], "charge from thine owne": [0, 65535], "from thine owne custodie": [0, 65535], "thine owne custodie e": [0, 65535], "owne custodie e dro": [0, 65535], "custodie e dro i": [0, 65535], "e dro i pray": [0, 65535], "dro i pray you": [0, 65535], "i pray you iest": [0, 65535], "pray you iest sir": [0, 65535], "you iest sir as": [0, 65535], "iest sir as you": [0, 65535], "sir as you sit": [0, 65535], "as you sit at": [0, 65535], "you sit at dinner": [0, 65535], "sit at dinner i": [0, 65535], "at dinner i from": [0, 65535], "dinner i from my": [0, 65535], "i from my mistris": [0, 65535], "from my mistris come": [0, 65535], "my mistris come to": [0, 65535], "mistris come to you": [0, 65535], "come to you in": [0, 65535], "to you in post": [0, 65535], "you in post if": [0, 65535], "in post if i": [0, 65535], "post if i returne": [0, 65535], "if i returne i": [0, 65535], "i returne i shall": [0, 65535], "returne i shall be": [0, 65535], "i shall be post": [0, 65535], "shall be post indeede": [0, 65535], "be post indeede for": [0, 65535], "post indeede for she": [0, 65535], "indeede for she will": [0, 65535], "for she will scoure": [0, 65535], "she will scoure your": [0, 65535], "will scoure your fault": [0, 65535], "scoure your fault vpon": [0, 65535], "your fault vpon my": [0, 65535], "fault vpon my pate": [0, 65535], "vpon my pate me": [0, 65535], "my pate me thinkes": [0, 65535], "pate me thinkes your": [0, 65535], "me thinkes your maw": [0, 65535], "thinkes your maw like": [0, 65535], "your maw like mine": [0, 65535], "maw like mine should": [0, 65535], "like mine should be": [0, 65535], "mine should be your": [0, 65535], "should be your cooke": [0, 65535], "be your cooke and": [0, 65535], "your cooke and strike": [0, 65535], "cooke and strike you": [0, 65535], "and strike you home": [0, 65535], "strike you home without": [0, 65535], "you home without a": [0, 65535], "home without a messenger": [0, 65535], "without a messenger ant": [0, 65535], "a messenger ant come": [0, 65535], "messenger ant come dromio": [0, 65535], "ant come dromio come": [0, 65535], "come dromio come these": [0, 65535], "dromio come these iests": [0, 65535], "come these iests are": [0, 65535], "these iests are out": [0, 65535], "iests are out of": [0, 65535], "are out of season": [0, 65535], "out of season reserue": [0, 65535], "of season reserue them": [0, 65535], "season reserue them till": [0, 65535], "reserue them till a": [0, 65535], "them till a merrier": [0, 65535], "till a merrier houre": [0, 65535], "a merrier houre then": [0, 65535], "merrier houre then this": [0, 65535], "houre then this where": [0, 65535], "then this where is": [0, 65535], "this where is the": [0, 65535], "where is the gold": [0, 65535], "is the gold i": [0, 65535], "gold i gaue in": [0, 65535], "i gaue in charge": [0, 65535], "gaue in charge to": [0, 65535], "in charge to thee": [0, 65535], "charge to thee e": [0, 65535], "to thee e dro": [0, 65535], "thee e dro to": [0, 65535], "e dro to me": [0, 65535], "dro to me sir": [0, 65535], "to me sir why": [0, 65535], "me sir why you": [0, 65535], "sir why you gaue": [0, 65535], "why you gaue no": [0, 65535], "you gaue no gold": [0, 65535], "gaue no gold to": [0, 65535], "no gold to me": [0, 65535], "gold to me ant": [0, 65535], "to me ant come": [0, 65535], "me ant come on": [0, 65535], "ant come on sir": [0, 65535], "come on sir knaue": [0, 65535], "on sir knaue haue": [0, 65535], "sir knaue haue done": [0, 65535], "knaue haue done your": [0, 65535], "haue done your foolishnes": [0, 65535], "done your foolishnes and": [0, 65535], "your foolishnes and tell": [0, 65535], "foolishnes and tell me": [0, 65535], "and tell me how": [0, 65535], "tell me how thou": [0, 65535], "me how thou hast": [0, 65535], "how thou hast dispos'd": [0, 65535], "thou hast dispos'd thy": [0, 65535], "hast dispos'd thy charge": [0, 65535], "dispos'd thy charge e": [0, 65535], "thy charge e dro": [0, 65535], "charge e dro my": [0, 65535], "e dro my charge": [0, 65535], "dro my charge was": [0, 65535], "my charge was but": [0, 65535], "charge was but to": [0, 65535], "was but to fetch": [0, 65535], "but to fetch you": [0, 65535], "to fetch you from": [0, 65535], "fetch you from the": [0, 65535], "you from the mart": [0, 65535], "from the mart home": [0, 65535], "the mart home to": [0, 65535], "mart home to your": [0, 65535], "home to your house": [0, 65535], "to your house the": [0, 65535], "your house the ph\u0153nix": [0, 65535], "house the ph\u0153nix sir": [0, 65535], "the ph\u0153nix sir to": [0, 65535], "ph\u0153nix sir to dinner": [0, 65535], "sir to dinner my": [0, 65535], "to dinner my mistris": [0, 65535], "dinner my mistris and": [0, 65535], "my mistris and her": [0, 65535], "mistris and her sister": [0, 65535], "and her sister staies": [0, 65535], "her sister staies for": [0, 65535], "sister staies for you": [0, 65535], "staies for you ant": [0, 65535], "for you ant now": [0, 65535], "you ant now as": [0, 65535], "ant now as i": [0, 65535], "now as i am": [0, 65535], "as i am a": [0, 65535], "i am a christian": [0, 65535], "am a christian answer": [0, 65535], "a christian answer me": [0, 65535], "christian answer me in": [0, 65535], "answer me in what": [0, 65535], "me in what safe": [0, 65535], "in what safe place": [0, 65535], "what safe place you": [0, 65535], "safe place you haue": [0, 65535], "place you haue bestow'd": [0, 65535], "you haue bestow'd my": [0, 65535], "haue bestow'd my monie": [0, 65535], "bestow'd my monie or": [0, 65535], "my monie or i": [0, 65535], "monie or i shall": [0, 65535], "or i shall breake": [0, 65535], "i shall breake that": [0, 65535], "shall breake that merrie": [0, 65535], "breake that merrie sconce": [0, 65535], "that merrie sconce of": [0, 65535], "merrie sconce of yours": [0, 65535], "sconce of yours that": [0, 65535], "of yours that stands": [0, 65535], "yours that stands on": [0, 65535], "that stands on tricks": [0, 65535], "stands on tricks when": [0, 65535], "on tricks when i": [0, 65535], "tricks when i am": [0, 65535], "when i am vndispos'd": [0, 65535], "i am vndispos'd where": [0, 65535], "am vndispos'd where is": [0, 65535], "vndispos'd where is the": [0, 65535], "the thousand markes thou": [0, 65535], "thousand markes thou hadst": [0, 65535], "markes thou hadst of": [0, 65535], "thou hadst of me": [0, 65535], "hadst of me e": [0, 65535], "of me e dro": [0, 65535], "me e dro i": [0, 65535], "e dro i haue": [0, 65535], "dro i haue some": [0, 65535], "i haue some markes": [0, 65535], "haue some markes of": [0, 65535], "some markes of yours": [0, 65535], "markes of yours vpon": [0, 65535], "of yours vpon my": [0, 65535], "yours vpon my pate": [0, 65535], "vpon my pate some": [0, 65535], "my pate some of": [0, 65535], "pate some of my": [0, 65535], "some of my mistris": [0, 65535], "of my mistris markes": [0, 65535], "my mistris markes vpon": [0, 65535], "mistris markes vpon my": [0, 65535], "markes vpon my shoulders": [0, 65535], "vpon my shoulders but": [0, 65535], "my shoulders but not": [0, 65535], "shoulders but not a": [0, 65535], "but not a thousand": [0, 65535], "not a thousand markes": [0, 65535], "a thousand markes betweene": [0, 65535], "thousand markes betweene you": [0, 65535], "markes betweene you both": [0, 65535], "betweene you both if": [0, 65535], "you both if i": [0, 65535], "both if i should": [0, 65535], "if i should pay": [0, 65535], "i should pay your": [0, 65535], "should pay your worship": [0, 65535], "pay your worship those": [0, 65535], "your worship those againe": [0, 65535], "worship those againe perchance": [0, 65535], "those againe perchance you": [0, 65535], "againe perchance you will": [0, 65535], "perchance you will not": [0, 65535], "you will not beare": [0, 65535], "will not beare them": [0, 65535], "not beare them patiently": [0, 65535], "beare them patiently ant": [0, 65535], "them patiently ant thy": [0, 65535], "patiently ant thy mistris": [0, 65535], "ant thy mistris markes": [0, 65535], "thy mistris markes what": [0, 65535], "mistris markes what mistris": [0, 65535], "markes what mistris slaue": [0, 65535], "what mistris slaue hast": [0, 65535], "mistris slaue hast thou": [0, 65535], "slaue hast thou e": [0, 65535], "hast thou e dro": [0, 65535], "thou e dro your": [0, 65535], "e dro your worships": [0, 65535], "dro your worships wife": [0, 65535], "your worships wife my": [0, 65535], "worships wife my mistris": [0, 65535], "wife my mistris at": [0, 65535], "my mistris at the": [0, 65535], "mistris at the ph\u0153nix": [0, 65535], "at the ph\u0153nix she": [0, 65535], "the ph\u0153nix she that": [0, 65535], "ph\u0153nix she that doth": [0, 65535], "she that doth fast": [0, 65535], "that doth fast till": [0, 65535], "doth fast till you": [0, 65535], "fast till you come": [0, 65535], "till you come home": [0, 65535], "you come home to": [0, 65535], "home to dinner and": [0, 65535], "to dinner and praies": [0, 65535], "dinner and praies that": [0, 65535], "and praies that you": [0, 65535], "praies that you will": [0, 65535], "that you will hie": [0, 65535], "you will hie you": [0, 65535], "will hie you home": [0, 65535], "hie you home to": [0, 65535], "you home to dinner": [0, 65535], "to dinner ant what": [0, 65535], "dinner ant what wilt": [0, 65535], "ant what wilt thou": [0, 65535], "what wilt thou flout": [0, 65535], "wilt thou flout me": [0, 65535], "thou flout me thus": [0, 65535], "flout me thus vnto": [0, 65535], "me thus vnto my": [0, 65535], "thus vnto my face": [0, 65535], "vnto my face being": [0, 65535], "my face being forbid": [0, 65535], "face being forbid there": [0, 65535], "being forbid there take": [0, 65535], "forbid there take you": [0, 65535], "there take you that": [0, 65535], "take you that sir": [0, 65535], "you that sir knaue": [0, 65535], "that sir knaue e": [0, 65535], "sir knaue e dro": [0, 65535], "knaue e dro what": [0, 65535], "e dro what meane": [0, 65535], "dro what meane you": [0, 65535], "what meane you sir": [0, 65535], "meane you sir for": [0, 65535], "you sir for god": [0, 65535], "sir for god sake": [0, 65535], "for god sake hold": [0, 65535], "god sake hold your": [0, 65535], "sake hold your hands": [0, 65535], "hold your hands nay": [0, 65535], "your hands nay and": [0, 65535], "hands nay and you": [0, 65535], "nay and you will": [0, 65535], "and you will not": [0, 65535], "you will not sir": [0, 65535], "will not sir ile": [0, 65535], "not sir ile take": [0, 65535], "sir ile take my": [0, 65535], "ile take my heeles": [0, 65535], "take my heeles exeunt": [0, 65535], "my heeles exeunt dromio": [0, 65535], "heeles exeunt dromio ep": [0, 65535], "exeunt dromio ep ant": [0, 65535], "dromio ep ant vpon": [0, 65535], "ep ant vpon my": [0, 65535], "ant vpon my life": [0, 65535], "vpon my life by": [0, 65535], "my life by some": [0, 65535], "life by some deuise": [0, 65535], "by some deuise or": [0, 65535], "some deuise or other": [0, 65535], "deuise or other the": [0, 65535], "or other the villaine": [0, 65535], "other the villaine is": [0, 65535], "the villaine is ore": [0, 65535], "villaine is ore wrought": [0, 65535], "is ore wrought of": [0, 65535], "ore wrought of all": [0, 65535], "wrought of all my": [0, 65535], "of all my monie": [0, 65535], "all my monie they": [0, 65535], "my monie they say": [0, 65535], "monie they say this": [0, 65535], "they say this towne": [0, 65535], "say this towne is": [0, 65535], "this towne is full": [0, 65535], "towne is full of": [0, 65535], "is full of cosenage": [0, 65535], "full of cosenage as": [0, 65535], "of cosenage as nimble": [0, 65535], "cosenage as nimble iuglers": [0, 65535], "as nimble iuglers that": [0, 65535], "nimble iuglers that deceiue": [0, 65535], "iuglers that deceiue the": [0, 65535], "that deceiue the eie": [0, 65535], "deceiue the eie darke": [0, 65535], "the eie darke working": [0, 65535], "eie darke working sorcerers": [0, 65535], "darke working sorcerers that": [0, 65535], "working sorcerers that change": [0, 65535], "sorcerers that change the": [0, 65535], "that change the minde": [0, 65535], "change the minde soule": [0, 65535], "the minde soule killing": [0, 65535], "minde soule killing witches": [0, 65535], "soule killing witches that": [0, 65535], "killing witches that deforme": [0, 65535], "witches that deforme the": [0, 65535], "that deforme the bodie": [0, 65535], "deforme the bodie disguised": [0, 65535], "the bodie disguised cheaters": [0, 65535], "bodie disguised cheaters prating": [0, 65535], "disguised cheaters prating mountebankes": [0, 65535], "cheaters prating mountebankes and": [0, 65535], "prating mountebankes and manie": [0, 65535], "mountebankes and manie such": [0, 65535], "and manie such like": [0, 65535], "manie such like liberties": [0, 65535], "such like liberties of": [0, 65535], "like liberties of sinne": [0, 65535], "liberties of sinne if": [0, 65535], "of sinne if it": [0, 65535], "sinne if it proue": [0, 65535], "if it proue so": [0, 65535], "it proue so i": [0, 65535], "proue so i will": [0, 65535], "so i will be": [0, 65535], "i will be gone": [0, 65535], "will be gone the": [0, 65535], "be gone the sooner": [0, 65535], "gone the sooner ile": [0, 65535], "the sooner ile to": [0, 65535], "sooner ile to the": [0, 65535], "ile to the centaur": [0, 65535], "to the centaur to": [0, 65535], "the centaur to goe": [0, 65535], "centaur to goe seeke": [0, 65535], "to goe seeke this": [0, 65535], "goe seeke this slaue": [0, 65535], "seeke this slaue i": [0, 65535], "this slaue i greatly": [0, 65535], "slaue i greatly feare": [0, 65535], "i greatly feare my": [0, 65535], "greatly feare my monie": [0, 65535], "feare my monie is": [0, 65535], "my monie is not": [0, 65535], "monie is not safe": [0, 65535], "the comedie of errors actus": [0, 65535], "comedie of errors actus primus": [0, 65535], "of errors actus primus scena": [0, 65535], "errors actus primus scena prima": [0, 65535], "actus primus scena prima enter": [0, 65535], "primus scena prima enter the": [0, 65535], "scena prima enter the duke": [0, 65535], "prima enter the duke of": [0, 65535], "the duke of ephesus with": [0, 65535], "duke of ephesus with the": [0, 65535], "of ephesus with the merchant": [0, 65535], "ephesus with the merchant of": [0, 65535], "with the merchant of siracusa": [0, 65535], "the merchant of siracusa iaylor": [0, 65535], "merchant of siracusa iaylor and": [0, 65535], "of siracusa iaylor and other": [0, 65535], "siracusa iaylor and other attendants": [0, 65535], "iaylor and other attendants marchant": [0, 65535], "and other attendants marchant broceed": [0, 65535], "other attendants marchant broceed solinus": [0, 65535], "attendants marchant broceed solinus to": [0, 65535], "marchant broceed solinus to procure": [0, 65535], "broceed solinus to procure my": [0, 65535], "solinus to procure my fall": [0, 65535], "to procure my fall and": [0, 65535], "procure my fall and by": [0, 65535], "my fall and by the": [0, 65535], "fall and by the doome": [0, 65535], "and by the doome of": [0, 65535], "by the doome of death": [0, 65535], "the doome of death end": [0, 65535], "doome of death end woes": [0, 65535], "of death end woes and": [0, 65535], "death end woes and all": [0, 65535], "end woes and all duke": [0, 65535], "woes and all duke merchant": [0, 65535], "and all duke merchant of": [0, 65535], "all duke merchant of siracusa": [0, 65535], "duke merchant of siracusa plead": [0, 65535], "merchant of siracusa plead no": [0, 65535], "of siracusa plead no more": [0, 65535], "siracusa plead no more i": [0, 65535], "plead no more i am": [0, 65535], "no more i am not": [0, 65535], "more i am not partiall": [0, 65535], "i am not partiall to": [0, 65535], "am not partiall to infringe": [0, 65535], "not partiall to infringe our": [0, 65535], "partiall to infringe our lawes": [0, 65535], "to infringe our lawes the": [0, 65535], "infringe our lawes the enmity": [0, 65535], "our lawes the enmity and": [0, 65535], "lawes the enmity and discord": [0, 65535], "the enmity and discord which": [0, 65535], "enmity and discord which of": [0, 65535], "and discord which of late": [0, 65535], "discord which of late sprung": [0, 65535], "which of late sprung from": [0, 65535], "of late sprung from the": [0, 65535], "late sprung from the rancorous": [0, 65535], "sprung from the rancorous outrage": [0, 65535], "from the rancorous outrage of": [0, 65535], "the rancorous outrage of your": [0, 65535], "rancorous outrage of your duke": [0, 65535], "outrage of your duke to": [0, 65535], "of your duke to merchants": [0, 65535], "your duke to merchants our": [0, 65535], "duke to merchants our well": [0, 65535], "to merchants our well dealing": [0, 65535], "merchants our well dealing countrimen": [0, 65535], "our well dealing countrimen who": [0, 65535], "well dealing countrimen who wanting": [0, 65535], "dealing countrimen who wanting gilders": [0, 65535], "countrimen who wanting gilders to": [0, 65535], "who wanting gilders to redeeme": [0, 65535], "wanting gilders to redeeme their": [0, 65535], "gilders to redeeme their liues": [0, 65535], "to redeeme their liues haue": [0, 65535], "redeeme their liues haue seal'd": [0, 65535], "their liues haue seal'd his": [0, 65535], "liues haue seal'd his rigorous": [0, 65535], "haue seal'd his rigorous statutes": [0, 65535], "seal'd his rigorous statutes with": [0, 65535], "his rigorous statutes with their": [0, 65535], "rigorous statutes with their blouds": [0, 65535], "statutes with their blouds excludes": [0, 65535], "with their blouds excludes all": [0, 65535], "their blouds excludes all pitty": [0, 65535], "blouds excludes all pitty from": [0, 65535], "excludes all pitty from our": [0, 65535], "all pitty from our threatning": [0, 65535], "pitty from our threatning lookes": [0, 65535], "from our threatning lookes for": [0, 65535], "our threatning lookes for since": [0, 65535], "threatning lookes for since the": [0, 65535], "lookes for since the mortall": [0, 65535], "for since the mortall and": [0, 65535], "since the mortall and intestine": [0, 65535], "the mortall and intestine iarres": [0, 65535], "mortall and intestine iarres twixt": [0, 65535], "and intestine iarres twixt thy": [0, 65535], "intestine iarres twixt thy seditious": [0, 65535], "iarres twixt thy seditious countrimen": [0, 65535], "twixt thy seditious countrimen and": [0, 65535], "thy seditious countrimen and vs": [0, 65535], "seditious countrimen and vs it": [0, 65535], "countrimen and vs it hath": [0, 65535], "and vs it hath in": [0, 65535], "vs it hath in solemne": [0, 65535], "it hath in solemne synodes": [0, 65535], "hath in solemne synodes beene": [0, 65535], "in solemne synodes beene decreed": [0, 65535], "solemne synodes beene decreed both": [0, 65535], "synodes beene decreed both by": [0, 65535], "beene decreed both by the": [0, 65535], "decreed both by the siracusians": [0, 65535], "both by the siracusians and": [0, 65535], "by the siracusians and our": [0, 65535], "the siracusians and our selues": [0, 65535], "siracusians and our selues to": [0, 65535], "and our selues to admit": [0, 65535], "our selues to admit no": [0, 65535], "selues to admit no trafficke": [0, 65535], "to admit no trafficke to": [0, 65535], "admit no trafficke to our": [0, 65535], "no trafficke to our aduerse": [0, 65535], "trafficke to our aduerse townes": [0, 65535], "to our aduerse townes nay": [0, 65535], "our aduerse townes nay more": [0, 65535], "aduerse townes nay more if": [0, 65535], "townes nay more if any": [0, 65535], "nay more if any borne": [0, 65535], "more if any borne at": [0, 65535], "if any borne at ephesus": [0, 65535], "any borne at ephesus be": [0, 65535], "borne at ephesus be seene": [0, 65535], "at ephesus be seene at": [0, 65535], "ephesus be seene at any": [0, 65535], "be seene at any siracusian": [0, 65535], "seene at any siracusian marts": [0, 65535], "at any siracusian marts and": [0, 65535], "any siracusian marts and fayres": [0, 65535], "siracusian marts and fayres againe": [0, 65535], "marts and fayres againe if": [0, 65535], "and fayres againe if any": [0, 65535], "fayres againe if any siracusian": [0, 65535], "againe if any siracusian borne": [0, 65535], "if any siracusian borne come": [0, 65535], "any siracusian borne come to": [0, 65535], "siracusian borne come to the": [0, 65535], "borne come to the bay": [0, 65535], "come to the bay of": [0, 65535], "to the bay of ephesus": [0, 65535], "the bay of ephesus he": [0, 65535], "bay of ephesus he dies": [0, 65535], "of ephesus he dies his": [0, 65535], "ephesus he dies his goods": [0, 65535], "he dies his goods confiscate": [0, 65535], "dies his goods confiscate to": [0, 65535], "his goods confiscate to the": [0, 65535], "goods confiscate to the dukes": [0, 65535], "confiscate to the dukes dispose": [0, 65535], "to the dukes dispose vnlesse": [0, 65535], "the dukes dispose vnlesse a": [0, 65535], "dukes dispose vnlesse a thousand": [0, 65535], "dispose vnlesse a thousand markes": [0, 65535], "vnlesse a thousand markes be": [0, 65535], "a thousand markes be leuied": [0, 65535], "thousand markes be leuied to": [0, 65535], "markes be leuied to quit": [0, 65535], "be leuied to quit the": [0, 65535], "leuied to quit the penalty": [0, 65535], "to quit the penalty and": [0, 65535], "quit the penalty and to": [0, 65535], "the penalty and to ransome": [0, 65535], "penalty and to ransome him": [0, 65535], "and to ransome him thy": [0, 65535], "to ransome him thy substance": [0, 65535], "ransome him thy substance valued": [0, 65535], "him thy substance valued at": [0, 65535], "thy substance valued at the": [0, 65535], "substance valued at the highest": [0, 65535], "valued at the highest rate": [0, 65535], "at the highest rate cannot": [0, 65535], "the highest rate cannot amount": [0, 65535], "highest rate cannot amount vnto": [0, 65535], "rate cannot amount vnto a": [0, 65535], "cannot amount vnto a hundred": [0, 65535], "amount vnto a hundred markes": [0, 65535], "vnto a hundred markes therefore": [0, 65535], "a hundred markes therefore by": [0, 65535], "hundred markes therefore by law": [0, 65535], "markes therefore by law thou": [0, 65535], "therefore by law thou art": [0, 65535], "by law thou art condemn'd": [0, 65535], "law thou art condemn'd to": [0, 65535], "thou art condemn'd to die": [0, 65535], "art condemn'd to die mer": [0, 65535], "condemn'd to die mer yet": [0, 65535], "to die mer yet this": [0, 65535], "die mer yet this my": [0, 65535], "mer yet this my comfort": [0, 65535], "yet this my comfort when": [0, 65535], "this my comfort when your": [0, 65535], "my comfort when your words": [0, 65535], "comfort when your words are": [0, 65535], "when your words are done": [0, 65535], "your words are done my": [0, 65535], "words are done my woes": [0, 65535], "are done my woes end": [0, 65535], "done my woes end likewise": [0, 65535], "my woes end likewise with": [0, 65535], "woes end likewise with the": [0, 65535], "end likewise with the euening": [0, 65535], "likewise with the euening sonne": [0, 65535], "with the euening sonne duk": [0, 65535], "the euening sonne duk well": [0, 65535], "euening sonne duk well siracusian": [0, 65535], "sonne duk well siracusian say": [0, 65535], "duk well siracusian say in": [0, 65535], "well siracusian say in briefe": [0, 65535], "siracusian say in briefe the": [0, 65535], "say in briefe the cause": [0, 65535], "in briefe the cause why": [0, 65535], "briefe the cause why thou": [0, 65535], "the cause why thou departedst": [0, 65535], "cause why thou departedst from": [0, 65535], "why thou departedst from thy": [0, 65535], "thou departedst from thy natiue": [0, 65535], "departedst from thy natiue home": [0, 65535], "from thy natiue home and": [0, 65535], "thy natiue home and for": [0, 65535], "natiue home and for what": [0, 65535], "home and for what cause": [0, 65535], "and for what cause thou": [0, 65535], "for what cause thou cam'st": [0, 65535], "what cause thou cam'st to": [0, 65535], "cause thou cam'st to ephesus": [0, 65535], "thou cam'st to ephesus mer": [0, 65535], "cam'st to ephesus mer a": [0, 65535], "to ephesus mer a heauier": [0, 65535], "ephesus mer a heauier taske": [0, 65535], "mer a heauier taske could": [0, 65535], "a heauier taske could not": [0, 65535], "heauier taske could not haue": [0, 65535], "taske could not haue beene": [0, 65535], "could not haue beene impos'd": [0, 65535], "not haue beene impos'd then": [0, 65535], "haue beene impos'd then i": [0, 65535], "beene impos'd then i to": [0, 65535], "impos'd then i to speake": [0, 65535], "then i to speake my": [0, 65535], "i to speake my griefes": [0, 65535], "to speake my griefes vnspeakeable": [0, 65535], "speake my griefes vnspeakeable yet": [0, 65535], "my griefes vnspeakeable yet that": [0, 65535], "griefes vnspeakeable yet that the": [0, 65535], "vnspeakeable yet that the world": [0, 65535], "yet that the world may": [0, 65535], "that the world may witnesse": [0, 65535], "the world may witnesse that": [0, 65535], "world may witnesse that my": [0, 65535], "may witnesse that my end": [0, 65535], "witnesse that my end was": [0, 65535], "that my end was wrought": [0, 65535], "my end was wrought by": [0, 65535], "end was wrought by nature": [0, 65535], "was wrought by nature not": [0, 65535], "wrought by nature not by": [0, 65535], "by nature not by vile": [0, 65535], "nature not by vile offence": [0, 65535], "not by vile offence ile": [0, 65535], "by vile offence ile vtter": [0, 65535], "vile offence ile vtter what": [0, 65535], "offence ile vtter what my": [0, 65535], "ile vtter what my sorrow": [0, 65535], "vtter what my sorrow giues": [0, 65535], "what my sorrow giues me": [0, 65535], "my sorrow giues me leaue": [0, 65535], "sorrow giues me leaue in": [0, 65535], "giues me leaue in syracusa": [0, 65535], "me leaue in syracusa was": [0, 65535], "leaue in syracusa was i": [0, 65535], "in syracusa was i borne": [0, 65535], "syracusa was i borne and": [0, 65535], "was i borne and wedde": [0, 65535], "i borne and wedde vnto": [0, 65535], "borne and wedde vnto a": [0, 65535], "and wedde vnto a woman": [0, 65535], "wedde vnto a woman happy": [0, 65535], "vnto a woman happy but": [0, 65535], "a woman happy but for": [0, 65535], "woman happy but for me": [0, 65535], "happy but for me and": [0, 65535], "but for me and by": [0, 65535], "for me and by me": [0, 65535], "me and by me had": [0, 65535], "and by me had not": [0, 65535], "by me had not our": [0, 65535], "me had not our hap": [0, 65535], "had not our hap beene": [0, 65535], "not our hap beene bad": [0, 65535], "our hap beene bad with": [0, 65535], "hap beene bad with her": [0, 65535], "beene bad with her i": [0, 65535], "bad with her i liu'd": [0, 65535], "with her i liu'd in": [0, 65535], "her i liu'd in ioy": [0, 65535], "i liu'd in ioy our": [0, 65535], "liu'd in ioy our wealth": [0, 65535], "in ioy our wealth increast": [0, 65535], "ioy our wealth increast by": [0, 65535], "our wealth increast by prosperous": [0, 65535], "wealth increast by prosperous voyages": [0, 65535], "increast by prosperous voyages i": [0, 65535], "by prosperous voyages i often": [0, 65535], "prosperous voyages i often made": [0, 65535], "voyages i often made to": [0, 65535], "i often made to epidamium": [0, 65535], "often made to epidamium till": [0, 65535], "made to epidamium till my": [0, 65535], "to epidamium till my factors": [0, 65535], "epidamium till my factors death": [0, 65535], "till my factors death and": [0, 65535], "my factors death and he": [0, 65535], "factors death and he great": [0, 65535], "death and he great care": [0, 65535], "and he great care of": [0, 65535], "he great care of goods": [0, 65535], "great care of goods at": [0, 65535], "care of goods at randone": [0, 65535], "of goods at randone left": [0, 65535], "goods at randone left drew": [0, 65535], "at randone left drew me": [0, 65535], "randone left drew me from": [0, 65535], "left drew me from kinde": [0, 65535], "drew me from kinde embracements": [0, 65535], "me from kinde embracements of": [0, 65535], "from kinde embracements of my": [0, 65535], "kinde embracements of my spouse": [0, 65535], "embracements of my spouse from": [0, 65535], "of my spouse from whom": [0, 65535], "my spouse from whom my": [0, 65535], "spouse from whom my absence": [0, 65535], "from whom my absence was": [0, 65535], "whom my absence was not": [0, 65535], "my absence was not sixe": [0, 65535], "absence was not sixe moneths": [0, 65535], "was not sixe moneths olde": [0, 65535], "not sixe moneths olde before": [0, 65535], "sixe moneths olde before her": [0, 65535], "moneths olde before her selfe": [0, 65535], "olde before her selfe almost": [0, 65535], "before her selfe almost at": [0, 65535], "her selfe almost at fainting": [0, 65535], "selfe almost at fainting vnder": [0, 65535], "almost at fainting vnder the": [0, 65535], "at fainting vnder the pleasing": [0, 65535], "fainting vnder the pleasing punishment": [0, 65535], "vnder the pleasing punishment that": [0, 65535], "the pleasing punishment that women": [0, 65535], "pleasing punishment that women beare": [0, 65535], "punishment that women beare had": [0, 65535], "that women beare had made": [0, 65535], "women beare had made prouision": [0, 65535], "beare had made prouision for": [0, 65535], "had made prouision for her": [0, 65535], "made prouision for her following": [0, 65535], "prouision for her following me": [0, 65535], "for her following me and": [0, 65535], "her following me and soone": [0, 65535], "following me and soone and": [0, 65535], "me and soone and safe": [0, 65535], "and soone and safe arriued": [0, 65535], "soone and safe arriued where": [0, 65535], "and safe arriued where i": [0, 65535], "safe arriued where i was": [0, 65535], "arriued where i was there": [0, 65535], "where i was there had": [0, 65535], "i was there had she": [0, 65535], "was there had she not": [0, 65535], "there had she not beene": [0, 65535], "had she not beene long": [0, 65535], "she not beene long but": [0, 65535], "not beene long but she": [0, 65535], "beene long but she became": [0, 65535], "long but she became a": [0, 65535], "but she became a ioyfull": [0, 65535], "she became a ioyfull mother": [0, 65535], "became a ioyfull mother of": [0, 65535], "a ioyfull mother of two": [0, 65535], "ioyfull mother of two goodly": [0, 65535], "mother of two goodly sonnes": [0, 65535], "of two goodly sonnes and": [0, 65535], "two goodly sonnes and which": [0, 65535], "goodly sonnes and which was": [0, 65535], "sonnes and which was strange": [0, 65535], "and which was strange the": [0, 65535], "which was strange the one": [0, 65535], "was strange the one so": [0, 65535], "strange the one so like": [0, 65535], "the one so like the": [0, 65535], "one so like the other": [0, 65535], "so like the other as": [0, 65535], "like the other as could": [0, 65535], "the other as could not": [0, 65535], "other as could not be": [0, 65535], "as could not be distinguish'd": [0, 65535], "could not be distinguish'd but": [0, 65535], "not be distinguish'd but by": [0, 65535], "be distinguish'd but by names": [0, 65535], "distinguish'd but by names that": [0, 65535], "but by names that very": [0, 65535], "by names that very howre": [0, 65535], "names that very howre and": [0, 65535], "that very howre and in": [0, 65535], "very howre and in the": [0, 65535], "howre and in the selfe": [0, 65535], "and in the selfe same": [0, 65535], "in the selfe same inne": [0, 65535], "the selfe same inne a": [0, 65535], "selfe same inne a meane": [0, 65535], "same inne a meane woman": [0, 65535], "inne a meane woman was": [0, 65535], "a meane woman was deliuered": [0, 65535], "meane woman was deliuered of": [0, 65535], "woman was deliuered of such": [0, 65535], "was deliuered of such a": [0, 65535], "deliuered of such a burthen": [0, 65535], "of such a burthen male": [0, 65535], "such a burthen male twins": [0, 65535], "a burthen male twins both": [0, 65535], "burthen male twins both alike": [0, 65535], "male twins both alike those": [0, 65535], "twins both alike those for": [0, 65535], "both alike those for their": [0, 65535], "alike those for their parents": [0, 65535], "those for their parents were": [0, 65535], "for their parents were exceeding": [0, 65535], "their parents were exceeding poore": [0, 65535], "parents were exceeding poore i": [0, 65535], "were exceeding poore i bought": [0, 65535], "exceeding poore i bought and": [0, 65535], "poore i bought and brought": [0, 65535], "i bought and brought vp": [0, 65535], "bought and brought vp to": [0, 65535], "and brought vp to attend": [0, 65535], "brought vp to attend my": [0, 65535], "vp to attend my sonnes": [0, 65535], "to attend my sonnes my": [0, 65535], "attend my sonnes my wife": [0, 65535], "my sonnes my wife not": [0, 65535], "sonnes my wife not meanely": [0, 65535], "my wife not meanely prowd": [0, 65535], "wife not meanely prowd of": [0, 65535], "not meanely prowd of two": [0, 65535], "meanely prowd of two such": [0, 65535], "prowd of two such boyes": [0, 65535], "of two such boyes made": [0, 65535], "two such boyes made daily": [0, 65535], "such boyes made daily motions": [0, 65535], "boyes made daily motions for": [0, 65535], "made daily motions for our": [0, 65535], "daily motions for our home": [0, 65535], "motions for our home returne": [0, 65535], "for our home returne vnwilling": [0, 65535], "our home returne vnwilling i": [0, 65535], "home returne vnwilling i agreed": [0, 65535], "returne vnwilling i agreed alas": [0, 65535], "vnwilling i agreed alas too": [0, 65535], "i agreed alas too soone": [0, 65535], "agreed alas too soone wee": [0, 65535], "alas too soone wee came": [0, 65535], "too soone wee came aboord": [0, 65535], "soone wee came aboord a": [0, 65535], "wee came aboord a league": [0, 65535], "came aboord a league from": [0, 65535], "aboord a league from epidamium": [0, 65535], "a league from epidamium had": [0, 65535], "league from epidamium had we": [0, 65535], "from epidamium had we saild": [0, 65535], "epidamium had we saild before": [0, 65535], "had we saild before the": [0, 65535], "we saild before the alwaies": [0, 65535], "saild before the alwaies winde": [0, 65535], "before the alwaies winde obeying": [0, 65535], "the alwaies winde obeying deepe": [0, 65535], "alwaies winde obeying deepe gaue": [0, 65535], "winde obeying deepe gaue any": [0, 65535], "obeying deepe gaue any tragicke": [0, 65535], "deepe gaue any tragicke instance": [0, 65535], "gaue any tragicke instance of": [0, 65535], "any tragicke instance of our": [0, 65535], "tragicke instance of our harme": [0, 65535], "instance of our harme but": [0, 65535], "of our harme but longer": [0, 65535], "our harme but longer did": [0, 65535], "harme but longer did we": [0, 65535], "but longer did we not": [0, 65535], "longer did we not retaine": [0, 65535], "did we not retaine much": [0, 65535], "we not retaine much hope": [0, 65535], "not retaine much hope for": [0, 65535], "retaine much hope for what": [0, 65535], "much hope for what obscured": [0, 65535], "hope for what obscured light": [0, 65535], "for what obscured light the": [0, 65535], "what obscured light the heauens": [0, 65535], "obscured light the heauens did": [0, 65535], "light the heauens did grant": [0, 65535], "the heauens did grant did": [0, 65535], "heauens did grant did but": [0, 65535], "did grant did but conuay": [0, 65535], "grant did but conuay vnto": [0, 65535], "did but conuay vnto our": [0, 65535], "but conuay vnto our fearefull": [0, 65535], "conuay vnto our fearefull mindes": [0, 65535], "vnto our fearefull mindes a": [0, 65535], "our fearefull mindes a doubtfull": [0, 65535], "fearefull mindes a doubtfull warrant": [0, 65535], "mindes a doubtfull warrant of": [0, 65535], "a doubtfull warrant of immediate": [0, 65535], "doubtfull warrant of immediate death": [0, 65535], "warrant of immediate death which": [0, 65535], "of immediate death which though": [0, 65535], "immediate death which though my": [0, 65535], "death which though my selfe": [0, 65535], "which though my selfe would": [0, 65535], "though my selfe would gladly": [0, 65535], "my selfe would gladly haue": [0, 65535], "selfe would gladly haue imbrac'd": [0, 65535], "would gladly haue imbrac'd yet": [0, 65535], "gladly haue imbrac'd yet the": [0, 65535], "haue imbrac'd yet the incessant": [0, 65535], "imbrac'd yet the incessant weepings": [0, 65535], "yet the incessant weepings of": [0, 65535], "the incessant weepings of my": [0, 65535], "incessant weepings of my wife": [0, 65535], "weepings of my wife weeping": [0, 65535], "of my wife weeping before": [0, 65535], "my wife weeping before for": [0, 65535], "wife weeping before for what": [0, 65535], "weeping before for what she": [0, 65535], "before for what she saw": [0, 65535], "for what she saw must": [0, 65535], "what she saw must come": [0, 65535], "she saw must come and": [0, 65535], "saw must come and pitteous": [0, 65535], "must come and pitteous playnings": [0, 65535], "come and pitteous playnings of": [0, 65535], "and pitteous playnings of the": [0, 65535], "pitteous playnings of the prettie": [0, 65535], "playnings of the prettie babes": [0, 65535], "of the prettie babes that": [0, 65535], "the prettie babes that mourn'd": [0, 65535], "prettie babes that mourn'd for": [0, 65535], "babes that mourn'd for fashion": [0, 65535], "that mourn'd for fashion ignorant": [0, 65535], "mourn'd for fashion ignorant what": [0, 65535], "for fashion ignorant what to": [0, 65535], "fashion ignorant what to feare": [0, 65535], "ignorant what to feare forst": [0, 65535], "what to feare forst me": [0, 65535], "to feare forst me to": [0, 65535], "feare forst me to seeke": [0, 65535], "forst me to seeke delayes": [0, 65535], "me to seeke delayes for": [0, 65535], "to seeke delayes for them": [0, 65535], "seeke delayes for them and": [0, 65535], "delayes for them and me": [0, 65535], "for them and me and": [0, 65535], "them and me and this": [0, 65535], "and me and this it": [0, 65535], "me and this it was": [0, 65535], "and this it was for": [0, 65535], "this it was for other": [0, 65535], "it was for other meanes": [0, 65535], "was for other meanes was": [0, 65535], "for other meanes was none": [0, 65535], "other meanes was none the": [0, 65535], "meanes was none the sailors": [0, 65535], "was none the sailors sought": [0, 65535], "none the sailors sought for": [0, 65535], "the sailors sought for safety": [0, 65535], "sailors sought for safety by": [0, 65535], "sought for safety by our": [0, 65535], "for safety by our boate": [0, 65535], "safety by our boate and": [0, 65535], "by our boate and left": [0, 65535], "our boate and left the": [0, 65535], "boate and left the ship": [0, 65535], "and left the ship then": [0, 65535], "left the ship then sinking": [0, 65535], "the ship then sinking ripe": [0, 65535], "ship then sinking ripe to": [0, 65535], "then sinking ripe to vs": [0, 65535], "sinking ripe to vs my": [0, 65535], "ripe to vs my wife": [0, 65535], "to vs my wife more": [0, 65535], "vs my wife more carefull": [0, 65535], "my wife more carefull for": [0, 65535], "wife more carefull for the": [0, 65535], "more carefull for the latter": [0, 65535], "carefull for the latter borne": [0, 65535], "for the latter borne had": [0, 65535], "the latter borne had fastned": [0, 65535], "latter borne had fastned him": [0, 65535], "borne had fastned him vnto": [0, 65535], "had fastned him vnto a": [0, 65535], "fastned him vnto a small": [0, 65535], "him vnto a small spare": [0, 65535], "vnto a small spare mast": [0, 65535], "a small spare mast such": [0, 65535], "small spare mast such as": [0, 65535], "spare mast such as sea": [0, 65535], "mast such as sea faring": [0, 65535], "such as sea faring men": [0, 65535], "as sea faring men prouide": [0, 65535], "sea faring men prouide for": [0, 65535], "faring men prouide for stormes": [0, 65535], "men prouide for stormes to": [0, 65535], "prouide for stormes to him": [0, 65535], "for stormes to him one": [0, 65535], "stormes to him one of": [0, 65535], "to him one of the": [0, 65535], "him one of the other": [0, 65535], "one of the other twins": [0, 65535], "of the other twins was": [0, 65535], "the other twins was bound": [0, 65535], "other twins was bound whil'st": [0, 65535], "twins was bound whil'st i": [0, 65535], "was bound whil'st i had": [0, 65535], "bound whil'st i had beene": [0, 65535], "whil'st i had beene like": [0, 65535], "i had beene like heedfull": [0, 65535], "had beene like heedfull of": [0, 65535], "beene like heedfull of the": [0, 65535], "like heedfull of the other": [0, 65535], "heedfull of the other the": [0, 65535], "of the other the children": [0, 65535], "the other the children thus": [0, 65535], "other the children thus dispos'd": [0, 65535], "the children thus dispos'd my": [0, 65535], "children thus dispos'd my wife": [0, 65535], "thus dispos'd my wife and": [0, 65535], "dispos'd my wife and i": [0, 65535], "my wife and i fixing": [0, 65535], "wife and i fixing our": [0, 65535], "and i fixing our eyes": [0, 65535], "i fixing our eyes on": [0, 65535], "fixing our eyes on whom": [0, 65535], "our eyes on whom our": [0, 65535], "eyes on whom our care": [0, 65535], "on whom our care was": [0, 65535], "whom our care was fixt": [0, 65535], "our care was fixt fastned": [0, 65535], "care was fixt fastned our": [0, 65535], "was fixt fastned our selues": [0, 65535], "fixt fastned our selues at": [0, 65535], "fastned our selues at eyther": [0, 65535], "our selues at eyther end": [0, 65535], "selues at eyther end the": [0, 65535], "at eyther end the mast": [0, 65535], "eyther end the mast and": [0, 65535], "end the mast and floating": [0, 65535], "the mast and floating straight": [0, 65535], "mast and floating straight obedient": [0, 65535], "and floating straight obedient to": [0, 65535], "floating straight obedient to the": [0, 65535], "straight obedient to the streame": [0, 65535], "obedient to the streame was": [0, 65535], "to the streame was carried": [0, 65535], "the streame was carried towards": [0, 65535], "streame was carried towards corinth": [0, 65535], "was carried towards corinth as": [0, 65535], "carried towards corinth as we": [0, 65535], "towards corinth as we thought": [0, 65535], "corinth as we thought at": [0, 65535], "as we thought at length": [0, 65535], "we thought at length the": [0, 65535], "thought at length the sonne": [0, 65535], "at length the sonne gazing": [0, 65535], "length the sonne gazing vpon": [0, 65535], "the sonne gazing vpon the": [0, 65535], "sonne gazing vpon the earth": [0, 65535], "gazing vpon the earth disperst": [0, 65535], "vpon the earth disperst those": [0, 65535], "the earth disperst those vapours": [0, 65535], "earth disperst those vapours that": [0, 65535], "disperst those vapours that offended": [0, 65535], "those vapours that offended vs": [0, 65535], "vapours that offended vs and": [0, 65535], "that offended vs and by": [0, 65535], "offended vs and by the": [0, 65535], "vs and by the benefit": [0, 65535], "and by the benefit of": [0, 65535], "by the benefit of his": [0, 65535], "the benefit of his wished": [0, 65535], "benefit of his wished light": [0, 65535], "of his wished light the": [0, 65535], "his wished light the seas": [0, 65535], "wished light the seas waxt": [0, 65535], "light the seas waxt calme": [0, 65535], "the seas waxt calme and": [0, 65535], "seas waxt calme and we": [0, 65535], "waxt calme and we discouered": [0, 65535], "calme and we discouered two": [0, 65535], "and we discouered two shippes": [0, 65535], "we discouered two shippes from": [0, 65535], "discouered two shippes from farre": [0, 65535], "two shippes from farre making": [0, 65535], "shippes from farre making amaine": [0, 65535], "from farre making amaine to": [0, 65535], "farre making amaine to vs": [0, 65535], "making amaine to vs of": [0, 65535], "amaine to vs of corinth": [0, 65535], "to vs of corinth that": [0, 65535], "vs of corinth that of": [0, 65535], "of corinth that of epidarus": [0, 65535], "corinth that of epidarus this": [0, 65535], "that of epidarus this but": [0, 65535], "of epidarus this but ere": [0, 65535], "epidarus this but ere they": [0, 65535], "this but ere they came": [0, 65535], "but ere they came oh": [0, 65535], "ere they came oh let": [0, 65535], "they came oh let me": [0, 65535], "came oh let me say": [0, 65535], "oh let me say no": [0, 65535], "let me say no more": [0, 65535], "me say no more gather": [0, 65535], "say no more gather the": [0, 65535], "no more gather the sequell": [0, 65535], "more gather the sequell by": [0, 65535], "gather the sequell by that": [0, 65535], "the sequell by that went": [0, 65535], "sequell by that went before": [0, 65535], "by that went before duk": [0, 65535], "that went before duk nay": [0, 65535], "went before duk nay forward": [0, 65535], "before duk nay forward old": [0, 65535], "duk nay forward old man": [0, 65535], "nay forward old man doe": [0, 65535], "forward old man doe not": [0, 65535], "old man doe not breake": [0, 65535], "man doe not breake off": [0, 65535], "doe not breake off so": [0, 65535], "not breake off so for": [0, 65535], "breake off so for we": [0, 65535], "off so for we may": [0, 65535], "so for we may pitty": [0, 65535], "for we may pitty though": [0, 65535], "we may pitty though not": [0, 65535], "may pitty though not pardon": [0, 65535], "pitty though not pardon thee": [0, 65535], "though not pardon thee merch": [0, 65535], "not pardon thee merch oh": [0, 65535], "pardon thee merch oh had": [0, 65535], "thee merch oh had the": [0, 65535], "merch oh had the gods": [0, 65535], "oh had the gods done": [0, 65535], "had the gods done so": [0, 65535], "the gods done so i": [0, 65535], "gods done so i had": [0, 65535], "done so i had not": [0, 65535], "so i had not now": [0, 65535], "i had not now worthily": [0, 65535], "had not now worthily tearm'd": [0, 65535], "not now worthily tearm'd them": [0, 65535], "now worthily tearm'd them mercilesse": [0, 65535], "worthily tearm'd them mercilesse to": [0, 65535], "tearm'd them mercilesse to vs": [0, 65535], "them mercilesse to vs for": [0, 65535], "mercilesse to vs for ere": [0, 65535], "to vs for ere the": [0, 65535], "vs for ere the ships": [0, 65535], "for ere the ships could": [0, 65535], "ere the ships could meet": [0, 65535], "the ships could meet by": [0, 65535], "ships could meet by twice": [0, 65535], "could meet by twice fiue": [0, 65535], "meet by twice fiue leagues": [0, 65535], "by twice fiue leagues we": [0, 65535], "twice fiue leagues we were": [0, 65535], "fiue leagues we were encountred": [0, 65535], "leagues we were encountred by": [0, 65535], "we were encountred by a": [0, 65535], "were encountred by a mighty": [0, 65535], "encountred by a mighty rocke": [0, 65535], "by a mighty rocke which": [0, 65535], "a mighty rocke which being": [0, 65535], "mighty rocke which being violently": [0, 65535], "rocke which being violently borne": [0, 65535], "which being violently borne vp": [0, 65535], "being violently borne vp our": [0, 65535], "violently borne vp our helpefull": [0, 65535], "borne vp our helpefull ship": [0, 65535], "vp our helpefull ship was": [0, 65535], "our helpefull ship was splitted": [0, 65535], "helpefull ship was splitted in": [0, 65535], "ship was splitted in the": [0, 65535], "was splitted in the midst": [0, 65535], "splitted in the midst so": [0, 65535], "in the midst so that": [0, 65535], "the midst so that in": [0, 65535], "midst so that in this": [0, 65535], "so that in this vniust": [0, 65535], "that in this vniust diuorce": [0, 65535], "in this vniust diuorce of": [0, 65535], "this vniust diuorce of vs": [0, 65535], "vniust diuorce of vs fortune": [0, 65535], "diuorce of vs fortune had": [0, 65535], "of vs fortune had left": [0, 65535], "vs fortune had left to": [0, 65535], "fortune had left to both": [0, 65535], "had left to both of": [0, 65535], "left to both of vs": [0, 65535], "to both of vs alike": [0, 65535], "both of vs alike what": [0, 65535], "of vs alike what to": [0, 65535], "vs alike what to delight": [0, 65535], "alike what to delight in": [0, 65535], "what to delight in what": [0, 65535], "to delight in what to": [0, 65535], "delight in what to sorrow": [0, 65535], "in what to sorrow for": [0, 65535], "what to sorrow for her": [0, 65535], "to sorrow for her part": [0, 65535], "sorrow for her part poore": [0, 65535], "for her part poore soule": [0, 65535], "her part poore soule seeming": [0, 65535], "part poore soule seeming as": [0, 65535], "poore soule seeming as burdened": [0, 65535], "soule seeming as burdened with": [0, 65535], "seeming as burdened with lesser": [0, 65535], "as burdened with lesser waight": [0, 65535], "burdened with lesser waight but": [0, 65535], "with lesser waight but not": [0, 65535], "lesser waight but not with": [0, 65535], "waight but not with lesser": [0, 65535], "but not with lesser woe": [0, 65535], "not with lesser woe was": [0, 65535], "with lesser woe was carried": [0, 65535], "lesser woe was carried with": [0, 65535], "woe was carried with more": [0, 65535], "was carried with more speed": [0, 65535], "carried with more speed before": [0, 65535], "with more speed before the": [0, 65535], "more speed before the winde": [0, 65535], "speed before the winde and": [0, 65535], "before the winde and in": [0, 65535], "the winde and in our": [0, 65535], "winde and in our sight": [0, 65535], "and in our sight they": [0, 65535], "in our sight they three": [0, 65535], "our sight they three were": [0, 65535], "sight they three were taken": [0, 65535], "they three were taken vp": [0, 65535], "three were taken vp by": [0, 65535], "were taken vp by fishermen": [0, 65535], "taken vp by fishermen of": [0, 65535], "vp by fishermen of corinth": [0, 65535], "by fishermen of corinth as": [0, 65535], "fishermen of corinth as we": [0, 65535], "of corinth as we thought": [0, 65535], "we thought at length another": [0, 65535], "thought at length another ship": [0, 65535], "at length another ship had": [0, 65535], "length another ship had seiz'd": [0, 65535], "another ship had seiz'd on": [0, 65535], "ship had seiz'd on vs": [0, 65535], "had seiz'd on vs and": [0, 65535], "seiz'd on vs and knowing": [0, 65535], "on vs and knowing whom": [0, 65535], "vs and knowing whom it": [0, 65535], "and knowing whom it was": [0, 65535], "knowing whom it was their": [0, 65535], "whom it was their hap": [0, 65535], "it was their hap to": [0, 65535], "was their hap to saue": [0, 65535], "their hap to saue gaue": [0, 65535], "hap to saue gaue healthfull": [0, 65535], "to saue gaue healthfull welcome": [0, 65535], "saue gaue healthfull welcome to": [0, 65535], "gaue healthfull welcome to their": [0, 65535], "healthfull welcome to their ship": [0, 65535], "welcome to their ship wrackt": [0, 65535], "to their ship wrackt guests": [0, 65535], "their ship wrackt guests and": [0, 65535], "ship wrackt guests and would": [0, 65535], "wrackt guests and would haue": [0, 65535], "guests and would haue reft": [0, 65535], "and would haue reft the": [0, 65535], "would haue reft the fishers": [0, 65535], "haue reft the fishers of": [0, 65535], "reft the fishers of their": [0, 65535], "the fishers of their prey": [0, 65535], "fishers of their prey had": [0, 65535], "of their prey had not": [0, 65535], "their prey had not their": [0, 65535], "prey had not their backe": [0, 65535], "had not their backe beene": [0, 65535], "not their backe beene very": [0, 65535], "their backe beene very slow": [0, 65535], "backe beene very slow of": [0, 65535], "beene very slow of saile": [0, 65535], "very slow of saile and": [0, 65535], "slow of saile and therefore": [0, 65535], "of saile and therefore homeward": [0, 65535], "saile and therefore homeward did": [0, 65535], "and therefore homeward did they": [0, 65535], "therefore homeward did they bend": [0, 65535], "homeward did they bend their": [0, 65535], "did they bend their course": [0, 65535], "they bend their course thus": [0, 65535], "bend their course thus haue": [0, 65535], "their course thus haue you": [0, 65535], "course thus haue you heard": [0, 65535], "thus haue you heard me": [0, 65535], "haue you heard me seuer'd": [0, 65535], "you heard me seuer'd from": [0, 65535], "heard me seuer'd from my": [0, 65535], "me seuer'd from my blisse": [0, 65535], "seuer'd from my blisse that": [0, 65535], "from my blisse that by": [0, 65535], "my blisse that by misfortunes": [0, 65535], "blisse that by misfortunes was": [0, 65535], "that by misfortunes was my": [0, 65535], "by misfortunes was my life": [0, 65535], "misfortunes was my life prolong'd": [0, 65535], "was my life prolong'd to": [0, 65535], "my life prolong'd to tell": [0, 65535], "life prolong'd to tell sad": [0, 65535], "prolong'd to tell sad stories": [0, 65535], "to tell sad stories of": [0, 65535], "tell sad stories of my": [0, 65535], "sad stories of my owne": [0, 65535], "stories of my owne mishaps": [0, 65535], "of my owne mishaps duke": [0, 65535], "my owne mishaps duke and": [0, 65535], "owne mishaps duke and for": [0, 65535], "mishaps duke and for the": [0, 65535], "duke and for the sake": [0, 65535], "and for the sake of": [0, 65535], "for the sake of them": [0, 65535], "the sake of them thou": [0, 65535], "sake of them thou sorrowest": [0, 65535], "of them thou sorrowest for": [0, 65535], "them thou sorrowest for doe": [0, 65535], "thou sorrowest for doe me": [0, 65535], "sorrowest for doe me the": [0, 65535], "for doe me the fauour": [0, 65535], "doe me the fauour to": [0, 65535], "me the fauour to dilate": [0, 65535], "the fauour to dilate at": [0, 65535], "fauour to dilate at full": [0, 65535], "to dilate at full what": [0, 65535], "dilate at full what haue": [0, 65535], "at full what haue befalne": [0, 65535], "full what haue befalne of": [0, 65535], "what haue befalne of them": [0, 65535], "haue befalne of them and": [0, 65535], "befalne of them and they": [0, 65535], "of them and they till": [0, 65535], "them and they till now": [0, 65535], "and they till now merch": [0, 65535], "they till now merch my": [0, 65535], "till now merch my yongest": [0, 65535], "now merch my yongest boy": [0, 65535], "merch my yongest boy and": [0, 65535], "my yongest boy and yet": [0, 65535], "yongest boy and yet my": [0, 65535], "boy and yet my eldest": [0, 65535], "and yet my eldest care": [0, 65535], "yet my eldest care at": [0, 65535], "my eldest care at eighteene": [0, 65535], "eldest care at eighteene yeeres": [0, 65535], "care at eighteene yeeres became": [0, 65535], "at eighteene yeeres became inquisitiue": [0, 65535], "eighteene yeeres became inquisitiue after": [0, 65535], "yeeres became inquisitiue after his": [0, 65535], "became inquisitiue after his brother": [0, 65535], "inquisitiue after his brother and": [0, 65535], "after his brother and importun'd": [0, 65535], "his brother and importun'd me": [0, 65535], "brother and importun'd me that": [0, 65535], "and importun'd me that his": [0, 65535], "importun'd me that his attendant": [0, 65535], "me that his attendant so": [0, 65535], "that his attendant so his": [0, 65535], "his attendant so his case": [0, 65535], "attendant so his case was": [0, 65535], "so his case was like": [0, 65535], "his case was like reft": [0, 65535], "case was like reft of": [0, 65535], "was like reft of his": [0, 65535], "like reft of his brother": [0, 65535], "reft of his brother but": [0, 65535], "of his brother but retain'd": [0, 65535], "his brother but retain'd his": [0, 65535], "brother but retain'd his name": [0, 65535], "but retain'd his name might": [0, 65535], "retain'd his name might beare": [0, 65535], "his name might beare him": [0, 65535], "name might beare him company": [0, 65535], "might beare him company in": [0, 65535], "beare him company in the": [0, 65535], "him company in the quest": [0, 65535], "company in the quest of": [0, 65535], "in the quest of him": [0, 65535], "the quest of him whom": [0, 65535], "quest of him whom whil'st": [0, 65535], "of him whom whil'st i": [0, 65535], "him whom whil'st i laboured": [0, 65535], "whom whil'st i laboured of": [0, 65535], "whil'st i laboured of a": [0, 65535], "i laboured of a loue": [0, 65535], "laboured of a loue to": [0, 65535], "of a loue to see": [0, 65535], "a loue to see i": [0, 65535], "loue to see i hazarded": [0, 65535], "to see i hazarded the": [0, 65535], "see i hazarded the losse": [0, 65535], "i hazarded the losse of": [0, 65535], "hazarded the losse of whom": [0, 65535], "the losse of whom i": [0, 65535], "losse of whom i lou'd": [0, 65535], "of whom i lou'd fiue": [0, 65535], "whom i lou'd fiue sommers": [0, 65535], "i lou'd fiue sommers haue": [0, 65535], "lou'd fiue sommers haue i": [0, 65535], "fiue sommers haue i spent": [0, 65535], "sommers haue i spent in": [0, 65535], "haue i spent in farthest": [0, 65535], "i spent in farthest greece": [0, 65535], "spent in farthest greece roming": [0, 65535], "in farthest greece roming cleane": [0, 65535], "farthest greece roming cleane through": [0, 65535], "greece roming cleane through the": [0, 65535], "roming cleane through the bounds": [0, 65535], "cleane through the bounds of": [0, 65535], "through the bounds of asia": [0, 65535], "the bounds of asia and": [0, 65535], "bounds of asia and coasting": [0, 65535], "of asia and coasting homeward": [0, 65535], "asia and coasting homeward came": [0, 65535], "and coasting homeward came to": [0, 65535], "coasting homeward came to ephesus": [0, 65535], "homeward came to ephesus hopelesse": [0, 65535], "came to ephesus hopelesse to": [0, 65535], "to ephesus hopelesse to finde": [0, 65535], "ephesus hopelesse to finde yet": [0, 65535], "hopelesse to finde yet loth": [0, 65535], "to finde yet loth to": [0, 65535], "finde yet loth to leaue": [0, 65535], "yet loth to leaue vnsought": [0, 65535], "loth to leaue vnsought or": [0, 65535], "to leaue vnsought or that": [0, 65535], "leaue vnsought or that or": [0, 65535], "vnsought or that or any": [0, 65535], "or that or any place": [0, 65535], "that or any place that": [0, 65535], "or any place that harbours": [0, 65535], "any place that harbours men": [0, 65535], "place that harbours men but": [0, 65535], "that harbours men but heere": [0, 65535], "harbours men but heere must": [0, 65535], "men but heere must end": [0, 65535], "but heere must end the": [0, 65535], "heere must end the story": [0, 65535], "must end the story of": [0, 65535], "end the story of my": [0, 65535], "the story of my life": [0, 65535], "story of my life and": [0, 65535], "of my life and happy": [0, 65535], "my life and happy were": [0, 65535], "life and happy were i": [0, 65535], "and happy were i in": [0, 65535], "happy were i in my": [0, 65535], "were i in my timelie": [0, 65535], "i in my timelie death": [0, 65535], "in my timelie death could": [0, 65535], "my timelie death could all": [0, 65535], "timelie death could all my": [0, 65535], "death could all my trauells": [0, 65535], "could all my trauells warrant": [0, 65535], "all my trauells warrant me": [0, 65535], "my trauells warrant me they": [0, 65535], "trauells warrant me they liue": [0, 65535], "warrant me they liue duke": [0, 65535], "me they liue duke haplesse": [0, 65535], "they liue duke haplesse egeon": [0, 65535], "liue duke haplesse egeon whom": [0, 65535], "duke haplesse egeon whom the": [0, 65535], "haplesse egeon whom the fates": [0, 65535], "egeon whom the fates haue": [0, 65535], "whom the fates haue markt": [0, 65535], "the fates haue markt to": [0, 65535], "fates haue markt to beare": [0, 65535], "haue markt to beare the": [0, 65535], "markt to beare the extremitie": [0, 65535], "to beare the extremitie of": [0, 65535], "beare the extremitie of dire": [0, 65535], "the extremitie of dire mishap": [0, 65535], "extremitie of dire mishap now": [0, 65535], "of dire mishap now trust": [0, 65535], "dire mishap now trust me": [0, 65535], "mishap now trust me were": [0, 65535], "now trust me were it": [0, 65535], "trust me were it not": [0, 65535], "me were it not against": [0, 65535], "were it not against our": [0, 65535], "it not against our lawes": [0, 65535], "not against our lawes against": [0, 65535], "against our lawes against my": [0, 65535], "our lawes against my crowne": [0, 65535], "lawes against my crowne my": [0, 65535], "against my crowne my oath": [0, 65535], "my crowne my oath my": [0, 65535], "crowne my oath my dignity": [0, 65535], "my oath my dignity which": [0, 65535], "oath my dignity which princes": [0, 65535], "my dignity which princes would": [0, 65535], "dignity which princes would they": [0, 65535], "which princes would they may": [0, 65535], "princes would they may not": [0, 65535], "would they may not disanull": [0, 65535], "they may not disanull my": [0, 65535], "may not disanull my soule": [0, 65535], "not disanull my soule should": [0, 65535], "disanull my soule should sue": [0, 65535], "my soule should sue as": [0, 65535], "soule should sue as aduocate": [0, 65535], "should sue as aduocate for": [0, 65535], "sue as aduocate for thee": [0, 65535], "as aduocate for thee but": [0, 65535], "aduocate for thee but though": [0, 65535], "for thee but though thou": [0, 65535], "thee but though thou art": [0, 65535], "but though thou art adiudged": [0, 65535], "though thou art adiudged to": [0, 65535], "thou art adiudged to the": [0, 65535], "art adiudged to the death": [0, 65535], "adiudged to the death and": [0, 65535], "to the death and passed": [0, 65535], "the death and passed sentence": [0, 65535], "death and passed sentence may": [0, 65535], "and passed sentence may not": [0, 65535], "passed sentence may not be": [0, 65535], "sentence may not be recal'd": [0, 65535], "may not be recal'd but": [0, 65535], "not be recal'd but to": [0, 65535], "be recal'd but to our": [0, 65535], "recal'd but to our honours": [0, 65535], "but to our honours great": [0, 65535], "to our honours great disparagement": [0, 65535], "our honours great disparagement yet": [0, 65535], "honours great disparagement yet will": [0, 65535], "great disparagement yet will i": [0, 65535], "disparagement yet will i fauour": [0, 65535], "yet will i fauour thee": [0, 65535], "will i fauour thee in": [0, 65535], "i fauour thee in what": [0, 65535], "fauour thee in what i": [0, 65535], "thee in what i can": [0, 65535], "in what i can therefore": [0, 65535], "what i can therefore marchant": [0, 65535], "i can therefore marchant ile": [0, 65535], "can therefore marchant ile limit": [0, 65535], "therefore marchant ile limit thee": [0, 65535], "marchant ile limit thee this": [0, 65535], "ile limit thee this day": [0, 65535], "limit thee this day to": [0, 65535], "thee this day to seeke": [0, 65535], "this day to seeke thy": [0, 65535], "day to seeke thy helpe": [0, 65535], "to seeke thy helpe by": [0, 65535], "seeke thy helpe by beneficiall": [0, 65535], "thy helpe by beneficiall helpe": [0, 65535], "helpe by beneficiall helpe try": [0, 65535], "by beneficiall helpe try all": [0, 65535], "beneficiall helpe try all the": [0, 65535], "helpe try all the friends": [0, 65535], "try all the friends thou": [0, 65535], "all the friends thou hast": [0, 65535], "the friends thou hast in": [0, 65535], "friends thou hast in ephesus": [0, 65535], "thou hast in ephesus beg": [0, 65535], "hast in ephesus beg thou": [0, 65535], "in ephesus beg thou or": [0, 65535], "ephesus beg thou or borrow": [0, 65535], "beg thou or borrow to": [0, 65535], "thou or borrow to make": [0, 65535], "or borrow to make vp": [0, 65535], "borrow to make vp the": [0, 65535], "to make vp the summe": [0, 65535], "make vp the summe and": [0, 65535], "vp the summe and liue": [0, 65535], "the summe and liue if": [0, 65535], "summe and liue if no": [0, 65535], "and liue if no then": [0, 65535], "liue if no then thou": [0, 65535], "if no then thou art": [0, 65535], "no then thou art doom'd": [0, 65535], "then thou art doom'd to": [0, 65535], "thou art doom'd to die": [0, 65535], "art doom'd to die iaylor": [0, 65535], "doom'd to die iaylor take": [0, 65535], "to die iaylor take him": [0, 65535], "die iaylor take him to": [0, 65535], "iaylor take him to thy": [0, 65535], "take him to thy custodie": [0, 65535], "him to thy custodie iaylor": [0, 65535], "to thy custodie iaylor i": [0, 65535], "thy custodie iaylor i will": [0, 65535], "custodie iaylor i will my": [0, 65535], "iaylor i will my lord": [0, 65535], "i will my lord merch": [0, 65535], "will my lord merch hopelesse": [0, 65535], "my lord merch hopelesse and": [0, 65535], "lord merch hopelesse and helpelesse": [0, 65535], "merch hopelesse and helpelesse doth": [0, 65535], "hopelesse and helpelesse doth egean": [0, 65535], "and helpelesse doth egean wend": [0, 65535], "helpelesse doth egean wend but": [0, 65535], "doth egean wend but to": [0, 65535], "egean wend but to procrastinate": [0, 65535], "wend but to procrastinate his": [0, 65535], "but to procrastinate his liuelesse": [0, 65535], "to procrastinate his liuelesse end": [0, 65535], "procrastinate his liuelesse end exeunt": [0, 65535], "his liuelesse end exeunt enter": [0, 65535], "liuelesse end exeunt enter antipholis": [0, 65535], "end exeunt enter antipholis erotes": [0, 65535], "exeunt enter antipholis erotes a": [0, 65535], "enter antipholis erotes a marchant": [0, 65535], "antipholis erotes a marchant and": [0, 65535], "erotes a marchant and dromio": [0, 65535], "a marchant and dromio mer": [0, 65535], "marchant and dromio mer therefore": [0, 65535], "and dromio mer therefore giue": [0, 65535], "dromio mer therefore giue out": [0, 65535], "mer therefore giue out you": [0, 65535], "therefore giue out you are": [0, 65535], "giue out you are of": [0, 65535], "out you are of epidamium": [0, 65535], "you are of epidamium lest": [0, 65535], "are of epidamium lest that": [0, 65535], "of epidamium lest that your": [0, 65535], "epidamium lest that your goods": [0, 65535], "lest that your goods too": [0, 65535], "that your goods too soone": [0, 65535], "your goods too soone be": [0, 65535], "goods too soone be confiscate": [0, 65535], "too soone be confiscate this": [0, 65535], "soone be confiscate this very": [0, 65535], "be confiscate this very day": [0, 65535], "confiscate this very day a": [0, 65535], "this very day a syracusian": [0, 65535], "very day a syracusian marchant": [0, 65535], "day a syracusian marchant is": [0, 65535], "a syracusian marchant is apprehended": [0, 65535], "syracusian marchant is apprehended for": [0, 65535], "marchant is apprehended for a": [0, 65535], "is apprehended for a riuall": [0, 65535], "apprehended for a riuall here": [0, 65535], "for a riuall here and": [0, 65535], "a riuall here and not": [0, 65535], "riuall here and not being": [0, 65535], "here and not being able": [0, 65535], "and not being able to": [0, 65535], "not being able to buy": [0, 65535], "being able to buy out": [0, 65535], "able to buy out his": [0, 65535], "to buy out his life": [0, 65535], "buy out his life according": [0, 65535], "out his life according to": [0, 65535], "his life according to the": [0, 65535], "life according to the statute": [0, 65535], "according to the statute of": [0, 65535], "to the statute of the": [0, 65535], "the statute of the towne": [0, 65535], "statute of the towne dies": [0, 65535], "of the towne dies ere": [0, 65535], "the towne dies ere the": [0, 65535], "towne dies ere the wearie": [0, 65535], "dies ere the wearie sunne": [0, 65535], "ere the wearie sunne set": [0, 65535], "the wearie sunne set in": [0, 65535], "wearie sunne set in the": [0, 65535], "sunne set in the west": [0, 65535], "set in the west there": [0, 65535], "in the west there is": [0, 65535], "the west there is your": [0, 65535], "west there is your monie": [0, 65535], "there is your monie that": [0, 65535], "is your monie that i": [0, 65535], "your monie that i had": [0, 65535], "monie that i had to": [0, 65535], "that i had to keepe": [0, 65535], "i had to keepe ant": [0, 65535], "had to keepe ant goe": [0, 65535], "to keepe ant goe beare": [0, 65535], "keepe ant goe beare it": [0, 65535], "ant goe beare it to": [0, 65535], "goe beare it to the": [0, 65535], "beare it to the centaure": [0, 65535], "it to the centaure where": [0, 65535], "to the centaure where we": [0, 65535], "the centaure where we host": [0, 65535], "centaure where we host and": [0, 65535], "where we host and stay": [0, 65535], "we host and stay there": [0, 65535], "host and stay there dromio": [0, 65535], "and stay there dromio till": [0, 65535], "stay there dromio till i": [0, 65535], "there dromio till i come": [0, 65535], "dromio till i come to": [0, 65535], "till i come to thee": [0, 65535], "i come to thee within": [0, 65535], "come to thee within this": [0, 65535], "to thee within this houre": [0, 65535], "thee within this houre it": [0, 65535], "within this houre it will": [0, 65535], "this houre it will be": [0, 65535], "houre it will be dinner": [0, 65535], "it will be dinner time": [0, 65535], "will be dinner time till": [0, 65535], "be dinner time till that": [0, 65535], "dinner time till that ile": [0, 65535], "time till that ile view": [0, 65535], "till that ile view the": [0, 65535], "that ile view the manners": [0, 65535], "ile view the manners of": [0, 65535], "view the manners of the": [0, 65535], "the manners of the towne": [0, 65535], "manners of the towne peruse": [0, 65535], "of the towne peruse the": [0, 65535], "the towne peruse the traders": [0, 65535], "towne peruse the traders gaze": [0, 65535], "peruse the traders gaze vpon": [0, 65535], "the traders gaze vpon the": [0, 65535], "traders gaze vpon the buildings": [0, 65535], "gaze vpon the buildings and": [0, 65535], "vpon the buildings and then": [0, 65535], "the buildings and then returne": [0, 65535], "buildings and then returne and": [0, 65535], "and then returne and sleepe": [0, 65535], "then returne and sleepe within": [0, 65535], "returne and sleepe within mine": [0, 65535], "and sleepe within mine inne": [0, 65535], "sleepe within mine inne for": [0, 65535], "within mine inne for with": [0, 65535], "mine inne for with long": [0, 65535], "inne for with long trauaile": [0, 65535], "for with long trauaile i": [0, 65535], "with long trauaile i am": [0, 65535], "long trauaile i am stiffe": [0, 65535], "trauaile i am stiffe and": [0, 65535], "i am stiffe and wearie": [0, 65535], "am stiffe and wearie get": [0, 65535], "stiffe and wearie get thee": [0, 65535], "and wearie get thee away": [0, 65535], "wearie get thee away dro": [0, 65535], "get thee away dro many": [0, 65535], "thee away dro many a": [0, 65535], "away dro many a man": [0, 65535], "dro many a man would": [0, 65535], "many a man would take": [0, 65535], "a man would take you": [0, 65535], "man would take you at": [0, 65535], "would take you at your": [0, 65535], "take you at your word": [0, 65535], "you at your word and": [0, 65535], "at your word and goe": [0, 65535], "your word and goe indeede": [0, 65535], "word and goe indeede hauing": [0, 65535], "and goe indeede hauing so": [0, 65535], "goe indeede hauing so good": [0, 65535], "indeede hauing so good a": [0, 65535], "hauing so good a meane": [0, 65535], "so good a meane exit": [0, 65535], "good a meane exit dromio": [0, 65535], "a meane exit dromio ant": [0, 65535], "meane exit dromio ant a": [0, 65535], "exit dromio ant a trustie": [0, 65535], "dromio ant a trustie villaine": [0, 65535], "ant a trustie villaine sir": [0, 65535], "a trustie villaine sir that": [0, 65535], "trustie villaine sir that very": [0, 65535], "villaine sir that very oft": [0, 65535], "sir that very oft when": [0, 65535], "that very oft when i": [0, 65535], "very oft when i am": [0, 65535], "oft when i am dull": [0, 65535], "when i am dull with": [0, 65535], "i am dull with care": [0, 65535], "am dull with care and": [0, 65535], "dull with care and melancholly": [0, 65535], "with care and melancholly lightens": [0, 65535], "care and melancholly lightens my": [0, 65535], "and melancholly lightens my humour": [0, 65535], "melancholly lightens my humour with": [0, 65535], "lightens my humour with his": [0, 65535], "my humour with his merry": [0, 65535], "humour with his merry iests": [0, 65535], "with his merry iests what": [0, 65535], "his merry iests what will": [0, 65535], "merry iests what will you": [0, 65535], "iests what will you walke": [0, 65535], "what will you walke with": [0, 65535], "will you walke with me": [0, 65535], "you walke with me about": [0, 65535], "walke with me about the": [0, 65535], "with me about the towne": [0, 65535], "me about the towne and": [0, 65535], "about the towne and then": [0, 65535], "the towne and then goe": [0, 65535], "towne and then goe to": [0, 65535], "and then goe to my": [0, 65535], "then goe to my inne": [0, 65535], "goe to my inne and": [0, 65535], "to my inne and dine": [0, 65535], "my inne and dine with": [0, 65535], "inne and dine with me": [0, 65535], "and dine with me e": [0, 65535], "dine with me e mar": [0, 65535], "with me e mar i": [0, 65535], "me e mar i am": [0, 65535], "e mar i am inuited": [0, 65535], "mar i am inuited sir": [0, 65535], "i am inuited sir to": [0, 65535], "am inuited sir to certaine": [0, 65535], "inuited sir to certaine marchants": [0, 65535], "sir to certaine marchants of": [0, 65535], "to certaine marchants of whom": [0, 65535], "certaine marchants of whom i": [0, 65535], "marchants of whom i hope": [0, 65535], "of whom i hope to": [0, 65535], "whom i hope to make": [0, 65535], "i hope to make much": [0, 65535], "hope to make much benefit": [0, 65535], "to make much benefit i": [0, 65535], "make much benefit i craue": [0, 65535], "much benefit i craue your": [0, 65535], "benefit i craue your pardon": [0, 65535], "i craue your pardon soone": [0, 65535], "craue your pardon soone at": [0, 65535], "your pardon soone at fiue": [0, 65535], "pardon soone at fiue a": [0, 65535], "soone at fiue a clocke": [0, 65535], "at fiue a clocke please": [0, 65535], "fiue a clocke please you": [0, 65535], "a clocke please you ile": [0, 65535], "clocke please you ile meete": [0, 65535], "please you ile meete with": [0, 65535], "you ile meete with you": [0, 65535], "ile meete with you vpon": [0, 65535], "meete with you vpon the": [0, 65535], "with you vpon the mart": [0, 65535], "you vpon the mart and": [0, 65535], "vpon the mart and afterward": [0, 65535], "the mart and afterward consort": [0, 65535], "mart and afterward consort you": [0, 65535], "and afterward consort you till": [0, 65535], "afterward consort you till bed": [0, 65535], "consort you till bed time": [0, 65535], "you till bed time my": [0, 65535], "till bed time my present": [0, 65535], "bed time my present businesse": [0, 65535], "time my present businesse cals": [0, 65535], "my present businesse cals me": [0, 65535], "present businesse cals me from": [0, 65535], "businesse cals me from you": [0, 65535], "cals me from you now": [0, 65535], "me from you now ant": [0, 65535], "from you now ant farewell": [0, 65535], "you now ant farewell till": [0, 65535], "now ant farewell till then": [0, 65535], "ant farewell till then i": [0, 65535], "farewell till then i will": [0, 65535], "till then i will goe": [0, 65535], "then i will goe loose": [0, 65535], "i will goe loose my": [0, 65535], "will goe loose my selfe": [0, 65535], "goe loose my selfe and": [0, 65535], "loose my selfe and wander": [0, 65535], "my selfe and wander vp": [0, 65535], "selfe and wander vp and": [0, 65535], "and wander vp and downe": [0, 65535], "wander vp and downe to": [0, 65535], "vp and downe to view": [0, 65535], "and downe to view the": [0, 65535], "downe to view the citie": [0, 65535], "to view the citie e": [0, 65535], "view the citie e mar": [0, 65535], "the citie e mar sir": [0, 65535], "citie e mar sir i": [0, 65535], "e mar sir i commend": [0, 65535], "mar sir i commend you": [0, 65535], "sir i commend you to": [0, 65535], "i commend you to your": [0, 65535], "commend you to your owne": [0, 65535], "you to your owne content": [0, 65535], "to your owne content exeunt": [0, 65535], "your owne content exeunt ant": [0, 65535], "owne content exeunt ant he": [0, 65535], "content exeunt ant he that": [0, 65535], "exeunt ant he that commends": [0, 65535], "ant he that commends me": [0, 65535], "he that commends me to": [0, 65535], "that commends me to mine": [0, 65535], "commends me to mine owne": [0, 65535], "me to mine owne content": [0, 65535], "to mine owne content commends": [0, 65535], "mine owne content commends me": [0, 65535], "owne content commends me to": [0, 65535], "content commends me to the": [0, 65535], "commends me to the thing": [0, 65535], "me to the thing i": [0, 65535], "to the thing i cannot": [0, 65535], "the thing i cannot get": [0, 65535], "thing i cannot get i": [0, 65535], "i cannot get i to": [0, 65535], "cannot get i to the": [0, 65535], "get i to the world": [0, 65535], "i to the world am": [0, 65535], "to the world am like": [0, 65535], "the world am like a": [0, 65535], "world am like a drop": [0, 65535], "am like a drop of": [0, 65535], "like a drop of water": [0, 65535], "a drop of water that": [0, 65535], "drop of water that in": [0, 65535], "of water that in the": [0, 65535], "water that in the ocean": [0, 65535], "that in the ocean seekes": [0, 65535], "in the ocean seekes another": [0, 65535], "the ocean seekes another drop": [0, 65535], "ocean seekes another drop who": [0, 65535], "seekes another drop who falling": [0, 65535], "another drop who falling there": [0, 65535], "drop who falling there to": [0, 65535], "who falling there to finde": [0, 65535], "falling there to finde his": [0, 65535], "there to finde his fellow": [0, 65535], "to finde his fellow forth": [0, 65535], "finde his fellow forth vnseene": [0, 65535], "his fellow forth vnseene inquisitiue": [0, 65535], "fellow forth vnseene inquisitiue confounds": [0, 65535], "forth vnseene inquisitiue confounds himselfe": [0, 65535], "vnseene inquisitiue confounds himselfe so": [0, 65535], "inquisitiue confounds himselfe so i": [0, 65535], "confounds himselfe so i to": [0, 65535], "himselfe so i to finde": [0, 65535], "so i to finde a": [0, 65535], "i to finde a mother": [0, 65535], "to finde a mother and": [0, 65535], "finde a mother and a": [0, 65535], "a mother and a brother": [0, 65535], "mother and a brother in": [0, 65535], "and a brother in quest": [0, 65535], "a brother in quest of": [0, 65535], "brother in quest of them": [0, 65535], "in quest of them vnhappie": [0, 65535], "quest of them vnhappie a": [0, 65535], "of them vnhappie a loose": [0, 65535], "them vnhappie a loose my": [0, 65535], "vnhappie a loose my selfe": [0, 65535], "a loose my selfe enter": [0, 65535], "loose my selfe enter dromio": [0, 65535], "my selfe enter dromio of": [0, 65535], "selfe enter dromio of ephesus": [0, 65535], "enter dromio of ephesus here": [0, 65535], "dromio of ephesus here comes": [0, 65535], "of ephesus here comes the": [0, 65535], "ephesus here comes the almanacke": [0, 65535], "here comes the almanacke of": [0, 65535], "comes the almanacke of my": [0, 65535], "the almanacke of my true": [0, 65535], "almanacke of my true date": [0, 65535], "of my true date what": [0, 65535], "my true date what now": [0, 65535], "true date what now how": [0, 65535], "date what now how chance": [0, 65535], "what now how chance thou": [0, 65535], "now how chance thou art": [0, 65535], "how chance thou art return'd": [0, 65535], "chance thou art return'd so": [0, 65535], "thou art return'd so soone": [0, 65535], "art return'd so soone e": [0, 65535], "return'd so soone e dro": [0, 65535], "so soone e dro return'd": [0, 65535], "soone e dro return'd so": [0, 65535], "e dro return'd so soone": [0, 65535], "dro return'd so soone rather": [0, 65535], "return'd so soone rather approacht": [0, 65535], "so soone rather approacht too": [0, 65535], "soone rather approacht too late": [0, 65535], "rather approacht too late the": [0, 65535], "approacht too late the capon": [0, 65535], "too late the capon burnes": [0, 65535], "late the capon burnes the": [0, 65535], "the capon burnes the pig": [0, 65535], "capon burnes the pig fals": [0, 65535], "burnes the pig fals from": [0, 65535], "the pig fals from the": [0, 65535], "pig fals from the spit": [0, 65535], "fals from the spit the": [0, 65535], "from the spit the clocke": [0, 65535], "the spit the clocke hath": [0, 65535], "spit the clocke hath strucken": [0, 65535], "the clocke hath strucken twelue": [0, 65535], "clocke hath strucken twelue vpon": [0, 65535], "hath strucken twelue vpon the": [0, 65535], "strucken twelue vpon the bell": [0, 65535], "twelue vpon the bell my": [0, 65535], "vpon the bell my mistris": [0, 65535], "the bell my mistris made": [0, 65535], "bell my mistris made it": [0, 65535], "my mistris made it one": [0, 65535], "mistris made it one vpon": [0, 65535], "made it one vpon my": [0, 65535], "it one vpon my cheeke": [0, 65535], "one vpon my cheeke she": [0, 65535], "vpon my cheeke she is": [0, 65535], "my cheeke she is so": [0, 65535], "cheeke she is so hot": [0, 65535], "she is so hot because": [0, 65535], "is so hot because the": [0, 65535], "so hot because the meate": [0, 65535], "hot because the meate is": [0, 65535], "because the meate is colde": [0, 65535], "the meate is colde the": [0, 65535], "meate is colde the meate": [0, 65535], "is colde the meate is": [0, 65535], "colde the meate is colde": [0, 65535], "the meate is colde because": [0, 65535], "meate is colde because you": [0, 65535], "is colde because you come": [0, 65535], "colde because you come not": [0, 65535], "because you come not home": [0, 65535], "you come not home you": [0, 65535], "come not home you come": [0, 65535], "not home you come not": [0, 65535], "home you come not home": [0, 65535], "you come not home because": [0, 65535], "come not home because you": [0, 65535], "not home because you haue": [0, 65535], "home because you haue no": [0, 65535], "because you haue no stomacke": [0, 65535], "you haue no stomacke you": [0, 65535], "haue no stomacke you haue": [0, 65535], "no stomacke you haue no": [0, 65535], "stomacke you haue no stomacke": [0, 65535], "you haue no stomacke hauing": [0, 65535], "haue no stomacke hauing broke": [0, 65535], "no stomacke hauing broke your": [0, 65535], "stomacke hauing broke your fast": [0, 65535], "hauing broke your fast but": [0, 65535], "broke your fast but we": [0, 65535], "your fast but we that": [0, 65535], "fast but we that know": [0, 65535], "but we that know what": [0, 65535], "we that know what 'tis": [0, 65535], "that know what 'tis to": [0, 65535], "know what 'tis to fast": [0, 65535], "what 'tis to fast and": [0, 65535], "'tis to fast and pray": [0, 65535], "to fast and pray are": [0, 65535], "fast and pray are penitent": [0, 65535], "and pray are penitent for": [0, 65535], "pray are penitent for your": [0, 65535], "are penitent for your default": [0, 65535], "penitent for your default to": [0, 65535], "for your default to day": [0, 65535], "your default to day ant": [0, 65535], "default to day ant stop": [0, 65535], "to day ant stop in": [0, 65535], "day ant stop in your": [0, 65535], "ant stop in your winde": [0, 65535], "stop in your winde sir": [0, 65535], "in your winde sir tell": [0, 65535], "your winde sir tell me": [0, 65535], "winde sir tell me this": [0, 65535], "sir tell me this i": [0, 65535], "tell me this i pray": [0, 65535], "me this i pray where": [0, 65535], "this i pray where haue": [0, 65535], "i pray where haue you": [0, 65535], "pray where haue you left": [0, 65535], "where haue you left the": [0, 65535], "haue you left the mony": [0, 65535], "you left the mony that": [0, 65535], "left the mony that i": [0, 65535], "the mony that i gaue": [0, 65535], "mony that i gaue you": [0, 65535], "that i gaue you e": [0, 65535], "i gaue you e dro": [0, 65535], "gaue you e dro oh": [0, 65535], "you e dro oh sixe": [0, 65535], "e dro oh sixe pence": [0, 65535], "dro oh sixe pence that": [0, 65535], "oh sixe pence that i": [0, 65535], "sixe pence that i had": [0, 65535], "pence that i had a": [0, 65535], "that i had a wensday": [0, 65535], "i had a wensday last": [0, 65535], "had a wensday last to": [0, 65535], "a wensday last to pay": [0, 65535], "wensday last to pay the": [0, 65535], "last to pay the sadler": [0, 65535], "to pay the sadler for": [0, 65535], "pay the sadler for my": [0, 65535], "the sadler for my mistris": [0, 65535], "sadler for my mistris crupper": [0, 65535], "for my mistris crupper the": [0, 65535], "my mistris crupper the sadler": [0, 65535], "mistris crupper the sadler had": [0, 65535], "crupper the sadler had it": [0, 65535], "the sadler had it sir": [0, 65535], "sadler had it sir i": [0, 65535], "had it sir i kept": [0, 65535], "it sir i kept it": [0, 65535], "sir i kept it not": [0, 65535], "i kept it not ant": [0, 65535], "kept it not ant i": [0, 65535], "it not ant i am": [0, 65535], "not ant i am not": [0, 65535], "ant i am not in": [0, 65535], "i am not in a": [0, 65535], "am not in a sportiue": [0, 65535], "not in a sportiue humor": [0, 65535], "in a sportiue humor now": [0, 65535], "a sportiue humor now tell": [0, 65535], "sportiue humor now tell me": [0, 65535], "humor now tell me and": [0, 65535], "now tell me and dally": [0, 65535], "tell me and dally not": [0, 65535], "me and dally not where": [0, 65535], "and dally not where is": [0, 65535], "dally not where is the": [0, 65535], "not where is the monie": [0, 65535], "where is the monie we": [0, 65535], "is the monie we being": [0, 65535], "the monie we being strangers": [0, 65535], "monie we being strangers here": [0, 65535], "we being strangers here how": [0, 65535], "being strangers here how dar'st": [0, 65535], "strangers here how dar'st thou": [0, 65535], "here how dar'st thou trust": [0, 65535], "how dar'st thou trust so": [0, 65535], "dar'st thou trust so great": [0, 65535], "thou trust so great a": [0, 65535], "trust so great a charge": [0, 65535], "so great a charge from": [0, 65535], "great a charge from thine": [0, 65535], "a charge from thine owne": [0, 65535], "charge from thine owne custodie": [0, 65535], "from thine owne custodie e": [0, 65535], "thine owne custodie e dro": [0, 65535], "owne custodie e dro i": [0, 65535], "custodie e dro i pray": [0, 65535], "e dro i pray you": [0, 65535], "dro i pray you iest": [0, 65535], "i pray you iest sir": [0, 65535], "pray you iest sir as": [0, 65535], "you iest sir as you": [0, 65535], "iest sir as you sit": [0, 65535], "sir as you sit at": [0, 65535], "as you sit at dinner": [0, 65535], "you sit at dinner i": [0, 65535], "sit at dinner i from": [0, 65535], "at dinner i from my": [0, 65535], "dinner i from my mistris": [0, 65535], "i from my mistris come": [0, 65535], "from my mistris come to": [0, 65535], "my mistris come to you": [0, 65535], "mistris come to you in": [0, 65535], "come to you in post": [0, 65535], "to you in post if": [0, 65535], "you in post if i": [0, 65535], "in post if i returne": [0, 65535], "post if i returne i": [0, 65535], "if i returne i shall": [0, 65535], "i returne i shall be": [0, 65535], "returne i shall be post": [0, 65535], "i shall be post indeede": [0, 65535], "shall be post indeede for": [0, 65535], "be post indeede for she": [0, 65535], "post indeede for she will": [0, 65535], "indeede for she will scoure": [0, 65535], "for she will scoure your": [0, 65535], "she will scoure your fault": [0, 65535], "will scoure your fault vpon": [0, 65535], "scoure your fault vpon my": [0, 65535], "your fault vpon my pate": [0, 65535], "fault vpon my pate me": [0, 65535], "vpon my pate me thinkes": [0, 65535], "my pate me thinkes your": [0, 65535], "pate me thinkes your maw": [0, 65535], "me thinkes your maw like": [0, 65535], "thinkes your maw like mine": [0, 65535], "your maw like mine should": [0, 65535], "maw like mine should be": [0, 65535], "like mine should be your": [0, 65535], "mine should be your cooke": [0, 65535], "should be your cooke and": [0, 65535], "be your cooke and strike": [0, 65535], "your cooke and strike you": [0, 65535], "cooke and strike you home": [0, 65535], "and strike you home without": [0, 65535], "strike you home without a": [0, 65535], "you home without a messenger": [0, 65535], "home without a messenger ant": [0, 65535], "without a messenger ant come": [0, 65535], "a messenger ant come dromio": [0, 65535], "messenger ant come dromio come": [0, 65535], "ant come dromio come these": [0, 65535], "come dromio come these iests": [0, 65535], "dromio come these iests are": [0, 65535], "come these iests are out": [0, 65535], "these iests are out of": [0, 65535], "iests are out of season": [0, 65535], "are out of season reserue": [0, 65535], "out of season reserue them": [0, 65535], "of season reserue them till": [0, 65535], "season reserue them till a": [0, 65535], "reserue them till a merrier": [0, 65535], "them till a merrier houre": [0, 65535], "till a merrier houre then": [0, 65535], "a merrier houre then this": [0, 65535], "merrier houre then this where": [0, 65535], "houre then this where is": [0, 65535], "then this where is the": [0, 65535], "this where is the gold": [0, 65535], "where is the gold i": [0, 65535], "is the gold i gaue": [0, 65535], "the gold i gaue in": [0, 65535], "gold i gaue in charge": [0, 65535], "i gaue in charge to": [0, 65535], "gaue in charge to thee": [0, 65535], "in charge to thee e": [0, 65535], "charge to thee e dro": [0, 65535], "to thee e dro to": [0, 65535], "thee e dro to me": [0, 65535], "e dro to me sir": [0, 65535], "dro to me sir why": [0, 65535], "to me sir why you": [0, 65535], "me sir why you gaue": [0, 65535], "sir why you gaue no": [0, 65535], "why you gaue no gold": [0, 65535], "you gaue no gold to": [0, 65535], "gaue no gold to me": [0, 65535], "no gold to me ant": [0, 65535], "gold to me ant come": [0, 65535], "to me ant come on": [0, 65535], "me ant come on sir": [0, 65535], "ant come on sir knaue": [0, 65535], "come on sir knaue haue": [0, 65535], "on sir knaue haue done": [0, 65535], "sir knaue haue done your": [0, 65535], "knaue haue done your foolishnes": [0, 65535], "haue done your foolishnes and": [0, 65535], "done your foolishnes and tell": [0, 65535], "your foolishnes and tell me": [0, 65535], "foolishnes and tell me how": [0, 65535], "and tell me how thou": [0, 65535], "tell me how thou hast": [0, 65535], "me how thou hast dispos'd": [0, 65535], "how thou hast dispos'd thy": [0, 65535], "thou hast dispos'd thy charge": [0, 65535], "hast dispos'd thy charge e": [0, 65535], "dispos'd thy charge e dro": [0, 65535], "thy charge e dro my": [0, 65535], "charge e dro my charge": [0, 65535], "e dro my charge was": [0, 65535], "dro my charge was but": [0, 65535], "my charge was but to": [0, 65535], "charge was but to fetch": [0, 65535], "was but to fetch you": [0, 65535], "but to fetch you from": [0, 65535], "to fetch you from the": [0, 65535], "fetch you from the mart": [0, 65535], "you from the mart home": [0, 65535], "from the mart home to": [0, 65535], "the mart home to your": [0, 65535], "mart home to your house": [0, 65535], "home to your house the": [0, 65535], "to your house the ph\u0153nix": [0, 65535], "your house the ph\u0153nix sir": [0, 65535], "house the ph\u0153nix sir to": [0, 65535], "the ph\u0153nix sir to dinner": [0, 65535], "ph\u0153nix sir to dinner my": [0, 65535], "sir to dinner my mistris": [0, 65535], "to dinner my mistris and": [0, 65535], "dinner my mistris and her": [0, 65535], "my mistris and her sister": [0, 65535], "mistris and her sister staies": [0, 65535], "and her sister staies for": [0, 65535], "her sister staies for you": [0, 65535], "sister staies for you ant": [0, 65535], "staies for you ant now": [0, 65535], "for you ant now as": [0, 65535], "you ant now as i": [0, 65535], "ant now as i am": [0, 65535], "now as i am a": [0, 65535], "as i am a christian": [0, 65535], "i am a christian answer": [0, 65535], "am a christian answer me": [0, 65535], "a christian answer me in": [0, 65535], "christian answer me in what": [0, 65535], "answer me in what safe": [0, 65535], "me in what safe place": [0, 65535], "in what safe place you": [0, 65535], "what safe place you haue": [0, 65535], "safe place you haue bestow'd": [0, 65535], "place you haue bestow'd my": [0, 65535], "you haue bestow'd my monie": [0, 65535], "haue bestow'd my monie or": [0, 65535], "bestow'd my monie or i": [0, 65535], "my monie or i shall": [0, 65535], "monie or i shall breake": [0, 65535], "or i shall breake that": [0, 65535], "i shall breake that merrie": [0, 65535], "shall breake that merrie sconce": [0, 65535], "breake that merrie sconce of": [0, 65535], "that merrie sconce of yours": [0, 65535], "merrie sconce of yours that": [0, 65535], "sconce of yours that stands": [0, 65535], "of yours that stands on": [0, 65535], "yours that stands on tricks": [0, 65535], "that stands on tricks when": [0, 65535], "stands on tricks when i": [0, 65535], "on tricks when i am": [0, 65535], "tricks when i am vndispos'd": [0, 65535], "when i am vndispos'd where": [0, 65535], "i am vndispos'd where is": [0, 65535], "am vndispos'd where is the": [0, 65535], "vndispos'd where is the thousand": [0, 65535], "is the thousand markes thou": [0, 65535], "the thousand markes thou hadst": [0, 65535], "thousand markes thou hadst of": [0, 65535], "markes thou hadst of me": [0, 65535], "thou hadst of me e": [0, 65535], "hadst of me e dro": [0, 65535], "of me e dro i": [0, 65535], "me e dro i haue": [0, 65535], "e dro i haue some": [0, 65535], "dro i haue some markes": [0, 65535], "i haue some markes of": [0, 65535], "haue some markes of yours": [0, 65535], "some markes of yours vpon": [0, 65535], "markes of yours vpon my": [0, 65535], "of yours vpon my pate": [0, 65535], "yours vpon my pate some": [0, 65535], "vpon my pate some of": [0, 65535], "my pate some of my": [0, 65535], "pate some of my mistris": [0, 65535], "some of my mistris markes": [0, 65535], "of my mistris markes vpon": [0, 65535], "my mistris markes vpon my": [0, 65535], "mistris markes vpon my shoulders": [0, 65535], "markes vpon my shoulders but": [0, 65535], "vpon my shoulders but not": [0, 65535], "my shoulders but not a": [0, 65535], "shoulders but not a thousand": [0, 65535], "but not a thousand markes": [0, 65535], "not a thousand markes betweene": [0, 65535], "a thousand markes betweene you": [0, 65535], "thousand markes betweene you both": [0, 65535], "markes betweene you both if": [0, 65535], "betweene you both if i": [0, 65535], "you both if i should": [0, 65535], "both if i should pay": [0, 65535], "if i should pay your": [0, 65535], "i should pay your worship": [0, 65535], "should pay your worship those": [0, 65535], "pay your worship those againe": [0, 65535], "your worship those againe perchance": [0, 65535], "worship those againe perchance you": [0, 65535], "those againe perchance you will": [0, 65535], "againe perchance you will not": [0, 65535], "perchance you will not beare": [0, 65535], "you will not beare them": [0, 65535], "will not beare them patiently": [0, 65535], "not beare them patiently ant": [0, 65535], "beare them patiently ant thy": [0, 65535], "them patiently ant thy mistris": [0, 65535], "patiently ant thy mistris markes": [0, 65535], "ant thy mistris markes what": [0, 65535], "thy mistris markes what mistris": [0, 65535], "mistris markes what mistris slaue": [0, 65535], "markes what mistris slaue hast": [0, 65535], "what mistris slaue hast thou": [0, 65535], "mistris slaue hast thou e": [0, 65535], "slaue hast thou e dro": [0, 65535], "hast thou e dro your": [0, 65535], "thou e dro your worships": [0, 65535], "e dro your worships wife": [0, 65535], "dro your worships wife my": [0, 65535], "your worships wife my mistris": [0, 65535], "worships wife my mistris at": [0, 65535], "wife my mistris at the": [0, 65535], "my mistris at the ph\u0153nix": [0, 65535], "mistris at the ph\u0153nix she": [0, 65535], "at the ph\u0153nix she that": [0, 65535], "the ph\u0153nix she that doth": [0, 65535], "ph\u0153nix she that doth fast": [0, 65535], "she that doth fast till": [0, 65535], "that doth fast till you": [0, 65535], "doth fast till you come": [0, 65535], "fast till you come home": [0, 65535], "till you come home to": [0, 65535], "you come home to dinner": [0, 65535], "come home to dinner and": [0, 65535], "home to dinner and praies": [0, 65535], "to dinner and praies that": [0, 65535], "dinner and praies that you": [0, 65535], "and praies that you will": [0, 65535], "praies that you will hie": [0, 65535], "that you will hie you": [0, 65535], "you will hie you home": [0, 65535], "will hie you home to": [0, 65535], "hie you home to dinner": [0, 65535], "you home to dinner ant": [0, 65535], "home to dinner ant what": [0, 65535], "to dinner ant what wilt": [0, 65535], "dinner ant what wilt thou": [0, 65535], "ant what wilt thou flout": [0, 65535], "what wilt thou flout me": [0, 65535], "wilt thou flout me thus": [0, 65535], "thou flout me thus vnto": [0, 65535], "flout me thus vnto my": [0, 65535], "me thus vnto my face": [0, 65535], "thus vnto my face being": [0, 65535], "vnto my face being forbid": [0, 65535], "my face being forbid there": [0, 65535], "face being forbid there take": [0, 65535], "being forbid there take you": [0, 65535], "forbid there take you that": [0, 65535], "there take you that sir": [0, 65535], "take you that sir knaue": [0, 65535], "you that sir knaue e": [0, 65535], "that sir knaue e dro": [0, 65535], "sir knaue e dro what": [0, 65535], "knaue e dro what meane": [0, 65535], "e dro what meane you": [0, 65535], "dro what meane you sir": [0, 65535], "what meane you sir for": [0, 65535], "meane you sir for god": [0, 65535], "you sir for god sake": [0, 65535], "sir for god sake hold": [0, 65535], "for god sake hold your": [0, 65535], "god sake hold your hands": [0, 65535], "sake hold your hands nay": [0, 65535], "hold your hands nay and": [0, 65535], "your hands nay and you": [0, 65535], "hands nay and you will": [0, 65535], "nay and you will not": [0, 65535], "and you will not sir": [0, 65535], "you will not sir ile": [0, 65535], "will not sir ile take": [0, 65535], "not sir ile take my": [0, 65535], "sir ile take my heeles": [0, 65535], "ile take my heeles exeunt": [0, 65535], "take my heeles exeunt dromio": [0, 65535], "my heeles exeunt dromio ep": [0, 65535], "heeles exeunt dromio ep ant": [0, 65535], "exeunt dromio ep ant vpon": [0, 65535], "dromio ep ant vpon my": [0, 65535], "ep ant vpon my life": [0, 65535], "ant vpon my life by": [0, 65535], "vpon my life by some": [0, 65535], "my life by some deuise": [0, 65535], "life by some deuise or": [0, 65535], "by some deuise or other": [0, 65535], "some deuise or other the": [0, 65535], "deuise or other the villaine": [0, 65535], "or other the villaine is": [0, 65535], "other the villaine is ore": [0, 65535], "the villaine is ore wrought": [0, 65535], "villaine is ore wrought of": [0, 65535], "is ore wrought of all": [0, 65535], "ore wrought of all my": [0, 65535], "wrought of all my monie": [0, 65535], "of all my monie they": [0, 65535], "all my monie they say": [0, 65535], "my monie they say this": [0, 65535], "monie they say this towne": [0, 65535], "they say this towne is": [0, 65535], "say this towne is full": [0, 65535], "this towne is full of": [0, 65535], "towne is full of cosenage": [0, 65535], "is full of cosenage as": [0, 65535], "full of cosenage as nimble": [0, 65535], "of cosenage as nimble iuglers": [0, 65535], "cosenage as nimble iuglers that": [0, 65535], "as nimble iuglers that deceiue": [0, 65535], "nimble iuglers that deceiue the": [0, 65535], "iuglers that deceiue the eie": [0, 65535], "that deceiue the eie darke": [0, 65535], "deceiue the eie darke working": [0, 65535], "the eie darke working sorcerers": [0, 65535], "eie darke working sorcerers that": [0, 65535], "darke working sorcerers that change": [0, 65535], "working sorcerers that change the": [0, 65535], "sorcerers that change the minde": [0, 65535], "that change the minde soule": [0, 65535], "change the minde soule killing": [0, 65535], "the minde soule killing witches": [0, 65535], "minde soule killing witches that": [0, 65535], "soule killing witches that deforme": [0, 65535], "killing witches that deforme the": [0, 65535], "witches that deforme the bodie": [0, 65535], "that deforme the bodie disguised": [0, 65535], "deforme the bodie disguised cheaters": [0, 65535], "the bodie disguised cheaters prating": [0, 65535], "bodie disguised cheaters prating mountebankes": [0, 65535], "disguised cheaters prating mountebankes and": [0, 65535], "cheaters prating mountebankes and manie": [0, 65535], "prating mountebankes and manie such": [0, 65535], "mountebankes and manie such like": [0, 65535], "and manie such like liberties": [0, 65535], "manie such like liberties of": [0, 65535], "such like liberties of sinne": [0, 65535], "like liberties of sinne if": [0, 65535], "liberties of sinne if it": [0, 65535], "of sinne if it proue": [0, 65535], "sinne if it proue so": [0, 65535], "if it proue so i": [0, 65535], "it proue so i will": [0, 65535], "proue so i will be": [0, 65535], "so i will be gone": [0, 65535], "i will be gone the": [0, 65535], "will be gone the sooner": [0, 65535], "be gone the sooner ile": [0, 65535], "gone the sooner ile to": [0, 65535], "the sooner ile to the": [0, 65535], "sooner ile to the centaur": [0, 65535], "ile to the centaur to": [0, 65535], "to the centaur to goe": [0, 65535], "the centaur to goe seeke": [0, 65535], "centaur to goe seeke this": [0, 65535], "to goe seeke this slaue": [0, 65535], "goe seeke this slaue i": [0, 65535], "seeke this slaue i greatly": [0, 65535], "this slaue i greatly feare": [0, 65535], "slaue i greatly feare my": [0, 65535], "i greatly feare my monie": [0, 65535], "greatly feare my monie is": [0, 65535], "feare my monie is not": [0, 65535], "my monie is not safe": [0, 65535], "the comedie of errors actus primus": [0, 65535], "comedie of errors actus primus scena": [0, 65535], "of errors actus primus scena prima": [0, 65535], "errors actus primus scena prima enter": [0, 65535], "actus primus scena prima enter the": [0, 65535], "primus scena prima enter the duke": [0, 65535], "scena prima enter the duke of": [0, 65535], "prima enter the duke of ephesus": [0, 65535], "enter the duke of ephesus with": [0, 65535], "the duke of ephesus with the": [0, 65535], "duke of ephesus with the merchant": [0, 65535], "of ephesus with the merchant of": [0, 65535], "ephesus with the merchant of siracusa": [0, 65535], "with the merchant of siracusa iaylor": [0, 65535], "the merchant of siracusa iaylor and": [0, 65535], "merchant of siracusa iaylor and other": [0, 65535], "of siracusa iaylor and other attendants": [0, 65535], "siracusa iaylor and other attendants marchant": [0, 65535], "iaylor and other attendants marchant broceed": [0, 65535], "and other attendants marchant broceed solinus": [0, 65535], "other attendants marchant broceed solinus to": [0, 65535], "attendants marchant broceed solinus to procure": [0, 65535], "marchant broceed solinus to procure my": [0, 65535], "broceed solinus to procure my fall": [0, 65535], "solinus to procure my fall and": [0, 65535], "to procure my fall and by": [0, 65535], "procure my fall and by the": [0, 65535], "my fall and by the doome": [0, 65535], "fall and by the doome of": [0, 65535], "and by the doome of death": [0, 65535], "by the doome of death end": [0, 65535], "the doome of death end woes": [0, 65535], "doome of death end woes and": [0, 65535], "of death end woes and all": [0, 65535], "death end woes and all duke": [0, 65535], "end woes and all duke merchant": [0, 65535], "woes and all duke merchant of": [0, 65535], "and all duke merchant of siracusa": [0, 65535], "all duke merchant of siracusa plead": [0, 65535], "duke merchant of siracusa plead no": [0, 65535], "merchant of siracusa plead no more": [0, 65535], "of siracusa plead no more i": [0, 65535], "siracusa plead no more i am": [0, 65535], "plead no more i am not": [0, 65535], "no more i am not partiall": [0, 65535], "more i am not partiall to": [0, 65535], "i am not partiall to infringe": [0, 65535], "am not partiall to infringe our": [0, 65535], "not partiall to infringe our lawes": [0, 65535], "partiall to infringe our lawes the": [0, 65535], "to infringe our lawes the enmity": [0, 65535], "infringe our lawes the enmity and": [0, 65535], "our lawes the enmity and discord": [0, 65535], "lawes the enmity and discord which": [0, 65535], "the enmity and discord which of": [0, 65535], "enmity and discord which of late": [0, 65535], "and discord which of late sprung": [0, 65535], "discord which of late sprung from": [0, 65535], "which of late sprung from the": [0, 65535], "of late sprung from the rancorous": [0, 65535], "late sprung from the rancorous outrage": [0, 65535], "sprung from the rancorous outrage of": [0, 65535], "from the rancorous outrage of your": [0, 65535], "the rancorous outrage of your duke": [0, 65535], "rancorous outrage of your duke to": [0, 65535], "outrage of your duke to merchants": [0, 65535], "of your duke to merchants our": [0, 65535], "your duke to merchants our well": [0, 65535], "duke to merchants our well dealing": [0, 65535], "to merchants our well dealing countrimen": [0, 65535], "merchants our well dealing countrimen who": [0, 65535], "our well dealing countrimen who wanting": [0, 65535], "well dealing countrimen who wanting gilders": [0, 65535], "dealing countrimen who wanting gilders to": [0, 65535], "countrimen who wanting gilders to redeeme": [0, 65535], "who wanting gilders to redeeme their": [0, 65535], "wanting gilders to redeeme their liues": [0, 65535], "gilders to redeeme their liues haue": [0, 65535], "to redeeme their liues haue seal'd": [0, 65535], "redeeme their liues haue seal'd his": [0, 65535], "their liues haue seal'd his rigorous": [0, 65535], "liues haue seal'd his rigorous statutes": [0, 65535], "haue seal'd his rigorous statutes with": [0, 65535], "seal'd his rigorous statutes with their": [0, 65535], "his rigorous statutes with their blouds": [0, 65535], "rigorous statutes with their blouds excludes": [0, 65535], "statutes with their blouds excludes all": [0, 65535], "with their blouds excludes all pitty": [0, 65535], "their blouds excludes all pitty from": [0, 65535], "blouds excludes all pitty from our": [0, 65535], "excludes all pitty from our threatning": [0, 65535], "all pitty from our threatning lookes": [0, 65535], "pitty from our threatning lookes for": [0, 65535], "from our threatning lookes for since": [0, 65535], "our threatning lookes for since the": [0, 65535], "threatning lookes for since the mortall": [0, 65535], "lookes for since the mortall and": [0, 65535], "for since the mortall and intestine": [0, 65535], "since the mortall and intestine iarres": [0, 65535], "the mortall and intestine iarres twixt": [0, 65535], "mortall and intestine iarres twixt thy": [0, 65535], "and intestine iarres twixt thy seditious": [0, 65535], "intestine iarres twixt thy seditious countrimen": [0, 65535], "iarres twixt thy seditious countrimen and": [0, 65535], "twixt thy seditious countrimen and vs": [0, 65535], "thy seditious countrimen and vs it": [0, 65535], "seditious countrimen and vs it hath": [0, 65535], "countrimen and vs it hath in": [0, 65535], "and vs it hath in solemne": [0, 65535], "vs it hath in solemne synodes": [0, 65535], "it hath in solemne synodes beene": [0, 65535], "hath in solemne synodes beene decreed": [0, 65535], "in solemne synodes beene decreed both": [0, 65535], "solemne synodes beene decreed both by": [0, 65535], "synodes beene decreed both by the": [0, 65535], "beene decreed both by the siracusians": [0, 65535], "decreed both by the siracusians and": [0, 65535], "both by the siracusians and our": [0, 65535], "by the siracusians and our selues": [0, 65535], "the siracusians and our selues to": [0, 65535], "siracusians and our selues to admit": [0, 65535], "and our selues to admit no": [0, 65535], "our selues to admit no trafficke": [0, 65535], "selues to admit no trafficke to": [0, 65535], "to admit no trafficke to our": [0, 65535], "admit no trafficke to our aduerse": [0, 65535], "no trafficke to our aduerse townes": [0, 65535], "trafficke to our aduerse townes nay": [0, 65535], "to our aduerse townes nay more": [0, 65535], "our aduerse townes nay more if": [0, 65535], "aduerse townes nay more if any": [0, 65535], "townes nay more if any borne": [0, 65535], "nay more if any borne at": [0, 65535], "more if any borne at ephesus": [0, 65535], "if any borne at ephesus be": [0, 65535], "any borne at ephesus be seene": [0, 65535], "borne at ephesus be seene at": [0, 65535], "at ephesus be seene at any": [0, 65535], "ephesus be seene at any siracusian": [0, 65535], "be seene at any siracusian marts": [0, 65535], "seene at any siracusian marts and": [0, 65535], "at any siracusian marts and fayres": [0, 65535], "any siracusian marts and fayres againe": [0, 65535], "siracusian marts and fayres againe if": [0, 65535], "marts and fayres againe if any": [0, 65535], "and fayres againe if any siracusian": [0, 65535], "fayres againe if any siracusian borne": [0, 65535], "againe if any siracusian borne come": [0, 65535], "if any siracusian borne come to": [0, 65535], "any siracusian borne come to the": [0, 65535], "siracusian borne come to the bay": [0, 65535], "borne come to the bay of": [0, 65535], "come to the bay of ephesus": [0, 65535], "to the bay of ephesus he": [0, 65535], "the bay of ephesus he dies": [0, 65535], "bay of ephesus he dies his": [0, 65535], "of ephesus he dies his goods": [0, 65535], "ephesus he dies his goods confiscate": [0, 65535], "he dies his goods confiscate to": [0, 65535], "dies his goods confiscate to the": [0, 65535], "his goods confiscate to the dukes": [0, 65535], "goods confiscate to the dukes dispose": [0, 65535], "confiscate to the dukes dispose vnlesse": [0, 65535], "to the dukes dispose vnlesse a": [0, 65535], "the dukes dispose vnlesse a thousand": [0, 65535], "dukes dispose vnlesse a thousand markes": [0, 65535], "dispose vnlesse a thousand markes be": [0, 65535], "vnlesse a thousand markes be leuied": [0, 65535], "a thousand markes be leuied to": [0, 65535], "thousand markes be leuied to quit": [0, 65535], "markes be leuied to quit the": [0, 65535], "be leuied to quit the penalty": [0, 65535], "leuied to quit the penalty and": [0, 65535], "to quit the penalty and to": [0, 65535], "quit the penalty and to ransome": [0, 65535], "the penalty and to ransome him": [0, 65535], "penalty and to ransome him thy": [0, 65535], "and to ransome him thy substance": [0, 65535], "to ransome him thy substance valued": [0, 65535], "ransome him thy substance valued at": [0, 65535], "him thy substance valued at the": [0, 65535], "thy substance valued at the highest": [0, 65535], "substance valued at the highest rate": [0, 65535], "valued at the highest rate cannot": [0, 65535], "at the highest rate cannot amount": [0, 65535], "the highest rate cannot amount vnto": [0, 65535], "highest rate cannot amount vnto a": [0, 65535], "rate cannot amount vnto a hundred": [0, 65535], "cannot amount vnto a hundred markes": [0, 65535], "amount vnto a hundred markes therefore": [0, 65535], "vnto a hundred markes therefore by": [0, 65535], "a hundred markes therefore by law": [0, 65535], "hundred markes therefore by law thou": [0, 65535], "markes therefore by law thou art": [0, 65535], "therefore by law thou art condemn'd": [0, 65535], "by law thou art condemn'd to": [0, 65535], "law thou art condemn'd to die": [0, 65535], "thou art condemn'd to die mer": [0, 65535], "art condemn'd to die mer yet": [0, 65535], "condemn'd to die mer yet this": [0, 65535], "to die mer yet this my": [0, 65535], "die mer yet this my comfort": [0, 65535], "mer yet this my comfort when": [0, 65535], "yet this my comfort when your": [0, 65535], "this my comfort when your words": [0, 65535], "my comfort when your words are": [0, 65535], "comfort when your words are done": [0, 65535], "when your words are done my": [0, 65535], "your words are done my woes": [0, 65535], "words are done my woes end": [0, 65535], "are done my woes end likewise": [0, 65535], "done my woes end likewise with": [0, 65535], "my woes end likewise with the": [0, 65535], "woes end likewise with the euening": [0, 65535], "end likewise with the euening sonne": [0, 65535], "likewise with the euening sonne duk": [0, 65535], "with the euening sonne duk well": [0, 65535], "the euening sonne duk well siracusian": [0, 65535], "euening sonne duk well siracusian say": [0, 65535], "sonne duk well siracusian say in": [0, 65535], "duk well siracusian say in briefe": [0, 65535], "well siracusian say in briefe the": [0, 65535], "siracusian say in briefe the cause": [0, 65535], "say in briefe the cause why": [0, 65535], "in briefe the cause why thou": [0, 65535], "briefe the cause why thou departedst": [0, 65535], "the cause why thou departedst from": [0, 65535], "cause why thou departedst from thy": [0, 65535], "why thou departedst from thy natiue": [0, 65535], "thou departedst from thy natiue home": [0, 65535], "departedst from thy natiue home and": [0, 65535], "from thy natiue home and for": [0, 65535], "thy natiue home and for what": [0, 65535], "natiue home and for what cause": [0, 65535], "home and for what cause thou": [0, 65535], "and for what cause thou cam'st": [0, 65535], "for what cause thou cam'st to": [0, 65535], "what cause thou cam'st to ephesus": [0, 65535], "cause thou cam'st to ephesus mer": [0, 65535], "thou cam'st to ephesus mer a": [0, 65535], "cam'st to ephesus mer a heauier": [0, 65535], "to ephesus mer a heauier taske": [0, 65535], "ephesus mer a heauier taske could": [0, 65535], "mer a heauier taske could not": [0, 65535], "a heauier taske could not haue": [0, 65535], "heauier taske could not haue beene": [0, 65535], "taske could not haue beene impos'd": [0, 65535], "could not haue beene impos'd then": [0, 65535], "not haue beene impos'd then i": [0, 65535], "haue beene impos'd then i to": [0, 65535], "beene impos'd then i to speake": [0, 65535], "impos'd then i to speake my": [0, 65535], "then i to speake my griefes": [0, 65535], "i to speake my griefes vnspeakeable": [0, 65535], "to speake my griefes vnspeakeable yet": [0, 65535], "speake my griefes vnspeakeable yet that": [0, 65535], "my griefes vnspeakeable yet that the": [0, 65535], "griefes vnspeakeable yet that the world": [0, 65535], "vnspeakeable yet that the world may": [0, 65535], "yet that the world may witnesse": [0, 65535], "that the world may witnesse that": [0, 65535], "the world may witnesse that my": [0, 65535], "world may witnesse that my end": [0, 65535], "may witnesse that my end was": [0, 65535], "witnesse that my end was wrought": [0, 65535], "that my end was wrought by": [0, 65535], "my end was wrought by nature": [0, 65535], "end was wrought by nature not": [0, 65535], "was wrought by nature not by": [0, 65535], "wrought by nature not by vile": [0, 65535], "by nature not by vile offence": [0, 65535], "nature not by vile offence ile": [0, 65535], "not by vile offence ile vtter": [0, 65535], "by vile offence ile vtter what": [0, 65535], "vile offence ile vtter what my": [0, 65535], "offence ile vtter what my sorrow": [0, 65535], "ile vtter what my sorrow giues": [0, 65535], "vtter what my sorrow giues me": [0, 65535], "what my sorrow giues me leaue": [0, 65535], "my sorrow giues me leaue in": [0, 65535], "sorrow giues me leaue in syracusa": [0, 65535], "giues me leaue in syracusa was": [0, 65535], "me leaue in syracusa was i": [0, 65535], "leaue in syracusa was i borne": [0, 65535], "in syracusa was i borne and": [0, 65535], "syracusa was i borne and wedde": [0, 65535], "was i borne and wedde vnto": [0, 65535], "i borne and wedde vnto a": [0, 65535], "borne and wedde vnto a woman": [0, 65535], "and wedde vnto a woman happy": [0, 65535], "wedde vnto a woman happy but": [0, 65535], "vnto a woman happy but for": [0, 65535], "a woman happy but for me": [0, 65535], "woman happy but for me and": [0, 65535], "happy but for me and by": [0, 65535], "but for me and by me": [0, 65535], "for me and by me had": [0, 65535], "me and by me had not": [0, 65535], "and by me had not our": [0, 65535], "by me had not our hap": [0, 65535], "me had not our hap beene": [0, 65535], "had not our hap beene bad": [0, 65535], "not our hap beene bad with": [0, 65535], "our hap beene bad with her": [0, 65535], "hap beene bad with her i": [0, 65535], "beene bad with her i liu'd": [0, 65535], "bad with her i liu'd in": [0, 65535], "with her i liu'd in ioy": [0, 65535], "her i liu'd in ioy our": [0, 65535], "i liu'd in ioy our wealth": [0, 65535], "liu'd in ioy our wealth increast": [0, 65535], "in ioy our wealth increast by": [0, 65535], "ioy our wealth increast by prosperous": [0, 65535], "our wealth increast by prosperous voyages": [0, 65535], "wealth increast by prosperous voyages i": [0, 65535], "increast by prosperous voyages i often": [0, 65535], "by prosperous voyages i often made": [0, 65535], "prosperous voyages i often made to": [0, 65535], "voyages i often made to epidamium": [0, 65535], "i often made to epidamium till": [0, 65535], "often made to epidamium till my": [0, 65535], "made to epidamium till my factors": [0, 65535], "to epidamium till my factors death": [0, 65535], "epidamium till my factors death and": [0, 65535], "till my factors death and he": [0, 65535], "my factors death and he great": [0, 65535], "factors death and he great care": [0, 65535], "death and he great care of": [0, 65535], "and he great care of goods": [0, 65535], "he great care of goods at": [0, 65535], "great care of goods at randone": [0, 65535], "care of goods at randone left": [0, 65535], "of goods at randone left drew": [0, 65535], "goods at randone left drew me": [0, 65535], "at randone left drew me from": [0, 65535], "randone left drew me from kinde": [0, 65535], "left drew me from kinde embracements": [0, 65535], "drew me from kinde embracements of": [0, 65535], "me from kinde embracements of my": [0, 65535], "from kinde embracements of my spouse": [0, 65535], "kinde embracements of my spouse from": [0, 65535], "embracements of my spouse from whom": [0, 65535], "of my spouse from whom my": [0, 65535], "my spouse from whom my absence": [0, 65535], "spouse from whom my absence was": [0, 65535], "from whom my absence was not": [0, 65535], "whom my absence was not sixe": [0, 65535], "my absence was not sixe moneths": [0, 65535], "absence was not sixe moneths olde": [0, 65535], "was not sixe moneths olde before": [0, 65535], "not sixe moneths olde before her": [0, 65535], "sixe moneths olde before her selfe": [0, 65535], "moneths olde before her selfe almost": [0, 65535], "olde before her selfe almost at": [0, 65535], "before her selfe almost at fainting": [0, 65535], "her selfe almost at fainting vnder": [0, 65535], "selfe almost at fainting vnder the": [0, 65535], "almost at fainting vnder the pleasing": [0, 65535], "at fainting vnder the pleasing punishment": [0, 65535], "fainting vnder the pleasing punishment that": [0, 65535], "vnder the pleasing punishment that women": [0, 65535], "the pleasing punishment that women beare": [0, 65535], "pleasing punishment that women beare had": [0, 65535], "punishment that women beare had made": [0, 65535], "that women beare had made prouision": [0, 65535], "women beare had made prouision for": [0, 65535], "beare had made prouision for her": [0, 65535], "had made prouision for her following": [0, 65535], "made prouision for her following me": [0, 65535], "prouision for her following me and": [0, 65535], "for her following me and soone": [0, 65535], "her following me and soone and": [0, 65535], "following me and soone and safe": [0, 65535], "me and soone and safe arriued": [0, 65535], "and soone and safe arriued where": [0, 65535], "soone and safe arriued where i": [0, 65535], "and safe arriued where i was": [0, 65535], "safe arriued where i was there": [0, 65535], "arriued where i was there had": [0, 65535], "where i was there had she": [0, 65535], "i was there had she not": [0, 65535], "was there had she not beene": [0, 65535], "there had she not beene long": [0, 65535], "had she not beene long but": [0, 65535], "she not beene long but she": [0, 65535], "not beene long but she became": [0, 65535], "beene long but she became a": [0, 65535], "long but she became a ioyfull": [0, 65535], "but she became a ioyfull mother": [0, 65535], "she became a ioyfull mother of": [0, 65535], "became a ioyfull mother of two": [0, 65535], "a ioyfull mother of two goodly": [0, 65535], "ioyfull mother of two goodly sonnes": [0, 65535], "mother of two goodly sonnes and": [0, 65535], "of two goodly sonnes and which": [0, 65535], "two goodly sonnes and which was": [0, 65535], "goodly sonnes and which was strange": [0, 65535], "sonnes and which was strange the": [0, 65535], "and which was strange the one": [0, 65535], "which was strange the one so": [0, 65535], "was strange the one so like": [0, 65535], "strange the one so like the": [0, 65535], "the one so like the other": [0, 65535], "one so like the other as": [0, 65535], "so like the other as could": [0, 65535], "like the other as could not": [0, 65535], "the other as could not be": [0, 65535], "other as could not be distinguish'd": [0, 65535], "as could not be distinguish'd but": [0, 65535], "could not be distinguish'd but by": [0, 65535], "not be distinguish'd but by names": [0, 65535], "be distinguish'd but by names that": [0, 65535], "distinguish'd but by names that very": [0, 65535], "but by names that very howre": [0, 65535], "by names that very howre and": [0, 65535], "names that very howre and in": [0, 65535], "that very howre and in the": [0, 65535], "very howre and in the selfe": [0, 65535], "howre and in the selfe same": [0, 65535], "and in the selfe same inne": [0, 65535], "in the selfe same inne a": [0, 65535], "the selfe same inne a meane": [0, 65535], "selfe same inne a meane woman": [0, 65535], "same inne a meane woman was": [0, 65535], "inne a meane woman was deliuered": [0, 65535], "a meane woman was deliuered of": [0, 65535], "meane woman was deliuered of such": [0, 65535], "woman was deliuered of such a": [0, 65535], "was deliuered of such a burthen": [0, 65535], "deliuered of such a burthen male": [0, 65535], "of such a burthen male twins": [0, 65535], "such a burthen male twins both": [0, 65535], "a burthen male twins both alike": [0, 65535], "burthen male twins both alike those": [0, 65535], "male twins both alike those for": [0, 65535], "twins both alike those for their": [0, 65535], "both alike those for their parents": [0, 65535], "alike those for their parents were": [0, 65535], "those for their parents were exceeding": [0, 65535], "for their parents were exceeding poore": [0, 65535], "their parents were exceeding poore i": [0, 65535], "parents were exceeding poore i bought": [0, 65535], "were exceeding poore i bought and": [0, 65535], "exceeding poore i bought and brought": [0, 65535], "poore i bought and brought vp": [0, 65535], "i bought and brought vp to": [0, 65535], "bought and brought vp to attend": [0, 65535], "and brought vp to attend my": [0, 65535], "brought vp to attend my sonnes": [0, 65535], "vp to attend my sonnes my": [0, 65535], "to attend my sonnes my wife": [0, 65535], "attend my sonnes my wife not": [0, 65535], "my sonnes my wife not meanely": [0, 65535], "sonnes my wife not meanely prowd": [0, 65535], "my wife not meanely prowd of": [0, 65535], "wife not meanely prowd of two": [0, 65535], "not meanely prowd of two such": [0, 65535], "meanely prowd of two such boyes": [0, 65535], "prowd of two such boyes made": [0, 65535], "of two such boyes made daily": [0, 65535], "two such boyes made daily motions": [0, 65535], "such boyes made daily motions for": [0, 65535], "boyes made daily motions for our": [0, 65535], "made daily motions for our home": [0, 65535], "daily motions for our home returne": [0, 65535], "motions for our home returne vnwilling": [0, 65535], "for our home returne vnwilling i": [0, 65535], "our home returne vnwilling i agreed": [0, 65535], "home returne vnwilling i agreed alas": [0, 65535], "returne vnwilling i agreed alas too": [0, 65535], "vnwilling i agreed alas too soone": [0, 65535], "i agreed alas too soone wee": [0, 65535], "agreed alas too soone wee came": [0, 65535], "alas too soone wee came aboord": [0, 65535], "too soone wee came aboord a": [0, 65535], "soone wee came aboord a league": [0, 65535], "wee came aboord a league from": [0, 65535], "came aboord a league from epidamium": [0, 65535], "aboord a league from epidamium had": [0, 65535], "a league from epidamium had we": [0, 65535], "league from epidamium had we saild": [0, 65535], "from epidamium had we saild before": [0, 65535], "epidamium had we saild before the": [0, 65535], "had we saild before the alwaies": [0, 65535], "we saild before the alwaies winde": [0, 65535], "saild before the alwaies winde obeying": [0, 65535], "before the alwaies winde obeying deepe": [0, 65535], "the alwaies winde obeying deepe gaue": [0, 65535], "alwaies winde obeying deepe gaue any": [0, 65535], "winde obeying deepe gaue any tragicke": [0, 65535], "obeying deepe gaue any tragicke instance": [0, 65535], "deepe gaue any tragicke instance of": [0, 65535], "gaue any tragicke instance of our": [0, 65535], "any tragicke instance of our harme": [0, 65535], "tragicke instance of our harme but": [0, 65535], "instance of our harme but longer": [0, 65535], "of our harme but longer did": [0, 65535], "our harme but longer did we": [0, 65535], "harme but longer did we not": [0, 65535], "but longer did we not retaine": [0, 65535], "longer did we not retaine much": [0, 65535], "did we not retaine much hope": [0, 65535], "we not retaine much hope for": [0, 65535], "not retaine much hope for what": [0, 65535], "retaine much hope for what obscured": [0, 65535], "much hope for what obscured light": [0, 65535], "hope for what obscured light the": [0, 65535], "for what obscured light the heauens": [0, 65535], "what obscured light the heauens did": [0, 65535], "obscured light the heauens did grant": [0, 65535], "light the heauens did grant did": [0, 65535], "the heauens did grant did but": [0, 65535], "heauens did grant did but conuay": [0, 65535], "did grant did but conuay vnto": [0, 65535], "grant did but conuay vnto our": [0, 65535], "did but conuay vnto our fearefull": [0, 65535], "but conuay vnto our fearefull mindes": [0, 65535], "conuay vnto our fearefull mindes a": [0, 65535], "vnto our fearefull mindes a doubtfull": [0, 65535], "our fearefull mindes a doubtfull warrant": [0, 65535], "fearefull mindes a doubtfull warrant of": [0, 65535], "mindes a doubtfull warrant of immediate": [0, 65535], "a doubtfull warrant of immediate death": [0, 65535], "doubtfull warrant of immediate death which": [0, 65535], "warrant of immediate death which though": [0, 65535], "of immediate death which though my": [0, 65535], "immediate death which though my selfe": [0, 65535], "death which though my selfe would": [0, 65535], "which though my selfe would gladly": [0, 65535], "though my selfe would gladly haue": [0, 65535], "my selfe would gladly haue imbrac'd": [0, 65535], "selfe would gladly haue imbrac'd yet": [0, 65535], "would gladly haue imbrac'd yet the": [0, 65535], "gladly haue imbrac'd yet the incessant": [0, 65535], "haue imbrac'd yet the incessant weepings": [0, 65535], "imbrac'd yet the incessant weepings of": [0, 65535], "yet the incessant weepings of my": [0, 65535], "the incessant weepings of my wife": [0, 65535], "incessant weepings of my wife weeping": [0, 65535], "weepings of my wife weeping before": [0, 65535], "of my wife weeping before for": [0, 65535], "my wife weeping before for what": [0, 65535], "wife weeping before for what she": [0, 65535], "weeping before for what she saw": [0, 65535], "before for what she saw must": [0, 65535], "for what she saw must come": [0, 65535], "what she saw must come and": [0, 65535], "she saw must come and pitteous": [0, 65535], "saw must come and pitteous playnings": [0, 65535], "must come and pitteous playnings of": [0, 65535], "come and pitteous playnings of the": [0, 65535], "and pitteous playnings of the prettie": [0, 65535], "pitteous playnings of the prettie babes": [0, 65535], "playnings of the prettie babes that": [0, 65535], "of the prettie babes that mourn'd": [0, 65535], "the prettie babes that mourn'd for": [0, 65535], "prettie babes that mourn'd for fashion": [0, 65535], "babes that mourn'd for fashion ignorant": [0, 65535], "that mourn'd for fashion ignorant what": [0, 65535], "mourn'd for fashion ignorant what to": [0, 65535], "for fashion ignorant what to feare": [0, 65535], "fashion ignorant what to feare forst": [0, 65535], "ignorant what to feare forst me": [0, 65535], "what to feare forst me to": [0, 65535], "to feare forst me to seeke": [0, 65535], "feare forst me to seeke delayes": [0, 65535], "forst me to seeke delayes for": [0, 65535], "me to seeke delayes for them": [0, 65535], "to seeke delayes for them and": [0, 65535], "seeke delayes for them and me": [0, 65535], "delayes for them and me and": [0, 65535], "for them and me and this": [0, 65535], "them and me and this it": [0, 65535], "and me and this it was": [0, 65535], "me and this it was for": [0, 65535], "and this it was for other": [0, 65535], "this it was for other meanes": [0, 65535], "it was for other meanes was": [0, 65535], "was for other meanes was none": [0, 65535], "for other meanes was none the": [0, 65535], "other meanes was none the sailors": [0, 65535], "meanes was none the sailors sought": [0, 65535], "was none the sailors sought for": [0, 65535], "none the sailors sought for safety": [0, 65535], "the sailors sought for safety by": [0, 65535], "sailors sought for safety by our": [0, 65535], "sought for safety by our boate": [0, 65535], "for safety by our boate and": [0, 65535], "safety by our boate and left": [0, 65535], "by our boate and left the": [0, 65535], "our boate and left the ship": [0, 65535], "boate and left the ship then": [0, 65535], "and left the ship then sinking": [0, 65535], "left the ship then sinking ripe": [0, 65535], "the ship then sinking ripe to": [0, 65535], "ship then sinking ripe to vs": [0, 65535], "then sinking ripe to vs my": [0, 65535], "sinking ripe to vs my wife": [0, 65535], "ripe to vs my wife more": [0, 65535], "to vs my wife more carefull": [0, 65535], "vs my wife more carefull for": [0, 65535], "my wife more carefull for the": [0, 65535], "wife more carefull for the latter": [0, 65535], "more carefull for the latter borne": [0, 65535], "carefull for the latter borne had": [0, 65535], "for the latter borne had fastned": [0, 65535], "the latter borne had fastned him": [0, 65535], "latter borne had fastned him vnto": [0, 65535], "borne had fastned him vnto a": [0, 65535], "had fastned him vnto a small": [0, 65535], "fastned him vnto a small spare": [0, 65535], "him vnto a small spare mast": [0, 65535], "vnto a small spare mast such": [0, 65535], "a small spare mast such as": [0, 65535], "small spare mast such as sea": [0, 65535], "spare mast such as sea faring": [0, 65535], "mast such as sea faring men": [0, 65535], "such as sea faring men prouide": [0, 65535], "as sea faring men prouide for": [0, 65535], "sea faring men prouide for stormes": [0, 65535], "faring men prouide for stormes to": [0, 65535], "men prouide for stormes to him": [0, 65535], "prouide for stormes to him one": [0, 65535], "for stormes to him one of": [0, 65535], "stormes to him one of the": [0, 65535], "to him one of the other": [0, 65535], "him one of the other twins": [0, 65535], "one of the other twins was": [0, 65535], "of the other twins was bound": [0, 65535], "the other twins was bound whil'st": [0, 65535], "other twins was bound whil'st i": [0, 65535], "twins was bound whil'st i had": [0, 65535], "was bound whil'st i had beene": [0, 65535], "bound whil'st i had beene like": [0, 65535], "whil'st i had beene like heedfull": [0, 65535], "i had beene like heedfull of": [0, 65535], "had beene like heedfull of the": [0, 65535], "beene like heedfull of the other": [0, 65535], "like heedfull of the other the": [0, 65535], "heedfull of the other the children": [0, 65535], "of the other the children thus": [0, 65535], "the other the children thus dispos'd": [0, 65535], "other the children thus dispos'd my": [0, 65535], "the children thus dispos'd my wife": [0, 65535], "children thus dispos'd my wife and": [0, 65535], "thus dispos'd my wife and i": [0, 65535], "dispos'd my wife and i fixing": [0, 65535], "my wife and i fixing our": [0, 65535], "wife and i fixing our eyes": [0, 65535], "and i fixing our eyes on": [0, 65535], "i fixing our eyes on whom": [0, 65535], "fixing our eyes on whom our": [0, 65535], "our eyes on whom our care": [0, 65535], "eyes on whom our care was": [0, 65535], "on whom our care was fixt": [0, 65535], "whom our care was fixt fastned": [0, 65535], "our care was fixt fastned our": [0, 65535], "care was fixt fastned our selues": [0, 65535], "was fixt fastned our selues at": [0, 65535], "fixt fastned our selues at eyther": [0, 65535], "fastned our selues at eyther end": [0, 65535], "our selues at eyther end the": [0, 65535], "selues at eyther end the mast": [0, 65535], "at eyther end the mast and": [0, 65535], "eyther end the mast and floating": [0, 65535], "end the mast and floating straight": [0, 65535], "the mast and floating straight obedient": [0, 65535], "mast and floating straight obedient to": [0, 65535], "and floating straight obedient to the": [0, 65535], "floating straight obedient to the streame": [0, 65535], "straight obedient to the streame was": [0, 65535], "obedient to the streame was carried": [0, 65535], "to the streame was carried towards": [0, 65535], "the streame was carried towards corinth": [0, 65535], "streame was carried towards corinth as": [0, 65535], "was carried towards corinth as we": [0, 65535], "carried towards corinth as we thought": [0, 65535], "towards corinth as we thought at": [0, 65535], "corinth as we thought at length": [0, 65535], "as we thought at length the": [0, 65535], "we thought at length the sonne": [0, 65535], "thought at length the sonne gazing": [0, 65535], "at length the sonne gazing vpon": [0, 65535], "length the sonne gazing vpon the": [0, 65535], "the sonne gazing vpon the earth": [0, 65535], "sonne gazing vpon the earth disperst": [0, 65535], "gazing vpon the earth disperst those": [0, 65535], "vpon the earth disperst those vapours": [0, 65535], "the earth disperst those vapours that": [0, 65535], "earth disperst those vapours that offended": [0, 65535], "disperst those vapours that offended vs": [0, 65535], "those vapours that offended vs and": [0, 65535], "vapours that offended vs and by": [0, 65535], "that offended vs and by the": [0, 65535], "offended vs and by the benefit": [0, 65535], "vs and by the benefit of": [0, 65535], "and by the benefit of his": [0, 65535], "by the benefit of his wished": [0, 65535], "the benefit of his wished light": [0, 65535], "benefit of his wished light the": [0, 65535], "of his wished light the seas": [0, 65535], "his wished light the seas waxt": [0, 65535], "wished light the seas waxt calme": [0, 65535], "light the seas waxt calme and": [0, 65535], "the seas waxt calme and we": [0, 65535], "seas waxt calme and we discouered": [0, 65535], "waxt calme and we discouered two": [0, 65535], "calme and we discouered two shippes": [0, 65535], "and we discouered two shippes from": [0, 65535], "we discouered two shippes from farre": [0, 65535], "discouered two shippes from farre making": [0, 65535], "two shippes from farre making amaine": [0, 65535], "shippes from farre making amaine to": [0, 65535], "from farre making amaine to vs": [0, 65535], "farre making amaine to vs of": [0, 65535], "making amaine to vs of corinth": [0, 65535], "amaine to vs of corinth that": [0, 65535], "to vs of corinth that of": [0, 65535], "vs of corinth that of epidarus": [0, 65535], "of corinth that of epidarus this": [0, 65535], "corinth that of epidarus this but": [0, 65535], "that of epidarus this but ere": [0, 65535], "of epidarus this but ere they": [0, 65535], "epidarus this but ere they came": [0, 65535], "this but ere they came oh": [0, 65535], "but ere they came oh let": [0, 65535], "ere they came oh let me": [0, 65535], "they came oh let me say": [0, 65535], "came oh let me say no": [0, 65535], "oh let me say no more": [0, 65535], "let me say no more gather": [0, 65535], "me say no more gather the": [0, 65535], "say no more gather the sequell": [0, 65535], "no more gather the sequell by": [0, 65535], "more gather the sequell by that": [0, 65535], "gather the sequell by that went": [0, 65535], "the sequell by that went before": [0, 65535], "sequell by that went before duk": [0, 65535], "by that went before duk nay": [0, 65535], "that went before duk nay forward": [0, 65535], "went before duk nay forward old": [0, 65535], "before duk nay forward old man": [0, 65535], "duk nay forward old man doe": [0, 65535], "nay forward old man doe not": [0, 65535], "forward old man doe not breake": [0, 65535], "old man doe not breake off": [0, 65535], "man doe not breake off so": [0, 65535], "doe not breake off so for": [0, 65535], "not breake off so for we": [0, 65535], "breake off so for we may": [0, 65535], "off so for we may pitty": [0, 65535], "so for we may pitty though": [0, 65535], "for we may pitty though not": [0, 65535], "we may pitty though not pardon": [0, 65535], "may pitty though not pardon thee": [0, 65535], "pitty though not pardon thee merch": [0, 65535], "though not pardon thee merch oh": [0, 65535], "not pardon thee merch oh had": [0, 65535], "pardon thee merch oh had the": [0, 65535], "thee merch oh had the gods": [0, 65535], "merch oh had the gods done": [0, 65535], "oh had the gods done so": [0, 65535], "had the gods done so i": [0, 65535], "the gods done so i had": [0, 65535], "gods done so i had not": [0, 65535], "done so i had not now": [0, 65535], "so i had not now worthily": [0, 65535], "i had not now worthily tearm'd": [0, 65535], "had not now worthily tearm'd them": [0, 65535], "not now worthily tearm'd them mercilesse": [0, 65535], "now worthily tearm'd them mercilesse to": [0, 65535], "worthily tearm'd them mercilesse to vs": [0, 65535], "tearm'd them mercilesse to vs for": [0, 65535], "them mercilesse to vs for ere": [0, 65535], "mercilesse to vs for ere the": [0, 65535], "to vs for ere the ships": [0, 65535], "vs for ere the ships could": [0, 65535], "for ere the ships could meet": [0, 65535], "ere the ships could meet by": [0, 65535], "the ships could meet by twice": [0, 65535], "ships could meet by twice fiue": [0, 65535], "could meet by twice fiue leagues": [0, 65535], "meet by twice fiue leagues we": [0, 65535], "by twice fiue leagues we were": [0, 65535], "twice fiue leagues we were encountred": [0, 65535], "fiue leagues we were encountred by": [0, 65535], "leagues we were encountred by a": [0, 65535], "we were encountred by a mighty": [0, 65535], "were encountred by a mighty rocke": [0, 65535], "encountred by a mighty rocke which": [0, 65535], "by a mighty rocke which being": [0, 65535], "a mighty rocke which being violently": [0, 65535], "mighty rocke which being violently borne": [0, 65535], "rocke which being violently borne vp": [0, 65535], "which being violently borne vp our": [0, 65535], "being violently borne vp our helpefull": [0, 65535], "violently borne vp our helpefull ship": [0, 65535], "borne vp our helpefull ship was": [0, 65535], "vp our helpefull ship was splitted": [0, 65535], "our helpefull ship was splitted in": [0, 65535], "helpefull ship was splitted in the": [0, 65535], "ship was splitted in the midst": [0, 65535], "was splitted in the midst so": [0, 65535], "splitted in the midst so that": [0, 65535], "in the midst so that in": [0, 65535], "the midst so that in this": [0, 65535], "midst so that in this vniust": [0, 65535], "so that in this vniust diuorce": [0, 65535], "that in this vniust diuorce of": [0, 65535], "in this vniust diuorce of vs": [0, 65535], "this vniust diuorce of vs fortune": [0, 65535], "vniust diuorce of vs fortune had": [0, 65535], "diuorce of vs fortune had left": [0, 65535], "of vs fortune had left to": [0, 65535], "vs fortune had left to both": [0, 65535], "fortune had left to both of": [0, 65535], "had left to both of vs": [0, 65535], "left to both of vs alike": [0, 65535], "to both of vs alike what": [0, 65535], "both of vs alike what to": [0, 65535], "of vs alike what to delight": [0, 65535], "vs alike what to delight in": [0, 65535], "alike what to delight in what": [0, 65535], "what to delight in what to": [0, 65535], "to delight in what to sorrow": [0, 65535], "delight in what to sorrow for": [0, 65535], "in what to sorrow for her": [0, 65535], "what to sorrow for her part": [0, 65535], "to sorrow for her part poore": [0, 65535], "sorrow for her part poore soule": [0, 65535], "for her part poore soule seeming": [0, 65535], "her part poore soule seeming as": [0, 65535], "part poore soule seeming as burdened": [0, 65535], "poore soule seeming as burdened with": [0, 65535], "soule seeming as burdened with lesser": [0, 65535], "seeming as burdened with lesser waight": [0, 65535], "as burdened with lesser waight but": [0, 65535], "burdened with lesser waight but not": [0, 65535], "with lesser waight but not with": [0, 65535], "lesser waight but not with lesser": [0, 65535], "waight but not with lesser woe": [0, 65535], "but not with lesser woe was": [0, 65535], "not with lesser woe was carried": [0, 65535], "with lesser woe was carried with": [0, 65535], "lesser woe was carried with more": [0, 65535], "woe was carried with more speed": [0, 65535], "was carried with more speed before": [0, 65535], "carried with more speed before the": [0, 65535], "with more speed before the winde": [0, 65535], "more speed before the winde and": [0, 65535], "speed before the winde and in": [0, 65535], "before the winde and in our": [0, 65535], "the winde and in our sight": [0, 65535], "winde and in our sight they": [0, 65535], "and in our sight they three": [0, 65535], "in our sight they three were": [0, 65535], "our sight they three were taken": [0, 65535], "sight they three were taken vp": [0, 65535], "they three were taken vp by": [0, 65535], "three were taken vp by fishermen": [0, 65535], "were taken vp by fishermen of": [0, 65535], "taken vp by fishermen of corinth": [0, 65535], "vp by fishermen of corinth as": [0, 65535], "by fishermen of corinth as we": [0, 65535], "fishermen of corinth as we thought": [0, 65535], "of corinth as we thought at": [0, 65535], "as we thought at length another": [0, 65535], "we thought at length another ship": [0, 65535], "thought at length another ship had": [0, 65535], "at length another ship had seiz'd": [0, 65535], "length another ship had seiz'd on": [0, 65535], "another ship had seiz'd on vs": [0, 65535], "ship had seiz'd on vs and": [0, 65535], "had seiz'd on vs and knowing": [0, 65535], "seiz'd on vs and knowing whom": [0, 65535], "on vs and knowing whom it": [0, 65535], "vs and knowing whom it was": [0, 65535], "and knowing whom it was their": [0, 65535], "knowing whom it was their hap": [0, 65535], "whom it was their hap to": [0, 65535], "it was their hap to saue": [0, 65535], "was their hap to saue gaue": [0, 65535], "their hap to saue gaue healthfull": [0, 65535], "hap to saue gaue healthfull welcome": [0, 65535], "to saue gaue healthfull welcome to": [0, 65535], "saue gaue healthfull welcome to their": [0, 65535], "gaue healthfull welcome to their ship": [0, 65535], "healthfull welcome to their ship wrackt": [0, 65535], "welcome to their ship wrackt guests": [0, 65535], "to their ship wrackt guests and": [0, 65535], "their ship wrackt guests and would": [0, 65535], "ship wrackt guests and would haue": [0, 65535], "wrackt guests and would haue reft": [0, 65535], "guests and would haue reft the": [0, 65535], "and would haue reft the fishers": [0, 65535], "would haue reft the fishers of": [0, 65535], "haue reft the fishers of their": [0, 65535], "reft the fishers of their prey": [0, 65535], "the fishers of their prey had": [0, 65535], "fishers of their prey had not": [0, 65535], "of their prey had not their": [0, 65535], "their prey had not their backe": [0, 65535], "prey had not their backe beene": [0, 65535], "had not their backe beene very": [0, 65535], "not their backe beene very slow": [0, 65535], "their backe beene very slow of": [0, 65535], "backe beene very slow of saile": [0, 65535], "beene very slow of saile and": [0, 65535], "very slow of saile and therefore": [0, 65535], "slow of saile and therefore homeward": [0, 65535], "of saile and therefore homeward did": [0, 65535], "saile and therefore homeward did they": [0, 65535], "and therefore homeward did they bend": [0, 65535], "therefore homeward did they bend their": [0, 65535], "homeward did they bend their course": [0, 65535], "did they bend their course thus": [0, 65535], "they bend their course thus haue": [0, 65535], "bend their course thus haue you": [0, 65535], "their course thus haue you heard": [0, 65535], "course thus haue you heard me": [0, 65535], "thus haue you heard me seuer'd": [0, 65535], "haue you heard me seuer'd from": [0, 65535], "you heard me seuer'd from my": [0, 65535], "heard me seuer'd from my blisse": [0, 65535], "me seuer'd from my blisse that": [0, 65535], "seuer'd from my blisse that by": [0, 65535], "from my blisse that by misfortunes": [0, 65535], "my blisse that by misfortunes was": [0, 65535], "blisse that by misfortunes was my": [0, 65535], "that by misfortunes was my life": [0, 65535], "by misfortunes was my life prolong'd": [0, 65535], "misfortunes was my life prolong'd to": [0, 65535], "was my life prolong'd to tell": [0, 65535], "my life prolong'd to tell sad": [0, 65535], "life prolong'd to tell sad stories": [0, 65535], "prolong'd to tell sad stories of": [0, 65535], "to tell sad stories of my": [0, 65535], "tell sad stories of my owne": [0, 65535], "sad stories of my owne mishaps": [0, 65535], "stories of my owne mishaps duke": [0, 65535], "of my owne mishaps duke and": [0, 65535], "my owne mishaps duke and for": [0, 65535], "owne mishaps duke and for the": [0, 65535], "mishaps duke and for the sake": [0, 65535], "duke and for the sake of": [0, 65535], "and for the sake of them": [0, 65535], "for the sake of them thou": [0, 65535], "the sake of them thou sorrowest": [0, 65535], "sake of them thou sorrowest for": [0, 65535], "of them thou sorrowest for doe": [0, 65535], "them thou sorrowest for doe me": [0, 65535], "thou sorrowest for doe me the": [0, 65535], "sorrowest for doe me the fauour": [0, 65535], "for doe me the fauour to": [0, 65535], "doe me the fauour to dilate": [0, 65535], "me the fauour to dilate at": [0, 65535], "the fauour to dilate at full": [0, 65535], "fauour to dilate at full what": [0, 65535], "to dilate at full what haue": [0, 65535], "dilate at full what haue befalne": [0, 65535], "at full what haue befalne of": [0, 65535], "full what haue befalne of them": [0, 65535], "what haue befalne of them and": [0, 65535], "haue befalne of them and they": [0, 65535], "befalne of them and they till": [0, 65535], "of them and they till now": [0, 65535], "them and they till now merch": [0, 65535], "and they till now merch my": [0, 65535], "they till now merch my yongest": [0, 65535], "till now merch my yongest boy": [0, 65535], "now merch my yongest boy and": [0, 65535], "merch my yongest boy and yet": [0, 65535], "my yongest boy and yet my": [0, 65535], "yongest boy and yet my eldest": [0, 65535], "boy and yet my eldest care": [0, 65535], "and yet my eldest care at": [0, 65535], "yet my eldest care at eighteene": [0, 65535], "my eldest care at eighteene yeeres": [0, 65535], "eldest care at eighteene yeeres became": [0, 65535], "care at eighteene yeeres became inquisitiue": [0, 65535], "at eighteene yeeres became inquisitiue after": [0, 65535], "eighteene yeeres became inquisitiue after his": [0, 65535], "yeeres became inquisitiue after his brother": [0, 65535], "became inquisitiue after his brother and": [0, 65535], "inquisitiue after his brother and importun'd": [0, 65535], "after his brother and importun'd me": [0, 65535], "his brother and importun'd me that": [0, 65535], "brother and importun'd me that his": [0, 65535], "and importun'd me that his attendant": [0, 65535], "importun'd me that his attendant so": [0, 65535], "me that his attendant so his": [0, 65535], "that his attendant so his case": [0, 65535], "his attendant so his case was": [0, 65535], "attendant so his case was like": [0, 65535], "so his case was like reft": [0, 65535], "his case was like reft of": [0, 65535], "case was like reft of his": [0, 65535], "was like reft of his brother": [0, 65535], "like reft of his brother but": [0, 65535], "reft of his brother but retain'd": [0, 65535], "of his brother but retain'd his": [0, 65535], "his brother but retain'd his name": [0, 65535], "brother but retain'd his name might": [0, 65535], "but retain'd his name might beare": [0, 65535], "retain'd his name might beare him": [0, 65535], "his name might beare him company": [0, 65535], "name might beare him company in": [0, 65535], "might beare him company in the": [0, 65535], "beare him company in the quest": [0, 65535], "him company in the quest of": [0, 65535], "company in the quest of him": [0, 65535], "in the quest of him whom": [0, 65535], "the quest of him whom whil'st": [0, 65535], "quest of him whom whil'st i": [0, 65535], "of him whom whil'st i laboured": [0, 65535], "him whom whil'st i laboured of": [0, 65535], "whom whil'st i laboured of a": [0, 65535], "whil'st i laboured of a loue": [0, 65535], "i laboured of a loue to": [0, 65535], "laboured of a loue to see": [0, 65535], "of a loue to see i": [0, 65535], "a loue to see i hazarded": [0, 65535], "loue to see i hazarded the": [0, 65535], "to see i hazarded the losse": [0, 65535], "see i hazarded the losse of": [0, 65535], "i hazarded the losse of whom": [0, 65535], "hazarded the losse of whom i": [0, 65535], "the losse of whom i lou'd": [0, 65535], "losse of whom i lou'd fiue": [0, 65535], "of whom i lou'd fiue sommers": [0, 65535], "whom i lou'd fiue sommers haue": [0, 65535], "i lou'd fiue sommers haue i": [0, 65535], "lou'd fiue sommers haue i spent": [0, 65535], "fiue sommers haue i spent in": [0, 65535], "sommers haue i spent in farthest": [0, 65535], "haue i spent in farthest greece": [0, 65535], "i spent in farthest greece roming": [0, 65535], "spent in farthest greece roming cleane": [0, 65535], "in farthest greece roming cleane through": [0, 65535], "farthest greece roming cleane through the": [0, 65535], "greece roming cleane through the bounds": [0, 65535], "roming cleane through the bounds of": [0, 65535], "cleane through the bounds of asia": [0, 65535], "through the bounds of asia and": [0, 65535], "the bounds of asia and coasting": [0, 65535], "bounds of asia and coasting homeward": [0, 65535], "of asia and coasting homeward came": [0, 65535], "asia and coasting homeward came to": [0, 65535], "and coasting homeward came to ephesus": [0, 65535], "coasting homeward came to ephesus hopelesse": [0, 65535], "homeward came to ephesus hopelesse to": [0, 65535], "came to ephesus hopelesse to finde": [0, 65535], "to ephesus hopelesse to finde yet": [0, 65535], "ephesus hopelesse to finde yet loth": [0, 65535], "hopelesse to finde yet loth to": [0, 65535], "to finde yet loth to leaue": [0, 65535], "finde yet loth to leaue vnsought": [0, 65535], "yet loth to leaue vnsought or": [0, 65535], "loth to leaue vnsought or that": [0, 65535], "to leaue vnsought or that or": [0, 65535], "leaue vnsought or that or any": [0, 65535], "vnsought or that or any place": [0, 65535], "or that or any place that": [0, 65535], "that or any place that harbours": [0, 65535], "or any place that harbours men": [0, 65535], "any place that harbours men but": [0, 65535], "place that harbours men but heere": [0, 65535], "that harbours men but heere must": [0, 65535], "harbours men but heere must end": [0, 65535], "men but heere must end the": [0, 65535], "but heere must end the story": [0, 65535], "heere must end the story of": [0, 65535], "must end the story of my": [0, 65535], "end the story of my life": [0, 65535], "the story of my life and": [0, 65535], "story of my life and happy": [0, 65535], "of my life and happy were": [0, 65535], "my life and happy were i": [0, 65535], "life and happy were i in": [0, 65535], "and happy were i in my": [0, 65535], "happy were i in my timelie": [0, 65535], "were i in my timelie death": [0, 65535], "i in my timelie death could": [0, 65535], "in my timelie death could all": [0, 65535], "my timelie death could all my": [0, 65535], "timelie death could all my trauells": [0, 65535], "death could all my trauells warrant": [0, 65535], "could all my trauells warrant me": [0, 65535], "all my trauells warrant me they": [0, 65535], "my trauells warrant me they liue": [0, 65535], "trauells warrant me they liue duke": [0, 65535], "warrant me they liue duke haplesse": [0, 65535], "me they liue duke haplesse egeon": [0, 65535], "they liue duke haplesse egeon whom": [0, 65535], "liue duke haplesse egeon whom the": [0, 65535], "duke haplesse egeon whom the fates": [0, 65535], "haplesse egeon whom the fates haue": [0, 65535], "egeon whom the fates haue markt": [0, 65535], "whom the fates haue markt to": [0, 65535], "the fates haue markt to beare": [0, 65535], "fates haue markt to beare the": [0, 65535], "haue markt to beare the extremitie": [0, 65535], "markt to beare the extremitie of": [0, 65535], "to beare the extremitie of dire": [0, 65535], "beare the extremitie of dire mishap": [0, 65535], "the extremitie of dire mishap now": [0, 65535], "extremitie of dire mishap now trust": [0, 65535], "of dire mishap now trust me": [0, 65535], "dire mishap now trust me were": [0, 65535], "mishap now trust me were it": [0, 65535], "now trust me were it not": [0, 65535], "trust me were it not against": [0, 65535], "me were it not against our": [0, 65535], "were it not against our lawes": [0, 65535], "it not against our lawes against": [0, 65535], "not against our lawes against my": [0, 65535], "against our lawes against my crowne": [0, 65535], "our lawes against my crowne my": [0, 65535], "lawes against my crowne my oath": [0, 65535], "against my crowne my oath my": [0, 65535], "my crowne my oath my dignity": [0, 65535], "crowne my oath my dignity which": [0, 65535], "my oath my dignity which princes": [0, 65535], "oath my dignity which princes would": [0, 65535], "my dignity which princes would they": [0, 65535], "dignity which princes would they may": [0, 65535], "which princes would they may not": [0, 65535], "princes would they may not disanull": [0, 65535], "would they may not disanull my": [0, 65535], "they may not disanull my soule": [0, 65535], "may not disanull my soule should": [0, 65535], "not disanull my soule should sue": [0, 65535], "disanull my soule should sue as": [0, 65535], "my soule should sue as aduocate": [0, 65535], "soule should sue as aduocate for": [0, 65535], "should sue as aduocate for thee": [0, 65535], "sue as aduocate for thee but": [0, 65535], "as aduocate for thee but though": [0, 65535], "aduocate for thee but though thou": [0, 65535], "for thee but though thou art": [0, 65535], "thee but though thou art adiudged": [0, 65535], "but though thou art adiudged to": [0, 65535], "though thou art adiudged to the": [0, 65535], "thou art adiudged to the death": [0, 65535], "art adiudged to the death and": [0, 65535], "adiudged to the death and passed": [0, 65535], "to the death and passed sentence": [0, 65535], "the death and passed sentence may": [0, 65535], "death and passed sentence may not": [0, 65535], "and passed sentence may not be": [0, 65535], "passed sentence may not be recal'd": [0, 65535], "sentence may not be recal'd but": [0, 65535], "may not be recal'd but to": [0, 65535], "not be recal'd but to our": [0, 65535], "be recal'd but to our honours": [0, 65535], "recal'd but to our honours great": [0, 65535], "but to our honours great disparagement": [0, 65535], "to our honours great disparagement yet": [0, 65535], "our honours great disparagement yet will": [0, 65535], "honours great disparagement yet will i": [0, 65535], "great disparagement yet will i fauour": [0, 65535], "disparagement yet will i fauour thee": [0, 65535], "yet will i fauour thee in": [0, 65535], "will i fauour thee in what": [0, 65535], "i fauour thee in what i": [0, 65535], "fauour thee in what i can": [0, 65535], "thee in what i can therefore": [0, 65535], "in what i can therefore marchant": [0, 65535], "what i can therefore marchant ile": [0, 65535], "i can therefore marchant ile limit": [0, 65535], "can therefore marchant ile limit thee": [0, 65535], "therefore marchant ile limit thee this": [0, 65535], "marchant ile limit thee this day": [0, 65535], "ile limit thee this day to": [0, 65535], "limit thee this day to seeke": [0, 65535], "thee this day to seeke thy": [0, 65535], "this day to seeke thy helpe": [0, 65535], "day to seeke thy helpe by": [0, 65535], "to seeke thy helpe by beneficiall": [0, 65535], "seeke thy helpe by beneficiall helpe": [0, 65535], "thy helpe by beneficiall helpe try": [0, 65535], "helpe by beneficiall helpe try all": [0, 65535], "by beneficiall helpe try all the": [0, 65535], "beneficiall helpe try all the friends": [0, 65535], "helpe try all the friends thou": [0, 65535], "try all the friends thou hast": [0, 65535], "all the friends thou hast in": [0, 65535], "the friends thou hast in ephesus": [0, 65535], "friends thou hast in ephesus beg": [0, 65535], "thou hast in ephesus beg thou": [0, 65535], "hast in ephesus beg thou or": [0, 65535], "in ephesus beg thou or borrow": [0, 65535], "ephesus beg thou or borrow to": [0, 65535], "beg thou or borrow to make": [0, 65535], "thou or borrow to make vp": [0, 65535], "or borrow to make vp the": [0, 65535], "borrow to make vp the summe": [0, 65535], "to make vp the summe and": [0, 65535], "make vp the summe and liue": [0, 65535], "vp the summe and liue if": [0, 65535], "the summe and liue if no": [0, 65535], "summe and liue if no then": [0, 65535], "and liue if no then thou": [0, 65535], "liue if no then thou art": [0, 65535], "if no then thou art doom'd": [0, 65535], "no then thou art doom'd to": [0, 65535], "then thou art doom'd to die": [0, 65535], "thou art doom'd to die iaylor": [0, 65535], "art doom'd to die iaylor take": [0, 65535], "doom'd to die iaylor take him": [0, 65535], "to die iaylor take him to": [0, 65535], "die iaylor take him to thy": [0, 65535], "iaylor take him to thy custodie": [0, 65535], "take him to thy custodie iaylor": [0, 65535], "him to thy custodie iaylor i": [0, 65535], "to thy custodie iaylor i will": [0, 65535], "thy custodie iaylor i will my": [0, 65535], "custodie iaylor i will my lord": [0, 65535], "iaylor i will my lord merch": [0, 65535], "i will my lord merch hopelesse": [0, 65535], "will my lord merch hopelesse and": [0, 65535], "my lord merch hopelesse and helpelesse": [0, 65535], "lord merch hopelesse and helpelesse doth": [0, 65535], "merch hopelesse and helpelesse doth egean": [0, 65535], "hopelesse and helpelesse doth egean wend": [0, 65535], "and helpelesse doth egean wend but": [0, 65535], "helpelesse doth egean wend but to": [0, 65535], "doth egean wend but to procrastinate": [0, 65535], "egean wend but to procrastinate his": [0, 65535], "wend but to procrastinate his liuelesse": [0, 65535], "but to procrastinate his liuelesse end": [0, 65535], "to procrastinate his liuelesse end exeunt": [0, 65535], "procrastinate his liuelesse end exeunt enter": [0, 65535], "his liuelesse end exeunt enter antipholis": [0, 65535], "liuelesse end exeunt enter antipholis erotes": [0, 65535], "end exeunt enter antipholis erotes a": [0, 65535], "exeunt enter antipholis erotes a marchant": [0, 65535], "enter antipholis erotes a marchant and": [0, 65535], "antipholis erotes a marchant and dromio": [0, 65535], "erotes a marchant and dromio mer": [0, 65535], "a marchant and dromio mer therefore": [0, 65535], "marchant and dromio mer therefore giue": [0, 65535], "and dromio mer therefore giue out": [0, 65535], "dromio mer therefore giue out you": [0, 65535], "mer therefore giue out you are": [0, 65535], "therefore giue out you are of": [0, 65535], "giue out you are of epidamium": [0, 65535], "out you are of epidamium lest": [0, 65535], "you are of epidamium lest that": [0, 65535], "are of epidamium lest that your": [0, 65535], "of epidamium lest that your goods": [0, 65535], "epidamium lest that your goods too": [0, 65535], "lest that your goods too soone": [0, 65535], "that your goods too soone be": [0, 65535], "your goods too soone be confiscate": [0, 65535], "goods too soone be confiscate this": [0, 65535], "too soone be confiscate this very": [0, 65535], "soone be confiscate this very day": [0, 65535], "be confiscate this very day a": [0, 65535], "confiscate this very day a syracusian": [0, 65535], "this very day a syracusian marchant": [0, 65535], "very day a syracusian marchant is": [0, 65535], "day a syracusian marchant is apprehended": [0, 65535], "a syracusian marchant is apprehended for": [0, 65535], "syracusian marchant is apprehended for a": [0, 65535], "marchant is apprehended for a riuall": [0, 65535], "is apprehended for a riuall here": [0, 65535], "apprehended for a riuall here and": [0, 65535], "for a riuall here and not": [0, 65535], "a riuall here and not being": [0, 65535], "riuall here and not being able": [0, 65535], "here and not being able to": [0, 65535], "and not being able to buy": [0, 65535], "not being able to buy out": [0, 65535], "being able to buy out his": [0, 65535], "able to buy out his life": [0, 65535], "to buy out his life according": [0, 65535], "buy out his life according to": [0, 65535], "out his life according to the": [0, 65535], "his life according to the statute": [0, 65535], "life according to the statute of": [0, 65535], "according to the statute of the": [0, 65535], "to the statute of the towne": [0, 65535], "the statute of the towne dies": [0, 65535], "statute of the towne dies ere": [0, 65535], "of the towne dies ere the": [0, 65535], "the towne dies ere the wearie": [0, 65535], "towne dies ere the wearie sunne": [0, 65535], "dies ere the wearie sunne set": [0, 65535], "ere the wearie sunne set in": [0, 65535], "the wearie sunne set in the": [0, 65535], "wearie sunne set in the west": [0, 65535], "sunne set in the west there": [0, 65535], "set in the west there is": [0, 65535], "in the west there is your": [0, 65535], "the west there is your monie": [0, 65535], "west there is your monie that": [0, 65535], "there is your monie that i": [0, 65535], "is your monie that i had": [0, 65535], "your monie that i had to": [0, 65535], "monie that i had to keepe": [0, 65535], "that i had to keepe ant": [0, 65535], "i had to keepe ant goe": [0, 65535], "had to keepe ant goe beare": [0, 65535], "to keepe ant goe beare it": [0, 65535], "keepe ant goe beare it to": [0, 65535], "ant goe beare it to the": [0, 65535], "goe beare it to the centaure": [0, 65535], "beare it to the centaure where": [0, 65535], "it to the centaure where we": [0, 65535], "to the centaure where we host": [0, 65535], "the centaure where we host and": [0, 65535], "centaure where we host and stay": [0, 65535], "where we host and stay there": [0, 65535], "we host and stay there dromio": [0, 65535], "host and stay there dromio till": [0, 65535], "and stay there dromio till i": [0, 65535], "stay there dromio till i come": [0, 65535], "there dromio till i come to": [0, 65535], "dromio till i come to thee": [0, 65535], "till i come to thee within": [0, 65535], "i come to thee within this": [0, 65535], "come to thee within this houre": [0, 65535], "to thee within this houre it": [0, 65535], "thee within this houre it will": [0, 65535], "within this houre it will be": [0, 65535], "this houre it will be dinner": [0, 65535], "houre it will be dinner time": [0, 65535], "it will be dinner time till": [0, 65535], "will be dinner time till that": [0, 65535], "be dinner time till that ile": [0, 65535], "dinner time till that ile view": [0, 65535], "time till that ile view the": [0, 65535], "till that ile view the manners": [0, 65535], "that ile view the manners of": [0, 65535], "ile view the manners of the": [0, 65535], "view the manners of the towne": [0, 65535], "the manners of the towne peruse": [0, 65535], "manners of the towne peruse the": [0, 65535], "of the towne peruse the traders": [0, 65535], "the towne peruse the traders gaze": [0, 65535], "towne peruse the traders gaze vpon": [0, 65535], "peruse the traders gaze vpon the": [0, 65535], "the traders gaze vpon the buildings": [0, 65535], "traders gaze vpon the buildings and": [0, 65535], "gaze vpon the buildings and then": [0, 65535], "vpon the buildings and then returne": [0, 65535], "the buildings and then returne and": [0, 65535], "buildings and then returne and sleepe": [0, 65535], "and then returne and sleepe within": [0, 65535], "then returne and sleepe within mine": [0, 65535], "returne and sleepe within mine inne": [0, 65535], "and sleepe within mine inne for": [0, 65535], "sleepe within mine inne for with": [0, 65535], "within mine inne for with long": [0, 65535], "mine inne for with long trauaile": [0, 65535], "inne for with long trauaile i": [0, 65535], "for with long trauaile i am": [0, 65535], "with long trauaile i am stiffe": [0, 65535], "long trauaile i am stiffe and": [0, 65535], "trauaile i am stiffe and wearie": [0, 65535], "i am stiffe and wearie get": [0, 65535], "am stiffe and wearie get thee": [0, 65535], "stiffe and wearie get thee away": [0, 65535], "and wearie get thee away dro": [0, 65535], "wearie get thee away dro many": [0, 65535], "get thee away dro many a": [0, 65535], "thee away dro many a man": [0, 65535], "away dro many a man would": [0, 65535], "dro many a man would take": [0, 65535], "many a man would take you": [0, 65535], "a man would take you at": [0, 65535], "man would take you at your": [0, 65535], "would take you at your word": [0, 65535], "take you at your word and": [0, 65535], "you at your word and goe": [0, 65535], "at your word and goe indeede": [0, 65535], "your word and goe indeede hauing": [0, 65535], "word and goe indeede hauing so": [0, 65535], "and goe indeede hauing so good": [0, 65535], "goe indeede hauing so good a": [0, 65535], "indeede hauing so good a meane": [0, 65535], "hauing so good a meane exit": [0, 65535], "so good a meane exit dromio": [0, 65535], "good a meane exit dromio ant": [0, 65535], "a meane exit dromio ant a": [0, 65535], "meane exit dromio ant a trustie": [0, 65535], "exit dromio ant a trustie villaine": [0, 65535], "dromio ant a trustie villaine sir": [0, 65535], "ant a trustie villaine sir that": [0, 65535], "a trustie villaine sir that very": [0, 65535], "trustie villaine sir that very oft": [0, 65535], "villaine sir that very oft when": [0, 65535], "sir that very oft when i": [0, 65535], "that very oft when i am": [0, 65535], "very oft when i am dull": [0, 65535], "oft when i am dull with": [0, 65535], "when i am dull with care": [0, 65535], "i am dull with care and": [0, 65535], "am dull with care and melancholly": [0, 65535], "dull with care and melancholly lightens": [0, 65535], "with care and melancholly lightens my": [0, 65535], "care and melancholly lightens my humour": [0, 65535], "and melancholly lightens my humour with": [0, 65535], "melancholly lightens my humour with his": [0, 65535], "lightens my humour with his merry": [0, 65535], "my humour with his merry iests": [0, 65535], "humour with his merry iests what": [0, 65535], "with his merry iests what will": [0, 65535], "his merry iests what will you": [0, 65535], "merry iests what will you walke": [0, 65535], "iests what will you walke with": [0, 65535], "what will you walke with me": [0, 65535], "will you walke with me about": [0, 65535], "you walke with me about the": [0, 65535], "walke with me about the towne": [0, 65535], "with me about the towne and": [0, 65535], "me about the towne and then": [0, 65535], "about the towne and then goe": [0, 65535], "the towne and then goe to": [0, 65535], "towne and then goe to my": [0, 65535], "and then goe to my inne": [0, 65535], "then goe to my inne and": [0, 65535], "goe to my inne and dine": [0, 65535], "to my inne and dine with": [0, 65535], "my inne and dine with me": [0, 65535], "inne and dine with me e": [0, 65535], "and dine with me e mar": [0, 65535], "dine with me e mar i": [0, 65535], "with me e mar i am": [0, 65535], "me e mar i am inuited": [0, 65535], "e mar i am inuited sir": [0, 65535], "mar i am inuited sir to": [0, 65535], "i am inuited sir to certaine": [0, 65535], "am inuited sir to certaine marchants": [0, 65535], "inuited sir to certaine marchants of": [0, 65535], "sir to certaine marchants of whom": [0, 65535], "to certaine marchants of whom i": [0, 65535], "certaine marchants of whom i hope": [0, 65535], "marchants of whom i hope to": [0, 65535], "of whom i hope to make": [0, 65535], "whom i hope to make much": [0, 65535], "i hope to make much benefit": [0, 65535], "hope to make much benefit i": [0, 65535], "to make much benefit i craue": [0, 65535], "make much benefit i craue your": [0, 65535], "much benefit i craue your pardon": [0, 65535], "benefit i craue your pardon soone": [0, 65535], "i craue your pardon soone at": [0, 65535], "craue your pardon soone at fiue": [0, 65535], "your pardon soone at fiue a": [0, 65535], "pardon soone at fiue a clocke": [0, 65535], "soone at fiue a clocke please": [0, 65535], "at fiue a clocke please you": [0, 65535], "fiue a clocke please you ile": [0, 65535], "a clocke please you ile meete": [0, 65535], "clocke please you ile meete with": [0, 65535], "please you ile meete with you": [0, 65535], "you ile meete with you vpon": [0, 65535], "ile meete with you vpon the": [0, 65535], "meete with you vpon the mart": [0, 65535], "with you vpon the mart and": [0, 65535], "you vpon the mart and afterward": [0, 65535], "vpon the mart and afterward consort": [0, 65535], "the mart and afterward consort you": [0, 65535], "mart and afterward consort you till": [0, 65535], "and afterward consort you till bed": [0, 65535], "afterward consort you till bed time": [0, 65535], "consort you till bed time my": [0, 65535], "you till bed time my present": [0, 65535], "till bed time my present businesse": [0, 65535], "bed time my present businesse cals": [0, 65535], "time my present businesse cals me": [0, 65535], "my present businesse cals me from": [0, 65535], "present businesse cals me from you": [0, 65535], "businesse cals me from you now": [0, 65535], "cals me from you now ant": [0, 65535], "me from you now ant farewell": [0, 65535], "from you now ant farewell till": [0, 65535], "you now ant farewell till then": [0, 65535], "now ant farewell till then i": [0, 65535], "ant farewell till then i will": [0, 65535], "farewell till then i will goe": [0, 65535], "till then i will goe loose": [0, 65535], "then i will goe loose my": [0, 65535], "i will goe loose my selfe": [0, 65535], "will goe loose my selfe and": [0, 65535], "goe loose my selfe and wander": [0, 65535], "loose my selfe and wander vp": [0, 65535], "my selfe and wander vp and": [0, 65535], "selfe and wander vp and downe": [0, 65535], "and wander vp and downe to": [0, 65535], "wander vp and downe to view": [0, 65535], "vp and downe to view the": [0, 65535], "and downe to view the citie": [0, 65535], "downe to view the citie e": [0, 65535], "to view the citie e mar": [0, 65535], "view the citie e mar sir": [0, 65535], "the citie e mar sir i": [0, 65535], "citie e mar sir i commend": [0, 65535], "e mar sir i commend you": [0, 65535], "mar sir i commend you to": [0, 65535], "sir i commend you to your": [0, 65535], "i commend you to your owne": [0, 65535], "commend you to your owne content": [0, 65535], "you to your owne content exeunt": [0, 65535], "to your owne content exeunt ant": [0, 65535], "your owne content exeunt ant he": [0, 65535], "owne content exeunt ant he that": [0, 65535], "content exeunt ant he that commends": [0, 65535], "exeunt ant he that commends me": [0, 65535], "ant he that commends me to": [0, 65535], "he that commends me to mine": [0, 65535], "that commends me to mine owne": [0, 65535], "commends me to mine owne content": [0, 65535], "me to mine owne content commends": [0, 65535], "to mine owne content commends me": [0, 65535], "mine owne content commends me to": [0, 65535], "owne content commends me to the": [0, 65535], "content commends me to the thing": [0, 65535], "commends me to the thing i": [0, 65535], "me to the thing i cannot": [0, 65535], "to the thing i cannot get": [0, 65535], "the thing i cannot get i": [0, 65535], "thing i cannot get i to": [0, 65535], "i cannot get i to the": [0, 65535], "cannot get i to the world": [0, 65535], "get i to the world am": [0, 65535], "i to the world am like": [0, 65535], "to the world am like a": [0, 65535], "the world am like a drop": [0, 65535], "world am like a drop of": [0, 65535], "am like a drop of water": [0, 65535], "like a drop of water that": [0, 65535], "a drop of water that in": [0, 65535], "drop of water that in the": [0, 65535], "of water that in the ocean": [0, 65535], "water that in the ocean seekes": [0, 65535], "that in the ocean seekes another": [0, 65535], "in the ocean seekes another drop": [0, 65535], "the ocean seekes another drop who": [0, 65535], "ocean seekes another drop who falling": [0, 65535], "seekes another drop who falling there": [0, 65535], "another drop who falling there to": [0, 65535], "drop who falling there to finde": [0, 65535], "who falling there to finde his": [0, 65535], "falling there to finde his fellow": [0, 65535], "there to finde his fellow forth": [0, 65535], "to finde his fellow forth vnseene": [0, 65535], "finde his fellow forth vnseene inquisitiue": [0, 65535], "his fellow forth vnseene inquisitiue confounds": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "forth vnseene inquisitiue confounds himselfe so": [0, 65535], "vnseene inquisitiue confounds himselfe so i": [0, 65535], "inquisitiue confounds himselfe so i to": [0, 65535], "confounds himselfe so i to finde": [0, 65535], "himselfe so i to finde a": [0, 65535], "so i to finde a mother": [0, 65535], "i to finde a mother and": [0, 65535], "to finde a mother and a": [0, 65535], "finde a mother and a brother": [0, 65535], "a mother and a brother in": [0, 65535], "mother and a brother in quest": [0, 65535], "and a brother in quest of": [0, 65535], "a brother in quest of them": [0, 65535], "brother in quest of them vnhappie": [0, 65535], "in quest of them vnhappie a": [0, 65535], "quest of them vnhappie a loose": [0, 65535], "of them vnhappie a loose my": [0, 65535], "them vnhappie a loose my selfe": [0, 65535], "vnhappie a loose my selfe enter": [0, 65535], "a loose my selfe enter dromio": [0, 65535], "loose my selfe enter dromio of": [0, 65535], "my selfe enter dromio of ephesus": [0, 65535], "selfe enter dromio of ephesus here": [0, 65535], "enter dromio of ephesus here comes": [0, 65535], "dromio of ephesus here comes the": [0, 65535], "of ephesus here comes the almanacke": [0, 65535], "ephesus here comes the almanacke of": [0, 65535], "here comes the almanacke of my": [0, 65535], "comes the almanacke of my true": [0, 65535], "the almanacke of my true date": [0, 65535], "almanacke of my true date what": [0, 65535], "of my true date what now": [0, 65535], "my true date what now how": [0, 65535], "true date what now how chance": [0, 65535], "date what now how chance thou": [0, 65535], "what now how chance thou art": [0, 65535], "now how chance thou art return'd": [0, 65535], "how chance thou art return'd so": [0, 65535], "chance thou art return'd so soone": [0, 65535], "thou art return'd so soone e": [0, 65535], "art return'd so soone e dro": [0, 65535], "return'd so soone e dro return'd": [0, 65535], "so soone e dro return'd so": [0, 65535], "soone e dro return'd so soone": [0, 65535], "e dro return'd so soone rather": [0, 65535], "dro return'd so soone rather approacht": [0, 65535], "return'd so soone rather approacht too": [0, 65535], "so soone rather approacht too late": [0, 65535], "soone rather approacht too late the": [0, 65535], "rather approacht too late the capon": [0, 65535], "approacht too late the capon burnes": [0, 65535], "too late the capon burnes the": [0, 65535], "late the capon burnes the pig": [0, 65535], "the capon burnes the pig fals": [0, 65535], "capon burnes the pig fals from": [0, 65535], "burnes the pig fals from the": [0, 65535], "the pig fals from the spit": [0, 65535], "pig fals from the spit the": [0, 65535], "fals from the spit the clocke": [0, 65535], "from the spit the clocke hath": [0, 65535], "the spit the clocke hath strucken": [0, 65535], "spit the clocke hath strucken twelue": [0, 65535], "the clocke hath strucken twelue vpon": [0, 65535], "clocke hath strucken twelue vpon the": [0, 65535], "hath strucken twelue vpon the bell": [0, 65535], "strucken twelue vpon the bell my": [0, 65535], "twelue vpon the bell my mistris": [0, 65535], "vpon the bell my mistris made": [0, 65535], "the bell my mistris made it": [0, 65535], "bell my mistris made it one": [0, 65535], "my mistris made it one vpon": [0, 65535], "mistris made it one vpon my": [0, 65535], "made it one vpon my cheeke": [0, 65535], "it one vpon my cheeke she": [0, 65535], "one vpon my cheeke she is": [0, 65535], "vpon my cheeke she is so": [0, 65535], "my cheeke she is so hot": [0, 65535], "cheeke she is so hot because": [0, 65535], "she is so hot because the": [0, 65535], "is so hot because the meate": [0, 65535], "so hot because the meate is": [0, 65535], "hot because the meate is colde": [0, 65535], "because the meate is colde the": [0, 65535], "the meate is colde the meate": [0, 65535], "meate is colde the meate is": [0, 65535], "is colde the meate is colde": [0, 65535], "colde the meate is colde because": [0, 65535], "the meate is colde because you": [0, 65535], "meate is colde because you come": [0, 65535], "is colde because you come not": [0, 65535], "colde because you come not home": [0, 65535], "because you come not home you": [0, 65535], "you come not home you come": [0, 65535], "come not home you come not": [0, 65535], "not home you come not home": [0, 65535], "home you come not home because": [0, 65535], "you come not home because you": [0, 65535], "come not home because you haue": [0, 65535], "not home because you haue no": [0, 65535], "home because you haue no stomacke": [0, 65535], "because you haue no stomacke you": [0, 65535], "you haue no stomacke you haue": [0, 65535], "haue no stomacke you haue no": [0, 65535], "no stomacke you haue no stomacke": [0, 65535], "stomacke you haue no stomacke hauing": [0, 65535], "you haue no stomacke hauing broke": [0, 65535], "haue no stomacke hauing broke your": [0, 65535], "no stomacke hauing broke your fast": [0, 65535], "stomacke hauing broke your fast but": [0, 65535], "hauing broke your fast but we": [0, 65535], "broke your fast but we that": [0, 65535], "your fast but we that know": [0, 65535], "fast but we that know what": [0, 65535], "but we that know what 'tis": [0, 65535], "we that know what 'tis to": [0, 65535], "that know what 'tis to fast": [0, 65535], "know what 'tis to fast and": [0, 65535], "what 'tis to fast and pray": [0, 65535], "'tis to fast and pray are": [0, 65535], "to fast and pray are penitent": [0, 65535], "fast and pray are penitent for": [0, 65535], "and pray are penitent for your": [0, 65535], "pray are penitent for your default": [0, 65535], "are penitent for your default to": [0, 65535], "penitent for your default to day": [0, 65535], "for your default to day ant": [0, 65535], "your default to day ant stop": [0, 65535], "default to day ant stop in": [0, 65535], "to day ant stop in your": [0, 65535], "day ant stop in your winde": [0, 65535], "ant stop in your winde sir": [0, 65535], "stop in your winde sir tell": [0, 65535], "in your winde sir tell me": [0, 65535], "your winde sir tell me this": [0, 65535], "winde sir tell me this i": [0, 65535], "sir tell me this i pray": [0, 65535], "tell me this i pray where": [0, 65535], "me this i pray where haue": [0, 65535], "this i pray where haue you": [0, 65535], "i pray where haue you left": [0, 65535], "pray where haue you left the": [0, 65535], "where haue you left the mony": [0, 65535], "haue you left the mony that": [0, 65535], "you left the mony that i": [0, 65535], "left the mony that i gaue": [0, 65535], "the mony that i gaue you": [0, 65535], "mony that i gaue you e": [0, 65535], "that i gaue you e dro": [0, 65535], "i gaue you e dro oh": [0, 65535], "gaue you e dro oh sixe": [0, 65535], "you e dro oh sixe pence": [0, 65535], "e dro oh sixe pence that": [0, 65535], "dro oh sixe pence that i": [0, 65535], "oh sixe pence that i had": [0, 65535], "sixe pence that i had a": [0, 65535], "pence that i had a wensday": [0, 65535], "that i had a wensday last": [0, 65535], "i had a wensday last to": [0, 65535], "had a wensday last to pay": [0, 65535], "a wensday last to pay the": [0, 65535], "wensday last to pay the sadler": [0, 65535], "last to pay the sadler for": [0, 65535], "to pay the sadler for my": [0, 65535], "pay the sadler for my mistris": [0, 65535], "the sadler for my mistris crupper": [0, 65535], "sadler for my mistris crupper the": [0, 65535], "for my mistris crupper the sadler": [0, 65535], "my mistris crupper the sadler had": [0, 65535], "mistris crupper the sadler had it": [0, 65535], "crupper the sadler had it sir": [0, 65535], "the sadler had it sir i": [0, 65535], "sadler had it sir i kept": [0, 65535], "had it sir i kept it": [0, 65535], "it sir i kept it not": [0, 65535], "sir i kept it not ant": [0, 65535], "i kept it not ant i": [0, 65535], "kept it not ant i am": [0, 65535], "it not ant i am not": [0, 65535], "not ant i am not in": [0, 65535], "ant i am not in a": [0, 65535], "i am not in a sportiue": [0, 65535], "am not in a sportiue humor": [0, 65535], "not in a sportiue humor now": [0, 65535], "in a sportiue humor now tell": [0, 65535], "a sportiue humor now tell me": [0, 65535], "sportiue humor now tell me and": [0, 65535], "humor now tell me and dally": [0, 65535], "now tell me and dally not": [0, 65535], "tell me and dally not where": [0, 65535], "me and dally not where is": [0, 65535], "and dally not where is the": [0, 65535], "dally not where is the monie": [0, 65535], "not where is the monie we": [0, 65535], "where is the monie we being": [0, 65535], "is the monie we being strangers": [0, 65535], "the monie we being strangers here": [0, 65535], "monie we being strangers here how": [0, 65535], "we being strangers here how dar'st": [0, 65535], "being strangers here how dar'st thou": [0, 65535], "strangers here how dar'st thou trust": [0, 65535], "here how dar'st thou trust so": [0, 65535], "how dar'st thou trust so great": [0, 65535], "dar'st thou trust so great a": [0, 65535], "thou trust so great a charge": [0, 65535], "trust so great a charge from": [0, 65535], "so great a charge from thine": [0, 65535], "great a charge from thine owne": [0, 65535], "a charge from thine owne custodie": [0, 65535], "charge from thine owne custodie e": [0, 65535], "from thine owne custodie e dro": [0, 65535], "thine owne custodie e dro i": [0, 65535], "owne custodie e dro i pray": [0, 65535], "custodie e dro i pray you": [0, 65535], "e dro i pray you iest": [0, 65535], "dro i pray you iest sir": [0, 65535], "i pray you iest sir as": [0, 65535], "pray you iest sir as you": [0, 65535], "you iest sir as you sit": [0, 65535], "iest sir as you sit at": [0, 65535], "sir as you sit at dinner": [0, 65535], "as you sit at dinner i": [0, 65535], "you sit at dinner i from": [0, 65535], "sit at dinner i from my": [0, 65535], "at dinner i from my mistris": [0, 65535], "dinner i from my mistris come": [0, 65535], "i from my mistris come to": [0, 65535], "from my mistris come to you": [0, 65535], "my mistris come to you in": [0, 65535], "mistris come to you in post": [0, 65535], "come to you in post if": [0, 65535], "to you in post if i": [0, 65535], "you in post if i returne": [0, 65535], "in post if i returne i": [0, 65535], "post if i returne i shall": [0, 65535], "if i returne i shall be": [0, 65535], "i returne i shall be post": [0, 65535], "returne i shall be post indeede": [0, 65535], "i shall be post indeede for": [0, 65535], "shall be post indeede for she": [0, 65535], "be post indeede for she will": [0, 65535], "post indeede for she will scoure": [0, 65535], "indeede for she will scoure your": [0, 65535], "for she will scoure your fault": [0, 65535], "she will scoure your fault vpon": [0, 65535], "will scoure your fault vpon my": [0, 65535], "scoure your fault vpon my pate": [0, 65535], "your fault vpon my pate me": [0, 65535], "fault vpon my pate me thinkes": [0, 65535], "vpon my pate me thinkes your": [0, 65535], "my pate me thinkes your maw": [0, 65535], "pate me thinkes your maw like": [0, 65535], "me thinkes your maw like mine": [0, 65535], "thinkes your maw like mine should": [0, 65535], "your maw like mine should be": [0, 65535], "maw like mine should be your": [0, 65535], "like mine should be your cooke": [0, 65535], "mine should be your cooke and": [0, 65535], "should be your cooke and strike": [0, 65535], "be your cooke and strike you": [0, 65535], "your cooke and strike you home": [0, 65535], "cooke and strike you home without": [0, 65535], "and strike you home without a": [0, 65535], "strike you home without a messenger": [0, 65535], "you home without a messenger ant": [0, 65535], "home without a messenger ant come": [0, 65535], "without a messenger ant come dromio": [0, 65535], "a messenger ant come dromio come": [0, 65535], "messenger ant come dromio come these": [0, 65535], "ant come dromio come these iests": [0, 65535], "come dromio come these iests are": [0, 65535], "dromio come these iests are out": [0, 65535], "come these iests are out of": [0, 65535], "these iests are out of season": [0, 65535], "iests are out of season reserue": [0, 65535], "are out of season reserue them": [0, 65535], "out of season reserue them till": [0, 65535], "of season reserue them till a": [0, 65535], "season reserue them till a merrier": [0, 65535], "reserue them till a merrier houre": [0, 65535], "them till a merrier houre then": [0, 65535], "till a merrier houre then this": [0, 65535], "a merrier houre then this where": [0, 65535], "merrier houre then this where is": [0, 65535], "houre then this where is the": [0, 65535], "then this where is the gold": [0, 65535], "this where is the gold i": [0, 65535], "where is the gold i gaue": [0, 65535], "is the gold i gaue in": [0, 65535], "the gold i gaue in charge": [0, 65535], "gold i gaue in charge to": [0, 65535], "i gaue in charge to thee": [0, 65535], "gaue in charge to thee e": [0, 65535], "in charge to thee e dro": [0, 65535], "charge to thee e dro to": [0, 65535], "to thee e dro to me": [0, 65535], "thee e dro to me sir": [0, 65535], "e dro to me sir why": [0, 65535], "dro to me sir why you": [0, 65535], "to me sir why you gaue": [0, 65535], "me sir why you gaue no": [0, 65535], "sir why you gaue no gold": [0, 65535], "why you gaue no gold to": [0, 65535], "you gaue no gold to me": [0, 65535], "gaue no gold to me ant": [0, 65535], "no gold to me ant come": [0, 65535], "gold to me ant come on": [0, 65535], "to me ant come on sir": [0, 65535], "me ant come on sir knaue": [0, 65535], "ant come on sir knaue haue": [0, 65535], "come on sir knaue haue done": [0, 65535], "on sir knaue haue done your": [0, 65535], "sir knaue haue done your foolishnes": [0, 65535], "knaue haue done your foolishnes and": [0, 65535], "haue done your foolishnes and tell": [0, 65535], "done your foolishnes and tell me": [0, 65535], "your foolishnes and tell me how": [0, 65535], "foolishnes and tell me how thou": [0, 65535], "and tell me how thou hast": [0, 65535], "tell me how thou hast dispos'd": [0, 65535], "me how thou hast dispos'd thy": [0, 65535], "how thou hast dispos'd thy charge": [0, 65535], "thou hast dispos'd thy charge e": [0, 65535], "hast dispos'd thy charge e dro": [0, 65535], "dispos'd thy charge e dro my": [0, 65535], "thy charge e dro my charge": [0, 65535], "charge e dro my charge was": [0, 65535], "e dro my charge was but": [0, 65535], "dro my charge was but to": [0, 65535], "my charge was but to fetch": [0, 65535], "charge was but to fetch you": [0, 65535], "was but to fetch you from": [0, 65535], "but to fetch you from the": [0, 65535], "to fetch you from the mart": [0, 65535], "fetch you from the mart home": [0, 65535], "you from the mart home to": [0, 65535], "from the mart home to your": [0, 65535], "the mart home to your house": [0, 65535], "mart home to your house the": [0, 65535], "home to your house the ph\u0153nix": [0, 65535], "to your house the ph\u0153nix sir": [0, 65535], "your house the ph\u0153nix sir to": [0, 65535], "house the ph\u0153nix sir to dinner": [0, 65535], "the ph\u0153nix sir to dinner my": [0, 65535], "ph\u0153nix sir to dinner my mistris": [0, 65535], "sir to dinner my mistris and": [0, 65535], "to dinner my mistris and her": [0, 65535], "dinner my mistris and her sister": [0, 65535], "my mistris and her sister staies": [0, 65535], "mistris and her sister staies for": [0, 65535], "and her sister staies for you": [0, 65535], "her sister staies for you ant": [0, 65535], "sister staies for you ant now": [0, 65535], "staies for you ant now as": [0, 65535], "for you ant now as i": [0, 65535], "you ant now as i am": [0, 65535], "ant now as i am a": [0, 65535], "now as i am a christian": [0, 65535], "as i am a christian answer": [0, 65535], "i am a christian answer me": [0, 65535], "am a christian answer me in": [0, 65535], "a christian answer me in what": [0, 65535], "christian answer me in what safe": [0, 65535], "answer me in what safe place": [0, 65535], "me in what safe place you": [0, 65535], "in what safe place you haue": [0, 65535], "what safe place you haue bestow'd": [0, 65535], "safe place you haue bestow'd my": [0, 65535], "place you haue bestow'd my monie": [0, 65535], "you haue bestow'd my monie or": [0, 65535], "haue bestow'd my monie or i": [0, 65535], "bestow'd my monie or i shall": [0, 65535], "my monie or i shall breake": [0, 65535], "monie or i shall breake that": [0, 65535], "or i shall breake that merrie": [0, 65535], "i shall breake that merrie sconce": [0, 65535], "shall breake that merrie sconce of": [0, 65535], "breake that merrie sconce of yours": [0, 65535], "that merrie sconce of yours that": [0, 65535], "merrie sconce of yours that stands": [0, 65535], "sconce of yours that stands on": [0, 65535], "of yours that stands on tricks": [0, 65535], "yours that stands on tricks when": [0, 65535], "that stands on tricks when i": [0, 65535], "stands on tricks when i am": [0, 65535], "on tricks when i am vndispos'd": [0, 65535], "tricks when i am vndispos'd where": [0, 65535], "when i am vndispos'd where is": [0, 65535], "i am vndispos'd where is the": [0, 65535], "am vndispos'd where is the thousand": [0, 65535], "vndispos'd where is the thousand markes": [0, 65535], "where is the thousand markes thou": [0, 65535], "is the thousand markes thou hadst": [0, 65535], "the thousand markes thou hadst of": [0, 65535], "thousand markes thou hadst of me": [0, 65535], "markes thou hadst of me e": [0, 65535], "thou hadst of me e dro": [0, 65535], "hadst of me e dro i": [0, 65535], "of me e dro i haue": [0, 65535], "me e dro i haue some": [0, 65535], "e dro i haue some markes": [0, 65535], "dro i haue some markes of": [0, 65535], "i haue some markes of yours": [0, 65535], "haue some markes of yours vpon": [0, 65535], "some markes of yours vpon my": [0, 65535], "markes of yours vpon my pate": [0, 65535], "of yours vpon my pate some": [0, 65535], "yours vpon my pate some of": [0, 65535], "vpon my pate some of my": [0, 65535], "my pate some of my mistris": [0, 65535], "pate some of my mistris markes": [0, 65535], "some of my mistris markes vpon": [0, 65535], "of my mistris markes vpon my": [0, 65535], "my mistris markes vpon my shoulders": [0, 65535], "mistris markes vpon my shoulders but": [0, 65535], "markes vpon my shoulders but not": [0, 65535], "vpon my shoulders but not a": [0, 65535], "my shoulders but not a thousand": [0, 65535], "shoulders but not a thousand markes": [0, 65535], "but not a thousand markes betweene": [0, 65535], "not a thousand markes betweene you": [0, 65535], "a thousand markes betweene you both": [0, 65535], "thousand markes betweene you both if": [0, 65535], "markes betweene you both if i": [0, 65535], "betweene you both if i should": [0, 65535], "you both if i should pay": [0, 65535], "both if i should pay your": [0, 65535], "if i should pay your worship": [0, 65535], "i should pay your worship those": [0, 65535], "should pay your worship those againe": [0, 65535], "pay your worship those againe perchance": [0, 65535], "your worship those againe perchance you": [0, 65535], "worship those againe perchance you will": [0, 65535], "those againe perchance you will not": [0, 65535], "againe perchance you will not beare": [0, 65535], "perchance you will not beare them": [0, 65535], "you will not beare them patiently": [0, 65535], "will not beare them patiently ant": [0, 65535], "not beare them patiently ant thy": [0, 65535], "beare them patiently ant thy mistris": [0, 65535], "them patiently ant thy mistris markes": [0, 65535], "patiently ant thy mistris markes what": [0, 65535], "ant thy mistris markes what mistris": [0, 65535], "thy mistris markes what mistris slaue": [0, 65535], "mistris markes what mistris slaue hast": [0, 65535], "markes what mistris slaue hast thou": [0, 65535], "what mistris slaue hast thou e": [0, 65535], "mistris slaue hast thou e dro": [0, 65535], "slaue hast thou e dro your": [0, 65535], "hast thou e dro your worships": [0, 65535], "thou e dro your worships wife": [0, 65535], "e dro your worships wife my": [0, 65535], "dro your worships wife my mistris": [0, 65535], "your worships wife my mistris at": [0, 65535], "worships wife my mistris at the": [0, 65535], "wife my mistris at the ph\u0153nix": [0, 65535], "my mistris at the ph\u0153nix she": [0, 65535], "mistris at the ph\u0153nix she that": [0, 65535], "at the ph\u0153nix she that doth": [0, 65535], "the ph\u0153nix she that doth fast": [0, 65535], "ph\u0153nix she that doth fast till": [0, 65535], "she that doth fast till you": [0, 65535], "that doth fast till you come": [0, 65535], "doth fast till you come home": [0, 65535], "fast till you come home to": [0, 65535], "till you come home to dinner": [0, 65535], "you come home to dinner and": [0, 65535], "come home to dinner and praies": [0, 65535], "home to dinner and praies that": [0, 65535], "to dinner and praies that you": [0, 65535], "dinner and praies that you will": [0, 65535], "and praies that you will hie": [0, 65535], "praies that you will hie you": [0, 65535], "that you will hie you home": [0, 65535], "you will hie you home to": [0, 65535], "will hie you home to dinner": [0, 65535], "hie you home to dinner ant": [0, 65535], "you home to dinner ant what": [0, 65535], "home to dinner ant what wilt": [0, 65535], "to dinner ant what wilt thou": [0, 65535], "dinner ant what wilt thou flout": [0, 65535], "ant what wilt thou flout me": [0, 65535], "what wilt thou flout me thus": [0, 65535], "wilt thou flout me thus vnto": [0, 65535], "thou flout me thus vnto my": [0, 65535], "flout me thus vnto my face": [0, 65535], "me thus vnto my face being": [0, 65535], "thus vnto my face being forbid": [0, 65535], "vnto my face being forbid there": [0, 65535], "my face being forbid there take": [0, 65535], "face being forbid there take you": [0, 65535], "being forbid there take you that": [0, 65535], "forbid there take you that sir": [0, 65535], "there take you that sir knaue": [0, 65535], "take you that sir knaue e": [0, 65535], "you that sir knaue e dro": [0, 65535], "that sir knaue e dro what": [0, 65535], "sir knaue e dro what meane": [0, 65535], "knaue e dro what meane you": [0, 65535], "e dro what meane you sir": [0, 65535], "dro what meane you sir for": [0, 65535], "what meane you sir for god": [0, 65535], "meane you sir for god sake": [0, 65535], "you sir for god sake hold": [0, 65535], "sir for god sake hold your": [0, 65535], "for god sake hold your hands": [0, 65535], "god sake hold your hands nay": [0, 65535], "sake hold your hands nay and": [0, 65535], "hold your hands nay and you": [0, 65535], "your hands nay and you will": [0, 65535], "hands nay and you will not": [0, 65535], "nay and you will not sir": [0, 65535], "and you will not sir ile": [0, 65535], "you will not sir ile take": [0, 65535], "will not sir ile take my": [0, 65535], "not sir ile take my heeles": [0, 65535], "sir ile take my heeles exeunt": [0, 65535], "ile take my heeles exeunt dromio": [0, 65535], "take my heeles exeunt dromio ep": [0, 65535], "my heeles exeunt dromio ep ant": [0, 65535], "heeles exeunt dromio ep ant vpon": [0, 65535], "exeunt dromio ep ant vpon my": [0, 65535], "dromio ep ant vpon my life": [0, 65535], "ep ant vpon my life by": [0, 65535], "ant vpon my life by some": [0, 65535], "vpon my life by some deuise": [0, 65535], "my life by some deuise or": [0, 65535], "life by some deuise or other": [0, 65535], "by some deuise or other the": [0, 65535], "some deuise or other the villaine": [0, 65535], "deuise or other the villaine is": [0, 65535], "or other the villaine is ore": [0, 65535], "other the villaine is ore wrought": [0, 65535], "the villaine is ore wrought of": [0, 65535], "villaine is ore wrought of all": [0, 65535], "is ore wrought of all my": [0, 65535], "ore wrought of all my monie": [0, 65535], "wrought of all my monie they": [0, 65535], "of all my monie they say": [0, 65535], "all my monie they say this": [0, 65535], "my monie they say this towne": [0, 65535], "monie they say this towne is": [0, 65535], "they say this towne is full": [0, 65535], "say this towne is full of": [0, 65535], "this towne is full of cosenage": [0, 65535], "towne is full of cosenage as": [0, 65535], "is full of cosenage as nimble": [0, 65535], "full of cosenage as nimble iuglers": [0, 65535], "of cosenage as nimble iuglers that": [0, 65535], "cosenage as nimble iuglers that deceiue": [0, 65535], "as nimble iuglers that deceiue the": [0, 65535], "nimble iuglers that deceiue the eie": [0, 65535], "iuglers that deceiue the eie darke": [0, 65535], "that deceiue the eie darke working": [0, 65535], "deceiue the eie darke working sorcerers": [0, 65535], "the eie darke working sorcerers that": [0, 65535], "eie darke working sorcerers that change": [0, 65535], "darke working sorcerers that change the": [0, 65535], "working sorcerers that change the minde": [0, 65535], "sorcerers that change the minde soule": [0, 65535], "that change the minde soule killing": [0, 65535], "change the minde soule killing witches": [0, 65535], "the minde soule killing witches that": [0, 65535], "minde soule killing witches that deforme": [0, 65535], "soule killing witches that deforme the": [0, 65535], "killing witches that deforme the bodie": [0, 65535], "witches that deforme the bodie disguised": [0, 65535], "that deforme the bodie disguised cheaters": [0, 65535], "deforme the bodie disguised cheaters prating": [0, 65535], "the bodie disguised cheaters prating mountebankes": [0, 65535], "bodie disguised cheaters prating mountebankes and": [0, 65535], "disguised cheaters prating mountebankes and manie": [0, 65535], "cheaters prating mountebankes and manie such": [0, 65535], "prating mountebankes and manie such like": [0, 65535], "mountebankes and manie such like liberties": [0, 65535], "and manie such like liberties of": [0, 65535], "manie such like liberties of sinne": [0, 65535], "such like liberties of sinne if": [0, 65535], "like liberties of sinne if it": [0, 65535], "liberties of sinne if it proue": [0, 65535], "of sinne if it proue so": [0, 65535], "sinne if it proue so i": [0, 65535], "if it proue so i will": [0, 65535], "it proue so i will be": [0, 65535], "proue so i will be gone": [0, 65535], "so i will be gone the": [0, 65535], "i will be gone the sooner": [0, 65535], "will be gone the sooner ile": [0, 65535], "be gone the sooner ile to": [0, 65535], "gone the sooner ile to the": [0, 65535], "the sooner ile to the centaur": [0, 65535], "sooner ile to the centaur to": [0, 65535], "ile to the centaur to goe": [0, 65535], "to the centaur to goe seeke": [0, 65535], "the centaur to goe seeke this": [0, 65535], "centaur to goe seeke this slaue": [0, 65535], "to goe seeke this slaue i": [0, 65535], "goe seeke this slaue i greatly": [0, 65535], "seeke this slaue i greatly feare": [0, 65535], "this slaue i greatly feare my": [0, 65535], "slaue i greatly feare my monie": [0, 65535], "i greatly feare my monie is": [0, 65535], "greatly feare my monie is not": [0, 65535], "feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena": [0, 65535], "comedie of errors actus primus scena prima": [0, 65535], "of errors actus primus scena prima enter": [0, 65535], "errors actus primus scena prima enter the": [0, 65535], "actus primus scena prima enter the duke": [0, 65535], "primus scena prima enter the duke of": [0, 65535], "scena prima enter the duke of ephesus": [0, 65535], "prima enter the duke of ephesus with": [0, 65535], "enter the duke of ephesus with the": [0, 65535], "the duke of ephesus with the merchant": [0, 65535], "duke of ephesus with the merchant of": [0, 65535], "of ephesus with the merchant of siracusa": [0, 65535], "ephesus with the merchant of siracusa iaylor": [0, 65535], "with the merchant of siracusa iaylor and": [0, 65535], "the merchant of siracusa iaylor and other": [0, 65535], "merchant of siracusa iaylor and other attendants": [0, 65535], "of siracusa iaylor and other attendants marchant": [0, 65535], "siracusa iaylor and other attendants marchant broceed": [0, 65535], "iaylor and other attendants marchant broceed solinus": [0, 65535], "and other attendants marchant broceed solinus to": [0, 65535], "other attendants marchant broceed solinus to procure": [0, 65535], "attendants marchant broceed solinus to procure my": [0, 65535], "marchant broceed solinus to procure my fall": [0, 65535], "broceed solinus to procure my fall and": [0, 65535], "solinus to procure my fall and by": [0, 65535], "to procure my fall and by the": [0, 65535], "procure my fall and by the doome": [0, 65535], "my fall and by the doome of": [0, 65535], "fall and by the doome of death": [0, 65535], "and by the doome of death end": [0, 65535], "by the doome of death end woes": [0, 65535], "the doome of death end woes and": [0, 65535], "doome of death end woes and all": [0, 65535], "of death end woes and all duke": [0, 65535], "death end woes and all duke merchant": [0, 65535], "end woes and all duke merchant of": [0, 65535], "woes and all duke merchant of siracusa": [0, 65535], "and all duke merchant of siracusa plead": [0, 65535], "all duke merchant of siracusa plead no": [0, 65535], "duke merchant of siracusa plead no more": [0, 65535], "merchant of siracusa plead no more i": [0, 65535], "of siracusa plead no more i am": [0, 65535], "siracusa plead no more i am not": [0, 65535], "plead no more i am not partiall": [0, 65535], "no more i am not partiall to": [0, 65535], "more i am not partiall to infringe": [0, 65535], "i am not partiall to infringe our": [0, 65535], "am not partiall to infringe our lawes": [0, 65535], "not partiall to infringe our lawes the": [0, 65535], "partiall to infringe our lawes the enmity": [0, 65535], "to infringe our lawes the enmity and": [0, 65535], "infringe our lawes the enmity and discord": [0, 65535], "our lawes the enmity and discord which": [0, 65535], "lawes the enmity and discord which of": [0, 65535], "the enmity and discord which of late": [0, 65535], "enmity and discord which of late sprung": [0, 65535], "and discord which of late sprung from": [0, 65535], "discord which of late sprung from the": [0, 65535], "which of late sprung from the rancorous": [0, 65535], "of late sprung from the rancorous outrage": [0, 65535], "late sprung from the rancorous outrage of": [0, 65535], "sprung from the rancorous outrage of your": [0, 65535], "from the rancorous outrage of your duke": [0, 65535], "the rancorous outrage of your duke to": [0, 65535], "rancorous outrage of your duke to merchants": [0, 65535], "outrage of your duke to merchants our": [0, 65535], "of your duke to merchants our well": [0, 65535], "your duke to merchants our well dealing": [0, 65535], "duke to merchants our well dealing countrimen": [0, 65535], "to merchants our well dealing countrimen who": [0, 65535], "merchants our well dealing countrimen who wanting": [0, 65535], "our well dealing countrimen who wanting gilders": [0, 65535], "well dealing countrimen who wanting gilders to": [0, 65535], "dealing countrimen who wanting gilders to redeeme": [0, 65535], "countrimen who wanting gilders to redeeme their": [0, 65535], "who wanting gilders to redeeme their liues": [0, 65535], "wanting gilders to redeeme their liues haue": [0, 65535], "gilders to redeeme their liues haue seal'd": [0, 65535], "to redeeme their liues haue seal'd his": [0, 65535], "redeeme their liues haue seal'd his rigorous": [0, 65535], "their liues haue seal'd his rigorous statutes": [0, 65535], "liues haue seal'd his rigorous statutes with": [0, 65535], "haue seal'd his rigorous statutes with their": [0, 65535], "seal'd his rigorous statutes with their blouds": [0, 65535], "his rigorous statutes with their blouds excludes": [0, 65535], "rigorous statutes with their blouds excludes all": [0, 65535], "statutes with their blouds excludes all pitty": [0, 65535], "with their blouds excludes all pitty from": [0, 65535], "their blouds excludes all pitty from our": [0, 65535], "blouds excludes all pitty from our threatning": [0, 65535], "excludes all pitty from our threatning lookes": [0, 65535], "all pitty from our threatning lookes for": [0, 65535], "pitty from our threatning lookes for since": [0, 65535], "from our threatning lookes for since the": [0, 65535], "our threatning lookes for since the mortall": [0, 65535], "threatning lookes for since the mortall and": [0, 65535], "lookes for since the mortall and intestine": [0, 65535], "for since the mortall and intestine iarres": [0, 65535], "since the mortall and intestine iarres twixt": [0, 65535], "the mortall and intestine iarres twixt thy": [0, 65535], "mortall and intestine iarres twixt thy seditious": [0, 65535], "and intestine iarres twixt thy seditious countrimen": [0, 65535], "intestine iarres twixt thy seditious countrimen and": [0, 65535], "iarres twixt thy seditious countrimen and vs": [0, 65535], "twixt thy seditious countrimen and vs it": [0, 65535], "thy seditious countrimen and vs it hath": [0, 65535], "seditious countrimen and vs it hath in": [0, 65535], "countrimen and vs it hath in solemne": [0, 65535], "and vs it hath in solemne synodes": [0, 65535], "vs it hath in solemne synodes beene": [0, 65535], "it hath in solemne synodes beene decreed": [0, 65535], "hath in solemne synodes beene decreed both": [0, 65535], "in solemne synodes beene decreed both by": [0, 65535], "solemne synodes beene decreed both by the": [0, 65535], "synodes beene decreed both by the siracusians": [0, 65535], "beene decreed both by the siracusians and": [0, 65535], "decreed both by the siracusians and our": [0, 65535], "both by the siracusians and our selues": [0, 65535], "by the siracusians and our selues to": [0, 65535], "the siracusians and our selues to admit": [0, 65535], "siracusians and our selues to admit no": [0, 65535], "and our selues to admit no trafficke": [0, 65535], "our selues to admit no trafficke to": [0, 65535], "selues to admit no trafficke to our": [0, 65535], "to admit no trafficke to our aduerse": [0, 65535], "admit no trafficke to our aduerse townes": [0, 65535], "no trafficke to our aduerse townes nay": [0, 65535], "trafficke to our aduerse townes nay more": [0, 65535], "to our aduerse townes nay more if": [0, 65535], "our aduerse townes nay more if any": [0, 65535], "aduerse townes nay more if any borne": [0, 65535], "townes nay more if any borne at": [0, 65535], "nay more if any borne at ephesus": [0, 65535], "more if any borne at ephesus be": [0, 65535], "if any borne at ephesus be seene": [0, 65535], "any borne at ephesus be seene at": [0, 65535], "borne at ephesus be seene at any": [0, 65535], "at ephesus be seene at any siracusian": [0, 65535], "ephesus be seene at any siracusian marts": [0, 65535], "be seene at any siracusian marts and": [0, 65535], "seene at any siracusian marts and fayres": [0, 65535], "at any siracusian marts and fayres againe": [0, 65535], "any siracusian marts and fayres againe if": [0, 65535], "siracusian marts and fayres againe if any": [0, 65535], "marts and fayres againe if any siracusian": [0, 65535], "and fayres againe if any siracusian borne": [0, 65535], "fayres againe if any siracusian borne come": [0, 65535], "againe if any siracusian borne come to": [0, 65535], "if any siracusian borne come to the": [0, 65535], "any siracusian borne come to the bay": [0, 65535], "siracusian borne come to the bay of": [0, 65535], "borne come to the bay of ephesus": [0, 65535], "come to the bay of ephesus he": [0, 65535], "to the bay of ephesus he dies": [0, 65535], "the bay of ephesus he dies his": [0, 65535], "bay of ephesus he dies his goods": [0, 65535], "of ephesus he dies his goods confiscate": [0, 65535], "ephesus he dies his goods confiscate to": [0, 65535], "he dies his goods confiscate to the": [0, 65535], "dies his goods confiscate to the dukes": [0, 65535], "his goods confiscate to the dukes dispose": [0, 65535], "goods confiscate to the dukes dispose vnlesse": [0, 65535], "confiscate to the dukes dispose vnlesse a": [0, 65535], "to the dukes dispose vnlesse a thousand": [0, 65535], "the dukes dispose vnlesse a thousand markes": [0, 65535], "dukes dispose vnlesse a thousand markes be": [0, 65535], "dispose vnlesse a thousand markes be leuied": [0, 65535], "vnlesse a thousand markes be leuied to": [0, 65535], "a thousand markes be leuied to quit": [0, 65535], "thousand markes be leuied to quit the": [0, 65535], "markes be leuied to quit the penalty": [0, 65535], "be leuied to quit the penalty and": [0, 65535], "leuied to quit the penalty and to": [0, 65535], "to quit the penalty and to ransome": [0, 65535], "quit the penalty and to ransome him": [0, 65535], "the penalty and to ransome him thy": [0, 65535], "penalty and to ransome him thy substance": [0, 65535], "and to ransome him thy substance valued": [0, 65535], "to ransome him thy substance valued at": [0, 65535], "ransome him thy substance valued at the": [0, 65535], "him thy substance valued at the highest": [0, 65535], "thy substance valued at the highest rate": [0, 65535], "substance valued at the highest rate cannot": [0, 65535], "valued at the highest rate cannot amount": [0, 65535], "at the highest rate cannot amount vnto": [0, 65535], "the highest rate cannot amount vnto a": [0, 65535], "highest rate cannot amount vnto a hundred": [0, 65535], "rate cannot amount vnto a hundred markes": [0, 65535], "cannot amount vnto a hundred markes therefore": [0, 65535], "amount vnto a hundred markes therefore by": [0, 65535], "vnto a hundred markes therefore by law": [0, 65535], "a hundred markes therefore by law thou": [0, 65535], "hundred markes therefore by law thou art": [0, 65535], "markes therefore by law thou art condemn'd": [0, 65535], "therefore by law thou art condemn'd to": [0, 65535], "by law thou art condemn'd to die": [0, 65535], "law thou art condemn'd to die mer": [0, 65535], "thou art condemn'd to die mer yet": [0, 65535], "art condemn'd to die mer yet this": [0, 65535], "condemn'd to die mer yet this my": [0, 65535], "to die mer yet this my comfort": [0, 65535], "die mer yet this my comfort when": [0, 65535], "mer yet this my comfort when your": [0, 65535], "yet this my comfort when your words": [0, 65535], "this my comfort when your words are": [0, 65535], "my comfort when your words are done": [0, 65535], "comfort when your words are done my": [0, 65535], "when your words are done my woes": [0, 65535], "your words are done my woes end": [0, 65535], "words are done my woes end likewise": [0, 65535], "are done my woes end likewise with": [0, 65535], "done my woes end likewise with the": [0, 65535], "my woes end likewise with the euening": [0, 65535], "woes end likewise with the euening sonne": [0, 65535], "end likewise with the euening sonne duk": [0, 65535], "likewise with the euening sonne duk well": [0, 65535], "with the euening sonne duk well siracusian": [0, 65535], "the euening sonne duk well siracusian say": [0, 65535], "euening sonne duk well siracusian say in": [0, 65535], "sonne duk well siracusian say in briefe": [0, 65535], "duk well siracusian say in briefe the": [0, 65535], "well siracusian say in briefe the cause": [0, 65535], "siracusian say in briefe the cause why": [0, 65535], "say in briefe the cause why thou": [0, 65535], "in briefe the cause why thou departedst": [0, 65535], "briefe the cause why thou departedst from": [0, 65535], "the cause why thou departedst from thy": [0, 65535], "cause why thou departedst from thy natiue": [0, 65535], "why thou departedst from thy natiue home": [0, 65535], "thou departedst from thy natiue home and": [0, 65535], "departedst from thy natiue home and for": [0, 65535], "from thy natiue home and for what": [0, 65535], "thy natiue home and for what cause": [0, 65535], "natiue home and for what cause thou": [0, 65535], "home and for what cause thou cam'st": [0, 65535], "and for what cause thou cam'st to": [0, 65535], "for what cause thou cam'st to ephesus": [0, 65535], "what cause thou cam'st to ephesus mer": [0, 65535], "cause thou cam'st to ephesus mer a": [0, 65535], "thou cam'st to ephesus mer a heauier": [0, 65535], "cam'st to ephesus mer a heauier taske": [0, 65535], "to ephesus mer a heauier taske could": [0, 65535], "ephesus mer a heauier taske could not": [0, 65535], "mer a heauier taske could not haue": [0, 65535], "a heauier taske could not haue beene": [0, 65535], "heauier taske could not haue beene impos'd": [0, 65535], "taske could not haue beene impos'd then": [0, 65535], "could not haue beene impos'd then i": [0, 65535], "not haue beene impos'd then i to": [0, 65535], "haue beene impos'd then i to speake": [0, 65535], "beene impos'd then i to speake my": [0, 65535], "impos'd then i to speake my griefes": [0, 65535], "then i to speake my griefes vnspeakeable": [0, 65535], "i to speake my griefes vnspeakeable yet": [0, 65535], "to speake my griefes vnspeakeable yet that": [0, 65535], "speake my griefes vnspeakeable yet that the": [0, 65535], "my griefes vnspeakeable yet that the world": [0, 65535], "griefes vnspeakeable yet that the world may": [0, 65535], "vnspeakeable yet that the world may witnesse": [0, 65535], "yet that the world may witnesse that": [0, 65535], "that the world may witnesse that my": [0, 65535], "the world may witnesse that my end": [0, 65535], "world may witnesse that my end was": [0, 65535], "may witnesse that my end was wrought": [0, 65535], "witnesse that my end was wrought by": [0, 65535], "that my end was wrought by nature": [0, 65535], "my end was wrought by nature not": [0, 65535], "end was wrought by nature not by": [0, 65535], "was wrought by nature not by vile": [0, 65535], "wrought by nature not by vile offence": [0, 65535], "by nature not by vile offence ile": [0, 65535], "nature not by vile offence ile vtter": [0, 65535], "not by vile offence ile vtter what": [0, 65535], "by vile offence ile vtter what my": [0, 65535], "vile offence ile vtter what my sorrow": [0, 65535], "offence ile vtter what my sorrow giues": [0, 65535], "ile vtter what my sorrow giues me": [0, 65535], "vtter what my sorrow giues me leaue": [0, 65535], "what my sorrow giues me leaue in": [0, 65535], "my sorrow giues me leaue in syracusa": [0, 65535], "sorrow giues me leaue in syracusa was": [0, 65535], "giues me leaue in syracusa was i": [0, 65535], "me leaue in syracusa was i borne": [0, 65535], "leaue in syracusa was i borne and": [0, 65535], "in syracusa was i borne and wedde": [0, 65535], "syracusa was i borne and wedde vnto": [0, 65535], "was i borne and wedde vnto a": [0, 65535], "i borne and wedde vnto a woman": [0, 65535], "borne and wedde vnto a woman happy": [0, 65535], "and wedde vnto a woman happy but": [0, 65535], "wedde vnto a woman happy but for": [0, 65535], "vnto a woman happy but for me": [0, 65535], "a woman happy but for me and": [0, 65535], "woman happy but for me and by": [0, 65535], "happy but for me and by me": [0, 65535], "but for me and by me had": [0, 65535], "for me and by me had not": [0, 65535], "me and by me had not our": [0, 65535], "and by me had not our hap": [0, 65535], "by me had not our hap beene": [0, 65535], "me had not our hap beene bad": [0, 65535], "had not our hap beene bad with": [0, 65535], "not our hap beene bad with her": [0, 65535], "our hap beene bad with her i": [0, 65535], "hap beene bad with her i liu'd": [0, 65535], "beene bad with her i liu'd in": [0, 65535], "bad with her i liu'd in ioy": [0, 65535], "with her i liu'd in ioy our": [0, 65535], "her i liu'd in ioy our wealth": [0, 65535], "i liu'd in ioy our wealth increast": [0, 65535], "liu'd in ioy our wealth increast by": [0, 65535], "in ioy our wealth increast by prosperous": [0, 65535], "ioy our wealth increast by prosperous voyages": [0, 65535], "our wealth increast by prosperous voyages i": [0, 65535], "wealth increast by prosperous voyages i often": [0, 65535], "increast by prosperous voyages i often made": [0, 65535], "by prosperous voyages i often made to": [0, 65535], "prosperous voyages i often made to epidamium": [0, 65535], "voyages i often made to epidamium till": [0, 65535], "i often made to epidamium till my": [0, 65535], "often made to epidamium till my factors": [0, 65535], "made to epidamium till my factors death": [0, 65535], "to epidamium till my factors death and": [0, 65535], "epidamium till my factors death and he": [0, 65535], "till my factors death and he great": [0, 65535], "my factors death and he great care": [0, 65535], "factors death and he great care of": [0, 65535], "death and he great care of goods": [0, 65535], "and he great care of goods at": [0, 65535], "he great care of goods at randone": [0, 65535], "great care of goods at randone left": [0, 65535], "care of goods at randone left drew": [0, 65535], "of goods at randone left drew me": [0, 65535], "goods at randone left drew me from": [0, 65535], "at randone left drew me from kinde": [0, 65535], "randone left drew me from kinde embracements": [0, 65535], "left drew me from kinde embracements of": [0, 65535], "drew me from kinde embracements of my": [0, 65535], "me from kinde embracements of my spouse": [0, 65535], "from kinde embracements of my spouse from": [0, 65535], "kinde embracements of my spouse from whom": [0, 65535], "embracements of my spouse from whom my": [0, 65535], "of my spouse from whom my absence": [0, 65535], "my spouse from whom my absence was": [0, 65535], "spouse from whom my absence was not": [0, 65535], "from whom my absence was not sixe": [0, 65535], "whom my absence was not sixe moneths": [0, 65535], "my absence was not sixe moneths olde": [0, 65535], "absence was not sixe moneths olde before": [0, 65535], "was not sixe moneths olde before her": [0, 65535], "not sixe moneths olde before her selfe": [0, 65535], "sixe moneths olde before her selfe almost": [0, 65535], "moneths olde before her selfe almost at": [0, 65535], "olde before her selfe almost at fainting": [0, 65535], "before her selfe almost at fainting vnder": [0, 65535], "her selfe almost at fainting vnder the": [0, 65535], "selfe almost at fainting vnder the pleasing": [0, 65535], "almost at fainting vnder the pleasing punishment": [0, 65535], "at fainting vnder the pleasing punishment that": [0, 65535], "fainting vnder the pleasing punishment that women": [0, 65535], "vnder the pleasing punishment that women beare": [0, 65535], "the pleasing punishment that women beare had": [0, 65535], "pleasing punishment that women beare had made": [0, 65535], "punishment that women beare had made prouision": [0, 65535], "that women beare had made prouision for": [0, 65535], "women beare had made prouision for her": [0, 65535], "beare had made prouision for her following": [0, 65535], "had made prouision for her following me": [0, 65535], "made prouision for her following me and": [0, 65535], "prouision for her following me and soone": [0, 65535], "for her following me and soone and": [0, 65535], "her following me and soone and safe": [0, 65535], "following me and soone and safe arriued": [0, 65535], "me and soone and safe arriued where": [0, 65535], "and soone and safe arriued where i": [0, 65535], "soone and safe arriued where i was": [0, 65535], "and safe arriued where i was there": [0, 65535], "safe arriued where i was there had": [0, 65535], "arriued where i was there had she": [0, 65535], "where i was there had she not": [0, 65535], "i was there had she not beene": [0, 65535], "was there had she not beene long": [0, 65535], "there had she not beene long but": [0, 65535], "had she not beene long but she": [0, 65535], "she not beene long but she became": [0, 65535], "not beene long but she became a": [0, 65535], "beene long but she became a ioyfull": [0, 65535], "long but she became a ioyfull mother": [0, 65535], "but she became a ioyfull mother of": [0, 65535], "she became a ioyfull mother of two": [0, 65535], "became a ioyfull mother of two goodly": [0, 65535], "a ioyfull mother of two goodly sonnes": [0, 65535], "ioyfull mother of two goodly sonnes and": [0, 65535], "mother of two goodly sonnes and which": [0, 65535], "of two goodly sonnes and which was": [0, 65535], "two goodly sonnes and which was strange": [0, 65535], "goodly sonnes and which was strange the": [0, 65535], "sonnes and which was strange the one": [0, 65535], "and which was strange the one so": [0, 65535], "which was strange the one so like": [0, 65535], "was strange the one so like the": [0, 65535], "strange the one so like the other": [0, 65535], "the one so like the other as": [0, 65535], "one so like the other as could": [0, 65535], "so like the other as could not": [0, 65535], "like the other as could not be": [0, 65535], "the other as could not be distinguish'd": [0, 65535], "other as could not be distinguish'd but": [0, 65535], "as could not be distinguish'd but by": [0, 65535], "could not be distinguish'd but by names": [0, 65535], "not be distinguish'd but by names that": [0, 65535], "be distinguish'd but by names that very": [0, 65535], "distinguish'd but by names that very howre": [0, 65535], "but by names that very howre and": [0, 65535], "by names that very howre and in": [0, 65535], "names that very howre and in the": [0, 65535], "that very howre and in the selfe": [0, 65535], "very howre and in the selfe same": [0, 65535], "howre and in the selfe same inne": [0, 65535], "and in the selfe same inne a": [0, 65535], "in the selfe same inne a meane": [0, 65535], "the selfe same inne a meane woman": [0, 65535], "selfe same inne a meane woman was": [0, 65535], "same inne a meane woman was deliuered": [0, 65535], "inne a meane woman was deliuered of": [0, 65535], "a meane woman was deliuered of such": [0, 65535], "meane woman was deliuered of such a": [0, 65535], "woman was deliuered of such a burthen": [0, 65535], "was deliuered of such a burthen male": [0, 65535], "deliuered of such a burthen male twins": [0, 65535], "of such a burthen male twins both": [0, 65535], "such a burthen male twins both alike": [0, 65535], "a burthen male twins both alike those": [0, 65535], "burthen male twins both alike those for": [0, 65535], "male twins both alike those for their": [0, 65535], "twins both alike those for their parents": [0, 65535], "both alike those for their parents were": [0, 65535], "alike those for their parents were exceeding": [0, 65535], "those for their parents were exceeding poore": [0, 65535], "for their parents were exceeding poore i": [0, 65535], "their parents were exceeding poore i bought": [0, 65535], "parents were exceeding poore i bought and": [0, 65535], "were exceeding poore i bought and brought": [0, 65535], "exceeding poore i bought and brought vp": [0, 65535], "poore i bought and brought vp to": [0, 65535], "i bought and brought vp to attend": [0, 65535], "bought and brought vp to attend my": [0, 65535], "and brought vp to attend my sonnes": [0, 65535], "brought vp to attend my sonnes my": [0, 65535], "vp to attend my sonnes my wife": [0, 65535], "to attend my sonnes my wife not": [0, 65535], "attend my sonnes my wife not meanely": [0, 65535], "my sonnes my wife not meanely prowd": [0, 65535], "sonnes my wife not meanely prowd of": [0, 65535], "my wife not meanely prowd of two": [0, 65535], "wife not meanely prowd of two such": [0, 65535], "not meanely prowd of two such boyes": [0, 65535], "meanely prowd of two such boyes made": [0, 65535], "prowd of two such boyes made daily": [0, 65535], "of two such boyes made daily motions": [0, 65535], "two such boyes made daily motions for": [0, 65535], "such boyes made daily motions for our": [0, 65535], "boyes made daily motions for our home": [0, 65535], "made daily motions for our home returne": [0, 65535], "daily motions for our home returne vnwilling": [0, 65535], "motions for our home returne vnwilling i": [0, 65535], "for our home returne vnwilling i agreed": [0, 65535], "our home returne vnwilling i agreed alas": [0, 65535], "home returne vnwilling i agreed alas too": [0, 65535], "returne vnwilling i agreed alas too soone": [0, 65535], "vnwilling i agreed alas too soone wee": [0, 65535], "i agreed alas too soone wee came": [0, 65535], "agreed alas too soone wee came aboord": [0, 65535], "alas too soone wee came aboord a": [0, 65535], "too soone wee came aboord a league": [0, 65535], "soone wee came aboord a league from": [0, 65535], "wee came aboord a league from epidamium": [0, 65535], "came aboord a league from epidamium had": [0, 65535], "aboord a league from epidamium had we": [0, 65535], "a league from epidamium had we saild": [0, 65535], "league from epidamium had we saild before": [0, 65535], "from epidamium had we saild before the": [0, 65535], "epidamium had we saild before the alwaies": [0, 65535], "had we saild before the alwaies winde": [0, 65535], "we saild before the alwaies winde obeying": [0, 65535], "saild before the alwaies winde obeying deepe": [0, 65535], "before the alwaies winde obeying deepe gaue": [0, 65535], "the alwaies winde obeying deepe gaue any": [0, 65535], "alwaies winde obeying deepe gaue any tragicke": [0, 65535], "winde obeying deepe gaue any tragicke instance": [0, 65535], "obeying deepe gaue any tragicke instance of": [0, 65535], "deepe gaue any tragicke instance of our": [0, 65535], "gaue any tragicke instance of our harme": [0, 65535], "any tragicke instance of our harme but": [0, 65535], "tragicke instance of our harme but longer": [0, 65535], "instance of our harme but longer did": [0, 65535], "of our harme but longer did we": [0, 65535], "our harme but longer did we not": [0, 65535], "harme but longer did we not retaine": [0, 65535], "but longer did we not retaine much": [0, 65535], "longer did we not retaine much hope": [0, 65535], "did we not retaine much hope for": [0, 65535], "we not retaine much hope for what": [0, 65535], "not retaine much hope for what obscured": [0, 65535], "retaine much hope for what obscured light": [0, 65535], "much hope for what obscured light the": [0, 65535], "hope for what obscured light the heauens": [0, 65535], "for what obscured light the heauens did": [0, 65535], "what obscured light the heauens did grant": [0, 65535], "obscured light the heauens did grant did": [0, 65535], "light the heauens did grant did but": [0, 65535], "the heauens did grant did but conuay": [0, 65535], "heauens did grant did but conuay vnto": [0, 65535], "did grant did but conuay vnto our": [0, 65535], "grant did but conuay vnto our fearefull": [0, 65535], "did but conuay vnto our fearefull mindes": [0, 65535], "but conuay vnto our fearefull mindes a": [0, 65535], "conuay vnto our fearefull mindes a doubtfull": [0, 65535], "vnto our fearefull mindes a doubtfull warrant": [0, 65535], "our fearefull mindes a doubtfull warrant of": [0, 65535], "fearefull mindes a doubtfull warrant of immediate": [0, 65535], "mindes a doubtfull warrant of immediate death": [0, 65535], "a doubtfull warrant of immediate death which": [0, 65535], "doubtfull warrant of immediate death which though": [0, 65535], "warrant of immediate death which though my": [0, 65535], "of immediate death which though my selfe": [0, 65535], "immediate death which though my selfe would": [0, 65535], "death which though my selfe would gladly": [0, 65535], "which though my selfe would gladly haue": [0, 65535], "though my selfe would gladly haue imbrac'd": [0, 65535], "my selfe would gladly haue imbrac'd yet": [0, 65535], "selfe would gladly haue imbrac'd yet the": [0, 65535], "would gladly haue imbrac'd yet the incessant": [0, 65535], "gladly haue imbrac'd yet the incessant weepings": [0, 65535], "haue imbrac'd yet the incessant weepings of": [0, 65535], "imbrac'd yet the incessant weepings of my": [0, 65535], "yet the incessant weepings of my wife": [0, 65535], "the incessant weepings of my wife weeping": [0, 65535], "incessant weepings of my wife weeping before": [0, 65535], "weepings of my wife weeping before for": [0, 65535], "of my wife weeping before for what": [0, 65535], "my wife weeping before for what she": [0, 65535], "wife weeping before for what she saw": [0, 65535], "weeping before for what she saw must": [0, 65535], "before for what she saw must come": [0, 65535], "for what she saw must come and": [0, 65535], "what she saw must come and pitteous": [0, 65535], "she saw must come and pitteous playnings": [0, 65535], "saw must come and pitteous playnings of": [0, 65535], "must come and pitteous playnings of the": [0, 65535], "come and pitteous playnings of the prettie": [0, 65535], "and pitteous playnings of the prettie babes": [0, 65535], "pitteous playnings of the prettie babes that": [0, 65535], "playnings of the prettie babes that mourn'd": [0, 65535], "of the prettie babes that mourn'd for": [0, 65535], "the prettie babes that mourn'd for fashion": [0, 65535], "prettie babes that mourn'd for fashion ignorant": [0, 65535], "babes that mourn'd for fashion ignorant what": [0, 65535], "that mourn'd for fashion ignorant what to": [0, 65535], "mourn'd for fashion ignorant what to feare": [0, 65535], "for fashion ignorant what to feare forst": [0, 65535], "fashion ignorant what to feare forst me": [0, 65535], "ignorant what to feare forst me to": [0, 65535], "what to feare forst me to seeke": [0, 65535], "to feare forst me to seeke delayes": [0, 65535], "feare forst me to seeke delayes for": [0, 65535], "forst me to seeke delayes for them": [0, 65535], "me to seeke delayes for them and": [0, 65535], "to seeke delayes for them and me": [0, 65535], "seeke delayes for them and me and": [0, 65535], "delayes for them and me and this": [0, 65535], "for them and me and this it": [0, 65535], "them and me and this it was": [0, 65535], "and me and this it was for": [0, 65535], "me and this it was for other": [0, 65535], "and this it was for other meanes": [0, 65535], "this it was for other meanes was": [0, 65535], "it was for other meanes was none": [0, 65535], "was for other meanes was none the": [0, 65535], "for other meanes was none the sailors": [0, 65535], "other meanes was none the sailors sought": [0, 65535], "meanes was none the sailors sought for": [0, 65535], "was none the sailors sought for safety": [0, 65535], "none the sailors sought for safety by": [0, 65535], "the sailors sought for safety by our": [0, 65535], "sailors sought for safety by our boate": [0, 65535], "sought for safety by our boate and": [0, 65535], "for safety by our boate and left": [0, 65535], "safety by our boate and left the": [0, 65535], "by our boate and left the ship": [0, 65535], "our boate and left the ship then": [0, 65535], "boate and left the ship then sinking": [0, 65535], "and left the ship then sinking ripe": [0, 65535], "left the ship then sinking ripe to": [0, 65535], "the ship then sinking ripe to vs": [0, 65535], "ship then sinking ripe to vs my": [0, 65535], "then sinking ripe to vs my wife": [0, 65535], "sinking ripe to vs my wife more": [0, 65535], "ripe to vs my wife more carefull": [0, 65535], "to vs my wife more carefull for": [0, 65535], "vs my wife more carefull for the": [0, 65535], "my wife more carefull for the latter": [0, 65535], "wife more carefull for the latter borne": [0, 65535], "more carefull for the latter borne had": [0, 65535], "carefull for the latter borne had fastned": [0, 65535], "for the latter borne had fastned him": [0, 65535], "the latter borne had fastned him vnto": [0, 65535], "latter borne had fastned him vnto a": [0, 65535], "borne had fastned him vnto a small": [0, 65535], "had fastned him vnto a small spare": [0, 65535], "fastned him vnto a small spare mast": [0, 65535], "him vnto a small spare mast such": [0, 65535], "vnto a small spare mast such as": [0, 65535], "a small spare mast such as sea": [0, 65535], "small spare mast such as sea faring": [0, 65535], "spare mast such as sea faring men": [0, 65535], "mast such as sea faring men prouide": [0, 65535], "such as sea faring men prouide for": [0, 65535], "as sea faring men prouide for stormes": [0, 65535], "sea faring men prouide for stormes to": [0, 65535], "faring men prouide for stormes to him": [0, 65535], "men prouide for stormes to him one": [0, 65535], "prouide for stormes to him one of": [0, 65535], "for stormes to him one of the": [0, 65535], "stormes to him one of the other": [0, 65535], "to him one of the other twins": [0, 65535], "him one of the other twins was": [0, 65535], "one of the other twins was bound": [0, 65535], "of the other twins was bound whil'st": [0, 65535], "the other twins was bound whil'st i": [0, 65535], "other twins was bound whil'st i had": [0, 65535], "twins was bound whil'st i had beene": [0, 65535], "was bound whil'st i had beene like": [0, 65535], "bound whil'st i had beene like heedfull": [0, 65535], "whil'st i had beene like heedfull of": [0, 65535], "i had beene like heedfull of the": [0, 65535], "had beene like heedfull of the other": [0, 65535], "beene like heedfull of the other the": [0, 65535], "like heedfull of the other the children": [0, 65535], "heedfull of the other the children thus": [0, 65535], "of the other the children thus dispos'd": [0, 65535], "the other the children thus dispos'd my": [0, 65535], "other the children thus dispos'd my wife": [0, 65535], "the children thus dispos'd my wife and": [0, 65535], "children thus dispos'd my wife and i": [0, 65535], "thus dispos'd my wife and i fixing": [0, 65535], "dispos'd my wife and i fixing our": [0, 65535], "my wife and i fixing our eyes": [0, 65535], "wife and i fixing our eyes on": [0, 65535], "and i fixing our eyes on whom": [0, 65535], "i fixing our eyes on whom our": [0, 65535], "fixing our eyes on whom our care": [0, 65535], "our eyes on whom our care was": [0, 65535], "eyes on whom our care was fixt": [0, 65535], "on whom our care was fixt fastned": [0, 65535], "whom our care was fixt fastned our": [0, 65535], "our care was fixt fastned our selues": [0, 65535], "care was fixt fastned our selues at": [0, 65535], "was fixt fastned our selues at eyther": [0, 65535], "fixt fastned our selues at eyther end": [0, 65535], "fastned our selues at eyther end the": [0, 65535], "our selues at eyther end the mast": [0, 65535], "selues at eyther end the mast and": [0, 65535], "at eyther end the mast and floating": [0, 65535], "eyther end the mast and floating straight": [0, 65535], "end the mast and floating straight obedient": [0, 65535], "the mast and floating straight obedient to": [0, 65535], "mast and floating straight obedient to the": [0, 65535], "and floating straight obedient to the streame": [0, 65535], "floating straight obedient to the streame was": [0, 65535], "straight obedient to the streame was carried": [0, 65535], "obedient to the streame was carried towards": [0, 65535], "to the streame was carried towards corinth": [0, 65535], "the streame was carried towards corinth as": [0, 65535], "streame was carried towards corinth as we": [0, 65535], "was carried towards corinth as we thought": [0, 65535], "carried towards corinth as we thought at": [0, 65535], "towards corinth as we thought at length": [0, 65535], "corinth as we thought at length the": [0, 65535], "as we thought at length the sonne": [0, 65535], "we thought at length the sonne gazing": [0, 65535], "thought at length the sonne gazing vpon": [0, 65535], "at length the sonne gazing vpon the": [0, 65535], "length the sonne gazing vpon the earth": [0, 65535], "the sonne gazing vpon the earth disperst": [0, 65535], "sonne gazing vpon the earth disperst those": [0, 65535], "gazing vpon the earth disperst those vapours": [0, 65535], "vpon the earth disperst those vapours that": [0, 65535], "the earth disperst those vapours that offended": [0, 65535], "earth disperst those vapours that offended vs": [0, 65535], "disperst those vapours that offended vs and": [0, 65535], "those vapours that offended vs and by": [0, 65535], "vapours that offended vs and by the": [0, 65535], "that offended vs and by the benefit": [0, 65535], "offended vs and by the benefit of": [0, 65535], "vs and by the benefit of his": [0, 65535], "and by the benefit of his wished": [0, 65535], "by the benefit of his wished light": [0, 65535], "the benefit of his wished light the": [0, 65535], "benefit of his wished light the seas": [0, 65535], "of his wished light the seas waxt": [0, 65535], "his wished light the seas waxt calme": [0, 65535], "wished light the seas waxt calme and": [0, 65535], "light the seas waxt calme and we": [0, 65535], "the seas waxt calme and we discouered": [0, 65535], "seas waxt calme and we discouered two": [0, 65535], "waxt calme and we discouered two shippes": [0, 65535], "calme and we discouered two shippes from": [0, 65535], "and we discouered two shippes from farre": [0, 65535], "we discouered two shippes from farre making": [0, 65535], "discouered two shippes from farre making amaine": [0, 65535], "two shippes from farre making amaine to": [0, 65535], "shippes from farre making amaine to vs": [0, 65535], "from farre making amaine to vs of": [0, 65535], "farre making amaine to vs of corinth": [0, 65535], "making amaine to vs of corinth that": [0, 65535], "amaine to vs of corinth that of": [0, 65535], "to vs of corinth that of epidarus": [0, 65535], "vs of corinth that of epidarus this": [0, 65535], "of corinth that of epidarus this but": [0, 65535], "corinth that of epidarus this but ere": [0, 65535], "that of epidarus this but ere they": [0, 65535], "of epidarus this but ere they came": [0, 65535], "epidarus this but ere they came oh": [0, 65535], "this but ere they came oh let": [0, 65535], "but ere they came oh let me": [0, 65535], "ere they came oh let me say": [0, 65535], "they came oh let me say no": [0, 65535], "came oh let me say no more": [0, 65535], "oh let me say no more gather": [0, 65535], "let me say no more gather the": [0, 65535], "me say no more gather the sequell": [0, 65535], "say no more gather the sequell by": [0, 65535], "no more gather the sequell by that": [0, 65535], "more gather the sequell by that went": [0, 65535], "gather the sequell by that went before": [0, 65535], "the sequell by that went before duk": [0, 65535], "sequell by that went before duk nay": [0, 65535], "by that went before duk nay forward": [0, 65535], "that went before duk nay forward old": [0, 65535], "went before duk nay forward old man": [0, 65535], "before duk nay forward old man doe": [0, 65535], "duk nay forward old man doe not": [0, 65535], "nay forward old man doe not breake": [0, 65535], "forward old man doe not breake off": [0, 65535], "old man doe not breake off so": [0, 65535], "man doe not breake off so for": [0, 65535], "doe not breake off so for we": [0, 65535], "not breake off so for we may": [0, 65535], "breake off so for we may pitty": [0, 65535], "off so for we may pitty though": [0, 65535], "so for we may pitty though not": [0, 65535], "for we may pitty though not pardon": [0, 65535], "we may pitty though not pardon thee": [0, 65535], "may pitty though not pardon thee merch": [0, 65535], "pitty though not pardon thee merch oh": [0, 65535], "though not pardon thee merch oh had": [0, 65535], "not pardon thee merch oh had the": [0, 65535], "pardon thee merch oh had the gods": [0, 65535], "thee merch oh had the gods done": [0, 65535], "merch oh had the gods done so": [0, 65535], "oh had the gods done so i": [0, 65535], "had the gods done so i had": [0, 65535], "the gods done so i had not": [0, 65535], "gods done so i had not now": [0, 65535], "done so i had not now worthily": [0, 65535], "so i had not now worthily tearm'd": [0, 65535], "i had not now worthily tearm'd them": [0, 65535], "had not now worthily tearm'd them mercilesse": [0, 65535], "not now worthily tearm'd them mercilesse to": [0, 65535], "now worthily tearm'd them mercilesse to vs": [0, 65535], "worthily tearm'd them mercilesse to vs for": [0, 65535], "tearm'd them mercilesse to vs for ere": [0, 65535], "them mercilesse to vs for ere the": [0, 65535], "mercilesse to vs for ere the ships": [0, 65535], "to vs for ere the ships could": [0, 65535], "vs for ere the ships could meet": [0, 65535], "for ere the ships could meet by": [0, 65535], "ere the ships could meet by twice": [0, 65535], "the ships could meet by twice fiue": [0, 65535], "ships could meet by twice fiue leagues": [0, 65535], "could meet by twice fiue leagues we": [0, 65535], "meet by twice fiue leagues we were": [0, 65535], "by twice fiue leagues we were encountred": [0, 65535], "twice fiue leagues we were encountred by": [0, 65535], "fiue leagues we were encountred by a": [0, 65535], "leagues we were encountred by a mighty": [0, 65535], "we were encountred by a mighty rocke": [0, 65535], "were encountred by a mighty rocke which": [0, 65535], "encountred by a mighty rocke which being": [0, 65535], "by a mighty rocke which being violently": [0, 65535], "a mighty rocke which being violently borne": [0, 65535], "mighty rocke which being violently borne vp": [0, 65535], "rocke which being violently borne vp our": [0, 65535], "which being violently borne vp our helpefull": [0, 65535], "being violently borne vp our helpefull ship": [0, 65535], "violently borne vp our helpefull ship was": [0, 65535], "borne vp our helpefull ship was splitted": [0, 65535], "vp our helpefull ship was splitted in": [0, 65535], "our helpefull ship was splitted in the": [0, 65535], "helpefull ship was splitted in the midst": [0, 65535], "ship was splitted in the midst so": [0, 65535], "was splitted in the midst so that": [0, 65535], "splitted in the midst so that in": [0, 65535], "in the midst so that in this": [0, 65535], "the midst so that in this vniust": [0, 65535], "midst so that in this vniust diuorce": [0, 65535], "so that in this vniust diuorce of": [0, 65535], "that in this vniust diuorce of vs": [0, 65535], "in this vniust diuorce of vs fortune": [0, 65535], "this vniust diuorce of vs fortune had": [0, 65535], "vniust diuorce of vs fortune had left": [0, 65535], "diuorce of vs fortune had left to": [0, 65535], "of vs fortune had left to both": [0, 65535], "vs fortune had left to both of": [0, 65535], "fortune had left to both of vs": [0, 65535], "had left to both of vs alike": [0, 65535], "left to both of vs alike what": [0, 65535], "to both of vs alike what to": [0, 65535], "both of vs alike what to delight": [0, 65535], "of vs alike what to delight in": [0, 65535], "vs alike what to delight in what": [0, 65535], "alike what to delight in what to": [0, 65535], "what to delight in what to sorrow": [0, 65535], "to delight in what to sorrow for": [0, 65535], "delight in what to sorrow for her": [0, 65535], "in what to sorrow for her part": [0, 65535], "what to sorrow for her part poore": [0, 65535], "to sorrow for her part poore soule": [0, 65535], "sorrow for her part poore soule seeming": [0, 65535], "for her part poore soule seeming as": [0, 65535], "her part poore soule seeming as burdened": [0, 65535], "part poore soule seeming as burdened with": [0, 65535], "poore soule seeming as burdened with lesser": [0, 65535], "soule seeming as burdened with lesser waight": [0, 65535], "seeming as burdened with lesser waight but": [0, 65535], "as burdened with lesser waight but not": [0, 65535], "burdened with lesser waight but not with": [0, 65535], "with lesser waight but not with lesser": [0, 65535], "lesser waight but not with lesser woe": [0, 65535], "waight but not with lesser woe was": [0, 65535], "but not with lesser woe was carried": [0, 65535], "not with lesser woe was carried with": [0, 65535], "with lesser woe was carried with more": [0, 65535], "lesser woe was carried with more speed": [0, 65535], "woe was carried with more speed before": [0, 65535], "was carried with more speed before the": [0, 65535], "carried with more speed before the winde": [0, 65535], "with more speed before the winde and": [0, 65535], "more speed before the winde and in": [0, 65535], "speed before the winde and in our": [0, 65535], "before the winde and in our sight": [0, 65535], "the winde and in our sight they": [0, 65535], "winde and in our sight they three": [0, 65535], "and in our sight they three were": [0, 65535], "in our sight they three were taken": [0, 65535], "our sight they three were taken vp": [0, 65535], "sight they three were taken vp by": [0, 65535], "they three were taken vp by fishermen": [0, 65535], "three were taken vp by fishermen of": [0, 65535], "were taken vp by fishermen of corinth": [0, 65535], "taken vp by fishermen of corinth as": [0, 65535], "vp by fishermen of corinth as we": [0, 65535], "by fishermen of corinth as we thought": [0, 65535], "fishermen of corinth as we thought at": [0, 65535], "of corinth as we thought at length": [0, 65535], "corinth as we thought at length another": [0, 65535], "as we thought at length another ship": [0, 65535], "we thought at length another ship had": [0, 65535], "thought at length another ship had seiz'd": [0, 65535], "at length another ship had seiz'd on": [0, 65535], "length another ship had seiz'd on vs": [0, 65535], "another ship had seiz'd on vs and": [0, 65535], "ship had seiz'd on vs and knowing": [0, 65535], "had seiz'd on vs and knowing whom": [0, 65535], "seiz'd on vs and knowing whom it": [0, 65535], "on vs and knowing whom it was": [0, 65535], "vs and knowing whom it was their": [0, 65535], "and knowing whom it was their hap": [0, 65535], "knowing whom it was their hap to": [0, 65535], "whom it was their hap to saue": [0, 65535], "it was their hap to saue gaue": [0, 65535], "was their hap to saue gaue healthfull": [0, 65535], "their hap to saue gaue healthfull welcome": [0, 65535], "hap to saue gaue healthfull welcome to": [0, 65535], "to saue gaue healthfull welcome to their": [0, 65535], "saue gaue healthfull welcome to their ship": [0, 65535], "gaue healthfull welcome to their ship wrackt": [0, 65535], "healthfull welcome to their ship wrackt guests": [0, 65535], "welcome to their ship wrackt guests and": [0, 65535], "to their ship wrackt guests and would": [0, 65535], "their ship wrackt guests and would haue": [0, 65535], "ship wrackt guests and would haue reft": [0, 65535], "wrackt guests and would haue reft the": [0, 65535], "guests and would haue reft the fishers": [0, 65535], "and would haue reft the fishers of": [0, 65535], "would haue reft the fishers of their": [0, 65535], "haue reft the fishers of their prey": [0, 65535], "reft the fishers of their prey had": [0, 65535], "the fishers of their prey had not": [0, 65535], "fishers of their prey had not their": [0, 65535], "of their prey had not their backe": [0, 65535], "their prey had not their backe beene": [0, 65535], "prey had not their backe beene very": [0, 65535], "had not their backe beene very slow": [0, 65535], "not their backe beene very slow of": [0, 65535], "their backe beene very slow of saile": [0, 65535], "backe beene very slow of saile and": [0, 65535], "beene very slow of saile and therefore": [0, 65535], "very slow of saile and therefore homeward": [0, 65535], "slow of saile and therefore homeward did": [0, 65535], "of saile and therefore homeward did they": [0, 65535], "saile and therefore homeward did they bend": [0, 65535], "and therefore homeward did they bend their": [0, 65535], "therefore homeward did they bend their course": [0, 65535], "homeward did they bend their course thus": [0, 65535], "did they bend their course thus haue": [0, 65535], "they bend their course thus haue you": [0, 65535], "bend their course thus haue you heard": [0, 65535], "their course thus haue you heard me": [0, 65535], "course thus haue you heard me seuer'd": [0, 65535], "thus haue you heard me seuer'd from": [0, 65535], "haue you heard me seuer'd from my": [0, 65535], "you heard me seuer'd from my blisse": [0, 65535], "heard me seuer'd from my blisse that": [0, 65535], "me seuer'd from my blisse that by": [0, 65535], "seuer'd from my blisse that by misfortunes": [0, 65535], "from my blisse that by misfortunes was": [0, 65535], "my blisse that by misfortunes was my": [0, 65535], "blisse that by misfortunes was my life": [0, 65535], "that by misfortunes was my life prolong'd": [0, 65535], "by misfortunes was my life prolong'd to": [0, 65535], "misfortunes was my life prolong'd to tell": [0, 65535], "was my life prolong'd to tell sad": [0, 65535], "my life prolong'd to tell sad stories": [0, 65535], "life prolong'd to tell sad stories of": [0, 65535], "prolong'd to tell sad stories of my": [0, 65535], "to tell sad stories of my owne": [0, 65535], "tell sad stories of my owne mishaps": [0, 65535], "sad stories of my owne mishaps duke": [0, 65535], "stories of my owne mishaps duke and": [0, 65535], "of my owne mishaps duke and for": [0, 65535], "my owne mishaps duke and for the": [0, 65535], "owne mishaps duke and for the sake": [0, 65535], "mishaps duke and for the sake of": [0, 65535], "duke and for the sake of them": [0, 65535], "and for the sake of them thou": [0, 65535], "for the sake of them thou sorrowest": [0, 65535], "the sake of them thou sorrowest for": [0, 65535], "sake of them thou sorrowest for doe": [0, 65535], "of them thou sorrowest for doe me": [0, 65535], "them thou sorrowest for doe me the": [0, 65535], "thou sorrowest for doe me the fauour": [0, 65535], "sorrowest for doe me the fauour to": [0, 65535], "for doe me the fauour to dilate": [0, 65535], "doe me the fauour to dilate at": [0, 65535], "me the fauour to dilate at full": [0, 65535], "the fauour to dilate at full what": [0, 65535], "fauour to dilate at full what haue": [0, 65535], "to dilate at full what haue befalne": [0, 65535], "dilate at full what haue befalne of": [0, 65535], "at full what haue befalne of them": [0, 65535], "full what haue befalne of them and": [0, 65535], "what haue befalne of them and they": [0, 65535], "haue befalne of them and they till": [0, 65535], "befalne of them and they till now": [0, 65535], "of them and they till now merch": [0, 65535], "them and they till now merch my": [0, 65535], "and they till now merch my yongest": [0, 65535], "they till now merch my yongest boy": [0, 65535], "till now merch my yongest boy and": [0, 65535], "now merch my yongest boy and yet": [0, 65535], "merch my yongest boy and yet my": [0, 65535], "my yongest boy and yet my eldest": [0, 65535], "yongest boy and yet my eldest care": [0, 65535], "boy and yet my eldest care at": [0, 65535], "and yet my eldest care at eighteene": [0, 65535], "yet my eldest care at eighteene yeeres": [0, 65535], "my eldest care at eighteene yeeres became": [0, 65535], "eldest care at eighteene yeeres became inquisitiue": [0, 65535], "care at eighteene yeeres became inquisitiue after": [0, 65535], "at eighteene yeeres became inquisitiue after his": [0, 65535], "eighteene yeeres became inquisitiue after his brother": [0, 65535], "yeeres became inquisitiue after his brother and": [0, 65535], "became inquisitiue after his brother and importun'd": [0, 65535], "inquisitiue after his brother and importun'd me": [0, 65535], "after his brother and importun'd me that": [0, 65535], "his brother and importun'd me that his": [0, 65535], "brother and importun'd me that his attendant": [0, 65535], "and importun'd me that his attendant so": [0, 65535], "importun'd me that his attendant so his": [0, 65535], "me that his attendant so his case": [0, 65535], "that his attendant so his case was": [0, 65535], "his attendant so his case was like": [0, 65535], "attendant so his case was like reft": [0, 65535], "so his case was like reft of": [0, 65535], "his case was like reft of his": [0, 65535], "case was like reft of his brother": [0, 65535], "was like reft of his brother but": [0, 65535], "like reft of his brother but retain'd": [0, 65535], "reft of his brother but retain'd his": [0, 65535], "of his brother but retain'd his name": [0, 65535], "his brother but retain'd his name might": [0, 65535], "brother but retain'd his name might beare": [0, 65535], "but retain'd his name might beare him": [0, 65535], "retain'd his name might beare him company": [0, 65535], "his name might beare him company in": [0, 65535], "name might beare him company in the": [0, 65535], "might beare him company in the quest": [0, 65535], "beare him company in the quest of": [0, 65535], "him company in the quest of him": [0, 65535], "company in the quest of him whom": [0, 65535], "in the quest of him whom whil'st": [0, 65535], "the quest of him whom whil'st i": [0, 65535], "quest of him whom whil'st i laboured": [0, 65535], "of him whom whil'st i laboured of": [0, 65535], "him whom whil'st i laboured of a": [0, 65535], "whom whil'st i laboured of a loue": [0, 65535], "whil'st i laboured of a loue to": [0, 65535], "i laboured of a loue to see": [0, 65535], "laboured of a loue to see i": [0, 65535], "of a loue to see i hazarded": [0, 65535], "a loue to see i hazarded the": [0, 65535], "loue to see i hazarded the losse": [0, 65535], "to see i hazarded the losse of": [0, 65535], "see i hazarded the losse of whom": [0, 65535], "i hazarded the losse of whom i": [0, 65535], "hazarded the losse of whom i lou'd": [0, 65535], "the losse of whom i lou'd fiue": [0, 65535], "losse of whom i lou'd fiue sommers": [0, 65535], "of whom i lou'd fiue sommers haue": [0, 65535], "whom i lou'd fiue sommers haue i": [0, 65535], "i lou'd fiue sommers haue i spent": [0, 65535], "lou'd fiue sommers haue i spent in": [0, 65535], "fiue sommers haue i spent in farthest": [0, 65535], "sommers haue i spent in farthest greece": [0, 65535], "haue i spent in farthest greece roming": [0, 65535], "i spent in farthest greece roming cleane": [0, 65535], "spent in farthest greece roming cleane through": [0, 65535], "in farthest greece roming cleane through the": [0, 65535], "farthest greece roming cleane through the bounds": [0, 65535], "greece roming cleane through the bounds of": [0, 65535], "roming cleane through the bounds of asia": [0, 65535], "cleane through the bounds of asia and": [0, 65535], "through the bounds of asia and coasting": [0, 65535], "the bounds of asia and coasting homeward": [0, 65535], "bounds of asia and coasting homeward came": [0, 65535], "of asia and coasting homeward came to": [0, 65535], "asia and coasting homeward came to ephesus": [0, 65535], "and coasting homeward came to ephesus hopelesse": [0, 65535], "coasting homeward came to ephesus hopelesse to": [0, 65535], "homeward came to ephesus hopelesse to finde": [0, 65535], "came to ephesus hopelesse to finde yet": [0, 65535], "to ephesus hopelesse to finde yet loth": [0, 65535], "ephesus hopelesse to finde yet loth to": [0, 65535], "hopelesse to finde yet loth to leaue": [0, 65535], "to finde yet loth to leaue vnsought": [0, 65535], "finde yet loth to leaue vnsought or": [0, 65535], "yet loth to leaue vnsought or that": [0, 65535], "loth to leaue vnsought or that or": [0, 65535], "to leaue vnsought or that or any": [0, 65535], "leaue vnsought or that or any place": [0, 65535], "vnsought or that or any place that": [0, 65535], "or that or any place that harbours": [0, 65535], "that or any place that harbours men": [0, 65535], "or any place that harbours men but": [0, 65535], "any place that harbours men but heere": [0, 65535], "place that harbours men but heere must": [0, 65535], "that harbours men but heere must end": [0, 65535], "harbours men but heere must end the": [0, 65535], "men but heere must end the story": [0, 65535], "but heere must end the story of": [0, 65535], "heere must end the story of my": [0, 65535], "must end the story of my life": [0, 65535], "end the story of my life and": [0, 65535], "the story of my life and happy": [0, 65535], "story of my life and happy were": [0, 65535], "of my life and happy were i": [0, 65535], "my life and happy were i in": [0, 65535], "life and happy were i in my": [0, 65535], "and happy were i in my timelie": [0, 65535], "happy were i in my timelie death": [0, 65535], "were i in my timelie death could": [0, 65535], "i in my timelie death could all": [0, 65535], "in my timelie death could all my": [0, 65535], "my timelie death could all my trauells": [0, 65535], "timelie death could all my trauells warrant": [0, 65535], "death could all my trauells warrant me": [0, 65535], "could all my trauells warrant me they": [0, 65535], "all my trauells warrant me they liue": [0, 65535], "my trauells warrant me they liue duke": [0, 65535], "trauells warrant me they liue duke haplesse": [0, 65535], "warrant me they liue duke haplesse egeon": [0, 65535], "me they liue duke haplesse egeon whom": [0, 65535], "they liue duke haplesse egeon whom the": [0, 65535], "liue duke haplesse egeon whom the fates": [0, 65535], "duke haplesse egeon whom the fates haue": [0, 65535], "haplesse egeon whom the fates haue markt": [0, 65535], "egeon whom the fates haue markt to": [0, 65535], "whom the fates haue markt to beare": [0, 65535], "the fates haue markt to beare the": [0, 65535], "fates haue markt to beare the extremitie": [0, 65535], "haue markt to beare the extremitie of": [0, 65535], "markt to beare the extremitie of dire": [0, 65535], "to beare the extremitie of dire mishap": [0, 65535], "beare the extremitie of dire mishap now": [0, 65535], "the extremitie of dire mishap now trust": [0, 65535], "extremitie of dire mishap now trust me": [0, 65535], "of dire mishap now trust me were": [0, 65535], "dire mishap now trust me were it": [0, 65535], "mishap now trust me were it not": [0, 65535], "now trust me were it not against": [0, 65535], "trust me were it not against our": [0, 65535], "me were it not against our lawes": [0, 65535], "were it not against our lawes against": [0, 65535], "it not against our lawes against my": [0, 65535], "not against our lawes against my crowne": [0, 65535], "against our lawes against my crowne my": [0, 65535], "our lawes against my crowne my oath": [0, 65535], "lawes against my crowne my oath my": [0, 65535], "against my crowne my oath my dignity": [0, 65535], "my crowne my oath my dignity which": [0, 65535], "crowne my oath my dignity which princes": [0, 65535], "my oath my dignity which princes would": [0, 65535], "oath my dignity which princes would they": [0, 65535], "my dignity which princes would they may": [0, 65535], "dignity which princes would they may not": [0, 65535], "which princes would they may not disanull": [0, 65535], "princes would they may not disanull my": [0, 65535], "would they may not disanull my soule": [0, 65535], "they may not disanull my soule should": [0, 65535], "may not disanull my soule should sue": [0, 65535], "not disanull my soule should sue as": [0, 65535], "disanull my soule should sue as aduocate": [0, 65535], "my soule should sue as aduocate for": [0, 65535], "soule should sue as aduocate for thee": [0, 65535], "should sue as aduocate for thee but": [0, 65535], "sue as aduocate for thee but though": [0, 65535], "as aduocate for thee but though thou": [0, 65535], "aduocate for thee but though thou art": [0, 65535], "for thee but though thou art adiudged": [0, 65535], "thee but though thou art adiudged to": [0, 65535], "but though thou art adiudged to the": [0, 65535], "though thou art adiudged to the death": [0, 65535], "thou art adiudged to the death and": [0, 65535], "art adiudged to the death and passed": [0, 65535], "adiudged to the death and passed sentence": [0, 65535], "to the death and passed sentence may": [0, 65535], "the death and passed sentence may not": [0, 65535], "death and passed sentence may not be": [0, 65535], "and passed sentence may not be recal'd": [0, 65535], "passed sentence may not be recal'd but": [0, 65535], "sentence may not be recal'd but to": [0, 65535], "may not be recal'd but to our": [0, 65535], "not be recal'd but to our honours": [0, 65535], "be recal'd but to our honours great": [0, 65535], "recal'd but to our honours great disparagement": [0, 65535], "but to our honours great disparagement yet": [0, 65535], "to our honours great disparagement yet will": [0, 65535], "our honours great disparagement yet will i": [0, 65535], "honours great disparagement yet will i fauour": [0, 65535], "great disparagement yet will i fauour thee": [0, 65535], "disparagement yet will i fauour thee in": [0, 65535], "yet will i fauour thee in what": [0, 65535], "will i fauour thee in what i": [0, 65535], "i fauour thee in what i can": [0, 65535], "fauour thee in what i can therefore": [0, 65535], "thee in what i can therefore marchant": [0, 65535], "in what i can therefore marchant ile": [0, 65535], "what i can therefore marchant ile limit": [0, 65535], "i can therefore marchant ile limit thee": [0, 65535], "can therefore marchant ile limit thee this": [0, 65535], "therefore marchant ile limit thee this day": [0, 65535], "marchant ile limit thee this day to": [0, 65535], "ile limit thee this day to seeke": [0, 65535], "limit thee this day to seeke thy": [0, 65535], "thee this day to seeke thy helpe": [0, 65535], "this day to seeke thy helpe by": [0, 65535], "day to seeke thy helpe by beneficiall": [0, 65535], "to seeke thy helpe by beneficiall helpe": [0, 65535], "seeke thy helpe by beneficiall helpe try": [0, 65535], "thy helpe by beneficiall helpe try all": [0, 65535], "helpe by beneficiall helpe try all the": [0, 65535], "by beneficiall helpe try all the friends": [0, 65535], "beneficiall helpe try all the friends thou": [0, 65535], "helpe try all the friends thou hast": [0, 65535], "try all the friends thou hast in": [0, 65535], "all the friends thou hast in ephesus": [0, 65535], "the friends thou hast in ephesus beg": [0, 65535], "friends thou hast in ephesus beg thou": [0, 65535], "thou hast in ephesus beg thou or": [0, 65535], "hast in ephesus beg thou or borrow": [0, 65535], "in ephesus beg thou or borrow to": [0, 65535], "ephesus beg thou or borrow to make": [0, 65535], "beg thou or borrow to make vp": [0, 65535], "thou or borrow to make vp the": [0, 65535], "or borrow to make vp the summe": [0, 65535], "borrow to make vp the summe and": [0, 65535], "to make vp the summe and liue": [0, 65535], "make vp the summe and liue if": [0, 65535], "vp the summe and liue if no": [0, 65535], "the summe and liue if no then": [0, 65535], "summe and liue if no then thou": [0, 65535], "and liue if no then thou art": [0, 65535], "liue if no then thou art doom'd": [0, 65535], "if no then thou art doom'd to": [0, 65535], "no then thou art doom'd to die": [0, 65535], "then thou art doom'd to die iaylor": [0, 65535], "thou art doom'd to die iaylor take": [0, 65535], "art doom'd to die iaylor take him": [0, 65535], "doom'd to die iaylor take him to": [0, 65535], "to die iaylor take him to thy": [0, 65535], "die iaylor take him to thy custodie": [0, 65535], "iaylor take him to thy custodie iaylor": [0, 65535], "take him to thy custodie iaylor i": [0, 65535], "him to thy custodie iaylor i will": [0, 65535], "to thy custodie iaylor i will my": [0, 65535], "thy custodie iaylor i will my lord": [0, 65535], "custodie iaylor i will my lord merch": [0, 65535], "iaylor i will my lord merch hopelesse": [0, 65535], "i will my lord merch hopelesse and": [0, 65535], "will my lord merch hopelesse and helpelesse": [0, 65535], "my lord merch hopelesse and helpelesse doth": [0, 65535], "lord merch hopelesse and helpelesse doth egean": [0, 65535], "merch hopelesse and helpelesse doth egean wend": [0, 65535], "hopelesse and helpelesse doth egean wend but": [0, 65535], "and helpelesse doth egean wend but to": [0, 65535], "helpelesse doth egean wend but to procrastinate": [0, 65535], "doth egean wend but to procrastinate his": [0, 65535], "egean wend but to procrastinate his liuelesse": [0, 65535], "wend but to procrastinate his liuelesse end": [0, 65535], "but to procrastinate his liuelesse end exeunt": [0, 65535], "to procrastinate his liuelesse end exeunt enter": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "his liuelesse end exeunt enter antipholis erotes": [0, 65535], "liuelesse end exeunt enter antipholis erotes a": [0, 65535], "end exeunt enter antipholis erotes a marchant": [0, 65535], "exeunt enter antipholis erotes a marchant and": [0, 65535], "enter antipholis erotes a marchant and dromio": [0, 65535], "antipholis erotes a marchant and dromio mer": [0, 65535], "erotes a marchant and dromio mer therefore": [0, 65535], "a marchant and dromio mer therefore giue": [0, 65535], "marchant and dromio mer therefore giue out": [0, 65535], "and dromio mer therefore giue out you": [0, 65535], "dromio mer therefore giue out you are": [0, 65535], "mer therefore giue out you are of": [0, 65535], "therefore giue out you are of epidamium": [0, 65535], "giue out you are of epidamium lest": [0, 65535], "out you are of epidamium lest that": [0, 65535], "you are of epidamium lest that your": [0, 65535], "are of epidamium lest that your goods": [0, 65535], "of epidamium lest that your goods too": [0, 65535], "epidamium lest that your goods too soone": [0, 65535], "lest that your goods too soone be": [0, 65535], "that your goods too soone be confiscate": [0, 65535], "your goods too soone be confiscate this": [0, 65535], "goods too soone be confiscate this very": [0, 65535], "too soone be confiscate this very day": [0, 65535], "soone be confiscate this very day a": [0, 65535], "be confiscate this very day a syracusian": [0, 65535], "confiscate this very day a syracusian marchant": [0, 65535], "this very day a syracusian marchant is": [0, 65535], "very day a syracusian marchant is apprehended": [0, 65535], "day a syracusian marchant is apprehended for": [0, 65535], "a syracusian marchant is apprehended for a": [0, 65535], "syracusian marchant is apprehended for a riuall": [0, 65535], "marchant is apprehended for a riuall here": [0, 65535], "is apprehended for a riuall here and": [0, 65535], "apprehended for a riuall here and not": [0, 65535], "for a riuall here and not being": [0, 65535], "a riuall here and not being able": [0, 65535], "riuall here and not being able to": [0, 65535], "here and not being able to buy": [0, 65535], "and not being able to buy out": [0, 65535], "not being able to buy out his": [0, 65535], "being able to buy out his life": [0, 65535], "able to buy out his life according": [0, 65535], "to buy out his life according to": [0, 65535], "buy out his life according to the": [0, 65535], "out his life according to the statute": [0, 65535], "his life according to the statute of": [0, 65535], "life according to the statute of the": [0, 65535], "according to the statute of the towne": [0, 65535], "to the statute of the towne dies": [0, 65535], "the statute of the towne dies ere": [0, 65535], "statute of the towne dies ere the": [0, 65535], "of the towne dies ere the wearie": [0, 65535], "the towne dies ere the wearie sunne": [0, 65535], "towne dies ere the wearie sunne set": [0, 65535], "dies ere the wearie sunne set in": [0, 65535], "ere the wearie sunne set in the": [0, 65535], "the wearie sunne set in the west": [0, 65535], "wearie sunne set in the west there": [0, 65535], "sunne set in the west there is": [0, 65535], "set in the west there is your": [0, 65535], "in the west there is your monie": [0, 65535], "the west there is your monie that": [0, 65535], "west there is your monie that i": [0, 65535], "there is your monie that i had": [0, 65535], "is your monie that i had to": [0, 65535], "your monie that i had to keepe": [0, 65535], "monie that i had to keepe ant": [0, 65535], "that i had to keepe ant goe": [0, 65535], "i had to keepe ant goe beare": [0, 65535], "had to keepe ant goe beare it": [0, 65535], "to keepe ant goe beare it to": [0, 65535], "keepe ant goe beare it to the": [0, 65535], "ant goe beare it to the centaure": [0, 65535], "goe beare it to the centaure where": [0, 65535], "beare it to the centaure where we": [0, 65535], "it to the centaure where we host": [0, 65535], "to the centaure where we host and": [0, 65535], "the centaure where we host and stay": [0, 65535], "centaure where we host and stay there": [0, 65535], "where we host and stay there dromio": [0, 65535], "we host and stay there dromio till": [0, 65535], "host and stay there dromio till i": [0, 65535], "and stay there dromio till i come": [0, 65535], "stay there dromio till i come to": [0, 65535], "there dromio till i come to thee": [0, 65535], "dromio till i come to thee within": [0, 65535], "till i come to thee within this": [0, 65535], "i come to thee within this houre": [0, 65535], "come to thee within this houre it": [0, 65535], "to thee within this houre it will": [0, 65535], "thee within this houre it will be": [0, 65535], "within this houre it will be dinner": [0, 65535], "this houre it will be dinner time": [0, 65535], "houre it will be dinner time till": [0, 65535], "it will be dinner time till that": [0, 65535], "will be dinner time till that ile": [0, 65535], "be dinner time till that ile view": [0, 65535], "dinner time till that ile view the": [0, 65535], "time till that ile view the manners": [0, 65535], "till that ile view the manners of": [0, 65535], "that ile view the manners of the": [0, 65535], "ile view the manners of the towne": [0, 65535], "view the manners of the towne peruse": [0, 65535], "the manners of the towne peruse the": [0, 65535], "manners of the towne peruse the traders": [0, 65535], "of the towne peruse the traders gaze": [0, 65535], "the towne peruse the traders gaze vpon": [0, 65535], "towne peruse the traders gaze vpon the": [0, 65535], "peruse the traders gaze vpon the buildings": [0, 65535], "the traders gaze vpon the buildings and": [0, 65535], "traders gaze vpon the buildings and then": [0, 65535], "gaze vpon the buildings and then returne": [0, 65535], "vpon the buildings and then returne and": [0, 65535], "the buildings and then returne and sleepe": [0, 65535], "buildings and then returne and sleepe within": [0, 65535], "and then returne and sleepe within mine": [0, 65535], "then returne and sleepe within mine inne": [0, 65535], "returne and sleepe within mine inne for": [0, 65535], "and sleepe within mine inne for with": [0, 65535], "sleepe within mine inne for with long": [0, 65535], "within mine inne for with long trauaile": [0, 65535], "mine inne for with long trauaile i": [0, 65535], "inne for with long trauaile i am": [0, 65535], "for with long trauaile i am stiffe": [0, 65535], "with long trauaile i am stiffe and": [0, 65535], "long trauaile i am stiffe and wearie": [0, 65535], "trauaile i am stiffe and wearie get": [0, 65535], "i am stiffe and wearie get thee": [0, 65535], "am stiffe and wearie get thee away": [0, 65535], "stiffe and wearie get thee away dro": [0, 65535], "and wearie get thee away dro many": [0, 65535], "wearie get thee away dro many a": [0, 65535], "get thee away dro many a man": [0, 65535], "thee away dro many a man would": [0, 65535], "away dro many a man would take": [0, 65535], "dro many a man would take you": [0, 65535], "many a man would take you at": [0, 65535], "a man would take you at your": [0, 65535], "man would take you at your word": [0, 65535], "would take you at your word and": [0, 65535], "take you at your word and goe": [0, 65535], "you at your word and goe indeede": [0, 65535], "at your word and goe indeede hauing": [0, 65535], "your word and goe indeede hauing so": [0, 65535], "word and goe indeede hauing so good": [0, 65535], "and goe indeede hauing so good a": [0, 65535], "goe indeede hauing so good a meane": [0, 65535], "indeede hauing so good a meane exit": [0, 65535], "hauing so good a meane exit dromio": [0, 65535], "so good a meane exit dromio ant": [0, 65535], "good a meane exit dromio ant a": [0, 65535], "a meane exit dromio ant a trustie": [0, 65535], "meane exit dromio ant a trustie villaine": [0, 65535], "exit dromio ant a trustie villaine sir": [0, 65535], "dromio ant a trustie villaine sir that": [0, 65535], "ant a trustie villaine sir that very": [0, 65535], "a trustie villaine sir that very oft": [0, 65535], "trustie villaine sir that very oft when": [0, 65535], "villaine sir that very oft when i": [0, 65535], "sir that very oft when i am": [0, 65535], "that very oft when i am dull": [0, 65535], "very oft when i am dull with": [0, 65535], "oft when i am dull with care": [0, 65535], "when i am dull with care and": [0, 65535], "i am dull with care and melancholly": [0, 65535], "am dull with care and melancholly lightens": [0, 65535], "dull with care and melancholly lightens my": [0, 65535], "with care and melancholly lightens my humour": [0, 65535], "care and melancholly lightens my humour with": [0, 65535], "and melancholly lightens my humour with his": [0, 65535], "melancholly lightens my humour with his merry": [0, 65535], "lightens my humour with his merry iests": [0, 65535], "my humour with his merry iests what": [0, 65535], "humour with his merry iests what will": [0, 65535], "with his merry iests what will you": [0, 65535], "his merry iests what will you walke": [0, 65535], "merry iests what will you walke with": [0, 65535], "iests what will you walke with me": [0, 65535], "what will you walke with me about": [0, 65535], "will you walke with me about the": [0, 65535], "you walke with me about the towne": [0, 65535], "walke with me about the towne and": [0, 65535], "with me about the towne and then": [0, 65535], "me about the towne and then goe": [0, 65535], "about the towne and then goe to": [0, 65535], "the towne and then goe to my": [0, 65535], "towne and then goe to my inne": [0, 65535], "and then goe to my inne and": [0, 65535], "then goe to my inne and dine": [0, 65535], "goe to my inne and dine with": [0, 65535], "to my inne and dine with me": [0, 65535], "my inne and dine with me e": [0, 65535], "inne and dine with me e mar": [0, 65535], "and dine with me e mar i": [0, 65535], "dine with me e mar i am": [0, 65535], "with me e mar i am inuited": [0, 65535], "me e mar i am inuited sir": [0, 65535], "e mar i am inuited sir to": [0, 65535], "mar i am inuited sir to certaine": [0, 65535], "i am inuited sir to certaine marchants": [0, 65535], "am inuited sir to certaine marchants of": [0, 65535], "inuited sir to certaine marchants of whom": [0, 65535], "sir to certaine marchants of whom i": [0, 65535], "to certaine marchants of whom i hope": [0, 65535], "certaine marchants of whom i hope to": [0, 65535], "marchants of whom i hope to make": [0, 65535], "of whom i hope to make much": [0, 65535], "whom i hope to make much benefit": [0, 65535], "i hope to make much benefit i": [0, 65535], "hope to make much benefit i craue": [0, 65535], "to make much benefit i craue your": [0, 65535], "make much benefit i craue your pardon": [0, 65535], "much benefit i craue your pardon soone": [0, 65535], "benefit i craue your pardon soone at": [0, 65535], "i craue your pardon soone at fiue": [0, 65535], "craue your pardon soone at fiue a": [0, 65535], "your pardon soone at fiue a clocke": [0, 65535], "pardon soone at fiue a clocke please": [0, 65535], "soone at fiue a clocke please you": [0, 65535], "at fiue a clocke please you ile": [0, 65535], "fiue a clocke please you ile meete": [0, 65535], "a clocke please you ile meete with": [0, 65535], "clocke please you ile meete with you": [0, 65535], "please you ile meete with you vpon": [0, 65535], "you ile meete with you vpon the": [0, 65535], "ile meete with you vpon the mart": [0, 65535], "meete with you vpon the mart and": [0, 65535], "with you vpon the mart and afterward": [0, 65535], "you vpon the mart and afterward consort": [0, 65535], "vpon the mart and afterward consort you": [0, 65535], "the mart and afterward consort you till": [0, 65535], "mart and afterward consort you till bed": [0, 65535], "and afterward consort you till bed time": [0, 65535], "afterward consort you till bed time my": [0, 65535], "consort you till bed time my present": [0, 65535], "you till bed time my present businesse": [0, 65535], "till bed time my present businesse cals": [0, 65535], "bed time my present businesse cals me": [0, 65535], "time my present businesse cals me from": [0, 65535], "my present businesse cals me from you": [0, 65535], "present businesse cals me from you now": [0, 65535], "businesse cals me from you now ant": [0, 65535], "cals me from you now ant farewell": [0, 65535], "me from you now ant farewell till": [0, 65535], "from you now ant farewell till then": [0, 65535], "you now ant farewell till then i": [0, 65535], "now ant farewell till then i will": [0, 65535], "ant farewell till then i will goe": [0, 65535], "farewell till then i will goe loose": [0, 65535], "till then i will goe loose my": [0, 65535], "then i will goe loose my selfe": [0, 65535], "i will goe loose my selfe and": [0, 65535], "will goe loose my selfe and wander": [0, 65535], "goe loose my selfe and wander vp": [0, 65535], "loose my selfe and wander vp and": [0, 65535], "my selfe and wander vp and downe": [0, 65535], "selfe and wander vp and downe to": [0, 65535], "and wander vp and downe to view": [0, 65535], "wander vp and downe to view the": [0, 65535], "vp and downe to view the citie": [0, 65535], "and downe to view the citie e": [0, 65535], "downe to view the citie e mar": [0, 65535], "to view the citie e mar sir": [0, 65535], "view the citie e mar sir i": [0, 65535], "the citie e mar sir i commend": [0, 65535], "citie e mar sir i commend you": [0, 65535], "e mar sir i commend you to": [0, 65535], "mar sir i commend you to your": [0, 65535], "sir i commend you to your owne": [0, 65535], "i commend you to your owne content": [0, 65535], "commend you to your owne content exeunt": [0, 65535], "you to your owne content exeunt ant": [0, 65535], "to your owne content exeunt ant he": [0, 65535], "your owne content exeunt ant he that": [0, 65535], "owne content exeunt ant he that commends": [0, 65535], "content exeunt ant he that commends me": [0, 65535], "exeunt ant he that commends me to": [0, 65535], "ant he that commends me to mine": [0, 65535], "he that commends me to mine owne": [0, 65535], "that commends me to mine owne content": [0, 65535], "commends me to mine owne content commends": [0, 65535], "me to mine owne content commends me": [0, 65535], "to mine owne content commends me to": [0, 65535], "mine owne content commends me to the": [0, 65535], "owne content commends me to the thing": [0, 65535], "content commends me to the thing i": [0, 65535], "commends me to the thing i cannot": [0, 65535], "me to the thing i cannot get": [0, 65535], "to the thing i cannot get i": [0, 65535], "the thing i cannot get i to": [0, 65535], "thing i cannot get i to the": [0, 65535], "i cannot get i to the world": [0, 65535], "cannot get i to the world am": [0, 65535], "get i to the world am like": [0, 65535], "i to the world am like a": [0, 65535], "to the world am like a drop": [0, 65535], "the world am like a drop of": [0, 65535], "world am like a drop of water": [0, 65535], "am like a drop of water that": [0, 65535], "like a drop of water that in": [0, 65535], "a drop of water that in the": [0, 65535], "drop of water that in the ocean": [0, 65535], "of water that in the ocean seekes": [0, 65535], "water that in the ocean seekes another": [0, 65535], "that in the ocean seekes another drop": [0, 65535], "in the ocean seekes another drop who": [0, 65535], "the ocean seekes another drop who falling": [0, 65535], "ocean seekes another drop who falling there": [0, 65535], "seekes another drop who falling there to": [0, 65535], "another drop who falling there to finde": [0, 65535], "drop who falling there to finde his": [0, 65535], "who falling there to finde his fellow": [0, 65535], "falling there to finde his fellow forth": [0, 65535], "there to finde his fellow forth vnseene": [0, 65535], "to finde his fellow forth vnseene inquisitiue": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "vnseene inquisitiue confounds himselfe so i to": [0, 65535], "inquisitiue confounds himselfe so i to finde": [0, 65535], "confounds himselfe so i to finde a": [0, 65535], "himselfe so i to finde a mother": [0, 65535], "so i to finde a mother and": [0, 65535], "i to finde a mother and a": [0, 65535], "to finde a mother and a brother": [0, 65535], "finde a mother and a brother in": [0, 65535], "a mother and a brother in quest": [0, 65535], "mother and a brother in quest of": [0, 65535], "and a brother in quest of them": [0, 65535], "a brother in quest of them vnhappie": [0, 65535], "brother in quest of them vnhappie a": [0, 65535], "in quest of them vnhappie a loose": [0, 65535], "quest of them vnhappie a loose my": [0, 65535], "of them vnhappie a loose my selfe": [0, 65535], "them vnhappie a loose my selfe enter": [0, 65535], "vnhappie a loose my selfe enter dromio": [0, 65535], "a loose my selfe enter dromio of": [0, 65535], "loose my selfe enter dromio of ephesus": [0, 65535], "my selfe enter dromio of ephesus here": [0, 65535], "selfe enter dromio of ephesus here comes": [0, 65535], "enter dromio of ephesus here comes the": [0, 65535], "dromio of ephesus here comes the almanacke": [0, 65535], "of ephesus here comes the almanacke of": [0, 65535], "ephesus here comes the almanacke of my": [0, 65535], "here comes the almanacke of my true": [0, 65535], "comes the almanacke of my true date": [0, 65535], "the almanacke of my true date what": [0, 65535], "almanacke of my true date what now": [0, 65535], "of my true date what now how": [0, 65535], "my true date what now how chance": [0, 65535], "true date what now how chance thou": [0, 65535], "date what now how chance thou art": [0, 65535], "what now how chance thou art return'd": [0, 65535], "now how chance thou art return'd so": [0, 65535], "how chance thou art return'd so soone": [0, 65535], "chance thou art return'd so soone e": [0, 65535], "thou art return'd so soone e dro": [0, 65535], "art return'd so soone e dro return'd": [0, 65535], "return'd so soone e dro return'd so": [0, 65535], "so soone e dro return'd so soone": [0, 65535], "soone e dro return'd so soone rather": [0, 65535], "e dro return'd so soone rather approacht": [0, 65535], "dro return'd so soone rather approacht too": [0, 65535], "return'd so soone rather approacht too late": [0, 65535], "so soone rather approacht too late the": [0, 65535], "soone rather approacht too late the capon": [0, 65535], "rather approacht too late the capon burnes": [0, 65535], "approacht too late the capon burnes the": [0, 65535], "too late the capon burnes the pig": [0, 65535], "late the capon burnes the pig fals": [0, 65535], "the capon burnes the pig fals from": [0, 65535], "capon burnes the pig fals from the": [0, 65535], "burnes the pig fals from the spit": [0, 65535], "the pig fals from the spit the": [0, 65535], "pig fals from the spit the clocke": [0, 65535], "fals from the spit the clocke hath": [0, 65535], "from the spit the clocke hath strucken": [0, 65535], "the spit the clocke hath strucken twelue": [0, 65535], "spit the clocke hath strucken twelue vpon": [0, 65535], "the clocke hath strucken twelue vpon the": [0, 65535], "clocke hath strucken twelue vpon the bell": [0, 65535], "hath strucken twelue vpon the bell my": [0, 65535], "strucken twelue vpon the bell my mistris": [0, 65535], "twelue vpon the bell my mistris made": [0, 65535], "vpon the bell my mistris made it": [0, 65535], "the bell my mistris made it one": [0, 65535], "bell my mistris made it one vpon": [0, 65535], "my mistris made it one vpon my": [0, 65535], "mistris made it one vpon my cheeke": [0, 65535], "made it one vpon my cheeke she": [0, 65535], "it one vpon my cheeke she is": [0, 65535], "one vpon my cheeke she is so": [0, 65535], "vpon my cheeke she is so hot": [0, 65535], "my cheeke she is so hot because": [0, 65535], "cheeke she is so hot because the": [0, 65535], "she is so hot because the meate": [0, 65535], "is so hot because the meate is": [0, 65535], "so hot because the meate is colde": [0, 65535], "hot because the meate is colde the": [0, 65535], "because the meate is colde the meate": [0, 65535], "the meate is colde the meate is": [0, 65535], "meate is colde the meate is colde": [0, 65535], "is colde the meate is colde because": [0, 65535], "colde the meate is colde because you": [0, 65535], "the meate is colde because you come": [0, 65535], "meate is colde because you come not": [0, 65535], "is colde because you come not home": [0, 65535], "colde because you come not home you": [0, 65535], "because you come not home you come": [0, 65535], "you come not home you come not": [0, 65535], "come not home you come not home": [0, 65535], "not home you come not home because": [0, 65535], "home you come not home because you": [0, 65535], "you come not home because you haue": [0, 65535], "come not home because you haue no": [0, 65535], "not home because you haue no stomacke": [0, 65535], "home because you haue no stomacke you": [0, 65535], "because you haue no stomacke you haue": [0, 65535], "you haue no stomacke you haue no": [0, 65535], "haue no stomacke you haue no stomacke": [0, 65535], "no stomacke you haue no stomacke hauing": [0, 65535], "stomacke you haue no stomacke hauing broke": [0, 65535], "you haue no stomacke hauing broke your": [0, 65535], "haue no stomacke hauing broke your fast": [0, 65535], "no stomacke hauing broke your fast but": [0, 65535], "stomacke hauing broke your fast but we": [0, 65535], "hauing broke your fast but we that": [0, 65535], "broke your fast but we that know": [0, 65535], "your fast but we that know what": [0, 65535], "fast but we that know what 'tis": [0, 65535], "but we that know what 'tis to": [0, 65535], "we that know what 'tis to fast": [0, 65535], "that know what 'tis to fast and": [0, 65535], "know what 'tis to fast and pray": [0, 65535], "what 'tis to fast and pray are": [0, 65535], "'tis to fast and pray are penitent": [0, 65535], "to fast and pray are penitent for": [0, 65535], "fast and pray are penitent for your": [0, 65535], "and pray are penitent for your default": [0, 65535], "pray are penitent for your default to": [0, 65535], "are penitent for your default to day": [0, 65535], "penitent for your default to day ant": [0, 65535], "for your default to day ant stop": [0, 65535], "your default to day ant stop in": [0, 65535], "default to day ant stop in your": [0, 65535], "to day ant stop in your winde": [0, 65535], "day ant stop in your winde sir": [0, 65535], "ant stop in your winde sir tell": [0, 65535], "stop in your winde sir tell me": [0, 65535], "in your winde sir tell me this": [0, 65535], "your winde sir tell me this i": [0, 65535], "winde sir tell me this i pray": [0, 65535], "sir tell me this i pray where": [0, 65535], "tell me this i pray where haue": [0, 65535], "me this i pray where haue you": [0, 65535], "this i pray where haue you left": [0, 65535], "i pray where haue you left the": [0, 65535], "pray where haue you left the mony": [0, 65535], "where haue you left the mony that": [0, 65535], "haue you left the mony that i": [0, 65535], "you left the mony that i gaue": [0, 65535], "left the mony that i gaue you": [0, 65535], "the mony that i gaue you e": [0, 65535], "mony that i gaue you e dro": [0, 65535], "that i gaue you e dro oh": [0, 65535], "i gaue you e dro oh sixe": [0, 65535], "gaue you e dro oh sixe pence": [0, 65535], "you e dro oh sixe pence that": [0, 65535], "e dro oh sixe pence that i": [0, 65535], "dro oh sixe pence that i had": [0, 65535], "oh sixe pence that i had a": [0, 65535], "sixe pence that i had a wensday": [0, 65535], "pence that i had a wensday last": [0, 65535], "that i had a wensday last to": [0, 65535], "i had a wensday last to pay": [0, 65535], "had a wensday last to pay the": [0, 65535], "a wensday last to pay the sadler": [0, 65535], "wensday last to pay the sadler for": [0, 65535], "last to pay the sadler for my": [0, 65535], "to pay the sadler for my mistris": [0, 65535], "pay the sadler for my mistris crupper": [0, 65535], "the sadler for my mistris crupper the": [0, 65535], "sadler for my mistris crupper the sadler": [0, 65535], "for my mistris crupper the sadler had": [0, 65535], "my mistris crupper the sadler had it": [0, 65535], "mistris crupper the sadler had it sir": [0, 65535], "crupper the sadler had it sir i": [0, 65535], "the sadler had it sir i kept": [0, 65535], "sadler had it sir i kept it": [0, 65535], "had it sir i kept it not": [0, 65535], "it sir i kept it not ant": [0, 65535], "sir i kept it not ant i": [0, 65535], "i kept it not ant i am": [0, 65535], "kept it not ant i am not": [0, 65535], "it not ant i am not in": [0, 65535], "not ant i am not in a": [0, 65535], "ant i am not in a sportiue": [0, 65535], "i am not in a sportiue humor": [0, 65535], "am not in a sportiue humor now": [0, 65535], "not in a sportiue humor now tell": [0, 65535], "in a sportiue humor now tell me": [0, 65535], "a sportiue humor now tell me and": [0, 65535], "sportiue humor now tell me and dally": [0, 65535], "humor now tell me and dally not": [0, 65535], "now tell me and dally not where": [0, 65535], "tell me and dally not where is": [0, 65535], "me and dally not where is the": [0, 65535], "and dally not where is the monie": [0, 65535], "dally not where is the monie we": [0, 65535], "not where is the monie we being": [0, 65535], "where is the monie we being strangers": [0, 65535], "is the monie we being strangers here": [0, 65535], "the monie we being strangers here how": [0, 65535], "monie we being strangers here how dar'st": [0, 65535], "we being strangers here how dar'st thou": [0, 65535], "being strangers here how dar'st thou trust": [0, 65535], "strangers here how dar'st thou trust so": [0, 65535], "here how dar'st thou trust so great": [0, 65535], "how dar'st thou trust so great a": [0, 65535], "dar'st thou trust so great a charge": [0, 65535], "thou trust so great a charge from": [0, 65535], "trust so great a charge from thine": [0, 65535], "so great a charge from thine owne": [0, 65535], "great a charge from thine owne custodie": [0, 65535], "a charge from thine owne custodie e": [0, 65535], "charge from thine owne custodie e dro": [0, 65535], "from thine owne custodie e dro i": [0, 65535], "thine owne custodie e dro i pray": [0, 65535], "owne custodie e dro i pray you": [0, 65535], "custodie e dro i pray you iest": [0, 65535], "e dro i pray you iest sir": [0, 65535], "dro i pray you iest sir as": [0, 65535], "i pray you iest sir as you": [0, 65535], "pray you iest sir as you sit": [0, 65535], "you iest sir as you sit at": [0, 65535], "iest sir as you sit at dinner": [0, 65535], "sir as you sit at dinner i": [0, 65535], "as you sit at dinner i from": [0, 65535], "you sit at dinner i from my": [0, 65535], "sit at dinner i from my mistris": [0, 65535], "at dinner i from my mistris come": [0, 65535], "dinner i from my mistris come to": [0, 65535], "i from my mistris come to you": [0, 65535], "from my mistris come to you in": [0, 65535], "my mistris come to you in post": [0, 65535], "mistris come to you in post if": [0, 65535], "come to you in post if i": [0, 65535], "to you in post if i returne": [0, 65535], "you in post if i returne i": [0, 65535], "in post if i returne i shall": [0, 65535], "post if i returne i shall be": [0, 65535], "if i returne i shall be post": [0, 65535], "i returne i shall be post indeede": [0, 65535], "returne i shall be post indeede for": [0, 65535], "i shall be post indeede for she": [0, 65535], "shall be post indeede for she will": [0, 65535], "be post indeede for she will scoure": [0, 65535], "post indeede for she will scoure your": [0, 65535], "indeede for she will scoure your fault": [0, 65535], "for she will scoure your fault vpon": [0, 65535], "she will scoure your fault vpon my": [0, 65535], "will scoure your fault vpon my pate": [0, 65535], "scoure your fault vpon my pate me": [0, 65535], "your fault vpon my pate me thinkes": [0, 65535], "fault vpon my pate me thinkes your": [0, 65535], "vpon my pate me thinkes your maw": [0, 65535], "my pate me thinkes your maw like": [0, 65535], "pate me thinkes your maw like mine": [0, 65535], "me thinkes your maw like mine should": [0, 65535], "thinkes your maw like mine should be": [0, 65535], "your maw like mine should be your": [0, 65535], "maw like mine should be your cooke": [0, 65535], "like mine should be your cooke and": [0, 65535], "mine should be your cooke and strike": [0, 65535], "should be your cooke and strike you": [0, 65535], "be your cooke and strike you home": [0, 65535], "your cooke and strike you home without": [0, 65535], "cooke and strike you home without a": [0, 65535], "and strike you home without a messenger": [0, 65535], "strike you home without a messenger ant": [0, 65535], "you home without a messenger ant come": [0, 65535], "home without a messenger ant come dromio": [0, 65535], "without a messenger ant come dromio come": [0, 65535], "a messenger ant come dromio come these": [0, 65535], "messenger ant come dromio come these iests": [0, 65535], "ant come dromio come these iests are": [0, 65535], "come dromio come these iests are out": [0, 65535], "dromio come these iests are out of": [0, 65535], "come these iests are out of season": [0, 65535], "these iests are out of season reserue": [0, 65535], "iests are out of season reserue them": [0, 65535], "are out of season reserue them till": [0, 65535], "out of season reserue them till a": [0, 65535], "of season reserue them till a merrier": [0, 65535], "season reserue them till a merrier houre": [0, 65535], "reserue them till a merrier houre then": [0, 65535], "them till a merrier houre then this": [0, 65535], "till a merrier houre then this where": [0, 65535], "a merrier houre then this where is": [0, 65535], "merrier houre then this where is the": [0, 65535], "houre then this where is the gold": [0, 65535], "then this where is the gold i": [0, 65535], "this where is the gold i gaue": [0, 65535], "where is the gold i gaue in": [0, 65535], "is the gold i gaue in charge": [0, 65535], "the gold i gaue in charge to": [0, 65535], "gold i gaue in charge to thee": [0, 65535], "i gaue in charge to thee e": [0, 65535], "gaue in charge to thee e dro": [0, 65535], "in charge to thee e dro to": [0, 65535], "charge to thee e dro to me": [0, 65535], "to thee e dro to me sir": [0, 65535], "thee e dro to me sir why": [0, 65535], "e dro to me sir why you": [0, 65535], "dro to me sir why you gaue": [0, 65535], "to me sir why you gaue no": [0, 65535], "me sir why you gaue no gold": [0, 65535], "sir why you gaue no gold to": [0, 65535], "why you gaue no gold to me": [0, 65535], "you gaue no gold to me ant": [0, 65535], "gaue no gold to me ant come": [0, 65535], "no gold to me ant come on": [0, 65535], "gold to me ant come on sir": [0, 65535], "to me ant come on sir knaue": [0, 65535], "me ant come on sir knaue haue": [0, 65535], "ant come on sir knaue haue done": [0, 65535], "come on sir knaue haue done your": [0, 65535], "on sir knaue haue done your foolishnes": [0, 65535], "sir knaue haue done your foolishnes and": [0, 65535], "knaue haue done your foolishnes and tell": [0, 65535], "haue done your foolishnes and tell me": [0, 65535], "done your foolishnes and tell me how": [0, 65535], "your foolishnes and tell me how thou": [0, 65535], "foolishnes and tell me how thou hast": [0, 65535], "and tell me how thou hast dispos'd": [0, 65535], "tell me how thou hast dispos'd thy": [0, 65535], "me how thou hast dispos'd thy charge": [0, 65535], "how thou hast dispos'd thy charge e": [0, 65535], "thou hast dispos'd thy charge e dro": [0, 65535], "hast dispos'd thy charge e dro my": [0, 65535], "dispos'd thy charge e dro my charge": [0, 65535], "thy charge e dro my charge was": [0, 65535], "charge e dro my charge was but": [0, 65535], "e dro my charge was but to": [0, 65535], "dro my charge was but to fetch": [0, 65535], "my charge was but to fetch you": [0, 65535], "charge was but to fetch you from": [0, 65535], "was but to fetch you from the": [0, 65535], "but to fetch you from the mart": [0, 65535], "to fetch you from the mart home": [0, 65535], "fetch you from the mart home to": [0, 65535], "you from the mart home to your": [0, 65535], "from the mart home to your house": [0, 65535], "the mart home to your house the": [0, 65535], "mart home to your house the ph\u0153nix": [0, 65535], "home to your house the ph\u0153nix sir": [0, 65535], "to your house the ph\u0153nix sir to": [0, 65535], "your house the ph\u0153nix sir to dinner": [0, 65535], "house the ph\u0153nix sir to dinner my": [0, 65535], "the ph\u0153nix sir to dinner my mistris": [0, 65535], "ph\u0153nix sir to dinner my mistris and": [0, 65535], "sir to dinner my mistris and her": [0, 65535], "to dinner my mistris and her sister": [0, 65535], "dinner my mistris and her sister staies": [0, 65535], "my mistris and her sister staies for": [0, 65535], "mistris and her sister staies for you": [0, 65535], "and her sister staies for you ant": [0, 65535], "her sister staies for you ant now": [0, 65535], "sister staies for you ant now as": [0, 65535], "staies for you ant now as i": [0, 65535], "for you ant now as i am": [0, 65535], "you ant now as i am a": [0, 65535], "ant now as i am a christian": [0, 65535], "now as i am a christian answer": [0, 65535], "as i am a christian answer me": [0, 65535], "i am a christian answer me in": [0, 65535], "am a christian answer me in what": [0, 65535], "a christian answer me in what safe": [0, 65535], "christian answer me in what safe place": [0, 65535], "answer me in what safe place you": [0, 65535], "me in what safe place you haue": [0, 65535], "in what safe place you haue bestow'd": [0, 65535], "what safe place you haue bestow'd my": [0, 65535], "safe place you haue bestow'd my monie": [0, 65535], "place you haue bestow'd my monie or": [0, 65535], "you haue bestow'd my monie or i": [0, 65535], "haue bestow'd my monie or i shall": [0, 65535], "bestow'd my monie or i shall breake": [0, 65535], "my monie or i shall breake that": [0, 65535], "monie or i shall breake that merrie": [0, 65535], "or i shall breake that merrie sconce": [0, 65535], "i shall breake that merrie sconce of": [0, 65535], "shall breake that merrie sconce of yours": [0, 65535], "breake that merrie sconce of yours that": [0, 65535], "that merrie sconce of yours that stands": [0, 65535], "merrie sconce of yours that stands on": [0, 65535], "sconce of yours that stands on tricks": [0, 65535], "of yours that stands on tricks when": [0, 65535], "yours that stands on tricks when i": [0, 65535], "that stands on tricks when i am": [0, 65535], "stands on tricks when i am vndispos'd": [0, 65535], "on tricks when i am vndispos'd where": [0, 65535], "tricks when i am vndispos'd where is": [0, 65535], "when i am vndispos'd where is the": [0, 65535], "i am vndispos'd where is the thousand": [0, 65535], "am vndispos'd where is the thousand markes": [0, 65535], "vndispos'd where is the thousand markes thou": [0, 65535], "where is the thousand markes thou hadst": [0, 65535], "is the thousand markes thou hadst of": [0, 65535], "the thousand markes thou hadst of me": [0, 65535], "thousand markes thou hadst of me e": [0, 65535], "markes thou hadst of me e dro": [0, 65535], "thou hadst of me e dro i": [0, 65535], "hadst of me e dro i haue": [0, 65535], "of me e dro i haue some": [0, 65535], "me e dro i haue some markes": [0, 65535], "e dro i haue some markes of": [0, 65535], "dro i haue some markes of yours": [0, 65535], "i haue some markes of yours vpon": [0, 65535], "haue some markes of yours vpon my": [0, 65535], "some markes of yours vpon my pate": [0, 65535], "markes of yours vpon my pate some": [0, 65535], "of yours vpon my pate some of": [0, 65535], "yours vpon my pate some of my": [0, 65535], "vpon my pate some of my mistris": [0, 65535], "my pate some of my mistris markes": [0, 65535], "pate some of my mistris markes vpon": [0, 65535], "some of my mistris markes vpon my": [0, 65535], "of my mistris markes vpon my shoulders": [0, 65535], "my mistris markes vpon my shoulders but": [0, 65535], "mistris markes vpon my shoulders but not": [0, 65535], "markes vpon my shoulders but not a": [0, 65535], "vpon my shoulders but not a thousand": [0, 65535], "my shoulders but not a thousand markes": [0, 65535], "shoulders but not a thousand markes betweene": [0, 65535], "but not a thousand markes betweene you": [0, 65535], "not a thousand markes betweene you both": [0, 65535], "a thousand markes betweene you both if": [0, 65535], "thousand markes betweene you both if i": [0, 65535], "markes betweene you both if i should": [0, 65535], "betweene you both if i should pay": [0, 65535], "you both if i should pay your": [0, 65535], "both if i should pay your worship": [0, 65535], "if i should pay your worship those": [0, 65535], "i should pay your worship those againe": [0, 65535], "should pay your worship those againe perchance": [0, 65535], "pay your worship those againe perchance you": [0, 65535], "your worship those againe perchance you will": [0, 65535], "worship those againe perchance you will not": [0, 65535], "those againe perchance you will not beare": [0, 65535], "againe perchance you will not beare them": [0, 65535], "perchance you will not beare them patiently": [0, 65535], "you will not beare them patiently ant": [0, 65535], "will not beare them patiently ant thy": [0, 65535], "not beare them patiently ant thy mistris": [0, 65535], "beare them patiently ant thy mistris markes": [0, 65535], "them patiently ant thy mistris markes what": [0, 65535], "patiently ant thy mistris markes what mistris": [0, 65535], "ant thy mistris markes what mistris slaue": [0, 65535], "thy mistris markes what mistris slaue hast": [0, 65535], "mistris markes what mistris slaue hast thou": [0, 65535], "markes what mistris slaue hast thou e": [0, 65535], "what mistris slaue hast thou e dro": [0, 65535], "mistris slaue hast thou e dro your": [0, 65535], "slaue hast thou e dro your worships": [0, 65535], "hast thou e dro your worships wife": [0, 65535], "thou e dro your worships wife my": [0, 65535], "e dro your worships wife my mistris": [0, 65535], "dro your worships wife my mistris at": [0, 65535], "your worships wife my mistris at the": [0, 65535], "worships wife my mistris at the ph\u0153nix": [0, 65535], "wife my mistris at the ph\u0153nix she": [0, 65535], "my mistris at the ph\u0153nix she that": [0, 65535], "mistris at the ph\u0153nix she that doth": [0, 65535], "at the ph\u0153nix she that doth fast": [0, 65535], "the ph\u0153nix she that doth fast till": [0, 65535], "ph\u0153nix she that doth fast till you": [0, 65535], "she that doth fast till you come": [0, 65535], "that doth fast till you come home": [0, 65535], "doth fast till you come home to": [0, 65535], "fast till you come home to dinner": [0, 65535], "till you come home to dinner and": [0, 65535], "you come home to dinner and praies": [0, 65535], "come home to dinner and praies that": [0, 65535], "home to dinner and praies that you": [0, 65535], "to dinner and praies that you will": [0, 65535], "dinner and praies that you will hie": [0, 65535], "and praies that you will hie you": [0, 65535], "praies that you will hie you home": [0, 65535], "that you will hie you home to": [0, 65535], "you will hie you home to dinner": [0, 65535], "will hie you home to dinner ant": [0, 65535], "hie you home to dinner ant what": [0, 65535], "you home to dinner ant what wilt": [0, 65535], "home to dinner ant what wilt thou": [0, 65535], "to dinner ant what wilt thou flout": [0, 65535], "dinner ant what wilt thou flout me": [0, 65535], "ant what wilt thou flout me thus": [0, 65535], "what wilt thou flout me thus vnto": [0, 65535], "wilt thou flout me thus vnto my": [0, 65535], "thou flout me thus vnto my face": [0, 65535], "flout me thus vnto my face being": [0, 65535], "me thus vnto my face being forbid": [0, 65535], "thus vnto my face being forbid there": [0, 65535], "vnto my face being forbid there take": [0, 65535], "my face being forbid there take you": [0, 65535], "face being forbid there take you that": [0, 65535], "being forbid there take you that sir": [0, 65535], "forbid there take you that sir knaue": [0, 65535], "there take you that sir knaue e": [0, 65535], "take you that sir knaue e dro": [0, 65535], "you that sir knaue e dro what": [0, 65535], "that sir knaue e dro what meane": [0, 65535], "sir knaue e dro what meane you": [0, 65535], "knaue e dro what meane you sir": [0, 65535], "e dro what meane you sir for": [0, 65535], "dro what meane you sir for god": [0, 65535], "what meane you sir for god sake": [0, 65535], "meane you sir for god sake hold": [0, 65535], "you sir for god sake hold your": [0, 65535], "sir for god sake hold your hands": [0, 65535], "for god sake hold your hands nay": [0, 65535], "god sake hold your hands nay and": [0, 65535], "sake hold your hands nay and you": [0, 65535], "hold your hands nay and you will": [0, 65535], "your hands nay and you will not": [0, 65535], "hands nay and you will not sir": [0, 65535], "nay and you will not sir ile": [0, 65535], "and you will not sir ile take": [0, 65535], "you will not sir ile take my": [0, 65535], "will not sir ile take my heeles": [0, 65535], "not sir ile take my heeles exeunt": [0, 65535], "sir ile take my heeles exeunt dromio": [0, 65535], "ile take my heeles exeunt dromio ep": [0, 65535], "take my heeles exeunt dromio ep ant": [0, 65535], "my heeles exeunt dromio ep ant vpon": [0, 65535], "heeles exeunt dromio ep ant vpon my": [0, 65535], "exeunt dromio ep ant vpon my life": [0, 65535], "dromio ep ant vpon my life by": [0, 65535], "ep ant vpon my life by some": [0, 65535], "ant vpon my life by some deuise": [0, 65535], "vpon my life by some deuise or": [0, 65535], "my life by some deuise or other": [0, 65535], "life by some deuise or other the": [0, 65535], "by some deuise or other the villaine": [0, 65535], "some deuise or other the villaine is": [0, 65535], "deuise or other the villaine is ore": [0, 65535], "or other the villaine is ore wrought": [0, 65535], "other the villaine is ore wrought of": [0, 65535], "the villaine is ore wrought of all": [0, 65535], "villaine is ore wrought of all my": [0, 65535], "is ore wrought of all my monie": [0, 65535], "ore wrought of all my monie they": [0, 65535], "wrought of all my monie they say": [0, 65535], "of all my monie they say this": [0, 65535], "all my monie they say this towne": [0, 65535], "my monie they say this towne is": [0, 65535], "monie they say this towne is full": [0, 65535], "they say this towne is full of": [0, 65535], "say this towne is full of cosenage": [0, 65535], "this towne is full of cosenage as": [0, 65535], "towne is full of cosenage as nimble": [0, 65535], "is full of cosenage as nimble iuglers": [0, 65535], "full of cosenage as nimble iuglers that": [0, 65535], "of cosenage as nimble iuglers that deceiue": [0, 65535], "cosenage as nimble iuglers that deceiue the": [0, 65535], "as nimble iuglers that deceiue the eie": [0, 65535], "nimble iuglers that deceiue the eie darke": [0, 65535], "iuglers that deceiue the eie darke working": [0, 65535], "that deceiue the eie darke working sorcerers": [0, 65535], "deceiue the eie darke working sorcerers that": [0, 65535], "the eie darke working sorcerers that change": [0, 65535], "eie darke working sorcerers that change the": [0, 65535], "darke working sorcerers that change the minde": [0, 65535], "working sorcerers that change the minde soule": [0, 65535], "sorcerers that change the minde soule killing": [0, 65535], "that change the minde soule killing witches": [0, 65535], "change the minde soule killing witches that": [0, 65535], "the minde soule killing witches that deforme": [0, 65535], "minde soule killing witches that deforme the": [0, 65535], "soule killing witches that deforme the bodie": [0, 65535], "killing witches that deforme the bodie disguised": [0, 65535], "witches that deforme the bodie disguised cheaters": [0, 65535], "that deforme the bodie disguised cheaters prating": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "the bodie disguised cheaters prating mountebankes and": [0, 65535], "bodie disguised cheaters prating mountebankes and manie": [0, 65535], "disguised cheaters prating mountebankes and manie such": [0, 65535], "cheaters prating mountebankes and manie such like": [0, 65535], "prating mountebankes and manie such like liberties": [0, 65535], "mountebankes and manie such like liberties of": [0, 65535], "and manie such like liberties of sinne": [0, 65535], "manie such like liberties of sinne if": [0, 65535], "such like liberties of sinne if it": [0, 65535], "like liberties of sinne if it proue": [0, 65535], "liberties of sinne if it proue so": [0, 65535], "of sinne if it proue so i": [0, 65535], "sinne if it proue so i will": [0, 65535], "if it proue so i will be": [0, 65535], "it proue so i will be gone": [0, 65535], "proue so i will be gone the": [0, 65535], "so i will be gone the sooner": [0, 65535], "i will be gone the sooner ile": [0, 65535], "will be gone the sooner ile to": [0, 65535], "be gone the sooner ile to the": [0, 65535], "gone the sooner ile to the centaur": [0, 65535], "the sooner ile to the centaur to": [0, 65535], "sooner ile to the centaur to goe": [0, 65535], "ile to the centaur to goe seeke": [0, 65535], "to the centaur to goe seeke this": [0, 65535], "the centaur to goe seeke this slaue": [0, 65535], "centaur to goe seeke this slaue i": [0, 65535], "to goe seeke this slaue i greatly": [0, 65535], "goe seeke this slaue i greatly feare": [0, 65535], "seeke this slaue i greatly feare my": [0, 65535], "this slaue i greatly feare my monie": [0, 65535], "slaue i greatly feare my monie is": [0, 65535], "i greatly feare my monie is not": [0, 65535], "greatly feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena prima": [0, 65535], "comedie of errors actus primus scena prima enter": [0, 65535], "of errors actus primus scena prima enter the": [0, 65535], "errors actus primus scena prima enter the duke": [0, 65535], "actus primus scena prima enter the duke of": [0, 65535], "primus scena prima enter the duke of ephesus": [0, 65535], "scena prima enter the duke of ephesus with": [0, 65535], "prima enter the duke of ephesus with the": [0, 65535], "enter the duke of ephesus with the merchant": [0, 65535], "the duke of ephesus with the merchant of": [0, 65535], "duke of ephesus with the merchant of siracusa": [0, 65535], "of ephesus with the merchant of siracusa iaylor": [0, 65535], "ephesus with the merchant of siracusa iaylor and": [0, 65535], "with the merchant of siracusa iaylor and other": [0, 65535], "the merchant of siracusa iaylor and other attendants": [0, 65535], "merchant of siracusa iaylor and other attendants marchant": [0, 65535], "of siracusa iaylor and other attendants marchant broceed": [0, 65535], "siracusa iaylor and other attendants marchant broceed solinus": [0, 65535], "iaylor and other attendants marchant broceed solinus to": [0, 65535], "and other attendants marchant broceed solinus to procure": [0, 65535], "other attendants marchant broceed solinus to procure my": [0, 65535], "attendants marchant broceed solinus to procure my fall": [0, 65535], "marchant broceed solinus to procure my fall and": [0, 65535], "broceed solinus to procure my fall and by": [0, 65535], "solinus to procure my fall and by the": [0, 65535], "to procure my fall and by the doome": [0, 65535], "procure my fall and by the doome of": [0, 65535], "my fall and by the doome of death": [0, 65535], "fall and by the doome of death end": [0, 65535], "and by the doome of death end woes": [0, 65535], "by the doome of death end woes and": [0, 65535], "the doome of death end woes and all": [0, 65535], "doome of death end woes and all duke": [0, 65535], "of death end woes and all duke merchant": [0, 65535], "death end woes and all duke merchant of": [0, 65535], "end woes and all duke merchant of siracusa": [0, 65535], "woes and all duke merchant of siracusa plead": [0, 65535], "and all duke merchant of siracusa plead no": [0, 65535], "all duke merchant of siracusa plead no more": [0, 65535], "duke merchant of siracusa plead no more i": [0, 65535], "merchant of siracusa plead no more i am": [0, 65535], "of siracusa plead no more i am not": [0, 65535], "siracusa plead no more i am not partiall": [0, 65535], "plead no more i am not partiall to": [0, 65535], "no more i am not partiall to infringe": [0, 65535], "more i am not partiall to infringe our": [0, 65535], "i am not partiall to infringe our lawes": [0, 65535], "am not partiall to infringe our lawes the": [0, 65535], "not partiall to infringe our lawes the enmity": [0, 65535], "partiall to infringe our lawes the enmity and": [0, 65535], "to infringe our lawes the enmity and discord": [0, 65535], "infringe our lawes the enmity and discord which": [0, 65535], "our lawes the enmity and discord which of": [0, 65535], "lawes the enmity and discord which of late": [0, 65535], "the enmity and discord which of late sprung": [0, 65535], "enmity and discord which of late sprung from": [0, 65535], "and discord which of late sprung from the": [0, 65535], "discord which of late sprung from the rancorous": [0, 65535], "which of late sprung from the rancorous outrage": [0, 65535], "of late sprung from the rancorous outrage of": [0, 65535], "late sprung from the rancorous outrage of your": [0, 65535], "sprung from the rancorous outrage of your duke": [0, 65535], "from the rancorous outrage of your duke to": [0, 65535], "the rancorous outrage of your duke to merchants": [0, 65535], "rancorous outrage of your duke to merchants our": [0, 65535], "outrage of your duke to merchants our well": [0, 65535], "of your duke to merchants our well dealing": [0, 65535], "your duke to merchants our well dealing countrimen": [0, 65535], "duke to merchants our well dealing countrimen who": [0, 65535], "to merchants our well dealing countrimen who wanting": [0, 65535], "merchants our well dealing countrimen who wanting gilders": [0, 65535], "our well dealing countrimen who wanting gilders to": [0, 65535], "well dealing countrimen who wanting gilders to redeeme": [0, 65535], "dealing countrimen who wanting gilders to redeeme their": [0, 65535], "countrimen who wanting gilders to redeeme their liues": [0, 65535], "who wanting gilders to redeeme their liues haue": [0, 65535], "wanting gilders to redeeme their liues haue seal'd": [0, 65535], "gilders to redeeme their liues haue seal'd his": [0, 65535], "to redeeme their liues haue seal'd his rigorous": [0, 65535], "redeeme their liues haue seal'd his rigorous statutes": [0, 65535], "their liues haue seal'd his rigorous statutes with": [0, 65535], "liues haue seal'd his rigorous statutes with their": [0, 65535], "haue seal'd his rigorous statutes with their blouds": [0, 65535], "seal'd his rigorous statutes with their blouds excludes": [0, 65535], "his rigorous statutes with their blouds excludes all": [0, 65535], "rigorous statutes with their blouds excludes all pitty": [0, 65535], "statutes with their blouds excludes all pitty from": [0, 65535], "with their blouds excludes all pitty from our": [0, 65535], "their blouds excludes all pitty from our threatning": [0, 65535], "blouds excludes all pitty from our threatning lookes": [0, 65535], "excludes all pitty from our threatning lookes for": [0, 65535], "all pitty from our threatning lookes for since": [0, 65535], "pitty from our threatning lookes for since the": [0, 65535], "from our threatning lookes for since the mortall": [0, 65535], "our threatning lookes for since the mortall and": [0, 65535], "threatning lookes for since the mortall and intestine": [0, 65535], "lookes for since the mortall and intestine iarres": [0, 65535], "for since the mortall and intestine iarres twixt": [0, 65535], "since the mortall and intestine iarres twixt thy": [0, 65535], "the mortall and intestine iarres twixt thy seditious": [0, 65535], "mortall and intestine iarres twixt thy seditious countrimen": [0, 65535], "and intestine iarres twixt thy seditious countrimen and": [0, 65535], "intestine iarres twixt thy seditious countrimen and vs": [0, 65535], "iarres twixt thy seditious countrimen and vs it": [0, 65535], "twixt thy seditious countrimen and vs it hath": [0, 65535], "thy seditious countrimen and vs it hath in": [0, 65535], "seditious countrimen and vs it hath in solemne": [0, 65535], "countrimen and vs it hath in solemne synodes": [0, 65535], "and vs it hath in solemne synodes beene": [0, 65535], "vs it hath in solemne synodes beene decreed": [0, 65535], "it hath in solemne synodes beene decreed both": [0, 65535], "hath in solemne synodes beene decreed both by": [0, 65535], "in solemne synodes beene decreed both by the": [0, 65535], "solemne synodes beene decreed both by the siracusians": [0, 65535], "synodes beene decreed both by the siracusians and": [0, 65535], "beene decreed both by the siracusians and our": [0, 65535], "decreed both by the siracusians and our selues": [0, 65535], "both by the siracusians and our selues to": [0, 65535], "by the siracusians and our selues to admit": [0, 65535], "the siracusians and our selues to admit no": [0, 65535], "siracusians and our selues to admit no trafficke": [0, 65535], "and our selues to admit no trafficke to": [0, 65535], "our selues to admit no trafficke to our": [0, 65535], "selues to admit no trafficke to our aduerse": [0, 65535], "to admit no trafficke to our aduerse townes": [0, 65535], "admit no trafficke to our aduerse townes nay": [0, 65535], "no trafficke to our aduerse townes nay more": [0, 65535], "trafficke to our aduerse townes nay more if": [0, 65535], "to our aduerse townes nay more if any": [0, 65535], "our aduerse townes nay more if any borne": [0, 65535], "aduerse townes nay more if any borne at": [0, 65535], "townes nay more if any borne at ephesus": [0, 65535], "nay more if any borne at ephesus be": [0, 65535], "more if any borne at ephesus be seene": [0, 65535], "if any borne at ephesus be seene at": [0, 65535], "any borne at ephesus be seene at any": [0, 65535], "borne at ephesus be seene at any siracusian": [0, 65535], "at ephesus be seene at any siracusian marts": [0, 65535], "ephesus be seene at any siracusian marts and": [0, 65535], "be seene at any siracusian marts and fayres": [0, 65535], "seene at any siracusian marts and fayres againe": [0, 65535], "at any siracusian marts and fayres againe if": [0, 65535], "any siracusian marts and fayres againe if any": [0, 65535], "siracusian marts and fayres againe if any siracusian": [0, 65535], "marts and fayres againe if any siracusian borne": [0, 65535], "and fayres againe if any siracusian borne come": [0, 65535], "fayres againe if any siracusian borne come to": [0, 65535], "againe if any siracusian borne come to the": [0, 65535], "if any siracusian borne come to the bay": [0, 65535], "any siracusian borne come to the bay of": [0, 65535], "siracusian borne come to the bay of ephesus": [0, 65535], "borne come to the bay of ephesus he": [0, 65535], "come to the bay of ephesus he dies": [0, 65535], "to the bay of ephesus he dies his": [0, 65535], "the bay of ephesus he dies his goods": [0, 65535], "bay of ephesus he dies his goods confiscate": [0, 65535], "of ephesus he dies his goods confiscate to": [0, 65535], "ephesus he dies his goods confiscate to the": [0, 65535], "he dies his goods confiscate to the dukes": [0, 65535], "dies his goods confiscate to the dukes dispose": [0, 65535], "his goods confiscate to the dukes dispose vnlesse": [0, 65535], "goods confiscate to the dukes dispose vnlesse a": [0, 65535], "confiscate to the dukes dispose vnlesse a thousand": [0, 65535], "to the dukes dispose vnlesse a thousand markes": [0, 65535], "the dukes dispose vnlesse a thousand markes be": [0, 65535], "dukes dispose vnlesse a thousand markes be leuied": [0, 65535], "dispose vnlesse a thousand markes be leuied to": [0, 65535], "vnlesse a thousand markes be leuied to quit": [0, 65535], "a thousand markes be leuied to quit the": [0, 65535], "thousand markes be leuied to quit the penalty": [0, 65535], "markes be leuied to quit the penalty and": [0, 65535], "be leuied to quit the penalty and to": [0, 65535], "leuied to quit the penalty and to ransome": [0, 65535], "to quit the penalty and to ransome him": [0, 65535], "quit the penalty and to ransome him thy": [0, 65535], "the penalty and to ransome him thy substance": [0, 65535], "penalty and to ransome him thy substance valued": [0, 65535], "and to ransome him thy substance valued at": [0, 65535], "to ransome him thy substance valued at the": [0, 65535], "ransome him thy substance valued at the highest": [0, 65535], "him thy substance valued at the highest rate": [0, 65535], "thy substance valued at the highest rate cannot": [0, 65535], "substance valued at the highest rate cannot amount": [0, 65535], "valued at the highest rate cannot amount vnto": [0, 65535], "at the highest rate cannot amount vnto a": [0, 65535], "the highest rate cannot amount vnto a hundred": [0, 65535], "highest rate cannot amount vnto a hundred markes": [0, 65535], "rate cannot amount vnto a hundred markes therefore": [0, 65535], "cannot amount vnto a hundred markes therefore by": [0, 65535], "amount vnto a hundred markes therefore by law": [0, 65535], "vnto a hundred markes therefore by law thou": [0, 65535], "a hundred markes therefore by law thou art": [0, 65535], "hundred markes therefore by law thou art condemn'd": [0, 65535], "markes therefore by law thou art condemn'd to": [0, 65535], "therefore by law thou art condemn'd to die": [0, 65535], "by law thou art condemn'd to die mer": [0, 65535], "law thou art condemn'd to die mer yet": [0, 65535], "thou art condemn'd to die mer yet this": [0, 65535], "art condemn'd to die mer yet this my": [0, 65535], "condemn'd to die mer yet this my comfort": [0, 65535], "to die mer yet this my comfort when": [0, 65535], "die mer yet this my comfort when your": [0, 65535], "mer yet this my comfort when your words": [0, 65535], "yet this my comfort when your words are": [0, 65535], "this my comfort when your words are done": [0, 65535], "my comfort when your words are done my": [0, 65535], "comfort when your words are done my woes": [0, 65535], "when your words are done my woes end": [0, 65535], "your words are done my woes end likewise": [0, 65535], "words are done my woes end likewise with": [0, 65535], "are done my woes end likewise with the": [0, 65535], "done my woes end likewise with the euening": [0, 65535], "my woes end likewise with the euening sonne": [0, 65535], "woes end likewise with the euening sonne duk": [0, 65535], "end likewise with the euening sonne duk well": [0, 65535], "likewise with the euening sonne duk well siracusian": [0, 65535], "with the euening sonne duk well siracusian say": [0, 65535], "the euening sonne duk well siracusian say in": [0, 65535], "euening sonne duk well siracusian say in briefe": [0, 65535], "sonne duk well siracusian say in briefe the": [0, 65535], "duk well siracusian say in briefe the cause": [0, 65535], "well siracusian say in briefe the cause why": [0, 65535], "siracusian say in briefe the cause why thou": [0, 65535], "say in briefe the cause why thou departedst": [0, 65535], "in briefe the cause why thou departedst from": [0, 65535], "briefe the cause why thou departedst from thy": [0, 65535], "the cause why thou departedst from thy natiue": [0, 65535], "cause why thou departedst from thy natiue home": [0, 65535], "why thou departedst from thy natiue home and": [0, 65535], "thou departedst from thy natiue home and for": [0, 65535], "departedst from thy natiue home and for what": [0, 65535], "from thy natiue home and for what cause": [0, 65535], "thy natiue home and for what cause thou": [0, 65535], "natiue home and for what cause thou cam'st": [0, 65535], "home and for what cause thou cam'st to": [0, 65535], "and for what cause thou cam'st to ephesus": [0, 65535], "for what cause thou cam'st to ephesus mer": [0, 65535], "what cause thou cam'st to ephesus mer a": [0, 65535], "cause thou cam'st to ephesus mer a heauier": [0, 65535], "thou cam'st to ephesus mer a heauier taske": [0, 65535], "cam'st to ephesus mer a heauier taske could": [0, 65535], "to ephesus mer a heauier taske could not": [0, 65535], "ephesus mer a heauier taske could not haue": [0, 65535], "mer a heauier taske could not haue beene": [0, 65535], "a heauier taske could not haue beene impos'd": [0, 65535], "heauier taske could not haue beene impos'd then": [0, 65535], "taske could not haue beene impos'd then i": [0, 65535], "could not haue beene impos'd then i to": [0, 65535], "not haue beene impos'd then i to speake": [0, 65535], "haue beene impos'd then i to speake my": [0, 65535], "beene impos'd then i to speake my griefes": [0, 65535], "impos'd then i to speake my griefes vnspeakeable": [0, 65535], "then i to speake my griefes vnspeakeable yet": [0, 65535], "i to speake my griefes vnspeakeable yet that": [0, 65535], "to speake my griefes vnspeakeable yet that the": [0, 65535], "speake my griefes vnspeakeable yet that the world": [0, 65535], "my griefes vnspeakeable yet that the world may": [0, 65535], "griefes vnspeakeable yet that the world may witnesse": [0, 65535], "vnspeakeable yet that the world may witnesse that": [0, 65535], "yet that the world may witnesse that my": [0, 65535], "that the world may witnesse that my end": [0, 65535], "the world may witnesse that my end was": [0, 65535], "world may witnesse that my end was wrought": [0, 65535], "may witnesse that my end was wrought by": [0, 65535], "witnesse that my end was wrought by nature": [0, 65535], "that my end was wrought by nature not": [0, 65535], "my end was wrought by nature not by": [0, 65535], "end was wrought by nature not by vile": [0, 65535], "was wrought by nature not by vile offence": [0, 65535], "wrought by nature not by vile offence ile": [0, 65535], "by nature not by vile offence ile vtter": [0, 65535], "nature not by vile offence ile vtter what": [0, 65535], "not by vile offence ile vtter what my": [0, 65535], "by vile offence ile vtter what my sorrow": [0, 65535], "vile offence ile vtter what my sorrow giues": [0, 65535], "offence ile vtter what my sorrow giues me": [0, 65535], "ile vtter what my sorrow giues me leaue": [0, 65535], "vtter what my sorrow giues me leaue in": [0, 65535], "what my sorrow giues me leaue in syracusa": [0, 65535], "my sorrow giues me leaue in syracusa was": [0, 65535], "sorrow giues me leaue in syracusa was i": [0, 65535], "giues me leaue in syracusa was i borne": [0, 65535], "me leaue in syracusa was i borne and": [0, 65535], "leaue in syracusa was i borne and wedde": [0, 65535], "in syracusa was i borne and wedde vnto": [0, 65535], "syracusa was i borne and wedde vnto a": [0, 65535], "was i borne and wedde vnto a woman": [0, 65535], "i borne and wedde vnto a woman happy": [0, 65535], "borne and wedde vnto a woman happy but": [0, 65535], "and wedde vnto a woman happy but for": [0, 65535], "wedde vnto a woman happy but for me": [0, 65535], "vnto a woman happy but for me and": [0, 65535], "a woman happy but for me and by": [0, 65535], "woman happy but for me and by me": [0, 65535], "happy but for me and by me had": [0, 65535], "but for me and by me had not": [0, 65535], "for me and by me had not our": [0, 65535], "me and by me had not our hap": [0, 65535], "and by me had not our hap beene": [0, 65535], "by me had not our hap beene bad": [0, 65535], "me had not our hap beene bad with": [0, 65535], "had not our hap beene bad with her": [0, 65535], "not our hap beene bad with her i": [0, 65535], "our hap beene bad with her i liu'd": [0, 65535], "hap beene bad with her i liu'd in": [0, 65535], "beene bad with her i liu'd in ioy": [0, 65535], "bad with her i liu'd in ioy our": [0, 65535], "with her i liu'd in ioy our wealth": [0, 65535], "her i liu'd in ioy our wealth increast": [0, 65535], "i liu'd in ioy our wealth increast by": [0, 65535], "liu'd in ioy our wealth increast by prosperous": [0, 65535], "in ioy our wealth increast by prosperous voyages": [0, 65535], "ioy our wealth increast by prosperous voyages i": [0, 65535], "our wealth increast by prosperous voyages i often": [0, 65535], "wealth increast by prosperous voyages i often made": [0, 65535], "increast by prosperous voyages i often made to": [0, 65535], "by prosperous voyages i often made to epidamium": [0, 65535], "prosperous voyages i often made to epidamium till": [0, 65535], "voyages i often made to epidamium till my": [0, 65535], "i often made to epidamium till my factors": [0, 65535], "often made to epidamium till my factors death": [0, 65535], "made to epidamium till my factors death and": [0, 65535], "to epidamium till my factors death and he": [0, 65535], "epidamium till my factors death and he great": [0, 65535], "till my factors death and he great care": [0, 65535], "my factors death and he great care of": [0, 65535], "factors death and he great care of goods": [0, 65535], "death and he great care of goods at": [0, 65535], "and he great care of goods at randone": [0, 65535], "he great care of goods at randone left": [0, 65535], "great care of goods at randone left drew": [0, 65535], "care of goods at randone left drew me": [0, 65535], "of goods at randone left drew me from": [0, 65535], "goods at randone left drew me from kinde": [0, 65535], "at randone left drew me from kinde embracements": [0, 65535], "randone left drew me from kinde embracements of": [0, 65535], "left drew me from kinde embracements of my": [0, 65535], "drew me from kinde embracements of my spouse": [0, 65535], "me from kinde embracements of my spouse from": [0, 65535], "from kinde embracements of my spouse from whom": [0, 65535], "kinde embracements of my spouse from whom my": [0, 65535], "embracements of my spouse from whom my absence": [0, 65535], "of my spouse from whom my absence was": [0, 65535], "my spouse from whom my absence was not": [0, 65535], "spouse from whom my absence was not sixe": [0, 65535], "from whom my absence was not sixe moneths": [0, 65535], "whom my absence was not sixe moneths olde": [0, 65535], "my absence was not sixe moneths olde before": [0, 65535], "absence was not sixe moneths olde before her": [0, 65535], "was not sixe moneths olde before her selfe": [0, 65535], "not sixe moneths olde before her selfe almost": [0, 65535], "sixe moneths olde before her selfe almost at": [0, 65535], "moneths olde before her selfe almost at fainting": [0, 65535], "olde before her selfe almost at fainting vnder": [0, 65535], "before her selfe almost at fainting vnder the": [0, 65535], "her selfe almost at fainting vnder the pleasing": [0, 65535], "selfe almost at fainting vnder the pleasing punishment": [0, 65535], "almost at fainting vnder the pleasing punishment that": [0, 65535], "at fainting vnder the pleasing punishment that women": [0, 65535], "fainting vnder the pleasing punishment that women beare": [0, 65535], "vnder the pleasing punishment that women beare had": [0, 65535], "the pleasing punishment that women beare had made": [0, 65535], "pleasing punishment that women beare had made prouision": [0, 65535], "punishment that women beare had made prouision for": [0, 65535], "that women beare had made prouision for her": [0, 65535], "women beare had made prouision for her following": [0, 65535], "beare had made prouision for her following me": [0, 65535], "had made prouision for her following me and": [0, 65535], "made prouision for her following me and soone": [0, 65535], "prouision for her following me and soone and": [0, 65535], "for her following me and soone and safe": [0, 65535], "her following me and soone and safe arriued": [0, 65535], "following me and soone and safe arriued where": [0, 65535], "me and soone and safe arriued where i": [0, 65535], "and soone and safe arriued where i was": [0, 65535], "soone and safe arriued where i was there": [0, 65535], "and safe arriued where i was there had": [0, 65535], "safe arriued where i was there had she": [0, 65535], "arriued where i was there had she not": [0, 65535], "where i was there had she not beene": [0, 65535], "i was there had she not beene long": [0, 65535], "was there had she not beene long but": [0, 65535], "there had she not beene long but she": [0, 65535], "had she not beene long but she became": [0, 65535], "she not beene long but she became a": [0, 65535], "not beene long but she became a ioyfull": [0, 65535], "beene long but she became a ioyfull mother": [0, 65535], "long but she became a ioyfull mother of": [0, 65535], "but she became a ioyfull mother of two": [0, 65535], "she became a ioyfull mother of two goodly": [0, 65535], "became a ioyfull mother of two goodly sonnes": [0, 65535], "a ioyfull mother of two goodly sonnes and": [0, 65535], "ioyfull mother of two goodly sonnes and which": [0, 65535], "mother of two goodly sonnes and which was": [0, 65535], "of two goodly sonnes and which was strange": [0, 65535], "two goodly sonnes and which was strange the": [0, 65535], "goodly sonnes and which was strange the one": [0, 65535], "sonnes and which was strange the one so": [0, 65535], "and which was strange the one so like": [0, 65535], "which was strange the one so like the": [0, 65535], "was strange the one so like the other": [0, 65535], "strange the one so like the other as": [0, 65535], "the one so like the other as could": [0, 65535], "one so like the other as could not": [0, 65535], "so like the other as could not be": [0, 65535], "like the other as could not be distinguish'd": [0, 65535], "the other as could not be distinguish'd but": [0, 65535], "other as could not be distinguish'd but by": [0, 65535], "as could not be distinguish'd but by names": [0, 65535], "could not be distinguish'd but by names that": [0, 65535], "not be distinguish'd but by names that very": [0, 65535], "be distinguish'd but by names that very howre": [0, 65535], "distinguish'd but by names that very howre and": [0, 65535], "but by names that very howre and in": [0, 65535], "by names that very howre and in the": [0, 65535], "names that very howre and in the selfe": [0, 65535], "that very howre and in the selfe same": [0, 65535], "very howre and in the selfe same inne": [0, 65535], "howre and in the selfe same inne a": [0, 65535], "and in the selfe same inne a meane": [0, 65535], "in the selfe same inne a meane woman": [0, 65535], "the selfe same inne a meane woman was": [0, 65535], "selfe same inne a meane woman was deliuered": [0, 65535], "same inne a meane woman was deliuered of": [0, 65535], "inne a meane woman was deliuered of such": [0, 65535], "a meane woman was deliuered of such a": [0, 65535], "meane woman was deliuered of such a burthen": [0, 65535], "woman was deliuered of such a burthen male": [0, 65535], "was deliuered of such a burthen male twins": [0, 65535], "deliuered of such a burthen male twins both": [0, 65535], "of such a burthen male twins both alike": [0, 65535], "such a burthen male twins both alike those": [0, 65535], "a burthen male twins both alike those for": [0, 65535], "burthen male twins both alike those for their": [0, 65535], "male twins both alike those for their parents": [0, 65535], "twins both alike those for their parents were": [0, 65535], "both alike those for their parents were exceeding": [0, 65535], "alike those for their parents were exceeding poore": [0, 65535], "those for their parents were exceeding poore i": [0, 65535], "for their parents were exceeding poore i bought": [0, 65535], "their parents were exceeding poore i bought and": [0, 65535], "parents were exceeding poore i bought and brought": [0, 65535], "were exceeding poore i bought and brought vp": [0, 65535], "exceeding poore i bought and brought vp to": [0, 65535], "poore i bought and brought vp to attend": [0, 65535], "i bought and brought vp to attend my": [0, 65535], "bought and brought vp to attend my sonnes": [0, 65535], "and brought vp to attend my sonnes my": [0, 65535], "brought vp to attend my sonnes my wife": [0, 65535], "vp to attend my sonnes my wife not": [0, 65535], "to attend my sonnes my wife not meanely": [0, 65535], "attend my sonnes my wife not meanely prowd": [0, 65535], "my sonnes my wife not meanely prowd of": [0, 65535], "sonnes my wife not meanely prowd of two": [0, 65535], "my wife not meanely prowd of two such": [0, 65535], "wife not meanely prowd of two such boyes": [0, 65535], "not meanely prowd of two such boyes made": [0, 65535], "meanely prowd of two such boyes made daily": [0, 65535], "prowd of two such boyes made daily motions": [0, 65535], "of two such boyes made daily motions for": [0, 65535], "two such boyes made daily motions for our": [0, 65535], "such boyes made daily motions for our home": [0, 65535], "boyes made daily motions for our home returne": [0, 65535], "made daily motions for our home returne vnwilling": [0, 65535], "daily motions for our home returne vnwilling i": [0, 65535], "motions for our home returne vnwilling i agreed": [0, 65535], "for our home returne vnwilling i agreed alas": [0, 65535], "our home returne vnwilling i agreed alas too": [0, 65535], "home returne vnwilling i agreed alas too soone": [0, 65535], "returne vnwilling i agreed alas too soone wee": [0, 65535], "vnwilling i agreed alas too soone wee came": [0, 65535], "i agreed alas too soone wee came aboord": [0, 65535], "agreed alas too soone wee came aboord a": [0, 65535], "alas too soone wee came aboord a league": [0, 65535], "too soone wee came aboord a league from": [0, 65535], "soone wee came aboord a league from epidamium": [0, 65535], "wee came aboord a league from epidamium had": [0, 65535], "came aboord a league from epidamium had we": [0, 65535], "aboord a league from epidamium had we saild": [0, 65535], "a league from epidamium had we saild before": [0, 65535], "league from epidamium had we saild before the": [0, 65535], "from epidamium had we saild before the alwaies": [0, 65535], "epidamium had we saild before the alwaies winde": [0, 65535], "had we saild before the alwaies winde obeying": [0, 65535], "we saild before the alwaies winde obeying deepe": [0, 65535], "saild before the alwaies winde obeying deepe gaue": [0, 65535], "before the alwaies winde obeying deepe gaue any": [0, 65535], "the alwaies winde obeying deepe gaue any tragicke": [0, 65535], "alwaies winde obeying deepe gaue any tragicke instance": [0, 65535], "winde obeying deepe gaue any tragicke instance of": [0, 65535], "obeying deepe gaue any tragicke instance of our": [0, 65535], "deepe gaue any tragicke instance of our harme": [0, 65535], "gaue any tragicke instance of our harme but": [0, 65535], "any tragicke instance of our harme but longer": [0, 65535], "tragicke instance of our harme but longer did": [0, 65535], "instance of our harme but longer did we": [0, 65535], "of our harme but longer did we not": [0, 65535], "our harme but longer did we not retaine": [0, 65535], "harme but longer did we not retaine much": [0, 65535], "but longer did we not retaine much hope": [0, 65535], "longer did we not retaine much hope for": [0, 65535], "did we not retaine much hope for what": [0, 65535], "we not retaine much hope for what obscured": [0, 65535], "not retaine much hope for what obscured light": [0, 65535], "retaine much hope for what obscured light the": [0, 65535], "much hope for what obscured light the heauens": [0, 65535], "hope for what obscured light the heauens did": [0, 65535], "for what obscured light the heauens did grant": [0, 65535], "what obscured light the heauens did grant did": [0, 65535], "obscured light the heauens did grant did but": [0, 65535], "light the heauens did grant did but conuay": [0, 65535], "the heauens did grant did but conuay vnto": [0, 65535], "heauens did grant did but conuay vnto our": [0, 65535], "did grant did but conuay vnto our fearefull": [0, 65535], "grant did but conuay vnto our fearefull mindes": [0, 65535], "did but conuay vnto our fearefull mindes a": [0, 65535], "but conuay vnto our fearefull mindes a doubtfull": [0, 65535], "conuay vnto our fearefull mindes a doubtfull warrant": [0, 65535], "vnto our fearefull mindes a doubtfull warrant of": [0, 65535], "our fearefull mindes a doubtfull warrant of immediate": [0, 65535], "fearefull mindes a doubtfull warrant of immediate death": [0, 65535], "mindes a doubtfull warrant of immediate death which": [0, 65535], "a doubtfull warrant of immediate death which though": [0, 65535], "doubtfull warrant of immediate death which though my": [0, 65535], "warrant of immediate death which though my selfe": [0, 65535], "of immediate death which though my selfe would": [0, 65535], "immediate death which though my selfe would gladly": [0, 65535], "death which though my selfe would gladly haue": [0, 65535], "which though my selfe would gladly haue imbrac'd": [0, 65535], "though my selfe would gladly haue imbrac'd yet": [0, 65535], "my selfe would gladly haue imbrac'd yet the": [0, 65535], "selfe would gladly haue imbrac'd yet the incessant": [0, 65535], "would gladly haue imbrac'd yet the incessant weepings": [0, 65535], "gladly haue imbrac'd yet the incessant weepings of": [0, 65535], "haue imbrac'd yet the incessant weepings of my": [0, 65535], "imbrac'd yet the incessant weepings of my wife": [0, 65535], "yet the incessant weepings of my wife weeping": [0, 65535], "the incessant weepings of my wife weeping before": [0, 65535], "incessant weepings of my wife weeping before for": [0, 65535], "weepings of my wife weeping before for what": [0, 65535], "of my wife weeping before for what she": [0, 65535], "my wife weeping before for what she saw": [0, 65535], "wife weeping before for what she saw must": [0, 65535], "weeping before for what she saw must come": [0, 65535], "before for what she saw must come and": [0, 65535], "for what she saw must come and pitteous": [0, 65535], "what she saw must come and pitteous playnings": [0, 65535], "she saw must come and pitteous playnings of": [0, 65535], "saw must come and pitteous playnings of the": [0, 65535], "must come and pitteous playnings of the prettie": [0, 65535], "come and pitteous playnings of the prettie babes": [0, 65535], "and pitteous playnings of the prettie babes that": [0, 65535], "pitteous playnings of the prettie babes that mourn'd": [0, 65535], "playnings of the prettie babes that mourn'd for": [0, 65535], "of the prettie babes that mourn'd for fashion": [0, 65535], "the prettie babes that mourn'd for fashion ignorant": [0, 65535], "prettie babes that mourn'd for fashion ignorant what": [0, 65535], "babes that mourn'd for fashion ignorant what to": [0, 65535], "that mourn'd for fashion ignorant what to feare": [0, 65535], "mourn'd for fashion ignorant what to feare forst": [0, 65535], "for fashion ignorant what to feare forst me": [0, 65535], "fashion ignorant what to feare forst me to": [0, 65535], "ignorant what to feare forst me to seeke": [0, 65535], "what to feare forst me to seeke delayes": [0, 65535], "to feare forst me to seeke delayes for": [0, 65535], "feare forst me to seeke delayes for them": [0, 65535], "forst me to seeke delayes for them and": [0, 65535], "me to seeke delayes for them and me": [0, 65535], "to seeke delayes for them and me and": [0, 65535], "seeke delayes for them and me and this": [0, 65535], "delayes for them and me and this it": [0, 65535], "for them and me and this it was": [0, 65535], "them and me and this it was for": [0, 65535], "and me and this it was for other": [0, 65535], "me and this it was for other meanes": [0, 65535], "and this it was for other meanes was": [0, 65535], "this it was for other meanes was none": [0, 65535], "it was for other meanes was none the": [0, 65535], "was for other meanes was none the sailors": [0, 65535], "for other meanes was none the sailors sought": [0, 65535], "other meanes was none the sailors sought for": [0, 65535], "meanes was none the sailors sought for safety": [0, 65535], "was none the sailors sought for safety by": [0, 65535], "none the sailors sought for safety by our": [0, 65535], "the sailors sought for safety by our boate": [0, 65535], "sailors sought for safety by our boate and": [0, 65535], "sought for safety by our boate and left": [0, 65535], "for safety by our boate and left the": [0, 65535], "safety by our boate and left the ship": [0, 65535], "by our boate and left the ship then": [0, 65535], "our boate and left the ship then sinking": [0, 65535], "boate and left the ship then sinking ripe": [0, 65535], "and left the ship then sinking ripe to": [0, 65535], "left the ship then sinking ripe to vs": [0, 65535], "the ship then sinking ripe to vs my": [0, 65535], "ship then sinking ripe to vs my wife": [0, 65535], "then sinking ripe to vs my wife more": [0, 65535], "sinking ripe to vs my wife more carefull": [0, 65535], "ripe to vs my wife more carefull for": [0, 65535], "to vs my wife more carefull for the": [0, 65535], "vs my wife more carefull for the latter": [0, 65535], "my wife more carefull for the latter borne": [0, 65535], "wife more carefull for the latter borne had": [0, 65535], "more carefull for the latter borne had fastned": [0, 65535], "carefull for the latter borne had fastned him": [0, 65535], "for the latter borne had fastned him vnto": [0, 65535], "the latter borne had fastned him vnto a": [0, 65535], "latter borne had fastned him vnto a small": [0, 65535], "borne had fastned him vnto a small spare": [0, 65535], "had fastned him vnto a small spare mast": [0, 65535], "fastned him vnto a small spare mast such": [0, 65535], "him vnto a small spare mast such as": [0, 65535], "vnto a small spare mast such as sea": [0, 65535], "a small spare mast such as sea faring": [0, 65535], "small spare mast such as sea faring men": [0, 65535], "spare mast such as sea faring men prouide": [0, 65535], "mast such as sea faring men prouide for": [0, 65535], "such as sea faring men prouide for stormes": [0, 65535], "as sea faring men prouide for stormes to": [0, 65535], "sea faring men prouide for stormes to him": [0, 65535], "faring men prouide for stormes to him one": [0, 65535], "men prouide for stormes to him one of": [0, 65535], "prouide for stormes to him one of the": [0, 65535], "for stormes to him one of the other": [0, 65535], "stormes to him one of the other twins": [0, 65535], "to him one of the other twins was": [0, 65535], "him one of the other twins was bound": [0, 65535], "one of the other twins was bound whil'st": [0, 65535], "of the other twins was bound whil'st i": [0, 65535], "the other twins was bound whil'st i had": [0, 65535], "other twins was bound whil'st i had beene": [0, 65535], "twins was bound whil'st i had beene like": [0, 65535], "was bound whil'st i had beene like heedfull": [0, 65535], "bound whil'st i had beene like heedfull of": [0, 65535], "whil'st i had beene like heedfull of the": [0, 65535], "i had beene like heedfull of the other": [0, 65535], "had beene like heedfull of the other the": [0, 65535], "beene like heedfull of the other the children": [0, 65535], "like heedfull of the other the children thus": [0, 65535], "heedfull of the other the children thus dispos'd": [0, 65535], "of the other the children thus dispos'd my": [0, 65535], "the other the children thus dispos'd my wife": [0, 65535], "other the children thus dispos'd my wife and": [0, 65535], "the children thus dispos'd my wife and i": [0, 65535], "children thus dispos'd my wife and i fixing": [0, 65535], "thus dispos'd my wife and i fixing our": [0, 65535], "dispos'd my wife and i fixing our eyes": [0, 65535], "my wife and i fixing our eyes on": [0, 65535], "wife and i fixing our eyes on whom": [0, 65535], "and i fixing our eyes on whom our": [0, 65535], "i fixing our eyes on whom our care": [0, 65535], "fixing our eyes on whom our care was": [0, 65535], "our eyes on whom our care was fixt": [0, 65535], "eyes on whom our care was fixt fastned": [0, 65535], "on whom our care was fixt fastned our": [0, 65535], "whom our care was fixt fastned our selues": [0, 65535], "our care was fixt fastned our selues at": [0, 65535], "care was fixt fastned our selues at eyther": [0, 65535], "was fixt fastned our selues at eyther end": [0, 65535], "fixt fastned our selues at eyther end the": [0, 65535], "fastned our selues at eyther end the mast": [0, 65535], "our selues at eyther end the mast and": [0, 65535], "selues at eyther end the mast and floating": [0, 65535], "at eyther end the mast and floating straight": [0, 65535], "eyther end the mast and floating straight obedient": [0, 65535], "end the mast and floating straight obedient to": [0, 65535], "the mast and floating straight obedient to the": [0, 65535], "mast and floating straight obedient to the streame": [0, 65535], "and floating straight obedient to the streame was": [0, 65535], "floating straight obedient to the streame was carried": [0, 65535], "straight obedient to the streame was carried towards": [0, 65535], "obedient to the streame was carried towards corinth": [0, 65535], "to the streame was carried towards corinth as": [0, 65535], "the streame was carried towards corinth as we": [0, 65535], "streame was carried towards corinth as we thought": [0, 65535], "was carried towards corinth as we thought at": [0, 65535], "carried towards corinth as we thought at length": [0, 65535], "towards corinth as we thought at length the": [0, 65535], "corinth as we thought at length the sonne": [0, 65535], "as we thought at length the sonne gazing": [0, 65535], "we thought at length the sonne gazing vpon": [0, 65535], "thought at length the sonne gazing vpon the": [0, 65535], "at length the sonne gazing vpon the earth": [0, 65535], "length the sonne gazing vpon the earth disperst": [0, 65535], "the sonne gazing vpon the earth disperst those": [0, 65535], "sonne gazing vpon the earth disperst those vapours": [0, 65535], "gazing vpon the earth disperst those vapours that": [0, 65535], "vpon the earth disperst those vapours that offended": [0, 65535], "the earth disperst those vapours that offended vs": [0, 65535], "earth disperst those vapours that offended vs and": [0, 65535], "disperst those vapours that offended vs and by": [0, 65535], "those vapours that offended vs and by the": [0, 65535], "vapours that offended vs and by the benefit": [0, 65535], "that offended vs and by the benefit of": [0, 65535], "offended vs and by the benefit of his": [0, 65535], "vs and by the benefit of his wished": [0, 65535], "and by the benefit of his wished light": [0, 65535], "by the benefit of his wished light the": [0, 65535], "the benefit of his wished light the seas": [0, 65535], "benefit of his wished light the seas waxt": [0, 65535], "of his wished light the seas waxt calme": [0, 65535], "his wished light the seas waxt calme and": [0, 65535], "wished light the seas waxt calme and we": [0, 65535], "light the seas waxt calme and we discouered": [0, 65535], "the seas waxt calme and we discouered two": [0, 65535], "seas waxt calme and we discouered two shippes": [0, 65535], "waxt calme and we discouered two shippes from": [0, 65535], "calme and we discouered two shippes from farre": [0, 65535], "and we discouered two shippes from farre making": [0, 65535], "we discouered two shippes from farre making amaine": [0, 65535], "discouered two shippes from farre making amaine to": [0, 65535], "two shippes from farre making amaine to vs": [0, 65535], "shippes from farre making amaine to vs of": [0, 65535], "from farre making amaine to vs of corinth": [0, 65535], "farre making amaine to vs of corinth that": [0, 65535], "making amaine to vs of corinth that of": [0, 65535], "amaine to vs of corinth that of epidarus": [0, 65535], "to vs of corinth that of epidarus this": [0, 65535], "vs of corinth that of epidarus this but": [0, 65535], "of corinth that of epidarus this but ere": [0, 65535], "corinth that of epidarus this but ere they": [0, 65535], "that of epidarus this but ere they came": [0, 65535], "of epidarus this but ere they came oh": [0, 65535], "epidarus this but ere they came oh let": [0, 65535], "this but ere they came oh let me": [0, 65535], "but ere they came oh let me say": [0, 65535], "ere they came oh let me say no": [0, 65535], "they came oh let me say no more": [0, 65535], "came oh let me say no more gather": [0, 65535], "oh let me say no more gather the": [0, 65535], "let me say no more gather the sequell": [0, 65535], "me say no more gather the sequell by": [0, 65535], "say no more gather the sequell by that": [0, 65535], "no more gather the sequell by that went": [0, 65535], "more gather the sequell by that went before": [0, 65535], "gather the sequell by that went before duk": [0, 65535], "the sequell by that went before duk nay": [0, 65535], "sequell by that went before duk nay forward": [0, 65535], "by that went before duk nay forward old": [0, 65535], "that went before duk nay forward old man": [0, 65535], "went before duk nay forward old man doe": [0, 65535], "before duk nay forward old man doe not": [0, 65535], "duk nay forward old man doe not breake": [0, 65535], "nay forward old man doe not breake off": [0, 65535], "forward old man doe not breake off so": [0, 65535], "old man doe not breake off so for": [0, 65535], "man doe not breake off so for we": [0, 65535], "doe not breake off so for we may": [0, 65535], "not breake off so for we may pitty": [0, 65535], "breake off so for we may pitty though": [0, 65535], "off so for we may pitty though not": [0, 65535], "so for we may pitty though not pardon": [0, 65535], "for we may pitty though not pardon thee": [0, 65535], "we may pitty though not pardon thee merch": [0, 65535], "may pitty though not pardon thee merch oh": [0, 65535], "pitty though not pardon thee merch oh had": [0, 65535], "though not pardon thee merch oh had the": [0, 65535], "not pardon thee merch oh had the gods": [0, 65535], "pardon thee merch oh had the gods done": [0, 65535], "thee merch oh had the gods done so": [0, 65535], "merch oh had the gods done so i": [0, 65535], "oh had the gods done so i had": [0, 65535], "had the gods done so i had not": [0, 65535], "the gods done so i had not now": [0, 65535], "gods done so i had not now worthily": [0, 65535], "done so i had not now worthily tearm'd": [0, 65535], "so i had not now worthily tearm'd them": [0, 65535], "i had not now worthily tearm'd them mercilesse": [0, 65535], "had not now worthily tearm'd them mercilesse to": [0, 65535], "not now worthily tearm'd them mercilesse to vs": [0, 65535], "now worthily tearm'd them mercilesse to vs for": [0, 65535], "worthily tearm'd them mercilesse to vs for ere": [0, 65535], "tearm'd them mercilesse to vs for ere the": [0, 65535], "them mercilesse to vs for ere the ships": [0, 65535], "mercilesse to vs for ere the ships could": [0, 65535], "to vs for ere the ships could meet": [0, 65535], "vs for ere the ships could meet by": [0, 65535], "for ere the ships could meet by twice": [0, 65535], "ere the ships could meet by twice fiue": [0, 65535], "the ships could meet by twice fiue leagues": [0, 65535], "ships could meet by twice fiue leagues we": [0, 65535], "could meet by twice fiue leagues we were": [0, 65535], "meet by twice fiue leagues we were encountred": [0, 65535], "by twice fiue leagues we were encountred by": [0, 65535], "twice fiue leagues we were encountred by a": [0, 65535], "fiue leagues we were encountred by a mighty": [0, 65535], "leagues we were encountred by a mighty rocke": [0, 65535], "we were encountred by a mighty rocke which": [0, 65535], "were encountred by a mighty rocke which being": [0, 65535], "encountred by a mighty rocke which being violently": [0, 65535], "by a mighty rocke which being violently borne": [0, 65535], "a mighty rocke which being violently borne vp": [0, 65535], "mighty rocke which being violently borne vp our": [0, 65535], "rocke which being violently borne vp our helpefull": [0, 65535], "which being violently borne vp our helpefull ship": [0, 65535], "being violently borne vp our helpefull ship was": [0, 65535], "violently borne vp our helpefull ship was splitted": [0, 65535], "borne vp our helpefull ship was splitted in": [0, 65535], "vp our helpefull ship was splitted in the": [0, 65535], "our helpefull ship was splitted in the midst": [0, 65535], "helpefull ship was splitted in the midst so": [0, 65535], "ship was splitted in the midst so that": [0, 65535], "was splitted in the midst so that in": [0, 65535], "splitted in the midst so that in this": [0, 65535], "in the midst so that in this vniust": [0, 65535], "the midst so that in this vniust diuorce": [0, 65535], "midst so that in this vniust diuorce of": [0, 65535], "so that in this vniust diuorce of vs": [0, 65535], "that in this vniust diuorce of vs fortune": [0, 65535], "in this vniust diuorce of vs fortune had": [0, 65535], "this vniust diuorce of vs fortune had left": [0, 65535], "vniust diuorce of vs fortune had left to": [0, 65535], "diuorce of vs fortune had left to both": [0, 65535], "of vs fortune had left to both of": [0, 65535], "vs fortune had left to both of vs": [0, 65535], "fortune had left to both of vs alike": [0, 65535], "had left to both of vs alike what": [0, 65535], "left to both of vs alike what to": [0, 65535], "to both of vs alike what to delight": [0, 65535], "both of vs alike what to delight in": [0, 65535], "of vs alike what to delight in what": [0, 65535], "vs alike what to delight in what to": [0, 65535], "alike what to delight in what to sorrow": [0, 65535], "what to delight in what to sorrow for": [0, 65535], "to delight in what to sorrow for her": [0, 65535], "delight in what to sorrow for her part": [0, 65535], "in what to sorrow for her part poore": [0, 65535], "what to sorrow for her part poore soule": [0, 65535], "to sorrow for her part poore soule seeming": [0, 65535], "sorrow for her part poore soule seeming as": [0, 65535], "for her part poore soule seeming as burdened": [0, 65535], "her part poore soule seeming as burdened with": [0, 65535], "part poore soule seeming as burdened with lesser": [0, 65535], "poore soule seeming as burdened with lesser waight": [0, 65535], "soule seeming as burdened with lesser waight but": [0, 65535], "seeming as burdened with lesser waight but not": [0, 65535], "as burdened with lesser waight but not with": [0, 65535], "burdened with lesser waight but not with lesser": [0, 65535], "with lesser waight but not with lesser woe": [0, 65535], "lesser waight but not with lesser woe was": [0, 65535], "waight but not with lesser woe was carried": [0, 65535], "but not with lesser woe was carried with": [0, 65535], "not with lesser woe was carried with more": [0, 65535], "with lesser woe was carried with more speed": [0, 65535], "lesser woe was carried with more speed before": [0, 65535], "woe was carried with more speed before the": [0, 65535], "was carried with more speed before the winde": [0, 65535], "carried with more speed before the winde and": [0, 65535], "with more speed before the winde and in": [0, 65535], "more speed before the winde and in our": [0, 65535], "speed before the winde and in our sight": [0, 65535], "before the winde and in our sight they": [0, 65535], "the winde and in our sight they three": [0, 65535], "winde and in our sight they three were": [0, 65535], "and in our sight they three were taken": [0, 65535], "in our sight they three were taken vp": [0, 65535], "our sight they three were taken vp by": [0, 65535], "sight they three were taken vp by fishermen": [0, 65535], "they three were taken vp by fishermen of": [0, 65535], "three were taken vp by fishermen of corinth": [0, 65535], "were taken vp by fishermen of corinth as": [0, 65535], "taken vp by fishermen of corinth as we": [0, 65535], "vp by fishermen of corinth as we thought": [0, 65535], "by fishermen of corinth as we thought at": [0, 65535], "fishermen of corinth as we thought at length": [0, 65535], "of corinth as we thought at length another": [0, 65535], "corinth as we thought at length another ship": [0, 65535], "as we thought at length another ship had": [0, 65535], "we thought at length another ship had seiz'd": [0, 65535], "thought at length another ship had seiz'd on": [0, 65535], "at length another ship had seiz'd on vs": [0, 65535], "length another ship had seiz'd on vs and": [0, 65535], "another ship had seiz'd on vs and knowing": [0, 65535], "ship had seiz'd on vs and knowing whom": [0, 65535], "had seiz'd on vs and knowing whom it": [0, 65535], "seiz'd on vs and knowing whom it was": [0, 65535], "on vs and knowing whom it was their": [0, 65535], "vs and knowing whom it was their hap": [0, 65535], "and knowing whom it was their hap to": [0, 65535], "knowing whom it was their hap to saue": [0, 65535], "whom it was their hap to saue gaue": [0, 65535], "it was their hap to saue gaue healthfull": [0, 65535], "was their hap to saue gaue healthfull welcome": [0, 65535], "their hap to saue gaue healthfull welcome to": [0, 65535], "hap to saue gaue healthfull welcome to their": [0, 65535], "to saue gaue healthfull welcome to their ship": [0, 65535], "saue gaue healthfull welcome to their ship wrackt": [0, 65535], "gaue healthfull welcome to their ship wrackt guests": [0, 65535], "healthfull welcome to their ship wrackt guests and": [0, 65535], "welcome to their ship wrackt guests and would": [0, 65535], "to their ship wrackt guests and would haue": [0, 65535], "their ship wrackt guests and would haue reft": [0, 65535], "ship wrackt guests and would haue reft the": [0, 65535], "wrackt guests and would haue reft the fishers": [0, 65535], "guests and would haue reft the fishers of": [0, 65535], "and would haue reft the fishers of their": [0, 65535], "would haue reft the fishers of their prey": [0, 65535], "haue reft the fishers of their prey had": [0, 65535], "reft the fishers of their prey had not": [0, 65535], "the fishers of their prey had not their": [0, 65535], "fishers of their prey had not their backe": [0, 65535], "of their prey had not their backe beene": [0, 65535], "their prey had not their backe beene very": [0, 65535], "prey had not their backe beene very slow": [0, 65535], "had not their backe beene very slow of": [0, 65535], "not their backe beene very slow of saile": [0, 65535], "their backe beene very slow of saile and": [0, 65535], "backe beene very slow of saile and therefore": [0, 65535], "beene very slow of saile and therefore homeward": [0, 65535], "very slow of saile and therefore homeward did": [0, 65535], "slow of saile and therefore homeward did they": [0, 65535], "of saile and therefore homeward did they bend": [0, 65535], "saile and therefore homeward did they bend their": [0, 65535], "and therefore homeward did they bend their course": [0, 65535], "therefore homeward did they bend their course thus": [0, 65535], "homeward did they bend their course thus haue": [0, 65535], "did they bend their course thus haue you": [0, 65535], "they bend their course thus haue you heard": [0, 65535], "bend their course thus haue you heard me": [0, 65535], "their course thus haue you heard me seuer'd": [0, 65535], "course thus haue you heard me seuer'd from": [0, 65535], "thus haue you heard me seuer'd from my": [0, 65535], "haue you heard me seuer'd from my blisse": [0, 65535], "you heard me seuer'd from my blisse that": [0, 65535], "heard me seuer'd from my blisse that by": [0, 65535], "me seuer'd from my blisse that by misfortunes": [0, 65535], "seuer'd from my blisse that by misfortunes was": [0, 65535], "from my blisse that by misfortunes was my": [0, 65535], "my blisse that by misfortunes was my life": [0, 65535], "blisse that by misfortunes was my life prolong'd": [0, 65535], "that by misfortunes was my life prolong'd to": [0, 65535], "by misfortunes was my life prolong'd to tell": [0, 65535], "misfortunes was my life prolong'd to tell sad": [0, 65535], "was my life prolong'd to tell sad stories": [0, 65535], "my life prolong'd to tell sad stories of": [0, 65535], "life prolong'd to tell sad stories of my": [0, 65535], "prolong'd to tell sad stories of my owne": [0, 65535], "to tell sad stories of my owne mishaps": [0, 65535], "tell sad stories of my owne mishaps duke": [0, 65535], "sad stories of my owne mishaps duke and": [0, 65535], "stories of my owne mishaps duke and for": [0, 65535], "of my owne mishaps duke and for the": [0, 65535], "my owne mishaps duke and for the sake": [0, 65535], "owne mishaps duke and for the sake of": [0, 65535], "mishaps duke and for the sake of them": [0, 65535], "duke and for the sake of them thou": [0, 65535], "and for the sake of them thou sorrowest": [0, 65535], "for the sake of them thou sorrowest for": [0, 65535], "the sake of them thou sorrowest for doe": [0, 65535], "sake of them thou sorrowest for doe me": [0, 65535], "of them thou sorrowest for doe me the": [0, 65535], "them thou sorrowest for doe me the fauour": [0, 65535], "thou sorrowest for doe me the fauour to": [0, 65535], "sorrowest for doe me the fauour to dilate": [0, 65535], "for doe me the fauour to dilate at": [0, 65535], "doe me the fauour to dilate at full": [0, 65535], "me the fauour to dilate at full what": [0, 65535], "the fauour to dilate at full what haue": [0, 65535], "fauour to dilate at full what haue befalne": [0, 65535], "to dilate at full what haue befalne of": [0, 65535], "dilate at full what haue befalne of them": [0, 65535], "at full what haue befalne of them and": [0, 65535], "full what haue befalne of them and they": [0, 65535], "what haue befalne of them and they till": [0, 65535], "haue befalne of them and they till now": [0, 65535], "befalne of them and they till now merch": [0, 65535], "of them and they till now merch my": [0, 65535], "them and they till now merch my yongest": [0, 65535], "and they till now merch my yongest boy": [0, 65535], "they till now merch my yongest boy and": [0, 65535], "till now merch my yongest boy and yet": [0, 65535], "now merch my yongest boy and yet my": [0, 65535], "merch my yongest boy and yet my eldest": [0, 65535], "my yongest boy and yet my eldest care": [0, 65535], "yongest boy and yet my eldest care at": [0, 65535], "boy and yet my eldest care at eighteene": [0, 65535], "and yet my eldest care at eighteene yeeres": [0, 65535], "yet my eldest care at eighteene yeeres became": [0, 65535], "my eldest care at eighteene yeeres became inquisitiue": [0, 65535], "eldest care at eighteene yeeres became inquisitiue after": [0, 65535], "care at eighteene yeeres became inquisitiue after his": [0, 65535], "at eighteene yeeres became inquisitiue after his brother": [0, 65535], "eighteene yeeres became inquisitiue after his brother and": [0, 65535], "yeeres became inquisitiue after his brother and importun'd": [0, 65535], "became inquisitiue after his brother and importun'd me": [0, 65535], "inquisitiue after his brother and importun'd me that": [0, 65535], "after his brother and importun'd me that his": [0, 65535], "his brother and importun'd me that his attendant": [0, 65535], "brother and importun'd me that his attendant so": [0, 65535], "and importun'd me that his attendant so his": [0, 65535], "importun'd me that his attendant so his case": [0, 65535], "me that his attendant so his case was": [0, 65535], "that his attendant so his case was like": [0, 65535], "his attendant so his case was like reft": [0, 65535], "attendant so his case was like reft of": [0, 65535], "so his case was like reft of his": [0, 65535], "his case was like reft of his brother": [0, 65535], "case was like reft of his brother but": [0, 65535], "was like reft of his brother but retain'd": [0, 65535], "like reft of his brother but retain'd his": [0, 65535], "reft of his brother but retain'd his name": [0, 65535], "of his brother but retain'd his name might": [0, 65535], "his brother but retain'd his name might beare": [0, 65535], "brother but retain'd his name might beare him": [0, 65535], "but retain'd his name might beare him company": [0, 65535], "retain'd his name might beare him company in": [0, 65535], "his name might beare him company in the": [0, 65535], "name might beare him company in the quest": [0, 65535], "might beare him company in the quest of": [0, 65535], "beare him company in the quest of him": [0, 65535], "him company in the quest of him whom": [0, 65535], "company in the quest of him whom whil'st": [0, 65535], "in the quest of him whom whil'st i": [0, 65535], "the quest of him whom whil'st i laboured": [0, 65535], "quest of him whom whil'st i laboured of": [0, 65535], "of him whom whil'st i laboured of a": [0, 65535], "him whom whil'st i laboured of a loue": [0, 65535], "whom whil'st i laboured of a loue to": [0, 65535], "whil'st i laboured of a loue to see": [0, 65535], "i laboured of a loue to see i": [0, 65535], "laboured of a loue to see i hazarded": [0, 65535], "of a loue to see i hazarded the": [0, 65535], "a loue to see i hazarded the losse": [0, 65535], "loue to see i hazarded the losse of": [0, 65535], "to see i hazarded the losse of whom": [0, 65535], "see i hazarded the losse of whom i": [0, 65535], "i hazarded the losse of whom i lou'd": [0, 65535], "hazarded the losse of whom i lou'd fiue": [0, 65535], "the losse of whom i lou'd fiue sommers": [0, 65535], "losse of whom i lou'd fiue sommers haue": [0, 65535], "of whom i lou'd fiue sommers haue i": [0, 65535], "whom i lou'd fiue sommers haue i spent": [0, 65535], "i lou'd fiue sommers haue i spent in": [0, 65535], "lou'd fiue sommers haue i spent in farthest": [0, 65535], "fiue sommers haue i spent in farthest greece": [0, 65535], "sommers haue i spent in farthest greece roming": [0, 65535], "haue i spent in farthest greece roming cleane": [0, 65535], "i spent in farthest greece roming cleane through": [0, 65535], "spent in farthest greece roming cleane through the": [0, 65535], "in farthest greece roming cleane through the bounds": [0, 65535], "farthest greece roming cleane through the bounds of": [0, 65535], "greece roming cleane through the bounds of asia": [0, 65535], "roming cleane through the bounds of asia and": [0, 65535], "cleane through the bounds of asia and coasting": [0, 65535], "through the bounds of asia and coasting homeward": [0, 65535], "the bounds of asia and coasting homeward came": [0, 65535], "bounds of asia and coasting homeward came to": [0, 65535], "of asia and coasting homeward came to ephesus": [0, 65535], "asia and coasting homeward came to ephesus hopelesse": [0, 65535], "and coasting homeward came to ephesus hopelesse to": [0, 65535], "coasting homeward came to ephesus hopelesse to finde": [0, 65535], "homeward came to ephesus hopelesse to finde yet": [0, 65535], "came to ephesus hopelesse to finde yet loth": [0, 65535], "to ephesus hopelesse to finde yet loth to": [0, 65535], "ephesus hopelesse to finde yet loth to leaue": [0, 65535], "hopelesse to finde yet loth to leaue vnsought": [0, 65535], "to finde yet loth to leaue vnsought or": [0, 65535], "finde yet loth to leaue vnsought or that": [0, 65535], "yet loth to leaue vnsought or that or": [0, 65535], "loth to leaue vnsought or that or any": [0, 65535], "to leaue vnsought or that or any place": [0, 65535], "leaue vnsought or that or any place that": [0, 65535], "vnsought or that or any place that harbours": [0, 65535], "or that or any place that harbours men": [0, 65535], "that or any place that harbours men but": [0, 65535], "or any place that harbours men but heere": [0, 65535], "any place that harbours men but heere must": [0, 65535], "place that harbours men but heere must end": [0, 65535], "that harbours men but heere must end the": [0, 65535], "harbours men but heere must end the story": [0, 65535], "men but heere must end the story of": [0, 65535], "but heere must end the story of my": [0, 65535], "heere must end the story of my life": [0, 65535], "must end the story of my life and": [0, 65535], "end the story of my life and happy": [0, 65535], "the story of my life and happy were": [0, 65535], "story of my life and happy were i": [0, 65535], "of my life and happy were i in": [0, 65535], "my life and happy were i in my": [0, 65535], "life and happy were i in my timelie": [0, 65535], "and happy were i in my timelie death": [0, 65535], "happy were i in my timelie death could": [0, 65535], "were i in my timelie death could all": [0, 65535], "i in my timelie death could all my": [0, 65535], "in my timelie death could all my trauells": [0, 65535], "my timelie death could all my trauells warrant": [0, 65535], "timelie death could all my trauells warrant me": [0, 65535], "death could all my trauells warrant me they": [0, 65535], "could all my trauells warrant me they liue": [0, 65535], "all my trauells warrant me they liue duke": [0, 65535], "my trauells warrant me they liue duke haplesse": [0, 65535], "trauells warrant me they liue duke haplesse egeon": [0, 65535], "warrant me they liue duke haplesse egeon whom": [0, 65535], "me they liue duke haplesse egeon whom the": [0, 65535], "they liue duke haplesse egeon whom the fates": [0, 65535], "liue duke haplesse egeon whom the fates haue": [0, 65535], "duke haplesse egeon whom the fates haue markt": [0, 65535], "haplesse egeon whom the fates haue markt to": [0, 65535], "egeon whom the fates haue markt to beare": [0, 65535], "whom the fates haue markt to beare the": [0, 65535], "the fates haue markt to beare the extremitie": [0, 65535], "fates haue markt to beare the extremitie of": [0, 65535], "haue markt to beare the extremitie of dire": [0, 65535], "markt to beare the extremitie of dire mishap": [0, 65535], "to beare the extremitie of dire mishap now": [0, 65535], "beare the extremitie of dire mishap now trust": [0, 65535], "the extremitie of dire mishap now trust me": [0, 65535], "extremitie of dire mishap now trust me were": [0, 65535], "of dire mishap now trust me were it": [0, 65535], "dire mishap now trust me were it not": [0, 65535], "mishap now trust me were it not against": [0, 65535], "now trust me were it not against our": [0, 65535], "trust me were it not against our lawes": [0, 65535], "me were it not against our lawes against": [0, 65535], "were it not against our lawes against my": [0, 65535], "it not against our lawes against my crowne": [0, 65535], "not against our lawes against my crowne my": [0, 65535], "against our lawes against my crowne my oath": [0, 65535], "our lawes against my crowne my oath my": [0, 65535], "lawes against my crowne my oath my dignity": [0, 65535], "against my crowne my oath my dignity which": [0, 65535], "my crowne my oath my dignity which princes": [0, 65535], "crowne my oath my dignity which princes would": [0, 65535], "my oath my dignity which princes would they": [0, 65535], "oath my dignity which princes would they may": [0, 65535], "my dignity which princes would they may not": [0, 65535], "dignity which princes would they may not disanull": [0, 65535], "which princes would they may not disanull my": [0, 65535], "princes would they may not disanull my soule": [0, 65535], "would they may not disanull my soule should": [0, 65535], "they may not disanull my soule should sue": [0, 65535], "may not disanull my soule should sue as": [0, 65535], "not disanull my soule should sue as aduocate": [0, 65535], "disanull my soule should sue as aduocate for": [0, 65535], "my soule should sue as aduocate for thee": [0, 65535], "soule should sue as aduocate for thee but": [0, 65535], "should sue as aduocate for thee but though": [0, 65535], "sue as aduocate for thee but though thou": [0, 65535], "as aduocate for thee but though thou art": [0, 65535], "aduocate for thee but though thou art adiudged": [0, 65535], "for thee but though thou art adiudged to": [0, 65535], "thee but though thou art adiudged to the": [0, 65535], "but though thou art adiudged to the death": [0, 65535], "though thou art adiudged to the death and": [0, 65535], "thou art adiudged to the death and passed": [0, 65535], "art adiudged to the death and passed sentence": [0, 65535], "adiudged to the death and passed sentence may": [0, 65535], "to the death and passed sentence may not": [0, 65535], "the death and passed sentence may not be": [0, 65535], "death and passed sentence may not be recal'd": [0, 65535], "and passed sentence may not be recal'd but": [0, 65535], "passed sentence may not be recal'd but to": [0, 65535], "sentence may not be recal'd but to our": [0, 65535], "may not be recal'd but to our honours": [0, 65535], "not be recal'd but to our honours great": [0, 65535], "be recal'd but to our honours great disparagement": [0, 65535], "recal'd but to our honours great disparagement yet": [0, 65535], "but to our honours great disparagement yet will": [0, 65535], "to our honours great disparagement yet will i": [0, 65535], "our honours great disparagement yet will i fauour": [0, 65535], "honours great disparagement yet will i fauour thee": [0, 65535], "great disparagement yet will i fauour thee in": [0, 65535], "disparagement yet will i fauour thee in what": [0, 65535], "yet will i fauour thee in what i": [0, 65535], "will i fauour thee in what i can": [0, 65535], "i fauour thee in what i can therefore": [0, 65535], "fauour thee in what i can therefore marchant": [0, 65535], "thee in what i can therefore marchant ile": [0, 65535], "in what i can therefore marchant ile limit": [0, 65535], "what i can therefore marchant ile limit thee": [0, 65535], "i can therefore marchant ile limit thee this": [0, 65535], "can therefore marchant ile limit thee this day": [0, 65535], "therefore marchant ile limit thee this day to": [0, 65535], "marchant ile limit thee this day to seeke": [0, 65535], "ile limit thee this day to seeke thy": [0, 65535], "limit thee this day to seeke thy helpe": [0, 65535], "thee this day to seeke thy helpe by": [0, 65535], "this day to seeke thy helpe by beneficiall": [0, 65535], "day to seeke thy helpe by beneficiall helpe": [0, 65535], "to seeke thy helpe by beneficiall helpe try": [0, 65535], "seeke thy helpe by beneficiall helpe try all": [0, 65535], "thy helpe by beneficiall helpe try all the": [0, 65535], "helpe by beneficiall helpe try all the friends": [0, 65535], "by beneficiall helpe try all the friends thou": [0, 65535], "beneficiall helpe try all the friends thou hast": [0, 65535], "helpe try all the friends thou hast in": [0, 65535], "try all the friends thou hast in ephesus": [0, 65535], "all the friends thou hast in ephesus beg": [0, 65535], "the friends thou hast in ephesus beg thou": [0, 65535], "friends thou hast in ephesus beg thou or": [0, 65535], "thou hast in ephesus beg thou or borrow": [0, 65535], "hast in ephesus beg thou or borrow to": [0, 65535], "in ephesus beg thou or borrow to make": [0, 65535], "ephesus beg thou or borrow to make vp": [0, 65535], "beg thou or borrow to make vp the": [0, 65535], "thou or borrow to make vp the summe": [0, 65535], "or borrow to make vp the summe and": [0, 65535], "borrow to make vp the summe and liue": [0, 65535], "to make vp the summe and liue if": [0, 65535], "make vp the summe and liue if no": [0, 65535], "vp the summe and liue if no then": [0, 65535], "the summe and liue if no then thou": [0, 65535], "summe and liue if no then thou art": [0, 65535], "and liue if no then thou art doom'd": [0, 65535], "liue if no then thou art doom'd to": [0, 65535], "if no then thou art doom'd to die": [0, 65535], "no then thou art doom'd to die iaylor": [0, 65535], "then thou art doom'd to die iaylor take": [0, 65535], "thou art doom'd to die iaylor take him": [0, 65535], "art doom'd to die iaylor take him to": [0, 65535], "doom'd to die iaylor take him to thy": [0, 65535], "to die iaylor take him to thy custodie": [0, 65535], "die iaylor take him to thy custodie iaylor": [0, 65535], "iaylor take him to thy custodie iaylor i": [0, 65535], "take him to thy custodie iaylor i will": [0, 65535], "him to thy custodie iaylor i will my": [0, 65535], "to thy custodie iaylor i will my lord": [0, 65535], "thy custodie iaylor i will my lord merch": [0, 65535], "custodie iaylor i will my lord merch hopelesse": [0, 65535], "iaylor i will my lord merch hopelesse and": [0, 65535], "i will my lord merch hopelesse and helpelesse": [0, 65535], "will my lord merch hopelesse and helpelesse doth": [0, 65535], "my lord merch hopelesse and helpelesse doth egean": [0, 65535], "lord merch hopelesse and helpelesse doth egean wend": [0, 65535], "merch hopelesse and helpelesse doth egean wend but": [0, 65535], "hopelesse and helpelesse doth egean wend but to": [0, 65535], "and helpelesse doth egean wend but to procrastinate": [0, 65535], "helpelesse doth egean wend but to procrastinate his": [0, 65535], "doth egean wend but to procrastinate his liuelesse": [0, 65535], "egean wend but to procrastinate his liuelesse end": [0, 65535], "wend but to procrastinate his liuelesse end exeunt": [0, 65535], "but to procrastinate his liuelesse end exeunt enter": [0, 65535], "to procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis erotes": [0, 65535], "his liuelesse end exeunt enter antipholis erotes a": [0, 65535], "liuelesse end exeunt enter antipholis erotes a marchant": [0, 65535], "end exeunt enter antipholis erotes a marchant and": [0, 65535], "exeunt enter antipholis erotes a marchant and dromio": [0, 65535], "enter antipholis erotes a marchant and dromio mer": [0, 65535], "antipholis erotes a marchant and dromio mer therefore": [0, 65535], "erotes a marchant and dromio mer therefore giue": [0, 65535], "a marchant and dromio mer therefore giue out": [0, 65535], "marchant and dromio mer therefore giue out you": [0, 65535], "and dromio mer therefore giue out you are": [0, 65535], "dromio mer therefore giue out you are of": [0, 65535], "mer therefore giue out you are of epidamium": [0, 65535], "therefore giue out you are of epidamium lest": [0, 65535], "giue out you are of epidamium lest that": [0, 65535], "out you are of epidamium lest that your": [0, 65535], "you are of epidamium lest that your goods": [0, 65535], "are of epidamium lest that your goods too": [0, 65535], "of epidamium lest that your goods too soone": [0, 65535], "epidamium lest that your goods too soone be": [0, 65535], "lest that your goods too soone be confiscate": [0, 65535], "that your goods too soone be confiscate this": [0, 65535], "your goods too soone be confiscate this very": [0, 65535], "goods too soone be confiscate this very day": [0, 65535], "too soone be confiscate this very day a": [0, 65535], "soone be confiscate this very day a syracusian": [0, 65535], "be confiscate this very day a syracusian marchant": [0, 65535], "confiscate this very day a syracusian marchant is": [0, 65535], "this very day a syracusian marchant is apprehended": [0, 65535], "very day a syracusian marchant is apprehended for": [0, 65535], "day a syracusian marchant is apprehended for a": [0, 65535], "a syracusian marchant is apprehended for a riuall": [0, 65535], "syracusian marchant is apprehended for a riuall here": [0, 65535], "marchant is apprehended for a riuall here and": [0, 65535], "is apprehended for a riuall here and not": [0, 65535], "apprehended for a riuall here and not being": [0, 65535], "for a riuall here and not being able": [0, 65535], "a riuall here and not being able to": [0, 65535], "riuall here and not being able to buy": [0, 65535], "here and not being able to buy out": [0, 65535], "and not being able to buy out his": [0, 65535], "not being able to buy out his life": [0, 65535], "being able to buy out his life according": [0, 65535], "able to buy out his life according to": [0, 65535], "to buy out his life according to the": [0, 65535], "buy out his life according to the statute": [0, 65535], "out his life according to the statute of": [0, 65535], "his life according to the statute of the": [0, 65535], "life according to the statute of the towne": [0, 65535], "according to the statute of the towne dies": [0, 65535], "to the statute of the towne dies ere": [0, 65535], "the statute of the towne dies ere the": [0, 65535], "statute of the towne dies ere the wearie": [0, 65535], "of the towne dies ere the wearie sunne": [0, 65535], "the towne dies ere the wearie sunne set": [0, 65535], "towne dies ere the wearie sunne set in": [0, 65535], "dies ere the wearie sunne set in the": [0, 65535], "ere the wearie sunne set in the west": [0, 65535], "the wearie sunne set in the west there": [0, 65535], "wearie sunne set in the west there is": [0, 65535], "sunne set in the west there is your": [0, 65535], "set in the west there is your monie": [0, 65535], "in the west there is your monie that": [0, 65535], "the west there is your monie that i": [0, 65535], "west there is your monie that i had": [0, 65535], "there is your monie that i had to": [0, 65535], "is your monie that i had to keepe": [0, 65535], "your monie that i had to keepe ant": [0, 65535], "monie that i had to keepe ant goe": [0, 65535], "that i had to keepe ant goe beare": [0, 65535], "i had to keepe ant goe beare it": [0, 65535], "had to keepe ant goe beare it to": [0, 65535], "to keepe ant goe beare it to the": [0, 65535], "keepe ant goe beare it to the centaure": [0, 65535], "ant goe beare it to the centaure where": [0, 65535], "goe beare it to the centaure where we": [0, 65535], "beare it to the centaure where we host": [0, 65535], "it to the centaure where we host and": [0, 65535], "to the centaure where we host and stay": [0, 65535], "the centaure where we host and stay there": [0, 65535], "centaure where we host and stay there dromio": [0, 65535], "where we host and stay there dromio till": [0, 65535], "we host and stay there dromio till i": [0, 65535], "host and stay there dromio till i come": [0, 65535], "and stay there dromio till i come to": [0, 65535], "stay there dromio till i come to thee": [0, 65535], "there dromio till i come to thee within": [0, 65535], "dromio till i come to thee within this": [0, 65535], "till i come to thee within this houre": [0, 65535], "i come to thee within this houre it": [0, 65535], "come to thee within this houre it will": [0, 65535], "to thee within this houre it will be": [0, 65535], "thee within this houre it will be dinner": [0, 65535], "within this houre it will be dinner time": [0, 65535], "this houre it will be dinner time till": [0, 65535], "houre it will be dinner time till that": [0, 65535], "it will be dinner time till that ile": [0, 65535], "will be dinner time till that ile view": [0, 65535], "be dinner time till that ile view the": [0, 65535], "dinner time till that ile view the manners": [0, 65535], "time till that ile view the manners of": [0, 65535], "till that ile view the manners of the": [0, 65535], "that ile view the manners of the towne": [0, 65535], "ile view the manners of the towne peruse": [0, 65535], "view the manners of the towne peruse the": [0, 65535], "the manners of the towne peruse the traders": [0, 65535], "manners of the towne peruse the traders gaze": [0, 65535], "of the towne peruse the traders gaze vpon": [0, 65535], "the towne peruse the traders gaze vpon the": [0, 65535], "towne peruse the traders gaze vpon the buildings": [0, 65535], "peruse the traders gaze vpon the buildings and": [0, 65535], "the traders gaze vpon the buildings and then": [0, 65535], "traders gaze vpon the buildings and then returne": [0, 65535], "gaze vpon the buildings and then returne and": [0, 65535], "vpon the buildings and then returne and sleepe": [0, 65535], "the buildings and then returne and sleepe within": [0, 65535], "buildings and then returne and sleepe within mine": [0, 65535], "and then returne and sleepe within mine inne": [0, 65535], "then returne and sleepe within mine inne for": [0, 65535], "returne and sleepe within mine inne for with": [0, 65535], "and sleepe within mine inne for with long": [0, 65535], "sleepe within mine inne for with long trauaile": [0, 65535], "within mine inne for with long trauaile i": [0, 65535], "mine inne for with long trauaile i am": [0, 65535], "inne for with long trauaile i am stiffe": [0, 65535], "for with long trauaile i am stiffe and": [0, 65535], "with long trauaile i am stiffe and wearie": [0, 65535], "long trauaile i am stiffe and wearie get": [0, 65535], "trauaile i am stiffe and wearie get thee": [0, 65535], "i am stiffe and wearie get thee away": [0, 65535], "am stiffe and wearie get thee away dro": [0, 65535], "stiffe and wearie get thee away dro many": [0, 65535], "and wearie get thee away dro many a": [0, 65535], "wearie get thee away dro many a man": [0, 65535], "get thee away dro many a man would": [0, 65535], "thee away dro many a man would take": [0, 65535], "away dro many a man would take you": [0, 65535], "dro many a man would take you at": [0, 65535], "many a man would take you at your": [0, 65535], "a man would take you at your word": [0, 65535], "man would take you at your word and": [0, 65535], "would take you at your word and goe": [0, 65535], "take you at your word and goe indeede": [0, 65535], "you at your word and goe indeede hauing": [0, 65535], "at your word and goe indeede hauing so": [0, 65535], "your word and goe indeede hauing so good": [0, 65535], "word and goe indeede hauing so good a": [0, 65535], "and goe indeede hauing so good a meane": [0, 65535], "goe indeede hauing so good a meane exit": [0, 65535], "indeede hauing so good a meane exit dromio": [0, 65535], "hauing so good a meane exit dromio ant": [0, 65535], "so good a meane exit dromio ant a": [0, 65535], "good a meane exit dromio ant a trustie": [0, 65535], "a meane exit dromio ant a trustie villaine": [0, 65535], "meane exit dromio ant a trustie villaine sir": [0, 65535], "exit dromio ant a trustie villaine sir that": [0, 65535], "dromio ant a trustie villaine sir that very": [0, 65535], "ant a trustie villaine sir that very oft": [0, 65535], "a trustie villaine sir that very oft when": [0, 65535], "trustie villaine sir that very oft when i": [0, 65535], "villaine sir that very oft when i am": [0, 65535], "sir that very oft when i am dull": [0, 65535], "that very oft when i am dull with": [0, 65535], "very oft when i am dull with care": [0, 65535], "oft when i am dull with care and": [0, 65535], "when i am dull with care and melancholly": [0, 65535], "i am dull with care and melancholly lightens": [0, 65535], "am dull with care and melancholly lightens my": [0, 65535], "dull with care and melancholly lightens my humour": [0, 65535], "with care and melancholly lightens my humour with": [0, 65535], "care and melancholly lightens my humour with his": [0, 65535], "and melancholly lightens my humour with his merry": [0, 65535], "melancholly lightens my humour with his merry iests": [0, 65535], "lightens my humour with his merry iests what": [0, 65535], "my humour with his merry iests what will": [0, 65535], "humour with his merry iests what will you": [0, 65535], "with his merry iests what will you walke": [0, 65535], "his merry iests what will you walke with": [0, 65535], "merry iests what will you walke with me": [0, 65535], "iests what will you walke with me about": [0, 65535], "what will you walke with me about the": [0, 65535], "will you walke with me about the towne": [0, 65535], "you walke with me about the towne and": [0, 65535], "walke with me about the towne and then": [0, 65535], "with me about the towne and then goe": [0, 65535], "me about the towne and then goe to": [0, 65535], "about the towne and then goe to my": [0, 65535], "the towne and then goe to my inne": [0, 65535], "towne and then goe to my inne and": [0, 65535], "and then goe to my inne and dine": [0, 65535], "then goe to my inne and dine with": [0, 65535], "goe to my inne and dine with me": [0, 65535], "to my inne and dine with me e": [0, 65535], "my inne and dine with me e mar": [0, 65535], "inne and dine with me e mar i": [0, 65535], "and dine with me e mar i am": [0, 65535], "dine with me e mar i am inuited": [0, 65535], "with me e mar i am inuited sir": [0, 65535], "me e mar i am inuited sir to": [0, 65535], "e mar i am inuited sir to certaine": [0, 65535], "mar i am inuited sir to certaine marchants": [0, 65535], "i am inuited sir to certaine marchants of": [0, 65535], "am inuited sir to certaine marchants of whom": [0, 65535], "inuited sir to certaine marchants of whom i": [0, 65535], "sir to certaine marchants of whom i hope": [0, 65535], "to certaine marchants of whom i hope to": [0, 65535], "certaine marchants of whom i hope to make": [0, 65535], "marchants of whom i hope to make much": [0, 65535], "of whom i hope to make much benefit": [0, 65535], "whom i hope to make much benefit i": [0, 65535], "i hope to make much benefit i craue": [0, 65535], "hope to make much benefit i craue your": [0, 65535], "to make much benefit i craue your pardon": [0, 65535], "make much benefit i craue your pardon soone": [0, 65535], "much benefit i craue your pardon soone at": [0, 65535], "benefit i craue your pardon soone at fiue": [0, 65535], "i craue your pardon soone at fiue a": [0, 65535], "craue your pardon soone at fiue a clocke": [0, 65535], "your pardon soone at fiue a clocke please": [0, 65535], "pardon soone at fiue a clocke please you": [0, 65535], "soone at fiue a clocke please you ile": [0, 65535], "at fiue a clocke please you ile meete": [0, 65535], "fiue a clocke please you ile meete with": [0, 65535], "a clocke please you ile meete with you": [0, 65535], "clocke please you ile meete with you vpon": [0, 65535], "please you ile meete with you vpon the": [0, 65535], "you ile meete with you vpon the mart": [0, 65535], "ile meete with you vpon the mart and": [0, 65535], "meete with you vpon the mart and afterward": [0, 65535], "with you vpon the mart and afterward consort": [0, 65535], "you vpon the mart and afterward consort you": [0, 65535], "vpon the mart and afterward consort you till": [0, 65535], "the mart and afterward consort you till bed": [0, 65535], "mart and afterward consort you till bed time": [0, 65535], "and afterward consort you till bed time my": [0, 65535], "afterward consort you till bed time my present": [0, 65535], "consort you till bed time my present businesse": [0, 65535], "you till bed time my present businesse cals": [0, 65535], "till bed time my present businesse cals me": [0, 65535], "bed time my present businesse cals me from": [0, 65535], "time my present businesse cals me from you": [0, 65535], "my present businesse cals me from you now": [0, 65535], "present businesse cals me from you now ant": [0, 65535], "businesse cals me from you now ant farewell": [0, 65535], "cals me from you now ant farewell till": [0, 65535], "me from you now ant farewell till then": [0, 65535], "from you now ant farewell till then i": [0, 65535], "you now ant farewell till then i will": [0, 65535], "now ant farewell till then i will goe": [0, 65535], "ant farewell till then i will goe loose": [0, 65535], "farewell till then i will goe loose my": [0, 65535], "till then i will goe loose my selfe": [0, 65535], "then i will goe loose my selfe and": [0, 65535], "i will goe loose my selfe and wander": [0, 65535], "will goe loose my selfe and wander vp": [0, 65535], "goe loose my selfe and wander vp and": [0, 65535], "loose my selfe and wander vp and downe": [0, 65535], "my selfe and wander vp and downe to": [0, 65535], "selfe and wander vp and downe to view": [0, 65535], "and wander vp and downe to view the": [0, 65535], "wander vp and downe to view the citie": [0, 65535], "vp and downe to view the citie e": [0, 65535], "and downe to view the citie e mar": [0, 65535], "downe to view the citie e mar sir": [0, 65535], "to view the citie e mar sir i": [0, 65535], "view the citie e mar sir i commend": [0, 65535], "the citie e mar sir i commend you": [0, 65535], "citie e mar sir i commend you to": [0, 65535], "e mar sir i commend you to your": [0, 65535], "mar sir i commend you to your owne": [0, 65535], "sir i commend you to your owne content": [0, 65535], "i commend you to your owne content exeunt": [0, 65535], "commend you to your owne content exeunt ant": [0, 65535], "you to your owne content exeunt ant he": [0, 65535], "to your owne content exeunt ant he that": [0, 65535], "your owne content exeunt ant he that commends": [0, 65535], "owne content exeunt ant he that commends me": [0, 65535], "content exeunt ant he that commends me to": [0, 65535], "exeunt ant he that commends me to mine": [0, 65535], "ant he that commends me to mine owne": [0, 65535], "he that commends me to mine owne content": [0, 65535], "that commends me to mine owne content commends": [0, 65535], "commends me to mine owne content commends me": [0, 65535], "me to mine owne content commends me to": [0, 65535], "to mine owne content commends me to the": [0, 65535], "mine owne content commends me to the thing": [0, 65535], "owne content commends me to the thing i": [0, 65535], "content commends me to the thing i cannot": [0, 65535], "commends me to the thing i cannot get": [0, 65535], "me to the thing i cannot get i": [0, 65535], "to the thing i cannot get i to": [0, 65535], "the thing i cannot get i to the": [0, 65535], "thing i cannot get i to the world": [0, 65535], "i cannot get i to the world am": [0, 65535], "cannot get i to the world am like": [0, 65535], "get i to the world am like a": [0, 65535], "i to the world am like a drop": [0, 65535], "to the world am like a drop of": [0, 65535], "the world am like a drop of water": [0, 65535], "world am like a drop of water that": [0, 65535], "am like a drop of water that in": [0, 65535], "like a drop of water that in the": [0, 65535], "a drop of water that in the ocean": [0, 65535], "drop of water that in the ocean seekes": [0, 65535], "of water that in the ocean seekes another": [0, 65535], "water that in the ocean seekes another drop": [0, 65535], "that in the ocean seekes another drop who": [0, 65535], "in the ocean seekes another drop who falling": [0, 65535], "the ocean seekes another drop who falling there": [0, 65535], "ocean seekes another drop who falling there to": [0, 65535], "seekes another drop who falling there to finde": [0, 65535], "another drop who falling there to finde his": [0, 65535], "drop who falling there to finde his fellow": [0, 65535], "who falling there to finde his fellow forth": [0, 65535], "falling there to finde his fellow forth vnseene": [0, 65535], "there to finde his fellow forth vnseene inquisitiue": [0, 65535], "to finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i to": [0, 65535], "vnseene inquisitiue confounds himselfe so i to finde": [0, 65535], "inquisitiue confounds himselfe so i to finde a": [0, 65535], "confounds himselfe so i to finde a mother": [0, 65535], "himselfe so i to finde a mother and": [0, 65535], "so i to finde a mother and a": [0, 65535], "i to finde a mother and a brother": [0, 65535], "to finde a mother and a brother in": [0, 65535], "finde a mother and a brother in quest": [0, 65535], "a mother and a brother in quest of": [0, 65535], "mother and a brother in quest of them": [0, 65535], "and a brother in quest of them vnhappie": [0, 65535], "a brother in quest of them vnhappie a": [0, 65535], "brother in quest of them vnhappie a loose": [0, 65535], "in quest of them vnhappie a loose my": [0, 65535], "quest of them vnhappie a loose my selfe": [0, 65535], "of them vnhappie a loose my selfe enter": [0, 65535], "them vnhappie a loose my selfe enter dromio": [0, 65535], "vnhappie a loose my selfe enter dromio of": [0, 65535], "a loose my selfe enter dromio of ephesus": [0, 65535], "loose my selfe enter dromio of ephesus here": [0, 65535], "my selfe enter dromio of ephesus here comes": [0, 65535], "selfe enter dromio of ephesus here comes the": [0, 65535], "enter dromio of ephesus here comes the almanacke": [0, 65535], "dromio of ephesus here comes the almanacke of": [0, 65535], "of ephesus here comes the almanacke of my": [0, 65535], "ephesus here comes the almanacke of my true": [0, 65535], "here comes the almanacke of my true date": [0, 65535], "comes the almanacke of my true date what": [0, 65535], "the almanacke of my true date what now": [0, 65535], "almanacke of my true date what now how": [0, 65535], "of my true date what now how chance": [0, 65535], "my true date what now how chance thou": [0, 65535], "true date what now how chance thou art": [0, 65535], "date what now how chance thou art return'd": [0, 65535], "what now how chance thou art return'd so": [0, 65535], "now how chance thou art return'd so soone": [0, 65535], "how chance thou art return'd so soone e": [0, 65535], "chance thou art return'd so soone e dro": [0, 65535], "thou art return'd so soone e dro return'd": [0, 65535], "art return'd so soone e dro return'd so": [0, 65535], "return'd so soone e dro return'd so soone": [0, 65535], "so soone e dro return'd so soone rather": [0, 65535], "soone e dro return'd so soone rather approacht": [0, 65535], "e dro return'd so soone rather approacht too": [0, 65535], "dro return'd so soone rather approacht too late": [0, 65535], "return'd so soone rather approacht too late the": [0, 65535], "so soone rather approacht too late the capon": [0, 65535], "soone rather approacht too late the capon burnes": [0, 65535], "rather approacht too late the capon burnes the": [0, 65535], "approacht too late the capon burnes the pig": [0, 65535], "too late the capon burnes the pig fals": [0, 65535], "late the capon burnes the pig fals from": [0, 65535], "the capon burnes the pig fals from the": [0, 65535], "capon burnes the pig fals from the spit": [0, 65535], "burnes the pig fals from the spit the": [0, 65535], "the pig fals from the spit the clocke": [0, 65535], "pig fals from the spit the clocke hath": [0, 65535], "fals from the spit the clocke hath strucken": [0, 65535], "from the spit the clocke hath strucken twelue": [0, 65535], "the spit the clocke hath strucken twelue vpon": [0, 65535], "spit the clocke hath strucken twelue vpon the": [0, 65535], "the clocke hath strucken twelue vpon the bell": [0, 65535], "clocke hath strucken twelue vpon the bell my": [0, 65535], "hath strucken twelue vpon the bell my mistris": [0, 65535], "strucken twelue vpon the bell my mistris made": [0, 65535], "twelue vpon the bell my mistris made it": [0, 65535], "vpon the bell my mistris made it one": [0, 65535], "the bell my mistris made it one vpon": [0, 65535], "bell my mistris made it one vpon my": [0, 65535], "my mistris made it one vpon my cheeke": [0, 65535], "mistris made it one vpon my cheeke she": [0, 65535], "made it one vpon my cheeke she is": [0, 65535], "it one vpon my cheeke she is so": [0, 65535], "one vpon my cheeke she is so hot": [0, 65535], "vpon my cheeke she is so hot because": [0, 65535], "my cheeke she is so hot because the": [0, 65535], "cheeke she is so hot because the meate": [0, 65535], "she is so hot because the meate is": [0, 65535], "is so hot because the meate is colde": [0, 65535], "so hot because the meate is colde the": [0, 65535], "hot because the meate is colde the meate": [0, 65535], "because the meate is colde the meate is": [0, 65535], "the meate is colde the meate is colde": [0, 65535], "meate is colde the meate is colde because": [0, 65535], "is colde the meate is colde because you": [0, 65535], "colde the meate is colde because you come": [0, 65535], "the meate is colde because you come not": [0, 65535], "meate is colde because you come not home": [0, 65535], "is colde because you come not home you": [0, 65535], "colde because you come not home you come": [0, 65535], "because you come not home you come not": [0, 65535], "you come not home you come not home": [0, 65535], "come not home you come not home because": [0, 65535], "not home you come not home because you": [0, 65535], "home you come not home because you haue": [0, 65535], "you come not home because you haue no": [0, 65535], "come not home because you haue no stomacke": [0, 65535], "not home because you haue no stomacke you": [0, 65535], "home because you haue no stomacke you haue": [0, 65535], "because you haue no stomacke you haue no": [0, 65535], "you haue no stomacke you haue no stomacke": [0, 65535], "haue no stomacke you haue no stomacke hauing": [0, 65535], "no stomacke you haue no stomacke hauing broke": [0, 65535], "stomacke you haue no stomacke hauing broke your": [0, 65535], "you haue no stomacke hauing broke your fast": [0, 65535], "haue no stomacke hauing broke your fast but": [0, 65535], "no stomacke hauing broke your fast but we": [0, 65535], "stomacke hauing broke your fast but we that": [0, 65535], "hauing broke your fast but we that know": [0, 65535], "broke your fast but we that know what": [0, 65535], "your fast but we that know what 'tis": [0, 65535], "fast but we that know what 'tis to": [0, 65535], "but we that know what 'tis to fast": [0, 65535], "we that know what 'tis to fast and": [0, 65535], "that know what 'tis to fast and pray": [0, 65535], "know what 'tis to fast and pray are": [0, 65535], "what 'tis to fast and pray are penitent": [0, 65535], "'tis to fast and pray are penitent for": [0, 65535], "to fast and pray are penitent for your": [0, 65535], "fast and pray are penitent for your default": [0, 65535], "and pray are penitent for your default to": [0, 65535], "pray are penitent for your default to day": [0, 65535], "are penitent for your default to day ant": [0, 65535], "penitent for your default to day ant stop": [0, 65535], "for your default to day ant stop in": [0, 65535], "your default to day ant stop in your": [0, 65535], "default to day ant stop in your winde": [0, 65535], "to day ant stop in your winde sir": [0, 65535], "day ant stop in your winde sir tell": [0, 65535], "ant stop in your winde sir tell me": [0, 65535], "stop in your winde sir tell me this": [0, 65535], "in your winde sir tell me this i": [0, 65535], "your winde sir tell me this i pray": [0, 65535], "winde sir tell me this i pray where": [0, 65535], "sir tell me this i pray where haue": [0, 65535], "tell me this i pray where haue you": [0, 65535], "me this i pray where haue you left": [0, 65535], "this i pray where haue you left the": [0, 65535], "i pray where haue you left the mony": [0, 65535], "pray where haue you left the mony that": [0, 65535], "where haue you left the mony that i": [0, 65535], "haue you left the mony that i gaue": [0, 65535], "you left the mony that i gaue you": [0, 65535], "left the mony that i gaue you e": [0, 65535], "the mony that i gaue you e dro": [0, 65535], "mony that i gaue you e dro oh": [0, 65535], "that i gaue you e dro oh sixe": [0, 65535], "i gaue you e dro oh sixe pence": [0, 65535], "gaue you e dro oh sixe pence that": [0, 65535], "you e dro oh sixe pence that i": [0, 65535], "e dro oh sixe pence that i had": [0, 65535], "dro oh sixe pence that i had a": [0, 65535], "oh sixe pence that i had a wensday": [0, 65535], "sixe pence that i had a wensday last": [0, 65535], "pence that i had a wensday last to": [0, 65535], "that i had a wensday last to pay": [0, 65535], "i had a wensday last to pay the": [0, 65535], "had a wensday last to pay the sadler": [0, 65535], "a wensday last to pay the sadler for": [0, 65535], "wensday last to pay the sadler for my": [0, 65535], "last to pay the sadler for my mistris": [0, 65535], "to pay the sadler for my mistris crupper": [0, 65535], "pay the sadler for my mistris crupper the": [0, 65535], "the sadler for my mistris crupper the sadler": [0, 65535], "sadler for my mistris crupper the sadler had": [0, 65535], "for my mistris crupper the sadler had it": [0, 65535], "my mistris crupper the sadler had it sir": [0, 65535], "mistris crupper the sadler had it sir i": [0, 65535], "crupper the sadler had it sir i kept": [0, 65535], "the sadler had it sir i kept it": [0, 65535], "sadler had it sir i kept it not": [0, 65535], "had it sir i kept it not ant": [0, 65535], "it sir i kept it not ant i": [0, 65535], "sir i kept it not ant i am": [0, 65535], "i kept it not ant i am not": [0, 65535], "kept it not ant i am not in": [0, 65535], "it not ant i am not in a": [0, 65535], "not ant i am not in a sportiue": [0, 65535], "ant i am not in a sportiue humor": [0, 65535], "i am not in a sportiue humor now": [0, 65535], "am not in a sportiue humor now tell": [0, 65535], "not in a sportiue humor now tell me": [0, 65535], "in a sportiue humor now tell me and": [0, 65535], "a sportiue humor now tell me and dally": [0, 65535], "sportiue humor now tell me and dally not": [0, 65535], "humor now tell me and dally not where": [0, 65535], "now tell me and dally not where is": [0, 65535], "tell me and dally not where is the": [0, 65535], "me and dally not where is the monie": [0, 65535], "and dally not where is the monie we": [0, 65535], "dally not where is the monie we being": [0, 65535], "not where is the monie we being strangers": [0, 65535], "where is the monie we being strangers here": [0, 65535], "is the monie we being strangers here how": [0, 65535], "the monie we being strangers here how dar'st": [0, 65535], "monie we being strangers here how dar'st thou": [0, 65535], "we being strangers here how dar'st thou trust": [0, 65535], "being strangers here how dar'st thou trust so": [0, 65535], "strangers here how dar'st thou trust so great": [0, 65535], "here how dar'st thou trust so great a": [0, 65535], "how dar'st thou trust so great a charge": [0, 65535], "dar'st thou trust so great a charge from": [0, 65535], "thou trust so great a charge from thine": [0, 65535], "trust so great a charge from thine owne": [0, 65535], "so great a charge from thine owne custodie": [0, 65535], "great a charge from thine owne custodie e": [0, 65535], "a charge from thine owne custodie e dro": [0, 65535], "charge from thine owne custodie e dro i": [0, 65535], "from thine owne custodie e dro i pray": [0, 65535], "thine owne custodie e dro i pray you": [0, 65535], "owne custodie e dro i pray you iest": [0, 65535], "custodie e dro i pray you iest sir": [0, 65535], "e dro i pray you iest sir as": [0, 65535], "dro i pray you iest sir as you": [0, 65535], "i pray you iest sir as you sit": [0, 65535], "pray you iest sir as you sit at": [0, 65535], "you iest sir as you sit at dinner": [0, 65535], "iest sir as you sit at dinner i": [0, 65535], "sir as you sit at dinner i from": [0, 65535], "as you sit at dinner i from my": [0, 65535], "you sit at dinner i from my mistris": [0, 65535], "sit at dinner i from my mistris come": [0, 65535], "at dinner i from my mistris come to": [0, 65535], "dinner i from my mistris come to you": [0, 65535], "i from my mistris come to you in": [0, 65535], "from my mistris come to you in post": [0, 65535], "my mistris come to you in post if": [0, 65535], "mistris come to you in post if i": [0, 65535], "come to you in post if i returne": [0, 65535], "to you in post if i returne i": [0, 65535], "you in post if i returne i shall": [0, 65535], "in post if i returne i shall be": [0, 65535], "post if i returne i shall be post": [0, 65535], "if i returne i shall be post indeede": [0, 65535], "i returne i shall be post indeede for": [0, 65535], "returne i shall be post indeede for she": [0, 65535], "i shall be post indeede for she will": [0, 65535], "shall be post indeede for she will scoure": [0, 65535], "be post indeede for she will scoure your": [0, 65535], "post indeede for she will scoure your fault": [0, 65535], "indeede for she will scoure your fault vpon": [0, 65535], "for she will scoure your fault vpon my": [0, 65535], "she will scoure your fault vpon my pate": [0, 65535], "will scoure your fault vpon my pate me": [0, 65535], "scoure your fault vpon my pate me thinkes": [0, 65535], "your fault vpon my pate me thinkes your": [0, 65535], "fault vpon my pate me thinkes your maw": [0, 65535], "vpon my pate me thinkes your maw like": [0, 65535], "my pate me thinkes your maw like mine": [0, 65535], "pate me thinkes your maw like mine should": [0, 65535], "me thinkes your maw like mine should be": [0, 65535], "thinkes your maw like mine should be your": [0, 65535], "your maw like mine should be your cooke": [0, 65535], "maw like mine should be your cooke and": [0, 65535], "like mine should be your cooke and strike": [0, 65535], "mine should be your cooke and strike you": [0, 65535], "should be your cooke and strike you home": [0, 65535], "be your cooke and strike you home without": [0, 65535], "your cooke and strike you home without a": [0, 65535], "cooke and strike you home without a messenger": [0, 65535], "and strike you home without a messenger ant": [0, 65535], "strike you home without a messenger ant come": [0, 65535], "you home without a messenger ant come dromio": [0, 65535], "home without a messenger ant come dromio come": [0, 65535], "without a messenger ant come dromio come these": [0, 65535], "a messenger ant come dromio come these iests": [0, 65535], "messenger ant come dromio come these iests are": [0, 65535], "ant come dromio come these iests are out": [0, 65535], "come dromio come these iests are out of": [0, 65535], "dromio come these iests are out of season": [0, 65535], "come these iests are out of season reserue": [0, 65535], "these iests are out of season reserue them": [0, 65535], "iests are out of season reserue them till": [0, 65535], "are out of season reserue them till a": [0, 65535], "out of season reserue them till a merrier": [0, 65535], "of season reserue them till a merrier houre": [0, 65535], "season reserue them till a merrier houre then": [0, 65535], "reserue them till a merrier houre then this": [0, 65535], "them till a merrier houre then this where": [0, 65535], "till a merrier houre then this where is": [0, 65535], "a merrier houre then this where is the": [0, 65535], "merrier houre then this where is the gold": [0, 65535], "houre then this where is the gold i": [0, 65535], "then this where is the gold i gaue": [0, 65535], "this where is the gold i gaue in": [0, 65535], "where is the gold i gaue in charge": [0, 65535], "is the gold i gaue in charge to": [0, 65535], "the gold i gaue in charge to thee": [0, 65535], "gold i gaue in charge to thee e": [0, 65535], "i gaue in charge to thee e dro": [0, 65535], "gaue in charge to thee e dro to": [0, 65535], "in charge to thee e dro to me": [0, 65535], "charge to thee e dro to me sir": [0, 65535], "to thee e dro to me sir why": [0, 65535], "thee e dro to me sir why you": [0, 65535], "e dro to me sir why you gaue": [0, 65535], "dro to me sir why you gaue no": [0, 65535], "to me sir why you gaue no gold": [0, 65535], "me sir why you gaue no gold to": [0, 65535], "sir why you gaue no gold to me": [0, 65535], "why you gaue no gold to me ant": [0, 65535], "you gaue no gold to me ant come": [0, 65535], "gaue no gold to me ant come on": [0, 65535], "no gold to me ant come on sir": [0, 65535], "gold to me ant come on sir knaue": [0, 65535], "to me ant come on sir knaue haue": [0, 65535], "me ant come on sir knaue haue done": [0, 65535], "ant come on sir knaue haue done your": [0, 65535], "come on sir knaue haue done your foolishnes": [0, 65535], "on sir knaue haue done your foolishnes and": [0, 65535], "sir knaue haue done your foolishnes and tell": [0, 65535], "knaue haue done your foolishnes and tell me": [0, 65535], "haue done your foolishnes and tell me how": [0, 65535], "done your foolishnes and tell me how thou": [0, 65535], "your foolishnes and tell me how thou hast": [0, 65535], "foolishnes and tell me how thou hast dispos'd": [0, 65535], "and tell me how thou hast dispos'd thy": [0, 65535], "tell me how thou hast dispos'd thy charge": [0, 65535], "me how thou hast dispos'd thy charge e": [0, 65535], "how thou hast dispos'd thy charge e dro": [0, 65535], "thou hast dispos'd thy charge e dro my": [0, 65535], "hast dispos'd thy charge e dro my charge": [0, 65535], "dispos'd thy charge e dro my charge was": [0, 65535], "thy charge e dro my charge was but": [0, 65535], "charge e dro my charge was but to": [0, 65535], "e dro my charge was but to fetch": [0, 65535], "dro my charge was but to fetch you": [0, 65535], "my charge was but to fetch you from": [0, 65535], "charge was but to fetch you from the": [0, 65535], "was but to fetch you from the mart": [0, 65535], "but to fetch you from the mart home": [0, 65535], "to fetch you from the mart home to": [0, 65535], "fetch you from the mart home to your": [0, 65535], "you from the mart home to your house": [0, 65535], "from the mart home to your house the": [0, 65535], "the mart home to your house the ph\u0153nix": [0, 65535], "mart home to your house the ph\u0153nix sir": [0, 65535], "home to your house the ph\u0153nix sir to": [0, 65535], "to your house the ph\u0153nix sir to dinner": [0, 65535], "your house the ph\u0153nix sir to dinner my": [0, 65535], "house the ph\u0153nix sir to dinner my mistris": [0, 65535], "the ph\u0153nix sir to dinner my mistris and": [0, 65535], "ph\u0153nix sir to dinner my mistris and her": [0, 65535], "sir to dinner my mistris and her sister": [0, 65535], "to dinner my mistris and her sister staies": [0, 65535], "dinner my mistris and her sister staies for": [0, 65535], "my mistris and her sister staies for you": [0, 65535], "mistris and her sister staies for you ant": [0, 65535], "and her sister staies for you ant now": [0, 65535], "her sister staies for you ant now as": [0, 65535], "sister staies for you ant now as i": [0, 65535], "staies for you ant now as i am": [0, 65535], "for you ant now as i am a": [0, 65535], "you ant now as i am a christian": [0, 65535], "ant now as i am a christian answer": [0, 65535], "now as i am a christian answer me": [0, 65535], "as i am a christian answer me in": [0, 65535], "i am a christian answer me in what": [0, 65535], "am a christian answer me in what safe": [0, 65535], "a christian answer me in what safe place": [0, 65535], "christian answer me in what safe place you": [0, 65535], "answer me in what safe place you haue": [0, 65535], "me in what safe place you haue bestow'd": [0, 65535], "in what safe place you haue bestow'd my": [0, 65535], "what safe place you haue bestow'd my monie": [0, 65535], "safe place you haue bestow'd my monie or": [0, 65535], "place you haue bestow'd my monie or i": [0, 65535], "you haue bestow'd my monie or i shall": [0, 65535], "haue bestow'd my monie or i shall breake": [0, 65535], "bestow'd my monie or i shall breake that": [0, 65535], "my monie or i shall breake that merrie": [0, 65535], "monie or i shall breake that merrie sconce": [0, 65535], "or i shall breake that merrie sconce of": [0, 65535], "i shall breake that merrie sconce of yours": [0, 65535], "shall breake that merrie sconce of yours that": [0, 65535], "breake that merrie sconce of yours that stands": [0, 65535], "that merrie sconce of yours that stands on": [0, 65535], "merrie sconce of yours that stands on tricks": [0, 65535], "sconce of yours that stands on tricks when": [0, 65535], "of yours that stands on tricks when i": [0, 65535], "yours that stands on tricks when i am": [0, 65535], "that stands on tricks when i am vndispos'd": [0, 65535], "stands on tricks when i am vndispos'd where": [0, 65535], "on tricks when i am vndispos'd where is": [0, 65535], "tricks when i am vndispos'd where is the": [0, 65535], "when i am vndispos'd where is the thousand": [0, 65535], "i am vndispos'd where is the thousand markes": [0, 65535], "am vndispos'd where is the thousand markes thou": [0, 65535], "vndispos'd where is the thousand markes thou hadst": [0, 65535], "where is the thousand markes thou hadst of": [0, 65535], "is the thousand markes thou hadst of me": [0, 65535], "the thousand markes thou hadst of me e": [0, 65535], "thousand markes thou hadst of me e dro": [0, 65535], "markes thou hadst of me e dro i": [0, 65535], "thou hadst of me e dro i haue": [0, 65535], "hadst of me e dro i haue some": [0, 65535], "of me e dro i haue some markes": [0, 65535], "me e dro i haue some markes of": [0, 65535], "e dro i haue some markes of yours": [0, 65535], "dro i haue some markes of yours vpon": [0, 65535], "i haue some markes of yours vpon my": [0, 65535], "haue some markes of yours vpon my pate": [0, 65535], "some markes of yours vpon my pate some": [0, 65535], "markes of yours vpon my pate some of": [0, 65535], "of yours vpon my pate some of my": [0, 65535], "yours vpon my pate some of my mistris": [0, 65535], "vpon my pate some of my mistris markes": [0, 65535], "my pate some of my mistris markes vpon": [0, 65535], "pate some of my mistris markes vpon my": [0, 65535], "some of my mistris markes vpon my shoulders": [0, 65535], "of my mistris markes vpon my shoulders but": [0, 65535], "my mistris markes vpon my shoulders but not": [0, 65535], "mistris markes vpon my shoulders but not a": [0, 65535], "markes vpon my shoulders but not a thousand": [0, 65535], "vpon my shoulders but not a thousand markes": [0, 65535], "my shoulders but not a thousand markes betweene": [0, 65535], "shoulders but not a thousand markes betweene you": [0, 65535], "but not a thousand markes betweene you both": [0, 65535], "not a thousand markes betweene you both if": [0, 65535], "a thousand markes betweene you both if i": [0, 65535], "thousand markes betweene you both if i should": [0, 65535], "markes betweene you both if i should pay": [0, 65535], "betweene you both if i should pay your": [0, 65535], "you both if i should pay your worship": [0, 65535], "both if i should pay your worship those": [0, 65535], "if i should pay your worship those againe": [0, 65535], "i should pay your worship those againe perchance": [0, 65535], "should pay your worship those againe perchance you": [0, 65535], "pay your worship those againe perchance you will": [0, 65535], "your worship those againe perchance you will not": [0, 65535], "worship those againe perchance you will not beare": [0, 65535], "those againe perchance you will not beare them": [0, 65535], "againe perchance you will not beare them patiently": [0, 65535], "perchance you will not beare them patiently ant": [0, 65535], "you will not beare them patiently ant thy": [0, 65535], "will not beare them patiently ant thy mistris": [0, 65535], "not beare them patiently ant thy mistris markes": [0, 65535], "beare them patiently ant thy mistris markes what": [0, 65535], "them patiently ant thy mistris markes what mistris": [0, 65535], "patiently ant thy mistris markes what mistris slaue": [0, 65535], "ant thy mistris markes what mistris slaue hast": [0, 65535], "thy mistris markes what mistris slaue hast thou": [0, 65535], "mistris markes what mistris slaue hast thou e": [0, 65535], "markes what mistris slaue hast thou e dro": [0, 65535], "what mistris slaue hast thou e dro your": [0, 65535], "mistris slaue hast thou e dro your worships": [0, 65535], "slaue hast thou e dro your worships wife": [0, 65535], "hast thou e dro your worships wife my": [0, 65535], "thou e dro your worships wife my mistris": [0, 65535], "e dro your worships wife my mistris at": [0, 65535], "dro your worships wife my mistris at the": [0, 65535], "your worships wife my mistris at the ph\u0153nix": [0, 65535], "worships wife my mistris at the ph\u0153nix she": [0, 65535], "wife my mistris at the ph\u0153nix she that": [0, 65535], "my mistris at the ph\u0153nix she that doth": [0, 65535], "mistris at the ph\u0153nix she that doth fast": [0, 65535], "at the ph\u0153nix she that doth fast till": [0, 65535], "the ph\u0153nix she that doth fast till you": [0, 65535], "ph\u0153nix she that doth fast till you come": [0, 65535], "she that doth fast till you come home": [0, 65535], "that doth fast till you come home to": [0, 65535], "doth fast till you come home to dinner": [0, 65535], "fast till you come home to dinner and": [0, 65535], "till you come home to dinner and praies": [0, 65535], "you come home to dinner and praies that": [0, 65535], "come home to dinner and praies that you": [0, 65535], "home to dinner and praies that you will": [0, 65535], "to dinner and praies that you will hie": [0, 65535], "dinner and praies that you will hie you": [0, 65535], "and praies that you will hie you home": [0, 65535], "praies that you will hie you home to": [0, 65535], "that you will hie you home to dinner": [0, 65535], "you will hie you home to dinner ant": [0, 65535], "will hie you home to dinner ant what": [0, 65535], "hie you home to dinner ant what wilt": [0, 65535], "you home to dinner ant what wilt thou": [0, 65535], "home to dinner ant what wilt thou flout": [0, 65535], "to dinner ant what wilt thou flout me": [0, 65535], "dinner ant what wilt thou flout me thus": [0, 65535], "ant what wilt thou flout me thus vnto": [0, 65535], "what wilt thou flout me thus vnto my": [0, 65535], "wilt thou flout me thus vnto my face": [0, 65535], "thou flout me thus vnto my face being": [0, 65535], "flout me thus vnto my face being forbid": [0, 65535], "me thus vnto my face being forbid there": [0, 65535], "thus vnto my face being forbid there take": [0, 65535], "vnto my face being forbid there take you": [0, 65535], "my face being forbid there take you that": [0, 65535], "face being forbid there take you that sir": [0, 65535], "being forbid there take you that sir knaue": [0, 65535], "forbid there take you that sir knaue e": [0, 65535], "there take you that sir knaue e dro": [0, 65535], "take you that sir knaue e dro what": [0, 65535], "you that sir knaue e dro what meane": [0, 65535], "that sir knaue e dro what meane you": [0, 65535], "sir knaue e dro what meane you sir": [0, 65535], "knaue e dro what meane you sir for": [0, 65535], "e dro what meane you sir for god": [0, 65535], "dro what meane you sir for god sake": [0, 65535], "what meane you sir for god sake hold": [0, 65535], "meane you sir for god sake hold your": [0, 65535], "you sir for god sake hold your hands": [0, 65535], "sir for god sake hold your hands nay": [0, 65535], "for god sake hold your hands nay and": [0, 65535], "god sake hold your hands nay and you": [0, 65535], "sake hold your hands nay and you will": [0, 65535], "hold your hands nay and you will not": [0, 65535], "your hands nay and you will not sir": [0, 65535], "hands nay and you will not sir ile": [0, 65535], "nay and you will not sir ile take": [0, 65535], "and you will not sir ile take my": [0, 65535], "you will not sir ile take my heeles": [0, 65535], "will not sir ile take my heeles exeunt": [0, 65535], "not sir ile take my heeles exeunt dromio": [0, 65535], "sir ile take my heeles exeunt dromio ep": [0, 65535], "ile take my heeles exeunt dromio ep ant": [0, 65535], "take my heeles exeunt dromio ep ant vpon": [0, 65535], "my heeles exeunt dromio ep ant vpon my": [0, 65535], "heeles exeunt dromio ep ant vpon my life": [0, 65535], "exeunt dromio ep ant vpon my life by": [0, 65535], "dromio ep ant vpon my life by some": [0, 65535], "ep ant vpon my life by some deuise": [0, 65535], "ant vpon my life by some deuise or": [0, 65535], "vpon my life by some deuise or other": [0, 65535], "my life by some deuise or other the": [0, 65535], "life by some deuise or other the villaine": [0, 65535], "by some deuise or other the villaine is": [0, 65535], "some deuise or other the villaine is ore": [0, 65535], "deuise or other the villaine is ore wrought": [0, 65535], "or other the villaine is ore wrought of": [0, 65535], "other the villaine is ore wrought of all": [0, 65535], "the villaine is ore wrought of all my": [0, 65535], "villaine is ore wrought of all my monie": [0, 65535], "is ore wrought of all my monie they": [0, 65535], "ore wrought of all my monie they say": [0, 65535], "wrought of all my monie they say this": [0, 65535], "of all my monie they say this towne": [0, 65535], "all my monie they say this towne is": [0, 65535], "my monie they say this towne is full": [0, 65535], "monie they say this towne is full of": [0, 65535], "they say this towne is full of cosenage": [0, 65535], "say this towne is full of cosenage as": [0, 65535], "this towne is full of cosenage as nimble": [0, 65535], "towne is full of cosenage as nimble iuglers": [0, 65535], "is full of cosenage as nimble iuglers that": [0, 65535], "full of cosenage as nimble iuglers that deceiue": [0, 65535], "of cosenage as nimble iuglers that deceiue the": [0, 65535], "cosenage as nimble iuglers that deceiue the eie": [0, 65535], "as nimble iuglers that deceiue the eie darke": [0, 65535], "nimble iuglers that deceiue the eie darke working": [0, 65535], "iuglers that deceiue the eie darke working sorcerers": [0, 65535], "that deceiue the eie darke working sorcerers that": [0, 65535], "deceiue the eie darke working sorcerers that change": [0, 65535], "the eie darke working sorcerers that change the": [0, 65535], "eie darke working sorcerers that change the minde": [0, 65535], "darke working sorcerers that change the minde soule": [0, 65535], "working sorcerers that change the minde soule killing": [0, 65535], "sorcerers that change the minde soule killing witches": [0, 65535], "that change the minde soule killing witches that": [0, 65535], "change the minde soule killing witches that deforme": [0, 65535], "the minde soule killing witches that deforme the": [0, 65535], "minde soule killing witches that deforme the bodie": [0, 65535], "soule killing witches that deforme the bodie disguised": [0, 65535], "killing witches that deforme the bodie disguised cheaters": [0, 65535], "witches that deforme the bodie disguised cheaters prating": [0, 65535], "that deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes and": [0, 65535], "the bodie disguised cheaters prating mountebankes and manie": [0, 65535], "bodie disguised cheaters prating mountebankes and manie such": [0, 65535], "disguised cheaters prating mountebankes and manie such like": [0, 65535], "cheaters prating mountebankes and manie such like liberties": [0, 65535], "prating mountebankes and manie such like liberties of": [0, 65535], "mountebankes and manie such like liberties of sinne": [0, 65535], "and manie such like liberties of sinne if": [0, 65535], "manie such like liberties of sinne if it": [0, 65535], "such like liberties of sinne if it proue": [0, 65535], "like liberties of sinne if it proue so": [0, 65535], "liberties of sinne if it proue so i": [0, 65535], "of sinne if it proue so i will": [0, 65535], "sinne if it proue so i will be": [0, 65535], "if it proue so i will be gone": [0, 65535], "it proue so i will be gone the": [0, 65535], "proue so i will be gone the sooner": [0, 65535], "so i will be gone the sooner ile": [0, 65535], "i will be gone the sooner ile to": [0, 65535], "will be gone the sooner ile to the": [0, 65535], "be gone the sooner ile to the centaur": [0, 65535], "gone the sooner ile to the centaur to": [0, 65535], "the sooner ile to the centaur to goe": [0, 65535], "sooner ile to the centaur to goe seeke": [0, 65535], "ile to the centaur to goe seeke this": [0, 65535], "to the centaur to goe seeke this slaue": [0, 65535], "the centaur to goe seeke this slaue i": [0, 65535], "centaur to goe seeke this slaue i greatly": [0, 65535], "to goe seeke this slaue i greatly feare": [0, 65535], "goe seeke this slaue i greatly feare my": [0, 65535], "seeke this slaue i greatly feare my monie": [0, 65535], "this slaue i greatly feare my monie is": [0, 65535], "slaue i greatly feare my monie is not": [0, 65535], "i greatly feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena prima enter": [0, 65535], "comedie of errors actus primus scena prima enter the": [0, 65535], "of errors actus primus scena prima enter the duke": [0, 65535], "errors actus primus scena prima enter the duke of": [0, 65535], "actus primus scena prima enter the duke of ephesus": [0, 65535], "primus scena prima enter the duke of ephesus with": [0, 65535], "scena prima enter the duke of ephesus with the": [0, 65535], "prima enter the duke of ephesus with the merchant": [0, 65535], "enter the duke of ephesus with the merchant of": [0, 65535], "the duke of ephesus with the merchant of siracusa": [0, 65535], "duke of ephesus with the merchant of siracusa iaylor": [0, 65535], "of ephesus with the merchant of siracusa iaylor and": [0, 65535], "ephesus with the merchant of siracusa iaylor and other": [0, 65535], "with the merchant of siracusa iaylor and other attendants": [0, 65535], "the merchant of siracusa iaylor and other attendants marchant": [0, 65535], "merchant of siracusa iaylor and other attendants marchant broceed": [0, 65535], "of siracusa iaylor and other attendants marchant broceed solinus": [0, 65535], "siracusa iaylor and other attendants marchant broceed solinus to": [0, 65535], "iaylor and other attendants marchant broceed solinus to procure": [0, 65535], "and other attendants marchant broceed solinus to procure my": [0, 65535], "other attendants marchant broceed solinus to procure my fall": [0, 65535], "attendants marchant broceed solinus to procure my fall and": [0, 65535], "marchant broceed solinus to procure my fall and by": [0, 65535], "broceed solinus to procure my fall and by the": [0, 65535], "solinus to procure my fall and by the doome": [0, 65535], "to procure my fall and by the doome of": [0, 65535], "procure my fall and by the doome of death": [0, 65535], "my fall and by the doome of death end": [0, 65535], "fall and by the doome of death end woes": [0, 65535], "and by the doome of death end woes and": [0, 65535], "by the doome of death end woes and all": [0, 65535], "the doome of death end woes and all duke": [0, 65535], "doome of death end woes and all duke merchant": [0, 65535], "of death end woes and all duke merchant of": [0, 65535], "death end woes and all duke merchant of siracusa": [0, 65535], "end woes and all duke merchant of siracusa plead": [0, 65535], "woes and all duke merchant of siracusa plead no": [0, 65535], "and all duke merchant of siracusa plead no more": [0, 65535], "all duke merchant of siracusa plead no more i": [0, 65535], "duke merchant of siracusa plead no more i am": [0, 65535], "merchant of siracusa plead no more i am not": [0, 65535], "of siracusa plead no more i am not partiall": [0, 65535], "siracusa plead no more i am not partiall to": [0, 65535], "plead no more i am not partiall to infringe": [0, 65535], "no more i am not partiall to infringe our": [0, 65535], "more i am not partiall to infringe our lawes": [0, 65535], "i am not partiall to infringe our lawes the": [0, 65535], "am not partiall to infringe our lawes the enmity": [0, 65535], "not partiall to infringe our lawes the enmity and": [0, 65535], "partiall to infringe our lawes the enmity and discord": [0, 65535], "to infringe our lawes the enmity and discord which": [0, 65535], "infringe our lawes the enmity and discord which of": [0, 65535], "our lawes the enmity and discord which of late": [0, 65535], "lawes the enmity and discord which of late sprung": [0, 65535], "the enmity and discord which of late sprung from": [0, 65535], "enmity and discord which of late sprung from the": [0, 65535], "and discord which of late sprung from the rancorous": [0, 65535], "discord which of late sprung from the rancorous outrage": [0, 65535], "which of late sprung from the rancorous outrage of": [0, 65535], "of late sprung from the rancorous outrage of your": [0, 65535], "late sprung from the rancorous outrage of your duke": [0, 65535], "sprung from the rancorous outrage of your duke to": [0, 65535], "from the rancorous outrage of your duke to merchants": [0, 65535], "the rancorous outrage of your duke to merchants our": [0, 65535], "rancorous outrage of your duke to merchants our well": [0, 65535], "outrage of your duke to merchants our well dealing": [0, 65535], "of your duke to merchants our well dealing countrimen": [0, 65535], "your duke to merchants our well dealing countrimen who": [0, 65535], "duke to merchants our well dealing countrimen who wanting": [0, 65535], "to merchants our well dealing countrimen who wanting gilders": [0, 65535], "merchants our well dealing countrimen who wanting gilders to": [0, 65535], "our well dealing countrimen who wanting gilders to redeeme": [0, 65535], "well dealing countrimen who wanting gilders to redeeme their": [0, 65535], "dealing countrimen who wanting gilders to redeeme their liues": [0, 65535], "countrimen who wanting gilders to redeeme their liues haue": [0, 65535], "who wanting gilders to redeeme their liues haue seal'd": [0, 65535], "wanting gilders to redeeme their liues haue seal'd his": [0, 65535], "gilders to redeeme their liues haue seal'd his rigorous": [0, 65535], "to redeeme their liues haue seal'd his rigorous statutes": [0, 65535], "redeeme their liues haue seal'd his rigorous statutes with": [0, 65535], "their liues haue seal'd his rigorous statutes with their": [0, 65535], "liues haue seal'd his rigorous statutes with their blouds": [0, 65535], "haue seal'd his rigorous statutes with their blouds excludes": [0, 65535], "seal'd his rigorous statutes with their blouds excludes all": [0, 65535], "his rigorous statutes with their blouds excludes all pitty": [0, 65535], "rigorous statutes with their blouds excludes all pitty from": [0, 65535], "statutes with their blouds excludes all pitty from our": [0, 65535], "with their blouds excludes all pitty from our threatning": [0, 65535], "their blouds excludes all pitty from our threatning lookes": [0, 65535], "blouds excludes all pitty from our threatning lookes for": [0, 65535], "excludes all pitty from our threatning lookes for since": [0, 65535], "all pitty from our threatning lookes for since the": [0, 65535], "pitty from our threatning lookes for since the mortall": [0, 65535], "from our threatning lookes for since the mortall and": [0, 65535], "our threatning lookes for since the mortall and intestine": [0, 65535], "threatning lookes for since the mortall and intestine iarres": [0, 65535], "lookes for since the mortall and intestine iarres twixt": [0, 65535], "for since the mortall and intestine iarres twixt thy": [0, 65535], "since the mortall and intestine iarres twixt thy seditious": [0, 65535], "the mortall and intestine iarres twixt thy seditious countrimen": [0, 65535], "mortall and intestine iarres twixt thy seditious countrimen and": [0, 65535], "and intestine iarres twixt thy seditious countrimen and vs": [0, 65535], "intestine iarres twixt thy seditious countrimen and vs it": [0, 65535], "iarres twixt thy seditious countrimen and vs it hath": [0, 65535], "twixt thy seditious countrimen and vs it hath in": [0, 65535], "thy seditious countrimen and vs it hath in solemne": [0, 65535], "seditious countrimen and vs it hath in solemne synodes": [0, 65535], "countrimen and vs it hath in solemne synodes beene": [0, 65535], "and vs it hath in solemne synodes beene decreed": [0, 65535], "vs it hath in solemne synodes beene decreed both": [0, 65535], "it hath in solemne synodes beene decreed both by": [0, 65535], "hath in solemne synodes beene decreed both by the": [0, 65535], "in solemne synodes beene decreed both by the siracusians": [0, 65535], "solemne synodes beene decreed both by the siracusians and": [0, 65535], "synodes beene decreed both by the siracusians and our": [0, 65535], "beene decreed both by the siracusians and our selues": [0, 65535], "decreed both by the siracusians and our selues to": [0, 65535], "both by the siracusians and our selues to admit": [0, 65535], "by the siracusians and our selues to admit no": [0, 65535], "the siracusians and our selues to admit no trafficke": [0, 65535], "siracusians and our selues to admit no trafficke to": [0, 65535], "and our selues to admit no trafficke to our": [0, 65535], "our selues to admit no trafficke to our aduerse": [0, 65535], "selues to admit no trafficke to our aduerse townes": [0, 65535], "to admit no trafficke to our aduerse townes nay": [0, 65535], "admit no trafficke to our aduerse townes nay more": [0, 65535], "no trafficke to our aduerse townes nay more if": [0, 65535], "trafficke to our aduerse townes nay more if any": [0, 65535], "to our aduerse townes nay more if any borne": [0, 65535], "our aduerse townes nay more if any borne at": [0, 65535], "aduerse townes nay more if any borne at ephesus": [0, 65535], "townes nay more if any borne at ephesus be": [0, 65535], "nay more if any borne at ephesus be seene": [0, 65535], "more if any borne at ephesus be seene at": [0, 65535], "if any borne at ephesus be seene at any": [0, 65535], "any borne at ephesus be seene at any siracusian": [0, 65535], "borne at ephesus be seene at any siracusian marts": [0, 65535], "at ephesus be seene at any siracusian marts and": [0, 65535], "ephesus be seene at any siracusian marts and fayres": [0, 65535], "be seene at any siracusian marts and fayres againe": [0, 65535], "seene at any siracusian marts and fayres againe if": [0, 65535], "at any siracusian marts and fayres againe if any": [0, 65535], "any siracusian marts and fayres againe if any siracusian": [0, 65535], "siracusian marts and fayres againe if any siracusian borne": [0, 65535], "marts and fayres againe if any siracusian borne come": [0, 65535], "and fayres againe if any siracusian borne come to": [0, 65535], "fayres againe if any siracusian borne come to the": [0, 65535], "againe if any siracusian borne come to the bay": [0, 65535], "if any siracusian borne come to the bay of": [0, 65535], "any siracusian borne come to the bay of ephesus": [0, 65535], "siracusian borne come to the bay of ephesus he": [0, 65535], "borne come to the bay of ephesus he dies": [0, 65535], "come to the bay of ephesus he dies his": [0, 65535], "to the bay of ephesus he dies his goods": [0, 65535], "the bay of ephesus he dies his goods confiscate": [0, 65535], "bay of ephesus he dies his goods confiscate to": [0, 65535], "of ephesus he dies his goods confiscate to the": [0, 65535], "ephesus he dies his goods confiscate to the dukes": [0, 65535], "he dies his goods confiscate to the dukes dispose": [0, 65535], "dies his goods confiscate to the dukes dispose vnlesse": [0, 65535], "his goods confiscate to the dukes dispose vnlesse a": [0, 65535], "goods confiscate to the dukes dispose vnlesse a thousand": [0, 65535], "confiscate to the dukes dispose vnlesse a thousand markes": [0, 65535], "to the dukes dispose vnlesse a thousand markes be": [0, 65535], "the dukes dispose vnlesse a thousand markes be leuied": [0, 65535], "dukes dispose vnlesse a thousand markes be leuied to": [0, 65535], "dispose vnlesse a thousand markes be leuied to quit": [0, 65535], "vnlesse a thousand markes be leuied to quit the": [0, 65535], "a thousand markes be leuied to quit the penalty": [0, 65535], "thousand markes be leuied to quit the penalty and": [0, 65535], "markes be leuied to quit the penalty and to": [0, 65535], "be leuied to quit the penalty and to ransome": [0, 65535], "leuied to quit the penalty and to ransome him": [0, 65535], "to quit the penalty and to ransome him thy": [0, 65535], "quit the penalty and to ransome him thy substance": [0, 65535], "the penalty and to ransome him thy substance valued": [0, 65535], "penalty and to ransome him thy substance valued at": [0, 65535], "and to ransome him thy substance valued at the": [0, 65535], "to ransome him thy substance valued at the highest": [0, 65535], "ransome him thy substance valued at the highest rate": [0, 65535], "him thy substance valued at the highest rate cannot": [0, 65535], "thy substance valued at the highest rate cannot amount": [0, 65535], "substance valued at the highest rate cannot amount vnto": [0, 65535], "valued at the highest rate cannot amount vnto a": [0, 65535], "at the highest rate cannot amount vnto a hundred": [0, 65535], "the highest rate cannot amount vnto a hundred markes": [0, 65535], "highest rate cannot amount vnto a hundred markes therefore": [0, 65535], "rate cannot amount vnto a hundred markes therefore by": [0, 65535], "cannot amount vnto a hundred markes therefore by law": [0, 65535], "amount vnto a hundred markes therefore by law thou": [0, 65535], "vnto a hundred markes therefore by law thou art": [0, 65535], "a hundred markes therefore by law thou art condemn'd": [0, 65535], "hundred markes therefore by law thou art condemn'd to": [0, 65535], "markes therefore by law thou art condemn'd to die": [0, 65535], "therefore by law thou art condemn'd to die mer": [0, 65535], "by law thou art condemn'd to die mer yet": [0, 65535], "law thou art condemn'd to die mer yet this": [0, 65535], "thou art condemn'd to die mer yet this my": [0, 65535], "art condemn'd to die mer yet this my comfort": [0, 65535], "condemn'd to die mer yet this my comfort when": [0, 65535], "to die mer yet this my comfort when your": [0, 65535], "die mer yet this my comfort when your words": [0, 65535], "mer yet this my comfort when your words are": [0, 65535], "yet this my comfort when your words are done": [0, 65535], "this my comfort when your words are done my": [0, 65535], "my comfort when your words are done my woes": [0, 65535], "comfort when your words are done my woes end": [0, 65535], "when your words are done my woes end likewise": [0, 65535], "your words are done my woes end likewise with": [0, 65535], "words are done my woes end likewise with the": [0, 65535], "are done my woes end likewise with the euening": [0, 65535], "done my woes end likewise with the euening sonne": [0, 65535], "my woes end likewise with the euening sonne duk": [0, 65535], "woes end likewise with the euening sonne duk well": [0, 65535], "end likewise with the euening sonne duk well siracusian": [0, 65535], "likewise with the euening sonne duk well siracusian say": [0, 65535], "with the euening sonne duk well siracusian say in": [0, 65535], "the euening sonne duk well siracusian say in briefe": [0, 65535], "euening sonne duk well siracusian say in briefe the": [0, 65535], "sonne duk well siracusian say in briefe the cause": [0, 65535], "duk well siracusian say in briefe the cause why": [0, 65535], "well siracusian say in briefe the cause why thou": [0, 65535], "siracusian say in briefe the cause why thou departedst": [0, 65535], "say in briefe the cause why thou departedst from": [0, 65535], "in briefe the cause why thou departedst from thy": [0, 65535], "briefe the cause why thou departedst from thy natiue": [0, 65535], "the cause why thou departedst from thy natiue home": [0, 65535], "cause why thou departedst from thy natiue home and": [0, 65535], "why thou departedst from thy natiue home and for": [0, 65535], "thou departedst from thy natiue home and for what": [0, 65535], "departedst from thy natiue home and for what cause": [0, 65535], "from thy natiue home and for what cause thou": [0, 65535], "thy natiue home and for what cause thou cam'st": [0, 65535], "natiue home and for what cause thou cam'st to": [0, 65535], "home and for what cause thou cam'st to ephesus": [0, 65535], "and for what cause thou cam'st to ephesus mer": [0, 65535], "for what cause thou cam'st to ephesus mer a": [0, 65535], "what cause thou cam'st to ephesus mer a heauier": [0, 65535], "cause thou cam'st to ephesus mer a heauier taske": [0, 65535], "thou cam'st to ephesus mer a heauier taske could": [0, 65535], "cam'st to ephesus mer a heauier taske could not": [0, 65535], "to ephesus mer a heauier taske could not haue": [0, 65535], "ephesus mer a heauier taske could not haue beene": [0, 65535], "mer a heauier taske could not haue beene impos'd": [0, 65535], "a heauier taske could not haue beene impos'd then": [0, 65535], "heauier taske could not haue beene impos'd then i": [0, 65535], "taske could not haue beene impos'd then i to": [0, 65535], "could not haue beene impos'd then i to speake": [0, 65535], "not haue beene impos'd then i to speake my": [0, 65535], "haue beene impos'd then i to speake my griefes": [0, 65535], "beene impos'd then i to speake my griefes vnspeakeable": [0, 65535], "impos'd then i to speake my griefes vnspeakeable yet": [0, 65535], "then i to speake my griefes vnspeakeable yet that": [0, 65535], "i to speake my griefes vnspeakeable yet that the": [0, 65535], "to speake my griefes vnspeakeable yet that the world": [0, 65535], "speake my griefes vnspeakeable yet that the world may": [0, 65535], "my griefes vnspeakeable yet that the world may witnesse": [0, 65535], "griefes vnspeakeable yet that the world may witnesse that": [0, 65535], "vnspeakeable yet that the world may witnesse that my": [0, 65535], "yet that the world may witnesse that my end": [0, 65535], "that the world may witnesse that my end was": [0, 65535], "the world may witnesse that my end was wrought": [0, 65535], "world may witnesse that my end was wrought by": [0, 65535], "may witnesse that my end was wrought by nature": [0, 65535], "witnesse that my end was wrought by nature not": [0, 65535], "that my end was wrought by nature not by": [0, 65535], "my end was wrought by nature not by vile": [0, 65535], "end was wrought by nature not by vile offence": [0, 65535], "was wrought by nature not by vile offence ile": [0, 65535], "wrought by nature not by vile offence ile vtter": [0, 65535], "by nature not by vile offence ile vtter what": [0, 65535], "nature not by vile offence ile vtter what my": [0, 65535], "not by vile offence ile vtter what my sorrow": [0, 65535], "by vile offence ile vtter what my sorrow giues": [0, 65535], "vile offence ile vtter what my sorrow giues me": [0, 65535], "offence ile vtter what my sorrow giues me leaue": [0, 65535], "ile vtter what my sorrow giues me leaue in": [0, 65535], "vtter what my sorrow giues me leaue in syracusa": [0, 65535], "what my sorrow giues me leaue in syracusa was": [0, 65535], "my sorrow giues me leaue in syracusa was i": [0, 65535], "sorrow giues me leaue in syracusa was i borne": [0, 65535], "giues me leaue in syracusa was i borne and": [0, 65535], "me leaue in syracusa was i borne and wedde": [0, 65535], "leaue in syracusa was i borne and wedde vnto": [0, 65535], "in syracusa was i borne and wedde vnto a": [0, 65535], "syracusa was i borne and wedde vnto a woman": [0, 65535], "was i borne and wedde vnto a woman happy": [0, 65535], "i borne and wedde vnto a woman happy but": [0, 65535], "borne and wedde vnto a woman happy but for": [0, 65535], "and wedde vnto a woman happy but for me": [0, 65535], "wedde vnto a woman happy but for me and": [0, 65535], "vnto a woman happy but for me and by": [0, 65535], "a woman happy but for me and by me": [0, 65535], "woman happy but for me and by me had": [0, 65535], "happy but for me and by me had not": [0, 65535], "but for me and by me had not our": [0, 65535], "for me and by me had not our hap": [0, 65535], "me and by me had not our hap beene": [0, 65535], "and by me had not our hap beene bad": [0, 65535], "by me had not our hap beene bad with": [0, 65535], "me had not our hap beene bad with her": [0, 65535], "had not our hap beene bad with her i": [0, 65535], "not our hap beene bad with her i liu'd": [0, 65535], "our hap beene bad with her i liu'd in": [0, 65535], "hap beene bad with her i liu'd in ioy": [0, 65535], "beene bad with her i liu'd in ioy our": [0, 65535], "bad with her i liu'd in ioy our wealth": [0, 65535], "with her i liu'd in ioy our wealth increast": [0, 65535], "her i liu'd in ioy our wealth increast by": [0, 65535], "i liu'd in ioy our wealth increast by prosperous": [0, 65535], "liu'd in ioy our wealth increast by prosperous voyages": [0, 65535], "in ioy our wealth increast by prosperous voyages i": [0, 65535], "ioy our wealth increast by prosperous voyages i often": [0, 65535], "our wealth increast by prosperous voyages i often made": [0, 65535], "wealth increast by prosperous voyages i often made to": [0, 65535], "increast by prosperous voyages i often made to epidamium": [0, 65535], "by prosperous voyages i often made to epidamium till": [0, 65535], "prosperous voyages i often made to epidamium till my": [0, 65535], "voyages i often made to epidamium till my factors": [0, 65535], "i often made to epidamium till my factors death": [0, 65535], "often made to epidamium till my factors death and": [0, 65535], "made to epidamium till my factors death and he": [0, 65535], "to epidamium till my factors death and he great": [0, 65535], "epidamium till my factors death and he great care": [0, 65535], "till my factors death and he great care of": [0, 65535], "my factors death and he great care of goods": [0, 65535], "factors death and he great care of goods at": [0, 65535], "death and he great care of goods at randone": [0, 65535], "and he great care of goods at randone left": [0, 65535], "he great care of goods at randone left drew": [0, 65535], "great care of goods at randone left drew me": [0, 65535], "care of goods at randone left drew me from": [0, 65535], "of goods at randone left drew me from kinde": [0, 65535], "goods at randone left drew me from kinde embracements": [0, 65535], "at randone left drew me from kinde embracements of": [0, 65535], "randone left drew me from kinde embracements of my": [0, 65535], "left drew me from kinde embracements of my spouse": [0, 65535], "drew me from kinde embracements of my spouse from": [0, 65535], "me from kinde embracements of my spouse from whom": [0, 65535], "from kinde embracements of my spouse from whom my": [0, 65535], "kinde embracements of my spouse from whom my absence": [0, 65535], "embracements of my spouse from whom my absence was": [0, 65535], "of my spouse from whom my absence was not": [0, 65535], "my spouse from whom my absence was not sixe": [0, 65535], "spouse from whom my absence was not sixe moneths": [0, 65535], "from whom my absence was not sixe moneths olde": [0, 65535], "whom my absence was not sixe moneths olde before": [0, 65535], "my absence was not sixe moneths olde before her": [0, 65535], "absence was not sixe moneths olde before her selfe": [0, 65535], "was not sixe moneths olde before her selfe almost": [0, 65535], "not sixe moneths olde before her selfe almost at": [0, 65535], "sixe moneths olde before her selfe almost at fainting": [0, 65535], "moneths olde before her selfe almost at fainting vnder": [0, 65535], "olde before her selfe almost at fainting vnder the": [0, 65535], "before her selfe almost at fainting vnder the pleasing": [0, 65535], "her selfe almost at fainting vnder the pleasing punishment": [0, 65535], "selfe almost at fainting vnder the pleasing punishment that": [0, 65535], "almost at fainting vnder the pleasing punishment that women": [0, 65535], "at fainting vnder the pleasing punishment that women beare": [0, 65535], "fainting vnder the pleasing punishment that women beare had": [0, 65535], "vnder the pleasing punishment that women beare had made": [0, 65535], "the pleasing punishment that women beare had made prouision": [0, 65535], "pleasing punishment that women beare had made prouision for": [0, 65535], "punishment that women beare had made prouision for her": [0, 65535], "that women beare had made prouision for her following": [0, 65535], "women beare had made prouision for her following me": [0, 65535], "beare had made prouision for her following me and": [0, 65535], "had made prouision for her following me and soone": [0, 65535], "made prouision for her following me and soone and": [0, 65535], "prouision for her following me and soone and safe": [0, 65535], "for her following me and soone and safe arriued": [0, 65535], "her following me and soone and safe arriued where": [0, 65535], "following me and soone and safe arriued where i": [0, 65535], "me and soone and safe arriued where i was": [0, 65535], "and soone and safe arriued where i was there": [0, 65535], "soone and safe arriued where i was there had": [0, 65535], "and safe arriued where i was there had she": [0, 65535], "safe arriued where i was there had she not": [0, 65535], "arriued where i was there had she not beene": [0, 65535], "where i was there had she not beene long": [0, 65535], "i was there had she not beene long but": [0, 65535], "was there had she not beene long but she": [0, 65535], "there had she not beene long but she became": [0, 65535], "had she not beene long but she became a": [0, 65535], "she not beene long but she became a ioyfull": [0, 65535], "not beene long but she became a ioyfull mother": [0, 65535], "beene long but she became a ioyfull mother of": [0, 65535], "long but she became a ioyfull mother of two": [0, 65535], "but she became a ioyfull mother of two goodly": [0, 65535], "she became a ioyfull mother of two goodly sonnes": [0, 65535], "became a ioyfull mother of two goodly sonnes and": [0, 65535], "a ioyfull mother of two goodly sonnes and which": [0, 65535], "ioyfull mother of two goodly sonnes and which was": [0, 65535], "mother of two goodly sonnes and which was strange": [0, 65535], "of two goodly sonnes and which was strange the": [0, 65535], "two goodly sonnes and which was strange the one": [0, 65535], "goodly sonnes and which was strange the one so": [0, 65535], "sonnes and which was strange the one so like": [0, 65535], "and which was strange the one so like the": [0, 65535], "which was strange the one so like the other": [0, 65535], "was strange the one so like the other as": [0, 65535], "strange the one so like the other as could": [0, 65535], "the one so like the other as could not": [0, 65535], "one so like the other as could not be": [0, 65535], "so like the other as could not be distinguish'd": [0, 65535], "like the other as could not be distinguish'd but": [0, 65535], "the other as could not be distinguish'd but by": [0, 65535], "other as could not be distinguish'd but by names": [0, 65535], "as could not be distinguish'd but by names that": [0, 65535], "could not be distinguish'd but by names that very": [0, 65535], "not be distinguish'd but by names that very howre": [0, 65535], "be distinguish'd but by names that very howre and": [0, 65535], "distinguish'd but by names that very howre and in": [0, 65535], "but by names that very howre and in the": [0, 65535], "by names that very howre and in the selfe": [0, 65535], "names that very howre and in the selfe same": [0, 65535], "that very howre and in the selfe same inne": [0, 65535], "very howre and in the selfe same inne a": [0, 65535], "howre and in the selfe same inne a meane": [0, 65535], "and in the selfe same inne a meane woman": [0, 65535], "in the selfe same inne a meane woman was": [0, 65535], "the selfe same inne a meane woman was deliuered": [0, 65535], "selfe same inne a meane woman was deliuered of": [0, 65535], "same inne a meane woman was deliuered of such": [0, 65535], "inne a meane woman was deliuered of such a": [0, 65535], "a meane woman was deliuered of such a burthen": [0, 65535], "meane woman was deliuered of such a burthen male": [0, 65535], "woman was deliuered of such a burthen male twins": [0, 65535], "was deliuered of such a burthen male twins both": [0, 65535], "deliuered of such a burthen male twins both alike": [0, 65535], "of such a burthen male twins both alike those": [0, 65535], "such a burthen male twins both alike those for": [0, 65535], "a burthen male twins both alike those for their": [0, 65535], "burthen male twins both alike those for their parents": [0, 65535], "male twins both alike those for their parents were": [0, 65535], "twins both alike those for their parents were exceeding": [0, 65535], "both alike those for their parents were exceeding poore": [0, 65535], "alike those for their parents were exceeding poore i": [0, 65535], "those for their parents were exceeding poore i bought": [0, 65535], "for their parents were exceeding poore i bought and": [0, 65535], "their parents were exceeding poore i bought and brought": [0, 65535], "parents were exceeding poore i bought and brought vp": [0, 65535], "were exceeding poore i bought and brought vp to": [0, 65535], "exceeding poore i bought and brought vp to attend": [0, 65535], "poore i bought and brought vp to attend my": [0, 65535], "i bought and brought vp to attend my sonnes": [0, 65535], "bought and brought vp to attend my sonnes my": [0, 65535], "and brought vp to attend my sonnes my wife": [0, 65535], "brought vp to attend my sonnes my wife not": [0, 65535], "vp to attend my sonnes my wife not meanely": [0, 65535], "to attend my sonnes my wife not meanely prowd": [0, 65535], "attend my sonnes my wife not meanely prowd of": [0, 65535], "my sonnes my wife not meanely prowd of two": [0, 65535], "sonnes my wife not meanely prowd of two such": [0, 65535], "my wife not meanely prowd of two such boyes": [0, 65535], "wife not meanely prowd of two such boyes made": [0, 65535], "not meanely prowd of two such boyes made daily": [0, 65535], "meanely prowd of two such boyes made daily motions": [0, 65535], "prowd of two such boyes made daily motions for": [0, 65535], "of two such boyes made daily motions for our": [0, 65535], "two such boyes made daily motions for our home": [0, 65535], "such boyes made daily motions for our home returne": [0, 65535], "boyes made daily motions for our home returne vnwilling": [0, 65535], "made daily motions for our home returne vnwilling i": [0, 65535], "daily motions for our home returne vnwilling i agreed": [0, 65535], "motions for our home returne vnwilling i agreed alas": [0, 65535], "for our home returne vnwilling i agreed alas too": [0, 65535], "our home returne vnwilling i agreed alas too soone": [0, 65535], "home returne vnwilling i agreed alas too soone wee": [0, 65535], "returne vnwilling i agreed alas too soone wee came": [0, 65535], "vnwilling i agreed alas too soone wee came aboord": [0, 65535], "i agreed alas too soone wee came aboord a": [0, 65535], "agreed alas too soone wee came aboord a league": [0, 65535], "alas too soone wee came aboord a league from": [0, 65535], "too soone wee came aboord a league from epidamium": [0, 65535], "soone wee came aboord a league from epidamium had": [0, 65535], "wee came aboord a league from epidamium had we": [0, 65535], "came aboord a league from epidamium had we saild": [0, 65535], "aboord a league from epidamium had we saild before": [0, 65535], "a league from epidamium had we saild before the": [0, 65535], "league from epidamium had we saild before the alwaies": [0, 65535], "from epidamium had we saild before the alwaies winde": [0, 65535], "epidamium had we saild before the alwaies winde obeying": [0, 65535], "had we saild before the alwaies winde obeying deepe": [0, 65535], "we saild before the alwaies winde obeying deepe gaue": [0, 65535], "saild before the alwaies winde obeying deepe gaue any": [0, 65535], "before the alwaies winde obeying deepe gaue any tragicke": [0, 65535], "the alwaies winde obeying deepe gaue any tragicke instance": [0, 65535], "alwaies winde obeying deepe gaue any tragicke instance of": [0, 65535], "winde obeying deepe gaue any tragicke instance of our": [0, 65535], "obeying deepe gaue any tragicke instance of our harme": [0, 65535], "deepe gaue any tragicke instance of our harme but": [0, 65535], "gaue any tragicke instance of our harme but longer": [0, 65535], "any tragicke instance of our harme but longer did": [0, 65535], "tragicke instance of our harme but longer did we": [0, 65535], "instance of our harme but longer did we not": [0, 65535], "of our harme but longer did we not retaine": [0, 65535], "our harme but longer did we not retaine much": [0, 65535], "harme but longer did we not retaine much hope": [0, 65535], "but longer did we not retaine much hope for": [0, 65535], "longer did we not retaine much hope for what": [0, 65535], "did we not retaine much hope for what obscured": [0, 65535], "we not retaine much hope for what obscured light": [0, 65535], "not retaine much hope for what obscured light the": [0, 65535], "retaine much hope for what obscured light the heauens": [0, 65535], "much hope for what obscured light the heauens did": [0, 65535], "hope for what obscured light the heauens did grant": [0, 65535], "for what obscured light the heauens did grant did": [0, 65535], "what obscured light the heauens did grant did but": [0, 65535], "obscured light the heauens did grant did but conuay": [0, 65535], "light the heauens did grant did but conuay vnto": [0, 65535], "the heauens did grant did but conuay vnto our": [0, 65535], "heauens did grant did but conuay vnto our fearefull": [0, 65535], "did grant did but conuay vnto our fearefull mindes": [0, 65535], "grant did but conuay vnto our fearefull mindes a": [0, 65535], "did but conuay vnto our fearefull mindes a doubtfull": [0, 65535], "but conuay vnto our fearefull mindes a doubtfull warrant": [0, 65535], "conuay vnto our fearefull mindes a doubtfull warrant of": [0, 65535], "vnto our fearefull mindes a doubtfull warrant of immediate": [0, 65535], "our fearefull mindes a doubtfull warrant of immediate death": [0, 65535], "fearefull mindes a doubtfull warrant of immediate death which": [0, 65535], "mindes a doubtfull warrant of immediate death which though": [0, 65535], "a doubtfull warrant of immediate death which though my": [0, 65535], "doubtfull warrant of immediate death which though my selfe": [0, 65535], "warrant of immediate death which though my selfe would": [0, 65535], "of immediate death which though my selfe would gladly": [0, 65535], "immediate death which though my selfe would gladly haue": [0, 65535], "death which though my selfe would gladly haue imbrac'd": [0, 65535], "which though my selfe would gladly haue imbrac'd yet": [0, 65535], "though my selfe would gladly haue imbrac'd yet the": [0, 65535], "my selfe would gladly haue imbrac'd yet the incessant": [0, 65535], "selfe would gladly haue imbrac'd yet the incessant weepings": [0, 65535], "would gladly haue imbrac'd yet the incessant weepings of": [0, 65535], "gladly haue imbrac'd yet the incessant weepings of my": [0, 65535], "haue imbrac'd yet the incessant weepings of my wife": [0, 65535], "imbrac'd yet the incessant weepings of my wife weeping": [0, 65535], "yet the incessant weepings of my wife weeping before": [0, 65535], "the incessant weepings of my wife weeping before for": [0, 65535], "incessant weepings of my wife weeping before for what": [0, 65535], "weepings of my wife weeping before for what she": [0, 65535], "of my wife weeping before for what she saw": [0, 65535], "my wife weeping before for what she saw must": [0, 65535], "wife weeping before for what she saw must come": [0, 65535], "weeping before for what she saw must come and": [0, 65535], "before for what she saw must come and pitteous": [0, 65535], "for what she saw must come and pitteous playnings": [0, 65535], "what she saw must come and pitteous playnings of": [0, 65535], "she saw must come and pitteous playnings of the": [0, 65535], "saw must come and pitteous playnings of the prettie": [0, 65535], "must come and pitteous playnings of the prettie babes": [0, 65535], "come and pitteous playnings of the prettie babes that": [0, 65535], "and pitteous playnings of the prettie babes that mourn'd": [0, 65535], "pitteous playnings of the prettie babes that mourn'd for": [0, 65535], "playnings of the prettie babes that mourn'd for fashion": [0, 65535], "of the prettie babes that mourn'd for fashion ignorant": [0, 65535], "the prettie babes that mourn'd for fashion ignorant what": [0, 65535], "prettie babes that mourn'd for fashion ignorant what to": [0, 65535], "babes that mourn'd for fashion ignorant what to feare": [0, 65535], "that mourn'd for fashion ignorant what to feare forst": [0, 65535], "mourn'd for fashion ignorant what to feare forst me": [0, 65535], "for fashion ignorant what to feare forst me to": [0, 65535], "fashion ignorant what to feare forst me to seeke": [0, 65535], "ignorant what to feare forst me to seeke delayes": [0, 65535], "what to feare forst me to seeke delayes for": [0, 65535], "to feare forst me to seeke delayes for them": [0, 65535], "feare forst me to seeke delayes for them and": [0, 65535], "forst me to seeke delayes for them and me": [0, 65535], "me to seeke delayes for them and me and": [0, 65535], "to seeke delayes for them and me and this": [0, 65535], "seeke delayes for them and me and this it": [0, 65535], "delayes for them and me and this it was": [0, 65535], "for them and me and this it was for": [0, 65535], "them and me and this it was for other": [0, 65535], "and me and this it was for other meanes": [0, 65535], "me and this it was for other meanes was": [0, 65535], "and this it was for other meanes was none": [0, 65535], "this it was for other meanes was none the": [0, 65535], "it was for other meanes was none the sailors": [0, 65535], "was for other meanes was none the sailors sought": [0, 65535], "for other meanes was none the sailors sought for": [0, 65535], "other meanes was none the sailors sought for safety": [0, 65535], "meanes was none the sailors sought for safety by": [0, 65535], "was none the sailors sought for safety by our": [0, 65535], "none the sailors sought for safety by our boate": [0, 65535], "the sailors sought for safety by our boate and": [0, 65535], "sailors sought for safety by our boate and left": [0, 65535], "sought for safety by our boate and left the": [0, 65535], "for safety by our boate and left the ship": [0, 65535], "safety by our boate and left the ship then": [0, 65535], "by our boate and left the ship then sinking": [0, 65535], "our boate and left the ship then sinking ripe": [0, 65535], "boate and left the ship then sinking ripe to": [0, 65535], "and left the ship then sinking ripe to vs": [0, 65535], "left the ship then sinking ripe to vs my": [0, 65535], "the ship then sinking ripe to vs my wife": [0, 65535], "ship then sinking ripe to vs my wife more": [0, 65535], "then sinking ripe to vs my wife more carefull": [0, 65535], "sinking ripe to vs my wife more carefull for": [0, 65535], "ripe to vs my wife more carefull for the": [0, 65535], "to vs my wife more carefull for the latter": [0, 65535], "vs my wife more carefull for the latter borne": [0, 65535], "my wife more carefull for the latter borne had": [0, 65535], "wife more carefull for the latter borne had fastned": [0, 65535], "more carefull for the latter borne had fastned him": [0, 65535], "carefull for the latter borne had fastned him vnto": [0, 65535], "for the latter borne had fastned him vnto a": [0, 65535], "the latter borne had fastned him vnto a small": [0, 65535], "latter borne had fastned him vnto a small spare": [0, 65535], "borne had fastned him vnto a small spare mast": [0, 65535], "had fastned him vnto a small spare mast such": [0, 65535], "fastned him vnto a small spare mast such as": [0, 65535], "him vnto a small spare mast such as sea": [0, 65535], "vnto a small spare mast such as sea faring": [0, 65535], "a small spare mast such as sea faring men": [0, 65535], "small spare mast such as sea faring men prouide": [0, 65535], "spare mast such as sea faring men prouide for": [0, 65535], "mast such as sea faring men prouide for stormes": [0, 65535], "such as sea faring men prouide for stormes to": [0, 65535], "as sea faring men prouide for stormes to him": [0, 65535], "sea faring men prouide for stormes to him one": [0, 65535], "faring men prouide for stormes to him one of": [0, 65535], "men prouide for stormes to him one of the": [0, 65535], "prouide for stormes to him one of the other": [0, 65535], "for stormes to him one of the other twins": [0, 65535], "stormes to him one of the other twins was": [0, 65535], "to him one of the other twins was bound": [0, 65535], "him one of the other twins was bound whil'st": [0, 65535], "one of the other twins was bound whil'st i": [0, 65535], "of the other twins was bound whil'st i had": [0, 65535], "the other twins was bound whil'st i had beene": [0, 65535], "other twins was bound whil'st i had beene like": [0, 65535], "twins was bound whil'st i had beene like heedfull": [0, 65535], "was bound whil'st i had beene like heedfull of": [0, 65535], "bound whil'st i had beene like heedfull of the": [0, 65535], "whil'st i had beene like heedfull of the other": [0, 65535], "i had beene like heedfull of the other the": [0, 65535], "had beene like heedfull of the other the children": [0, 65535], "beene like heedfull of the other the children thus": [0, 65535], "like heedfull of the other the children thus dispos'd": [0, 65535], "heedfull of the other the children thus dispos'd my": [0, 65535], "of the other the children thus dispos'd my wife": [0, 65535], "the other the children thus dispos'd my wife and": [0, 65535], "other the children thus dispos'd my wife and i": [0, 65535], "the children thus dispos'd my wife and i fixing": [0, 65535], "children thus dispos'd my wife and i fixing our": [0, 65535], "thus dispos'd my wife and i fixing our eyes": [0, 65535], "dispos'd my wife and i fixing our eyes on": [0, 65535], "my wife and i fixing our eyes on whom": [0, 65535], "wife and i fixing our eyes on whom our": [0, 65535], "and i fixing our eyes on whom our care": [0, 65535], "i fixing our eyes on whom our care was": [0, 65535], "fixing our eyes on whom our care was fixt": [0, 65535], "our eyes on whom our care was fixt fastned": [0, 65535], "eyes on whom our care was fixt fastned our": [0, 65535], "on whom our care was fixt fastned our selues": [0, 65535], "whom our care was fixt fastned our selues at": [0, 65535], "our care was fixt fastned our selues at eyther": [0, 65535], "care was fixt fastned our selues at eyther end": [0, 65535], "was fixt fastned our selues at eyther end the": [0, 65535], "fixt fastned our selues at eyther end the mast": [0, 65535], "fastned our selues at eyther end the mast and": [0, 65535], "our selues at eyther end the mast and floating": [0, 65535], "selues at eyther end the mast and floating straight": [0, 65535], "at eyther end the mast and floating straight obedient": [0, 65535], "eyther end the mast and floating straight obedient to": [0, 65535], "end the mast and floating straight obedient to the": [0, 65535], "the mast and floating straight obedient to the streame": [0, 65535], "mast and floating straight obedient to the streame was": [0, 65535], "and floating straight obedient to the streame was carried": [0, 65535], "floating straight obedient to the streame was carried towards": [0, 65535], "straight obedient to the streame was carried towards corinth": [0, 65535], "obedient to the streame was carried towards corinth as": [0, 65535], "to the streame was carried towards corinth as we": [0, 65535], "the streame was carried towards corinth as we thought": [0, 65535], "streame was carried towards corinth as we thought at": [0, 65535], "was carried towards corinth as we thought at length": [0, 65535], "carried towards corinth as we thought at length the": [0, 65535], "towards corinth as we thought at length the sonne": [0, 65535], "corinth as we thought at length the sonne gazing": [0, 65535], "as we thought at length the sonne gazing vpon": [0, 65535], "we thought at length the sonne gazing vpon the": [0, 65535], "thought at length the sonne gazing vpon the earth": [0, 65535], "at length the sonne gazing vpon the earth disperst": [0, 65535], "length the sonne gazing vpon the earth disperst those": [0, 65535], "the sonne gazing vpon the earth disperst those vapours": [0, 65535], "sonne gazing vpon the earth disperst those vapours that": [0, 65535], "gazing vpon the earth disperst those vapours that offended": [0, 65535], "vpon the earth disperst those vapours that offended vs": [0, 65535], "the earth disperst those vapours that offended vs and": [0, 65535], "earth disperst those vapours that offended vs and by": [0, 65535], "disperst those vapours that offended vs and by the": [0, 65535], "those vapours that offended vs and by the benefit": [0, 65535], "vapours that offended vs and by the benefit of": [0, 65535], "that offended vs and by the benefit of his": [0, 65535], "offended vs and by the benefit of his wished": [0, 65535], "vs and by the benefit of his wished light": [0, 65535], "and by the benefit of his wished light the": [0, 65535], "by the benefit of his wished light the seas": [0, 65535], "the benefit of his wished light the seas waxt": [0, 65535], "benefit of his wished light the seas waxt calme": [0, 65535], "of his wished light the seas waxt calme and": [0, 65535], "his wished light the seas waxt calme and we": [0, 65535], "wished light the seas waxt calme and we discouered": [0, 65535], "light the seas waxt calme and we discouered two": [0, 65535], "the seas waxt calme and we discouered two shippes": [0, 65535], "seas waxt calme and we discouered two shippes from": [0, 65535], "waxt calme and we discouered two shippes from farre": [0, 65535], "calme and we discouered two shippes from farre making": [0, 65535], "and we discouered two shippes from farre making amaine": [0, 65535], "we discouered two shippes from farre making amaine to": [0, 65535], "discouered two shippes from farre making amaine to vs": [0, 65535], "two shippes from farre making amaine to vs of": [0, 65535], "shippes from farre making amaine to vs of corinth": [0, 65535], "from farre making amaine to vs of corinth that": [0, 65535], "farre making amaine to vs of corinth that of": [0, 65535], "making amaine to vs of corinth that of epidarus": [0, 65535], "amaine to vs of corinth that of epidarus this": [0, 65535], "to vs of corinth that of epidarus this but": [0, 65535], "vs of corinth that of epidarus this but ere": [0, 65535], "of corinth that of epidarus this but ere they": [0, 65535], "corinth that of epidarus this but ere they came": [0, 65535], "that of epidarus this but ere they came oh": [0, 65535], "of epidarus this but ere they came oh let": [0, 65535], "epidarus this but ere they came oh let me": [0, 65535], "this but ere they came oh let me say": [0, 65535], "but ere they came oh let me say no": [0, 65535], "ere they came oh let me say no more": [0, 65535], "they came oh let me say no more gather": [0, 65535], "came oh let me say no more gather the": [0, 65535], "oh let me say no more gather the sequell": [0, 65535], "let me say no more gather the sequell by": [0, 65535], "me say no more gather the sequell by that": [0, 65535], "say no more gather the sequell by that went": [0, 65535], "no more gather the sequell by that went before": [0, 65535], "more gather the sequell by that went before duk": [0, 65535], "gather the sequell by that went before duk nay": [0, 65535], "the sequell by that went before duk nay forward": [0, 65535], "sequell by that went before duk nay forward old": [0, 65535], "by that went before duk nay forward old man": [0, 65535], "that went before duk nay forward old man doe": [0, 65535], "went before duk nay forward old man doe not": [0, 65535], "before duk nay forward old man doe not breake": [0, 65535], "duk nay forward old man doe not breake off": [0, 65535], "nay forward old man doe not breake off so": [0, 65535], "forward old man doe not breake off so for": [0, 65535], "old man doe not breake off so for we": [0, 65535], "man doe not breake off so for we may": [0, 65535], "doe not breake off so for we may pitty": [0, 65535], "not breake off so for we may pitty though": [0, 65535], "breake off so for we may pitty though not": [0, 65535], "off so for we may pitty though not pardon": [0, 65535], "so for we may pitty though not pardon thee": [0, 65535], "for we may pitty though not pardon thee merch": [0, 65535], "we may pitty though not pardon thee merch oh": [0, 65535], "may pitty though not pardon thee merch oh had": [0, 65535], "pitty though not pardon thee merch oh had the": [0, 65535], "though not pardon thee merch oh had the gods": [0, 65535], "not pardon thee merch oh had the gods done": [0, 65535], "pardon thee merch oh had the gods done so": [0, 65535], "thee merch oh had the gods done so i": [0, 65535], "merch oh had the gods done so i had": [0, 65535], "oh had the gods done so i had not": [0, 65535], "had the gods done so i had not now": [0, 65535], "the gods done so i had not now worthily": [0, 65535], "gods done so i had not now worthily tearm'd": [0, 65535], "done so i had not now worthily tearm'd them": [0, 65535], "so i had not now worthily tearm'd them mercilesse": [0, 65535], "i had not now worthily tearm'd them mercilesse to": [0, 65535], "had not now worthily tearm'd them mercilesse to vs": [0, 65535], "not now worthily tearm'd them mercilesse to vs for": [0, 65535], "now worthily tearm'd them mercilesse to vs for ere": [0, 65535], "worthily tearm'd them mercilesse to vs for ere the": [0, 65535], "tearm'd them mercilesse to vs for ere the ships": [0, 65535], "them mercilesse to vs for ere the ships could": [0, 65535], "mercilesse to vs for ere the ships could meet": [0, 65535], "to vs for ere the ships could meet by": [0, 65535], "vs for ere the ships could meet by twice": [0, 65535], "for ere the ships could meet by twice fiue": [0, 65535], "ere the ships could meet by twice fiue leagues": [0, 65535], "the ships could meet by twice fiue leagues we": [0, 65535], "ships could meet by twice fiue leagues we were": [0, 65535], "could meet by twice fiue leagues we were encountred": [0, 65535], "meet by twice fiue leagues we were encountred by": [0, 65535], "by twice fiue leagues we were encountred by a": [0, 65535], "twice fiue leagues we were encountred by a mighty": [0, 65535], "fiue leagues we were encountred by a mighty rocke": [0, 65535], "leagues we were encountred by a mighty rocke which": [0, 65535], "we were encountred by a mighty rocke which being": [0, 65535], "were encountred by a mighty rocke which being violently": [0, 65535], "encountred by a mighty rocke which being violently borne": [0, 65535], "by a mighty rocke which being violently borne vp": [0, 65535], "a mighty rocke which being violently borne vp our": [0, 65535], "mighty rocke which being violently borne vp our helpefull": [0, 65535], "rocke which being violently borne vp our helpefull ship": [0, 65535], "which being violently borne vp our helpefull ship was": [0, 65535], "being violently borne vp our helpefull ship was splitted": [0, 65535], "violently borne vp our helpefull ship was splitted in": [0, 65535], "borne vp our helpefull ship was splitted in the": [0, 65535], "vp our helpefull ship was splitted in the midst": [0, 65535], "our helpefull ship was splitted in the midst so": [0, 65535], "helpefull ship was splitted in the midst so that": [0, 65535], "ship was splitted in the midst so that in": [0, 65535], "was splitted in the midst so that in this": [0, 65535], "splitted in the midst so that in this vniust": [0, 65535], "in the midst so that in this vniust diuorce": [0, 65535], "the midst so that in this vniust diuorce of": [0, 65535], "midst so that in this vniust diuorce of vs": [0, 65535], "so that in this vniust diuorce of vs fortune": [0, 65535], "that in this vniust diuorce of vs fortune had": [0, 65535], "in this vniust diuorce of vs fortune had left": [0, 65535], "this vniust diuorce of vs fortune had left to": [0, 65535], "vniust diuorce of vs fortune had left to both": [0, 65535], "diuorce of vs fortune had left to both of": [0, 65535], "of vs fortune had left to both of vs": [0, 65535], "vs fortune had left to both of vs alike": [0, 65535], "fortune had left to both of vs alike what": [0, 65535], "had left to both of vs alike what to": [0, 65535], "left to both of vs alike what to delight": [0, 65535], "to both of vs alike what to delight in": [0, 65535], "both of vs alike what to delight in what": [0, 65535], "of vs alike what to delight in what to": [0, 65535], "vs alike what to delight in what to sorrow": [0, 65535], "alike what to delight in what to sorrow for": [0, 65535], "what to delight in what to sorrow for her": [0, 65535], "to delight in what to sorrow for her part": [0, 65535], "delight in what to sorrow for her part poore": [0, 65535], "in what to sorrow for her part poore soule": [0, 65535], "what to sorrow for her part poore soule seeming": [0, 65535], "to sorrow for her part poore soule seeming as": [0, 65535], "sorrow for her part poore soule seeming as burdened": [0, 65535], "for her part poore soule seeming as burdened with": [0, 65535], "her part poore soule seeming as burdened with lesser": [0, 65535], "part poore soule seeming as burdened with lesser waight": [0, 65535], "poore soule seeming as burdened with lesser waight but": [0, 65535], "soule seeming as burdened with lesser waight but not": [0, 65535], "seeming as burdened with lesser waight but not with": [0, 65535], "as burdened with lesser waight but not with lesser": [0, 65535], "burdened with lesser waight but not with lesser woe": [0, 65535], "with lesser waight but not with lesser woe was": [0, 65535], "lesser waight but not with lesser woe was carried": [0, 65535], "waight but not with lesser woe was carried with": [0, 65535], "but not with lesser woe was carried with more": [0, 65535], "not with lesser woe was carried with more speed": [0, 65535], "with lesser woe was carried with more speed before": [0, 65535], "lesser woe was carried with more speed before the": [0, 65535], "woe was carried with more speed before the winde": [0, 65535], "was carried with more speed before the winde and": [0, 65535], "carried with more speed before the winde and in": [0, 65535], "with more speed before the winde and in our": [0, 65535], "more speed before the winde and in our sight": [0, 65535], "speed before the winde and in our sight they": [0, 65535], "before the winde and in our sight they three": [0, 65535], "the winde and in our sight they three were": [0, 65535], "winde and in our sight they three were taken": [0, 65535], "and in our sight they three were taken vp": [0, 65535], "in our sight they three were taken vp by": [0, 65535], "our sight they three were taken vp by fishermen": [0, 65535], "sight they three were taken vp by fishermen of": [0, 65535], "they three were taken vp by fishermen of corinth": [0, 65535], "three were taken vp by fishermen of corinth as": [0, 65535], "were taken vp by fishermen of corinth as we": [0, 65535], "taken vp by fishermen of corinth as we thought": [0, 65535], "vp by fishermen of corinth as we thought at": [0, 65535], "by fishermen of corinth as we thought at length": [0, 65535], "fishermen of corinth as we thought at length another": [0, 65535], "of corinth as we thought at length another ship": [0, 65535], "corinth as we thought at length another ship had": [0, 65535], "as we thought at length another ship had seiz'd": [0, 65535], "we thought at length another ship had seiz'd on": [0, 65535], "thought at length another ship had seiz'd on vs": [0, 65535], "at length another ship had seiz'd on vs and": [0, 65535], "length another ship had seiz'd on vs and knowing": [0, 65535], "another ship had seiz'd on vs and knowing whom": [0, 65535], "ship had seiz'd on vs and knowing whom it": [0, 65535], "had seiz'd on vs and knowing whom it was": [0, 65535], "seiz'd on vs and knowing whom it was their": [0, 65535], "on vs and knowing whom it was their hap": [0, 65535], "vs and knowing whom it was their hap to": [0, 65535], "and knowing whom it was their hap to saue": [0, 65535], "knowing whom it was their hap to saue gaue": [0, 65535], "whom it was their hap to saue gaue healthfull": [0, 65535], "it was their hap to saue gaue healthfull welcome": [0, 65535], "was their hap to saue gaue healthfull welcome to": [0, 65535], "their hap to saue gaue healthfull welcome to their": [0, 65535], "hap to saue gaue healthfull welcome to their ship": [0, 65535], "to saue gaue healthfull welcome to their ship wrackt": [0, 65535], "saue gaue healthfull welcome to their ship wrackt guests": [0, 65535], "gaue healthfull welcome to their ship wrackt guests and": [0, 65535], "healthfull welcome to their ship wrackt guests and would": [0, 65535], "welcome to their ship wrackt guests and would haue": [0, 65535], "to their ship wrackt guests and would haue reft": [0, 65535], "their ship wrackt guests and would haue reft the": [0, 65535], "ship wrackt guests and would haue reft the fishers": [0, 65535], "wrackt guests and would haue reft the fishers of": [0, 65535], "guests and would haue reft the fishers of their": [0, 65535], "and would haue reft the fishers of their prey": [0, 65535], "would haue reft the fishers of their prey had": [0, 65535], "haue reft the fishers of their prey had not": [0, 65535], "reft the fishers of their prey had not their": [0, 65535], "the fishers of their prey had not their backe": [0, 65535], "fishers of their prey had not their backe beene": [0, 65535], "of their prey had not their backe beene very": [0, 65535], "their prey had not their backe beene very slow": [0, 65535], "prey had not their backe beene very slow of": [0, 65535], "had not their backe beene very slow of saile": [0, 65535], "not their backe beene very slow of saile and": [0, 65535], "their backe beene very slow of saile and therefore": [0, 65535], "backe beene very slow of saile and therefore homeward": [0, 65535], "beene very slow of saile and therefore homeward did": [0, 65535], "very slow of saile and therefore homeward did they": [0, 65535], "slow of saile and therefore homeward did they bend": [0, 65535], "of saile and therefore homeward did they bend their": [0, 65535], "saile and therefore homeward did they bend their course": [0, 65535], "and therefore homeward did they bend their course thus": [0, 65535], "therefore homeward did they bend their course thus haue": [0, 65535], "homeward did they bend their course thus haue you": [0, 65535], "did they bend their course thus haue you heard": [0, 65535], "they bend their course thus haue you heard me": [0, 65535], "bend their course thus haue you heard me seuer'd": [0, 65535], "their course thus haue you heard me seuer'd from": [0, 65535], "course thus haue you heard me seuer'd from my": [0, 65535], "thus haue you heard me seuer'd from my blisse": [0, 65535], "haue you heard me seuer'd from my blisse that": [0, 65535], "you heard me seuer'd from my blisse that by": [0, 65535], "heard me seuer'd from my blisse that by misfortunes": [0, 65535], "me seuer'd from my blisse that by misfortunes was": [0, 65535], "seuer'd from my blisse that by misfortunes was my": [0, 65535], "from my blisse that by misfortunes was my life": [0, 65535], "my blisse that by misfortunes was my life prolong'd": [0, 65535], "blisse that by misfortunes was my life prolong'd to": [0, 65535], "that by misfortunes was my life prolong'd to tell": [0, 65535], "by misfortunes was my life prolong'd to tell sad": [0, 65535], "misfortunes was my life prolong'd to tell sad stories": [0, 65535], "was my life prolong'd to tell sad stories of": [0, 65535], "my life prolong'd to tell sad stories of my": [0, 65535], "life prolong'd to tell sad stories of my owne": [0, 65535], "prolong'd to tell sad stories of my owne mishaps": [0, 65535], "to tell sad stories of my owne mishaps duke": [0, 65535], "tell sad stories of my owne mishaps duke and": [0, 65535], "sad stories of my owne mishaps duke and for": [0, 65535], "stories of my owne mishaps duke and for the": [0, 65535], "of my owne mishaps duke and for the sake": [0, 65535], "my owne mishaps duke and for the sake of": [0, 65535], "owne mishaps duke and for the sake of them": [0, 65535], "mishaps duke and for the sake of them thou": [0, 65535], "duke and for the sake of them thou sorrowest": [0, 65535], "and for the sake of them thou sorrowest for": [0, 65535], "for the sake of them thou sorrowest for doe": [0, 65535], "the sake of them thou sorrowest for doe me": [0, 65535], "sake of them thou sorrowest for doe me the": [0, 65535], "of them thou sorrowest for doe me the fauour": [0, 65535], "them thou sorrowest for doe me the fauour to": [0, 65535], "thou sorrowest for doe me the fauour to dilate": [0, 65535], "sorrowest for doe me the fauour to dilate at": [0, 65535], "for doe me the fauour to dilate at full": [0, 65535], "doe me the fauour to dilate at full what": [0, 65535], "me the fauour to dilate at full what haue": [0, 65535], "the fauour to dilate at full what haue befalne": [0, 65535], "fauour to dilate at full what haue befalne of": [0, 65535], "to dilate at full what haue befalne of them": [0, 65535], "dilate at full what haue befalne of them and": [0, 65535], "at full what haue befalne of them and they": [0, 65535], "full what haue befalne of them and they till": [0, 65535], "what haue befalne of them and they till now": [0, 65535], "haue befalne of them and they till now merch": [0, 65535], "befalne of them and they till now merch my": [0, 65535], "of them and they till now merch my yongest": [0, 65535], "them and they till now merch my yongest boy": [0, 65535], "and they till now merch my yongest boy and": [0, 65535], "they till now merch my yongest boy and yet": [0, 65535], "till now merch my yongest boy and yet my": [0, 65535], "now merch my yongest boy and yet my eldest": [0, 65535], "merch my yongest boy and yet my eldest care": [0, 65535], "my yongest boy and yet my eldest care at": [0, 65535], "yongest boy and yet my eldest care at eighteene": [0, 65535], "boy and yet my eldest care at eighteene yeeres": [0, 65535], "and yet my eldest care at eighteene yeeres became": [0, 65535], "yet my eldest care at eighteene yeeres became inquisitiue": [0, 65535], "my eldest care at eighteene yeeres became inquisitiue after": [0, 65535], "eldest care at eighteene yeeres became inquisitiue after his": [0, 65535], "care at eighteene yeeres became inquisitiue after his brother": [0, 65535], "at eighteene yeeres became inquisitiue after his brother and": [0, 65535], "eighteene yeeres became inquisitiue after his brother and importun'd": [0, 65535], "yeeres became inquisitiue after his brother and importun'd me": [0, 65535], "became inquisitiue after his brother and importun'd me that": [0, 65535], "inquisitiue after his brother and importun'd me that his": [0, 65535], "after his brother and importun'd me that his attendant": [0, 65535], "his brother and importun'd me that his attendant so": [0, 65535], "brother and importun'd me that his attendant so his": [0, 65535], "and importun'd me that his attendant so his case": [0, 65535], "importun'd me that his attendant so his case was": [0, 65535], "me that his attendant so his case was like": [0, 65535], "that his attendant so his case was like reft": [0, 65535], "his attendant so his case was like reft of": [0, 65535], "attendant so his case was like reft of his": [0, 65535], "so his case was like reft of his brother": [0, 65535], "his case was like reft of his brother but": [0, 65535], "case was like reft of his brother but retain'd": [0, 65535], "was like reft of his brother but retain'd his": [0, 65535], "like reft of his brother but retain'd his name": [0, 65535], "reft of his brother but retain'd his name might": [0, 65535], "of his brother but retain'd his name might beare": [0, 65535], "his brother but retain'd his name might beare him": [0, 65535], "brother but retain'd his name might beare him company": [0, 65535], "but retain'd his name might beare him company in": [0, 65535], "retain'd his name might beare him company in the": [0, 65535], "his name might beare him company in the quest": [0, 65535], "name might beare him company in the quest of": [0, 65535], "might beare him company in the quest of him": [0, 65535], "beare him company in the quest of him whom": [0, 65535], "him company in the quest of him whom whil'st": [0, 65535], "company in the quest of him whom whil'st i": [0, 65535], "in the quest of him whom whil'st i laboured": [0, 65535], "the quest of him whom whil'st i laboured of": [0, 65535], "quest of him whom whil'st i laboured of a": [0, 65535], "of him whom whil'st i laboured of a loue": [0, 65535], "him whom whil'st i laboured of a loue to": [0, 65535], "whom whil'st i laboured of a loue to see": [0, 65535], "whil'st i laboured of a loue to see i": [0, 65535], "i laboured of a loue to see i hazarded": [0, 65535], "laboured of a loue to see i hazarded the": [0, 65535], "of a loue to see i hazarded the losse": [0, 65535], "a loue to see i hazarded the losse of": [0, 65535], "loue to see i hazarded the losse of whom": [0, 65535], "to see i hazarded the losse of whom i": [0, 65535], "see i hazarded the losse of whom i lou'd": [0, 65535], "i hazarded the losse of whom i lou'd fiue": [0, 65535], "hazarded the losse of whom i lou'd fiue sommers": [0, 65535], "the losse of whom i lou'd fiue sommers haue": [0, 65535], "losse of whom i lou'd fiue sommers haue i": [0, 65535], "of whom i lou'd fiue sommers haue i spent": [0, 65535], "whom i lou'd fiue sommers haue i spent in": [0, 65535], "i lou'd fiue sommers haue i spent in farthest": [0, 65535], "lou'd fiue sommers haue i spent in farthest greece": [0, 65535], "fiue sommers haue i spent in farthest greece roming": [0, 65535], "sommers haue i spent in farthest greece roming cleane": [0, 65535], "haue i spent in farthest greece roming cleane through": [0, 65535], "i spent in farthest greece roming cleane through the": [0, 65535], "spent in farthest greece roming cleane through the bounds": [0, 65535], "in farthest greece roming cleane through the bounds of": [0, 65535], "farthest greece roming cleane through the bounds of asia": [0, 65535], "greece roming cleane through the bounds of asia and": [0, 65535], "roming cleane through the bounds of asia and coasting": [0, 65535], "cleane through the bounds of asia and coasting homeward": [0, 65535], "through the bounds of asia and coasting homeward came": [0, 65535], "the bounds of asia and coasting homeward came to": [0, 65535], "bounds of asia and coasting homeward came to ephesus": [0, 65535], "of asia and coasting homeward came to ephesus hopelesse": [0, 65535], "asia and coasting homeward came to ephesus hopelesse to": [0, 65535], "and coasting homeward came to ephesus hopelesse to finde": [0, 65535], "coasting homeward came to ephesus hopelesse to finde yet": [0, 65535], "homeward came to ephesus hopelesse to finde yet loth": [0, 65535], "came to ephesus hopelesse to finde yet loth to": [0, 65535], "to ephesus hopelesse to finde yet loth to leaue": [0, 65535], "ephesus hopelesse to finde yet loth to leaue vnsought": [0, 65535], "hopelesse to finde yet loth to leaue vnsought or": [0, 65535], "to finde yet loth to leaue vnsought or that": [0, 65535], "finde yet loth to leaue vnsought or that or": [0, 65535], "yet loth to leaue vnsought or that or any": [0, 65535], "loth to leaue vnsought or that or any place": [0, 65535], "to leaue vnsought or that or any place that": [0, 65535], "leaue vnsought or that or any place that harbours": [0, 65535], "vnsought or that or any place that harbours men": [0, 65535], "or that or any place that harbours men but": [0, 65535], "that or any place that harbours men but heere": [0, 65535], "or any place that harbours men but heere must": [0, 65535], "any place that harbours men but heere must end": [0, 65535], "place that harbours men but heere must end the": [0, 65535], "that harbours men but heere must end the story": [0, 65535], "harbours men but heere must end the story of": [0, 65535], "men but heere must end the story of my": [0, 65535], "but heere must end the story of my life": [0, 65535], "heere must end the story of my life and": [0, 65535], "must end the story of my life and happy": [0, 65535], "end the story of my life and happy were": [0, 65535], "the story of my life and happy were i": [0, 65535], "story of my life and happy were i in": [0, 65535], "of my life and happy were i in my": [0, 65535], "my life and happy were i in my timelie": [0, 65535], "life and happy were i in my timelie death": [0, 65535], "and happy were i in my timelie death could": [0, 65535], "happy were i in my timelie death could all": [0, 65535], "were i in my timelie death could all my": [0, 65535], "i in my timelie death could all my trauells": [0, 65535], "in my timelie death could all my trauells warrant": [0, 65535], "my timelie death could all my trauells warrant me": [0, 65535], "timelie death could all my trauells warrant me they": [0, 65535], "death could all my trauells warrant me they liue": [0, 65535], "could all my trauells warrant me they liue duke": [0, 65535], "all my trauells warrant me they liue duke haplesse": [0, 65535], "my trauells warrant me they liue duke haplesse egeon": [0, 65535], "trauells warrant me they liue duke haplesse egeon whom": [0, 65535], "warrant me they liue duke haplesse egeon whom the": [0, 65535], "me they liue duke haplesse egeon whom the fates": [0, 65535], "they liue duke haplesse egeon whom the fates haue": [0, 65535], "liue duke haplesse egeon whom the fates haue markt": [0, 65535], "duke haplesse egeon whom the fates haue markt to": [0, 65535], "haplesse egeon whom the fates haue markt to beare": [0, 65535], "egeon whom the fates haue markt to beare the": [0, 65535], "whom the fates haue markt to beare the extremitie": [0, 65535], "the fates haue markt to beare the extremitie of": [0, 65535], "fates haue markt to beare the extremitie of dire": [0, 65535], "haue markt to beare the extremitie of dire mishap": [0, 65535], "markt to beare the extremitie of dire mishap now": [0, 65535], "to beare the extremitie of dire mishap now trust": [0, 65535], "beare the extremitie of dire mishap now trust me": [0, 65535], "the extremitie of dire mishap now trust me were": [0, 65535], "extremitie of dire mishap now trust me were it": [0, 65535], "of dire mishap now trust me were it not": [0, 65535], "dire mishap now trust me were it not against": [0, 65535], "mishap now trust me were it not against our": [0, 65535], "now trust me were it not against our lawes": [0, 65535], "trust me were it not against our lawes against": [0, 65535], "me were it not against our lawes against my": [0, 65535], "were it not against our lawes against my crowne": [0, 65535], "it not against our lawes against my crowne my": [0, 65535], "not against our lawes against my crowne my oath": [0, 65535], "against our lawes against my crowne my oath my": [0, 65535], "our lawes against my crowne my oath my dignity": [0, 65535], "lawes against my crowne my oath my dignity which": [0, 65535], "against my crowne my oath my dignity which princes": [0, 65535], "my crowne my oath my dignity which princes would": [0, 65535], "crowne my oath my dignity which princes would they": [0, 65535], "my oath my dignity which princes would they may": [0, 65535], "oath my dignity which princes would they may not": [0, 65535], "my dignity which princes would they may not disanull": [0, 65535], "dignity which princes would they may not disanull my": [0, 65535], "which princes would they may not disanull my soule": [0, 65535], "princes would they may not disanull my soule should": [0, 65535], "would they may not disanull my soule should sue": [0, 65535], "they may not disanull my soule should sue as": [0, 65535], "may not disanull my soule should sue as aduocate": [0, 65535], "not disanull my soule should sue as aduocate for": [0, 65535], "disanull my soule should sue as aduocate for thee": [0, 65535], "my soule should sue as aduocate for thee but": [0, 65535], "soule should sue as aduocate for thee but though": [0, 65535], "should sue as aduocate for thee but though thou": [0, 65535], "sue as aduocate for thee but though thou art": [0, 65535], "as aduocate for thee but though thou art adiudged": [0, 65535], "aduocate for thee but though thou art adiudged to": [0, 65535], "for thee but though thou art adiudged to the": [0, 65535], "thee but though thou art adiudged to the death": [0, 65535], "but though thou art adiudged to the death and": [0, 65535], "though thou art adiudged to the death and passed": [0, 65535], "thou art adiudged to the death and passed sentence": [0, 65535], "art adiudged to the death and passed sentence may": [0, 65535], "adiudged to the death and passed sentence may not": [0, 65535], "to the death and passed sentence may not be": [0, 65535], "the death and passed sentence may not be recal'd": [0, 65535], "death and passed sentence may not be recal'd but": [0, 65535], "and passed sentence may not be recal'd but to": [0, 65535], "passed sentence may not be recal'd but to our": [0, 65535], "sentence may not be recal'd but to our honours": [0, 65535], "may not be recal'd but to our honours great": [0, 65535], "not be recal'd but to our honours great disparagement": [0, 65535], "be recal'd but to our honours great disparagement yet": [0, 65535], "recal'd but to our honours great disparagement yet will": [0, 65535], "but to our honours great disparagement yet will i": [0, 65535], "to our honours great disparagement yet will i fauour": [0, 65535], "our honours great disparagement yet will i fauour thee": [0, 65535], "honours great disparagement yet will i fauour thee in": [0, 65535], "great disparagement yet will i fauour thee in what": [0, 65535], "disparagement yet will i fauour thee in what i": [0, 65535], "yet will i fauour thee in what i can": [0, 65535], "will i fauour thee in what i can therefore": [0, 65535], "i fauour thee in what i can therefore marchant": [0, 65535], "fauour thee in what i can therefore marchant ile": [0, 65535], "thee in what i can therefore marchant ile limit": [0, 65535], "in what i can therefore marchant ile limit thee": [0, 65535], "what i can therefore marchant ile limit thee this": [0, 65535], "i can therefore marchant ile limit thee this day": [0, 65535], "can therefore marchant ile limit thee this day to": [0, 65535], "therefore marchant ile limit thee this day to seeke": [0, 65535], "marchant ile limit thee this day to seeke thy": [0, 65535], "ile limit thee this day to seeke thy helpe": [0, 65535], "limit thee this day to seeke thy helpe by": [0, 65535], "thee this day to seeke thy helpe by beneficiall": [0, 65535], "this day to seeke thy helpe by beneficiall helpe": [0, 65535], "day to seeke thy helpe by beneficiall helpe try": [0, 65535], "to seeke thy helpe by beneficiall helpe try all": [0, 65535], "seeke thy helpe by beneficiall helpe try all the": [0, 65535], "thy helpe by beneficiall helpe try all the friends": [0, 65535], "helpe by beneficiall helpe try all the friends thou": [0, 65535], "by beneficiall helpe try all the friends thou hast": [0, 65535], "beneficiall helpe try all the friends thou hast in": [0, 65535], "helpe try all the friends thou hast in ephesus": [0, 65535], "try all the friends thou hast in ephesus beg": [0, 65535], "all the friends thou hast in ephesus beg thou": [0, 65535], "the friends thou hast in ephesus beg thou or": [0, 65535], "friends thou hast in ephesus beg thou or borrow": [0, 65535], "thou hast in ephesus beg thou or borrow to": [0, 65535], "hast in ephesus beg thou or borrow to make": [0, 65535], "in ephesus beg thou or borrow to make vp": [0, 65535], "ephesus beg thou or borrow to make vp the": [0, 65535], "beg thou or borrow to make vp the summe": [0, 65535], "thou or borrow to make vp the summe and": [0, 65535], "or borrow to make vp the summe and liue": [0, 65535], "borrow to make vp the summe and liue if": [0, 65535], "to make vp the summe and liue if no": [0, 65535], "make vp the summe and liue if no then": [0, 65535], "vp the summe and liue if no then thou": [0, 65535], "the summe and liue if no then thou art": [0, 65535], "summe and liue if no then thou art doom'd": [0, 65535], "and liue if no then thou art doom'd to": [0, 65535], "liue if no then thou art doom'd to die": [0, 65535], "if no then thou art doom'd to die iaylor": [0, 65535], "no then thou art doom'd to die iaylor take": [0, 65535], "then thou art doom'd to die iaylor take him": [0, 65535], "thou art doom'd to die iaylor take him to": [0, 65535], "art doom'd to die iaylor take him to thy": [0, 65535], "doom'd to die iaylor take him to thy custodie": [0, 65535], "to die iaylor take him to thy custodie iaylor": [0, 65535], "die iaylor take him to thy custodie iaylor i": [0, 65535], "iaylor take him to thy custodie iaylor i will": [0, 65535], "take him to thy custodie iaylor i will my": [0, 65535], "him to thy custodie iaylor i will my lord": [0, 65535], "to thy custodie iaylor i will my lord merch": [0, 65535], "thy custodie iaylor i will my lord merch hopelesse": [0, 65535], "custodie iaylor i will my lord merch hopelesse and": [0, 65535], "iaylor i will my lord merch hopelesse and helpelesse": [0, 65535], "i will my lord merch hopelesse and helpelesse doth": [0, 65535], "will my lord merch hopelesse and helpelesse doth egean": [0, 65535], "my lord merch hopelesse and helpelesse doth egean wend": [0, 65535], "lord merch hopelesse and helpelesse doth egean wend but": [0, 65535], "merch hopelesse and helpelesse doth egean wend but to": [0, 65535], "hopelesse and helpelesse doth egean wend but to procrastinate": [0, 65535], "and helpelesse doth egean wend but to procrastinate his": [0, 65535], "helpelesse doth egean wend but to procrastinate his liuelesse": [0, 65535], "doth egean wend but to procrastinate his liuelesse end": [0, 65535], "egean wend but to procrastinate his liuelesse end exeunt": [0, 65535], "wend but to procrastinate his liuelesse end exeunt enter": [0, 65535], "but to procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "to procrastinate his liuelesse end exeunt enter antipholis erotes": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis erotes a": [0, 65535], "his liuelesse end exeunt enter antipholis erotes a marchant": [0, 65535], "liuelesse end exeunt enter antipholis erotes a marchant and": [0, 65535], "end exeunt enter antipholis erotes a marchant and dromio": [0, 65535], "exeunt enter antipholis erotes a marchant and dromio mer": [0, 65535], "enter antipholis erotes a marchant and dromio mer therefore": [0, 65535], "antipholis erotes a marchant and dromio mer therefore giue": [0, 65535], "erotes a marchant and dromio mer therefore giue out": [0, 65535], "a marchant and dromio mer therefore giue out you": [0, 65535], "marchant and dromio mer therefore giue out you are": [0, 65535], "and dromio mer therefore giue out you are of": [0, 65535], "dromio mer therefore giue out you are of epidamium": [0, 65535], "mer therefore giue out you are of epidamium lest": [0, 65535], "therefore giue out you are of epidamium lest that": [0, 65535], "giue out you are of epidamium lest that your": [0, 65535], "out you are of epidamium lest that your goods": [0, 65535], "you are of epidamium lest that your goods too": [0, 65535], "are of epidamium lest that your goods too soone": [0, 65535], "of epidamium lest that your goods too soone be": [0, 65535], "epidamium lest that your goods too soone be confiscate": [0, 65535], "lest that your goods too soone be confiscate this": [0, 65535], "that your goods too soone be confiscate this very": [0, 65535], "your goods too soone be confiscate this very day": [0, 65535], "goods too soone be confiscate this very day a": [0, 65535], "too soone be confiscate this very day a syracusian": [0, 65535], "soone be confiscate this very day a syracusian marchant": [0, 65535], "be confiscate this very day a syracusian marchant is": [0, 65535], "confiscate this very day a syracusian marchant is apprehended": [0, 65535], "this very day a syracusian marchant is apprehended for": [0, 65535], "very day a syracusian marchant is apprehended for a": [0, 65535], "day a syracusian marchant is apprehended for a riuall": [0, 65535], "a syracusian marchant is apprehended for a riuall here": [0, 65535], "syracusian marchant is apprehended for a riuall here and": [0, 65535], "marchant is apprehended for a riuall here and not": [0, 65535], "is apprehended for a riuall here and not being": [0, 65535], "apprehended for a riuall here and not being able": [0, 65535], "for a riuall here and not being able to": [0, 65535], "a riuall here and not being able to buy": [0, 65535], "riuall here and not being able to buy out": [0, 65535], "here and not being able to buy out his": [0, 65535], "and not being able to buy out his life": [0, 65535], "not being able to buy out his life according": [0, 65535], "being able to buy out his life according to": [0, 65535], "able to buy out his life according to the": [0, 65535], "to buy out his life according to the statute": [0, 65535], "buy out his life according to the statute of": [0, 65535], "out his life according to the statute of the": [0, 65535], "his life according to the statute of the towne": [0, 65535], "life according to the statute of the towne dies": [0, 65535], "according to the statute of the towne dies ere": [0, 65535], "to the statute of the towne dies ere the": [0, 65535], "the statute of the towne dies ere the wearie": [0, 65535], "statute of the towne dies ere the wearie sunne": [0, 65535], "of the towne dies ere the wearie sunne set": [0, 65535], "the towne dies ere the wearie sunne set in": [0, 65535], "towne dies ere the wearie sunne set in the": [0, 65535], "dies ere the wearie sunne set in the west": [0, 65535], "ere the wearie sunne set in the west there": [0, 65535], "the wearie sunne set in the west there is": [0, 65535], "wearie sunne set in the west there is your": [0, 65535], "sunne set in the west there is your monie": [0, 65535], "set in the west there is your monie that": [0, 65535], "in the west there is your monie that i": [0, 65535], "the west there is your monie that i had": [0, 65535], "west there is your monie that i had to": [0, 65535], "there is your monie that i had to keepe": [0, 65535], "is your monie that i had to keepe ant": [0, 65535], "your monie that i had to keepe ant goe": [0, 65535], "monie that i had to keepe ant goe beare": [0, 65535], "that i had to keepe ant goe beare it": [0, 65535], "i had to keepe ant goe beare it to": [0, 65535], "had to keepe ant goe beare it to the": [0, 65535], "to keepe ant goe beare it to the centaure": [0, 65535], "keepe ant goe beare it to the centaure where": [0, 65535], "ant goe beare it to the centaure where we": [0, 65535], "goe beare it to the centaure where we host": [0, 65535], "beare it to the centaure where we host and": [0, 65535], "it to the centaure where we host and stay": [0, 65535], "to the centaure where we host and stay there": [0, 65535], "the centaure where we host and stay there dromio": [0, 65535], "centaure where we host and stay there dromio till": [0, 65535], "where we host and stay there dromio till i": [0, 65535], "we host and stay there dromio till i come": [0, 65535], "host and stay there dromio till i come to": [0, 65535], "and stay there dromio till i come to thee": [0, 65535], "stay there dromio till i come to thee within": [0, 65535], "there dromio till i come to thee within this": [0, 65535], "dromio till i come to thee within this houre": [0, 65535], "till i come to thee within this houre it": [0, 65535], "i come to thee within this houre it will": [0, 65535], "come to thee within this houre it will be": [0, 65535], "to thee within this houre it will be dinner": [0, 65535], "thee within this houre it will be dinner time": [0, 65535], "within this houre it will be dinner time till": [0, 65535], "this houre it will be dinner time till that": [0, 65535], "houre it will be dinner time till that ile": [0, 65535], "it will be dinner time till that ile view": [0, 65535], "will be dinner time till that ile view the": [0, 65535], "be dinner time till that ile view the manners": [0, 65535], "dinner time till that ile view the manners of": [0, 65535], "time till that ile view the manners of the": [0, 65535], "till that ile view the manners of the towne": [0, 65535], "that ile view the manners of the towne peruse": [0, 65535], "ile view the manners of the towne peruse the": [0, 65535], "view the manners of the towne peruse the traders": [0, 65535], "the manners of the towne peruse the traders gaze": [0, 65535], "manners of the towne peruse the traders gaze vpon": [0, 65535], "of the towne peruse the traders gaze vpon the": [0, 65535], "the towne peruse the traders gaze vpon the buildings": [0, 65535], "towne peruse the traders gaze vpon the buildings and": [0, 65535], "peruse the traders gaze vpon the buildings and then": [0, 65535], "the traders gaze vpon the buildings and then returne": [0, 65535], "traders gaze vpon the buildings and then returne and": [0, 65535], "gaze vpon the buildings and then returne and sleepe": [0, 65535], "vpon the buildings and then returne and sleepe within": [0, 65535], "the buildings and then returne and sleepe within mine": [0, 65535], "buildings and then returne and sleepe within mine inne": [0, 65535], "and then returne and sleepe within mine inne for": [0, 65535], "then returne and sleepe within mine inne for with": [0, 65535], "returne and sleepe within mine inne for with long": [0, 65535], "and sleepe within mine inne for with long trauaile": [0, 65535], "sleepe within mine inne for with long trauaile i": [0, 65535], "within mine inne for with long trauaile i am": [0, 65535], "mine inne for with long trauaile i am stiffe": [0, 65535], "inne for with long trauaile i am stiffe and": [0, 65535], "for with long trauaile i am stiffe and wearie": [0, 65535], "with long trauaile i am stiffe and wearie get": [0, 65535], "long trauaile i am stiffe and wearie get thee": [0, 65535], "trauaile i am stiffe and wearie get thee away": [0, 65535], "i am stiffe and wearie get thee away dro": [0, 65535], "am stiffe and wearie get thee away dro many": [0, 65535], "stiffe and wearie get thee away dro many a": [0, 65535], "and wearie get thee away dro many a man": [0, 65535], "wearie get thee away dro many a man would": [0, 65535], "get thee away dro many a man would take": [0, 65535], "thee away dro many a man would take you": [0, 65535], "away dro many a man would take you at": [0, 65535], "dro many a man would take you at your": [0, 65535], "many a man would take you at your word": [0, 65535], "a man would take you at your word and": [0, 65535], "man would take you at your word and goe": [0, 65535], "would take you at your word and goe indeede": [0, 65535], "take you at your word and goe indeede hauing": [0, 65535], "you at your word and goe indeede hauing so": [0, 65535], "at your word and goe indeede hauing so good": [0, 65535], "your word and goe indeede hauing so good a": [0, 65535], "word and goe indeede hauing so good a meane": [0, 65535], "and goe indeede hauing so good a meane exit": [0, 65535], "goe indeede hauing so good a meane exit dromio": [0, 65535], "indeede hauing so good a meane exit dromio ant": [0, 65535], "hauing so good a meane exit dromio ant a": [0, 65535], "so good a meane exit dromio ant a trustie": [0, 65535], "good a meane exit dromio ant a trustie villaine": [0, 65535], "a meane exit dromio ant a trustie villaine sir": [0, 65535], "meane exit dromio ant a trustie villaine sir that": [0, 65535], "exit dromio ant a trustie villaine sir that very": [0, 65535], "dromio ant a trustie villaine sir that very oft": [0, 65535], "ant a trustie villaine sir that very oft when": [0, 65535], "a trustie villaine sir that very oft when i": [0, 65535], "trustie villaine sir that very oft when i am": [0, 65535], "villaine sir that very oft when i am dull": [0, 65535], "sir that very oft when i am dull with": [0, 65535], "that very oft when i am dull with care": [0, 65535], "very oft when i am dull with care and": [0, 65535], "oft when i am dull with care and melancholly": [0, 65535], "when i am dull with care and melancholly lightens": [0, 65535], "i am dull with care and melancholly lightens my": [0, 65535], "am dull with care and melancholly lightens my humour": [0, 65535], "dull with care and melancholly lightens my humour with": [0, 65535], "with care and melancholly lightens my humour with his": [0, 65535], "care and melancholly lightens my humour with his merry": [0, 65535], "and melancholly lightens my humour with his merry iests": [0, 65535], "melancholly lightens my humour with his merry iests what": [0, 65535], "lightens my humour with his merry iests what will": [0, 65535], "my humour with his merry iests what will you": [0, 65535], "humour with his merry iests what will you walke": [0, 65535], "with his merry iests what will you walke with": [0, 65535], "his merry iests what will you walke with me": [0, 65535], "merry iests what will you walke with me about": [0, 65535], "iests what will you walke with me about the": [0, 65535], "what will you walke with me about the towne": [0, 65535], "will you walke with me about the towne and": [0, 65535], "you walke with me about the towne and then": [0, 65535], "walke with me about the towne and then goe": [0, 65535], "with me about the towne and then goe to": [0, 65535], "me about the towne and then goe to my": [0, 65535], "about the towne and then goe to my inne": [0, 65535], "the towne and then goe to my inne and": [0, 65535], "towne and then goe to my inne and dine": [0, 65535], "and then goe to my inne and dine with": [0, 65535], "then goe to my inne and dine with me": [0, 65535], "goe to my inne and dine with me e": [0, 65535], "to my inne and dine with me e mar": [0, 65535], "my inne and dine with me e mar i": [0, 65535], "inne and dine with me e mar i am": [0, 65535], "and dine with me e mar i am inuited": [0, 65535], "dine with me e mar i am inuited sir": [0, 65535], "with me e mar i am inuited sir to": [0, 65535], "me e mar i am inuited sir to certaine": [0, 65535], "e mar i am inuited sir to certaine marchants": [0, 65535], "mar i am inuited sir to certaine marchants of": [0, 65535], "i am inuited sir to certaine marchants of whom": [0, 65535], "am inuited sir to certaine marchants of whom i": [0, 65535], "inuited sir to certaine marchants of whom i hope": [0, 65535], "sir to certaine marchants of whom i hope to": [0, 65535], "to certaine marchants of whom i hope to make": [0, 65535], "certaine marchants of whom i hope to make much": [0, 65535], "marchants of whom i hope to make much benefit": [0, 65535], "of whom i hope to make much benefit i": [0, 65535], "whom i hope to make much benefit i craue": [0, 65535], "i hope to make much benefit i craue your": [0, 65535], "hope to make much benefit i craue your pardon": [0, 65535], "to make much benefit i craue your pardon soone": [0, 65535], "make much benefit i craue your pardon soone at": [0, 65535], "much benefit i craue your pardon soone at fiue": [0, 65535], "benefit i craue your pardon soone at fiue a": [0, 65535], "i craue your pardon soone at fiue a clocke": [0, 65535], "craue your pardon soone at fiue a clocke please": [0, 65535], "your pardon soone at fiue a clocke please you": [0, 65535], "pardon soone at fiue a clocke please you ile": [0, 65535], "soone at fiue a clocke please you ile meete": [0, 65535], "at fiue a clocke please you ile meete with": [0, 65535], "fiue a clocke please you ile meete with you": [0, 65535], "a clocke please you ile meete with you vpon": [0, 65535], "clocke please you ile meete with you vpon the": [0, 65535], "please you ile meete with you vpon the mart": [0, 65535], "you ile meete with you vpon the mart and": [0, 65535], "ile meete with you vpon the mart and afterward": [0, 65535], "meete with you vpon the mart and afterward consort": [0, 65535], "with you vpon the mart and afterward consort you": [0, 65535], "you vpon the mart and afterward consort you till": [0, 65535], "vpon the mart and afterward consort you till bed": [0, 65535], "the mart and afterward consort you till bed time": [0, 65535], "mart and afterward consort you till bed time my": [0, 65535], "and afterward consort you till bed time my present": [0, 65535], "afterward consort you till bed time my present businesse": [0, 65535], "consort you till bed time my present businesse cals": [0, 65535], "you till bed time my present businesse cals me": [0, 65535], "till bed time my present businesse cals me from": [0, 65535], "bed time my present businesse cals me from you": [0, 65535], "time my present businesse cals me from you now": [0, 65535], "my present businesse cals me from you now ant": [0, 65535], "present businesse cals me from you now ant farewell": [0, 65535], "businesse cals me from you now ant farewell till": [0, 65535], "cals me from you now ant farewell till then": [0, 65535], "me from you now ant farewell till then i": [0, 65535], "from you now ant farewell till then i will": [0, 65535], "you now ant farewell till then i will goe": [0, 65535], "now ant farewell till then i will goe loose": [0, 65535], "ant farewell till then i will goe loose my": [0, 65535], "farewell till then i will goe loose my selfe": [0, 65535], "till then i will goe loose my selfe and": [0, 65535], "then i will goe loose my selfe and wander": [0, 65535], "i will goe loose my selfe and wander vp": [0, 65535], "will goe loose my selfe and wander vp and": [0, 65535], "goe loose my selfe and wander vp and downe": [0, 65535], "loose my selfe and wander vp and downe to": [0, 65535], "my selfe and wander vp and downe to view": [0, 65535], "selfe and wander vp and downe to view the": [0, 65535], "and wander vp and downe to view the citie": [0, 65535], "wander vp and downe to view the citie e": [0, 65535], "vp and downe to view the citie e mar": [0, 65535], "and downe to view the citie e mar sir": [0, 65535], "downe to view the citie e mar sir i": [0, 65535], "to view the citie e mar sir i commend": [0, 65535], "view the citie e mar sir i commend you": [0, 65535], "the citie e mar sir i commend you to": [0, 65535], "citie e mar sir i commend you to your": [0, 65535], "e mar sir i commend you to your owne": [0, 65535], "mar sir i commend you to your owne content": [0, 65535], "sir i commend you to your owne content exeunt": [0, 65535], "i commend you to your owne content exeunt ant": [0, 65535], "commend you to your owne content exeunt ant he": [0, 65535], "you to your owne content exeunt ant he that": [0, 65535], "to your owne content exeunt ant he that commends": [0, 65535], "your owne content exeunt ant he that commends me": [0, 65535], "owne content exeunt ant he that commends me to": [0, 65535], "content exeunt ant he that commends me to mine": [0, 65535], "exeunt ant he that commends me to mine owne": [0, 65535], "ant he that commends me to mine owne content": [0, 65535], "he that commends me to mine owne content commends": [0, 65535], "that commends me to mine owne content commends me": [0, 65535], "commends me to mine owne content commends me to": [0, 65535], "me to mine owne content commends me to the": [0, 65535], "to mine owne content commends me to the thing": [0, 65535], "mine owne content commends me to the thing i": [0, 65535], "owne content commends me to the thing i cannot": [0, 65535], "content commends me to the thing i cannot get": [0, 65535], "commends me to the thing i cannot get i": [0, 65535], "me to the thing i cannot get i to": [0, 65535], "to the thing i cannot get i to the": [0, 65535], "the thing i cannot get i to the world": [0, 65535], "thing i cannot get i to the world am": [0, 65535], "i cannot get i to the world am like": [0, 65535], "cannot get i to the world am like a": [0, 65535], "get i to the world am like a drop": [0, 65535], "i to the world am like a drop of": [0, 65535], "to the world am like a drop of water": [0, 65535], "the world am like a drop of water that": [0, 65535], "world am like a drop of water that in": [0, 65535], "am like a drop of water that in the": [0, 65535], "like a drop of water that in the ocean": [0, 65535], "a drop of water that in the ocean seekes": [0, 65535], "drop of water that in the ocean seekes another": [0, 65535], "of water that in the ocean seekes another drop": [0, 65535], "water that in the ocean seekes another drop who": [0, 65535], "that in the ocean seekes another drop who falling": [0, 65535], "in the ocean seekes another drop who falling there": [0, 65535], "the ocean seekes another drop who falling there to": [0, 65535], "ocean seekes another drop who falling there to finde": [0, 65535], "seekes another drop who falling there to finde his": [0, 65535], "another drop who falling there to finde his fellow": [0, 65535], "drop who falling there to finde his fellow forth": [0, 65535], "who falling there to finde his fellow forth vnseene": [0, 65535], "falling there to finde his fellow forth vnseene inquisitiue": [0, 65535], "there to finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "to finde his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so i to": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i to finde": [0, 65535], "vnseene inquisitiue confounds himselfe so i to finde a": [0, 65535], "inquisitiue confounds himselfe so i to finde a mother": [0, 65535], "confounds himselfe so i to finde a mother and": [0, 65535], "himselfe so i to finde a mother and a": [0, 65535], "so i to finde a mother and a brother": [0, 65535], "i to finde a mother and a brother in": [0, 65535], "to finde a mother and a brother in quest": [0, 65535], "finde a mother and a brother in quest of": [0, 65535], "a mother and a brother in quest of them": [0, 65535], "mother and a brother in quest of them vnhappie": [0, 65535], "and a brother in quest of them vnhappie a": [0, 65535], "a brother in quest of them vnhappie a loose": [0, 65535], "brother in quest of them vnhappie a loose my": [0, 65535], "in quest of them vnhappie a loose my selfe": [0, 65535], "quest of them vnhappie a loose my selfe enter": [0, 65535], "of them vnhappie a loose my selfe enter dromio": [0, 65535], "them vnhappie a loose my selfe enter dromio of": [0, 65535], "vnhappie a loose my selfe enter dromio of ephesus": [0, 65535], "a loose my selfe enter dromio of ephesus here": [0, 65535], "loose my selfe enter dromio of ephesus here comes": [0, 65535], "my selfe enter dromio of ephesus here comes the": [0, 65535], "selfe enter dromio of ephesus here comes the almanacke": [0, 65535], "enter dromio of ephesus here comes the almanacke of": [0, 65535], "dromio of ephesus here comes the almanacke of my": [0, 65535], "of ephesus here comes the almanacke of my true": [0, 65535], "ephesus here comes the almanacke of my true date": [0, 65535], "here comes the almanacke of my true date what": [0, 65535], "comes the almanacke of my true date what now": [0, 65535], "the almanacke of my true date what now how": [0, 65535], "almanacke of my true date what now how chance": [0, 65535], "of my true date what now how chance thou": [0, 65535], "my true date what now how chance thou art": [0, 65535], "true date what now how chance thou art return'd": [0, 65535], "date what now how chance thou art return'd so": [0, 65535], "what now how chance thou art return'd so soone": [0, 65535], "now how chance thou art return'd so soone e": [0, 65535], "how chance thou art return'd so soone e dro": [0, 65535], "chance thou art return'd so soone e dro return'd": [0, 65535], "thou art return'd so soone e dro return'd so": [0, 65535], "art return'd so soone e dro return'd so soone": [0, 65535], "return'd so soone e dro return'd so soone rather": [0, 65535], "so soone e dro return'd so soone rather approacht": [0, 65535], "soone e dro return'd so soone rather approacht too": [0, 65535], "e dro return'd so soone rather approacht too late": [0, 65535], "dro return'd so soone rather approacht too late the": [0, 65535], "return'd so soone rather approacht too late the capon": [0, 65535], "so soone rather approacht too late the capon burnes": [0, 65535], "soone rather approacht too late the capon burnes the": [0, 65535], "rather approacht too late the capon burnes the pig": [0, 65535], "approacht too late the capon burnes the pig fals": [0, 65535], "too late the capon burnes the pig fals from": [0, 65535], "late the capon burnes the pig fals from the": [0, 65535], "the capon burnes the pig fals from the spit": [0, 65535], "capon burnes the pig fals from the spit the": [0, 65535], "burnes the pig fals from the spit the clocke": [0, 65535], "the pig fals from the spit the clocke hath": [0, 65535], "pig fals from the spit the clocke hath strucken": [0, 65535], "fals from the spit the clocke hath strucken twelue": [0, 65535], "from the spit the clocke hath strucken twelue vpon": [0, 65535], "the spit the clocke hath strucken twelue vpon the": [0, 65535], "spit the clocke hath strucken twelue vpon the bell": [0, 65535], "the clocke hath strucken twelue vpon the bell my": [0, 65535], "clocke hath strucken twelue vpon the bell my mistris": [0, 65535], "hath strucken twelue vpon the bell my mistris made": [0, 65535], "strucken twelue vpon the bell my mistris made it": [0, 65535], "twelue vpon the bell my mistris made it one": [0, 65535], "vpon the bell my mistris made it one vpon": [0, 65535], "the bell my mistris made it one vpon my": [0, 65535], "bell my mistris made it one vpon my cheeke": [0, 65535], "my mistris made it one vpon my cheeke she": [0, 65535], "mistris made it one vpon my cheeke she is": [0, 65535], "made it one vpon my cheeke she is so": [0, 65535], "it one vpon my cheeke she is so hot": [0, 65535], "one vpon my cheeke she is so hot because": [0, 65535], "vpon my cheeke she is so hot because the": [0, 65535], "my cheeke she is so hot because the meate": [0, 65535], "cheeke she is so hot because the meate is": [0, 65535], "she is so hot because the meate is colde": [0, 65535], "is so hot because the meate is colde the": [0, 65535], "so hot because the meate is colde the meate": [0, 65535], "hot because the meate is colde the meate is": [0, 65535], "because the meate is colde the meate is colde": [0, 65535], "the meate is colde the meate is colde because": [0, 65535], "meate is colde the meate is colde because you": [0, 65535], "is colde the meate is colde because you come": [0, 65535], "colde the meate is colde because you come not": [0, 65535], "the meate is colde because you come not home": [0, 65535], "meate is colde because you come not home you": [0, 65535], "is colde because you come not home you come": [0, 65535], "colde because you come not home you come not": [0, 65535], "because you come not home you come not home": [0, 65535], "you come not home you come not home because": [0, 65535], "come not home you come not home because you": [0, 65535], "not home you come not home because you haue": [0, 65535], "home you come not home because you haue no": [0, 65535], "you come not home because you haue no stomacke": [0, 65535], "come not home because you haue no stomacke you": [0, 65535], "not home because you haue no stomacke you haue": [0, 65535], "home because you haue no stomacke you haue no": [0, 65535], "because you haue no stomacke you haue no stomacke": [0, 65535], "you haue no stomacke you haue no stomacke hauing": [0, 65535], "haue no stomacke you haue no stomacke hauing broke": [0, 65535], "no stomacke you haue no stomacke hauing broke your": [0, 65535], "stomacke you haue no stomacke hauing broke your fast": [0, 65535], "you haue no stomacke hauing broke your fast but": [0, 65535], "haue no stomacke hauing broke your fast but we": [0, 65535], "no stomacke hauing broke your fast but we that": [0, 65535], "stomacke hauing broke your fast but we that know": [0, 65535], "hauing broke your fast but we that know what": [0, 65535], "broke your fast but we that know what 'tis": [0, 65535], "your fast but we that know what 'tis to": [0, 65535], "fast but we that know what 'tis to fast": [0, 65535], "but we that know what 'tis to fast and": [0, 65535], "we that know what 'tis to fast and pray": [0, 65535], "that know what 'tis to fast and pray are": [0, 65535], "know what 'tis to fast and pray are penitent": [0, 65535], "what 'tis to fast and pray are penitent for": [0, 65535], "'tis to fast and pray are penitent for your": [0, 65535], "to fast and pray are penitent for your default": [0, 65535], "fast and pray are penitent for your default to": [0, 65535], "and pray are penitent for your default to day": [0, 65535], "pray are penitent for your default to day ant": [0, 65535], "are penitent for your default to day ant stop": [0, 65535], "penitent for your default to day ant stop in": [0, 65535], "for your default to day ant stop in your": [0, 65535], "your default to day ant stop in your winde": [0, 65535], "default to day ant stop in your winde sir": [0, 65535], "to day ant stop in your winde sir tell": [0, 65535], "day ant stop in your winde sir tell me": [0, 65535], "ant stop in your winde sir tell me this": [0, 65535], "stop in your winde sir tell me this i": [0, 65535], "in your winde sir tell me this i pray": [0, 65535], "your winde sir tell me this i pray where": [0, 65535], "winde sir tell me this i pray where haue": [0, 65535], "sir tell me this i pray where haue you": [0, 65535], "tell me this i pray where haue you left": [0, 65535], "me this i pray where haue you left the": [0, 65535], "this i pray where haue you left the mony": [0, 65535], "i pray where haue you left the mony that": [0, 65535], "pray where haue you left the mony that i": [0, 65535], "where haue you left the mony that i gaue": [0, 65535], "haue you left the mony that i gaue you": [0, 65535], "you left the mony that i gaue you e": [0, 65535], "left the mony that i gaue you e dro": [0, 65535], "the mony that i gaue you e dro oh": [0, 65535], "mony that i gaue you e dro oh sixe": [0, 65535], "that i gaue you e dro oh sixe pence": [0, 65535], "i gaue you e dro oh sixe pence that": [0, 65535], "gaue you e dro oh sixe pence that i": [0, 65535], "you e dro oh sixe pence that i had": [0, 65535], "e dro oh sixe pence that i had a": [0, 65535], "dro oh sixe pence that i had a wensday": [0, 65535], "oh sixe pence that i had a wensday last": [0, 65535], "sixe pence that i had a wensday last to": [0, 65535], "pence that i had a wensday last to pay": [0, 65535], "that i had a wensday last to pay the": [0, 65535], "i had a wensday last to pay the sadler": [0, 65535], "had a wensday last to pay the sadler for": [0, 65535], "a wensday last to pay the sadler for my": [0, 65535], "wensday last to pay the sadler for my mistris": [0, 65535], "last to pay the sadler for my mistris crupper": [0, 65535], "to pay the sadler for my mistris crupper the": [0, 65535], "pay the sadler for my mistris crupper the sadler": [0, 65535], "the sadler for my mistris crupper the sadler had": [0, 65535], "sadler for my mistris crupper the sadler had it": [0, 65535], "for my mistris crupper the sadler had it sir": [0, 65535], "my mistris crupper the sadler had it sir i": [0, 65535], "mistris crupper the sadler had it sir i kept": [0, 65535], "crupper the sadler had it sir i kept it": [0, 65535], "the sadler had it sir i kept it not": [0, 65535], "sadler had it sir i kept it not ant": [0, 65535], "had it sir i kept it not ant i": [0, 65535], "it sir i kept it not ant i am": [0, 65535], "sir i kept it not ant i am not": [0, 65535], "i kept it not ant i am not in": [0, 65535], "kept it not ant i am not in a": [0, 65535], "it not ant i am not in a sportiue": [0, 65535], "not ant i am not in a sportiue humor": [0, 65535], "ant i am not in a sportiue humor now": [0, 65535], "i am not in a sportiue humor now tell": [0, 65535], "am not in a sportiue humor now tell me": [0, 65535], "not in a sportiue humor now tell me and": [0, 65535], "in a sportiue humor now tell me and dally": [0, 65535], "a sportiue humor now tell me and dally not": [0, 65535], "sportiue humor now tell me and dally not where": [0, 65535], "humor now tell me and dally not where is": [0, 65535], "now tell me and dally not where is the": [0, 65535], "tell me and dally not where is the monie": [0, 65535], "me and dally not where is the monie we": [0, 65535], "and dally not where is the monie we being": [0, 65535], "dally not where is the monie we being strangers": [0, 65535], "not where is the monie we being strangers here": [0, 65535], "where is the monie we being strangers here how": [0, 65535], "is the monie we being strangers here how dar'st": [0, 65535], "the monie we being strangers here how dar'st thou": [0, 65535], "monie we being strangers here how dar'st thou trust": [0, 65535], "we being strangers here how dar'st thou trust so": [0, 65535], "being strangers here how dar'st thou trust so great": [0, 65535], "strangers here how dar'st thou trust so great a": [0, 65535], "here how dar'st thou trust so great a charge": [0, 65535], "how dar'st thou trust so great a charge from": [0, 65535], "dar'st thou trust so great a charge from thine": [0, 65535], "thou trust so great a charge from thine owne": [0, 65535], "trust so great a charge from thine owne custodie": [0, 65535], "so great a charge from thine owne custodie e": [0, 65535], "great a charge from thine owne custodie e dro": [0, 65535], "a charge from thine owne custodie e dro i": [0, 65535], "charge from thine owne custodie e dro i pray": [0, 65535], "from thine owne custodie e dro i pray you": [0, 65535], "thine owne custodie e dro i pray you iest": [0, 65535], "owne custodie e dro i pray you iest sir": [0, 65535], "custodie e dro i pray you iest sir as": [0, 65535], "e dro i pray you iest sir as you": [0, 65535], "dro i pray you iest sir as you sit": [0, 65535], "i pray you iest sir as you sit at": [0, 65535], "pray you iest sir as you sit at dinner": [0, 65535], "you iest sir as you sit at dinner i": [0, 65535], "iest sir as you sit at dinner i from": [0, 65535], "sir as you sit at dinner i from my": [0, 65535], "as you sit at dinner i from my mistris": [0, 65535], "you sit at dinner i from my mistris come": [0, 65535], "sit at dinner i from my mistris come to": [0, 65535], "at dinner i from my mistris come to you": [0, 65535], "dinner i from my mistris come to you in": [0, 65535], "i from my mistris come to you in post": [0, 65535], "from my mistris come to you in post if": [0, 65535], "my mistris come to you in post if i": [0, 65535], "mistris come to you in post if i returne": [0, 65535], "come to you in post if i returne i": [0, 65535], "to you in post if i returne i shall": [0, 65535], "you in post if i returne i shall be": [0, 65535], "in post if i returne i shall be post": [0, 65535], "post if i returne i shall be post indeede": [0, 65535], "if i returne i shall be post indeede for": [0, 65535], "i returne i shall be post indeede for she": [0, 65535], "returne i shall be post indeede for she will": [0, 65535], "i shall be post indeede for she will scoure": [0, 65535], "shall be post indeede for she will scoure your": [0, 65535], "be post indeede for she will scoure your fault": [0, 65535], "post indeede for she will scoure your fault vpon": [0, 65535], "indeede for she will scoure your fault vpon my": [0, 65535], "for she will scoure your fault vpon my pate": [0, 65535], "she will scoure your fault vpon my pate me": [0, 65535], "will scoure your fault vpon my pate me thinkes": [0, 65535], "scoure your fault vpon my pate me thinkes your": [0, 65535], "your fault vpon my pate me thinkes your maw": [0, 65535], "fault vpon my pate me thinkes your maw like": [0, 65535], "vpon my pate me thinkes your maw like mine": [0, 65535], "my pate me thinkes your maw like mine should": [0, 65535], "pate me thinkes your maw like mine should be": [0, 65535], "me thinkes your maw like mine should be your": [0, 65535], "thinkes your maw like mine should be your cooke": [0, 65535], "your maw like mine should be your cooke and": [0, 65535], "maw like mine should be your cooke and strike": [0, 65535], "like mine should be your cooke and strike you": [0, 65535], "mine should be your cooke and strike you home": [0, 65535], "should be your cooke and strike you home without": [0, 65535], "be your cooke and strike you home without a": [0, 65535], "your cooke and strike you home without a messenger": [0, 65535], "cooke and strike you home without a messenger ant": [0, 65535], "and strike you home without a messenger ant come": [0, 65535], "strike you home without a messenger ant come dromio": [0, 65535], "you home without a messenger ant come dromio come": [0, 65535], "home without a messenger ant come dromio come these": [0, 65535], "without a messenger ant come dromio come these iests": [0, 65535], "a messenger ant come dromio come these iests are": [0, 65535], "messenger ant come dromio come these iests are out": [0, 65535], "ant come dromio come these iests are out of": [0, 65535], "come dromio come these iests are out of season": [0, 65535], "dromio come these iests are out of season reserue": [0, 65535], "come these iests are out of season reserue them": [0, 65535], "these iests are out of season reserue them till": [0, 65535], "iests are out of season reserue them till a": [0, 65535], "are out of season reserue them till a merrier": [0, 65535], "out of season reserue them till a merrier houre": [0, 65535], "of season reserue them till a merrier houre then": [0, 65535], "season reserue them till a merrier houre then this": [0, 65535], "reserue them till a merrier houre then this where": [0, 65535], "them till a merrier houre then this where is": [0, 65535], "till a merrier houre then this where is the": [0, 65535], "a merrier houre then this where is the gold": [0, 65535], "merrier houre then this where is the gold i": [0, 65535], "houre then this where is the gold i gaue": [0, 65535], "then this where is the gold i gaue in": [0, 65535], "this where is the gold i gaue in charge": [0, 65535], "where is the gold i gaue in charge to": [0, 65535], "is the gold i gaue in charge to thee": [0, 65535], "the gold i gaue in charge to thee e": [0, 65535], "gold i gaue in charge to thee e dro": [0, 65535], "i gaue in charge to thee e dro to": [0, 65535], "gaue in charge to thee e dro to me": [0, 65535], "in charge to thee e dro to me sir": [0, 65535], "charge to thee e dro to me sir why": [0, 65535], "to thee e dro to me sir why you": [0, 65535], "thee e dro to me sir why you gaue": [0, 65535], "e dro to me sir why you gaue no": [0, 65535], "dro to me sir why you gaue no gold": [0, 65535], "to me sir why you gaue no gold to": [0, 65535], "me sir why you gaue no gold to me": [0, 65535], "sir why you gaue no gold to me ant": [0, 65535], "why you gaue no gold to me ant come": [0, 65535], "you gaue no gold to me ant come on": [0, 65535], "gaue no gold to me ant come on sir": [0, 65535], "no gold to me ant come on sir knaue": [0, 65535], "gold to me ant come on sir knaue haue": [0, 65535], "to me ant come on sir knaue haue done": [0, 65535], "me ant come on sir knaue haue done your": [0, 65535], "ant come on sir knaue haue done your foolishnes": [0, 65535], "come on sir knaue haue done your foolishnes and": [0, 65535], "on sir knaue haue done your foolishnes and tell": [0, 65535], "sir knaue haue done your foolishnes and tell me": [0, 65535], "knaue haue done your foolishnes and tell me how": [0, 65535], "haue done your foolishnes and tell me how thou": [0, 65535], "done your foolishnes and tell me how thou hast": [0, 65535], "your foolishnes and tell me how thou hast dispos'd": [0, 65535], "foolishnes and tell me how thou hast dispos'd thy": [0, 65535], "and tell me how thou hast dispos'd thy charge": [0, 65535], "tell me how thou hast dispos'd thy charge e": [0, 65535], "me how thou hast dispos'd thy charge e dro": [0, 65535], "how thou hast dispos'd thy charge e dro my": [0, 65535], "thou hast dispos'd thy charge e dro my charge": [0, 65535], "hast dispos'd thy charge e dro my charge was": [0, 65535], "dispos'd thy charge e dro my charge was but": [0, 65535], "thy charge e dro my charge was but to": [0, 65535], "charge e dro my charge was but to fetch": [0, 65535], "e dro my charge was but to fetch you": [0, 65535], "dro my charge was but to fetch you from": [0, 65535], "my charge was but to fetch you from the": [0, 65535], "charge was but to fetch you from the mart": [0, 65535], "was but to fetch you from the mart home": [0, 65535], "but to fetch you from the mart home to": [0, 65535], "to fetch you from the mart home to your": [0, 65535], "fetch you from the mart home to your house": [0, 65535], "you from the mart home to your house the": [0, 65535], "from the mart home to your house the ph\u0153nix": [0, 65535], "the mart home to your house the ph\u0153nix sir": [0, 65535], "mart home to your house the ph\u0153nix sir to": [0, 65535], "home to your house the ph\u0153nix sir to dinner": [0, 65535], "to your house the ph\u0153nix sir to dinner my": [0, 65535], "your house the ph\u0153nix sir to dinner my mistris": [0, 65535], "house the ph\u0153nix sir to dinner my mistris and": [0, 65535], "the ph\u0153nix sir to dinner my mistris and her": [0, 65535], "ph\u0153nix sir to dinner my mistris and her sister": [0, 65535], "sir to dinner my mistris and her sister staies": [0, 65535], "to dinner my mistris and her sister staies for": [0, 65535], "dinner my mistris and her sister staies for you": [0, 65535], "my mistris and her sister staies for you ant": [0, 65535], "mistris and her sister staies for you ant now": [0, 65535], "and her sister staies for you ant now as": [0, 65535], "her sister staies for you ant now as i": [0, 65535], "sister staies for you ant now as i am": [0, 65535], "staies for you ant now as i am a": [0, 65535], "for you ant now as i am a christian": [0, 65535], "you ant now as i am a christian answer": [0, 65535], "ant now as i am a christian answer me": [0, 65535], "now as i am a christian answer me in": [0, 65535], "as i am a christian answer me in what": [0, 65535], "i am a christian answer me in what safe": [0, 65535], "am a christian answer me in what safe place": [0, 65535], "a christian answer me in what safe place you": [0, 65535], "christian answer me in what safe place you haue": [0, 65535], "answer me in what safe place you haue bestow'd": [0, 65535], "me in what safe place you haue bestow'd my": [0, 65535], "in what safe place you haue bestow'd my monie": [0, 65535], "what safe place you haue bestow'd my monie or": [0, 65535], "safe place you haue bestow'd my monie or i": [0, 65535], "place you haue bestow'd my monie or i shall": [0, 65535], "you haue bestow'd my monie or i shall breake": [0, 65535], "haue bestow'd my monie or i shall breake that": [0, 65535], "bestow'd my monie or i shall breake that merrie": [0, 65535], "my monie or i shall breake that merrie sconce": [0, 65535], "monie or i shall breake that merrie sconce of": [0, 65535], "or i shall breake that merrie sconce of yours": [0, 65535], "i shall breake that merrie sconce of yours that": [0, 65535], "shall breake that merrie sconce of yours that stands": [0, 65535], "breake that merrie sconce of yours that stands on": [0, 65535], "that merrie sconce of yours that stands on tricks": [0, 65535], "merrie sconce of yours that stands on tricks when": [0, 65535], "sconce of yours that stands on tricks when i": [0, 65535], "of yours that stands on tricks when i am": [0, 65535], "yours that stands on tricks when i am vndispos'd": [0, 65535], "that stands on tricks when i am vndispos'd where": [0, 65535], "stands on tricks when i am vndispos'd where is": [0, 65535], "on tricks when i am vndispos'd where is the": [0, 65535], "tricks when i am vndispos'd where is the thousand": [0, 65535], "when i am vndispos'd where is the thousand markes": [0, 65535], "i am vndispos'd where is the thousand markes thou": [0, 65535], "am vndispos'd where is the thousand markes thou hadst": [0, 65535], "vndispos'd where is the thousand markes thou hadst of": [0, 65535], "where is the thousand markes thou hadst of me": [0, 65535], "is the thousand markes thou hadst of me e": [0, 65535], "the thousand markes thou hadst of me e dro": [0, 65535], "thousand markes thou hadst of me e dro i": [0, 65535], "markes thou hadst of me e dro i haue": [0, 65535], "thou hadst of me e dro i haue some": [0, 65535], "hadst of me e dro i haue some markes": [0, 65535], "of me e dro i haue some markes of": [0, 65535], "me e dro i haue some markes of yours": [0, 65535], "e dro i haue some markes of yours vpon": [0, 65535], "dro i haue some markes of yours vpon my": [0, 65535], "i haue some markes of yours vpon my pate": [0, 65535], "haue some markes of yours vpon my pate some": [0, 65535], "some markes of yours vpon my pate some of": [0, 65535], "markes of yours vpon my pate some of my": [0, 65535], "of yours vpon my pate some of my mistris": [0, 65535], "yours vpon my pate some of my mistris markes": [0, 65535], "vpon my pate some of my mistris markes vpon": [0, 65535], "my pate some of my mistris markes vpon my": [0, 65535], "pate some of my mistris markes vpon my shoulders": [0, 65535], "some of my mistris markes vpon my shoulders but": [0, 65535], "of my mistris markes vpon my shoulders but not": [0, 65535], "my mistris markes vpon my shoulders but not a": [0, 65535], "mistris markes vpon my shoulders but not a thousand": [0, 65535], "markes vpon my shoulders but not a thousand markes": [0, 65535], "vpon my shoulders but not a thousand markes betweene": [0, 65535], "my shoulders but not a thousand markes betweene you": [0, 65535], "shoulders but not a thousand markes betweene you both": [0, 65535], "but not a thousand markes betweene you both if": [0, 65535], "not a thousand markes betweene you both if i": [0, 65535], "a thousand markes betweene you both if i should": [0, 65535], "thousand markes betweene you both if i should pay": [0, 65535], "markes betweene you both if i should pay your": [0, 65535], "betweene you both if i should pay your worship": [0, 65535], "you both if i should pay your worship those": [0, 65535], "both if i should pay your worship those againe": [0, 65535], "if i should pay your worship those againe perchance": [0, 65535], "i should pay your worship those againe perchance you": [0, 65535], "should pay your worship those againe perchance you will": [0, 65535], "pay your worship those againe perchance you will not": [0, 65535], "your worship those againe perchance you will not beare": [0, 65535], "worship those againe perchance you will not beare them": [0, 65535], "those againe perchance you will not beare them patiently": [0, 65535], "againe perchance you will not beare them patiently ant": [0, 65535], "perchance you will not beare them patiently ant thy": [0, 65535], "you will not beare them patiently ant thy mistris": [0, 65535], "will not beare them patiently ant thy mistris markes": [0, 65535], "not beare them patiently ant thy mistris markes what": [0, 65535], "beare them patiently ant thy mistris markes what mistris": [0, 65535], "them patiently ant thy mistris markes what mistris slaue": [0, 65535], "patiently ant thy mistris markes what mistris slaue hast": [0, 65535], "ant thy mistris markes what mistris slaue hast thou": [0, 65535], "thy mistris markes what mistris slaue hast thou e": [0, 65535], "mistris markes what mistris slaue hast thou e dro": [0, 65535], "markes what mistris slaue hast thou e dro your": [0, 65535], "what mistris slaue hast thou e dro your worships": [0, 65535], "mistris slaue hast thou e dro your worships wife": [0, 65535], "slaue hast thou e dro your worships wife my": [0, 65535], "hast thou e dro your worships wife my mistris": [0, 65535], "thou e dro your worships wife my mistris at": [0, 65535], "e dro your worships wife my mistris at the": [0, 65535], "dro your worships wife my mistris at the ph\u0153nix": [0, 65535], "your worships wife my mistris at the ph\u0153nix she": [0, 65535], "worships wife my mistris at the ph\u0153nix she that": [0, 65535], "wife my mistris at the ph\u0153nix she that doth": [0, 65535], "my mistris at the ph\u0153nix she that doth fast": [0, 65535], "mistris at the ph\u0153nix she that doth fast till": [0, 65535], "at the ph\u0153nix she that doth fast till you": [0, 65535], "the ph\u0153nix she that doth fast till you come": [0, 65535], "ph\u0153nix she that doth fast till you come home": [0, 65535], "she that doth fast till you come home to": [0, 65535], "that doth fast till you come home to dinner": [0, 65535], "doth fast till you come home to dinner and": [0, 65535], "fast till you come home to dinner and praies": [0, 65535], "till you come home to dinner and praies that": [0, 65535], "you come home to dinner and praies that you": [0, 65535], "come home to dinner and praies that you will": [0, 65535], "home to dinner and praies that you will hie": [0, 65535], "to dinner and praies that you will hie you": [0, 65535], "dinner and praies that you will hie you home": [0, 65535], "and praies that you will hie you home to": [0, 65535], "praies that you will hie you home to dinner": [0, 65535], "that you will hie you home to dinner ant": [0, 65535], "you will hie you home to dinner ant what": [0, 65535], "will hie you home to dinner ant what wilt": [0, 65535], "hie you home to dinner ant what wilt thou": [0, 65535], "you home to dinner ant what wilt thou flout": [0, 65535], "home to dinner ant what wilt thou flout me": [0, 65535], "to dinner ant what wilt thou flout me thus": [0, 65535], "dinner ant what wilt thou flout me thus vnto": [0, 65535], "ant what wilt thou flout me thus vnto my": [0, 65535], "what wilt thou flout me thus vnto my face": [0, 65535], "wilt thou flout me thus vnto my face being": [0, 65535], "thou flout me thus vnto my face being forbid": [0, 65535], "flout me thus vnto my face being forbid there": [0, 65535], "me thus vnto my face being forbid there take": [0, 65535], "thus vnto my face being forbid there take you": [0, 65535], "vnto my face being forbid there take you that": [0, 65535], "my face being forbid there take you that sir": [0, 65535], "face being forbid there take you that sir knaue": [0, 65535], "being forbid there take you that sir knaue e": [0, 65535], "forbid there take you that sir knaue e dro": [0, 65535], "there take you that sir knaue e dro what": [0, 65535], "take you that sir knaue e dro what meane": [0, 65535], "you that sir knaue e dro what meane you": [0, 65535], "that sir knaue e dro what meane you sir": [0, 65535], "sir knaue e dro what meane you sir for": [0, 65535], "knaue e dro what meane you sir for god": [0, 65535], "e dro what meane you sir for god sake": [0, 65535], "dro what meane you sir for god sake hold": [0, 65535], "what meane you sir for god sake hold your": [0, 65535], "meane you sir for god sake hold your hands": [0, 65535], "you sir for god sake hold your hands nay": [0, 65535], "sir for god sake hold your hands nay and": [0, 65535], "for god sake hold your hands nay and you": [0, 65535], "god sake hold your hands nay and you will": [0, 65535], "sake hold your hands nay and you will not": [0, 65535], "hold your hands nay and you will not sir": [0, 65535], "your hands nay and you will not sir ile": [0, 65535], "hands nay and you will not sir ile take": [0, 65535], "nay and you will not sir ile take my": [0, 65535], "and you will not sir ile take my heeles": [0, 65535], "you will not sir ile take my heeles exeunt": [0, 65535], "will not sir ile take my heeles exeunt dromio": [0, 65535], "not sir ile take my heeles exeunt dromio ep": [0, 65535], "sir ile take my heeles exeunt dromio ep ant": [0, 65535], "ile take my heeles exeunt dromio ep ant vpon": [0, 65535], "take my heeles exeunt dromio ep ant vpon my": [0, 65535], "my heeles exeunt dromio ep ant vpon my life": [0, 65535], "heeles exeunt dromio ep ant vpon my life by": [0, 65535], "exeunt dromio ep ant vpon my life by some": [0, 65535], "dromio ep ant vpon my life by some deuise": [0, 65535], "ep ant vpon my life by some deuise or": [0, 65535], "ant vpon my life by some deuise or other": [0, 65535], "vpon my life by some deuise or other the": [0, 65535], "my life by some deuise or other the villaine": [0, 65535], "life by some deuise or other the villaine is": [0, 65535], "by some deuise or other the villaine is ore": [0, 65535], "some deuise or other the villaine is ore wrought": [0, 65535], "deuise or other the villaine is ore wrought of": [0, 65535], "or other the villaine is ore wrought of all": [0, 65535], "other the villaine is ore wrought of all my": [0, 65535], "the villaine is ore wrought of all my monie": [0, 65535], "villaine is ore wrought of all my monie they": [0, 65535], "is ore wrought of all my monie they say": [0, 65535], "ore wrought of all my monie they say this": [0, 65535], "wrought of all my monie they say this towne": [0, 65535], "of all my monie they say this towne is": [0, 65535], "all my monie they say this towne is full": [0, 65535], "my monie they say this towne is full of": [0, 65535], "monie they say this towne is full of cosenage": [0, 65535], "they say this towne is full of cosenage as": [0, 65535], "say this towne is full of cosenage as nimble": [0, 65535], "this towne is full of cosenage as nimble iuglers": [0, 65535], "towne is full of cosenage as nimble iuglers that": [0, 65535], "is full of cosenage as nimble iuglers that deceiue": [0, 65535], "full of cosenage as nimble iuglers that deceiue the": [0, 65535], "of cosenage as nimble iuglers that deceiue the eie": [0, 65535], "cosenage as nimble iuglers that deceiue the eie darke": [0, 65535], "as nimble iuglers that deceiue the eie darke working": [0, 65535], "nimble iuglers that deceiue the eie darke working sorcerers": [0, 65535], "iuglers that deceiue the eie darke working sorcerers that": [0, 65535], "that deceiue the eie darke working sorcerers that change": [0, 65535], "deceiue the eie darke working sorcerers that change the": [0, 65535], "the eie darke working sorcerers that change the minde": [0, 65535], "eie darke working sorcerers that change the minde soule": [0, 65535], "darke working sorcerers that change the minde soule killing": [0, 65535], "working sorcerers that change the minde soule killing witches": [0, 65535], "sorcerers that change the minde soule killing witches that": [0, 65535], "that change the minde soule killing witches that deforme": [0, 65535], "change the minde soule killing witches that deforme the": [0, 65535], "the minde soule killing witches that deforme the bodie": [0, 65535], "minde soule killing witches that deforme the bodie disguised": [0, 65535], "soule killing witches that deforme the bodie disguised cheaters": [0, 65535], "killing witches that deforme the bodie disguised cheaters prating": [0, 65535], "witches that deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "that deforme the bodie disguised cheaters prating mountebankes and": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes and manie": [0, 65535], "the bodie disguised cheaters prating mountebankes and manie such": [0, 65535], "bodie disguised cheaters prating mountebankes and manie such like": [0, 65535], "disguised cheaters prating mountebankes and manie such like liberties": [0, 65535], "cheaters prating mountebankes and manie such like liberties of": [0, 65535], "prating mountebankes and manie such like liberties of sinne": [0, 65535], "mountebankes and manie such like liberties of sinne if": [0, 65535], "and manie such like liberties of sinne if it": [0, 65535], "manie such like liberties of sinne if it proue": [0, 65535], "such like liberties of sinne if it proue so": [0, 65535], "like liberties of sinne if it proue so i": [0, 65535], "liberties of sinne if it proue so i will": [0, 65535], "of sinne if it proue so i will be": [0, 65535], "sinne if it proue so i will be gone": [0, 65535], "if it proue so i will be gone the": [0, 65535], "it proue so i will be gone the sooner": [0, 65535], "proue so i will be gone the sooner ile": [0, 65535], "so i will be gone the sooner ile to": [0, 65535], "i will be gone the sooner ile to the": [0, 65535], "will be gone the sooner ile to the centaur": [0, 65535], "be gone the sooner ile to the centaur to": [0, 65535], "gone the sooner ile to the centaur to goe": [0, 65535], "the sooner ile to the centaur to goe seeke": [0, 65535], "sooner ile to the centaur to goe seeke this": [0, 65535], "ile to the centaur to goe seeke this slaue": [0, 65535], "to the centaur to goe seeke this slaue i": [0, 65535], "the centaur to goe seeke this slaue i greatly": [0, 65535], "centaur to goe seeke this slaue i greatly feare": [0, 65535], "to goe seeke this slaue i greatly feare my": [0, 65535], "goe seeke this slaue i greatly feare my monie": [0, 65535], "seeke this slaue i greatly feare my monie is": [0, 65535], "this slaue i greatly feare my monie is not": [0, 65535], "slaue i greatly feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena prima enter the": [0, 65535], "comedie of errors actus primus scena prima enter the duke": [0, 65535], "of errors actus primus scena prima enter the duke of": [0, 65535], "errors actus primus scena prima enter the duke of ephesus": [0, 65535], "actus primus scena prima enter the duke of ephesus with": [0, 65535], "primus scena prima enter the duke of ephesus with the": [0, 65535], "scena prima enter the duke of ephesus with the merchant": [0, 65535], "prima enter the duke of ephesus with the merchant of": [0, 65535], "enter the duke of ephesus with the merchant of siracusa": [0, 65535], "the duke of ephesus with the merchant of siracusa iaylor": [0, 65535], "duke of ephesus with the merchant of siracusa iaylor and": [0, 65535], "of ephesus with the merchant of siracusa iaylor and other": [0, 65535], "ephesus with the merchant of siracusa iaylor and other attendants": [0, 65535], "with the merchant of siracusa iaylor and other attendants marchant": [0, 65535], "the merchant of siracusa iaylor and other attendants marchant broceed": [0, 65535], "merchant of siracusa iaylor and other attendants marchant broceed solinus": [0, 65535], "of siracusa iaylor and other attendants marchant broceed solinus to": [0, 65535], "siracusa iaylor and other attendants marchant broceed solinus to procure": [0, 65535], "iaylor and other attendants marchant broceed solinus to procure my": [0, 65535], "and other attendants marchant broceed solinus to procure my fall": [0, 65535], "other attendants marchant broceed solinus to procure my fall and": [0, 65535], "attendants marchant broceed solinus to procure my fall and by": [0, 65535], "marchant broceed solinus to procure my fall and by the": [0, 65535], "broceed solinus to procure my fall and by the doome": [0, 65535], "solinus to procure my fall and by the doome of": [0, 65535], "to procure my fall and by the doome of death": [0, 65535], "procure my fall and by the doome of death end": [0, 65535], "my fall and by the doome of death end woes": [0, 65535], "fall and by the doome of death end woes and": [0, 65535], "and by the doome of death end woes and all": [0, 65535], "by the doome of death end woes and all duke": [0, 65535], "the doome of death end woes and all duke merchant": [0, 65535], "doome of death end woes and all duke merchant of": [0, 65535], "of death end woes and all duke merchant of siracusa": [0, 65535], "death end woes and all duke merchant of siracusa plead": [0, 65535], "end woes and all duke merchant of siracusa plead no": [0, 65535], "woes and all duke merchant of siracusa plead no more": [0, 65535], "and all duke merchant of siracusa plead no more i": [0, 65535], "all duke merchant of siracusa plead no more i am": [0, 65535], "duke merchant of siracusa plead no more i am not": [0, 65535], "merchant of siracusa plead no more i am not partiall": [0, 65535], "of siracusa plead no more i am not partiall to": [0, 65535], "siracusa plead no more i am not partiall to infringe": [0, 65535], "plead no more i am not partiall to infringe our": [0, 65535], "no more i am not partiall to infringe our lawes": [0, 65535], "more i am not partiall to infringe our lawes the": [0, 65535], "i am not partiall to infringe our lawes the enmity": [0, 65535], "am not partiall to infringe our lawes the enmity and": [0, 65535], "not partiall to infringe our lawes the enmity and discord": [0, 65535], "partiall to infringe our lawes the enmity and discord which": [0, 65535], "to infringe our lawes the enmity and discord which of": [0, 65535], "infringe our lawes the enmity and discord which of late": [0, 65535], "our lawes the enmity and discord which of late sprung": [0, 65535], "lawes the enmity and discord which of late sprung from": [0, 65535], "the enmity and discord which of late sprung from the": [0, 65535], "enmity and discord which of late sprung from the rancorous": [0, 65535], "and discord which of late sprung from the rancorous outrage": [0, 65535], "discord which of late sprung from the rancorous outrage of": [0, 65535], "which of late sprung from the rancorous outrage of your": [0, 65535], "of late sprung from the rancorous outrage of your duke": [0, 65535], "late sprung from the rancorous outrage of your duke to": [0, 65535], "sprung from the rancorous outrage of your duke to merchants": [0, 65535], "from the rancorous outrage of your duke to merchants our": [0, 65535], "the rancorous outrage of your duke to merchants our well": [0, 65535], "rancorous outrage of your duke to merchants our well dealing": [0, 65535], "outrage of your duke to merchants our well dealing countrimen": [0, 65535], "of your duke to merchants our well dealing countrimen who": [0, 65535], "your duke to merchants our well dealing countrimen who wanting": [0, 65535], "duke to merchants our well dealing countrimen who wanting gilders": [0, 65535], "to merchants our well dealing countrimen who wanting gilders to": [0, 65535], "merchants our well dealing countrimen who wanting gilders to redeeme": [0, 65535], "our well dealing countrimen who wanting gilders to redeeme their": [0, 65535], "well dealing countrimen who wanting gilders to redeeme their liues": [0, 65535], "dealing countrimen who wanting gilders to redeeme their liues haue": [0, 65535], "countrimen who wanting gilders to redeeme their liues haue seal'd": [0, 65535], "who wanting gilders to redeeme their liues haue seal'd his": [0, 65535], "wanting gilders to redeeme their liues haue seal'd his rigorous": [0, 65535], "gilders to redeeme their liues haue seal'd his rigorous statutes": [0, 65535], "to redeeme their liues haue seal'd his rigorous statutes with": [0, 65535], "redeeme their liues haue seal'd his rigorous statutes with their": [0, 65535], "their liues haue seal'd his rigorous statutes with their blouds": [0, 65535], "liues haue seal'd his rigorous statutes with their blouds excludes": [0, 65535], "haue seal'd his rigorous statutes with their blouds excludes all": [0, 65535], "seal'd his rigorous statutes with their blouds excludes all pitty": [0, 65535], "his rigorous statutes with their blouds excludes all pitty from": [0, 65535], "rigorous statutes with their blouds excludes all pitty from our": [0, 65535], "statutes with their blouds excludes all pitty from our threatning": [0, 65535], "with their blouds excludes all pitty from our threatning lookes": [0, 65535], "their blouds excludes all pitty from our threatning lookes for": [0, 65535], "blouds excludes all pitty from our threatning lookes for since": [0, 65535], "excludes all pitty from our threatning lookes for since the": [0, 65535], "all pitty from our threatning lookes for since the mortall": [0, 65535], "pitty from our threatning lookes for since the mortall and": [0, 65535], "from our threatning lookes for since the mortall and intestine": [0, 65535], "our threatning lookes for since the mortall and intestine iarres": [0, 65535], "threatning lookes for since the mortall and intestine iarres twixt": [0, 65535], "lookes for since the mortall and intestine iarres twixt thy": [0, 65535], "for since the mortall and intestine iarres twixt thy seditious": [0, 65535], "since the mortall and intestine iarres twixt thy seditious countrimen": [0, 65535], "the mortall and intestine iarres twixt thy seditious countrimen and": [0, 65535], "mortall and intestine iarres twixt thy seditious countrimen and vs": [0, 65535], "and intestine iarres twixt thy seditious countrimen and vs it": [0, 65535], "intestine iarres twixt thy seditious countrimen and vs it hath": [0, 65535], "iarres twixt thy seditious countrimen and vs it hath in": [0, 65535], "twixt thy seditious countrimen and vs it hath in solemne": [0, 65535], "thy seditious countrimen and vs it hath in solemne synodes": [0, 65535], "seditious countrimen and vs it hath in solemne synodes beene": [0, 65535], "countrimen and vs it hath in solemne synodes beene decreed": [0, 65535], "and vs it hath in solemne synodes beene decreed both": [0, 65535], "vs it hath in solemne synodes beene decreed both by": [0, 65535], "it hath in solemne synodes beene decreed both by the": [0, 65535], "hath in solemne synodes beene decreed both by the siracusians": [0, 65535], "in solemne synodes beene decreed both by the siracusians and": [0, 65535], "solemne synodes beene decreed both by the siracusians and our": [0, 65535], "synodes beene decreed both by the siracusians and our selues": [0, 65535], "beene decreed both by the siracusians and our selues to": [0, 65535], "decreed both by the siracusians and our selues to admit": [0, 65535], "both by the siracusians and our selues to admit no": [0, 65535], "by the siracusians and our selues to admit no trafficke": [0, 65535], "the siracusians and our selues to admit no trafficke to": [0, 65535], "siracusians and our selues to admit no trafficke to our": [0, 65535], "and our selues to admit no trafficke to our aduerse": [0, 65535], "our selues to admit no trafficke to our aduerse townes": [0, 65535], "selues to admit no trafficke to our aduerse townes nay": [0, 65535], "to admit no trafficke to our aduerse townes nay more": [0, 65535], "admit no trafficke to our aduerse townes nay more if": [0, 65535], "no trafficke to our aduerse townes nay more if any": [0, 65535], "trafficke to our aduerse townes nay more if any borne": [0, 65535], "to our aduerse townes nay more if any borne at": [0, 65535], "our aduerse townes nay more if any borne at ephesus": [0, 65535], "aduerse townes nay more if any borne at ephesus be": [0, 65535], "townes nay more if any borne at ephesus be seene": [0, 65535], "nay more if any borne at ephesus be seene at": [0, 65535], "more if any borne at ephesus be seene at any": [0, 65535], "if any borne at ephesus be seene at any siracusian": [0, 65535], "any borne at ephesus be seene at any siracusian marts": [0, 65535], "borne at ephesus be seene at any siracusian marts and": [0, 65535], "at ephesus be seene at any siracusian marts and fayres": [0, 65535], "ephesus be seene at any siracusian marts and fayres againe": [0, 65535], "be seene at any siracusian marts and fayres againe if": [0, 65535], "seene at any siracusian marts and fayres againe if any": [0, 65535], "at any siracusian marts and fayres againe if any siracusian": [0, 65535], "any siracusian marts and fayres againe if any siracusian borne": [0, 65535], "siracusian marts and fayres againe if any siracusian borne come": [0, 65535], "marts and fayres againe if any siracusian borne come to": [0, 65535], "and fayres againe if any siracusian borne come to the": [0, 65535], "fayres againe if any siracusian borne come to the bay": [0, 65535], "againe if any siracusian borne come to the bay of": [0, 65535], "if any siracusian borne come to the bay of ephesus": [0, 65535], "any siracusian borne come to the bay of ephesus he": [0, 65535], "siracusian borne come to the bay of ephesus he dies": [0, 65535], "borne come to the bay of ephesus he dies his": [0, 65535], "come to the bay of ephesus he dies his goods": [0, 65535], "to the bay of ephesus he dies his goods confiscate": [0, 65535], "the bay of ephesus he dies his goods confiscate to": [0, 65535], "bay of ephesus he dies his goods confiscate to the": [0, 65535], "of ephesus he dies his goods confiscate to the dukes": [0, 65535], "ephesus he dies his goods confiscate to the dukes dispose": [0, 65535], "he dies his goods confiscate to the dukes dispose vnlesse": [0, 65535], "dies his goods confiscate to the dukes dispose vnlesse a": [0, 65535], "his goods confiscate to the dukes dispose vnlesse a thousand": [0, 65535], "goods confiscate to the dukes dispose vnlesse a thousand markes": [0, 65535], "confiscate to the dukes dispose vnlesse a thousand markes be": [0, 65535], "to the dukes dispose vnlesse a thousand markes be leuied": [0, 65535], "the dukes dispose vnlesse a thousand markes be leuied to": [0, 65535], "dukes dispose vnlesse a thousand markes be leuied to quit": [0, 65535], "dispose vnlesse a thousand markes be leuied to quit the": [0, 65535], "vnlesse a thousand markes be leuied to quit the penalty": [0, 65535], "a thousand markes be leuied to quit the penalty and": [0, 65535], "thousand markes be leuied to quit the penalty and to": [0, 65535], "markes be leuied to quit the penalty and to ransome": [0, 65535], "be leuied to quit the penalty and to ransome him": [0, 65535], "leuied to quit the penalty and to ransome him thy": [0, 65535], "to quit the penalty and to ransome him thy substance": [0, 65535], "quit the penalty and to ransome him thy substance valued": [0, 65535], "the penalty and to ransome him thy substance valued at": [0, 65535], "penalty and to ransome him thy substance valued at the": [0, 65535], "and to ransome him thy substance valued at the highest": [0, 65535], "to ransome him thy substance valued at the highest rate": [0, 65535], "ransome him thy substance valued at the highest rate cannot": [0, 65535], "him thy substance valued at the highest rate cannot amount": [0, 65535], "thy substance valued at the highest rate cannot amount vnto": [0, 65535], "substance valued at the highest rate cannot amount vnto a": [0, 65535], "valued at the highest rate cannot amount vnto a hundred": [0, 65535], "at the highest rate cannot amount vnto a hundred markes": [0, 65535], "the highest rate cannot amount vnto a hundred markes therefore": [0, 65535], "highest rate cannot amount vnto a hundred markes therefore by": [0, 65535], "rate cannot amount vnto a hundred markes therefore by law": [0, 65535], "cannot amount vnto a hundred markes therefore by law thou": [0, 65535], "amount vnto a hundred markes therefore by law thou art": [0, 65535], "vnto a hundred markes therefore by law thou art condemn'd": [0, 65535], "a hundred markes therefore by law thou art condemn'd to": [0, 65535], "hundred markes therefore by law thou art condemn'd to die": [0, 65535], "markes therefore by law thou art condemn'd to die mer": [0, 65535], "therefore by law thou art condemn'd to die mer yet": [0, 65535], "by law thou art condemn'd to die mer yet this": [0, 65535], "law thou art condemn'd to die mer yet this my": [0, 65535], "thou art condemn'd to die mer yet this my comfort": [0, 65535], "art condemn'd to die mer yet this my comfort when": [0, 65535], "condemn'd to die mer yet this my comfort when your": [0, 65535], "to die mer yet this my comfort when your words": [0, 65535], "die mer yet this my comfort when your words are": [0, 65535], "mer yet this my comfort when your words are done": [0, 65535], "yet this my comfort when your words are done my": [0, 65535], "this my comfort when your words are done my woes": [0, 65535], "my comfort when your words are done my woes end": [0, 65535], "comfort when your words are done my woes end likewise": [0, 65535], "when your words are done my woes end likewise with": [0, 65535], "your words are done my woes end likewise with the": [0, 65535], "words are done my woes end likewise with the euening": [0, 65535], "are done my woes end likewise with the euening sonne": [0, 65535], "done my woes end likewise with the euening sonne duk": [0, 65535], "my woes end likewise with the euening sonne duk well": [0, 65535], "woes end likewise with the euening sonne duk well siracusian": [0, 65535], "end likewise with the euening sonne duk well siracusian say": [0, 65535], "likewise with the euening sonne duk well siracusian say in": [0, 65535], "with the euening sonne duk well siracusian say in briefe": [0, 65535], "the euening sonne duk well siracusian say in briefe the": [0, 65535], "euening sonne duk well siracusian say in briefe the cause": [0, 65535], "sonne duk well siracusian say in briefe the cause why": [0, 65535], "duk well siracusian say in briefe the cause why thou": [0, 65535], "well siracusian say in briefe the cause why thou departedst": [0, 65535], "siracusian say in briefe the cause why thou departedst from": [0, 65535], "say in briefe the cause why thou departedst from thy": [0, 65535], "in briefe the cause why thou departedst from thy natiue": [0, 65535], "briefe the cause why thou departedst from thy natiue home": [0, 65535], "the cause why thou departedst from thy natiue home and": [0, 65535], "cause why thou departedst from thy natiue home and for": [0, 65535], "why thou departedst from thy natiue home and for what": [0, 65535], "thou departedst from thy natiue home and for what cause": [0, 65535], "departedst from thy natiue home and for what cause thou": [0, 65535], "from thy natiue home and for what cause thou cam'st": [0, 65535], "thy natiue home and for what cause thou cam'st to": [0, 65535], "natiue home and for what cause thou cam'st to ephesus": [0, 65535], "home and for what cause thou cam'st to ephesus mer": [0, 65535], "and for what cause thou cam'st to ephesus mer a": [0, 65535], "for what cause thou cam'st to ephesus mer a heauier": [0, 65535], "what cause thou cam'st to ephesus mer a heauier taske": [0, 65535], "cause thou cam'st to ephesus mer a heauier taske could": [0, 65535], "thou cam'st to ephesus mer a heauier taske could not": [0, 65535], "cam'st to ephesus mer a heauier taske could not haue": [0, 65535], "to ephesus mer a heauier taske could not haue beene": [0, 65535], "ephesus mer a heauier taske could not haue beene impos'd": [0, 65535], "mer a heauier taske could not haue beene impos'd then": [0, 65535], "a heauier taske could not haue beene impos'd then i": [0, 65535], "heauier taske could not haue beene impos'd then i to": [0, 65535], "taske could not haue beene impos'd then i to speake": [0, 65535], "could not haue beene impos'd then i to speake my": [0, 65535], "not haue beene impos'd then i to speake my griefes": [0, 65535], "haue beene impos'd then i to speake my griefes vnspeakeable": [0, 65535], "beene impos'd then i to speake my griefes vnspeakeable yet": [0, 65535], "impos'd then i to speake my griefes vnspeakeable yet that": [0, 65535], "then i to speake my griefes vnspeakeable yet that the": [0, 65535], "i to speake my griefes vnspeakeable yet that the world": [0, 65535], "to speake my griefes vnspeakeable yet that the world may": [0, 65535], "speake my griefes vnspeakeable yet that the world may witnesse": [0, 65535], "my griefes vnspeakeable yet that the world may witnesse that": [0, 65535], "griefes vnspeakeable yet that the world may witnesse that my": [0, 65535], "vnspeakeable yet that the world may witnesse that my end": [0, 65535], "yet that the world may witnesse that my end was": [0, 65535], "that the world may witnesse that my end was wrought": [0, 65535], "the world may witnesse that my end was wrought by": [0, 65535], "world may witnesse that my end was wrought by nature": [0, 65535], "may witnesse that my end was wrought by nature not": [0, 65535], "witnesse that my end was wrought by nature not by": [0, 65535], "that my end was wrought by nature not by vile": [0, 65535], "my end was wrought by nature not by vile offence": [0, 65535], "end was wrought by nature not by vile offence ile": [0, 65535], "was wrought by nature not by vile offence ile vtter": [0, 65535], "wrought by nature not by vile offence ile vtter what": [0, 65535], "by nature not by vile offence ile vtter what my": [0, 65535], "nature not by vile offence ile vtter what my sorrow": [0, 65535], "not by vile offence ile vtter what my sorrow giues": [0, 65535], "by vile offence ile vtter what my sorrow giues me": [0, 65535], "vile offence ile vtter what my sorrow giues me leaue": [0, 65535], "offence ile vtter what my sorrow giues me leaue in": [0, 65535], "ile vtter what my sorrow giues me leaue in syracusa": [0, 65535], "vtter what my sorrow giues me leaue in syracusa was": [0, 65535], "what my sorrow giues me leaue in syracusa was i": [0, 65535], "my sorrow giues me leaue in syracusa was i borne": [0, 65535], "sorrow giues me leaue in syracusa was i borne and": [0, 65535], "giues me leaue in syracusa was i borne and wedde": [0, 65535], "me leaue in syracusa was i borne and wedde vnto": [0, 65535], "leaue in syracusa was i borne and wedde vnto a": [0, 65535], "in syracusa was i borne and wedde vnto a woman": [0, 65535], "syracusa was i borne and wedde vnto a woman happy": [0, 65535], "was i borne and wedde vnto a woman happy but": [0, 65535], "i borne and wedde vnto a woman happy but for": [0, 65535], "borne and wedde vnto a woman happy but for me": [0, 65535], "and wedde vnto a woman happy but for me and": [0, 65535], "wedde vnto a woman happy but for me and by": [0, 65535], "vnto a woman happy but for me and by me": [0, 65535], "a woman happy but for me and by me had": [0, 65535], "woman happy but for me and by me had not": [0, 65535], "happy but for me and by me had not our": [0, 65535], "but for me and by me had not our hap": [0, 65535], "for me and by me had not our hap beene": [0, 65535], "me and by me had not our hap beene bad": [0, 65535], "and by me had not our hap beene bad with": [0, 65535], "by me had not our hap beene bad with her": [0, 65535], "me had not our hap beene bad with her i": [0, 65535], "had not our hap beene bad with her i liu'd": [0, 65535], "not our hap beene bad with her i liu'd in": [0, 65535], "our hap beene bad with her i liu'd in ioy": [0, 65535], "hap beene bad with her i liu'd in ioy our": [0, 65535], "beene bad with her i liu'd in ioy our wealth": [0, 65535], "bad with her i liu'd in ioy our wealth increast": [0, 65535], "with her i liu'd in ioy our wealth increast by": [0, 65535], "her i liu'd in ioy our wealth increast by prosperous": [0, 65535], "i liu'd in ioy our wealth increast by prosperous voyages": [0, 65535], "liu'd in ioy our wealth increast by prosperous voyages i": [0, 65535], "in ioy our wealth increast by prosperous voyages i often": [0, 65535], "ioy our wealth increast by prosperous voyages i often made": [0, 65535], "our wealth increast by prosperous voyages i often made to": [0, 65535], "wealth increast by prosperous voyages i often made to epidamium": [0, 65535], "increast by prosperous voyages i often made to epidamium till": [0, 65535], "by prosperous voyages i often made to epidamium till my": [0, 65535], "prosperous voyages i often made to epidamium till my factors": [0, 65535], "voyages i often made to epidamium till my factors death": [0, 65535], "i often made to epidamium till my factors death and": [0, 65535], "often made to epidamium till my factors death and he": [0, 65535], "made to epidamium till my factors death and he great": [0, 65535], "to epidamium till my factors death and he great care": [0, 65535], "epidamium till my factors death and he great care of": [0, 65535], "till my factors death and he great care of goods": [0, 65535], "my factors death and he great care of goods at": [0, 65535], "factors death and he great care of goods at randone": [0, 65535], "death and he great care of goods at randone left": [0, 65535], "and he great care of goods at randone left drew": [0, 65535], "he great care of goods at randone left drew me": [0, 65535], "great care of goods at randone left drew me from": [0, 65535], "care of goods at randone left drew me from kinde": [0, 65535], "of goods at randone left drew me from kinde embracements": [0, 65535], "goods at randone left drew me from kinde embracements of": [0, 65535], "at randone left drew me from kinde embracements of my": [0, 65535], "randone left drew me from kinde embracements of my spouse": [0, 65535], "left drew me from kinde embracements of my spouse from": [0, 65535], "drew me from kinde embracements of my spouse from whom": [0, 65535], "me from kinde embracements of my spouse from whom my": [0, 65535], "from kinde embracements of my spouse from whom my absence": [0, 65535], "kinde embracements of my spouse from whom my absence was": [0, 65535], "embracements of my spouse from whom my absence was not": [0, 65535], "of my spouse from whom my absence was not sixe": [0, 65535], "my spouse from whom my absence was not sixe moneths": [0, 65535], "spouse from whom my absence was not sixe moneths olde": [0, 65535], "from whom my absence was not sixe moneths olde before": [0, 65535], "whom my absence was not sixe moneths olde before her": [0, 65535], "my absence was not sixe moneths olde before her selfe": [0, 65535], "absence was not sixe moneths olde before her selfe almost": [0, 65535], "was not sixe moneths olde before her selfe almost at": [0, 65535], "not sixe moneths olde before her selfe almost at fainting": [0, 65535], "sixe moneths olde before her selfe almost at fainting vnder": [0, 65535], "moneths olde before her selfe almost at fainting vnder the": [0, 65535], "olde before her selfe almost at fainting vnder the pleasing": [0, 65535], "before her selfe almost at fainting vnder the pleasing punishment": [0, 65535], "her selfe almost at fainting vnder the pleasing punishment that": [0, 65535], "selfe almost at fainting vnder the pleasing punishment that women": [0, 65535], "almost at fainting vnder the pleasing punishment that women beare": [0, 65535], "at fainting vnder the pleasing punishment that women beare had": [0, 65535], "fainting vnder the pleasing punishment that women beare had made": [0, 65535], "vnder the pleasing punishment that women beare had made prouision": [0, 65535], "the pleasing punishment that women beare had made prouision for": [0, 65535], "pleasing punishment that women beare had made prouision for her": [0, 65535], "punishment that women beare had made prouision for her following": [0, 65535], "that women beare had made prouision for her following me": [0, 65535], "women beare had made prouision for her following me and": [0, 65535], "beare had made prouision for her following me and soone": [0, 65535], "had made prouision for her following me and soone and": [0, 65535], "made prouision for her following me and soone and safe": [0, 65535], "prouision for her following me and soone and safe arriued": [0, 65535], "for her following me and soone and safe arriued where": [0, 65535], "her following me and soone and safe arriued where i": [0, 65535], "following me and soone and safe arriued where i was": [0, 65535], "me and soone and safe arriued where i was there": [0, 65535], "and soone and safe arriued where i was there had": [0, 65535], "soone and safe arriued where i was there had she": [0, 65535], "and safe arriued where i was there had she not": [0, 65535], "safe arriued where i was there had she not beene": [0, 65535], "arriued where i was there had she not beene long": [0, 65535], "where i was there had she not beene long but": [0, 65535], "i was there had she not beene long but she": [0, 65535], "was there had she not beene long but she became": [0, 65535], "there had she not beene long but she became a": [0, 65535], "had she not beene long but she became a ioyfull": [0, 65535], "she not beene long but she became a ioyfull mother": [0, 65535], "not beene long but she became a ioyfull mother of": [0, 65535], "beene long but she became a ioyfull mother of two": [0, 65535], "long but she became a ioyfull mother of two goodly": [0, 65535], "but she became a ioyfull mother of two goodly sonnes": [0, 65535], "she became a ioyfull mother of two goodly sonnes and": [0, 65535], "became a ioyfull mother of two goodly sonnes and which": [0, 65535], "a ioyfull mother of two goodly sonnes and which was": [0, 65535], "ioyfull mother of two goodly sonnes and which was strange": [0, 65535], "mother of two goodly sonnes and which was strange the": [0, 65535], "of two goodly sonnes and which was strange the one": [0, 65535], "two goodly sonnes and which was strange the one so": [0, 65535], "goodly sonnes and which was strange the one so like": [0, 65535], "sonnes and which was strange the one so like the": [0, 65535], "and which was strange the one so like the other": [0, 65535], "which was strange the one so like the other as": [0, 65535], "was strange the one so like the other as could": [0, 65535], "strange the one so like the other as could not": [0, 65535], "the one so like the other as could not be": [0, 65535], "one so like the other as could not be distinguish'd": [0, 65535], "so like the other as could not be distinguish'd but": [0, 65535], "like the other as could not be distinguish'd but by": [0, 65535], "the other as could not be distinguish'd but by names": [0, 65535], "other as could not be distinguish'd but by names that": [0, 65535], "as could not be distinguish'd but by names that very": [0, 65535], "could not be distinguish'd but by names that very howre": [0, 65535], "not be distinguish'd but by names that very howre and": [0, 65535], "be distinguish'd but by names that very howre and in": [0, 65535], "distinguish'd but by names that very howre and in the": [0, 65535], "but by names that very howre and in the selfe": [0, 65535], "by names that very howre and in the selfe same": [0, 65535], "names that very howre and in the selfe same inne": [0, 65535], "that very howre and in the selfe same inne a": [0, 65535], "very howre and in the selfe same inne a meane": [0, 65535], "howre and in the selfe same inne a meane woman": [0, 65535], "and in the selfe same inne a meane woman was": [0, 65535], "in the selfe same inne a meane woman was deliuered": [0, 65535], "the selfe same inne a meane woman was deliuered of": [0, 65535], "selfe same inne a meane woman was deliuered of such": [0, 65535], "same inne a meane woman was deliuered of such a": [0, 65535], "inne a meane woman was deliuered of such a burthen": [0, 65535], "a meane woman was deliuered of such a burthen male": [0, 65535], "meane woman was deliuered of such a burthen male twins": [0, 65535], "woman was deliuered of such a burthen male twins both": [0, 65535], "was deliuered of such a burthen male twins both alike": [0, 65535], "deliuered of such a burthen male twins both alike those": [0, 65535], "of such a burthen male twins both alike those for": [0, 65535], "such a burthen male twins both alike those for their": [0, 65535], "a burthen male twins both alike those for their parents": [0, 65535], "burthen male twins both alike those for their parents were": [0, 65535], "male twins both alike those for their parents were exceeding": [0, 65535], "twins both alike those for their parents were exceeding poore": [0, 65535], "both alike those for their parents were exceeding poore i": [0, 65535], "alike those for their parents were exceeding poore i bought": [0, 65535], "those for their parents were exceeding poore i bought and": [0, 65535], "for their parents were exceeding poore i bought and brought": [0, 65535], "their parents were exceeding poore i bought and brought vp": [0, 65535], "parents were exceeding poore i bought and brought vp to": [0, 65535], "were exceeding poore i bought and brought vp to attend": [0, 65535], "exceeding poore i bought and brought vp to attend my": [0, 65535], "poore i bought and brought vp to attend my sonnes": [0, 65535], "i bought and brought vp to attend my sonnes my": [0, 65535], "bought and brought vp to attend my sonnes my wife": [0, 65535], "and brought vp to attend my sonnes my wife not": [0, 65535], "brought vp to attend my sonnes my wife not meanely": [0, 65535], "vp to attend my sonnes my wife not meanely prowd": [0, 65535], "to attend my sonnes my wife not meanely prowd of": [0, 65535], "attend my sonnes my wife not meanely prowd of two": [0, 65535], "my sonnes my wife not meanely prowd of two such": [0, 65535], "sonnes my wife not meanely prowd of two such boyes": [0, 65535], "my wife not meanely prowd of two such boyes made": [0, 65535], "wife not meanely prowd of two such boyes made daily": [0, 65535], "not meanely prowd of two such boyes made daily motions": [0, 65535], "meanely prowd of two such boyes made daily motions for": [0, 65535], "prowd of two such boyes made daily motions for our": [0, 65535], "of two such boyes made daily motions for our home": [0, 65535], "two such boyes made daily motions for our home returne": [0, 65535], "such boyes made daily motions for our home returne vnwilling": [0, 65535], "boyes made daily motions for our home returne vnwilling i": [0, 65535], "made daily motions for our home returne vnwilling i agreed": [0, 65535], "daily motions for our home returne vnwilling i agreed alas": [0, 65535], "motions for our home returne vnwilling i agreed alas too": [0, 65535], "for our home returne vnwilling i agreed alas too soone": [0, 65535], "our home returne vnwilling i agreed alas too soone wee": [0, 65535], "home returne vnwilling i agreed alas too soone wee came": [0, 65535], "returne vnwilling i agreed alas too soone wee came aboord": [0, 65535], "vnwilling i agreed alas too soone wee came aboord a": [0, 65535], "i agreed alas too soone wee came aboord a league": [0, 65535], "agreed alas too soone wee came aboord a league from": [0, 65535], "alas too soone wee came aboord a league from epidamium": [0, 65535], "too soone wee came aboord a league from epidamium had": [0, 65535], "soone wee came aboord a league from epidamium had we": [0, 65535], "wee came aboord a league from epidamium had we saild": [0, 65535], "came aboord a league from epidamium had we saild before": [0, 65535], "aboord a league from epidamium had we saild before the": [0, 65535], "a league from epidamium had we saild before the alwaies": [0, 65535], "league from epidamium had we saild before the alwaies winde": [0, 65535], "from epidamium had we saild before the alwaies winde obeying": [0, 65535], "epidamium had we saild before the alwaies winde obeying deepe": [0, 65535], "had we saild before the alwaies winde obeying deepe gaue": [0, 65535], "we saild before the alwaies winde obeying deepe gaue any": [0, 65535], "saild before the alwaies winde obeying deepe gaue any tragicke": [0, 65535], "before the alwaies winde obeying deepe gaue any tragicke instance": [0, 65535], "the alwaies winde obeying deepe gaue any tragicke instance of": [0, 65535], "alwaies winde obeying deepe gaue any tragicke instance of our": [0, 65535], "winde obeying deepe gaue any tragicke instance of our harme": [0, 65535], "obeying deepe gaue any tragicke instance of our harme but": [0, 65535], "deepe gaue any tragicke instance of our harme but longer": [0, 65535], "gaue any tragicke instance of our harme but longer did": [0, 65535], "any tragicke instance of our harme but longer did we": [0, 65535], "tragicke instance of our harme but longer did we not": [0, 65535], "instance of our harme but longer did we not retaine": [0, 65535], "of our harme but longer did we not retaine much": [0, 65535], "our harme but longer did we not retaine much hope": [0, 65535], "harme but longer did we not retaine much hope for": [0, 65535], "but longer did we not retaine much hope for what": [0, 65535], "longer did we not retaine much hope for what obscured": [0, 65535], "did we not retaine much hope for what obscured light": [0, 65535], "we not retaine much hope for what obscured light the": [0, 65535], "not retaine much hope for what obscured light the heauens": [0, 65535], "retaine much hope for what obscured light the heauens did": [0, 65535], "much hope for what obscured light the heauens did grant": [0, 65535], "hope for what obscured light the heauens did grant did": [0, 65535], "for what obscured light the heauens did grant did but": [0, 65535], "what obscured light the heauens did grant did but conuay": [0, 65535], "obscured light the heauens did grant did but conuay vnto": [0, 65535], "light the heauens did grant did but conuay vnto our": [0, 65535], "the heauens did grant did but conuay vnto our fearefull": [0, 65535], "heauens did grant did but conuay vnto our fearefull mindes": [0, 65535], "did grant did but conuay vnto our fearefull mindes a": [0, 65535], "grant did but conuay vnto our fearefull mindes a doubtfull": [0, 65535], "did but conuay vnto our fearefull mindes a doubtfull warrant": [0, 65535], "but conuay vnto our fearefull mindes a doubtfull warrant of": [0, 65535], "conuay vnto our fearefull mindes a doubtfull warrant of immediate": [0, 65535], "vnto our fearefull mindes a doubtfull warrant of immediate death": [0, 65535], "our fearefull mindes a doubtfull warrant of immediate death which": [0, 65535], "fearefull mindes a doubtfull warrant of immediate death which though": [0, 65535], "mindes a doubtfull warrant of immediate death which though my": [0, 65535], "a doubtfull warrant of immediate death which though my selfe": [0, 65535], "doubtfull warrant of immediate death which though my selfe would": [0, 65535], "warrant of immediate death which though my selfe would gladly": [0, 65535], "of immediate death which though my selfe would gladly haue": [0, 65535], "immediate death which though my selfe would gladly haue imbrac'd": [0, 65535], "death which though my selfe would gladly haue imbrac'd yet": [0, 65535], "which though my selfe would gladly haue imbrac'd yet the": [0, 65535], "though my selfe would gladly haue imbrac'd yet the incessant": [0, 65535], "my selfe would gladly haue imbrac'd yet the incessant weepings": [0, 65535], "selfe would gladly haue imbrac'd yet the incessant weepings of": [0, 65535], "would gladly haue imbrac'd yet the incessant weepings of my": [0, 65535], "gladly haue imbrac'd yet the incessant weepings of my wife": [0, 65535], "haue imbrac'd yet the incessant weepings of my wife weeping": [0, 65535], "imbrac'd yet the incessant weepings of my wife weeping before": [0, 65535], "yet the incessant weepings of my wife weeping before for": [0, 65535], "the incessant weepings of my wife weeping before for what": [0, 65535], "incessant weepings of my wife weeping before for what she": [0, 65535], "weepings of my wife weeping before for what she saw": [0, 65535], "of my wife weeping before for what she saw must": [0, 65535], "my wife weeping before for what she saw must come": [0, 65535], "wife weeping before for what she saw must come and": [0, 65535], "weeping before for what she saw must come and pitteous": [0, 65535], "before for what she saw must come and pitteous playnings": [0, 65535], "for what she saw must come and pitteous playnings of": [0, 65535], "what she saw must come and pitteous playnings of the": [0, 65535], "she saw must come and pitteous playnings of the prettie": [0, 65535], "saw must come and pitteous playnings of the prettie babes": [0, 65535], "must come and pitteous playnings of the prettie babes that": [0, 65535], "come and pitteous playnings of the prettie babes that mourn'd": [0, 65535], "and pitteous playnings of the prettie babes that mourn'd for": [0, 65535], "pitteous playnings of the prettie babes that mourn'd for fashion": [0, 65535], "playnings of the prettie babes that mourn'd for fashion ignorant": [0, 65535], "of the prettie babes that mourn'd for fashion ignorant what": [0, 65535], "the prettie babes that mourn'd for fashion ignorant what to": [0, 65535], "prettie babes that mourn'd for fashion ignorant what to feare": [0, 65535], "babes that mourn'd for fashion ignorant what to feare forst": [0, 65535], "that mourn'd for fashion ignorant what to feare forst me": [0, 65535], "mourn'd for fashion ignorant what to feare forst me to": [0, 65535], "for fashion ignorant what to feare forst me to seeke": [0, 65535], "fashion ignorant what to feare forst me to seeke delayes": [0, 65535], "ignorant what to feare forst me to seeke delayes for": [0, 65535], "what to feare forst me to seeke delayes for them": [0, 65535], "to feare forst me to seeke delayes for them and": [0, 65535], "feare forst me to seeke delayes for them and me": [0, 65535], "forst me to seeke delayes for them and me and": [0, 65535], "me to seeke delayes for them and me and this": [0, 65535], "to seeke delayes for them and me and this it": [0, 65535], "seeke delayes for them and me and this it was": [0, 65535], "delayes for them and me and this it was for": [0, 65535], "for them and me and this it was for other": [0, 65535], "them and me and this it was for other meanes": [0, 65535], "and me and this it was for other meanes was": [0, 65535], "me and this it was for other meanes was none": [0, 65535], "and this it was for other meanes was none the": [0, 65535], "this it was for other meanes was none the sailors": [0, 65535], "it was for other meanes was none the sailors sought": [0, 65535], "was for other meanes was none the sailors sought for": [0, 65535], "for other meanes was none the sailors sought for safety": [0, 65535], "other meanes was none the sailors sought for safety by": [0, 65535], "meanes was none the sailors sought for safety by our": [0, 65535], "was none the sailors sought for safety by our boate": [0, 65535], "none the sailors sought for safety by our boate and": [0, 65535], "the sailors sought for safety by our boate and left": [0, 65535], "sailors sought for safety by our boate and left the": [0, 65535], "sought for safety by our boate and left the ship": [0, 65535], "for safety by our boate and left the ship then": [0, 65535], "safety by our boate and left the ship then sinking": [0, 65535], "by our boate and left the ship then sinking ripe": [0, 65535], "our boate and left the ship then sinking ripe to": [0, 65535], "boate and left the ship then sinking ripe to vs": [0, 65535], "and left the ship then sinking ripe to vs my": [0, 65535], "left the ship then sinking ripe to vs my wife": [0, 65535], "the ship then sinking ripe to vs my wife more": [0, 65535], "ship then sinking ripe to vs my wife more carefull": [0, 65535], "then sinking ripe to vs my wife more carefull for": [0, 65535], "sinking ripe to vs my wife more carefull for the": [0, 65535], "ripe to vs my wife more carefull for the latter": [0, 65535], "to vs my wife more carefull for the latter borne": [0, 65535], "vs my wife more carefull for the latter borne had": [0, 65535], "my wife more carefull for the latter borne had fastned": [0, 65535], "wife more carefull for the latter borne had fastned him": [0, 65535], "more carefull for the latter borne had fastned him vnto": [0, 65535], "carefull for the latter borne had fastned him vnto a": [0, 65535], "for the latter borne had fastned him vnto a small": [0, 65535], "the latter borne had fastned him vnto a small spare": [0, 65535], "latter borne had fastned him vnto a small spare mast": [0, 65535], "borne had fastned him vnto a small spare mast such": [0, 65535], "had fastned him vnto a small spare mast such as": [0, 65535], "fastned him vnto a small spare mast such as sea": [0, 65535], "him vnto a small spare mast such as sea faring": [0, 65535], "vnto a small spare mast such as sea faring men": [0, 65535], "a small spare mast such as sea faring men prouide": [0, 65535], "small spare mast such as sea faring men prouide for": [0, 65535], "spare mast such as sea faring men prouide for stormes": [0, 65535], "mast such as sea faring men prouide for stormes to": [0, 65535], "such as sea faring men prouide for stormes to him": [0, 65535], "as sea faring men prouide for stormes to him one": [0, 65535], "sea faring men prouide for stormes to him one of": [0, 65535], "faring men prouide for stormes to him one of the": [0, 65535], "men prouide for stormes to him one of the other": [0, 65535], "prouide for stormes to him one of the other twins": [0, 65535], "for stormes to him one of the other twins was": [0, 65535], "stormes to him one of the other twins was bound": [0, 65535], "to him one of the other twins was bound whil'st": [0, 65535], "him one of the other twins was bound whil'st i": [0, 65535], "one of the other twins was bound whil'st i had": [0, 65535], "of the other twins was bound whil'st i had beene": [0, 65535], "the other twins was bound whil'st i had beene like": [0, 65535], "other twins was bound whil'st i had beene like heedfull": [0, 65535], "twins was bound whil'st i had beene like heedfull of": [0, 65535], "was bound whil'st i had beene like heedfull of the": [0, 65535], "bound whil'st i had beene like heedfull of the other": [0, 65535], "whil'st i had beene like heedfull of the other the": [0, 65535], "i had beene like heedfull of the other the children": [0, 65535], "had beene like heedfull of the other the children thus": [0, 65535], "beene like heedfull of the other the children thus dispos'd": [0, 65535], "like heedfull of the other the children thus dispos'd my": [0, 65535], "heedfull of the other the children thus dispos'd my wife": [0, 65535], "of the other the children thus dispos'd my wife and": [0, 65535], "the other the children thus dispos'd my wife and i": [0, 65535], "other the children thus dispos'd my wife and i fixing": [0, 65535], "the children thus dispos'd my wife and i fixing our": [0, 65535], "children thus dispos'd my wife and i fixing our eyes": [0, 65535], "thus dispos'd my wife and i fixing our eyes on": [0, 65535], "dispos'd my wife and i fixing our eyes on whom": [0, 65535], "my wife and i fixing our eyes on whom our": [0, 65535], "wife and i fixing our eyes on whom our care": [0, 65535], "and i fixing our eyes on whom our care was": [0, 65535], "i fixing our eyes on whom our care was fixt": [0, 65535], "fixing our eyes on whom our care was fixt fastned": [0, 65535], "our eyes on whom our care was fixt fastned our": [0, 65535], "eyes on whom our care was fixt fastned our selues": [0, 65535], "on whom our care was fixt fastned our selues at": [0, 65535], "whom our care was fixt fastned our selues at eyther": [0, 65535], "our care was fixt fastned our selues at eyther end": [0, 65535], "care was fixt fastned our selues at eyther end the": [0, 65535], "was fixt fastned our selues at eyther end the mast": [0, 65535], "fixt fastned our selues at eyther end the mast and": [0, 65535], "fastned our selues at eyther end the mast and floating": [0, 65535], "our selues at eyther end the mast and floating straight": [0, 65535], "selues at eyther end the mast and floating straight obedient": [0, 65535], "at eyther end the mast and floating straight obedient to": [0, 65535], "eyther end the mast and floating straight obedient to the": [0, 65535], "end the mast and floating straight obedient to the streame": [0, 65535], "the mast and floating straight obedient to the streame was": [0, 65535], "mast and floating straight obedient to the streame was carried": [0, 65535], "and floating straight obedient to the streame was carried towards": [0, 65535], "floating straight obedient to the streame was carried towards corinth": [0, 65535], "straight obedient to the streame was carried towards corinth as": [0, 65535], "obedient to the streame was carried towards corinth as we": [0, 65535], "to the streame was carried towards corinth as we thought": [0, 65535], "the streame was carried towards corinth as we thought at": [0, 65535], "streame was carried towards corinth as we thought at length": [0, 65535], "was carried towards corinth as we thought at length the": [0, 65535], "carried towards corinth as we thought at length the sonne": [0, 65535], "towards corinth as we thought at length the sonne gazing": [0, 65535], "corinth as we thought at length the sonne gazing vpon": [0, 65535], "as we thought at length the sonne gazing vpon the": [0, 65535], "we thought at length the sonne gazing vpon the earth": [0, 65535], "thought at length the sonne gazing vpon the earth disperst": [0, 65535], "at length the sonne gazing vpon the earth disperst those": [0, 65535], "length the sonne gazing vpon the earth disperst those vapours": [0, 65535], "the sonne gazing vpon the earth disperst those vapours that": [0, 65535], "sonne gazing vpon the earth disperst those vapours that offended": [0, 65535], "gazing vpon the earth disperst those vapours that offended vs": [0, 65535], "vpon the earth disperst those vapours that offended vs and": [0, 65535], "the earth disperst those vapours that offended vs and by": [0, 65535], "earth disperst those vapours that offended vs and by the": [0, 65535], "disperst those vapours that offended vs and by the benefit": [0, 65535], "those vapours that offended vs and by the benefit of": [0, 65535], "vapours that offended vs and by the benefit of his": [0, 65535], "that offended vs and by the benefit of his wished": [0, 65535], "offended vs and by the benefit of his wished light": [0, 65535], "vs and by the benefit of his wished light the": [0, 65535], "and by the benefit of his wished light the seas": [0, 65535], "by the benefit of his wished light the seas waxt": [0, 65535], "the benefit of his wished light the seas waxt calme": [0, 65535], "benefit of his wished light the seas waxt calme and": [0, 65535], "of his wished light the seas waxt calme and we": [0, 65535], "his wished light the seas waxt calme and we discouered": [0, 65535], "wished light the seas waxt calme and we discouered two": [0, 65535], "light the seas waxt calme and we discouered two shippes": [0, 65535], "the seas waxt calme and we discouered two shippes from": [0, 65535], "seas waxt calme and we discouered two shippes from farre": [0, 65535], "waxt calme and we discouered two shippes from farre making": [0, 65535], "calme and we discouered two shippes from farre making amaine": [0, 65535], "and we discouered two shippes from farre making amaine to": [0, 65535], "we discouered two shippes from farre making amaine to vs": [0, 65535], "discouered two shippes from farre making amaine to vs of": [0, 65535], "two shippes from farre making amaine to vs of corinth": [0, 65535], "shippes from farre making amaine to vs of corinth that": [0, 65535], "from farre making amaine to vs of corinth that of": [0, 65535], "farre making amaine to vs of corinth that of epidarus": [0, 65535], "making amaine to vs of corinth that of epidarus this": [0, 65535], "amaine to vs of corinth that of epidarus this but": [0, 65535], "to vs of corinth that of epidarus this but ere": [0, 65535], "vs of corinth that of epidarus this but ere they": [0, 65535], "of corinth that of epidarus this but ere they came": [0, 65535], "corinth that of epidarus this but ere they came oh": [0, 65535], "that of epidarus this but ere they came oh let": [0, 65535], "of epidarus this but ere they came oh let me": [0, 65535], "epidarus this but ere they came oh let me say": [0, 65535], "this but ere they came oh let me say no": [0, 65535], "but ere they came oh let me say no more": [0, 65535], "ere they came oh let me say no more gather": [0, 65535], "they came oh let me say no more gather the": [0, 65535], "came oh let me say no more gather the sequell": [0, 65535], "oh let me say no more gather the sequell by": [0, 65535], "let me say no more gather the sequell by that": [0, 65535], "me say no more gather the sequell by that went": [0, 65535], "say no more gather the sequell by that went before": [0, 65535], "no more gather the sequell by that went before duk": [0, 65535], "more gather the sequell by that went before duk nay": [0, 65535], "gather the sequell by that went before duk nay forward": [0, 65535], "the sequell by that went before duk nay forward old": [0, 65535], "sequell by that went before duk nay forward old man": [0, 65535], "by that went before duk nay forward old man doe": [0, 65535], "that went before duk nay forward old man doe not": [0, 65535], "went before duk nay forward old man doe not breake": [0, 65535], "before duk nay forward old man doe not breake off": [0, 65535], "duk nay forward old man doe not breake off so": [0, 65535], "nay forward old man doe not breake off so for": [0, 65535], "forward old man doe not breake off so for we": [0, 65535], "old man doe not breake off so for we may": [0, 65535], "man doe not breake off so for we may pitty": [0, 65535], "doe not breake off so for we may pitty though": [0, 65535], "not breake off so for we may pitty though not": [0, 65535], "breake off so for we may pitty though not pardon": [0, 65535], "off so for we may pitty though not pardon thee": [0, 65535], "so for we may pitty though not pardon thee merch": [0, 65535], "for we may pitty though not pardon thee merch oh": [0, 65535], "we may pitty though not pardon thee merch oh had": [0, 65535], "may pitty though not pardon thee merch oh had the": [0, 65535], "pitty though not pardon thee merch oh had the gods": [0, 65535], "though not pardon thee merch oh had the gods done": [0, 65535], "not pardon thee merch oh had the gods done so": [0, 65535], "pardon thee merch oh had the gods done so i": [0, 65535], "thee merch oh had the gods done so i had": [0, 65535], "merch oh had the gods done so i had not": [0, 65535], "oh had the gods done so i had not now": [0, 65535], "had the gods done so i had not now worthily": [0, 65535], "the gods done so i had not now worthily tearm'd": [0, 65535], "gods done so i had not now worthily tearm'd them": [0, 65535], "done so i had not now worthily tearm'd them mercilesse": [0, 65535], "so i had not now worthily tearm'd them mercilesse to": [0, 65535], "i had not now worthily tearm'd them mercilesse to vs": [0, 65535], "had not now worthily tearm'd them mercilesse to vs for": [0, 65535], "not now worthily tearm'd them mercilesse to vs for ere": [0, 65535], "now worthily tearm'd them mercilesse to vs for ere the": [0, 65535], "worthily tearm'd them mercilesse to vs for ere the ships": [0, 65535], "tearm'd them mercilesse to vs for ere the ships could": [0, 65535], "them mercilesse to vs for ere the ships could meet": [0, 65535], "mercilesse to vs for ere the ships could meet by": [0, 65535], "to vs for ere the ships could meet by twice": [0, 65535], "vs for ere the ships could meet by twice fiue": [0, 65535], "for ere the ships could meet by twice fiue leagues": [0, 65535], "ere the ships could meet by twice fiue leagues we": [0, 65535], "the ships could meet by twice fiue leagues we were": [0, 65535], "ships could meet by twice fiue leagues we were encountred": [0, 65535], "could meet by twice fiue leagues we were encountred by": [0, 65535], "meet by twice fiue leagues we were encountred by a": [0, 65535], "by twice fiue leagues we were encountred by a mighty": [0, 65535], "twice fiue leagues we were encountred by a mighty rocke": [0, 65535], "fiue leagues we were encountred by a mighty rocke which": [0, 65535], "leagues we were encountred by a mighty rocke which being": [0, 65535], "we were encountred by a mighty rocke which being violently": [0, 65535], "were encountred by a mighty rocke which being violently borne": [0, 65535], "encountred by a mighty rocke which being violently borne vp": [0, 65535], "by a mighty rocke which being violently borne vp our": [0, 65535], "a mighty rocke which being violently borne vp our helpefull": [0, 65535], "mighty rocke which being violently borne vp our helpefull ship": [0, 65535], "rocke which being violently borne vp our helpefull ship was": [0, 65535], "which being violently borne vp our helpefull ship was splitted": [0, 65535], "being violently borne vp our helpefull ship was splitted in": [0, 65535], "violently borne vp our helpefull ship was splitted in the": [0, 65535], "borne vp our helpefull ship was splitted in the midst": [0, 65535], "vp our helpefull ship was splitted in the midst so": [0, 65535], "our helpefull ship was splitted in the midst so that": [0, 65535], "helpefull ship was splitted in the midst so that in": [0, 65535], "ship was splitted in the midst so that in this": [0, 65535], "was splitted in the midst so that in this vniust": [0, 65535], "splitted in the midst so that in this vniust diuorce": [0, 65535], "in the midst so that in this vniust diuorce of": [0, 65535], "the midst so that in this vniust diuorce of vs": [0, 65535], "midst so that in this vniust diuorce of vs fortune": [0, 65535], "so that in this vniust diuorce of vs fortune had": [0, 65535], "that in this vniust diuorce of vs fortune had left": [0, 65535], "in this vniust diuorce of vs fortune had left to": [0, 65535], "this vniust diuorce of vs fortune had left to both": [0, 65535], "vniust diuorce of vs fortune had left to both of": [0, 65535], "diuorce of vs fortune had left to both of vs": [0, 65535], "of vs fortune had left to both of vs alike": [0, 65535], "vs fortune had left to both of vs alike what": [0, 65535], "fortune had left to both of vs alike what to": [0, 65535], "had left to both of vs alike what to delight": [0, 65535], "left to both of vs alike what to delight in": [0, 65535], "to both of vs alike what to delight in what": [0, 65535], "both of vs alike what to delight in what to": [0, 65535], "of vs alike what to delight in what to sorrow": [0, 65535], "vs alike what to delight in what to sorrow for": [0, 65535], "alike what to delight in what to sorrow for her": [0, 65535], "what to delight in what to sorrow for her part": [0, 65535], "to delight in what to sorrow for her part poore": [0, 65535], "delight in what to sorrow for her part poore soule": [0, 65535], "in what to sorrow for her part poore soule seeming": [0, 65535], "what to sorrow for her part poore soule seeming as": [0, 65535], "to sorrow for her part poore soule seeming as burdened": [0, 65535], "sorrow for her part poore soule seeming as burdened with": [0, 65535], "for her part poore soule seeming as burdened with lesser": [0, 65535], "her part poore soule seeming as burdened with lesser waight": [0, 65535], "part poore soule seeming as burdened with lesser waight but": [0, 65535], "poore soule seeming as burdened with lesser waight but not": [0, 65535], "soule seeming as burdened with lesser waight but not with": [0, 65535], "seeming as burdened with lesser waight but not with lesser": [0, 65535], "as burdened with lesser waight but not with lesser woe": [0, 65535], "burdened with lesser waight but not with lesser woe was": [0, 65535], "with lesser waight but not with lesser woe was carried": [0, 65535], "lesser waight but not with lesser woe was carried with": [0, 65535], "waight but not with lesser woe was carried with more": [0, 65535], "but not with lesser woe was carried with more speed": [0, 65535], "not with lesser woe was carried with more speed before": [0, 65535], "with lesser woe was carried with more speed before the": [0, 65535], "lesser woe was carried with more speed before the winde": [0, 65535], "woe was carried with more speed before the winde and": [0, 65535], "was carried with more speed before the winde and in": [0, 65535], "carried with more speed before the winde and in our": [0, 65535], "with more speed before the winde and in our sight": [0, 65535], "more speed before the winde and in our sight they": [0, 65535], "speed before the winde and in our sight they three": [0, 65535], "before the winde and in our sight they three were": [0, 65535], "the winde and in our sight they three were taken": [0, 65535], "winde and in our sight they three were taken vp": [0, 65535], "and in our sight they three were taken vp by": [0, 65535], "in our sight they three were taken vp by fishermen": [0, 65535], "our sight they three were taken vp by fishermen of": [0, 65535], "sight they three were taken vp by fishermen of corinth": [0, 65535], "they three were taken vp by fishermen of corinth as": [0, 65535], "three were taken vp by fishermen of corinth as we": [0, 65535], "were taken vp by fishermen of corinth as we thought": [0, 65535], "taken vp by fishermen of corinth as we thought at": [0, 65535], "vp by fishermen of corinth as we thought at length": [0, 65535], "by fishermen of corinth as we thought at length another": [0, 65535], "fishermen of corinth as we thought at length another ship": [0, 65535], "of corinth as we thought at length another ship had": [0, 65535], "corinth as we thought at length another ship had seiz'd": [0, 65535], "as we thought at length another ship had seiz'd on": [0, 65535], "we thought at length another ship had seiz'd on vs": [0, 65535], "thought at length another ship had seiz'd on vs and": [0, 65535], "at length another ship had seiz'd on vs and knowing": [0, 65535], "length another ship had seiz'd on vs and knowing whom": [0, 65535], "another ship had seiz'd on vs and knowing whom it": [0, 65535], "ship had seiz'd on vs and knowing whom it was": [0, 65535], "had seiz'd on vs and knowing whom it was their": [0, 65535], "seiz'd on vs and knowing whom it was their hap": [0, 65535], "on vs and knowing whom it was their hap to": [0, 65535], "vs and knowing whom it was their hap to saue": [0, 65535], "and knowing whom it was their hap to saue gaue": [0, 65535], "knowing whom it was their hap to saue gaue healthfull": [0, 65535], "whom it was their hap to saue gaue healthfull welcome": [0, 65535], "it was their hap to saue gaue healthfull welcome to": [0, 65535], "was their hap to saue gaue healthfull welcome to their": [0, 65535], "their hap to saue gaue healthfull welcome to their ship": [0, 65535], "hap to saue gaue healthfull welcome to their ship wrackt": [0, 65535], "to saue gaue healthfull welcome to their ship wrackt guests": [0, 65535], "saue gaue healthfull welcome to their ship wrackt guests and": [0, 65535], "gaue healthfull welcome to their ship wrackt guests and would": [0, 65535], "healthfull welcome to their ship wrackt guests and would haue": [0, 65535], "welcome to their ship wrackt guests and would haue reft": [0, 65535], "to their ship wrackt guests and would haue reft the": [0, 65535], "their ship wrackt guests and would haue reft the fishers": [0, 65535], "ship wrackt guests and would haue reft the fishers of": [0, 65535], "wrackt guests and would haue reft the fishers of their": [0, 65535], "guests and would haue reft the fishers of their prey": [0, 65535], "and would haue reft the fishers of their prey had": [0, 65535], "would haue reft the fishers of their prey had not": [0, 65535], "haue reft the fishers of their prey had not their": [0, 65535], "reft the fishers of their prey had not their backe": [0, 65535], "the fishers of their prey had not their backe beene": [0, 65535], "fishers of their prey had not their backe beene very": [0, 65535], "of their prey had not their backe beene very slow": [0, 65535], "their prey had not their backe beene very slow of": [0, 65535], "prey had not their backe beene very slow of saile": [0, 65535], "had not their backe beene very slow of saile and": [0, 65535], "not their backe beene very slow of saile and therefore": [0, 65535], "their backe beene very slow of saile and therefore homeward": [0, 65535], "backe beene very slow of saile and therefore homeward did": [0, 65535], "beene very slow of saile and therefore homeward did they": [0, 65535], "very slow of saile and therefore homeward did they bend": [0, 65535], "slow of saile and therefore homeward did they bend their": [0, 65535], "of saile and therefore homeward did they bend their course": [0, 65535], "saile and therefore homeward did they bend their course thus": [0, 65535], "and therefore homeward did they bend their course thus haue": [0, 65535], "therefore homeward did they bend their course thus haue you": [0, 65535], "homeward did they bend their course thus haue you heard": [0, 65535], "did they bend their course thus haue you heard me": [0, 65535], "they bend their course thus haue you heard me seuer'd": [0, 65535], "bend their course thus haue you heard me seuer'd from": [0, 65535], "their course thus haue you heard me seuer'd from my": [0, 65535], "course thus haue you heard me seuer'd from my blisse": [0, 65535], "thus haue you heard me seuer'd from my blisse that": [0, 65535], "haue you heard me seuer'd from my blisse that by": [0, 65535], "you heard me seuer'd from my blisse that by misfortunes": [0, 65535], "heard me seuer'd from my blisse that by misfortunes was": [0, 65535], "me seuer'd from my blisse that by misfortunes was my": [0, 65535], "seuer'd from my blisse that by misfortunes was my life": [0, 65535], "from my blisse that by misfortunes was my life prolong'd": [0, 65535], "my blisse that by misfortunes was my life prolong'd to": [0, 65535], "blisse that by misfortunes was my life prolong'd to tell": [0, 65535], "that by misfortunes was my life prolong'd to tell sad": [0, 65535], "by misfortunes was my life prolong'd to tell sad stories": [0, 65535], "misfortunes was my life prolong'd to tell sad stories of": [0, 65535], "was my life prolong'd to tell sad stories of my": [0, 65535], "my life prolong'd to tell sad stories of my owne": [0, 65535], "life prolong'd to tell sad stories of my owne mishaps": [0, 65535], "prolong'd to tell sad stories of my owne mishaps duke": [0, 65535], "to tell sad stories of my owne mishaps duke and": [0, 65535], "tell sad stories of my owne mishaps duke and for": [0, 65535], "sad stories of my owne mishaps duke and for the": [0, 65535], "stories of my owne mishaps duke and for the sake": [0, 65535], "of my owne mishaps duke and for the sake of": [0, 65535], "my owne mishaps duke and for the sake of them": [0, 65535], "owne mishaps duke and for the sake of them thou": [0, 65535], "mishaps duke and for the sake of them thou sorrowest": [0, 65535], "duke and for the sake of them thou sorrowest for": [0, 65535], "and for the sake of them thou sorrowest for doe": [0, 65535], "for the sake of them thou sorrowest for doe me": [0, 65535], "the sake of them thou sorrowest for doe me the": [0, 65535], "sake of them thou sorrowest for doe me the fauour": [0, 65535], "of them thou sorrowest for doe me the fauour to": [0, 65535], "them thou sorrowest for doe me the fauour to dilate": [0, 65535], "thou sorrowest for doe me the fauour to dilate at": [0, 65535], "sorrowest for doe me the fauour to dilate at full": [0, 65535], "for doe me the fauour to dilate at full what": [0, 65535], "doe me the fauour to dilate at full what haue": [0, 65535], "me the fauour to dilate at full what haue befalne": [0, 65535], "the fauour to dilate at full what haue befalne of": [0, 65535], "fauour to dilate at full what haue befalne of them": [0, 65535], "to dilate at full what haue befalne of them and": [0, 65535], "dilate at full what haue befalne of them and they": [0, 65535], "at full what haue befalne of them and they till": [0, 65535], "full what haue befalne of them and they till now": [0, 65535], "what haue befalne of them and they till now merch": [0, 65535], "haue befalne of them and they till now merch my": [0, 65535], "befalne of them and they till now merch my yongest": [0, 65535], "of them and they till now merch my yongest boy": [0, 65535], "them and they till now merch my yongest boy and": [0, 65535], "and they till now merch my yongest boy and yet": [0, 65535], "they till now merch my yongest boy and yet my": [0, 65535], "till now merch my yongest boy and yet my eldest": [0, 65535], "now merch my yongest boy and yet my eldest care": [0, 65535], "merch my yongest boy and yet my eldest care at": [0, 65535], "my yongest boy and yet my eldest care at eighteene": [0, 65535], "yongest boy and yet my eldest care at eighteene yeeres": [0, 65535], "boy and yet my eldest care at eighteene yeeres became": [0, 65535], "and yet my eldest care at eighteene yeeres became inquisitiue": [0, 65535], "yet my eldest care at eighteene yeeres became inquisitiue after": [0, 65535], "my eldest care at eighteene yeeres became inquisitiue after his": [0, 65535], "eldest care at eighteene yeeres became inquisitiue after his brother": [0, 65535], "care at eighteene yeeres became inquisitiue after his brother and": [0, 65535], "at eighteene yeeres became inquisitiue after his brother and importun'd": [0, 65535], "eighteene yeeres became inquisitiue after his brother and importun'd me": [0, 65535], "yeeres became inquisitiue after his brother and importun'd me that": [0, 65535], "became inquisitiue after his brother and importun'd me that his": [0, 65535], "inquisitiue after his brother and importun'd me that his attendant": [0, 65535], "after his brother and importun'd me that his attendant so": [0, 65535], "his brother and importun'd me that his attendant so his": [0, 65535], "brother and importun'd me that his attendant so his case": [0, 65535], "and importun'd me that his attendant so his case was": [0, 65535], "importun'd me that his attendant so his case was like": [0, 65535], "me that his attendant so his case was like reft": [0, 65535], "that his attendant so his case was like reft of": [0, 65535], "his attendant so his case was like reft of his": [0, 65535], "attendant so his case was like reft of his brother": [0, 65535], "so his case was like reft of his brother but": [0, 65535], "his case was like reft of his brother but retain'd": [0, 65535], "case was like reft of his brother but retain'd his": [0, 65535], "was like reft of his brother but retain'd his name": [0, 65535], "like reft of his brother but retain'd his name might": [0, 65535], "reft of his brother but retain'd his name might beare": [0, 65535], "of his brother but retain'd his name might beare him": [0, 65535], "his brother but retain'd his name might beare him company": [0, 65535], "brother but retain'd his name might beare him company in": [0, 65535], "but retain'd his name might beare him company in the": [0, 65535], "retain'd his name might beare him company in the quest": [0, 65535], "his name might beare him company in the quest of": [0, 65535], "name might beare him company in the quest of him": [0, 65535], "might beare him company in the quest of him whom": [0, 65535], "beare him company in the quest of him whom whil'st": [0, 65535], "him company in the quest of him whom whil'st i": [0, 65535], "company in the quest of him whom whil'st i laboured": [0, 65535], "in the quest of him whom whil'st i laboured of": [0, 65535], "the quest of him whom whil'st i laboured of a": [0, 65535], "quest of him whom whil'st i laboured of a loue": [0, 65535], "of him whom whil'st i laboured of a loue to": [0, 65535], "him whom whil'st i laboured of a loue to see": [0, 65535], "whom whil'st i laboured of a loue to see i": [0, 65535], "whil'st i laboured of a loue to see i hazarded": [0, 65535], "i laboured of a loue to see i hazarded the": [0, 65535], "laboured of a loue to see i hazarded the losse": [0, 65535], "of a loue to see i hazarded the losse of": [0, 65535], "a loue to see i hazarded the losse of whom": [0, 65535], "loue to see i hazarded the losse of whom i": [0, 65535], "to see i hazarded the losse of whom i lou'd": [0, 65535], "see i hazarded the losse of whom i lou'd fiue": [0, 65535], "i hazarded the losse of whom i lou'd fiue sommers": [0, 65535], "hazarded the losse of whom i lou'd fiue sommers haue": [0, 65535], "the losse of whom i lou'd fiue sommers haue i": [0, 65535], "losse of whom i lou'd fiue sommers haue i spent": [0, 65535], "of whom i lou'd fiue sommers haue i spent in": [0, 65535], "whom i lou'd fiue sommers haue i spent in farthest": [0, 65535], "i lou'd fiue sommers haue i spent in farthest greece": [0, 65535], "lou'd fiue sommers haue i spent in farthest greece roming": [0, 65535], "fiue sommers haue i spent in farthest greece roming cleane": [0, 65535], "sommers haue i spent in farthest greece roming cleane through": [0, 65535], "haue i spent in farthest greece roming cleane through the": [0, 65535], "i spent in farthest greece roming cleane through the bounds": [0, 65535], "spent in farthest greece roming cleane through the bounds of": [0, 65535], "in farthest greece roming cleane through the bounds of asia": [0, 65535], "farthest greece roming cleane through the bounds of asia and": [0, 65535], "greece roming cleane through the bounds of asia and coasting": [0, 65535], "roming cleane through the bounds of asia and coasting homeward": [0, 65535], "cleane through the bounds of asia and coasting homeward came": [0, 65535], "through the bounds of asia and coasting homeward came to": [0, 65535], "the bounds of asia and coasting homeward came to ephesus": [0, 65535], "bounds of asia and coasting homeward came to ephesus hopelesse": [0, 65535], "of asia and coasting homeward came to ephesus hopelesse to": [0, 65535], "asia and coasting homeward came to ephesus hopelesse to finde": [0, 65535], "and coasting homeward came to ephesus hopelesse to finde yet": [0, 65535], "coasting homeward came to ephesus hopelesse to finde yet loth": [0, 65535], "homeward came to ephesus hopelesse to finde yet loth to": [0, 65535], "came to ephesus hopelesse to finde yet loth to leaue": [0, 65535], "to ephesus hopelesse to finde yet loth to leaue vnsought": [0, 65535], "ephesus hopelesse to finde yet loth to leaue vnsought or": [0, 65535], "hopelesse to finde yet loth to leaue vnsought or that": [0, 65535], "to finde yet loth to leaue vnsought or that or": [0, 65535], "finde yet loth to leaue vnsought or that or any": [0, 65535], "yet loth to leaue vnsought or that or any place": [0, 65535], "loth to leaue vnsought or that or any place that": [0, 65535], "to leaue vnsought or that or any place that harbours": [0, 65535], "leaue vnsought or that or any place that harbours men": [0, 65535], "vnsought or that or any place that harbours men but": [0, 65535], "or that or any place that harbours men but heere": [0, 65535], "that or any place that harbours men but heere must": [0, 65535], "or any place that harbours men but heere must end": [0, 65535], "any place that harbours men but heere must end the": [0, 65535], "place that harbours men but heere must end the story": [0, 65535], "that harbours men but heere must end the story of": [0, 65535], "harbours men but heere must end the story of my": [0, 65535], "men but heere must end the story of my life": [0, 65535], "but heere must end the story of my life and": [0, 65535], "heere must end the story of my life and happy": [0, 65535], "must end the story of my life and happy were": [0, 65535], "end the story of my life and happy were i": [0, 65535], "the story of my life and happy were i in": [0, 65535], "story of my life and happy were i in my": [0, 65535], "of my life and happy were i in my timelie": [0, 65535], "my life and happy were i in my timelie death": [0, 65535], "life and happy were i in my timelie death could": [0, 65535], "and happy were i in my timelie death could all": [0, 65535], "happy were i in my timelie death could all my": [0, 65535], "were i in my timelie death could all my trauells": [0, 65535], "i in my timelie death could all my trauells warrant": [0, 65535], "in my timelie death could all my trauells warrant me": [0, 65535], "my timelie death could all my trauells warrant me they": [0, 65535], "timelie death could all my trauells warrant me they liue": [0, 65535], "death could all my trauells warrant me they liue duke": [0, 65535], "could all my trauells warrant me they liue duke haplesse": [0, 65535], "all my trauells warrant me they liue duke haplesse egeon": [0, 65535], "my trauells warrant me they liue duke haplesse egeon whom": [0, 65535], "trauells warrant me they liue duke haplesse egeon whom the": [0, 65535], "warrant me they liue duke haplesse egeon whom the fates": [0, 65535], "me they liue duke haplesse egeon whom the fates haue": [0, 65535], "they liue duke haplesse egeon whom the fates haue markt": [0, 65535], "liue duke haplesse egeon whom the fates haue markt to": [0, 65535], "duke haplesse egeon whom the fates haue markt to beare": [0, 65535], "haplesse egeon whom the fates haue markt to beare the": [0, 65535], "egeon whom the fates haue markt to beare the extremitie": [0, 65535], "whom the fates haue markt to beare the extremitie of": [0, 65535], "the fates haue markt to beare the extremitie of dire": [0, 65535], "fates haue markt to beare the extremitie of dire mishap": [0, 65535], "haue markt to beare the extremitie of dire mishap now": [0, 65535], "markt to beare the extremitie of dire mishap now trust": [0, 65535], "to beare the extremitie of dire mishap now trust me": [0, 65535], "beare the extremitie of dire mishap now trust me were": [0, 65535], "the extremitie of dire mishap now trust me were it": [0, 65535], "extremitie of dire mishap now trust me were it not": [0, 65535], "of dire mishap now trust me were it not against": [0, 65535], "dire mishap now trust me were it not against our": [0, 65535], "mishap now trust me were it not against our lawes": [0, 65535], "now trust me were it not against our lawes against": [0, 65535], "trust me were it not against our lawes against my": [0, 65535], "me were it not against our lawes against my crowne": [0, 65535], "were it not against our lawes against my crowne my": [0, 65535], "it not against our lawes against my crowne my oath": [0, 65535], "not against our lawes against my crowne my oath my": [0, 65535], "against our lawes against my crowne my oath my dignity": [0, 65535], "our lawes against my crowne my oath my dignity which": [0, 65535], "lawes against my crowne my oath my dignity which princes": [0, 65535], "against my crowne my oath my dignity which princes would": [0, 65535], "my crowne my oath my dignity which princes would they": [0, 65535], "crowne my oath my dignity which princes would they may": [0, 65535], "my oath my dignity which princes would they may not": [0, 65535], "oath my dignity which princes would they may not disanull": [0, 65535], "my dignity which princes would they may not disanull my": [0, 65535], "dignity which princes would they may not disanull my soule": [0, 65535], "which princes would they may not disanull my soule should": [0, 65535], "princes would they may not disanull my soule should sue": [0, 65535], "would they may not disanull my soule should sue as": [0, 65535], "they may not disanull my soule should sue as aduocate": [0, 65535], "may not disanull my soule should sue as aduocate for": [0, 65535], "not disanull my soule should sue as aduocate for thee": [0, 65535], "disanull my soule should sue as aduocate for thee but": [0, 65535], "my soule should sue as aduocate for thee but though": [0, 65535], "soule should sue as aduocate for thee but though thou": [0, 65535], "should sue as aduocate for thee but though thou art": [0, 65535], "sue as aduocate for thee but though thou art adiudged": [0, 65535], "as aduocate for thee but though thou art adiudged to": [0, 65535], "aduocate for thee but though thou art adiudged to the": [0, 65535], "for thee but though thou art adiudged to the death": [0, 65535], "thee but though thou art adiudged to the death and": [0, 65535], "but though thou art adiudged to the death and passed": [0, 65535], "though thou art adiudged to the death and passed sentence": [0, 65535], "thou art adiudged to the death and passed sentence may": [0, 65535], "art adiudged to the death and passed sentence may not": [0, 65535], "adiudged to the death and passed sentence may not be": [0, 65535], "to the death and passed sentence may not be recal'd": [0, 65535], "the death and passed sentence may not be recal'd but": [0, 65535], "death and passed sentence may not be recal'd but to": [0, 65535], "and passed sentence may not be recal'd but to our": [0, 65535], "passed sentence may not be recal'd but to our honours": [0, 65535], "sentence may not be recal'd but to our honours great": [0, 65535], "may not be recal'd but to our honours great disparagement": [0, 65535], "not be recal'd but to our honours great disparagement yet": [0, 65535], "be recal'd but to our honours great disparagement yet will": [0, 65535], "recal'd but to our honours great disparagement yet will i": [0, 65535], "but to our honours great disparagement yet will i fauour": [0, 65535], "to our honours great disparagement yet will i fauour thee": [0, 65535], "our honours great disparagement yet will i fauour thee in": [0, 65535], "honours great disparagement yet will i fauour thee in what": [0, 65535], "great disparagement yet will i fauour thee in what i": [0, 65535], "disparagement yet will i fauour thee in what i can": [0, 65535], "yet will i fauour thee in what i can therefore": [0, 65535], "will i fauour thee in what i can therefore marchant": [0, 65535], "i fauour thee in what i can therefore marchant ile": [0, 65535], "fauour thee in what i can therefore marchant ile limit": [0, 65535], "thee in what i can therefore marchant ile limit thee": [0, 65535], "in what i can therefore marchant ile limit thee this": [0, 65535], "what i can therefore marchant ile limit thee this day": [0, 65535], "i can therefore marchant ile limit thee this day to": [0, 65535], "can therefore marchant ile limit thee this day to seeke": [0, 65535], "therefore marchant ile limit thee this day to seeke thy": [0, 65535], "marchant ile limit thee this day to seeke thy helpe": [0, 65535], "ile limit thee this day to seeke thy helpe by": [0, 65535], "limit thee this day to seeke thy helpe by beneficiall": [0, 65535], "thee this day to seeke thy helpe by beneficiall helpe": [0, 65535], "this day to seeke thy helpe by beneficiall helpe try": [0, 65535], "day to seeke thy helpe by beneficiall helpe try all": [0, 65535], "to seeke thy helpe by beneficiall helpe try all the": [0, 65535], "seeke thy helpe by beneficiall helpe try all the friends": [0, 65535], "thy helpe by beneficiall helpe try all the friends thou": [0, 65535], "helpe by beneficiall helpe try all the friends thou hast": [0, 65535], "by beneficiall helpe try all the friends thou hast in": [0, 65535], "beneficiall helpe try all the friends thou hast in ephesus": [0, 65535], "helpe try all the friends thou hast in ephesus beg": [0, 65535], "try all the friends thou hast in ephesus beg thou": [0, 65535], "all the friends thou hast in ephesus beg thou or": [0, 65535], "the friends thou hast in ephesus beg thou or borrow": [0, 65535], "friends thou hast in ephesus beg thou or borrow to": [0, 65535], "thou hast in ephesus beg thou or borrow to make": [0, 65535], "hast in ephesus beg thou or borrow to make vp": [0, 65535], "in ephesus beg thou or borrow to make vp the": [0, 65535], "ephesus beg thou or borrow to make vp the summe": [0, 65535], "beg thou or borrow to make vp the summe and": [0, 65535], "thou or borrow to make vp the summe and liue": [0, 65535], "or borrow to make vp the summe and liue if": [0, 65535], "borrow to make vp the summe and liue if no": [0, 65535], "to make vp the summe and liue if no then": [0, 65535], "make vp the summe and liue if no then thou": [0, 65535], "vp the summe and liue if no then thou art": [0, 65535], "the summe and liue if no then thou art doom'd": [0, 65535], "summe and liue if no then thou art doom'd to": [0, 65535], "and liue if no then thou art doom'd to die": [0, 65535], "liue if no then thou art doom'd to die iaylor": [0, 65535], "if no then thou art doom'd to die iaylor take": [0, 65535], "no then thou art doom'd to die iaylor take him": [0, 65535], "then thou art doom'd to die iaylor take him to": [0, 65535], "thou art doom'd to die iaylor take him to thy": [0, 65535], "art doom'd to die iaylor take him to thy custodie": [0, 65535], "doom'd to die iaylor take him to thy custodie iaylor": [0, 65535], "to die iaylor take him to thy custodie iaylor i": [0, 65535], "die iaylor take him to thy custodie iaylor i will": [0, 65535], "iaylor take him to thy custodie iaylor i will my": [0, 65535], "take him to thy custodie iaylor i will my lord": [0, 65535], "him to thy custodie iaylor i will my lord merch": [0, 65535], "to thy custodie iaylor i will my lord merch hopelesse": [0, 65535], "thy custodie iaylor i will my lord merch hopelesse and": [0, 65535], "custodie iaylor i will my lord merch hopelesse and helpelesse": [0, 65535], "iaylor i will my lord merch hopelesse and helpelesse doth": [0, 65535], "i will my lord merch hopelesse and helpelesse doth egean": [0, 65535], "will my lord merch hopelesse and helpelesse doth egean wend": [0, 65535], "my lord merch hopelesse and helpelesse doth egean wend but": [0, 65535], "lord merch hopelesse and helpelesse doth egean wend but to": [0, 65535], "merch hopelesse and helpelesse doth egean wend but to procrastinate": [0, 65535], "hopelesse and helpelesse doth egean wend but to procrastinate his": [0, 65535], "and helpelesse doth egean wend but to procrastinate his liuelesse": [0, 65535], "helpelesse doth egean wend but to procrastinate his liuelesse end": [0, 65535], "doth egean wend but to procrastinate his liuelesse end exeunt": [0, 65535], "egean wend but to procrastinate his liuelesse end exeunt enter": [0, 65535], "wend but to procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "but to procrastinate his liuelesse end exeunt enter antipholis erotes": [0, 65535], "to procrastinate his liuelesse end exeunt enter antipholis erotes a": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis erotes a marchant": [0, 65535], "his liuelesse end exeunt enter antipholis erotes a marchant and": [0, 65535], "liuelesse end exeunt enter antipholis erotes a marchant and dromio": [0, 65535], "end exeunt enter antipholis erotes a marchant and dromio mer": [0, 65535], "exeunt enter antipholis erotes a marchant and dromio mer therefore": [0, 65535], "enter antipholis erotes a marchant and dromio mer therefore giue": [0, 65535], "antipholis erotes a marchant and dromio mer therefore giue out": [0, 65535], "erotes a marchant and dromio mer therefore giue out you": [0, 65535], "a marchant and dromio mer therefore giue out you are": [0, 65535], "marchant and dromio mer therefore giue out you are of": [0, 65535], "and dromio mer therefore giue out you are of epidamium": [0, 65535], "dromio mer therefore giue out you are of epidamium lest": [0, 65535], "mer therefore giue out you are of epidamium lest that": [0, 65535], "therefore giue out you are of epidamium lest that your": [0, 65535], "giue out you are of epidamium lest that your goods": [0, 65535], "out you are of epidamium lest that your goods too": [0, 65535], "you are of epidamium lest that your goods too soone": [0, 65535], "are of epidamium lest that your goods too soone be": [0, 65535], "of epidamium lest that your goods too soone be confiscate": [0, 65535], "epidamium lest that your goods too soone be confiscate this": [0, 65535], "lest that your goods too soone be confiscate this very": [0, 65535], "that your goods too soone be confiscate this very day": [0, 65535], "your goods too soone be confiscate this very day a": [0, 65535], "goods too soone be confiscate this very day a syracusian": [0, 65535], "too soone be confiscate this very day a syracusian marchant": [0, 65535], "soone be confiscate this very day a syracusian marchant is": [0, 65535], "be confiscate this very day a syracusian marchant is apprehended": [0, 65535], "confiscate this very day a syracusian marchant is apprehended for": [0, 65535], "this very day a syracusian marchant is apprehended for a": [0, 65535], "very day a syracusian marchant is apprehended for a riuall": [0, 65535], "day a syracusian marchant is apprehended for a riuall here": [0, 65535], "a syracusian marchant is apprehended for a riuall here and": [0, 65535], "syracusian marchant is apprehended for a riuall here and not": [0, 65535], "marchant is apprehended for a riuall here and not being": [0, 65535], "is apprehended for a riuall here and not being able": [0, 65535], "apprehended for a riuall here and not being able to": [0, 65535], "for a riuall here and not being able to buy": [0, 65535], "a riuall here and not being able to buy out": [0, 65535], "riuall here and not being able to buy out his": [0, 65535], "here and not being able to buy out his life": [0, 65535], "and not being able to buy out his life according": [0, 65535], "not being able to buy out his life according to": [0, 65535], "being able to buy out his life according to the": [0, 65535], "able to buy out his life according to the statute": [0, 65535], "to buy out his life according to the statute of": [0, 65535], "buy out his life according to the statute of the": [0, 65535], "out his life according to the statute of the towne": [0, 65535], "his life according to the statute of the towne dies": [0, 65535], "life according to the statute of the towne dies ere": [0, 65535], "according to the statute of the towne dies ere the": [0, 65535], "to the statute of the towne dies ere the wearie": [0, 65535], "the statute of the towne dies ere the wearie sunne": [0, 65535], "statute of the towne dies ere the wearie sunne set": [0, 65535], "of the towne dies ere the wearie sunne set in": [0, 65535], "the towne dies ere the wearie sunne set in the": [0, 65535], "towne dies ere the wearie sunne set in the west": [0, 65535], "dies ere the wearie sunne set in the west there": [0, 65535], "ere the wearie sunne set in the west there is": [0, 65535], "the wearie sunne set in the west there is your": [0, 65535], "wearie sunne set in the west there is your monie": [0, 65535], "sunne set in the west there is your monie that": [0, 65535], "set in the west there is your monie that i": [0, 65535], "in the west there is your monie that i had": [0, 65535], "the west there is your monie that i had to": [0, 65535], "west there is your monie that i had to keepe": [0, 65535], "there is your monie that i had to keepe ant": [0, 65535], "is your monie that i had to keepe ant goe": [0, 65535], "your monie that i had to keepe ant goe beare": [0, 65535], "monie that i had to keepe ant goe beare it": [0, 65535], "that i had to keepe ant goe beare it to": [0, 65535], "i had to keepe ant goe beare it to the": [0, 65535], "had to keepe ant goe beare it to the centaure": [0, 65535], "to keepe ant goe beare it to the centaure where": [0, 65535], "keepe ant goe beare it to the centaure where we": [0, 65535], "ant goe beare it to the centaure where we host": [0, 65535], "goe beare it to the centaure where we host and": [0, 65535], "beare it to the centaure where we host and stay": [0, 65535], "it to the centaure where we host and stay there": [0, 65535], "to the centaure where we host and stay there dromio": [0, 65535], "the centaure where we host and stay there dromio till": [0, 65535], "centaure where we host and stay there dromio till i": [0, 65535], "where we host and stay there dromio till i come": [0, 65535], "we host and stay there dromio till i come to": [0, 65535], "host and stay there dromio till i come to thee": [0, 65535], "and stay there dromio till i come to thee within": [0, 65535], "stay there dromio till i come to thee within this": [0, 65535], "there dromio till i come to thee within this houre": [0, 65535], "dromio till i come to thee within this houre it": [0, 65535], "till i come to thee within this houre it will": [0, 65535], "i come to thee within this houre it will be": [0, 65535], "come to thee within this houre it will be dinner": [0, 65535], "to thee within this houre it will be dinner time": [0, 65535], "thee within this houre it will be dinner time till": [0, 65535], "within this houre it will be dinner time till that": [0, 65535], "this houre it will be dinner time till that ile": [0, 65535], "houre it will be dinner time till that ile view": [0, 65535], "it will be dinner time till that ile view the": [0, 65535], "will be dinner time till that ile view the manners": [0, 65535], "be dinner time till that ile view the manners of": [0, 65535], "dinner time till that ile view the manners of the": [0, 65535], "time till that ile view the manners of the towne": [0, 65535], "till that ile view the manners of the towne peruse": [0, 65535], "that ile view the manners of the towne peruse the": [0, 65535], "ile view the manners of the towne peruse the traders": [0, 65535], "view the manners of the towne peruse the traders gaze": [0, 65535], "the manners of the towne peruse the traders gaze vpon": [0, 65535], "manners of the towne peruse the traders gaze vpon the": [0, 65535], "of the towne peruse the traders gaze vpon the buildings": [0, 65535], "the towne peruse the traders gaze vpon the buildings and": [0, 65535], "towne peruse the traders gaze vpon the buildings and then": [0, 65535], "peruse the traders gaze vpon the buildings and then returne": [0, 65535], "the traders gaze vpon the buildings and then returne and": [0, 65535], "traders gaze vpon the buildings and then returne and sleepe": [0, 65535], "gaze vpon the buildings and then returne and sleepe within": [0, 65535], "vpon the buildings and then returne and sleepe within mine": [0, 65535], "the buildings and then returne and sleepe within mine inne": [0, 65535], "buildings and then returne and sleepe within mine inne for": [0, 65535], "and then returne and sleepe within mine inne for with": [0, 65535], "then returne and sleepe within mine inne for with long": [0, 65535], "returne and sleepe within mine inne for with long trauaile": [0, 65535], "and sleepe within mine inne for with long trauaile i": [0, 65535], "sleepe within mine inne for with long trauaile i am": [0, 65535], "within mine inne for with long trauaile i am stiffe": [0, 65535], "mine inne for with long trauaile i am stiffe and": [0, 65535], "inne for with long trauaile i am stiffe and wearie": [0, 65535], "for with long trauaile i am stiffe and wearie get": [0, 65535], "with long trauaile i am stiffe and wearie get thee": [0, 65535], "long trauaile i am stiffe and wearie get thee away": [0, 65535], "trauaile i am stiffe and wearie get thee away dro": [0, 65535], "i am stiffe and wearie get thee away dro many": [0, 65535], "am stiffe and wearie get thee away dro many a": [0, 65535], "stiffe and wearie get thee away dro many a man": [0, 65535], "and wearie get thee away dro many a man would": [0, 65535], "wearie get thee away dro many a man would take": [0, 65535], "get thee away dro many a man would take you": [0, 65535], "thee away dro many a man would take you at": [0, 65535], "away dro many a man would take you at your": [0, 65535], "dro many a man would take you at your word": [0, 65535], "many a man would take you at your word and": [0, 65535], "a man would take you at your word and goe": [0, 65535], "man would take you at your word and goe indeede": [0, 65535], "would take you at your word and goe indeede hauing": [0, 65535], "take you at your word and goe indeede hauing so": [0, 65535], "you at your word and goe indeede hauing so good": [0, 65535], "at your word and goe indeede hauing so good a": [0, 65535], "your word and goe indeede hauing so good a meane": [0, 65535], "word and goe indeede hauing so good a meane exit": [0, 65535], "and goe indeede hauing so good a meane exit dromio": [0, 65535], "goe indeede hauing so good a meane exit dromio ant": [0, 65535], "indeede hauing so good a meane exit dromio ant a": [0, 65535], "hauing so good a meane exit dromio ant a trustie": [0, 65535], "so good a meane exit dromio ant a trustie villaine": [0, 65535], "good a meane exit dromio ant a trustie villaine sir": [0, 65535], "a meane exit dromio ant a trustie villaine sir that": [0, 65535], "meane exit dromio ant a trustie villaine sir that very": [0, 65535], "exit dromio ant a trustie villaine sir that very oft": [0, 65535], "dromio ant a trustie villaine sir that very oft when": [0, 65535], "ant a trustie villaine sir that very oft when i": [0, 65535], "a trustie villaine sir that very oft when i am": [0, 65535], "trustie villaine sir that very oft when i am dull": [0, 65535], "villaine sir that very oft when i am dull with": [0, 65535], "sir that very oft when i am dull with care": [0, 65535], "that very oft when i am dull with care and": [0, 65535], "very oft when i am dull with care and melancholly": [0, 65535], "oft when i am dull with care and melancholly lightens": [0, 65535], "when i am dull with care and melancholly lightens my": [0, 65535], "i am dull with care and melancholly lightens my humour": [0, 65535], "am dull with care and melancholly lightens my humour with": [0, 65535], "dull with care and melancholly lightens my humour with his": [0, 65535], "with care and melancholly lightens my humour with his merry": [0, 65535], "care and melancholly lightens my humour with his merry iests": [0, 65535], "and melancholly lightens my humour with his merry iests what": [0, 65535], "melancholly lightens my humour with his merry iests what will": [0, 65535], "lightens my humour with his merry iests what will you": [0, 65535], "my humour with his merry iests what will you walke": [0, 65535], "humour with his merry iests what will you walke with": [0, 65535], "with his merry iests what will you walke with me": [0, 65535], "his merry iests what will you walke with me about": [0, 65535], "merry iests what will you walke with me about the": [0, 65535], "iests what will you walke with me about the towne": [0, 65535], "what will you walke with me about the towne and": [0, 65535], "will you walke with me about the towne and then": [0, 65535], "you walke with me about the towne and then goe": [0, 65535], "walke with me about the towne and then goe to": [0, 65535], "with me about the towne and then goe to my": [0, 65535], "me about the towne and then goe to my inne": [0, 65535], "about the towne and then goe to my inne and": [0, 65535], "the towne and then goe to my inne and dine": [0, 65535], "towne and then goe to my inne and dine with": [0, 65535], "and then goe to my inne and dine with me": [0, 65535], "then goe to my inne and dine with me e": [0, 65535], "goe to my inne and dine with me e mar": [0, 65535], "to my inne and dine with me e mar i": [0, 65535], "my inne and dine with me e mar i am": [0, 65535], "inne and dine with me e mar i am inuited": [0, 65535], "and dine with me e mar i am inuited sir": [0, 65535], "dine with me e mar i am inuited sir to": [0, 65535], "with me e mar i am inuited sir to certaine": [0, 65535], "me e mar i am inuited sir to certaine marchants": [0, 65535], "e mar i am inuited sir to certaine marchants of": [0, 65535], "mar i am inuited sir to certaine marchants of whom": [0, 65535], "i am inuited sir to certaine marchants of whom i": [0, 65535], "am inuited sir to certaine marchants of whom i hope": [0, 65535], "inuited sir to certaine marchants of whom i hope to": [0, 65535], "sir to certaine marchants of whom i hope to make": [0, 65535], "to certaine marchants of whom i hope to make much": [0, 65535], "certaine marchants of whom i hope to make much benefit": [0, 65535], "marchants of whom i hope to make much benefit i": [0, 65535], "of whom i hope to make much benefit i craue": [0, 65535], "whom i hope to make much benefit i craue your": [0, 65535], "i hope to make much benefit i craue your pardon": [0, 65535], "hope to make much benefit i craue your pardon soone": [0, 65535], "to make much benefit i craue your pardon soone at": [0, 65535], "make much benefit i craue your pardon soone at fiue": [0, 65535], "much benefit i craue your pardon soone at fiue a": [0, 65535], "benefit i craue your pardon soone at fiue a clocke": [0, 65535], "i craue your pardon soone at fiue a clocke please": [0, 65535], "craue your pardon soone at fiue a clocke please you": [0, 65535], "your pardon soone at fiue a clocke please you ile": [0, 65535], "pardon soone at fiue a clocke please you ile meete": [0, 65535], "soone at fiue a clocke please you ile meete with": [0, 65535], "at fiue a clocke please you ile meete with you": [0, 65535], "fiue a clocke please you ile meete with you vpon": [0, 65535], "a clocke please you ile meete with you vpon the": [0, 65535], "clocke please you ile meete with you vpon the mart": [0, 65535], "please you ile meete with you vpon the mart and": [0, 65535], "you ile meete with you vpon the mart and afterward": [0, 65535], "ile meete with you vpon the mart and afterward consort": [0, 65535], "meete with you vpon the mart and afterward consort you": [0, 65535], "with you vpon the mart and afterward consort you till": [0, 65535], "you vpon the mart and afterward consort you till bed": [0, 65535], "vpon the mart and afterward consort you till bed time": [0, 65535], "the mart and afterward consort you till bed time my": [0, 65535], "mart and afterward consort you till bed time my present": [0, 65535], "and afterward consort you till bed time my present businesse": [0, 65535], "afterward consort you till bed time my present businesse cals": [0, 65535], "consort you till bed time my present businesse cals me": [0, 65535], "you till bed time my present businesse cals me from": [0, 65535], "till bed time my present businesse cals me from you": [0, 65535], "bed time my present businesse cals me from you now": [0, 65535], "time my present businesse cals me from you now ant": [0, 65535], "my present businesse cals me from you now ant farewell": [0, 65535], "present businesse cals me from you now ant farewell till": [0, 65535], "businesse cals me from you now ant farewell till then": [0, 65535], "cals me from you now ant farewell till then i": [0, 65535], "me from you now ant farewell till then i will": [0, 65535], "from you now ant farewell till then i will goe": [0, 65535], "you now ant farewell till then i will goe loose": [0, 65535], "now ant farewell till then i will goe loose my": [0, 65535], "ant farewell till then i will goe loose my selfe": [0, 65535], "farewell till then i will goe loose my selfe and": [0, 65535], "till then i will goe loose my selfe and wander": [0, 65535], "then i will goe loose my selfe and wander vp": [0, 65535], "i will goe loose my selfe and wander vp and": [0, 65535], "will goe loose my selfe and wander vp and downe": [0, 65535], "goe loose my selfe and wander vp and downe to": [0, 65535], "loose my selfe and wander vp and downe to view": [0, 65535], "my selfe and wander vp and downe to view the": [0, 65535], "selfe and wander vp and downe to view the citie": [0, 65535], "and wander vp and downe to view the citie e": [0, 65535], "wander vp and downe to view the citie e mar": [0, 65535], "vp and downe to view the citie e mar sir": [0, 65535], "and downe to view the citie e mar sir i": [0, 65535], "downe to view the citie e mar sir i commend": [0, 65535], "to view the citie e mar sir i commend you": [0, 65535], "view the citie e mar sir i commend you to": [0, 65535], "the citie e mar sir i commend you to your": [0, 65535], "citie e mar sir i commend you to your owne": [0, 65535], "e mar sir i commend you to your owne content": [0, 65535], "mar sir i commend you to your owne content exeunt": [0, 65535], "sir i commend you to your owne content exeunt ant": [0, 65535], "i commend you to your owne content exeunt ant he": [0, 65535], "commend you to your owne content exeunt ant he that": [0, 65535], "you to your owne content exeunt ant he that commends": [0, 65535], "to your owne content exeunt ant he that commends me": [0, 65535], "your owne content exeunt ant he that commends me to": [0, 65535], "owne content exeunt ant he that commends me to mine": [0, 65535], "content exeunt ant he that commends me to mine owne": [0, 65535], "exeunt ant he that commends me to mine owne content": [0, 65535], "ant he that commends me to mine owne content commends": [0, 65535], "he that commends me to mine owne content commends me": [0, 65535], "that commends me to mine owne content commends me to": [0, 65535], "commends me to mine owne content commends me to the": [0, 65535], "me to mine owne content commends me to the thing": [0, 65535], "to mine owne content commends me to the thing i": [0, 65535], "mine owne content commends me to the thing i cannot": [0, 65535], "owne content commends me to the thing i cannot get": [0, 65535], "content commends me to the thing i cannot get i": [0, 65535], "commends me to the thing i cannot get i to": [0, 65535], "me to the thing i cannot get i to the": [0, 65535], "to the thing i cannot get i to the world": [0, 65535], "the thing i cannot get i to the world am": [0, 65535], "thing i cannot get i to the world am like": [0, 65535], "i cannot get i to the world am like a": [0, 65535], "cannot get i to the world am like a drop": [0, 65535], "get i to the world am like a drop of": [0, 65535], "i to the world am like a drop of water": [0, 65535], "to the world am like a drop of water that": [0, 65535], "the world am like a drop of water that in": [0, 65535], "world am like a drop of water that in the": [0, 65535], "am like a drop of water that in the ocean": [0, 65535], "like a drop of water that in the ocean seekes": [0, 65535], "a drop of water that in the ocean seekes another": [0, 65535], "drop of water that in the ocean seekes another drop": [0, 65535], "of water that in the ocean seekes another drop who": [0, 65535], "water that in the ocean seekes another drop who falling": [0, 65535], "that in the ocean seekes another drop who falling there": [0, 65535], "in the ocean seekes another drop who falling there to": [0, 65535], "the ocean seekes another drop who falling there to finde": [0, 65535], "ocean seekes another drop who falling there to finde his": [0, 65535], "seekes another drop who falling there to finde his fellow": [0, 65535], "another drop who falling there to finde his fellow forth": [0, 65535], "drop who falling there to finde his fellow forth vnseene": [0, 65535], "who falling there to finde his fellow forth vnseene inquisitiue": [0, 65535], "falling there to finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "there to finde his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "to finde his fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe so i to": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so i to finde": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i to finde a": [0, 65535], "vnseene inquisitiue confounds himselfe so i to finde a mother": [0, 65535], "inquisitiue confounds himselfe so i to finde a mother and": [0, 65535], "confounds himselfe so i to finde a mother and a": [0, 65535], "himselfe so i to finde a mother and a brother": [0, 65535], "so i to finde a mother and a brother in": [0, 65535], "i to finde a mother and a brother in quest": [0, 65535], "to finde a mother and a brother in quest of": [0, 65535], "finde a mother and a brother in quest of them": [0, 65535], "a mother and a brother in quest of them vnhappie": [0, 65535], "mother and a brother in quest of them vnhappie a": [0, 65535], "and a brother in quest of them vnhappie a loose": [0, 65535], "a brother in quest of them vnhappie a loose my": [0, 65535], "brother in quest of them vnhappie a loose my selfe": [0, 65535], "in quest of them vnhappie a loose my selfe enter": [0, 65535], "quest of them vnhappie a loose my selfe enter dromio": [0, 65535], "of them vnhappie a loose my selfe enter dromio of": [0, 65535], "them vnhappie a loose my selfe enter dromio of ephesus": [0, 65535], "vnhappie a loose my selfe enter dromio of ephesus here": [0, 65535], "a loose my selfe enter dromio of ephesus here comes": [0, 65535], "loose my selfe enter dromio of ephesus here comes the": [0, 65535], "my selfe enter dromio of ephesus here comes the almanacke": [0, 65535], "selfe enter dromio of ephesus here comes the almanacke of": [0, 65535], "enter dromio of ephesus here comes the almanacke of my": [0, 65535], "dromio of ephesus here comes the almanacke of my true": [0, 65535], "of ephesus here comes the almanacke of my true date": [0, 65535], "ephesus here comes the almanacke of my true date what": [0, 65535], "here comes the almanacke of my true date what now": [0, 65535], "comes the almanacke of my true date what now how": [0, 65535], "the almanacke of my true date what now how chance": [0, 65535], "almanacke of my true date what now how chance thou": [0, 65535], "of my true date what now how chance thou art": [0, 65535], "my true date what now how chance thou art return'd": [0, 65535], "true date what now how chance thou art return'd so": [0, 65535], "date what now how chance thou art return'd so soone": [0, 65535], "what now how chance thou art return'd so soone e": [0, 65535], "now how chance thou art return'd so soone e dro": [0, 65535], "how chance thou art return'd so soone e dro return'd": [0, 65535], "chance thou art return'd so soone e dro return'd so": [0, 65535], "thou art return'd so soone e dro return'd so soone": [0, 65535], "art return'd so soone e dro return'd so soone rather": [0, 65535], "return'd so soone e dro return'd so soone rather approacht": [0, 65535], "so soone e dro return'd so soone rather approacht too": [0, 65535], "soone e dro return'd so soone rather approacht too late": [0, 65535], "e dro return'd so soone rather approacht too late the": [0, 65535], "dro return'd so soone rather approacht too late the capon": [0, 65535], "return'd so soone rather approacht too late the capon burnes": [0, 65535], "so soone rather approacht too late the capon burnes the": [0, 65535], "soone rather approacht too late the capon burnes the pig": [0, 65535], "rather approacht too late the capon burnes the pig fals": [0, 65535], "approacht too late the capon burnes the pig fals from": [0, 65535], "too late the capon burnes the pig fals from the": [0, 65535], "late the capon burnes the pig fals from the spit": [0, 65535], "the capon burnes the pig fals from the spit the": [0, 65535], "capon burnes the pig fals from the spit the clocke": [0, 65535], "burnes the pig fals from the spit the clocke hath": [0, 65535], "the pig fals from the spit the clocke hath strucken": [0, 65535], "pig fals from the spit the clocke hath strucken twelue": [0, 65535], "fals from the spit the clocke hath strucken twelue vpon": [0, 65535], "from the spit the clocke hath strucken twelue vpon the": [0, 65535], "the spit the clocke hath strucken twelue vpon the bell": [0, 65535], "spit the clocke hath strucken twelue vpon the bell my": [0, 65535], "the clocke hath strucken twelue vpon the bell my mistris": [0, 65535], "clocke hath strucken twelue vpon the bell my mistris made": [0, 65535], "hath strucken twelue vpon the bell my mistris made it": [0, 65535], "strucken twelue vpon the bell my mistris made it one": [0, 65535], "twelue vpon the bell my mistris made it one vpon": [0, 65535], "vpon the bell my mistris made it one vpon my": [0, 65535], "the bell my mistris made it one vpon my cheeke": [0, 65535], "bell my mistris made it one vpon my cheeke she": [0, 65535], "my mistris made it one vpon my cheeke she is": [0, 65535], "mistris made it one vpon my cheeke she is so": [0, 65535], "made it one vpon my cheeke she is so hot": [0, 65535], "it one vpon my cheeke she is so hot because": [0, 65535], "one vpon my cheeke she is so hot because the": [0, 65535], "vpon my cheeke she is so hot because the meate": [0, 65535], "my cheeke she is so hot because the meate is": [0, 65535], "cheeke she is so hot because the meate is colde": [0, 65535], "she is so hot because the meate is colde the": [0, 65535], "is so hot because the meate is colde the meate": [0, 65535], "so hot because the meate is colde the meate is": [0, 65535], "hot because the meate is colde the meate is colde": [0, 65535], "because the meate is colde the meate is colde because": [0, 65535], "the meate is colde the meate is colde because you": [0, 65535], "meate is colde the meate is colde because you come": [0, 65535], "is colde the meate is colde because you come not": [0, 65535], "colde the meate is colde because you come not home": [0, 65535], "the meate is colde because you come not home you": [0, 65535], "meate is colde because you come not home you come": [0, 65535], "is colde because you come not home you come not": [0, 65535], "colde because you come not home you come not home": [0, 65535], "because you come not home you come not home because": [0, 65535], "you come not home you come not home because you": [0, 65535], "come not home you come not home because you haue": [0, 65535], "not home you come not home because you haue no": [0, 65535], "home you come not home because you haue no stomacke": [0, 65535], "you come not home because you haue no stomacke you": [0, 65535], "come not home because you haue no stomacke you haue": [0, 65535], "not home because you haue no stomacke you haue no": [0, 65535], "home because you haue no stomacke you haue no stomacke": [0, 65535], "because you haue no stomacke you haue no stomacke hauing": [0, 65535], "you haue no stomacke you haue no stomacke hauing broke": [0, 65535], "haue no stomacke you haue no stomacke hauing broke your": [0, 65535], "no stomacke you haue no stomacke hauing broke your fast": [0, 65535], "stomacke you haue no stomacke hauing broke your fast but": [0, 65535], "you haue no stomacke hauing broke your fast but we": [0, 65535], "haue no stomacke hauing broke your fast but we that": [0, 65535], "no stomacke hauing broke your fast but we that know": [0, 65535], "stomacke hauing broke your fast but we that know what": [0, 65535], "hauing broke your fast but we that know what 'tis": [0, 65535], "broke your fast but we that know what 'tis to": [0, 65535], "your fast but we that know what 'tis to fast": [0, 65535], "fast but we that know what 'tis to fast and": [0, 65535], "but we that know what 'tis to fast and pray": [0, 65535], "we that know what 'tis to fast and pray are": [0, 65535], "that know what 'tis to fast and pray are penitent": [0, 65535], "know what 'tis to fast and pray are penitent for": [0, 65535], "what 'tis to fast and pray are penitent for your": [0, 65535], "'tis to fast and pray are penitent for your default": [0, 65535], "to fast and pray are penitent for your default to": [0, 65535], "fast and pray are penitent for your default to day": [0, 65535], "and pray are penitent for your default to day ant": [0, 65535], "pray are penitent for your default to day ant stop": [0, 65535], "are penitent for your default to day ant stop in": [0, 65535], "penitent for your default to day ant stop in your": [0, 65535], "for your default to day ant stop in your winde": [0, 65535], "your default to day ant stop in your winde sir": [0, 65535], "default to day ant stop in your winde sir tell": [0, 65535], "to day ant stop in your winde sir tell me": [0, 65535], "day ant stop in your winde sir tell me this": [0, 65535], "ant stop in your winde sir tell me this i": [0, 65535], "stop in your winde sir tell me this i pray": [0, 65535], "in your winde sir tell me this i pray where": [0, 65535], "your winde sir tell me this i pray where haue": [0, 65535], "winde sir tell me this i pray where haue you": [0, 65535], "sir tell me this i pray where haue you left": [0, 65535], "tell me this i pray where haue you left the": [0, 65535], "me this i pray where haue you left the mony": [0, 65535], "this i pray where haue you left the mony that": [0, 65535], "i pray where haue you left the mony that i": [0, 65535], "pray where haue you left the mony that i gaue": [0, 65535], "where haue you left the mony that i gaue you": [0, 65535], "haue you left the mony that i gaue you e": [0, 65535], "you left the mony that i gaue you e dro": [0, 65535], "left the mony that i gaue you e dro oh": [0, 65535], "the mony that i gaue you e dro oh sixe": [0, 65535], "mony that i gaue you e dro oh sixe pence": [0, 65535], "that i gaue you e dro oh sixe pence that": [0, 65535], "i gaue you e dro oh sixe pence that i": [0, 65535], "gaue you e dro oh sixe pence that i had": [0, 65535], "you e dro oh sixe pence that i had a": [0, 65535], "e dro oh sixe pence that i had a wensday": [0, 65535], "dro oh sixe pence that i had a wensday last": [0, 65535], "oh sixe pence that i had a wensday last to": [0, 65535], "sixe pence that i had a wensday last to pay": [0, 65535], "pence that i had a wensday last to pay the": [0, 65535], "that i had a wensday last to pay the sadler": [0, 65535], "i had a wensday last to pay the sadler for": [0, 65535], "had a wensday last to pay the sadler for my": [0, 65535], "a wensday last to pay the sadler for my mistris": [0, 65535], "wensday last to pay the sadler for my mistris crupper": [0, 65535], "last to pay the sadler for my mistris crupper the": [0, 65535], "to pay the sadler for my mistris crupper the sadler": [0, 65535], "pay the sadler for my mistris crupper the sadler had": [0, 65535], "the sadler for my mistris crupper the sadler had it": [0, 65535], "sadler for my mistris crupper the sadler had it sir": [0, 65535], "for my mistris crupper the sadler had it sir i": [0, 65535], "my mistris crupper the sadler had it sir i kept": [0, 65535], "mistris crupper the sadler had it sir i kept it": [0, 65535], "crupper the sadler had it sir i kept it not": [0, 65535], "the sadler had it sir i kept it not ant": [0, 65535], "sadler had it sir i kept it not ant i": [0, 65535], "had it sir i kept it not ant i am": [0, 65535], "it sir i kept it not ant i am not": [0, 65535], "sir i kept it not ant i am not in": [0, 65535], "i kept it not ant i am not in a": [0, 65535], "kept it not ant i am not in a sportiue": [0, 65535], "it not ant i am not in a sportiue humor": [0, 65535], "not ant i am not in a sportiue humor now": [0, 65535], "ant i am not in a sportiue humor now tell": [0, 65535], "i am not in a sportiue humor now tell me": [0, 65535], "am not in a sportiue humor now tell me and": [0, 65535], "not in a sportiue humor now tell me and dally": [0, 65535], "in a sportiue humor now tell me and dally not": [0, 65535], "a sportiue humor now tell me and dally not where": [0, 65535], "sportiue humor now tell me and dally not where is": [0, 65535], "humor now tell me and dally not where is the": [0, 65535], "now tell me and dally not where is the monie": [0, 65535], "tell me and dally not where is the monie we": [0, 65535], "me and dally not where is the monie we being": [0, 65535], "and dally not where is the monie we being strangers": [0, 65535], "dally not where is the monie we being strangers here": [0, 65535], "not where is the monie we being strangers here how": [0, 65535], "where is the monie we being strangers here how dar'st": [0, 65535], "is the monie we being strangers here how dar'st thou": [0, 65535], "the monie we being strangers here how dar'st thou trust": [0, 65535], "monie we being strangers here how dar'st thou trust so": [0, 65535], "we being strangers here how dar'st thou trust so great": [0, 65535], "being strangers here how dar'st thou trust so great a": [0, 65535], "strangers here how dar'st thou trust so great a charge": [0, 65535], "here how dar'st thou trust so great a charge from": [0, 65535], "how dar'st thou trust so great a charge from thine": [0, 65535], "dar'st thou trust so great a charge from thine owne": [0, 65535], "thou trust so great a charge from thine owne custodie": [0, 65535], "trust so great a charge from thine owne custodie e": [0, 65535], "so great a charge from thine owne custodie e dro": [0, 65535], "great a charge from thine owne custodie e dro i": [0, 65535], "a charge from thine owne custodie e dro i pray": [0, 65535], "charge from thine owne custodie e dro i pray you": [0, 65535], "from thine owne custodie e dro i pray you iest": [0, 65535], "thine owne custodie e dro i pray you iest sir": [0, 65535], "owne custodie e dro i pray you iest sir as": [0, 65535], "custodie e dro i pray you iest sir as you": [0, 65535], "e dro i pray you iest sir as you sit": [0, 65535], "dro i pray you iest sir as you sit at": [0, 65535], "i pray you iest sir as you sit at dinner": [0, 65535], "pray you iest sir as you sit at dinner i": [0, 65535], "you iest sir as you sit at dinner i from": [0, 65535], "iest sir as you sit at dinner i from my": [0, 65535], "sir as you sit at dinner i from my mistris": [0, 65535], "as you sit at dinner i from my mistris come": [0, 65535], "you sit at dinner i from my mistris come to": [0, 65535], "sit at dinner i from my mistris come to you": [0, 65535], "at dinner i from my mistris come to you in": [0, 65535], "dinner i from my mistris come to you in post": [0, 65535], "i from my mistris come to you in post if": [0, 65535], "from my mistris come to you in post if i": [0, 65535], "my mistris come to you in post if i returne": [0, 65535], "mistris come to you in post if i returne i": [0, 65535], "come to you in post if i returne i shall": [0, 65535], "to you in post if i returne i shall be": [0, 65535], "you in post if i returne i shall be post": [0, 65535], "in post if i returne i shall be post indeede": [0, 65535], "post if i returne i shall be post indeede for": [0, 65535], "if i returne i shall be post indeede for she": [0, 65535], "i returne i shall be post indeede for she will": [0, 65535], "returne i shall be post indeede for she will scoure": [0, 65535], "i shall be post indeede for she will scoure your": [0, 65535], "shall be post indeede for she will scoure your fault": [0, 65535], "be post indeede for she will scoure your fault vpon": [0, 65535], "post indeede for she will scoure your fault vpon my": [0, 65535], "indeede for she will scoure your fault vpon my pate": [0, 65535], "for she will scoure your fault vpon my pate me": [0, 65535], "she will scoure your fault vpon my pate me thinkes": [0, 65535], "will scoure your fault vpon my pate me thinkes your": [0, 65535], "scoure your fault vpon my pate me thinkes your maw": [0, 65535], "your fault vpon my pate me thinkes your maw like": [0, 65535], "fault vpon my pate me thinkes your maw like mine": [0, 65535], "vpon my pate me thinkes your maw like mine should": [0, 65535], "my pate me thinkes your maw like mine should be": [0, 65535], "pate me thinkes your maw like mine should be your": [0, 65535], "me thinkes your maw like mine should be your cooke": [0, 65535], "thinkes your maw like mine should be your cooke and": [0, 65535], "your maw like mine should be your cooke and strike": [0, 65535], "maw like mine should be your cooke and strike you": [0, 65535], "like mine should be your cooke and strike you home": [0, 65535], "mine should be your cooke and strike you home without": [0, 65535], "should be your cooke and strike you home without a": [0, 65535], "be your cooke and strike you home without a messenger": [0, 65535], "your cooke and strike you home without a messenger ant": [0, 65535], "cooke and strike you home without a messenger ant come": [0, 65535], "and strike you home without a messenger ant come dromio": [0, 65535], "strike you home without a messenger ant come dromio come": [0, 65535], "you home without a messenger ant come dromio come these": [0, 65535], "home without a messenger ant come dromio come these iests": [0, 65535], "without a messenger ant come dromio come these iests are": [0, 65535], "a messenger ant come dromio come these iests are out": [0, 65535], "messenger ant come dromio come these iests are out of": [0, 65535], "ant come dromio come these iests are out of season": [0, 65535], "come dromio come these iests are out of season reserue": [0, 65535], "dromio come these iests are out of season reserue them": [0, 65535], "come these iests are out of season reserue them till": [0, 65535], "these iests are out of season reserue them till a": [0, 65535], "iests are out of season reserue them till a merrier": [0, 65535], "are out of season reserue them till a merrier houre": [0, 65535], "out of season reserue them till a merrier houre then": [0, 65535], "of season reserue them till a merrier houre then this": [0, 65535], "season reserue them till a merrier houre then this where": [0, 65535], "reserue them till a merrier houre then this where is": [0, 65535], "them till a merrier houre then this where is the": [0, 65535], "till a merrier houre then this where is the gold": [0, 65535], "a merrier houre then this where is the gold i": [0, 65535], "merrier houre then this where is the gold i gaue": [0, 65535], "houre then this where is the gold i gaue in": [0, 65535], "then this where is the gold i gaue in charge": [0, 65535], "this where is the gold i gaue in charge to": [0, 65535], "where is the gold i gaue in charge to thee": [0, 65535], "is the gold i gaue in charge to thee e": [0, 65535], "the gold i gaue in charge to thee e dro": [0, 65535], "gold i gaue in charge to thee e dro to": [0, 65535], "i gaue in charge to thee e dro to me": [0, 65535], "gaue in charge to thee e dro to me sir": [0, 65535], "in charge to thee e dro to me sir why": [0, 65535], "charge to thee e dro to me sir why you": [0, 65535], "to thee e dro to me sir why you gaue": [0, 65535], "thee e dro to me sir why you gaue no": [0, 65535], "e dro to me sir why you gaue no gold": [0, 65535], "dro to me sir why you gaue no gold to": [0, 65535], "to me sir why you gaue no gold to me": [0, 65535], "me sir why you gaue no gold to me ant": [0, 65535], "sir why you gaue no gold to me ant come": [0, 65535], "why you gaue no gold to me ant come on": [0, 65535], "you gaue no gold to me ant come on sir": [0, 65535], "gaue no gold to me ant come on sir knaue": [0, 65535], "no gold to me ant come on sir knaue haue": [0, 65535], "gold to me ant come on sir knaue haue done": [0, 65535], "to me ant come on sir knaue haue done your": [0, 65535], "me ant come on sir knaue haue done your foolishnes": [0, 65535], "ant come on sir knaue haue done your foolishnes and": [0, 65535], "come on sir knaue haue done your foolishnes and tell": [0, 65535], "on sir knaue haue done your foolishnes and tell me": [0, 65535], "sir knaue haue done your foolishnes and tell me how": [0, 65535], "knaue haue done your foolishnes and tell me how thou": [0, 65535], "haue done your foolishnes and tell me how thou hast": [0, 65535], "done your foolishnes and tell me how thou hast dispos'd": [0, 65535], "your foolishnes and tell me how thou hast dispos'd thy": [0, 65535], "foolishnes and tell me how thou hast dispos'd thy charge": [0, 65535], "and tell me how thou hast dispos'd thy charge e": [0, 65535], "tell me how thou hast dispos'd thy charge e dro": [0, 65535], "me how thou hast dispos'd thy charge e dro my": [0, 65535], "how thou hast dispos'd thy charge e dro my charge": [0, 65535], "thou hast dispos'd thy charge e dro my charge was": [0, 65535], "hast dispos'd thy charge e dro my charge was but": [0, 65535], "dispos'd thy charge e dro my charge was but to": [0, 65535], "thy charge e dro my charge was but to fetch": [0, 65535], "charge e dro my charge was but to fetch you": [0, 65535], "e dro my charge was but to fetch you from": [0, 65535], "dro my charge was but to fetch you from the": [0, 65535], "my charge was but to fetch you from the mart": [0, 65535], "charge was but to fetch you from the mart home": [0, 65535], "was but to fetch you from the mart home to": [0, 65535], "but to fetch you from the mart home to your": [0, 65535], "to fetch you from the mart home to your house": [0, 65535], "fetch you from the mart home to your house the": [0, 65535], "you from the mart home to your house the ph\u0153nix": [0, 65535], "from the mart home to your house the ph\u0153nix sir": [0, 65535], "the mart home to your house the ph\u0153nix sir to": [0, 65535], "mart home to your house the ph\u0153nix sir to dinner": [0, 65535], "home to your house the ph\u0153nix sir to dinner my": [0, 65535], "to your house the ph\u0153nix sir to dinner my mistris": [0, 65535], "your house the ph\u0153nix sir to dinner my mistris and": [0, 65535], "house the ph\u0153nix sir to dinner my mistris and her": [0, 65535], "the ph\u0153nix sir to dinner my mistris and her sister": [0, 65535], "ph\u0153nix sir to dinner my mistris and her sister staies": [0, 65535], "sir to dinner my mistris and her sister staies for": [0, 65535], "to dinner my mistris and her sister staies for you": [0, 65535], "dinner my mistris and her sister staies for you ant": [0, 65535], "my mistris and her sister staies for you ant now": [0, 65535], "mistris and her sister staies for you ant now as": [0, 65535], "and her sister staies for you ant now as i": [0, 65535], "her sister staies for you ant now as i am": [0, 65535], "sister staies for you ant now as i am a": [0, 65535], "staies for you ant now as i am a christian": [0, 65535], "for you ant now as i am a christian answer": [0, 65535], "you ant now as i am a christian answer me": [0, 65535], "ant now as i am a christian answer me in": [0, 65535], "now as i am a christian answer me in what": [0, 65535], "as i am a christian answer me in what safe": [0, 65535], "i am a christian answer me in what safe place": [0, 65535], "am a christian answer me in what safe place you": [0, 65535], "a christian answer me in what safe place you haue": [0, 65535], "christian answer me in what safe place you haue bestow'd": [0, 65535], "answer me in what safe place you haue bestow'd my": [0, 65535], "me in what safe place you haue bestow'd my monie": [0, 65535], "in what safe place you haue bestow'd my monie or": [0, 65535], "what safe place you haue bestow'd my monie or i": [0, 65535], "safe place you haue bestow'd my monie or i shall": [0, 65535], "place you haue bestow'd my monie or i shall breake": [0, 65535], "you haue bestow'd my monie or i shall breake that": [0, 65535], "haue bestow'd my monie or i shall breake that merrie": [0, 65535], "bestow'd my monie or i shall breake that merrie sconce": [0, 65535], "my monie or i shall breake that merrie sconce of": [0, 65535], "monie or i shall breake that merrie sconce of yours": [0, 65535], "or i shall breake that merrie sconce of yours that": [0, 65535], "i shall breake that merrie sconce of yours that stands": [0, 65535], "shall breake that merrie sconce of yours that stands on": [0, 65535], "breake that merrie sconce of yours that stands on tricks": [0, 65535], "that merrie sconce of yours that stands on tricks when": [0, 65535], "merrie sconce of yours that stands on tricks when i": [0, 65535], "sconce of yours that stands on tricks when i am": [0, 65535], "of yours that stands on tricks when i am vndispos'd": [0, 65535], "yours that stands on tricks when i am vndispos'd where": [0, 65535], "that stands on tricks when i am vndispos'd where is": [0, 65535], "stands on tricks when i am vndispos'd where is the": [0, 65535], "on tricks when i am vndispos'd where is the thousand": [0, 65535], "tricks when i am vndispos'd where is the thousand markes": [0, 65535], "when i am vndispos'd where is the thousand markes thou": [0, 65535], "i am vndispos'd where is the thousand markes thou hadst": [0, 65535], "am vndispos'd where is the thousand markes thou hadst of": [0, 65535], "vndispos'd where is the thousand markes thou hadst of me": [0, 65535], "where is the thousand markes thou hadst of me e": [0, 65535], "is the thousand markes thou hadst of me e dro": [0, 65535], "the thousand markes thou hadst of me e dro i": [0, 65535], "thousand markes thou hadst of me e dro i haue": [0, 65535], "markes thou hadst of me e dro i haue some": [0, 65535], "thou hadst of me e dro i haue some markes": [0, 65535], "hadst of me e dro i haue some markes of": [0, 65535], "of me e dro i haue some markes of yours": [0, 65535], "me e dro i haue some markes of yours vpon": [0, 65535], "e dro i haue some markes of yours vpon my": [0, 65535], "dro i haue some markes of yours vpon my pate": [0, 65535], "i haue some markes of yours vpon my pate some": [0, 65535], "haue some markes of yours vpon my pate some of": [0, 65535], "some markes of yours vpon my pate some of my": [0, 65535], "markes of yours vpon my pate some of my mistris": [0, 65535], "of yours vpon my pate some of my mistris markes": [0, 65535], "yours vpon my pate some of my mistris markes vpon": [0, 65535], "vpon my pate some of my mistris markes vpon my": [0, 65535], "my pate some of my mistris markes vpon my shoulders": [0, 65535], "pate some of my mistris markes vpon my shoulders but": [0, 65535], "some of my mistris markes vpon my shoulders but not": [0, 65535], "of my mistris markes vpon my shoulders but not a": [0, 65535], "my mistris markes vpon my shoulders but not a thousand": [0, 65535], "mistris markes vpon my shoulders but not a thousand markes": [0, 65535], "markes vpon my shoulders but not a thousand markes betweene": [0, 65535], "vpon my shoulders but not a thousand markes betweene you": [0, 65535], "my shoulders but not a thousand markes betweene you both": [0, 65535], "shoulders but not a thousand markes betweene you both if": [0, 65535], "but not a thousand markes betweene you both if i": [0, 65535], "not a thousand markes betweene you both if i should": [0, 65535], "a thousand markes betweene you both if i should pay": [0, 65535], "thousand markes betweene you both if i should pay your": [0, 65535], "markes betweene you both if i should pay your worship": [0, 65535], "betweene you both if i should pay your worship those": [0, 65535], "you both if i should pay your worship those againe": [0, 65535], "both if i should pay your worship those againe perchance": [0, 65535], "if i should pay your worship those againe perchance you": [0, 65535], "i should pay your worship those againe perchance you will": [0, 65535], "should pay your worship those againe perchance you will not": [0, 65535], "pay your worship those againe perchance you will not beare": [0, 65535], "your worship those againe perchance you will not beare them": [0, 65535], "worship those againe perchance you will not beare them patiently": [0, 65535], "those againe perchance you will not beare them patiently ant": [0, 65535], "againe perchance you will not beare them patiently ant thy": [0, 65535], "perchance you will not beare them patiently ant thy mistris": [0, 65535], "you will not beare them patiently ant thy mistris markes": [0, 65535], "will not beare them patiently ant thy mistris markes what": [0, 65535], "not beare them patiently ant thy mistris markes what mistris": [0, 65535], "beare them patiently ant thy mistris markes what mistris slaue": [0, 65535], "them patiently ant thy mistris markes what mistris slaue hast": [0, 65535], "patiently ant thy mistris markes what mistris slaue hast thou": [0, 65535], "ant thy mistris markes what mistris slaue hast thou e": [0, 65535], "thy mistris markes what mistris slaue hast thou e dro": [0, 65535], "mistris markes what mistris slaue hast thou e dro your": [0, 65535], "markes what mistris slaue hast thou e dro your worships": [0, 65535], "what mistris slaue hast thou e dro your worships wife": [0, 65535], "mistris slaue hast thou e dro your worships wife my": [0, 65535], "slaue hast thou e dro your worships wife my mistris": [0, 65535], "hast thou e dro your worships wife my mistris at": [0, 65535], "thou e dro your worships wife my mistris at the": [0, 65535], "e dro your worships wife my mistris at the ph\u0153nix": [0, 65535], "dro your worships wife my mistris at the ph\u0153nix she": [0, 65535], "your worships wife my mistris at the ph\u0153nix she that": [0, 65535], "worships wife my mistris at the ph\u0153nix she that doth": [0, 65535], "wife my mistris at the ph\u0153nix she that doth fast": [0, 65535], "my mistris at the ph\u0153nix she that doth fast till": [0, 65535], "mistris at the ph\u0153nix she that doth fast till you": [0, 65535], "at the ph\u0153nix she that doth fast till you come": [0, 65535], "the ph\u0153nix she that doth fast till you come home": [0, 65535], "ph\u0153nix she that doth fast till you come home to": [0, 65535], "she that doth fast till you come home to dinner": [0, 65535], "that doth fast till you come home to dinner and": [0, 65535], "doth fast till you come home to dinner and praies": [0, 65535], "fast till you come home to dinner and praies that": [0, 65535], "till you come home to dinner and praies that you": [0, 65535], "you come home to dinner and praies that you will": [0, 65535], "come home to dinner and praies that you will hie": [0, 65535], "home to dinner and praies that you will hie you": [0, 65535], "to dinner and praies that you will hie you home": [0, 65535], "dinner and praies that you will hie you home to": [0, 65535], "and praies that you will hie you home to dinner": [0, 65535], "praies that you will hie you home to dinner ant": [0, 65535], "that you will hie you home to dinner ant what": [0, 65535], "you will hie you home to dinner ant what wilt": [0, 65535], "will hie you home to dinner ant what wilt thou": [0, 65535], "hie you home to dinner ant what wilt thou flout": [0, 65535], "you home to dinner ant what wilt thou flout me": [0, 65535], "home to dinner ant what wilt thou flout me thus": [0, 65535], "to dinner ant what wilt thou flout me thus vnto": [0, 65535], "dinner ant what wilt thou flout me thus vnto my": [0, 65535], "ant what wilt thou flout me thus vnto my face": [0, 65535], "what wilt thou flout me thus vnto my face being": [0, 65535], "wilt thou flout me thus vnto my face being forbid": [0, 65535], "thou flout me thus vnto my face being forbid there": [0, 65535], "flout me thus vnto my face being forbid there take": [0, 65535], "me thus vnto my face being forbid there take you": [0, 65535], "thus vnto my face being forbid there take you that": [0, 65535], "vnto my face being forbid there take you that sir": [0, 65535], "my face being forbid there take you that sir knaue": [0, 65535], "face being forbid there take you that sir knaue e": [0, 65535], "being forbid there take you that sir knaue e dro": [0, 65535], "forbid there take you that sir knaue e dro what": [0, 65535], "there take you that sir knaue e dro what meane": [0, 65535], "take you that sir knaue e dro what meane you": [0, 65535], "you that sir knaue e dro what meane you sir": [0, 65535], "that sir knaue e dro what meane you sir for": [0, 65535], "sir knaue e dro what meane you sir for god": [0, 65535], "knaue e dro what meane you sir for god sake": [0, 65535], "e dro what meane you sir for god sake hold": [0, 65535], "dro what meane you sir for god sake hold your": [0, 65535], "what meane you sir for god sake hold your hands": [0, 65535], "meane you sir for god sake hold your hands nay": [0, 65535], "you sir for god sake hold your hands nay and": [0, 65535], "sir for god sake hold your hands nay and you": [0, 65535], "for god sake hold your hands nay and you will": [0, 65535], "god sake hold your hands nay and you will not": [0, 65535], "sake hold your hands nay and you will not sir": [0, 65535], "hold your hands nay and you will not sir ile": [0, 65535], "your hands nay and you will not sir ile take": [0, 65535], "hands nay and you will not sir ile take my": [0, 65535], "nay and you will not sir ile take my heeles": [0, 65535], "and you will not sir ile take my heeles exeunt": [0, 65535], "you will not sir ile take my heeles exeunt dromio": [0, 65535], "will not sir ile take my heeles exeunt dromio ep": [0, 65535], "not sir ile take my heeles exeunt dromio ep ant": [0, 65535], "sir ile take my heeles exeunt dromio ep ant vpon": [0, 65535], "ile take my heeles exeunt dromio ep ant vpon my": [0, 65535], "take my heeles exeunt dromio ep ant vpon my life": [0, 65535], "my heeles exeunt dromio ep ant vpon my life by": [0, 65535], "heeles exeunt dromio ep ant vpon my life by some": [0, 65535], "exeunt dromio ep ant vpon my life by some deuise": [0, 65535], "dromio ep ant vpon my life by some deuise or": [0, 65535], "ep ant vpon my life by some deuise or other": [0, 65535], "ant vpon my life by some deuise or other the": [0, 65535], "vpon my life by some deuise or other the villaine": [0, 65535], "my life by some deuise or other the villaine is": [0, 65535], "life by some deuise or other the villaine is ore": [0, 65535], "by some deuise or other the villaine is ore wrought": [0, 65535], "some deuise or other the villaine is ore wrought of": [0, 65535], "deuise or other the villaine is ore wrought of all": [0, 65535], "or other the villaine is ore wrought of all my": [0, 65535], "other the villaine is ore wrought of all my monie": [0, 65535], "the villaine is ore wrought of all my monie they": [0, 65535], "villaine is ore wrought of all my monie they say": [0, 65535], "is ore wrought of all my monie they say this": [0, 65535], "ore wrought of all my monie they say this towne": [0, 65535], "wrought of all my monie they say this towne is": [0, 65535], "of all my monie they say this towne is full": [0, 65535], "all my monie they say this towne is full of": [0, 65535], "my monie they say this towne is full of cosenage": [0, 65535], "monie they say this towne is full of cosenage as": [0, 65535], "they say this towne is full of cosenage as nimble": [0, 65535], "say this towne is full of cosenage as nimble iuglers": [0, 65535], "this towne is full of cosenage as nimble iuglers that": [0, 65535], "towne is full of cosenage as nimble iuglers that deceiue": [0, 65535], "is full of cosenage as nimble iuglers that deceiue the": [0, 65535], "full of cosenage as nimble iuglers that deceiue the eie": [0, 65535], "of cosenage as nimble iuglers that deceiue the eie darke": [0, 65535], "cosenage as nimble iuglers that deceiue the eie darke working": [0, 65535], "as nimble iuglers that deceiue the eie darke working sorcerers": [0, 65535], "nimble iuglers that deceiue the eie darke working sorcerers that": [0, 65535], "iuglers that deceiue the eie darke working sorcerers that change": [0, 65535], "that deceiue the eie darke working sorcerers that change the": [0, 65535], "deceiue the eie darke working sorcerers that change the minde": [0, 65535], "the eie darke working sorcerers that change the minde soule": [0, 65535], "eie darke working sorcerers that change the minde soule killing": [0, 65535], "darke working sorcerers that change the minde soule killing witches": [0, 65535], "working sorcerers that change the minde soule killing witches that": [0, 65535], "sorcerers that change the minde soule killing witches that deforme": [0, 65535], "that change the minde soule killing witches that deforme the": [0, 65535], "change the minde soule killing witches that deforme the bodie": [0, 65535], "the minde soule killing witches that deforme the bodie disguised": [0, 65535], "minde soule killing witches that deforme the bodie disguised cheaters": [0, 65535], "soule killing witches that deforme the bodie disguised cheaters prating": [0, 65535], "killing witches that deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "witches that deforme the bodie disguised cheaters prating mountebankes and": [0, 65535], "that deforme the bodie disguised cheaters prating mountebankes and manie": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes and manie such": [0, 65535], "the bodie disguised cheaters prating mountebankes and manie such like": [0, 65535], "bodie disguised cheaters prating mountebankes and manie such like liberties": [0, 65535], "disguised cheaters prating mountebankes and manie such like liberties of": [0, 65535], "cheaters prating mountebankes and manie such like liberties of sinne": [0, 65535], "prating mountebankes and manie such like liberties of sinne if": [0, 65535], "mountebankes and manie such like liberties of sinne if it": [0, 65535], "and manie such like liberties of sinne if it proue": [0, 65535], "manie such like liberties of sinne if it proue so": [0, 65535], "such like liberties of sinne if it proue so i": [0, 65535], "like liberties of sinne if it proue so i will": [0, 65535], "liberties of sinne if it proue so i will be": [0, 65535], "of sinne if it proue so i will be gone": [0, 65535], "sinne if it proue so i will be gone the": [0, 65535], "if it proue so i will be gone the sooner": [0, 65535], "it proue so i will be gone the sooner ile": [0, 65535], "proue so i will be gone the sooner ile to": [0, 65535], "so i will be gone the sooner ile to the": [0, 65535], "i will be gone the sooner ile to the centaur": [0, 65535], "will be gone the sooner ile to the centaur to": [0, 65535], "be gone the sooner ile to the centaur to goe": [0, 65535], "gone the sooner ile to the centaur to goe seeke": [0, 65535], "the sooner ile to the centaur to goe seeke this": [0, 65535], "sooner ile to the centaur to goe seeke this slaue": [0, 65535], "ile to the centaur to goe seeke this slaue i": [0, 65535], "to the centaur to goe seeke this slaue i greatly": [0, 65535], "the centaur to goe seeke this slaue i greatly feare": [0, 65535], "centaur to goe seeke this slaue i greatly feare my": [0, 65535], "to goe seeke this slaue i greatly feare my monie": [0, 65535], "goe seeke this slaue i greatly feare my monie is": [0, 65535], "seeke this slaue i greatly feare my monie is not": [0, 65535], "this slaue i greatly feare my monie is not safe": [0, 65535], "quartus": [0, 65535], "sc\u00e6na": [0, 65535], "pentecost": [0, 65535], "persia": [0, 65535], "voyage": [0, 65535], "attach": [0, 65535], "growing": [0, 65535], "pleaseth": [0, 65535], "discharge": [0, 65535], "bond": [0, 65535], "ephes": [0, 65535], "courtizans": [0, 65535], "offi": [0, 65535], "goldsmiths": [0, 65535], "ropes": [0, 65535], "locking": [0, 65535], "rope": [0, 65535], "pound": [0, 65535], "yeare": [0, 65535], "holpe": [0, 65535], "trusts": [0, 65535], "promised": [0, 65535], "belike": [0, 65535], "chain'd": [0, 65535], "sauing": [0, 65535], "weighs": [0, 65535], "vtmost": [0, 65535], "charect": [0, 65535], "finenesse": [0, 65535], "chargefull": [0, 65535], "odde": [0, 65535], "debted": [0, 65535], "discharg'd": [0, 65535], "furnish'd": [0, 65535], "disburse": [0, 65535], "tide": [0, 65535], "dalliance": [0, 65535], "breach": [0, 65535], "promise": [0, 65535], "chid": [0, 65535], "shrew": [0, 65535], "brawle": [0, 65535], "steales": [0, 65535], "dispatch": [0, 65535], "importunes": [0, 65535], "token": [0, 65535], "where's": [0, 65535], "brooke": [0, 65535], "whe'r": [0, 65535], "you'l": [0, 65535], "denying": [0, 65535], "consider": [0, 65535], "suite": [0, 65535], "touches": [0, 65535], "fee": [0, 65535], "apparantly": [0, 65535], "offic": [0, 65535], "sirrah": [0, 65535], "mettall": [0, 65535], "notorious": [0, 65535], "sira": [0, 65535], "owner": [0, 65535], "fraughtage": [0, 65535], "conuei'd": [0, 65535], "oyle": [0, 65535], "balsamum": [0, 65535], "aqua": [0, 65535], "vit\u00e6": [0, 65535], "trim": [0, 65535], "nought": [0, 65535], "peeuish": [0, 65535], "hier": [0, 65535], "waftage": [0, 65535], "drunken": [0, 65535], "purpose": [0, 65535], "debate": [0, 65535], "heede": [0, 65535], "deske": [0, 65535], "couer'd": [0, 65535], "o're": [0, 65535], "turkish": [0, 65535], "tapistrie": [0, 65535], "dowsabell": [0, 65535], "bigge": [0, 65535], "fulfill": [0, 65535], "tempt": [0, 65535], "might'st": [0, 65535], "perceiue": [0, 65535], "austeerely": [0, 65535], "merrily": [0, 65535], "obseruation": [0, 65535], "mad'st": [0, 65535], "meteors": [0, 65535], "tilting": [0, 65535], "deni'de": [0, 65535], "begg'd": [0, 65535], "perswasion": [0, 65535], "praise": [0, 65535], "did'st": [0, 65535], "crooked": [0, 65535], "sere": [0, 65535], "worse": [0, 65535], "bodied": [0, 65535], "shapelesse": [0, 65535], "vngentle": [0, 65535], "blunt": [0, 65535], "stigmaticall": [0, 65535], "wail'd": [0, 65535], "herein": [0, 65535], "nest": [0, 65535], "lapwing": [0, 65535], "tartar": [0, 65535], "limbo": [0, 65535], "diuell": [0, 65535], "euerlasting": [0, 65535], "garment": [0, 65535], "button'd": [0, 65535], "feind": [0, 65535], "pittilesse": [0, 65535], "ruffe": [0, 65535], "wolfe": [0, 65535], "buffe": [0, 65535], "clapper": [0, 65535], "countermads": [0, 65535], "passages": [0, 65535], "allies": [0, 65535], "creekes": [0, 65535], "narrow": [0, 65535], "lands": [0, 65535], "hound": [0, 65535], "runs": [0, 65535], "counter": [0, 65535], "draws": [0, 65535], "drifoot": [0, 65535], "iudgment": [0, 65535], "carries": [0, 65535], "hel": [0, 65535], "arested": [0, 65535], "redemption": [0, 65535], "debt": [0, 65535], "band": [0, 65535], "adria": [0, 65535], "strikes": [0, 65535], "serieant": [0, 65535], "turnes": [0, 65535], "fondly": [0, 65535], "do'st": [0, 65535], "bankerout": [0, 65535], "owes": [0, 65535], "theefe": [0, 65535], "theft": [0, 65535], "imediately": [0, 65535], "prest": [0, 65535], "salute": [0, 65535], "inuite": [0, 65535], "thankes": [0, 65535], "kindnesses": [0, 65535], "commodities": [0, 65535], "tailor": [0, 65535], "cal'd": [0, 65535], "show'd": [0, 65535], "silkes": [0, 65535], "therewithall": [0, 65535], "imaginarie": [0, 65535], "wiles": [0, 65535], "lapland": [0, 65535], "adam": [0, 65535], "apparel'd": [0, 65535], "paradise": [0, 65535], "keepes": [0, 65535], "calues": [0, 65535], "kil'd": [0, 65535], "prodigall": [0, 65535], "forsake": [0, 65535], "base": [0, 65535], "viole": [0, 65535], "sob": [0, 65535], "rests": [0, 65535], "pittie": [0, 65535], "decaied": [0, 65535], "suites": [0, 65535], "durance": [0, 65535], "sets": [0, 65535], "exploits": [0, 65535], "mace": [0, 65535], "moris": [0, 65535], "pike": [0, 65535], "mean'st": [0, 65535], "brings": [0, 65535], "saies": [0, 65535], "foolerie": [0, 65535], "puts": [0, 65535], "expedition": [0, 65535], "hoy": [0, 65535], "delay": [0, 65535], "angels": [0, 65535], "distract": [0, 65535], "illusions": [0, 65535], "curtizan": [0, 65535], "smith": [0, 65535], "sathan": [0, 65535], "auoide": [0, 65535], "diuels": [0, 65535], "dam": [0, 65535], "habit": [0, 65535], "ergo": [0, 65535], "maruailous": [0, 65535], "expect": [0, 65535], "spoon": [0, 65535], "bespeake": [0, 65535], "spoone": [0, 65535], "eate": [0, 65535], "auoid": [0, 65535], "fiend": [0, 65535], "tel'st": [0, 65535], "supping": [0, 65535], "sorceresse": [0, 65535], "parings": [0, 65535], "naile": [0, 65535], "rush": [0, 65535], "nut": [0, 65535], "cherrie": [0, 65535], "couetous": [0, 65535], "fright": [0, 65535], "cheate": [0, 65535], "auant": [0, 65535], "pea": [0, 65535], "cocke": [0, 65535], "demeane": [0, 65535], "fortie": [0, 65535], "tale": [0, 65535], "lunaticke": [0, 65535], "rush'd": [0, 65535], "fittest": [0, 65535], "choose": [0, 65535], "iailor": [0, 65535], "wayward": [0, 65535], "lightly": [0, 65535], "attach'd": [0, 65535], "harshly": [0, 65535], "re": [0, 65535], "turn'd": [0, 65535], "perswade": [0, 65535], "whoreson": [0, 65535], "senselesse": [0, 65535], "sensible": [0, 65535], "prooue": [0, 65535], "serued": [0, 65535], "heates": [0, 65535], "cooles": [0, 65535], "wak'd": [0, 65535], "rais'd": [0, 65535], "driuen": [0, 65535], "welcom'd": [0, 65535], "begger": [0, 65535], "woont": [0, 65535], "brat": [0, 65535], "lam'd": [0, 65535], "begge": [0, 65535], "courtizan": [0, 65535], "schoolemaster": [0, 65535], "respice": [0, 65535], "finem": [0, 65535], "respect": [0, 65535], "prophesie": [0, 65535], "parrat": [0, 65535], "inciuility": [0, 65535], "confirmes": [0, 65535], "establish": [0, 65535], "demand": [0, 65535], "fiery": [0, 65535], "trembles": [0, 65535], "extasie": [0, 65535], "holie": [0, 65535], "praiers": [0, 65535], "darknesse": [0, 65535], "saints": [0, 65535], "doting": [0, 65535], "wizard": [0, 65535], "wer't": [0, 65535], "distressed": [0, 65535], "customers": [0, 65535], "companion": [0, 65535], "saffron": [0, 65535], "reuell": [0, 65535], "guiltie": [0, 65535], "remain'd": [0, 65535], "slanders": [0, 65535], "sooth": [0, 65535], "perdie": [0, 65535], "reuile": [0, 65535], "sans": [0, 65535], "fable": [0, 65535], "reuil'd": [0, 65535], "maide": [0, 65535], "raile": [0, 65535], "taunt": [0, 65535], "certis": [0, 65535], "vestall": [0, 65535], "scorn'd": [0, 65535], "veritie": [0, 65535], "bones": [0, 65535], "is't": [0, 65535], "contraries": [0, 65535], "finds": [0, 65535], "yeelding": [0, 65535], "humors": [0, 65535], "frensie": [0, 65535], "subborn'd": [0, 65535], "surely": [0, 65535], "ragge": [0, 65535], "wentst": [0, 65535], "deliuer'd": [0, 65535], "maker": [0, 65535], "laide": [0, 65535], "roome": [0, 65535], "locke": [0, 65535], "bagge": [0, 65535], "dissembling": [0, 65535], "villain": [0, 65535], "speak'st": [0, 65535], "confederate": [0, 65535], "damned": [0, 65535], "loathsome": [0, 65535], "abiect": [0, 65535], "nailes": [0, 65535], "shamefull": [0, 65535], "foure": [0, 65535], "striues": [0, 65535], "aye": [0, 65535], "wan": [0, 65535], "looks": [0, 65535], "murther": [0, 65535], "franticke": [0, 65535], "requir'd": [0, 65535], "forthwith": [0, 65535], "creditor": [0, 65535], "conuey'd": [0, 65535], "vnhappy": [0, 65535], "strumpet": [0, 65535], "entred": [0, 65535], "idlely": [0, 65535], "chain": [0, 65535], "heereof": [0, 65535], "rapier": [0, 65535], "sirac": [0, 65535], "mercy": [0, 65535], "naked": [0, 65535], "they'l": [0, 65535], "frighted": [0, 65535], "affraid": [0, 65535], "nation": [0, 65535], "mountaine": [0, 65535], "mariage": [0, 65535], "actus quartus": [0, 65535], "quartus sc\u00e6na": [0, 65535], "sc\u00e6na prima": [0, 65535], "a merchant": [0, 65535], "merchant goldsmith": [0, 65535], "and an": [0, 65535], "officer mar": [0, 65535], "mar you": [0, 65535], "know since": [0, 65535], "since pentecost": [0, 65535], "pentecost the": [0, 65535], "sum is": [0, 65535], "is due": [0, 65535], "due and": [0, 65535], "and since": [0, 65535], "much importun'd": [0, 65535], "importun'd you": [0, 65535], "you nor": [0, 65535], "nor now": [0, 65535], "am bound": [0, 65535], "to persia": [0, 65535], "persia and": [0, 65535], "and want": [0, 65535], "want gilders": [0, 65535], "gilders for": [0, 65535], "my voyage": [0, 65535], "voyage therefore": [0, 65535], "therefore make": [0, 65535], "make present": [0, 65535], "present satisfaction": [0, 65535], "satisfaction or": [0, 65535], "or ile": [0, 65535], "ile attach": [0, 65535], "attach you": [0, 65535], "this officer": [0, 65535], "officer gold": [0, 65535], "gold euen": [0, 65535], "euen iust": [0, 65535], "iust the": [0, 65535], "do owe": [0, 65535], "owe to": [0, 65535], "you is": [0, 65535], "is growing": [0, 65535], "growing to": [0, 65535], "by antipholus": [0, 65535], "instant that": [0, 65535], "met with": [0, 65535], "you he": [0, 65535], "chaine at": [0, 65535], "clocke i": [0, 65535], "shall receiue": [0, 65535], "same pleaseth": [0, 65535], "pleaseth you": [0, 65535], "his house": [0, 65535], "house i": [0, 65535], "will discharge": [0, 65535], "discharge my": [0, 65535], "my bond": [0, 65535], "bond and": [0, 65535], "and thanke": [0, 65535], "you too": [0, 65535], "too enter": [0, 65535], "antipholus ephes": [0, 65535], "ephes dromio": [0, 65535], "dromio from": [0, 65535], "the courtizans": [0, 65535], "courtizans offi": [0, 65535], "offi that": [0, 65535], "that labour": [0, 65535], "labour may": [0, 65535], "you saue": [0, 65535], "saue see": [0, 65535], "comes ant": [0, 65535], "ant while": [0, 65535], "while i": [0, 65535], "the goldsmiths": [0, 65535], "goldsmiths house": [0, 65535], "house go": [0, 65535], "go thou": [0, 65535], "thou and": [0, 65535], "and buy": [0, 65535], "buy a": [0, 65535], "a ropes": [0, 65535], "ropes end": [0, 65535], "end that": [0, 65535], "bestow among": [0, 65535], "among my": [0, 65535], "their confederates": [0, 65535], "confederates for": [0, 65535], "for locking": [0, 65535], "locking me": [0, 65535], "my doores": [0, 65535], "doores by": [0, 65535], "by day": [0, 65535], "soft i": [0, 65535], "goldsmith get": [0, 65535], "thee gone": [0, 65535], "gone buy": [0, 65535], "buy thou": [0, 65535], "thou a": [0, 65535], "a rope": [0, 65535], "rope and": [0, 65535], "and bring": [0, 65535], "i buy": [0, 65535], "thousand pound": [0, 65535], "pound a": [0, 65535], "a yeare": [0, 65535], "yeare i": [0, 65535], "rope exit": [0, 65535], "eph ant": [0, 65535], "is well": [0, 65535], "well holpe": [0, 65535], "holpe vp": [0, 65535], "vp that": [0, 65535], "that trusts": [0, 65535], "trusts to": [0, 65535], "i promised": [0, 65535], "promised your": [0, 65535], "your presence": [0, 65535], "chaine but": [0, 65535], "neither chaine": [0, 65535], "nor goldsmith": [0, 65535], "goldsmith came": [0, 65535], "me belike": [0, 65535], "belike you": [0, 65535], "thought our": [0, 65535], "our loue": [0, 65535], "loue would": [0, 65535], "would last": [0, 65535], "last too": [0, 65535], "too long": [0, 65535], "long if": [0, 65535], "were chain'd": [0, 65535], "chain'd together": [0, 65535], "therefore came": [0, 65535], "came not": [0, 65535], "not gold": [0, 65535], "gold sauing": [0, 65535], "sauing your": [0, 65535], "humor here's": [0, 65535], "the note": [0, 65535], "note how": [0, 65535], "much your": [0, 65535], "your chaine": [0, 65535], "chaine weighs": [0, 65535], "weighs to": [0, 65535], "the vtmost": [0, 65535], "vtmost charect": [0, 65535], "charect the": [0, 65535], "the finenesse": [0, 65535], "finenesse of": [0, 65535], "and chargefull": [0, 65535], "chargefull fashion": [0, 65535], "fashion which": [0, 65535], "which doth": [0, 65535], "doth amount": [0, 65535], "amount to": [0, 65535], "to three": [0, 65535], "three odde": [0, 65535], "odde duckets": [0, 65535], "duckets more": [0, 65535], "i stand": [0, 65535], "stand debted": [0, 65535], "debted to": [0, 65535], "this gentleman": [0, 65535], "gentleman i": [0, 65535], "him presently": [0, 65535], "presently discharg'd": [0, 65535], "discharg'd for": [0, 65535], "is bound": [0, 65535], "and stayes": [0, 65535], "stayes but": [0, 65535], "not furnish'd": [0, 65535], "furnish'd with": [0, 65535], "present monie": [0, 65535], "monie besides": [0, 65535], "some businesse": [0, 65535], "businesse in": [0, 65535], "towne good": [0, 65535], "signior take": [0, 65535], "stranger to": [0, 65535], "chaine and": [0, 65535], "bid my": [0, 65535], "wife disburse": [0, 65535], "disburse the": [0, 65535], "summe on": [0, 65535], "the receit": [0, 65535], "receit thereof": [0, 65535], "thereof perchance": [0, 65535], "perchance i": [0, 65535], "be there": [0, 65535], "there as": [0, 65535], "as soone": [0, 65535], "soone as": [0, 65535], "you gold": [0, 65535], "gold then": [0, 65535], "bring the": [0, 65535], "chaine to": [0, 65535], "her your": [0, 65535], "selfe anti": [0, 65535], "anti no": [0, 65535], "no beare": [0, 65535], "you least": [0, 65535], "not time": [0, 65535], "time enough": [0, 65535], "enough gold": [0, 65535], "gold well": [0, 65535], "about you": [0, 65535], "hope you": [0, 65535], "haue or": [0, 65535], "else you": [0, 65535], "may returne": [0, 65535], "returne without": [0, 65535], "without your": [0, 65535], "your money": [0, 65535], "money gold": [0, 65535], "gold nay": [0, 65535], "nay come": [0, 65535], "sir giue": [0, 65535], "chaine both": [0, 65535], "both winde": [0, 65535], "and tide": [0, 65535], "tide stayes": [0, 65535], "stayes for": [0, 65535], "gentleman and": [0, 65535], "i too": [0, 65535], "too blame": [0, 65535], "blame haue": [0, 65535], "haue held": [0, 65535], "held him": [0, 65535], "heere too": [0, 65535], "lord you": [0, 65535], "vse this": [0, 65535], "this dalliance": [0, 65535], "dalliance to": [0, 65535], "to excuse": [0, 65535], "excuse your": [0, 65535], "your breach": [0, 65535], "breach of": [0, 65535], "of promise": [0, 65535], "promise to": [0, 65535], "porpentine i": [0, 65535], "should haue": [0, 65535], "haue chid": [0, 65535], "chid you": [0, 65535], "for not": [0, 65535], "not bringing": [0, 65535], "bringing it": [0, 65535], "but like": [0, 65535], "a shrew": [0, 65535], "shrew you": [0, 65535], "first begin": [0, 65535], "to brawle": [0, 65535], "brawle mar": [0, 65535], "mar the": [0, 65535], "the houre": [0, 65535], "houre steales": [0, 65535], "steales on": [0, 65535], "on i": [0, 65535], "sir dispatch": [0, 65535], "dispatch gold": [0, 65535], "heare how": [0, 65535], "how he": [0, 65535], "he importunes": [0, 65535], "importunes me": [0, 65535], "chaine ant": [0, 65535], "why giue": [0, 65535], "your mony": [0, 65535], "mony gold": [0, 65535], "gold come": [0, 65535], "come you": [0, 65535], "gaue it": [0, 65535], "you euen": [0, 65535], "now either": [0, 65535], "either send": [0, 65535], "send the": [0, 65535], "chaine or": [0, 65535], "or send": [0, 65535], "send me": [0, 65535], "some token": [0, 65535], "token ant": [0, 65535], "ant fie": [0, 65535], "fie now": [0, 65535], "you run": [0, 65535], "run this": [0, 65535], "this humor": [0, 65535], "humor out": [0, 65535], "of breath": [0, 65535], "breath come": [0, 65535], "come where's": [0, 65535], "where's the": [0, 65535], "you let": [0, 65535], "mar my": [0, 65535], "my businesse": [0, 65535], "businesse cannot": [0, 65535], "cannot brooke": [0, 65535], "brooke this": [0, 65535], "dalliance good": [0, 65535], "sir say": [0, 65535], "say whe'r": [0, 65535], "whe'r you'l": [0, 65535], "you'l answer": [0, 65535], "me or": [0, 65535], "no if": [0, 65535], "if not": [0, 65535], "not ile": [0, 65535], "ile leaue": [0, 65535], "officer ant": [0, 65535], "i answer": [0, 65535], "answer you": [0, 65535], "what should": [0, 65535], "should i": [0, 65535], "gold the": [0, 65535], "you owe": [0, 65535], "owe me": [0, 65535], "owe you": [0, 65535], "you none": [0, 65535], "none till": [0, 65535], "i receiue": [0, 65535], "chaine gold": [0, 65535], "you halfe": [0, 65535], "an houre": [0, 65535], "houre since": [0, 65535], "since ant": [0, 65535], "ant you": [0, 65535], "me none": [0, 65535], "none you": [0, 65535], "you wrong": [0, 65535], "wrong mee": [0, 65535], "mee much": [0, 65535], "much to": [0, 65535], "so gold": [0, 65535], "wrong me": [0, 65535], "me more": [0, 65535], "more sir": [0, 65535], "in denying": [0, 65535], "denying it": [0, 65535], "it consider": [0, 65535], "consider how": [0, 65535], "how it": [0, 65535], "it stands": [0, 65535], "stands vpon": [0, 65535], "my credit": [0, 65535], "credit mar": [0, 65535], "mar well": [0, 65535], "well officer": [0, 65535], "officer arrest": [0, 65535], "arrest him": [0, 65535], "him at": [0, 65535], "at my": [0, 65535], "my suite": [0, 65535], "suite offi": [0, 65535], "offi i": [0, 65535], "and charge": [0, 65535], "charge you": [0, 65535], "dukes name": [0, 65535], "name to": [0, 65535], "obey me": [0, 65535], "gold this": [0, 65535], "this touches": [0, 65535], "touches me": [0, 65535], "in reputation": [0, 65535], "reputation either": [0, 65535], "either consent": [0, 65535], "consent to": [0, 65535], "pay this": [0, 65535], "this sum": [0, 65535], "sum for": [0, 65535], "i attach": [0, 65535], "ant consent": [0, 65535], "pay thee": [0, 65535], "thee that": [0, 65535], "neuer had": [0, 65535], "had arrest": [0, 65535], "me foolish": [0, 65535], "foolish fellow": [0, 65535], "fellow if": [0, 65535], "dar'st gold": [0, 65535], "gold heere": [0, 65535], "thy fee": [0, 65535], "fee arrest": [0, 65535], "him officer": [0, 65535], "not spare": [0, 65535], "spare my": [0, 65535], "this case": [0, 65535], "case if": [0, 65535], "he should": [0, 65535], "should scorne": [0, 65535], "scorne me": [0, 65535], "so apparantly": [0, 65535], "apparantly offic": [0, 65535], "offic i": [0, 65535], "do arrest": [0, 65535], "arrest you": [0, 65535], "heare the": [0, 65535], "the suite": [0, 65535], "suite ant": [0, 65535], "do obey": [0, 65535], "obey thee": [0, 65535], "thee till": [0, 65535], "i giue": [0, 65535], "giue thee": [0, 65535], "thee baile": [0, 65535], "baile but": [0, 65535], "but sirrah": [0, 65535], "sirrah you": [0, 65535], "you shall": [0, 65535], "shall buy": [0, 65535], "buy this": [0, 65535], "this sport": [0, 65535], "sport as": [0, 65535], "as deere": [0, 65535], "deere as": [0, 65535], "as all": [0, 65535], "the mettall": [0, 65535], "mettall in": [0, 65535], "shop will": [0, 65535], "answer gold": [0, 65535], "gold sir": [0, 65535], "sir sir": [0, 65535], "haue law": [0, 65535], "law in": [0, 65535], "ephesus to": [0, 65535], "your notorious": [0, 65535], "notorious shame": [0, 65535], "shame i": [0, 65535], "i doubt": [0, 65535], "doubt it": [0, 65535], "not enter": [0, 65535], "dromio sira": [0, 65535], "sira from": [0, 65535], "bay dro": [0, 65535], "master there's": [0, 65535], "a barke": [0, 65535], "barke of": [0, 65535], "epidamium that": [0, 65535], "that staies": [0, 65535], "staies but": [0, 65535], "till her": [0, 65535], "her owner": [0, 65535], "owner comes": [0, 65535], "comes aboord": [0, 65535], "aboord and": [0, 65535], "then sir": [0, 65535], "sir she": [0, 65535], "beares away": [0, 65535], "away our": [0, 65535], "our fraughtage": [0, 65535], "fraughtage sir": [0, 65535], "haue conuei'd": [0, 65535], "conuei'd aboord": [0, 65535], "haue bought": [0, 65535], "bought the": [0, 65535], "the oyle": [0, 65535], "oyle the": [0, 65535], "the balsamum": [0, 65535], "balsamum and": [0, 65535], "and aqua": [0, 65535], "aqua vit\u00e6": [0, 65535], "vit\u00e6 the": [0, 65535], "ship is": [0, 65535], "her trim": [0, 65535], "trim the": [0, 65535], "the merrie": [0, 65535], "merrie winde": [0, 65535], "winde blowes": [0, 65535], "blowes faire": [0, 65535], "faire from": [0, 65535], "from land": [0, 65535], "land they": [0, 65535], "they stay": [0, 65535], "stay for": [0, 65535], "for nought": [0, 65535], "nought at": [0, 65535], "their owner": [0, 65535], "owner master": [0, 65535], "selfe an": [0, 65535], "an how": [0, 65535], "now a": [0, 65535], "a madman": [0, 65535], "madman why": [0, 65535], "thou peeuish": [0, 65535], "peeuish sheep": [0, 65535], "sheep what": [0, 65535], "what ship": [0, 65535], "ship of": [0, 65535], "epidamium staies": [0, 65535], "a ship": [0, 65535], "ship you": [0, 65535], "too to": [0, 65535], "to hier": [0, 65535], "hier waftage": [0, 65535], "waftage ant": [0, 65535], "thou drunken": [0, 65535], "drunken slaue": [0, 65535], "sent thee": [0, 65535], "and told": [0, 65535], "told thee": [0, 65535], "to what": [0, 65535], "what purpose": [0, 65535], "purpose and": [0, 65535], "what end": [0, 65535], "end s": [0, 65535], "end as": [0, 65535], "soone you": [0, 65535], "bay sir": [0, 65535], "barke ant": [0, 65535], "will debate": [0, 65535], "debate this": [0, 65535], "this matter": [0, 65535], "matter at": [0, 65535], "at more": [0, 65535], "more leisure": [0, 65535], "leisure and": [0, 65535], "and teach": [0, 65535], "teach your": [0, 65535], "your eares": [0, 65535], "eares to": [0, 65535], "to list": [0, 65535], "list me": [0, 65535], "more heede": [0, 65535], "heede to": [0, 65535], "to adriana": [0, 65535], "adriana villaine": [0, 65535], "villaine hie": [0, 65535], "thee straight": [0, 65535], "straight giue": [0, 65535], "giue her": [0, 65535], "her this": [0, 65535], "this key": [0, 65535], "the deske": [0, 65535], "deske that's": [0, 65535], "that's couer'd": [0, 65535], "couer'd o're": [0, 65535], "o're with": [0, 65535], "with turkish": [0, 65535], "turkish tapistrie": [0, 65535], "tapistrie there": [0, 65535], "a purse": [0, 65535], "duckets let": [0, 65535], "her send": [0, 65535], "send it": [0, 65535], "it tell": [0, 65535], "am arrested": [0, 65535], "arrested in": [0, 65535], "streete and": [0, 65535], "shall baile": [0, 65535], "baile me": [0, 65535], "me hie": [0, 65535], "thee slaue": [0, 65535], "slaue be": [0, 65535], "gone on": [0, 65535], "on officer": [0, 65535], "to prison": [0, 65535], "prison till": [0, 65535], "it come": [0, 65535], "come exeunt": [0, 65535], "exeunt s": [0, 65535], "adriana that": [0, 65535], "is where": [0, 65535], "we din'd": [0, 65535], "din'd where": [0, 65535], "where dowsabell": [0, 65535], "dowsabell did": [0, 65535], "did claime": [0, 65535], "claime me": [0, 65535], "her husband": [0, 65535], "husband she": [0, 65535], "too bigge": [0, 65535], "bigge i": [0, 65535], "to compasse": [0, 65535], "compasse thither": [0, 65535], "must although": [0, 65535], "although against": [0, 65535], "my will": [0, 65535], "for seruants": [0, 65535], "seruants must": [0, 65535], "must their": [0, 65535], "their masters": [0, 65535], "masters mindes": [0, 65535], "mindes fulfill": [0, 65535], "fulfill exit": [0, 65535], "luciana adr": [0, 65535], "adr ah": [0, 65535], "ah luciana": [0, 65535], "luciana did": [0, 65535], "he tempt": [0, 65535], "tempt thee": [0, 65535], "thee so": [0, 65535], "so might'st": [0, 65535], "might'st thou": [0, 65535], "thou perceiue": [0, 65535], "perceiue austeerely": [0, 65535], "austeerely in": [0, 65535], "eie that": [0, 65535], "did plead": [0, 65535], "plead in": [0, 65535], "earnest yea": [0, 65535], "yea or": [0, 65535], "no look'd": [0, 65535], "look'd he": [0, 65535], "he or": [0, 65535], "or red": [0, 65535], "red or": [0, 65535], "or pale": [0, 65535], "pale or": [0, 65535], "or sad": [0, 65535], "sad or": [0, 65535], "or merrily": [0, 65535], "merrily what": [0, 65535], "what obseruation": [0, 65535], "obseruation mad'st": [0, 65535], "mad'st thou": [0, 65535], "thou in": [0, 65535], "case oh": [0, 65535], "oh his": [0, 65535], "his hearts": [0, 65535], "hearts meteors": [0, 65535], "meteors tilting": [0, 65535], "tilting in": [0, 65535], "face luc": [0, 65535], "luc first": [0, 65535], "first he": [0, 65535], "he deni'de": [0, 65535], "deni'de you": [0, 65535], "him no": [0, 65535], "no right": [0, 65535], "right adr": [0, 65535], "adr he": [0, 65535], "he meant": [0, 65535], "meant he": [0, 65535], "did me": [0, 65535], "more my": [0, 65535], "my spight": [0, 65535], "spight luc": [0, 65535], "luc then": [0, 65535], "then swore": [0, 65535], "swore he": [0, 65535], "stranger heere": [0, 65535], "heere adr": [0, 65535], "and true": [0, 65535], "true he": [0, 65535], "he swore": [0, 65535], "swore though": [0, 65535], "though yet": [0, 65535], "yet forsworne": [0, 65535], "forsworne hee": [0, 65535], "hee were": [0, 65535], "were luc": [0, 65535], "then pleaded": [0, 65535], "pleaded i": [0, 65535], "you adr": [0, 65535], "what said": [0, 65535], "he luc": [0, 65535], "luc that": [0, 65535], "that loue": [0, 65535], "loue i": [0, 65535], "i begg'd": [0, 65535], "begg'd for": [0, 65535], "he begg'd": [0, 65535], "begg'd of": [0, 65535], "adr with": [0, 65535], "with what": [0, 65535], "what perswasion": [0, 65535], "perswasion did": [0, 65535], "tempt thy": [0, 65535], "loue luc": [0, 65535], "luc with": [0, 65535], "with words": [0, 65535], "words that": [0, 65535], "honest suit": [0, 65535], "suit might": [0, 65535], "might moue": [0, 65535], "moue first": [0, 65535], "did praise": [0, 65535], "praise my": [0, 65535], "beautie then": [0, 65535], "then my": [0, 65535], "my speech": [0, 65535], "speech adr": [0, 65535], "adr did'st": [0, 65535], "did'st speake": [0, 65535], "speake him": [0, 65535], "him faire": [0, 65535], "faire luc": [0, 65535], "luc haue": [0, 65535], "patience i": [0, 65535], "beseech adr": [0, 65535], "cannot nor": [0, 65535], "not hold": [0, 65535], "hold me": [0, 65535], "me still": [0, 65535], "still my": [0, 65535], "tongue though": [0, 65535], "heart shall": [0, 65535], "haue his": [0, 65535], "his will": [0, 65535], "is deformed": [0, 65535], "deformed crooked": [0, 65535], "crooked old": [0, 65535], "and sere": [0, 65535], "sere ill": [0, 65535], "ill fac'd": [0, 65535], "fac'd worse": [0, 65535], "worse bodied": [0, 65535], "bodied shapelesse": [0, 65535], "shapelesse euery": [0, 65535], "euery where": [0, 65535], "where vicious": [0, 65535], "vicious vngentle": [0, 65535], "vngentle foolish": [0, 65535], "foolish blunt": [0, 65535], "blunt vnkinde": [0, 65535], "vnkinde stigmaticall": [0, 65535], "stigmaticall in": [0, 65535], "in making": [0, 65535], "making worse": [0, 65535], "worse in": [0, 65535], "minde luc": [0, 65535], "luc who": [0, 65535], "who would": [0, 65535], "be iealous": [0, 65535], "iealous then": [0, 65535], "then of": [0, 65535], "one no": [0, 65535], "no euill": [0, 65535], "euill lost": [0, 65535], "lost is": [0, 65535], "is wail'd": [0, 65535], "wail'd when": [0, 65535], "is gone": [0, 65535], "gone adr": [0, 65535], "ah but": [0, 65535], "thinke him": [0, 65535], "him better": [0, 65535], "yet would": [0, 65535], "would herein": [0, 65535], "herein others": [0, 65535], "others eies": [0, 65535], "eies were": [0, 65535], "were worse": [0, 65535], "worse farre": [0, 65535], "farre from": [0, 65535], "her nest": [0, 65535], "nest the": [0, 65535], "the lapwing": [0, 65535], "lapwing cries": [0, 65535], "cries away": [0, 65535], "away my": [0, 65535], "heart praies": [0, 65535], "praies for": [0, 65535], "him though": [0, 65535], "tongue doe": [0, 65535], "doe curse": [0, 65535], "curse enter": [0, 65535], "enter s": [0, 65535], "dromio dro": [0, 65535], "dro here": [0, 65535], "here goe": [0, 65535], "goe the": [0, 65535], "deske the": [0, 65535], "the purse": [0, 65535], "purse sweet": [0, 65535], "sweet now": [0, 65535], "haste luc": [0, 65535], "luc how": [0, 65535], "how hast": [0, 65535], "thou lost": [0, 65535], "lost thy": [0, 65535], "thy breath": [0, 65535], "breath s": [0, 65535], "by running": [0, 65535], "running fast": [0, 65535], "fast adr": [0, 65535], "adr where": [0, 65535], "he well": [0, 65535], "well s": [0, 65535], "no he's": [0, 65535], "he's in": [0, 65535], "in tartar": [0, 65535], "tartar limbo": [0, 65535], "limbo worse": [0, 65535], "worse then": [0, 65535], "then hell": [0, 65535], "hell a": [0, 65535], "a diuell": [0, 65535], "diuell in": [0, 65535], "an euerlasting": [0, 65535], "euerlasting garment": [0, 65535], "garment hath": [0, 65535], "hath him": [0, 65535], "him on": [0, 65535], "on whose": [0, 65535], "whose hard": [0, 65535], "hard heart": [0, 65535], "heart is": [0, 65535], "is button'd": [0, 65535], "button'd vp": [0, 65535], "vp with": [0, 65535], "with steele": [0, 65535], "steele a": [0, 65535], "a feind": [0, 65535], "feind a": [0, 65535], "a fairie": [0, 65535], "fairie pittilesse": [0, 65535], "pittilesse and": [0, 65535], "and ruffe": [0, 65535], "ruffe a": [0, 65535], "a wolfe": [0, 65535], "wolfe nay": [0, 65535], "nay worse": [0, 65535], "worse a": [0, 65535], "a fellow": [0, 65535], "fellow all": [0, 65535], "all in": [0, 65535], "in buffe": [0, 65535], "buffe a": [0, 65535], "back friend": [0, 65535], "friend a": [0, 65535], "a shoulder": [0, 65535], "shoulder clapper": [0, 65535], "clapper one": [0, 65535], "that countermads": [0, 65535], "countermads the": [0, 65535], "the passages": [0, 65535], "passages of": [0, 65535], "of allies": [0, 65535], "allies creekes": [0, 65535], "creekes and": [0, 65535], "and narrow": [0, 65535], "narrow lands": [0, 65535], "lands a": [0, 65535], "a hound": [0, 65535], "hound that": [0, 65535], "that runs": [0, 65535], "runs counter": [0, 65535], "counter and": [0, 65535], "yet draws": [0, 65535], "draws drifoot": [0, 65535], "drifoot well": [0, 65535], "well one": [0, 65535], "the iudgment": [0, 65535], "iudgment carries": [0, 65535], "carries poore": [0, 65535], "poore soules": [0, 65535], "soules to": [0, 65535], "to hel": [0, 65535], "hel adr": [0, 65535], "why man": [0, 65535], "man what": [0, 65535], "matter s": [0, 65535], "matter hee": [0, 65535], "hee is": [0, 65535], "is rested": [0, 65535], "rested on": [0, 65535], "the case": [0, 65535], "case adr": [0, 65535], "adr what": [0, 65535], "he arrested": [0, 65535], "arrested tell": [0, 65535], "at whose": [0, 65535], "whose suite": [0, 65535], "suite s": [0, 65535], "suite he": [0, 65535], "is arested": [0, 65535], "arested well": [0, 65535], "but is": [0, 65535], "a suite": [0, 65535], "suite of": [0, 65535], "of buffe": [0, 65535], "buffe which": [0, 65535], "which rested": [0, 65535], "rested him": [0, 65535], "can i": [0, 65535], "tell will": [0, 65535], "mistris redemption": [0, 65535], "redemption the": [0, 65535], "monie in": [0, 65535], "his deske": [0, 65535], "deske adr": [0, 65535], "adr go": [0, 65535], "fetch it": [0, 65535], "it sister": [0, 65535], "sister this": [0, 65535], "wonder at": [0, 65535], "at exit": [0, 65535], "exit luciana": [0, 65535], "luciana thus": [0, 65535], "he vnknowne": [0, 65535], "vnknowne to": [0, 65535], "me should": [0, 65535], "be in": [0, 65535], "in debt": [0, 65535], "debt tell": [0, 65535], "me was": [0, 65535], "was he": [0, 65535], "he arested": [0, 65535], "arested on": [0, 65535], "a band": [0, 65535], "band s": [0, 65535], "not on": [0, 65535], "band but": [0, 65535], "but on": [0, 65535], "a stronger": [0, 65535], "stronger thing": [0, 65535], "thing a": [0, 65535], "chaine a": [0, 65535], "chaine doe": [0, 65535], "not here": [0, 65535], "here it": [0, 65535], "it ring": [0, 65535], "ring adria": [0, 65535], "adria what": [0, 65535], "what the": [0, 65535], "chaine s": [0, 65535], "no the": [0, 65535], "bell 'tis": [0, 65535], "were gone": [0, 65535], "gone it": [0, 65535], "was two": [0, 65535], "two ere": [0, 65535], "i left": [0, 65535], "clocke strikes": [0, 65535], "strikes one": [0, 65535], "one adr": [0, 65535], "adr the": [0, 65535], "the houres": [0, 65535], "houres come": [0, 65535], "come backe": [0, 65535], "backe that": [0, 65535], "that did": [0, 65535], "neuer here": [0, 65535], "here s": [0, 65535], "yes if": [0, 65535], "any houre": [0, 65535], "houre meete": [0, 65535], "meete a": [0, 65535], "a serieant": [0, 65535], "serieant a": [0, 65535], "a turnes": [0, 65535], "turnes backe": [0, 65535], "backe for": [0, 65535], "for verie": [0, 65535], "verie feare": [0, 65535], "feare adri": [0, 65535], "adri as": [0, 65535], "if time": [0, 65535], "time were": [0, 65535], "debt how": [0, 65535], "how fondly": [0, 65535], "fondly do'st": [0, 65535], "do'st thou": [0, 65535], "thou reason": [0, 65535], "dro time": [0, 65535], "verie bankerout": [0, 65535], "bankerout and": [0, 65535], "and owes": [0, 65535], "owes more": [0, 65535], "then he's": [0, 65535], "he's worth": [0, 65535], "worth to": [0, 65535], "to season": [0, 65535], "season nay": [0, 65535], "nay he's": [0, 65535], "a theefe": [0, 65535], "theefe too": [0, 65535], "too haue": [0, 65535], "not heard": [0, 65535], "heard men": [0, 65535], "men say": [0, 65535], "that time": [0, 65535], "time comes": [0, 65535], "comes stealing": [0, 65535], "stealing on": [0, 65535], "on by": [0, 65535], "by night": [0, 65535], "and day": [0, 65535], "day if": [0, 65535], "debt and": [0, 65535], "and theft": [0, 65535], "theft and": [0, 65535], "serieant in": [0, 65535], "way hath": [0, 65535], "not reason": [0, 65535], "reason to": [0, 65535], "to turne": [0, 65535], "turne backe": [0, 65535], "backe an": [0, 65535], "houre in": [0, 65535], "day enter": [0, 65535], "enter luciana": [0, 65535], "go dromio": [0, 65535], "dromio there's": [0, 65535], "monie beare": [0, 65535], "it straight": [0, 65535], "bring thy": [0, 65535], "home imediately": [0, 65535], "imediately come": [0, 65535], "sister i": [0, 65535], "am prest": [0, 65535], "prest downe": [0, 65535], "downe with": [0, 65535], "with conceit": [0, 65535], "conceit conceit": [0, 65535], "conceit my": [0, 65535], "comfort and": [0, 65535], "my iniurie": [0, 65535], "iniurie exit": [0, 65535], "antipholus siracusia": [0, 65535], "siracusia there's": [0, 65535], "there's not": [0, 65535], "man i": [0, 65535], "i meete": [0, 65535], "meete but": [0, 65535], "but doth": [0, 65535], "doth salute": [0, 65535], "salute me": [0, 65535], "were their": [0, 65535], "their well": [0, 65535], "well acquainted": [0, 65535], "acquainted friend": [0, 65535], "friend and": [0, 65535], "and euerie": [0, 65535], "one doth": [0, 65535], "name some": [0, 65535], "some tender": [0, 65535], "tender monie": [0, 65535], "monie to": [0, 65535], "some inuite": [0, 65535], "inuite me": [0, 65535], "other giue": [0, 65535], "me thankes": [0, 65535], "thankes for": [0, 65535], "for kindnesses": [0, 65535], "kindnesses some": [0, 65535], "some offer": [0, 65535], "offer me": [0, 65535], "me commodities": [0, 65535], "commodities to": [0, 65535], "buy euen": [0, 65535], "a tailor": [0, 65535], "tailor cal'd": [0, 65535], "cal'd me": [0, 65535], "his shop": [0, 65535], "shop and": [0, 65535], "and show'd": [0, 65535], "show'd me": [0, 65535], "me silkes": [0, 65535], "silkes that": [0, 65535], "had bought": [0, 65535], "bought for": [0, 65535], "and therewithall": [0, 65535], "therewithall tooke": [0, 65535], "tooke measure": [0, 65535], "measure of": [0, 65535], "my body": [0, 65535], "body sure": [0, 65535], "sure these": [0, 65535], "but imaginarie": [0, 65535], "imaginarie wiles": [0, 65535], "wiles and": [0, 65535], "and lapland": [0, 65535], "lapland sorcerers": [0, 65535], "sorcerers inhabite": [0, 65535], "inhabite here": [0, 65535], "here enter": [0, 65535], "master here's": [0, 65535], "the picture": [0, 65535], "old adam": [0, 65535], "adam new": [0, 65535], "new apparel'd": [0, 65535], "apparel'd ant": [0, 65535], "what gold": [0, 65535], "gold is": [0, 65535], "what adam": [0, 65535], "adam do'st": [0, 65535], "meane s": [0, 65535], "that adam": [0, 65535], "adam that": [0, 65535], "that kept": [0, 65535], "kept the": [0, 65535], "the paradise": [0, 65535], "paradise but": [0, 65535], "that keepes": [0, 65535], "keepes the": [0, 65535], "the prison": [0, 65535], "prison hee": [0, 65535], "hee that": [0, 65535], "goes in": [0, 65535], "the calues": [0, 65535], "calues skin": [0, 65535], "skin that": [0, 65535], "was kil'd": [0, 65535], "kil'd for": [0, 65535], "the prodigall": [0, 65535], "prodigall hee": [0, 65535], "came behinde": [0, 65535], "behinde you": [0, 65535], "sir like": [0, 65535], "euill angel": [0, 65535], "angel and": [0, 65535], "bid you": [0, 65535], "you forsake": [0, 65535], "forsake your": [0, 65535], "your libertie": [0, 65535], "libertie ant": [0, 65535], "i vnderstand": [0, 65535], "vnderstand thee": [0, 65535], "thee not": [0, 65535], "not s": [0, 65535], "no why": [0, 65535], "why 'tis": [0, 65535], "'tis a": [0, 65535], "a plaine": [0, 65535], "plaine case": [0, 65535], "case he": [0, 65535], "went like": [0, 65535], "a base": [0, 65535], "base viole": [0, 65535], "viole in": [0, 65535], "a case": [0, 65535], "case of": [0, 65535], "of leather": [0, 65535], "leather the": [0, 65535], "when gentlemen": [0, 65535], "gentlemen are": [0, 65535], "are tired": [0, 65535], "tired giues": [0, 65535], "giues them": [0, 65535], "them a": [0, 65535], "a sob": [0, 65535], "sob and": [0, 65535], "and rests": [0, 65535], "rests them": [0, 65535], "them he": [0, 65535], "he sir": [0, 65535], "that takes": [0, 65535], "takes pittie": [0, 65535], "pittie on": [0, 65535], "on decaied": [0, 65535], "decaied men": [0, 65535], "and giues": [0, 65535], "them suites": [0, 65535], "suites of": [0, 65535], "of durance": [0, 65535], "durance he": [0, 65535], "that sets": [0, 65535], "sets vp": [0, 65535], "vp his": [0, 65535], "his rest": [0, 65535], "to doe": [0, 65535], "doe more": [0, 65535], "more exploits": [0, 65535], "exploits with": [0, 65535], "his mace": [0, 65535], "mace then": [0, 65535], "a moris": [0, 65535], "moris pike": [0, 65535], "pike ant": [0, 65535], "thou mean'st": [0, 65535], "mean'st an": [0, 65535], "officer s": [0, 65535], "sir the": [0, 65535], "the serieant": [0, 65535], "serieant of": [0, 65535], "the band": [0, 65535], "band he": [0, 65535], "that brings": [0, 65535], "brings any": [0, 65535], "any man": [0, 65535], "to answer": [0, 65535], "answer it": [0, 65535], "that breakes": [0, 65535], "breakes his": [0, 65535], "his band": [0, 65535], "band one": [0, 65535], "that thinkes": [0, 65535], "thinkes a": [0, 65535], "man alwaies": [0, 65535], "alwaies going": [0, 65535], "to bed": [0, 65535], "and saies": [0, 65535], "saies god": [0, 65535], "god giue": [0, 65535], "you good": [0, 65535], "good rest": [0, 65535], "rest ant": [0, 65535], "sir there": [0, 65535], "there rest": [0, 65535], "rest in": [0, 65535], "your foolerie": [0, 65535], "foolerie is": [0, 65535], "there any": [0, 65535], "any ships": [0, 65535], "ships puts": [0, 65535], "puts forth": [0, 65535], "forth to": [0, 65535], "night may": [0, 65535], "may we": [0, 65535], "we be": [0, 65535], "gone s": [0, 65535], "why sir": [0, 65535], "i brought": [0, 65535], "brought you": [0, 65535], "you word": [0, 65535], "word an": [0, 65535], "the barke": [0, 65535], "barke expedition": [0, 65535], "expedition put": [0, 65535], "then were": [0, 65535], "you hindred": [0, 65535], "serieant to": [0, 65535], "to tarry": [0, 65535], "tarry for": [0, 65535], "the hoy": [0, 65535], "hoy delay": [0, 65535], "delay here": [0, 65535], "here are": [0, 65535], "the angels": [0, 65535], "angels that": [0, 65535], "for to": [0, 65535], "to deliuer": [0, 65535], "deliuer you": [0, 65535], "the fellow": [0, 65535], "fellow is": [0, 65535], "is distract": [0, 65535], "distract and": [0, 65535], "here we": [0, 65535], "we wander": [0, 65535], "in illusions": [0, 65535], "illusions some": [0, 65535], "some blessed": [0, 65535], "blessed power": [0, 65535], "power deliuer": [0, 65535], "deliuer vs": [0, 65535], "vs from": [0, 65535], "from hence": [0, 65535], "hence enter": [0, 65535], "a curtizan": [0, 65535], "curtizan cur": [0, 65535], "cur well": [0, 65535], "well met": [0, 65535], "met well": [0, 65535], "met master": [0, 65535], "master antipholus": [0, 65535], "see sir": [0, 65535], "haue found": [0, 65535], "gold smith": [0, 65535], "smith now": [0, 65535], "you promis'd": [0, 65535], "ant sathan": [0, 65535], "sathan auoide": [0, 65535], "auoide i": [0, 65535], "i charge": [0, 65535], "charge thee": [0, 65535], "thee tempt": [0, 65535], "tempt me": [0, 65535], "this mistris": [0, 65535], "mistris sathan": [0, 65535], "sathan ant": [0, 65535], "ant it": [0, 65535], "the diuell": [0, 65535], "diuell s": [0, 65535], "nay she": [0, 65535], "is worse": [0, 65535], "worse she": [0, 65535], "the diuels": [0, 65535], "diuels dam": [0, 65535], "dam and": [0, 65535], "here she": [0, 65535], "comes in": [0, 65535], "the habit": [0, 65535], "habit of": [0, 65535], "a light": [0, 65535], "light wench": [0, 65535], "wench and": [0, 65535], "comes that": [0, 65535], "the wenches": [0, 65535], "wenches say": [0, 65535], "say god": [0, 65535], "god dam": [0, 65535], "dam me": [0, 65535], "me that's": [0, 65535], "that's as": [0, 65535], "god make": [0, 65535], "wench it": [0, 65535], "is written": [0, 65535], "written they": [0, 65535], "they appeare": [0, 65535], "appeare to": [0, 65535], "to men": [0, 65535], "men like": [0, 65535], "like angels": [0, 65535], "angels of": [0, 65535], "light light": [0, 65535], "light is": [0, 65535], "and fire": [0, 65535], "fire will": [0, 65535], "burne ergo": [0, 65535], "ergo light": [0, 65535], "light wenches": [0, 65535], "wenches will": [0, 65535], "burne come": [0, 65535], "not neere": [0, 65535], "neere her": [0, 65535], "her cur": [0, 65535], "cur your": [0, 65535], "are maruailous": [0, 65535], "maruailous merrie": [0, 65535], "merrie sir": [0, 65535], "sir will": [0, 65535], "you goe": [0, 65535], "goe with": [0, 65535], "me wee'll": [0, 65535], "wee'll mend": [0, 65535], "mend our": [0, 65535], "dinner here": [0, 65535], "if do": [0, 65535], "do expect": [0, 65535], "expect spoon": [0, 65535], "spoon meate": [0, 65535], "meate or": [0, 65535], "or bespeake": [0, 65535], "bespeake a": [0, 65535], "long spoone": [0, 65535], "spoone ant": [0, 65535], "why dromio": [0, 65535], "dromio s": [0, 65535], "marrie he": [0, 65535], "he must": [0, 65535], "spoone that": [0, 65535], "that must": [0, 65535], "must eate": [0, 65535], "eate with": [0, 65535], "diuell ant": [0, 65535], "ant auoid": [0, 65535], "auoid then": [0, 65535], "then fiend": [0, 65535], "fiend what": [0, 65535], "what tel'st": [0, 65535], "tel'st thou": [0, 65535], "thou me": [0, 65535], "of supping": [0, 65535], "supping thou": [0, 65535], "art as": [0, 65535], "all a": [0, 65535], "a sorceresse": [0, 65535], "sorceresse i": [0, 65535], "i coniure": [0, 65535], "coniure thee": [0, 65535], "leaue me": [0, 65535], "be gon": [0, 65535], "gon cur": [0, 65535], "cur giue": [0, 65535], "the ring": [0, 65535], "ring of": [0, 65535], "mine you": [0, 65535], "dinner or": [0, 65535], "or for": [0, 65535], "my diamond": [0, 65535], "diamond the": [0, 65535], "promis'd and": [0, 65535], "ile be": [0, 65535], "gone sir": [0, 65535], "not trouble": [0, 65535], "dro some": [0, 65535], "some diuels": [0, 65535], "diuels aske": [0, 65535], "aske but": [0, 65535], "the parings": [0, 65535], "parings of": [0, 65535], "of ones": [0, 65535], "ones naile": [0, 65535], "naile a": [0, 65535], "a rush": [0, 65535], "rush a": [0, 65535], "a haire": [0, 65535], "haire a": [0, 65535], "of blood": [0, 65535], "blood a": [0, 65535], "pin a": [0, 65535], "a nut": [0, 65535], "nut a": [0, 65535], "a cherrie": [0, 65535], "cherrie stone": [0, 65535], "stone but": [0, 65535], "she more": [0, 65535], "more couetous": [0, 65535], "couetous wold": [0, 65535], "wold haue": [0, 65535], "chaine master": [0, 65535], "master be": [0, 65535], "be wise": [0, 65535], "wise and": [0, 65535], "it her": [0, 65535], "her the": [0, 65535], "diuell will": [0, 65535], "will shake": [0, 65535], "shake her": [0, 65535], "her chaine": [0, 65535], "and fright": [0, 65535], "fright vs": [0, 65535], "vs with": [0, 65535], "it cur": [0, 65535], "cur i": [0, 65535], "sir my": [0, 65535], "my ring": [0, 65535], "ring or": [0, 65535], "else the": [0, 65535], "not meane": [0, 65535], "to cheate": [0, 65535], "cheate me": [0, 65535], "ant auant": [0, 65535], "auant thou": [0, 65535], "thou witch": [0, 65535], "witch come": [0, 65535], "dromio let": [0, 65535], "vs go": [0, 65535], "dro flie": [0, 65535], "flie pride": [0, 65535], "pride saies": [0, 65535], "saies the": [0, 65535], "the pea": [0, 65535], "pea cocke": [0, 65535], "cocke mistris": [0, 65535], "mistris that": [0, 65535], "know exit": [0, 65535], "exit cur": [0, 65535], "cur now": [0, 65535], "now out": [0, 65535], "of doubt": [0, 65535], "doubt antipholus": [0, 65535], "antipholus is": [0, 65535], "mad else": [0, 65535], "else would": [0, 65535], "would he": [0, 65535], "he neuer": [0, 65535], "neuer so": [0, 65535], "so demeane": [0, 65535], "demeane himselfe": [0, 65535], "himselfe a": [0, 65535], "a ring": [0, 65535], "ring he": [0, 65535], "hath of": [0, 65535], "mine worth": [0, 65535], "worth fortie": [0, 65535], "fortie duckets": [0, 65535], "duckets and": [0, 65535], "same he": [0, 65535], "both one": [0, 65535], "he denies": [0, 65535], "denies me": [0, 65535], "reason that": [0, 65535], "i gather": [0, 65535], "gather he": [0, 65535], "mad besides": [0, 65535], "besides this": [0, 65535], "present instance": [0, 65535], "rage is": [0, 65535], "mad tale": [0, 65535], "tale he": [0, 65535], "told to": [0, 65535], "dinner of": [0, 65535], "doores being": [0, 65535], "being shut": [0, 65535], "shut against": [0, 65535], "against his": [0, 65535], "his entrance": [0, 65535], "entrance belike": [0, 65535], "belike his": [0, 65535], "wife acquainted": [0, 65535], "acquainted with": [0, 65535], "his fits": [0, 65535], "fits on": [0, 65535], "on purpose": [0, 65535], "purpose shut": [0, 65535], "doores against": [0, 65535], "way my": [0, 65535], "my way": [0, 65535], "way is": [0, 65535], "is now": [0, 65535], "to hie": [0, 65535], "hie home": [0, 65535], "being lunaticke": [0, 65535], "lunaticke he": [0, 65535], "he rush'd": [0, 65535], "rush'd into": [0, 65535], "into my": [0, 65535], "tooke perforce": [0, 65535], "ring away": [0, 65535], "away this": [0, 65535], "course i": [0, 65535], "i fittest": [0, 65535], "fittest choose": [0, 65535], "choose for": [0, 65535], "for fortie": [0, 65535], "duckets is": [0, 65535], "to loose": [0, 65535], "loose enter": [0, 65535], "ephes with": [0, 65535], "a iailor": [0, 65535], "iailor an": [0, 65535], "an feare": [0, 65535], "feare me": [0, 65535], "not man": [0, 65535], "breake away": [0, 65535], "away ile": [0, 65535], "ile giue": [0, 65535], "thee ere": [0, 65535], "i leaue": [0, 65535], "leaue thee": [0, 65535], "much money": [0, 65535], "money to": [0, 65535], "to warrant": [0, 65535], "warrant thee": [0, 65535], "thee as": [0, 65535], "am rested": [0, 65535], "rested for": [0, 65535], "a wayward": [0, 65535], "wayward moode": [0, 65535], "moode to": [0, 65535], "not lightly": [0, 65535], "lightly trust": [0, 65535], "trust the": [0, 65535], "the messenger": [0, 65535], "messenger that": [0, 65535], "be attach'd": [0, 65535], "attach'd in": [0, 65535], "you 'twill": [0, 65535], "'twill sound": [0, 65535], "sound harshly": [0, 65535], "harshly in": [0, 65535], "her eares": [0, 65535], "eares enter": [0, 65535], "eph with": [0, 65535], "end heere": [0, 65535], "comes my": [0, 65535], "he brings": [0, 65535], "brings the": [0, 65535], "monie how": [0, 65535], "sir haue": [0, 65535], "for e": [0, 65535], "here's that": [0, 65535], "warrant you": [0, 65535], "pay them": [0, 65535], "them all": [0, 65535], "all anti": [0, 65535], "anti but": [0, 65535], "but where's": [0, 65535], "money e": [0, 65535], "gaue the": [0, 65535], "monie for": [0, 65535], "the rope": [0, 65535], "rope ant": [0, 65535], "ant fiue": [0, 65535], "fiue hundred": [0, 65535], "hundred duckets": [0, 65535], "duckets villaine": [0, 65535], "villaine for": [0, 65535], "rope e": [0, 65535], "dro ile": [0, 65535], "ile serue": [0, 65535], "serue you": [0, 65535], "sir fiue": [0, 65535], "hundred at": [0, 65535], "the rate": [0, 65535], "rate ant": [0, 65535], "end did": [0, 65535], "i bid": [0, 65535], "bid thee": [0, 65535], "thee hie": [0, 65535], "thee home": [0, 65535], "home e": [0, 65535], "end sir": [0, 65535], "that end": [0, 65535], "end am": [0, 65535], "i re": [0, 65535], "re turn'd": [0, 65535], "turn'd ant": [0, 65535], "will welcome": [0, 65535], "welcome you": [0, 65535], "you offi": [0, 65535], "offi good": [0, 65535], "sir be": [0, 65535], "patient e": [0, 65535], "nay 'tis": [0, 65535], "'tis for": [0, 65535], "patient i": [0, 65535], "am in": [0, 65535], "in aduersitie": [0, 65535], "aduersitie offi": [0, 65535], "good now": [0, 65535], "now hold": [0, 65535], "hold thy": [0, 65535], "tongue e": [0, 65535], "nay rather": [0, 65535], "rather perswade": [0, 65535], "perswade him": [0, 65535], "to hold": [0, 65535], "hold his": [0, 65535], "hands anti": [0, 65535], "thou whoreson": [0, 65535], "whoreson senselesse": [0, 65535], "senselesse villaine": [0, 65535], "would i": [0, 65535], "were senselesse": [0, 65535], "senselesse sir": [0, 65535], "might not": [0, 65535], "feele your": [0, 65535], "your blowes": [0, 65535], "blowes anti": [0, 65535], "art sensible": [0, 65535], "sensible in": [0, 65535], "in nothing": [0, 65535], "but blowes": [0, 65535], "so is": [0, 65535], "asse indeede": [0, 65535], "indeede you": [0, 65535], "may prooue": [0, 65535], "prooue it": [0, 65535], "my long": [0, 65535], "long eares": [0, 65535], "eares i": [0, 65535], "haue serued": [0, 65535], "serued him": [0, 65535], "houre of": [0, 65535], "my natiuitie": [0, 65535], "natiuitie to": [0, 65535], "this instant": [0, 65535], "instant and": [0, 65535], "and haue": [0, 65535], "haue nothing": [0, 65535], "nothing at": [0, 65535], "hands for": [0, 65535], "my seruice": [0, 65535], "seruice but": [0, 65535], "blowes when": [0, 65535], "am cold": [0, 65535], "cold he": [0, 65535], "he heates": [0, 65535], "heates me": [0, 65535], "with beating": [0, 65535], "beating when": [0, 65535], "am warme": [0, 65535], "warme he": [0, 65535], "he cooles": [0, 65535], "cooles me": [0, 65535], "beating i": [0, 65535], "am wak'd": [0, 65535], "wak'd with": [0, 65535], "i sleepe": [0, 65535], "sleepe rais'd": [0, 65535], "rais'd with": [0, 65535], "i sit": [0, 65535], "sit driuen": [0, 65535], "driuen out": [0, 65535], "of doores": [0, 65535], "doores with": [0, 65535], "i goe": [0, 65535], "goe from": [0, 65535], "home welcom'd": [0, 65535], "welcom'd home": [0, 65535], "returne nay": [0, 65535], "nay i": [0, 65535], "shoulders as": [0, 65535], "a begger": [0, 65535], "begger woont": [0, 65535], "woont her": [0, 65535], "her brat": [0, 65535], "brat and": [0, 65535], "thinke when": [0, 65535], "hath lam'd": [0, 65535], "lam'd me": [0, 65535], "shall begge": [0, 65535], "begge with": [0, 65535], "from doore": [0, 65535], "doore to": [0, 65535], "to doore": [0, 65535], "doore enter": [0, 65535], "luciana courtizan": [0, 65535], "courtizan and": [0, 65535], "a schoolemaster": [0, 65535], "schoolemaster call'd": [0, 65535], "call'd pinch": [0, 65535], "pinch ant": [0, 65535], "come goe": [0, 65535], "goe along": [0, 65535], "along my": [0, 65535], "is comming": [0, 65535], "comming yonder": [0, 65535], "yonder e": [0, 65535], "dro mistris": [0, 65535], "mistris respice": [0, 65535], "respice finem": [0, 65535], "finem respect": [0, 65535], "respect your": [0, 65535], "your end": [0, 65535], "end or": [0, 65535], "rather the": [0, 65535], "the prophesie": [0, 65535], "prophesie like": [0, 65535], "the parrat": [0, 65535], "parrat beware": [0, 65535], "beware the": [0, 65535], "the ropes": [0, 65535], "end anti": [0, 65535], "anti wilt": [0, 65535], "thou still": [0, 65535], "still talke": [0, 65535], "talke beats": [0, 65535], "dro curt": [0, 65535], "curt how": [0, 65535], "how say": [0, 65535], "husband mad": [0, 65535], "his inciuility": [0, 65535], "inciuility confirmes": [0, 65535], "confirmes no": [0, 65535], "no lesse": [0, 65535], "lesse good": [0, 65535], "good doctor": [0, 65535], "doctor pinch": [0, 65535], "pinch you": [0, 65535], "coniurer establish": [0, 65535], "establish him": [0, 65535], "his true": [0, 65535], "true sence": [0, 65535], "sence againe": [0, 65535], "will please": [0, 65535], "will demand": [0, 65535], "demand luc": [0, 65535], "luc alas": [0, 65535], "alas how": [0, 65535], "how fiery": [0, 65535], "fiery and": [0, 65535], "how sharpe": [0, 65535], "sharpe he": [0, 65535], "he lookes": [0, 65535], "lookes cur": [0, 65535], "cur marke": [0, 65535], "marke how": [0, 65535], "he trembles": [0, 65535], "trembles in": [0, 65535], "his extasie": [0, 65535], "extasie pinch": [0, 65535], "pinch giue": [0, 65535], "me your": [0, 65535], "let mee": [0, 65535], "mee feele": [0, 65535], "your pulse": [0, 65535], "pulse ant": [0, 65535], "my hand": [0, 65535], "it feele": [0, 65535], "your eare": [0, 65535], "eare pinch": [0, 65535], "pinch i": [0, 65535], "thee sathan": [0, 65535], "sathan hous'd": [0, 65535], "hous'd within": [0, 65535], "this man": [0, 65535], "to yeeld": [0, 65535], "yeeld possession": [0, 65535], "possession to": [0, 65535], "my holie": [0, 65535], "holie praiers": [0, 65535], "praiers and": [0, 65535], "thy state": [0, 65535], "state of": [0, 65535], "of darknesse": [0, 65535], "darknesse hie": [0, 65535], "straight i": [0, 65535], "the saints": [0, 65535], "saints in": [0, 65535], "heauen anti": [0, 65535], "anti peace": [0, 65535], "peace doting": [0, 65535], "doting wizard": [0, 65535], "wizard peace": [0, 65535], "peace i": [0, 65535], "mad adr": [0, 65535], "adr oh": [0, 65535], "oh that": [0, 65535], "thou wer't": [0, 65535], "wer't not": [0, 65535], "not poore": [0, 65535], "poore distressed": [0, 65535], "distressed soule": [0, 65535], "soule anti": [0, 65535], "minion you": [0, 65535], "are these": [0, 65535], "these your": [0, 65535], "your customers": [0, 65535], "customers did": [0, 65535], "this companion": [0, 65535], "companion with": [0, 65535], "the saffron": [0, 65535], "saffron face": [0, 65535], "face reuell": [0, 65535], "reuell and": [0, 65535], "and feast": [0, 65535], "feast it": [0, 65535], "house to": [0, 65535], "day whil'st": [0, 65535], "whil'st vpon": [0, 65535], "the guiltie": [0, 65535], "guiltie doores": [0, 65535], "doores were": [0, 65535], "were shut": [0, 65535], "i denied": [0, 65535], "denied to": [0, 65535], "to enter": [0, 65535], "house adr": [0, 65535], "adr o": [0, 65535], "o husband": [0, 65535], "husband god": [0, 65535], "god doth": [0, 65535], "doth know": [0, 65535], "you din'd": [0, 65535], "home where": [0, 65535], "where would": [0, 65535], "had remain'd": [0, 65535], "remain'd vntill": [0, 65535], "vntill this": [0, 65535], "time free": [0, 65535], "free from": [0, 65535], "from these": [0, 65535], "these slanders": [0, 65535], "slanders and": [0, 65535], "this open": [0, 65535], "open shame": [0, 65535], "shame anti": [0, 65535], "anti din'd": [0, 65535], "home thou": [0, 65535], "villaine what": [0, 65535], "what sayest": [0, 65535], "sayest thou": [0, 65535], "sir sooth": [0, 65535], "sooth to": [0, 65535], "not dine": [0, 65535], "dine at": [0, 65535], "home ant": [0, 65535], "ant were": [0, 65535], "were not": [0, 65535], "doores lockt": [0, 65535], "lockt vp": [0, 65535], "i shut": [0, 65535], "shut out": [0, 65535], "out dro": [0, 65535], "dro perdie": [0, 65535], "perdie your": [0, 65535], "your doores": [0, 65535], "were lockt": [0, 65535], "lockt and": [0, 65535], "out anti": [0, 65535], "not she": [0, 65535], "she her": [0, 65535], "selfe reuile": [0, 65535], "reuile me": [0, 65535], "there dro": [0, 65535], "dro sans": [0, 65535], "sans fable": [0, 65535], "fable she": [0, 65535], "selfe reuil'd": [0, 65535], "reuil'd you": [0, 65535], "there anti": [0, 65535], "anti did": [0, 65535], "not her": [0, 65535], "her kitchen": [0, 65535], "kitchen maide": [0, 65535], "maide raile": [0, 65535], "raile taunt": [0, 65535], "taunt and": [0, 65535], "and scorne": [0, 65535], "dro certis": [0, 65535], "certis she": [0, 65535], "kitchin vestall": [0, 65535], "vestall scorn'd": [0, 65535], "scorn'd you": [0, 65535], "in rage": [0, 65535], "rage depart": [0, 65535], "depart from": [0, 65535], "from thence": [0, 65535], "thence dro": [0, 65535], "in veritie": [0, 65535], "veritie you": [0, 65535], "did my": [0, 65535], "my bones": [0, 65535], "bones beares": [0, 65535], "beares witnesse": [0, 65535], "that since": [0, 65535], "since haue": [0, 65535], "haue felt": [0, 65535], "felt the": [0, 65535], "the vigor": [0, 65535], "vigor of": [0, 65535], "rage adr": [0, 65535], "adr is't": [0, 65535], "is't good": [0, 65535], "to sooth": [0, 65535], "sooth him": [0, 65535], "in these": [0, 65535], "these contraries": [0, 65535], "contraries pinch": [0, 65535], "pinch it": [0, 65535], "no shame": [0, 65535], "shame the": [0, 65535], "fellow finds": [0, 65535], "finds his": [0, 65535], "his vaine": [0, 65535], "vaine and": [0, 65535], "and yeelding": [0, 65535], "yeelding to": [0, 65535], "him humors": [0, 65535], "humors well": [0, 65535], "well his": [0, 65535], "his frensie": [0, 65535], "frensie ant": [0, 65535], "hast subborn'd": [0, 65535], "subborn'd the": [0, 65535], "goldsmith to": [0, 65535], "to arrest": [0, 65535], "arrest mee": [0, 65535], "mee adr": [0, 65535], "adr alas": [0, 65535], "alas i": [0, 65535], "redeeme you": [0, 65535], "dromio heere": [0, 65535], "heere who": [0, 65535], "who came": [0, 65535], "in hast": [0, 65535], "hast for": [0, 65535], "it dro": [0, 65535], "dro monie": [0, 65535], "monie by": [0, 65535], "me heart": [0, 65535], "might but": [0, 65535], "but surely": [0, 65535], "surely master": [0, 65535], "master not": [0, 65535], "a ragge": [0, 65535], "ragge of": [0, 65535], "of monie": [0, 65535], "monie ant": [0, 65535], "ant wentst": [0, 65535], "wentst not": [0, 65535], "her for": [0, 65535], "duckets adri": [0, 65535], "adri he": [0, 65535], "i deliuer'd": [0, 65535], "deliuer'd it": [0, 65535], "it luci": [0, 65535], "luci and": [0, 65535], "am witnesse": [0, 65535], "did dro": [0, 65535], "dro god": [0, 65535], "god and": [0, 65535], "rope maker": [0, 65535], "maker beare": [0, 65535], "beare me": [0, 65535], "me witnesse": [0, 65535], "was sent": [0, 65535], "rope pinch": [0, 65535], "pinch mistris": [0, 65535], "mistris both": [0, 65535], "both man": [0, 65535], "is possest": [0, 65535], "possest i": [0, 65535], "by their": [0, 65535], "their pale": [0, 65535], "and deadly": [0, 65535], "deadly lookes": [0, 65535], "lookes they": [0, 65535], "they must": [0, 65535], "must be": [0, 65535], "be bound": [0, 65535], "and laide": [0, 65535], "laide in": [0, 65535], "some darke": [0, 65535], "darke roome": [0, 65535], "roome ant": [0, 65535], "ant say": [0, 65535], "say wherefore": [0, 65535], "wherefore didst": [0, 65535], "thou locke": [0, 65535], "locke me": [0, 65535], "me forth": [0, 65535], "and why": [0, 65535], "why dost": [0, 65535], "thou denie": [0, 65535], "the bagge": [0, 65535], "bagge of": [0, 65535], "of gold": [0, 65535], "gold adr": [0, 65535], "not gentle": [0, 65535], "gentle husband": [0, 65535], "husband locke": [0, 65535], "locke thee": [0, 65535], "thee forth": [0, 65535], "forth dro": [0, 65535], "and gentle": [0, 65535], "gentle mr": [0, 65535], "mr i": [0, 65535], "gold but": [0, 65535], "i confesse": [0, 65535], "confesse sir": [0, 65535], "were lock'd": [0, 65535], "out adr": [0, 65535], "adr dissembling": [0, 65535], "dissembling villain": [0, 65535], "villain thou": [0, 65535], "thou speak'st": [0, 65535], "speak'st false": [0, 65535], "false in": [0, 65535], "in both": [0, 65535], "both ant": [0, 65535], "ant dissembling": [0, 65535], "dissembling harlot": [0, 65535], "harlot thou": [0, 65535], "art false": [0, 65535], "all and": [0, 65535], "and art": [0, 65535], "art confederate": [0, 65535], "confederate with": [0, 65535], "a damned": [0, 65535], "damned packe": [0, 65535], "packe to": [0, 65535], "a loathsome": [0, 65535], "loathsome abiect": [0, 65535], "abiect scorne": [0, 65535], "scorne of": [0, 65535], "with these": [0, 65535], "these nailes": [0, 65535], "nailes ile": [0, 65535], "ile plucke": [0, 65535], "plucke out": [0, 65535], "out these": [0, 65535], "these false": [0, 65535], "false eyes": [0, 65535], "eyes that": [0, 65535], "would behold": [0, 65535], "behold in": [0, 65535], "this shamefull": [0, 65535], "shamefull sport": [0, 65535], "sport enter": [0, 65535], "enter three": [0, 65535], "three or": [0, 65535], "or foure": [0, 65535], "foure and": [0, 65535], "and offer": [0, 65535], "him hee": [0, 65535], "hee striues": [0, 65535], "striues adr": [0, 65535], "oh binde": [0, 65535], "him binde": [0, 65535], "come neere": [0, 65535], "neere me": [0, 65535], "me pinch": [0, 65535], "pinch more": [0, 65535], "more company": [0, 65535], "the fiend": [0, 65535], "fiend is": [0, 65535], "is strong": [0, 65535], "strong within": [0, 65535], "luc aye": [0, 65535], "aye me": [0, 65535], "me poore": [0, 65535], "poore man": [0, 65535], "man how": [0, 65535], "how pale": [0, 65535], "and wan": [0, 65535], "wan he": [0, 65535], "he looks": [0, 65535], "looks ant": [0, 65535], "you murther": [0, 65535], "murther me": [0, 65535], "thou iailor": [0, 65535], "iailor thou": [0, 65535], "am thy": [0, 65535], "thy prisoner": [0, 65535], "prisoner wilt": [0, 65535], "thou suffer": [0, 65535], "suffer them": [0, 65535], "a rescue": [0, 65535], "rescue offi": [0, 65535], "offi masters": [0, 65535], "masters let": [0, 65535], "him go": [0, 65535], "go he": [0, 65535], "my prisoner": [0, 65535], "prisoner and": [0, 65535], "him pinch": [0, 65535], "pinch go": [0, 65535], "go binde": [0, 65535], "binde this": [0, 65535], "man for": [0, 65535], "is franticke": [0, 65535], "franticke too": [0, 65535], "thou do": [0, 65535], "do thou": [0, 65535], "peeuish officer": [0, 65535], "officer hast": [0, 65535], "thou delight": [0, 65535], "delight to": [0, 65535], "wretched man": [0, 65535], "man do": [0, 65535], "do outrage": [0, 65535], "outrage and": [0, 65535], "and displeasure": [0, 65535], "to himselfe": [0, 65535], "himselfe offi": [0, 65535], "offi he": [0, 65535], "prisoner if": [0, 65535], "the debt": [0, 65535], "debt he": [0, 65535], "he owes": [0, 65535], "owes will": [0, 65535], "be requir'd": [0, 65535], "requir'd of": [0, 65535], "discharge thee": [0, 65535], "go from": [0, 65535], "from thee": [0, 65535], "thee beare": [0, 65535], "me forthwith": [0, 65535], "forthwith vnto": [0, 65535], "vnto his": [0, 65535], "his creditor": [0, 65535], "creditor and": [0, 65535], "knowing how": [0, 65535], "debt growes": [0, 65535], "growes i": [0, 65535], "pay it": [0, 65535], "it good": [0, 65535], "good master": [0, 65535], "master doctor": [0, 65535], "doctor see": [0, 65535], "him safe": [0, 65535], "safe conuey'd": [0, 65535], "conuey'd home": [0, 65535], "house oh": [0, 65535], "oh most": [0, 65535], "most vnhappy": [0, 65535], "vnhappy day": [0, 65535], "ant oh": [0, 65535], "most vnhappie": [0, 65535], "vnhappie strumpet": [0, 65535], "strumpet dro": [0, 65535], "am heere": [0, 65535], "heere entred": [0, 65535], "entred in": [0, 65535], "in bond": [0, 65535], "bond for": [0, 65535], "ant out": [0, 65535], "villaine wherefore": [0, 65535], "wherefore dost": [0, 65535], "mad mee": [0, 65535], "mee dro": [0, 65535], "dro will": [0, 65535], "bound for": [0, 65535], "nothing be": [0, 65535], "be mad": [0, 65535], "mad good": [0, 65535], "master cry": [0, 65535], "cry the": [0, 65535], "diuell luc": [0, 65535], "luc god": [0, 65535], "god helpe": [0, 65535], "helpe poore": [0, 65535], "soules how": [0, 65535], "how idlely": [0, 65535], "idlely doe": [0, 65535], "doe they": [0, 65535], "they talke": [0, 65535], "talke adr": [0, 65535], "go beare": [0, 65535], "hence sister": [0, 65535], "sister go": [0, 65535], "go you": [0, 65535], "say now": [0, 65535], "now whose": [0, 65535], "suite is": [0, 65535], "arrested at": [0, 65535], "at exeunt": [0, 65535], "exeunt manet": [0, 65535], "manet offic": [0, 65535], "offic adri": [0, 65535], "adri luci": [0, 65535], "luci courtizan": [0, 65535], "courtizan off": [0, 65535], "off one": [0, 65535], "one angelo": [0, 65535], "angelo a": [0, 65535], "a goldsmith": [0, 65535], "goldsmith do": [0, 65535], "summe he": [0, 65535], "owes off": [0, 65535], "off two": [0, 65535], "two hundred": [0, 65535], "duckets adr": [0, 65535], "how growes": [0, 65535], "growes it": [0, 65535], "it due": [0, 65535], "due off": [0, 65535], "off due": [0, 65535], "due for": [0, 65535], "chaine your": [0, 65535], "husband had": [0, 65535], "did bespeake": [0, 65535], "a chain": [0, 65535], "chain for": [0, 65535], "not cur": [0, 65535], "cur when": [0, 65535], "when as": [0, 65535], "as your": [0, 65535], "husband all": [0, 65535], "rage to": [0, 65535], "day came": [0, 65535], "tooke away": [0, 65535], "ring the": [0, 65535], "saw vpon": [0, 65535], "vpon his": [0, 65535], "finger now": [0, 65535], "now straight": [0, 65535], "straight after": [0, 65535], "after did": [0, 65535], "meete him": [0, 65535], "chaine adr": [0, 65535], "it may": [0, 65535], "may be": [0, 65535], "did neuer": [0, 65535], "neuer see": [0, 65535], "come iailor": [0, 65535], "iailor bring": [0, 65535], "bring me": [0, 65535], "goldsmith is": [0, 65535], "is i": [0, 65535], "long to": [0, 65535], "the truth": [0, 65535], "truth heereof": [0, 65535], "heereof at": [0, 65535], "large enter": [0, 65535], "siracusia with": [0, 65535], "his rapier": [0, 65535], "rapier drawne": [0, 65535], "drawne and": [0, 65535], "dromio sirac": [0, 65535], "sirac luc": [0, 65535], "god for": [0, 65535], "thy mercy": [0, 65535], "mercy they": [0, 65535], "are loose": [0, 65535], "loose againe": [0, 65535], "againe adr": [0, 65535], "and come": [0, 65535], "with naked": [0, 65535], "naked swords": [0, 65535], "swords let's": [0, 65535], "let's call": [0, 65535], "call more": [0, 65535], "more helpe": [0, 65535], "helpe to": [0, 65535], "haue them": [0, 65535], "them bound": [0, 65535], "bound againe": [0, 65535], "againe runne": [0, 65535], "runne all": [0, 65535], "all out": [0, 65535], "out off": [0, 65535], "off away": [0, 65535], "away they'l": [0, 65535], "they'l kill": [0, 65535], "kill vs": [0, 65535], "vs exeunt": [0, 65535], "omnes as": [0, 65535], "as fast": [0, 65535], "fast as": [0, 65535], "as may": [0, 65535], "be frighted": [0, 65535], "frighted s": [0, 65535], "see these": [0, 65535], "these witches": [0, 65535], "witches are": [0, 65535], "are affraid": [0, 65535], "affraid of": [0, 65535], "of swords": [0, 65535], "swords s": [0, 65535], "dro she": [0, 65535], "wife now": [0, 65535], "now ran": [0, 65535], "ran from": [0, 65535], "centaur fetch": [0, 65535], "fetch our": [0, 65535], "our stuffe": [0, 65535], "thence i": [0, 65535], "long that": [0, 65535], "were safe": [0, 65535], "safe and": [0, 65535], "sound aboord": [0, 65535], "aboord dro": [0, 65535], "faith stay": [0, 65535], "stay heere": [0, 65535], "heere this": [0, 65535], "this night": [0, 65535], "night they": [0, 65535], "will surely": [0, 65535], "surely do": [0, 65535], "do vs": [0, 65535], "vs no": [0, 65535], "no harme": [0, 65535], "harme you": [0, 65535], "saw they": [0, 65535], "they speake": [0, 65535], "speake vs": [0, 65535], "vs faire": [0, 65535], "faire giue": [0, 65535], "giue vs": [0, 65535], "vs gold": [0, 65535], "gold me": [0, 65535], "thinkes they": [0, 65535], "are such": [0, 65535], "gentle nation": [0, 65535], "nation that": [0, 65535], "that but": [0, 65535], "the mountaine": [0, 65535], "mountaine of": [0, 65535], "of mad": [0, 65535], "mad flesh": [0, 65535], "flesh that": [0, 65535], "claimes mariage": [0, 65535], "mariage of": [0, 65535], "could finde": [0, 65535], "finde in": [0, 65535], "heere still": [0, 65535], "and turne": [0, 65535], "turne witch": [0, 65535], "witch ant": [0, 65535], "not stay": [0, 65535], "stay to": [0, 65535], "night for": [0, 65535], "towne therefore": [0, 65535], "therefore away": [0, 65535], "get our": [0, 65535], "stuffe aboord": [0, 65535], "aboord exeunt": [0, 65535], "actus quartus sc\u00e6na": [0, 65535], "quartus sc\u00e6na prima": [0, 65535], "sc\u00e6na prima enter": [0, 65535], "prima enter a": [0, 65535], "enter a merchant": [0, 65535], "a merchant goldsmith": [0, 65535], "merchant goldsmith and": [0, 65535], "goldsmith and an": [0, 65535], "and an officer": [0, 65535], "an officer mar": [0, 65535], "officer mar you": [0, 65535], "mar you know": [0, 65535], "you know since": [0, 65535], "know since pentecost": [0, 65535], "since pentecost the": [0, 65535], "pentecost the sum": [0, 65535], "the sum is": [0, 65535], "sum is due": [0, 65535], "is due and": [0, 65535], "due and since": [0, 65535], "and since i": [0, 65535], "since i haue": [0, 65535], "haue not much": [0, 65535], "not much importun'd": [0, 65535], "much importun'd you": [0, 65535], "importun'd you nor": [0, 65535], "you nor now": [0, 65535], "nor now i": [0, 65535], "now i had": [0, 65535], "had not but": [0, 65535], "not but that": [0, 65535], "i am bound": [0, 65535], "am bound to": [0, 65535], "bound to persia": [0, 65535], "to persia and": [0, 65535], "persia and want": [0, 65535], "and want gilders": [0, 65535], "want gilders for": [0, 65535], "gilders for my": [0, 65535], "for my voyage": [0, 65535], "my voyage therefore": [0, 65535], "voyage therefore make": [0, 65535], "therefore make present": [0, 65535], "make present satisfaction": [0, 65535], "present satisfaction or": [0, 65535], "satisfaction or ile": [0, 65535], "or ile attach": [0, 65535], "ile attach you": [0, 65535], "attach you by": [0, 65535], "you by this": [0, 65535], "by this officer": [0, 65535], "this officer gold": [0, 65535], "officer gold euen": [0, 65535], "gold euen iust": [0, 65535], "euen iust the": [0, 65535], "iust the sum": [0, 65535], "sum that i": [0, 65535], "that i do": [0, 65535], "i do owe": [0, 65535], "do owe to": [0, 65535], "owe to you": [0, 65535], "to you is": [0, 65535], "you is growing": [0, 65535], "is growing to": [0, 65535], "growing to me": [0, 65535], "to me by": [0, 65535], "me by antipholus": [0, 65535], "by antipholus and": [0, 65535], "antipholus and in": [0, 65535], "in the instant": [0, 65535], "the instant that": [0, 65535], "instant that i": [0, 65535], "that i met": [0, 65535], "i met with": [0, 65535], "met with you": [0, 65535], "with you he": [0, 65535], "you he had": [0, 65535], "he had of": [0, 65535], "of me a": [0, 65535], "a chaine at": [0, 65535], "chaine at fiue": [0, 65535], "a clocke i": [0, 65535], "clocke i shall": [0, 65535], "i shall receiue": [0, 65535], "shall receiue the": [0, 65535], "the money for": [0, 65535], "for the same": [0, 65535], "the same pleaseth": [0, 65535], "same pleaseth you": [0, 65535], "pleaseth you walke": [0, 65535], "with me downe": [0, 65535], "me downe to": [0, 65535], "downe to his": [0, 65535], "to his house": [0, 65535], "his house i": [0, 65535], "house i will": [0, 65535], "i will discharge": [0, 65535], "will discharge my": [0, 65535], "discharge my bond": [0, 65535], "my bond and": [0, 65535], "bond and thanke": [0, 65535], "and thanke you": [0, 65535], "thanke you too": [0, 65535], "you too enter": [0, 65535], "too enter antipholus": [0, 65535], "enter antipholus ephes": [0, 65535], "antipholus ephes dromio": [0, 65535], "ephes dromio from": [0, 65535], "dromio from the": [0, 65535], "from the courtizans": [0, 65535], "the courtizans offi": [0, 65535], "courtizans offi that": [0, 65535], "offi that labour": [0, 65535], "that labour may": [0, 65535], "labour may you": [0, 65535], "may you saue": [0, 65535], "you saue see": [0, 65535], "saue see where": [0, 65535], "see where he": [0, 65535], "where he comes": [0, 65535], "he comes ant": [0, 65535], "comes ant while": [0, 65535], "ant while i": [0, 65535], "while i go": [0, 65535], "i go to": [0, 65535], "go to the": [0, 65535], "to the goldsmiths": [0, 65535], "the goldsmiths house": [0, 65535], "goldsmiths house go": [0, 65535], "house go thou": [0, 65535], "go thou and": [0, 65535], "thou and buy": [0, 65535], "and buy a": [0, 65535], "buy a ropes": [0, 65535], "a ropes end": [0, 65535], "ropes end that": [0, 65535], "end that will": [0, 65535], "that will i": [0, 65535], "i bestow among": [0, 65535], "bestow among my": [0, 65535], "among my wife": [0, 65535], "wife and their": [0, 65535], "and their confederates": [0, 65535], "their confederates for": [0, 65535], "confederates for locking": [0, 65535], "for locking me": [0, 65535], "locking me out": [0, 65535], "me out of": [0, 65535], "out of my": [0, 65535], "of my doores": [0, 65535], "my doores by": [0, 65535], "doores by day": [0, 65535], "by day but": [0, 65535], "day but soft": [0, 65535], "but soft i": [0, 65535], "soft i see": [0, 65535], "see the goldsmith": [0, 65535], "the goldsmith get": [0, 65535], "goldsmith get thee": [0, 65535], "get thee gone": [0, 65535], "thee gone buy": [0, 65535], "gone buy thou": [0, 65535], "buy thou a": [0, 65535], "thou a rope": [0, 65535], "a rope and": [0, 65535], "rope and bring": [0, 65535], "and bring it": [0, 65535], "it home to": [0, 65535], "home to me": [0, 65535], "to me dro": [0, 65535], "me dro i": [0, 65535], "dro i buy": [0, 65535], "i buy a": [0, 65535], "buy a thousand": [0, 65535], "a thousand pound": [0, 65535], "thousand pound a": [0, 65535], "pound a yeare": [0, 65535], "a yeare i": [0, 65535], "yeare i buy": [0, 65535], "buy a rope": [0, 65535], "a rope exit": [0, 65535], "rope exit dromio": [0, 65535], "exit dromio eph": [0, 65535], "dromio eph ant": [0, 65535], "eph ant a": [0, 65535], "ant a man": [0, 65535], "man is well": [0, 65535], "is well holpe": [0, 65535], "well holpe vp": [0, 65535], "holpe vp that": [0, 65535], "vp that trusts": [0, 65535], "that trusts to": [0, 65535], "trusts to you": [0, 65535], "to you i": [0, 65535], "you i promised": [0, 65535], "i promised your": [0, 65535], "promised your presence": [0, 65535], "your presence and": [0, 65535], "presence and the": [0, 65535], "and the chaine": [0, 65535], "the chaine but": [0, 65535], "chaine but neither": [0, 65535], "but neither chaine": [0, 65535], "neither chaine nor": [0, 65535], "chaine nor goldsmith": [0, 65535], "nor goldsmith came": [0, 65535], "goldsmith came to": [0, 65535], "came to me": [0, 65535], "to me belike": [0, 65535], "me belike you": [0, 65535], "belike you thought": [0, 65535], "you thought our": [0, 65535], "thought our loue": [0, 65535], "our loue would": [0, 65535], "loue would last": [0, 65535], "would last too": [0, 65535], "last too long": [0, 65535], "too long if": [0, 65535], "long if it": [0, 65535], "it were chain'd": [0, 65535], "were chain'd together": [0, 65535], "chain'd together and": [0, 65535], "together and therefore": [0, 65535], "and therefore came": [0, 65535], "therefore came not": [0, 65535], "came not gold": [0, 65535], "not gold sauing": [0, 65535], "gold sauing your": [0, 65535], "sauing your merrie": [0, 65535], "merrie humor here's": [0, 65535], "humor here's the": [0, 65535], "here's the note": [0, 65535], "the note how": [0, 65535], "note how much": [0, 65535], "how much your": [0, 65535], "much your chaine": [0, 65535], "your chaine weighs": [0, 65535], "chaine weighs to": [0, 65535], "weighs to the": [0, 65535], "to the vtmost": [0, 65535], "the vtmost charect": [0, 65535], "vtmost charect the": [0, 65535], "charect the finenesse": [0, 65535], "the finenesse of": [0, 65535], "finenesse of the": [0, 65535], "of the gold": [0, 65535], "the gold and": [0, 65535], "gold and chargefull": [0, 65535], "and chargefull fashion": [0, 65535], "chargefull fashion which": [0, 65535], "fashion which doth": [0, 65535], "which doth amount": [0, 65535], "doth amount to": [0, 65535], "amount to three": [0, 65535], "to three odde": [0, 65535], "three odde duckets": [0, 65535], "odde duckets more": [0, 65535], "duckets more then": [0, 65535], "more then i": [0, 65535], "then i stand": [0, 65535], "i stand debted": [0, 65535], "stand debted to": [0, 65535], "debted to this": [0, 65535], "to this gentleman": [0, 65535], "this gentleman i": [0, 65535], "gentleman i pray": [0, 65535], "pray you see": [0, 65535], "you see him": [0, 65535], "see him presently": [0, 65535], "him presently discharg'd": [0, 65535], "presently discharg'd for": [0, 65535], "discharg'd for he": [0, 65535], "for he is": [0, 65535], "he is bound": [0, 65535], "is bound to": [0, 65535], "bound to sea": [0, 65535], "to sea and": [0, 65535], "sea and stayes": [0, 65535], "and stayes but": [0, 65535], "stayes but for": [0, 65535], "but for it": [0, 65535], "for it anti": [0, 65535], "it anti i": [0, 65535], "anti i am": [0, 65535], "am not furnish'd": [0, 65535], "not furnish'd with": [0, 65535], "furnish'd with the": [0, 65535], "with the present": [0, 65535], "the present monie": [0, 65535], "present monie besides": [0, 65535], "monie besides i": [0, 65535], "besides i haue": [0, 65535], "haue some businesse": [0, 65535], "some businesse in": [0, 65535], "businesse in the": [0, 65535], "the towne good": [0, 65535], "towne good signior": [0, 65535], "good signior take": [0, 65535], "signior take the": [0, 65535], "take the stranger": [0, 65535], "the stranger to": [0, 65535], "stranger to my": [0, 65535], "my house and": [0, 65535], "house and with": [0, 65535], "and with you": [0, 65535], "with you take": [0, 65535], "you take the": [0, 65535], "take the chaine": [0, 65535], "the chaine and": [0, 65535], "chaine and bid": [0, 65535], "and bid my": [0, 65535], "bid my wife": [0, 65535], "my wife disburse": [0, 65535], "wife disburse the": [0, 65535], "disburse the summe": [0, 65535], "the summe on": [0, 65535], "summe on the": [0, 65535], "on the receit": [0, 65535], "the receit thereof": [0, 65535], "receit thereof perchance": [0, 65535], "thereof perchance i": [0, 65535], "perchance i will": [0, 65535], "will be there": [0, 65535], "be there as": [0, 65535], "there as soone": [0, 65535], "as soone as": [0, 65535], "soone as you": [0, 65535], "as you gold": [0, 65535], "you gold then": [0, 65535], "gold then you": [0, 65535], "then you will": [0, 65535], "will bring the": [0, 65535], "bring the chaine": [0, 65535], "the chaine to": [0, 65535], "chaine to her": [0, 65535], "to her your": [0, 65535], "her your selfe": [0, 65535], "your selfe anti": [0, 65535], "selfe anti no": [0, 65535], "anti no beare": [0, 65535], "no beare it": [0, 65535], "beare it with": [0, 65535], "it with you": [0, 65535], "with you least": [0, 65535], "you least i": [0, 65535], "least i come": [0, 65535], "i come not": [0, 65535], "come not time": [0, 65535], "not time enough": [0, 65535], "time enough gold": [0, 65535], "enough gold well": [0, 65535], "gold well sir": [0, 65535], "sir i will": [0, 65535], "i will haue": [0, 65535], "will haue you": [0, 65535], "haue you the": [0, 65535], "you the chaine": [0, 65535], "chaine about you": [0, 65535], "about you ant": [0, 65535], "you ant and": [0, 65535], "ant and if": [0, 65535], "and if i": [0, 65535], "if i haue": [0, 65535], "haue not sir": [0, 65535], "not sir i": [0, 65535], "sir i hope": [0, 65535], "i hope you": [0, 65535], "hope you haue": [0, 65535], "you haue or": [0, 65535], "haue or else": [0, 65535], "or else you": [0, 65535], "else you may": [0, 65535], "you may returne": [0, 65535], "may returne without": [0, 65535], "returne without your": [0, 65535], "without your money": [0, 65535], "your money gold": [0, 65535], "money gold nay": [0, 65535], "gold nay come": [0, 65535], "nay come i": [0, 65535], "come i pray": [0, 65535], "you sir giue": [0, 65535], "sir giue me": [0, 65535], "giue me the": [0, 65535], "me the chaine": [0, 65535], "the chaine both": [0, 65535], "chaine both winde": [0, 65535], "both winde and": [0, 65535], "winde and tide": [0, 65535], "and tide stayes": [0, 65535], "tide stayes for": [0, 65535], "stayes for this": [0, 65535], "for this gentleman": [0, 65535], "this gentleman and": [0, 65535], "gentleman and i": [0, 65535], "and i too": [0, 65535], "i too blame": [0, 65535], "too blame haue": [0, 65535], "blame haue held": [0, 65535], "haue held him": [0, 65535], "held him heere": [0, 65535], "him heere too": [0, 65535], "heere too long": [0, 65535], "too long anti": [0, 65535], "long anti good": [0, 65535], "anti good lord": [0, 65535], "good lord you": [0, 65535], "lord you vse": [0, 65535], "you vse this": [0, 65535], "vse this dalliance": [0, 65535], "this dalliance to": [0, 65535], "dalliance to excuse": [0, 65535], "to excuse your": [0, 65535], "excuse your breach": [0, 65535], "your breach of": [0, 65535], "breach of promise": [0, 65535], "of promise to": [0, 65535], "promise to the": [0, 65535], "the porpentine i": [0, 65535], "porpentine i should": [0, 65535], "i should haue": [0, 65535], "should haue chid": [0, 65535], "haue chid you": [0, 65535], "chid you for": [0, 65535], "you for not": [0, 65535], "for not bringing": [0, 65535], "not bringing it": [0, 65535], "bringing it but": [0, 65535], "it but like": [0, 65535], "but like a": [0, 65535], "like a shrew": [0, 65535], "a shrew you": [0, 65535], "shrew you first": [0, 65535], "you first begin": [0, 65535], "first begin to": [0, 65535], "begin to brawle": [0, 65535], "to brawle mar": [0, 65535], "brawle mar the": [0, 65535], "mar the houre": [0, 65535], "the houre steales": [0, 65535], "houre steales on": [0, 65535], "steales on i": [0, 65535], "on i pray": [0, 65535], "you sir dispatch": [0, 65535], "sir dispatch gold": [0, 65535], "dispatch gold you": [0, 65535], "gold you heare": [0, 65535], "you heare how": [0, 65535], "heare how he": [0, 65535], "how he importunes": [0, 65535], "he importunes me": [0, 65535], "importunes me the": [0, 65535], "the chaine ant": [0, 65535], "chaine ant why": [0, 65535], "ant why giue": [0, 65535], "why giue it": [0, 65535], "giue it to": [0, 65535], "it to my": [0, 65535], "to my wife": [0, 65535], "wife and fetch": [0, 65535], "and fetch your": [0, 65535], "fetch your mony": [0, 65535], "your mony gold": [0, 65535], "mony gold come": [0, 65535], "gold come come": [0, 65535], "come come you": [0, 65535], "come you know": [0, 65535], "you know i": [0, 65535], "know i gaue": [0, 65535], "i gaue it": [0, 65535], "gaue it you": [0, 65535], "it you euen": [0, 65535], "you euen now": [0, 65535], "euen now either": [0, 65535], "now either send": [0, 65535], "either send the": [0, 65535], "send the chaine": [0, 65535], "the chaine or": [0, 65535], "chaine or send": [0, 65535], "or send me": [0, 65535], "send me by": [0, 65535], "me by some": [0, 65535], "by some token": [0, 65535], "some token ant": [0, 65535], "token ant fie": [0, 65535], "ant fie now": [0, 65535], "fie now you": [0, 65535], "now you run": [0, 65535], "you run this": [0, 65535], "run this humor": [0, 65535], "this humor out": [0, 65535], "humor out of": [0, 65535], "out of breath": [0, 65535], "of breath come": [0, 65535], "breath come where's": [0, 65535], "come where's the": [0, 65535], "where's the chaine": [0, 65535], "chaine i pray": [0, 65535], "pray you let": [0, 65535], "you let me": [0, 65535], "see it mar": [0, 65535], "it mar my": [0, 65535], "mar my businesse": [0, 65535], "my businesse cannot": [0, 65535], "businesse cannot brooke": [0, 65535], "cannot brooke this": [0, 65535], "brooke this dalliance": [0, 65535], "this dalliance good": [0, 65535], "dalliance good sir": [0, 65535], "good sir say": [0, 65535], "sir say whe'r": [0, 65535], "say whe'r you'l": [0, 65535], "whe'r you'l answer": [0, 65535], "you'l answer me": [0, 65535], "answer me or": [0, 65535], "me or no": [0, 65535], "or no if": [0, 65535], "no if not": [0, 65535], "if not ile": [0, 65535], "not ile leaue": [0, 65535], "ile leaue him": [0, 65535], "leaue him to": [0, 65535], "him to the": [0, 65535], "to the officer": [0, 65535], "the officer ant": [0, 65535], "officer ant i": [0, 65535], "ant i answer": [0, 65535], "i answer you": [0, 65535], "answer you what": [0, 65535], "you what should": [0, 65535], "what should i": [0, 65535], "should i answer": [0, 65535], "answer you gold": [0, 65535], "you gold the": [0, 65535], "gold the monie": [0, 65535], "the monie that": [0, 65535], "monie that you": [0, 65535], "that you owe": [0, 65535], "you owe me": [0, 65535], "owe me for": [0, 65535], "me for the": [0, 65535], "chaine ant i": [0, 65535], "ant i owe": [0, 65535], "i owe you": [0, 65535], "owe you none": [0, 65535], "you none till": [0, 65535], "none till i": [0, 65535], "till i receiue": [0, 65535], "i receiue the": [0, 65535], "receiue the chaine": [0, 65535], "the chaine gold": [0, 65535], "chaine gold you": [0, 65535], "gold you know": [0, 65535], "it you halfe": [0, 65535], "you halfe an": [0, 65535], "halfe an houre": [0, 65535], "an houre since": [0, 65535], "houre since ant": [0, 65535], "since ant you": [0, 65535], "ant you gaue": [0, 65535], "gaue me none": [0, 65535], "me none you": [0, 65535], "none you wrong": [0, 65535], "you wrong mee": [0, 65535], "wrong mee much": [0, 65535], "mee much to": [0, 65535], "much to say": [0, 65535], "to say so": [0, 65535], "say so gold": [0, 65535], "so gold you": [0, 65535], "gold you wrong": [0, 65535], "you wrong me": [0, 65535], "wrong me more": [0, 65535], "me more sir": [0, 65535], "more sir in": [0, 65535], "sir in denying": [0, 65535], "in denying it": [0, 65535], "denying it consider": [0, 65535], "it consider how": [0, 65535], "consider how it": [0, 65535], "how it stands": [0, 65535], "it stands vpon": [0, 65535], "stands vpon my": [0, 65535], "vpon my credit": [0, 65535], "my credit mar": [0, 65535], "credit mar well": [0, 65535], "mar well officer": [0, 65535], "well officer arrest": [0, 65535], "officer arrest him": [0, 65535], "arrest him at": [0, 65535], "him at my": [0, 65535], "at my suite": [0, 65535], "my suite offi": [0, 65535], "suite offi i": [0, 65535], "offi i do": [0, 65535], "i do and": [0, 65535], "do and charge": [0, 65535], "and charge you": [0, 65535], "charge you in": [0, 65535], "you in the": [0, 65535], "in the dukes": [0, 65535], "the dukes name": [0, 65535], "dukes name to": [0, 65535], "name to obey": [0, 65535], "to obey me": [0, 65535], "obey me gold": [0, 65535], "me gold this": [0, 65535], "gold this touches": [0, 65535], "this touches me": [0, 65535], "touches me in": [0, 65535], "me in reputation": [0, 65535], "in reputation either": [0, 65535], "reputation either consent": [0, 65535], "either consent to": [0, 65535], "consent to pay": [0, 65535], "to pay this": [0, 65535], "pay this sum": [0, 65535], "this sum for": [0, 65535], "sum for me": [0, 65535], "for me or": [0, 65535], "me or i": [0, 65535], "or i attach": [0, 65535], "i attach you": [0, 65535], "this officer ant": [0, 65535], "officer ant consent": [0, 65535], "ant consent to": [0, 65535], "to pay thee": [0, 65535], "pay thee that": [0, 65535], "thee that i": [0, 65535], "that i neuer": [0, 65535], "i neuer had": [0, 65535], "neuer had arrest": [0, 65535], "had arrest me": [0, 65535], "arrest me foolish": [0, 65535], "me foolish fellow": [0, 65535], "foolish fellow if": [0, 65535], "fellow if thou": [0, 65535], "thou dar'st gold": [0, 65535], "dar'st gold heere": [0, 65535], "gold heere is": [0, 65535], "heere is thy": [0, 65535], "is thy fee": [0, 65535], "thy fee arrest": [0, 65535], "fee arrest him": [0, 65535], "arrest him officer": [0, 65535], "him officer i": [0, 65535], "officer i would": [0, 65535], "i would not": [0, 65535], "would not spare": [0, 65535], "not spare my": [0, 65535], "spare my brother": [0, 65535], "my brother in": [0, 65535], "brother in this": [0, 65535], "in this case": [0, 65535], "this case if": [0, 65535], "case if he": [0, 65535], "if he should": [0, 65535], "he should scorne": [0, 65535], "should scorne me": [0, 65535], "scorne me so": [0, 65535], "me so apparantly": [0, 65535], "so apparantly offic": [0, 65535], "apparantly offic i": [0, 65535], "offic i do": [0, 65535], "i do arrest": [0, 65535], "do arrest you": [0, 65535], "arrest you sir": [0, 65535], "you sir you": [0, 65535], "sir you heare": [0, 65535], "you heare the": [0, 65535], "heare the suite": [0, 65535], "the suite ant": [0, 65535], "suite ant i": [0, 65535], "ant i do": [0, 65535], "i do obey": [0, 65535], "do obey thee": [0, 65535], "obey thee till": [0, 65535], "thee till i": [0, 65535], "till i giue": [0, 65535], "i giue thee": [0, 65535], "giue thee baile": [0, 65535], "thee baile but": [0, 65535], "baile but sirrah": [0, 65535], "but sirrah you": [0, 65535], "sirrah you shall": [0, 65535], "you shall buy": [0, 65535], "shall buy this": [0, 65535], "buy this sport": [0, 65535], "this sport as": [0, 65535], "sport as deere": [0, 65535], "as deere as": [0, 65535], "deere as all": [0, 65535], "as all the": [0, 65535], "all the mettall": [0, 65535], "the mettall in": [0, 65535], "mettall in your": [0, 65535], "in your shop": [0, 65535], "your shop will": [0, 65535], "shop will answer": [0, 65535], "will answer gold": [0, 65535], "answer gold sir": [0, 65535], "gold sir sir": [0, 65535], "sir sir i": [0, 65535], "sir i shall": [0, 65535], "shall haue law": [0, 65535], "haue law in": [0, 65535], "law in ephesus": [0, 65535], "in ephesus to": [0, 65535], "ephesus to your": [0, 65535], "to your notorious": [0, 65535], "your notorious shame": [0, 65535], "notorious shame i": [0, 65535], "shame i doubt": [0, 65535], "i doubt it": [0, 65535], "doubt it not": [0, 65535], "it not enter": [0, 65535], "not enter dromio": [0, 65535], "enter dromio sira": [0, 65535], "dromio sira from": [0, 65535], "sira from the": [0, 65535], "from the bay": [0, 65535], "the bay dro": [0, 65535], "bay dro master": [0, 65535], "dro master there's": [0, 65535], "master there's a": [0, 65535], "there's a barke": [0, 65535], "a barke of": [0, 65535], "barke of epidamium": [0, 65535], "of epidamium that": [0, 65535], "epidamium that staies": [0, 65535], "that staies but": [0, 65535], "staies but till": [0, 65535], "but till her": [0, 65535], "till her owner": [0, 65535], "her owner comes": [0, 65535], "owner comes aboord": [0, 65535], "comes aboord and": [0, 65535], "aboord and then": [0, 65535], "and then sir": [0, 65535], "then sir she": [0, 65535], "sir she beares": [0, 65535], "she beares away": [0, 65535], "beares away our": [0, 65535], "away our fraughtage": [0, 65535], "our fraughtage sir": [0, 65535], "fraughtage sir i": [0, 65535], "i haue conuei'd": [0, 65535], "haue conuei'd aboord": [0, 65535], "conuei'd aboord and": [0, 65535], "aboord and i": [0, 65535], "and i haue": [0, 65535], "i haue bought": [0, 65535], "haue bought the": [0, 65535], "bought the oyle": [0, 65535], "the oyle the": [0, 65535], "oyle the balsamum": [0, 65535], "the balsamum and": [0, 65535], "balsamum and aqua": [0, 65535], "and aqua vit\u00e6": [0, 65535], "aqua vit\u00e6 the": [0, 65535], "vit\u00e6 the ship": [0, 65535], "the ship is": [0, 65535], "ship is in": [0, 65535], "is in her": [0, 65535], "in her trim": [0, 65535], "her trim the": [0, 65535], "trim the merrie": [0, 65535], "the merrie winde": [0, 65535], "merrie winde blowes": [0, 65535], "winde blowes faire": [0, 65535], "blowes faire from": [0, 65535], "faire from land": [0, 65535], "from land they": [0, 65535], "land they stay": [0, 65535], "they stay for": [0, 65535], "stay for nought": [0, 65535], "for nought at": [0, 65535], "nought at all": [0, 65535], "at all but": [0, 65535], "all but for": [0, 65535], "but for their": [0, 65535], "for their owner": [0, 65535], "their owner master": [0, 65535], "owner master and": [0, 65535], "master and your": [0, 65535], "and your selfe": [0, 65535], "your selfe an": [0, 65535], "selfe an how": [0, 65535], "an how now": [0, 65535], "how now a": [0, 65535], "now a madman": [0, 65535], "a madman why": [0, 65535], "madman why thou": [0, 65535], "why thou peeuish": [0, 65535], "thou peeuish sheep": [0, 65535], "peeuish sheep what": [0, 65535], "sheep what ship": [0, 65535], "what ship of": [0, 65535], "ship of epidamium": [0, 65535], "of epidamium staies": [0, 65535], "epidamium staies for": [0, 65535], "staies for me": [0, 65535], "for me s": [0, 65535], "s dro a": [0, 65535], "dro a ship": [0, 65535], "a ship you": [0, 65535], "ship you sent": [0, 65535], "sent me too": [0, 65535], "me too to": [0, 65535], "too to hier": [0, 65535], "to hier waftage": [0, 65535], "hier waftage ant": [0, 65535], "waftage ant thou": [0, 65535], "ant thou drunken": [0, 65535], "thou drunken slaue": [0, 65535], "drunken slaue i": [0, 65535], "slaue i sent": [0, 65535], "i sent thee": [0, 65535], "sent thee for": [0, 65535], "for a rope": [0, 65535], "rope and told": [0, 65535], "and told thee": [0, 65535], "told thee to": [0, 65535], "thee to what": [0, 65535], "to what purpose": [0, 65535], "what purpose and": [0, 65535], "purpose and what": [0, 65535], "and what end": [0, 65535], "what end s": [0, 65535], "end s dro": [0, 65535], "s dro you": [0, 65535], "dro you sent": [0, 65535], "sent me for": [0, 65535], "for a ropes": [0, 65535], "ropes end as": [0, 65535], "end as soone": [0, 65535], "as soone you": [0, 65535], "soone you sent": [0, 65535], "sent me to": [0, 65535], "the bay sir": [0, 65535], "bay sir for": [0, 65535], "sir for a": [0, 65535], "for a barke": [0, 65535], "a barke ant": [0, 65535], "barke ant i": [0, 65535], "ant i will": [0, 65535], "i will debate": [0, 65535], "will debate this": [0, 65535], "debate this matter": [0, 65535], "this matter at": [0, 65535], "matter at more": [0, 65535], "at more leisure": [0, 65535], "more leisure and": [0, 65535], "leisure and teach": [0, 65535], "and teach your": [0, 65535], "teach your eares": [0, 65535], "your eares to": [0, 65535], "eares to list": [0, 65535], "to list me": [0, 65535], "list me with": [0, 65535], "me with more": [0, 65535], "with more heede": [0, 65535], "more heede to": [0, 65535], "heede to adriana": [0, 65535], "to adriana villaine": [0, 65535], "adriana villaine hie": [0, 65535], "villaine hie thee": [0, 65535], "hie thee straight": [0, 65535], "thee straight giue": [0, 65535], "straight giue her": [0, 65535], "giue her this": [0, 65535], "her this key": [0, 65535], "this key and": [0, 65535], "key and tell": [0, 65535], "tell her in": [0, 65535], "her in the": [0, 65535], "in the deske": [0, 65535], "the deske that's": [0, 65535], "deske that's couer'd": [0, 65535], "that's couer'd o're": [0, 65535], "couer'd o're with": [0, 65535], "o're with turkish": [0, 65535], "with turkish tapistrie": [0, 65535], "turkish tapistrie there": [0, 65535], "tapistrie there is": [0, 65535], "is a purse": [0, 65535], "a purse of": [0, 65535], "of duckets let": [0, 65535], "duckets let her": [0, 65535], "let her send": [0, 65535], "her send it": [0, 65535], "send it tell": [0, 65535], "it tell her": [0, 65535], "tell her i": [0, 65535], "her i am": [0, 65535], "i am arrested": [0, 65535], "am arrested in": [0, 65535], "arrested in the": [0, 65535], "in the streete": [0, 65535], "the streete and": [0, 65535], "streete and that": [0, 65535], "and that shall": [0, 65535], "that shall baile": [0, 65535], "shall baile me": [0, 65535], "baile me hie": [0, 65535], "me hie thee": [0, 65535], "hie thee slaue": [0, 65535], "thee slaue be": [0, 65535], "slaue be gone": [0, 65535], "be gone on": [0, 65535], "gone on officer": [0, 65535], "on officer to": [0, 65535], "officer to prison": [0, 65535], "to prison till": [0, 65535], "prison till it": [0, 65535], "till it come": [0, 65535], "it come exeunt": [0, 65535], "come exeunt s": [0, 65535], "exeunt s dromio": [0, 65535], "s dromio to": [0, 65535], "dromio to adriana": [0, 65535], "to adriana that": [0, 65535], "adriana that is": [0, 65535], "that is where": [0, 65535], "is where we": [0, 65535], "where we din'd": [0, 65535], "we din'd where": [0, 65535], "din'd where dowsabell": [0, 65535], "where dowsabell did": [0, 65535], "dowsabell did claime": [0, 65535], "did claime me": [0, 65535], "claime me for": [0, 65535], "me for her": [0, 65535], "for her husband": [0, 65535], "her husband she": [0, 65535], "husband she is": [0, 65535], "she is too": [0, 65535], "is too bigge": [0, 65535], "too bigge i": [0, 65535], "bigge i hope": [0, 65535], "i hope for": [0, 65535], "hope for me": [0, 65535], "me to compasse": [0, 65535], "to compasse thither": [0, 65535], "compasse thither i": [0, 65535], "thither i must": [0, 65535], "i must although": [0, 65535], "must although against": [0, 65535], "although against my": [0, 65535], "against my will": [0, 65535], "my will for": [0, 65535], "will for seruants": [0, 65535], "for seruants must": [0, 65535], "seruants must their": [0, 65535], "must their masters": [0, 65535], "their masters mindes": [0, 65535], "masters mindes fulfill": [0, 65535], "mindes fulfill exit": [0, 65535], "fulfill exit enter": [0, 65535], "exit enter adriana": [0, 65535], "and luciana adr": [0, 65535], "luciana adr ah": [0, 65535], "adr ah luciana": [0, 65535], "ah luciana did": [0, 65535], "luciana did he": [0, 65535], "did he tempt": [0, 65535], "he tempt thee": [0, 65535], "tempt thee so": [0, 65535], "thee so might'st": [0, 65535], "so might'st thou": [0, 65535], "might'st thou perceiue": [0, 65535], "thou perceiue austeerely": [0, 65535], "perceiue austeerely in": [0, 65535], "austeerely in his": [0, 65535], "in his eie": [0, 65535], "his eie that": [0, 65535], "eie that he": [0, 65535], "he did plead": [0, 65535], "did plead in": [0, 65535], "plead in earnest": [0, 65535], "in earnest yea": [0, 65535], "earnest yea or": [0, 65535], "yea or no": [0, 65535], "or no look'd": [0, 65535], "no look'd he": [0, 65535], "look'd he or": [0, 65535], "he or red": [0, 65535], "or red or": [0, 65535], "red or pale": [0, 65535], "or pale or": [0, 65535], "pale or sad": [0, 65535], "or sad or": [0, 65535], "sad or merrily": [0, 65535], "or merrily what": [0, 65535], "merrily what obseruation": [0, 65535], "what obseruation mad'st": [0, 65535], "obseruation mad'st thou": [0, 65535], "mad'st thou in": [0, 65535], "thou in this": [0, 65535], "this case oh": [0, 65535], "case oh his": [0, 65535], "oh his hearts": [0, 65535], "his hearts meteors": [0, 65535], "hearts meteors tilting": [0, 65535], "meteors tilting in": [0, 65535], "tilting in his": [0, 65535], "his face luc": [0, 65535], "face luc first": [0, 65535], "luc first he": [0, 65535], "first he deni'de": [0, 65535], "he deni'de you": [0, 65535], "deni'de you had": [0, 65535], "you had in": [0, 65535], "had in him": [0, 65535], "in him no": [0, 65535], "him no right": [0, 65535], "no right adr": [0, 65535], "right adr he": [0, 65535], "adr he meant": [0, 65535], "he meant he": [0, 65535], "meant he did": [0, 65535], "he did me": [0, 65535], "did me none": [0, 65535], "me none the": [0, 65535], "none the more": [0, 65535], "the more my": [0, 65535], "more my spight": [0, 65535], "my spight luc": [0, 65535], "spight luc then": [0, 65535], "luc then swore": [0, 65535], "then swore he": [0, 65535], "swore he that": [0, 65535], "he that he": [0, 65535], "was a stranger": [0, 65535], "a stranger heere": [0, 65535], "stranger heere adr": [0, 65535], "heere adr and": [0, 65535], "adr and true": [0, 65535], "and true he": [0, 65535], "true he swore": [0, 65535], "he swore though": [0, 65535], "swore though yet": [0, 65535], "though yet forsworne": [0, 65535], "yet forsworne hee": [0, 65535], "forsworne hee were": [0, 65535], "hee were luc": [0, 65535], "were luc then": [0, 65535], "luc then pleaded": [0, 65535], "then pleaded i": [0, 65535], "pleaded i for": [0, 65535], "i for you": [0, 65535], "for you adr": [0, 65535], "you adr and": [0, 65535], "adr and what": [0, 65535], "and what said": [0, 65535], "what said he": [0, 65535], "said he luc": [0, 65535], "he luc that": [0, 65535], "luc that loue": [0, 65535], "that loue i": [0, 65535], "loue i begg'd": [0, 65535], "i begg'd for": [0, 65535], "begg'd for you": [0, 65535], "for you he": [0, 65535], "you he begg'd": [0, 65535], "he begg'd of": [0, 65535], "begg'd of me": [0, 65535], "of me adr": [0, 65535], "me adr with": [0, 65535], "adr with what": [0, 65535], "with what perswasion": [0, 65535], "what perswasion did": [0, 65535], "perswasion did he": [0, 65535], "he tempt thy": [0, 65535], "tempt thy loue": [0, 65535], "thy loue luc": [0, 65535], "loue luc with": [0, 65535], "luc with words": [0, 65535], "with words that": [0, 65535], "words that in": [0, 65535], "that in an": [0, 65535], "in an honest": [0, 65535], "an honest suit": [0, 65535], "honest suit might": [0, 65535], "suit might moue": [0, 65535], "might moue first": [0, 65535], "moue first he": [0, 65535], "first he did": [0, 65535], "he did praise": [0, 65535], "did praise my": [0, 65535], "praise my beautie": [0, 65535], "my beautie then": [0, 65535], "beautie then my": [0, 65535], "then my speech": [0, 65535], "my speech adr": [0, 65535], "speech adr did'st": [0, 65535], "adr did'st speake": [0, 65535], "did'st speake him": [0, 65535], "speake him faire": [0, 65535], "him faire luc": [0, 65535], "faire luc haue": [0, 65535], "luc haue patience": [0, 65535], "haue patience i": [0, 65535], "patience i beseech": [0, 65535], "i beseech adr": [0, 65535], "beseech adr i": [0, 65535], "adr i cannot": [0, 65535], "i cannot nor": [0, 65535], "cannot nor i": [0, 65535], "nor i will": [0, 65535], "will not hold": [0, 65535], "not hold me": [0, 65535], "hold me still": [0, 65535], "me still my": [0, 65535], "still my tongue": [0, 65535], "my tongue though": [0, 65535], "tongue though not": [0, 65535], "though not my": [0, 65535], "not my heart": [0, 65535], "my heart shall": [0, 65535], "heart shall haue": [0, 65535], "shall haue his": [0, 65535], "haue his will": [0, 65535], "his will he": [0, 65535], "will he is": [0, 65535], "he is deformed": [0, 65535], "is deformed crooked": [0, 65535], "deformed crooked old": [0, 65535], "crooked old and": [0, 65535], "old and sere": [0, 65535], "and sere ill": [0, 65535], "sere ill fac'd": [0, 65535], "ill fac'd worse": [0, 65535], "fac'd worse bodied": [0, 65535], "worse bodied shapelesse": [0, 65535], "bodied shapelesse euery": [0, 65535], "shapelesse euery where": [0, 65535], "euery where vicious": [0, 65535], "where vicious vngentle": [0, 65535], "vicious vngentle foolish": [0, 65535], "vngentle foolish blunt": [0, 65535], "foolish blunt vnkinde": [0, 65535], "blunt vnkinde stigmaticall": [0, 65535], "vnkinde stigmaticall in": [0, 65535], "stigmaticall in making": [0, 65535], "in making worse": [0, 65535], "making worse in": [0, 65535], "worse in minde": [0, 65535], "in minde luc": [0, 65535], "minde luc who": [0, 65535], "luc who would": [0, 65535], "who would be": [0, 65535], "would be iealous": [0, 65535], "be iealous then": [0, 65535], "iealous then of": [0, 65535], "then of such": [0, 65535], "a one no": [0, 65535], "one no euill": [0, 65535], "no euill lost": [0, 65535], "euill lost is": [0, 65535], "lost is wail'd": [0, 65535], "is wail'd when": [0, 65535], "wail'd when it": [0, 65535], "when it is": [0, 65535], "it is gone": [0, 65535], "is gone adr": [0, 65535], "gone adr ah": [0, 65535], "adr ah but": [0, 65535], "ah but i": [0, 65535], "i thinke him": [0, 65535], "thinke him better": [0, 65535], "him better then": [0, 65535], "better then i": [0, 65535], "then i say": [0, 65535], "i say and": [0, 65535], "say and yet": [0, 65535], "and yet would": [0, 65535], "yet would herein": [0, 65535], "would herein others": [0, 65535], "herein others eies": [0, 65535], "others eies were": [0, 65535], "eies were worse": [0, 65535], "were worse farre": [0, 65535], "worse farre from": [0, 65535], "farre from her": [0, 65535], "from her nest": [0, 65535], "her nest the": [0, 65535], "nest the lapwing": [0, 65535], "the lapwing cries": [0, 65535], "lapwing cries away": [0, 65535], "cries away my": [0, 65535], "away my heart": [0, 65535], "my heart praies": [0, 65535], "heart praies for": [0, 65535], "praies for him": [0, 65535], "for him though": [0, 65535], "him though my": [0, 65535], "though my tongue": [0, 65535], "my tongue doe": [0, 65535], "tongue doe curse": [0, 65535], "doe curse enter": [0, 65535], "curse enter s": [0, 65535], "enter s dromio": [0, 65535], "s dromio dro": [0, 65535], "dromio dro here": [0, 65535], "dro here goe": [0, 65535], "here goe the": [0, 65535], "goe the deske": [0, 65535], "the deske the": [0, 65535], "deske the purse": [0, 65535], "the purse sweet": [0, 65535], "purse sweet now": [0, 65535], "sweet now make": [0, 65535], "now make haste": [0, 65535], "make haste luc": [0, 65535], "haste luc how": [0, 65535], "luc how hast": [0, 65535], "how hast thou": [0, 65535], "hast thou lost": [0, 65535], "thou lost thy": [0, 65535], "lost thy breath": [0, 65535], "thy breath s": [0, 65535], "breath s dro": [0, 65535], "dro by running": [0, 65535], "by running fast": [0, 65535], "running fast adr": [0, 65535], "fast adr where": [0, 65535], "adr where is": [0, 65535], "where is thy": [0, 65535], "is thy master": [0, 65535], "thy master dromio": [0, 65535], "master dromio is": [0, 65535], "dromio is he": [0, 65535], "is he well": [0, 65535], "he well s": [0, 65535], "well s dro": [0, 65535], "dro no he's": [0, 65535], "no he's in": [0, 65535], "he's in tartar": [0, 65535], "in tartar limbo": [0, 65535], "tartar limbo worse": [0, 65535], "limbo worse then": [0, 65535], "worse then hell": [0, 65535], "then hell a": [0, 65535], "hell a diuell": [0, 65535], "a diuell in": [0, 65535], "diuell in an": [0, 65535], "in an euerlasting": [0, 65535], "an euerlasting garment": [0, 65535], "euerlasting garment hath": [0, 65535], "garment hath him": [0, 65535], "hath him on": [0, 65535], "him on whose": [0, 65535], "on whose hard": [0, 65535], "whose hard heart": [0, 65535], "hard heart is": [0, 65535], "heart is button'd": [0, 65535], "is button'd vp": [0, 65535], "button'd vp with": [0, 65535], "vp with steele": [0, 65535], "with steele a": [0, 65535], "steele a feind": [0, 65535], "a feind a": [0, 65535], "feind a fairie": [0, 65535], "a fairie pittilesse": [0, 65535], "fairie pittilesse and": [0, 65535], "pittilesse and ruffe": [0, 65535], "and ruffe a": [0, 65535], "ruffe a wolfe": [0, 65535], "a wolfe nay": [0, 65535], "wolfe nay worse": [0, 65535], "nay worse a": [0, 65535], "worse a fellow": [0, 65535], "a fellow all": [0, 65535], "fellow all in": [0, 65535], "all in buffe": [0, 65535], "in buffe a": [0, 65535], "buffe a back": [0, 65535], "a back friend": [0, 65535], "back friend a": [0, 65535], "friend a shoulder": [0, 65535], "a shoulder clapper": [0, 65535], "shoulder clapper one": [0, 65535], "clapper one that": [0, 65535], "one that countermads": [0, 65535], "that countermads the": [0, 65535], "countermads the passages": [0, 65535], "the passages of": [0, 65535], "passages of allies": [0, 65535], "of allies creekes": [0, 65535], "allies creekes and": [0, 65535], "creekes and narrow": [0, 65535], "and narrow lands": [0, 65535], "narrow lands a": [0, 65535], "lands a hound": [0, 65535], "a hound that": [0, 65535], "hound that runs": [0, 65535], "that runs counter": [0, 65535], "runs counter and": [0, 65535], "counter and yet": [0, 65535], "and yet draws": [0, 65535], "yet draws drifoot": [0, 65535], "draws drifoot well": [0, 65535], "drifoot well one": [0, 65535], "well one that": [0, 65535], "one that before": [0, 65535], "that before the": [0, 65535], "before the iudgment": [0, 65535], "the iudgment carries": [0, 65535], "iudgment carries poore": [0, 65535], "carries poore soules": [0, 65535], "poore soules to": [0, 65535], "soules to hel": [0, 65535], "to hel adr": [0, 65535], "hel adr why": [0, 65535], "adr why man": [0, 65535], "why man what": [0, 65535], "man what is": [0, 65535], "the matter s": [0, 65535], "matter s dro": [0, 65535], "dro i doe": [0, 65535], "know the matter": [0, 65535], "the matter hee": [0, 65535], "matter hee is": [0, 65535], "hee is rested": [0, 65535], "is rested on": [0, 65535], "rested on the": [0, 65535], "on the case": [0, 65535], "the case adr": [0, 65535], "case adr what": [0, 65535], "adr what is": [0, 65535], "what is he": [0, 65535], "is he arrested": [0, 65535], "he arrested tell": [0, 65535], "arrested tell me": [0, 65535], "tell me at": [0, 65535], "me at whose": [0, 65535], "at whose suite": [0, 65535], "whose suite s": [0, 65535], "suite s dro": [0, 65535], "dro i know": [0, 65535], "know not at": [0, 65535], "not at whose": [0, 65535], "whose suite he": [0, 65535], "suite he is": [0, 65535], "he is arested": [0, 65535], "is arested well": [0, 65535], "arested well but": [0, 65535], "well but is": [0, 65535], "but is in": [0, 65535], "is in a": [0, 65535], "in a suite": [0, 65535], "a suite of": [0, 65535], "suite of buffe": [0, 65535], "of buffe which": [0, 65535], "buffe which rested": [0, 65535], "which rested him": [0, 65535], "rested him that": [0, 65535], "him that can": [0, 65535], "that can i": [0, 65535], "can i tell": [0, 65535], "i tell will": [0, 65535], "tell will you": [0, 65535], "will you send": [0, 65535], "you send him": [0, 65535], "send him mistris": [0, 65535], "him mistris redemption": [0, 65535], "mistris redemption the": [0, 65535], "redemption the monie": [0, 65535], "the monie in": [0, 65535], "monie in his": [0, 65535], "in his deske": [0, 65535], "his deske adr": [0, 65535], "deske adr go": [0, 65535], "adr go fetch": [0, 65535], "go fetch it": [0, 65535], "fetch it sister": [0, 65535], "it sister this": [0, 65535], "sister this i": [0, 65535], "this i wonder": [0, 65535], "i wonder at": [0, 65535], "wonder at exit": [0, 65535], "at exit luciana": [0, 65535], "exit luciana thus": [0, 65535], "luciana thus he": [0, 65535], "thus he vnknowne": [0, 65535], "he vnknowne to": [0, 65535], "vnknowne to me": [0, 65535], "to me should": [0, 65535], "me should be": [0, 65535], "should be in": [0, 65535], "be in debt": [0, 65535], "in debt tell": [0, 65535], "debt tell me": [0, 65535], "tell me was": [0, 65535], "me was he": [0, 65535], "was he arested": [0, 65535], "he arested on": [0, 65535], "arested on a": [0, 65535], "on a band": [0, 65535], "a band s": [0, 65535], "band s dro": [0, 65535], "dro not on": [0, 65535], "not on a": [0, 65535], "a band but": [0, 65535], "band but on": [0, 65535], "but on a": [0, 65535], "on a stronger": [0, 65535], "a stronger thing": [0, 65535], "stronger thing a": [0, 65535], "thing a chaine": [0, 65535], "a chaine a": [0, 65535], "chaine a chaine": [0, 65535], "a chaine doe": [0, 65535], "chaine doe you": [0, 65535], "doe you not": [0, 65535], "you not here": [0, 65535], "not here it": [0, 65535], "here it ring": [0, 65535], "it ring adria": [0, 65535], "ring adria what": [0, 65535], "adria what the": [0, 65535], "what the chaine": [0, 65535], "the chaine s": [0, 65535], "chaine s dro": [0, 65535], "dro no no": [0, 65535], "no no the": [0, 65535], "no the bell": [0, 65535], "the bell 'tis": [0, 65535], "bell 'tis time": [0, 65535], "'tis time that": [0, 65535], "i were gone": [0, 65535], "were gone it": [0, 65535], "gone it was": [0, 65535], "it was two": [0, 65535], "was two ere": [0, 65535], "two ere i": [0, 65535], "ere i left": [0, 65535], "i left him": [0, 65535], "him and now": [0, 65535], "now the clocke": [0, 65535], "the clocke strikes": [0, 65535], "clocke strikes one": [0, 65535], "strikes one adr": [0, 65535], "one adr the": [0, 65535], "adr the houres": [0, 65535], "the houres come": [0, 65535], "houres come backe": [0, 65535], "come backe that": [0, 65535], "backe that did": [0, 65535], "that did i": [0, 65535], "did i neuer": [0, 65535], "i neuer here": [0, 65535], "neuer here s": [0, 65535], "here s dro": [0, 65535], "dro oh yes": [0, 65535], "oh yes if": [0, 65535], "yes if any": [0, 65535], "if any houre": [0, 65535], "any houre meete": [0, 65535], "houre meete a": [0, 65535], "meete a serieant": [0, 65535], "a serieant a": [0, 65535], "serieant a turnes": [0, 65535], "a turnes backe": [0, 65535], "turnes backe for": [0, 65535], "backe for verie": [0, 65535], "for verie feare": [0, 65535], "verie feare adri": [0, 65535], "feare adri as": [0, 65535], "adri as if": [0, 65535], "as if time": [0, 65535], "if time were": [0, 65535], "time were in": [0, 65535], "were in debt": [0, 65535], "in debt how": [0, 65535], "debt how fondly": [0, 65535], "how fondly do'st": [0, 65535], "fondly do'st thou": [0, 65535], "do'st thou reason": [0, 65535], "thou reason s": [0, 65535], "s dro time": [0, 65535], "dro time is": [0, 65535], "time is a": [0, 65535], "is a verie": [0, 65535], "a verie bankerout": [0, 65535], "verie bankerout and": [0, 65535], "bankerout and owes": [0, 65535], "and owes more": [0, 65535], "owes more then": [0, 65535], "more then he's": [0, 65535], "then he's worth": [0, 65535], "he's worth to": [0, 65535], "worth to season": [0, 65535], "to season nay": [0, 65535], "season nay he's": [0, 65535], "nay he's a": [0, 65535], "he's a theefe": [0, 65535], "a theefe too": [0, 65535], "theefe too haue": [0, 65535], "too haue you": [0, 65535], "haue you not": [0, 65535], "you not heard": [0, 65535], "not heard men": [0, 65535], "heard men say": [0, 65535], "men say that": [0, 65535], "say that time": [0, 65535], "that time comes": [0, 65535], "time comes stealing": [0, 65535], "comes stealing on": [0, 65535], "stealing on by": [0, 65535], "on by night": [0, 65535], "by night and": [0, 65535], "night and day": [0, 65535], "and day if": [0, 65535], "day if i": [0, 65535], "if i be": [0, 65535], "i be in": [0, 65535], "in debt and": [0, 65535], "debt and theft": [0, 65535], "and theft and": [0, 65535], "theft and a": [0, 65535], "and a serieant": [0, 65535], "a serieant in": [0, 65535], "serieant in the": [0, 65535], "in the way": [0, 65535], "the way hath": [0, 65535], "way hath he": [0, 65535], "he not reason": [0, 65535], "not reason to": [0, 65535], "reason to turne": [0, 65535], "to turne backe": [0, 65535], "turne backe an": [0, 65535], "backe an houre": [0, 65535], "an houre in": [0, 65535], "houre in a": [0, 65535], "in a day": [0, 65535], "a day enter": [0, 65535], "day enter luciana": [0, 65535], "enter luciana adr": [0, 65535], "luciana adr go": [0, 65535], "adr go dromio": [0, 65535], "go dromio there's": [0, 65535], "dromio there's the": [0, 65535], "there's the monie": [0, 65535], "the monie beare": [0, 65535], "monie beare it": [0, 65535], "beare it straight": [0, 65535], "it straight and": [0, 65535], "straight and bring": [0, 65535], "and bring thy": [0, 65535], "bring thy master": [0, 65535], "master home imediately": [0, 65535], "home imediately come": [0, 65535], "imediately come sister": [0, 65535], "come sister i": [0, 65535], "sister i am": [0, 65535], "i am prest": [0, 65535], "am prest downe": [0, 65535], "prest downe with": [0, 65535], "downe with conceit": [0, 65535], "with conceit conceit": [0, 65535], "conceit conceit my": [0, 65535], "conceit my comfort": [0, 65535], "my comfort and": [0, 65535], "comfort and my": [0, 65535], "and my iniurie": [0, 65535], "my iniurie exit": [0, 65535], "iniurie exit enter": [0, 65535], "exit enter antipholus": [0, 65535], "enter antipholus siracusia": [0, 65535], "antipholus siracusia there's": [0, 65535], "siracusia there's not": [0, 65535], "there's not a": [0, 65535], "a man i": [0, 65535], "man i meete": [0, 65535], "i meete but": [0, 65535], "meete but doth": [0, 65535], "but doth salute": [0, 65535], "doth salute me": [0, 65535], "salute me as": [0, 65535], "me as if": [0, 65535], "as if i": [0, 65535], "if i were": [0, 65535], "i were their": [0, 65535], "were their well": [0, 65535], "their well acquainted": [0, 65535], "well acquainted friend": [0, 65535], "acquainted friend and": [0, 65535], "friend and euerie": [0, 65535], "and euerie one": [0, 65535], "euerie one doth": [0, 65535], "one doth call": [0, 65535], "call me by": [0, 65535], "me by my": [0, 65535], "by my name": [0, 65535], "my name some": [0, 65535], "name some tender": [0, 65535], "some tender monie": [0, 65535], "tender monie to": [0, 65535], "monie to me": [0, 65535], "to me some": [0, 65535], "me some inuite": [0, 65535], "some inuite me": [0, 65535], "inuite me some": [0, 65535], "me some other": [0, 65535], "some other giue": [0, 65535], "other giue me": [0, 65535], "giue me thankes": [0, 65535], "me thankes for": [0, 65535], "thankes for kindnesses": [0, 65535], "for kindnesses some": [0, 65535], "kindnesses some offer": [0, 65535], "some offer me": [0, 65535], "offer me commodities": [0, 65535], "me commodities to": [0, 65535], "commodities to buy": [0, 65535], "to buy euen": [0, 65535], "buy euen now": [0, 65535], "euen now a": [0, 65535], "now a tailor": [0, 65535], "a tailor cal'd": [0, 65535], "tailor cal'd me": [0, 65535], "cal'd me in": [0, 65535], "me in his": [0, 65535], "in his shop": [0, 65535], "his shop and": [0, 65535], "shop and show'd": [0, 65535], "and show'd me": [0, 65535], "show'd me silkes": [0, 65535], "me silkes that": [0, 65535], "silkes that he": [0, 65535], "he had bought": [0, 65535], "had bought for": [0, 65535], "bought for me": [0, 65535], "me and therewithall": [0, 65535], "and therewithall tooke": [0, 65535], "therewithall tooke measure": [0, 65535], "tooke measure of": [0, 65535], "measure of my": [0, 65535], "of my body": [0, 65535], "my body sure": [0, 65535], "body sure these": [0, 65535], "sure these are": [0, 65535], "these are but": [0, 65535], "are but imaginarie": [0, 65535], "but imaginarie wiles": [0, 65535], "imaginarie wiles and": [0, 65535], "wiles and lapland": [0, 65535], "and lapland sorcerers": [0, 65535], "lapland sorcerers inhabite": [0, 65535], "sorcerers inhabite here": [0, 65535], "inhabite here enter": [0, 65535], "here enter dromio": [0, 65535], "enter dromio sir": [0, 65535], "dromio sir s": [0, 65535], "dro master here's": [0, 65535], "master here's the": [0, 65535], "here's the gold": [0, 65535], "gold you sent": [0, 65535], "me for what": [0, 65535], "for what haue": [0, 65535], "what haue you": [0, 65535], "haue you got": [0, 65535], "you got the": [0, 65535], "got the picture": [0, 65535], "the picture of": [0, 65535], "picture of old": [0, 65535], "of old adam": [0, 65535], "old adam new": [0, 65535], "adam new apparel'd": [0, 65535], "new apparel'd ant": [0, 65535], "apparel'd ant what": [0, 65535], "ant what gold": [0, 65535], "what gold is": [0, 65535], "gold is this": [0, 65535], "is this what": [0, 65535], "this what adam": [0, 65535], "what adam do'st": [0, 65535], "adam do'st thou": [0, 65535], "do'st thou meane": [0, 65535], "thou meane s": [0, 65535], "meane s dro": [0, 65535], "dro not that": [0, 65535], "not that adam": [0, 65535], "that adam that": [0, 65535], "adam that kept": [0, 65535], "that kept the": [0, 65535], "kept the paradise": [0, 65535], "the paradise but": [0, 65535], "paradise but that": [0, 65535], "but that adam": [0, 65535], "adam that keepes": [0, 65535], "that keepes the": [0, 65535], "keepes the prison": [0, 65535], "the prison hee": [0, 65535], "prison hee that": [0, 65535], "hee that goes": [0, 65535], "that goes in": [0, 65535], "goes in the": [0, 65535], "in the calues": [0, 65535], "the calues skin": [0, 65535], "calues skin that": [0, 65535], "skin that was": [0, 65535], "that was kil'd": [0, 65535], "was kil'd for": [0, 65535], "kil'd for the": [0, 65535], "for the prodigall": [0, 65535], "the prodigall hee": [0, 65535], "prodigall hee that": [0, 65535], "hee that came": [0, 65535], "that came behinde": [0, 65535], "came behinde you": [0, 65535], "behinde you sir": [0, 65535], "you sir like": [0, 65535], "sir like an": [0, 65535], "like an euill": [0, 65535], "an euill angel": [0, 65535], "euill angel and": [0, 65535], "angel and bid": [0, 65535], "and bid you": [0, 65535], "bid you forsake": [0, 65535], "you forsake your": [0, 65535], "forsake your libertie": [0, 65535], "your libertie ant": [0, 65535], "libertie ant i": [0, 65535], "ant i vnderstand": [0, 65535], "i vnderstand thee": [0, 65535], "vnderstand thee not": [0, 65535], "thee not s": [0, 65535], "not s dro": [0, 65535], "dro no why": [0, 65535], "no why 'tis": [0, 65535], "why 'tis a": [0, 65535], "'tis a plaine": [0, 65535], "a plaine case": [0, 65535], "plaine case he": [0, 65535], "case he that": [0, 65535], "he that went": [0, 65535], "that went like": [0, 65535], "went like a": [0, 65535], "like a base": [0, 65535], "a base viole": [0, 65535], "base viole in": [0, 65535], "viole in a": [0, 65535], "in a case": [0, 65535], "a case of": [0, 65535], "case of leather": [0, 65535], "of leather the": [0, 65535], "leather the man": [0, 65535], "the man sir": [0, 65535], "man sir that": [0, 65535], "sir that when": [0, 65535], "that when gentlemen": [0, 65535], "when gentlemen are": [0, 65535], "gentlemen are tired": [0, 65535], "are tired giues": [0, 65535], "tired giues them": [0, 65535], "giues them a": [0, 65535], "them a sob": [0, 65535], "a sob and": [0, 65535], "sob and rests": [0, 65535], "and rests them": [0, 65535], "rests them he": [0, 65535], "them he sir": [0, 65535], "he sir that": [0, 65535], "sir that takes": [0, 65535], "that takes pittie": [0, 65535], "takes pittie on": [0, 65535], "pittie on decaied": [0, 65535], "on decaied men": [0, 65535], "decaied men and": [0, 65535], "men and giues": [0, 65535], "and giues them": [0, 65535], "giues them suites": [0, 65535], "them suites of": [0, 65535], "suites of durance": [0, 65535], "of durance he": [0, 65535], "durance he that": [0, 65535], "he that sets": [0, 65535], "that sets vp": [0, 65535], "sets vp his": [0, 65535], "vp his rest": [0, 65535], "his rest to": [0, 65535], "rest to doe": [0, 65535], "to doe more": [0, 65535], "doe more exploits": [0, 65535], "more exploits with": [0, 65535], "exploits with his": [0, 65535], "with his mace": [0, 65535], "his mace then": [0, 65535], "mace then a": [0, 65535], "then a moris": [0, 65535], "a moris pike": [0, 65535], "moris pike ant": [0, 65535], "pike ant what": [0, 65535], "ant what thou": [0, 65535], "what thou mean'st": [0, 65535], "thou mean'st an": [0, 65535], "mean'st an officer": [0, 65535], "an officer s": [0, 65535], "officer s dro": [0, 65535], "i sir the": [0, 65535], "sir the serieant": [0, 65535], "the serieant of": [0, 65535], "serieant of the": [0, 65535], "of the band": [0, 65535], "the band he": [0, 65535], "band he that": [0, 65535], "he that brings": [0, 65535], "that brings any": [0, 65535], "brings any man": [0, 65535], "any man to": [0, 65535], "man to answer": [0, 65535], "to answer it": [0, 65535], "answer it that": [0, 65535], "it that breakes": [0, 65535], "that breakes his": [0, 65535], "breakes his band": [0, 65535], "his band one": [0, 65535], "band one that": [0, 65535], "one that thinkes": [0, 65535], "that thinkes a": [0, 65535], "thinkes a man": [0, 65535], "a man alwaies": [0, 65535], "man alwaies going": [0, 65535], "alwaies going to": [0, 65535], "going to bed": [0, 65535], "to bed and": [0, 65535], "bed and saies": [0, 65535], "and saies god": [0, 65535], "saies god giue": [0, 65535], "god giue you": [0, 65535], "giue you good": [0, 65535], "you good rest": [0, 65535], "good rest ant": [0, 65535], "rest ant well": [0, 65535], "well sir there": [0, 65535], "sir there rest": [0, 65535], "there rest in": [0, 65535], "rest in your": [0, 65535], "in your foolerie": [0, 65535], "your foolerie is": [0, 65535], "foolerie is there": [0, 65535], "is there any": [0, 65535], "there any ships": [0, 65535], "any ships puts": [0, 65535], "ships puts forth": [0, 65535], "puts forth to": [0, 65535], "forth to night": [0, 65535], "to night may": [0, 65535], "night may we": [0, 65535], "may we be": [0, 65535], "we be gone": [0, 65535], "be gone s": [0, 65535], "gone s dro": [0, 65535], "s dro why": [0, 65535], "dro why sir": [0, 65535], "why sir i": [0, 65535], "sir i brought": [0, 65535], "i brought you": [0, 65535], "brought you word": [0, 65535], "you word an": [0, 65535], "word an houre": [0, 65535], "houre since that": [0, 65535], "since that the": [0, 65535], "that the barke": [0, 65535], "the barke expedition": [0, 65535], "barke expedition put": [0, 65535], "expedition put forth": [0, 65535], "put forth to": [0, 65535], "to night and": [0, 65535], "night and then": [0, 65535], "and then were": [0, 65535], "then were you": [0, 65535], "were you hindred": [0, 65535], "you hindred by": [0, 65535], "hindred by the": [0, 65535], "by the serieant": [0, 65535], "the serieant to": [0, 65535], "serieant to tarry": [0, 65535], "to tarry for": [0, 65535], "tarry for the": [0, 65535], "for the hoy": [0, 65535], "the hoy delay": [0, 65535], "hoy delay here": [0, 65535], "delay here are": [0, 65535], "here are the": [0, 65535], "are the angels": [0, 65535], "the angels that": [0, 65535], "angels that you": [0, 65535], "that you sent": [0, 65535], "you sent for": [0, 65535], "sent for to": [0, 65535], "for to deliuer": [0, 65535], "to deliuer you": [0, 65535], "deliuer you ant": [0, 65535], "you ant the": [0, 65535], "ant the fellow": [0, 65535], "the fellow is": [0, 65535], "fellow is distract": [0, 65535], "is distract and": [0, 65535], "distract and so": [0, 65535], "am i and": [0, 65535], "i and here": [0, 65535], "and here we": [0, 65535], "here we wander": [0, 65535], "we wander in": [0, 65535], "wander in illusions": [0, 65535], "in illusions some": [0, 65535], "illusions some blessed": [0, 65535], "some blessed power": [0, 65535], "blessed power deliuer": [0, 65535], "power deliuer vs": [0, 65535], "deliuer vs from": [0, 65535], "vs from hence": [0, 65535], "from hence enter": [0, 65535], "hence enter a": [0, 65535], "enter a curtizan": [0, 65535], "a curtizan cur": [0, 65535], "curtizan cur well": [0, 65535], "cur well met": [0, 65535], "well met well": [0, 65535], "met well met": [0, 65535], "well met master": [0, 65535], "met master antipholus": [0, 65535], "master antipholus i": [0, 65535], "antipholus i see": [0, 65535], "i see sir": [0, 65535], "see sir you": [0, 65535], "sir you haue": [0, 65535], "you haue found": [0, 65535], "haue found the": [0, 65535], "found the gold": [0, 65535], "the gold smith": [0, 65535], "gold smith now": [0, 65535], "smith now is": [0, 65535], "now is that": [0, 65535], "is that the": [0, 65535], "that the chaine": [0, 65535], "the chaine you": [0, 65535], "chaine you promis'd": [0, 65535], "you promis'd me": [0, 65535], "promis'd me to": [0, 65535], "day ant sathan": [0, 65535], "ant sathan auoide": [0, 65535], "sathan auoide i": [0, 65535], "auoide i charge": [0, 65535], "i charge thee": [0, 65535], "charge thee tempt": [0, 65535], "thee tempt me": [0, 65535], "tempt me not": [0, 65535], "me not s": [0, 65535], "dro master is": [0, 65535], "master is this": [0, 65535], "is this mistris": [0, 65535], "this mistris sathan": [0, 65535], "mistris sathan ant": [0, 65535], "sathan ant it": [0, 65535], "ant it is": [0, 65535], "it is the": [0, 65535], "is the diuell": [0, 65535], "the diuell s": [0, 65535], "diuell s dro": [0, 65535], "dro nay she": [0, 65535], "nay she is": [0, 65535], "she is worse": [0, 65535], "is worse she": [0, 65535], "worse she is": [0, 65535], "she is the": [0, 65535], "is the diuels": [0, 65535], "the diuels dam": [0, 65535], "diuels dam and": [0, 65535], "dam and here": [0, 65535], "and here she": [0, 65535], "here she comes": [0, 65535], "she comes in": [0, 65535], "comes in the": [0, 65535], "in the habit": [0, 65535], "the habit of": [0, 65535], "habit of a": [0, 65535], "of a light": [0, 65535], "a light wench": [0, 65535], "light wench and": [0, 65535], "wench and thereof": [0, 65535], "thereof comes that": [0, 65535], "comes that the": [0, 65535], "that the wenches": [0, 65535], "the wenches say": [0, 65535], "wenches say god": [0, 65535], "say god dam": [0, 65535], "god dam me": [0, 65535], "dam me that's": [0, 65535], "me that's as": [0, 65535], "that's as much": [0, 65535], "as much to": [0, 65535], "to say god": [0, 65535], "say god make": [0, 65535], "god make me": [0, 65535], "make me a": [0, 65535], "me a light": [0, 65535], "light wench it": [0, 65535], "wench it is": [0, 65535], "it is written": [0, 65535], "is written they": [0, 65535], "written they appeare": [0, 65535], "they appeare to": [0, 65535], "appeare to men": [0, 65535], "to men like": [0, 65535], "men like angels": [0, 65535], "like angels of": [0, 65535], "angels of light": [0, 65535], "of light light": [0, 65535], "light light is": [0, 65535], "light is an": [0, 65535], "is an effect": [0, 65535], "an effect of": [0, 65535], "effect of fire": [0, 65535], "fire and fire": [0, 65535], "and fire will": [0, 65535], "fire will burne": [0, 65535], "will burne ergo": [0, 65535], "burne ergo light": [0, 65535], "ergo light wenches": [0, 65535], "light wenches will": [0, 65535], "wenches will burne": [0, 65535], "will burne come": [0, 65535], "burne come not": [0, 65535], "come not neere": [0, 65535], "not neere her": [0, 65535], "neere her cur": [0, 65535], "her cur your": [0, 65535], "cur your man": [0, 65535], "your man and": [0, 65535], "man and you": [0, 65535], "and you are": [0, 65535], "you are maruailous": [0, 65535], "are maruailous merrie": [0, 65535], "maruailous merrie sir": [0, 65535], "merrie sir will": [0, 65535], "sir will you": [0, 65535], "will you goe": [0, 65535], "you goe with": [0, 65535], "goe with me": [0, 65535], "with me wee'll": [0, 65535], "me wee'll mend": [0, 65535], "wee'll mend our": [0, 65535], "mend our dinner": [0, 65535], "our dinner here": [0, 65535], "dinner here s": [0, 65535], "dro master if": [0, 65535], "master if do": [0, 65535], "if do expect": [0, 65535], "do expect spoon": [0, 65535], "expect spoon meate": [0, 65535], "spoon meate or": [0, 65535], "meate or bespeake": [0, 65535], "or bespeake a": [0, 65535], "bespeake a long": [0, 65535], "a long spoone": [0, 65535], "long spoone ant": [0, 65535], "spoone ant why": [0, 65535], "ant why dromio": [0, 65535], "why dromio s": [0, 65535], "dromio s dro": [0, 65535], "s dro marrie": [0, 65535], "dro marrie he": [0, 65535], "marrie he must": [0, 65535], "he must haue": [0, 65535], "must haue a": [0, 65535], "haue a long": [0, 65535], "long spoone that": [0, 65535], "spoone that must": [0, 65535], "that must eate": [0, 65535], "must eate with": [0, 65535], "eate with the": [0, 65535], "with the diuell": [0, 65535], "the diuell ant": [0, 65535], "diuell ant auoid": [0, 65535], "ant auoid then": [0, 65535], "auoid then fiend": [0, 65535], "then fiend what": [0, 65535], "fiend what tel'st": [0, 65535], "what tel'st thou": [0, 65535], "tel'st thou me": [0, 65535], "thou me of": [0, 65535], "me of supping": [0, 65535], "of supping thou": [0, 65535], "supping thou art": [0, 65535], "thou art as": [0, 65535], "art as you": [0, 65535], "are all a": [0, 65535], "all a sorceresse": [0, 65535], "a sorceresse i": [0, 65535], "sorceresse i coniure": [0, 65535], "i coniure thee": [0, 65535], "coniure thee to": [0, 65535], "thee to leaue": [0, 65535], "to leaue me": [0, 65535], "leaue me and": [0, 65535], "me and be": [0, 65535], "and be gon": [0, 65535], "be gon cur": [0, 65535], "gon cur giue": [0, 65535], "cur giue me": [0, 65535], "me the ring": [0, 65535], "the ring of": [0, 65535], "ring of mine": [0, 65535], "of mine you": [0, 65535], "mine you had": [0, 65535], "you had at": [0, 65535], "had at dinner": [0, 65535], "at dinner or": [0, 65535], "dinner or for": [0, 65535], "or for my": [0, 65535], "for my diamond": [0, 65535], "my diamond the": [0, 65535], "diamond the chaine": [0, 65535], "you promis'd and": [0, 65535], "promis'd and ile": [0, 65535], "and ile be": [0, 65535], "ile be gone": [0, 65535], "be gone sir": [0, 65535], "gone sir and": [0, 65535], "sir and not": [0, 65535], "and not trouble": [0, 65535], "not trouble you": [0, 65535], "trouble you s": [0, 65535], "s dro some": [0, 65535], "dro some diuels": [0, 65535], "some diuels aske": [0, 65535], "diuels aske but": [0, 65535], "aske but the": [0, 65535], "but the parings": [0, 65535], "the parings of": [0, 65535], "parings of ones": [0, 65535], "of ones naile": [0, 65535], "ones naile a": [0, 65535], "naile a rush": [0, 65535], "a rush a": [0, 65535], "rush a haire": [0, 65535], "a haire a": [0, 65535], "haire a drop": [0, 65535], "drop of blood": [0, 65535], "of blood a": [0, 65535], "blood a pin": [0, 65535], "a pin a": [0, 65535], "pin a nut": [0, 65535], "a nut a": [0, 65535], "nut a cherrie": [0, 65535], "a cherrie stone": [0, 65535], "cherrie stone but": [0, 65535], "stone but she": [0, 65535], "but she more": [0, 65535], "she more couetous": [0, 65535], "more couetous wold": [0, 65535], "couetous wold haue": [0, 65535], "wold haue a": [0, 65535], "haue a chaine": [0, 65535], "a chaine master": [0, 65535], "chaine master be": [0, 65535], "master be wise": [0, 65535], "be wise and": [0, 65535], "wise and if": [0, 65535], "if you giue": [0, 65535], "giue it her": [0, 65535], "it her the": [0, 65535], "her the diuell": [0, 65535], "the diuell will": [0, 65535], "diuell will shake": [0, 65535], "will shake her": [0, 65535], "shake her chaine": [0, 65535], "her chaine and": [0, 65535], "chaine and fright": [0, 65535], "and fright vs": [0, 65535], "fright vs with": [0, 65535], "vs with it": [0, 65535], "with it cur": [0, 65535], "it cur i": [0, 65535], "cur i pray": [0, 65535], "you sir my": [0, 65535], "sir my ring": [0, 65535], "my ring or": [0, 65535], "ring or else": [0, 65535], "or else the": [0, 65535], "else the chaine": [0, 65535], "chaine i hope": [0, 65535], "hope you do": [0, 65535], "you do not": [0, 65535], "do not meane": [0, 65535], "not meane to": [0, 65535], "meane to cheate": [0, 65535], "to cheate me": [0, 65535], "cheate me so": [0, 65535], "me so ant": [0, 65535], "so ant auant": [0, 65535], "ant auant thou": [0, 65535], "auant thou witch": [0, 65535], "thou witch come": [0, 65535], "witch come dromio": [0, 65535], "come dromio let": [0, 65535], "dromio let vs": [0, 65535], "let vs go": [0, 65535], "vs go s": [0, 65535], "s dro flie": [0, 65535], "dro flie pride": [0, 65535], "flie pride saies": [0, 65535], "pride saies the": [0, 65535], "saies the pea": [0, 65535], "the pea cocke": [0, 65535], "pea cocke mistris": [0, 65535], "cocke mistris that": [0, 65535], "mistris that you": [0, 65535], "that you know": [0, 65535], "you know exit": [0, 65535], "know exit cur": [0, 65535], "exit cur now": [0, 65535], "cur now out": [0, 65535], "now out of": [0, 65535], "out of doubt": [0, 65535], "of doubt antipholus": [0, 65535], "doubt antipholus is": [0, 65535], "antipholus is mad": [0, 65535], "is mad else": [0, 65535], "mad else would": [0, 65535], "else would he": [0, 65535], "would he neuer": [0, 65535], "he neuer so": [0, 65535], "neuer so demeane": [0, 65535], "so demeane himselfe": [0, 65535], "demeane himselfe a": [0, 65535], "himselfe a ring": [0, 65535], "a ring he": [0, 65535], "ring he hath": [0, 65535], "he hath of": [0, 65535], "hath of mine": [0, 65535], "of mine worth": [0, 65535], "mine worth fortie": [0, 65535], "worth fortie duckets": [0, 65535], "fortie duckets and": [0, 65535], "duckets and for": [0, 65535], "the same he": [0, 65535], "same he promis'd": [0, 65535], "a chaine both": [0, 65535], "chaine both one": [0, 65535], "both one and": [0, 65535], "one and other": [0, 65535], "and other he": [0, 65535], "other he denies": [0, 65535], "he denies me": [0, 65535], "denies me now": [0, 65535], "me now the": [0, 65535], "now the reason": [0, 65535], "the reason that": [0, 65535], "reason that i": [0, 65535], "that i gather": [0, 65535], "i gather he": [0, 65535], "gather he is": [0, 65535], "is mad besides": [0, 65535], "mad besides this": [0, 65535], "besides this present": [0, 65535], "this present instance": [0, 65535], "present instance of": [0, 65535], "instance of his": [0, 65535], "of his rage": [0, 65535], "his rage is": [0, 65535], "rage is a": [0, 65535], "is a mad": [0, 65535], "a mad tale": [0, 65535], "mad tale he": [0, 65535], "tale he told": [0, 65535], "he told to": [0, 65535], "told to day": [0, 65535], "at dinner of": [0, 65535], "dinner of his": [0, 65535], "his owne doores": [0, 65535], "owne doores being": [0, 65535], "doores being shut": [0, 65535], "being shut against": [0, 65535], "shut against his": [0, 65535], "against his entrance": [0, 65535], "his entrance belike": [0, 65535], "entrance belike his": [0, 65535], "belike his wife": [0, 65535], "his wife acquainted": [0, 65535], "wife acquainted with": [0, 65535], "acquainted with his": [0, 65535], "with his fits": [0, 65535], "his fits on": [0, 65535], "fits on purpose": [0, 65535], "on purpose shut": [0, 65535], "purpose shut the": [0, 65535], "the doores against": [0, 65535], "doores against his": [0, 65535], "against his way": [0, 65535], "his way my": [0, 65535], "way my way": [0, 65535], "my way is": [0, 65535], "way is now": [0, 65535], "is now to": [0, 65535], "now to hie": [0, 65535], "to hie home": [0, 65535], "hie home to": [0, 65535], "home to his": [0, 65535], "his house and": [0, 65535], "house and tell": [0, 65535], "and tell his": [0, 65535], "tell his wife": [0, 65535], "his wife that": [0, 65535], "wife that being": [0, 65535], "that being lunaticke": [0, 65535], "being lunaticke he": [0, 65535], "lunaticke he rush'd": [0, 65535], "he rush'd into": [0, 65535], "rush'd into my": [0, 65535], "into my house": [0, 65535], "house and tooke": [0, 65535], "and tooke perforce": [0, 65535], "tooke perforce my": [0, 65535], "perforce my ring": [0, 65535], "my ring away": [0, 65535], "ring away this": [0, 65535], "away this course": [0, 65535], "this course i": [0, 65535], "course i fittest": [0, 65535], "i fittest choose": [0, 65535], "fittest choose for": [0, 65535], "choose for fortie": [0, 65535], "for fortie duckets": [0, 65535], "fortie duckets is": [0, 65535], "duckets is too": [0, 65535], "is too much": [0, 65535], "too much to": [0, 65535], "much to loose": [0, 65535], "to loose enter": [0, 65535], "loose enter antipholus": [0, 65535], "antipholus ephes with": [0, 65535], "ephes with a": [0, 65535], "with a iailor": [0, 65535], "a iailor an": [0, 65535], "iailor an feare": [0, 65535], "an feare me": [0, 65535], "feare me not": [0, 65535], "me not man": [0, 65535], "not man i": [0, 65535], "man i will": [0, 65535], "will not breake": [0, 65535], "not breake away": [0, 65535], "breake away ile": [0, 65535], "away ile giue": [0, 65535], "ile giue thee": [0, 65535], "giue thee ere": [0, 65535], "thee ere i": [0, 65535], "ere i leaue": [0, 65535], "i leaue thee": [0, 65535], "leaue thee so": [0, 65535], "thee so much": [0, 65535], "so much money": [0, 65535], "much money to": [0, 65535], "money to warrant": [0, 65535], "to warrant thee": [0, 65535], "warrant thee as": [0, 65535], "thee as i": [0, 65535], "i am rested": [0, 65535], "am rested for": [0, 65535], "rested for my": [0, 65535], "for my wife": [0, 65535], "wife is in": [0, 65535], "in a wayward": [0, 65535], "a wayward moode": [0, 65535], "wayward moode to": [0, 65535], "moode to day": [0, 65535], "day and will": [0, 65535], "will not lightly": [0, 65535], "not lightly trust": [0, 65535], "lightly trust the": [0, 65535], "trust the messenger": [0, 65535], "the messenger that": [0, 65535], "messenger that i": [0, 65535], "that i should": [0, 65535], "i should be": [0, 65535], "should be attach'd": [0, 65535], "be attach'd in": [0, 65535], "attach'd in ephesus": [0, 65535], "ephesus i tell": [0, 65535], "tell you 'twill": [0, 65535], "you 'twill sound": [0, 65535], "'twill sound harshly": [0, 65535], "sound harshly in": [0, 65535], "harshly in her": [0, 65535], "in her eares": [0, 65535], "her eares enter": [0, 65535], "eares enter dromio": [0, 65535], "dromio eph with": [0, 65535], "eph with a": [0, 65535], "with a ropes": [0, 65535], "ropes end heere": [0, 65535], "end heere comes": [0, 65535], "heere comes my": [0, 65535], "comes my man": [0, 65535], "my man i": [0, 65535], "man i thinke": [0, 65535], "thinke he brings": [0, 65535], "he brings the": [0, 65535], "brings the monie": [0, 65535], "the monie how": [0, 65535], "monie how now": [0, 65535], "now sir haue": [0, 65535], "sir haue you": [0, 65535], "haue you that": [0, 65535], "you that i": [0, 65535], "that i sent": [0, 65535], "sent you for": [0, 65535], "you for e": [0, 65535], "for e dro": [0, 65535], "dro here's that": [0, 65535], "here's that i": [0, 65535], "that i warrant": [0, 65535], "i warrant you": [0, 65535], "warrant you will": [0, 65535], "you will pay": [0, 65535], "will pay them": [0, 65535], "pay them all": [0, 65535], "them all anti": [0, 65535], "all anti but": [0, 65535], "anti but where's": [0, 65535], "but where's the": [0, 65535], "where's the money": [0, 65535], "the money e": [0, 65535], "money e dro": [0, 65535], "sir i gaue": [0, 65535], "i gaue the": [0, 65535], "gaue the monie": [0, 65535], "the monie for": [0, 65535], "monie for the": [0, 65535], "for the rope": [0, 65535], "the rope ant": [0, 65535], "rope ant fiue": [0, 65535], "ant fiue hundred": [0, 65535], "fiue hundred duckets": [0, 65535], "hundred duckets villaine": [0, 65535], "duckets villaine for": [0, 65535], "villaine for a": [0, 65535], "a rope e": [0, 65535], "rope e dro": [0, 65535], "e dro ile": [0, 65535], "dro ile serue": [0, 65535], "ile serue you": [0, 65535], "serue you sir": [0, 65535], "you sir fiue": [0, 65535], "sir fiue hundred": [0, 65535], "fiue hundred at": [0, 65535], "hundred at the": [0, 65535], "at the rate": [0, 65535], "the rate ant": [0, 65535], "rate ant to": [0, 65535], "ant to what": [0, 65535], "to what end": [0, 65535], "what end did": [0, 65535], "end did i": [0, 65535], "did i bid": [0, 65535], "i bid thee": [0, 65535], "bid thee hie": [0, 65535], "thee hie thee": [0, 65535], "hie thee home": [0, 65535], "thee home e": [0, 65535], "home e dro": [0, 65535], "dro to a": [0, 65535], "to a ropes": [0, 65535], "ropes end sir": [0, 65535], "end sir and": [0, 65535], "sir and to": [0, 65535], "and to that": [0, 65535], "to that end": [0, 65535], "that end am": [0, 65535], "end am i": [0, 65535], "am i re": [0, 65535], "i re turn'd": [0, 65535], "re turn'd ant": [0, 65535], "turn'd ant and": [0, 65535], "ant and to": [0, 65535], "that end sir": [0, 65535], "end sir i": [0, 65535], "i will welcome": [0, 65535], "will welcome you": [0, 65535], "welcome you offi": [0, 65535], "you offi good": [0, 65535], "offi good sir": [0, 65535], "good sir be": [0, 65535], "sir be patient": [0, 65535], "be patient e": [0, 65535], "patient e dro": [0, 65535], "dro nay 'tis": [0, 65535], "nay 'tis for": [0, 65535], "'tis for me": [0, 65535], "to be patient": [0, 65535], "be patient i": [0, 65535], "patient i am": [0, 65535], "i am in": [0, 65535], "am in aduersitie": [0, 65535], "in aduersitie offi": [0, 65535], "aduersitie offi good": [0, 65535], "offi good now": [0, 65535], "good now hold": [0, 65535], "now hold thy": [0, 65535], "hold thy tongue": [0, 65535], "thy tongue e": [0, 65535], "tongue e dro": [0, 65535], "dro nay rather": [0, 65535], "nay rather perswade": [0, 65535], "rather perswade him": [0, 65535], "perswade him to": [0, 65535], "him to hold": [0, 65535], "to hold his": [0, 65535], "hold his hands": [0, 65535], "his hands anti": [0, 65535], "hands anti thou": [0, 65535], "anti thou whoreson": [0, 65535], "thou whoreson senselesse": [0, 65535], "whoreson senselesse villaine": [0, 65535], "senselesse villaine e": [0, 65535], "dro i would": [0, 65535], "i would i": [0, 65535], "would i were": [0, 65535], "i were senselesse": [0, 65535], "were senselesse sir": [0, 65535], "senselesse sir that": [0, 65535], "that i might": [0, 65535], "i might not": [0, 65535], "might not feele": [0, 65535], "not feele your": [0, 65535], "feele your blowes": [0, 65535], "your blowes anti": [0, 65535], "blowes anti thou": [0, 65535], "anti thou art": [0, 65535], "thou art sensible": [0, 65535], "art sensible in": [0, 65535], "sensible in nothing": [0, 65535], "in nothing but": [0, 65535], "nothing but blowes": [0, 65535], "but blowes and": [0, 65535], "blowes and so": [0, 65535], "and so is": [0, 65535], "so is an": [0, 65535], "is an asse": [0, 65535], "an asse indeede": [0, 65535], "asse indeede you": [0, 65535], "indeede you may": [0, 65535], "you may prooue": [0, 65535], "may prooue it": [0, 65535], "prooue it by": [0, 65535], "it by my": [0, 65535], "by my long": [0, 65535], "my long eares": [0, 65535], "long eares i": [0, 65535], "eares i haue": [0, 65535], "i haue serued": [0, 65535], "haue serued him": [0, 65535], "serued him from": [0, 65535], "from the houre": [0, 65535], "the houre of": [0, 65535], "houre of my": [0, 65535], "of my natiuitie": [0, 65535], "my natiuitie to": [0, 65535], "natiuitie to this": [0, 65535], "to this instant": [0, 65535], "this instant and": [0, 65535], "instant and haue": [0, 65535], "and haue nothing": [0, 65535], "haue nothing at": [0, 65535], "nothing at his": [0, 65535], "at his hands": [0, 65535], "his hands for": [0, 65535], "hands for my": [0, 65535], "for my seruice": [0, 65535], "my seruice but": [0, 65535], "seruice but blowes": [0, 65535], "but blowes when": [0, 65535], "blowes when i": [0, 65535], "i am cold": [0, 65535], "am cold he": [0, 65535], "cold he heates": [0, 65535], "he heates me": [0, 65535], "heates me with": [0, 65535], "me with beating": [0, 65535], "with beating when": [0, 65535], "beating when i": [0, 65535], "i am warme": [0, 65535], "am warme he": [0, 65535], "warme he cooles": [0, 65535], "he cooles me": [0, 65535], "cooles me with": [0, 65535], "with beating i": [0, 65535], "beating i am": [0, 65535], "i am wak'd": [0, 65535], "am wak'd with": [0, 65535], "wak'd with it": [0, 65535], "with it when": [0, 65535], "it when i": [0, 65535], "when i sleepe": [0, 65535], "i sleepe rais'd": [0, 65535], "sleepe rais'd with": [0, 65535], "rais'd with it": [0, 65535], "when i sit": [0, 65535], "i sit driuen": [0, 65535], "sit driuen out": [0, 65535], "driuen out of": [0, 65535], "out of doores": [0, 65535], "of doores with": [0, 65535], "doores with it": [0, 65535], "when i goe": [0, 65535], "i goe from": [0, 65535], "goe from home": [0, 65535], "from home welcom'd": [0, 65535], "home welcom'd home": [0, 65535], "welcom'd home with": [0, 65535], "when i returne": [0, 65535], "i returne nay": [0, 65535], "returne nay i": [0, 65535], "nay i beare": [0, 65535], "i beare it": [0, 65535], "beare it on": [0, 65535], "it on my": [0, 65535], "on my shoulders": [0, 65535], "my shoulders as": [0, 65535], "shoulders as a": [0, 65535], "as a begger": [0, 65535], "a begger woont": [0, 65535], "begger woont her": [0, 65535], "woont her brat": [0, 65535], "her brat and": [0, 65535], "brat and i": [0, 65535], "i thinke when": [0, 65535], "thinke when he": [0, 65535], "when he hath": [0, 65535], "he hath lam'd": [0, 65535], "hath lam'd me": [0, 65535], "lam'd me i": [0, 65535], "me i shall": [0, 65535], "i shall begge": [0, 65535], "shall begge with": [0, 65535], "begge with it": [0, 65535], "with it from": [0, 65535], "it from doore": [0, 65535], "from doore to": [0, 65535], "doore to doore": [0, 65535], "to doore enter": [0, 65535], "doore enter adriana": [0, 65535], "adriana luciana courtizan": [0, 65535], "luciana courtizan and": [0, 65535], "courtizan and a": [0, 65535], "and a schoolemaster": [0, 65535], "a schoolemaster call'd": [0, 65535], "schoolemaster call'd pinch": [0, 65535], "call'd pinch ant": [0, 65535], "pinch ant come": [0, 65535], "ant come goe": [0, 65535], "come goe along": [0, 65535], "goe along my": [0, 65535], "along my wife": [0, 65535], "wife is comming": [0, 65535], "is comming yonder": [0, 65535], "comming yonder e": [0, 65535], "yonder e dro": [0, 65535], "e dro mistris": [0, 65535], "dro mistris respice": [0, 65535], "mistris respice finem": [0, 65535], "respice finem respect": [0, 65535], "finem respect your": [0, 65535], "respect your end": [0, 65535], "your end or": [0, 65535], "end or rather": [0, 65535], "or rather the": [0, 65535], "rather the prophesie": [0, 65535], "the prophesie like": [0, 65535], "prophesie like the": [0, 65535], "like the parrat": [0, 65535], "the parrat beware": [0, 65535], "parrat beware the": [0, 65535], "beware the ropes": [0, 65535], "the ropes end": [0, 65535], "ropes end anti": [0, 65535], "end anti wilt": [0, 65535], "anti wilt thou": [0, 65535], "wilt thou still": [0, 65535], "thou still talke": [0, 65535], "still talke beats": [0, 65535], "talke beats dro": [0, 65535], "beats dro curt": [0, 65535], "dro curt how": [0, 65535], "curt how say": [0, 65535], "how say you": [0, 65535], "say you now": [0, 65535], "you now is": [0, 65535], "now is not": [0, 65535], "not your husband": [0, 65535], "your husband mad": [0, 65535], "husband mad adri": [0, 65535], "mad adri his": [0, 65535], "adri his inciuility": [0, 65535], "his inciuility confirmes": [0, 65535], "inciuility confirmes no": [0, 65535], "confirmes no lesse": [0, 65535], "no lesse good": [0, 65535], "lesse good doctor": [0, 65535], "good doctor pinch": [0, 65535], "doctor pinch you": [0, 65535], "pinch you are": [0, 65535], "are a coniurer": [0, 65535], "a coniurer establish": [0, 65535], "coniurer establish him": [0, 65535], "establish him in": [0, 65535], "him in his": [0, 65535], "in his true": [0, 65535], "his true sence": [0, 65535], "true sence againe": [0, 65535], "sence againe and": [0, 65535], "againe and i": [0, 65535], "i will please": [0, 65535], "will please you": [0, 65535], "please you what": [0, 65535], "you what you": [0, 65535], "you will demand": [0, 65535], "will demand luc": [0, 65535], "demand luc alas": [0, 65535], "luc alas how": [0, 65535], "alas how fiery": [0, 65535], "how fiery and": [0, 65535], "fiery and how": [0, 65535], "and how sharpe": [0, 65535], "how sharpe he": [0, 65535], "sharpe he lookes": [0, 65535], "he lookes cur": [0, 65535], "lookes cur marke": [0, 65535], "cur marke how": [0, 65535], "marke how he": [0, 65535], "how he trembles": [0, 65535], "he trembles in": [0, 65535], "trembles in his": [0, 65535], "in his extasie": [0, 65535], "his extasie pinch": [0, 65535], "extasie pinch giue": [0, 65535], "pinch giue me": [0, 65535], "giue me your": [0, 65535], "me your hand": [0, 65535], "your hand and": [0, 65535], "hand and let": [0, 65535], "and let mee": [0, 65535], "let mee feele": [0, 65535], "mee feele your": [0, 65535], "feele your pulse": [0, 65535], "your pulse ant": [0, 65535], "pulse ant there": [0, 65535], "ant there is": [0, 65535], "there is my": [0, 65535], "is my hand": [0, 65535], "my hand and": [0, 65535], "and let it": [0, 65535], "let it feele": [0, 65535], "it feele your": [0, 65535], "feele your eare": [0, 65535], "your eare pinch": [0, 65535], "eare pinch i": [0, 65535], "pinch i charge": [0, 65535], "charge thee sathan": [0, 65535], "thee sathan hous'd": [0, 65535], "sathan hous'd within": [0, 65535], "hous'd within this": [0, 65535], "within this man": [0, 65535], "this man to": [0, 65535], "man to yeeld": [0, 65535], "to yeeld possession": [0, 65535], "yeeld possession to": [0, 65535], "possession to my": [0, 65535], "to my holie": [0, 65535], "my holie praiers": [0, 65535], "holie praiers and": [0, 65535], "praiers and to": [0, 65535], "and to thy": [0, 65535], "to thy state": [0, 65535], "thy state of": [0, 65535], "state of darknesse": [0, 65535], "of darknesse hie": [0, 65535], "darknesse hie thee": [0, 65535], "thee straight i": [0, 65535], "straight i coniure": [0, 65535], "coniure thee by": [0, 65535], "thee by all": [0, 65535], "all the saints": [0, 65535], "the saints in": [0, 65535], "saints in heauen": [0, 65535], "in heauen anti": [0, 65535], "heauen anti peace": [0, 65535], "anti peace doting": [0, 65535], "peace doting wizard": [0, 65535], "doting wizard peace": [0, 65535], "wizard peace i": [0, 65535], "peace i am": [0, 65535], "am not mad": [0, 65535], "not mad adr": [0, 65535], "mad adr oh": [0, 65535], "adr oh that": [0, 65535], "oh that thou": [0, 65535], "that thou wer't": [0, 65535], "thou wer't not": [0, 65535], "wer't not poore": [0, 65535], "not poore distressed": [0, 65535], "poore distressed soule": [0, 65535], "distressed soule anti": [0, 65535], "soule anti you": [0, 65535], "anti you minion": [0, 65535], "you minion you": [0, 65535], "minion you are": [0, 65535], "you are these": [0, 65535], "are these your": [0, 65535], "these your customers": [0, 65535], "your customers did": [0, 65535], "customers did this": [0, 65535], "did this companion": [0, 65535], "this companion with": [0, 65535], "companion with the": [0, 65535], "with the saffron": [0, 65535], "the saffron face": [0, 65535], "saffron face reuell": [0, 65535], "face reuell and": [0, 65535], "reuell and feast": [0, 65535], "and feast it": [0, 65535], "feast it at": [0, 65535], "it at my": [0, 65535], "at my house": [0, 65535], "my house to": [0, 65535], "house to day": [0, 65535], "to day whil'st": [0, 65535], "day whil'st vpon": [0, 65535], "whil'st vpon me": [0, 65535], "vpon me the": [0, 65535], "me the guiltie": [0, 65535], "the guiltie doores": [0, 65535], "guiltie doores were": [0, 65535], "doores were shut": [0, 65535], "were shut and": [0, 65535], "shut and i": [0, 65535], "and i denied": [0, 65535], "i denied to": [0, 65535], "denied to enter": [0, 65535], "to enter in": [0, 65535], "enter in my": [0, 65535], "my house adr": [0, 65535], "house adr o": [0, 65535], "adr o husband": [0, 65535], "o husband god": [0, 65535], "husband god doth": [0, 65535], "god doth know": [0, 65535], "doth know you": [0, 65535], "know you din'd": [0, 65535], "you din'd at": [0, 65535], "at home where": [0, 65535], "home where would": [0, 65535], "where would you": [0, 65535], "would you had": [0, 65535], "you had remain'd": [0, 65535], "had remain'd vntill": [0, 65535], "remain'd vntill this": [0, 65535], "vntill this time": [0, 65535], "this time free": [0, 65535], "time free from": [0, 65535], "free from these": [0, 65535], "from these slanders": [0, 65535], "these slanders and": [0, 65535], "slanders and this": [0, 65535], "and this open": [0, 65535], "this open shame": [0, 65535], "open shame anti": [0, 65535], "shame anti din'd": [0, 65535], "anti din'd at": [0, 65535], "at home thou": [0, 65535], "home thou villaine": [0, 65535], "thou villaine what": [0, 65535], "villaine what sayest": [0, 65535], "what sayest thou": [0, 65535], "sayest thou dro": [0, 65535], "thou dro sir": [0, 65535], "dro sir sooth": [0, 65535], "sir sooth to": [0, 65535], "sooth to say": [0, 65535], "to say you": [0, 65535], "say you did": [0, 65535], "you did not": [0, 65535], "did not dine": [0, 65535], "not dine at": [0, 65535], "dine at home": [0, 65535], "at home ant": [0, 65535], "home ant were": [0, 65535], "ant were not": [0, 65535], "were not my": [0, 65535], "not my doores": [0, 65535], "my doores lockt": [0, 65535], "doores lockt vp": [0, 65535], "lockt vp and": [0, 65535], "vp and i": [0, 65535], "and i shut": [0, 65535], "i shut out": [0, 65535], "shut out dro": [0, 65535], "out dro perdie": [0, 65535], "dro perdie your": [0, 65535], "perdie your doores": [0, 65535], "your doores were": [0, 65535], "doores were lockt": [0, 65535], "were lockt and": [0, 65535], "lockt and you": [0, 65535], "and you shut": [0, 65535], "you shut out": [0, 65535], "shut out anti": [0, 65535], "out anti and": [0, 65535], "anti and did": [0, 65535], "did not she": [0, 65535], "not she her": [0, 65535], "she her selfe": [0, 65535], "her selfe reuile": [0, 65535], "selfe reuile me": [0, 65535], "reuile me there": [0, 65535], "me there dro": [0, 65535], "there dro sans": [0, 65535], "dro sans fable": [0, 65535], "sans fable she": [0, 65535], "fable she her": [0, 65535], "her selfe reuil'd": [0, 65535], "selfe reuil'd you": [0, 65535], "reuil'd you there": [0, 65535], "you there anti": [0, 65535], "there anti did": [0, 65535], "anti did not": [0, 65535], "did not her": [0, 65535], "not her kitchen": [0, 65535], "her kitchen maide": [0, 65535], "kitchen maide raile": [0, 65535], "maide raile taunt": [0, 65535], "raile taunt and": [0, 65535], "taunt and scorne": [0, 65535], "and scorne me": [0, 65535], "scorne me dro": [0, 65535], "me dro certis": [0, 65535], "dro certis she": [0, 65535], "certis she did": [0, 65535], "she did the": [0, 65535], "did the kitchin": [0, 65535], "the kitchin vestall": [0, 65535], "kitchin vestall scorn'd": [0, 65535], "vestall scorn'd you": [0, 65535], "scorn'd you ant": [0, 65535], "ant and did": [0, 65535], "did not i": [0, 65535], "not i in": [0, 65535], "i in rage": [0, 65535], "in rage depart": [0, 65535], "rage depart from": [0, 65535], "depart from thence": [0, 65535], "from thence dro": [0, 65535], "thence dro in": [0, 65535], "dro in veritie": [0, 65535], "in veritie you": [0, 65535], "veritie you did": [0, 65535], "you did my": [0, 65535], "did my bones": [0, 65535], "my bones beares": [0, 65535], "bones beares witnesse": [0, 65535], "beares witnesse that": [0, 65535], "witnesse that since": [0, 65535], "that since haue": [0, 65535], "since haue felt": [0, 65535], "haue felt the": [0, 65535], "felt the vigor": [0, 65535], "the vigor of": [0, 65535], "vigor of his": [0, 65535], "his rage adr": [0, 65535], "rage adr is't": [0, 65535], "adr is't good": [0, 65535], "is't good to": [0, 65535], "good to sooth": [0, 65535], "to sooth him": [0, 65535], "sooth him in": [0, 65535], "him in these": [0, 65535], "in these contraries": [0, 65535], "these contraries pinch": [0, 65535], "contraries pinch it": [0, 65535], "pinch it is": [0, 65535], "is no shame": [0, 65535], "no shame the": [0, 65535], "shame the fellow": [0, 65535], "the fellow finds": [0, 65535], "fellow finds his": [0, 65535], "finds his vaine": [0, 65535], "his vaine and": [0, 65535], "vaine and yeelding": [0, 65535], "and yeelding to": [0, 65535], "yeelding to him": [0, 65535], "to him humors": [0, 65535], "him humors well": [0, 65535], "humors well his": [0, 65535], "well his frensie": [0, 65535], "his frensie ant": [0, 65535], "frensie ant thou": [0, 65535], "thou hast subborn'd": [0, 65535], "hast subborn'd the": [0, 65535], "subborn'd the goldsmith": [0, 65535], "the goldsmith to": [0, 65535], "goldsmith to arrest": [0, 65535], "to arrest mee": [0, 65535], "arrest mee adr": [0, 65535], "mee adr alas": [0, 65535], "adr alas i": [0, 65535], "alas i sent": [0, 65535], "you monie to": [0, 65535], "monie to redeeme": [0, 65535], "to redeeme you": [0, 65535], "redeeme you by": [0, 65535], "by dromio heere": [0, 65535], "dromio heere who": [0, 65535], "heere who came": [0, 65535], "who came in": [0, 65535], "came in hast": [0, 65535], "in hast for": [0, 65535], "hast for it": [0, 65535], "for it dro": [0, 65535], "it dro monie": [0, 65535], "dro monie by": [0, 65535], "monie by me": [0, 65535], "by me heart": [0, 65535], "me heart and": [0, 65535], "heart and good": [0, 65535], "and good will": [0, 65535], "good will you": [0, 65535], "will you might": [0, 65535], "you might but": [0, 65535], "might but surely": [0, 65535], "but surely master": [0, 65535], "surely master not": [0, 65535], "master not a": [0, 65535], "not a ragge": [0, 65535], "a ragge of": [0, 65535], "ragge of monie": [0, 65535], "of monie ant": [0, 65535], "monie ant wentst": [0, 65535], "ant wentst not": [0, 65535], "wentst not thou": [0, 65535], "not thou to": [0, 65535], "thou to her": [0, 65535], "to her for": [0, 65535], "her for a": [0, 65535], "for a purse": [0, 65535], "of duckets adri": [0, 65535], "duckets adri he": [0, 65535], "adri he came": [0, 65535], "he came to": [0, 65535], "to me and": [0, 65535], "and i deliuer'd": [0, 65535], "i deliuer'd it": [0, 65535], "deliuer'd it luci": [0, 65535], "it luci and": [0, 65535], "luci and i": [0, 65535], "and i am": [0, 65535], "i am witnesse": [0, 65535], "am witnesse with": [0, 65535], "witnesse with her": [0, 65535], "with her that": [0, 65535], "her that she": [0, 65535], "that she did": [0, 65535], "she did dro": [0, 65535], "did dro god": [0, 65535], "dro god and": [0, 65535], "god and the": [0, 65535], "and the rope": [0, 65535], "the rope maker": [0, 65535], "rope maker beare": [0, 65535], "maker beare me": [0, 65535], "beare me witnesse": [0, 65535], "me witnesse that": [0, 65535], "witnesse that i": [0, 65535], "that i was": [0, 65535], "i was sent": [0, 65535], "was sent for": [0, 65535], "sent for nothing": [0, 65535], "but a rope": [0, 65535], "a rope pinch": [0, 65535], "rope pinch mistris": [0, 65535], "pinch mistris both": [0, 65535], "mistris both man": [0, 65535], "both man and": [0, 65535], "and master is": [0, 65535], "master is possest": [0, 65535], "is possest i": [0, 65535], "possest i know": [0, 65535], "know it by": [0, 65535], "it by their": [0, 65535], "by their pale": [0, 65535], "their pale and": [0, 65535], "pale and deadly": [0, 65535], "and deadly lookes": [0, 65535], "deadly lookes they": [0, 65535], "lookes they must": [0, 65535], "they must be": [0, 65535], "must be bound": [0, 65535], "be bound and": [0, 65535], "bound and laide": [0, 65535], "and laide in": [0, 65535], "laide in some": [0, 65535], "in some darke": [0, 65535], "some darke roome": [0, 65535], "darke roome ant": [0, 65535], "roome ant say": [0, 65535], "ant say wherefore": [0, 65535], "say wherefore didst": [0, 65535], "wherefore didst thou": [0, 65535], "didst thou locke": [0, 65535], "thou locke me": [0, 65535], "locke me forth": [0, 65535], "me forth to": [0, 65535], "forth to day": [0, 65535], "day and why": [0, 65535], "and why dost": [0, 65535], "why dost thou": [0, 65535], "dost thou denie": [0, 65535], "thou denie the": [0, 65535], "denie the bagge": [0, 65535], "the bagge of": [0, 65535], "bagge of gold": [0, 65535], "of gold adr": [0, 65535], "gold adr i": [0, 65535], "adr i did": [0, 65535], "did not gentle": [0, 65535], "not gentle husband": [0, 65535], "gentle husband locke": [0, 65535], "husband locke thee": [0, 65535], "locke thee forth": [0, 65535], "thee forth dro": [0, 65535], "forth dro and": [0, 65535], "dro and gentle": [0, 65535], "and gentle mr": [0, 65535], "gentle mr i": [0, 65535], "mr i receiu'd": [0, 65535], "i receiu'd no": [0, 65535], "no gold but": [0, 65535], "gold but i": [0, 65535], "but i confesse": [0, 65535], "i confesse sir": [0, 65535], "confesse sir that": [0, 65535], "sir that we": [0, 65535], "that we were": [0, 65535], "we were lock'd": [0, 65535], "were lock'd out": [0, 65535], "lock'd out adr": [0, 65535], "out adr dissembling": [0, 65535], "adr dissembling villain": [0, 65535], "dissembling villain thou": [0, 65535], "villain thou speak'st": [0, 65535], "thou speak'st false": [0, 65535], "speak'st false in": [0, 65535], "false in both": [0, 65535], "in both ant": [0, 65535], "both ant dissembling": [0, 65535], "ant dissembling harlot": [0, 65535], "dissembling harlot thou": [0, 65535], "harlot thou art": [0, 65535], "thou art false": [0, 65535], "art false in": [0, 65535], "false in all": [0, 65535], "in all and": [0, 65535], "all and art": [0, 65535], "and art confederate": [0, 65535], "art confederate with": [0, 65535], "confederate with a": [0, 65535], "with a damned": [0, 65535], "a damned packe": [0, 65535], "damned packe to": [0, 65535], "packe to make": [0, 65535], "make a loathsome": [0, 65535], "a loathsome abiect": [0, 65535], "loathsome abiect scorne": [0, 65535], "abiect scorne of": [0, 65535], "scorne of me": [0, 65535], "of me but": [0, 65535], "me but with": [0, 65535], "but with these": [0, 65535], "with these nailes": [0, 65535], "these nailes ile": [0, 65535], "nailes ile plucke": [0, 65535], "ile plucke out": [0, 65535], "plucke out these": [0, 65535], "out these false": [0, 65535], "these false eyes": [0, 65535], "false eyes that": [0, 65535], "eyes that would": [0, 65535], "that would behold": [0, 65535], "would behold in": [0, 65535], "behold in me": [0, 65535], "in me this": [0, 65535], "me this shamefull": [0, 65535], "this shamefull sport": [0, 65535], "shamefull sport enter": [0, 65535], "sport enter three": [0, 65535], "enter three or": [0, 65535], "three or foure": [0, 65535], "or foure and": [0, 65535], "foure and offer": [0, 65535], "and offer to": [0, 65535], "offer to binde": [0, 65535], "to binde him": [0, 65535], "binde him hee": [0, 65535], "him hee striues": [0, 65535], "hee striues adr": [0, 65535], "striues adr oh": [0, 65535], "adr oh binde": [0, 65535], "oh binde him": [0, 65535], "binde him binde": [0, 65535], "him binde him": [0, 65535], "binde him let": [0, 65535], "him let him": [0, 65535], "let him not": [0, 65535], "him not come": [0, 65535], "not come neere": [0, 65535], "come neere me": [0, 65535], "neere me pinch": [0, 65535], "me pinch more": [0, 65535], "pinch more company": [0, 65535], "more company the": [0, 65535], "company the fiend": [0, 65535], "the fiend is": [0, 65535], "fiend is strong": [0, 65535], "is strong within": [0, 65535], "strong within him": [0, 65535], "within him luc": [0, 65535], "him luc aye": [0, 65535], "luc aye me": [0, 65535], "aye me poore": [0, 65535], "me poore man": [0, 65535], "poore man how": [0, 65535], "man how pale": [0, 65535], "how pale and": [0, 65535], "pale and wan": [0, 65535], "and wan he": [0, 65535], "wan he looks": [0, 65535], "he looks ant": [0, 65535], "looks ant what": [0, 65535], "ant what will": [0, 65535], "will you murther": [0, 65535], "you murther me": [0, 65535], "murther me thou": [0, 65535], "me thou iailor": [0, 65535], "thou iailor thou": [0, 65535], "iailor thou i": [0, 65535], "thou i am": [0, 65535], "i am thy": [0, 65535], "am thy prisoner": [0, 65535], "thy prisoner wilt": [0, 65535], "prisoner wilt thou": [0, 65535], "wilt thou suffer": [0, 65535], "thou suffer them": [0, 65535], "suffer them to": [0, 65535], "them to make": [0, 65535], "make a rescue": [0, 65535], "a rescue offi": [0, 65535], "rescue offi masters": [0, 65535], "offi masters let": [0, 65535], "masters let him": [0, 65535], "let him go": [0, 65535], "him go he": [0, 65535], "go he is": [0, 65535], "he is my": [0, 65535], "is my prisoner": [0, 65535], "my prisoner and": [0, 65535], "prisoner and you": [0, 65535], "and you shall": [0, 65535], "you shall not": [0, 65535], "shall not haue": [0, 65535], "haue him pinch": [0, 65535], "him pinch go": [0, 65535], "pinch go binde": [0, 65535], "go binde this": [0, 65535], "binde this man": [0, 65535], "this man for": [0, 65535], "man for he": [0, 65535], "he is franticke": [0, 65535], "is franticke too": [0, 65535], "franticke too adr": [0, 65535], "too adr what": [0, 65535], "adr what wilt": [0, 65535], "wilt thou do": [0, 65535], "thou do thou": [0, 65535], "do thou peeuish": [0, 65535], "thou peeuish officer": [0, 65535], "peeuish officer hast": [0, 65535], "officer hast thou": [0, 65535], "hast thou delight": [0, 65535], "thou delight to": [0, 65535], "delight to see": [0, 65535], "see a wretched": [0, 65535], "a wretched man": [0, 65535], "wretched man do": [0, 65535], "man do outrage": [0, 65535], "do outrage and": [0, 65535], "outrage and displeasure": [0, 65535], "and displeasure to": [0, 65535], "displeasure to himselfe": [0, 65535], "to himselfe offi": [0, 65535], "himselfe offi he": [0, 65535], "offi he is": [0, 65535], "my prisoner if": [0, 65535], "prisoner if i": [0, 65535], "if i let": [0, 65535], "him go the": [0, 65535], "go the debt": [0, 65535], "the debt he": [0, 65535], "debt he owes": [0, 65535], "he owes will": [0, 65535], "owes will be": [0, 65535], "will be requir'd": [0, 65535], "be requir'd of": [0, 65535], "requir'd of me": [0, 65535], "will discharge thee": [0, 65535], "discharge thee ere": [0, 65535], "ere i go": [0, 65535], "i go from": [0, 65535], "go from thee": [0, 65535], "from thee beare": [0, 65535], "thee beare me": [0, 65535], "beare me forthwith": [0, 65535], "me forthwith vnto": [0, 65535], "forthwith vnto his": [0, 65535], "vnto his creditor": [0, 65535], "his creditor and": [0, 65535], "creditor and knowing": [0, 65535], "and knowing how": [0, 65535], "knowing how the": [0, 65535], "how the debt": [0, 65535], "the debt growes": [0, 65535], "debt growes i": [0, 65535], "growes i will": [0, 65535], "i will pay": [0, 65535], "will pay it": [0, 65535], "pay it good": [0, 65535], "it good master": [0, 65535], "good master doctor": [0, 65535], "master doctor see": [0, 65535], "doctor see him": [0, 65535], "see him safe": [0, 65535], "him safe conuey'd": [0, 65535], "safe conuey'd home": [0, 65535], "conuey'd home to": [0, 65535], "home to my": [0, 65535], "my house oh": [0, 65535], "house oh most": [0, 65535], "oh most vnhappy": [0, 65535], "most vnhappy day": [0, 65535], "vnhappy day ant": [0, 65535], "day ant oh": [0, 65535], "ant oh most": [0, 65535], "oh most vnhappie": [0, 65535], "most vnhappie strumpet": [0, 65535], "vnhappie strumpet dro": [0, 65535], "strumpet dro master": [0, 65535], "dro master i": [0, 65535], "master i am": [0, 65535], "i am heere": [0, 65535], "am heere entred": [0, 65535], "heere entred in": [0, 65535], "entred in bond": [0, 65535], "in bond for": [0, 65535], "bond for you": [0, 65535], "you ant out": [0, 65535], "ant out on": [0, 65535], "out on thee": [0, 65535], "on thee villaine": [0, 65535], "thee villaine wherefore": [0, 65535], "villaine wherefore dost": [0, 65535], "wherefore dost thou": [0, 65535], "dost thou mad": [0, 65535], "thou mad mee": [0, 65535], "mad mee dro": [0, 65535], "mee dro will": [0, 65535], "dro will you": [0, 65535], "will you be": [0, 65535], "you be bound": [0, 65535], "be bound for": [0, 65535], "bound for nothing": [0, 65535], "for nothing be": [0, 65535], "nothing be mad": [0, 65535], "be mad good": [0, 65535], "mad good master": [0, 65535], "good master cry": [0, 65535], "master cry the": [0, 65535], "cry the diuell": [0, 65535], "the diuell luc": [0, 65535], "diuell luc god": [0, 65535], "luc god helpe": [0, 65535], "god helpe poore": [0, 65535], "helpe poore soules": [0, 65535], "poore soules how": [0, 65535], "soules how idlely": [0, 65535], "how idlely doe": [0, 65535], "idlely doe they": [0, 65535], "doe they talke": [0, 65535], "they talke adr": [0, 65535], "talke adr go": [0, 65535], "adr go beare": [0, 65535], "go beare him": [0, 65535], "him hence sister": [0, 65535], "hence sister go": [0, 65535], "sister go you": [0, 65535], "go you with": [0, 65535], "with me say": [0, 65535], "me say now": [0, 65535], "say now whose": [0, 65535], "now whose suite": [0, 65535], "whose suite is": [0, 65535], "suite is he": [0, 65535], "he arrested at": [0, 65535], "arrested at exeunt": [0, 65535], "at exeunt manet": [0, 65535], "exeunt manet offic": [0, 65535], "manet offic adri": [0, 65535], "offic adri luci": [0, 65535], "adri luci courtizan": [0, 65535], "luci courtizan off": [0, 65535], "courtizan off one": [0, 65535], "off one angelo": [0, 65535], "one angelo a": [0, 65535], "angelo a goldsmith": [0, 65535], "a goldsmith do": [0, 65535], "goldsmith do you": [0, 65535], "do you know": [0, 65535], "you know him": [0, 65535], "know him adr": [0, 65535], "him adr i": [0, 65535], "adr i know": [0, 65535], "i know the": [0, 65535], "know the man": [0, 65535], "the man what": [0, 65535], "is the summe": [0, 65535], "the summe he": [0, 65535], "summe he owes": [0, 65535], "he owes off": [0, 65535], "owes off two": [0, 65535], "off two hundred": [0, 65535], "two hundred duckets": [0, 65535], "hundred duckets adr": [0, 65535], "duckets adr say": [0, 65535], "adr say how": [0, 65535], "say how growes": [0, 65535], "how growes it": [0, 65535], "growes it due": [0, 65535], "it due off": [0, 65535], "due off due": [0, 65535], "off due for": [0, 65535], "due for a": [0, 65535], "for a chaine": [0, 65535], "a chaine your": [0, 65535], "chaine your husband": [0, 65535], "your husband had": [0, 65535], "husband had of": [0, 65535], "had of him": [0, 65535], "of him adr": [0, 65535], "him adr he": [0, 65535], "adr he did": [0, 65535], "he did bespeake": [0, 65535], "did bespeake a": [0, 65535], "bespeake a chain": [0, 65535], "a chain for": [0, 65535], "chain for me": [0, 65535], "for me but": [0, 65535], "me but had": [0, 65535], "but had it": [0, 65535], "had it not": [0, 65535], "it not cur": [0, 65535], "not cur when": [0, 65535], "cur when as": [0, 65535], "when as your": [0, 65535], "as your husband": [0, 65535], "your husband all": [0, 65535], "husband all in": [0, 65535], "all in rage": [0, 65535], "in rage to": [0, 65535], "rage to day": [0, 65535], "to day came": [0, 65535], "day came to": [0, 65535], "came to my": [0, 65535], "and tooke away": [0, 65535], "tooke away my": [0, 65535], "away my ring": [0, 65535], "my ring the": [0, 65535], "ring the ring": [0, 65535], "the ring i": [0, 65535], "ring i saw": [0, 65535], "i saw vpon": [0, 65535], "saw vpon his": [0, 65535], "vpon his finger": [0, 65535], "his finger now": [0, 65535], "finger now straight": [0, 65535], "now straight after": [0, 65535], "straight after did": [0, 65535], "after did i": [0, 65535], "did i meete": [0, 65535], "i meete him": [0, 65535], "meete him with": [0, 65535], "with a chaine": [0, 65535], "a chaine adr": [0, 65535], "chaine adr it": [0, 65535], "adr it may": [0, 65535], "it may be": [0, 65535], "may be so": [0, 65535], "be so but": [0, 65535], "so but i": [0, 65535], "but i did": [0, 65535], "i did neuer": [0, 65535], "did neuer see": [0, 65535], "neuer see it": [0, 65535], "see it come": [0, 65535], "it come iailor": [0, 65535], "come iailor bring": [0, 65535], "iailor bring me": [0, 65535], "bring me where": [0, 65535], "me where the": [0, 65535], "where the goldsmith": [0, 65535], "the goldsmith is": [0, 65535], "goldsmith is i": [0, 65535], "is i long": [0, 65535], "i long to": [0, 65535], "long to know": [0, 65535], "know the truth": [0, 65535], "the truth heereof": [0, 65535], "truth heereof at": [0, 65535], "heereof at large": [0, 65535], "at large enter": [0, 65535], "large enter antipholus": [0, 65535], "antipholus siracusia with": [0, 65535], "siracusia with his": [0, 65535], "with his rapier": [0, 65535], "his rapier drawne": [0, 65535], "rapier drawne and": [0, 65535], "drawne and dromio": [0, 65535], "and dromio sirac": [0, 65535], "dromio sirac luc": [0, 65535], "sirac luc god": [0, 65535], "luc god for": [0, 65535], "god for thy": [0, 65535], "for thy mercy": [0, 65535], "thy mercy they": [0, 65535], "mercy they are": [0, 65535], "they are loose": [0, 65535], "are loose againe": [0, 65535], "loose againe adr": [0, 65535], "againe adr and": [0, 65535], "adr and come": [0, 65535], "and come with": [0, 65535], "come with naked": [0, 65535], "with naked swords": [0, 65535], "naked swords let's": [0, 65535], "swords let's call": [0, 65535], "let's call more": [0, 65535], "call more helpe": [0, 65535], "more helpe to": [0, 65535], "helpe to haue": [0, 65535], "to haue them": [0, 65535], "haue them bound": [0, 65535], "them bound againe": [0, 65535], "bound againe runne": [0, 65535], "againe runne all": [0, 65535], "runne all out": [0, 65535], "all out off": [0, 65535], "out off away": [0, 65535], "off away they'l": [0, 65535], "away they'l kill": [0, 65535], "they'l kill vs": [0, 65535], "kill vs exeunt": [0, 65535], "vs exeunt omnes": [0, 65535], "exeunt omnes as": [0, 65535], "omnes as fast": [0, 65535], "as fast as": [0, 65535], "fast as may": [0, 65535], "as may be": [0, 65535], "may be frighted": [0, 65535], "be frighted s": [0, 65535], "frighted s ant": [0, 65535], "ant i see": [0, 65535], "i see these": [0, 65535], "see these witches": [0, 65535], "these witches are": [0, 65535], "witches are affraid": [0, 65535], "are affraid of": [0, 65535], "affraid of swords": [0, 65535], "of swords s": [0, 65535], "swords s dro": [0, 65535], "s dro she": [0, 65535], "dro she that": [0, 65535], "she that would": [0, 65535], "would be your": [0, 65535], "be your wife": [0, 65535], "your wife now": [0, 65535], "wife now ran": [0, 65535], "now ran from": [0, 65535], "ran from you": [0, 65535], "from you ant": [0, 65535], "you ant come": [0, 65535], "ant come to": [0, 65535], "the centaur fetch": [0, 65535], "centaur fetch our": [0, 65535], "fetch our stuffe": [0, 65535], "our stuffe from": [0, 65535], "stuffe from thence": [0, 65535], "from thence i": [0, 65535], "thence i long": [0, 65535], "i long that": [0, 65535], "long that we": [0, 65535], "we were safe": [0, 65535], "were safe and": [0, 65535], "safe and sound": [0, 65535], "and sound aboord": [0, 65535], "sound aboord dro": [0, 65535], "aboord dro faith": [0, 65535], "dro faith stay": [0, 65535], "faith stay heere": [0, 65535], "stay heere this": [0, 65535], "heere this night": [0, 65535], "this night they": [0, 65535], "night they will": [0, 65535], "they will surely": [0, 65535], "will surely do": [0, 65535], "surely do vs": [0, 65535], "do vs no": [0, 65535], "vs no harme": [0, 65535], "no harme you": [0, 65535], "harme you saw": [0, 65535], "you saw they": [0, 65535], "saw they speake": [0, 65535], "they speake vs": [0, 65535], "speake vs faire": [0, 65535], "vs faire giue": [0, 65535], "faire giue vs": [0, 65535], "giue vs gold": [0, 65535], "vs gold me": [0, 65535], "gold me thinkes": [0, 65535], "me thinkes they": [0, 65535], "thinkes they are": [0, 65535], "they are such": [0, 65535], "are such a": [0, 65535], "a gentle nation": [0, 65535], "gentle nation that": [0, 65535], "nation that but": [0, 65535], "that but for": [0, 65535], "but for the": [0, 65535], "for the mountaine": [0, 65535], "the mountaine of": [0, 65535], "mountaine of mad": [0, 65535], "of mad flesh": [0, 65535], "mad flesh that": [0, 65535], "flesh that claimes": [0, 65535], "that claimes mariage": [0, 65535], "claimes mariage of": [0, 65535], "mariage of me": [0, 65535], "of me i": [0, 65535], "me i could": [0, 65535], "i could finde": [0, 65535], "could finde in": [0, 65535], "finde in my": [0, 65535], "in my heart": [0, 65535], "my heart to": [0, 65535], "heart to stay": [0, 65535], "to stay heere": [0, 65535], "stay heere still": [0, 65535], "heere still and": [0, 65535], "still and turne": [0, 65535], "and turne witch": [0, 65535], "turne witch ant": [0, 65535], "witch ant i": [0, 65535], "will not stay": [0, 65535], "not stay to": [0, 65535], "stay to night": [0, 65535], "to night for": [0, 65535], "night for all": [0, 65535], "for all the": [0, 65535], "all the towne": [0, 65535], "the towne therefore": [0, 65535], "towne therefore away": [0, 65535], "therefore away to": [0, 65535], "away to get": [0, 65535], "to get our": [0, 65535], "get our stuffe": [0, 65535], "our stuffe aboord": [0, 65535], "stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima": [0, 65535], "quartus sc\u00e6na prima enter": [0, 65535], "sc\u00e6na prima enter a": [0, 65535], "prima enter a merchant": [0, 65535], "enter a merchant goldsmith": [0, 65535], "a merchant goldsmith and": [0, 65535], "merchant goldsmith and an": [0, 65535], "goldsmith and an officer": [0, 65535], "and an officer mar": [0, 65535], "an officer mar you": [0, 65535], "officer mar you know": [0, 65535], "mar you know since": [0, 65535], "you know since pentecost": [0, 65535], "know since pentecost the": [0, 65535], "since pentecost the sum": [0, 65535], "pentecost the sum is": [0, 65535], "the sum is due": [0, 65535], "sum is due and": [0, 65535], "is due and since": [0, 65535], "due and since i": [0, 65535], "and since i haue": [0, 65535], "since i haue not": [0, 65535], "i haue not much": [0, 65535], "haue not much importun'd": [0, 65535], "not much importun'd you": [0, 65535], "much importun'd you nor": [0, 65535], "importun'd you nor now": [0, 65535], "you nor now i": [0, 65535], "nor now i had": [0, 65535], "now i had not": [0, 65535], "i had not but": [0, 65535], "had not but that": [0, 65535], "not but that i": [0, 65535], "that i am bound": [0, 65535], "i am bound to": [0, 65535], "am bound to persia": [0, 65535], "bound to persia and": [0, 65535], "to persia and want": [0, 65535], "persia and want gilders": [0, 65535], "and want gilders for": [0, 65535], "want gilders for my": [0, 65535], "gilders for my voyage": [0, 65535], "for my voyage therefore": [0, 65535], "my voyage therefore make": [0, 65535], "voyage therefore make present": [0, 65535], "therefore make present satisfaction": [0, 65535], "make present satisfaction or": [0, 65535], "present satisfaction or ile": [0, 65535], "satisfaction or ile attach": [0, 65535], "or ile attach you": [0, 65535], "ile attach you by": [0, 65535], "attach you by this": [0, 65535], "you by this officer": [0, 65535], "by this officer gold": [0, 65535], "this officer gold euen": [0, 65535], "officer gold euen iust": [0, 65535], "gold euen iust the": [0, 65535], "euen iust the sum": [0, 65535], "iust the sum that": [0, 65535], "the sum that i": [0, 65535], "sum that i do": [0, 65535], "that i do owe": [0, 65535], "i do owe to": [0, 65535], "do owe to you": [0, 65535], "owe to you is": [0, 65535], "to you is growing": [0, 65535], "you is growing to": [0, 65535], "is growing to me": [0, 65535], "growing to me by": [0, 65535], "to me by antipholus": [0, 65535], "me by antipholus and": [0, 65535], "by antipholus and in": [0, 65535], "antipholus and in the": [0, 65535], "and in the instant": [0, 65535], "in the instant that": [0, 65535], "the instant that i": [0, 65535], "instant that i met": [0, 65535], "that i met with": [0, 65535], "i met with you": [0, 65535], "met with you he": [0, 65535], "with you he had": [0, 65535], "you he had of": [0, 65535], "he had of me": [0, 65535], "had of me a": [0, 65535], "of me a chaine": [0, 65535], "me a chaine at": [0, 65535], "a chaine at fiue": [0, 65535], "chaine at fiue a": [0, 65535], "fiue a clocke i": [0, 65535], "a clocke i shall": [0, 65535], "clocke i shall receiue": [0, 65535], "i shall receiue the": [0, 65535], "shall receiue the money": [0, 65535], "receiue the money for": [0, 65535], "the money for the": [0, 65535], "money for the same": [0, 65535], "for the same pleaseth": [0, 65535], "the same pleaseth you": [0, 65535], "same pleaseth you walke": [0, 65535], "pleaseth you walke with": [0, 65535], "walke with me downe": [0, 65535], "with me downe to": [0, 65535], "me downe to his": [0, 65535], "downe to his house": [0, 65535], "to his house i": [0, 65535], "his house i will": [0, 65535], "house i will discharge": [0, 65535], "i will discharge my": [0, 65535], "will discharge my bond": [0, 65535], "discharge my bond and": [0, 65535], "my bond and thanke": [0, 65535], "bond and thanke you": [0, 65535], "and thanke you too": [0, 65535], "thanke you too enter": [0, 65535], "you too enter antipholus": [0, 65535], "too enter antipholus ephes": [0, 65535], "enter antipholus ephes dromio": [0, 65535], "antipholus ephes dromio from": [0, 65535], "ephes dromio from the": [0, 65535], "dromio from the courtizans": [0, 65535], "from the courtizans offi": [0, 65535], "the courtizans offi that": [0, 65535], "courtizans offi that labour": [0, 65535], "offi that labour may": [0, 65535], "that labour may you": [0, 65535], "labour may you saue": [0, 65535], "may you saue see": [0, 65535], "you saue see where": [0, 65535], "saue see where he": [0, 65535], "see where he comes": [0, 65535], "where he comes ant": [0, 65535], "he comes ant while": [0, 65535], "comes ant while i": [0, 65535], "ant while i go": [0, 65535], "while i go to": [0, 65535], "i go to the": [0, 65535], "go to the goldsmiths": [0, 65535], "to the goldsmiths house": [0, 65535], "the goldsmiths house go": [0, 65535], "goldsmiths house go thou": [0, 65535], "house go thou and": [0, 65535], "go thou and buy": [0, 65535], "thou and buy a": [0, 65535], "and buy a ropes": [0, 65535], "buy a ropes end": [0, 65535], "a ropes end that": [0, 65535], "ropes end that will": [0, 65535], "end that will i": [0, 65535], "that will i bestow": [0, 65535], "will i bestow among": [0, 65535], "i bestow among my": [0, 65535], "bestow among my wife": [0, 65535], "among my wife and": [0, 65535], "my wife and their": [0, 65535], "wife and their confederates": [0, 65535], "and their confederates for": [0, 65535], "their confederates for locking": [0, 65535], "confederates for locking me": [0, 65535], "for locking me out": [0, 65535], "locking me out of": [0, 65535], "me out of my": [0, 65535], "out of my doores": [0, 65535], "of my doores by": [0, 65535], "my doores by day": [0, 65535], "doores by day but": [0, 65535], "by day but soft": [0, 65535], "day but soft i": [0, 65535], "but soft i see": [0, 65535], "soft i see the": [0, 65535], "i see the goldsmith": [0, 65535], "see the goldsmith get": [0, 65535], "the goldsmith get thee": [0, 65535], "goldsmith get thee gone": [0, 65535], "get thee gone buy": [0, 65535], "thee gone buy thou": [0, 65535], "gone buy thou a": [0, 65535], "buy thou a rope": [0, 65535], "thou a rope and": [0, 65535], "a rope and bring": [0, 65535], "rope and bring it": [0, 65535], "and bring it home": [0, 65535], "bring it home to": [0, 65535], "it home to me": [0, 65535], "home to me dro": [0, 65535], "to me dro i": [0, 65535], "me dro i buy": [0, 65535], "dro i buy a": [0, 65535], "i buy a thousand": [0, 65535], "buy a thousand pound": [0, 65535], "a thousand pound a": [0, 65535], "thousand pound a yeare": [0, 65535], "pound a yeare i": [0, 65535], "a yeare i buy": [0, 65535], "yeare i buy a": [0, 65535], "i buy a rope": [0, 65535], "buy a rope exit": [0, 65535], "a rope exit dromio": [0, 65535], "rope exit dromio eph": [0, 65535], "exit dromio eph ant": [0, 65535], "dromio eph ant a": [0, 65535], "eph ant a man": [0, 65535], "ant a man is": [0, 65535], "a man is well": [0, 65535], "man is well holpe": [0, 65535], "is well holpe vp": [0, 65535], "well holpe vp that": [0, 65535], "holpe vp that trusts": [0, 65535], "vp that trusts to": [0, 65535], "that trusts to you": [0, 65535], "trusts to you i": [0, 65535], "to you i promised": [0, 65535], "you i promised your": [0, 65535], "i promised your presence": [0, 65535], "promised your presence and": [0, 65535], "your presence and the": [0, 65535], "presence and the chaine": [0, 65535], "and the chaine but": [0, 65535], "the chaine but neither": [0, 65535], "chaine but neither chaine": [0, 65535], "but neither chaine nor": [0, 65535], "neither chaine nor goldsmith": [0, 65535], "chaine nor goldsmith came": [0, 65535], "nor goldsmith came to": [0, 65535], "goldsmith came to me": [0, 65535], "came to me belike": [0, 65535], "to me belike you": [0, 65535], "me belike you thought": [0, 65535], "belike you thought our": [0, 65535], "you thought our loue": [0, 65535], "thought our loue would": [0, 65535], "our loue would last": [0, 65535], "loue would last too": [0, 65535], "would last too long": [0, 65535], "last too long if": [0, 65535], "too long if it": [0, 65535], "long if it were": [0, 65535], "if it were chain'd": [0, 65535], "it were chain'd together": [0, 65535], "were chain'd together and": [0, 65535], "chain'd together and therefore": [0, 65535], "together and therefore came": [0, 65535], "and therefore came not": [0, 65535], "therefore came not gold": [0, 65535], "came not gold sauing": [0, 65535], "not gold sauing your": [0, 65535], "gold sauing your merrie": [0, 65535], "sauing your merrie humor": [0, 65535], "your merrie humor here's": [0, 65535], "merrie humor here's the": [0, 65535], "humor here's the note": [0, 65535], "here's the note how": [0, 65535], "the note how much": [0, 65535], "note how much your": [0, 65535], "how much your chaine": [0, 65535], "much your chaine weighs": [0, 65535], "your chaine weighs to": [0, 65535], "chaine weighs to the": [0, 65535], "weighs to the vtmost": [0, 65535], "to the vtmost charect": [0, 65535], "the vtmost charect the": [0, 65535], "vtmost charect the finenesse": [0, 65535], "charect the finenesse of": [0, 65535], "the finenesse of the": [0, 65535], "finenesse of the gold": [0, 65535], "of the gold and": [0, 65535], "the gold and chargefull": [0, 65535], "gold and chargefull fashion": [0, 65535], "and chargefull fashion which": [0, 65535], "chargefull fashion which doth": [0, 65535], "fashion which doth amount": [0, 65535], "which doth amount to": [0, 65535], "doth amount to three": [0, 65535], "amount to three odde": [0, 65535], "to three odde duckets": [0, 65535], "three odde duckets more": [0, 65535], "odde duckets more then": [0, 65535], "duckets more then i": [0, 65535], "more then i stand": [0, 65535], "then i stand debted": [0, 65535], "i stand debted to": [0, 65535], "stand debted to this": [0, 65535], "debted to this gentleman": [0, 65535], "to this gentleman i": [0, 65535], "this gentleman i pray": [0, 65535], "gentleman i pray you": [0, 65535], "i pray you see": [0, 65535], "pray you see him": [0, 65535], "you see him presently": [0, 65535], "see him presently discharg'd": [0, 65535], "him presently discharg'd for": [0, 65535], "presently discharg'd for he": [0, 65535], "discharg'd for he is": [0, 65535], "for he is bound": [0, 65535], "he is bound to": [0, 65535], "is bound to sea": [0, 65535], "bound to sea and": [0, 65535], "to sea and stayes": [0, 65535], "sea and stayes but": [0, 65535], "and stayes but for": [0, 65535], "stayes but for it": [0, 65535], "but for it anti": [0, 65535], "for it anti i": [0, 65535], "it anti i am": [0, 65535], "anti i am not": [0, 65535], "i am not furnish'd": [0, 65535], "am not furnish'd with": [0, 65535], "not furnish'd with the": [0, 65535], "furnish'd with the present": [0, 65535], "with the present monie": [0, 65535], "the present monie besides": [0, 65535], "present monie besides i": [0, 65535], "monie besides i haue": [0, 65535], "besides i haue some": [0, 65535], "i haue some businesse": [0, 65535], "haue some businesse in": [0, 65535], "some businesse in the": [0, 65535], "businesse in the towne": [0, 65535], "in the towne good": [0, 65535], "the towne good signior": [0, 65535], "towne good signior take": [0, 65535], "good signior take the": [0, 65535], "signior take the stranger": [0, 65535], "take the stranger to": [0, 65535], "the stranger to my": [0, 65535], "stranger to my house": [0, 65535], "to my house and": [0, 65535], "my house and with": [0, 65535], "house and with you": [0, 65535], "and with you take": [0, 65535], "with you take the": [0, 65535], "you take the chaine": [0, 65535], "take the chaine and": [0, 65535], "the chaine and bid": [0, 65535], "chaine and bid my": [0, 65535], "and bid my wife": [0, 65535], "bid my wife disburse": [0, 65535], "my wife disburse the": [0, 65535], "wife disburse the summe": [0, 65535], "disburse the summe on": [0, 65535], "the summe on the": [0, 65535], "summe on the receit": [0, 65535], "on the receit thereof": [0, 65535], "the receit thereof perchance": [0, 65535], "receit thereof perchance i": [0, 65535], "thereof perchance i will": [0, 65535], "perchance i will be": [0, 65535], "i will be there": [0, 65535], "will be there as": [0, 65535], "be there as soone": [0, 65535], "there as soone as": [0, 65535], "as soone as you": [0, 65535], "soone as you gold": [0, 65535], "as you gold then": [0, 65535], "you gold then you": [0, 65535], "gold then you will": [0, 65535], "then you will bring": [0, 65535], "you will bring the": [0, 65535], "will bring the chaine": [0, 65535], "bring the chaine to": [0, 65535], "the chaine to her": [0, 65535], "chaine to her your": [0, 65535], "to her your selfe": [0, 65535], "her your selfe anti": [0, 65535], "your selfe anti no": [0, 65535], "selfe anti no beare": [0, 65535], "anti no beare it": [0, 65535], "no beare it with": [0, 65535], "beare it with you": [0, 65535], "it with you least": [0, 65535], "with you least i": [0, 65535], "you least i come": [0, 65535], "least i come not": [0, 65535], "i come not time": [0, 65535], "come not time enough": [0, 65535], "not time enough gold": [0, 65535], "time enough gold well": [0, 65535], "enough gold well sir": [0, 65535], "gold well sir i": [0, 65535], "well sir i will": [0, 65535], "sir i will haue": [0, 65535], "i will haue you": [0, 65535], "will haue you the": [0, 65535], "haue you the chaine": [0, 65535], "you the chaine about": [0, 65535], "the chaine about you": [0, 65535], "chaine about you ant": [0, 65535], "about you ant and": [0, 65535], "you ant and if": [0, 65535], "ant and if i": [0, 65535], "and if i haue": [0, 65535], "if i haue not": [0, 65535], "i haue not sir": [0, 65535], "haue not sir i": [0, 65535], "not sir i hope": [0, 65535], "sir i hope you": [0, 65535], "i hope you haue": [0, 65535], "hope you haue or": [0, 65535], "you haue or else": [0, 65535], "haue or else you": [0, 65535], "or else you may": [0, 65535], "else you may returne": [0, 65535], "you may returne without": [0, 65535], "may returne without your": [0, 65535], "returne without your money": [0, 65535], "without your money gold": [0, 65535], "your money gold nay": [0, 65535], "money gold nay come": [0, 65535], "gold nay come i": [0, 65535], "nay come i pray": [0, 65535], "come i pray you": [0, 65535], "pray you sir giue": [0, 65535], "you sir giue me": [0, 65535], "sir giue me the": [0, 65535], "giue me the chaine": [0, 65535], "me the chaine both": [0, 65535], "the chaine both winde": [0, 65535], "chaine both winde and": [0, 65535], "both winde and tide": [0, 65535], "winde and tide stayes": [0, 65535], "and tide stayes for": [0, 65535], "tide stayes for this": [0, 65535], "stayes for this gentleman": [0, 65535], "for this gentleman and": [0, 65535], "this gentleman and i": [0, 65535], "gentleman and i too": [0, 65535], "and i too blame": [0, 65535], "i too blame haue": [0, 65535], "too blame haue held": [0, 65535], "blame haue held him": [0, 65535], "haue held him heere": [0, 65535], "held him heere too": [0, 65535], "him heere too long": [0, 65535], "heere too long anti": [0, 65535], "too long anti good": [0, 65535], "long anti good lord": [0, 65535], "anti good lord you": [0, 65535], "good lord you vse": [0, 65535], "lord you vse this": [0, 65535], "you vse this dalliance": [0, 65535], "vse this dalliance to": [0, 65535], "this dalliance to excuse": [0, 65535], "dalliance to excuse your": [0, 65535], "to excuse your breach": [0, 65535], "excuse your breach of": [0, 65535], "your breach of promise": [0, 65535], "breach of promise to": [0, 65535], "of promise to the": [0, 65535], "promise to the porpentine": [0, 65535], "to the porpentine i": [0, 65535], "the porpentine i should": [0, 65535], "porpentine i should haue": [0, 65535], "i should haue chid": [0, 65535], "should haue chid you": [0, 65535], "haue chid you for": [0, 65535], "chid you for not": [0, 65535], "you for not bringing": [0, 65535], "for not bringing it": [0, 65535], "not bringing it but": [0, 65535], "bringing it but like": [0, 65535], "it but like a": [0, 65535], "but like a shrew": [0, 65535], "like a shrew you": [0, 65535], "a shrew you first": [0, 65535], "shrew you first begin": [0, 65535], "you first begin to": [0, 65535], "first begin to brawle": [0, 65535], "begin to brawle mar": [0, 65535], "to brawle mar the": [0, 65535], "brawle mar the houre": [0, 65535], "mar the houre steales": [0, 65535], "the houre steales on": [0, 65535], "houre steales on i": [0, 65535], "steales on i pray": [0, 65535], "on i pray you": [0, 65535], "pray you sir dispatch": [0, 65535], "you sir dispatch gold": [0, 65535], "sir dispatch gold you": [0, 65535], "dispatch gold you heare": [0, 65535], "gold you heare how": [0, 65535], "you heare how he": [0, 65535], "heare how he importunes": [0, 65535], "how he importunes me": [0, 65535], "he importunes me the": [0, 65535], "importunes me the chaine": [0, 65535], "me the chaine ant": [0, 65535], "the chaine ant why": [0, 65535], "chaine ant why giue": [0, 65535], "ant why giue it": [0, 65535], "why giue it to": [0, 65535], "giue it to my": [0, 65535], "it to my wife": [0, 65535], "to my wife and": [0, 65535], "my wife and fetch": [0, 65535], "wife and fetch your": [0, 65535], "and fetch your mony": [0, 65535], "fetch your mony gold": [0, 65535], "your mony gold come": [0, 65535], "mony gold come come": [0, 65535], "gold come come you": [0, 65535], "come come you know": [0, 65535], "come you know i": [0, 65535], "you know i gaue": [0, 65535], "know i gaue it": [0, 65535], "i gaue it you": [0, 65535], "gaue it you euen": [0, 65535], "it you euen now": [0, 65535], "you euen now either": [0, 65535], "euen now either send": [0, 65535], "now either send the": [0, 65535], "either send the chaine": [0, 65535], "send the chaine or": [0, 65535], "the chaine or send": [0, 65535], "chaine or send me": [0, 65535], "or send me by": [0, 65535], "send me by some": [0, 65535], "me by some token": [0, 65535], "by some token ant": [0, 65535], "some token ant fie": [0, 65535], "token ant fie now": [0, 65535], "ant fie now you": [0, 65535], "fie now you run": [0, 65535], "now you run this": [0, 65535], "you run this humor": [0, 65535], "run this humor out": [0, 65535], "this humor out of": [0, 65535], "humor out of breath": [0, 65535], "out of breath come": [0, 65535], "of breath come where's": [0, 65535], "breath come where's the": [0, 65535], "come where's the chaine": [0, 65535], "where's the chaine i": [0, 65535], "the chaine i pray": [0, 65535], "chaine i pray you": [0, 65535], "i pray you let": [0, 65535], "pray you let me": [0, 65535], "you let me see": [0, 65535], "me see it mar": [0, 65535], "see it mar my": [0, 65535], "it mar my businesse": [0, 65535], "mar my businesse cannot": [0, 65535], "my businesse cannot brooke": [0, 65535], "businesse cannot brooke this": [0, 65535], "cannot brooke this dalliance": [0, 65535], "brooke this dalliance good": [0, 65535], "this dalliance good sir": [0, 65535], "dalliance good sir say": [0, 65535], "good sir say whe'r": [0, 65535], "sir say whe'r you'l": [0, 65535], "say whe'r you'l answer": [0, 65535], "whe'r you'l answer me": [0, 65535], "you'l answer me or": [0, 65535], "answer me or no": [0, 65535], "me or no if": [0, 65535], "or no if not": [0, 65535], "no if not ile": [0, 65535], "if not ile leaue": [0, 65535], "not ile leaue him": [0, 65535], "ile leaue him to": [0, 65535], "leaue him to the": [0, 65535], "him to the officer": [0, 65535], "to the officer ant": [0, 65535], "the officer ant i": [0, 65535], "officer ant i answer": [0, 65535], "ant i answer you": [0, 65535], "i answer you what": [0, 65535], "answer you what should": [0, 65535], "you what should i": [0, 65535], "what should i answer": [0, 65535], "should i answer you": [0, 65535], "i answer you gold": [0, 65535], "answer you gold the": [0, 65535], "you gold the monie": [0, 65535], "gold the monie that": [0, 65535], "the monie that you": [0, 65535], "monie that you owe": [0, 65535], "that you owe me": [0, 65535], "you owe me for": [0, 65535], "owe me for the": [0, 65535], "me for the chaine": [0, 65535], "for the chaine ant": [0, 65535], "the chaine ant i": [0, 65535], "chaine ant i owe": [0, 65535], "ant i owe you": [0, 65535], "i owe you none": [0, 65535], "owe you none till": [0, 65535], "you none till i": [0, 65535], "none till i receiue": [0, 65535], "till i receiue the": [0, 65535], "i receiue the chaine": [0, 65535], "receiue the chaine gold": [0, 65535], "the chaine gold you": [0, 65535], "chaine gold you know": [0, 65535], "gold you know i": [0, 65535], "gaue it you halfe": [0, 65535], "it you halfe an": [0, 65535], "you halfe an houre": [0, 65535], "halfe an houre since": [0, 65535], "an houre since ant": [0, 65535], "houre since ant you": [0, 65535], "since ant you gaue": [0, 65535], "ant you gaue me": [0, 65535], "you gaue me none": [0, 65535], "gaue me none you": [0, 65535], "me none you wrong": [0, 65535], "none you wrong mee": [0, 65535], "you wrong mee much": [0, 65535], "wrong mee much to": [0, 65535], "mee much to say": [0, 65535], "much to say so": [0, 65535], "to say so gold": [0, 65535], "say so gold you": [0, 65535], "so gold you wrong": [0, 65535], "gold you wrong me": [0, 65535], "you wrong me more": [0, 65535], "wrong me more sir": [0, 65535], "me more sir in": [0, 65535], "more sir in denying": [0, 65535], "sir in denying it": [0, 65535], "in denying it consider": [0, 65535], "denying it consider how": [0, 65535], "it consider how it": [0, 65535], "consider how it stands": [0, 65535], "how it stands vpon": [0, 65535], "it stands vpon my": [0, 65535], "stands vpon my credit": [0, 65535], "vpon my credit mar": [0, 65535], "my credit mar well": [0, 65535], "credit mar well officer": [0, 65535], "mar well officer arrest": [0, 65535], "well officer arrest him": [0, 65535], "officer arrest him at": [0, 65535], "arrest him at my": [0, 65535], "him at my suite": [0, 65535], "at my suite offi": [0, 65535], "my suite offi i": [0, 65535], "suite offi i do": [0, 65535], "offi i do and": [0, 65535], "i do and charge": [0, 65535], "do and charge you": [0, 65535], "and charge you in": [0, 65535], "charge you in the": [0, 65535], "you in the dukes": [0, 65535], "in the dukes name": [0, 65535], "the dukes name to": [0, 65535], "dukes name to obey": [0, 65535], "name to obey me": [0, 65535], "to obey me gold": [0, 65535], "obey me gold this": [0, 65535], "me gold this touches": [0, 65535], "gold this touches me": [0, 65535], "this touches me in": [0, 65535], "touches me in reputation": [0, 65535], "me in reputation either": [0, 65535], "in reputation either consent": [0, 65535], "reputation either consent to": [0, 65535], "either consent to pay": [0, 65535], "consent to pay this": [0, 65535], "to pay this sum": [0, 65535], "pay this sum for": [0, 65535], "this sum for me": [0, 65535], "sum for me or": [0, 65535], "for me or i": [0, 65535], "me or i attach": [0, 65535], "or i attach you": [0, 65535], "i attach you by": [0, 65535], "by this officer ant": [0, 65535], "this officer ant consent": [0, 65535], "officer ant consent to": [0, 65535], "ant consent to pay": [0, 65535], "consent to pay thee": [0, 65535], "to pay thee that": [0, 65535], "pay thee that i": [0, 65535], "thee that i neuer": [0, 65535], "that i neuer had": [0, 65535], "i neuer had arrest": [0, 65535], "neuer had arrest me": [0, 65535], "had arrest me foolish": [0, 65535], "arrest me foolish fellow": [0, 65535], "me foolish fellow if": [0, 65535], "foolish fellow if thou": [0, 65535], "fellow if thou dar'st": [0, 65535], "if thou dar'st gold": [0, 65535], "thou dar'st gold heere": [0, 65535], "dar'st gold heere is": [0, 65535], "gold heere is thy": [0, 65535], "heere is thy fee": [0, 65535], "is thy fee arrest": [0, 65535], "thy fee arrest him": [0, 65535], "fee arrest him officer": [0, 65535], "arrest him officer i": [0, 65535], "him officer i would": [0, 65535], "officer i would not": [0, 65535], "i would not spare": [0, 65535], "would not spare my": [0, 65535], "not spare my brother": [0, 65535], "spare my brother in": [0, 65535], "my brother in this": [0, 65535], "brother in this case": [0, 65535], "in this case if": [0, 65535], "this case if he": [0, 65535], "case if he should": [0, 65535], "if he should scorne": [0, 65535], "he should scorne me": [0, 65535], "should scorne me so": [0, 65535], "scorne me so apparantly": [0, 65535], "me so apparantly offic": [0, 65535], "so apparantly offic i": [0, 65535], "apparantly offic i do": [0, 65535], "offic i do arrest": [0, 65535], "i do arrest you": [0, 65535], "do arrest you sir": [0, 65535], "arrest you sir you": [0, 65535], "you sir you heare": [0, 65535], "sir you heare the": [0, 65535], "you heare the suite": [0, 65535], "heare the suite ant": [0, 65535], "the suite ant i": [0, 65535], "suite ant i do": [0, 65535], "ant i do obey": [0, 65535], "i do obey thee": [0, 65535], "do obey thee till": [0, 65535], "obey thee till i": [0, 65535], "thee till i giue": [0, 65535], "till i giue thee": [0, 65535], "i giue thee baile": [0, 65535], "giue thee baile but": [0, 65535], "thee baile but sirrah": [0, 65535], "baile but sirrah you": [0, 65535], "but sirrah you shall": [0, 65535], "sirrah you shall buy": [0, 65535], "you shall buy this": [0, 65535], "shall buy this sport": [0, 65535], "buy this sport as": [0, 65535], "this sport as deere": [0, 65535], "sport as deere as": [0, 65535], "as deere as all": [0, 65535], "deere as all the": [0, 65535], "as all the mettall": [0, 65535], "all the mettall in": [0, 65535], "the mettall in your": [0, 65535], "mettall in your shop": [0, 65535], "in your shop will": [0, 65535], "your shop will answer": [0, 65535], "shop will answer gold": [0, 65535], "will answer gold sir": [0, 65535], "answer gold sir sir": [0, 65535], "gold sir sir i": [0, 65535], "sir sir i shall": [0, 65535], "sir i shall haue": [0, 65535], "i shall haue law": [0, 65535], "shall haue law in": [0, 65535], "haue law in ephesus": [0, 65535], "law in ephesus to": [0, 65535], "in ephesus to your": [0, 65535], "ephesus to your notorious": [0, 65535], "to your notorious shame": [0, 65535], "your notorious shame i": [0, 65535], "notorious shame i doubt": [0, 65535], "shame i doubt it": [0, 65535], "i doubt it not": [0, 65535], "doubt it not enter": [0, 65535], "it not enter dromio": [0, 65535], "not enter dromio sira": [0, 65535], "enter dromio sira from": [0, 65535], "dromio sira from the": [0, 65535], "sira from the bay": [0, 65535], "from the bay dro": [0, 65535], "the bay dro master": [0, 65535], "bay dro master there's": [0, 65535], "dro master there's a": [0, 65535], "master there's a barke": [0, 65535], "there's a barke of": [0, 65535], "a barke of epidamium": [0, 65535], "barke of epidamium that": [0, 65535], "of epidamium that staies": [0, 65535], "epidamium that staies but": [0, 65535], "that staies but till": [0, 65535], "staies but till her": [0, 65535], "but till her owner": [0, 65535], "till her owner comes": [0, 65535], "her owner comes aboord": [0, 65535], "owner comes aboord and": [0, 65535], "comes aboord and then": [0, 65535], "aboord and then sir": [0, 65535], "and then sir she": [0, 65535], "then sir she beares": [0, 65535], "sir she beares away": [0, 65535], "she beares away our": [0, 65535], "beares away our fraughtage": [0, 65535], "away our fraughtage sir": [0, 65535], "our fraughtage sir i": [0, 65535], "fraughtage sir i haue": [0, 65535], "sir i haue conuei'd": [0, 65535], "i haue conuei'd aboord": [0, 65535], "haue conuei'd aboord and": [0, 65535], "conuei'd aboord and i": [0, 65535], "aboord and i haue": [0, 65535], "and i haue bought": [0, 65535], "i haue bought the": [0, 65535], "haue bought the oyle": [0, 65535], "bought the oyle the": [0, 65535], "the oyle the balsamum": [0, 65535], "oyle the balsamum and": [0, 65535], "the balsamum and aqua": [0, 65535], "balsamum and aqua vit\u00e6": [0, 65535], "and aqua vit\u00e6 the": [0, 65535], "aqua vit\u00e6 the ship": [0, 65535], "vit\u00e6 the ship is": [0, 65535], "the ship is in": [0, 65535], "ship is in her": [0, 65535], "is in her trim": [0, 65535], "in her trim the": [0, 65535], "her trim the merrie": [0, 65535], "trim the merrie winde": [0, 65535], "the merrie winde blowes": [0, 65535], "merrie winde blowes faire": [0, 65535], "winde blowes faire from": [0, 65535], "blowes faire from land": [0, 65535], "faire from land they": [0, 65535], "from land they stay": [0, 65535], "land they stay for": [0, 65535], "they stay for nought": [0, 65535], "stay for nought at": [0, 65535], "for nought at all": [0, 65535], "nought at all but": [0, 65535], "at all but for": [0, 65535], "all but for their": [0, 65535], "but for their owner": [0, 65535], "for their owner master": [0, 65535], "their owner master and": [0, 65535], "owner master and your": [0, 65535], "master and your selfe": [0, 65535], "and your selfe an": [0, 65535], "your selfe an how": [0, 65535], "selfe an how now": [0, 65535], "an how now a": [0, 65535], "how now a madman": [0, 65535], "now a madman why": [0, 65535], "a madman why thou": [0, 65535], "madman why thou peeuish": [0, 65535], "why thou peeuish sheep": [0, 65535], "thou peeuish sheep what": [0, 65535], "peeuish sheep what ship": [0, 65535], "sheep what ship of": [0, 65535], "what ship of epidamium": [0, 65535], "ship of epidamium staies": [0, 65535], "of epidamium staies for": [0, 65535], "epidamium staies for me": [0, 65535], "staies for me s": [0, 65535], "for me s dro": [0, 65535], "me s dro a": [0, 65535], "s dro a ship": [0, 65535], "dro a ship you": [0, 65535], "a ship you sent": [0, 65535], "ship you sent me": [0, 65535], "you sent me too": [0, 65535], "sent me too to": [0, 65535], "me too to hier": [0, 65535], "too to hier waftage": [0, 65535], "to hier waftage ant": [0, 65535], "hier waftage ant thou": [0, 65535], "waftage ant thou drunken": [0, 65535], "ant thou drunken slaue": [0, 65535], "thou drunken slaue i": [0, 65535], "drunken slaue i sent": [0, 65535], "slaue i sent thee": [0, 65535], "i sent thee for": [0, 65535], "sent thee for a": [0, 65535], "thee for a rope": [0, 65535], "for a rope and": [0, 65535], "a rope and told": [0, 65535], "rope and told thee": [0, 65535], "and told thee to": [0, 65535], "told thee to what": [0, 65535], "thee to what purpose": [0, 65535], "to what purpose and": [0, 65535], "what purpose and what": [0, 65535], "purpose and what end": [0, 65535], "and what end s": [0, 65535], "what end s dro": [0, 65535], "end s dro you": [0, 65535], "s dro you sent": [0, 65535], "dro you sent me": [0, 65535], "you sent me for": [0, 65535], "sent me for a": [0, 65535], "me for a ropes": [0, 65535], "for a ropes end": [0, 65535], "a ropes end as": [0, 65535], "ropes end as soone": [0, 65535], "end as soone you": [0, 65535], "as soone you sent": [0, 65535], "soone you sent me": [0, 65535], "you sent me to": [0, 65535], "sent me to the": [0, 65535], "me to the bay": [0, 65535], "to the bay sir": [0, 65535], "the bay sir for": [0, 65535], "bay sir for a": [0, 65535], "sir for a barke": [0, 65535], "for a barke ant": [0, 65535], "a barke ant i": [0, 65535], "barke ant i will": [0, 65535], "ant i will debate": [0, 65535], "i will debate this": [0, 65535], "will debate this matter": [0, 65535], "debate this matter at": [0, 65535], "this matter at more": [0, 65535], "matter at more leisure": [0, 65535], "at more leisure and": [0, 65535], "more leisure and teach": [0, 65535], "leisure and teach your": [0, 65535], "and teach your eares": [0, 65535], "teach your eares to": [0, 65535], "your eares to list": [0, 65535], "eares to list me": [0, 65535], "to list me with": [0, 65535], "list me with more": [0, 65535], "me with more heede": [0, 65535], "with more heede to": [0, 65535], "more heede to adriana": [0, 65535], "heede to adriana villaine": [0, 65535], "to adriana villaine hie": [0, 65535], "adriana villaine hie thee": [0, 65535], "villaine hie thee straight": [0, 65535], "hie thee straight giue": [0, 65535], "thee straight giue her": [0, 65535], "straight giue her this": [0, 65535], "giue her this key": [0, 65535], "her this key and": [0, 65535], "this key and tell": [0, 65535], "key and tell her": [0, 65535], "and tell her in": [0, 65535], "tell her in the": [0, 65535], "her in the deske": [0, 65535], "in the deske that's": [0, 65535], "the deske that's couer'd": [0, 65535], "deske that's couer'd o're": [0, 65535], "that's couer'd o're with": [0, 65535], "couer'd o're with turkish": [0, 65535], "o're with turkish tapistrie": [0, 65535], "with turkish tapistrie there": [0, 65535], "turkish tapistrie there is": [0, 65535], "tapistrie there is a": [0, 65535], "there is a purse": [0, 65535], "is a purse of": [0, 65535], "a purse of duckets": [0, 65535], "purse of duckets let": [0, 65535], "of duckets let her": [0, 65535], "duckets let her send": [0, 65535], "let her send it": [0, 65535], "her send it tell": [0, 65535], "send it tell her": [0, 65535], "it tell her i": [0, 65535], "tell her i am": [0, 65535], "her i am arrested": [0, 65535], "i am arrested in": [0, 65535], "am arrested in the": [0, 65535], "arrested in the streete": [0, 65535], "in the streete and": [0, 65535], "the streete and that": [0, 65535], "streete and that shall": [0, 65535], "and that shall baile": [0, 65535], "that shall baile me": [0, 65535], "shall baile me hie": [0, 65535], "baile me hie thee": [0, 65535], "me hie thee slaue": [0, 65535], "hie thee slaue be": [0, 65535], "thee slaue be gone": [0, 65535], "slaue be gone on": [0, 65535], "be gone on officer": [0, 65535], "gone on officer to": [0, 65535], "on officer to prison": [0, 65535], "officer to prison till": [0, 65535], "to prison till it": [0, 65535], "prison till it come": [0, 65535], "till it come exeunt": [0, 65535], "it come exeunt s": [0, 65535], "come exeunt s dromio": [0, 65535], "exeunt s dromio to": [0, 65535], "s dromio to adriana": [0, 65535], "dromio to adriana that": [0, 65535], "to adriana that is": [0, 65535], "adriana that is where": [0, 65535], "that is where we": [0, 65535], "is where we din'd": [0, 65535], "where we din'd where": [0, 65535], "we din'd where dowsabell": [0, 65535], "din'd where dowsabell did": [0, 65535], "where dowsabell did claime": [0, 65535], "dowsabell did claime me": [0, 65535], "did claime me for": [0, 65535], "claime me for her": [0, 65535], "me for her husband": [0, 65535], "for her husband she": [0, 65535], "her husband she is": [0, 65535], "husband she is too": [0, 65535], "she is too bigge": [0, 65535], "is too bigge i": [0, 65535], "too bigge i hope": [0, 65535], "bigge i hope for": [0, 65535], "i hope for me": [0, 65535], "hope for me to": [0, 65535], "for me to compasse": [0, 65535], "me to compasse thither": [0, 65535], "to compasse thither i": [0, 65535], "compasse thither i must": [0, 65535], "thither i must although": [0, 65535], "i must although against": [0, 65535], "must although against my": [0, 65535], "although against my will": [0, 65535], "against my will for": [0, 65535], "my will for seruants": [0, 65535], "will for seruants must": [0, 65535], "for seruants must their": [0, 65535], "seruants must their masters": [0, 65535], "must their masters mindes": [0, 65535], "their masters mindes fulfill": [0, 65535], "masters mindes fulfill exit": [0, 65535], "mindes fulfill exit enter": [0, 65535], "fulfill exit enter adriana": [0, 65535], "exit enter adriana and": [0, 65535], "adriana and luciana adr": [0, 65535], "and luciana adr ah": [0, 65535], "luciana adr ah luciana": [0, 65535], "adr ah luciana did": [0, 65535], "ah luciana did he": [0, 65535], "luciana did he tempt": [0, 65535], "did he tempt thee": [0, 65535], "he tempt thee so": [0, 65535], "tempt thee so might'st": [0, 65535], "thee so might'st thou": [0, 65535], "so might'st thou perceiue": [0, 65535], "might'st thou perceiue austeerely": [0, 65535], "thou perceiue austeerely in": [0, 65535], "perceiue austeerely in his": [0, 65535], "austeerely in his eie": [0, 65535], "in his eie that": [0, 65535], "his eie that he": [0, 65535], "eie that he did": [0, 65535], "that he did plead": [0, 65535], "he did plead in": [0, 65535], "did plead in earnest": [0, 65535], "plead in earnest yea": [0, 65535], "in earnest yea or": [0, 65535], "earnest yea or no": [0, 65535], "yea or no look'd": [0, 65535], "or no look'd he": [0, 65535], "no look'd he or": [0, 65535], "look'd he or red": [0, 65535], "he or red or": [0, 65535], "or red or pale": [0, 65535], "red or pale or": [0, 65535], "or pale or sad": [0, 65535], "pale or sad or": [0, 65535], "or sad or merrily": [0, 65535], "sad or merrily what": [0, 65535], "or merrily what obseruation": [0, 65535], "merrily what obseruation mad'st": [0, 65535], "what obseruation mad'st thou": [0, 65535], "obseruation mad'st thou in": [0, 65535], "mad'st thou in this": [0, 65535], "thou in this case": [0, 65535], "in this case oh": [0, 65535], "this case oh his": [0, 65535], "case oh his hearts": [0, 65535], "oh his hearts meteors": [0, 65535], "his hearts meteors tilting": [0, 65535], "hearts meteors tilting in": [0, 65535], "meteors tilting in his": [0, 65535], "tilting in his face": [0, 65535], "in his face luc": [0, 65535], "his face luc first": [0, 65535], "face luc first he": [0, 65535], "luc first he deni'de": [0, 65535], "first he deni'de you": [0, 65535], "he deni'de you had": [0, 65535], "deni'de you had in": [0, 65535], "you had in him": [0, 65535], "had in him no": [0, 65535], "in him no right": [0, 65535], "him no right adr": [0, 65535], "no right adr he": [0, 65535], "right adr he meant": [0, 65535], "adr he meant he": [0, 65535], "he meant he did": [0, 65535], "meant he did me": [0, 65535], "he did me none": [0, 65535], "did me none the": [0, 65535], "me none the more": [0, 65535], "none the more my": [0, 65535], "the more my spight": [0, 65535], "more my spight luc": [0, 65535], "my spight luc then": [0, 65535], "spight luc then swore": [0, 65535], "luc then swore he": [0, 65535], "then swore he that": [0, 65535], "swore he that he": [0, 65535], "he that he was": [0, 65535], "that he was a": [0, 65535], "he was a stranger": [0, 65535], "was a stranger heere": [0, 65535], "a stranger heere adr": [0, 65535], "stranger heere adr and": [0, 65535], "heere adr and true": [0, 65535], "adr and true he": [0, 65535], "and true he swore": [0, 65535], "true he swore though": [0, 65535], "he swore though yet": [0, 65535], "swore though yet forsworne": [0, 65535], "though yet forsworne hee": [0, 65535], "yet forsworne hee were": [0, 65535], "forsworne hee were luc": [0, 65535], "hee were luc then": [0, 65535], "were luc then pleaded": [0, 65535], "luc then pleaded i": [0, 65535], "then pleaded i for": [0, 65535], "pleaded i for you": [0, 65535], "i for you adr": [0, 65535], "for you adr and": [0, 65535], "you adr and what": [0, 65535], "adr and what said": [0, 65535], "and what said he": [0, 65535], "what said he luc": [0, 65535], "said he luc that": [0, 65535], "he luc that loue": [0, 65535], "luc that loue i": [0, 65535], "that loue i begg'd": [0, 65535], "loue i begg'd for": [0, 65535], "i begg'd for you": [0, 65535], "begg'd for you he": [0, 65535], "for you he begg'd": [0, 65535], "you he begg'd of": [0, 65535], "he begg'd of me": [0, 65535], "begg'd of me adr": [0, 65535], "of me adr with": [0, 65535], "me adr with what": [0, 65535], "adr with what perswasion": [0, 65535], "with what perswasion did": [0, 65535], "what perswasion did he": [0, 65535], "perswasion did he tempt": [0, 65535], "did he tempt thy": [0, 65535], "he tempt thy loue": [0, 65535], "tempt thy loue luc": [0, 65535], "thy loue luc with": [0, 65535], "loue luc with words": [0, 65535], "luc with words that": [0, 65535], "with words that in": [0, 65535], "words that in an": [0, 65535], "that in an honest": [0, 65535], "in an honest suit": [0, 65535], "an honest suit might": [0, 65535], "honest suit might moue": [0, 65535], "suit might moue first": [0, 65535], "might moue first he": [0, 65535], "moue first he did": [0, 65535], "first he did praise": [0, 65535], "he did praise my": [0, 65535], "did praise my beautie": [0, 65535], "praise my beautie then": [0, 65535], "my beautie then my": [0, 65535], "beautie then my speech": [0, 65535], "then my speech adr": [0, 65535], "my speech adr did'st": [0, 65535], "speech adr did'st speake": [0, 65535], "adr did'st speake him": [0, 65535], "did'st speake him faire": [0, 65535], "speake him faire luc": [0, 65535], "him faire luc haue": [0, 65535], "faire luc haue patience": [0, 65535], "luc haue patience i": [0, 65535], "haue patience i beseech": [0, 65535], "patience i beseech adr": [0, 65535], "i beseech adr i": [0, 65535], "beseech adr i cannot": [0, 65535], "adr i cannot nor": [0, 65535], "i cannot nor i": [0, 65535], "cannot nor i will": [0, 65535], "nor i will not": [0, 65535], "i will not hold": [0, 65535], "will not hold me": [0, 65535], "not hold me still": [0, 65535], "hold me still my": [0, 65535], "me still my tongue": [0, 65535], "still my tongue though": [0, 65535], "my tongue though not": [0, 65535], "tongue though not my": [0, 65535], "though not my heart": [0, 65535], "not my heart shall": [0, 65535], "my heart shall haue": [0, 65535], "heart shall haue his": [0, 65535], "shall haue his will": [0, 65535], "haue his will he": [0, 65535], "his will he is": [0, 65535], "will he is deformed": [0, 65535], "he is deformed crooked": [0, 65535], "is deformed crooked old": [0, 65535], "deformed crooked old and": [0, 65535], "crooked old and sere": [0, 65535], "old and sere ill": [0, 65535], "and sere ill fac'd": [0, 65535], "sere ill fac'd worse": [0, 65535], "ill fac'd worse bodied": [0, 65535], "fac'd worse bodied shapelesse": [0, 65535], "worse bodied shapelesse euery": [0, 65535], "bodied shapelesse euery where": [0, 65535], "shapelesse euery where vicious": [0, 65535], "euery where vicious vngentle": [0, 65535], "where vicious vngentle foolish": [0, 65535], "vicious vngentle foolish blunt": [0, 65535], "vngentle foolish blunt vnkinde": [0, 65535], "foolish blunt vnkinde stigmaticall": [0, 65535], "blunt vnkinde stigmaticall in": [0, 65535], "vnkinde stigmaticall in making": [0, 65535], "stigmaticall in making worse": [0, 65535], "in making worse in": [0, 65535], "making worse in minde": [0, 65535], "worse in minde luc": [0, 65535], "in minde luc who": [0, 65535], "minde luc who would": [0, 65535], "luc who would be": [0, 65535], "who would be iealous": [0, 65535], "would be iealous then": [0, 65535], "be iealous then of": [0, 65535], "iealous then of such": [0, 65535], "then of such a": [0, 65535], "of such a one": [0, 65535], "such a one no": [0, 65535], "a one no euill": [0, 65535], "one no euill lost": [0, 65535], "no euill lost is": [0, 65535], "euill lost is wail'd": [0, 65535], "lost is wail'd when": [0, 65535], "is wail'd when it": [0, 65535], "wail'd when it is": [0, 65535], "when it is gone": [0, 65535], "it is gone adr": [0, 65535], "is gone adr ah": [0, 65535], "gone adr ah but": [0, 65535], "adr ah but i": [0, 65535], "ah but i thinke": [0, 65535], "but i thinke him": [0, 65535], "i thinke him better": [0, 65535], "thinke him better then": [0, 65535], "him better then i": [0, 65535], "better then i say": [0, 65535], "then i say and": [0, 65535], "i say and yet": [0, 65535], "say and yet would": [0, 65535], "and yet would herein": [0, 65535], "yet would herein others": [0, 65535], "would herein others eies": [0, 65535], "herein others eies were": [0, 65535], "others eies were worse": [0, 65535], "eies were worse farre": [0, 65535], "were worse farre from": [0, 65535], "worse farre from her": [0, 65535], "farre from her nest": [0, 65535], "from her nest the": [0, 65535], "her nest the lapwing": [0, 65535], "nest the lapwing cries": [0, 65535], "the lapwing cries away": [0, 65535], "lapwing cries away my": [0, 65535], "cries away my heart": [0, 65535], "away my heart praies": [0, 65535], "my heart praies for": [0, 65535], "heart praies for him": [0, 65535], "praies for him though": [0, 65535], "for him though my": [0, 65535], "him though my tongue": [0, 65535], "though my tongue doe": [0, 65535], "my tongue doe curse": [0, 65535], "tongue doe curse enter": [0, 65535], "doe curse enter s": [0, 65535], "curse enter s dromio": [0, 65535], "enter s dromio dro": [0, 65535], "s dromio dro here": [0, 65535], "dromio dro here goe": [0, 65535], "dro here goe the": [0, 65535], "here goe the deske": [0, 65535], "goe the deske the": [0, 65535], "the deske the purse": [0, 65535], "deske the purse sweet": [0, 65535], "the purse sweet now": [0, 65535], "purse sweet now make": [0, 65535], "sweet now make haste": [0, 65535], "now make haste luc": [0, 65535], "make haste luc how": [0, 65535], "haste luc how hast": [0, 65535], "luc how hast thou": [0, 65535], "how hast thou lost": [0, 65535], "hast thou lost thy": [0, 65535], "thou lost thy breath": [0, 65535], "lost thy breath s": [0, 65535], "thy breath s dro": [0, 65535], "breath s dro by": [0, 65535], "s dro by running": [0, 65535], "dro by running fast": [0, 65535], "by running fast adr": [0, 65535], "running fast adr where": [0, 65535], "fast adr where is": [0, 65535], "adr where is thy": [0, 65535], "where is thy master": [0, 65535], "is thy master dromio": [0, 65535], "thy master dromio is": [0, 65535], "master dromio is he": [0, 65535], "dromio is he well": [0, 65535], "is he well s": [0, 65535], "he well s dro": [0, 65535], "well s dro no": [0, 65535], "s dro no he's": [0, 65535], "dro no he's in": [0, 65535], "no he's in tartar": [0, 65535], "he's in tartar limbo": [0, 65535], "in tartar limbo worse": [0, 65535], "tartar limbo worse then": [0, 65535], "limbo worse then hell": [0, 65535], "worse then hell a": [0, 65535], "then hell a diuell": [0, 65535], "hell a diuell in": [0, 65535], "a diuell in an": [0, 65535], "diuell in an euerlasting": [0, 65535], "in an euerlasting garment": [0, 65535], "an euerlasting garment hath": [0, 65535], "euerlasting garment hath him": [0, 65535], "garment hath him on": [0, 65535], "hath him on whose": [0, 65535], "him on whose hard": [0, 65535], "on whose hard heart": [0, 65535], "whose hard heart is": [0, 65535], "hard heart is button'd": [0, 65535], "heart is button'd vp": [0, 65535], "is button'd vp with": [0, 65535], "button'd vp with steele": [0, 65535], "vp with steele a": [0, 65535], "with steele a feind": [0, 65535], "steele a feind a": [0, 65535], "a feind a fairie": [0, 65535], "feind a fairie pittilesse": [0, 65535], "a fairie pittilesse and": [0, 65535], "fairie pittilesse and ruffe": [0, 65535], "pittilesse and ruffe a": [0, 65535], "and ruffe a wolfe": [0, 65535], "ruffe a wolfe nay": [0, 65535], "a wolfe nay worse": [0, 65535], "wolfe nay worse a": [0, 65535], "nay worse a fellow": [0, 65535], "worse a fellow all": [0, 65535], "a fellow all in": [0, 65535], "fellow all in buffe": [0, 65535], "all in buffe a": [0, 65535], "in buffe a back": [0, 65535], "buffe a back friend": [0, 65535], "a back friend a": [0, 65535], "back friend a shoulder": [0, 65535], "friend a shoulder clapper": [0, 65535], "a shoulder clapper one": [0, 65535], "shoulder clapper one that": [0, 65535], "clapper one that countermads": [0, 65535], "one that countermads the": [0, 65535], "that countermads the passages": [0, 65535], "countermads the passages of": [0, 65535], "the passages of allies": [0, 65535], "passages of allies creekes": [0, 65535], "of allies creekes and": [0, 65535], "allies creekes and narrow": [0, 65535], "creekes and narrow lands": [0, 65535], "and narrow lands a": [0, 65535], "narrow lands a hound": [0, 65535], "lands a hound that": [0, 65535], "a hound that runs": [0, 65535], "hound that runs counter": [0, 65535], "that runs counter and": [0, 65535], "runs counter and yet": [0, 65535], "counter and yet draws": [0, 65535], "and yet draws drifoot": [0, 65535], "yet draws drifoot well": [0, 65535], "draws drifoot well one": [0, 65535], "drifoot well one that": [0, 65535], "well one that before": [0, 65535], "one that before the": [0, 65535], "that before the iudgment": [0, 65535], "before the iudgment carries": [0, 65535], "the iudgment carries poore": [0, 65535], "iudgment carries poore soules": [0, 65535], "carries poore soules to": [0, 65535], "poore soules to hel": [0, 65535], "soules to hel adr": [0, 65535], "to hel adr why": [0, 65535], "hel adr why man": [0, 65535], "adr why man what": [0, 65535], "why man what is": [0, 65535], "man what is the": [0, 65535], "is the matter s": [0, 65535], "the matter s dro": [0, 65535], "matter s dro i": [0, 65535], "s dro i doe": [0, 65535], "dro i doe not": [0, 65535], "doe not know the": [0, 65535], "not know the matter": [0, 65535], "know the matter hee": [0, 65535], "the matter hee is": [0, 65535], "matter hee is rested": [0, 65535], "hee is rested on": [0, 65535], "is rested on the": [0, 65535], "rested on the case": [0, 65535], "on the case adr": [0, 65535], "the case adr what": [0, 65535], "case adr what is": [0, 65535], "adr what is he": [0, 65535], "what is he arrested": [0, 65535], "is he arrested tell": [0, 65535], "he arrested tell me": [0, 65535], "arrested tell me at": [0, 65535], "tell me at whose": [0, 65535], "me at whose suite": [0, 65535], "at whose suite s": [0, 65535], "whose suite s dro": [0, 65535], "suite s dro i": [0, 65535], "s dro i know": [0, 65535], "dro i know not": [0, 65535], "i know not at": [0, 65535], "know not at whose": [0, 65535], "not at whose suite": [0, 65535], "at whose suite he": [0, 65535], "whose suite he is": [0, 65535], "suite he is arested": [0, 65535], "he is arested well": [0, 65535], "is arested well but": [0, 65535], "arested well but is": [0, 65535], "well but is in": [0, 65535], "but is in a": [0, 65535], "is in a suite": [0, 65535], "in a suite of": [0, 65535], "a suite of buffe": [0, 65535], "suite of buffe which": [0, 65535], "of buffe which rested": [0, 65535], "buffe which rested him": [0, 65535], "which rested him that": [0, 65535], "rested him that can": [0, 65535], "him that can i": [0, 65535], "that can i tell": [0, 65535], "can i tell will": [0, 65535], "i tell will you": [0, 65535], "tell will you send": [0, 65535], "will you send him": [0, 65535], "you send him mistris": [0, 65535], "send him mistris redemption": [0, 65535], "him mistris redemption the": [0, 65535], "mistris redemption the monie": [0, 65535], "redemption the monie in": [0, 65535], "the monie in his": [0, 65535], "monie in his deske": [0, 65535], "in his deske adr": [0, 65535], "his deske adr go": [0, 65535], "deske adr go fetch": [0, 65535], "adr go fetch it": [0, 65535], "go fetch it sister": [0, 65535], "fetch it sister this": [0, 65535], "it sister this i": [0, 65535], "sister this i wonder": [0, 65535], "this i wonder at": [0, 65535], "i wonder at exit": [0, 65535], "wonder at exit luciana": [0, 65535], "at exit luciana thus": [0, 65535], "exit luciana thus he": [0, 65535], "luciana thus he vnknowne": [0, 65535], "thus he vnknowne to": [0, 65535], "he vnknowne to me": [0, 65535], "vnknowne to me should": [0, 65535], "to me should be": [0, 65535], "me should be in": [0, 65535], "should be in debt": [0, 65535], "be in debt tell": [0, 65535], "in debt tell me": [0, 65535], "debt tell me was": [0, 65535], "tell me was he": [0, 65535], "me was he arested": [0, 65535], "was he arested on": [0, 65535], "he arested on a": [0, 65535], "arested on a band": [0, 65535], "on a band s": [0, 65535], "a band s dro": [0, 65535], "band s dro not": [0, 65535], "s dro not on": [0, 65535], "dro not on a": [0, 65535], "not on a band": [0, 65535], "on a band but": [0, 65535], "a band but on": [0, 65535], "band but on a": [0, 65535], "but on a stronger": [0, 65535], "on a stronger thing": [0, 65535], "a stronger thing a": [0, 65535], "stronger thing a chaine": [0, 65535], "thing a chaine a": [0, 65535], "a chaine a chaine": [0, 65535], "chaine a chaine doe": [0, 65535], "a chaine doe you": [0, 65535], "chaine doe you not": [0, 65535], "doe you not here": [0, 65535], "you not here it": [0, 65535], "not here it ring": [0, 65535], "here it ring adria": [0, 65535], "it ring adria what": [0, 65535], "ring adria what the": [0, 65535], "adria what the chaine": [0, 65535], "what the chaine s": [0, 65535], "the chaine s dro": [0, 65535], "chaine s dro no": [0, 65535], "s dro no no": [0, 65535], "dro no no the": [0, 65535], "no no the bell": [0, 65535], "no the bell 'tis": [0, 65535], "the bell 'tis time": [0, 65535], "bell 'tis time that": [0, 65535], "'tis time that i": [0, 65535], "that i were gone": [0, 65535], "i were gone it": [0, 65535], "were gone it was": [0, 65535], "gone it was two": [0, 65535], "it was two ere": [0, 65535], "was two ere i": [0, 65535], "two ere i left": [0, 65535], "ere i left him": [0, 65535], "i left him and": [0, 65535], "left him and now": [0, 65535], "him and now the": [0, 65535], "and now the clocke": [0, 65535], "now the clocke strikes": [0, 65535], "the clocke strikes one": [0, 65535], "clocke strikes one adr": [0, 65535], "strikes one adr the": [0, 65535], "one adr the houres": [0, 65535], "adr the houres come": [0, 65535], "the houres come backe": [0, 65535], "houres come backe that": [0, 65535], "come backe that did": [0, 65535], "backe that did i": [0, 65535], "that did i neuer": [0, 65535], "did i neuer here": [0, 65535], "i neuer here s": [0, 65535], "neuer here s dro": [0, 65535], "here s dro oh": [0, 65535], "s dro oh yes": [0, 65535], "dro oh yes if": [0, 65535], "oh yes if any": [0, 65535], "yes if any houre": [0, 65535], "if any houre meete": [0, 65535], "any houre meete a": [0, 65535], "houre meete a serieant": [0, 65535], "meete a serieant a": [0, 65535], "a serieant a turnes": [0, 65535], "serieant a turnes backe": [0, 65535], "a turnes backe for": [0, 65535], "turnes backe for verie": [0, 65535], "backe for verie feare": [0, 65535], "for verie feare adri": [0, 65535], "verie feare adri as": [0, 65535], "feare adri as if": [0, 65535], "adri as if time": [0, 65535], "as if time were": [0, 65535], "if time were in": [0, 65535], "time were in debt": [0, 65535], "were in debt how": [0, 65535], "in debt how fondly": [0, 65535], "debt how fondly do'st": [0, 65535], "how fondly do'st thou": [0, 65535], "fondly do'st thou reason": [0, 65535], "do'st thou reason s": [0, 65535], "thou reason s dro": [0, 65535], "reason s dro time": [0, 65535], "s dro time is": [0, 65535], "dro time is a": [0, 65535], "time is a verie": [0, 65535], "is a verie bankerout": [0, 65535], "a verie bankerout and": [0, 65535], "verie bankerout and owes": [0, 65535], "bankerout and owes more": [0, 65535], "and owes more then": [0, 65535], "owes more then he's": [0, 65535], "more then he's worth": [0, 65535], "then he's worth to": [0, 65535], "he's worth to season": [0, 65535], "worth to season nay": [0, 65535], "to season nay he's": [0, 65535], "season nay he's a": [0, 65535], "nay he's a theefe": [0, 65535], "he's a theefe too": [0, 65535], "a theefe too haue": [0, 65535], "theefe too haue you": [0, 65535], "too haue you not": [0, 65535], "haue you not heard": [0, 65535], "you not heard men": [0, 65535], "not heard men say": [0, 65535], "heard men say that": [0, 65535], "men say that time": [0, 65535], "say that time comes": [0, 65535], "that time comes stealing": [0, 65535], "time comes stealing on": [0, 65535], "comes stealing on by": [0, 65535], "stealing on by night": [0, 65535], "on by night and": [0, 65535], "by night and day": [0, 65535], "night and day if": [0, 65535], "and day if i": [0, 65535], "day if i be": [0, 65535], "if i be in": [0, 65535], "i be in debt": [0, 65535], "be in debt and": [0, 65535], "in debt and theft": [0, 65535], "debt and theft and": [0, 65535], "and theft and a": [0, 65535], "theft and a serieant": [0, 65535], "and a serieant in": [0, 65535], "a serieant in the": [0, 65535], "serieant in the way": [0, 65535], "in the way hath": [0, 65535], "the way hath he": [0, 65535], "way hath he not": [0, 65535], "hath he not reason": [0, 65535], "he not reason to": [0, 65535], "not reason to turne": [0, 65535], "reason to turne backe": [0, 65535], "to turne backe an": [0, 65535], "turne backe an houre": [0, 65535], "backe an houre in": [0, 65535], "an houre in a": [0, 65535], "houre in a day": [0, 65535], "in a day enter": [0, 65535], "a day enter luciana": [0, 65535], "day enter luciana adr": [0, 65535], "enter luciana adr go": [0, 65535], "luciana adr go dromio": [0, 65535], "adr go dromio there's": [0, 65535], "go dromio there's the": [0, 65535], "dromio there's the monie": [0, 65535], "there's the monie beare": [0, 65535], "the monie beare it": [0, 65535], "monie beare it straight": [0, 65535], "beare it straight and": [0, 65535], "it straight and bring": [0, 65535], "straight and bring thy": [0, 65535], "and bring thy master": [0, 65535], "bring thy master home": [0, 65535], "thy master home imediately": [0, 65535], "master home imediately come": [0, 65535], "home imediately come sister": [0, 65535], "imediately come sister i": [0, 65535], "come sister i am": [0, 65535], "sister i am prest": [0, 65535], "i am prest downe": [0, 65535], "am prest downe with": [0, 65535], "prest downe with conceit": [0, 65535], "downe with conceit conceit": [0, 65535], "with conceit conceit my": [0, 65535], "conceit conceit my comfort": [0, 65535], "conceit my comfort and": [0, 65535], "my comfort and my": [0, 65535], "comfort and my iniurie": [0, 65535], "and my iniurie exit": [0, 65535], "my iniurie exit enter": [0, 65535], "iniurie exit enter antipholus": [0, 65535], "exit enter antipholus siracusia": [0, 65535], "enter antipholus siracusia there's": [0, 65535], "antipholus siracusia there's not": [0, 65535], "siracusia there's not a": [0, 65535], "there's not a man": [0, 65535], "not a man i": [0, 65535], "a man i meete": [0, 65535], "man i meete but": [0, 65535], "i meete but doth": [0, 65535], "meete but doth salute": [0, 65535], "but doth salute me": [0, 65535], "doth salute me as": [0, 65535], "salute me as if": [0, 65535], "me as if i": [0, 65535], "as if i were": [0, 65535], "if i were their": [0, 65535], "i were their well": [0, 65535], "were their well acquainted": [0, 65535], "their well acquainted friend": [0, 65535], "well acquainted friend and": [0, 65535], "acquainted friend and euerie": [0, 65535], "friend and euerie one": [0, 65535], "and euerie one doth": [0, 65535], "euerie one doth call": [0, 65535], "one doth call me": [0, 65535], "doth call me by": [0, 65535], "call me by my": [0, 65535], "me by my name": [0, 65535], "by my name some": [0, 65535], "my name some tender": [0, 65535], "name some tender monie": [0, 65535], "some tender monie to": [0, 65535], "tender monie to me": [0, 65535], "monie to me some": [0, 65535], "to me some inuite": [0, 65535], "me some inuite me": [0, 65535], "some inuite me some": [0, 65535], "inuite me some other": [0, 65535], "me some other giue": [0, 65535], "some other giue me": [0, 65535], "other giue me thankes": [0, 65535], "giue me thankes for": [0, 65535], "me thankes for kindnesses": [0, 65535], "thankes for kindnesses some": [0, 65535], "for kindnesses some offer": [0, 65535], "kindnesses some offer me": [0, 65535], "some offer me commodities": [0, 65535], "offer me commodities to": [0, 65535], "me commodities to buy": [0, 65535], "commodities to buy euen": [0, 65535], "to buy euen now": [0, 65535], "buy euen now a": [0, 65535], "euen now a tailor": [0, 65535], "now a tailor cal'd": [0, 65535], "a tailor cal'd me": [0, 65535], "tailor cal'd me in": [0, 65535], "cal'd me in his": [0, 65535], "me in his shop": [0, 65535], "in his shop and": [0, 65535], "his shop and show'd": [0, 65535], "shop and show'd me": [0, 65535], "and show'd me silkes": [0, 65535], "show'd me silkes that": [0, 65535], "me silkes that he": [0, 65535], "silkes that he had": [0, 65535], "that he had bought": [0, 65535], "he had bought for": [0, 65535], "had bought for me": [0, 65535], "bought for me and": [0, 65535], "for me and therewithall": [0, 65535], "me and therewithall tooke": [0, 65535], "and therewithall tooke measure": [0, 65535], "therewithall tooke measure of": [0, 65535], "tooke measure of my": [0, 65535], "measure of my body": [0, 65535], "of my body sure": [0, 65535], "my body sure these": [0, 65535], "body sure these are": [0, 65535], "sure these are but": [0, 65535], "these are but imaginarie": [0, 65535], "are but imaginarie wiles": [0, 65535], "but imaginarie wiles and": [0, 65535], "imaginarie wiles and lapland": [0, 65535], "wiles and lapland sorcerers": [0, 65535], "and lapland sorcerers inhabite": [0, 65535], "lapland sorcerers inhabite here": [0, 65535], "sorcerers inhabite here enter": [0, 65535], "inhabite here enter dromio": [0, 65535], "here enter dromio sir": [0, 65535], "enter dromio sir s": [0, 65535], "dromio sir s dro": [0, 65535], "sir s dro master": [0, 65535], "s dro master here's": [0, 65535], "dro master here's the": [0, 65535], "master here's the gold": [0, 65535], "here's the gold you": [0, 65535], "the gold you sent": [0, 65535], "gold you sent me": [0, 65535], "sent me for what": [0, 65535], "me for what haue": [0, 65535], "for what haue you": [0, 65535], "what haue you got": [0, 65535], "haue you got the": [0, 65535], "you got the picture": [0, 65535], "got the picture of": [0, 65535], "the picture of old": [0, 65535], "picture of old adam": [0, 65535], "of old adam new": [0, 65535], "old adam new apparel'd": [0, 65535], "adam new apparel'd ant": [0, 65535], "new apparel'd ant what": [0, 65535], "apparel'd ant what gold": [0, 65535], "ant what gold is": [0, 65535], "what gold is this": [0, 65535], "gold is this what": [0, 65535], "is this what adam": [0, 65535], "this what adam do'st": [0, 65535], "what adam do'st thou": [0, 65535], "adam do'st thou meane": [0, 65535], "do'st thou meane s": [0, 65535], "thou meane s dro": [0, 65535], "meane s dro not": [0, 65535], "s dro not that": [0, 65535], "dro not that adam": [0, 65535], "not that adam that": [0, 65535], "that adam that kept": [0, 65535], "adam that kept the": [0, 65535], "that kept the paradise": [0, 65535], "kept the paradise but": [0, 65535], "the paradise but that": [0, 65535], "paradise but that adam": [0, 65535], "but that adam that": [0, 65535], "that adam that keepes": [0, 65535], "adam that keepes the": [0, 65535], "that keepes the prison": [0, 65535], "keepes the prison hee": [0, 65535], "the prison hee that": [0, 65535], "prison hee that goes": [0, 65535], "hee that goes in": [0, 65535], "that goes in the": [0, 65535], "goes in the calues": [0, 65535], "in the calues skin": [0, 65535], "the calues skin that": [0, 65535], "calues skin that was": [0, 65535], "skin that was kil'd": [0, 65535], "that was kil'd for": [0, 65535], "was kil'd for the": [0, 65535], "kil'd for the prodigall": [0, 65535], "for the prodigall hee": [0, 65535], "the prodigall hee that": [0, 65535], "prodigall hee that came": [0, 65535], "hee that came behinde": [0, 65535], "that came behinde you": [0, 65535], "came behinde you sir": [0, 65535], "behinde you sir like": [0, 65535], "you sir like an": [0, 65535], "sir like an euill": [0, 65535], "like an euill angel": [0, 65535], "an euill angel and": [0, 65535], "euill angel and bid": [0, 65535], "angel and bid you": [0, 65535], "and bid you forsake": [0, 65535], "bid you forsake your": [0, 65535], "you forsake your libertie": [0, 65535], "forsake your libertie ant": [0, 65535], "your libertie ant i": [0, 65535], "libertie ant i vnderstand": [0, 65535], "ant i vnderstand thee": [0, 65535], "i vnderstand thee not": [0, 65535], "vnderstand thee not s": [0, 65535], "thee not s dro": [0, 65535], "not s dro no": [0, 65535], "s dro no why": [0, 65535], "dro no why 'tis": [0, 65535], "no why 'tis a": [0, 65535], "why 'tis a plaine": [0, 65535], "'tis a plaine case": [0, 65535], "a plaine case he": [0, 65535], "plaine case he that": [0, 65535], "case he that went": [0, 65535], "he that went like": [0, 65535], "that went like a": [0, 65535], "went like a base": [0, 65535], "like a base viole": [0, 65535], "a base viole in": [0, 65535], "base viole in a": [0, 65535], "viole in a case": [0, 65535], "in a case of": [0, 65535], "a case of leather": [0, 65535], "case of leather the": [0, 65535], "of leather the man": [0, 65535], "leather the man sir": [0, 65535], "the man sir that": [0, 65535], "man sir that when": [0, 65535], "sir that when gentlemen": [0, 65535], "that when gentlemen are": [0, 65535], "when gentlemen are tired": [0, 65535], "gentlemen are tired giues": [0, 65535], "are tired giues them": [0, 65535], "tired giues them a": [0, 65535], "giues them a sob": [0, 65535], "them a sob and": [0, 65535], "a sob and rests": [0, 65535], "sob and rests them": [0, 65535], "and rests them he": [0, 65535], "rests them he sir": [0, 65535], "them he sir that": [0, 65535], "he sir that takes": [0, 65535], "sir that takes pittie": [0, 65535], "that takes pittie on": [0, 65535], "takes pittie on decaied": [0, 65535], "pittie on decaied men": [0, 65535], "on decaied men and": [0, 65535], "decaied men and giues": [0, 65535], "men and giues them": [0, 65535], "and giues them suites": [0, 65535], "giues them suites of": [0, 65535], "them suites of durance": [0, 65535], "suites of durance he": [0, 65535], "of durance he that": [0, 65535], "durance he that sets": [0, 65535], "he that sets vp": [0, 65535], "that sets vp his": [0, 65535], "sets vp his rest": [0, 65535], "vp his rest to": [0, 65535], "his rest to doe": [0, 65535], "rest to doe more": [0, 65535], "to doe more exploits": [0, 65535], "doe more exploits with": [0, 65535], "more exploits with his": [0, 65535], "exploits with his mace": [0, 65535], "with his mace then": [0, 65535], "his mace then a": [0, 65535], "mace then a moris": [0, 65535], "then a moris pike": [0, 65535], "a moris pike ant": [0, 65535], "moris pike ant what": [0, 65535], "pike ant what thou": [0, 65535], "ant what thou mean'st": [0, 65535], "what thou mean'st an": [0, 65535], "thou mean'st an officer": [0, 65535], "mean'st an officer s": [0, 65535], "an officer s dro": [0, 65535], "officer s dro i": [0, 65535], "dro i sir the": [0, 65535], "i sir the serieant": [0, 65535], "sir the serieant of": [0, 65535], "the serieant of the": [0, 65535], "serieant of the band": [0, 65535], "of the band he": [0, 65535], "the band he that": [0, 65535], "band he that brings": [0, 65535], "he that brings any": [0, 65535], "that brings any man": [0, 65535], "brings any man to": [0, 65535], "any man to answer": [0, 65535], "man to answer it": [0, 65535], "to answer it that": [0, 65535], "answer it that breakes": [0, 65535], "it that breakes his": [0, 65535], "that breakes his band": [0, 65535], "breakes his band one": [0, 65535], "his band one that": [0, 65535], "band one that thinkes": [0, 65535], "one that thinkes a": [0, 65535], "that thinkes a man": [0, 65535], "thinkes a man alwaies": [0, 65535], "a man alwaies going": [0, 65535], "man alwaies going to": [0, 65535], "alwaies going to bed": [0, 65535], "going to bed and": [0, 65535], "to bed and saies": [0, 65535], "bed and saies god": [0, 65535], "and saies god giue": [0, 65535], "saies god giue you": [0, 65535], "god giue you good": [0, 65535], "giue you good rest": [0, 65535], "you good rest ant": [0, 65535], "good rest ant well": [0, 65535], "rest ant well sir": [0, 65535], "ant well sir there": [0, 65535], "well sir there rest": [0, 65535], "sir there rest in": [0, 65535], "there rest in your": [0, 65535], "rest in your foolerie": [0, 65535], "in your foolerie is": [0, 65535], "your foolerie is there": [0, 65535], "foolerie is there any": [0, 65535], "is there any ships": [0, 65535], "there any ships puts": [0, 65535], "any ships puts forth": [0, 65535], "ships puts forth to": [0, 65535], "puts forth to night": [0, 65535], "forth to night may": [0, 65535], "to night may we": [0, 65535], "night may we be": [0, 65535], "may we be gone": [0, 65535], "we be gone s": [0, 65535], "be gone s dro": [0, 65535], "gone s dro why": [0, 65535], "s dro why sir": [0, 65535], "dro why sir i": [0, 65535], "why sir i brought": [0, 65535], "sir i brought you": [0, 65535], "i brought you word": [0, 65535], "brought you word an": [0, 65535], "you word an houre": [0, 65535], "word an houre since": [0, 65535], "an houre since that": [0, 65535], "houre since that the": [0, 65535], "since that the barke": [0, 65535], "that the barke expedition": [0, 65535], "the barke expedition put": [0, 65535], "barke expedition put forth": [0, 65535], "expedition put forth to": [0, 65535], "put forth to night": [0, 65535], "forth to night and": [0, 65535], "to night and then": [0, 65535], "night and then were": [0, 65535], "and then were you": [0, 65535], "then were you hindred": [0, 65535], "were you hindred by": [0, 65535], "you hindred by the": [0, 65535], "hindred by the serieant": [0, 65535], "by the serieant to": [0, 65535], "the serieant to tarry": [0, 65535], "serieant to tarry for": [0, 65535], "to tarry for the": [0, 65535], "tarry for the hoy": [0, 65535], "for the hoy delay": [0, 65535], "the hoy delay here": [0, 65535], "hoy delay here are": [0, 65535], "delay here are the": [0, 65535], "here are the angels": [0, 65535], "are the angels that": [0, 65535], "the angels that you": [0, 65535], "angels that you sent": [0, 65535], "that you sent for": [0, 65535], "you sent for to": [0, 65535], "sent for to deliuer": [0, 65535], "for to deliuer you": [0, 65535], "to deliuer you ant": [0, 65535], "deliuer you ant the": [0, 65535], "you ant the fellow": [0, 65535], "ant the fellow is": [0, 65535], "the fellow is distract": [0, 65535], "fellow is distract and": [0, 65535], "is distract and so": [0, 65535], "distract and so am": [0, 65535], "so am i and": [0, 65535], "am i and here": [0, 65535], "i and here we": [0, 65535], "and here we wander": [0, 65535], "here we wander in": [0, 65535], "we wander in illusions": [0, 65535], "wander in illusions some": [0, 65535], "in illusions some blessed": [0, 65535], "illusions some blessed power": [0, 65535], "some blessed power deliuer": [0, 65535], "blessed power deliuer vs": [0, 65535], "power deliuer vs from": [0, 65535], "deliuer vs from hence": [0, 65535], "vs from hence enter": [0, 65535], "from hence enter a": [0, 65535], "hence enter a curtizan": [0, 65535], "enter a curtizan cur": [0, 65535], "a curtizan cur well": [0, 65535], "curtizan cur well met": [0, 65535], "cur well met well": [0, 65535], "well met well met": [0, 65535], "met well met master": [0, 65535], "well met master antipholus": [0, 65535], "met master antipholus i": [0, 65535], "master antipholus i see": [0, 65535], "antipholus i see sir": [0, 65535], "i see sir you": [0, 65535], "see sir you haue": [0, 65535], "sir you haue found": [0, 65535], "you haue found the": [0, 65535], "haue found the gold": [0, 65535], "found the gold smith": [0, 65535], "the gold smith now": [0, 65535], "gold smith now is": [0, 65535], "smith now is that": [0, 65535], "now is that the": [0, 65535], "is that the chaine": [0, 65535], "that the chaine you": [0, 65535], "the chaine you promis'd": [0, 65535], "chaine you promis'd me": [0, 65535], "you promis'd me to": [0, 65535], "promis'd me to day": [0, 65535], "me to day ant": [0, 65535], "to day ant sathan": [0, 65535], "day ant sathan auoide": [0, 65535], "ant sathan auoide i": [0, 65535], "sathan auoide i charge": [0, 65535], "auoide i charge thee": [0, 65535], "i charge thee tempt": [0, 65535], "charge thee tempt me": [0, 65535], "thee tempt me not": [0, 65535], "tempt me not s": [0, 65535], "me not s dro": [0, 65535], "not s dro master": [0, 65535], "s dro master is": [0, 65535], "dro master is this": [0, 65535], "master is this mistris": [0, 65535], "is this mistris sathan": [0, 65535], "this mistris sathan ant": [0, 65535], "mistris sathan ant it": [0, 65535], "sathan ant it is": [0, 65535], "ant it is the": [0, 65535], "it is the diuell": [0, 65535], "is the diuell s": [0, 65535], "the diuell s dro": [0, 65535], "diuell s dro nay": [0, 65535], "s dro nay she": [0, 65535], "dro nay she is": [0, 65535], "nay she is worse": [0, 65535], "she is worse she": [0, 65535], "is worse she is": [0, 65535], "worse she is the": [0, 65535], "she is the diuels": [0, 65535], "is the diuels dam": [0, 65535], "the diuels dam and": [0, 65535], "diuels dam and here": [0, 65535], "dam and here she": [0, 65535], "and here she comes": [0, 65535], "here she comes in": [0, 65535], "she comes in the": [0, 65535], "comes in the habit": [0, 65535], "in the habit of": [0, 65535], "the habit of a": [0, 65535], "habit of a light": [0, 65535], "of a light wench": [0, 65535], "a light wench and": [0, 65535], "light wench and thereof": [0, 65535], "wench and thereof comes": [0, 65535], "and thereof comes that": [0, 65535], "thereof comes that the": [0, 65535], "comes that the wenches": [0, 65535], "that the wenches say": [0, 65535], "the wenches say god": [0, 65535], "wenches say god dam": [0, 65535], "say god dam me": [0, 65535], "god dam me that's": [0, 65535], "dam me that's as": [0, 65535], "me that's as much": [0, 65535], "that's as much to": [0, 65535], "as much to say": [0, 65535], "much to say god": [0, 65535], "to say god make": [0, 65535], "say god make me": [0, 65535], "god make me a": [0, 65535], "make me a light": [0, 65535], "me a light wench": [0, 65535], "a light wench it": [0, 65535], "light wench it is": [0, 65535], "wench it is written": [0, 65535], "it is written they": [0, 65535], "is written they appeare": [0, 65535], "written they appeare to": [0, 65535], "they appeare to men": [0, 65535], "appeare to men like": [0, 65535], "to men like angels": [0, 65535], "men like angels of": [0, 65535], "like angels of light": [0, 65535], "angels of light light": [0, 65535], "of light light is": [0, 65535], "light light is an": [0, 65535], "light is an effect": [0, 65535], "is an effect of": [0, 65535], "an effect of fire": [0, 65535], "effect of fire and": [0, 65535], "of fire and fire": [0, 65535], "fire and fire will": [0, 65535], "and fire will burne": [0, 65535], "fire will burne ergo": [0, 65535], "will burne ergo light": [0, 65535], "burne ergo light wenches": [0, 65535], "ergo light wenches will": [0, 65535], "light wenches will burne": [0, 65535], "wenches will burne come": [0, 65535], "will burne come not": [0, 65535], "burne come not neere": [0, 65535], "come not neere her": [0, 65535], "not neere her cur": [0, 65535], "neere her cur your": [0, 65535], "her cur your man": [0, 65535], "cur your man and": [0, 65535], "your man and you": [0, 65535], "man and you are": [0, 65535], "and you are maruailous": [0, 65535], "you are maruailous merrie": [0, 65535], "are maruailous merrie sir": [0, 65535], "maruailous merrie sir will": [0, 65535], "merrie sir will you": [0, 65535], "sir will you goe": [0, 65535], "will you goe with": [0, 65535], "you goe with me": [0, 65535], "goe with me wee'll": [0, 65535], "with me wee'll mend": [0, 65535], "me wee'll mend our": [0, 65535], "wee'll mend our dinner": [0, 65535], "mend our dinner here": [0, 65535], "our dinner here s": [0, 65535], "dinner here s dro": [0, 65535], "here s dro master": [0, 65535], "s dro master if": [0, 65535], "dro master if do": [0, 65535], "master if do expect": [0, 65535], "if do expect spoon": [0, 65535], "do expect spoon meate": [0, 65535], "expect spoon meate or": [0, 65535], "spoon meate or bespeake": [0, 65535], "meate or bespeake a": [0, 65535], "or bespeake a long": [0, 65535], "bespeake a long spoone": [0, 65535], "a long spoone ant": [0, 65535], "long spoone ant why": [0, 65535], "spoone ant why dromio": [0, 65535], "ant why dromio s": [0, 65535], "why dromio s dro": [0, 65535], "dromio s dro marrie": [0, 65535], "s dro marrie he": [0, 65535], "dro marrie he must": [0, 65535], "marrie he must haue": [0, 65535], "he must haue a": [0, 65535], "must haue a long": [0, 65535], "haue a long spoone": [0, 65535], "a long spoone that": [0, 65535], "long spoone that must": [0, 65535], "spoone that must eate": [0, 65535], "that must eate with": [0, 65535], "must eate with the": [0, 65535], "eate with the diuell": [0, 65535], "with the diuell ant": [0, 65535], "the diuell ant auoid": [0, 65535], "diuell ant auoid then": [0, 65535], "ant auoid then fiend": [0, 65535], "auoid then fiend what": [0, 65535], "then fiend what tel'st": [0, 65535], "fiend what tel'st thou": [0, 65535], "what tel'st thou me": [0, 65535], "tel'st thou me of": [0, 65535], "thou me of supping": [0, 65535], "me of supping thou": [0, 65535], "of supping thou art": [0, 65535], "supping thou art as": [0, 65535], "thou art as you": [0, 65535], "art as you are": [0, 65535], "as you are all": [0, 65535], "you are all a": [0, 65535], "are all a sorceresse": [0, 65535], "all a sorceresse i": [0, 65535], "a sorceresse i coniure": [0, 65535], "sorceresse i coniure thee": [0, 65535], "i coniure thee to": [0, 65535], "coniure thee to leaue": [0, 65535], "thee to leaue me": [0, 65535], "to leaue me and": [0, 65535], "leaue me and be": [0, 65535], "me and be gon": [0, 65535], "and be gon cur": [0, 65535], "be gon cur giue": [0, 65535], "gon cur giue me": [0, 65535], "cur giue me the": [0, 65535], "giue me the ring": [0, 65535], "me the ring of": [0, 65535], "the ring of mine": [0, 65535], "ring of mine you": [0, 65535], "of mine you had": [0, 65535], "mine you had at": [0, 65535], "you had at dinner": [0, 65535], "had at dinner or": [0, 65535], "at dinner or for": [0, 65535], "dinner or for my": [0, 65535], "or for my diamond": [0, 65535], "for my diamond the": [0, 65535], "my diamond the chaine": [0, 65535], "diamond the chaine you": [0, 65535], "chaine you promis'd and": [0, 65535], "you promis'd and ile": [0, 65535], "promis'd and ile be": [0, 65535], "and ile be gone": [0, 65535], "ile be gone sir": [0, 65535], "be gone sir and": [0, 65535], "gone sir and not": [0, 65535], "sir and not trouble": [0, 65535], "and not trouble you": [0, 65535], "not trouble you s": [0, 65535], "trouble you s dro": [0, 65535], "you s dro some": [0, 65535], "s dro some diuels": [0, 65535], "dro some diuels aske": [0, 65535], "some diuels aske but": [0, 65535], "diuels aske but the": [0, 65535], "aske but the parings": [0, 65535], "but the parings of": [0, 65535], "the parings of ones": [0, 65535], "parings of ones naile": [0, 65535], "of ones naile a": [0, 65535], "ones naile a rush": [0, 65535], "naile a rush a": [0, 65535], "a rush a haire": [0, 65535], "rush a haire a": [0, 65535], "a haire a drop": [0, 65535], "haire a drop of": [0, 65535], "a drop of blood": [0, 65535], "drop of blood a": [0, 65535], "of blood a pin": [0, 65535], "blood a pin a": [0, 65535], "a pin a nut": [0, 65535], "pin a nut a": [0, 65535], "a nut a cherrie": [0, 65535], "nut a cherrie stone": [0, 65535], "a cherrie stone but": [0, 65535], "cherrie stone but she": [0, 65535], "stone but she more": [0, 65535], "but she more couetous": [0, 65535], "she more couetous wold": [0, 65535], "more couetous wold haue": [0, 65535], "couetous wold haue a": [0, 65535], "wold haue a chaine": [0, 65535], "haue a chaine master": [0, 65535], "a chaine master be": [0, 65535], "chaine master be wise": [0, 65535], "master be wise and": [0, 65535], "be wise and if": [0, 65535], "wise and if you": [0, 65535], "and if you giue": [0, 65535], "if you giue it": [0, 65535], "you giue it her": [0, 65535], "giue it her the": [0, 65535], "it her the diuell": [0, 65535], "her the diuell will": [0, 65535], "the diuell will shake": [0, 65535], "diuell will shake her": [0, 65535], "will shake her chaine": [0, 65535], "shake her chaine and": [0, 65535], "her chaine and fright": [0, 65535], "chaine and fright vs": [0, 65535], "and fright vs with": [0, 65535], "fright vs with it": [0, 65535], "vs with it cur": [0, 65535], "with it cur i": [0, 65535], "it cur i pray": [0, 65535], "cur i pray you": [0, 65535], "pray you sir my": [0, 65535], "you sir my ring": [0, 65535], "sir my ring or": [0, 65535], "my ring or else": [0, 65535], "ring or else the": [0, 65535], "or else the chaine": [0, 65535], "else the chaine i": [0, 65535], "the chaine i hope": [0, 65535], "chaine i hope you": [0, 65535], "i hope you do": [0, 65535], "hope you do not": [0, 65535], "you do not meane": [0, 65535], "do not meane to": [0, 65535], "not meane to cheate": [0, 65535], "meane to cheate me": [0, 65535], "to cheate me so": [0, 65535], "cheate me so ant": [0, 65535], "me so ant auant": [0, 65535], "so ant auant thou": [0, 65535], "ant auant thou witch": [0, 65535], "auant thou witch come": [0, 65535], "thou witch come dromio": [0, 65535], "witch come dromio let": [0, 65535], "come dromio let vs": [0, 65535], "dromio let vs go": [0, 65535], "let vs go s": [0, 65535], "vs go s dro": [0, 65535], "go s dro flie": [0, 65535], "s dro flie pride": [0, 65535], "dro flie pride saies": [0, 65535], "flie pride saies the": [0, 65535], "pride saies the pea": [0, 65535], "saies the pea cocke": [0, 65535], "the pea cocke mistris": [0, 65535], "pea cocke mistris that": [0, 65535], "cocke mistris that you": [0, 65535], "mistris that you know": [0, 65535], "that you know exit": [0, 65535], "you know exit cur": [0, 65535], "know exit cur now": [0, 65535], "exit cur now out": [0, 65535], "cur now out of": [0, 65535], "now out of doubt": [0, 65535], "out of doubt antipholus": [0, 65535], "of doubt antipholus is": [0, 65535], "doubt antipholus is mad": [0, 65535], "antipholus is mad else": [0, 65535], "is mad else would": [0, 65535], "mad else would he": [0, 65535], "else would he neuer": [0, 65535], "would he neuer so": [0, 65535], "he neuer so demeane": [0, 65535], "neuer so demeane himselfe": [0, 65535], "so demeane himselfe a": [0, 65535], "demeane himselfe a ring": [0, 65535], "himselfe a ring he": [0, 65535], "a ring he hath": [0, 65535], "ring he hath of": [0, 65535], "he hath of mine": [0, 65535], "hath of mine worth": [0, 65535], "of mine worth fortie": [0, 65535], "mine worth fortie duckets": [0, 65535], "worth fortie duckets and": [0, 65535], "fortie duckets and for": [0, 65535], "duckets and for the": [0, 65535], "and for the same": [0, 65535], "for the same he": [0, 65535], "the same he promis'd": [0, 65535], "same he promis'd me": [0, 65535], "me a chaine both": [0, 65535], "a chaine both one": [0, 65535], "chaine both one and": [0, 65535], "both one and other": [0, 65535], "one and other he": [0, 65535], "and other he denies": [0, 65535], "other he denies me": [0, 65535], "he denies me now": [0, 65535], "denies me now the": [0, 65535], "me now the reason": [0, 65535], "now the reason that": [0, 65535], "the reason that i": [0, 65535], "reason that i gather": [0, 65535], "that i gather he": [0, 65535], "i gather he is": [0, 65535], "gather he is mad": [0, 65535], "he is mad besides": [0, 65535], "is mad besides this": [0, 65535], "mad besides this present": [0, 65535], "besides this present instance": [0, 65535], "this present instance of": [0, 65535], "present instance of his": [0, 65535], "instance of his rage": [0, 65535], "of his rage is": [0, 65535], "his rage is a": [0, 65535], "rage is a mad": [0, 65535], "is a mad tale": [0, 65535], "a mad tale he": [0, 65535], "mad tale he told": [0, 65535], "tale he told to": [0, 65535], "he told to day": [0, 65535], "told to day at": [0, 65535], "day at dinner of": [0, 65535], "at dinner of his": [0, 65535], "dinner of his owne": [0, 65535], "of his owne doores": [0, 65535], "his owne doores being": [0, 65535], "owne doores being shut": [0, 65535], "doores being shut against": [0, 65535], "being shut against his": [0, 65535], "shut against his entrance": [0, 65535], "against his entrance belike": [0, 65535], "his entrance belike his": [0, 65535], "entrance belike his wife": [0, 65535], "belike his wife acquainted": [0, 65535], "his wife acquainted with": [0, 65535], "wife acquainted with his": [0, 65535], "acquainted with his fits": [0, 65535], "with his fits on": [0, 65535], "his fits on purpose": [0, 65535], "fits on purpose shut": [0, 65535], "on purpose shut the": [0, 65535], "purpose shut the doores": [0, 65535], "shut the doores against": [0, 65535], "the doores against his": [0, 65535], "doores against his way": [0, 65535], "against his way my": [0, 65535], "his way my way": [0, 65535], "way my way is": [0, 65535], "my way is now": [0, 65535], "way is now to": [0, 65535], "is now to hie": [0, 65535], "now to hie home": [0, 65535], "to hie home to": [0, 65535], "hie home to his": [0, 65535], "home to his house": [0, 65535], "to his house and": [0, 65535], "his house and tell": [0, 65535], "house and tell his": [0, 65535], "and tell his wife": [0, 65535], "tell his wife that": [0, 65535], "his wife that being": [0, 65535], "wife that being lunaticke": [0, 65535], "that being lunaticke he": [0, 65535], "being lunaticke he rush'd": [0, 65535], "lunaticke he rush'd into": [0, 65535], "he rush'd into my": [0, 65535], "rush'd into my house": [0, 65535], "into my house and": [0, 65535], "my house and tooke": [0, 65535], "house and tooke perforce": [0, 65535], "and tooke perforce my": [0, 65535], "tooke perforce my ring": [0, 65535], "perforce my ring away": [0, 65535], "my ring away this": [0, 65535], "ring away this course": [0, 65535], "away this course i": [0, 65535], "this course i fittest": [0, 65535], "course i fittest choose": [0, 65535], "i fittest choose for": [0, 65535], "fittest choose for fortie": [0, 65535], "choose for fortie duckets": [0, 65535], "for fortie duckets is": [0, 65535], "fortie duckets is too": [0, 65535], "duckets is too much": [0, 65535], "is too much to": [0, 65535], "too much to loose": [0, 65535], "much to loose enter": [0, 65535], "to loose enter antipholus": [0, 65535], "loose enter antipholus ephes": [0, 65535], "enter antipholus ephes with": [0, 65535], "antipholus ephes with a": [0, 65535], "ephes with a iailor": [0, 65535], "with a iailor an": [0, 65535], "a iailor an feare": [0, 65535], "iailor an feare me": [0, 65535], "an feare me not": [0, 65535], "feare me not man": [0, 65535], "me not man i": [0, 65535], "not man i will": [0, 65535], "man i will not": [0, 65535], "i will not breake": [0, 65535], "will not breake away": [0, 65535], "not breake away ile": [0, 65535], "breake away ile giue": [0, 65535], "away ile giue thee": [0, 65535], "ile giue thee ere": [0, 65535], "giue thee ere i": [0, 65535], "thee ere i leaue": [0, 65535], "ere i leaue thee": [0, 65535], "i leaue thee so": [0, 65535], "leaue thee so much": [0, 65535], "thee so much money": [0, 65535], "so much money to": [0, 65535], "much money to warrant": [0, 65535], "money to warrant thee": [0, 65535], "to warrant thee as": [0, 65535], "warrant thee as i": [0, 65535], "thee as i am": [0, 65535], "as i am rested": [0, 65535], "i am rested for": [0, 65535], "am rested for my": [0, 65535], "rested for my wife": [0, 65535], "for my wife is": [0, 65535], "my wife is in": [0, 65535], "wife is in a": [0, 65535], "is in a wayward": [0, 65535], "in a wayward moode": [0, 65535], "a wayward moode to": [0, 65535], "wayward moode to day": [0, 65535], "moode to day and": [0, 65535], "to day and will": [0, 65535], "day and will not": [0, 65535], "and will not lightly": [0, 65535], "will not lightly trust": [0, 65535], "not lightly trust the": [0, 65535], "lightly trust the messenger": [0, 65535], "trust the messenger that": [0, 65535], "the messenger that i": [0, 65535], "messenger that i should": [0, 65535], "that i should be": [0, 65535], "i should be attach'd": [0, 65535], "should be attach'd in": [0, 65535], "be attach'd in ephesus": [0, 65535], "attach'd in ephesus i": [0, 65535], "in ephesus i tell": [0, 65535], "ephesus i tell you": [0, 65535], "i tell you 'twill": [0, 65535], "tell you 'twill sound": [0, 65535], "you 'twill sound harshly": [0, 65535], "'twill sound harshly in": [0, 65535], "sound harshly in her": [0, 65535], "harshly in her eares": [0, 65535], "in her eares enter": [0, 65535], "her eares enter dromio": [0, 65535], "eares enter dromio eph": [0, 65535], "enter dromio eph with": [0, 65535], "dromio eph with a": [0, 65535], "eph with a ropes": [0, 65535], "with a ropes end": [0, 65535], "a ropes end heere": [0, 65535], "ropes end heere comes": [0, 65535], "end heere comes my": [0, 65535], "heere comes my man": [0, 65535], "comes my man i": [0, 65535], "my man i thinke": [0, 65535], "man i thinke he": [0, 65535], "i thinke he brings": [0, 65535], "thinke he brings the": [0, 65535], "he brings the monie": [0, 65535], "brings the monie how": [0, 65535], "the monie how now": [0, 65535], "monie how now sir": [0, 65535], "how now sir haue": [0, 65535], "now sir haue you": [0, 65535], "sir haue you that": [0, 65535], "haue you that i": [0, 65535], "you that i sent": [0, 65535], "that i sent you": [0, 65535], "i sent you for": [0, 65535], "sent you for e": [0, 65535], "you for e dro": [0, 65535], "for e dro here's": [0, 65535], "e dro here's that": [0, 65535], "dro here's that i": [0, 65535], "here's that i warrant": [0, 65535], "that i warrant you": [0, 65535], "i warrant you will": [0, 65535], "warrant you will pay": [0, 65535], "you will pay them": [0, 65535], "will pay them all": [0, 65535], "pay them all anti": [0, 65535], "them all anti but": [0, 65535], "all anti but where's": [0, 65535], "anti but where's the": [0, 65535], "but where's the money": [0, 65535], "where's the money e": [0, 65535], "the money e dro": [0, 65535], "money e dro why": [0, 65535], "e dro why sir": [0, 65535], "why sir i gaue": [0, 65535], "sir i gaue the": [0, 65535], "i gaue the monie": [0, 65535], "gaue the monie for": [0, 65535], "the monie for the": [0, 65535], "monie for the rope": [0, 65535], "for the rope ant": [0, 65535], "the rope ant fiue": [0, 65535], "rope ant fiue hundred": [0, 65535], "ant fiue hundred duckets": [0, 65535], "fiue hundred duckets villaine": [0, 65535], "hundred duckets villaine for": [0, 65535], "duckets villaine for a": [0, 65535], "villaine for a rope": [0, 65535], "for a rope e": [0, 65535], "a rope e dro": [0, 65535], "rope e dro ile": [0, 65535], "e dro ile serue": [0, 65535], "dro ile serue you": [0, 65535], "ile serue you sir": [0, 65535], "serue you sir fiue": [0, 65535], "you sir fiue hundred": [0, 65535], "sir fiue hundred at": [0, 65535], "fiue hundred at the": [0, 65535], "hundred at the rate": [0, 65535], "at the rate ant": [0, 65535], "the rate ant to": [0, 65535], "rate ant to what": [0, 65535], "ant to what end": [0, 65535], "to what end did": [0, 65535], "what end did i": [0, 65535], "end did i bid": [0, 65535], "did i bid thee": [0, 65535], "i bid thee hie": [0, 65535], "bid thee hie thee": [0, 65535], "thee hie thee home": [0, 65535], "hie thee home e": [0, 65535], "thee home e dro": [0, 65535], "home e dro to": [0, 65535], "e dro to a": [0, 65535], "dro to a ropes": [0, 65535], "to a ropes end": [0, 65535], "a ropes end sir": [0, 65535], "ropes end sir and": [0, 65535], "end sir and to": [0, 65535], "sir and to that": [0, 65535], "and to that end": [0, 65535], "to that end am": [0, 65535], "that end am i": [0, 65535], "end am i re": [0, 65535], "am i re turn'd": [0, 65535], "i re turn'd ant": [0, 65535], "re turn'd ant and": [0, 65535], "turn'd ant and to": [0, 65535], "ant and to that": [0, 65535], "to that end sir": [0, 65535], "that end sir i": [0, 65535], "end sir i will": [0, 65535], "sir i will welcome": [0, 65535], "i will welcome you": [0, 65535], "will welcome you offi": [0, 65535], "welcome you offi good": [0, 65535], "you offi good sir": [0, 65535], "offi good sir be": [0, 65535], "good sir be patient": [0, 65535], "sir be patient e": [0, 65535], "be patient e dro": [0, 65535], "patient e dro nay": [0, 65535], "e dro nay 'tis": [0, 65535], "dro nay 'tis for": [0, 65535], "nay 'tis for me": [0, 65535], "'tis for me to": [0, 65535], "me to be patient": [0, 65535], "to be patient i": [0, 65535], "be patient i am": [0, 65535], "patient i am in": [0, 65535], "i am in aduersitie": [0, 65535], "am in aduersitie offi": [0, 65535], "in aduersitie offi good": [0, 65535], "aduersitie offi good now": [0, 65535], "offi good now hold": [0, 65535], "good now hold thy": [0, 65535], "now hold thy tongue": [0, 65535], "hold thy tongue e": [0, 65535], "thy tongue e dro": [0, 65535], "tongue e dro nay": [0, 65535], "e dro nay rather": [0, 65535], "dro nay rather perswade": [0, 65535], "nay rather perswade him": [0, 65535], "rather perswade him to": [0, 65535], "perswade him to hold": [0, 65535], "him to hold his": [0, 65535], "to hold his hands": [0, 65535], "hold his hands anti": [0, 65535], "his hands anti thou": [0, 65535], "hands anti thou whoreson": [0, 65535], "anti thou whoreson senselesse": [0, 65535], "thou whoreson senselesse villaine": [0, 65535], "whoreson senselesse villaine e": [0, 65535], "senselesse villaine e dro": [0, 65535], "e dro i would": [0, 65535], "dro i would i": [0, 65535], "i would i were": [0, 65535], "would i were senselesse": [0, 65535], "i were senselesse sir": [0, 65535], "were senselesse sir that": [0, 65535], "senselesse sir that i": [0, 65535], "sir that i might": [0, 65535], "that i might not": [0, 65535], "i might not feele": [0, 65535], "might not feele your": [0, 65535], "not feele your blowes": [0, 65535], "feele your blowes anti": [0, 65535], "your blowes anti thou": [0, 65535], "blowes anti thou art": [0, 65535], "anti thou art sensible": [0, 65535], "thou art sensible in": [0, 65535], "art sensible in nothing": [0, 65535], "sensible in nothing but": [0, 65535], "in nothing but blowes": [0, 65535], "nothing but blowes and": [0, 65535], "but blowes and so": [0, 65535], "blowes and so is": [0, 65535], "and so is an": [0, 65535], "so is an asse": [0, 65535], "is an asse e": [0, 65535], "asse e dro i": [0, 65535], "e dro i am": [0, 65535], "am an asse indeede": [0, 65535], "an asse indeede you": [0, 65535], "asse indeede you may": [0, 65535], "indeede you may prooue": [0, 65535], "you may prooue it": [0, 65535], "may prooue it by": [0, 65535], "prooue it by my": [0, 65535], "it by my long": [0, 65535], "by my long eares": [0, 65535], "my long eares i": [0, 65535], "long eares i haue": [0, 65535], "eares i haue serued": [0, 65535], "i haue serued him": [0, 65535], "haue serued him from": [0, 65535], "serued him from the": [0, 65535], "him from the houre": [0, 65535], "from the houre of": [0, 65535], "the houre of my": [0, 65535], "houre of my natiuitie": [0, 65535], "of my natiuitie to": [0, 65535], "my natiuitie to this": [0, 65535], "natiuitie to this instant": [0, 65535], "to this instant and": [0, 65535], "this instant and haue": [0, 65535], "instant and haue nothing": [0, 65535], "and haue nothing at": [0, 65535], "haue nothing at his": [0, 65535], "nothing at his hands": [0, 65535], "at his hands for": [0, 65535], "his hands for my": [0, 65535], "hands for my seruice": [0, 65535], "for my seruice but": [0, 65535], "my seruice but blowes": [0, 65535], "seruice but blowes when": [0, 65535], "but blowes when i": [0, 65535], "blowes when i am": [0, 65535], "when i am cold": [0, 65535], "i am cold he": [0, 65535], "am cold he heates": [0, 65535], "cold he heates me": [0, 65535], "he heates me with": [0, 65535], "heates me with beating": [0, 65535], "me with beating when": [0, 65535], "with beating when i": [0, 65535], "beating when i am": [0, 65535], "when i am warme": [0, 65535], "i am warme he": [0, 65535], "am warme he cooles": [0, 65535], "warme he cooles me": [0, 65535], "he cooles me with": [0, 65535], "cooles me with beating": [0, 65535], "me with beating i": [0, 65535], "with beating i am": [0, 65535], "beating i am wak'd": [0, 65535], "i am wak'd with": [0, 65535], "am wak'd with it": [0, 65535], "wak'd with it when": [0, 65535], "with it when i": [0, 65535], "it when i sleepe": [0, 65535], "when i sleepe rais'd": [0, 65535], "i sleepe rais'd with": [0, 65535], "sleepe rais'd with it": [0, 65535], "rais'd with it when": [0, 65535], "it when i sit": [0, 65535], "when i sit driuen": [0, 65535], "i sit driuen out": [0, 65535], "sit driuen out of": [0, 65535], "driuen out of doores": [0, 65535], "out of doores with": [0, 65535], "of doores with it": [0, 65535], "doores with it when": [0, 65535], "it when i goe": [0, 65535], "when i goe from": [0, 65535], "i goe from home": [0, 65535], "goe from home welcom'd": [0, 65535], "from home welcom'd home": [0, 65535], "home welcom'd home with": [0, 65535], "welcom'd home with it": [0, 65535], "home with it when": [0, 65535], "it when i returne": [0, 65535], "when i returne nay": [0, 65535], "i returne nay i": [0, 65535], "returne nay i beare": [0, 65535], "nay i beare it": [0, 65535], "i beare it on": [0, 65535], "beare it on my": [0, 65535], "it on my shoulders": [0, 65535], "on my shoulders as": [0, 65535], "my shoulders as a": [0, 65535], "shoulders as a begger": [0, 65535], "as a begger woont": [0, 65535], "a begger woont her": [0, 65535], "begger woont her brat": [0, 65535], "woont her brat and": [0, 65535], "her brat and i": [0, 65535], "brat and i thinke": [0, 65535], "and i thinke when": [0, 65535], "i thinke when he": [0, 65535], "thinke when he hath": [0, 65535], "when he hath lam'd": [0, 65535], "he hath lam'd me": [0, 65535], "hath lam'd me i": [0, 65535], "lam'd me i shall": [0, 65535], "me i shall begge": [0, 65535], "i shall begge with": [0, 65535], "shall begge with it": [0, 65535], "begge with it from": [0, 65535], "with it from doore": [0, 65535], "it from doore to": [0, 65535], "from doore to doore": [0, 65535], "doore to doore enter": [0, 65535], "to doore enter adriana": [0, 65535], "doore enter adriana luciana": [0, 65535], "enter adriana luciana courtizan": [0, 65535], "adriana luciana courtizan and": [0, 65535], "luciana courtizan and a": [0, 65535], "courtizan and a schoolemaster": [0, 65535], "and a schoolemaster call'd": [0, 65535], "a schoolemaster call'd pinch": [0, 65535], "schoolemaster call'd pinch ant": [0, 65535], "call'd pinch ant come": [0, 65535], "pinch ant come goe": [0, 65535], "ant come goe along": [0, 65535], "come goe along my": [0, 65535], "goe along my wife": [0, 65535], "along my wife is": [0, 65535], "my wife is comming": [0, 65535], "wife is comming yonder": [0, 65535], "is comming yonder e": [0, 65535], "comming yonder e dro": [0, 65535], "yonder e dro mistris": [0, 65535], "e dro mistris respice": [0, 65535], "dro mistris respice finem": [0, 65535], "mistris respice finem respect": [0, 65535], "respice finem respect your": [0, 65535], "finem respect your end": [0, 65535], "respect your end or": [0, 65535], "your end or rather": [0, 65535], "end or rather the": [0, 65535], "or rather the prophesie": [0, 65535], "rather the prophesie like": [0, 65535], "the prophesie like the": [0, 65535], "prophesie like the parrat": [0, 65535], "like the parrat beware": [0, 65535], "the parrat beware the": [0, 65535], "parrat beware the ropes": [0, 65535], "beware the ropes end": [0, 65535], "the ropes end anti": [0, 65535], "ropes end anti wilt": [0, 65535], "end anti wilt thou": [0, 65535], "anti wilt thou still": [0, 65535], "wilt thou still talke": [0, 65535], "thou still talke beats": [0, 65535], "still talke beats dro": [0, 65535], "talke beats dro curt": [0, 65535], "beats dro curt how": [0, 65535], "dro curt how say": [0, 65535], "curt how say you": [0, 65535], "how say you now": [0, 65535], "say you now is": [0, 65535], "you now is not": [0, 65535], "now is not your": [0, 65535], "is not your husband": [0, 65535], "not your husband mad": [0, 65535], "your husband mad adri": [0, 65535], "husband mad adri his": [0, 65535], "mad adri his inciuility": [0, 65535], "adri his inciuility confirmes": [0, 65535], "his inciuility confirmes no": [0, 65535], "inciuility confirmes no lesse": [0, 65535], "confirmes no lesse good": [0, 65535], "no lesse good doctor": [0, 65535], "lesse good doctor pinch": [0, 65535], "good doctor pinch you": [0, 65535], "doctor pinch you are": [0, 65535], "pinch you are a": [0, 65535], "you are a coniurer": [0, 65535], "are a coniurer establish": [0, 65535], "a coniurer establish him": [0, 65535], "coniurer establish him in": [0, 65535], "establish him in his": [0, 65535], "him in his true": [0, 65535], "in his true sence": [0, 65535], "his true sence againe": [0, 65535], "true sence againe and": [0, 65535], "sence againe and i": [0, 65535], "againe and i will": [0, 65535], "and i will please": [0, 65535], "i will please you": [0, 65535], "will please you what": [0, 65535], "please you what you": [0, 65535], "you what you will": [0, 65535], "what you will demand": [0, 65535], "you will demand luc": [0, 65535], "will demand luc alas": [0, 65535], "demand luc alas how": [0, 65535], "luc alas how fiery": [0, 65535], "alas how fiery and": [0, 65535], "how fiery and how": [0, 65535], "fiery and how sharpe": [0, 65535], "and how sharpe he": [0, 65535], "how sharpe he lookes": [0, 65535], "sharpe he lookes cur": [0, 65535], "he lookes cur marke": [0, 65535], "lookes cur marke how": [0, 65535], "cur marke how he": [0, 65535], "marke how he trembles": [0, 65535], "how he trembles in": [0, 65535], "he trembles in his": [0, 65535], "trembles in his extasie": [0, 65535], "in his extasie pinch": [0, 65535], "his extasie pinch giue": [0, 65535], "extasie pinch giue me": [0, 65535], "pinch giue me your": [0, 65535], "giue me your hand": [0, 65535], "me your hand and": [0, 65535], "your hand and let": [0, 65535], "hand and let mee": [0, 65535], "and let mee feele": [0, 65535], "let mee feele your": [0, 65535], "mee feele your pulse": [0, 65535], "feele your pulse ant": [0, 65535], "your pulse ant there": [0, 65535], "pulse ant there is": [0, 65535], "ant there is my": [0, 65535], "there is my hand": [0, 65535], "is my hand and": [0, 65535], "my hand and let": [0, 65535], "hand and let it": [0, 65535], "and let it feele": [0, 65535], "let it feele your": [0, 65535], "it feele your eare": [0, 65535], "feele your eare pinch": [0, 65535], "your eare pinch i": [0, 65535], "eare pinch i charge": [0, 65535], "pinch i charge thee": [0, 65535], "i charge thee sathan": [0, 65535], "charge thee sathan hous'd": [0, 65535], "thee sathan hous'd within": [0, 65535], "sathan hous'd within this": [0, 65535], "hous'd within this man": [0, 65535], "within this man to": [0, 65535], "this man to yeeld": [0, 65535], "man to yeeld possession": [0, 65535], "to yeeld possession to": [0, 65535], "yeeld possession to my": [0, 65535], "possession to my holie": [0, 65535], "to my holie praiers": [0, 65535], "my holie praiers and": [0, 65535], "holie praiers and to": [0, 65535], "praiers and to thy": [0, 65535], "and to thy state": [0, 65535], "to thy state of": [0, 65535], "thy state of darknesse": [0, 65535], "state of darknesse hie": [0, 65535], "of darknesse hie thee": [0, 65535], "darknesse hie thee straight": [0, 65535], "hie thee straight i": [0, 65535], "thee straight i coniure": [0, 65535], "straight i coniure thee": [0, 65535], "i coniure thee by": [0, 65535], "coniure thee by all": [0, 65535], "thee by all the": [0, 65535], "by all the saints": [0, 65535], "all the saints in": [0, 65535], "the saints in heauen": [0, 65535], "saints in heauen anti": [0, 65535], "in heauen anti peace": [0, 65535], "heauen anti peace doting": [0, 65535], "anti peace doting wizard": [0, 65535], "peace doting wizard peace": [0, 65535], "doting wizard peace i": [0, 65535], "wizard peace i am": [0, 65535], "peace i am not": [0, 65535], "i am not mad": [0, 65535], "am not mad adr": [0, 65535], "not mad adr oh": [0, 65535], "mad adr oh that": [0, 65535], "adr oh that thou": [0, 65535], "oh that thou wer't": [0, 65535], "that thou wer't not": [0, 65535], "thou wer't not poore": [0, 65535], "wer't not poore distressed": [0, 65535], "not poore distressed soule": [0, 65535], "poore distressed soule anti": [0, 65535], "distressed soule anti you": [0, 65535], "soule anti you minion": [0, 65535], "anti you minion you": [0, 65535], "you minion you are": [0, 65535], "minion you are these": [0, 65535], "you are these your": [0, 65535], "are these your customers": [0, 65535], "these your customers did": [0, 65535], "your customers did this": [0, 65535], "customers did this companion": [0, 65535], "did this companion with": [0, 65535], "this companion with the": [0, 65535], "companion with the saffron": [0, 65535], "with the saffron face": [0, 65535], "the saffron face reuell": [0, 65535], "saffron face reuell and": [0, 65535], "face reuell and feast": [0, 65535], "reuell and feast it": [0, 65535], "and feast it at": [0, 65535], "feast it at my": [0, 65535], "it at my house": [0, 65535], "at my house to": [0, 65535], "my house to day": [0, 65535], "house to day whil'st": [0, 65535], "to day whil'st vpon": [0, 65535], "day whil'st vpon me": [0, 65535], "whil'st vpon me the": [0, 65535], "vpon me the guiltie": [0, 65535], "me the guiltie doores": [0, 65535], "the guiltie doores were": [0, 65535], "guiltie doores were shut": [0, 65535], "doores were shut and": [0, 65535], "were shut and i": [0, 65535], "shut and i denied": [0, 65535], "and i denied to": [0, 65535], "i denied to enter": [0, 65535], "denied to enter in": [0, 65535], "to enter in my": [0, 65535], "enter in my house": [0, 65535], "in my house adr": [0, 65535], "my house adr o": [0, 65535], "house adr o husband": [0, 65535], "adr o husband god": [0, 65535], "o husband god doth": [0, 65535], "husband god doth know": [0, 65535], "god doth know you": [0, 65535], "doth know you din'd": [0, 65535], "know you din'd at": [0, 65535], "you din'd at home": [0, 65535], "din'd at home where": [0, 65535], "at home where would": [0, 65535], "home where would you": [0, 65535], "where would you had": [0, 65535], "would you had remain'd": [0, 65535], "you had remain'd vntill": [0, 65535], "had remain'd vntill this": [0, 65535], "remain'd vntill this time": [0, 65535], "vntill this time free": [0, 65535], "this time free from": [0, 65535], "time free from these": [0, 65535], "free from these slanders": [0, 65535], "from these slanders and": [0, 65535], "these slanders and this": [0, 65535], "slanders and this open": [0, 65535], "and this open shame": [0, 65535], "this open shame anti": [0, 65535], "open shame anti din'd": [0, 65535], "shame anti din'd at": [0, 65535], "anti din'd at home": [0, 65535], "din'd at home thou": [0, 65535], "at home thou villaine": [0, 65535], "home thou villaine what": [0, 65535], "thou villaine what sayest": [0, 65535], "villaine what sayest thou": [0, 65535], "what sayest thou dro": [0, 65535], "sayest thou dro sir": [0, 65535], "thou dro sir sooth": [0, 65535], "dro sir sooth to": [0, 65535], "sir sooth to say": [0, 65535], "sooth to say you": [0, 65535], "to say you did": [0, 65535], "say you did not": [0, 65535], "you did not dine": [0, 65535], "did not dine at": [0, 65535], "not dine at home": [0, 65535], "dine at home ant": [0, 65535], "at home ant were": [0, 65535], "home ant were not": [0, 65535], "ant were not my": [0, 65535], "were not my doores": [0, 65535], "not my doores lockt": [0, 65535], "my doores lockt vp": [0, 65535], "doores lockt vp and": [0, 65535], "lockt vp and i": [0, 65535], "vp and i shut": [0, 65535], "and i shut out": [0, 65535], "i shut out dro": [0, 65535], "shut out dro perdie": [0, 65535], "out dro perdie your": [0, 65535], "dro perdie your doores": [0, 65535], "perdie your doores were": [0, 65535], "your doores were lockt": [0, 65535], "doores were lockt and": [0, 65535], "were lockt and you": [0, 65535], "lockt and you shut": [0, 65535], "and you shut out": [0, 65535], "you shut out anti": [0, 65535], "shut out anti and": [0, 65535], "out anti and did": [0, 65535], "anti and did not": [0, 65535], "and did not she": [0, 65535], "did not she her": [0, 65535], "not she her selfe": [0, 65535], "she her selfe reuile": [0, 65535], "her selfe reuile me": [0, 65535], "selfe reuile me there": [0, 65535], "reuile me there dro": [0, 65535], "me there dro sans": [0, 65535], "there dro sans fable": [0, 65535], "dro sans fable she": [0, 65535], "sans fable she her": [0, 65535], "fable she her selfe": [0, 65535], "she her selfe reuil'd": [0, 65535], "her selfe reuil'd you": [0, 65535], "selfe reuil'd you there": [0, 65535], "reuil'd you there anti": [0, 65535], "you there anti did": [0, 65535], "there anti did not": [0, 65535], "anti did not her": [0, 65535], "did not her kitchen": [0, 65535], "not her kitchen maide": [0, 65535], "her kitchen maide raile": [0, 65535], "kitchen maide raile taunt": [0, 65535], "maide raile taunt and": [0, 65535], "raile taunt and scorne": [0, 65535], "taunt and scorne me": [0, 65535], "and scorne me dro": [0, 65535], "scorne me dro certis": [0, 65535], "me dro certis she": [0, 65535], "dro certis she did": [0, 65535], "certis she did the": [0, 65535], "she did the kitchin": [0, 65535], "did the kitchin vestall": [0, 65535], "the kitchin vestall scorn'd": [0, 65535], "kitchin vestall scorn'd you": [0, 65535], "vestall scorn'd you ant": [0, 65535], "scorn'd you ant and": [0, 65535], "you ant and did": [0, 65535], "ant and did not": [0, 65535], "and did not i": [0, 65535], "did not i in": [0, 65535], "not i in rage": [0, 65535], "i in rage depart": [0, 65535], "in rage depart from": [0, 65535], "rage depart from thence": [0, 65535], "depart from thence dro": [0, 65535], "from thence dro in": [0, 65535], "thence dro in veritie": [0, 65535], "dro in veritie you": [0, 65535], "in veritie you did": [0, 65535], "veritie you did my": [0, 65535], "you did my bones": [0, 65535], "did my bones beares": [0, 65535], "my bones beares witnesse": [0, 65535], "bones beares witnesse that": [0, 65535], "beares witnesse that since": [0, 65535], "witnesse that since haue": [0, 65535], "that since haue felt": [0, 65535], "since haue felt the": [0, 65535], "haue felt the vigor": [0, 65535], "felt the vigor of": [0, 65535], "the vigor of his": [0, 65535], "vigor of his rage": [0, 65535], "of his rage adr": [0, 65535], "his rage adr is't": [0, 65535], "rage adr is't good": [0, 65535], "adr is't good to": [0, 65535], "is't good to sooth": [0, 65535], "good to sooth him": [0, 65535], "to sooth him in": [0, 65535], "sooth him in these": [0, 65535], "him in these contraries": [0, 65535], "in these contraries pinch": [0, 65535], "these contraries pinch it": [0, 65535], "contraries pinch it is": [0, 65535], "pinch it is no": [0, 65535], "it is no shame": [0, 65535], "is no shame the": [0, 65535], "no shame the fellow": [0, 65535], "shame the fellow finds": [0, 65535], "the fellow finds his": [0, 65535], "fellow finds his vaine": [0, 65535], "finds his vaine and": [0, 65535], "his vaine and yeelding": [0, 65535], "vaine and yeelding to": [0, 65535], "and yeelding to him": [0, 65535], "yeelding to him humors": [0, 65535], "to him humors well": [0, 65535], "him humors well his": [0, 65535], "humors well his frensie": [0, 65535], "well his frensie ant": [0, 65535], "his frensie ant thou": [0, 65535], "frensie ant thou hast": [0, 65535], "ant thou hast subborn'd": [0, 65535], "thou hast subborn'd the": [0, 65535], "hast subborn'd the goldsmith": [0, 65535], "subborn'd the goldsmith to": [0, 65535], "the goldsmith to arrest": [0, 65535], "goldsmith to arrest mee": [0, 65535], "to arrest mee adr": [0, 65535], "arrest mee adr alas": [0, 65535], "mee adr alas i": [0, 65535], "adr alas i sent": [0, 65535], "alas i sent you": [0, 65535], "sent you monie to": [0, 65535], "you monie to redeeme": [0, 65535], "monie to redeeme you": [0, 65535], "to redeeme you by": [0, 65535], "redeeme you by dromio": [0, 65535], "you by dromio heere": [0, 65535], "by dromio heere who": [0, 65535], "dromio heere who came": [0, 65535], "heere who came in": [0, 65535], "who came in hast": [0, 65535], "came in hast for": [0, 65535], "in hast for it": [0, 65535], "hast for it dro": [0, 65535], "for it dro monie": [0, 65535], "it dro monie by": [0, 65535], "dro monie by me": [0, 65535], "monie by me heart": [0, 65535], "by me heart and": [0, 65535], "me heart and good": [0, 65535], "heart and good will": [0, 65535], "and good will you": [0, 65535], "good will you might": [0, 65535], "will you might but": [0, 65535], "you might but surely": [0, 65535], "might but surely master": [0, 65535], "but surely master not": [0, 65535], "surely master not a": [0, 65535], "master not a ragge": [0, 65535], "not a ragge of": [0, 65535], "a ragge of monie": [0, 65535], "ragge of monie ant": [0, 65535], "of monie ant wentst": [0, 65535], "monie ant wentst not": [0, 65535], "ant wentst not thou": [0, 65535], "wentst not thou to": [0, 65535], "not thou to her": [0, 65535], "thou to her for": [0, 65535], "to her for a": [0, 65535], "her for a purse": [0, 65535], "for a purse of": [0, 65535], "purse of duckets adri": [0, 65535], "of duckets adri he": [0, 65535], "duckets adri he came": [0, 65535], "adri he came to": [0, 65535], "he came to me": [0, 65535], "came to me and": [0, 65535], "to me and i": [0, 65535], "me and i deliuer'd": [0, 65535], "and i deliuer'd it": [0, 65535], "i deliuer'd it luci": [0, 65535], "deliuer'd it luci and": [0, 65535], "it luci and i": [0, 65535], "luci and i am": [0, 65535], "and i am witnesse": [0, 65535], "i am witnesse with": [0, 65535], "am witnesse with her": [0, 65535], "witnesse with her that": [0, 65535], "with her that she": [0, 65535], "her that she did": [0, 65535], "that she did dro": [0, 65535], "she did dro god": [0, 65535], "did dro god and": [0, 65535], "dro god and the": [0, 65535], "god and the rope": [0, 65535], "and the rope maker": [0, 65535], "the rope maker beare": [0, 65535], "rope maker beare me": [0, 65535], "maker beare me witnesse": [0, 65535], "beare me witnesse that": [0, 65535], "me witnesse that i": [0, 65535], "witnesse that i was": [0, 65535], "that i was sent": [0, 65535], "i was sent for": [0, 65535], "was sent for nothing": [0, 65535], "sent for nothing but": [0, 65535], "for nothing but a": [0, 65535], "nothing but a rope": [0, 65535], "but a rope pinch": [0, 65535], "a rope pinch mistris": [0, 65535], "rope pinch mistris both": [0, 65535], "pinch mistris both man": [0, 65535], "mistris both man and": [0, 65535], "both man and master": [0, 65535], "man and master is": [0, 65535], "and master is possest": [0, 65535], "master is possest i": [0, 65535], "is possest i know": [0, 65535], "possest i know it": [0, 65535], "i know it by": [0, 65535], "know it by their": [0, 65535], "it by their pale": [0, 65535], "by their pale and": [0, 65535], "their pale and deadly": [0, 65535], "pale and deadly lookes": [0, 65535], "and deadly lookes they": [0, 65535], "deadly lookes they must": [0, 65535], "lookes they must be": [0, 65535], "they must be bound": [0, 65535], "must be bound and": [0, 65535], "be bound and laide": [0, 65535], "bound and laide in": [0, 65535], "and laide in some": [0, 65535], "laide in some darke": [0, 65535], "in some darke roome": [0, 65535], "some darke roome ant": [0, 65535], "darke roome ant say": [0, 65535], "roome ant say wherefore": [0, 65535], "ant say wherefore didst": [0, 65535], "say wherefore didst thou": [0, 65535], "wherefore didst thou locke": [0, 65535], "didst thou locke me": [0, 65535], "thou locke me forth": [0, 65535], "locke me forth to": [0, 65535], "me forth to day": [0, 65535], "forth to day and": [0, 65535], "to day and why": [0, 65535], "day and why dost": [0, 65535], "and why dost thou": [0, 65535], "why dost thou denie": [0, 65535], "dost thou denie the": [0, 65535], "thou denie the bagge": [0, 65535], "denie the bagge of": [0, 65535], "the bagge of gold": [0, 65535], "bagge of gold adr": [0, 65535], "of gold adr i": [0, 65535], "gold adr i did": [0, 65535], "adr i did not": [0, 65535], "i did not gentle": [0, 65535], "did not gentle husband": [0, 65535], "not gentle husband locke": [0, 65535], "gentle husband locke thee": [0, 65535], "husband locke thee forth": [0, 65535], "locke thee forth dro": [0, 65535], "thee forth dro and": [0, 65535], "forth dro and gentle": [0, 65535], "dro and gentle mr": [0, 65535], "and gentle mr i": [0, 65535], "gentle mr i receiu'd": [0, 65535], "mr i receiu'd no": [0, 65535], "i receiu'd no gold": [0, 65535], "receiu'd no gold but": [0, 65535], "no gold but i": [0, 65535], "gold but i confesse": [0, 65535], "but i confesse sir": [0, 65535], "i confesse sir that": [0, 65535], "confesse sir that we": [0, 65535], "sir that we were": [0, 65535], "that we were lock'd": [0, 65535], "we were lock'd out": [0, 65535], "were lock'd out adr": [0, 65535], "lock'd out adr dissembling": [0, 65535], "out adr dissembling villain": [0, 65535], "adr dissembling villain thou": [0, 65535], "dissembling villain thou speak'st": [0, 65535], "villain thou speak'st false": [0, 65535], "thou speak'st false in": [0, 65535], "speak'st false in both": [0, 65535], "false in both ant": [0, 65535], "in both ant dissembling": [0, 65535], "both ant dissembling harlot": [0, 65535], "ant dissembling harlot thou": [0, 65535], "dissembling harlot thou art": [0, 65535], "harlot thou art false": [0, 65535], "thou art false in": [0, 65535], "art false in all": [0, 65535], "false in all and": [0, 65535], "in all and art": [0, 65535], "all and art confederate": [0, 65535], "and art confederate with": [0, 65535], "art confederate with a": [0, 65535], "confederate with a damned": [0, 65535], "with a damned packe": [0, 65535], "a damned packe to": [0, 65535], "damned packe to make": [0, 65535], "packe to make a": [0, 65535], "to make a loathsome": [0, 65535], "make a loathsome abiect": [0, 65535], "a loathsome abiect scorne": [0, 65535], "loathsome abiect scorne of": [0, 65535], "abiect scorne of me": [0, 65535], "scorne of me but": [0, 65535], "of me but with": [0, 65535], "me but with these": [0, 65535], "but with these nailes": [0, 65535], "with these nailes ile": [0, 65535], "these nailes ile plucke": [0, 65535], "nailes ile plucke out": [0, 65535], "ile plucke out these": [0, 65535], "plucke out these false": [0, 65535], "out these false eyes": [0, 65535], "these false eyes that": [0, 65535], "false eyes that would": [0, 65535], "eyes that would behold": [0, 65535], "that would behold in": [0, 65535], "would behold in me": [0, 65535], "behold in me this": [0, 65535], "in me this shamefull": [0, 65535], "me this shamefull sport": [0, 65535], "this shamefull sport enter": [0, 65535], "shamefull sport enter three": [0, 65535], "sport enter three or": [0, 65535], "enter three or foure": [0, 65535], "three or foure and": [0, 65535], "or foure and offer": [0, 65535], "foure and offer to": [0, 65535], "and offer to binde": [0, 65535], "offer to binde him": [0, 65535], "to binde him hee": [0, 65535], "binde him hee striues": [0, 65535], "him hee striues adr": [0, 65535], "hee striues adr oh": [0, 65535], "striues adr oh binde": [0, 65535], "adr oh binde him": [0, 65535], "oh binde him binde": [0, 65535], "binde him binde him": [0, 65535], "him binde him let": [0, 65535], "binde him let him": [0, 65535], "him let him not": [0, 65535], "let him not come": [0, 65535], "him not come neere": [0, 65535], "not come neere me": [0, 65535], "come neere me pinch": [0, 65535], "neere me pinch more": [0, 65535], "me pinch more company": [0, 65535], "pinch more company the": [0, 65535], "more company the fiend": [0, 65535], "company the fiend is": [0, 65535], "the fiend is strong": [0, 65535], "fiend is strong within": [0, 65535], "is strong within him": [0, 65535], "strong within him luc": [0, 65535], "within him luc aye": [0, 65535], "him luc aye me": [0, 65535], "luc aye me poore": [0, 65535], "aye me poore man": [0, 65535], "me poore man how": [0, 65535], "poore man how pale": [0, 65535], "man how pale and": [0, 65535], "how pale and wan": [0, 65535], "pale and wan he": [0, 65535], "and wan he looks": [0, 65535], "wan he looks ant": [0, 65535], "he looks ant what": [0, 65535], "looks ant what will": [0, 65535], "ant what will you": [0, 65535], "what will you murther": [0, 65535], "will you murther me": [0, 65535], "you murther me thou": [0, 65535], "murther me thou iailor": [0, 65535], "me thou iailor thou": [0, 65535], "thou iailor thou i": [0, 65535], "iailor thou i am": [0, 65535], "thou i am thy": [0, 65535], "i am thy prisoner": [0, 65535], "am thy prisoner wilt": [0, 65535], "thy prisoner wilt thou": [0, 65535], "prisoner wilt thou suffer": [0, 65535], "wilt thou suffer them": [0, 65535], "thou suffer them to": [0, 65535], "suffer them to make": [0, 65535], "them to make a": [0, 65535], "to make a rescue": [0, 65535], "make a rescue offi": [0, 65535], "a rescue offi masters": [0, 65535], "rescue offi masters let": [0, 65535], "offi masters let him": [0, 65535], "masters let him go": [0, 65535], "let him go he": [0, 65535], "him go he is": [0, 65535], "go he is my": [0, 65535], "he is my prisoner": [0, 65535], "is my prisoner and": [0, 65535], "my prisoner and you": [0, 65535], "prisoner and you shall": [0, 65535], "and you shall not": [0, 65535], "you shall not haue": [0, 65535], "shall not haue him": [0, 65535], "not haue him pinch": [0, 65535], "haue him pinch go": [0, 65535], "him pinch go binde": [0, 65535], "pinch go binde this": [0, 65535], "go binde this man": [0, 65535], "binde this man for": [0, 65535], "this man for he": [0, 65535], "man for he is": [0, 65535], "for he is franticke": [0, 65535], "he is franticke too": [0, 65535], "is franticke too adr": [0, 65535], "franticke too adr what": [0, 65535], "too adr what wilt": [0, 65535], "adr what wilt thou": [0, 65535], "what wilt thou do": [0, 65535], "wilt thou do thou": [0, 65535], "thou do thou peeuish": [0, 65535], "do thou peeuish officer": [0, 65535], "thou peeuish officer hast": [0, 65535], "peeuish officer hast thou": [0, 65535], "officer hast thou delight": [0, 65535], "hast thou delight to": [0, 65535], "thou delight to see": [0, 65535], "delight to see a": [0, 65535], "to see a wretched": [0, 65535], "see a wretched man": [0, 65535], "a wretched man do": [0, 65535], "wretched man do outrage": [0, 65535], "man do outrage and": [0, 65535], "do outrage and displeasure": [0, 65535], "outrage and displeasure to": [0, 65535], "and displeasure to himselfe": [0, 65535], "displeasure to himselfe offi": [0, 65535], "to himselfe offi he": [0, 65535], "himselfe offi he is": [0, 65535], "offi he is my": [0, 65535], "is my prisoner if": [0, 65535], "my prisoner if i": [0, 65535], "prisoner if i let": [0, 65535], "if i let him": [0, 65535], "i let him go": [0, 65535], "let him go the": [0, 65535], "him go the debt": [0, 65535], "go the debt he": [0, 65535], "the debt he owes": [0, 65535], "debt he owes will": [0, 65535], "he owes will be": [0, 65535], "owes will be requir'd": [0, 65535], "will be requir'd of": [0, 65535], "be requir'd of me": [0, 65535], "requir'd of me adr": [0, 65535], "of me adr i": [0, 65535], "adr i will discharge": [0, 65535], "i will discharge thee": [0, 65535], "will discharge thee ere": [0, 65535], "discharge thee ere i": [0, 65535], "thee ere i go": [0, 65535], "ere i go from": [0, 65535], "i go from thee": [0, 65535], "go from thee beare": [0, 65535], "from thee beare me": [0, 65535], "thee beare me forthwith": [0, 65535], "beare me forthwith vnto": [0, 65535], "me forthwith vnto his": [0, 65535], "forthwith vnto his creditor": [0, 65535], "vnto his creditor and": [0, 65535], "his creditor and knowing": [0, 65535], "creditor and knowing how": [0, 65535], "and knowing how the": [0, 65535], "knowing how the debt": [0, 65535], "how the debt growes": [0, 65535], "the debt growes i": [0, 65535], "debt growes i will": [0, 65535], "growes i will pay": [0, 65535], "i will pay it": [0, 65535], "will pay it good": [0, 65535], "pay it good master": [0, 65535], "it good master doctor": [0, 65535], "good master doctor see": [0, 65535], "master doctor see him": [0, 65535], "doctor see him safe": [0, 65535], "see him safe conuey'd": [0, 65535], "him safe conuey'd home": [0, 65535], "safe conuey'd home to": [0, 65535], "conuey'd home to my": [0, 65535], "home to my house": [0, 65535], "to my house oh": [0, 65535], "my house oh most": [0, 65535], "house oh most vnhappy": [0, 65535], "oh most vnhappy day": [0, 65535], "most vnhappy day ant": [0, 65535], "vnhappy day ant oh": [0, 65535], "day ant oh most": [0, 65535], "ant oh most vnhappie": [0, 65535], "oh most vnhappie strumpet": [0, 65535], "most vnhappie strumpet dro": [0, 65535], "vnhappie strumpet dro master": [0, 65535], "strumpet dro master i": [0, 65535], "dro master i am": [0, 65535], "master i am heere": [0, 65535], "i am heere entred": [0, 65535], "am heere entred in": [0, 65535], "heere entred in bond": [0, 65535], "entred in bond for": [0, 65535], "in bond for you": [0, 65535], "bond for you ant": [0, 65535], "for you ant out": [0, 65535], "you ant out on": [0, 65535], "ant out on thee": [0, 65535], "out on thee villaine": [0, 65535], "on thee villaine wherefore": [0, 65535], "thee villaine wherefore dost": [0, 65535], "villaine wherefore dost thou": [0, 65535], "wherefore dost thou mad": [0, 65535], "dost thou mad mee": [0, 65535], "thou mad mee dro": [0, 65535], "mad mee dro will": [0, 65535], "mee dro will you": [0, 65535], "dro will you be": [0, 65535], "will you be bound": [0, 65535], "you be bound for": [0, 65535], "be bound for nothing": [0, 65535], "bound for nothing be": [0, 65535], "for nothing be mad": [0, 65535], "nothing be mad good": [0, 65535], "be mad good master": [0, 65535], "mad good master cry": [0, 65535], "good master cry the": [0, 65535], "master cry the diuell": [0, 65535], "cry the diuell luc": [0, 65535], "the diuell luc god": [0, 65535], "diuell luc god helpe": [0, 65535], "luc god helpe poore": [0, 65535], "god helpe poore soules": [0, 65535], "helpe poore soules how": [0, 65535], "poore soules how idlely": [0, 65535], "soules how idlely doe": [0, 65535], "how idlely doe they": [0, 65535], "idlely doe they talke": [0, 65535], "doe they talke adr": [0, 65535], "they talke adr go": [0, 65535], "talke adr go beare": [0, 65535], "adr go beare him": [0, 65535], "go beare him hence": [0, 65535], "beare him hence sister": [0, 65535], "him hence sister go": [0, 65535], "hence sister go you": [0, 65535], "sister go you with": [0, 65535], "go you with me": [0, 65535], "you with me say": [0, 65535], "with me say now": [0, 65535], "me say now whose": [0, 65535], "say now whose suite": [0, 65535], "now whose suite is": [0, 65535], "whose suite is he": [0, 65535], "suite is he arrested": [0, 65535], "is he arrested at": [0, 65535], "he arrested at exeunt": [0, 65535], "arrested at exeunt manet": [0, 65535], "at exeunt manet offic": [0, 65535], "exeunt manet offic adri": [0, 65535], "manet offic adri luci": [0, 65535], "offic adri luci courtizan": [0, 65535], "adri luci courtizan off": [0, 65535], "luci courtizan off one": [0, 65535], "courtizan off one angelo": [0, 65535], "off one angelo a": [0, 65535], "one angelo a goldsmith": [0, 65535], "angelo a goldsmith do": [0, 65535], "a goldsmith do you": [0, 65535], "goldsmith do you know": [0, 65535], "do you know him": [0, 65535], "you know him adr": [0, 65535], "know him adr i": [0, 65535], "him adr i know": [0, 65535], "adr i know the": [0, 65535], "i know the man": [0, 65535], "know the man what": [0, 65535], "the man what is": [0, 65535], "what is the summe": [0, 65535], "is the summe he": [0, 65535], "the summe he owes": [0, 65535], "summe he owes off": [0, 65535], "he owes off two": [0, 65535], "owes off two hundred": [0, 65535], "off two hundred duckets": [0, 65535], "two hundred duckets adr": [0, 65535], "hundred duckets adr say": [0, 65535], "duckets adr say how": [0, 65535], "adr say how growes": [0, 65535], "say how growes it": [0, 65535], "how growes it due": [0, 65535], "growes it due off": [0, 65535], "it due off due": [0, 65535], "due off due for": [0, 65535], "off due for a": [0, 65535], "due for a chaine": [0, 65535], "for a chaine your": [0, 65535], "a chaine your husband": [0, 65535], "chaine your husband had": [0, 65535], "your husband had of": [0, 65535], "husband had of him": [0, 65535], "had of him adr": [0, 65535], "of him adr he": [0, 65535], "him adr he did": [0, 65535], "adr he did bespeake": [0, 65535], "he did bespeake a": [0, 65535], "did bespeake a chain": [0, 65535], "bespeake a chain for": [0, 65535], "a chain for me": [0, 65535], "chain for me but": [0, 65535], "for me but had": [0, 65535], "me but had it": [0, 65535], "but had it not": [0, 65535], "had it not cur": [0, 65535], "it not cur when": [0, 65535], "not cur when as": [0, 65535], "cur when as your": [0, 65535], "when as your husband": [0, 65535], "as your husband all": [0, 65535], "your husband all in": [0, 65535], "husband all in rage": [0, 65535], "all in rage to": [0, 65535], "in rage to day": [0, 65535], "rage to day came": [0, 65535], "to day came to": [0, 65535], "day came to my": [0, 65535], "came to my house": [0, 65535], "house and tooke away": [0, 65535], "and tooke away my": [0, 65535], "tooke away my ring": [0, 65535], "away my ring the": [0, 65535], "my ring the ring": [0, 65535], "ring the ring i": [0, 65535], "the ring i saw": [0, 65535], "ring i saw vpon": [0, 65535], "i saw vpon his": [0, 65535], "saw vpon his finger": [0, 65535], "vpon his finger now": [0, 65535], "his finger now straight": [0, 65535], "finger now straight after": [0, 65535], "now straight after did": [0, 65535], "straight after did i": [0, 65535], "after did i meete": [0, 65535], "did i meete him": [0, 65535], "i meete him with": [0, 65535], "meete him with a": [0, 65535], "him with a chaine": [0, 65535], "with a chaine adr": [0, 65535], "a chaine adr it": [0, 65535], "chaine adr it may": [0, 65535], "adr it may be": [0, 65535], "it may be so": [0, 65535], "may be so but": [0, 65535], "be so but i": [0, 65535], "so but i did": [0, 65535], "but i did neuer": [0, 65535], "i did neuer see": [0, 65535], "did neuer see it": [0, 65535], "neuer see it come": [0, 65535], "see it come iailor": [0, 65535], "it come iailor bring": [0, 65535], "come iailor bring me": [0, 65535], "iailor bring me where": [0, 65535], "bring me where the": [0, 65535], "me where the goldsmith": [0, 65535], "where the goldsmith is": [0, 65535], "the goldsmith is i": [0, 65535], "goldsmith is i long": [0, 65535], "is i long to": [0, 65535], "i long to know": [0, 65535], "long to know the": [0, 65535], "to know the truth": [0, 65535], "know the truth heereof": [0, 65535], "the truth heereof at": [0, 65535], "truth heereof at large": [0, 65535], "heereof at large enter": [0, 65535], "at large enter antipholus": [0, 65535], "large enter antipholus siracusia": [0, 65535], "enter antipholus siracusia with": [0, 65535], "antipholus siracusia with his": [0, 65535], "siracusia with his rapier": [0, 65535], "with his rapier drawne": [0, 65535], "his rapier drawne and": [0, 65535], "rapier drawne and dromio": [0, 65535], "drawne and dromio sirac": [0, 65535], "and dromio sirac luc": [0, 65535], "dromio sirac luc god": [0, 65535], "sirac luc god for": [0, 65535], "luc god for thy": [0, 65535], "god for thy mercy": [0, 65535], "for thy mercy they": [0, 65535], "thy mercy they are": [0, 65535], "mercy they are loose": [0, 65535], "they are loose againe": [0, 65535], "are loose againe adr": [0, 65535], "loose againe adr and": [0, 65535], "againe adr and come": [0, 65535], "adr and come with": [0, 65535], "and come with naked": [0, 65535], "come with naked swords": [0, 65535], "with naked swords let's": [0, 65535], "naked swords let's call": [0, 65535], "swords let's call more": [0, 65535], "let's call more helpe": [0, 65535], "call more helpe to": [0, 65535], "more helpe to haue": [0, 65535], "helpe to haue them": [0, 65535], "to haue them bound": [0, 65535], "haue them bound againe": [0, 65535], "them bound againe runne": [0, 65535], "bound againe runne all": [0, 65535], "againe runne all out": [0, 65535], "runne all out off": [0, 65535], "all out off away": [0, 65535], "out off away they'l": [0, 65535], "off away they'l kill": [0, 65535], "away they'l kill vs": [0, 65535], "they'l kill vs exeunt": [0, 65535], "kill vs exeunt omnes": [0, 65535], "vs exeunt omnes as": [0, 65535], "exeunt omnes as fast": [0, 65535], "omnes as fast as": [0, 65535], "as fast as may": [0, 65535], "fast as may be": [0, 65535], "as may be frighted": [0, 65535], "may be frighted s": [0, 65535], "be frighted s ant": [0, 65535], "frighted s ant i": [0, 65535], "s ant i see": [0, 65535], "ant i see these": [0, 65535], "i see these witches": [0, 65535], "see these witches are": [0, 65535], "these witches are affraid": [0, 65535], "witches are affraid of": [0, 65535], "are affraid of swords": [0, 65535], "affraid of swords s": [0, 65535], "of swords s dro": [0, 65535], "swords s dro she": [0, 65535], "s dro she that": [0, 65535], "dro she that would": [0, 65535], "she that would be": [0, 65535], "that would be your": [0, 65535], "would be your wife": [0, 65535], "be your wife now": [0, 65535], "your wife now ran": [0, 65535], "wife now ran from": [0, 65535], "now ran from you": [0, 65535], "ran from you ant": [0, 65535], "from you ant come": [0, 65535], "you ant come to": [0, 65535], "ant come to the": [0, 65535], "come to the centaur": [0, 65535], "to the centaur fetch": [0, 65535], "the centaur fetch our": [0, 65535], "centaur fetch our stuffe": [0, 65535], "fetch our stuffe from": [0, 65535], "our stuffe from thence": [0, 65535], "stuffe from thence i": [0, 65535], "from thence i long": [0, 65535], "thence i long that": [0, 65535], "i long that we": [0, 65535], "long that we were": [0, 65535], "that we were safe": [0, 65535], "we were safe and": [0, 65535], "were safe and sound": [0, 65535], "safe and sound aboord": [0, 65535], "and sound aboord dro": [0, 65535], "sound aboord dro faith": [0, 65535], "aboord dro faith stay": [0, 65535], "dro faith stay heere": [0, 65535], "faith stay heere this": [0, 65535], "stay heere this night": [0, 65535], "heere this night they": [0, 65535], "this night they will": [0, 65535], "night they will surely": [0, 65535], "they will surely do": [0, 65535], "will surely do vs": [0, 65535], "surely do vs no": [0, 65535], "do vs no harme": [0, 65535], "vs no harme you": [0, 65535], "no harme you saw": [0, 65535], "harme you saw they": [0, 65535], "you saw they speake": [0, 65535], "saw they speake vs": [0, 65535], "they speake vs faire": [0, 65535], "speake vs faire giue": [0, 65535], "vs faire giue vs": [0, 65535], "faire giue vs gold": [0, 65535], "giue vs gold me": [0, 65535], "vs gold me thinkes": [0, 65535], "gold me thinkes they": [0, 65535], "me thinkes they are": [0, 65535], "thinkes they are such": [0, 65535], "they are such a": [0, 65535], "are such a gentle": [0, 65535], "such a gentle nation": [0, 65535], "a gentle nation that": [0, 65535], "gentle nation that but": [0, 65535], "nation that but for": [0, 65535], "that but for the": [0, 65535], "but for the mountaine": [0, 65535], "for the mountaine of": [0, 65535], "the mountaine of mad": [0, 65535], "mountaine of mad flesh": [0, 65535], "of mad flesh that": [0, 65535], "mad flesh that claimes": [0, 65535], "flesh that claimes mariage": [0, 65535], "that claimes mariage of": [0, 65535], "claimes mariage of me": [0, 65535], "mariage of me i": [0, 65535], "of me i could": [0, 65535], "me i could finde": [0, 65535], "i could finde in": [0, 65535], "could finde in my": [0, 65535], "finde in my heart": [0, 65535], "in my heart to": [0, 65535], "my heart to stay": [0, 65535], "heart to stay heere": [0, 65535], "to stay heere still": [0, 65535], "stay heere still and": [0, 65535], "heere still and turne": [0, 65535], "still and turne witch": [0, 65535], "and turne witch ant": [0, 65535], "turne witch ant i": [0, 65535], "witch ant i will": [0, 65535], "ant i will not": [0, 65535], "i will not stay": [0, 65535], "will not stay to": [0, 65535], "not stay to night": [0, 65535], "stay to night for": [0, 65535], "to night for all": [0, 65535], "night for all the": [0, 65535], "for all the towne": [0, 65535], "all the towne therefore": [0, 65535], "the towne therefore away": [0, 65535], "towne therefore away to": [0, 65535], "therefore away to get": [0, 65535], "away to get our": [0, 65535], "to get our stuffe": [0, 65535], "get our stuffe aboord": [0, 65535], "our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter": [0, 65535], "quartus sc\u00e6na prima enter a": [0, 65535], "sc\u00e6na prima enter a merchant": [0, 65535], "prima enter a merchant goldsmith": [0, 65535], "enter a merchant goldsmith and": [0, 65535], "a merchant goldsmith and an": [0, 65535], "merchant goldsmith and an officer": [0, 65535], "goldsmith and an officer mar": [0, 65535], "and an officer mar you": [0, 65535], "an officer mar you know": [0, 65535], "officer mar you know since": [0, 65535], "mar you know since pentecost": [0, 65535], "you know since pentecost the": [0, 65535], "know since pentecost the sum": [0, 65535], "since pentecost the sum is": [0, 65535], "pentecost the sum is due": [0, 65535], "the sum is due and": [0, 65535], "sum is due and since": [0, 65535], "is due and since i": [0, 65535], "due and since i haue": [0, 65535], "and since i haue not": [0, 65535], "since i haue not much": [0, 65535], "i haue not much importun'd": [0, 65535], "haue not much importun'd you": [0, 65535], "not much importun'd you nor": [0, 65535], "much importun'd you nor now": [0, 65535], "importun'd you nor now i": [0, 65535], "you nor now i had": [0, 65535], "nor now i had not": [0, 65535], "now i had not but": [0, 65535], "i had not but that": [0, 65535], "had not but that i": [0, 65535], "not but that i am": [0, 65535], "but that i am bound": [0, 65535], "that i am bound to": [0, 65535], "i am bound to persia": [0, 65535], "am bound to persia and": [0, 65535], "bound to persia and want": [0, 65535], "to persia and want gilders": [0, 65535], "persia and want gilders for": [0, 65535], "and want gilders for my": [0, 65535], "want gilders for my voyage": [0, 65535], "gilders for my voyage therefore": [0, 65535], "for my voyage therefore make": [0, 65535], "my voyage therefore make present": [0, 65535], "voyage therefore make present satisfaction": [0, 65535], "therefore make present satisfaction or": [0, 65535], "make present satisfaction or ile": [0, 65535], "present satisfaction or ile attach": [0, 65535], "satisfaction or ile attach you": [0, 65535], "or ile attach you by": [0, 65535], "ile attach you by this": [0, 65535], "attach you by this officer": [0, 65535], "you by this officer gold": [0, 65535], "by this officer gold euen": [0, 65535], "this officer gold euen iust": [0, 65535], "officer gold euen iust the": [0, 65535], "gold euen iust the sum": [0, 65535], "euen iust the sum that": [0, 65535], "iust the sum that i": [0, 65535], "the sum that i do": [0, 65535], "sum that i do owe": [0, 65535], "that i do owe to": [0, 65535], "i do owe to you": [0, 65535], "do owe to you is": [0, 65535], "owe to you is growing": [0, 65535], "to you is growing to": [0, 65535], "you is growing to me": [0, 65535], "is growing to me by": [0, 65535], "growing to me by antipholus": [0, 65535], "to me by antipholus and": [0, 65535], "me by antipholus and in": [0, 65535], "by antipholus and in the": [0, 65535], "antipholus and in the instant": [0, 65535], "and in the instant that": [0, 65535], "in the instant that i": [0, 65535], "the instant that i met": [0, 65535], "instant that i met with": [0, 65535], "that i met with you": [0, 65535], "i met with you he": [0, 65535], "met with you he had": [0, 65535], "with you he had of": [0, 65535], "you he had of me": [0, 65535], "he had of me a": [0, 65535], "had of me a chaine": [0, 65535], "of me a chaine at": [0, 65535], "me a chaine at fiue": [0, 65535], "a chaine at fiue a": [0, 65535], "chaine at fiue a clocke": [0, 65535], "at fiue a clocke i": [0, 65535], "fiue a clocke i shall": [0, 65535], "a clocke i shall receiue": [0, 65535], "clocke i shall receiue the": [0, 65535], "i shall receiue the money": [0, 65535], "shall receiue the money for": [0, 65535], "receiue the money for the": [0, 65535], "the money for the same": [0, 65535], "money for the same pleaseth": [0, 65535], "for the same pleaseth you": [0, 65535], "the same pleaseth you walke": [0, 65535], "same pleaseth you walke with": [0, 65535], "pleaseth you walke with me": [0, 65535], "you walke with me downe": [0, 65535], "walke with me downe to": [0, 65535], "with me downe to his": [0, 65535], "me downe to his house": [0, 65535], "downe to his house i": [0, 65535], "to his house i will": [0, 65535], "his house i will discharge": [0, 65535], "house i will discharge my": [0, 65535], "i will discharge my bond": [0, 65535], "will discharge my bond and": [0, 65535], "discharge my bond and thanke": [0, 65535], "my bond and thanke you": [0, 65535], "bond and thanke you too": [0, 65535], "and thanke you too enter": [0, 65535], "thanke you too enter antipholus": [0, 65535], "you too enter antipholus ephes": [0, 65535], "too enter antipholus ephes dromio": [0, 65535], "enter antipholus ephes dromio from": [0, 65535], "antipholus ephes dromio from the": [0, 65535], "ephes dromio from the courtizans": [0, 65535], "dromio from the courtizans offi": [0, 65535], "from the courtizans offi that": [0, 65535], "the courtizans offi that labour": [0, 65535], "courtizans offi that labour may": [0, 65535], "offi that labour may you": [0, 65535], "that labour may you saue": [0, 65535], "labour may you saue see": [0, 65535], "may you saue see where": [0, 65535], "you saue see where he": [0, 65535], "saue see where he comes": [0, 65535], "see where he comes ant": [0, 65535], "where he comes ant while": [0, 65535], "he comes ant while i": [0, 65535], "comes ant while i go": [0, 65535], "ant while i go to": [0, 65535], "while i go to the": [0, 65535], "i go to the goldsmiths": [0, 65535], "go to the goldsmiths house": [0, 65535], "to the goldsmiths house go": [0, 65535], "the goldsmiths house go thou": [0, 65535], "goldsmiths house go thou and": [0, 65535], "house go thou and buy": [0, 65535], "go thou and buy a": [0, 65535], "thou and buy a ropes": [0, 65535], "and buy a ropes end": [0, 65535], "buy a ropes end that": [0, 65535], "a ropes end that will": [0, 65535], "ropes end that will i": [0, 65535], "end that will i bestow": [0, 65535], "that will i bestow among": [0, 65535], "will i bestow among my": [0, 65535], "i bestow among my wife": [0, 65535], "bestow among my wife and": [0, 65535], "among my wife and their": [0, 65535], "my wife and their confederates": [0, 65535], "wife and their confederates for": [0, 65535], "and their confederates for locking": [0, 65535], "their confederates for locking me": [0, 65535], "confederates for locking me out": [0, 65535], "for locking me out of": [0, 65535], "locking me out of my": [0, 65535], "me out of my doores": [0, 65535], "out of my doores by": [0, 65535], "of my doores by day": [0, 65535], "my doores by day but": [0, 65535], "doores by day but soft": [0, 65535], "by day but soft i": [0, 65535], "day but soft i see": [0, 65535], "but soft i see the": [0, 65535], "soft i see the goldsmith": [0, 65535], "i see the goldsmith get": [0, 65535], "see the goldsmith get thee": [0, 65535], "the goldsmith get thee gone": [0, 65535], "goldsmith get thee gone buy": [0, 65535], "get thee gone buy thou": [0, 65535], "thee gone buy thou a": [0, 65535], "gone buy thou a rope": [0, 65535], "buy thou a rope and": [0, 65535], "thou a rope and bring": [0, 65535], "a rope and bring it": [0, 65535], "rope and bring it home": [0, 65535], "and bring it home to": [0, 65535], "bring it home to me": [0, 65535], "it home to me dro": [0, 65535], "home to me dro i": [0, 65535], "to me dro i buy": [0, 65535], "me dro i buy a": [0, 65535], "dro i buy a thousand": [0, 65535], "i buy a thousand pound": [0, 65535], "buy a thousand pound a": [0, 65535], "a thousand pound a yeare": [0, 65535], "thousand pound a yeare i": [0, 65535], "pound a yeare i buy": [0, 65535], "a yeare i buy a": [0, 65535], "yeare i buy a rope": [0, 65535], "i buy a rope exit": [0, 65535], "buy a rope exit dromio": [0, 65535], "a rope exit dromio eph": [0, 65535], "rope exit dromio eph ant": [0, 65535], "exit dromio eph ant a": [0, 65535], "dromio eph ant a man": [0, 65535], "eph ant a man is": [0, 65535], "ant a man is well": [0, 65535], "a man is well holpe": [0, 65535], "man is well holpe vp": [0, 65535], "is well holpe vp that": [0, 65535], "well holpe vp that trusts": [0, 65535], "holpe vp that trusts to": [0, 65535], "vp that trusts to you": [0, 65535], "that trusts to you i": [0, 65535], "trusts to you i promised": [0, 65535], "to you i promised your": [0, 65535], "you i promised your presence": [0, 65535], "i promised your presence and": [0, 65535], "promised your presence and the": [0, 65535], "your presence and the chaine": [0, 65535], "presence and the chaine but": [0, 65535], "and the chaine but neither": [0, 65535], "the chaine but neither chaine": [0, 65535], "chaine but neither chaine nor": [0, 65535], "but neither chaine nor goldsmith": [0, 65535], "neither chaine nor goldsmith came": [0, 65535], "chaine nor goldsmith came to": [0, 65535], "nor goldsmith came to me": [0, 65535], "goldsmith came to me belike": [0, 65535], "came to me belike you": [0, 65535], "to me belike you thought": [0, 65535], "me belike you thought our": [0, 65535], "belike you thought our loue": [0, 65535], "you thought our loue would": [0, 65535], "thought our loue would last": [0, 65535], "our loue would last too": [0, 65535], "loue would last too long": [0, 65535], "would last too long if": [0, 65535], "last too long if it": [0, 65535], "too long if it were": [0, 65535], "long if it were chain'd": [0, 65535], "if it were chain'd together": [0, 65535], "it were chain'd together and": [0, 65535], "were chain'd together and therefore": [0, 65535], "chain'd together and therefore came": [0, 65535], "together and therefore came not": [0, 65535], "and therefore came not gold": [0, 65535], "therefore came not gold sauing": [0, 65535], "came not gold sauing your": [0, 65535], "not gold sauing your merrie": [0, 65535], "gold sauing your merrie humor": [0, 65535], "sauing your merrie humor here's": [0, 65535], "your merrie humor here's the": [0, 65535], "merrie humor here's the note": [0, 65535], "humor here's the note how": [0, 65535], "here's the note how much": [0, 65535], "the note how much your": [0, 65535], "note how much your chaine": [0, 65535], "how much your chaine weighs": [0, 65535], "much your chaine weighs to": [0, 65535], "your chaine weighs to the": [0, 65535], "chaine weighs to the vtmost": [0, 65535], "weighs to the vtmost charect": [0, 65535], "to the vtmost charect the": [0, 65535], "the vtmost charect the finenesse": [0, 65535], "vtmost charect the finenesse of": [0, 65535], "charect the finenesse of the": [0, 65535], "the finenesse of the gold": [0, 65535], "finenesse of the gold and": [0, 65535], "of the gold and chargefull": [0, 65535], "the gold and chargefull fashion": [0, 65535], "gold and chargefull fashion which": [0, 65535], "and chargefull fashion which doth": [0, 65535], "chargefull fashion which doth amount": [0, 65535], "fashion which doth amount to": [0, 65535], "which doth amount to three": [0, 65535], "doth amount to three odde": [0, 65535], "amount to three odde duckets": [0, 65535], "to three odde duckets more": [0, 65535], "three odde duckets more then": [0, 65535], "odde duckets more then i": [0, 65535], "duckets more then i stand": [0, 65535], "more then i stand debted": [0, 65535], "then i stand debted to": [0, 65535], "i stand debted to this": [0, 65535], "stand debted to this gentleman": [0, 65535], "debted to this gentleman i": [0, 65535], "to this gentleman i pray": [0, 65535], "this gentleman i pray you": [0, 65535], "gentleman i pray you see": [0, 65535], "i pray you see him": [0, 65535], "pray you see him presently": [0, 65535], "you see him presently discharg'd": [0, 65535], "see him presently discharg'd for": [0, 65535], "him presently discharg'd for he": [0, 65535], "presently discharg'd for he is": [0, 65535], "discharg'd for he is bound": [0, 65535], "for he is bound to": [0, 65535], "he is bound to sea": [0, 65535], "is bound to sea and": [0, 65535], "bound to sea and stayes": [0, 65535], "to sea and stayes but": [0, 65535], "sea and stayes but for": [0, 65535], "and stayes but for it": [0, 65535], "stayes but for it anti": [0, 65535], "but for it anti i": [0, 65535], "for it anti i am": [0, 65535], "it anti i am not": [0, 65535], "anti i am not furnish'd": [0, 65535], "i am not furnish'd with": [0, 65535], "am not furnish'd with the": [0, 65535], "not furnish'd with the present": [0, 65535], "furnish'd with the present monie": [0, 65535], "with the present monie besides": [0, 65535], "the present monie besides i": [0, 65535], "present monie besides i haue": [0, 65535], "monie besides i haue some": [0, 65535], "besides i haue some businesse": [0, 65535], "i haue some businesse in": [0, 65535], "haue some businesse in the": [0, 65535], "some businesse in the towne": [0, 65535], "businesse in the towne good": [0, 65535], "in the towne good signior": [0, 65535], "the towne good signior take": [0, 65535], "towne good signior take the": [0, 65535], "good signior take the stranger": [0, 65535], "signior take the stranger to": [0, 65535], "take the stranger to my": [0, 65535], "the stranger to my house": [0, 65535], "stranger to my house and": [0, 65535], "to my house and with": [0, 65535], "my house and with you": [0, 65535], "house and with you take": [0, 65535], "and with you take the": [0, 65535], "with you take the chaine": [0, 65535], "you take the chaine and": [0, 65535], "take the chaine and bid": [0, 65535], "the chaine and bid my": [0, 65535], "chaine and bid my wife": [0, 65535], "and bid my wife disburse": [0, 65535], "bid my wife disburse the": [0, 65535], "my wife disburse the summe": [0, 65535], "wife disburse the summe on": [0, 65535], "disburse the summe on the": [0, 65535], "the summe on the receit": [0, 65535], "summe on the receit thereof": [0, 65535], "on the receit thereof perchance": [0, 65535], "the receit thereof perchance i": [0, 65535], "receit thereof perchance i will": [0, 65535], "thereof perchance i will be": [0, 65535], "perchance i will be there": [0, 65535], "i will be there as": [0, 65535], "will be there as soone": [0, 65535], "be there as soone as": [0, 65535], "there as soone as you": [0, 65535], "as soone as you gold": [0, 65535], "soone as you gold then": [0, 65535], "as you gold then you": [0, 65535], "you gold then you will": [0, 65535], "gold then you will bring": [0, 65535], "then you will bring the": [0, 65535], "you will bring the chaine": [0, 65535], "will bring the chaine to": [0, 65535], "bring the chaine to her": [0, 65535], "the chaine to her your": [0, 65535], "chaine to her your selfe": [0, 65535], "to her your selfe anti": [0, 65535], "her your selfe anti no": [0, 65535], "your selfe anti no beare": [0, 65535], "selfe anti no beare it": [0, 65535], "anti no beare it with": [0, 65535], "no beare it with you": [0, 65535], "beare it with you least": [0, 65535], "it with you least i": [0, 65535], "with you least i come": [0, 65535], "you least i come not": [0, 65535], "least i come not time": [0, 65535], "i come not time enough": [0, 65535], "come not time enough gold": [0, 65535], "not time enough gold well": [0, 65535], "time enough gold well sir": [0, 65535], "enough gold well sir i": [0, 65535], "gold well sir i will": [0, 65535], "well sir i will haue": [0, 65535], "sir i will haue you": [0, 65535], "i will haue you the": [0, 65535], "will haue you the chaine": [0, 65535], "haue you the chaine about": [0, 65535], "you the chaine about you": [0, 65535], "the chaine about you ant": [0, 65535], "chaine about you ant and": [0, 65535], "about you ant and if": [0, 65535], "you ant and if i": [0, 65535], "ant and if i haue": [0, 65535], "and if i haue not": [0, 65535], "if i haue not sir": [0, 65535], "i haue not sir i": [0, 65535], "haue not sir i hope": [0, 65535], "not sir i hope you": [0, 65535], "sir i hope you haue": [0, 65535], "i hope you haue or": [0, 65535], "hope you haue or else": [0, 65535], "you haue or else you": [0, 65535], "haue or else you may": [0, 65535], "or else you may returne": [0, 65535], "else you may returne without": [0, 65535], "you may returne without your": [0, 65535], "may returne without your money": [0, 65535], "returne without your money gold": [0, 65535], "without your money gold nay": [0, 65535], "your money gold nay come": [0, 65535], "money gold nay come i": [0, 65535], "gold nay come i pray": [0, 65535], "nay come i pray you": [0, 65535], "come i pray you sir": [0, 65535], "i pray you sir giue": [0, 65535], "pray you sir giue me": [0, 65535], "you sir giue me the": [0, 65535], "sir giue me the chaine": [0, 65535], "giue me the chaine both": [0, 65535], "me the chaine both winde": [0, 65535], "the chaine both winde and": [0, 65535], "chaine both winde and tide": [0, 65535], "both winde and tide stayes": [0, 65535], "winde and tide stayes for": [0, 65535], "and tide stayes for this": [0, 65535], "tide stayes for this gentleman": [0, 65535], "stayes for this gentleman and": [0, 65535], "for this gentleman and i": [0, 65535], "this gentleman and i too": [0, 65535], "gentleman and i too blame": [0, 65535], "and i too blame haue": [0, 65535], "i too blame haue held": [0, 65535], "too blame haue held him": [0, 65535], "blame haue held him heere": [0, 65535], "haue held him heere too": [0, 65535], "held him heere too long": [0, 65535], "him heere too long anti": [0, 65535], "heere too long anti good": [0, 65535], "too long anti good lord": [0, 65535], "long anti good lord you": [0, 65535], "anti good lord you vse": [0, 65535], "good lord you vse this": [0, 65535], "lord you vse this dalliance": [0, 65535], "you vse this dalliance to": [0, 65535], "vse this dalliance to excuse": [0, 65535], "this dalliance to excuse your": [0, 65535], "dalliance to excuse your breach": [0, 65535], "to excuse your breach of": [0, 65535], "excuse your breach of promise": [0, 65535], "your breach of promise to": [0, 65535], "breach of promise to the": [0, 65535], "of promise to the porpentine": [0, 65535], "promise to the porpentine i": [0, 65535], "to the porpentine i should": [0, 65535], "the porpentine i should haue": [0, 65535], "porpentine i should haue chid": [0, 65535], "i should haue chid you": [0, 65535], "should haue chid you for": [0, 65535], "haue chid you for not": [0, 65535], "chid you for not bringing": [0, 65535], "you for not bringing it": [0, 65535], "for not bringing it but": [0, 65535], "not bringing it but like": [0, 65535], "bringing it but like a": [0, 65535], "it but like a shrew": [0, 65535], "but like a shrew you": [0, 65535], "like a shrew you first": [0, 65535], "a shrew you first begin": [0, 65535], "shrew you first begin to": [0, 65535], "you first begin to brawle": [0, 65535], "first begin to brawle mar": [0, 65535], "begin to brawle mar the": [0, 65535], "to brawle mar the houre": [0, 65535], "brawle mar the houre steales": [0, 65535], "mar the houre steales on": [0, 65535], "the houre steales on i": [0, 65535], "houre steales on i pray": [0, 65535], "steales on i pray you": [0, 65535], "on i pray you sir": [0, 65535], "i pray you sir dispatch": [0, 65535], "pray you sir dispatch gold": [0, 65535], "you sir dispatch gold you": [0, 65535], "sir dispatch gold you heare": [0, 65535], "dispatch gold you heare how": [0, 65535], "gold you heare how he": [0, 65535], "you heare how he importunes": [0, 65535], "heare how he importunes me": [0, 65535], "how he importunes me the": [0, 65535], "he importunes me the chaine": [0, 65535], "importunes me the chaine ant": [0, 65535], "me the chaine ant why": [0, 65535], "the chaine ant why giue": [0, 65535], "chaine ant why giue it": [0, 65535], "ant why giue it to": [0, 65535], "why giue it to my": [0, 65535], "giue it to my wife": [0, 65535], "it to my wife and": [0, 65535], "to my wife and fetch": [0, 65535], "my wife and fetch your": [0, 65535], "wife and fetch your mony": [0, 65535], "and fetch your mony gold": [0, 65535], "fetch your mony gold come": [0, 65535], "your mony gold come come": [0, 65535], "mony gold come come you": [0, 65535], "gold come come you know": [0, 65535], "come come you know i": [0, 65535], "come you know i gaue": [0, 65535], "you know i gaue it": [0, 65535], "know i gaue it you": [0, 65535], "i gaue it you euen": [0, 65535], "gaue it you euen now": [0, 65535], "it you euen now either": [0, 65535], "you euen now either send": [0, 65535], "euen now either send the": [0, 65535], "now either send the chaine": [0, 65535], "either send the chaine or": [0, 65535], "send the chaine or send": [0, 65535], "the chaine or send me": [0, 65535], "chaine or send me by": [0, 65535], "or send me by some": [0, 65535], "send me by some token": [0, 65535], "me by some token ant": [0, 65535], "by some token ant fie": [0, 65535], "some token ant fie now": [0, 65535], "token ant fie now you": [0, 65535], "ant fie now you run": [0, 65535], "fie now you run this": [0, 65535], "now you run this humor": [0, 65535], "you run this humor out": [0, 65535], "run this humor out of": [0, 65535], "this humor out of breath": [0, 65535], "humor out of breath come": [0, 65535], "out of breath come where's": [0, 65535], "of breath come where's the": [0, 65535], "breath come where's the chaine": [0, 65535], "come where's the chaine i": [0, 65535], "where's the chaine i pray": [0, 65535], "the chaine i pray you": [0, 65535], "chaine i pray you let": [0, 65535], "i pray you let me": [0, 65535], "pray you let me see": [0, 65535], "you let me see it": [0, 65535], "let me see it mar": [0, 65535], "me see it mar my": [0, 65535], "see it mar my businesse": [0, 65535], "it mar my businesse cannot": [0, 65535], "mar my businesse cannot brooke": [0, 65535], "my businesse cannot brooke this": [0, 65535], "businesse cannot brooke this dalliance": [0, 65535], "cannot brooke this dalliance good": [0, 65535], "brooke this dalliance good sir": [0, 65535], "this dalliance good sir say": [0, 65535], "dalliance good sir say whe'r": [0, 65535], "good sir say whe'r you'l": [0, 65535], "sir say whe'r you'l answer": [0, 65535], "say whe'r you'l answer me": [0, 65535], "whe'r you'l answer me or": [0, 65535], "you'l answer me or no": [0, 65535], "answer me or no if": [0, 65535], "me or no if not": [0, 65535], "or no if not ile": [0, 65535], "no if not ile leaue": [0, 65535], "if not ile leaue him": [0, 65535], "not ile leaue him to": [0, 65535], "ile leaue him to the": [0, 65535], "leaue him to the officer": [0, 65535], "him to the officer ant": [0, 65535], "to the officer ant i": [0, 65535], "the officer ant i answer": [0, 65535], "officer ant i answer you": [0, 65535], "ant i answer you what": [0, 65535], "i answer you what should": [0, 65535], "answer you what should i": [0, 65535], "you what should i answer": [0, 65535], "what should i answer you": [0, 65535], "should i answer you gold": [0, 65535], "i answer you gold the": [0, 65535], "answer you gold the monie": [0, 65535], "you gold the monie that": [0, 65535], "gold the monie that you": [0, 65535], "the monie that you owe": [0, 65535], "monie that you owe me": [0, 65535], "that you owe me for": [0, 65535], "you owe me for the": [0, 65535], "owe me for the chaine": [0, 65535], "me for the chaine ant": [0, 65535], "for the chaine ant i": [0, 65535], "the chaine ant i owe": [0, 65535], "chaine ant i owe you": [0, 65535], "ant i owe you none": [0, 65535], "i owe you none till": [0, 65535], "owe you none till i": [0, 65535], "you none till i receiue": [0, 65535], "none till i receiue the": [0, 65535], "till i receiue the chaine": [0, 65535], "i receiue the chaine gold": [0, 65535], "receiue the chaine gold you": [0, 65535], "the chaine gold you know": [0, 65535], "chaine gold you know i": [0, 65535], "gold you know i gaue": [0, 65535], "i gaue it you halfe": [0, 65535], "gaue it you halfe an": [0, 65535], "it you halfe an houre": [0, 65535], "you halfe an houre since": [0, 65535], "halfe an houre since ant": [0, 65535], "an houre since ant you": [0, 65535], "houre since ant you gaue": [0, 65535], "since ant you gaue me": [0, 65535], "ant you gaue me none": [0, 65535], "you gaue me none you": [0, 65535], "gaue me none you wrong": [0, 65535], "me none you wrong mee": [0, 65535], "none you wrong mee much": [0, 65535], "you wrong mee much to": [0, 65535], "wrong mee much to say": [0, 65535], "mee much to say so": [0, 65535], "much to say so gold": [0, 65535], "to say so gold you": [0, 65535], "say so gold you wrong": [0, 65535], "so gold you wrong me": [0, 65535], "gold you wrong me more": [0, 65535], "you wrong me more sir": [0, 65535], "wrong me more sir in": [0, 65535], "me more sir in denying": [0, 65535], "more sir in denying it": [0, 65535], "sir in denying it consider": [0, 65535], "in denying it consider how": [0, 65535], "denying it consider how it": [0, 65535], "it consider how it stands": [0, 65535], "consider how it stands vpon": [0, 65535], "how it stands vpon my": [0, 65535], "it stands vpon my credit": [0, 65535], "stands vpon my credit mar": [0, 65535], "vpon my credit mar well": [0, 65535], "my credit mar well officer": [0, 65535], "credit mar well officer arrest": [0, 65535], "mar well officer arrest him": [0, 65535], "well officer arrest him at": [0, 65535], "officer arrest him at my": [0, 65535], "arrest him at my suite": [0, 65535], "him at my suite offi": [0, 65535], "at my suite offi i": [0, 65535], "my suite offi i do": [0, 65535], "suite offi i do and": [0, 65535], "offi i do and charge": [0, 65535], "i do and charge you": [0, 65535], "do and charge you in": [0, 65535], "and charge you in the": [0, 65535], "charge you in the dukes": [0, 65535], "you in the dukes name": [0, 65535], "in the dukes name to": [0, 65535], "the dukes name to obey": [0, 65535], "dukes name to obey me": [0, 65535], "name to obey me gold": [0, 65535], "to obey me gold this": [0, 65535], "obey me gold this touches": [0, 65535], "me gold this touches me": [0, 65535], "gold this touches me in": [0, 65535], "this touches me in reputation": [0, 65535], "touches me in reputation either": [0, 65535], "me in reputation either consent": [0, 65535], "in reputation either consent to": [0, 65535], "reputation either consent to pay": [0, 65535], "either consent to pay this": [0, 65535], "consent to pay this sum": [0, 65535], "to pay this sum for": [0, 65535], "pay this sum for me": [0, 65535], "this sum for me or": [0, 65535], "sum for me or i": [0, 65535], "for me or i attach": [0, 65535], "me or i attach you": [0, 65535], "or i attach you by": [0, 65535], "i attach you by this": [0, 65535], "you by this officer ant": [0, 65535], "by this officer ant consent": [0, 65535], "this officer ant consent to": [0, 65535], "officer ant consent to pay": [0, 65535], "ant consent to pay thee": [0, 65535], "consent to pay thee that": [0, 65535], "to pay thee that i": [0, 65535], "pay thee that i neuer": [0, 65535], "thee that i neuer had": [0, 65535], "that i neuer had arrest": [0, 65535], "i neuer had arrest me": [0, 65535], "neuer had arrest me foolish": [0, 65535], "had arrest me foolish fellow": [0, 65535], "arrest me foolish fellow if": [0, 65535], "me foolish fellow if thou": [0, 65535], "foolish fellow if thou dar'st": [0, 65535], "fellow if thou dar'st gold": [0, 65535], "if thou dar'st gold heere": [0, 65535], "thou dar'st gold heere is": [0, 65535], "dar'st gold heere is thy": [0, 65535], "gold heere is thy fee": [0, 65535], "heere is thy fee arrest": [0, 65535], "is thy fee arrest him": [0, 65535], "thy fee arrest him officer": [0, 65535], "fee arrest him officer i": [0, 65535], "arrest him officer i would": [0, 65535], "him officer i would not": [0, 65535], "officer i would not spare": [0, 65535], "i would not spare my": [0, 65535], "would not spare my brother": [0, 65535], "not spare my brother in": [0, 65535], "spare my brother in this": [0, 65535], "my brother in this case": [0, 65535], "brother in this case if": [0, 65535], "in this case if he": [0, 65535], "this case if he should": [0, 65535], "case if he should scorne": [0, 65535], "if he should scorne me": [0, 65535], "he should scorne me so": [0, 65535], "should scorne me so apparantly": [0, 65535], "scorne me so apparantly offic": [0, 65535], "me so apparantly offic i": [0, 65535], "so apparantly offic i do": [0, 65535], "apparantly offic i do arrest": [0, 65535], "offic i do arrest you": [0, 65535], "i do arrest you sir": [0, 65535], "do arrest you sir you": [0, 65535], "arrest you sir you heare": [0, 65535], "you sir you heare the": [0, 65535], "sir you heare the suite": [0, 65535], "you heare the suite ant": [0, 65535], "heare the suite ant i": [0, 65535], "the suite ant i do": [0, 65535], "suite ant i do obey": [0, 65535], "ant i do obey thee": [0, 65535], "i do obey thee till": [0, 65535], "do obey thee till i": [0, 65535], "obey thee till i giue": [0, 65535], "thee till i giue thee": [0, 65535], "till i giue thee baile": [0, 65535], "i giue thee baile but": [0, 65535], "giue thee baile but sirrah": [0, 65535], "thee baile but sirrah you": [0, 65535], "baile but sirrah you shall": [0, 65535], "but sirrah you shall buy": [0, 65535], "sirrah you shall buy this": [0, 65535], "you shall buy this sport": [0, 65535], "shall buy this sport as": [0, 65535], "buy this sport as deere": [0, 65535], "this sport as deere as": [0, 65535], "sport as deere as all": [0, 65535], "as deere as all the": [0, 65535], "deere as all the mettall": [0, 65535], "as all the mettall in": [0, 65535], "all the mettall in your": [0, 65535], "the mettall in your shop": [0, 65535], "mettall in your shop will": [0, 65535], "in your shop will answer": [0, 65535], "your shop will answer gold": [0, 65535], "shop will answer gold sir": [0, 65535], "will answer gold sir sir": [0, 65535], "answer gold sir sir i": [0, 65535], "gold sir sir i shall": [0, 65535], "sir sir i shall haue": [0, 65535], "sir i shall haue law": [0, 65535], "i shall haue law in": [0, 65535], "shall haue law in ephesus": [0, 65535], "haue law in ephesus to": [0, 65535], "law in ephesus to your": [0, 65535], "in ephesus to your notorious": [0, 65535], "ephesus to your notorious shame": [0, 65535], "to your notorious shame i": [0, 65535], "your notorious shame i doubt": [0, 65535], "notorious shame i doubt it": [0, 65535], "shame i doubt it not": [0, 65535], "i doubt it not enter": [0, 65535], "doubt it not enter dromio": [0, 65535], "it not enter dromio sira": [0, 65535], "not enter dromio sira from": [0, 65535], "enter dromio sira from the": [0, 65535], "dromio sira from the bay": [0, 65535], "sira from the bay dro": [0, 65535], "from the bay dro master": [0, 65535], "the bay dro master there's": [0, 65535], "bay dro master there's a": [0, 65535], "dro master there's a barke": [0, 65535], "master there's a barke of": [0, 65535], "there's a barke of epidamium": [0, 65535], "a barke of epidamium that": [0, 65535], "barke of epidamium that staies": [0, 65535], "of epidamium that staies but": [0, 65535], "epidamium that staies but till": [0, 65535], "that staies but till her": [0, 65535], "staies but till her owner": [0, 65535], "but till her owner comes": [0, 65535], "till her owner comes aboord": [0, 65535], "her owner comes aboord and": [0, 65535], "owner comes aboord and then": [0, 65535], "comes aboord and then sir": [0, 65535], "aboord and then sir she": [0, 65535], "and then sir she beares": [0, 65535], "then sir she beares away": [0, 65535], "sir she beares away our": [0, 65535], "she beares away our fraughtage": [0, 65535], "beares away our fraughtage sir": [0, 65535], "away our fraughtage sir i": [0, 65535], "our fraughtage sir i haue": [0, 65535], "fraughtage sir i haue conuei'd": [0, 65535], "sir i haue conuei'd aboord": [0, 65535], "i haue conuei'd aboord and": [0, 65535], "haue conuei'd aboord and i": [0, 65535], "conuei'd aboord and i haue": [0, 65535], "aboord and i haue bought": [0, 65535], "and i haue bought the": [0, 65535], "i haue bought the oyle": [0, 65535], "haue bought the oyle the": [0, 65535], "bought the oyle the balsamum": [0, 65535], "the oyle the balsamum and": [0, 65535], "oyle the balsamum and aqua": [0, 65535], "the balsamum and aqua vit\u00e6": [0, 65535], "balsamum and aqua vit\u00e6 the": [0, 65535], "and aqua vit\u00e6 the ship": [0, 65535], "aqua vit\u00e6 the ship is": [0, 65535], "vit\u00e6 the ship is in": [0, 65535], "the ship is in her": [0, 65535], "ship is in her trim": [0, 65535], "is in her trim the": [0, 65535], "in her trim the merrie": [0, 65535], "her trim the merrie winde": [0, 65535], "trim the merrie winde blowes": [0, 65535], "the merrie winde blowes faire": [0, 65535], "merrie winde blowes faire from": [0, 65535], "winde blowes faire from land": [0, 65535], "blowes faire from land they": [0, 65535], "faire from land they stay": [0, 65535], "from land they stay for": [0, 65535], "land they stay for nought": [0, 65535], "they stay for nought at": [0, 65535], "stay for nought at all": [0, 65535], "for nought at all but": [0, 65535], "nought at all but for": [0, 65535], "at all but for their": [0, 65535], "all but for their owner": [0, 65535], "but for their owner master": [0, 65535], "for their owner master and": [0, 65535], "their owner master and your": [0, 65535], "owner master and your selfe": [0, 65535], "master and your selfe an": [0, 65535], "and your selfe an how": [0, 65535], "your selfe an how now": [0, 65535], "selfe an how now a": [0, 65535], "an how now a madman": [0, 65535], "how now a madman why": [0, 65535], "now a madman why thou": [0, 65535], "a madman why thou peeuish": [0, 65535], "madman why thou peeuish sheep": [0, 65535], "why thou peeuish sheep what": [0, 65535], "thou peeuish sheep what ship": [0, 65535], "peeuish sheep what ship of": [0, 65535], "sheep what ship of epidamium": [0, 65535], "what ship of epidamium staies": [0, 65535], "ship of epidamium staies for": [0, 65535], "of epidamium staies for me": [0, 65535], "epidamium staies for me s": [0, 65535], "staies for me s dro": [0, 65535], "for me s dro a": [0, 65535], "me s dro a ship": [0, 65535], "s dro a ship you": [0, 65535], "dro a ship you sent": [0, 65535], "a ship you sent me": [0, 65535], "ship you sent me too": [0, 65535], "you sent me too to": [0, 65535], "sent me too to hier": [0, 65535], "me too to hier waftage": [0, 65535], "too to hier waftage ant": [0, 65535], "to hier waftage ant thou": [0, 65535], "hier waftage ant thou drunken": [0, 65535], "waftage ant thou drunken slaue": [0, 65535], "ant thou drunken slaue i": [0, 65535], "thou drunken slaue i sent": [0, 65535], "drunken slaue i sent thee": [0, 65535], "slaue i sent thee for": [0, 65535], "i sent thee for a": [0, 65535], "sent thee for a rope": [0, 65535], "thee for a rope and": [0, 65535], "for a rope and told": [0, 65535], "a rope and told thee": [0, 65535], "rope and told thee to": [0, 65535], "and told thee to what": [0, 65535], "told thee to what purpose": [0, 65535], "thee to what purpose and": [0, 65535], "to what purpose and what": [0, 65535], "what purpose and what end": [0, 65535], "purpose and what end s": [0, 65535], "and what end s dro": [0, 65535], "what end s dro you": [0, 65535], "end s dro you sent": [0, 65535], "s dro you sent me": [0, 65535], "dro you sent me for": [0, 65535], "you sent me for a": [0, 65535], "sent me for a ropes": [0, 65535], "me for a ropes end": [0, 65535], "for a ropes end as": [0, 65535], "a ropes end as soone": [0, 65535], "ropes end as soone you": [0, 65535], "end as soone you sent": [0, 65535], "as soone you sent me": [0, 65535], "soone you sent me to": [0, 65535], "you sent me to the": [0, 65535], "sent me to the bay": [0, 65535], "me to the bay sir": [0, 65535], "to the bay sir for": [0, 65535], "the bay sir for a": [0, 65535], "bay sir for a barke": [0, 65535], "sir for a barke ant": [0, 65535], "for a barke ant i": [0, 65535], "a barke ant i will": [0, 65535], "barke ant i will debate": [0, 65535], "ant i will debate this": [0, 65535], "i will debate this matter": [0, 65535], "will debate this matter at": [0, 65535], "debate this matter at more": [0, 65535], "this matter at more leisure": [0, 65535], "matter at more leisure and": [0, 65535], "at more leisure and teach": [0, 65535], "more leisure and teach your": [0, 65535], "leisure and teach your eares": [0, 65535], "and teach your eares to": [0, 65535], "teach your eares to list": [0, 65535], "your eares to list me": [0, 65535], "eares to list me with": [0, 65535], "to list me with more": [0, 65535], "list me with more heede": [0, 65535], "me with more heede to": [0, 65535], "with more heede to adriana": [0, 65535], "more heede to adriana villaine": [0, 65535], "heede to adriana villaine hie": [0, 65535], "to adriana villaine hie thee": [0, 65535], "adriana villaine hie thee straight": [0, 65535], "villaine hie thee straight giue": [0, 65535], "hie thee straight giue her": [0, 65535], "thee straight giue her this": [0, 65535], "straight giue her this key": [0, 65535], "giue her this key and": [0, 65535], "her this key and tell": [0, 65535], "this key and tell her": [0, 65535], "key and tell her in": [0, 65535], "and tell her in the": [0, 65535], "tell her in the deske": [0, 65535], "her in the deske that's": [0, 65535], "in the deske that's couer'd": [0, 65535], "the deske that's couer'd o're": [0, 65535], "deske that's couer'd o're with": [0, 65535], "that's couer'd o're with turkish": [0, 65535], "couer'd o're with turkish tapistrie": [0, 65535], "o're with turkish tapistrie there": [0, 65535], "with turkish tapistrie there is": [0, 65535], "turkish tapistrie there is a": [0, 65535], "tapistrie there is a purse": [0, 65535], "there is a purse of": [0, 65535], "is a purse of duckets": [0, 65535], "a purse of duckets let": [0, 65535], "purse of duckets let her": [0, 65535], "of duckets let her send": [0, 65535], "duckets let her send it": [0, 65535], "let her send it tell": [0, 65535], "her send it tell her": [0, 65535], "send it tell her i": [0, 65535], "it tell her i am": [0, 65535], "tell her i am arrested": [0, 65535], "her i am arrested in": [0, 65535], "i am arrested in the": [0, 65535], "am arrested in the streete": [0, 65535], "arrested in the streete and": [0, 65535], "in the streete and that": [0, 65535], "the streete and that shall": [0, 65535], "streete and that shall baile": [0, 65535], "and that shall baile me": [0, 65535], "that shall baile me hie": [0, 65535], "shall baile me hie thee": [0, 65535], "baile me hie thee slaue": [0, 65535], "me hie thee slaue be": [0, 65535], "hie thee slaue be gone": [0, 65535], "thee slaue be gone on": [0, 65535], "slaue be gone on officer": [0, 65535], "be gone on officer to": [0, 65535], "gone on officer to prison": [0, 65535], "on officer to prison till": [0, 65535], "officer to prison till it": [0, 65535], "to prison till it come": [0, 65535], "prison till it come exeunt": [0, 65535], "till it come exeunt s": [0, 65535], "it come exeunt s dromio": [0, 65535], "come exeunt s dromio to": [0, 65535], "exeunt s dromio to adriana": [0, 65535], "s dromio to adriana that": [0, 65535], "dromio to adriana that is": [0, 65535], "to adriana that is where": [0, 65535], "adriana that is where we": [0, 65535], "that is where we din'd": [0, 65535], "is where we din'd where": [0, 65535], "where we din'd where dowsabell": [0, 65535], "we din'd where dowsabell did": [0, 65535], "din'd where dowsabell did claime": [0, 65535], "where dowsabell did claime me": [0, 65535], "dowsabell did claime me for": [0, 65535], "did claime me for her": [0, 65535], "claime me for her husband": [0, 65535], "me for her husband she": [0, 65535], "for her husband she is": [0, 65535], "her husband she is too": [0, 65535], "husband she is too bigge": [0, 65535], "she is too bigge i": [0, 65535], "is too bigge i hope": [0, 65535], "too bigge i hope for": [0, 65535], "bigge i hope for me": [0, 65535], "i hope for me to": [0, 65535], "hope for me to compasse": [0, 65535], "for me to compasse thither": [0, 65535], "me to compasse thither i": [0, 65535], "to compasse thither i must": [0, 65535], "compasse thither i must although": [0, 65535], "thither i must although against": [0, 65535], "i must although against my": [0, 65535], "must although against my will": [0, 65535], "although against my will for": [0, 65535], "against my will for seruants": [0, 65535], "my will for seruants must": [0, 65535], "will for seruants must their": [0, 65535], "for seruants must their masters": [0, 65535], "seruants must their masters mindes": [0, 65535], "must their masters mindes fulfill": [0, 65535], "their masters mindes fulfill exit": [0, 65535], "masters mindes fulfill exit enter": [0, 65535], "mindes fulfill exit enter adriana": [0, 65535], "fulfill exit enter adriana and": [0, 65535], "exit enter adriana and luciana": [0, 65535], "enter adriana and luciana adr": [0, 65535], "adriana and luciana adr ah": [0, 65535], "and luciana adr ah luciana": [0, 65535], "luciana adr ah luciana did": [0, 65535], "adr ah luciana did he": [0, 65535], "ah luciana did he tempt": [0, 65535], "luciana did he tempt thee": [0, 65535], "did he tempt thee so": [0, 65535], "he tempt thee so might'st": [0, 65535], "tempt thee so might'st thou": [0, 65535], "thee so might'st thou perceiue": [0, 65535], "so might'st thou perceiue austeerely": [0, 65535], "might'st thou perceiue austeerely in": [0, 65535], "thou perceiue austeerely in his": [0, 65535], "perceiue austeerely in his eie": [0, 65535], "austeerely in his eie that": [0, 65535], "in his eie that he": [0, 65535], "his eie that he did": [0, 65535], "eie that he did plead": [0, 65535], "that he did plead in": [0, 65535], "he did plead in earnest": [0, 65535], "did plead in earnest yea": [0, 65535], "plead in earnest yea or": [0, 65535], "in earnest yea or no": [0, 65535], "earnest yea or no look'd": [0, 65535], "yea or no look'd he": [0, 65535], "or no look'd he or": [0, 65535], "no look'd he or red": [0, 65535], "look'd he or red or": [0, 65535], "he or red or pale": [0, 65535], "or red or pale or": [0, 65535], "red or pale or sad": [0, 65535], "or pale or sad or": [0, 65535], "pale or sad or merrily": [0, 65535], "or sad or merrily what": [0, 65535], "sad or merrily what obseruation": [0, 65535], "or merrily what obseruation mad'st": [0, 65535], "merrily what obseruation mad'st thou": [0, 65535], "what obseruation mad'st thou in": [0, 65535], "obseruation mad'st thou in this": [0, 65535], "mad'st thou in this case": [0, 65535], "thou in this case oh": [0, 65535], "in this case oh his": [0, 65535], "this case oh his hearts": [0, 65535], "case oh his hearts meteors": [0, 65535], "oh his hearts meteors tilting": [0, 65535], "his hearts meteors tilting in": [0, 65535], "hearts meteors tilting in his": [0, 65535], "meteors tilting in his face": [0, 65535], "tilting in his face luc": [0, 65535], "in his face luc first": [0, 65535], "his face luc first he": [0, 65535], "face luc first he deni'de": [0, 65535], "luc first he deni'de you": [0, 65535], "first he deni'de you had": [0, 65535], "he deni'de you had in": [0, 65535], "deni'de you had in him": [0, 65535], "you had in him no": [0, 65535], "had in him no right": [0, 65535], "in him no right adr": [0, 65535], "him no right adr he": [0, 65535], "no right adr he meant": [0, 65535], "right adr he meant he": [0, 65535], "adr he meant he did": [0, 65535], "he meant he did me": [0, 65535], "meant he did me none": [0, 65535], "he did me none the": [0, 65535], "did me none the more": [0, 65535], "me none the more my": [0, 65535], "none the more my spight": [0, 65535], "the more my spight luc": [0, 65535], "more my spight luc then": [0, 65535], "my spight luc then swore": [0, 65535], "spight luc then swore he": [0, 65535], "luc then swore he that": [0, 65535], "then swore he that he": [0, 65535], "swore he that he was": [0, 65535], "he that he was a": [0, 65535], "that he was a stranger": [0, 65535], "he was a stranger heere": [0, 65535], "was a stranger heere adr": [0, 65535], "a stranger heere adr and": [0, 65535], "stranger heere adr and true": [0, 65535], "heere adr and true he": [0, 65535], "adr and true he swore": [0, 65535], "and true he swore though": [0, 65535], "true he swore though yet": [0, 65535], "he swore though yet forsworne": [0, 65535], "swore though yet forsworne hee": [0, 65535], "though yet forsworne hee were": [0, 65535], "yet forsworne hee were luc": [0, 65535], "forsworne hee were luc then": [0, 65535], "hee were luc then pleaded": [0, 65535], "were luc then pleaded i": [0, 65535], "luc then pleaded i for": [0, 65535], "then pleaded i for you": [0, 65535], "pleaded i for you adr": [0, 65535], "i for you adr and": [0, 65535], "for you adr and what": [0, 65535], "you adr and what said": [0, 65535], "adr and what said he": [0, 65535], "and what said he luc": [0, 65535], "what said he luc that": [0, 65535], "said he luc that loue": [0, 65535], "he luc that loue i": [0, 65535], "luc that loue i begg'd": [0, 65535], "that loue i begg'd for": [0, 65535], "loue i begg'd for you": [0, 65535], "i begg'd for you he": [0, 65535], "begg'd for you he begg'd": [0, 65535], "for you he begg'd of": [0, 65535], "you he begg'd of me": [0, 65535], "he begg'd of me adr": [0, 65535], "begg'd of me adr with": [0, 65535], "of me adr with what": [0, 65535], "me adr with what perswasion": [0, 65535], "adr with what perswasion did": [0, 65535], "with what perswasion did he": [0, 65535], "what perswasion did he tempt": [0, 65535], "perswasion did he tempt thy": [0, 65535], "did he tempt thy loue": [0, 65535], "he tempt thy loue luc": [0, 65535], "tempt thy loue luc with": [0, 65535], "thy loue luc with words": [0, 65535], "loue luc with words that": [0, 65535], "luc with words that in": [0, 65535], "with words that in an": [0, 65535], "words that in an honest": [0, 65535], "that in an honest suit": [0, 65535], "in an honest suit might": [0, 65535], "an honest suit might moue": [0, 65535], "honest suit might moue first": [0, 65535], "suit might moue first he": [0, 65535], "might moue first he did": [0, 65535], "moue first he did praise": [0, 65535], "first he did praise my": [0, 65535], "he did praise my beautie": [0, 65535], "did praise my beautie then": [0, 65535], "praise my beautie then my": [0, 65535], "my beautie then my speech": [0, 65535], "beautie then my speech adr": [0, 65535], "then my speech adr did'st": [0, 65535], "my speech adr did'st speake": [0, 65535], "speech adr did'st speake him": [0, 65535], "adr did'st speake him faire": [0, 65535], "did'st speake him faire luc": [0, 65535], "speake him faire luc haue": [0, 65535], "him faire luc haue patience": [0, 65535], "faire luc haue patience i": [0, 65535], "luc haue patience i beseech": [0, 65535], "haue patience i beseech adr": [0, 65535], "patience i beseech adr i": [0, 65535], "i beseech adr i cannot": [0, 65535], "beseech adr i cannot nor": [0, 65535], "adr i cannot nor i": [0, 65535], "i cannot nor i will": [0, 65535], "cannot nor i will not": [0, 65535], "nor i will not hold": [0, 65535], "i will not hold me": [0, 65535], "will not hold me still": [0, 65535], "not hold me still my": [0, 65535], "hold me still my tongue": [0, 65535], "me still my tongue though": [0, 65535], "still my tongue though not": [0, 65535], "my tongue though not my": [0, 65535], "tongue though not my heart": [0, 65535], "though not my heart shall": [0, 65535], "not my heart shall haue": [0, 65535], "my heart shall haue his": [0, 65535], "heart shall haue his will": [0, 65535], "shall haue his will he": [0, 65535], "haue his will he is": [0, 65535], "his will he is deformed": [0, 65535], "will he is deformed crooked": [0, 65535], "he is deformed crooked old": [0, 65535], "is deformed crooked old and": [0, 65535], "deformed crooked old and sere": [0, 65535], "crooked old and sere ill": [0, 65535], "old and sere ill fac'd": [0, 65535], "and sere ill fac'd worse": [0, 65535], "sere ill fac'd worse bodied": [0, 65535], "ill fac'd worse bodied shapelesse": [0, 65535], "fac'd worse bodied shapelesse euery": [0, 65535], "worse bodied shapelesse euery where": [0, 65535], "bodied shapelesse euery where vicious": [0, 65535], "shapelesse euery where vicious vngentle": [0, 65535], "euery where vicious vngentle foolish": [0, 65535], "where vicious vngentle foolish blunt": [0, 65535], "vicious vngentle foolish blunt vnkinde": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "foolish blunt vnkinde stigmaticall in": [0, 65535], "blunt vnkinde stigmaticall in making": [0, 65535], "vnkinde stigmaticall in making worse": [0, 65535], "stigmaticall in making worse in": [0, 65535], "in making worse in minde": [0, 65535], "making worse in minde luc": [0, 65535], "worse in minde luc who": [0, 65535], "in minde luc who would": [0, 65535], "minde luc who would be": [0, 65535], "luc who would be iealous": [0, 65535], "who would be iealous then": [0, 65535], "would be iealous then of": [0, 65535], "be iealous then of such": [0, 65535], "iealous then of such a": [0, 65535], "then of such a one": [0, 65535], "of such a one no": [0, 65535], "such a one no euill": [0, 65535], "a one no euill lost": [0, 65535], "one no euill lost is": [0, 65535], "no euill lost is wail'd": [0, 65535], "euill lost is wail'd when": [0, 65535], "lost is wail'd when it": [0, 65535], "is wail'd when it is": [0, 65535], "wail'd when it is gone": [0, 65535], "when it is gone adr": [0, 65535], "it is gone adr ah": [0, 65535], "is gone adr ah but": [0, 65535], "gone adr ah but i": [0, 65535], "adr ah but i thinke": [0, 65535], "ah but i thinke him": [0, 65535], "but i thinke him better": [0, 65535], "i thinke him better then": [0, 65535], "thinke him better then i": [0, 65535], "him better then i say": [0, 65535], "better then i say and": [0, 65535], "then i say and yet": [0, 65535], "i say and yet would": [0, 65535], "say and yet would herein": [0, 65535], "and yet would herein others": [0, 65535], "yet would herein others eies": [0, 65535], "would herein others eies were": [0, 65535], "herein others eies were worse": [0, 65535], "others eies were worse farre": [0, 65535], "eies were worse farre from": [0, 65535], "were worse farre from her": [0, 65535], "worse farre from her nest": [0, 65535], "farre from her nest the": [0, 65535], "from her nest the lapwing": [0, 65535], "her nest the lapwing cries": [0, 65535], "nest the lapwing cries away": [0, 65535], "the lapwing cries away my": [0, 65535], "lapwing cries away my heart": [0, 65535], "cries away my heart praies": [0, 65535], "away my heart praies for": [0, 65535], "my heart praies for him": [0, 65535], "heart praies for him though": [0, 65535], "praies for him though my": [0, 65535], "for him though my tongue": [0, 65535], "him though my tongue doe": [0, 65535], "though my tongue doe curse": [0, 65535], "my tongue doe curse enter": [0, 65535], "tongue doe curse enter s": [0, 65535], "doe curse enter s dromio": [0, 65535], "curse enter s dromio dro": [0, 65535], "enter s dromio dro here": [0, 65535], "s dromio dro here goe": [0, 65535], "dromio dro here goe the": [0, 65535], "dro here goe the deske": [0, 65535], "here goe the deske the": [0, 65535], "goe the deske the purse": [0, 65535], "the deske the purse sweet": [0, 65535], "deske the purse sweet now": [0, 65535], "the purse sweet now make": [0, 65535], "purse sweet now make haste": [0, 65535], "sweet now make haste luc": [0, 65535], "now make haste luc how": [0, 65535], "make haste luc how hast": [0, 65535], "haste luc how hast thou": [0, 65535], "luc how hast thou lost": [0, 65535], "how hast thou lost thy": [0, 65535], "hast thou lost thy breath": [0, 65535], "thou lost thy breath s": [0, 65535], "lost thy breath s dro": [0, 65535], "thy breath s dro by": [0, 65535], "breath s dro by running": [0, 65535], "s dro by running fast": [0, 65535], "dro by running fast adr": [0, 65535], "by running fast adr where": [0, 65535], "running fast adr where is": [0, 65535], "fast adr where is thy": [0, 65535], "adr where is thy master": [0, 65535], "where is thy master dromio": [0, 65535], "is thy master dromio is": [0, 65535], "thy master dromio is he": [0, 65535], "master dromio is he well": [0, 65535], "dromio is he well s": [0, 65535], "is he well s dro": [0, 65535], "he well s dro no": [0, 65535], "well s dro no he's": [0, 65535], "s dro no he's in": [0, 65535], "dro no he's in tartar": [0, 65535], "no he's in tartar limbo": [0, 65535], "he's in tartar limbo worse": [0, 65535], "in tartar limbo worse then": [0, 65535], "tartar limbo worse then hell": [0, 65535], "limbo worse then hell a": [0, 65535], "worse then hell a diuell": [0, 65535], "then hell a diuell in": [0, 65535], "hell a diuell in an": [0, 65535], "a diuell in an euerlasting": [0, 65535], "diuell in an euerlasting garment": [0, 65535], "in an euerlasting garment hath": [0, 65535], "an euerlasting garment hath him": [0, 65535], "euerlasting garment hath him on": [0, 65535], "garment hath him on whose": [0, 65535], "hath him on whose hard": [0, 65535], "him on whose hard heart": [0, 65535], "on whose hard heart is": [0, 65535], "whose hard heart is button'd": [0, 65535], "hard heart is button'd vp": [0, 65535], "heart is button'd vp with": [0, 65535], "is button'd vp with steele": [0, 65535], "button'd vp with steele a": [0, 65535], "vp with steele a feind": [0, 65535], "with steele a feind a": [0, 65535], "steele a feind a fairie": [0, 65535], "a feind a fairie pittilesse": [0, 65535], "feind a fairie pittilesse and": [0, 65535], "a fairie pittilesse and ruffe": [0, 65535], "fairie pittilesse and ruffe a": [0, 65535], "pittilesse and ruffe a wolfe": [0, 65535], "and ruffe a wolfe nay": [0, 65535], "ruffe a wolfe nay worse": [0, 65535], "a wolfe nay worse a": [0, 65535], "wolfe nay worse a fellow": [0, 65535], "nay worse a fellow all": [0, 65535], "worse a fellow all in": [0, 65535], "a fellow all in buffe": [0, 65535], "fellow all in buffe a": [0, 65535], "all in buffe a back": [0, 65535], "in buffe a back friend": [0, 65535], "buffe a back friend a": [0, 65535], "a back friend a shoulder": [0, 65535], "back friend a shoulder clapper": [0, 65535], "friend a shoulder clapper one": [0, 65535], "a shoulder clapper one that": [0, 65535], "shoulder clapper one that countermads": [0, 65535], "clapper one that countermads the": [0, 65535], "one that countermads the passages": [0, 65535], "that countermads the passages of": [0, 65535], "countermads the passages of allies": [0, 65535], "the passages of allies creekes": [0, 65535], "passages of allies creekes and": [0, 65535], "of allies creekes and narrow": [0, 65535], "allies creekes and narrow lands": [0, 65535], "creekes and narrow lands a": [0, 65535], "and narrow lands a hound": [0, 65535], "narrow lands a hound that": [0, 65535], "lands a hound that runs": [0, 65535], "a hound that runs counter": [0, 65535], "hound that runs counter and": [0, 65535], "that runs counter and yet": [0, 65535], "runs counter and yet draws": [0, 65535], "counter and yet draws drifoot": [0, 65535], "and yet draws drifoot well": [0, 65535], "yet draws drifoot well one": [0, 65535], "draws drifoot well one that": [0, 65535], "drifoot well one that before": [0, 65535], "well one that before the": [0, 65535], "one that before the iudgment": [0, 65535], "that before the iudgment carries": [0, 65535], "before the iudgment carries poore": [0, 65535], "the iudgment carries poore soules": [0, 65535], "iudgment carries poore soules to": [0, 65535], "carries poore soules to hel": [0, 65535], "poore soules to hel adr": [0, 65535], "soules to hel adr why": [0, 65535], "to hel adr why man": [0, 65535], "hel adr why man what": [0, 65535], "adr why man what is": [0, 65535], "why man what is the": [0, 65535], "man what is the matter": [0, 65535], "what is the matter s": [0, 65535], "is the matter s dro": [0, 65535], "the matter s dro i": [0, 65535], "matter s dro i doe": [0, 65535], "s dro i doe not": [0, 65535], "dro i doe not know": [0, 65535], "i doe not know the": [0, 65535], "doe not know the matter": [0, 65535], "not know the matter hee": [0, 65535], "know the matter hee is": [0, 65535], "the matter hee is rested": [0, 65535], "matter hee is rested on": [0, 65535], "hee is rested on the": [0, 65535], "is rested on the case": [0, 65535], "rested on the case adr": [0, 65535], "on the case adr what": [0, 65535], "the case adr what is": [0, 65535], "case adr what is he": [0, 65535], "adr what is he arrested": [0, 65535], "what is he arrested tell": [0, 65535], "is he arrested tell me": [0, 65535], "he arrested tell me at": [0, 65535], "arrested tell me at whose": [0, 65535], "tell me at whose suite": [0, 65535], "me at whose suite s": [0, 65535], "at whose suite s dro": [0, 65535], "whose suite s dro i": [0, 65535], "suite s dro i know": [0, 65535], "s dro i know not": [0, 65535], "dro i know not at": [0, 65535], "i know not at whose": [0, 65535], "know not at whose suite": [0, 65535], "not at whose suite he": [0, 65535], "at whose suite he is": [0, 65535], "whose suite he is arested": [0, 65535], "suite he is arested well": [0, 65535], "he is arested well but": [0, 65535], "is arested well but is": [0, 65535], "arested well but is in": [0, 65535], "well but is in a": [0, 65535], "but is in a suite": [0, 65535], "is in a suite of": [0, 65535], "in a suite of buffe": [0, 65535], "a suite of buffe which": [0, 65535], "suite of buffe which rested": [0, 65535], "of buffe which rested him": [0, 65535], "buffe which rested him that": [0, 65535], "which rested him that can": [0, 65535], "rested him that can i": [0, 65535], "him that can i tell": [0, 65535], "that can i tell will": [0, 65535], "can i tell will you": [0, 65535], "i tell will you send": [0, 65535], "tell will you send him": [0, 65535], "will you send him mistris": [0, 65535], "you send him mistris redemption": [0, 65535], "send him mistris redemption the": [0, 65535], "him mistris redemption the monie": [0, 65535], "mistris redemption the monie in": [0, 65535], "redemption the monie in his": [0, 65535], "the monie in his deske": [0, 65535], "monie in his deske adr": [0, 65535], "in his deske adr go": [0, 65535], "his deske adr go fetch": [0, 65535], "deske adr go fetch it": [0, 65535], "adr go fetch it sister": [0, 65535], "go fetch it sister this": [0, 65535], "fetch it sister this i": [0, 65535], "it sister this i wonder": [0, 65535], "sister this i wonder at": [0, 65535], "this i wonder at exit": [0, 65535], "i wonder at exit luciana": [0, 65535], "wonder at exit luciana thus": [0, 65535], "at exit luciana thus he": [0, 65535], "exit luciana thus he vnknowne": [0, 65535], "luciana thus he vnknowne to": [0, 65535], "thus he vnknowne to me": [0, 65535], "he vnknowne to me should": [0, 65535], "vnknowne to me should be": [0, 65535], "to me should be in": [0, 65535], "me should be in debt": [0, 65535], "should be in debt tell": [0, 65535], "be in debt tell me": [0, 65535], "in debt tell me was": [0, 65535], "debt tell me was he": [0, 65535], "tell me was he arested": [0, 65535], "me was he arested on": [0, 65535], "was he arested on a": [0, 65535], "he arested on a band": [0, 65535], "arested on a band s": [0, 65535], "on a band s dro": [0, 65535], "a band s dro not": [0, 65535], "band s dro not on": [0, 65535], "s dro not on a": [0, 65535], "dro not on a band": [0, 65535], "not on a band but": [0, 65535], "on a band but on": [0, 65535], "a band but on a": [0, 65535], "band but on a stronger": [0, 65535], "but on a stronger thing": [0, 65535], "on a stronger thing a": [0, 65535], "a stronger thing a chaine": [0, 65535], "stronger thing a chaine a": [0, 65535], "thing a chaine a chaine": [0, 65535], "a chaine a chaine doe": [0, 65535], "chaine a chaine doe you": [0, 65535], "a chaine doe you not": [0, 65535], "chaine doe you not here": [0, 65535], "doe you not here it": [0, 65535], "you not here it ring": [0, 65535], "not here it ring adria": [0, 65535], "here it ring adria what": [0, 65535], "it ring adria what the": [0, 65535], "ring adria what the chaine": [0, 65535], "adria what the chaine s": [0, 65535], "what the chaine s dro": [0, 65535], "the chaine s dro no": [0, 65535], "chaine s dro no no": [0, 65535], "s dro no no the": [0, 65535], "dro no no the bell": [0, 65535], "no no the bell 'tis": [0, 65535], "no the bell 'tis time": [0, 65535], "the bell 'tis time that": [0, 65535], "bell 'tis time that i": [0, 65535], "'tis time that i were": [0, 65535], "time that i were gone": [0, 65535], "that i were gone it": [0, 65535], "i were gone it was": [0, 65535], "were gone it was two": [0, 65535], "gone it was two ere": [0, 65535], "it was two ere i": [0, 65535], "was two ere i left": [0, 65535], "two ere i left him": [0, 65535], "ere i left him and": [0, 65535], "i left him and now": [0, 65535], "left him and now the": [0, 65535], "him and now the clocke": [0, 65535], "and now the clocke strikes": [0, 65535], "now the clocke strikes one": [0, 65535], "the clocke strikes one adr": [0, 65535], "clocke strikes one adr the": [0, 65535], "strikes one adr the houres": [0, 65535], "one adr the houres come": [0, 65535], "adr the houres come backe": [0, 65535], "the houres come backe that": [0, 65535], "houres come backe that did": [0, 65535], "come backe that did i": [0, 65535], "backe that did i neuer": [0, 65535], "that did i neuer here": [0, 65535], "did i neuer here s": [0, 65535], "i neuer here s dro": [0, 65535], "neuer here s dro oh": [0, 65535], "here s dro oh yes": [0, 65535], "s dro oh yes if": [0, 65535], "dro oh yes if any": [0, 65535], "oh yes if any houre": [0, 65535], "yes if any houre meete": [0, 65535], "if any houre meete a": [0, 65535], "any houre meete a serieant": [0, 65535], "houre meete a serieant a": [0, 65535], "meete a serieant a turnes": [0, 65535], "a serieant a turnes backe": [0, 65535], "serieant a turnes backe for": [0, 65535], "a turnes backe for verie": [0, 65535], "turnes backe for verie feare": [0, 65535], "backe for verie feare adri": [0, 65535], "for verie feare adri as": [0, 65535], "verie feare adri as if": [0, 65535], "feare adri as if time": [0, 65535], "adri as if time were": [0, 65535], "as if time were in": [0, 65535], "if time were in debt": [0, 65535], "time were in debt how": [0, 65535], "were in debt how fondly": [0, 65535], "in debt how fondly do'st": [0, 65535], "debt how fondly do'st thou": [0, 65535], "how fondly do'st thou reason": [0, 65535], "fondly do'st thou reason s": [0, 65535], "do'st thou reason s dro": [0, 65535], "thou reason s dro time": [0, 65535], "reason s dro time is": [0, 65535], "s dro time is a": [0, 65535], "dro time is a verie": [0, 65535], "time is a verie bankerout": [0, 65535], "is a verie bankerout and": [0, 65535], "a verie bankerout and owes": [0, 65535], "verie bankerout and owes more": [0, 65535], "bankerout and owes more then": [0, 65535], "and owes more then he's": [0, 65535], "owes more then he's worth": [0, 65535], "more then he's worth to": [0, 65535], "then he's worth to season": [0, 65535], "he's worth to season nay": [0, 65535], "worth to season nay he's": [0, 65535], "to season nay he's a": [0, 65535], "season nay he's a theefe": [0, 65535], "nay he's a theefe too": [0, 65535], "he's a theefe too haue": [0, 65535], "a theefe too haue you": [0, 65535], "theefe too haue you not": [0, 65535], "too haue you not heard": [0, 65535], "haue you not heard men": [0, 65535], "you not heard men say": [0, 65535], "not heard men say that": [0, 65535], "heard men say that time": [0, 65535], "men say that time comes": [0, 65535], "say that time comes stealing": [0, 65535], "that time comes stealing on": [0, 65535], "time comes stealing on by": [0, 65535], "comes stealing on by night": [0, 65535], "stealing on by night and": [0, 65535], "on by night and day": [0, 65535], "by night and day if": [0, 65535], "night and day if i": [0, 65535], "and day if i be": [0, 65535], "day if i be in": [0, 65535], "if i be in debt": [0, 65535], "i be in debt and": [0, 65535], "be in debt and theft": [0, 65535], "in debt and theft and": [0, 65535], "debt and theft and a": [0, 65535], "and theft and a serieant": [0, 65535], "theft and a serieant in": [0, 65535], "and a serieant in the": [0, 65535], "a serieant in the way": [0, 65535], "serieant in the way hath": [0, 65535], "in the way hath he": [0, 65535], "the way hath he not": [0, 65535], "way hath he not reason": [0, 65535], "hath he not reason to": [0, 65535], "he not reason to turne": [0, 65535], "not reason to turne backe": [0, 65535], "reason to turne backe an": [0, 65535], "to turne backe an houre": [0, 65535], "turne backe an houre in": [0, 65535], "backe an houre in a": [0, 65535], "an houre in a day": [0, 65535], "houre in a day enter": [0, 65535], "in a day enter luciana": [0, 65535], "a day enter luciana adr": [0, 65535], "day enter luciana adr go": [0, 65535], "enter luciana adr go dromio": [0, 65535], "luciana adr go dromio there's": [0, 65535], "adr go dromio there's the": [0, 65535], "go dromio there's the monie": [0, 65535], "dromio there's the monie beare": [0, 65535], "there's the monie beare it": [0, 65535], "the monie beare it straight": [0, 65535], "monie beare it straight and": [0, 65535], "beare it straight and bring": [0, 65535], "it straight and bring thy": [0, 65535], "straight and bring thy master": [0, 65535], "and bring thy master home": [0, 65535], "bring thy master home imediately": [0, 65535], "thy master home imediately come": [0, 65535], "master home imediately come sister": [0, 65535], "home imediately come sister i": [0, 65535], "imediately come sister i am": [0, 65535], "come sister i am prest": [0, 65535], "sister i am prest downe": [0, 65535], "i am prest downe with": [0, 65535], "am prest downe with conceit": [0, 65535], "prest downe with conceit conceit": [0, 65535], "downe with conceit conceit my": [0, 65535], "with conceit conceit my comfort": [0, 65535], "conceit conceit my comfort and": [0, 65535], "conceit my comfort and my": [0, 65535], "my comfort and my iniurie": [0, 65535], "comfort and my iniurie exit": [0, 65535], "and my iniurie exit enter": [0, 65535], "my iniurie exit enter antipholus": [0, 65535], "iniurie exit enter antipholus siracusia": [0, 65535], "exit enter antipholus siracusia there's": [0, 65535], "enter antipholus siracusia there's not": [0, 65535], "antipholus siracusia there's not a": [0, 65535], "siracusia there's not a man": [0, 65535], "there's not a man i": [0, 65535], "not a man i meete": [0, 65535], "a man i meete but": [0, 65535], "man i meete but doth": [0, 65535], "i meete but doth salute": [0, 65535], "meete but doth salute me": [0, 65535], "but doth salute me as": [0, 65535], "doth salute me as if": [0, 65535], "salute me as if i": [0, 65535], "me as if i were": [0, 65535], "as if i were their": [0, 65535], "if i were their well": [0, 65535], "i were their well acquainted": [0, 65535], "were their well acquainted friend": [0, 65535], "their well acquainted friend and": [0, 65535], "well acquainted friend and euerie": [0, 65535], "acquainted friend and euerie one": [0, 65535], "friend and euerie one doth": [0, 65535], "and euerie one doth call": [0, 65535], "euerie one doth call me": [0, 65535], "one doth call me by": [0, 65535], "doth call me by my": [0, 65535], "call me by my name": [0, 65535], "me by my name some": [0, 65535], "by my name some tender": [0, 65535], "my name some tender monie": [0, 65535], "name some tender monie to": [0, 65535], "some tender monie to me": [0, 65535], "tender monie to me some": [0, 65535], "monie to me some inuite": [0, 65535], "to me some inuite me": [0, 65535], "me some inuite me some": [0, 65535], "some inuite me some other": [0, 65535], "inuite me some other giue": [0, 65535], "me some other giue me": [0, 65535], "some other giue me thankes": [0, 65535], "other giue me thankes for": [0, 65535], "giue me thankes for kindnesses": [0, 65535], "me thankes for kindnesses some": [0, 65535], "thankes for kindnesses some offer": [0, 65535], "for kindnesses some offer me": [0, 65535], "kindnesses some offer me commodities": [0, 65535], "some offer me commodities to": [0, 65535], "offer me commodities to buy": [0, 65535], "me commodities to buy euen": [0, 65535], "commodities to buy euen now": [0, 65535], "to buy euen now a": [0, 65535], "buy euen now a tailor": [0, 65535], "euen now a tailor cal'd": [0, 65535], "now a tailor cal'd me": [0, 65535], "a tailor cal'd me in": [0, 65535], "tailor cal'd me in his": [0, 65535], "cal'd me in his shop": [0, 65535], "me in his shop and": [0, 65535], "in his shop and show'd": [0, 65535], "his shop and show'd me": [0, 65535], "shop and show'd me silkes": [0, 65535], "and show'd me silkes that": [0, 65535], "show'd me silkes that he": [0, 65535], "me silkes that he had": [0, 65535], "silkes that he had bought": [0, 65535], "that he had bought for": [0, 65535], "he had bought for me": [0, 65535], "had bought for me and": [0, 65535], "bought for me and therewithall": [0, 65535], "for me and therewithall tooke": [0, 65535], "me and therewithall tooke measure": [0, 65535], "and therewithall tooke measure of": [0, 65535], "therewithall tooke measure of my": [0, 65535], "tooke measure of my body": [0, 65535], "measure of my body sure": [0, 65535], "of my body sure these": [0, 65535], "my body sure these are": [0, 65535], "body sure these are but": [0, 65535], "sure these are but imaginarie": [0, 65535], "these are but imaginarie wiles": [0, 65535], "are but imaginarie wiles and": [0, 65535], "but imaginarie wiles and lapland": [0, 65535], "imaginarie wiles and lapland sorcerers": [0, 65535], "wiles and lapland sorcerers inhabite": [0, 65535], "and lapland sorcerers inhabite here": [0, 65535], "lapland sorcerers inhabite here enter": [0, 65535], "sorcerers inhabite here enter dromio": [0, 65535], "inhabite here enter dromio sir": [0, 65535], "here enter dromio sir s": [0, 65535], "enter dromio sir s dro": [0, 65535], "dromio sir s dro master": [0, 65535], "sir s dro master here's": [0, 65535], "s dro master here's the": [0, 65535], "dro master here's the gold": [0, 65535], "master here's the gold you": [0, 65535], "here's the gold you sent": [0, 65535], "the gold you sent me": [0, 65535], "gold you sent me for": [0, 65535], "you sent me for what": [0, 65535], "sent me for what haue": [0, 65535], "me for what haue you": [0, 65535], "for what haue you got": [0, 65535], "what haue you got the": [0, 65535], "haue you got the picture": [0, 65535], "you got the picture of": [0, 65535], "got the picture of old": [0, 65535], "the picture of old adam": [0, 65535], "picture of old adam new": [0, 65535], "of old adam new apparel'd": [0, 65535], "old adam new apparel'd ant": [0, 65535], "adam new apparel'd ant what": [0, 65535], "new apparel'd ant what gold": [0, 65535], "apparel'd ant what gold is": [0, 65535], "ant what gold is this": [0, 65535], "what gold is this what": [0, 65535], "gold is this what adam": [0, 65535], "is this what adam do'st": [0, 65535], "this what adam do'st thou": [0, 65535], "what adam do'st thou meane": [0, 65535], "adam do'st thou meane s": [0, 65535], "do'st thou meane s dro": [0, 65535], "thou meane s dro not": [0, 65535], "meane s dro not that": [0, 65535], "s dro not that adam": [0, 65535], "dro not that adam that": [0, 65535], "not that adam that kept": [0, 65535], "that adam that kept the": [0, 65535], "adam that kept the paradise": [0, 65535], "that kept the paradise but": [0, 65535], "kept the paradise but that": [0, 65535], "the paradise but that adam": [0, 65535], "paradise but that adam that": [0, 65535], "but that adam that keepes": [0, 65535], "that adam that keepes the": [0, 65535], "adam that keepes the prison": [0, 65535], "that keepes the prison hee": [0, 65535], "keepes the prison hee that": [0, 65535], "the prison hee that goes": [0, 65535], "prison hee that goes in": [0, 65535], "hee that goes in the": [0, 65535], "that goes in the calues": [0, 65535], "goes in the calues skin": [0, 65535], "in the calues skin that": [0, 65535], "the calues skin that was": [0, 65535], "calues skin that was kil'd": [0, 65535], "skin that was kil'd for": [0, 65535], "that was kil'd for the": [0, 65535], "was kil'd for the prodigall": [0, 65535], "kil'd for the prodigall hee": [0, 65535], "for the prodigall hee that": [0, 65535], "the prodigall hee that came": [0, 65535], "prodigall hee that came behinde": [0, 65535], "hee that came behinde you": [0, 65535], "that came behinde you sir": [0, 65535], "came behinde you sir like": [0, 65535], "behinde you sir like an": [0, 65535], "you sir like an euill": [0, 65535], "sir like an euill angel": [0, 65535], "like an euill angel and": [0, 65535], "an euill angel and bid": [0, 65535], "euill angel and bid you": [0, 65535], "angel and bid you forsake": [0, 65535], "and bid you forsake your": [0, 65535], "bid you forsake your libertie": [0, 65535], "you forsake your libertie ant": [0, 65535], "forsake your libertie ant i": [0, 65535], "your libertie ant i vnderstand": [0, 65535], "libertie ant i vnderstand thee": [0, 65535], "ant i vnderstand thee not": [0, 65535], "i vnderstand thee not s": [0, 65535], "vnderstand thee not s dro": [0, 65535], "thee not s dro no": [0, 65535], "not s dro no why": [0, 65535], "s dro no why 'tis": [0, 65535], "dro no why 'tis a": [0, 65535], "no why 'tis a plaine": [0, 65535], "why 'tis a plaine case": [0, 65535], "'tis a plaine case he": [0, 65535], "a plaine case he that": [0, 65535], "plaine case he that went": [0, 65535], "case he that went like": [0, 65535], "he that went like a": [0, 65535], "that went like a base": [0, 65535], "went like a base viole": [0, 65535], "like a base viole in": [0, 65535], "a base viole in a": [0, 65535], "base viole in a case": [0, 65535], "viole in a case of": [0, 65535], "in a case of leather": [0, 65535], "a case of leather the": [0, 65535], "case of leather the man": [0, 65535], "of leather the man sir": [0, 65535], "leather the man sir that": [0, 65535], "the man sir that when": [0, 65535], "man sir that when gentlemen": [0, 65535], "sir that when gentlemen are": [0, 65535], "that when gentlemen are tired": [0, 65535], "when gentlemen are tired giues": [0, 65535], "gentlemen are tired giues them": [0, 65535], "are tired giues them a": [0, 65535], "tired giues them a sob": [0, 65535], "giues them a sob and": [0, 65535], "them a sob and rests": [0, 65535], "a sob and rests them": [0, 65535], "sob and rests them he": [0, 65535], "and rests them he sir": [0, 65535], "rests them he sir that": [0, 65535], "them he sir that takes": [0, 65535], "he sir that takes pittie": [0, 65535], "sir that takes pittie on": [0, 65535], "that takes pittie on decaied": [0, 65535], "takes pittie on decaied men": [0, 65535], "pittie on decaied men and": [0, 65535], "on decaied men and giues": [0, 65535], "decaied men and giues them": [0, 65535], "men and giues them suites": [0, 65535], "and giues them suites of": [0, 65535], "giues them suites of durance": [0, 65535], "them suites of durance he": [0, 65535], "suites of durance he that": [0, 65535], "of durance he that sets": [0, 65535], "durance he that sets vp": [0, 65535], "he that sets vp his": [0, 65535], "that sets vp his rest": [0, 65535], "sets vp his rest to": [0, 65535], "vp his rest to doe": [0, 65535], "his rest to doe more": [0, 65535], "rest to doe more exploits": [0, 65535], "to doe more exploits with": [0, 65535], "doe more exploits with his": [0, 65535], "more exploits with his mace": [0, 65535], "exploits with his mace then": [0, 65535], "with his mace then a": [0, 65535], "his mace then a moris": [0, 65535], "mace then a moris pike": [0, 65535], "then a moris pike ant": [0, 65535], "a moris pike ant what": [0, 65535], "moris pike ant what thou": [0, 65535], "pike ant what thou mean'st": [0, 65535], "ant what thou mean'st an": [0, 65535], "what thou mean'st an officer": [0, 65535], "thou mean'st an officer s": [0, 65535], "mean'st an officer s dro": [0, 65535], "an officer s dro i": [0, 65535], "officer s dro i sir": [0, 65535], "s dro i sir the": [0, 65535], "dro i sir the serieant": [0, 65535], "i sir the serieant of": [0, 65535], "sir the serieant of the": [0, 65535], "the serieant of the band": [0, 65535], "serieant of the band he": [0, 65535], "of the band he that": [0, 65535], "the band he that brings": [0, 65535], "band he that brings any": [0, 65535], "he that brings any man": [0, 65535], "that brings any man to": [0, 65535], "brings any man to answer": [0, 65535], "any man to answer it": [0, 65535], "man to answer it that": [0, 65535], "to answer it that breakes": [0, 65535], "answer it that breakes his": [0, 65535], "it that breakes his band": [0, 65535], "that breakes his band one": [0, 65535], "breakes his band one that": [0, 65535], "his band one that thinkes": [0, 65535], "band one that thinkes a": [0, 65535], "one that thinkes a man": [0, 65535], "that thinkes a man alwaies": [0, 65535], "thinkes a man alwaies going": [0, 65535], "a man alwaies going to": [0, 65535], "man alwaies going to bed": [0, 65535], "alwaies going to bed and": [0, 65535], "going to bed and saies": [0, 65535], "to bed and saies god": [0, 65535], "bed and saies god giue": [0, 65535], "and saies god giue you": [0, 65535], "saies god giue you good": [0, 65535], "god giue you good rest": [0, 65535], "giue you good rest ant": [0, 65535], "you good rest ant well": [0, 65535], "good rest ant well sir": [0, 65535], "rest ant well sir there": [0, 65535], "ant well sir there rest": [0, 65535], "well sir there rest in": [0, 65535], "sir there rest in your": [0, 65535], "there rest in your foolerie": [0, 65535], "rest in your foolerie is": [0, 65535], "in your foolerie is there": [0, 65535], "your foolerie is there any": [0, 65535], "foolerie is there any ships": [0, 65535], "is there any ships puts": [0, 65535], "there any ships puts forth": [0, 65535], "any ships puts forth to": [0, 65535], "ships puts forth to night": [0, 65535], "puts forth to night may": [0, 65535], "forth to night may we": [0, 65535], "to night may we be": [0, 65535], "night may we be gone": [0, 65535], "may we be gone s": [0, 65535], "we be gone s dro": [0, 65535], "be gone s dro why": [0, 65535], "gone s dro why sir": [0, 65535], "s dro why sir i": [0, 65535], "dro why sir i brought": [0, 65535], "why sir i brought you": [0, 65535], "sir i brought you word": [0, 65535], "i brought you word an": [0, 65535], "brought you word an houre": [0, 65535], "you word an houre since": [0, 65535], "word an houre since that": [0, 65535], "an houre since that the": [0, 65535], "houre since that the barke": [0, 65535], "since that the barke expedition": [0, 65535], "that the barke expedition put": [0, 65535], "the barke expedition put forth": [0, 65535], "barke expedition put forth to": [0, 65535], "expedition put forth to night": [0, 65535], "put forth to night and": [0, 65535], "forth to night and then": [0, 65535], "to night and then were": [0, 65535], "night and then were you": [0, 65535], "and then were you hindred": [0, 65535], "then were you hindred by": [0, 65535], "were you hindred by the": [0, 65535], "you hindred by the serieant": [0, 65535], "hindred by the serieant to": [0, 65535], "by the serieant to tarry": [0, 65535], "the serieant to tarry for": [0, 65535], "serieant to tarry for the": [0, 65535], "to tarry for the hoy": [0, 65535], "tarry for the hoy delay": [0, 65535], "for the hoy delay here": [0, 65535], "the hoy delay here are": [0, 65535], "hoy delay here are the": [0, 65535], "delay here are the angels": [0, 65535], "here are the angels that": [0, 65535], "are the angels that you": [0, 65535], "the angels that you sent": [0, 65535], "angels that you sent for": [0, 65535], "that you sent for to": [0, 65535], "you sent for to deliuer": [0, 65535], "sent for to deliuer you": [0, 65535], "for to deliuer you ant": [0, 65535], "to deliuer you ant the": [0, 65535], "deliuer you ant the fellow": [0, 65535], "you ant the fellow is": [0, 65535], "ant the fellow is distract": [0, 65535], "the fellow is distract and": [0, 65535], "fellow is distract and so": [0, 65535], "is distract and so am": [0, 65535], "distract and so am i": [0, 65535], "and so am i and": [0, 65535], "so am i and here": [0, 65535], "am i and here we": [0, 65535], "i and here we wander": [0, 65535], "and here we wander in": [0, 65535], "here we wander in illusions": [0, 65535], "we wander in illusions some": [0, 65535], "wander in illusions some blessed": [0, 65535], "in illusions some blessed power": [0, 65535], "illusions some blessed power deliuer": [0, 65535], "some blessed power deliuer vs": [0, 65535], "blessed power deliuer vs from": [0, 65535], "power deliuer vs from hence": [0, 65535], "deliuer vs from hence enter": [0, 65535], "vs from hence enter a": [0, 65535], "from hence enter a curtizan": [0, 65535], "hence enter a curtizan cur": [0, 65535], "enter a curtizan cur well": [0, 65535], "a curtizan cur well met": [0, 65535], "curtizan cur well met well": [0, 65535], "cur well met well met": [0, 65535], "well met well met master": [0, 65535], "met well met master antipholus": [0, 65535], "well met master antipholus i": [0, 65535], "met master antipholus i see": [0, 65535], "master antipholus i see sir": [0, 65535], "antipholus i see sir you": [0, 65535], "i see sir you haue": [0, 65535], "see sir you haue found": [0, 65535], "sir you haue found the": [0, 65535], "you haue found the gold": [0, 65535], "haue found the gold smith": [0, 65535], "found the gold smith now": [0, 65535], "the gold smith now is": [0, 65535], "gold smith now is that": [0, 65535], "smith now is that the": [0, 65535], "now is that the chaine": [0, 65535], "is that the chaine you": [0, 65535], "that the chaine you promis'd": [0, 65535], "the chaine you promis'd me": [0, 65535], "chaine you promis'd me to": [0, 65535], "you promis'd me to day": [0, 65535], "promis'd me to day ant": [0, 65535], "me to day ant sathan": [0, 65535], "to day ant sathan auoide": [0, 65535], "day ant sathan auoide i": [0, 65535], "ant sathan auoide i charge": [0, 65535], "sathan auoide i charge thee": [0, 65535], "auoide i charge thee tempt": [0, 65535], "i charge thee tempt me": [0, 65535], "charge thee tempt me not": [0, 65535], "thee tempt me not s": [0, 65535], "tempt me not s dro": [0, 65535], "me not s dro master": [0, 65535], "not s dro master is": [0, 65535], "s dro master is this": [0, 65535], "dro master is this mistris": [0, 65535], "master is this mistris sathan": [0, 65535], "is this mistris sathan ant": [0, 65535], "this mistris sathan ant it": [0, 65535], "mistris sathan ant it is": [0, 65535], "sathan ant it is the": [0, 65535], "ant it is the diuell": [0, 65535], "it is the diuell s": [0, 65535], "is the diuell s dro": [0, 65535], "the diuell s dro nay": [0, 65535], "diuell s dro nay she": [0, 65535], "s dro nay she is": [0, 65535], "dro nay she is worse": [0, 65535], "nay she is worse she": [0, 65535], "she is worse she is": [0, 65535], "is worse she is the": [0, 65535], "worse she is the diuels": [0, 65535], "she is the diuels dam": [0, 65535], "is the diuels dam and": [0, 65535], "the diuels dam and here": [0, 65535], "diuels dam and here she": [0, 65535], "dam and here she comes": [0, 65535], "and here she comes in": [0, 65535], "here she comes in the": [0, 65535], "she comes in the habit": [0, 65535], "comes in the habit of": [0, 65535], "in the habit of a": [0, 65535], "the habit of a light": [0, 65535], "habit of a light wench": [0, 65535], "of a light wench and": [0, 65535], "a light wench and thereof": [0, 65535], "light wench and thereof comes": [0, 65535], "wench and thereof comes that": [0, 65535], "and thereof comes that the": [0, 65535], "thereof comes that the wenches": [0, 65535], "comes that the wenches say": [0, 65535], "that the wenches say god": [0, 65535], "the wenches say god dam": [0, 65535], "wenches say god dam me": [0, 65535], "say god dam me that's": [0, 65535], "god dam me that's as": [0, 65535], "dam me that's as much": [0, 65535], "me that's as much to": [0, 65535], "that's as much to say": [0, 65535], "as much to say god": [0, 65535], "much to say god make": [0, 65535], "to say god make me": [0, 65535], "say god make me a": [0, 65535], "god make me a light": [0, 65535], "make me a light wench": [0, 65535], "me a light wench it": [0, 65535], "a light wench it is": [0, 65535], "light wench it is written": [0, 65535], "wench it is written they": [0, 65535], "it is written they appeare": [0, 65535], "is written they appeare to": [0, 65535], "written they appeare to men": [0, 65535], "they appeare to men like": [0, 65535], "appeare to men like angels": [0, 65535], "to men like angels of": [0, 65535], "men like angels of light": [0, 65535], "like angels of light light": [0, 65535], "angels of light light is": [0, 65535], "of light light is an": [0, 65535], "light light is an effect": [0, 65535], "light is an effect of": [0, 65535], "is an effect of fire": [0, 65535], "an effect of fire and": [0, 65535], "effect of fire and fire": [0, 65535], "of fire and fire will": [0, 65535], "fire and fire will burne": [0, 65535], "and fire will burne ergo": [0, 65535], "fire will burne ergo light": [0, 65535], "will burne ergo light wenches": [0, 65535], "burne ergo light wenches will": [0, 65535], "ergo light wenches will burne": [0, 65535], "light wenches will burne come": [0, 65535], "wenches will burne come not": [0, 65535], "will burne come not neere": [0, 65535], "burne come not neere her": [0, 65535], "come not neere her cur": [0, 65535], "not neere her cur your": [0, 65535], "neere her cur your man": [0, 65535], "her cur your man and": [0, 65535], "cur your man and you": [0, 65535], "your man and you are": [0, 65535], "man and you are maruailous": [0, 65535], "and you are maruailous merrie": [0, 65535], "you are maruailous merrie sir": [0, 65535], "are maruailous merrie sir will": [0, 65535], "maruailous merrie sir will you": [0, 65535], "merrie sir will you goe": [0, 65535], "sir will you goe with": [0, 65535], "will you goe with me": [0, 65535], "you goe with me wee'll": [0, 65535], "goe with me wee'll mend": [0, 65535], "with me wee'll mend our": [0, 65535], "me wee'll mend our dinner": [0, 65535], "wee'll mend our dinner here": [0, 65535], "mend our dinner here s": [0, 65535], "our dinner here s dro": [0, 65535], "dinner here s dro master": [0, 65535], "here s dro master if": [0, 65535], "s dro master if do": [0, 65535], "dro master if do expect": [0, 65535], "master if do expect spoon": [0, 65535], "if do expect spoon meate": [0, 65535], "do expect spoon meate or": [0, 65535], "expect spoon meate or bespeake": [0, 65535], "spoon meate or bespeake a": [0, 65535], "meate or bespeake a long": [0, 65535], "or bespeake a long spoone": [0, 65535], "bespeake a long spoone ant": [0, 65535], "a long spoone ant why": [0, 65535], "long spoone ant why dromio": [0, 65535], "spoone ant why dromio s": [0, 65535], "ant why dromio s dro": [0, 65535], "why dromio s dro marrie": [0, 65535], "dromio s dro marrie he": [0, 65535], "s dro marrie he must": [0, 65535], "dro marrie he must haue": [0, 65535], "marrie he must haue a": [0, 65535], "he must haue a long": [0, 65535], "must haue a long spoone": [0, 65535], "haue a long spoone that": [0, 65535], "a long spoone that must": [0, 65535], "long spoone that must eate": [0, 65535], "spoone that must eate with": [0, 65535], "that must eate with the": [0, 65535], "must eate with the diuell": [0, 65535], "eate with the diuell ant": [0, 65535], "with the diuell ant auoid": [0, 65535], "the diuell ant auoid then": [0, 65535], "diuell ant auoid then fiend": [0, 65535], "ant auoid then fiend what": [0, 65535], "auoid then fiend what tel'st": [0, 65535], "then fiend what tel'st thou": [0, 65535], "fiend what tel'st thou me": [0, 65535], "what tel'st thou me of": [0, 65535], "tel'st thou me of supping": [0, 65535], "thou me of supping thou": [0, 65535], "me of supping thou art": [0, 65535], "of supping thou art as": [0, 65535], "supping thou art as you": [0, 65535], "thou art as you are": [0, 65535], "art as you are all": [0, 65535], "as you are all a": [0, 65535], "you are all a sorceresse": [0, 65535], "are all a sorceresse i": [0, 65535], "all a sorceresse i coniure": [0, 65535], "a sorceresse i coniure thee": [0, 65535], "sorceresse i coniure thee to": [0, 65535], "i coniure thee to leaue": [0, 65535], "coniure thee to leaue me": [0, 65535], "thee to leaue me and": [0, 65535], "to leaue me and be": [0, 65535], "leaue me and be gon": [0, 65535], "me and be gon cur": [0, 65535], "and be gon cur giue": [0, 65535], "be gon cur giue me": [0, 65535], "gon cur giue me the": [0, 65535], "cur giue me the ring": [0, 65535], "giue me the ring of": [0, 65535], "me the ring of mine": [0, 65535], "the ring of mine you": [0, 65535], "ring of mine you had": [0, 65535], "of mine you had at": [0, 65535], "mine you had at dinner": [0, 65535], "you had at dinner or": [0, 65535], "had at dinner or for": [0, 65535], "at dinner or for my": [0, 65535], "dinner or for my diamond": [0, 65535], "or for my diamond the": [0, 65535], "for my diamond the chaine": [0, 65535], "my diamond the chaine you": [0, 65535], "diamond the chaine you promis'd": [0, 65535], "the chaine you promis'd and": [0, 65535], "chaine you promis'd and ile": [0, 65535], "you promis'd and ile be": [0, 65535], "promis'd and ile be gone": [0, 65535], "and ile be gone sir": [0, 65535], "ile be gone sir and": [0, 65535], "be gone sir and not": [0, 65535], "gone sir and not trouble": [0, 65535], "sir and not trouble you": [0, 65535], "and not trouble you s": [0, 65535], "not trouble you s dro": [0, 65535], "trouble you s dro some": [0, 65535], "you s dro some diuels": [0, 65535], "s dro some diuels aske": [0, 65535], "dro some diuels aske but": [0, 65535], "some diuels aske but the": [0, 65535], "diuels aske but the parings": [0, 65535], "aske but the parings of": [0, 65535], "but the parings of ones": [0, 65535], "the parings of ones naile": [0, 65535], "parings of ones naile a": [0, 65535], "of ones naile a rush": [0, 65535], "ones naile a rush a": [0, 65535], "naile a rush a haire": [0, 65535], "a rush a haire a": [0, 65535], "rush a haire a drop": [0, 65535], "a haire a drop of": [0, 65535], "haire a drop of blood": [0, 65535], "a drop of blood a": [0, 65535], "drop of blood a pin": [0, 65535], "of blood a pin a": [0, 65535], "blood a pin a nut": [0, 65535], "a pin a nut a": [0, 65535], "pin a nut a cherrie": [0, 65535], "a nut a cherrie stone": [0, 65535], "nut a cherrie stone but": [0, 65535], "a cherrie stone but she": [0, 65535], "cherrie stone but she more": [0, 65535], "stone but she more couetous": [0, 65535], "but she more couetous wold": [0, 65535], "she more couetous wold haue": [0, 65535], "more couetous wold haue a": [0, 65535], "couetous wold haue a chaine": [0, 65535], "wold haue a chaine master": [0, 65535], "haue a chaine master be": [0, 65535], "a chaine master be wise": [0, 65535], "chaine master be wise and": [0, 65535], "master be wise and if": [0, 65535], "be wise and if you": [0, 65535], "wise and if you giue": [0, 65535], "and if you giue it": [0, 65535], "if you giue it her": [0, 65535], "you giue it her the": [0, 65535], "giue it her the diuell": [0, 65535], "it her the diuell will": [0, 65535], "her the diuell will shake": [0, 65535], "the diuell will shake her": [0, 65535], "diuell will shake her chaine": [0, 65535], "will shake her chaine and": [0, 65535], "shake her chaine and fright": [0, 65535], "her chaine and fright vs": [0, 65535], "chaine and fright vs with": [0, 65535], "and fright vs with it": [0, 65535], "fright vs with it cur": [0, 65535], "vs with it cur i": [0, 65535], "with it cur i pray": [0, 65535], "it cur i pray you": [0, 65535], "cur i pray you sir": [0, 65535], "i pray you sir my": [0, 65535], "pray you sir my ring": [0, 65535], "you sir my ring or": [0, 65535], "sir my ring or else": [0, 65535], "my ring or else the": [0, 65535], "ring or else the chaine": [0, 65535], "or else the chaine i": [0, 65535], "else the chaine i hope": [0, 65535], "the chaine i hope you": [0, 65535], "chaine i hope you do": [0, 65535], "i hope you do not": [0, 65535], "hope you do not meane": [0, 65535], "you do not meane to": [0, 65535], "do not meane to cheate": [0, 65535], "not meane to cheate me": [0, 65535], "meane to cheate me so": [0, 65535], "to cheate me so ant": [0, 65535], "cheate me so ant auant": [0, 65535], "me so ant auant thou": [0, 65535], "so ant auant thou witch": [0, 65535], "ant auant thou witch come": [0, 65535], "auant thou witch come dromio": [0, 65535], "thou witch come dromio let": [0, 65535], "witch come dromio let vs": [0, 65535], "come dromio let vs go": [0, 65535], "dromio let vs go s": [0, 65535], "let vs go s dro": [0, 65535], "vs go s dro flie": [0, 65535], "go s dro flie pride": [0, 65535], "s dro flie pride saies": [0, 65535], "dro flie pride saies the": [0, 65535], "flie pride saies the pea": [0, 65535], "pride saies the pea cocke": [0, 65535], "saies the pea cocke mistris": [0, 65535], "the pea cocke mistris that": [0, 65535], "pea cocke mistris that you": [0, 65535], "cocke mistris that you know": [0, 65535], "mistris that you know exit": [0, 65535], "that you know exit cur": [0, 65535], "you know exit cur now": [0, 65535], "know exit cur now out": [0, 65535], "exit cur now out of": [0, 65535], "cur now out of doubt": [0, 65535], "now out of doubt antipholus": [0, 65535], "out of doubt antipholus is": [0, 65535], "of doubt antipholus is mad": [0, 65535], "doubt antipholus is mad else": [0, 65535], "antipholus is mad else would": [0, 65535], "is mad else would he": [0, 65535], "mad else would he neuer": [0, 65535], "else would he neuer so": [0, 65535], "would he neuer so demeane": [0, 65535], "he neuer so demeane himselfe": [0, 65535], "neuer so demeane himselfe a": [0, 65535], "so demeane himselfe a ring": [0, 65535], "demeane himselfe a ring he": [0, 65535], "himselfe a ring he hath": [0, 65535], "a ring he hath of": [0, 65535], "ring he hath of mine": [0, 65535], "he hath of mine worth": [0, 65535], "hath of mine worth fortie": [0, 65535], "of mine worth fortie duckets": [0, 65535], "mine worth fortie duckets and": [0, 65535], "worth fortie duckets and for": [0, 65535], "fortie duckets and for the": [0, 65535], "duckets and for the same": [0, 65535], "and for the same he": [0, 65535], "for the same he promis'd": [0, 65535], "the same he promis'd me": [0, 65535], "same he promis'd me a": [0, 65535], "promis'd me a chaine both": [0, 65535], "me a chaine both one": [0, 65535], "a chaine both one and": [0, 65535], "chaine both one and other": [0, 65535], "both one and other he": [0, 65535], "one and other he denies": [0, 65535], "and other he denies me": [0, 65535], "other he denies me now": [0, 65535], "he denies me now the": [0, 65535], "denies me now the reason": [0, 65535], "me now the reason that": [0, 65535], "now the reason that i": [0, 65535], "the reason that i gather": [0, 65535], "reason that i gather he": [0, 65535], "that i gather he is": [0, 65535], "i gather he is mad": [0, 65535], "gather he is mad besides": [0, 65535], "he is mad besides this": [0, 65535], "is mad besides this present": [0, 65535], "mad besides this present instance": [0, 65535], "besides this present instance of": [0, 65535], "this present instance of his": [0, 65535], "present instance of his rage": [0, 65535], "instance of his rage is": [0, 65535], "of his rage is a": [0, 65535], "his rage is a mad": [0, 65535], "rage is a mad tale": [0, 65535], "is a mad tale he": [0, 65535], "a mad tale he told": [0, 65535], "mad tale he told to": [0, 65535], "tale he told to day": [0, 65535], "he told to day at": [0, 65535], "told to day at dinner": [0, 65535], "to day at dinner of": [0, 65535], "day at dinner of his": [0, 65535], "at dinner of his owne": [0, 65535], "dinner of his owne doores": [0, 65535], "of his owne doores being": [0, 65535], "his owne doores being shut": [0, 65535], "owne doores being shut against": [0, 65535], "doores being shut against his": [0, 65535], "being shut against his entrance": [0, 65535], "shut against his entrance belike": [0, 65535], "against his entrance belike his": [0, 65535], "his entrance belike his wife": [0, 65535], "entrance belike his wife acquainted": [0, 65535], "belike his wife acquainted with": [0, 65535], "his wife acquainted with his": [0, 65535], "wife acquainted with his fits": [0, 65535], "acquainted with his fits on": [0, 65535], "with his fits on purpose": [0, 65535], "his fits on purpose shut": [0, 65535], "fits on purpose shut the": [0, 65535], "on purpose shut the doores": [0, 65535], "purpose shut the doores against": [0, 65535], "shut the doores against his": [0, 65535], "the doores against his way": [0, 65535], "doores against his way my": [0, 65535], "against his way my way": [0, 65535], "his way my way is": [0, 65535], "way my way is now": [0, 65535], "my way is now to": [0, 65535], "way is now to hie": [0, 65535], "is now to hie home": [0, 65535], "now to hie home to": [0, 65535], "to hie home to his": [0, 65535], "hie home to his house": [0, 65535], "home to his house and": [0, 65535], "to his house and tell": [0, 65535], "his house and tell his": [0, 65535], "house and tell his wife": [0, 65535], "and tell his wife that": [0, 65535], "tell his wife that being": [0, 65535], "his wife that being lunaticke": [0, 65535], "wife that being lunaticke he": [0, 65535], "that being lunaticke he rush'd": [0, 65535], "being lunaticke he rush'd into": [0, 65535], "lunaticke he rush'd into my": [0, 65535], "he rush'd into my house": [0, 65535], "rush'd into my house and": [0, 65535], "into my house and tooke": [0, 65535], "my house and tooke perforce": [0, 65535], "house and tooke perforce my": [0, 65535], "and tooke perforce my ring": [0, 65535], "tooke perforce my ring away": [0, 65535], "perforce my ring away this": [0, 65535], "my ring away this course": [0, 65535], "ring away this course i": [0, 65535], "away this course i fittest": [0, 65535], "this course i fittest choose": [0, 65535], "course i fittest choose for": [0, 65535], "i fittest choose for fortie": [0, 65535], "fittest choose for fortie duckets": [0, 65535], "choose for fortie duckets is": [0, 65535], "for fortie duckets is too": [0, 65535], "fortie duckets is too much": [0, 65535], "duckets is too much to": [0, 65535], "is too much to loose": [0, 65535], "too much to loose enter": [0, 65535], "much to loose enter antipholus": [0, 65535], "to loose enter antipholus ephes": [0, 65535], "loose enter antipholus ephes with": [0, 65535], "enter antipholus ephes with a": [0, 65535], "antipholus ephes with a iailor": [0, 65535], "ephes with a iailor an": [0, 65535], "with a iailor an feare": [0, 65535], "a iailor an feare me": [0, 65535], "iailor an feare me not": [0, 65535], "an feare me not man": [0, 65535], "feare me not man i": [0, 65535], "me not man i will": [0, 65535], "not man i will not": [0, 65535], "man i will not breake": [0, 65535], "i will not breake away": [0, 65535], "will not breake away ile": [0, 65535], "not breake away ile giue": [0, 65535], "breake away ile giue thee": [0, 65535], "away ile giue thee ere": [0, 65535], "ile giue thee ere i": [0, 65535], "giue thee ere i leaue": [0, 65535], "thee ere i leaue thee": [0, 65535], "ere i leaue thee so": [0, 65535], "i leaue thee so much": [0, 65535], "leaue thee so much money": [0, 65535], "thee so much money to": [0, 65535], "so much money to warrant": [0, 65535], "much money to warrant thee": [0, 65535], "money to warrant thee as": [0, 65535], "to warrant thee as i": [0, 65535], "warrant thee as i am": [0, 65535], "thee as i am rested": [0, 65535], "as i am rested for": [0, 65535], "i am rested for my": [0, 65535], "am rested for my wife": [0, 65535], "rested for my wife is": [0, 65535], "for my wife is in": [0, 65535], "my wife is in a": [0, 65535], "wife is in a wayward": [0, 65535], "is in a wayward moode": [0, 65535], "in a wayward moode to": [0, 65535], "a wayward moode to day": [0, 65535], "wayward moode to day and": [0, 65535], "moode to day and will": [0, 65535], "to day and will not": [0, 65535], "day and will not lightly": [0, 65535], "and will not lightly trust": [0, 65535], "will not lightly trust the": [0, 65535], "not lightly trust the messenger": [0, 65535], "lightly trust the messenger that": [0, 65535], "trust the messenger that i": [0, 65535], "the messenger that i should": [0, 65535], "messenger that i should be": [0, 65535], "that i should be attach'd": [0, 65535], "i should be attach'd in": [0, 65535], "should be attach'd in ephesus": [0, 65535], "be attach'd in ephesus i": [0, 65535], "attach'd in ephesus i tell": [0, 65535], "in ephesus i tell you": [0, 65535], "ephesus i tell you 'twill": [0, 65535], "i tell you 'twill sound": [0, 65535], "tell you 'twill sound harshly": [0, 65535], "you 'twill sound harshly in": [0, 65535], "'twill sound harshly in her": [0, 65535], "sound harshly in her eares": [0, 65535], "harshly in her eares enter": [0, 65535], "in her eares enter dromio": [0, 65535], "her eares enter dromio eph": [0, 65535], "eares enter dromio eph with": [0, 65535], "enter dromio eph with a": [0, 65535], "dromio eph with a ropes": [0, 65535], "eph with a ropes end": [0, 65535], "with a ropes end heere": [0, 65535], "a ropes end heere comes": [0, 65535], "ropes end heere comes my": [0, 65535], "end heere comes my man": [0, 65535], "heere comes my man i": [0, 65535], "comes my man i thinke": [0, 65535], "my man i thinke he": [0, 65535], "man i thinke he brings": [0, 65535], "i thinke he brings the": [0, 65535], "thinke he brings the monie": [0, 65535], "he brings the monie how": [0, 65535], "brings the monie how now": [0, 65535], "the monie how now sir": [0, 65535], "monie how now sir haue": [0, 65535], "how now sir haue you": [0, 65535], "now sir haue you that": [0, 65535], "sir haue you that i": [0, 65535], "haue you that i sent": [0, 65535], "you that i sent you": [0, 65535], "that i sent you for": [0, 65535], "i sent you for e": [0, 65535], "sent you for e dro": [0, 65535], "you for e dro here's": [0, 65535], "for e dro here's that": [0, 65535], "e dro here's that i": [0, 65535], "dro here's that i warrant": [0, 65535], "here's that i warrant you": [0, 65535], "that i warrant you will": [0, 65535], "i warrant you will pay": [0, 65535], "warrant you will pay them": [0, 65535], "you will pay them all": [0, 65535], "will pay them all anti": [0, 65535], "pay them all anti but": [0, 65535], "them all anti but where's": [0, 65535], "all anti but where's the": [0, 65535], "anti but where's the money": [0, 65535], "but where's the money e": [0, 65535], "where's the money e dro": [0, 65535], "the money e dro why": [0, 65535], "money e dro why sir": [0, 65535], "e dro why sir i": [0, 65535], "dro why sir i gaue": [0, 65535], "why sir i gaue the": [0, 65535], "sir i gaue the monie": [0, 65535], "i gaue the monie for": [0, 65535], "gaue the monie for the": [0, 65535], "the monie for the rope": [0, 65535], "monie for the rope ant": [0, 65535], "for the rope ant fiue": [0, 65535], "the rope ant fiue hundred": [0, 65535], "rope ant fiue hundred duckets": [0, 65535], "ant fiue hundred duckets villaine": [0, 65535], "fiue hundred duckets villaine for": [0, 65535], "hundred duckets villaine for a": [0, 65535], "duckets villaine for a rope": [0, 65535], "villaine for a rope e": [0, 65535], "for a rope e dro": [0, 65535], "a rope e dro ile": [0, 65535], "rope e dro ile serue": [0, 65535], "e dro ile serue you": [0, 65535], "dro ile serue you sir": [0, 65535], "ile serue you sir fiue": [0, 65535], "serue you sir fiue hundred": [0, 65535], "you sir fiue hundred at": [0, 65535], "sir fiue hundred at the": [0, 65535], "fiue hundred at the rate": [0, 65535], "hundred at the rate ant": [0, 65535], "at the rate ant to": [0, 65535], "the rate ant to what": [0, 65535], "rate ant to what end": [0, 65535], "ant to what end did": [0, 65535], "to what end did i": [0, 65535], "what end did i bid": [0, 65535], "end did i bid thee": [0, 65535], "did i bid thee hie": [0, 65535], "i bid thee hie thee": [0, 65535], "bid thee hie thee home": [0, 65535], "thee hie thee home e": [0, 65535], "hie thee home e dro": [0, 65535], "thee home e dro to": [0, 65535], "home e dro to a": [0, 65535], "e dro to a ropes": [0, 65535], "dro to a ropes end": [0, 65535], "to a ropes end sir": [0, 65535], "a ropes end sir and": [0, 65535], "ropes end sir and to": [0, 65535], "end sir and to that": [0, 65535], "sir and to that end": [0, 65535], "and to that end am": [0, 65535], "to that end am i": [0, 65535], "that end am i re": [0, 65535], "end am i re turn'd": [0, 65535], "am i re turn'd ant": [0, 65535], "i re turn'd ant and": [0, 65535], "re turn'd ant and to": [0, 65535], "turn'd ant and to that": [0, 65535], "ant and to that end": [0, 65535], "and to that end sir": [0, 65535], "to that end sir i": [0, 65535], "that end sir i will": [0, 65535], "end sir i will welcome": [0, 65535], "sir i will welcome you": [0, 65535], "i will welcome you offi": [0, 65535], "will welcome you offi good": [0, 65535], "welcome you offi good sir": [0, 65535], "you offi good sir be": [0, 65535], "offi good sir be patient": [0, 65535], "good sir be patient e": [0, 65535], "sir be patient e dro": [0, 65535], "be patient e dro nay": [0, 65535], "patient e dro nay 'tis": [0, 65535], "e dro nay 'tis for": [0, 65535], "dro nay 'tis for me": [0, 65535], "nay 'tis for me to": [0, 65535], "'tis for me to be": [0, 65535], "for me to be patient": [0, 65535], "me to be patient i": [0, 65535], "to be patient i am": [0, 65535], "be patient i am in": [0, 65535], "patient i am in aduersitie": [0, 65535], "i am in aduersitie offi": [0, 65535], "am in aduersitie offi good": [0, 65535], "in aduersitie offi good now": [0, 65535], "aduersitie offi good now hold": [0, 65535], "offi good now hold thy": [0, 65535], "good now hold thy tongue": [0, 65535], "now hold thy tongue e": [0, 65535], "hold thy tongue e dro": [0, 65535], "thy tongue e dro nay": [0, 65535], "tongue e dro nay rather": [0, 65535], "e dro nay rather perswade": [0, 65535], "dro nay rather perswade him": [0, 65535], "nay rather perswade him to": [0, 65535], "rather perswade him to hold": [0, 65535], "perswade him to hold his": [0, 65535], "him to hold his hands": [0, 65535], "to hold his hands anti": [0, 65535], "hold his hands anti thou": [0, 65535], "his hands anti thou whoreson": [0, 65535], "hands anti thou whoreson senselesse": [0, 65535], "anti thou whoreson senselesse villaine": [0, 65535], "thou whoreson senselesse villaine e": [0, 65535], "whoreson senselesse villaine e dro": [0, 65535], "senselesse villaine e dro i": [0, 65535], "villaine e dro i would": [0, 65535], "e dro i would i": [0, 65535], "dro i would i were": [0, 65535], "i would i were senselesse": [0, 65535], "would i were senselesse sir": [0, 65535], "i were senselesse sir that": [0, 65535], "were senselesse sir that i": [0, 65535], "senselesse sir that i might": [0, 65535], "sir that i might not": [0, 65535], "that i might not feele": [0, 65535], "i might not feele your": [0, 65535], "might not feele your blowes": [0, 65535], "not feele your blowes anti": [0, 65535], "feele your blowes anti thou": [0, 65535], "your blowes anti thou art": [0, 65535], "blowes anti thou art sensible": [0, 65535], "anti thou art sensible in": [0, 65535], "thou art sensible in nothing": [0, 65535], "art sensible in nothing but": [0, 65535], "sensible in nothing but blowes": [0, 65535], "in nothing but blowes and": [0, 65535], "nothing but blowes and so": [0, 65535], "but blowes and so is": [0, 65535], "blowes and so is an": [0, 65535], "and so is an asse": [0, 65535], "so is an asse e": [0, 65535], "is an asse e dro": [0, 65535], "an asse e dro i": [0, 65535], "asse e dro i am": [0, 65535], "e dro i am an": [0, 65535], "i am an asse indeede": [0, 65535], "am an asse indeede you": [0, 65535], "an asse indeede you may": [0, 65535], "asse indeede you may prooue": [0, 65535], "indeede you may prooue it": [0, 65535], "you may prooue it by": [0, 65535], "may prooue it by my": [0, 65535], "prooue it by my long": [0, 65535], "it by my long eares": [0, 65535], "by my long eares i": [0, 65535], "my long eares i haue": [0, 65535], "long eares i haue serued": [0, 65535], "eares i haue serued him": [0, 65535], "i haue serued him from": [0, 65535], "haue serued him from the": [0, 65535], "serued him from the houre": [0, 65535], "him from the houre of": [0, 65535], "from the houre of my": [0, 65535], "the houre of my natiuitie": [0, 65535], "houre of my natiuitie to": [0, 65535], "of my natiuitie to this": [0, 65535], "my natiuitie to this instant": [0, 65535], "natiuitie to this instant and": [0, 65535], "to this instant and haue": [0, 65535], "this instant and haue nothing": [0, 65535], "instant and haue nothing at": [0, 65535], "and haue nothing at his": [0, 65535], "haue nothing at his hands": [0, 65535], "nothing at his hands for": [0, 65535], "at his hands for my": [0, 65535], "his hands for my seruice": [0, 65535], "hands for my seruice but": [0, 65535], "for my seruice but blowes": [0, 65535], "my seruice but blowes when": [0, 65535], "seruice but blowes when i": [0, 65535], "but blowes when i am": [0, 65535], "blowes when i am cold": [0, 65535], "when i am cold he": [0, 65535], "i am cold he heates": [0, 65535], "am cold he heates me": [0, 65535], "cold he heates me with": [0, 65535], "he heates me with beating": [0, 65535], "heates me with beating when": [0, 65535], "me with beating when i": [0, 65535], "with beating when i am": [0, 65535], "beating when i am warme": [0, 65535], "when i am warme he": [0, 65535], "i am warme he cooles": [0, 65535], "am warme he cooles me": [0, 65535], "warme he cooles me with": [0, 65535], "he cooles me with beating": [0, 65535], "cooles me with beating i": [0, 65535], "me with beating i am": [0, 65535], "with beating i am wak'd": [0, 65535], "beating i am wak'd with": [0, 65535], "i am wak'd with it": [0, 65535], "am wak'd with it when": [0, 65535], "wak'd with it when i": [0, 65535], "with it when i sleepe": [0, 65535], "it when i sleepe rais'd": [0, 65535], "when i sleepe rais'd with": [0, 65535], "i sleepe rais'd with it": [0, 65535], "sleepe rais'd with it when": [0, 65535], "rais'd with it when i": [0, 65535], "with it when i sit": [0, 65535], "it when i sit driuen": [0, 65535], "when i sit driuen out": [0, 65535], "i sit driuen out of": [0, 65535], "sit driuen out of doores": [0, 65535], "driuen out of doores with": [0, 65535], "out of doores with it": [0, 65535], "of doores with it when": [0, 65535], "doores with it when i": [0, 65535], "with it when i goe": [0, 65535], "it when i goe from": [0, 65535], "when i goe from home": [0, 65535], "i goe from home welcom'd": [0, 65535], "goe from home welcom'd home": [0, 65535], "from home welcom'd home with": [0, 65535], "home welcom'd home with it": [0, 65535], "welcom'd home with it when": [0, 65535], "home with it when i": [0, 65535], "with it when i returne": [0, 65535], "it when i returne nay": [0, 65535], "when i returne nay i": [0, 65535], "i returne nay i beare": [0, 65535], "returne nay i beare it": [0, 65535], "nay i beare it on": [0, 65535], "i beare it on my": [0, 65535], "beare it on my shoulders": [0, 65535], "it on my shoulders as": [0, 65535], "on my shoulders as a": [0, 65535], "my shoulders as a begger": [0, 65535], "shoulders as a begger woont": [0, 65535], "as a begger woont her": [0, 65535], "a begger woont her brat": [0, 65535], "begger woont her brat and": [0, 65535], "woont her brat and i": [0, 65535], "her brat and i thinke": [0, 65535], "brat and i thinke when": [0, 65535], "and i thinke when he": [0, 65535], "i thinke when he hath": [0, 65535], "thinke when he hath lam'd": [0, 65535], "when he hath lam'd me": [0, 65535], "he hath lam'd me i": [0, 65535], "hath lam'd me i shall": [0, 65535], "lam'd me i shall begge": [0, 65535], "me i shall begge with": [0, 65535], "i shall begge with it": [0, 65535], "shall begge with it from": [0, 65535], "begge with it from doore": [0, 65535], "with it from doore to": [0, 65535], "it from doore to doore": [0, 65535], "from doore to doore enter": [0, 65535], "doore to doore enter adriana": [0, 65535], "to doore enter adriana luciana": [0, 65535], "doore enter adriana luciana courtizan": [0, 65535], "enter adriana luciana courtizan and": [0, 65535], "adriana luciana courtizan and a": [0, 65535], "luciana courtizan and a schoolemaster": [0, 65535], "courtizan and a schoolemaster call'd": [0, 65535], "and a schoolemaster call'd pinch": [0, 65535], "a schoolemaster call'd pinch ant": [0, 65535], "schoolemaster call'd pinch ant come": [0, 65535], "call'd pinch ant come goe": [0, 65535], "pinch ant come goe along": [0, 65535], "ant come goe along my": [0, 65535], "come goe along my wife": [0, 65535], "goe along my wife is": [0, 65535], "along my wife is comming": [0, 65535], "my wife is comming yonder": [0, 65535], "wife is comming yonder e": [0, 65535], "is comming yonder e dro": [0, 65535], "comming yonder e dro mistris": [0, 65535], "yonder e dro mistris respice": [0, 65535], "e dro mistris respice finem": [0, 65535], "dro mistris respice finem respect": [0, 65535], "mistris respice finem respect your": [0, 65535], "respice finem respect your end": [0, 65535], "finem respect your end or": [0, 65535], "respect your end or rather": [0, 65535], "your end or rather the": [0, 65535], "end or rather the prophesie": [0, 65535], "or rather the prophesie like": [0, 65535], "rather the prophesie like the": [0, 65535], "the prophesie like the parrat": [0, 65535], "prophesie like the parrat beware": [0, 65535], "like the parrat beware the": [0, 65535], "the parrat beware the ropes": [0, 65535], "parrat beware the ropes end": [0, 65535], "beware the ropes end anti": [0, 65535], "the ropes end anti wilt": [0, 65535], "ropes end anti wilt thou": [0, 65535], "end anti wilt thou still": [0, 65535], "anti wilt thou still talke": [0, 65535], "wilt thou still talke beats": [0, 65535], "thou still talke beats dro": [0, 65535], "still talke beats dro curt": [0, 65535], "talke beats dro curt how": [0, 65535], "beats dro curt how say": [0, 65535], "dro curt how say you": [0, 65535], "curt how say you now": [0, 65535], "how say you now is": [0, 65535], "say you now is not": [0, 65535], "you now is not your": [0, 65535], "now is not your husband": [0, 65535], "is not your husband mad": [0, 65535], "not your husband mad adri": [0, 65535], "your husband mad adri his": [0, 65535], "husband mad adri his inciuility": [0, 65535], "mad adri his inciuility confirmes": [0, 65535], "adri his inciuility confirmes no": [0, 65535], "his inciuility confirmes no lesse": [0, 65535], "inciuility confirmes no lesse good": [0, 65535], "confirmes no lesse good doctor": [0, 65535], "no lesse good doctor pinch": [0, 65535], "lesse good doctor pinch you": [0, 65535], "good doctor pinch you are": [0, 65535], "doctor pinch you are a": [0, 65535], "pinch you are a coniurer": [0, 65535], "you are a coniurer establish": [0, 65535], "are a coniurer establish him": [0, 65535], "a coniurer establish him in": [0, 65535], "coniurer establish him in his": [0, 65535], "establish him in his true": [0, 65535], "him in his true sence": [0, 65535], "in his true sence againe": [0, 65535], "his true sence againe and": [0, 65535], "true sence againe and i": [0, 65535], "sence againe and i will": [0, 65535], "againe and i will please": [0, 65535], "and i will please you": [0, 65535], "i will please you what": [0, 65535], "will please you what you": [0, 65535], "please you what you will": [0, 65535], "you what you will demand": [0, 65535], "what you will demand luc": [0, 65535], "you will demand luc alas": [0, 65535], "will demand luc alas how": [0, 65535], "demand luc alas how fiery": [0, 65535], "luc alas how fiery and": [0, 65535], "alas how fiery and how": [0, 65535], "how fiery and how sharpe": [0, 65535], "fiery and how sharpe he": [0, 65535], "and how sharpe he lookes": [0, 65535], "how sharpe he lookes cur": [0, 65535], "sharpe he lookes cur marke": [0, 65535], "he lookes cur marke how": [0, 65535], "lookes cur marke how he": [0, 65535], "cur marke how he trembles": [0, 65535], "marke how he trembles in": [0, 65535], "how he trembles in his": [0, 65535], "he trembles in his extasie": [0, 65535], "trembles in his extasie pinch": [0, 65535], "in his extasie pinch giue": [0, 65535], "his extasie pinch giue me": [0, 65535], "extasie pinch giue me your": [0, 65535], "pinch giue me your hand": [0, 65535], "giue me your hand and": [0, 65535], "me your hand and let": [0, 65535], "your hand and let mee": [0, 65535], "hand and let mee feele": [0, 65535], "and let mee feele your": [0, 65535], "let mee feele your pulse": [0, 65535], "mee feele your pulse ant": [0, 65535], "feele your pulse ant there": [0, 65535], "your pulse ant there is": [0, 65535], "pulse ant there is my": [0, 65535], "ant there is my hand": [0, 65535], "there is my hand and": [0, 65535], "is my hand and let": [0, 65535], "my hand and let it": [0, 65535], "hand and let it feele": [0, 65535], "and let it feele your": [0, 65535], "let it feele your eare": [0, 65535], "it feele your eare pinch": [0, 65535], "feele your eare pinch i": [0, 65535], "your eare pinch i charge": [0, 65535], "eare pinch i charge thee": [0, 65535], "pinch i charge thee sathan": [0, 65535], "i charge thee sathan hous'd": [0, 65535], "charge thee sathan hous'd within": [0, 65535], "thee sathan hous'd within this": [0, 65535], "sathan hous'd within this man": [0, 65535], "hous'd within this man to": [0, 65535], "within this man to yeeld": [0, 65535], "this man to yeeld possession": [0, 65535], "man to yeeld possession to": [0, 65535], "to yeeld possession to my": [0, 65535], "yeeld possession to my holie": [0, 65535], "possession to my holie praiers": [0, 65535], "to my holie praiers and": [0, 65535], "my holie praiers and to": [0, 65535], "holie praiers and to thy": [0, 65535], "praiers and to thy state": [0, 65535], "and to thy state of": [0, 65535], "to thy state of darknesse": [0, 65535], "thy state of darknesse hie": [0, 65535], "state of darknesse hie thee": [0, 65535], "of darknesse hie thee straight": [0, 65535], "darknesse hie thee straight i": [0, 65535], "hie thee straight i coniure": [0, 65535], "thee straight i coniure thee": [0, 65535], "straight i coniure thee by": [0, 65535], "i coniure thee by all": [0, 65535], "coniure thee by all the": [0, 65535], "thee by all the saints": [0, 65535], "by all the saints in": [0, 65535], "all the saints in heauen": [0, 65535], "the saints in heauen anti": [0, 65535], "saints in heauen anti peace": [0, 65535], "in heauen anti peace doting": [0, 65535], "heauen anti peace doting wizard": [0, 65535], "anti peace doting wizard peace": [0, 65535], "peace doting wizard peace i": [0, 65535], "doting wizard peace i am": [0, 65535], "wizard peace i am not": [0, 65535], "peace i am not mad": [0, 65535], "i am not mad adr": [0, 65535], "am not mad adr oh": [0, 65535], "not mad adr oh that": [0, 65535], "mad adr oh that thou": [0, 65535], "adr oh that thou wer't": [0, 65535], "oh that thou wer't not": [0, 65535], "that thou wer't not poore": [0, 65535], "thou wer't not poore distressed": [0, 65535], "wer't not poore distressed soule": [0, 65535], "not poore distressed soule anti": [0, 65535], "poore distressed soule anti you": [0, 65535], "distressed soule anti you minion": [0, 65535], "soule anti you minion you": [0, 65535], "anti you minion you are": [0, 65535], "you minion you are these": [0, 65535], "minion you are these your": [0, 65535], "you are these your customers": [0, 65535], "are these your customers did": [0, 65535], "these your customers did this": [0, 65535], "your customers did this companion": [0, 65535], "customers did this companion with": [0, 65535], "did this companion with the": [0, 65535], "this companion with the saffron": [0, 65535], "companion with the saffron face": [0, 65535], "with the saffron face reuell": [0, 65535], "the saffron face reuell and": [0, 65535], "saffron face reuell and feast": [0, 65535], "face reuell and feast it": [0, 65535], "reuell and feast it at": [0, 65535], "and feast it at my": [0, 65535], "feast it at my house": [0, 65535], "it at my house to": [0, 65535], "at my house to day": [0, 65535], "my house to day whil'st": [0, 65535], "house to day whil'st vpon": [0, 65535], "to day whil'st vpon me": [0, 65535], "day whil'st vpon me the": [0, 65535], "whil'st vpon me the guiltie": [0, 65535], "vpon me the guiltie doores": [0, 65535], "me the guiltie doores were": [0, 65535], "the guiltie doores were shut": [0, 65535], "guiltie doores were shut and": [0, 65535], "doores were shut and i": [0, 65535], "were shut and i denied": [0, 65535], "shut and i denied to": [0, 65535], "and i denied to enter": [0, 65535], "i denied to enter in": [0, 65535], "denied to enter in my": [0, 65535], "to enter in my house": [0, 65535], "enter in my house adr": [0, 65535], "in my house adr o": [0, 65535], "my house adr o husband": [0, 65535], "house adr o husband god": [0, 65535], "adr o husband god doth": [0, 65535], "o husband god doth know": [0, 65535], "husband god doth know you": [0, 65535], "god doth know you din'd": [0, 65535], "doth know you din'd at": [0, 65535], "know you din'd at home": [0, 65535], "you din'd at home where": [0, 65535], "din'd at home where would": [0, 65535], "at home where would you": [0, 65535], "home where would you had": [0, 65535], "where would you had remain'd": [0, 65535], "would you had remain'd vntill": [0, 65535], "you had remain'd vntill this": [0, 65535], "had remain'd vntill this time": [0, 65535], "remain'd vntill this time free": [0, 65535], "vntill this time free from": [0, 65535], "this time free from these": [0, 65535], "time free from these slanders": [0, 65535], "free from these slanders and": [0, 65535], "from these slanders and this": [0, 65535], "these slanders and this open": [0, 65535], "slanders and this open shame": [0, 65535], "and this open shame anti": [0, 65535], "this open shame anti din'd": [0, 65535], "open shame anti din'd at": [0, 65535], "shame anti din'd at home": [0, 65535], "anti din'd at home thou": [0, 65535], "din'd at home thou villaine": [0, 65535], "at home thou villaine what": [0, 65535], "home thou villaine what sayest": [0, 65535], "thou villaine what sayest thou": [0, 65535], "villaine what sayest thou dro": [0, 65535], "what sayest thou dro sir": [0, 65535], "sayest thou dro sir sooth": [0, 65535], "thou dro sir sooth to": [0, 65535], "dro sir sooth to say": [0, 65535], "sir sooth to say you": [0, 65535], "sooth to say you did": [0, 65535], "to say you did not": [0, 65535], "say you did not dine": [0, 65535], "you did not dine at": [0, 65535], "did not dine at home": [0, 65535], "not dine at home ant": [0, 65535], "dine at home ant were": [0, 65535], "at home ant were not": [0, 65535], "home ant were not my": [0, 65535], "ant were not my doores": [0, 65535], "were not my doores lockt": [0, 65535], "not my doores lockt vp": [0, 65535], "my doores lockt vp and": [0, 65535], "doores lockt vp and i": [0, 65535], "lockt vp and i shut": [0, 65535], "vp and i shut out": [0, 65535], "and i shut out dro": [0, 65535], "i shut out dro perdie": [0, 65535], "shut out dro perdie your": [0, 65535], "out dro perdie your doores": [0, 65535], "dro perdie your doores were": [0, 65535], "perdie your doores were lockt": [0, 65535], "your doores were lockt and": [0, 65535], "doores were lockt and you": [0, 65535], "were lockt and you shut": [0, 65535], "lockt and you shut out": [0, 65535], "and you shut out anti": [0, 65535], "you shut out anti and": [0, 65535], "shut out anti and did": [0, 65535], "out anti and did not": [0, 65535], "anti and did not she": [0, 65535], "and did not she her": [0, 65535], "did not she her selfe": [0, 65535], "not she her selfe reuile": [0, 65535], "she her selfe reuile me": [0, 65535], "her selfe reuile me there": [0, 65535], "selfe reuile me there dro": [0, 65535], "reuile me there dro sans": [0, 65535], "me there dro sans fable": [0, 65535], "there dro sans fable she": [0, 65535], "dro sans fable she her": [0, 65535], "sans fable she her selfe": [0, 65535], "fable she her selfe reuil'd": [0, 65535], "she her selfe reuil'd you": [0, 65535], "her selfe reuil'd you there": [0, 65535], "selfe reuil'd you there anti": [0, 65535], "reuil'd you there anti did": [0, 65535], "you there anti did not": [0, 65535], "there anti did not her": [0, 65535], "anti did not her kitchen": [0, 65535], "did not her kitchen maide": [0, 65535], "not her kitchen maide raile": [0, 65535], "her kitchen maide raile taunt": [0, 65535], "kitchen maide raile taunt and": [0, 65535], "maide raile taunt and scorne": [0, 65535], "raile taunt and scorne me": [0, 65535], "taunt and scorne me dro": [0, 65535], "and scorne me dro certis": [0, 65535], "scorne me dro certis she": [0, 65535], "me dro certis she did": [0, 65535], "dro certis she did the": [0, 65535], "certis she did the kitchin": [0, 65535], "she did the kitchin vestall": [0, 65535], "did the kitchin vestall scorn'd": [0, 65535], "the kitchin vestall scorn'd you": [0, 65535], "kitchin vestall scorn'd you ant": [0, 65535], "vestall scorn'd you ant and": [0, 65535], "scorn'd you ant and did": [0, 65535], "you ant and did not": [0, 65535], "ant and did not i": [0, 65535], "and did not i in": [0, 65535], "did not i in rage": [0, 65535], "not i in rage depart": [0, 65535], "i in rage depart from": [0, 65535], "in rage depart from thence": [0, 65535], "rage depart from thence dro": [0, 65535], "depart from thence dro in": [0, 65535], "from thence dro in veritie": [0, 65535], "thence dro in veritie you": [0, 65535], "dro in veritie you did": [0, 65535], "in veritie you did my": [0, 65535], "veritie you did my bones": [0, 65535], "you did my bones beares": [0, 65535], "did my bones beares witnesse": [0, 65535], "my bones beares witnesse that": [0, 65535], "bones beares witnesse that since": [0, 65535], "beares witnesse that since haue": [0, 65535], "witnesse that since haue felt": [0, 65535], "that since haue felt the": [0, 65535], "since haue felt the vigor": [0, 65535], "haue felt the vigor of": [0, 65535], "felt the vigor of his": [0, 65535], "the vigor of his rage": [0, 65535], "vigor of his rage adr": [0, 65535], "of his rage adr is't": [0, 65535], "his rage adr is't good": [0, 65535], "rage adr is't good to": [0, 65535], "adr is't good to sooth": [0, 65535], "is't good to sooth him": [0, 65535], "good to sooth him in": [0, 65535], "to sooth him in these": [0, 65535], "sooth him in these contraries": [0, 65535], "him in these contraries pinch": [0, 65535], "in these contraries pinch it": [0, 65535], "these contraries pinch it is": [0, 65535], "contraries pinch it is no": [0, 65535], "pinch it is no shame": [0, 65535], "it is no shame the": [0, 65535], "is no shame the fellow": [0, 65535], "no shame the fellow finds": [0, 65535], "shame the fellow finds his": [0, 65535], "the fellow finds his vaine": [0, 65535], "fellow finds his vaine and": [0, 65535], "finds his vaine and yeelding": [0, 65535], "his vaine and yeelding to": [0, 65535], "vaine and yeelding to him": [0, 65535], "and yeelding to him humors": [0, 65535], "yeelding to him humors well": [0, 65535], "to him humors well his": [0, 65535], "him humors well his frensie": [0, 65535], "humors well his frensie ant": [0, 65535], "well his frensie ant thou": [0, 65535], "his frensie ant thou hast": [0, 65535], "frensie ant thou hast subborn'd": [0, 65535], "ant thou hast subborn'd the": [0, 65535], "thou hast subborn'd the goldsmith": [0, 65535], "hast subborn'd the goldsmith to": [0, 65535], "subborn'd the goldsmith to arrest": [0, 65535], "the goldsmith to arrest mee": [0, 65535], "goldsmith to arrest mee adr": [0, 65535], "to arrest mee adr alas": [0, 65535], "arrest mee adr alas i": [0, 65535], "mee adr alas i sent": [0, 65535], "adr alas i sent you": [0, 65535], "alas i sent you monie": [0, 65535], "i sent you monie to": [0, 65535], "sent you monie to redeeme": [0, 65535], "you monie to redeeme you": [0, 65535], "monie to redeeme you by": [0, 65535], "to redeeme you by dromio": [0, 65535], "redeeme you by dromio heere": [0, 65535], "you by dromio heere who": [0, 65535], "by dromio heere who came": [0, 65535], "dromio heere who came in": [0, 65535], "heere who came in hast": [0, 65535], "who came in hast for": [0, 65535], "came in hast for it": [0, 65535], "in hast for it dro": [0, 65535], "hast for it dro monie": [0, 65535], "for it dro monie by": [0, 65535], "it dro monie by me": [0, 65535], "dro monie by me heart": [0, 65535], "monie by me heart and": [0, 65535], "by me heart and good": [0, 65535], "me heart and good will": [0, 65535], "heart and good will you": [0, 65535], "and good will you might": [0, 65535], "good will you might but": [0, 65535], "will you might but surely": [0, 65535], "you might but surely master": [0, 65535], "might but surely master not": [0, 65535], "but surely master not a": [0, 65535], "surely master not a ragge": [0, 65535], "master not a ragge of": [0, 65535], "not a ragge of monie": [0, 65535], "a ragge of monie ant": [0, 65535], "ragge of monie ant wentst": [0, 65535], "of monie ant wentst not": [0, 65535], "monie ant wentst not thou": [0, 65535], "ant wentst not thou to": [0, 65535], "wentst not thou to her": [0, 65535], "not thou to her for": [0, 65535], "thou to her for a": [0, 65535], "to her for a purse": [0, 65535], "her for a purse of": [0, 65535], "for a purse of duckets": [0, 65535], "a purse of duckets adri": [0, 65535], "purse of duckets adri he": [0, 65535], "of duckets adri he came": [0, 65535], "duckets adri he came to": [0, 65535], "adri he came to me": [0, 65535], "he came to me and": [0, 65535], "came to me and i": [0, 65535], "to me and i deliuer'd": [0, 65535], "me and i deliuer'd it": [0, 65535], "and i deliuer'd it luci": [0, 65535], "i deliuer'd it luci and": [0, 65535], "deliuer'd it luci and i": [0, 65535], "it luci and i am": [0, 65535], "luci and i am witnesse": [0, 65535], "and i am witnesse with": [0, 65535], "i am witnesse with her": [0, 65535], "am witnesse with her that": [0, 65535], "witnesse with her that she": [0, 65535], "with her that she did": [0, 65535], "her that she did dro": [0, 65535], "that she did dro god": [0, 65535], "she did dro god and": [0, 65535], "did dro god and the": [0, 65535], "dro god and the rope": [0, 65535], "god and the rope maker": [0, 65535], "and the rope maker beare": [0, 65535], "the rope maker beare me": [0, 65535], "rope maker beare me witnesse": [0, 65535], "maker beare me witnesse that": [0, 65535], "beare me witnesse that i": [0, 65535], "me witnesse that i was": [0, 65535], "witnesse that i was sent": [0, 65535], "that i was sent for": [0, 65535], "i was sent for nothing": [0, 65535], "was sent for nothing but": [0, 65535], "sent for nothing but a": [0, 65535], "for nothing but a rope": [0, 65535], "nothing but a rope pinch": [0, 65535], "but a rope pinch mistris": [0, 65535], "a rope pinch mistris both": [0, 65535], "rope pinch mistris both man": [0, 65535], "pinch mistris both man and": [0, 65535], "mistris both man and master": [0, 65535], "both man and master is": [0, 65535], "man and master is possest": [0, 65535], "and master is possest i": [0, 65535], "master is possest i know": [0, 65535], "is possest i know it": [0, 65535], "possest i know it by": [0, 65535], "i know it by their": [0, 65535], "know it by their pale": [0, 65535], "it by their pale and": [0, 65535], "by their pale and deadly": [0, 65535], "their pale and deadly lookes": [0, 65535], "pale and deadly lookes they": [0, 65535], "and deadly lookes they must": [0, 65535], "deadly lookes they must be": [0, 65535], "lookes they must be bound": [0, 65535], "they must be bound and": [0, 65535], "must be bound and laide": [0, 65535], "be bound and laide in": [0, 65535], "bound and laide in some": [0, 65535], "and laide in some darke": [0, 65535], "laide in some darke roome": [0, 65535], "in some darke roome ant": [0, 65535], "some darke roome ant say": [0, 65535], "darke roome ant say wherefore": [0, 65535], "roome ant say wherefore didst": [0, 65535], "ant say wherefore didst thou": [0, 65535], "say wherefore didst thou locke": [0, 65535], "wherefore didst thou locke me": [0, 65535], "didst thou locke me forth": [0, 65535], "thou locke me forth to": [0, 65535], "locke me forth to day": [0, 65535], "me forth to day and": [0, 65535], "forth to day and why": [0, 65535], "to day and why dost": [0, 65535], "day and why dost thou": [0, 65535], "and why dost thou denie": [0, 65535], "why dost thou denie the": [0, 65535], "dost thou denie the bagge": [0, 65535], "thou denie the bagge of": [0, 65535], "denie the bagge of gold": [0, 65535], "the bagge of gold adr": [0, 65535], "bagge of gold adr i": [0, 65535], "of gold adr i did": [0, 65535], "gold adr i did not": [0, 65535], "adr i did not gentle": [0, 65535], "i did not gentle husband": [0, 65535], "did not gentle husband locke": [0, 65535], "not gentle husband locke thee": [0, 65535], "gentle husband locke thee forth": [0, 65535], "husband locke thee forth dro": [0, 65535], "locke thee forth dro and": [0, 65535], "thee forth dro and gentle": [0, 65535], "forth dro and gentle mr": [0, 65535], "dro and gentle mr i": [0, 65535], "and gentle mr i receiu'd": [0, 65535], "gentle mr i receiu'd no": [0, 65535], "mr i receiu'd no gold": [0, 65535], "i receiu'd no gold but": [0, 65535], "receiu'd no gold but i": [0, 65535], "no gold but i confesse": [0, 65535], "gold but i confesse sir": [0, 65535], "but i confesse sir that": [0, 65535], "i confesse sir that we": [0, 65535], "confesse sir that we were": [0, 65535], "sir that we were lock'd": [0, 65535], "that we were lock'd out": [0, 65535], "we were lock'd out adr": [0, 65535], "were lock'd out adr dissembling": [0, 65535], "lock'd out adr dissembling villain": [0, 65535], "out adr dissembling villain thou": [0, 65535], "adr dissembling villain thou speak'st": [0, 65535], "dissembling villain thou speak'st false": [0, 65535], "villain thou speak'st false in": [0, 65535], "thou speak'st false in both": [0, 65535], "speak'st false in both ant": [0, 65535], "false in both ant dissembling": [0, 65535], "in both ant dissembling harlot": [0, 65535], "both ant dissembling harlot thou": [0, 65535], "ant dissembling harlot thou art": [0, 65535], "dissembling harlot thou art false": [0, 65535], "harlot thou art false in": [0, 65535], "thou art false in all": [0, 65535], "art false in all and": [0, 65535], "false in all and art": [0, 65535], "in all and art confederate": [0, 65535], "all and art confederate with": [0, 65535], "and art confederate with a": [0, 65535], "art confederate with a damned": [0, 65535], "confederate with a damned packe": [0, 65535], "with a damned packe to": [0, 65535], "a damned packe to make": [0, 65535], "damned packe to make a": [0, 65535], "packe to make a loathsome": [0, 65535], "to make a loathsome abiect": [0, 65535], "make a loathsome abiect scorne": [0, 65535], "a loathsome abiect scorne of": [0, 65535], "loathsome abiect scorne of me": [0, 65535], "abiect scorne of me but": [0, 65535], "scorne of me but with": [0, 65535], "of me but with these": [0, 65535], "me but with these nailes": [0, 65535], "but with these nailes ile": [0, 65535], "with these nailes ile plucke": [0, 65535], "these nailes ile plucke out": [0, 65535], "nailes ile plucke out these": [0, 65535], "ile plucke out these false": [0, 65535], "plucke out these false eyes": [0, 65535], "out these false eyes that": [0, 65535], "these false eyes that would": [0, 65535], "false eyes that would behold": [0, 65535], "eyes that would behold in": [0, 65535], "that would behold in me": [0, 65535], "would behold in me this": [0, 65535], "behold in me this shamefull": [0, 65535], "in me this shamefull sport": [0, 65535], "me this shamefull sport enter": [0, 65535], "this shamefull sport enter three": [0, 65535], "shamefull sport enter three or": [0, 65535], "sport enter three or foure": [0, 65535], "enter three or foure and": [0, 65535], "three or foure and offer": [0, 65535], "or foure and offer to": [0, 65535], "foure and offer to binde": [0, 65535], "and offer to binde him": [0, 65535], "offer to binde him hee": [0, 65535], "to binde him hee striues": [0, 65535], "binde him hee striues adr": [0, 65535], "him hee striues adr oh": [0, 65535], "hee striues adr oh binde": [0, 65535], "striues adr oh binde him": [0, 65535], "adr oh binde him binde": [0, 65535], "oh binde him binde him": [0, 65535], "binde him binde him let": [0, 65535], "him binde him let him": [0, 65535], "binde him let him not": [0, 65535], "him let him not come": [0, 65535], "let him not come neere": [0, 65535], "him not come neere me": [0, 65535], "not come neere me pinch": [0, 65535], "come neere me pinch more": [0, 65535], "neere me pinch more company": [0, 65535], "me pinch more company the": [0, 65535], "pinch more company the fiend": [0, 65535], "more company the fiend is": [0, 65535], "company the fiend is strong": [0, 65535], "the fiend is strong within": [0, 65535], "fiend is strong within him": [0, 65535], "is strong within him luc": [0, 65535], "strong within him luc aye": [0, 65535], "within him luc aye me": [0, 65535], "him luc aye me poore": [0, 65535], "luc aye me poore man": [0, 65535], "aye me poore man how": [0, 65535], "me poore man how pale": [0, 65535], "poore man how pale and": [0, 65535], "man how pale and wan": [0, 65535], "how pale and wan he": [0, 65535], "pale and wan he looks": [0, 65535], "and wan he looks ant": [0, 65535], "wan he looks ant what": [0, 65535], "he looks ant what will": [0, 65535], "looks ant what will you": [0, 65535], "ant what will you murther": [0, 65535], "what will you murther me": [0, 65535], "will you murther me thou": [0, 65535], "you murther me thou iailor": [0, 65535], "murther me thou iailor thou": [0, 65535], "me thou iailor thou i": [0, 65535], "thou iailor thou i am": [0, 65535], "iailor thou i am thy": [0, 65535], "thou i am thy prisoner": [0, 65535], "i am thy prisoner wilt": [0, 65535], "am thy prisoner wilt thou": [0, 65535], "thy prisoner wilt thou suffer": [0, 65535], "prisoner wilt thou suffer them": [0, 65535], "wilt thou suffer them to": [0, 65535], "thou suffer them to make": [0, 65535], "suffer them to make a": [0, 65535], "them to make a rescue": [0, 65535], "to make a rescue offi": [0, 65535], "make a rescue offi masters": [0, 65535], "a rescue offi masters let": [0, 65535], "rescue offi masters let him": [0, 65535], "offi masters let him go": [0, 65535], "masters let him go he": [0, 65535], "let him go he is": [0, 65535], "him go he is my": [0, 65535], "go he is my prisoner": [0, 65535], "he is my prisoner and": [0, 65535], "is my prisoner and you": [0, 65535], "my prisoner and you shall": [0, 65535], "prisoner and you shall not": [0, 65535], "and you shall not haue": [0, 65535], "you shall not haue him": [0, 65535], "shall not haue him pinch": [0, 65535], "not haue him pinch go": [0, 65535], "haue him pinch go binde": [0, 65535], "him pinch go binde this": [0, 65535], "pinch go binde this man": [0, 65535], "go binde this man for": [0, 65535], "binde this man for he": [0, 65535], "this man for he is": [0, 65535], "man for he is franticke": [0, 65535], "for he is franticke too": [0, 65535], "he is franticke too adr": [0, 65535], "is franticke too adr what": [0, 65535], "franticke too adr what wilt": [0, 65535], "too adr what wilt thou": [0, 65535], "adr what wilt thou do": [0, 65535], "what wilt thou do thou": [0, 65535], "wilt thou do thou peeuish": [0, 65535], "thou do thou peeuish officer": [0, 65535], "do thou peeuish officer hast": [0, 65535], "thou peeuish officer hast thou": [0, 65535], "peeuish officer hast thou delight": [0, 65535], "officer hast thou delight to": [0, 65535], "hast thou delight to see": [0, 65535], "thou delight to see a": [0, 65535], "delight to see a wretched": [0, 65535], "to see a wretched man": [0, 65535], "see a wretched man do": [0, 65535], "a wretched man do outrage": [0, 65535], "wretched man do outrage and": [0, 65535], "man do outrage and displeasure": [0, 65535], "do outrage and displeasure to": [0, 65535], "outrage and displeasure to himselfe": [0, 65535], "and displeasure to himselfe offi": [0, 65535], "displeasure to himselfe offi he": [0, 65535], "to himselfe offi he is": [0, 65535], "himselfe offi he is my": [0, 65535], "offi he is my prisoner": [0, 65535], "he is my prisoner if": [0, 65535], "is my prisoner if i": [0, 65535], "my prisoner if i let": [0, 65535], "prisoner if i let him": [0, 65535], "if i let him go": [0, 65535], "i let him go the": [0, 65535], "let him go the debt": [0, 65535], "him go the debt he": [0, 65535], "go the debt he owes": [0, 65535], "the debt he owes will": [0, 65535], "debt he owes will be": [0, 65535], "he owes will be requir'd": [0, 65535], "owes will be requir'd of": [0, 65535], "will be requir'd of me": [0, 65535], "be requir'd of me adr": [0, 65535], "requir'd of me adr i": [0, 65535], "of me adr i will": [0, 65535], "me adr i will discharge": [0, 65535], "adr i will discharge thee": [0, 65535], "i will discharge thee ere": [0, 65535], "will discharge thee ere i": [0, 65535], "discharge thee ere i go": [0, 65535], "thee ere i go from": [0, 65535], "ere i go from thee": [0, 65535], "i go from thee beare": [0, 65535], "go from thee beare me": [0, 65535], "from thee beare me forthwith": [0, 65535], "thee beare me forthwith vnto": [0, 65535], "beare me forthwith vnto his": [0, 65535], "me forthwith vnto his creditor": [0, 65535], "forthwith vnto his creditor and": [0, 65535], "vnto his creditor and knowing": [0, 65535], "his creditor and knowing how": [0, 65535], "creditor and knowing how the": [0, 65535], "and knowing how the debt": [0, 65535], "knowing how the debt growes": [0, 65535], "how the debt growes i": [0, 65535], "the debt growes i will": [0, 65535], "debt growes i will pay": [0, 65535], "growes i will pay it": [0, 65535], "i will pay it good": [0, 65535], "will pay it good master": [0, 65535], "pay it good master doctor": [0, 65535], "it good master doctor see": [0, 65535], "good master doctor see him": [0, 65535], "master doctor see him safe": [0, 65535], "doctor see him safe conuey'd": [0, 65535], "see him safe conuey'd home": [0, 65535], "him safe conuey'd home to": [0, 65535], "safe conuey'd home to my": [0, 65535], "conuey'd home to my house": [0, 65535], "home to my house oh": [0, 65535], "to my house oh most": [0, 65535], "my house oh most vnhappy": [0, 65535], "house oh most vnhappy day": [0, 65535], "oh most vnhappy day ant": [0, 65535], "most vnhappy day ant oh": [0, 65535], "vnhappy day ant oh most": [0, 65535], "day ant oh most vnhappie": [0, 65535], "ant oh most vnhappie strumpet": [0, 65535], "oh most vnhappie strumpet dro": [0, 65535], "most vnhappie strumpet dro master": [0, 65535], "vnhappie strumpet dro master i": [0, 65535], "strumpet dro master i am": [0, 65535], "dro master i am heere": [0, 65535], "master i am heere entred": [0, 65535], "i am heere entred in": [0, 65535], "am heere entred in bond": [0, 65535], "heere entred in bond for": [0, 65535], "entred in bond for you": [0, 65535], "in bond for you ant": [0, 65535], "bond for you ant out": [0, 65535], "for you ant out on": [0, 65535], "you ant out on thee": [0, 65535], "ant out on thee villaine": [0, 65535], "out on thee villaine wherefore": [0, 65535], "on thee villaine wherefore dost": [0, 65535], "thee villaine wherefore dost thou": [0, 65535], "villaine wherefore dost thou mad": [0, 65535], "wherefore dost thou mad mee": [0, 65535], "dost thou mad mee dro": [0, 65535], "thou mad mee dro will": [0, 65535], "mad mee dro will you": [0, 65535], "mee dro will you be": [0, 65535], "dro will you be bound": [0, 65535], "will you be bound for": [0, 65535], "you be bound for nothing": [0, 65535], "be bound for nothing be": [0, 65535], "bound for nothing be mad": [0, 65535], "for nothing be mad good": [0, 65535], "nothing be mad good master": [0, 65535], "be mad good master cry": [0, 65535], "mad good master cry the": [0, 65535], "good master cry the diuell": [0, 65535], "master cry the diuell luc": [0, 65535], "cry the diuell luc god": [0, 65535], "the diuell luc god helpe": [0, 65535], "diuell luc god helpe poore": [0, 65535], "luc god helpe poore soules": [0, 65535], "god helpe poore soules how": [0, 65535], "helpe poore soules how idlely": [0, 65535], "poore soules how idlely doe": [0, 65535], "soules how idlely doe they": [0, 65535], "how idlely doe they talke": [0, 65535], "idlely doe they talke adr": [0, 65535], "doe they talke adr go": [0, 65535], "they talke adr go beare": [0, 65535], "talke adr go beare him": [0, 65535], "adr go beare him hence": [0, 65535], "go beare him hence sister": [0, 65535], "beare him hence sister go": [0, 65535], "him hence sister go you": [0, 65535], "hence sister go you with": [0, 65535], "sister go you with me": [0, 65535], "go you with me say": [0, 65535], "you with me say now": [0, 65535], "with me say now whose": [0, 65535], "me say now whose suite": [0, 65535], "say now whose suite is": [0, 65535], "now whose suite is he": [0, 65535], "whose suite is he arrested": [0, 65535], "suite is he arrested at": [0, 65535], "is he arrested at exeunt": [0, 65535], "he arrested at exeunt manet": [0, 65535], "arrested at exeunt manet offic": [0, 65535], "at exeunt manet offic adri": [0, 65535], "exeunt manet offic adri luci": [0, 65535], "manet offic adri luci courtizan": [0, 65535], "offic adri luci courtizan off": [0, 65535], "adri luci courtizan off one": [0, 65535], "luci courtizan off one angelo": [0, 65535], "courtizan off one angelo a": [0, 65535], "off one angelo a goldsmith": [0, 65535], "one angelo a goldsmith do": [0, 65535], "angelo a goldsmith do you": [0, 65535], "a goldsmith do you know": [0, 65535], "goldsmith do you know him": [0, 65535], "do you know him adr": [0, 65535], "you know him adr i": [0, 65535], "know him adr i know": [0, 65535], "him adr i know the": [0, 65535], "adr i know the man": [0, 65535], "i know the man what": [0, 65535], "know the man what is": [0, 65535], "the man what is the": [0, 65535], "man what is the summe": [0, 65535], "what is the summe he": [0, 65535], "is the summe he owes": [0, 65535], "the summe he owes off": [0, 65535], "summe he owes off two": [0, 65535], "he owes off two hundred": [0, 65535], "owes off two hundred duckets": [0, 65535], "off two hundred duckets adr": [0, 65535], "two hundred duckets adr say": [0, 65535], "hundred duckets adr say how": [0, 65535], "duckets adr say how growes": [0, 65535], "adr say how growes it": [0, 65535], "say how growes it due": [0, 65535], "how growes it due off": [0, 65535], "growes it due off due": [0, 65535], "it due off due for": [0, 65535], "due off due for a": [0, 65535], "off due for a chaine": [0, 65535], "due for a chaine your": [0, 65535], "for a chaine your husband": [0, 65535], "a chaine your husband had": [0, 65535], "chaine your husband had of": [0, 65535], "your husband had of him": [0, 65535], "husband had of him adr": [0, 65535], "had of him adr he": [0, 65535], "of him adr he did": [0, 65535], "him adr he did bespeake": [0, 65535], "adr he did bespeake a": [0, 65535], "he did bespeake a chain": [0, 65535], "did bespeake a chain for": [0, 65535], "bespeake a chain for me": [0, 65535], "a chain for me but": [0, 65535], "chain for me but had": [0, 65535], "for me but had it": [0, 65535], "me but had it not": [0, 65535], "but had it not cur": [0, 65535], "had it not cur when": [0, 65535], "it not cur when as": [0, 65535], "not cur when as your": [0, 65535], "cur when as your husband": [0, 65535], "when as your husband all": [0, 65535], "as your husband all in": [0, 65535], "your husband all in rage": [0, 65535], "husband all in rage to": [0, 65535], "all in rage to day": [0, 65535], "in rage to day came": [0, 65535], "rage to day came to": [0, 65535], "to day came to my": [0, 65535], "day came to my house": [0, 65535], "came to my house and": [0, 65535], "to my house and tooke": [0, 65535], "my house and tooke away": [0, 65535], "house and tooke away my": [0, 65535], "and tooke away my ring": [0, 65535], "tooke away my ring the": [0, 65535], "away my ring the ring": [0, 65535], "my ring the ring i": [0, 65535], "ring the ring i saw": [0, 65535], "the ring i saw vpon": [0, 65535], "ring i saw vpon his": [0, 65535], "i saw vpon his finger": [0, 65535], "saw vpon his finger now": [0, 65535], "vpon his finger now straight": [0, 65535], "his finger now straight after": [0, 65535], "finger now straight after did": [0, 65535], "now straight after did i": [0, 65535], "straight after did i meete": [0, 65535], "after did i meete him": [0, 65535], "did i meete him with": [0, 65535], "i meete him with a": [0, 65535], "meete him with a chaine": [0, 65535], "him with a chaine adr": [0, 65535], "with a chaine adr it": [0, 65535], "a chaine adr it may": [0, 65535], "chaine adr it may be": [0, 65535], "adr it may be so": [0, 65535], "it may be so but": [0, 65535], "may be so but i": [0, 65535], "be so but i did": [0, 65535], "so but i did neuer": [0, 65535], "but i did neuer see": [0, 65535], "i did neuer see it": [0, 65535], "did neuer see it come": [0, 65535], "neuer see it come iailor": [0, 65535], "see it come iailor bring": [0, 65535], "it come iailor bring me": [0, 65535], "come iailor bring me where": [0, 65535], "iailor bring me where the": [0, 65535], "bring me where the goldsmith": [0, 65535], "me where the goldsmith is": [0, 65535], "where the goldsmith is i": [0, 65535], "the goldsmith is i long": [0, 65535], "goldsmith is i long to": [0, 65535], "is i long to know": [0, 65535], "i long to know the": [0, 65535], "long to know the truth": [0, 65535], "to know the truth heereof": [0, 65535], "know the truth heereof at": [0, 65535], "the truth heereof at large": [0, 65535], "truth heereof at large enter": [0, 65535], "heereof at large enter antipholus": [0, 65535], "at large enter antipholus siracusia": [0, 65535], "large enter antipholus siracusia with": [0, 65535], "enter antipholus siracusia with his": [0, 65535], "antipholus siracusia with his rapier": [0, 65535], "siracusia with his rapier drawne": [0, 65535], "with his rapier drawne and": [0, 65535], "his rapier drawne and dromio": [0, 65535], "rapier drawne and dromio sirac": [0, 65535], "drawne and dromio sirac luc": [0, 65535], "and dromio sirac luc god": [0, 65535], "dromio sirac luc god for": [0, 65535], "sirac luc god for thy": [0, 65535], "luc god for thy mercy": [0, 65535], "god for thy mercy they": [0, 65535], "for thy mercy they are": [0, 65535], "thy mercy they are loose": [0, 65535], "mercy they are loose againe": [0, 65535], "they are loose againe adr": [0, 65535], "are loose againe adr and": [0, 65535], "loose againe adr and come": [0, 65535], "againe adr and come with": [0, 65535], "adr and come with naked": [0, 65535], "and come with naked swords": [0, 65535], "come with naked swords let's": [0, 65535], "with naked swords let's call": [0, 65535], "naked swords let's call more": [0, 65535], "swords let's call more helpe": [0, 65535], "let's call more helpe to": [0, 65535], "call more helpe to haue": [0, 65535], "more helpe to haue them": [0, 65535], "helpe to haue them bound": [0, 65535], "to haue them bound againe": [0, 65535], "haue them bound againe runne": [0, 65535], "them bound againe runne all": [0, 65535], "bound againe runne all out": [0, 65535], "againe runne all out off": [0, 65535], "runne all out off away": [0, 65535], "all out off away they'l": [0, 65535], "out off away they'l kill": [0, 65535], "off away they'l kill vs": [0, 65535], "away they'l kill vs exeunt": [0, 65535], "they'l kill vs exeunt omnes": [0, 65535], "kill vs exeunt omnes as": [0, 65535], "vs exeunt omnes as fast": [0, 65535], "exeunt omnes as fast as": [0, 65535], "omnes as fast as may": [0, 65535], "as fast as may be": [0, 65535], "fast as may be frighted": [0, 65535], "as may be frighted s": [0, 65535], "may be frighted s ant": [0, 65535], "be frighted s ant i": [0, 65535], "frighted s ant i see": [0, 65535], "s ant i see these": [0, 65535], "ant i see these witches": [0, 65535], "i see these witches are": [0, 65535], "see these witches are affraid": [0, 65535], "these witches are affraid of": [0, 65535], "witches are affraid of swords": [0, 65535], "are affraid of swords s": [0, 65535], "affraid of swords s dro": [0, 65535], "of swords s dro she": [0, 65535], "swords s dro she that": [0, 65535], "s dro she that would": [0, 65535], "dro she that would be": [0, 65535], "she that would be your": [0, 65535], "that would be your wife": [0, 65535], "would be your wife now": [0, 65535], "be your wife now ran": [0, 65535], "your wife now ran from": [0, 65535], "wife now ran from you": [0, 65535], "now ran from you ant": [0, 65535], "ran from you ant come": [0, 65535], "from you ant come to": [0, 65535], "you ant come to the": [0, 65535], "ant come to the centaur": [0, 65535], "come to the centaur fetch": [0, 65535], "to the centaur fetch our": [0, 65535], "the centaur fetch our stuffe": [0, 65535], "centaur fetch our stuffe from": [0, 65535], "fetch our stuffe from thence": [0, 65535], "our stuffe from thence i": [0, 65535], "stuffe from thence i long": [0, 65535], "from thence i long that": [0, 65535], "thence i long that we": [0, 65535], "i long that we were": [0, 65535], "long that we were safe": [0, 65535], "that we were safe and": [0, 65535], "we were safe and sound": [0, 65535], "were safe and sound aboord": [0, 65535], "safe and sound aboord dro": [0, 65535], "and sound aboord dro faith": [0, 65535], "sound aboord dro faith stay": [0, 65535], "aboord dro faith stay heere": [0, 65535], "dro faith stay heere this": [0, 65535], "faith stay heere this night": [0, 65535], "stay heere this night they": [0, 65535], "heere this night they will": [0, 65535], "this night they will surely": [0, 65535], "night they will surely do": [0, 65535], "they will surely do vs": [0, 65535], "will surely do vs no": [0, 65535], "surely do vs no harme": [0, 65535], "do vs no harme you": [0, 65535], "vs no harme you saw": [0, 65535], "no harme you saw they": [0, 65535], "harme you saw they speake": [0, 65535], "you saw they speake vs": [0, 65535], "saw they speake vs faire": [0, 65535], "they speake vs faire giue": [0, 65535], "speake vs faire giue vs": [0, 65535], "vs faire giue vs gold": [0, 65535], "faire giue vs gold me": [0, 65535], "giue vs gold me thinkes": [0, 65535], "vs gold me thinkes they": [0, 65535], "gold me thinkes they are": [0, 65535], "me thinkes they are such": [0, 65535], "thinkes they are such a": [0, 65535], "they are such a gentle": [0, 65535], "are such a gentle nation": [0, 65535], "such a gentle nation that": [0, 65535], "a gentle nation that but": [0, 65535], "gentle nation that but for": [0, 65535], "nation that but for the": [0, 65535], "that but for the mountaine": [0, 65535], "but for the mountaine of": [0, 65535], "for the mountaine of mad": [0, 65535], "the mountaine of mad flesh": [0, 65535], "mountaine of mad flesh that": [0, 65535], "of mad flesh that claimes": [0, 65535], "mad flesh that claimes mariage": [0, 65535], "flesh that claimes mariage of": [0, 65535], "that claimes mariage of me": [0, 65535], "claimes mariage of me i": [0, 65535], "mariage of me i could": [0, 65535], "of me i could finde": [0, 65535], "me i could finde in": [0, 65535], "i could finde in my": [0, 65535], "could finde in my heart": [0, 65535], "finde in my heart to": [0, 65535], "in my heart to stay": [0, 65535], "my heart to stay heere": [0, 65535], "heart to stay heere still": [0, 65535], "to stay heere still and": [0, 65535], "stay heere still and turne": [0, 65535], "heere still and turne witch": [0, 65535], "still and turne witch ant": [0, 65535], "and turne witch ant i": [0, 65535], "turne witch ant i will": [0, 65535], "witch ant i will not": [0, 65535], "ant i will not stay": [0, 65535], "i will not stay to": [0, 65535], "will not stay to night": [0, 65535], "not stay to night for": [0, 65535], "stay to night for all": [0, 65535], "to night for all the": [0, 65535], "night for all the towne": [0, 65535], "for all the towne therefore": [0, 65535], "all the towne therefore away": [0, 65535], "the towne therefore away to": [0, 65535], "towne therefore away to get": [0, 65535], "therefore away to get our": [0, 65535], "away to get our stuffe": [0, 65535], "to get our stuffe aboord": [0, 65535], "get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a": [0, 65535], "quartus sc\u00e6na prima enter a merchant": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith": [0, 65535], "prima enter a merchant goldsmith and": [0, 65535], "enter a merchant goldsmith and an": [0, 65535], "a merchant goldsmith and an officer": [0, 65535], "merchant goldsmith and an officer mar": [0, 65535], "goldsmith and an officer mar you": [0, 65535], "and an officer mar you know": [0, 65535], "an officer mar you know since": [0, 65535], "officer mar you know since pentecost": [0, 65535], "mar you know since pentecost the": [0, 65535], "you know since pentecost the sum": [0, 65535], "know since pentecost the sum is": [0, 65535], "since pentecost the sum is due": [0, 65535], "pentecost the sum is due and": [0, 65535], "the sum is due and since": [0, 65535], "sum is due and since i": [0, 65535], "is due and since i haue": [0, 65535], "due and since i haue not": [0, 65535], "and since i haue not much": [0, 65535], "since i haue not much importun'd": [0, 65535], "i haue not much importun'd you": [0, 65535], "haue not much importun'd you nor": [0, 65535], "not much importun'd you nor now": [0, 65535], "much importun'd you nor now i": [0, 65535], "importun'd you nor now i had": [0, 65535], "you nor now i had not": [0, 65535], "nor now i had not but": [0, 65535], "now i had not but that": [0, 65535], "i had not but that i": [0, 65535], "had not but that i am": [0, 65535], "not but that i am bound": [0, 65535], "but that i am bound to": [0, 65535], "that i am bound to persia": [0, 65535], "i am bound to persia and": [0, 65535], "am bound to persia and want": [0, 65535], "bound to persia and want gilders": [0, 65535], "to persia and want gilders for": [0, 65535], "persia and want gilders for my": [0, 65535], "and want gilders for my voyage": [0, 65535], "want gilders for my voyage therefore": [0, 65535], "gilders for my voyage therefore make": [0, 65535], "for my voyage therefore make present": [0, 65535], "my voyage therefore make present satisfaction": [0, 65535], "voyage therefore make present satisfaction or": [0, 65535], "therefore make present satisfaction or ile": [0, 65535], "make present satisfaction or ile attach": [0, 65535], "present satisfaction or ile attach you": [0, 65535], "satisfaction or ile attach you by": [0, 65535], "or ile attach you by this": [0, 65535], "ile attach you by this officer": [0, 65535], "attach you by this officer gold": [0, 65535], "you by this officer gold euen": [0, 65535], "by this officer gold euen iust": [0, 65535], "this officer gold euen iust the": [0, 65535], "officer gold euen iust the sum": [0, 65535], "gold euen iust the sum that": [0, 65535], "euen iust the sum that i": [0, 65535], "iust the sum that i do": [0, 65535], "the sum that i do owe": [0, 65535], "sum that i do owe to": [0, 65535], "that i do owe to you": [0, 65535], "i do owe to you is": [0, 65535], "do owe to you is growing": [0, 65535], "owe to you is growing to": [0, 65535], "to you is growing to me": [0, 65535], "you is growing to me by": [0, 65535], "is growing to me by antipholus": [0, 65535], "growing to me by antipholus and": [0, 65535], "to me by antipholus and in": [0, 65535], "me by antipholus and in the": [0, 65535], "by antipholus and in the instant": [0, 65535], "antipholus and in the instant that": [0, 65535], "and in the instant that i": [0, 65535], "in the instant that i met": [0, 65535], "the instant that i met with": [0, 65535], "instant that i met with you": [0, 65535], "that i met with you he": [0, 65535], "i met with you he had": [0, 65535], "met with you he had of": [0, 65535], "with you he had of me": [0, 65535], "you he had of me a": [0, 65535], "he had of me a chaine": [0, 65535], "had of me a chaine at": [0, 65535], "of me a chaine at fiue": [0, 65535], "me a chaine at fiue a": [0, 65535], "a chaine at fiue a clocke": [0, 65535], "chaine at fiue a clocke i": [0, 65535], "at fiue a clocke i shall": [0, 65535], "fiue a clocke i shall receiue": [0, 65535], "a clocke i shall receiue the": [0, 65535], "clocke i shall receiue the money": [0, 65535], "i shall receiue the money for": [0, 65535], "shall receiue the money for the": [0, 65535], "receiue the money for the same": [0, 65535], "the money for the same pleaseth": [0, 65535], "money for the same pleaseth you": [0, 65535], "for the same pleaseth you walke": [0, 65535], "the same pleaseth you walke with": [0, 65535], "same pleaseth you walke with me": [0, 65535], "pleaseth you walke with me downe": [0, 65535], "you walke with me downe to": [0, 65535], "walke with me downe to his": [0, 65535], "with me downe to his house": [0, 65535], "me downe to his house i": [0, 65535], "downe to his house i will": [0, 65535], "to his house i will discharge": [0, 65535], "his house i will discharge my": [0, 65535], "house i will discharge my bond": [0, 65535], "i will discharge my bond and": [0, 65535], "will discharge my bond and thanke": [0, 65535], "discharge my bond and thanke you": [0, 65535], "my bond and thanke you too": [0, 65535], "bond and thanke you too enter": [0, 65535], "and thanke you too enter antipholus": [0, 65535], "thanke you too enter antipholus ephes": [0, 65535], "you too enter antipholus ephes dromio": [0, 65535], "too enter antipholus ephes dromio from": [0, 65535], "enter antipholus ephes dromio from the": [0, 65535], "antipholus ephes dromio from the courtizans": [0, 65535], "ephes dromio from the courtizans offi": [0, 65535], "dromio from the courtizans offi that": [0, 65535], "from the courtizans offi that labour": [0, 65535], "the courtizans offi that labour may": [0, 65535], "courtizans offi that labour may you": [0, 65535], "offi that labour may you saue": [0, 65535], "that labour may you saue see": [0, 65535], "labour may you saue see where": [0, 65535], "may you saue see where he": [0, 65535], "you saue see where he comes": [0, 65535], "saue see where he comes ant": [0, 65535], "see where he comes ant while": [0, 65535], "where he comes ant while i": [0, 65535], "he comes ant while i go": [0, 65535], "comes ant while i go to": [0, 65535], "ant while i go to the": [0, 65535], "while i go to the goldsmiths": [0, 65535], "i go to the goldsmiths house": [0, 65535], "go to the goldsmiths house go": [0, 65535], "to the goldsmiths house go thou": [0, 65535], "the goldsmiths house go thou and": [0, 65535], "goldsmiths house go thou and buy": [0, 65535], "house go thou and buy a": [0, 65535], "go thou and buy a ropes": [0, 65535], "thou and buy a ropes end": [0, 65535], "and buy a ropes end that": [0, 65535], "buy a ropes end that will": [0, 65535], "a ropes end that will i": [0, 65535], "ropes end that will i bestow": [0, 65535], "end that will i bestow among": [0, 65535], "that will i bestow among my": [0, 65535], "will i bestow among my wife": [0, 65535], "i bestow among my wife and": [0, 65535], "bestow among my wife and their": [0, 65535], "among my wife and their confederates": [0, 65535], "my wife and their confederates for": [0, 65535], "wife and their confederates for locking": [0, 65535], "and their confederates for locking me": [0, 65535], "their confederates for locking me out": [0, 65535], "confederates for locking me out of": [0, 65535], "for locking me out of my": [0, 65535], "locking me out of my doores": [0, 65535], "me out of my doores by": [0, 65535], "out of my doores by day": [0, 65535], "of my doores by day but": [0, 65535], "my doores by day but soft": [0, 65535], "doores by day but soft i": [0, 65535], "by day but soft i see": [0, 65535], "day but soft i see the": [0, 65535], "but soft i see the goldsmith": [0, 65535], "soft i see the goldsmith get": [0, 65535], "i see the goldsmith get thee": [0, 65535], "see the goldsmith get thee gone": [0, 65535], "the goldsmith get thee gone buy": [0, 65535], "goldsmith get thee gone buy thou": [0, 65535], "get thee gone buy thou a": [0, 65535], "thee gone buy thou a rope": [0, 65535], "gone buy thou a rope and": [0, 65535], "buy thou a rope and bring": [0, 65535], "thou a rope and bring it": [0, 65535], "a rope and bring it home": [0, 65535], "rope and bring it home to": [0, 65535], "and bring it home to me": [0, 65535], "bring it home to me dro": [0, 65535], "it home to me dro i": [0, 65535], "home to me dro i buy": [0, 65535], "to me dro i buy a": [0, 65535], "me dro i buy a thousand": [0, 65535], "dro i buy a thousand pound": [0, 65535], "i buy a thousand pound a": [0, 65535], "buy a thousand pound a yeare": [0, 65535], "a thousand pound a yeare i": [0, 65535], "thousand pound a yeare i buy": [0, 65535], "pound a yeare i buy a": [0, 65535], "a yeare i buy a rope": [0, 65535], "yeare i buy a rope exit": [0, 65535], "i buy a rope exit dromio": [0, 65535], "buy a rope exit dromio eph": [0, 65535], "a rope exit dromio eph ant": [0, 65535], "rope exit dromio eph ant a": [0, 65535], "exit dromio eph ant a man": [0, 65535], "dromio eph ant a man is": [0, 65535], "eph ant a man is well": [0, 65535], "ant a man is well holpe": [0, 65535], "a man is well holpe vp": [0, 65535], "man is well holpe vp that": [0, 65535], "is well holpe vp that trusts": [0, 65535], "well holpe vp that trusts to": [0, 65535], "holpe vp that trusts to you": [0, 65535], "vp that trusts to you i": [0, 65535], "that trusts to you i promised": [0, 65535], "trusts to you i promised your": [0, 65535], "to you i promised your presence": [0, 65535], "you i promised your presence and": [0, 65535], "i promised your presence and the": [0, 65535], "promised your presence and the chaine": [0, 65535], "your presence and the chaine but": [0, 65535], "presence and the chaine but neither": [0, 65535], "and the chaine but neither chaine": [0, 65535], "the chaine but neither chaine nor": [0, 65535], "chaine but neither chaine nor goldsmith": [0, 65535], "but neither chaine nor goldsmith came": [0, 65535], "neither chaine nor goldsmith came to": [0, 65535], "chaine nor goldsmith came to me": [0, 65535], "nor goldsmith came to me belike": [0, 65535], "goldsmith came to me belike you": [0, 65535], "came to me belike you thought": [0, 65535], "to me belike you thought our": [0, 65535], "me belike you thought our loue": [0, 65535], "belike you thought our loue would": [0, 65535], "you thought our loue would last": [0, 65535], "thought our loue would last too": [0, 65535], "our loue would last too long": [0, 65535], "loue would last too long if": [0, 65535], "would last too long if it": [0, 65535], "last too long if it were": [0, 65535], "too long if it were chain'd": [0, 65535], "long if it were chain'd together": [0, 65535], "if it were chain'd together and": [0, 65535], "it were chain'd together and therefore": [0, 65535], "were chain'd together and therefore came": [0, 65535], "chain'd together and therefore came not": [0, 65535], "together and therefore came not gold": [0, 65535], "and therefore came not gold sauing": [0, 65535], "therefore came not gold sauing your": [0, 65535], "came not gold sauing your merrie": [0, 65535], "not gold sauing your merrie humor": [0, 65535], "gold sauing your merrie humor here's": [0, 65535], "sauing your merrie humor here's the": [0, 65535], "your merrie humor here's the note": [0, 65535], "merrie humor here's the note how": [0, 65535], "humor here's the note how much": [0, 65535], "here's the note how much your": [0, 65535], "the note how much your chaine": [0, 65535], "note how much your chaine weighs": [0, 65535], "how much your chaine weighs to": [0, 65535], "much your chaine weighs to the": [0, 65535], "your chaine weighs to the vtmost": [0, 65535], "chaine weighs to the vtmost charect": [0, 65535], "weighs to the vtmost charect the": [0, 65535], "to the vtmost charect the finenesse": [0, 65535], "the vtmost charect the finenesse of": [0, 65535], "vtmost charect the finenesse of the": [0, 65535], "charect the finenesse of the gold": [0, 65535], "the finenesse of the gold and": [0, 65535], "finenesse of the gold and chargefull": [0, 65535], "of the gold and chargefull fashion": [0, 65535], "the gold and chargefull fashion which": [0, 65535], "gold and chargefull fashion which doth": [0, 65535], "and chargefull fashion which doth amount": [0, 65535], "chargefull fashion which doth amount to": [0, 65535], "fashion which doth amount to three": [0, 65535], "which doth amount to three odde": [0, 65535], "doth amount to three odde duckets": [0, 65535], "amount to three odde duckets more": [0, 65535], "to three odde duckets more then": [0, 65535], "three odde duckets more then i": [0, 65535], "odde duckets more then i stand": [0, 65535], "duckets more then i stand debted": [0, 65535], "more then i stand debted to": [0, 65535], "then i stand debted to this": [0, 65535], "i stand debted to this gentleman": [0, 65535], "stand debted to this gentleman i": [0, 65535], "debted to this gentleman i pray": [0, 65535], "to this gentleman i pray you": [0, 65535], "this gentleman i pray you see": [0, 65535], "gentleman i pray you see him": [0, 65535], "i pray you see him presently": [0, 65535], "pray you see him presently discharg'd": [0, 65535], "you see him presently discharg'd for": [0, 65535], "see him presently discharg'd for he": [0, 65535], "him presently discharg'd for he is": [0, 65535], "presently discharg'd for he is bound": [0, 65535], "discharg'd for he is bound to": [0, 65535], "for he is bound to sea": [0, 65535], "he is bound to sea and": [0, 65535], "is bound to sea and stayes": [0, 65535], "bound to sea and stayes but": [0, 65535], "to sea and stayes but for": [0, 65535], "sea and stayes but for it": [0, 65535], "and stayes but for it anti": [0, 65535], "stayes but for it anti i": [0, 65535], "but for it anti i am": [0, 65535], "for it anti i am not": [0, 65535], "it anti i am not furnish'd": [0, 65535], "anti i am not furnish'd with": [0, 65535], "i am not furnish'd with the": [0, 65535], "am not furnish'd with the present": [0, 65535], "not furnish'd with the present monie": [0, 65535], "furnish'd with the present monie besides": [0, 65535], "with the present monie besides i": [0, 65535], "the present monie besides i haue": [0, 65535], "present monie besides i haue some": [0, 65535], "monie besides i haue some businesse": [0, 65535], "besides i haue some businesse in": [0, 65535], "i haue some businesse in the": [0, 65535], "haue some businesse in the towne": [0, 65535], "some businesse in the towne good": [0, 65535], "businesse in the towne good signior": [0, 65535], "in the towne good signior take": [0, 65535], "the towne good signior take the": [0, 65535], "towne good signior take the stranger": [0, 65535], "good signior take the stranger to": [0, 65535], "signior take the stranger to my": [0, 65535], "take the stranger to my house": [0, 65535], "the stranger to my house and": [0, 65535], "stranger to my house and with": [0, 65535], "to my house and with you": [0, 65535], "my house and with you take": [0, 65535], "house and with you take the": [0, 65535], "and with you take the chaine": [0, 65535], "with you take the chaine and": [0, 65535], "you take the chaine and bid": [0, 65535], "take the chaine and bid my": [0, 65535], "the chaine and bid my wife": [0, 65535], "chaine and bid my wife disburse": [0, 65535], "and bid my wife disburse the": [0, 65535], "bid my wife disburse the summe": [0, 65535], "my wife disburse the summe on": [0, 65535], "wife disburse the summe on the": [0, 65535], "disburse the summe on the receit": [0, 65535], "the summe on the receit thereof": [0, 65535], "summe on the receit thereof perchance": [0, 65535], "on the receit thereof perchance i": [0, 65535], "the receit thereof perchance i will": [0, 65535], "receit thereof perchance i will be": [0, 65535], "thereof perchance i will be there": [0, 65535], "perchance i will be there as": [0, 65535], "i will be there as soone": [0, 65535], "will be there as soone as": [0, 65535], "be there as soone as you": [0, 65535], "there as soone as you gold": [0, 65535], "as soone as you gold then": [0, 65535], "soone as you gold then you": [0, 65535], "as you gold then you will": [0, 65535], "you gold then you will bring": [0, 65535], "gold then you will bring the": [0, 65535], "then you will bring the chaine": [0, 65535], "you will bring the chaine to": [0, 65535], "will bring the chaine to her": [0, 65535], "bring the chaine to her your": [0, 65535], "the chaine to her your selfe": [0, 65535], "chaine to her your selfe anti": [0, 65535], "to her your selfe anti no": [0, 65535], "her your selfe anti no beare": [0, 65535], "your selfe anti no beare it": [0, 65535], "selfe anti no beare it with": [0, 65535], "anti no beare it with you": [0, 65535], "no beare it with you least": [0, 65535], "beare it with you least i": [0, 65535], "it with you least i come": [0, 65535], "with you least i come not": [0, 65535], "you least i come not time": [0, 65535], "least i come not time enough": [0, 65535], "i come not time enough gold": [0, 65535], "come not time enough gold well": [0, 65535], "not time enough gold well sir": [0, 65535], "time enough gold well sir i": [0, 65535], "enough gold well sir i will": [0, 65535], "gold well sir i will haue": [0, 65535], "well sir i will haue you": [0, 65535], "sir i will haue you the": [0, 65535], "i will haue you the chaine": [0, 65535], "will haue you the chaine about": [0, 65535], "haue you the chaine about you": [0, 65535], "you the chaine about you ant": [0, 65535], "the chaine about you ant and": [0, 65535], "chaine about you ant and if": [0, 65535], "about you ant and if i": [0, 65535], "you ant and if i haue": [0, 65535], "ant and if i haue not": [0, 65535], "and if i haue not sir": [0, 65535], "if i haue not sir i": [0, 65535], "i haue not sir i hope": [0, 65535], "haue not sir i hope you": [0, 65535], "not sir i hope you haue": [0, 65535], "sir i hope you haue or": [0, 65535], "i hope you haue or else": [0, 65535], "hope you haue or else you": [0, 65535], "you haue or else you may": [0, 65535], "haue or else you may returne": [0, 65535], "or else you may returne without": [0, 65535], "else you may returne without your": [0, 65535], "you may returne without your money": [0, 65535], "may returne without your money gold": [0, 65535], "returne without your money gold nay": [0, 65535], "without your money gold nay come": [0, 65535], "your money gold nay come i": [0, 65535], "money gold nay come i pray": [0, 65535], "gold nay come i pray you": [0, 65535], "nay come i pray you sir": [0, 65535], "come i pray you sir giue": [0, 65535], "i pray you sir giue me": [0, 65535], "pray you sir giue me the": [0, 65535], "you sir giue me the chaine": [0, 65535], "sir giue me the chaine both": [0, 65535], "giue me the chaine both winde": [0, 65535], "me the chaine both winde and": [0, 65535], "the chaine both winde and tide": [0, 65535], "chaine both winde and tide stayes": [0, 65535], "both winde and tide stayes for": [0, 65535], "winde and tide stayes for this": [0, 65535], "and tide stayes for this gentleman": [0, 65535], "tide stayes for this gentleman and": [0, 65535], "stayes for this gentleman and i": [0, 65535], "for this gentleman and i too": [0, 65535], "this gentleman and i too blame": [0, 65535], "gentleman and i too blame haue": [0, 65535], "and i too blame haue held": [0, 65535], "i too blame haue held him": [0, 65535], "too blame haue held him heere": [0, 65535], "blame haue held him heere too": [0, 65535], "haue held him heere too long": [0, 65535], "held him heere too long anti": [0, 65535], "him heere too long anti good": [0, 65535], "heere too long anti good lord": [0, 65535], "too long anti good lord you": [0, 65535], "long anti good lord you vse": [0, 65535], "anti good lord you vse this": [0, 65535], "good lord you vse this dalliance": [0, 65535], "lord you vse this dalliance to": [0, 65535], "you vse this dalliance to excuse": [0, 65535], "vse this dalliance to excuse your": [0, 65535], "this dalliance to excuse your breach": [0, 65535], "dalliance to excuse your breach of": [0, 65535], "to excuse your breach of promise": [0, 65535], "excuse your breach of promise to": [0, 65535], "your breach of promise to the": [0, 65535], "breach of promise to the porpentine": [0, 65535], "of promise to the porpentine i": [0, 65535], "promise to the porpentine i should": [0, 65535], "to the porpentine i should haue": [0, 65535], "the porpentine i should haue chid": [0, 65535], "porpentine i should haue chid you": [0, 65535], "i should haue chid you for": [0, 65535], "should haue chid you for not": [0, 65535], "haue chid you for not bringing": [0, 65535], "chid you for not bringing it": [0, 65535], "you for not bringing it but": [0, 65535], "for not bringing it but like": [0, 65535], "not bringing it but like a": [0, 65535], "bringing it but like a shrew": [0, 65535], "it but like a shrew you": [0, 65535], "but like a shrew you first": [0, 65535], "like a shrew you first begin": [0, 65535], "a shrew you first begin to": [0, 65535], "shrew you first begin to brawle": [0, 65535], "you first begin to brawle mar": [0, 65535], "first begin to brawle mar the": [0, 65535], "begin to brawle mar the houre": [0, 65535], "to brawle mar the houre steales": [0, 65535], "brawle mar the houre steales on": [0, 65535], "mar the houre steales on i": [0, 65535], "the houre steales on i pray": [0, 65535], "houre steales on i pray you": [0, 65535], "steales on i pray you sir": [0, 65535], "on i pray you sir dispatch": [0, 65535], "i pray you sir dispatch gold": [0, 65535], "pray you sir dispatch gold you": [0, 65535], "you sir dispatch gold you heare": [0, 65535], "sir dispatch gold you heare how": [0, 65535], "dispatch gold you heare how he": [0, 65535], "gold you heare how he importunes": [0, 65535], "you heare how he importunes me": [0, 65535], "heare how he importunes me the": [0, 65535], "how he importunes me the chaine": [0, 65535], "he importunes me the chaine ant": [0, 65535], "importunes me the chaine ant why": [0, 65535], "me the chaine ant why giue": [0, 65535], "the chaine ant why giue it": [0, 65535], "chaine ant why giue it to": [0, 65535], "ant why giue it to my": [0, 65535], "why giue it to my wife": [0, 65535], "giue it to my wife and": [0, 65535], "it to my wife and fetch": [0, 65535], "to my wife and fetch your": [0, 65535], "my wife and fetch your mony": [0, 65535], "wife and fetch your mony gold": [0, 65535], "and fetch your mony gold come": [0, 65535], "fetch your mony gold come come": [0, 65535], "your mony gold come come you": [0, 65535], "mony gold come come you know": [0, 65535], "gold come come you know i": [0, 65535], "come come you know i gaue": [0, 65535], "come you know i gaue it": [0, 65535], "you know i gaue it you": [0, 65535], "know i gaue it you euen": [0, 65535], "i gaue it you euen now": [0, 65535], "gaue it you euen now either": [0, 65535], "it you euen now either send": [0, 65535], "you euen now either send the": [0, 65535], "euen now either send the chaine": [0, 65535], "now either send the chaine or": [0, 65535], "either send the chaine or send": [0, 65535], "send the chaine or send me": [0, 65535], "the chaine or send me by": [0, 65535], "chaine or send me by some": [0, 65535], "or send me by some token": [0, 65535], "send me by some token ant": [0, 65535], "me by some token ant fie": [0, 65535], "by some token ant fie now": [0, 65535], "some token ant fie now you": [0, 65535], "token ant fie now you run": [0, 65535], "ant fie now you run this": [0, 65535], "fie now you run this humor": [0, 65535], "now you run this humor out": [0, 65535], "you run this humor out of": [0, 65535], "run this humor out of breath": [0, 65535], "this humor out of breath come": [0, 65535], "humor out of breath come where's": [0, 65535], "out of breath come where's the": [0, 65535], "of breath come where's the chaine": [0, 65535], "breath come where's the chaine i": [0, 65535], "come where's the chaine i pray": [0, 65535], "where's the chaine i pray you": [0, 65535], "the chaine i pray you let": [0, 65535], "chaine i pray you let me": [0, 65535], "i pray you let me see": [0, 65535], "pray you let me see it": [0, 65535], "you let me see it mar": [0, 65535], "let me see it mar my": [0, 65535], "me see it mar my businesse": [0, 65535], "see it mar my businesse cannot": [0, 65535], "it mar my businesse cannot brooke": [0, 65535], "mar my businesse cannot brooke this": [0, 65535], "my businesse cannot brooke this dalliance": [0, 65535], "businesse cannot brooke this dalliance good": [0, 65535], "cannot brooke this dalliance good sir": [0, 65535], "brooke this dalliance good sir say": [0, 65535], "this dalliance good sir say whe'r": [0, 65535], "dalliance good sir say whe'r you'l": [0, 65535], "good sir say whe'r you'l answer": [0, 65535], "sir say whe'r you'l answer me": [0, 65535], "say whe'r you'l answer me or": [0, 65535], "whe'r you'l answer me or no": [0, 65535], "you'l answer me or no if": [0, 65535], "answer me or no if not": [0, 65535], "me or no if not ile": [0, 65535], "or no if not ile leaue": [0, 65535], "no if not ile leaue him": [0, 65535], "if not ile leaue him to": [0, 65535], "not ile leaue him to the": [0, 65535], "ile leaue him to the officer": [0, 65535], "leaue him to the officer ant": [0, 65535], "him to the officer ant i": [0, 65535], "to the officer ant i answer": [0, 65535], "the officer ant i answer you": [0, 65535], "officer ant i answer you what": [0, 65535], "ant i answer you what should": [0, 65535], "i answer you what should i": [0, 65535], "answer you what should i answer": [0, 65535], "you what should i answer you": [0, 65535], "what should i answer you gold": [0, 65535], "should i answer you gold the": [0, 65535], "i answer you gold the monie": [0, 65535], "answer you gold the monie that": [0, 65535], "you gold the monie that you": [0, 65535], "gold the monie that you owe": [0, 65535], "the monie that you owe me": [0, 65535], "monie that you owe me for": [0, 65535], "that you owe me for the": [0, 65535], "you owe me for the chaine": [0, 65535], "owe me for the chaine ant": [0, 65535], "me for the chaine ant i": [0, 65535], "for the chaine ant i owe": [0, 65535], "the chaine ant i owe you": [0, 65535], "chaine ant i owe you none": [0, 65535], "ant i owe you none till": [0, 65535], "i owe you none till i": [0, 65535], "owe you none till i receiue": [0, 65535], "you none till i receiue the": [0, 65535], "none till i receiue the chaine": [0, 65535], "till i receiue the chaine gold": [0, 65535], "i receiue the chaine gold you": [0, 65535], "receiue the chaine gold you know": [0, 65535], "the chaine gold you know i": [0, 65535], "chaine gold you know i gaue": [0, 65535], "gold you know i gaue it": [0, 65535], "know i gaue it you halfe": [0, 65535], "i gaue it you halfe an": [0, 65535], "gaue it you halfe an houre": [0, 65535], "it you halfe an houre since": [0, 65535], "you halfe an houre since ant": [0, 65535], "halfe an houre since ant you": [0, 65535], "an houre since ant you gaue": [0, 65535], "houre since ant you gaue me": [0, 65535], "since ant you gaue me none": [0, 65535], "ant you gaue me none you": [0, 65535], "you gaue me none you wrong": [0, 65535], "gaue me none you wrong mee": [0, 65535], "me none you wrong mee much": [0, 65535], "none you wrong mee much to": [0, 65535], "you wrong mee much to say": [0, 65535], "wrong mee much to say so": [0, 65535], "mee much to say so gold": [0, 65535], "much to say so gold you": [0, 65535], "to say so gold you wrong": [0, 65535], "say so gold you wrong me": [0, 65535], "so gold you wrong me more": [0, 65535], "gold you wrong me more sir": [0, 65535], "you wrong me more sir in": [0, 65535], "wrong me more sir in denying": [0, 65535], "me more sir in denying it": [0, 65535], "more sir in denying it consider": [0, 65535], "sir in denying it consider how": [0, 65535], "in denying it consider how it": [0, 65535], "denying it consider how it stands": [0, 65535], "it consider how it stands vpon": [0, 65535], "consider how it stands vpon my": [0, 65535], "how it stands vpon my credit": [0, 65535], "it stands vpon my credit mar": [0, 65535], "stands vpon my credit mar well": [0, 65535], "vpon my credit mar well officer": [0, 65535], "my credit mar well officer arrest": [0, 65535], "credit mar well officer arrest him": [0, 65535], "mar well officer arrest him at": [0, 65535], "well officer arrest him at my": [0, 65535], "officer arrest him at my suite": [0, 65535], "arrest him at my suite offi": [0, 65535], "him at my suite offi i": [0, 65535], "at my suite offi i do": [0, 65535], "my suite offi i do and": [0, 65535], "suite offi i do and charge": [0, 65535], "offi i do and charge you": [0, 65535], "i do and charge you in": [0, 65535], "do and charge you in the": [0, 65535], "and charge you in the dukes": [0, 65535], "charge you in the dukes name": [0, 65535], "you in the dukes name to": [0, 65535], "in the dukes name to obey": [0, 65535], "the dukes name to obey me": [0, 65535], "dukes name to obey me gold": [0, 65535], "name to obey me gold this": [0, 65535], "to obey me gold this touches": [0, 65535], "obey me gold this touches me": [0, 65535], "me gold this touches me in": [0, 65535], "gold this touches me in reputation": [0, 65535], "this touches me in reputation either": [0, 65535], "touches me in reputation either consent": [0, 65535], "me in reputation either consent to": [0, 65535], "in reputation either consent to pay": [0, 65535], "reputation either consent to pay this": [0, 65535], "either consent to pay this sum": [0, 65535], "consent to pay this sum for": [0, 65535], "to pay this sum for me": [0, 65535], "pay this sum for me or": [0, 65535], "this sum for me or i": [0, 65535], "sum for me or i attach": [0, 65535], "for me or i attach you": [0, 65535], "me or i attach you by": [0, 65535], "or i attach you by this": [0, 65535], "i attach you by this officer": [0, 65535], "attach you by this officer ant": [0, 65535], "you by this officer ant consent": [0, 65535], "by this officer ant consent to": [0, 65535], "this officer ant consent to pay": [0, 65535], "officer ant consent to pay thee": [0, 65535], "ant consent to pay thee that": [0, 65535], "consent to pay thee that i": [0, 65535], "to pay thee that i neuer": [0, 65535], "pay thee that i neuer had": [0, 65535], "thee that i neuer had arrest": [0, 65535], "that i neuer had arrest me": [0, 65535], "i neuer had arrest me foolish": [0, 65535], "neuer had arrest me foolish fellow": [0, 65535], "had arrest me foolish fellow if": [0, 65535], "arrest me foolish fellow if thou": [0, 65535], "me foolish fellow if thou dar'st": [0, 65535], "foolish fellow if thou dar'st gold": [0, 65535], "fellow if thou dar'st gold heere": [0, 65535], "if thou dar'st gold heere is": [0, 65535], "thou dar'st gold heere is thy": [0, 65535], "dar'st gold heere is thy fee": [0, 65535], "gold heere is thy fee arrest": [0, 65535], "heere is thy fee arrest him": [0, 65535], "is thy fee arrest him officer": [0, 65535], "thy fee arrest him officer i": [0, 65535], "fee arrest him officer i would": [0, 65535], "arrest him officer i would not": [0, 65535], "him officer i would not spare": [0, 65535], "officer i would not spare my": [0, 65535], "i would not spare my brother": [0, 65535], "would not spare my brother in": [0, 65535], "not spare my brother in this": [0, 65535], "spare my brother in this case": [0, 65535], "my brother in this case if": [0, 65535], "brother in this case if he": [0, 65535], "in this case if he should": [0, 65535], "this case if he should scorne": [0, 65535], "case if he should scorne me": [0, 65535], "if he should scorne me so": [0, 65535], "he should scorne me so apparantly": [0, 65535], "should scorne me so apparantly offic": [0, 65535], "scorne me so apparantly offic i": [0, 65535], "me so apparantly offic i do": [0, 65535], "so apparantly offic i do arrest": [0, 65535], "apparantly offic i do arrest you": [0, 65535], "offic i do arrest you sir": [0, 65535], "i do arrest you sir you": [0, 65535], "do arrest you sir you heare": [0, 65535], "arrest you sir you heare the": [0, 65535], "you sir you heare the suite": [0, 65535], "sir you heare the suite ant": [0, 65535], "you heare the suite ant i": [0, 65535], "heare the suite ant i do": [0, 65535], "the suite ant i do obey": [0, 65535], "suite ant i do obey thee": [0, 65535], "ant i do obey thee till": [0, 65535], "i do obey thee till i": [0, 65535], "do obey thee till i giue": [0, 65535], "obey thee till i giue thee": [0, 65535], "thee till i giue thee baile": [0, 65535], "till i giue thee baile but": [0, 65535], "i giue thee baile but sirrah": [0, 65535], "giue thee baile but sirrah you": [0, 65535], "thee baile but sirrah you shall": [0, 65535], "baile but sirrah you shall buy": [0, 65535], "but sirrah you shall buy this": [0, 65535], "sirrah you shall buy this sport": [0, 65535], "you shall buy this sport as": [0, 65535], "shall buy this sport as deere": [0, 65535], "buy this sport as deere as": [0, 65535], "this sport as deere as all": [0, 65535], "sport as deere as all the": [0, 65535], "as deere as all the mettall": [0, 65535], "deere as all the mettall in": [0, 65535], "as all the mettall in your": [0, 65535], "all the mettall in your shop": [0, 65535], "the mettall in your shop will": [0, 65535], "mettall in your shop will answer": [0, 65535], "in your shop will answer gold": [0, 65535], "your shop will answer gold sir": [0, 65535], "shop will answer gold sir sir": [0, 65535], "will answer gold sir sir i": [0, 65535], "answer gold sir sir i shall": [0, 65535], "gold sir sir i shall haue": [0, 65535], "sir sir i shall haue law": [0, 65535], "sir i shall haue law in": [0, 65535], "i shall haue law in ephesus": [0, 65535], "shall haue law in ephesus to": [0, 65535], "haue law in ephesus to your": [0, 65535], "law in ephesus to your notorious": [0, 65535], "in ephesus to your notorious shame": [0, 65535], "ephesus to your notorious shame i": [0, 65535], "to your notorious shame i doubt": [0, 65535], "your notorious shame i doubt it": [0, 65535], "notorious shame i doubt it not": [0, 65535], "shame i doubt it not enter": [0, 65535], "i doubt it not enter dromio": [0, 65535], "doubt it not enter dromio sira": [0, 65535], "it not enter dromio sira from": [0, 65535], "not enter dromio sira from the": [0, 65535], "enter dromio sira from the bay": [0, 65535], "dromio sira from the bay dro": [0, 65535], "sira from the bay dro master": [0, 65535], "from the bay dro master there's": [0, 65535], "the bay dro master there's a": [0, 65535], "bay dro master there's a barke": [0, 65535], "dro master there's a barke of": [0, 65535], "master there's a barke of epidamium": [0, 65535], "there's a barke of epidamium that": [0, 65535], "a barke of epidamium that staies": [0, 65535], "barke of epidamium that staies but": [0, 65535], "of epidamium that staies but till": [0, 65535], "epidamium that staies but till her": [0, 65535], "that staies but till her owner": [0, 65535], "staies but till her owner comes": [0, 65535], "but till her owner comes aboord": [0, 65535], "till her owner comes aboord and": [0, 65535], "her owner comes aboord and then": [0, 65535], "owner comes aboord and then sir": [0, 65535], "comes aboord and then sir she": [0, 65535], "aboord and then sir she beares": [0, 65535], "and then sir she beares away": [0, 65535], "then sir she beares away our": [0, 65535], "sir she beares away our fraughtage": [0, 65535], "she beares away our fraughtage sir": [0, 65535], "beares away our fraughtage sir i": [0, 65535], "away our fraughtage sir i haue": [0, 65535], "our fraughtage sir i haue conuei'd": [0, 65535], "fraughtage sir i haue conuei'd aboord": [0, 65535], "sir i haue conuei'd aboord and": [0, 65535], "i haue conuei'd aboord and i": [0, 65535], "haue conuei'd aboord and i haue": [0, 65535], "conuei'd aboord and i haue bought": [0, 65535], "aboord and i haue bought the": [0, 65535], "and i haue bought the oyle": [0, 65535], "i haue bought the oyle the": [0, 65535], "haue bought the oyle the balsamum": [0, 65535], "bought the oyle the balsamum and": [0, 65535], "the oyle the balsamum and aqua": [0, 65535], "oyle the balsamum and aqua vit\u00e6": [0, 65535], "the balsamum and aqua vit\u00e6 the": [0, 65535], "balsamum and aqua vit\u00e6 the ship": [0, 65535], "and aqua vit\u00e6 the ship is": [0, 65535], "aqua vit\u00e6 the ship is in": [0, 65535], "vit\u00e6 the ship is in her": [0, 65535], "the ship is in her trim": [0, 65535], "ship is in her trim the": [0, 65535], "is in her trim the merrie": [0, 65535], "in her trim the merrie winde": [0, 65535], "her trim the merrie winde blowes": [0, 65535], "trim the merrie winde blowes faire": [0, 65535], "the merrie winde blowes faire from": [0, 65535], "merrie winde blowes faire from land": [0, 65535], "winde blowes faire from land they": [0, 65535], "blowes faire from land they stay": [0, 65535], "faire from land they stay for": [0, 65535], "from land they stay for nought": [0, 65535], "land they stay for nought at": [0, 65535], "they stay for nought at all": [0, 65535], "stay for nought at all but": [0, 65535], "for nought at all but for": [0, 65535], "nought at all but for their": [0, 65535], "at all but for their owner": [0, 65535], "all but for their owner master": [0, 65535], "but for their owner master and": [0, 65535], "for their owner master and your": [0, 65535], "their owner master and your selfe": [0, 65535], "owner master and your selfe an": [0, 65535], "master and your selfe an how": [0, 65535], "and your selfe an how now": [0, 65535], "your selfe an how now a": [0, 65535], "selfe an how now a madman": [0, 65535], "an how now a madman why": [0, 65535], "how now a madman why thou": [0, 65535], "now a madman why thou peeuish": [0, 65535], "a madman why thou peeuish sheep": [0, 65535], "madman why thou peeuish sheep what": [0, 65535], "why thou peeuish sheep what ship": [0, 65535], "thou peeuish sheep what ship of": [0, 65535], "peeuish sheep what ship of epidamium": [0, 65535], "sheep what ship of epidamium staies": [0, 65535], "what ship of epidamium staies for": [0, 65535], "ship of epidamium staies for me": [0, 65535], "of epidamium staies for me s": [0, 65535], "epidamium staies for me s dro": [0, 65535], "staies for me s dro a": [0, 65535], "for me s dro a ship": [0, 65535], "me s dro a ship you": [0, 65535], "s dro a ship you sent": [0, 65535], "dro a ship you sent me": [0, 65535], "a ship you sent me too": [0, 65535], "ship you sent me too to": [0, 65535], "you sent me too to hier": [0, 65535], "sent me too to hier waftage": [0, 65535], "me too to hier waftage ant": [0, 65535], "too to hier waftage ant thou": [0, 65535], "to hier waftage ant thou drunken": [0, 65535], "hier waftage ant thou drunken slaue": [0, 65535], "waftage ant thou drunken slaue i": [0, 65535], "ant thou drunken slaue i sent": [0, 65535], "thou drunken slaue i sent thee": [0, 65535], "drunken slaue i sent thee for": [0, 65535], "slaue i sent thee for a": [0, 65535], "i sent thee for a rope": [0, 65535], "sent thee for a rope and": [0, 65535], "thee for a rope and told": [0, 65535], "for a rope and told thee": [0, 65535], "a rope and told thee to": [0, 65535], "rope and told thee to what": [0, 65535], "and told thee to what purpose": [0, 65535], "told thee to what purpose and": [0, 65535], "thee to what purpose and what": [0, 65535], "to what purpose and what end": [0, 65535], "what purpose and what end s": [0, 65535], "purpose and what end s dro": [0, 65535], "and what end s dro you": [0, 65535], "what end s dro you sent": [0, 65535], "end s dro you sent me": [0, 65535], "s dro you sent me for": [0, 65535], "dro you sent me for a": [0, 65535], "you sent me for a ropes": [0, 65535], "sent me for a ropes end": [0, 65535], "me for a ropes end as": [0, 65535], "for a ropes end as soone": [0, 65535], "a ropes end as soone you": [0, 65535], "ropes end as soone you sent": [0, 65535], "end as soone you sent me": [0, 65535], "as soone you sent me to": [0, 65535], "soone you sent me to the": [0, 65535], "you sent me to the bay": [0, 65535], "sent me to the bay sir": [0, 65535], "me to the bay sir for": [0, 65535], "to the bay sir for a": [0, 65535], "the bay sir for a barke": [0, 65535], "bay sir for a barke ant": [0, 65535], "sir for a barke ant i": [0, 65535], "for a barke ant i will": [0, 65535], "a barke ant i will debate": [0, 65535], "barke ant i will debate this": [0, 65535], "ant i will debate this matter": [0, 65535], "i will debate this matter at": [0, 65535], "will debate this matter at more": [0, 65535], "debate this matter at more leisure": [0, 65535], "this matter at more leisure and": [0, 65535], "matter at more leisure and teach": [0, 65535], "at more leisure and teach your": [0, 65535], "more leisure and teach your eares": [0, 65535], "leisure and teach your eares to": [0, 65535], "and teach your eares to list": [0, 65535], "teach your eares to list me": [0, 65535], "your eares to list me with": [0, 65535], "eares to list me with more": [0, 65535], "to list me with more heede": [0, 65535], "list me with more heede to": [0, 65535], "me with more heede to adriana": [0, 65535], "with more heede to adriana villaine": [0, 65535], "more heede to adriana villaine hie": [0, 65535], "heede to adriana villaine hie thee": [0, 65535], "to adriana villaine hie thee straight": [0, 65535], "adriana villaine hie thee straight giue": [0, 65535], "villaine hie thee straight giue her": [0, 65535], "hie thee straight giue her this": [0, 65535], "thee straight giue her this key": [0, 65535], "straight giue her this key and": [0, 65535], "giue her this key and tell": [0, 65535], "her this key and tell her": [0, 65535], "this key and tell her in": [0, 65535], "key and tell her in the": [0, 65535], "and tell her in the deske": [0, 65535], "tell her in the deske that's": [0, 65535], "her in the deske that's couer'd": [0, 65535], "in the deske that's couer'd o're": [0, 65535], "the deske that's couer'd o're with": [0, 65535], "deske that's couer'd o're with turkish": [0, 65535], "that's couer'd o're with turkish tapistrie": [0, 65535], "couer'd o're with turkish tapistrie there": [0, 65535], "o're with turkish tapistrie there is": [0, 65535], "with turkish tapistrie there is a": [0, 65535], "turkish tapistrie there is a purse": [0, 65535], "tapistrie there is a purse of": [0, 65535], "there is a purse of duckets": [0, 65535], "is a purse of duckets let": [0, 65535], "a purse of duckets let her": [0, 65535], "purse of duckets let her send": [0, 65535], "of duckets let her send it": [0, 65535], "duckets let her send it tell": [0, 65535], "let her send it tell her": [0, 65535], "her send it tell her i": [0, 65535], "send it tell her i am": [0, 65535], "it tell her i am arrested": [0, 65535], "tell her i am arrested in": [0, 65535], "her i am arrested in the": [0, 65535], "i am arrested in the streete": [0, 65535], "am arrested in the streete and": [0, 65535], "arrested in the streete and that": [0, 65535], "in the streete and that shall": [0, 65535], "the streete and that shall baile": [0, 65535], "streete and that shall baile me": [0, 65535], "and that shall baile me hie": [0, 65535], "that shall baile me hie thee": [0, 65535], "shall baile me hie thee slaue": [0, 65535], "baile me hie thee slaue be": [0, 65535], "me hie thee slaue be gone": [0, 65535], "hie thee slaue be gone on": [0, 65535], "thee slaue be gone on officer": [0, 65535], "slaue be gone on officer to": [0, 65535], "be gone on officer to prison": [0, 65535], "gone on officer to prison till": [0, 65535], "on officer to prison till it": [0, 65535], "officer to prison till it come": [0, 65535], "to prison till it come exeunt": [0, 65535], "prison till it come exeunt s": [0, 65535], "till it come exeunt s dromio": [0, 65535], "it come exeunt s dromio to": [0, 65535], "come exeunt s dromio to adriana": [0, 65535], "exeunt s dromio to adriana that": [0, 65535], "s dromio to adriana that is": [0, 65535], "dromio to adriana that is where": [0, 65535], "to adriana that is where we": [0, 65535], "adriana that is where we din'd": [0, 65535], "that is where we din'd where": [0, 65535], "is where we din'd where dowsabell": [0, 65535], "where we din'd where dowsabell did": [0, 65535], "we din'd where dowsabell did claime": [0, 65535], "din'd where dowsabell did claime me": [0, 65535], "where dowsabell did claime me for": [0, 65535], "dowsabell did claime me for her": [0, 65535], "did claime me for her husband": [0, 65535], "claime me for her husband she": [0, 65535], "me for her husband she is": [0, 65535], "for her husband she is too": [0, 65535], "her husband she is too bigge": [0, 65535], "husband she is too bigge i": [0, 65535], "she is too bigge i hope": [0, 65535], "is too bigge i hope for": [0, 65535], "too bigge i hope for me": [0, 65535], "bigge i hope for me to": [0, 65535], "i hope for me to compasse": [0, 65535], "hope for me to compasse thither": [0, 65535], "for me to compasse thither i": [0, 65535], "me to compasse thither i must": [0, 65535], "to compasse thither i must although": [0, 65535], "compasse thither i must although against": [0, 65535], "thither i must although against my": [0, 65535], "i must although against my will": [0, 65535], "must although against my will for": [0, 65535], "although against my will for seruants": [0, 65535], "against my will for seruants must": [0, 65535], "my will for seruants must their": [0, 65535], "will for seruants must their masters": [0, 65535], "for seruants must their masters mindes": [0, 65535], "seruants must their masters mindes fulfill": [0, 65535], "must their masters mindes fulfill exit": [0, 65535], "their masters mindes fulfill exit enter": [0, 65535], "masters mindes fulfill exit enter adriana": [0, 65535], "mindes fulfill exit enter adriana and": [0, 65535], "fulfill exit enter adriana and luciana": [0, 65535], "exit enter adriana and luciana adr": [0, 65535], "enter adriana and luciana adr ah": [0, 65535], "adriana and luciana adr ah luciana": [0, 65535], "and luciana adr ah luciana did": [0, 65535], "luciana adr ah luciana did he": [0, 65535], "adr ah luciana did he tempt": [0, 65535], "ah luciana did he tempt thee": [0, 65535], "luciana did he tempt thee so": [0, 65535], "did he tempt thee so might'st": [0, 65535], "he tempt thee so might'st thou": [0, 65535], "tempt thee so might'st thou perceiue": [0, 65535], "thee so might'st thou perceiue austeerely": [0, 65535], "so might'st thou perceiue austeerely in": [0, 65535], "might'st thou perceiue austeerely in his": [0, 65535], "thou perceiue austeerely in his eie": [0, 65535], "perceiue austeerely in his eie that": [0, 65535], "austeerely in his eie that he": [0, 65535], "in his eie that he did": [0, 65535], "his eie that he did plead": [0, 65535], "eie that he did plead in": [0, 65535], "that he did plead in earnest": [0, 65535], "he did plead in earnest yea": [0, 65535], "did plead in earnest yea or": [0, 65535], "plead in earnest yea or no": [0, 65535], "in earnest yea or no look'd": [0, 65535], "earnest yea or no look'd he": [0, 65535], "yea or no look'd he or": [0, 65535], "or no look'd he or red": [0, 65535], "no look'd he or red or": [0, 65535], "look'd he or red or pale": [0, 65535], "he or red or pale or": [0, 65535], "or red or pale or sad": [0, 65535], "red or pale or sad or": [0, 65535], "or pale or sad or merrily": [0, 65535], "pale or sad or merrily what": [0, 65535], "or sad or merrily what obseruation": [0, 65535], "sad or merrily what obseruation mad'st": [0, 65535], "or merrily what obseruation mad'st thou": [0, 65535], "merrily what obseruation mad'st thou in": [0, 65535], "what obseruation mad'st thou in this": [0, 65535], "obseruation mad'st thou in this case": [0, 65535], "mad'st thou in this case oh": [0, 65535], "thou in this case oh his": [0, 65535], "in this case oh his hearts": [0, 65535], "this case oh his hearts meteors": [0, 65535], "case oh his hearts meteors tilting": [0, 65535], "oh his hearts meteors tilting in": [0, 65535], "his hearts meteors tilting in his": [0, 65535], "hearts meteors tilting in his face": [0, 65535], "meteors tilting in his face luc": [0, 65535], "tilting in his face luc first": [0, 65535], "in his face luc first he": [0, 65535], "his face luc first he deni'de": [0, 65535], "face luc first he deni'de you": [0, 65535], "luc first he deni'de you had": [0, 65535], "first he deni'de you had in": [0, 65535], "he deni'de you had in him": [0, 65535], "deni'de you had in him no": [0, 65535], "you had in him no right": [0, 65535], "had in him no right adr": [0, 65535], "in him no right adr he": [0, 65535], "him no right adr he meant": [0, 65535], "no right adr he meant he": [0, 65535], "right adr he meant he did": [0, 65535], "adr he meant he did me": [0, 65535], "he meant he did me none": [0, 65535], "meant he did me none the": [0, 65535], "he did me none the more": [0, 65535], "did me none the more my": [0, 65535], "me none the more my spight": [0, 65535], "none the more my spight luc": [0, 65535], "the more my spight luc then": [0, 65535], "more my spight luc then swore": [0, 65535], "my spight luc then swore he": [0, 65535], "spight luc then swore he that": [0, 65535], "luc then swore he that he": [0, 65535], "then swore he that he was": [0, 65535], "swore he that he was a": [0, 65535], "he that he was a stranger": [0, 65535], "that he was a stranger heere": [0, 65535], "he was a stranger heere adr": [0, 65535], "was a stranger heere adr and": [0, 65535], "a stranger heere adr and true": [0, 65535], "stranger heere adr and true he": [0, 65535], "heere adr and true he swore": [0, 65535], "adr and true he swore though": [0, 65535], "and true he swore though yet": [0, 65535], "true he swore though yet forsworne": [0, 65535], "he swore though yet forsworne hee": [0, 65535], "swore though yet forsworne hee were": [0, 65535], "though yet forsworne hee were luc": [0, 65535], "yet forsworne hee were luc then": [0, 65535], "forsworne hee were luc then pleaded": [0, 65535], "hee were luc then pleaded i": [0, 65535], "were luc then pleaded i for": [0, 65535], "luc then pleaded i for you": [0, 65535], "then pleaded i for you adr": [0, 65535], "pleaded i for you adr and": [0, 65535], "i for you adr and what": [0, 65535], "for you adr and what said": [0, 65535], "you adr and what said he": [0, 65535], "adr and what said he luc": [0, 65535], "and what said he luc that": [0, 65535], "what said he luc that loue": [0, 65535], "said he luc that loue i": [0, 65535], "he luc that loue i begg'd": [0, 65535], "luc that loue i begg'd for": [0, 65535], "that loue i begg'd for you": [0, 65535], "loue i begg'd for you he": [0, 65535], "i begg'd for you he begg'd": [0, 65535], "begg'd for you he begg'd of": [0, 65535], "for you he begg'd of me": [0, 65535], "you he begg'd of me adr": [0, 65535], "he begg'd of me adr with": [0, 65535], "begg'd of me adr with what": [0, 65535], "of me adr with what perswasion": [0, 65535], "me adr with what perswasion did": [0, 65535], "adr with what perswasion did he": [0, 65535], "with what perswasion did he tempt": [0, 65535], "what perswasion did he tempt thy": [0, 65535], "perswasion did he tempt thy loue": [0, 65535], "did he tempt thy loue luc": [0, 65535], "he tempt thy loue luc with": [0, 65535], "tempt thy loue luc with words": [0, 65535], "thy loue luc with words that": [0, 65535], "loue luc with words that in": [0, 65535], "luc with words that in an": [0, 65535], "with words that in an honest": [0, 65535], "words that in an honest suit": [0, 65535], "that in an honest suit might": [0, 65535], "in an honest suit might moue": [0, 65535], "an honest suit might moue first": [0, 65535], "honest suit might moue first he": [0, 65535], "suit might moue first he did": [0, 65535], "might moue first he did praise": [0, 65535], "moue first he did praise my": [0, 65535], "first he did praise my beautie": [0, 65535], "he did praise my beautie then": [0, 65535], "did praise my beautie then my": [0, 65535], "praise my beautie then my speech": [0, 65535], "my beautie then my speech adr": [0, 65535], "beautie then my speech adr did'st": [0, 65535], "then my speech adr did'st speake": [0, 65535], "my speech adr did'st speake him": [0, 65535], "speech adr did'st speake him faire": [0, 65535], "adr did'st speake him faire luc": [0, 65535], "did'st speake him faire luc haue": [0, 65535], "speake him faire luc haue patience": [0, 65535], "him faire luc haue patience i": [0, 65535], "faire luc haue patience i beseech": [0, 65535], "luc haue patience i beseech adr": [0, 65535], "haue patience i beseech adr i": [0, 65535], "patience i beseech adr i cannot": [0, 65535], "i beseech adr i cannot nor": [0, 65535], "beseech adr i cannot nor i": [0, 65535], "adr i cannot nor i will": [0, 65535], "i cannot nor i will not": [0, 65535], "cannot nor i will not hold": [0, 65535], "nor i will not hold me": [0, 65535], "i will not hold me still": [0, 65535], "will not hold me still my": [0, 65535], "not hold me still my tongue": [0, 65535], "hold me still my tongue though": [0, 65535], "me still my tongue though not": [0, 65535], "still my tongue though not my": [0, 65535], "my tongue though not my heart": [0, 65535], "tongue though not my heart shall": [0, 65535], "though not my heart shall haue": [0, 65535], "not my heart shall haue his": [0, 65535], "my heart shall haue his will": [0, 65535], "heart shall haue his will he": [0, 65535], "shall haue his will he is": [0, 65535], "haue his will he is deformed": [0, 65535], "his will he is deformed crooked": [0, 65535], "will he is deformed crooked old": [0, 65535], "he is deformed crooked old and": [0, 65535], "is deformed crooked old and sere": [0, 65535], "deformed crooked old and sere ill": [0, 65535], "crooked old and sere ill fac'd": [0, 65535], "old and sere ill fac'd worse": [0, 65535], "and sere ill fac'd worse bodied": [0, 65535], "sere ill fac'd worse bodied shapelesse": [0, 65535], "ill fac'd worse bodied shapelesse euery": [0, 65535], "fac'd worse bodied shapelesse euery where": [0, 65535], "worse bodied shapelesse euery where vicious": [0, 65535], "bodied shapelesse euery where vicious vngentle": [0, 65535], "shapelesse euery where vicious vngentle foolish": [0, 65535], "euery where vicious vngentle foolish blunt": [0, 65535], "where vicious vngentle foolish blunt vnkinde": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "foolish blunt vnkinde stigmaticall in making": [0, 65535], "blunt vnkinde stigmaticall in making worse": [0, 65535], "vnkinde stigmaticall in making worse in": [0, 65535], "stigmaticall in making worse in minde": [0, 65535], "in making worse in minde luc": [0, 65535], "making worse in minde luc who": [0, 65535], "worse in minde luc who would": [0, 65535], "in minde luc who would be": [0, 65535], "minde luc who would be iealous": [0, 65535], "luc who would be iealous then": [0, 65535], "who would be iealous then of": [0, 65535], "would be iealous then of such": [0, 65535], "be iealous then of such a": [0, 65535], "iealous then of such a one": [0, 65535], "then of such a one no": [0, 65535], "of such a one no euill": [0, 65535], "such a one no euill lost": [0, 65535], "a one no euill lost is": [0, 65535], "one no euill lost is wail'd": [0, 65535], "no euill lost is wail'd when": [0, 65535], "euill lost is wail'd when it": [0, 65535], "lost is wail'd when it is": [0, 65535], "is wail'd when it is gone": [0, 65535], "wail'd when it is gone adr": [0, 65535], "when it is gone adr ah": [0, 65535], "it is gone adr ah but": [0, 65535], "is gone adr ah but i": [0, 65535], "gone adr ah but i thinke": [0, 65535], "adr ah but i thinke him": [0, 65535], "ah but i thinke him better": [0, 65535], "but i thinke him better then": [0, 65535], "i thinke him better then i": [0, 65535], "thinke him better then i say": [0, 65535], "him better then i say and": [0, 65535], "better then i say and yet": [0, 65535], "then i say and yet would": [0, 65535], "i say and yet would herein": [0, 65535], "say and yet would herein others": [0, 65535], "and yet would herein others eies": [0, 65535], "yet would herein others eies were": [0, 65535], "would herein others eies were worse": [0, 65535], "herein others eies were worse farre": [0, 65535], "others eies were worse farre from": [0, 65535], "eies were worse farre from her": [0, 65535], "were worse farre from her nest": [0, 65535], "worse farre from her nest the": [0, 65535], "farre from her nest the lapwing": [0, 65535], "from her nest the lapwing cries": [0, 65535], "her nest the lapwing cries away": [0, 65535], "nest the lapwing cries away my": [0, 65535], "the lapwing cries away my heart": [0, 65535], "lapwing cries away my heart praies": [0, 65535], "cries away my heart praies for": [0, 65535], "away my heart praies for him": [0, 65535], "my heart praies for him though": [0, 65535], "heart praies for him though my": [0, 65535], "praies for him though my tongue": [0, 65535], "for him though my tongue doe": [0, 65535], "him though my tongue doe curse": [0, 65535], "though my tongue doe curse enter": [0, 65535], "my tongue doe curse enter s": [0, 65535], "tongue doe curse enter s dromio": [0, 65535], "doe curse enter s dromio dro": [0, 65535], "curse enter s dromio dro here": [0, 65535], "enter s dromio dro here goe": [0, 65535], "s dromio dro here goe the": [0, 65535], "dromio dro here goe the deske": [0, 65535], "dro here goe the deske the": [0, 65535], "here goe the deske the purse": [0, 65535], "goe the deske the purse sweet": [0, 65535], "the deske the purse sweet now": [0, 65535], "deske the purse sweet now make": [0, 65535], "the purse sweet now make haste": [0, 65535], "purse sweet now make haste luc": [0, 65535], "sweet now make haste luc how": [0, 65535], "now make haste luc how hast": [0, 65535], "make haste luc how hast thou": [0, 65535], "haste luc how hast thou lost": [0, 65535], "luc how hast thou lost thy": [0, 65535], "how hast thou lost thy breath": [0, 65535], "hast thou lost thy breath s": [0, 65535], "thou lost thy breath s dro": [0, 65535], "lost thy breath s dro by": [0, 65535], "thy breath s dro by running": [0, 65535], "breath s dro by running fast": [0, 65535], "s dro by running fast adr": [0, 65535], "dro by running fast adr where": [0, 65535], "by running fast adr where is": [0, 65535], "running fast adr where is thy": [0, 65535], "fast adr where is thy master": [0, 65535], "adr where is thy master dromio": [0, 65535], "where is thy master dromio is": [0, 65535], "is thy master dromio is he": [0, 65535], "thy master dromio is he well": [0, 65535], "master dromio is he well s": [0, 65535], "dromio is he well s dro": [0, 65535], "is he well s dro no": [0, 65535], "he well s dro no he's": [0, 65535], "well s dro no he's in": [0, 65535], "s dro no he's in tartar": [0, 65535], "dro no he's in tartar limbo": [0, 65535], "no he's in tartar limbo worse": [0, 65535], "he's in tartar limbo worse then": [0, 65535], "in tartar limbo worse then hell": [0, 65535], "tartar limbo worse then hell a": [0, 65535], "limbo worse then hell a diuell": [0, 65535], "worse then hell a diuell in": [0, 65535], "then hell a diuell in an": [0, 65535], "hell a diuell in an euerlasting": [0, 65535], "a diuell in an euerlasting garment": [0, 65535], "diuell in an euerlasting garment hath": [0, 65535], "in an euerlasting garment hath him": [0, 65535], "an euerlasting garment hath him on": [0, 65535], "euerlasting garment hath him on whose": [0, 65535], "garment hath him on whose hard": [0, 65535], "hath him on whose hard heart": [0, 65535], "him on whose hard heart is": [0, 65535], "on whose hard heart is button'd": [0, 65535], "whose hard heart is button'd vp": [0, 65535], "hard heart is button'd vp with": [0, 65535], "heart is button'd vp with steele": [0, 65535], "is button'd vp with steele a": [0, 65535], "button'd vp with steele a feind": [0, 65535], "vp with steele a feind a": [0, 65535], "with steele a feind a fairie": [0, 65535], "steele a feind a fairie pittilesse": [0, 65535], "a feind a fairie pittilesse and": [0, 65535], "feind a fairie pittilesse and ruffe": [0, 65535], "a fairie pittilesse and ruffe a": [0, 65535], "fairie pittilesse and ruffe a wolfe": [0, 65535], "pittilesse and ruffe a wolfe nay": [0, 65535], "and ruffe a wolfe nay worse": [0, 65535], "ruffe a wolfe nay worse a": [0, 65535], "a wolfe nay worse a fellow": [0, 65535], "wolfe nay worse a fellow all": [0, 65535], "nay worse a fellow all in": [0, 65535], "worse a fellow all in buffe": [0, 65535], "a fellow all in buffe a": [0, 65535], "fellow all in buffe a back": [0, 65535], "all in buffe a back friend": [0, 65535], "in buffe a back friend a": [0, 65535], "buffe a back friend a shoulder": [0, 65535], "a back friend a shoulder clapper": [0, 65535], "back friend a shoulder clapper one": [0, 65535], "friend a shoulder clapper one that": [0, 65535], "a shoulder clapper one that countermads": [0, 65535], "shoulder clapper one that countermads the": [0, 65535], "clapper one that countermads the passages": [0, 65535], "one that countermads the passages of": [0, 65535], "that countermads the passages of allies": [0, 65535], "countermads the passages of allies creekes": [0, 65535], "the passages of allies creekes and": [0, 65535], "passages of allies creekes and narrow": [0, 65535], "of allies creekes and narrow lands": [0, 65535], "allies creekes and narrow lands a": [0, 65535], "creekes and narrow lands a hound": [0, 65535], "and narrow lands a hound that": [0, 65535], "narrow lands a hound that runs": [0, 65535], "lands a hound that runs counter": [0, 65535], "a hound that runs counter and": [0, 65535], "hound that runs counter and yet": [0, 65535], "that runs counter and yet draws": [0, 65535], "runs counter and yet draws drifoot": [0, 65535], "counter and yet draws drifoot well": [0, 65535], "and yet draws drifoot well one": [0, 65535], "yet draws drifoot well one that": [0, 65535], "draws drifoot well one that before": [0, 65535], "drifoot well one that before the": [0, 65535], "well one that before the iudgment": [0, 65535], "one that before the iudgment carries": [0, 65535], "that before the iudgment carries poore": [0, 65535], "before the iudgment carries poore soules": [0, 65535], "the iudgment carries poore soules to": [0, 65535], "iudgment carries poore soules to hel": [0, 65535], "carries poore soules to hel adr": [0, 65535], "poore soules to hel adr why": [0, 65535], "soules to hel adr why man": [0, 65535], "to hel adr why man what": [0, 65535], "hel adr why man what is": [0, 65535], "adr why man what is the": [0, 65535], "why man what is the matter": [0, 65535], "man what is the matter s": [0, 65535], "what is the matter s dro": [0, 65535], "is the matter s dro i": [0, 65535], "the matter s dro i doe": [0, 65535], "matter s dro i doe not": [0, 65535], "s dro i doe not know": [0, 65535], "dro i doe not know the": [0, 65535], "i doe not know the matter": [0, 65535], "doe not know the matter hee": [0, 65535], "not know the matter hee is": [0, 65535], "know the matter hee is rested": [0, 65535], "the matter hee is rested on": [0, 65535], "matter hee is rested on the": [0, 65535], "hee is rested on the case": [0, 65535], "is rested on the case adr": [0, 65535], "rested on the case adr what": [0, 65535], "on the case adr what is": [0, 65535], "the case adr what is he": [0, 65535], "case adr what is he arrested": [0, 65535], "adr what is he arrested tell": [0, 65535], "what is he arrested tell me": [0, 65535], "is he arrested tell me at": [0, 65535], "he arrested tell me at whose": [0, 65535], "arrested tell me at whose suite": [0, 65535], "tell me at whose suite s": [0, 65535], "me at whose suite s dro": [0, 65535], "at whose suite s dro i": [0, 65535], "whose suite s dro i know": [0, 65535], "suite s dro i know not": [0, 65535], "s dro i know not at": [0, 65535], "dro i know not at whose": [0, 65535], "i know not at whose suite": [0, 65535], "know not at whose suite he": [0, 65535], "not at whose suite he is": [0, 65535], "at whose suite he is arested": [0, 65535], "whose suite he is arested well": [0, 65535], "suite he is arested well but": [0, 65535], "he is arested well but is": [0, 65535], "is arested well but is in": [0, 65535], "arested well but is in a": [0, 65535], "well but is in a suite": [0, 65535], "but is in a suite of": [0, 65535], "is in a suite of buffe": [0, 65535], "in a suite of buffe which": [0, 65535], "a suite of buffe which rested": [0, 65535], "suite of buffe which rested him": [0, 65535], "of buffe which rested him that": [0, 65535], "buffe which rested him that can": [0, 65535], "which rested him that can i": [0, 65535], "rested him that can i tell": [0, 65535], "him that can i tell will": [0, 65535], "that can i tell will you": [0, 65535], "can i tell will you send": [0, 65535], "i tell will you send him": [0, 65535], "tell will you send him mistris": [0, 65535], "will you send him mistris redemption": [0, 65535], "you send him mistris redemption the": [0, 65535], "send him mistris redemption the monie": [0, 65535], "him mistris redemption the monie in": [0, 65535], "mistris redemption the monie in his": [0, 65535], "redemption the monie in his deske": [0, 65535], "the monie in his deske adr": [0, 65535], "monie in his deske adr go": [0, 65535], "in his deske adr go fetch": [0, 65535], "his deske adr go fetch it": [0, 65535], "deske adr go fetch it sister": [0, 65535], "adr go fetch it sister this": [0, 65535], "go fetch it sister this i": [0, 65535], "fetch it sister this i wonder": [0, 65535], "it sister this i wonder at": [0, 65535], "sister this i wonder at exit": [0, 65535], "this i wonder at exit luciana": [0, 65535], "i wonder at exit luciana thus": [0, 65535], "wonder at exit luciana thus he": [0, 65535], "at exit luciana thus he vnknowne": [0, 65535], "exit luciana thus he vnknowne to": [0, 65535], "luciana thus he vnknowne to me": [0, 65535], "thus he vnknowne to me should": [0, 65535], "he vnknowne to me should be": [0, 65535], "vnknowne to me should be in": [0, 65535], "to me should be in debt": [0, 65535], "me should be in debt tell": [0, 65535], "should be in debt tell me": [0, 65535], "be in debt tell me was": [0, 65535], "in debt tell me was he": [0, 65535], "debt tell me was he arested": [0, 65535], "tell me was he arested on": [0, 65535], "me was he arested on a": [0, 65535], "was he arested on a band": [0, 65535], "he arested on a band s": [0, 65535], "arested on a band s dro": [0, 65535], "on a band s dro not": [0, 65535], "a band s dro not on": [0, 65535], "band s dro not on a": [0, 65535], "s dro not on a band": [0, 65535], "dro not on a band but": [0, 65535], "not on a band but on": [0, 65535], "on a band but on a": [0, 65535], "a band but on a stronger": [0, 65535], "band but on a stronger thing": [0, 65535], "but on a stronger thing a": [0, 65535], "on a stronger thing a chaine": [0, 65535], "a stronger thing a chaine a": [0, 65535], "stronger thing a chaine a chaine": [0, 65535], "thing a chaine a chaine doe": [0, 65535], "a chaine a chaine doe you": [0, 65535], "chaine a chaine doe you not": [0, 65535], "a chaine doe you not here": [0, 65535], "chaine doe you not here it": [0, 65535], "doe you not here it ring": [0, 65535], "you not here it ring adria": [0, 65535], "not here it ring adria what": [0, 65535], "here it ring adria what the": [0, 65535], "it ring adria what the chaine": [0, 65535], "ring adria what the chaine s": [0, 65535], "adria what the chaine s dro": [0, 65535], "what the chaine s dro no": [0, 65535], "the chaine s dro no no": [0, 65535], "chaine s dro no no the": [0, 65535], "s dro no no the bell": [0, 65535], "dro no no the bell 'tis": [0, 65535], "no no the bell 'tis time": [0, 65535], "no the bell 'tis time that": [0, 65535], "the bell 'tis time that i": [0, 65535], "bell 'tis time that i were": [0, 65535], "'tis time that i were gone": [0, 65535], "time that i were gone it": [0, 65535], "that i were gone it was": [0, 65535], "i were gone it was two": [0, 65535], "were gone it was two ere": [0, 65535], "gone it was two ere i": [0, 65535], "it was two ere i left": [0, 65535], "was two ere i left him": [0, 65535], "two ere i left him and": [0, 65535], "ere i left him and now": [0, 65535], "i left him and now the": [0, 65535], "left him and now the clocke": [0, 65535], "him and now the clocke strikes": [0, 65535], "and now the clocke strikes one": [0, 65535], "now the clocke strikes one adr": [0, 65535], "the clocke strikes one adr the": [0, 65535], "clocke strikes one adr the houres": [0, 65535], "strikes one adr the houres come": [0, 65535], "one adr the houres come backe": [0, 65535], "adr the houres come backe that": [0, 65535], "the houres come backe that did": [0, 65535], "houres come backe that did i": [0, 65535], "come backe that did i neuer": [0, 65535], "backe that did i neuer here": [0, 65535], "that did i neuer here s": [0, 65535], "did i neuer here s dro": [0, 65535], "i neuer here s dro oh": [0, 65535], "neuer here s dro oh yes": [0, 65535], "here s dro oh yes if": [0, 65535], "s dro oh yes if any": [0, 65535], "dro oh yes if any houre": [0, 65535], "oh yes if any houre meete": [0, 65535], "yes if any houre meete a": [0, 65535], "if any houre meete a serieant": [0, 65535], "any houre meete a serieant a": [0, 65535], "houre meete a serieant a turnes": [0, 65535], "meete a serieant a turnes backe": [0, 65535], "a serieant a turnes backe for": [0, 65535], "serieant a turnes backe for verie": [0, 65535], "a turnes backe for verie feare": [0, 65535], "turnes backe for verie feare adri": [0, 65535], "backe for verie feare adri as": [0, 65535], "for verie feare adri as if": [0, 65535], "verie feare adri as if time": [0, 65535], "feare adri as if time were": [0, 65535], "adri as if time were in": [0, 65535], "as if time were in debt": [0, 65535], "if time were in debt how": [0, 65535], "time were in debt how fondly": [0, 65535], "were in debt how fondly do'st": [0, 65535], "in debt how fondly do'st thou": [0, 65535], "debt how fondly do'st thou reason": [0, 65535], "how fondly do'st thou reason s": [0, 65535], "fondly do'st thou reason s dro": [0, 65535], "do'st thou reason s dro time": [0, 65535], "thou reason s dro time is": [0, 65535], "reason s dro time is a": [0, 65535], "s dro time is a verie": [0, 65535], "dro time is a verie bankerout": [0, 65535], "time is a verie bankerout and": [0, 65535], "is a verie bankerout and owes": [0, 65535], "a verie bankerout and owes more": [0, 65535], "verie bankerout and owes more then": [0, 65535], "bankerout and owes more then he's": [0, 65535], "and owes more then he's worth": [0, 65535], "owes more then he's worth to": [0, 65535], "more then he's worth to season": [0, 65535], "then he's worth to season nay": [0, 65535], "he's worth to season nay he's": [0, 65535], "worth to season nay he's a": [0, 65535], "to season nay he's a theefe": [0, 65535], "season nay he's a theefe too": [0, 65535], "nay he's a theefe too haue": [0, 65535], "he's a theefe too haue you": [0, 65535], "a theefe too haue you not": [0, 65535], "theefe too haue you not heard": [0, 65535], "too haue you not heard men": [0, 65535], "haue you not heard men say": [0, 65535], "you not heard men say that": [0, 65535], "not heard men say that time": [0, 65535], "heard men say that time comes": [0, 65535], "men say that time comes stealing": [0, 65535], "say that time comes stealing on": [0, 65535], "that time comes stealing on by": [0, 65535], "time comes stealing on by night": [0, 65535], "comes stealing on by night and": [0, 65535], "stealing on by night and day": [0, 65535], "on by night and day if": [0, 65535], "by night and day if i": [0, 65535], "night and day if i be": [0, 65535], "and day if i be in": [0, 65535], "day if i be in debt": [0, 65535], "if i be in debt and": [0, 65535], "i be in debt and theft": [0, 65535], "be in debt and theft and": [0, 65535], "in debt and theft and a": [0, 65535], "debt and theft and a serieant": [0, 65535], "and theft and a serieant in": [0, 65535], "theft and a serieant in the": [0, 65535], "and a serieant in the way": [0, 65535], "a serieant in the way hath": [0, 65535], "serieant in the way hath he": [0, 65535], "in the way hath he not": [0, 65535], "the way hath he not reason": [0, 65535], "way hath he not reason to": [0, 65535], "hath he not reason to turne": [0, 65535], "he not reason to turne backe": [0, 65535], "not reason to turne backe an": [0, 65535], "reason to turne backe an houre": [0, 65535], "to turne backe an houre in": [0, 65535], "turne backe an houre in a": [0, 65535], "backe an houre in a day": [0, 65535], "an houre in a day enter": [0, 65535], "houre in a day enter luciana": [0, 65535], "in a day enter luciana adr": [0, 65535], "a day enter luciana adr go": [0, 65535], "day enter luciana adr go dromio": [0, 65535], "enter luciana adr go dromio there's": [0, 65535], "luciana adr go dromio there's the": [0, 65535], "adr go dromio there's the monie": [0, 65535], "go dromio there's the monie beare": [0, 65535], "dromio there's the monie beare it": [0, 65535], "there's the monie beare it straight": [0, 65535], "the monie beare it straight and": [0, 65535], "monie beare it straight and bring": [0, 65535], "beare it straight and bring thy": [0, 65535], "it straight and bring thy master": [0, 65535], "straight and bring thy master home": [0, 65535], "and bring thy master home imediately": [0, 65535], "bring thy master home imediately come": [0, 65535], "thy master home imediately come sister": [0, 65535], "master home imediately come sister i": [0, 65535], "home imediately come sister i am": [0, 65535], "imediately come sister i am prest": [0, 65535], "come sister i am prest downe": [0, 65535], "sister i am prest downe with": [0, 65535], "i am prest downe with conceit": [0, 65535], "am prest downe with conceit conceit": [0, 65535], "prest downe with conceit conceit my": [0, 65535], "downe with conceit conceit my comfort": [0, 65535], "with conceit conceit my comfort and": [0, 65535], "conceit conceit my comfort and my": [0, 65535], "conceit my comfort and my iniurie": [0, 65535], "my comfort and my iniurie exit": [0, 65535], "comfort and my iniurie exit enter": [0, 65535], "and my iniurie exit enter antipholus": [0, 65535], "my iniurie exit enter antipholus siracusia": [0, 65535], "iniurie exit enter antipholus siracusia there's": [0, 65535], "exit enter antipholus siracusia there's not": [0, 65535], "enter antipholus siracusia there's not a": [0, 65535], "antipholus siracusia there's not a man": [0, 65535], "siracusia there's not a man i": [0, 65535], "there's not a man i meete": [0, 65535], "not a man i meete but": [0, 65535], "a man i meete but doth": [0, 65535], "man i meete but doth salute": [0, 65535], "i meete but doth salute me": [0, 65535], "meete but doth salute me as": [0, 65535], "but doth salute me as if": [0, 65535], "doth salute me as if i": [0, 65535], "salute me as if i were": [0, 65535], "me as if i were their": [0, 65535], "as if i were their well": [0, 65535], "if i were their well acquainted": [0, 65535], "i were their well acquainted friend": [0, 65535], "were their well acquainted friend and": [0, 65535], "their well acquainted friend and euerie": [0, 65535], "well acquainted friend and euerie one": [0, 65535], "acquainted friend and euerie one doth": [0, 65535], "friend and euerie one doth call": [0, 65535], "and euerie one doth call me": [0, 65535], "euerie one doth call me by": [0, 65535], "one doth call me by my": [0, 65535], "doth call me by my name": [0, 65535], "call me by my name some": [0, 65535], "me by my name some tender": [0, 65535], "by my name some tender monie": [0, 65535], "my name some tender monie to": [0, 65535], "name some tender monie to me": [0, 65535], "some tender monie to me some": [0, 65535], "tender monie to me some inuite": [0, 65535], "monie to me some inuite me": [0, 65535], "to me some inuite me some": [0, 65535], "me some inuite me some other": [0, 65535], "some inuite me some other giue": [0, 65535], "inuite me some other giue me": [0, 65535], "me some other giue me thankes": [0, 65535], "some other giue me thankes for": [0, 65535], "other giue me thankes for kindnesses": [0, 65535], "giue me thankes for kindnesses some": [0, 65535], "me thankes for kindnesses some offer": [0, 65535], "thankes for kindnesses some offer me": [0, 65535], "for kindnesses some offer me commodities": [0, 65535], "kindnesses some offer me commodities to": [0, 65535], "some offer me commodities to buy": [0, 65535], "offer me commodities to buy euen": [0, 65535], "me commodities to buy euen now": [0, 65535], "commodities to buy euen now a": [0, 65535], "to buy euen now a tailor": [0, 65535], "buy euen now a tailor cal'd": [0, 65535], "euen now a tailor cal'd me": [0, 65535], "now a tailor cal'd me in": [0, 65535], "a tailor cal'd me in his": [0, 65535], "tailor cal'd me in his shop": [0, 65535], "cal'd me in his shop and": [0, 65535], "me in his shop and show'd": [0, 65535], "in his shop and show'd me": [0, 65535], "his shop and show'd me silkes": [0, 65535], "shop and show'd me silkes that": [0, 65535], "and show'd me silkes that he": [0, 65535], "show'd me silkes that he had": [0, 65535], "me silkes that he had bought": [0, 65535], "silkes that he had bought for": [0, 65535], "that he had bought for me": [0, 65535], "he had bought for me and": [0, 65535], "had bought for me and therewithall": [0, 65535], "bought for me and therewithall tooke": [0, 65535], "for me and therewithall tooke measure": [0, 65535], "me and therewithall tooke measure of": [0, 65535], "and therewithall tooke measure of my": [0, 65535], "therewithall tooke measure of my body": [0, 65535], "tooke measure of my body sure": [0, 65535], "measure of my body sure these": [0, 65535], "of my body sure these are": [0, 65535], "my body sure these are but": [0, 65535], "body sure these are but imaginarie": [0, 65535], "sure these are but imaginarie wiles": [0, 65535], "these are but imaginarie wiles and": [0, 65535], "are but imaginarie wiles and lapland": [0, 65535], "but imaginarie wiles and lapland sorcerers": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "wiles and lapland sorcerers inhabite here": [0, 65535], "and lapland sorcerers inhabite here enter": [0, 65535], "lapland sorcerers inhabite here enter dromio": [0, 65535], "sorcerers inhabite here enter dromio sir": [0, 65535], "inhabite here enter dromio sir s": [0, 65535], "here enter dromio sir s dro": [0, 65535], "enter dromio sir s dro master": [0, 65535], "dromio sir s dro master here's": [0, 65535], "sir s dro master here's the": [0, 65535], "s dro master here's the gold": [0, 65535], "dro master here's the gold you": [0, 65535], "master here's the gold you sent": [0, 65535], "here's the gold you sent me": [0, 65535], "the gold you sent me for": [0, 65535], "gold you sent me for what": [0, 65535], "you sent me for what haue": [0, 65535], "sent me for what haue you": [0, 65535], "me for what haue you got": [0, 65535], "for what haue you got the": [0, 65535], "what haue you got the picture": [0, 65535], "haue you got the picture of": [0, 65535], "you got the picture of old": [0, 65535], "got the picture of old adam": [0, 65535], "the picture of old adam new": [0, 65535], "picture of old adam new apparel'd": [0, 65535], "of old adam new apparel'd ant": [0, 65535], "old adam new apparel'd ant what": [0, 65535], "adam new apparel'd ant what gold": [0, 65535], "new apparel'd ant what gold is": [0, 65535], "apparel'd ant what gold is this": [0, 65535], "ant what gold is this what": [0, 65535], "what gold is this what adam": [0, 65535], "gold is this what adam do'st": [0, 65535], "is this what adam do'st thou": [0, 65535], "this what adam do'st thou meane": [0, 65535], "what adam do'st thou meane s": [0, 65535], "adam do'st thou meane s dro": [0, 65535], "do'st thou meane s dro not": [0, 65535], "thou meane s dro not that": [0, 65535], "meane s dro not that adam": [0, 65535], "s dro not that adam that": [0, 65535], "dro not that adam that kept": [0, 65535], "not that adam that kept the": [0, 65535], "that adam that kept the paradise": [0, 65535], "adam that kept the paradise but": [0, 65535], "that kept the paradise but that": [0, 65535], "kept the paradise but that adam": [0, 65535], "the paradise but that adam that": [0, 65535], "paradise but that adam that keepes": [0, 65535], "but that adam that keepes the": [0, 65535], "that adam that keepes the prison": [0, 65535], "adam that keepes the prison hee": [0, 65535], "that keepes the prison hee that": [0, 65535], "keepes the prison hee that goes": [0, 65535], "the prison hee that goes in": [0, 65535], "prison hee that goes in the": [0, 65535], "hee that goes in the calues": [0, 65535], "that goes in the calues skin": [0, 65535], "goes in the calues skin that": [0, 65535], "in the calues skin that was": [0, 65535], "the calues skin that was kil'd": [0, 65535], "calues skin that was kil'd for": [0, 65535], "skin that was kil'd for the": [0, 65535], "that was kil'd for the prodigall": [0, 65535], "was kil'd for the prodigall hee": [0, 65535], "kil'd for the prodigall hee that": [0, 65535], "for the prodigall hee that came": [0, 65535], "the prodigall hee that came behinde": [0, 65535], "prodigall hee that came behinde you": [0, 65535], "hee that came behinde you sir": [0, 65535], "that came behinde you sir like": [0, 65535], "came behinde you sir like an": [0, 65535], "behinde you sir like an euill": [0, 65535], "you sir like an euill angel": [0, 65535], "sir like an euill angel and": [0, 65535], "like an euill angel and bid": [0, 65535], "an euill angel and bid you": [0, 65535], "euill angel and bid you forsake": [0, 65535], "angel and bid you forsake your": [0, 65535], "and bid you forsake your libertie": [0, 65535], "bid you forsake your libertie ant": [0, 65535], "you forsake your libertie ant i": [0, 65535], "forsake your libertie ant i vnderstand": [0, 65535], "your libertie ant i vnderstand thee": [0, 65535], "libertie ant i vnderstand thee not": [0, 65535], "ant i vnderstand thee not s": [0, 65535], "i vnderstand thee not s dro": [0, 65535], "vnderstand thee not s dro no": [0, 65535], "thee not s dro no why": [0, 65535], "not s dro no why 'tis": [0, 65535], "s dro no why 'tis a": [0, 65535], "dro no why 'tis a plaine": [0, 65535], "no why 'tis a plaine case": [0, 65535], "why 'tis a plaine case he": [0, 65535], "'tis a plaine case he that": [0, 65535], "a plaine case he that went": [0, 65535], "plaine case he that went like": [0, 65535], "case he that went like a": [0, 65535], "he that went like a base": [0, 65535], "that went like a base viole": [0, 65535], "went like a base viole in": [0, 65535], "like a base viole in a": [0, 65535], "a base viole in a case": [0, 65535], "base viole in a case of": [0, 65535], "viole in a case of leather": [0, 65535], "in a case of leather the": [0, 65535], "a case of leather the man": [0, 65535], "case of leather the man sir": [0, 65535], "of leather the man sir that": [0, 65535], "leather the man sir that when": [0, 65535], "the man sir that when gentlemen": [0, 65535], "man sir that when gentlemen are": [0, 65535], "sir that when gentlemen are tired": [0, 65535], "that when gentlemen are tired giues": [0, 65535], "when gentlemen are tired giues them": [0, 65535], "gentlemen are tired giues them a": [0, 65535], "are tired giues them a sob": [0, 65535], "tired giues them a sob and": [0, 65535], "giues them a sob and rests": [0, 65535], "them a sob and rests them": [0, 65535], "a sob and rests them he": [0, 65535], "sob and rests them he sir": [0, 65535], "and rests them he sir that": [0, 65535], "rests them he sir that takes": [0, 65535], "them he sir that takes pittie": [0, 65535], "he sir that takes pittie on": [0, 65535], "sir that takes pittie on decaied": [0, 65535], "that takes pittie on decaied men": [0, 65535], "takes pittie on decaied men and": [0, 65535], "pittie on decaied men and giues": [0, 65535], "on decaied men and giues them": [0, 65535], "decaied men and giues them suites": [0, 65535], "men and giues them suites of": [0, 65535], "and giues them suites of durance": [0, 65535], "giues them suites of durance he": [0, 65535], "them suites of durance he that": [0, 65535], "suites of durance he that sets": [0, 65535], "of durance he that sets vp": [0, 65535], "durance he that sets vp his": [0, 65535], "he that sets vp his rest": [0, 65535], "that sets vp his rest to": [0, 65535], "sets vp his rest to doe": [0, 65535], "vp his rest to doe more": [0, 65535], "his rest to doe more exploits": [0, 65535], "rest to doe more exploits with": [0, 65535], "to doe more exploits with his": [0, 65535], "doe more exploits with his mace": [0, 65535], "more exploits with his mace then": [0, 65535], "exploits with his mace then a": [0, 65535], "with his mace then a moris": [0, 65535], "his mace then a moris pike": [0, 65535], "mace then a moris pike ant": [0, 65535], "then a moris pike ant what": [0, 65535], "a moris pike ant what thou": [0, 65535], "moris pike ant what thou mean'st": [0, 65535], "pike ant what thou mean'st an": [0, 65535], "ant what thou mean'st an officer": [0, 65535], "what thou mean'st an officer s": [0, 65535], "thou mean'st an officer s dro": [0, 65535], "mean'st an officer s dro i": [0, 65535], "an officer s dro i sir": [0, 65535], "officer s dro i sir the": [0, 65535], "s dro i sir the serieant": [0, 65535], "dro i sir the serieant of": [0, 65535], "i sir the serieant of the": [0, 65535], "sir the serieant of the band": [0, 65535], "the serieant of the band he": [0, 65535], "serieant of the band he that": [0, 65535], "of the band he that brings": [0, 65535], "the band he that brings any": [0, 65535], "band he that brings any man": [0, 65535], "he that brings any man to": [0, 65535], "that brings any man to answer": [0, 65535], "brings any man to answer it": [0, 65535], "any man to answer it that": [0, 65535], "man to answer it that breakes": [0, 65535], "to answer it that breakes his": [0, 65535], "answer it that breakes his band": [0, 65535], "it that breakes his band one": [0, 65535], "that breakes his band one that": [0, 65535], "breakes his band one that thinkes": [0, 65535], "his band one that thinkes a": [0, 65535], "band one that thinkes a man": [0, 65535], "one that thinkes a man alwaies": [0, 65535], "that thinkes a man alwaies going": [0, 65535], "thinkes a man alwaies going to": [0, 65535], "a man alwaies going to bed": [0, 65535], "man alwaies going to bed and": [0, 65535], "alwaies going to bed and saies": [0, 65535], "going to bed and saies god": [0, 65535], "to bed and saies god giue": [0, 65535], "bed and saies god giue you": [0, 65535], "and saies god giue you good": [0, 65535], "saies god giue you good rest": [0, 65535], "god giue you good rest ant": [0, 65535], "giue you good rest ant well": [0, 65535], "you good rest ant well sir": [0, 65535], "good rest ant well sir there": [0, 65535], "rest ant well sir there rest": [0, 65535], "ant well sir there rest in": [0, 65535], "well sir there rest in your": [0, 65535], "sir there rest in your foolerie": [0, 65535], "there rest in your foolerie is": [0, 65535], "rest in your foolerie is there": [0, 65535], "in your foolerie is there any": [0, 65535], "your foolerie is there any ships": [0, 65535], "foolerie is there any ships puts": [0, 65535], "is there any ships puts forth": [0, 65535], "there any ships puts forth to": [0, 65535], "any ships puts forth to night": [0, 65535], "ships puts forth to night may": [0, 65535], "puts forth to night may we": [0, 65535], "forth to night may we be": [0, 65535], "to night may we be gone": [0, 65535], "night may we be gone s": [0, 65535], "may we be gone s dro": [0, 65535], "we be gone s dro why": [0, 65535], "be gone s dro why sir": [0, 65535], "gone s dro why sir i": [0, 65535], "s dro why sir i brought": [0, 65535], "dro why sir i brought you": [0, 65535], "why sir i brought you word": [0, 65535], "sir i brought you word an": [0, 65535], "i brought you word an houre": [0, 65535], "brought you word an houre since": [0, 65535], "you word an houre since that": [0, 65535], "word an houre since that the": [0, 65535], "an houre since that the barke": [0, 65535], "houre since that the barke expedition": [0, 65535], "since that the barke expedition put": [0, 65535], "that the barke expedition put forth": [0, 65535], "the barke expedition put forth to": [0, 65535], "barke expedition put forth to night": [0, 65535], "expedition put forth to night and": [0, 65535], "put forth to night and then": [0, 65535], "forth to night and then were": [0, 65535], "to night and then were you": [0, 65535], "night and then were you hindred": [0, 65535], "and then were you hindred by": [0, 65535], "then were you hindred by the": [0, 65535], "were you hindred by the serieant": [0, 65535], "you hindred by the serieant to": [0, 65535], "hindred by the serieant to tarry": [0, 65535], "by the serieant to tarry for": [0, 65535], "the serieant to tarry for the": [0, 65535], "serieant to tarry for the hoy": [0, 65535], "to tarry for the hoy delay": [0, 65535], "tarry for the hoy delay here": [0, 65535], "for the hoy delay here are": [0, 65535], "the hoy delay here are the": [0, 65535], "hoy delay here are the angels": [0, 65535], "delay here are the angels that": [0, 65535], "here are the angels that you": [0, 65535], "are the angels that you sent": [0, 65535], "the angels that you sent for": [0, 65535], "angels that you sent for to": [0, 65535], "that you sent for to deliuer": [0, 65535], "you sent for to deliuer you": [0, 65535], "sent for to deliuer you ant": [0, 65535], "for to deliuer you ant the": [0, 65535], "to deliuer you ant the fellow": [0, 65535], "deliuer you ant the fellow is": [0, 65535], "you ant the fellow is distract": [0, 65535], "ant the fellow is distract and": [0, 65535], "the fellow is distract and so": [0, 65535], "fellow is distract and so am": [0, 65535], "is distract and so am i": [0, 65535], "distract and so am i and": [0, 65535], "and so am i and here": [0, 65535], "so am i and here we": [0, 65535], "am i and here we wander": [0, 65535], "i and here we wander in": [0, 65535], "and here we wander in illusions": [0, 65535], "here we wander in illusions some": [0, 65535], "we wander in illusions some blessed": [0, 65535], "wander in illusions some blessed power": [0, 65535], "in illusions some blessed power deliuer": [0, 65535], "illusions some blessed power deliuer vs": [0, 65535], "some blessed power deliuer vs from": [0, 65535], "blessed power deliuer vs from hence": [0, 65535], "power deliuer vs from hence enter": [0, 65535], "deliuer vs from hence enter a": [0, 65535], "vs from hence enter a curtizan": [0, 65535], "from hence enter a curtizan cur": [0, 65535], "hence enter a curtizan cur well": [0, 65535], "enter a curtizan cur well met": [0, 65535], "a curtizan cur well met well": [0, 65535], "curtizan cur well met well met": [0, 65535], "cur well met well met master": [0, 65535], "well met well met master antipholus": [0, 65535], "met well met master antipholus i": [0, 65535], "well met master antipholus i see": [0, 65535], "met master antipholus i see sir": [0, 65535], "master antipholus i see sir you": [0, 65535], "antipholus i see sir you haue": [0, 65535], "i see sir you haue found": [0, 65535], "see sir you haue found the": [0, 65535], "sir you haue found the gold": [0, 65535], "you haue found the gold smith": [0, 65535], "haue found the gold smith now": [0, 65535], "found the gold smith now is": [0, 65535], "the gold smith now is that": [0, 65535], "gold smith now is that the": [0, 65535], "smith now is that the chaine": [0, 65535], "now is that the chaine you": [0, 65535], "is that the chaine you promis'd": [0, 65535], "that the chaine you promis'd me": [0, 65535], "the chaine you promis'd me to": [0, 65535], "chaine you promis'd me to day": [0, 65535], "you promis'd me to day ant": [0, 65535], "promis'd me to day ant sathan": [0, 65535], "me to day ant sathan auoide": [0, 65535], "to day ant sathan auoide i": [0, 65535], "day ant sathan auoide i charge": [0, 65535], "ant sathan auoide i charge thee": [0, 65535], "sathan auoide i charge thee tempt": [0, 65535], "auoide i charge thee tempt me": [0, 65535], "i charge thee tempt me not": [0, 65535], "charge thee tempt me not s": [0, 65535], "thee tempt me not s dro": [0, 65535], "tempt me not s dro master": [0, 65535], "me not s dro master is": [0, 65535], "not s dro master is this": [0, 65535], "s dro master is this mistris": [0, 65535], "dro master is this mistris sathan": [0, 65535], "master is this mistris sathan ant": [0, 65535], "is this mistris sathan ant it": [0, 65535], "this mistris sathan ant it is": [0, 65535], "mistris sathan ant it is the": [0, 65535], "sathan ant it is the diuell": [0, 65535], "ant it is the diuell s": [0, 65535], "it is the diuell s dro": [0, 65535], "is the diuell s dro nay": [0, 65535], "the diuell s dro nay she": [0, 65535], "diuell s dro nay she is": [0, 65535], "s dro nay she is worse": [0, 65535], "dro nay she is worse she": [0, 65535], "nay she is worse she is": [0, 65535], "she is worse she is the": [0, 65535], "is worse she is the diuels": [0, 65535], "worse she is the diuels dam": [0, 65535], "she is the diuels dam and": [0, 65535], "is the diuels dam and here": [0, 65535], "the diuels dam and here she": [0, 65535], "diuels dam and here she comes": [0, 65535], "dam and here she comes in": [0, 65535], "and here she comes in the": [0, 65535], "here she comes in the habit": [0, 65535], "she comes in the habit of": [0, 65535], "comes in the habit of a": [0, 65535], "in the habit of a light": [0, 65535], "the habit of a light wench": [0, 65535], "habit of a light wench and": [0, 65535], "of a light wench and thereof": [0, 65535], "a light wench and thereof comes": [0, 65535], "light wench and thereof comes that": [0, 65535], "wench and thereof comes that the": [0, 65535], "and thereof comes that the wenches": [0, 65535], "thereof comes that the wenches say": [0, 65535], "comes that the wenches say god": [0, 65535], "that the wenches say god dam": [0, 65535], "the wenches say god dam me": [0, 65535], "wenches say god dam me that's": [0, 65535], "say god dam me that's as": [0, 65535], "god dam me that's as much": [0, 65535], "dam me that's as much to": [0, 65535], "me that's as much to say": [0, 65535], "that's as much to say god": [0, 65535], "as much to say god make": [0, 65535], "much to say god make me": [0, 65535], "to say god make me a": [0, 65535], "say god make me a light": [0, 65535], "god make me a light wench": [0, 65535], "make me a light wench it": [0, 65535], "me a light wench it is": [0, 65535], "a light wench it is written": [0, 65535], "light wench it is written they": [0, 65535], "wench it is written they appeare": [0, 65535], "it is written they appeare to": [0, 65535], "is written they appeare to men": [0, 65535], "written they appeare to men like": [0, 65535], "they appeare to men like angels": [0, 65535], "appeare to men like angels of": [0, 65535], "to men like angels of light": [0, 65535], "men like angels of light light": [0, 65535], "like angels of light light is": [0, 65535], "angels of light light is an": [0, 65535], "of light light is an effect": [0, 65535], "light light is an effect of": [0, 65535], "light is an effect of fire": [0, 65535], "is an effect of fire and": [0, 65535], "an effect of fire and fire": [0, 65535], "effect of fire and fire will": [0, 65535], "of fire and fire will burne": [0, 65535], "fire and fire will burne ergo": [0, 65535], "and fire will burne ergo light": [0, 65535], "fire will burne ergo light wenches": [0, 65535], "will burne ergo light wenches will": [0, 65535], "burne ergo light wenches will burne": [0, 65535], "ergo light wenches will burne come": [0, 65535], "light wenches will burne come not": [0, 65535], "wenches will burne come not neere": [0, 65535], "will burne come not neere her": [0, 65535], "burne come not neere her cur": [0, 65535], "come not neere her cur your": [0, 65535], "not neere her cur your man": [0, 65535], "neere her cur your man and": [0, 65535], "her cur your man and you": [0, 65535], "cur your man and you are": [0, 65535], "your man and you are maruailous": [0, 65535], "man and you are maruailous merrie": [0, 65535], "and you are maruailous merrie sir": [0, 65535], "you are maruailous merrie sir will": [0, 65535], "are maruailous merrie sir will you": [0, 65535], "maruailous merrie sir will you goe": [0, 65535], "merrie sir will you goe with": [0, 65535], "sir will you goe with me": [0, 65535], "will you goe with me wee'll": [0, 65535], "you goe with me wee'll mend": [0, 65535], "goe with me wee'll mend our": [0, 65535], "with me wee'll mend our dinner": [0, 65535], "me wee'll mend our dinner here": [0, 65535], "wee'll mend our dinner here s": [0, 65535], "mend our dinner here s dro": [0, 65535], "our dinner here s dro master": [0, 65535], "dinner here s dro master if": [0, 65535], "here s dro master if do": [0, 65535], "s dro master if do expect": [0, 65535], "dro master if do expect spoon": [0, 65535], "master if do expect spoon meate": [0, 65535], "if do expect spoon meate or": [0, 65535], "do expect spoon meate or bespeake": [0, 65535], "expect spoon meate or bespeake a": [0, 65535], "spoon meate or bespeake a long": [0, 65535], "meate or bespeake a long spoone": [0, 65535], "or bespeake a long spoone ant": [0, 65535], "bespeake a long spoone ant why": [0, 65535], "a long spoone ant why dromio": [0, 65535], "long spoone ant why dromio s": [0, 65535], "spoone ant why dromio s dro": [0, 65535], "ant why dromio s dro marrie": [0, 65535], "why dromio s dro marrie he": [0, 65535], "dromio s dro marrie he must": [0, 65535], "s dro marrie he must haue": [0, 65535], "dro marrie he must haue a": [0, 65535], "marrie he must haue a long": [0, 65535], "he must haue a long spoone": [0, 65535], "must haue a long spoone that": [0, 65535], "haue a long spoone that must": [0, 65535], "a long spoone that must eate": [0, 65535], "long spoone that must eate with": [0, 65535], "spoone that must eate with the": [0, 65535], "that must eate with the diuell": [0, 65535], "must eate with the diuell ant": [0, 65535], "eate with the diuell ant auoid": [0, 65535], "with the diuell ant auoid then": [0, 65535], "the diuell ant auoid then fiend": [0, 65535], "diuell ant auoid then fiend what": [0, 65535], "ant auoid then fiend what tel'st": [0, 65535], "auoid then fiend what tel'st thou": [0, 65535], "then fiend what tel'st thou me": [0, 65535], "fiend what tel'st thou me of": [0, 65535], "what tel'st thou me of supping": [0, 65535], "tel'st thou me of supping thou": [0, 65535], "thou me of supping thou art": [0, 65535], "me of supping thou art as": [0, 65535], "of supping thou art as you": [0, 65535], "supping thou art as you are": [0, 65535], "thou art as you are all": [0, 65535], "art as you are all a": [0, 65535], "as you are all a sorceresse": [0, 65535], "you are all a sorceresse i": [0, 65535], "are all a sorceresse i coniure": [0, 65535], "all a sorceresse i coniure thee": [0, 65535], "a sorceresse i coniure thee to": [0, 65535], "sorceresse i coniure thee to leaue": [0, 65535], "i coniure thee to leaue me": [0, 65535], "coniure thee to leaue me and": [0, 65535], "thee to leaue me and be": [0, 65535], "to leaue me and be gon": [0, 65535], "leaue me and be gon cur": [0, 65535], "me and be gon cur giue": [0, 65535], "and be gon cur giue me": [0, 65535], "be gon cur giue me the": [0, 65535], "gon cur giue me the ring": [0, 65535], "cur giue me the ring of": [0, 65535], "giue me the ring of mine": [0, 65535], "me the ring of mine you": [0, 65535], "the ring of mine you had": [0, 65535], "ring of mine you had at": [0, 65535], "of mine you had at dinner": [0, 65535], "mine you had at dinner or": [0, 65535], "you had at dinner or for": [0, 65535], "had at dinner or for my": [0, 65535], "at dinner or for my diamond": [0, 65535], "dinner or for my diamond the": [0, 65535], "or for my diamond the chaine": [0, 65535], "for my diamond the chaine you": [0, 65535], "my diamond the chaine you promis'd": [0, 65535], "diamond the chaine you promis'd and": [0, 65535], "the chaine you promis'd and ile": [0, 65535], "chaine you promis'd and ile be": [0, 65535], "you promis'd and ile be gone": [0, 65535], "promis'd and ile be gone sir": [0, 65535], "and ile be gone sir and": [0, 65535], "ile be gone sir and not": [0, 65535], "be gone sir and not trouble": [0, 65535], "gone sir and not trouble you": [0, 65535], "sir and not trouble you s": [0, 65535], "and not trouble you s dro": [0, 65535], "not trouble you s dro some": [0, 65535], "trouble you s dro some diuels": [0, 65535], "you s dro some diuels aske": [0, 65535], "s dro some diuels aske but": [0, 65535], "dro some diuels aske but the": [0, 65535], "some diuels aske but the parings": [0, 65535], "diuels aske but the parings of": [0, 65535], "aske but the parings of ones": [0, 65535], "but the parings of ones naile": [0, 65535], "the parings of ones naile a": [0, 65535], "parings of ones naile a rush": [0, 65535], "of ones naile a rush a": [0, 65535], "ones naile a rush a haire": [0, 65535], "naile a rush a haire a": [0, 65535], "a rush a haire a drop": [0, 65535], "rush a haire a drop of": [0, 65535], "a haire a drop of blood": [0, 65535], "haire a drop of blood a": [0, 65535], "a drop of blood a pin": [0, 65535], "drop of blood a pin a": [0, 65535], "of blood a pin a nut": [0, 65535], "blood a pin a nut a": [0, 65535], "a pin a nut a cherrie": [0, 65535], "pin a nut a cherrie stone": [0, 65535], "a nut a cherrie stone but": [0, 65535], "nut a cherrie stone but she": [0, 65535], "a cherrie stone but she more": [0, 65535], "cherrie stone but she more couetous": [0, 65535], "stone but she more couetous wold": [0, 65535], "but she more couetous wold haue": [0, 65535], "she more couetous wold haue a": [0, 65535], "more couetous wold haue a chaine": [0, 65535], "couetous wold haue a chaine master": [0, 65535], "wold haue a chaine master be": [0, 65535], "haue a chaine master be wise": [0, 65535], "a chaine master be wise and": [0, 65535], "chaine master be wise and if": [0, 65535], "master be wise and if you": [0, 65535], "be wise and if you giue": [0, 65535], "wise and if you giue it": [0, 65535], "and if you giue it her": [0, 65535], "if you giue it her the": [0, 65535], "you giue it her the diuell": [0, 65535], "giue it her the diuell will": [0, 65535], "it her the diuell will shake": [0, 65535], "her the diuell will shake her": [0, 65535], "the diuell will shake her chaine": [0, 65535], "diuell will shake her chaine and": [0, 65535], "will shake her chaine and fright": [0, 65535], "shake her chaine and fright vs": [0, 65535], "her chaine and fright vs with": [0, 65535], "chaine and fright vs with it": [0, 65535], "and fright vs with it cur": [0, 65535], "fright vs with it cur i": [0, 65535], "vs with it cur i pray": [0, 65535], "with it cur i pray you": [0, 65535], "it cur i pray you sir": [0, 65535], "cur i pray you sir my": [0, 65535], "i pray you sir my ring": [0, 65535], "pray you sir my ring or": [0, 65535], "you sir my ring or else": [0, 65535], "sir my ring or else the": [0, 65535], "my ring or else the chaine": [0, 65535], "ring or else the chaine i": [0, 65535], "or else the chaine i hope": [0, 65535], "else the chaine i hope you": [0, 65535], "the chaine i hope you do": [0, 65535], "chaine i hope you do not": [0, 65535], "i hope you do not meane": [0, 65535], "hope you do not meane to": [0, 65535], "you do not meane to cheate": [0, 65535], "do not meane to cheate me": [0, 65535], "not meane to cheate me so": [0, 65535], "meane to cheate me so ant": [0, 65535], "to cheate me so ant auant": [0, 65535], "cheate me so ant auant thou": [0, 65535], "me so ant auant thou witch": [0, 65535], "so ant auant thou witch come": [0, 65535], "ant auant thou witch come dromio": [0, 65535], "auant thou witch come dromio let": [0, 65535], "thou witch come dromio let vs": [0, 65535], "witch come dromio let vs go": [0, 65535], "come dromio let vs go s": [0, 65535], "dromio let vs go s dro": [0, 65535], "let vs go s dro flie": [0, 65535], "vs go s dro flie pride": [0, 65535], "go s dro flie pride saies": [0, 65535], "s dro flie pride saies the": [0, 65535], "dro flie pride saies the pea": [0, 65535], "flie pride saies the pea cocke": [0, 65535], "pride saies the pea cocke mistris": [0, 65535], "saies the pea cocke mistris that": [0, 65535], "the pea cocke mistris that you": [0, 65535], "pea cocke mistris that you know": [0, 65535], "cocke mistris that you know exit": [0, 65535], "mistris that you know exit cur": [0, 65535], "that you know exit cur now": [0, 65535], "you know exit cur now out": [0, 65535], "know exit cur now out of": [0, 65535], "exit cur now out of doubt": [0, 65535], "cur now out of doubt antipholus": [0, 65535], "now out of doubt antipholus is": [0, 65535], "out of doubt antipholus is mad": [0, 65535], "of doubt antipholus is mad else": [0, 65535], "doubt antipholus is mad else would": [0, 65535], "antipholus is mad else would he": [0, 65535], "is mad else would he neuer": [0, 65535], "mad else would he neuer so": [0, 65535], "else would he neuer so demeane": [0, 65535], "would he neuer so demeane himselfe": [0, 65535], "he neuer so demeane himselfe a": [0, 65535], "neuer so demeane himselfe a ring": [0, 65535], "so demeane himselfe a ring he": [0, 65535], "demeane himselfe a ring he hath": [0, 65535], "himselfe a ring he hath of": [0, 65535], "a ring he hath of mine": [0, 65535], "ring he hath of mine worth": [0, 65535], "he hath of mine worth fortie": [0, 65535], "hath of mine worth fortie duckets": [0, 65535], "of mine worth fortie duckets and": [0, 65535], "mine worth fortie duckets and for": [0, 65535], "worth fortie duckets and for the": [0, 65535], "fortie duckets and for the same": [0, 65535], "duckets and for the same he": [0, 65535], "and for the same he promis'd": [0, 65535], "for the same he promis'd me": [0, 65535], "the same he promis'd me a": [0, 65535], "same he promis'd me a chaine": [0, 65535], "he promis'd me a chaine both": [0, 65535], "promis'd me a chaine both one": [0, 65535], "me a chaine both one and": [0, 65535], "a chaine both one and other": [0, 65535], "chaine both one and other he": [0, 65535], "both one and other he denies": [0, 65535], "one and other he denies me": [0, 65535], "and other he denies me now": [0, 65535], "other he denies me now the": [0, 65535], "he denies me now the reason": [0, 65535], "denies me now the reason that": [0, 65535], "me now the reason that i": [0, 65535], "now the reason that i gather": [0, 65535], "the reason that i gather he": [0, 65535], "reason that i gather he is": [0, 65535], "that i gather he is mad": [0, 65535], "i gather he is mad besides": [0, 65535], "gather he is mad besides this": [0, 65535], "he is mad besides this present": [0, 65535], "is mad besides this present instance": [0, 65535], "mad besides this present instance of": [0, 65535], "besides this present instance of his": [0, 65535], "this present instance of his rage": [0, 65535], "present instance of his rage is": [0, 65535], "instance of his rage is a": [0, 65535], "of his rage is a mad": [0, 65535], "his rage is a mad tale": [0, 65535], "rage is a mad tale he": [0, 65535], "is a mad tale he told": [0, 65535], "a mad tale he told to": [0, 65535], "mad tale he told to day": [0, 65535], "tale he told to day at": [0, 65535], "he told to day at dinner": [0, 65535], "told to day at dinner of": [0, 65535], "to day at dinner of his": [0, 65535], "day at dinner of his owne": [0, 65535], "at dinner of his owne doores": [0, 65535], "dinner of his owne doores being": [0, 65535], "of his owne doores being shut": [0, 65535], "his owne doores being shut against": [0, 65535], "owne doores being shut against his": [0, 65535], "doores being shut against his entrance": [0, 65535], "being shut against his entrance belike": [0, 65535], "shut against his entrance belike his": [0, 65535], "against his entrance belike his wife": [0, 65535], "his entrance belike his wife acquainted": [0, 65535], "entrance belike his wife acquainted with": [0, 65535], "belike his wife acquainted with his": [0, 65535], "his wife acquainted with his fits": [0, 65535], "wife acquainted with his fits on": [0, 65535], "acquainted with his fits on purpose": [0, 65535], "with his fits on purpose shut": [0, 65535], "his fits on purpose shut the": [0, 65535], "fits on purpose shut the doores": [0, 65535], "on purpose shut the doores against": [0, 65535], "purpose shut the doores against his": [0, 65535], "shut the doores against his way": [0, 65535], "the doores against his way my": [0, 65535], "doores against his way my way": [0, 65535], "against his way my way is": [0, 65535], "his way my way is now": [0, 65535], "way my way is now to": [0, 65535], "my way is now to hie": [0, 65535], "way is now to hie home": [0, 65535], "is now to hie home to": [0, 65535], "now to hie home to his": [0, 65535], "to hie home to his house": [0, 65535], "hie home to his house and": [0, 65535], "home to his house and tell": [0, 65535], "to his house and tell his": [0, 65535], "his house and tell his wife": [0, 65535], "house and tell his wife that": [0, 65535], "and tell his wife that being": [0, 65535], "tell his wife that being lunaticke": [0, 65535], "his wife that being lunaticke he": [0, 65535], "wife that being lunaticke he rush'd": [0, 65535], "that being lunaticke he rush'd into": [0, 65535], "being lunaticke he rush'd into my": [0, 65535], "lunaticke he rush'd into my house": [0, 65535], "he rush'd into my house and": [0, 65535], "rush'd into my house and tooke": [0, 65535], "into my house and tooke perforce": [0, 65535], "my house and tooke perforce my": [0, 65535], "house and tooke perforce my ring": [0, 65535], "and tooke perforce my ring away": [0, 65535], "tooke perforce my ring away this": [0, 65535], "perforce my ring away this course": [0, 65535], "my ring away this course i": [0, 65535], "ring away this course i fittest": [0, 65535], "away this course i fittest choose": [0, 65535], "this course i fittest choose for": [0, 65535], "course i fittest choose for fortie": [0, 65535], "i fittest choose for fortie duckets": [0, 65535], "fittest choose for fortie duckets is": [0, 65535], "choose for fortie duckets is too": [0, 65535], "for fortie duckets is too much": [0, 65535], "fortie duckets is too much to": [0, 65535], "duckets is too much to loose": [0, 65535], "is too much to loose enter": [0, 65535], "too much to loose enter antipholus": [0, 65535], "much to loose enter antipholus ephes": [0, 65535], "to loose enter antipholus ephes with": [0, 65535], "loose enter antipholus ephes with a": [0, 65535], "enter antipholus ephes with a iailor": [0, 65535], "antipholus ephes with a iailor an": [0, 65535], "ephes with a iailor an feare": [0, 65535], "with a iailor an feare me": [0, 65535], "a iailor an feare me not": [0, 65535], "iailor an feare me not man": [0, 65535], "an feare me not man i": [0, 65535], "feare me not man i will": [0, 65535], "me not man i will not": [0, 65535], "not man i will not breake": [0, 65535], "man i will not breake away": [0, 65535], "i will not breake away ile": [0, 65535], "will not breake away ile giue": [0, 65535], "not breake away ile giue thee": [0, 65535], "breake away ile giue thee ere": [0, 65535], "away ile giue thee ere i": [0, 65535], "ile giue thee ere i leaue": [0, 65535], "giue thee ere i leaue thee": [0, 65535], "thee ere i leaue thee so": [0, 65535], "ere i leaue thee so much": [0, 65535], "i leaue thee so much money": [0, 65535], "leaue thee so much money to": [0, 65535], "thee so much money to warrant": [0, 65535], "so much money to warrant thee": [0, 65535], "much money to warrant thee as": [0, 65535], "money to warrant thee as i": [0, 65535], "to warrant thee as i am": [0, 65535], "warrant thee as i am rested": [0, 65535], "thee as i am rested for": [0, 65535], "as i am rested for my": [0, 65535], "i am rested for my wife": [0, 65535], "am rested for my wife is": [0, 65535], "rested for my wife is in": [0, 65535], "for my wife is in a": [0, 65535], "my wife is in a wayward": [0, 65535], "wife is in a wayward moode": [0, 65535], "is in a wayward moode to": [0, 65535], "in a wayward moode to day": [0, 65535], "a wayward moode to day and": [0, 65535], "wayward moode to day and will": [0, 65535], "moode to day and will not": [0, 65535], "to day and will not lightly": [0, 65535], "day and will not lightly trust": [0, 65535], "and will not lightly trust the": [0, 65535], "will not lightly trust the messenger": [0, 65535], "not lightly trust the messenger that": [0, 65535], "lightly trust the messenger that i": [0, 65535], "trust the messenger that i should": [0, 65535], "the messenger that i should be": [0, 65535], "messenger that i should be attach'd": [0, 65535], "that i should be attach'd in": [0, 65535], "i should be attach'd in ephesus": [0, 65535], "should be attach'd in ephesus i": [0, 65535], "be attach'd in ephesus i tell": [0, 65535], "attach'd in ephesus i tell you": [0, 65535], "in ephesus i tell you 'twill": [0, 65535], "ephesus i tell you 'twill sound": [0, 65535], "i tell you 'twill sound harshly": [0, 65535], "tell you 'twill sound harshly in": [0, 65535], "you 'twill sound harshly in her": [0, 65535], "'twill sound harshly in her eares": [0, 65535], "sound harshly in her eares enter": [0, 65535], "harshly in her eares enter dromio": [0, 65535], "in her eares enter dromio eph": [0, 65535], "her eares enter dromio eph with": [0, 65535], "eares enter dromio eph with a": [0, 65535], "enter dromio eph with a ropes": [0, 65535], "dromio eph with a ropes end": [0, 65535], "eph with a ropes end heere": [0, 65535], "with a ropes end heere comes": [0, 65535], "a ropes end heere comes my": [0, 65535], "ropes end heere comes my man": [0, 65535], "end heere comes my man i": [0, 65535], "heere comes my man i thinke": [0, 65535], "comes my man i thinke he": [0, 65535], "my man i thinke he brings": [0, 65535], "man i thinke he brings the": [0, 65535], "i thinke he brings the monie": [0, 65535], "thinke he brings the monie how": [0, 65535], "he brings the monie how now": [0, 65535], "brings the monie how now sir": [0, 65535], "the monie how now sir haue": [0, 65535], "monie how now sir haue you": [0, 65535], "how now sir haue you that": [0, 65535], "now sir haue you that i": [0, 65535], "sir haue you that i sent": [0, 65535], "haue you that i sent you": [0, 65535], "you that i sent you for": [0, 65535], "that i sent you for e": [0, 65535], "i sent you for e dro": [0, 65535], "sent you for e dro here's": [0, 65535], "you for e dro here's that": [0, 65535], "for e dro here's that i": [0, 65535], "e dro here's that i warrant": [0, 65535], "dro here's that i warrant you": [0, 65535], "here's that i warrant you will": [0, 65535], "that i warrant you will pay": [0, 65535], "i warrant you will pay them": [0, 65535], "warrant you will pay them all": [0, 65535], "you will pay them all anti": [0, 65535], "will pay them all anti but": [0, 65535], "pay them all anti but where's": [0, 65535], "them all anti but where's the": [0, 65535], "all anti but where's the money": [0, 65535], "anti but where's the money e": [0, 65535], "but where's the money e dro": [0, 65535], "where's the money e dro why": [0, 65535], "the money e dro why sir": [0, 65535], "money e dro why sir i": [0, 65535], "e dro why sir i gaue": [0, 65535], "dro why sir i gaue the": [0, 65535], "why sir i gaue the monie": [0, 65535], "sir i gaue the monie for": [0, 65535], "i gaue the monie for the": [0, 65535], "gaue the monie for the rope": [0, 65535], "the monie for the rope ant": [0, 65535], "monie for the rope ant fiue": [0, 65535], "for the rope ant fiue hundred": [0, 65535], "the rope ant fiue hundred duckets": [0, 65535], "rope ant fiue hundred duckets villaine": [0, 65535], "ant fiue hundred duckets villaine for": [0, 65535], "fiue hundred duckets villaine for a": [0, 65535], "hundred duckets villaine for a rope": [0, 65535], "duckets villaine for a rope e": [0, 65535], "villaine for a rope e dro": [0, 65535], "for a rope e dro ile": [0, 65535], "a rope e dro ile serue": [0, 65535], "rope e dro ile serue you": [0, 65535], "e dro ile serue you sir": [0, 65535], "dro ile serue you sir fiue": [0, 65535], "ile serue you sir fiue hundred": [0, 65535], "serue you sir fiue hundred at": [0, 65535], "you sir fiue hundred at the": [0, 65535], "sir fiue hundred at the rate": [0, 65535], "fiue hundred at the rate ant": [0, 65535], "hundred at the rate ant to": [0, 65535], "at the rate ant to what": [0, 65535], "the rate ant to what end": [0, 65535], "rate ant to what end did": [0, 65535], "ant to what end did i": [0, 65535], "to what end did i bid": [0, 65535], "what end did i bid thee": [0, 65535], "end did i bid thee hie": [0, 65535], "did i bid thee hie thee": [0, 65535], "i bid thee hie thee home": [0, 65535], "bid thee hie thee home e": [0, 65535], "thee hie thee home e dro": [0, 65535], "hie thee home e dro to": [0, 65535], "thee home e dro to a": [0, 65535], "home e dro to a ropes": [0, 65535], "e dro to a ropes end": [0, 65535], "dro to a ropes end sir": [0, 65535], "to a ropes end sir and": [0, 65535], "a ropes end sir and to": [0, 65535], "ropes end sir and to that": [0, 65535], "end sir and to that end": [0, 65535], "sir and to that end am": [0, 65535], "and to that end am i": [0, 65535], "to that end am i re": [0, 65535], "that end am i re turn'd": [0, 65535], "end am i re turn'd ant": [0, 65535], "am i re turn'd ant and": [0, 65535], "i re turn'd ant and to": [0, 65535], "re turn'd ant and to that": [0, 65535], "turn'd ant and to that end": [0, 65535], "ant and to that end sir": [0, 65535], "and to that end sir i": [0, 65535], "to that end sir i will": [0, 65535], "that end sir i will welcome": [0, 65535], "end sir i will welcome you": [0, 65535], "sir i will welcome you offi": [0, 65535], "i will welcome you offi good": [0, 65535], "will welcome you offi good sir": [0, 65535], "welcome you offi good sir be": [0, 65535], "you offi good sir be patient": [0, 65535], "offi good sir be patient e": [0, 65535], "good sir be patient e dro": [0, 65535], "sir be patient e dro nay": [0, 65535], "be patient e dro nay 'tis": [0, 65535], "patient e dro nay 'tis for": [0, 65535], "e dro nay 'tis for me": [0, 65535], "dro nay 'tis for me to": [0, 65535], "nay 'tis for me to be": [0, 65535], "'tis for me to be patient": [0, 65535], "for me to be patient i": [0, 65535], "me to be patient i am": [0, 65535], "to be patient i am in": [0, 65535], "be patient i am in aduersitie": [0, 65535], "patient i am in aduersitie offi": [0, 65535], "i am in aduersitie offi good": [0, 65535], "am in aduersitie offi good now": [0, 65535], "in aduersitie offi good now hold": [0, 65535], "aduersitie offi good now hold thy": [0, 65535], "offi good now hold thy tongue": [0, 65535], "good now hold thy tongue e": [0, 65535], "now hold thy tongue e dro": [0, 65535], "hold thy tongue e dro nay": [0, 65535], "thy tongue e dro nay rather": [0, 65535], "tongue e dro nay rather perswade": [0, 65535], "e dro nay rather perswade him": [0, 65535], "dro nay rather perswade him to": [0, 65535], "nay rather perswade him to hold": [0, 65535], "rather perswade him to hold his": [0, 65535], "perswade him to hold his hands": [0, 65535], "him to hold his hands anti": [0, 65535], "to hold his hands anti thou": [0, 65535], "hold his hands anti thou whoreson": [0, 65535], "his hands anti thou whoreson senselesse": [0, 65535], "hands anti thou whoreson senselesse villaine": [0, 65535], "anti thou whoreson senselesse villaine e": [0, 65535], "thou whoreson senselesse villaine e dro": [0, 65535], "whoreson senselesse villaine e dro i": [0, 65535], "senselesse villaine e dro i would": [0, 65535], "villaine e dro i would i": [0, 65535], "e dro i would i were": [0, 65535], "dro i would i were senselesse": [0, 65535], "i would i were senselesse sir": [0, 65535], "would i were senselesse sir that": [0, 65535], "i were senselesse sir that i": [0, 65535], "were senselesse sir that i might": [0, 65535], "senselesse sir that i might not": [0, 65535], "sir that i might not feele": [0, 65535], "that i might not feele your": [0, 65535], "i might not feele your blowes": [0, 65535], "might not feele your blowes anti": [0, 65535], "not feele your blowes anti thou": [0, 65535], "feele your blowes anti thou art": [0, 65535], "your blowes anti thou art sensible": [0, 65535], "blowes anti thou art sensible in": [0, 65535], "anti thou art sensible in nothing": [0, 65535], "thou art sensible in nothing but": [0, 65535], "art sensible in nothing but blowes": [0, 65535], "sensible in nothing but blowes and": [0, 65535], "in nothing but blowes and so": [0, 65535], "nothing but blowes and so is": [0, 65535], "but blowes and so is an": [0, 65535], "blowes and so is an asse": [0, 65535], "and so is an asse e": [0, 65535], "so is an asse e dro": [0, 65535], "is an asse e dro i": [0, 65535], "an asse e dro i am": [0, 65535], "asse e dro i am an": [0, 65535], "e dro i am an asse": [0, 65535], "dro i am an asse indeede": [0, 65535], "i am an asse indeede you": [0, 65535], "am an asse indeede you may": [0, 65535], "an asse indeede you may prooue": [0, 65535], "asse indeede you may prooue it": [0, 65535], "indeede you may prooue it by": [0, 65535], "you may prooue it by my": [0, 65535], "may prooue it by my long": [0, 65535], "prooue it by my long eares": [0, 65535], "it by my long eares i": [0, 65535], "by my long eares i haue": [0, 65535], "my long eares i haue serued": [0, 65535], "long eares i haue serued him": [0, 65535], "eares i haue serued him from": [0, 65535], "i haue serued him from the": [0, 65535], "haue serued him from the houre": [0, 65535], "serued him from the houre of": [0, 65535], "him from the houre of my": [0, 65535], "from the houre of my natiuitie": [0, 65535], "the houre of my natiuitie to": [0, 65535], "houre of my natiuitie to this": [0, 65535], "of my natiuitie to this instant": [0, 65535], "my natiuitie to this instant and": [0, 65535], "natiuitie to this instant and haue": [0, 65535], "to this instant and haue nothing": [0, 65535], "this instant and haue nothing at": [0, 65535], "instant and haue nothing at his": [0, 65535], "and haue nothing at his hands": [0, 65535], "haue nothing at his hands for": [0, 65535], "nothing at his hands for my": [0, 65535], "at his hands for my seruice": [0, 65535], "his hands for my seruice but": [0, 65535], "hands for my seruice but blowes": [0, 65535], "for my seruice but blowes when": [0, 65535], "my seruice but blowes when i": [0, 65535], "seruice but blowes when i am": [0, 65535], "but blowes when i am cold": [0, 65535], "blowes when i am cold he": [0, 65535], "when i am cold he heates": [0, 65535], "i am cold he heates me": [0, 65535], "am cold he heates me with": [0, 65535], "cold he heates me with beating": [0, 65535], "he heates me with beating when": [0, 65535], "heates me with beating when i": [0, 65535], "me with beating when i am": [0, 65535], "with beating when i am warme": [0, 65535], "beating when i am warme he": [0, 65535], "when i am warme he cooles": [0, 65535], "i am warme he cooles me": [0, 65535], "am warme he cooles me with": [0, 65535], "warme he cooles me with beating": [0, 65535], "he cooles me with beating i": [0, 65535], "cooles me with beating i am": [0, 65535], "me with beating i am wak'd": [0, 65535], "with beating i am wak'd with": [0, 65535], "beating i am wak'd with it": [0, 65535], "i am wak'd with it when": [0, 65535], "am wak'd with it when i": [0, 65535], "wak'd with it when i sleepe": [0, 65535], "with it when i sleepe rais'd": [0, 65535], "it when i sleepe rais'd with": [0, 65535], "when i sleepe rais'd with it": [0, 65535], "i sleepe rais'd with it when": [0, 65535], "sleepe rais'd with it when i": [0, 65535], "rais'd with it when i sit": [0, 65535], "with it when i sit driuen": [0, 65535], "it when i sit driuen out": [0, 65535], "when i sit driuen out of": [0, 65535], "i sit driuen out of doores": [0, 65535], "sit driuen out of doores with": [0, 65535], "driuen out of doores with it": [0, 65535], "out of doores with it when": [0, 65535], "of doores with it when i": [0, 65535], "doores with it when i goe": [0, 65535], "with it when i goe from": [0, 65535], "it when i goe from home": [0, 65535], "when i goe from home welcom'd": [0, 65535], "i goe from home welcom'd home": [0, 65535], "goe from home welcom'd home with": [0, 65535], "from home welcom'd home with it": [0, 65535], "home welcom'd home with it when": [0, 65535], "welcom'd home with it when i": [0, 65535], "home with it when i returne": [0, 65535], "with it when i returne nay": [0, 65535], "it when i returne nay i": [0, 65535], "when i returne nay i beare": [0, 65535], "i returne nay i beare it": [0, 65535], "returne nay i beare it on": [0, 65535], "nay i beare it on my": [0, 65535], "i beare it on my shoulders": [0, 65535], "beare it on my shoulders as": [0, 65535], "it on my shoulders as a": [0, 65535], "on my shoulders as a begger": [0, 65535], "my shoulders as a begger woont": [0, 65535], "shoulders as a begger woont her": [0, 65535], "as a begger woont her brat": [0, 65535], "a begger woont her brat and": [0, 65535], "begger woont her brat and i": [0, 65535], "woont her brat and i thinke": [0, 65535], "her brat and i thinke when": [0, 65535], "brat and i thinke when he": [0, 65535], "and i thinke when he hath": [0, 65535], "i thinke when he hath lam'd": [0, 65535], "thinke when he hath lam'd me": [0, 65535], "when he hath lam'd me i": [0, 65535], "he hath lam'd me i shall": [0, 65535], "hath lam'd me i shall begge": [0, 65535], "lam'd me i shall begge with": [0, 65535], "me i shall begge with it": [0, 65535], "i shall begge with it from": [0, 65535], "shall begge with it from doore": [0, 65535], "begge with it from doore to": [0, 65535], "with it from doore to doore": [0, 65535], "it from doore to doore enter": [0, 65535], "from doore to doore enter adriana": [0, 65535], "doore to doore enter adriana luciana": [0, 65535], "to doore enter adriana luciana courtizan": [0, 65535], "doore enter adriana luciana courtizan and": [0, 65535], "enter adriana luciana courtizan and a": [0, 65535], "adriana luciana courtizan and a schoolemaster": [0, 65535], "luciana courtizan and a schoolemaster call'd": [0, 65535], "courtizan and a schoolemaster call'd pinch": [0, 65535], "and a schoolemaster call'd pinch ant": [0, 65535], "a schoolemaster call'd pinch ant come": [0, 65535], "schoolemaster call'd pinch ant come goe": [0, 65535], "call'd pinch ant come goe along": [0, 65535], "pinch ant come goe along my": [0, 65535], "ant come goe along my wife": [0, 65535], "come goe along my wife is": [0, 65535], "goe along my wife is comming": [0, 65535], "along my wife is comming yonder": [0, 65535], "my wife is comming yonder e": [0, 65535], "wife is comming yonder e dro": [0, 65535], "is comming yonder e dro mistris": [0, 65535], "comming yonder e dro mistris respice": [0, 65535], "yonder e dro mistris respice finem": [0, 65535], "e dro mistris respice finem respect": [0, 65535], "dro mistris respice finem respect your": [0, 65535], "mistris respice finem respect your end": [0, 65535], "respice finem respect your end or": [0, 65535], "finem respect your end or rather": [0, 65535], "respect your end or rather the": [0, 65535], "your end or rather the prophesie": [0, 65535], "end or rather the prophesie like": [0, 65535], "or rather the prophesie like the": [0, 65535], "rather the prophesie like the parrat": [0, 65535], "the prophesie like the parrat beware": [0, 65535], "prophesie like the parrat beware the": [0, 65535], "like the parrat beware the ropes": [0, 65535], "the parrat beware the ropes end": [0, 65535], "parrat beware the ropes end anti": [0, 65535], "beware the ropes end anti wilt": [0, 65535], "the ropes end anti wilt thou": [0, 65535], "ropes end anti wilt thou still": [0, 65535], "end anti wilt thou still talke": [0, 65535], "anti wilt thou still talke beats": [0, 65535], "wilt thou still talke beats dro": [0, 65535], "thou still talke beats dro curt": [0, 65535], "still talke beats dro curt how": [0, 65535], "talke beats dro curt how say": [0, 65535], "beats dro curt how say you": [0, 65535], "dro curt how say you now": [0, 65535], "curt how say you now is": [0, 65535], "how say you now is not": [0, 65535], "say you now is not your": [0, 65535], "you now is not your husband": [0, 65535], "now is not your husband mad": [0, 65535], "is not your husband mad adri": [0, 65535], "not your husband mad adri his": [0, 65535], "your husband mad adri his inciuility": [0, 65535], "husband mad adri his inciuility confirmes": [0, 65535], "mad adri his inciuility confirmes no": [0, 65535], "adri his inciuility confirmes no lesse": [0, 65535], "his inciuility confirmes no lesse good": [0, 65535], "inciuility confirmes no lesse good doctor": [0, 65535], "confirmes no lesse good doctor pinch": [0, 65535], "no lesse good doctor pinch you": [0, 65535], "lesse good doctor pinch you are": [0, 65535], "good doctor pinch you are a": [0, 65535], "doctor pinch you are a coniurer": [0, 65535], "pinch you are a coniurer establish": [0, 65535], "you are a coniurer establish him": [0, 65535], "are a coniurer establish him in": [0, 65535], "a coniurer establish him in his": [0, 65535], "coniurer establish him in his true": [0, 65535], "establish him in his true sence": [0, 65535], "him in his true sence againe": [0, 65535], "in his true sence againe and": [0, 65535], "his true sence againe and i": [0, 65535], "true sence againe and i will": [0, 65535], "sence againe and i will please": [0, 65535], "againe and i will please you": [0, 65535], "and i will please you what": [0, 65535], "i will please you what you": [0, 65535], "will please you what you will": [0, 65535], "please you what you will demand": [0, 65535], "you what you will demand luc": [0, 65535], "what you will demand luc alas": [0, 65535], "you will demand luc alas how": [0, 65535], "will demand luc alas how fiery": [0, 65535], "demand luc alas how fiery and": [0, 65535], "luc alas how fiery and how": [0, 65535], "alas how fiery and how sharpe": [0, 65535], "how fiery and how sharpe he": [0, 65535], "fiery and how sharpe he lookes": [0, 65535], "and how sharpe he lookes cur": [0, 65535], "how sharpe he lookes cur marke": [0, 65535], "sharpe he lookes cur marke how": [0, 65535], "he lookes cur marke how he": [0, 65535], "lookes cur marke how he trembles": [0, 65535], "cur marke how he trembles in": [0, 65535], "marke how he trembles in his": [0, 65535], "how he trembles in his extasie": [0, 65535], "he trembles in his extasie pinch": [0, 65535], "trembles in his extasie pinch giue": [0, 65535], "in his extasie pinch giue me": [0, 65535], "his extasie pinch giue me your": [0, 65535], "extasie pinch giue me your hand": [0, 65535], "pinch giue me your hand and": [0, 65535], "giue me your hand and let": [0, 65535], "me your hand and let mee": [0, 65535], "your hand and let mee feele": [0, 65535], "hand and let mee feele your": [0, 65535], "and let mee feele your pulse": [0, 65535], "let mee feele your pulse ant": [0, 65535], "mee feele your pulse ant there": [0, 65535], "feele your pulse ant there is": [0, 65535], "your pulse ant there is my": [0, 65535], "pulse ant there is my hand": [0, 65535], "ant there is my hand and": [0, 65535], "there is my hand and let": [0, 65535], "is my hand and let it": [0, 65535], "my hand and let it feele": [0, 65535], "hand and let it feele your": [0, 65535], "and let it feele your eare": [0, 65535], "let it feele your eare pinch": [0, 65535], "it feele your eare pinch i": [0, 65535], "feele your eare pinch i charge": [0, 65535], "your eare pinch i charge thee": [0, 65535], "eare pinch i charge thee sathan": [0, 65535], "pinch i charge thee sathan hous'd": [0, 65535], "i charge thee sathan hous'd within": [0, 65535], "charge thee sathan hous'd within this": [0, 65535], "thee sathan hous'd within this man": [0, 65535], "sathan hous'd within this man to": [0, 65535], "hous'd within this man to yeeld": [0, 65535], "within this man to yeeld possession": [0, 65535], "this man to yeeld possession to": [0, 65535], "man to yeeld possession to my": [0, 65535], "to yeeld possession to my holie": [0, 65535], "yeeld possession to my holie praiers": [0, 65535], "possession to my holie praiers and": [0, 65535], "to my holie praiers and to": [0, 65535], "my holie praiers and to thy": [0, 65535], "holie praiers and to thy state": [0, 65535], "praiers and to thy state of": [0, 65535], "and to thy state of darknesse": [0, 65535], "to thy state of darknesse hie": [0, 65535], "thy state of darknesse hie thee": [0, 65535], "state of darknesse hie thee straight": [0, 65535], "of darknesse hie thee straight i": [0, 65535], "darknesse hie thee straight i coniure": [0, 65535], "hie thee straight i coniure thee": [0, 65535], "thee straight i coniure thee by": [0, 65535], "straight i coniure thee by all": [0, 65535], "i coniure thee by all the": [0, 65535], "coniure thee by all the saints": [0, 65535], "thee by all the saints in": [0, 65535], "by all the saints in heauen": [0, 65535], "all the saints in heauen anti": [0, 65535], "the saints in heauen anti peace": [0, 65535], "saints in heauen anti peace doting": [0, 65535], "in heauen anti peace doting wizard": [0, 65535], "heauen anti peace doting wizard peace": [0, 65535], "anti peace doting wizard peace i": [0, 65535], "peace doting wizard peace i am": [0, 65535], "doting wizard peace i am not": [0, 65535], "wizard peace i am not mad": [0, 65535], "peace i am not mad adr": [0, 65535], "i am not mad adr oh": [0, 65535], "am not mad adr oh that": [0, 65535], "not mad adr oh that thou": [0, 65535], "mad adr oh that thou wer't": [0, 65535], "adr oh that thou wer't not": [0, 65535], "oh that thou wer't not poore": [0, 65535], "that thou wer't not poore distressed": [0, 65535], "thou wer't not poore distressed soule": [0, 65535], "wer't not poore distressed soule anti": [0, 65535], "not poore distressed soule anti you": [0, 65535], "poore distressed soule anti you minion": [0, 65535], "distressed soule anti you minion you": [0, 65535], "soule anti you minion you are": [0, 65535], "anti you minion you are these": [0, 65535], "you minion you are these your": [0, 65535], "minion you are these your customers": [0, 65535], "you are these your customers did": [0, 65535], "are these your customers did this": [0, 65535], "these your customers did this companion": [0, 65535], "your customers did this companion with": [0, 65535], "customers did this companion with the": [0, 65535], "did this companion with the saffron": [0, 65535], "this companion with the saffron face": [0, 65535], "companion with the saffron face reuell": [0, 65535], "with the saffron face reuell and": [0, 65535], "the saffron face reuell and feast": [0, 65535], "saffron face reuell and feast it": [0, 65535], "face reuell and feast it at": [0, 65535], "reuell and feast it at my": [0, 65535], "and feast it at my house": [0, 65535], "feast it at my house to": [0, 65535], "it at my house to day": [0, 65535], "at my house to day whil'st": [0, 65535], "my house to day whil'st vpon": [0, 65535], "house to day whil'st vpon me": [0, 65535], "to day whil'st vpon me the": [0, 65535], "day whil'st vpon me the guiltie": [0, 65535], "whil'st vpon me the guiltie doores": [0, 65535], "vpon me the guiltie doores were": [0, 65535], "me the guiltie doores were shut": [0, 65535], "the guiltie doores were shut and": [0, 65535], "guiltie doores were shut and i": [0, 65535], "doores were shut and i denied": [0, 65535], "were shut and i denied to": [0, 65535], "shut and i denied to enter": [0, 65535], "and i denied to enter in": [0, 65535], "i denied to enter in my": [0, 65535], "denied to enter in my house": [0, 65535], "to enter in my house adr": [0, 65535], "enter in my house adr o": [0, 65535], "in my house adr o husband": [0, 65535], "my house adr o husband god": [0, 65535], "house adr o husband god doth": [0, 65535], "adr o husband god doth know": [0, 65535], "o husband god doth know you": [0, 65535], "husband god doth know you din'd": [0, 65535], "god doth know you din'd at": [0, 65535], "doth know you din'd at home": [0, 65535], "know you din'd at home where": [0, 65535], "you din'd at home where would": [0, 65535], "din'd at home where would you": [0, 65535], "at home where would you had": [0, 65535], "home where would you had remain'd": [0, 65535], "where would you had remain'd vntill": [0, 65535], "would you had remain'd vntill this": [0, 65535], "you had remain'd vntill this time": [0, 65535], "had remain'd vntill this time free": [0, 65535], "remain'd vntill this time free from": [0, 65535], "vntill this time free from these": [0, 65535], "this time free from these slanders": [0, 65535], "time free from these slanders and": [0, 65535], "free from these slanders and this": [0, 65535], "from these slanders and this open": [0, 65535], "these slanders and this open shame": [0, 65535], "slanders and this open shame anti": [0, 65535], "and this open shame anti din'd": [0, 65535], "this open shame anti din'd at": [0, 65535], "open shame anti din'd at home": [0, 65535], "shame anti din'd at home thou": [0, 65535], "anti din'd at home thou villaine": [0, 65535], "din'd at home thou villaine what": [0, 65535], "at home thou villaine what sayest": [0, 65535], "home thou villaine what sayest thou": [0, 65535], "thou villaine what sayest thou dro": [0, 65535], "villaine what sayest thou dro sir": [0, 65535], "what sayest thou dro sir sooth": [0, 65535], "sayest thou dro sir sooth to": [0, 65535], "thou dro sir sooth to say": [0, 65535], "dro sir sooth to say you": [0, 65535], "sir sooth to say you did": [0, 65535], "sooth to say you did not": [0, 65535], "to say you did not dine": [0, 65535], "say you did not dine at": [0, 65535], "you did not dine at home": [0, 65535], "did not dine at home ant": [0, 65535], "not dine at home ant were": [0, 65535], "dine at home ant were not": [0, 65535], "at home ant were not my": [0, 65535], "home ant were not my doores": [0, 65535], "ant were not my doores lockt": [0, 65535], "were not my doores lockt vp": [0, 65535], "not my doores lockt vp and": [0, 65535], "my doores lockt vp and i": [0, 65535], "doores lockt vp and i shut": [0, 65535], "lockt vp and i shut out": [0, 65535], "vp and i shut out dro": [0, 65535], "and i shut out dro perdie": [0, 65535], "i shut out dro perdie your": [0, 65535], "shut out dro perdie your doores": [0, 65535], "out dro perdie your doores were": [0, 65535], "dro perdie your doores were lockt": [0, 65535], "perdie your doores were lockt and": [0, 65535], "your doores were lockt and you": [0, 65535], "doores were lockt and you shut": [0, 65535], "were lockt and you shut out": [0, 65535], "lockt and you shut out anti": [0, 65535], "and you shut out anti and": [0, 65535], "you shut out anti and did": [0, 65535], "shut out anti and did not": [0, 65535], "out anti and did not she": [0, 65535], "anti and did not she her": [0, 65535], "and did not she her selfe": [0, 65535], "did not she her selfe reuile": [0, 65535], "not she her selfe reuile me": [0, 65535], "she her selfe reuile me there": [0, 65535], "her selfe reuile me there dro": [0, 65535], "selfe reuile me there dro sans": [0, 65535], "reuile me there dro sans fable": [0, 65535], "me there dro sans fable she": [0, 65535], "there dro sans fable she her": [0, 65535], "dro sans fable she her selfe": [0, 65535], "sans fable she her selfe reuil'd": [0, 65535], "fable she her selfe reuil'd you": [0, 65535], "she her selfe reuil'd you there": [0, 65535], "her selfe reuil'd you there anti": [0, 65535], "selfe reuil'd you there anti did": [0, 65535], "reuil'd you there anti did not": [0, 65535], "you there anti did not her": [0, 65535], "there anti did not her kitchen": [0, 65535], "anti did not her kitchen maide": [0, 65535], "did not her kitchen maide raile": [0, 65535], "not her kitchen maide raile taunt": [0, 65535], "her kitchen maide raile taunt and": [0, 65535], "kitchen maide raile taunt and scorne": [0, 65535], "maide raile taunt and scorne me": [0, 65535], "raile taunt and scorne me dro": [0, 65535], "taunt and scorne me dro certis": [0, 65535], "and scorne me dro certis she": [0, 65535], "scorne me dro certis she did": [0, 65535], "me dro certis she did the": [0, 65535], "dro certis she did the kitchin": [0, 65535], "certis she did the kitchin vestall": [0, 65535], "she did the kitchin vestall scorn'd": [0, 65535], "did the kitchin vestall scorn'd you": [0, 65535], "the kitchin vestall scorn'd you ant": [0, 65535], "kitchin vestall scorn'd you ant and": [0, 65535], "vestall scorn'd you ant and did": [0, 65535], "scorn'd you ant and did not": [0, 65535], "you ant and did not i": [0, 65535], "ant and did not i in": [0, 65535], "and did not i in rage": [0, 65535], "did not i in rage depart": [0, 65535], "not i in rage depart from": [0, 65535], "i in rage depart from thence": [0, 65535], "in rage depart from thence dro": [0, 65535], "rage depart from thence dro in": [0, 65535], "depart from thence dro in veritie": [0, 65535], "from thence dro in veritie you": [0, 65535], "thence dro in veritie you did": [0, 65535], "dro in veritie you did my": [0, 65535], "in veritie you did my bones": [0, 65535], "veritie you did my bones beares": [0, 65535], "you did my bones beares witnesse": [0, 65535], "did my bones beares witnesse that": [0, 65535], "my bones beares witnesse that since": [0, 65535], "bones beares witnesse that since haue": [0, 65535], "beares witnesse that since haue felt": [0, 65535], "witnesse that since haue felt the": [0, 65535], "that since haue felt the vigor": [0, 65535], "since haue felt the vigor of": [0, 65535], "haue felt the vigor of his": [0, 65535], "felt the vigor of his rage": [0, 65535], "the vigor of his rage adr": [0, 65535], "vigor of his rage adr is't": [0, 65535], "of his rage adr is't good": [0, 65535], "his rage adr is't good to": [0, 65535], "rage adr is't good to sooth": [0, 65535], "adr is't good to sooth him": [0, 65535], "is't good to sooth him in": [0, 65535], "good to sooth him in these": [0, 65535], "to sooth him in these contraries": [0, 65535], "sooth him in these contraries pinch": [0, 65535], "him in these contraries pinch it": [0, 65535], "in these contraries pinch it is": [0, 65535], "these contraries pinch it is no": [0, 65535], "contraries pinch it is no shame": [0, 65535], "pinch it is no shame the": [0, 65535], "it is no shame the fellow": [0, 65535], "is no shame the fellow finds": [0, 65535], "no shame the fellow finds his": [0, 65535], "shame the fellow finds his vaine": [0, 65535], "the fellow finds his vaine and": [0, 65535], "fellow finds his vaine and yeelding": [0, 65535], "finds his vaine and yeelding to": [0, 65535], "his vaine and yeelding to him": [0, 65535], "vaine and yeelding to him humors": [0, 65535], "and yeelding to him humors well": [0, 65535], "yeelding to him humors well his": [0, 65535], "to him humors well his frensie": [0, 65535], "him humors well his frensie ant": [0, 65535], "humors well his frensie ant thou": [0, 65535], "well his frensie ant thou hast": [0, 65535], "his frensie ant thou hast subborn'd": [0, 65535], "frensie ant thou hast subborn'd the": [0, 65535], "ant thou hast subborn'd the goldsmith": [0, 65535], "thou hast subborn'd the goldsmith to": [0, 65535], "hast subborn'd the goldsmith to arrest": [0, 65535], "subborn'd the goldsmith to arrest mee": [0, 65535], "the goldsmith to arrest mee adr": [0, 65535], "goldsmith to arrest mee adr alas": [0, 65535], "to arrest mee adr alas i": [0, 65535], "arrest mee adr alas i sent": [0, 65535], "mee adr alas i sent you": [0, 65535], "adr alas i sent you monie": [0, 65535], "alas i sent you monie to": [0, 65535], "i sent you monie to redeeme": [0, 65535], "sent you monie to redeeme you": [0, 65535], "you monie to redeeme you by": [0, 65535], "monie to redeeme you by dromio": [0, 65535], "to redeeme you by dromio heere": [0, 65535], "redeeme you by dromio heere who": [0, 65535], "you by dromio heere who came": [0, 65535], "by dromio heere who came in": [0, 65535], "dromio heere who came in hast": [0, 65535], "heere who came in hast for": [0, 65535], "who came in hast for it": [0, 65535], "came in hast for it dro": [0, 65535], "in hast for it dro monie": [0, 65535], "hast for it dro monie by": [0, 65535], "for it dro monie by me": [0, 65535], "it dro monie by me heart": [0, 65535], "dro monie by me heart and": [0, 65535], "monie by me heart and good": [0, 65535], "by me heart and good will": [0, 65535], "me heart and good will you": [0, 65535], "heart and good will you might": [0, 65535], "and good will you might but": [0, 65535], "good will you might but surely": [0, 65535], "will you might but surely master": [0, 65535], "you might but surely master not": [0, 65535], "might but surely master not a": [0, 65535], "but surely master not a ragge": [0, 65535], "surely master not a ragge of": [0, 65535], "master not a ragge of monie": [0, 65535], "not a ragge of monie ant": [0, 65535], "a ragge of monie ant wentst": [0, 65535], "ragge of monie ant wentst not": [0, 65535], "of monie ant wentst not thou": [0, 65535], "monie ant wentst not thou to": [0, 65535], "ant wentst not thou to her": [0, 65535], "wentst not thou to her for": [0, 65535], "not thou to her for a": [0, 65535], "thou to her for a purse": [0, 65535], "to her for a purse of": [0, 65535], "her for a purse of duckets": [0, 65535], "for a purse of duckets adri": [0, 65535], "a purse of duckets adri he": [0, 65535], "purse of duckets adri he came": [0, 65535], "of duckets adri he came to": [0, 65535], "duckets adri he came to me": [0, 65535], "adri he came to me and": [0, 65535], "he came to me and i": [0, 65535], "came to me and i deliuer'd": [0, 65535], "to me and i deliuer'd it": [0, 65535], "me and i deliuer'd it luci": [0, 65535], "and i deliuer'd it luci and": [0, 65535], "i deliuer'd it luci and i": [0, 65535], "deliuer'd it luci and i am": [0, 65535], "it luci and i am witnesse": [0, 65535], "luci and i am witnesse with": [0, 65535], "and i am witnesse with her": [0, 65535], "i am witnesse with her that": [0, 65535], "am witnesse with her that she": [0, 65535], "witnesse with her that she did": [0, 65535], "with her that she did dro": [0, 65535], "her that she did dro god": [0, 65535], "that she did dro god and": [0, 65535], "she did dro god and the": [0, 65535], "did dro god and the rope": [0, 65535], "dro god and the rope maker": [0, 65535], "god and the rope maker beare": [0, 65535], "and the rope maker beare me": [0, 65535], "the rope maker beare me witnesse": [0, 65535], "rope maker beare me witnesse that": [0, 65535], "maker beare me witnesse that i": [0, 65535], "beare me witnesse that i was": [0, 65535], "me witnesse that i was sent": [0, 65535], "witnesse that i was sent for": [0, 65535], "that i was sent for nothing": [0, 65535], "i was sent for nothing but": [0, 65535], "was sent for nothing but a": [0, 65535], "sent for nothing but a rope": [0, 65535], "for nothing but a rope pinch": [0, 65535], "nothing but a rope pinch mistris": [0, 65535], "but a rope pinch mistris both": [0, 65535], "a rope pinch mistris both man": [0, 65535], "rope pinch mistris both man and": [0, 65535], "pinch mistris both man and master": [0, 65535], "mistris both man and master is": [0, 65535], "both man and master is possest": [0, 65535], "man and master is possest i": [0, 65535], "and master is possest i know": [0, 65535], "master is possest i know it": [0, 65535], "is possest i know it by": [0, 65535], "possest i know it by their": [0, 65535], "i know it by their pale": [0, 65535], "know it by their pale and": [0, 65535], "it by their pale and deadly": [0, 65535], "by their pale and deadly lookes": [0, 65535], "their pale and deadly lookes they": [0, 65535], "pale and deadly lookes they must": [0, 65535], "and deadly lookes they must be": [0, 65535], "deadly lookes they must be bound": [0, 65535], "lookes they must be bound and": [0, 65535], "they must be bound and laide": [0, 65535], "must be bound and laide in": [0, 65535], "be bound and laide in some": [0, 65535], "bound and laide in some darke": [0, 65535], "and laide in some darke roome": [0, 65535], "laide in some darke roome ant": [0, 65535], "in some darke roome ant say": [0, 65535], "some darke roome ant say wherefore": [0, 65535], "darke roome ant say wherefore didst": [0, 65535], "roome ant say wherefore didst thou": [0, 65535], "ant say wherefore didst thou locke": [0, 65535], "say wherefore didst thou locke me": [0, 65535], "wherefore didst thou locke me forth": [0, 65535], "didst thou locke me forth to": [0, 65535], "thou locke me forth to day": [0, 65535], "locke me forth to day and": [0, 65535], "me forth to day and why": [0, 65535], "forth to day and why dost": [0, 65535], "to day and why dost thou": [0, 65535], "day and why dost thou denie": [0, 65535], "and why dost thou denie the": [0, 65535], "why dost thou denie the bagge": [0, 65535], "dost thou denie the bagge of": [0, 65535], "thou denie the bagge of gold": [0, 65535], "denie the bagge of gold adr": [0, 65535], "the bagge of gold adr i": [0, 65535], "bagge of gold adr i did": [0, 65535], "of gold adr i did not": [0, 65535], "gold adr i did not gentle": [0, 65535], "adr i did not gentle husband": [0, 65535], "i did not gentle husband locke": [0, 65535], "did not gentle husband locke thee": [0, 65535], "not gentle husband locke thee forth": [0, 65535], "gentle husband locke thee forth dro": [0, 65535], "husband locke thee forth dro and": [0, 65535], "locke thee forth dro and gentle": [0, 65535], "thee forth dro and gentle mr": [0, 65535], "forth dro and gentle mr i": [0, 65535], "dro and gentle mr i receiu'd": [0, 65535], "and gentle mr i receiu'd no": [0, 65535], "gentle mr i receiu'd no gold": [0, 65535], "mr i receiu'd no gold but": [0, 65535], "i receiu'd no gold but i": [0, 65535], "receiu'd no gold but i confesse": [0, 65535], "no gold but i confesse sir": [0, 65535], "gold but i confesse sir that": [0, 65535], "but i confesse sir that we": [0, 65535], "i confesse sir that we were": [0, 65535], "confesse sir that we were lock'd": [0, 65535], "sir that we were lock'd out": [0, 65535], "that we were lock'd out adr": [0, 65535], "we were lock'd out adr dissembling": [0, 65535], "were lock'd out adr dissembling villain": [0, 65535], "lock'd out adr dissembling villain thou": [0, 65535], "out adr dissembling villain thou speak'st": [0, 65535], "adr dissembling villain thou speak'st false": [0, 65535], "dissembling villain thou speak'st false in": [0, 65535], "villain thou speak'st false in both": [0, 65535], "thou speak'st false in both ant": [0, 65535], "speak'st false in both ant dissembling": [0, 65535], "false in both ant dissembling harlot": [0, 65535], "in both ant dissembling harlot thou": [0, 65535], "both ant dissembling harlot thou art": [0, 65535], "ant dissembling harlot thou art false": [0, 65535], "dissembling harlot thou art false in": [0, 65535], "harlot thou art false in all": [0, 65535], "thou art false in all and": [0, 65535], "art false in all and art": [0, 65535], "false in all and art confederate": [0, 65535], "in all and art confederate with": [0, 65535], "all and art confederate with a": [0, 65535], "and art confederate with a damned": [0, 65535], "art confederate with a damned packe": [0, 65535], "confederate with a damned packe to": [0, 65535], "with a damned packe to make": [0, 65535], "a damned packe to make a": [0, 65535], "damned packe to make a loathsome": [0, 65535], "packe to make a loathsome abiect": [0, 65535], "to make a loathsome abiect scorne": [0, 65535], "make a loathsome abiect scorne of": [0, 65535], "a loathsome abiect scorne of me": [0, 65535], "loathsome abiect scorne of me but": [0, 65535], "abiect scorne of me but with": [0, 65535], "scorne of me but with these": [0, 65535], "of me but with these nailes": [0, 65535], "me but with these nailes ile": [0, 65535], "but with these nailes ile plucke": [0, 65535], "with these nailes ile plucke out": [0, 65535], "these nailes ile plucke out these": [0, 65535], "nailes ile plucke out these false": [0, 65535], "ile plucke out these false eyes": [0, 65535], "plucke out these false eyes that": [0, 65535], "out these false eyes that would": [0, 65535], "these false eyes that would behold": [0, 65535], "false eyes that would behold in": [0, 65535], "eyes that would behold in me": [0, 65535], "that would behold in me this": [0, 65535], "would behold in me this shamefull": [0, 65535], "behold in me this shamefull sport": [0, 65535], "in me this shamefull sport enter": [0, 65535], "me this shamefull sport enter three": [0, 65535], "this shamefull sport enter three or": [0, 65535], "shamefull sport enter three or foure": [0, 65535], "sport enter three or foure and": [0, 65535], "enter three or foure and offer": [0, 65535], "three or foure and offer to": [0, 65535], "or foure and offer to binde": [0, 65535], "foure and offer to binde him": [0, 65535], "and offer to binde him hee": [0, 65535], "offer to binde him hee striues": [0, 65535], "to binde him hee striues adr": [0, 65535], "binde him hee striues adr oh": [0, 65535], "him hee striues adr oh binde": [0, 65535], "hee striues adr oh binde him": [0, 65535], "striues adr oh binde him binde": [0, 65535], "adr oh binde him binde him": [0, 65535], "oh binde him binde him let": [0, 65535], "binde him binde him let him": [0, 65535], "him binde him let him not": [0, 65535], "binde him let him not come": [0, 65535], "him let him not come neere": [0, 65535], "let him not come neere me": [0, 65535], "him not come neere me pinch": [0, 65535], "not come neere me pinch more": [0, 65535], "come neere me pinch more company": [0, 65535], "neere me pinch more company the": [0, 65535], "me pinch more company the fiend": [0, 65535], "pinch more company the fiend is": [0, 65535], "more company the fiend is strong": [0, 65535], "company the fiend is strong within": [0, 65535], "the fiend is strong within him": [0, 65535], "fiend is strong within him luc": [0, 65535], "is strong within him luc aye": [0, 65535], "strong within him luc aye me": [0, 65535], "within him luc aye me poore": [0, 65535], "him luc aye me poore man": [0, 65535], "luc aye me poore man how": [0, 65535], "aye me poore man how pale": [0, 65535], "me poore man how pale and": [0, 65535], "poore man how pale and wan": [0, 65535], "man how pale and wan he": [0, 65535], "how pale and wan he looks": [0, 65535], "pale and wan he looks ant": [0, 65535], "and wan he looks ant what": [0, 65535], "wan he looks ant what will": [0, 65535], "he looks ant what will you": [0, 65535], "looks ant what will you murther": [0, 65535], "ant what will you murther me": [0, 65535], "what will you murther me thou": [0, 65535], "will you murther me thou iailor": [0, 65535], "you murther me thou iailor thou": [0, 65535], "murther me thou iailor thou i": [0, 65535], "me thou iailor thou i am": [0, 65535], "thou iailor thou i am thy": [0, 65535], "iailor thou i am thy prisoner": [0, 65535], "thou i am thy prisoner wilt": [0, 65535], "i am thy prisoner wilt thou": [0, 65535], "am thy prisoner wilt thou suffer": [0, 65535], "thy prisoner wilt thou suffer them": [0, 65535], "prisoner wilt thou suffer them to": [0, 65535], "wilt thou suffer them to make": [0, 65535], "thou suffer them to make a": [0, 65535], "suffer them to make a rescue": [0, 65535], "them to make a rescue offi": [0, 65535], "to make a rescue offi masters": [0, 65535], "make a rescue offi masters let": [0, 65535], "a rescue offi masters let him": [0, 65535], "rescue offi masters let him go": [0, 65535], "offi masters let him go he": [0, 65535], "masters let him go he is": [0, 65535], "let him go he is my": [0, 65535], "him go he is my prisoner": [0, 65535], "go he is my prisoner and": [0, 65535], "he is my prisoner and you": [0, 65535], "is my prisoner and you shall": [0, 65535], "my prisoner and you shall not": [0, 65535], "prisoner and you shall not haue": [0, 65535], "and you shall not haue him": [0, 65535], "you shall not haue him pinch": [0, 65535], "shall not haue him pinch go": [0, 65535], "not haue him pinch go binde": [0, 65535], "haue him pinch go binde this": [0, 65535], "him pinch go binde this man": [0, 65535], "pinch go binde this man for": [0, 65535], "go binde this man for he": [0, 65535], "binde this man for he is": [0, 65535], "this man for he is franticke": [0, 65535], "man for he is franticke too": [0, 65535], "for he is franticke too adr": [0, 65535], "he is franticke too adr what": [0, 65535], "is franticke too adr what wilt": [0, 65535], "franticke too adr what wilt thou": [0, 65535], "too adr what wilt thou do": [0, 65535], "adr what wilt thou do thou": [0, 65535], "what wilt thou do thou peeuish": [0, 65535], "wilt thou do thou peeuish officer": [0, 65535], "thou do thou peeuish officer hast": [0, 65535], "do thou peeuish officer hast thou": [0, 65535], "thou peeuish officer hast thou delight": [0, 65535], "peeuish officer hast thou delight to": [0, 65535], "officer hast thou delight to see": [0, 65535], "hast thou delight to see a": [0, 65535], "thou delight to see a wretched": [0, 65535], "delight to see a wretched man": [0, 65535], "to see a wretched man do": [0, 65535], "see a wretched man do outrage": [0, 65535], "a wretched man do outrage and": [0, 65535], "wretched man do outrage and displeasure": [0, 65535], "man do outrage and displeasure to": [0, 65535], "do outrage and displeasure to himselfe": [0, 65535], "outrage and displeasure to himselfe offi": [0, 65535], "and displeasure to himselfe offi he": [0, 65535], "displeasure to himselfe offi he is": [0, 65535], "to himselfe offi he is my": [0, 65535], "himselfe offi he is my prisoner": [0, 65535], "offi he is my prisoner if": [0, 65535], "he is my prisoner if i": [0, 65535], "is my prisoner if i let": [0, 65535], "my prisoner if i let him": [0, 65535], "prisoner if i let him go": [0, 65535], "if i let him go the": [0, 65535], "i let him go the debt": [0, 65535], "let him go the debt he": [0, 65535], "him go the debt he owes": [0, 65535], "go the debt he owes will": [0, 65535], "the debt he owes will be": [0, 65535], "debt he owes will be requir'd": [0, 65535], "he owes will be requir'd of": [0, 65535], "owes will be requir'd of me": [0, 65535], "will be requir'd of me adr": [0, 65535], "be requir'd of me adr i": [0, 65535], "requir'd of me adr i will": [0, 65535], "of me adr i will discharge": [0, 65535], "me adr i will discharge thee": [0, 65535], "adr i will discharge thee ere": [0, 65535], "i will discharge thee ere i": [0, 65535], "will discharge thee ere i go": [0, 65535], "discharge thee ere i go from": [0, 65535], "thee ere i go from thee": [0, 65535], "ere i go from thee beare": [0, 65535], "i go from thee beare me": [0, 65535], "go from thee beare me forthwith": [0, 65535], "from thee beare me forthwith vnto": [0, 65535], "thee beare me forthwith vnto his": [0, 65535], "beare me forthwith vnto his creditor": [0, 65535], "me forthwith vnto his creditor and": [0, 65535], "forthwith vnto his creditor and knowing": [0, 65535], "vnto his creditor and knowing how": [0, 65535], "his creditor and knowing how the": [0, 65535], "creditor and knowing how the debt": [0, 65535], "and knowing how the debt growes": [0, 65535], "knowing how the debt growes i": [0, 65535], "how the debt growes i will": [0, 65535], "the debt growes i will pay": [0, 65535], "debt growes i will pay it": [0, 65535], "growes i will pay it good": [0, 65535], "i will pay it good master": [0, 65535], "will pay it good master doctor": [0, 65535], "pay it good master doctor see": [0, 65535], "it good master doctor see him": [0, 65535], "good master doctor see him safe": [0, 65535], "master doctor see him safe conuey'd": [0, 65535], "doctor see him safe conuey'd home": [0, 65535], "see him safe conuey'd home to": [0, 65535], "him safe conuey'd home to my": [0, 65535], "safe conuey'd home to my house": [0, 65535], "conuey'd home to my house oh": [0, 65535], "home to my house oh most": [0, 65535], "to my house oh most vnhappy": [0, 65535], "my house oh most vnhappy day": [0, 65535], "house oh most vnhappy day ant": [0, 65535], "oh most vnhappy day ant oh": [0, 65535], "most vnhappy day ant oh most": [0, 65535], "vnhappy day ant oh most vnhappie": [0, 65535], "day ant oh most vnhappie strumpet": [0, 65535], "ant oh most vnhappie strumpet dro": [0, 65535], "oh most vnhappie strumpet dro master": [0, 65535], "most vnhappie strumpet dro master i": [0, 65535], "vnhappie strumpet dro master i am": [0, 65535], "strumpet dro master i am heere": [0, 65535], "dro master i am heere entred": [0, 65535], "master i am heere entred in": [0, 65535], "i am heere entred in bond": [0, 65535], "am heere entred in bond for": [0, 65535], "heere entred in bond for you": [0, 65535], "entred in bond for you ant": [0, 65535], "in bond for you ant out": [0, 65535], "bond for you ant out on": [0, 65535], "for you ant out on thee": [0, 65535], "you ant out on thee villaine": [0, 65535], "ant out on thee villaine wherefore": [0, 65535], "out on thee villaine wherefore dost": [0, 65535], "on thee villaine wherefore dost thou": [0, 65535], "thee villaine wherefore dost thou mad": [0, 65535], "villaine wherefore dost thou mad mee": [0, 65535], "wherefore dost thou mad mee dro": [0, 65535], "dost thou mad mee dro will": [0, 65535], "thou mad mee dro will you": [0, 65535], "mad mee dro will you be": [0, 65535], "mee dro will you be bound": [0, 65535], "dro will you be bound for": [0, 65535], "will you be bound for nothing": [0, 65535], "you be bound for nothing be": [0, 65535], "be bound for nothing be mad": [0, 65535], "bound for nothing be mad good": [0, 65535], "for nothing be mad good master": [0, 65535], "nothing be mad good master cry": [0, 65535], "be mad good master cry the": [0, 65535], "mad good master cry the diuell": [0, 65535], "good master cry the diuell luc": [0, 65535], "master cry the diuell luc god": [0, 65535], "cry the diuell luc god helpe": [0, 65535], "the diuell luc god helpe poore": [0, 65535], "diuell luc god helpe poore soules": [0, 65535], "luc god helpe poore soules how": [0, 65535], "god helpe poore soules how idlely": [0, 65535], "helpe poore soules how idlely doe": [0, 65535], "poore soules how idlely doe they": [0, 65535], "soules how idlely doe they talke": [0, 65535], "how idlely doe they talke adr": [0, 65535], "idlely doe they talke adr go": [0, 65535], "doe they talke adr go beare": [0, 65535], "they talke adr go beare him": [0, 65535], "talke adr go beare him hence": [0, 65535], "adr go beare him hence sister": [0, 65535], "go beare him hence sister go": [0, 65535], "beare him hence sister go you": [0, 65535], "him hence sister go you with": [0, 65535], "hence sister go you with me": [0, 65535], "sister go you with me say": [0, 65535], "go you with me say now": [0, 65535], "you with me say now whose": [0, 65535], "with me say now whose suite": [0, 65535], "me say now whose suite is": [0, 65535], "say now whose suite is he": [0, 65535], "now whose suite is he arrested": [0, 65535], "whose suite is he arrested at": [0, 65535], "suite is he arrested at exeunt": [0, 65535], "is he arrested at exeunt manet": [0, 65535], "he arrested at exeunt manet offic": [0, 65535], "arrested at exeunt manet offic adri": [0, 65535], "at exeunt manet offic adri luci": [0, 65535], "exeunt manet offic adri luci courtizan": [0, 65535], "manet offic adri luci courtizan off": [0, 65535], "offic adri luci courtizan off one": [0, 65535], "adri luci courtizan off one angelo": [0, 65535], "luci courtizan off one angelo a": [0, 65535], "courtizan off one angelo a goldsmith": [0, 65535], "off one angelo a goldsmith do": [0, 65535], "one angelo a goldsmith do you": [0, 65535], "angelo a goldsmith do you know": [0, 65535], "a goldsmith do you know him": [0, 65535], "goldsmith do you know him adr": [0, 65535], "do you know him adr i": [0, 65535], "you know him adr i know": [0, 65535], "know him adr i know the": [0, 65535], "him adr i know the man": [0, 65535], "adr i know the man what": [0, 65535], "i know the man what is": [0, 65535], "know the man what is the": [0, 65535], "the man what is the summe": [0, 65535], "man what is the summe he": [0, 65535], "what is the summe he owes": [0, 65535], "is the summe he owes off": [0, 65535], "the summe he owes off two": [0, 65535], "summe he owes off two hundred": [0, 65535], "he owes off two hundred duckets": [0, 65535], "owes off two hundred duckets adr": [0, 65535], "off two hundred duckets adr say": [0, 65535], "two hundred duckets adr say how": [0, 65535], "hundred duckets adr say how growes": [0, 65535], "duckets adr say how growes it": [0, 65535], "adr say how growes it due": [0, 65535], "say how growes it due off": [0, 65535], "how growes it due off due": [0, 65535], "growes it due off due for": [0, 65535], "it due off due for a": [0, 65535], "due off due for a chaine": [0, 65535], "off due for a chaine your": [0, 65535], "due for a chaine your husband": [0, 65535], "for a chaine your husband had": [0, 65535], "a chaine your husband had of": [0, 65535], "chaine your husband had of him": [0, 65535], "your husband had of him adr": [0, 65535], "husband had of him adr he": [0, 65535], "had of him adr he did": [0, 65535], "of him adr he did bespeake": [0, 65535], "him adr he did bespeake a": [0, 65535], "adr he did bespeake a chain": [0, 65535], "he did bespeake a chain for": [0, 65535], "did bespeake a chain for me": [0, 65535], "bespeake a chain for me but": [0, 65535], "a chain for me but had": [0, 65535], "chain for me but had it": [0, 65535], "for me but had it not": [0, 65535], "me but had it not cur": [0, 65535], "but had it not cur when": [0, 65535], "had it not cur when as": [0, 65535], "it not cur when as your": [0, 65535], "not cur when as your husband": [0, 65535], "cur when as your husband all": [0, 65535], "when as your husband all in": [0, 65535], "as your husband all in rage": [0, 65535], "your husband all in rage to": [0, 65535], "husband all in rage to day": [0, 65535], "all in rage to day came": [0, 65535], "in rage to day came to": [0, 65535], "rage to day came to my": [0, 65535], "to day came to my house": [0, 65535], "day came to my house and": [0, 65535], "came to my house and tooke": [0, 65535], "to my house and tooke away": [0, 65535], "my house and tooke away my": [0, 65535], "house and tooke away my ring": [0, 65535], "and tooke away my ring the": [0, 65535], "tooke away my ring the ring": [0, 65535], "away my ring the ring i": [0, 65535], "my ring the ring i saw": [0, 65535], "ring the ring i saw vpon": [0, 65535], "the ring i saw vpon his": [0, 65535], "ring i saw vpon his finger": [0, 65535], "i saw vpon his finger now": [0, 65535], "saw vpon his finger now straight": [0, 65535], "vpon his finger now straight after": [0, 65535], "his finger now straight after did": [0, 65535], "finger now straight after did i": [0, 65535], "now straight after did i meete": [0, 65535], "straight after did i meete him": [0, 65535], "after did i meete him with": [0, 65535], "did i meete him with a": [0, 65535], "i meete him with a chaine": [0, 65535], "meete him with a chaine adr": [0, 65535], "him with a chaine adr it": [0, 65535], "with a chaine adr it may": [0, 65535], "a chaine adr it may be": [0, 65535], "chaine adr it may be so": [0, 65535], "adr it may be so but": [0, 65535], "it may be so but i": [0, 65535], "may be so but i did": [0, 65535], "be so but i did neuer": [0, 65535], "so but i did neuer see": [0, 65535], "but i did neuer see it": [0, 65535], "i did neuer see it come": [0, 65535], "did neuer see it come iailor": [0, 65535], "neuer see it come iailor bring": [0, 65535], "see it come iailor bring me": [0, 65535], "it come iailor bring me where": [0, 65535], "come iailor bring me where the": [0, 65535], "iailor bring me where the goldsmith": [0, 65535], "bring me where the goldsmith is": [0, 65535], "me where the goldsmith is i": [0, 65535], "where the goldsmith is i long": [0, 65535], "the goldsmith is i long to": [0, 65535], "goldsmith is i long to know": [0, 65535], "is i long to know the": [0, 65535], "i long to know the truth": [0, 65535], "long to know the truth heereof": [0, 65535], "to know the truth heereof at": [0, 65535], "know the truth heereof at large": [0, 65535], "the truth heereof at large enter": [0, 65535], "truth heereof at large enter antipholus": [0, 65535], "heereof at large enter antipholus siracusia": [0, 65535], "at large enter antipholus siracusia with": [0, 65535], "large enter antipholus siracusia with his": [0, 65535], "enter antipholus siracusia with his rapier": [0, 65535], "antipholus siracusia with his rapier drawne": [0, 65535], "siracusia with his rapier drawne and": [0, 65535], "with his rapier drawne and dromio": [0, 65535], "his rapier drawne and dromio sirac": [0, 65535], "rapier drawne and dromio sirac luc": [0, 65535], "drawne and dromio sirac luc god": [0, 65535], "and dromio sirac luc god for": [0, 65535], "dromio sirac luc god for thy": [0, 65535], "sirac luc god for thy mercy": [0, 65535], "luc god for thy mercy they": [0, 65535], "god for thy mercy they are": [0, 65535], "for thy mercy they are loose": [0, 65535], "thy mercy they are loose againe": [0, 65535], "mercy they are loose againe adr": [0, 65535], "they are loose againe adr and": [0, 65535], "are loose againe adr and come": [0, 65535], "loose againe adr and come with": [0, 65535], "againe adr and come with naked": [0, 65535], "adr and come with naked swords": [0, 65535], "and come with naked swords let's": [0, 65535], "come with naked swords let's call": [0, 65535], "with naked swords let's call more": [0, 65535], "naked swords let's call more helpe": [0, 65535], "swords let's call more helpe to": [0, 65535], "let's call more helpe to haue": [0, 65535], "call more helpe to haue them": [0, 65535], "more helpe to haue them bound": [0, 65535], "helpe to haue them bound againe": [0, 65535], "to haue them bound againe runne": [0, 65535], "haue them bound againe runne all": [0, 65535], "them bound againe runne all out": [0, 65535], "bound againe runne all out off": [0, 65535], "againe runne all out off away": [0, 65535], "runne all out off away they'l": [0, 65535], "all out off away they'l kill": [0, 65535], "out off away they'l kill vs": [0, 65535], "off away they'l kill vs exeunt": [0, 65535], "away they'l kill vs exeunt omnes": [0, 65535], "they'l kill vs exeunt omnes as": [0, 65535], "kill vs exeunt omnes as fast": [0, 65535], "vs exeunt omnes as fast as": [0, 65535], "exeunt omnes as fast as may": [0, 65535], "omnes as fast as may be": [0, 65535], "as fast as may be frighted": [0, 65535], "fast as may be frighted s": [0, 65535], "as may be frighted s ant": [0, 65535], "may be frighted s ant i": [0, 65535], "be frighted s ant i see": [0, 65535], "frighted s ant i see these": [0, 65535], "s ant i see these witches": [0, 65535], "ant i see these witches are": [0, 65535], "i see these witches are affraid": [0, 65535], "see these witches are affraid of": [0, 65535], "these witches are affraid of swords": [0, 65535], "witches are affraid of swords s": [0, 65535], "are affraid of swords s dro": [0, 65535], "affraid of swords s dro she": [0, 65535], "of swords s dro she that": [0, 65535], "swords s dro she that would": [0, 65535], "s dro she that would be": [0, 65535], "dro she that would be your": [0, 65535], "she that would be your wife": [0, 65535], "that would be your wife now": [0, 65535], "would be your wife now ran": [0, 65535], "be your wife now ran from": [0, 65535], "your wife now ran from you": [0, 65535], "wife now ran from you ant": [0, 65535], "now ran from you ant come": [0, 65535], "ran from you ant come to": [0, 65535], "from you ant come to the": [0, 65535], "you ant come to the centaur": [0, 65535], "ant come to the centaur fetch": [0, 65535], "come to the centaur fetch our": [0, 65535], "to the centaur fetch our stuffe": [0, 65535], "the centaur fetch our stuffe from": [0, 65535], "centaur fetch our stuffe from thence": [0, 65535], "fetch our stuffe from thence i": [0, 65535], "our stuffe from thence i long": [0, 65535], "stuffe from thence i long that": [0, 65535], "from thence i long that we": [0, 65535], "thence i long that we were": [0, 65535], "i long that we were safe": [0, 65535], "long that we were safe and": [0, 65535], "that we were safe and sound": [0, 65535], "we were safe and sound aboord": [0, 65535], "were safe and sound aboord dro": [0, 65535], "safe and sound aboord dro faith": [0, 65535], "and sound aboord dro faith stay": [0, 65535], "sound aboord dro faith stay heere": [0, 65535], "aboord dro faith stay heere this": [0, 65535], "dro faith stay heere this night": [0, 65535], "faith stay heere this night they": [0, 65535], "stay heere this night they will": [0, 65535], "heere this night they will surely": [0, 65535], "this night they will surely do": [0, 65535], "night they will surely do vs": [0, 65535], "they will surely do vs no": [0, 65535], "will surely do vs no harme": [0, 65535], "surely do vs no harme you": [0, 65535], "do vs no harme you saw": [0, 65535], "vs no harme you saw they": [0, 65535], "no harme you saw they speake": [0, 65535], "harme you saw they speake vs": [0, 65535], "you saw they speake vs faire": [0, 65535], "saw they speake vs faire giue": [0, 65535], "they speake vs faire giue vs": [0, 65535], "speake vs faire giue vs gold": [0, 65535], "vs faire giue vs gold me": [0, 65535], "faire giue vs gold me thinkes": [0, 65535], "giue vs gold me thinkes they": [0, 65535], "vs gold me thinkes they are": [0, 65535], "gold me thinkes they are such": [0, 65535], "me thinkes they are such a": [0, 65535], "thinkes they are such a gentle": [0, 65535], "they are such a gentle nation": [0, 65535], "are such a gentle nation that": [0, 65535], "such a gentle nation that but": [0, 65535], "a gentle nation that but for": [0, 65535], "gentle nation that but for the": [0, 65535], "nation that but for the mountaine": [0, 65535], "that but for the mountaine of": [0, 65535], "but for the mountaine of mad": [0, 65535], "for the mountaine of mad flesh": [0, 65535], "the mountaine of mad flesh that": [0, 65535], "mountaine of mad flesh that claimes": [0, 65535], "of mad flesh that claimes mariage": [0, 65535], "mad flesh that claimes mariage of": [0, 65535], "flesh that claimes mariage of me": [0, 65535], "that claimes mariage of me i": [0, 65535], "claimes mariage of me i could": [0, 65535], "mariage of me i could finde": [0, 65535], "of me i could finde in": [0, 65535], "me i could finde in my": [0, 65535], "i could finde in my heart": [0, 65535], "could finde in my heart to": [0, 65535], "finde in my heart to stay": [0, 65535], "in my heart to stay heere": [0, 65535], "my heart to stay heere still": [0, 65535], "heart to stay heere still and": [0, 65535], "to stay heere still and turne": [0, 65535], "stay heere still and turne witch": [0, 65535], "heere still and turne witch ant": [0, 65535], "still and turne witch ant i": [0, 65535], "and turne witch ant i will": [0, 65535], "turne witch ant i will not": [0, 65535], "witch ant i will not stay": [0, 65535], "ant i will not stay to": [0, 65535], "i will not stay to night": [0, 65535], "will not stay to night for": [0, 65535], "not stay to night for all": [0, 65535], "stay to night for all the": [0, 65535], "to night for all the towne": [0, 65535], "night for all the towne therefore": [0, 65535], "for all the towne therefore away": [0, 65535], "all the towne therefore away to": [0, 65535], "the towne therefore away to get": [0, 65535], "towne therefore away to get our": [0, 65535], "therefore away to get our stuffe": [0, 65535], "away to get our stuffe aboord": [0, 65535], "to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and": [0, 65535], "prima enter a merchant goldsmith and an": [0, 65535], "enter a merchant goldsmith and an officer": [0, 65535], "a merchant goldsmith and an officer mar": [0, 65535], "merchant goldsmith and an officer mar you": [0, 65535], "goldsmith and an officer mar you know": [0, 65535], "and an officer mar you know since": [0, 65535], "an officer mar you know since pentecost": [0, 65535], "officer mar you know since pentecost the": [0, 65535], "mar you know since pentecost the sum": [0, 65535], "you know since pentecost the sum is": [0, 65535], "know since pentecost the sum is due": [0, 65535], "since pentecost the sum is due and": [0, 65535], "pentecost the sum is due and since": [0, 65535], "the sum is due and since i": [0, 65535], "sum is due and since i haue": [0, 65535], "is due and since i haue not": [0, 65535], "due and since i haue not much": [0, 65535], "and since i haue not much importun'd": [0, 65535], "since i haue not much importun'd you": [0, 65535], "i haue not much importun'd you nor": [0, 65535], "haue not much importun'd you nor now": [0, 65535], "not much importun'd you nor now i": [0, 65535], "much importun'd you nor now i had": [0, 65535], "importun'd you nor now i had not": [0, 65535], "you nor now i had not but": [0, 65535], "nor now i had not but that": [0, 65535], "now i had not but that i": [0, 65535], "i had not but that i am": [0, 65535], "had not but that i am bound": [0, 65535], "not but that i am bound to": [0, 65535], "but that i am bound to persia": [0, 65535], "that i am bound to persia and": [0, 65535], "i am bound to persia and want": [0, 65535], "am bound to persia and want gilders": [0, 65535], "bound to persia and want gilders for": [0, 65535], "to persia and want gilders for my": [0, 65535], "persia and want gilders for my voyage": [0, 65535], "and want gilders for my voyage therefore": [0, 65535], "want gilders for my voyage therefore make": [0, 65535], "gilders for my voyage therefore make present": [0, 65535], "for my voyage therefore make present satisfaction": [0, 65535], "my voyage therefore make present satisfaction or": [0, 65535], "voyage therefore make present satisfaction or ile": [0, 65535], "therefore make present satisfaction or ile attach": [0, 65535], "make present satisfaction or ile attach you": [0, 65535], "present satisfaction or ile attach you by": [0, 65535], "satisfaction or ile attach you by this": [0, 65535], "or ile attach you by this officer": [0, 65535], "ile attach you by this officer gold": [0, 65535], "attach you by this officer gold euen": [0, 65535], "you by this officer gold euen iust": [0, 65535], "by this officer gold euen iust the": [0, 65535], "this officer gold euen iust the sum": [0, 65535], "officer gold euen iust the sum that": [0, 65535], "gold euen iust the sum that i": [0, 65535], "euen iust the sum that i do": [0, 65535], "iust the sum that i do owe": [0, 65535], "the sum that i do owe to": [0, 65535], "sum that i do owe to you": [0, 65535], "that i do owe to you is": [0, 65535], "i do owe to you is growing": [0, 65535], "do owe to you is growing to": [0, 65535], "owe to you is growing to me": [0, 65535], "to you is growing to me by": [0, 65535], "you is growing to me by antipholus": [0, 65535], "is growing to me by antipholus and": [0, 65535], "growing to me by antipholus and in": [0, 65535], "to me by antipholus and in the": [0, 65535], "me by antipholus and in the instant": [0, 65535], "by antipholus and in the instant that": [0, 65535], "antipholus and in the instant that i": [0, 65535], "and in the instant that i met": [0, 65535], "in the instant that i met with": [0, 65535], "the instant that i met with you": [0, 65535], "instant that i met with you he": [0, 65535], "that i met with you he had": [0, 65535], "i met with you he had of": [0, 65535], "met with you he had of me": [0, 65535], "with you he had of me a": [0, 65535], "you he had of me a chaine": [0, 65535], "he had of me a chaine at": [0, 65535], "had of me a chaine at fiue": [0, 65535], "of me a chaine at fiue a": [0, 65535], "me a chaine at fiue a clocke": [0, 65535], "a chaine at fiue a clocke i": [0, 65535], "chaine at fiue a clocke i shall": [0, 65535], "at fiue a clocke i shall receiue": [0, 65535], "fiue a clocke i shall receiue the": [0, 65535], "a clocke i shall receiue the money": [0, 65535], "clocke i shall receiue the money for": [0, 65535], "i shall receiue the money for the": [0, 65535], "shall receiue the money for the same": [0, 65535], "receiue the money for the same pleaseth": [0, 65535], "the money for the same pleaseth you": [0, 65535], "money for the same pleaseth you walke": [0, 65535], "for the same pleaseth you walke with": [0, 65535], "the same pleaseth you walke with me": [0, 65535], "same pleaseth you walke with me downe": [0, 65535], "pleaseth you walke with me downe to": [0, 65535], "you walke with me downe to his": [0, 65535], "walke with me downe to his house": [0, 65535], "with me downe to his house i": [0, 65535], "me downe to his house i will": [0, 65535], "downe to his house i will discharge": [0, 65535], "to his house i will discharge my": [0, 65535], "his house i will discharge my bond": [0, 65535], "house i will discharge my bond and": [0, 65535], "i will discharge my bond and thanke": [0, 65535], "will discharge my bond and thanke you": [0, 65535], "discharge my bond and thanke you too": [0, 65535], "my bond and thanke you too enter": [0, 65535], "bond and thanke you too enter antipholus": [0, 65535], "and thanke you too enter antipholus ephes": [0, 65535], "thanke you too enter antipholus ephes dromio": [0, 65535], "you too enter antipholus ephes dromio from": [0, 65535], "too enter antipholus ephes dromio from the": [0, 65535], "enter antipholus ephes dromio from the courtizans": [0, 65535], "antipholus ephes dromio from the courtizans offi": [0, 65535], "ephes dromio from the courtizans offi that": [0, 65535], "dromio from the courtizans offi that labour": [0, 65535], "from the courtizans offi that labour may": [0, 65535], "the courtizans offi that labour may you": [0, 65535], "courtizans offi that labour may you saue": [0, 65535], "offi that labour may you saue see": [0, 65535], "that labour may you saue see where": [0, 65535], "labour may you saue see where he": [0, 65535], "may you saue see where he comes": [0, 65535], "you saue see where he comes ant": [0, 65535], "saue see where he comes ant while": [0, 65535], "see where he comes ant while i": [0, 65535], "where he comes ant while i go": [0, 65535], "he comes ant while i go to": [0, 65535], "comes ant while i go to the": [0, 65535], "ant while i go to the goldsmiths": [0, 65535], "while i go to the goldsmiths house": [0, 65535], "i go to the goldsmiths house go": [0, 65535], "go to the goldsmiths house go thou": [0, 65535], "to the goldsmiths house go thou and": [0, 65535], "the goldsmiths house go thou and buy": [0, 65535], "goldsmiths house go thou and buy a": [0, 65535], "house go thou and buy a ropes": [0, 65535], "go thou and buy a ropes end": [0, 65535], "thou and buy a ropes end that": [0, 65535], "and buy a ropes end that will": [0, 65535], "buy a ropes end that will i": [0, 65535], "a ropes end that will i bestow": [0, 65535], "ropes end that will i bestow among": [0, 65535], "end that will i bestow among my": [0, 65535], "that will i bestow among my wife": [0, 65535], "will i bestow among my wife and": [0, 65535], "i bestow among my wife and their": [0, 65535], "bestow among my wife and their confederates": [0, 65535], "among my wife and their confederates for": [0, 65535], "my wife and their confederates for locking": [0, 65535], "wife and their confederates for locking me": [0, 65535], "and their confederates for locking me out": [0, 65535], "their confederates for locking me out of": [0, 65535], "confederates for locking me out of my": [0, 65535], "for locking me out of my doores": [0, 65535], "locking me out of my doores by": [0, 65535], "me out of my doores by day": [0, 65535], "out of my doores by day but": [0, 65535], "of my doores by day but soft": [0, 65535], "my doores by day but soft i": [0, 65535], "doores by day but soft i see": [0, 65535], "by day but soft i see the": [0, 65535], "day but soft i see the goldsmith": [0, 65535], "but soft i see the goldsmith get": [0, 65535], "soft i see the goldsmith get thee": [0, 65535], "i see the goldsmith get thee gone": [0, 65535], "see the goldsmith get thee gone buy": [0, 65535], "the goldsmith get thee gone buy thou": [0, 65535], "goldsmith get thee gone buy thou a": [0, 65535], "get thee gone buy thou a rope": [0, 65535], "thee gone buy thou a rope and": [0, 65535], "gone buy thou a rope and bring": [0, 65535], "buy thou a rope and bring it": [0, 65535], "thou a rope and bring it home": [0, 65535], "a rope and bring it home to": [0, 65535], "rope and bring it home to me": [0, 65535], "and bring it home to me dro": [0, 65535], "bring it home to me dro i": [0, 65535], "it home to me dro i buy": [0, 65535], "home to me dro i buy a": [0, 65535], "to me dro i buy a thousand": [0, 65535], "me dro i buy a thousand pound": [0, 65535], "dro i buy a thousand pound a": [0, 65535], "i buy a thousand pound a yeare": [0, 65535], "buy a thousand pound a yeare i": [0, 65535], "a thousand pound a yeare i buy": [0, 65535], "thousand pound a yeare i buy a": [0, 65535], "pound a yeare i buy a rope": [0, 65535], "a yeare i buy a rope exit": [0, 65535], "yeare i buy a rope exit dromio": [0, 65535], "i buy a rope exit dromio eph": [0, 65535], "buy a rope exit dromio eph ant": [0, 65535], "a rope exit dromio eph ant a": [0, 65535], "rope exit dromio eph ant a man": [0, 65535], "exit dromio eph ant a man is": [0, 65535], "dromio eph ant a man is well": [0, 65535], "eph ant a man is well holpe": [0, 65535], "ant a man is well holpe vp": [0, 65535], "a man is well holpe vp that": [0, 65535], "man is well holpe vp that trusts": [0, 65535], "is well holpe vp that trusts to": [0, 65535], "well holpe vp that trusts to you": [0, 65535], "holpe vp that trusts to you i": [0, 65535], "vp that trusts to you i promised": [0, 65535], "that trusts to you i promised your": [0, 65535], "trusts to you i promised your presence": [0, 65535], "to you i promised your presence and": [0, 65535], "you i promised your presence and the": [0, 65535], "i promised your presence and the chaine": [0, 65535], "promised your presence and the chaine but": [0, 65535], "your presence and the chaine but neither": [0, 65535], "presence and the chaine but neither chaine": [0, 65535], "and the chaine but neither chaine nor": [0, 65535], "the chaine but neither chaine nor goldsmith": [0, 65535], "chaine but neither chaine nor goldsmith came": [0, 65535], "but neither chaine nor goldsmith came to": [0, 65535], "neither chaine nor goldsmith came to me": [0, 65535], "chaine nor goldsmith came to me belike": [0, 65535], "nor goldsmith came to me belike you": [0, 65535], "goldsmith came to me belike you thought": [0, 65535], "came to me belike you thought our": [0, 65535], "to me belike you thought our loue": [0, 65535], "me belike you thought our loue would": [0, 65535], "belike you thought our loue would last": [0, 65535], "you thought our loue would last too": [0, 65535], "thought our loue would last too long": [0, 65535], "our loue would last too long if": [0, 65535], "loue would last too long if it": [0, 65535], "would last too long if it were": [0, 65535], "last too long if it were chain'd": [0, 65535], "too long if it were chain'd together": [0, 65535], "long if it were chain'd together and": [0, 65535], "if it were chain'd together and therefore": [0, 65535], "it were chain'd together and therefore came": [0, 65535], "were chain'd together and therefore came not": [0, 65535], "chain'd together and therefore came not gold": [0, 65535], "together and therefore came not gold sauing": [0, 65535], "and therefore came not gold sauing your": [0, 65535], "therefore came not gold sauing your merrie": [0, 65535], "came not gold sauing your merrie humor": [0, 65535], "not gold sauing your merrie humor here's": [0, 65535], "gold sauing your merrie humor here's the": [0, 65535], "sauing your merrie humor here's the note": [0, 65535], "your merrie humor here's the note how": [0, 65535], "merrie humor here's the note how much": [0, 65535], "humor here's the note how much your": [0, 65535], "here's the note how much your chaine": [0, 65535], "the note how much your chaine weighs": [0, 65535], "note how much your chaine weighs to": [0, 65535], "how much your chaine weighs to the": [0, 65535], "much your chaine weighs to the vtmost": [0, 65535], "your chaine weighs to the vtmost charect": [0, 65535], "chaine weighs to the vtmost charect the": [0, 65535], "weighs to the vtmost charect the finenesse": [0, 65535], "to the vtmost charect the finenesse of": [0, 65535], "the vtmost charect the finenesse of the": [0, 65535], "vtmost charect the finenesse of the gold": [0, 65535], "charect the finenesse of the gold and": [0, 65535], "the finenesse of the gold and chargefull": [0, 65535], "finenesse of the gold and chargefull fashion": [0, 65535], "of the gold and chargefull fashion which": [0, 65535], "the gold and chargefull fashion which doth": [0, 65535], "gold and chargefull fashion which doth amount": [0, 65535], "and chargefull fashion which doth amount to": [0, 65535], "chargefull fashion which doth amount to three": [0, 65535], "fashion which doth amount to three odde": [0, 65535], "which doth amount to three odde duckets": [0, 65535], "doth amount to three odde duckets more": [0, 65535], "amount to three odde duckets more then": [0, 65535], "to three odde duckets more then i": [0, 65535], "three odde duckets more then i stand": [0, 65535], "odde duckets more then i stand debted": [0, 65535], "duckets more then i stand debted to": [0, 65535], "more then i stand debted to this": [0, 65535], "then i stand debted to this gentleman": [0, 65535], "i stand debted to this gentleman i": [0, 65535], "stand debted to this gentleman i pray": [0, 65535], "debted to this gentleman i pray you": [0, 65535], "to this gentleman i pray you see": [0, 65535], "this gentleman i pray you see him": [0, 65535], "gentleman i pray you see him presently": [0, 65535], "i pray you see him presently discharg'd": [0, 65535], "pray you see him presently discharg'd for": [0, 65535], "you see him presently discharg'd for he": [0, 65535], "see him presently discharg'd for he is": [0, 65535], "him presently discharg'd for he is bound": [0, 65535], "presently discharg'd for he is bound to": [0, 65535], "discharg'd for he is bound to sea": [0, 65535], "for he is bound to sea and": [0, 65535], "he is bound to sea and stayes": [0, 65535], "is bound to sea and stayes but": [0, 65535], "bound to sea and stayes but for": [0, 65535], "to sea and stayes but for it": [0, 65535], "sea and stayes but for it anti": [0, 65535], "and stayes but for it anti i": [0, 65535], "stayes but for it anti i am": [0, 65535], "but for it anti i am not": [0, 65535], "for it anti i am not furnish'd": [0, 65535], "it anti i am not furnish'd with": [0, 65535], "anti i am not furnish'd with the": [0, 65535], "i am not furnish'd with the present": [0, 65535], "am not furnish'd with the present monie": [0, 65535], "not furnish'd with the present monie besides": [0, 65535], "furnish'd with the present monie besides i": [0, 65535], "with the present monie besides i haue": [0, 65535], "the present monie besides i haue some": [0, 65535], "present monie besides i haue some businesse": [0, 65535], "monie besides i haue some businesse in": [0, 65535], "besides i haue some businesse in the": [0, 65535], "i haue some businesse in the towne": [0, 65535], "haue some businesse in the towne good": [0, 65535], "some businesse in the towne good signior": [0, 65535], "businesse in the towne good signior take": [0, 65535], "in the towne good signior take the": [0, 65535], "the towne good signior take the stranger": [0, 65535], "towne good signior take the stranger to": [0, 65535], "good signior take the stranger to my": [0, 65535], "signior take the stranger to my house": [0, 65535], "take the stranger to my house and": [0, 65535], "the stranger to my house and with": [0, 65535], "stranger to my house and with you": [0, 65535], "to my house and with you take": [0, 65535], "my house and with you take the": [0, 65535], "house and with you take the chaine": [0, 65535], "and with you take the chaine and": [0, 65535], "with you take the chaine and bid": [0, 65535], "you take the chaine and bid my": [0, 65535], "take the chaine and bid my wife": [0, 65535], "the chaine and bid my wife disburse": [0, 65535], "chaine and bid my wife disburse the": [0, 65535], "and bid my wife disburse the summe": [0, 65535], "bid my wife disburse the summe on": [0, 65535], "my wife disburse the summe on the": [0, 65535], "wife disburse the summe on the receit": [0, 65535], "disburse the summe on the receit thereof": [0, 65535], "the summe on the receit thereof perchance": [0, 65535], "summe on the receit thereof perchance i": [0, 65535], "on the receit thereof perchance i will": [0, 65535], "the receit thereof perchance i will be": [0, 65535], "receit thereof perchance i will be there": [0, 65535], "thereof perchance i will be there as": [0, 65535], "perchance i will be there as soone": [0, 65535], "i will be there as soone as": [0, 65535], "will be there as soone as you": [0, 65535], "be there as soone as you gold": [0, 65535], "there as soone as you gold then": [0, 65535], "as soone as you gold then you": [0, 65535], "soone as you gold then you will": [0, 65535], "as you gold then you will bring": [0, 65535], "you gold then you will bring the": [0, 65535], "gold then you will bring the chaine": [0, 65535], "then you will bring the chaine to": [0, 65535], "you will bring the chaine to her": [0, 65535], "will bring the chaine to her your": [0, 65535], "bring the chaine to her your selfe": [0, 65535], "the chaine to her your selfe anti": [0, 65535], "chaine to her your selfe anti no": [0, 65535], "to her your selfe anti no beare": [0, 65535], "her your selfe anti no beare it": [0, 65535], "your selfe anti no beare it with": [0, 65535], "selfe anti no beare it with you": [0, 65535], "anti no beare it with you least": [0, 65535], "no beare it with you least i": [0, 65535], "beare it with you least i come": [0, 65535], "it with you least i come not": [0, 65535], "with you least i come not time": [0, 65535], "you least i come not time enough": [0, 65535], "least i come not time enough gold": [0, 65535], "i come not time enough gold well": [0, 65535], "come not time enough gold well sir": [0, 65535], "not time enough gold well sir i": [0, 65535], "time enough gold well sir i will": [0, 65535], "enough gold well sir i will haue": [0, 65535], "gold well sir i will haue you": [0, 65535], "well sir i will haue you the": [0, 65535], "sir i will haue you the chaine": [0, 65535], "i will haue you the chaine about": [0, 65535], "will haue you the chaine about you": [0, 65535], "haue you the chaine about you ant": [0, 65535], "you the chaine about you ant and": [0, 65535], "the chaine about you ant and if": [0, 65535], "chaine about you ant and if i": [0, 65535], "about you ant and if i haue": [0, 65535], "you ant and if i haue not": [0, 65535], "ant and if i haue not sir": [0, 65535], "and if i haue not sir i": [0, 65535], "if i haue not sir i hope": [0, 65535], "i haue not sir i hope you": [0, 65535], "haue not sir i hope you haue": [0, 65535], "not sir i hope you haue or": [0, 65535], "sir i hope you haue or else": [0, 65535], "i hope you haue or else you": [0, 65535], "hope you haue or else you may": [0, 65535], "you haue or else you may returne": [0, 65535], "haue or else you may returne without": [0, 65535], "or else you may returne without your": [0, 65535], "else you may returne without your money": [0, 65535], "you may returne without your money gold": [0, 65535], "may returne without your money gold nay": [0, 65535], "returne without your money gold nay come": [0, 65535], "without your money gold nay come i": [0, 65535], "your money gold nay come i pray": [0, 65535], "money gold nay come i pray you": [0, 65535], "gold nay come i pray you sir": [0, 65535], "nay come i pray you sir giue": [0, 65535], "come i pray you sir giue me": [0, 65535], "i pray you sir giue me the": [0, 65535], "pray you sir giue me the chaine": [0, 65535], "you sir giue me the chaine both": [0, 65535], "sir giue me the chaine both winde": [0, 65535], "giue me the chaine both winde and": [0, 65535], "me the chaine both winde and tide": [0, 65535], "the chaine both winde and tide stayes": [0, 65535], "chaine both winde and tide stayes for": [0, 65535], "both winde and tide stayes for this": [0, 65535], "winde and tide stayes for this gentleman": [0, 65535], "and tide stayes for this gentleman and": [0, 65535], "tide stayes for this gentleman and i": [0, 65535], "stayes for this gentleman and i too": [0, 65535], "for this gentleman and i too blame": [0, 65535], "this gentleman and i too blame haue": [0, 65535], "gentleman and i too blame haue held": [0, 65535], "and i too blame haue held him": [0, 65535], "i too blame haue held him heere": [0, 65535], "too blame haue held him heere too": [0, 65535], "blame haue held him heere too long": [0, 65535], "haue held him heere too long anti": [0, 65535], "held him heere too long anti good": [0, 65535], "him heere too long anti good lord": [0, 65535], "heere too long anti good lord you": [0, 65535], "too long anti good lord you vse": [0, 65535], "long anti good lord you vse this": [0, 65535], "anti good lord you vse this dalliance": [0, 65535], "good lord you vse this dalliance to": [0, 65535], "lord you vse this dalliance to excuse": [0, 65535], "you vse this dalliance to excuse your": [0, 65535], "vse this dalliance to excuse your breach": [0, 65535], "this dalliance to excuse your breach of": [0, 65535], "dalliance to excuse your breach of promise": [0, 65535], "to excuse your breach of promise to": [0, 65535], "excuse your breach of promise to the": [0, 65535], "your breach of promise to the porpentine": [0, 65535], "breach of promise to the porpentine i": [0, 65535], "of promise to the porpentine i should": [0, 65535], "promise to the porpentine i should haue": [0, 65535], "to the porpentine i should haue chid": [0, 65535], "the porpentine i should haue chid you": [0, 65535], "porpentine i should haue chid you for": [0, 65535], "i should haue chid you for not": [0, 65535], "should haue chid you for not bringing": [0, 65535], "haue chid you for not bringing it": [0, 65535], "chid you for not bringing it but": [0, 65535], "you for not bringing it but like": [0, 65535], "for not bringing it but like a": [0, 65535], "not bringing it but like a shrew": [0, 65535], "bringing it but like a shrew you": [0, 65535], "it but like a shrew you first": [0, 65535], "but like a shrew you first begin": [0, 65535], "like a shrew you first begin to": [0, 65535], "a shrew you first begin to brawle": [0, 65535], "shrew you first begin to brawle mar": [0, 65535], "you first begin to brawle mar the": [0, 65535], "first begin to brawle mar the houre": [0, 65535], "begin to brawle mar the houre steales": [0, 65535], "to brawle mar the houre steales on": [0, 65535], "brawle mar the houre steales on i": [0, 65535], "mar the houre steales on i pray": [0, 65535], "the houre steales on i pray you": [0, 65535], "houre steales on i pray you sir": [0, 65535], "steales on i pray you sir dispatch": [0, 65535], "on i pray you sir dispatch gold": [0, 65535], "i pray you sir dispatch gold you": [0, 65535], "pray you sir dispatch gold you heare": [0, 65535], "you sir dispatch gold you heare how": [0, 65535], "sir dispatch gold you heare how he": [0, 65535], "dispatch gold you heare how he importunes": [0, 65535], "gold you heare how he importunes me": [0, 65535], "you heare how he importunes me the": [0, 65535], "heare how he importunes me the chaine": [0, 65535], "how he importunes me the chaine ant": [0, 65535], "he importunes me the chaine ant why": [0, 65535], "importunes me the chaine ant why giue": [0, 65535], "me the chaine ant why giue it": [0, 65535], "the chaine ant why giue it to": [0, 65535], "chaine ant why giue it to my": [0, 65535], "ant why giue it to my wife": [0, 65535], "why giue it to my wife and": [0, 65535], "giue it to my wife and fetch": [0, 65535], "it to my wife and fetch your": [0, 65535], "to my wife and fetch your mony": [0, 65535], "my wife and fetch your mony gold": [0, 65535], "wife and fetch your mony gold come": [0, 65535], "and fetch your mony gold come come": [0, 65535], "fetch your mony gold come come you": [0, 65535], "your mony gold come come you know": [0, 65535], "mony gold come come you know i": [0, 65535], "gold come come you know i gaue": [0, 65535], "come come you know i gaue it": [0, 65535], "come you know i gaue it you": [0, 65535], "you know i gaue it you euen": [0, 65535], "know i gaue it you euen now": [0, 65535], "i gaue it you euen now either": [0, 65535], "gaue it you euen now either send": [0, 65535], "it you euen now either send the": [0, 65535], "you euen now either send the chaine": [0, 65535], "euen now either send the chaine or": [0, 65535], "now either send the chaine or send": [0, 65535], "either send the chaine or send me": [0, 65535], "send the chaine or send me by": [0, 65535], "the chaine or send me by some": [0, 65535], "chaine or send me by some token": [0, 65535], "or send me by some token ant": [0, 65535], "send me by some token ant fie": [0, 65535], "me by some token ant fie now": [0, 65535], "by some token ant fie now you": [0, 65535], "some token ant fie now you run": [0, 65535], "token ant fie now you run this": [0, 65535], "ant fie now you run this humor": [0, 65535], "fie now you run this humor out": [0, 65535], "now you run this humor out of": [0, 65535], "you run this humor out of breath": [0, 65535], "run this humor out of breath come": [0, 65535], "this humor out of breath come where's": [0, 65535], "humor out of breath come where's the": [0, 65535], "out of breath come where's the chaine": [0, 65535], "of breath come where's the chaine i": [0, 65535], "breath come where's the chaine i pray": [0, 65535], "come where's the chaine i pray you": [0, 65535], "where's the chaine i pray you let": [0, 65535], "the chaine i pray you let me": [0, 65535], "chaine i pray you let me see": [0, 65535], "i pray you let me see it": [0, 65535], "pray you let me see it mar": [0, 65535], "you let me see it mar my": [0, 65535], "let me see it mar my businesse": [0, 65535], "me see it mar my businesse cannot": [0, 65535], "see it mar my businesse cannot brooke": [0, 65535], "it mar my businesse cannot brooke this": [0, 65535], "mar my businesse cannot brooke this dalliance": [0, 65535], "my businesse cannot brooke this dalliance good": [0, 65535], "businesse cannot brooke this dalliance good sir": [0, 65535], "cannot brooke this dalliance good sir say": [0, 65535], "brooke this dalliance good sir say whe'r": [0, 65535], "this dalliance good sir say whe'r you'l": [0, 65535], "dalliance good sir say whe'r you'l answer": [0, 65535], "good sir say whe'r you'l answer me": [0, 65535], "sir say whe'r you'l answer me or": [0, 65535], "say whe'r you'l answer me or no": [0, 65535], "whe'r you'l answer me or no if": [0, 65535], "you'l answer me or no if not": [0, 65535], "answer me or no if not ile": [0, 65535], "me or no if not ile leaue": [0, 65535], "or no if not ile leaue him": [0, 65535], "no if not ile leaue him to": [0, 65535], "if not ile leaue him to the": [0, 65535], "not ile leaue him to the officer": [0, 65535], "ile leaue him to the officer ant": [0, 65535], "leaue him to the officer ant i": [0, 65535], "him to the officer ant i answer": [0, 65535], "to the officer ant i answer you": [0, 65535], "the officer ant i answer you what": [0, 65535], "officer ant i answer you what should": [0, 65535], "ant i answer you what should i": [0, 65535], "i answer you what should i answer": [0, 65535], "answer you what should i answer you": [0, 65535], "you what should i answer you gold": [0, 65535], "what should i answer you gold the": [0, 65535], "should i answer you gold the monie": [0, 65535], "i answer you gold the monie that": [0, 65535], "answer you gold the monie that you": [0, 65535], "you gold the monie that you owe": [0, 65535], "gold the monie that you owe me": [0, 65535], "the monie that you owe me for": [0, 65535], "monie that you owe me for the": [0, 65535], "that you owe me for the chaine": [0, 65535], "you owe me for the chaine ant": [0, 65535], "owe me for the chaine ant i": [0, 65535], "me for the chaine ant i owe": [0, 65535], "for the chaine ant i owe you": [0, 65535], "the chaine ant i owe you none": [0, 65535], "chaine ant i owe you none till": [0, 65535], "ant i owe you none till i": [0, 65535], "i owe you none till i receiue": [0, 65535], "owe you none till i receiue the": [0, 65535], "you none till i receiue the chaine": [0, 65535], "none till i receiue the chaine gold": [0, 65535], "till i receiue the chaine gold you": [0, 65535], "i receiue the chaine gold you know": [0, 65535], "receiue the chaine gold you know i": [0, 65535], "the chaine gold you know i gaue": [0, 65535], "chaine gold you know i gaue it": [0, 65535], "gold you know i gaue it you": [0, 65535], "you know i gaue it you halfe": [0, 65535], "know i gaue it you halfe an": [0, 65535], "i gaue it you halfe an houre": [0, 65535], "gaue it you halfe an houre since": [0, 65535], "it you halfe an houre since ant": [0, 65535], "you halfe an houre since ant you": [0, 65535], "halfe an houre since ant you gaue": [0, 65535], "an houre since ant you gaue me": [0, 65535], "houre since ant you gaue me none": [0, 65535], "since ant you gaue me none you": [0, 65535], "ant you gaue me none you wrong": [0, 65535], "you gaue me none you wrong mee": [0, 65535], "gaue me none you wrong mee much": [0, 65535], "me none you wrong mee much to": [0, 65535], "none you wrong mee much to say": [0, 65535], "you wrong mee much to say so": [0, 65535], "wrong mee much to say so gold": [0, 65535], "mee much to say so gold you": [0, 65535], "much to say so gold you wrong": [0, 65535], "to say so gold you wrong me": [0, 65535], "say so gold you wrong me more": [0, 65535], "so gold you wrong me more sir": [0, 65535], "gold you wrong me more sir in": [0, 65535], "you wrong me more sir in denying": [0, 65535], "wrong me more sir in denying it": [0, 65535], "me more sir in denying it consider": [0, 65535], "more sir in denying it consider how": [0, 65535], "sir in denying it consider how it": [0, 65535], "in denying it consider how it stands": [0, 65535], "denying it consider how it stands vpon": [0, 65535], "it consider how it stands vpon my": [0, 65535], "consider how it stands vpon my credit": [0, 65535], "how it stands vpon my credit mar": [0, 65535], "it stands vpon my credit mar well": [0, 65535], "stands vpon my credit mar well officer": [0, 65535], "vpon my credit mar well officer arrest": [0, 65535], "my credit mar well officer arrest him": [0, 65535], "credit mar well officer arrest him at": [0, 65535], "mar well officer arrest him at my": [0, 65535], "well officer arrest him at my suite": [0, 65535], "officer arrest him at my suite offi": [0, 65535], "arrest him at my suite offi i": [0, 65535], "him at my suite offi i do": [0, 65535], "at my suite offi i do and": [0, 65535], "my suite offi i do and charge": [0, 65535], "suite offi i do and charge you": [0, 65535], "offi i do and charge you in": [0, 65535], "i do and charge you in the": [0, 65535], "do and charge you in the dukes": [0, 65535], "and charge you in the dukes name": [0, 65535], "charge you in the dukes name to": [0, 65535], "you in the dukes name to obey": [0, 65535], "in the dukes name to obey me": [0, 65535], "the dukes name to obey me gold": [0, 65535], "dukes name to obey me gold this": [0, 65535], "name to obey me gold this touches": [0, 65535], "to obey me gold this touches me": [0, 65535], "obey me gold this touches me in": [0, 65535], "me gold this touches me in reputation": [0, 65535], "gold this touches me in reputation either": [0, 65535], "this touches me in reputation either consent": [0, 65535], "touches me in reputation either consent to": [0, 65535], "me in reputation either consent to pay": [0, 65535], "in reputation either consent to pay this": [0, 65535], "reputation either consent to pay this sum": [0, 65535], "either consent to pay this sum for": [0, 65535], "consent to pay this sum for me": [0, 65535], "to pay this sum for me or": [0, 65535], "pay this sum for me or i": [0, 65535], "this sum for me or i attach": [0, 65535], "sum for me or i attach you": [0, 65535], "for me or i attach you by": [0, 65535], "me or i attach you by this": [0, 65535], "or i attach you by this officer": [0, 65535], "i attach you by this officer ant": [0, 65535], "attach you by this officer ant consent": [0, 65535], "you by this officer ant consent to": [0, 65535], "by this officer ant consent to pay": [0, 65535], "this officer ant consent to pay thee": [0, 65535], "officer ant consent to pay thee that": [0, 65535], "ant consent to pay thee that i": [0, 65535], "consent to pay thee that i neuer": [0, 65535], "to pay thee that i neuer had": [0, 65535], "pay thee that i neuer had arrest": [0, 65535], "thee that i neuer had arrest me": [0, 65535], "that i neuer had arrest me foolish": [0, 65535], "i neuer had arrest me foolish fellow": [0, 65535], "neuer had arrest me foolish fellow if": [0, 65535], "had arrest me foolish fellow if thou": [0, 65535], "arrest me foolish fellow if thou dar'st": [0, 65535], "me foolish fellow if thou dar'st gold": [0, 65535], "foolish fellow if thou dar'st gold heere": [0, 65535], "fellow if thou dar'st gold heere is": [0, 65535], "if thou dar'st gold heere is thy": [0, 65535], "thou dar'st gold heere is thy fee": [0, 65535], "dar'st gold heere is thy fee arrest": [0, 65535], "gold heere is thy fee arrest him": [0, 65535], "heere is thy fee arrest him officer": [0, 65535], "is thy fee arrest him officer i": [0, 65535], "thy fee arrest him officer i would": [0, 65535], "fee arrest him officer i would not": [0, 65535], "arrest him officer i would not spare": [0, 65535], "him officer i would not spare my": [0, 65535], "officer i would not spare my brother": [0, 65535], "i would not spare my brother in": [0, 65535], "would not spare my brother in this": [0, 65535], "not spare my brother in this case": [0, 65535], "spare my brother in this case if": [0, 65535], "my brother in this case if he": [0, 65535], "brother in this case if he should": [0, 65535], "in this case if he should scorne": [0, 65535], "this case if he should scorne me": [0, 65535], "case if he should scorne me so": [0, 65535], "if he should scorne me so apparantly": [0, 65535], "he should scorne me so apparantly offic": [0, 65535], "should scorne me so apparantly offic i": [0, 65535], "scorne me so apparantly offic i do": [0, 65535], "me so apparantly offic i do arrest": [0, 65535], "so apparantly offic i do arrest you": [0, 65535], "apparantly offic i do arrest you sir": [0, 65535], "offic i do arrest you sir you": [0, 65535], "i do arrest you sir you heare": [0, 65535], "do arrest you sir you heare the": [0, 65535], "arrest you sir you heare the suite": [0, 65535], "you sir you heare the suite ant": [0, 65535], "sir you heare the suite ant i": [0, 65535], "you heare the suite ant i do": [0, 65535], "heare the suite ant i do obey": [0, 65535], "the suite ant i do obey thee": [0, 65535], "suite ant i do obey thee till": [0, 65535], "ant i do obey thee till i": [0, 65535], "i do obey thee till i giue": [0, 65535], "do obey thee till i giue thee": [0, 65535], "obey thee till i giue thee baile": [0, 65535], "thee till i giue thee baile but": [0, 65535], "till i giue thee baile but sirrah": [0, 65535], "i giue thee baile but sirrah you": [0, 65535], "giue thee baile but sirrah you shall": [0, 65535], "thee baile but sirrah you shall buy": [0, 65535], "baile but sirrah you shall buy this": [0, 65535], "but sirrah you shall buy this sport": [0, 65535], "sirrah you shall buy this sport as": [0, 65535], "you shall buy this sport as deere": [0, 65535], "shall buy this sport as deere as": [0, 65535], "buy this sport as deere as all": [0, 65535], "this sport as deere as all the": [0, 65535], "sport as deere as all the mettall": [0, 65535], "as deere as all the mettall in": [0, 65535], "deere as all the mettall in your": [0, 65535], "as all the mettall in your shop": [0, 65535], "all the mettall in your shop will": [0, 65535], "the mettall in your shop will answer": [0, 65535], "mettall in your shop will answer gold": [0, 65535], "in your shop will answer gold sir": [0, 65535], "your shop will answer gold sir sir": [0, 65535], "shop will answer gold sir sir i": [0, 65535], "will answer gold sir sir i shall": [0, 65535], "answer gold sir sir i shall haue": [0, 65535], "gold sir sir i shall haue law": [0, 65535], "sir sir i shall haue law in": [0, 65535], "sir i shall haue law in ephesus": [0, 65535], "i shall haue law in ephesus to": [0, 65535], "shall haue law in ephesus to your": [0, 65535], "haue law in ephesus to your notorious": [0, 65535], "law in ephesus to your notorious shame": [0, 65535], "in ephesus to your notorious shame i": [0, 65535], "ephesus to your notorious shame i doubt": [0, 65535], "to your notorious shame i doubt it": [0, 65535], "your notorious shame i doubt it not": [0, 65535], "notorious shame i doubt it not enter": [0, 65535], "shame i doubt it not enter dromio": [0, 65535], "i doubt it not enter dromio sira": [0, 65535], "doubt it not enter dromio sira from": [0, 65535], "it not enter dromio sira from the": [0, 65535], "not enter dromio sira from the bay": [0, 65535], "enter dromio sira from the bay dro": [0, 65535], "dromio sira from the bay dro master": [0, 65535], "sira from the bay dro master there's": [0, 65535], "from the bay dro master there's a": [0, 65535], "the bay dro master there's a barke": [0, 65535], "bay dro master there's a barke of": [0, 65535], "dro master there's a barke of epidamium": [0, 65535], "master there's a barke of epidamium that": [0, 65535], "there's a barke of epidamium that staies": [0, 65535], "a barke of epidamium that staies but": [0, 65535], "barke of epidamium that staies but till": [0, 65535], "of epidamium that staies but till her": [0, 65535], "epidamium that staies but till her owner": [0, 65535], "that staies but till her owner comes": [0, 65535], "staies but till her owner comes aboord": [0, 65535], "but till her owner comes aboord and": [0, 65535], "till her owner comes aboord and then": [0, 65535], "her owner comes aboord and then sir": [0, 65535], "owner comes aboord and then sir she": [0, 65535], "comes aboord and then sir she beares": [0, 65535], "aboord and then sir she beares away": [0, 65535], "and then sir she beares away our": [0, 65535], "then sir she beares away our fraughtage": [0, 65535], "sir she beares away our fraughtage sir": [0, 65535], "she beares away our fraughtage sir i": [0, 65535], "beares away our fraughtage sir i haue": [0, 65535], "away our fraughtage sir i haue conuei'd": [0, 65535], "our fraughtage sir i haue conuei'd aboord": [0, 65535], "fraughtage sir i haue conuei'd aboord and": [0, 65535], "sir i haue conuei'd aboord and i": [0, 65535], "i haue conuei'd aboord and i haue": [0, 65535], "haue conuei'd aboord and i haue bought": [0, 65535], "conuei'd aboord and i haue bought the": [0, 65535], "aboord and i haue bought the oyle": [0, 65535], "and i haue bought the oyle the": [0, 65535], "i haue bought the oyle the balsamum": [0, 65535], "haue bought the oyle the balsamum and": [0, 65535], "bought the oyle the balsamum and aqua": [0, 65535], "the oyle the balsamum and aqua vit\u00e6": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "the balsamum and aqua vit\u00e6 the ship": [0, 65535], "balsamum and aqua vit\u00e6 the ship is": [0, 65535], "and aqua vit\u00e6 the ship is in": [0, 65535], "aqua vit\u00e6 the ship is in her": [0, 65535], "vit\u00e6 the ship is in her trim": [0, 65535], "the ship is in her trim the": [0, 65535], "ship is in her trim the merrie": [0, 65535], "is in her trim the merrie winde": [0, 65535], "in her trim the merrie winde blowes": [0, 65535], "her trim the merrie winde blowes faire": [0, 65535], "trim the merrie winde blowes faire from": [0, 65535], "the merrie winde blowes faire from land": [0, 65535], "merrie winde blowes faire from land they": [0, 65535], "winde blowes faire from land they stay": [0, 65535], "blowes faire from land they stay for": [0, 65535], "faire from land they stay for nought": [0, 65535], "from land they stay for nought at": [0, 65535], "land they stay for nought at all": [0, 65535], "they stay for nought at all but": [0, 65535], "stay for nought at all but for": [0, 65535], "for nought at all but for their": [0, 65535], "nought at all but for their owner": [0, 65535], "at all but for their owner master": [0, 65535], "all but for their owner master and": [0, 65535], "but for their owner master and your": [0, 65535], "for their owner master and your selfe": [0, 65535], "their owner master and your selfe an": [0, 65535], "owner master and your selfe an how": [0, 65535], "master and your selfe an how now": [0, 65535], "and your selfe an how now a": [0, 65535], "your selfe an how now a madman": [0, 65535], "selfe an how now a madman why": [0, 65535], "an how now a madman why thou": [0, 65535], "how now a madman why thou peeuish": [0, 65535], "now a madman why thou peeuish sheep": [0, 65535], "a madman why thou peeuish sheep what": [0, 65535], "madman why thou peeuish sheep what ship": [0, 65535], "why thou peeuish sheep what ship of": [0, 65535], "thou peeuish sheep what ship of epidamium": [0, 65535], "peeuish sheep what ship of epidamium staies": [0, 65535], "sheep what ship of epidamium staies for": [0, 65535], "what ship of epidamium staies for me": [0, 65535], "ship of epidamium staies for me s": [0, 65535], "of epidamium staies for me s dro": [0, 65535], "epidamium staies for me s dro a": [0, 65535], "staies for me s dro a ship": [0, 65535], "for me s dro a ship you": [0, 65535], "me s dro a ship you sent": [0, 65535], "s dro a ship you sent me": [0, 65535], "dro a ship you sent me too": [0, 65535], "a ship you sent me too to": [0, 65535], "ship you sent me too to hier": [0, 65535], "you sent me too to hier waftage": [0, 65535], "sent me too to hier waftage ant": [0, 65535], "me too to hier waftage ant thou": [0, 65535], "too to hier waftage ant thou drunken": [0, 65535], "to hier waftage ant thou drunken slaue": [0, 65535], "hier waftage ant thou drunken slaue i": [0, 65535], "waftage ant thou drunken slaue i sent": [0, 65535], "ant thou drunken slaue i sent thee": [0, 65535], "thou drunken slaue i sent thee for": [0, 65535], "drunken slaue i sent thee for a": [0, 65535], "slaue i sent thee for a rope": [0, 65535], "i sent thee for a rope and": [0, 65535], "sent thee for a rope and told": [0, 65535], "thee for a rope and told thee": [0, 65535], "for a rope and told thee to": [0, 65535], "a rope and told thee to what": [0, 65535], "rope and told thee to what purpose": [0, 65535], "and told thee to what purpose and": [0, 65535], "told thee to what purpose and what": [0, 65535], "thee to what purpose and what end": [0, 65535], "to what purpose and what end s": [0, 65535], "what purpose and what end s dro": [0, 65535], "purpose and what end s dro you": [0, 65535], "and what end s dro you sent": [0, 65535], "what end s dro you sent me": [0, 65535], "end s dro you sent me for": [0, 65535], "s dro you sent me for a": [0, 65535], "dro you sent me for a ropes": [0, 65535], "you sent me for a ropes end": [0, 65535], "sent me for a ropes end as": [0, 65535], "me for a ropes end as soone": [0, 65535], "for a ropes end as soone you": [0, 65535], "a ropes end as soone you sent": [0, 65535], "ropes end as soone you sent me": [0, 65535], "end as soone you sent me to": [0, 65535], "as soone you sent me to the": [0, 65535], "soone you sent me to the bay": [0, 65535], "you sent me to the bay sir": [0, 65535], "sent me to the bay sir for": [0, 65535], "me to the bay sir for a": [0, 65535], "to the bay sir for a barke": [0, 65535], "the bay sir for a barke ant": [0, 65535], "bay sir for a barke ant i": [0, 65535], "sir for a barke ant i will": [0, 65535], "for a barke ant i will debate": [0, 65535], "a barke ant i will debate this": [0, 65535], "barke ant i will debate this matter": [0, 65535], "ant i will debate this matter at": [0, 65535], "i will debate this matter at more": [0, 65535], "will debate this matter at more leisure": [0, 65535], "debate this matter at more leisure and": [0, 65535], "this matter at more leisure and teach": [0, 65535], "matter at more leisure and teach your": [0, 65535], "at more leisure and teach your eares": [0, 65535], "more leisure and teach your eares to": [0, 65535], "leisure and teach your eares to list": [0, 65535], "and teach your eares to list me": [0, 65535], "teach your eares to list me with": [0, 65535], "your eares to list me with more": [0, 65535], "eares to list me with more heede": [0, 65535], "to list me with more heede to": [0, 65535], "list me with more heede to adriana": [0, 65535], "me with more heede to adriana villaine": [0, 65535], "with more heede to adriana villaine hie": [0, 65535], "more heede to adriana villaine hie thee": [0, 65535], "heede to adriana villaine hie thee straight": [0, 65535], "to adriana villaine hie thee straight giue": [0, 65535], "adriana villaine hie thee straight giue her": [0, 65535], "villaine hie thee straight giue her this": [0, 65535], "hie thee straight giue her this key": [0, 65535], "thee straight giue her this key and": [0, 65535], "straight giue her this key and tell": [0, 65535], "giue her this key and tell her": [0, 65535], "her this key and tell her in": [0, 65535], "this key and tell her in the": [0, 65535], "key and tell her in the deske": [0, 65535], "and tell her in the deske that's": [0, 65535], "tell her in the deske that's couer'd": [0, 65535], "her in the deske that's couer'd o're": [0, 65535], "in the deske that's couer'd o're with": [0, 65535], "the deske that's couer'd o're with turkish": [0, 65535], "deske that's couer'd o're with turkish tapistrie": [0, 65535], "that's couer'd o're with turkish tapistrie there": [0, 65535], "couer'd o're with turkish tapistrie there is": [0, 65535], "o're with turkish tapistrie there is a": [0, 65535], "with turkish tapistrie there is a purse": [0, 65535], "turkish tapistrie there is a purse of": [0, 65535], "tapistrie there is a purse of duckets": [0, 65535], "there is a purse of duckets let": [0, 65535], "is a purse of duckets let her": [0, 65535], "a purse of duckets let her send": [0, 65535], "purse of duckets let her send it": [0, 65535], "of duckets let her send it tell": [0, 65535], "duckets let her send it tell her": [0, 65535], "let her send it tell her i": [0, 65535], "her send it tell her i am": [0, 65535], "send it tell her i am arrested": [0, 65535], "it tell her i am arrested in": [0, 65535], "tell her i am arrested in the": [0, 65535], "her i am arrested in the streete": [0, 65535], "i am arrested in the streete and": [0, 65535], "am arrested in the streete and that": [0, 65535], "arrested in the streete and that shall": [0, 65535], "in the streete and that shall baile": [0, 65535], "the streete and that shall baile me": [0, 65535], "streete and that shall baile me hie": [0, 65535], "and that shall baile me hie thee": [0, 65535], "that shall baile me hie thee slaue": [0, 65535], "shall baile me hie thee slaue be": [0, 65535], "baile me hie thee slaue be gone": [0, 65535], "me hie thee slaue be gone on": [0, 65535], "hie thee slaue be gone on officer": [0, 65535], "thee slaue be gone on officer to": [0, 65535], "slaue be gone on officer to prison": [0, 65535], "be gone on officer to prison till": [0, 65535], "gone on officer to prison till it": [0, 65535], "on officer to prison till it come": [0, 65535], "officer to prison till it come exeunt": [0, 65535], "to prison till it come exeunt s": [0, 65535], "prison till it come exeunt s dromio": [0, 65535], "till it come exeunt s dromio to": [0, 65535], "it come exeunt s dromio to adriana": [0, 65535], "come exeunt s dromio to adriana that": [0, 65535], "exeunt s dromio to adriana that is": [0, 65535], "s dromio to adriana that is where": [0, 65535], "dromio to adriana that is where we": [0, 65535], "to adriana that is where we din'd": [0, 65535], "adriana that is where we din'd where": [0, 65535], "that is where we din'd where dowsabell": [0, 65535], "is where we din'd where dowsabell did": [0, 65535], "where we din'd where dowsabell did claime": [0, 65535], "we din'd where dowsabell did claime me": [0, 65535], "din'd where dowsabell did claime me for": [0, 65535], "where dowsabell did claime me for her": [0, 65535], "dowsabell did claime me for her husband": [0, 65535], "did claime me for her husband she": [0, 65535], "claime me for her husband she is": [0, 65535], "me for her husband she is too": [0, 65535], "for her husband she is too bigge": [0, 65535], "her husband she is too bigge i": [0, 65535], "husband she is too bigge i hope": [0, 65535], "she is too bigge i hope for": [0, 65535], "is too bigge i hope for me": [0, 65535], "too bigge i hope for me to": [0, 65535], "bigge i hope for me to compasse": [0, 65535], "i hope for me to compasse thither": [0, 65535], "hope for me to compasse thither i": [0, 65535], "for me to compasse thither i must": [0, 65535], "me to compasse thither i must although": [0, 65535], "to compasse thither i must although against": [0, 65535], "compasse thither i must although against my": [0, 65535], "thither i must although against my will": [0, 65535], "i must although against my will for": [0, 65535], "must although against my will for seruants": [0, 65535], "although against my will for seruants must": [0, 65535], "against my will for seruants must their": [0, 65535], "my will for seruants must their masters": [0, 65535], "will for seruants must their masters mindes": [0, 65535], "for seruants must their masters mindes fulfill": [0, 65535], "seruants must their masters mindes fulfill exit": [0, 65535], "must their masters mindes fulfill exit enter": [0, 65535], "their masters mindes fulfill exit enter adriana": [0, 65535], "masters mindes fulfill exit enter adriana and": [0, 65535], "mindes fulfill exit enter adriana and luciana": [0, 65535], "fulfill exit enter adriana and luciana adr": [0, 65535], "exit enter adriana and luciana adr ah": [0, 65535], "enter adriana and luciana adr ah luciana": [0, 65535], "adriana and luciana adr ah luciana did": [0, 65535], "and luciana adr ah luciana did he": [0, 65535], "luciana adr ah luciana did he tempt": [0, 65535], "adr ah luciana did he tempt thee": [0, 65535], "ah luciana did he tempt thee so": [0, 65535], "luciana did he tempt thee so might'st": [0, 65535], "did he tempt thee so might'st thou": [0, 65535], "he tempt thee so might'st thou perceiue": [0, 65535], "tempt thee so might'st thou perceiue austeerely": [0, 65535], "thee so might'st thou perceiue austeerely in": [0, 65535], "so might'st thou perceiue austeerely in his": [0, 65535], "might'st thou perceiue austeerely in his eie": [0, 65535], "thou perceiue austeerely in his eie that": [0, 65535], "perceiue austeerely in his eie that he": [0, 65535], "austeerely in his eie that he did": [0, 65535], "in his eie that he did plead": [0, 65535], "his eie that he did plead in": [0, 65535], "eie that he did plead in earnest": [0, 65535], "that he did plead in earnest yea": [0, 65535], "he did plead in earnest yea or": [0, 65535], "did plead in earnest yea or no": [0, 65535], "plead in earnest yea or no look'd": [0, 65535], "in earnest yea or no look'd he": [0, 65535], "earnest yea or no look'd he or": [0, 65535], "yea or no look'd he or red": [0, 65535], "or no look'd he or red or": [0, 65535], "no look'd he or red or pale": [0, 65535], "look'd he or red or pale or": [0, 65535], "he or red or pale or sad": [0, 65535], "or red or pale or sad or": [0, 65535], "red or pale or sad or merrily": [0, 65535], "or pale or sad or merrily what": [0, 65535], "pale or sad or merrily what obseruation": [0, 65535], "or sad or merrily what obseruation mad'st": [0, 65535], "sad or merrily what obseruation mad'st thou": [0, 65535], "or merrily what obseruation mad'st thou in": [0, 65535], "merrily what obseruation mad'st thou in this": [0, 65535], "what obseruation mad'st thou in this case": [0, 65535], "obseruation mad'st thou in this case oh": [0, 65535], "mad'st thou in this case oh his": [0, 65535], "thou in this case oh his hearts": [0, 65535], "in this case oh his hearts meteors": [0, 65535], "this case oh his hearts meteors tilting": [0, 65535], "case oh his hearts meteors tilting in": [0, 65535], "oh his hearts meteors tilting in his": [0, 65535], "his hearts meteors tilting in his face": [0, 65535], "hearts meteors tilting in his face luc": [0, 65535], "meteors tilting in his face luc first": [0, 65535], "tilting in his face luc first he": [0, 65535], "in his face luc first he deni'de": [0, 65535], "his face luc first he deni'de you": [0, 65535], "face luc first he deni'de you had": [0, 65535], "luc first he deni'de you had in": [0, 65535], "first he deni'de you had in him": [0, 65535], "he deni'de you had in him no": [0, 65535], "deni'de you had in him no right": [0, 65535], "you had in him no right adr": [0, 65535], "had in him no right adr he": [0, 65535], "in him no right adr he meant": [0, 65535], "him no right adr he meant he": [0, 65535], "no right adr he meant he did": [0, 65535], "right adr he meant he did me": [0, 65535], "adr he meant he did me none": [0, 65535], "he meant he did me none the": [0, 65535], "meant he did me none the more": [0, 65535], "he did me none the more my": [0, 65535], "did me none the more my spight": [0, 65535], "me none the more my spight luc": [0, 65535], "none the more my spight luc then": [0, 65535], "the more my spight luc then swore": [0, 65535], "more my spight luc then swore he": [0, 65535], "my spight luc then swore he that": [0, 65535], "spight luc then swore he that he": [0, 65535], "luc then swore he that he was": [0, 65535], "then swore he that he was a": [0, 65535], "swore he that he was a stranger": [0, 65535], "he that he was a stranger heere": [0, 65535], "that he was a stranger heere adr": [0, 65535], "he was a stranger heere adr and": [0, 65535], "was a stranger heere adr and true": [0, 65535], "a stranger heere adr and true he": [0, 65535], "stranger heere adr and true he swore": [0, 65535], "heere adr and true he swore though": [0, 65535], "adr and true he swore though yet": [0, 65535], "and true he swore though yet forsworne": [0, 65535], "true he swore though yet forsworne hee": [0, 65535], "he swore though yet forsworne hee were": [0, 65535], "swore though yet forsworne hee were luc": [0, 65535], "though yet forsworne hee were luc then": [0, 65535], "yet forsworne hee were luc then pleaded": [0, 65535], "forsworne hee were luc then pleaded i": [0, 65535], "hee were luc then pleaded i for": [0, 65535], "were luc then pleaded i for you": [0, 65535], "luc then pleaded i for you adr": [0, 65535], "then pleaded i for you adr and": [0, 65535], "pleaded i for you adr and what": [0, 65535], "i for you adr and what said": [0, 65535], "for you adr and what said he": [0, 65535], "you adr and what said he luc": [0, 65535], "adr and what said he luc that": [0, 65535], "and what said he luc that loue": [0, 65535], "what said he luc that loue i": [0, 65535], "said he luc that loue i begg'd": [0, 65535], "he luc that loue i begg'd for": [0, 65535], "luc that loue i begg'd for you": [0, 65535], "that loue i begg'd for you he": [0, 65535], "loue i begg'd for you he begg'd": [0, 65535], "i begg'd for you he begg'd of": [0, 65535], "begg'd for you he begg'd of me": [0, 65535], "for you he begg'd of me adr": [0, 65535], "you he begg'd of me adr with": [0, 65535], "he begg'd of me adr with what": [0, 65535], "begg'd of me adr with what perswasion": [0, 65535], "of me adr with what perswasion did": [0, 65535], "me adr with what perswasion did he": [0, 65535], "adr with what perswasion did he tempt": [0, 65535], "with what perswasion did he tempt thy": [0, 65535], "what perswasion did he tempt thy loue": [0, 65535], "perswasion did he tempt thy loue luc": [0, 65535], "did he tempt thy loue luc with": [0, 65535], "he tempt thy loue luc with words": [0, 65535], "tempt thy loue luc with words that": [0, 65535], "thy loue luc with words that in": [0, 65535], "loue luc with words that in an": [0, 65535], "luc with words that in an honest": [0, 65535], "with words that in an honest suit": [0, 65535], "words that in an honest suit might": [0, 65535], "that in an honest suit might moue": [0, 65535], "in an honest suit might moue first": [0, 65535], "an honest suit might moue first he": [0, 65535], "honest suit might moue first he did": [0, 65535], "suit might moue first he did praise": [0, 65535], "might moue first he did praise my": [0, 65535], "moue first he did praise my beautie": [0, 65535], "first he did praise my beautie then": [0, 65535], "he did praise my beautie then my": [0, 65535], "did praise my beautie then my speech": [0, 65535], "praise my beautie then my speech adr": [0, 65535], "my beautie then my speech adr did'st": [0, 65535], "beautie then my speech adr did'st speake": [0, 65535], "then my speech adr did'st speake him": [0, 65535], "my speech adr did'st speake him faire": [0, 65535], "speech adr did'st speake him faire luc": [0, 65535], "adr did'st speake him faire luc haue": [0, 65535], "did'st speake him faire luc haue patience": [0, 65535], "speake him faire luc haue patience i": [0, 65535], "him faire luc haue patience i beseech": [0, 65535], "faire luc haue patience i beseech adr": [0, 65535], "luc haue patience i beseech adr i": [0, 65535], "haue patience i beseech adr i cannot": [0, 65535], "patience i beseech adr i cannot nor": [0, 65535], "i beseech adr i cannot nor i": [0, 65535], "beseech adr i cannot nor i will": [0, 65535], "adr i cannot nor i will not": [0, 65535], "i cannot nor i will not hold": [0, 65535], "cannot nor i will not hold me": [0, 65535], "nor i will not hold me still": [0, 65535], "i will not hold me still my": [0, 65535], "will not hold me still my tongue": [0, 65535], "not hold me still my tongue though": [0, 65535], "hold me still my tongue though not": [0, 65535], "me still my tongue though not my": [0, 65535], "still my tongue though not my heart": [0, 65535], "my tongue though not my heart shall": [0, 65535], "tongue though not my heart shall haue": [0, 65535], "though not my heart shall haue his": [0, 65535], "not my heart shall haue his will": [0, 65535], "my heart shall haue his will he": [0, 65535], "heart shall haue his will he is": [0, 65535], "shall haue his will he is deformed": [0, 65535], "haue his will he is deformed crooked": [0, 65535], "his will he is deformed crooked old": [0, 65535], "will he is deformed crooked old and": [0, 65535], "he is deformed crooked old and sere": [0, 65535], "is deformed crooked old and sere ill": [0, 65535], "deformed crooked old and sere ill fac'd": [0, 65535], "crooked old and sere ill fac'd worse": [0, 65535], "old and sere ill fac'd worse bodied": [0, 65535], "and sere ill fac'd worse bodied shapelesse": [0, 65535], "sere ill fac'd worse bodied shapelesse euery": [0, 65535], "ill fac'd worse bodied shapelesse euery where": [0, 65535], "fac'd worse bodied shapelesse euery where vicious": [0, 65535], "worse bodied shapelesse euery where vicious vngentle": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "blunt vnkinde stigmaticall in making worse in": [0, 65535], "vnkinde stigmaticall in making worse in minde": [0, 65535], "stigmaticall in making worse in minde luc": [0, 65535], "in making worse in minde luc who": [0, 65535], "making worse in minde luc who would": [0, 65535], "worse in minde luc who would be": [0, 65535], "in minde luc who would be iealous": [0, 65535], "minde luc who would be iealous then": [0, 65535], "luc who would be iealous then of": [0, 65535], "who would be iealous then of such": [0, 65535], "would be iealous then of such a": [0, 65535], "be iealous then of such a one": [0, 65535], "iealous then of such a one no": [0, 65535], "then of such a one no euill": [0, 65535], "of such a one no euill lost": [0, 65535], "such a one no euill lost is": [0, 65535], "a one no euill lost is wail'd": [0, 65535], "one no euill lost is wail'd when": [0, 65535], "no euill lost is wail'd when it": [0, 65535], "euill lost is wail'd when it is": [0, 65535], "lost is wail'd when it is gone": [0, 65535], "is wail'd when it is gone adr": [0, 65535], "wail'd when it is gone adr ah": [0, 65535], "when it is gone adr ah but": [0, 65535], "it is gone adr ah but i": [0, 65535], "is gone adr ah but i thinke": [0, 65535], "gone adr ah but i thinke him": [0, 65535], "adr ah but i thinke him better": [0, 65535], "ah but i thinke him better then": [0, 65535], "but i thinke him better then i": [0, 65535], "i thinke him better then i say": [0, 65535], "thinke him better then i say and": [0, 65535], "him better then i say and yet": [0, 65535], "better then i say and yet would": [0, 65535], "then i say and yet would herein": [0, 65535], "i say and yet would herein others": [0, 65535], "say and yet would herein others eies": [0, 65535], "and yet would herein others eies were": [0, 65535], "yet would herein others eies were worse": [0, 65535], "would herein others eies were worse farre": [0, 65535], "herein others eies were worse farre from": [0, 65535], "others eies were worse farre from her": [0, 65535], "eies were worse farre from her nest": [0, 65535], "were worse farre from her nest the": [0, 65535], "worse farre from her nest the lapwing": [0, 65535], "farre from her nest the lapwing cries": [0, 65535], "from her nest the lapwing cries away": [0, 65535], "her nest the lapwing cries away my": [0, 65535], "nest the lapwing cries away my heart": [0, 65535], "the lapwing cries away my heart praies": [0, 65535], "lapwing cries away my heart praies for": [0, 65535], "cries away my heart praies for him": [0, 65535], "away my heart praies for him though": [0, 65535], "my heart praies for him though my": [0, 65535], "heart praies for him though my tongue": [0, 65535], "praies for him though my tongue doe": [0, 65535], "for him though my tongue doe curse": [0, 65535], "him though my tongue doe curse enter": [0, 65535], "though my tongue doe curse enter s": [0, 65535], "my tongue doe curse enter s dromio": [0, 65535], "tongue doe curse enter s dromio dro": [0, 65535], "doe curse enter s dromio dro here": [0, 65535], "curse enter s dromio dro here goe": [0, 65535], "enter s dromio dro here goe the": [0, 65535], "s dromio dro here goe the deske": [0, 65535], "dromio dro here goe the deske the": [0, 65535], "dro here goe the deske the purse": [0, 65535], "here goe the deske the purse sweet": [0, 65535], "goe the deske the purse sweet now": [0, 65535], "the deske the purse sweet now make": [0, 65535], "deske the purse sweet now make haste": [0, 65535], "the purse sweet now make haste luc": [0, 65535], "purse sweet now make haste luc how": [0, 65535], "sweet now make haste luc how hast": [0, 65535], "now make haste luc how hast thou": [0, 65535], "make haste luc how hast thou lost": [0, 65535], "haste luc how hast thou lost thy": [0, 65535], "luc how hast thou lost thy breath": [0, 65535], "how hast thou lost thy breath s": [0, 65535], "hast thou lost thy breath s dro": [0, 65535], "thou lost thy breath s dro by": [0, 65535], "lost thy breath s dro by running": [0, 65535], "thy breath s dro by running fast": [0, 65535], "breath s dro by running fast adr": [0, 65535], "s dro by running fast adr where": [0, 65535], "dro by running fast adr where is": [0, 65535], "by running fast adr where is thy": [0, 65535], "running fast adr where is thy master": [0, 65535], "fast adr where is thy master dromio": [0, 65535], "adr where is thy master dromio is": [0, 65535], "where is thy master dromio is he": [0, 65535], "is thy master dromio is he well": [0, 65535], "thy master dromio is he well s": [0, 65535], "master dromio is he well s dro": [0, 65535], "dromio is he well s dro no": [0, 65535], "is he well s dro no he's": [0, 65535], "he well s dro no he's in": [0, 65535], "well s dro no he's in tartar": [0, 65535], "s dro no he's in tartar limbo": [0, 65535], "dro no he's in tartar limbo worse": [0, 65535], "no he's in tartar limbo worse then": [0, 65535], "he's in tartar limbo worse then hell": [0, 65535], "in tartar limbo worse then hell a": [0, 65535], "tartar limbo worse then hell a diuell": [0, 65535], "limbo worse then hell a diuell in": [0, 65535], "worse then hell a diuell in an": [0, 65535], "then hell a diuell in an euerlasting": [0, 65535], "hell a diuell in an euerlasting garment": [0, 65535], "a diuell in an euerlasting garment hath": [0, 65535], "diuell in an euerlasting garment hath him": [0, 65535], "in an euerlasting garment hath him on": [0, 65535], "an euerlasting garment hath him on whose": [0, 65535], "euerlasting garment hath him on whose hard": [0, 65535], "garment hath him on whose hard heart": [0, 65535], "hath him on whose hard heart is": [0, 65535], "him on whose hard heart is button'd": [0, 65535], "on whose hard heart is button'd vp": [0, 65535], "whose hard heart is button'd vp with": [0, 65535], "hard heart is button'd vp with steele": [0, 65535], "heart is button'd vp with steele a": [0, 65535], "is button'd vp with steele a feind": [0, 65535], "button'd vp with steele a feind a": [0, 65535], "vp with steele a feind a fairie": [0, 65535], "with steele a feind a fairie pittilesse": [0, 65535], "steele a feind a fairie pittilesse and": [0, 65535], "a feind a fairie pittilesse and ruffe": [0, 65535], "feind a fairie pittilesse and ruffe a": [0, 65535], "a fairie pittilesse and ruffe a wolfe": [0, 65535], "fairie pittilesse and ruffe a wolfe nay": [0, 65535], "pittilesse and ruffe a wolfe nay worse": [0, 65535], "and ruffe a wolfe nay worse a": [0, 65535], "ruffe a wolfe nay worse a fellow": [0, 65535], "a wolfe nay worse a fellow all": [0, 65535], "wolfe nay worse a fellow all in": [0, 65535], "nay worse a fellow all in buffe": [0, 65535], "worse a fellow all in buffe a": [0, 65535], "a fellow all in buffe a back": [0, 65535], "fellow all in buffe a back friend": [0, 65535], "all in buffe a back friend a": [0, 65535], "in buffe a back friend a shoulder": [0, 65535], "buffe a back friend a shoulder clapper": [0, 65535], "a back friend a shoulder clapper one": [0, 65535], "back friend a shoulder clapper one that": [0, 65535], "friend a shoulder clapper one that countermads": [0, 65535], "a shoulder clapper one that countermads the": [0, 65535], "shoulder clapper one that countermads the passages": [0, 65535], "clapper one that countermads the passages of": [0, 65535], "one that countermads the passages of allies": [0, 65535], "that countermads the passages of allies creekes": [0, 65535], "countermads the passages of allies creekes and": [0, 65535], "the passages of allies creekes and narrow": [0, 65535], "passages of allies creekes and narrow lands": [0, 65535], "of allies creekes and narrow lands a": [0, 65535], "allies creekes and narrow lands a hound": [0, 65535], "creekes and narrow lands a hound that": [0, 65535], "and narrow lands a hound that runs": [0, 65535], "narrow lands a hound that runs counter": [0, 65535], "lands a hound that runs counter and": [0, 65535], "a hound that runs counter and yet": [0, 65535], "hound that runs counter and yet draws": [0, 65535], "that runs counter and yet draws drifoot": [0, 65535], "runs counter and yet draws drifoot well": [0, 65535], "counter and yet draws drifoot well one": [0, 65535], "and yet draws drifoot well one that": [0, 65535], "yet draws drifoot well one that before": [0, 65535], "draws drifoot well one that before the": [0, 65535], "drifoot well one that before the iudgment": [0, 65535], "well one that before the iudgment carries": [0, 65535], "one that before the iudgment carries poore": [0, 65535], "that before the iudgment carries poore soules": [0, 65535], "before the iudgment carries poore soules to": [0, 65535], "the iudgment carries poore soules to hel": [0, 65535], "iudgment carries poore soules to hel adr": [0, 65535], "carries poore soules to hel adr why": [0, 65535], "poore soules to hel adr why man": [0, 65535], "soules to hel adr why man what": [0, 65535], "to hel adr why man what is": [0, 65535], "hel adr why man what is the": [0, 65535], "adr why man what is the matter": [0, 65535], "why man what is the matter s": [0, 65535], "man what is the matter s dro": [0, 65535], "what is the matter s dro i": [0, 65535], "is the matter s dro i doe": [0, 65535], "the matter s dro i doe not": [0, 65535], "matter s dro i doe not know": [0, 65535], "s dro i doe not know the": [0, 65535], "dro i doe not know the matter": [0, 65535], "i doe not know the matter hee": [0, 65535], "doe not know the matter hee is": [0, 65535], "not know the matter hee is rested": [0, 65535], "know the matter hee is rested on": [0, 65535], "the matter hee is rested on the": [0, 65535], "matter hee is rested on the case": [0, 65535], "hee is rested on the case adr": [0, 65535], "is rested on the case adr what": [0, 65535], "rested on the case adr what is": [0, 65535], "on the case adr what is he": [0, 65535], "the case adr what is he arrested": [0, 65535], "case adr what is he arrested tell": [0, 65535], "adr what is he arrested tell me": [0, 65535], "what is he arrested tell me at": [0, 65535], "is he arrested tell me at whose": [0, 65535], "he arrested tell me at whose suite": [0, 65535], "arrested tell me at whose suite s": [0, 65535], "tell me at whose suite s dro": [0, 65535], "me at whose suite s dro i": [0, 65535], "at whose suite s dro i know": [0, 65535], "whose suite s dro i know not": [0, 65535], "suite s dro i know not at": [0, 65535], "s dro i know not at whose": [0, 65535], "dro i know not at whose suite": [0, 65535], "i know not at whose suite he": [0, 65535], "know not at whose suite he is": [0, 65535], "not at whose suite he is arested": [0, 65535], "at whose suite he is arested well": [0, 65535], "whose suite he is arested well but": [0, 65535], "suite he is arested well but is": [0, 65535], "he is arested well but is in": [0, 65535], "is arested well but is in a": [0, 65535], "arested well but is in a suite": [0, 65535], "well but is in a suite of": [0, 65535], "but is in a suite of buffe": [0, 65535], "is in a suite of buffe which": [0, 65535], "in a suite of buffe which rested": [0, 65535], "a suite of buffe which rested him": [0, 65535], "suite of buffe which rested him that": [0, 65535], "of buffe which rested him that can": [0, 65535], "buffe which rested him that can i": [0, 65535], "which rested him that can i tell": [0, 65535], "rested him that can i tell will": [0, 65535], "him that can i tell will you": [0, 65535], "that can i tell will you send": [0, 65535], "can i tell will you send him": [0, 65535], "i tell will you send him mistris": [0, 65535], "tell will you send him mistris redemption": [0, 65535], "will you send him mistris redemption the": [0, 65535], "you send him mistris redemption the monie": [0, 65535], "send him mistris redemption the monie in": [0, 65535], "him mistris redemption the monie in his": [0, 65535], "mistris redemption the monie in his deske": [0, 65535], "redemption the monie in his deske adr": [0, 65535], "the monie in his deske adr go": [0, 65535], "monie in his deske adr go fetch": [0, 65535], "in his deske adr go fetch it": [0, 65535], "his deske adr go fetch it sister": [0, 65535], "deske adr go fetch it sister this": [0, 65535], "adr go fetch it sister this i": [0, 65535], "go fetch it sister this i wonder": [0, 65535], "fetch it sister this i wonder at": [0, 65535], "it sister this i wonder at exit": [0, 65535], "sister this i wonder at exit luciana": [0, 65535], "this i wonder at exit luciana thus": [0, 65535], "i wonder at exit luciana thus he": [0, 65535], "wonder at exit luciana thus he vnknowne": [0, 65535], "at exit luciana thus he vnknowne to": [0, 65535], "exit luciana thus he vnknowne to me": [0, 65535], "luciana thus he vnknowne to me should": [0, 65535], "thus he vnknowne to me should be": [0, 65535], "he vnknowne to me should be in": [0, 65535], "vnknowne to me should be in debt": [0, 65535], "to me should be in debt tell": [0, 65535], "me should be in debt tell me": [0, 65535], "should be in debt tell me was": [0, 65535], "be in debt tell me was he": [0, 65535], "in debt tell me was he arested": [0, 65535], "debt tell me was he arested on": [0, 65535], "tell me was he arested on a": [0, 65535], "me was he arested on a band": [0, 65535], "was he arested on a band s": [0, 65535], "he arested on a band s dro": [0, 65535], "arested on a band s dro not": [0, 65535], "on a band s dro not on": [0, 65535], "a band s dro not on a": [0, 65535], "band s dro not on a band": [0, 65535], "s dro not on a band but": [0, 65535], "dro not on a band but on": [0, 65535], "not on a band but on a": [0, 65535], "on a band but on a stronger": [0, 65535], "a band but on a stronger thing": [0, 65535], "band but on a stronger thing a": [0, 65535], "but on a stronger thing a chaine": [0, 65535], "on a stronger thing a chaine a": [0, 65535], "a stronger thing a chaine a chaine": [0, 65535], "stronger thing a chaine a chaine doe": [0, 65535], "thing a chaine a chaine doe you": [0, 65535], "a chaine a chaine doe you not": [0, 65535], "chaine a chaine doe you not here": [0, 65535], "a chaine doe you not here it": [0, 65535], "chaine doe you not here it ring": [0, 65535], "doe you not here it ring adria": [0, 65535], "you not here it ring adria what": [0, 65535], "not here it ring adria what the": [0, 65535], "here it ring adria what the chaine": [0, 65535], "it ring adria what the chaine s": [0, 65535], "ring adria what the chaine s dro": [0, 65535], "adria what the chaine s dro no": [0, 65535], "what the chaine s dro no no": [0, 65535], "the chaine s dro no no the": [0, 65535], "chaine s dro no no the bell": [0, 65535], "s dro no no the bell 'tis": [0, 65535], "dro no no the bell 'tis time": [0, 65535], "no no the bell 'tis time that": [0, 65535], "no the bell 'tis time that i": [0, 65535], "the bell 'tis time that i were": [0, 65535], "bell 'tis time that i were gone": [0, 65535], "'tis time that i were gone it": [0, 65535], "time that i were gone it was": [0, 65535], "that i were gone it was two": [0, 65535], "i were gone it was two ere": [0, 65535], "were gone it was two ere i": [0, 65535], "gone it was two ere i left": [0, 65535], "it was two ere i left him": [0, 65535], "was two ere i left him and": [0, 65535], "two ere i left him and now": [0, 65535], "ere i left him and now the": [0, 65535], "i left him and now the clocke": [0, 65535], "left him and now the clocke strikes": [0, 65535], "him and now the clocke strikes one": [0, 65535], "and now the clocke strikes one adr": [0, 65535], "now the clocke strikes one adr the": [0, 65535], "the clocke strikes one adr the houres": [0, 65535], "clocke strikes one adr the houres come": [0, 65535], "strikes one adr the houres come backe": [0, 65535], "one adr the houres come backe that": [0, 65535], "adr the houres come backe that did": [0, 65535], "the houres come backe that did i": [0, 65535], "houres come backe that did i neuer": [0, 65535], "come backe that did i neuer here": [0, 65535], "backe that did i neuer here s": [0, 65535], "that did i neuer here s dro": [0, 65535], "did i neuer here s dro oh": [0, 65535], "i neuer here s dro oh yes": [0, 65535], "neuer here s dro oh yes if": [0, 65535], "here s dro oh yes if any": [0, 65535], "s dro oh yes if any houre": [0, 65535], "dro oh yes if any houre meete": [0, 65535], "oh yes if any houre meete a": [0, 65535], "yes if any houre meete a serieant": [0, 65535], "if any houre meete a serieant a": [0, 65535], "any houre meete a serieant a turnes": [0, 65535], "houre meete a serieant a turnes backe": [0, 65535], "meete a serieant a turnes backe for": [0, 65535], "a serieant a turnes backe for verie": [0, 65535], "serieant a turnes backe for verie feare": [0, 65535], "a turnes backe for verie feare adri": [0, 65535], "turnes backe for verie feare adri as": [0, 65535], "backe for verie feare adri as if": [0, 65535], "for verie feare adri as if time": [0, 65535], "verie feare adri as if time were": [0, 65535], "feare adri as if time were in": [0, 65535], "adri as if time were in debt": [0, 65535], "as if time were in debt how": [0, 65535], "if time were in debt how fondly": [0, 65535], "time were in debt how fondly do'st": [0, 65535], "were in debt how fondly do'st thou": [0, 65535], "in debt how fondly do'st thou reason": [0, 65535], "debt how fondly do'st thou reason s": [0, 65535], "how fondly do'st thou reason s dro": [0, 65535], "fondly do'st thou reason s dro time": [0, 65535], "do'st thou reason s dro time is": [0, 65535], "thou reason s dro time is a": [0, 65535], "reason s dro time is a verie": [0, 65535], "s dro time is a verie bankerout": [0, 65535], "dro time is a verie bankerout and": [0, 65535], "time is a verie bankerout and owes": [0, 65535], "is a verie bankerout and owes more": [0, 65535], "a verie bankerout and owes more then": [0, 65535], "verie bankerout and owes more then he's": [0, 65535], "bankerout and owes more then he's worth": [0, 65535], "and owes more then he's worth to": [0, 65535], "owes more then he's worth to season": [0, 65535], "more then he's worth to season nay": [0, 65535], "then he's worth to season nay he's": [0, 65535], "he's worth to season nay he's a": [0, 65535], "worth to season nay he's a theefe": [0, 65535], "to season nay he's a theefe too": [0, 65535], "season nay he's a theefe too haue": [0, 65535], "nay he's a theefe too haue you": [0, 65535], "he's a theefe too haue you not": [0, 65535], "a theefe too haue you not heard": [0, 65535], "theefe too haue you not heard men": [0, 65535], "too haue you not heard men say": [0, 65535], "haue you not heard men say that": [0, 65535], "you not heard men say that time": [0, 65535], "not heard men say that time comes": [0, 65535], "heard men say that time comes stealing": [0, 65535], "men say that time comes stealing on": [0, 65535], "say that time comes stealing on by": [0, 65535], "that time comes stealing on by night": [0, 65535], "time comes stealing on by night and": [0, 65535], "comes stealing on by night and day": [0, 65535], "stealing on by night and day if": [0, 65535], "on by night and day if i": [0, 65535], "by night and day if i be": [0, 65535], "night and day if i be in": [0, 65535], "and day if i be in debt": [0, 65535], "day if i be in debt and": [0, 65535], "if i be in debt and theft": [0, 65535], "i be in debt and theft and": [0, 65535], "be in debt and theft and a": [0, 65535], "in debt and theft and a serieant": [0, 65535], "debt and theft and a serieant in": [0, 65535], "and theft and a serieant in the": [0, 65535], "theft and a serieant in the way": [0, 65535], "and a serieant in the way hath": [0, 65535], "a serieant in the way hath he": [0, 65535], "serieant in the way hath he not": [0, 65535], "in the way hath he not reason": [0, 65535], "the way hath he not reason to": [0, 65535], "way hath he not reason to turne": [0, 65535], "hath he not reason to turne backe": [0, 65535], "he not reason to turne backe an": [0, 65535], "not reason to turne backe an houre": [0, 65535], "reason to turne backe an houre in": [0, 65535], "to turne backe an houre in a": [0, 65535], "turne backe an houre in a day": [0, 65535], "backe an houre in a day enter": [0, 65535], "an houre in a day enter luciana": [0, 65535], "houre in a day enter luciana adr": [0, 65535], "in a day enter luciana adr go": [0, 65535], "a day enter luciana adr go dromio": [0, 65535], "day enter luciana adr go dromio there's": [0, 65535], "enter luciana adr go dromio there's the": [0, 65535], "luciana adr go dromio there's the monie": [0, 65535], "adr go dromio there's the monie beare": [0, 65535], "go dromio there's the monie beare it": [0, 65535], "dromio there's the monie beare it straight": [0, 65535], "there's the monie beare it straight and": [0, 65535], "the monie beare it straight and bring": [0, 65535], "monie beare it straight and bring thy": [0, 65535], "beare it straight and bring thy master": [0, 65535], "it straight and bring thy master home": [0, 65535], "straight and bring thy master home imediately": [0, 65535], "and bring thy master home imediately come": [0, 65535], "bring thy master home imediately come sister": [0, 65535], "thy master home imediately come sister i": [0, 65535], "master home imediately come sister i am": [0, 65535], "home imediately come sister i am prest": [0, 65535], "imediately come sister i am prest downe": [0, 65535], "come sister i am prest downe with": [0, 65535], "sister i am prest downe with conceit": [0, 65535], "i am prest downe with conceit conceit": [0, 65535], "am prest downe with conceit conceit my": [0, 65535], "prest downe with conceit conceit my comfort": [0, 65535], "downe with conceit conceit my comfort and": [0, 65535], "with conceit conceit my comfort and my": [0, 65535], "conceit conceit my comfort and my iniurie": [0, 65535], "conceit my comfort and my iniurie exit": [0, 65535], "my comfort and my iniurie exit enter": [0, 65535], "comfort and my iniurie exit enter antipholus": [0, 65535], "and my iniurie exit enter antipholus siracusia": [0, 65535], "my iniurie exit enter antipholus siracusia there's": [0, 65535], "iniurie exit enter antipholus siracusia there's not": [0, 65535], "exit enter antipholus siracusia there's not a": [0, 65535], "enter antipholus siracusia there's not a man": [0, 65535], "antipholus siracusia there's not a man i": [0, 65535], "siracusia there's not a man i meete": [0, 65535], "there's not a man i meete but": [0, 65535], "not a man i meete but doth": [0, 65535], "a man i meete but doth salute": [0, 65535], "man i meete but doth salute me": [0, 65535], "i meete but doth salute me as": [0, 65535], "meete but doth salute me as if": [0, 65535], "but doth salute me as if i": [0, 65535], "doth salute me as if i were": [0, 65535], "salute me as if i were their": [0, 65535], "me as if i were their well": [0, 65535], "as if i were their well acquainted": [0, 65535], "if i were their well acquainted friend": [0, 65535], "i were their well acquainted friend and": [0, 65535], "were their well acquainted friend and euerie": [0, 65535], "their well acquainted friend and euerie one": [0, 65535], "well acquainted friend and euerie one doth": [0, 65535], "acquainted friend and euerie one doth call": [0, 65535], "friend and euerie one doth call me": [0, 65535], "and euerie one doth call me by": [0, 65535], "euerie one doth call me by my": [0, 65535], "one doth call me by my name": [0, 65535], "doth call me by my name some": [0, 65535], "call me by my name some tender": [0, 65535], "me by my name some tender monie": [0, 65535], "by my name some tender monie to": [0, 65535], "my name some tender monie to me": [0, 65535], "name some tender monie to me some": [0, 65535], "some tender monie to me some inuite": [0, 65535], "tender monie to me some inuite me": [0, 65535], "monie to me some inuite me some": [0, 65535], "to me some inuite me some other": [0, 65535], "me some inuite me some other giue": [0, 65535], "some inuite me some other giue me": [0, 65535], "inuite me some other giue me thankes": [0, 65535], "me some other giue me thankes for": [0, 65535], "some other giue me thankes for kindnesses": [0, 65535], "other giue me thankes for kindnesses some": [0, 65535], "giue me thankes for kindnesses some offer": [0, 65535], "me thankes for kindnesses some offer me": [0, 65535], "thankes for kindnesses some offer me commodities": [0, 65535], "for kindnesses some offer me commodities to": [0, 65535], "kindnesses some offer me commodities to buy": [0, 65535], "some offer me commodities to buy euen": [0, 65535], "offer me commodities to buy euen now": [0, 65535], "me commodities to buy euen now a": [0, 65535], "commodities to buy euen now a tailor": [0, 65535], "to buy euen now a tailor cal'd": [0, 65535], "buy euen now a tailor cal'd me": [0, 65535], "euen now a tailor cal'd me in": [0, 65535], "now a tailor cal'd me in his": [0, 65535], "a tailor cal'd me in his shop": [0, 65535], "tailor cal'd me in his shop and": [0, 65535], "cal'd me in his shop and show'd": [0, 65535], "me in his shop and show'd me": [0, 65535], "in his shop and show'd me silkes": [0, 65535], "his shop and show'd me silkes that": [0, 65535], "shop and show'd me silkes that he": [0, 65535], "and show'd me silkes that he had": [0, 65535], "show'd me silkes that he had bought": [0, 65535], "me silkes that he had bought for": [0, 65535], "silkes that he had bought for me": [0, 65535], "that he had bought for me and": [0, 65535], "he had bought for me and therewithall": [0, 65535], "had bought for me and therewithall tooke": [0, 65535], "bought for me and therewithall tooke measure": [0, 65535], "for me and therewithall tooke measure of": [0, 65535], "me and therewithall tooke measure of my": [0, 65535], "and therewithall tooke measure of my body": [0, 65535], "therewithall tooke measure of my body sure": [0, 65535], "tooke measure of my body sure these": [0, 65535], "measure of my body sure these are": [0, 65535], "of my body sure these are but": [0, 65535], "my body sure these are but imaginarie": [0, 65535], "body sure these are but imaginarie wiles": [0, 65535], "sure these are but imaginarie wiles and": [0, 65535], "these are but imaginarie wiles and lapland": [0, 65535], "are but imaginarie wiles and lapland sorcerers": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "wiles and lapland sorcerers inhabite here enter": [0, 65535], "and lapland sorcerers inhabite here enter dromio": [0, 65535], "lapland sorcerers inhabite here enter dromio sir": [0, 65535], "sorcerers inhabite here enter dromio sir s": [0, 65535], "inhabite here enter dromio sir s dro": [0, 65535], "here enter dromio sir s dro master": [0, 65535], "enter dromio sir s dro master here's": [0, 65535], "dromio sir s dro master here's the": [0, 65535], "sir s dro master here's the gold": [0, 65535], "s dro master here's the gold you": [0, 65535], "dro master here's the gold you sent": [0, 65535], "master here's the gold you sent me": [0, 65535], "here's the gold you sent me for": [0, 65535], "the gold you sent me for what": [0, 65535], "gold you sent me for what haue": [0, 65535], "you sent me for what haue you": [0, 65535], "sent me for what haue you got": [0, 65535], "me for what haue you got the": [0, 65535], "for what haue you got the picture": [0, 65535], "what haue you got the picture of": [0, 65535], "haue you got the picture of old": [0, 65535], "you got the picture of old adam": [0, 65535], "got the picture of old adam new": [0, 65535], "the picture of old adam new apparel'd": [0, 65535], "picture of old adam new apparel'd ant": [0, 65535], "of old adam new apparel'd ant what": [0, 65535], "old adam new apparel'd ant what gold": [0, 65535], "adam new apparel'd ant what gold is": [0, 65535], "new apparel'd ant what gold is this": [0, 65535], "apparel'd ant what gold is this what": [0, 65535], "ant what gold is this what adam": [0, 65535], "what gold is this what adam do'st": [0, 65535], "gold is this what adam do'st thou": [0, 65535], "is this what adam do'st thou meane": [0, 65535], "this what adam do'st thou meane s": [0, 65535], "what adam do'st thou meane s dro": [0, 65535], "adam do'st thou meane s dro not": [0, 65535], "do'st thou meane s dro not that": [0, 65535], "thou meane s dro not that adam": [0, 65535], "meane s dro not that adam that": [0, 65535], "s dro not that adam that kept": [0, 65535], "dro not that adam that kept the": [0, 65535], "not that adam that kept the paradise": [0, 65535], "that adam that kept the paradise but": [0, 65535], "adam that kept the paradise but that": [0, 65535], "that kept the paradise but that adam": [0, 65535], "kept the paradise but that adam that": [0, 65535], "the paradise but that adam that keepes": [0, 65535], "paradise but that adam that keepes the": [0, 65535], "but that adam that keepes the prison": [0, 65535], "that adam that keepes the prison hee": [0, 65535], "adam that keepes the prison hee that": [0, 65535], "that keepes the prison hee that goes": [0, 65535], "keepes the prison hee that goes in": [0, 65535], "the prison hee that goes in the": [0, 65535], "prison hee that goes in the calues": [0, 65535], "hee that goes in the calues skin": [0, 65535], "that goes in the calues skin that": [0, 65535], "goes in the calues skin that was": [0, 65535], "in the calues skin that was kil'd": [0, 65535], "the calues skin that was kil'd for": [0, 65535], "calues skin that was kil'd for the": [0, 65535], "skin that was kil'd for the prodigall": [0, 65535], "that was kil'd for the prodigall hee": [0, 65535], "was kil'd for the prodigall hee that": [0, 65535], "kil'd for the prodigall hee that came": [0, 65535], "for the prodigall hee that came behinde": [0, 65535], "the prodigall hee that came behinde you": [0, 65535], "prodigall hee that came behinde you sir": [0, 65535], "hee that came behinde you sir like": [0, 65535], "that came behinde you sir like an": [0, 65535], "came behinde you sir like an euill": [0, 65535], "behinde you sir like an euill angel": [0, 65535], "you sir like an euill angel and": [0, 65535], "sir like an euill angel and bid": [0, 65535], "like an euill angel and bid you": [0, 65535], "an euill angel and bid you forsake": [0, 65535], "euill angel and bid you forsake your": [0, 65535], "angel and bid you forsake your libertie": [0, 65535], "and bid you forsake your libertie ant": [0, 65535], "bid you forsake your libertie ant i": [0, 65535], "you forsake your libertie ant i vnderstand": [0, 65535], "forsake your libertie ant i vnderstand thee": [0, 65535], "your libertie ant i vnderstand thee not": [0, 65535], "libertie ant i vnderstand thee not s": [0, 65535], "ant i vnderstand thee not s dro": [0, 65535], "i vnderstand thee not s dro no": [0, 65535], "vnderstand thee not s dro no why": [0, 65535], "thee not s dro no why 'tis": [0, 65535], "not s dro no why 'tis a": [0, 65535], "s dro no why 'tis a plaine": [0, 65535], "dro no why 'tis a plaine case": [0, 65535], "no why 'tis a plaine case he": [0, 65535], "why 'tis a plaine case he that": [0, 65535], "'tis a plaine case he that went": [0, 65535], "a plaine case he that went like": [0, 65535], "plaine case he that went like a": [0, 65535], "case he that went like a base": [0, 65535], "he that went like a base viole": [0, 65535], "that went like a base viole in": [0, 65535], "went like a base viole in a": [0, 65535], "like a base viole in a case": [0, 65535], "a base viole in a case of": [0, 65535], "base viole in a case of leather": [0, 65535], "viole in a case of leather the": [0, 65535], "in a case of leather the man": [0, 65535], "a case of leather the man sir": [0, 65535], "case of leather the man sir that": [0, 65535], "of leather the man sir that when": [0, 65535], "leather the man sir that when gentlemen": [0, 65535], "the man sir that when gentlemen are": [0, 65535], "man sir that when gentlemen are tired": [0, 65535], "sir that when gentlemen are tired giues": [0, 65535], "that when gentlemen are tired giues them": [0, 65535], "when gentlemen are tired giues them a": [0, 65535], "gentlemen are tired giues them a sob": [0, 65535], "are tired giues them a sob and": [0, 65535], "tired giues them a sob and rests": [0, 65535], "giues them a sob and rests them": [0, 65535], "them a sob and rests them he": [0, 65535], "a sob and rests them he sir": [0, 65535], "sob and rests them he sir that": [0, 65535], "and rests them he sir that takes": [0, 65535], "rests them he sir that takes pittie": [0, 65535], "them he sir that takes pittie on": [0, 65535], "he sir that takes pittie on decaied": [0, 65535], "sir that takes pittie on decaied men": [0, 65535], "that takes pittie on decaied men and": [0, 65535], "takes pittie on decaied men and giues": [0, 65535], "pittie on decaied men and giues them": [0, 65535], "on decaied men and giues them suites": [0, 65535], "decaied men and giues them suites of": [0, 65535], "men and giues them suites of durance": [0, 65535], "and giues them suites of durance he": [0, 65535], "giues them suites of durance he that": [0, 65535], "them suites of durance he that sets": [0, 65535], "suites of durance he that sets vp": [0, 65535], "of durance he that sets vp his": [0, 65535], "durance he that sets vp his rest": [0, 65535], "he that sets vp his rest to": [0, 65535], "that sets vp his rest to doe": [0, 65535], "sets vp his rest to doe more": [0, 65535], "vp his rest to doe more exploits": [0, 65535], "his rest to doe more exploits with": [0, 65535], "rest to doe more exploits with his": [0, 65535], "to doe more exploits with his mace": [0, 65535], "doe more exploits with his mace then": [0, 65535], "more exploits with his mace then a": [0, 65535], "exploits with his mace then a moris": [0, 65535], "with his mace then a moris pike": [0, 65535], "his mace then a moris pike ant": [0, 65535], "mace then a moris pike ant what": [0, 65535], "then a moris pike ant what thou": [0, 65535], "a moris pike ant what thou mean'st": [0, 65535], "moris pike ant what thou mean'st an": [0, 65535], "pike ant what thou mean'st an officer": [0, 65535], "ant what thou mean'st an officer s": [0, 65535], "what thou mean'st an officer s dro": [0, 65535], "thou mean'st an officer s dro i": [0, 65535], "mean'st an officer s dro i sir": [0, 65535], "an officer s dro i sir the": [0, 65535], "officer s dro i sir the serieant": [0, 65535], "s dro i sir the serieant of": [0, 65535], "dro i sir the serieant of the": [0, 65535], "i sir the serieant of the band": [0, 65535], "sir the serieant of the band he": [0, 65535], "the serieant of the band he that": [0, 65535], "serieant of the band he that brings": [0, 65535], "of the band he that brings any": [0, 65535], "the band he that brings any man": [0, 65535], "band he that brings any man to": [0, 65535], "he that brings any man to answer": [0, 65535], "that brings any man to answer it": [0, 65535], "brings any man to answer it that": [0, 65535], "any man to answer it that breakes": [0, 65535], "man to answer it that breakes his": [0, 65535], "to answer it that breakes his band": [0, 65535], "answer it that breakes his band one": [0, 65535], "it that breakes his band one that": [0, 65535], "that breakes his band one that thinkes": [0, 65535], "breakes his band one that thinkes a": [0, 65535], "his band one that thinkes a man": [0, 65535], "band one that thinkes a man alwaies": [0, 65535], "one that thinkes a man alwaies going": [0, 65535], "that thinkes a man alwaies going to": [0, 65535], "thinkes a man alwaies going to bed": [0, 65535], "a man alwaies going to bed and": [0, 65535], "man alwaies going to bed and saies": [0, 65535], "alwaies going to bed and saies god": [0, 65535], "going to bed and saies god giue": [0, 65535], "to bed and saies god giue you": [0, 65535], "bed and saies god giue you good": [0, 65535], "and saies god giue you good rest": [0, 65535], "saies god giue you good rest ant": [0, 65535], "god giue you good rest ant well": [0, 65535], "giue you good rest ant well sir": [0, 65535], "you good rest ant well sir there": [0, 65535], "good rest ant well sir there rest": [0, 65535], "rest ant well sir there rest in": [0, 65535], "ant well sir there rest in your": [0, 65535], "well sir there rest in your foolerie": [0, 65535], "sir there rest in your foolerie is": [0, 65535], "there rest in your foolerie is there": [0, 65535], "rest in your foolerie is there any": [0, 65535], "in your foolerie is there any ships": [0, 65535], "your foolerie is there any ships puts": [0, 65535], "foolerie is there any ships puts forth": [0, 65535], "is there any ships puts forth to": [0, 65535], "there any ships puts forth to night": [0, 65535], "any ships puts forth to night may": [0, 65535], "ships puts forth to night may we": [0, 65535], "puts forth to night may we be": [0, 65535], "forth to night may we be gone": [0, 65535], "to night may we be gone s": [0, 65535], "night may we be gone s dro": [0, 65535], "may we be gone s dro why": [0, 65535], "we be gone s dro why sir": [0, 65535], "be gone s dro why sir i": [0, 65535], "gone s dro why sir i brought": [0, 65535], "s dro why sir i brought you": [0, 65535], "dro why sir i brought you word": [0, 65535], "why sir i brought you word an": [0, 65535], "sir i brought you word an houre": [0, 65535], "i brought you word an houre since": [0, 65535], "brought you word an houre since that": [0, 65535], "you word an houre since that the": [0, 65535], "word an houre since that the barke": [0, 65535], "an houre since that the barke expedition": [0, 65535], "houre since that the barke expedition put": [0, 65535], "since that the barke expedition put forth": [0, 65535], "that the barke expedition put forth to": [0, 65535], "the barke expedition put forth to night": [0, 65535], "barke expedition put forth to night and": [0, 65535], "expedition put forth to night and then": [0, 65535], "put forth to night and then were": [0, 65535], "forth to night and then were you": [0, 65535], "to night and then were you hindred": [0, 65535], "night and then were you hindred by": [0, 65535], "and then were you hindred by the": [0, 65535], "then were you hindred by the serieant": [0, 65535], "were you hindred by the serieant to": [0, 65535], "you hindred by the serieant to tarry": [0, 65535], "hindred by the serieant to tarry for": [0, 65535], "by the serieant to tarry for the": [0, 65535], "the serieant to tarry for the hoy": [0, 65535], "serieant to tarry for the hoy delay": [0, 65535], "to tarry for the hoy delay here": [0, 65535], "tarry for the hoy delay here are": [0, 65535], "for the hoy delay here are the": [0, 65535], "the hoy delay here are the angels": [0, 65535], "hoy delay here are the angels that": [0, 65535], "delay here are the angels that you": [0, 65535], "here are the angels that you sent": [0, 65535], "are the angels that you sent for": [0, 65535], "the angels that you sent for to": [0, 65535], "angels that you sent for to deliuer": [0, 65535], "that you sent for to deliuer you": [0, 65535], "you sent for to deliuer you ant": [0, 65535], "sent for to deliuer you ant the": [0, 65535], "for to deliuer you ant the fellow": [0, 65535], "to deliuer you ant the fellow is": [0, 65535], "deliuer you ant the fellow is distract": [0, 65535], "you ant the fellow is distract and": [0, 65535], "ant the fellow is distract and so": [0, 65535], "the fellow is distract and so am": [0, 65535], "fellow is distract and so am i": [0, 65535], "is distract and so am i and": [0, 65535], "distract and so am i and here": [0, 65535], "and so am i and here we": [0, 65535], "so am i and here we wander": [0, 65535], "am i and here we wander in": [0, 65535], "i and here we wander in illusions": [0, 65535], "and here we wander in illusions some": [0, 65535], "here we wander in illusions some blessed": [0, 65535], "we wander in illusions some blessed power": [0, 65535], "wander in illusions some blessed power deliuer": [0, 65535], "in illusions some blessed power deliuer vs": [0, 65535], "illusions some blessed power deliuer vs from": [0, 65535], "some blessed power deliuer vs from hence": [0, 65535], "blessed power deliuer vs from hence enter": [0, 65535], "power deliuer vs from hence enter a": [0, 65535], "deliuer vs from hence enter a curtizan": [0, 65535], "vs from hence enter a curtizan cur": [0, 65535], "from hence enter a curtizan cur well": [0, 65535], "hence enter a curtizan cur well met": [0, 65535], "enter a curtizan cur well met well": [0, 65535], "a curtizan cur well met well met": [0, 65535], "curtizan cur well met well met master": [0, 65535], "cur well met well met master antipholus": [0, 65535], "well met well met master antipholus i": [0, 65535], "met well met master antipholus i see": [0, 65535], "well met master antipholus i see sir": [0, 65535], "met master antipholus i see sir you": [0, 65535], "master antipholus i see sir you haue": [0, 65535], "antipholus i see sir you haue found": [0, 65535], "i see sir you haue found the": [0, 65535], "see sir you haue found the gold": [0, 65535], "sir you haue found the gold smith": [0, 65535], "you haue found the gold smith now": [0, 65535], "haue found the gold smith now is": [0, 65535], "found the gold smith now is that": [0, 65535], "the gold smith now is that the": [0, 65535], "gold smith now is that the chaine": [0, 65535], "smith now is that the chaine you": [0, 65535], "now is that the chaine you promis'd": [0, 65535], "is that the chaine you promis'd me": [0, 65535], "that the chaine you promis'd me to": [0, 65535], "the chaine you promis'd me to day": [0, 65535], "chaine you promis'd me to day ant": [0, 65535], "you promis'd me to day ant sathan": [0, 65535], "promis'd me to day ant sathan auoide": [0, 65535], "me to day ant sathan auoide i": [0, 65535], "to day ant sathan auoide i charge": [0, 65535], "day ant sathan auoide i charge thee": [0, 65535], "ant sathan auoide i charge thee tempt": [0, 65535], "sathan auoide i charge thee tempt me": [0, 65535], "auoide i charge thee tempt me not": [0, 65535], "i charge thee tempt me not s": [0, 65535], "charge thee tempt me not s dro": [0, 65535], "thee tempt me not s dro master": [0, 65535], "tempt me not s dro master is": [0, 65535], "me not s dro master is this": [0, 65535], "not s dro master is this mistris": [0, 65535], "s dro master is this mistris sathan": [0, 65535], "dro master is this mistris sathan ant": [0, 65535], "master is this mistris sathan ant it": [0, 65535], "is this mistris sathan ant it is": [0, 65535], "this mistris sathan ant it is the": [0, 65535], "mistris sathan ant it is the diuell": [0, 65535], "sathan ant it is the diuell s": [0, 65535], "ant it is the diuell s dro": [0, 65535], "it is the diuell s dro nay": [0, 65535], "is the diuell s dro nay she": [0, 65535], "the diuell s dro nay she is": [0, 65535], "diuell s dro nay she is worse": [0, 65535], "s dro nay she is worse she": [0, 65535], "dro nay she is worse she is": [0, 65535], "nay she is worse she is the": [0, 65535], "she is worse she is the diuels": [0, 65535], "is worse she is the diuels dam": [0, 65535], "worse she is the diuels dam and": [0, 65535], "she is the diuels dam and here": [0, 65535], "is the diuels dam and here she": [0, 65535], "the diuels dam and here she comes": [0, 65535], "diuels dam and here she comes in": [0, 65535], "dam and here she comes in the": [0, 65535], "and here she comes in the habit": [0, 65535], "here she comes in the habit of": [0, 65535], "she comes in the habit of a": [0, 65535], "comes in the habit of a light": [0, 65535], "in the habit of a light wench": [0, 65535], "the habit of a light wench and": [0, 65535], "habit of a light wench and thereof": [0, 65535], "of a light wench and thereof comes": [0, 65535], "a light wench and thereof comes that": [0, 65535], "light wench and thereof comes that the": [0, 65535], "wench and thereof comes that the wenches": [0, 65535], "and thereof comes that the wenches say": [0, 65535], "thereof comes that the wenches say god": [0, 65535], "comes that the wenches say god dam": [0, 65535], "that the wenches say god dam me": [0, 65535], "the wenches say god dam me that's": [0, 65535], "wenches say god dam me that's as": [0, 65535], "say god dam me that's as much": [0, 65535], "god dam me that's as much to": [0, 65535], "dam me that's as much to say": [0, 65535], "me that's as much to say god": [0, 65535], "that's as much to say god make": [0, 65535], "as much to say god make me": [0, 65535], "much to say god make me a": [0, 65535], "to say god make me a light": [0, 65535], "say god make me a light wench": [0, 65535], "god make me a light wench it": [0, 65535], "make me a light wench it is": [0, 65535], "me a light wench it is written": [0, 65535], "a light wench it is written they": [0, 65535], "light wench it is written they appeare": [0, 65535], "wench it is written they appeare to": [0, 65535], "it is written they appeare to men": [0, 65535], "is written they appeare to men like": [0, 65535], "written they appeare to men like angels": [0, 65535], "they appeare to men like angels of": [0, 65535], "appeare to men like angels of light": [0, 65535], "to men like angels of light light": [0, 65535], "men like angels of light light is": [0, 65535], "like angels of light light is an": [0, 65535], "angels of light light is an effect": [0, 65535], "of light light is an effect of": [0, 65535], "light light is an effect of fire": [0, 65535], "light is an effect of fire and": [0, 65535], "is an effect of fire and fire": [0, 65535], "an effect of fire and fire will": [0, 65535], "effect of fire and fire will burne": [0, 65535], "of fire and fire will burne ergo": [0, 65535], "fire and fire will burne ergo light": [0, 65535], "and fire will burne ergo light wenches": [0, 65535], "fire will burne ergo light wenches will": [0, 65535], "will burne ergo light wenches will burne": [0, 65535], "burne ergo light wenches will burne come": [0, 65535], "ergo light wenches will burne come not": [0, 65535], "light wenches will burne come not neere": [0, 65535], "wenches will burne come not neere her": [0, 65535], "will burne come not neere her cur": [0, 65535], "burne come not neere her cur your": [0, 65535], "come not neere her cur your man": [0, 65535], "not neere her cur your man and": [0, 65535], "neere her cur your man and you": [0, 65535], "her cur your man and you are": [0, 65535], "cur your man and you are maruailous": [0, 65535], "your man and you are maruailous merrie": [0, 65535], "man and you are maruailous merrie sir": [0, 65535], "and you are maruailous merrie sir will": [0, 65535], "you are maruailous merrie sir will you": [0, 65535], "are maruailous merrie sir will you goe": [0, 65535], "maruailous merrie sir will you goe with": [0, 65535], "merrie sir will you goe with me": [0, 65535], "sir will you goe with me wee'll": [0, 65535], "will you goe with me wee'll mend": [0, 65535], "you goe with me wee'll mend our": [0, 65535], "goe with me wee'll mend our dinner": [0, 65535], "with me wee'll mend our dinner here": [0, 65535], "me wee'll mend our dinner here s": [0, 65535], "wee'll mend our dinner here s dro": [0, 65535], "mend our dinner here s dro master": [0, 65535], "our dinner here s dro master if": [0, 65535], "dinner here s dro master if do": [0, 65535], "here s dro master if do expect": [0, 65535], "s dro master if do expect spoon": [0, 65535], "dro master if do expect spoon meate": [0, 65535], "master if do expect spoon meate or": [0, 65535], "if do expect spoon meate or bespeake": [0, 65535], "do expect spoon meate or bespeake a": [0, 65535], "expect spoon meate or bespeake a long": [0, 65535], "spoon meate or bespeake a long spoone": [0, 65535], "meate or bespeake a long spoone ant": [0, 65535], "or bespeake a long spoone ant why": [0, 65535], "bespeake a long spoone ant why dromio": [0, 65535], "a long spoone ant why dromio s": [0, 65535], "long spoone ant why dromio s dro": [0, 65535], "spoone ant why dromio s dro marrie": [0, 65535], "ant why dromio s dro marrie he": [0, 65535], "why dromio s dro marrie he must": [0, 65535], "dromio s dro marrie he must haue": [0, 65535], "s dro marrie he must haue a": [0, 65535], "dro marrie he must haue a long": [0, 65535], "marrie he must haue a long spoone": [0, 65535], "he must haue a long spoone that": [0, 65535], "must haue a long spoone that must": [0, 65535], "haue a long spoone that must eate": [0, 65535], "a long spoone that must eate with": [0, 65535], "long spoone that must eate with the": [0, 65535], "spoone that must eate with the diuell": [0, 65535], "that must eate with the diuell ant": [0, 65535], "must eate with the diuell ant auoid": [0, 65535], "eate with the diuell ant auoid then": [0, 65535], "with the diuell ant auoid then fiend": [0, 65535], "the diuell ant auoid then fiend what": [0, 65535], "diuell ant auoid then fiend what tel'st": [0, 65535], "ant auoid then fiend what tel'st thou": [0, 65535], "auoid then fiend what tel'st thou me": [0, 65535], "then fiend what tel'st thou me of": [0, 65535], "fiend what tel'st thou me of supping": [0, 65535], "what tel'st thou me of supping thou": [0, 65535], "tel'st thou me of supping thou art": [0, 65535], "thou me of supping thou art as": [0, 65535], "me of supping thou art as you": [0, 65535], "of supping thou art as you are": [0, 65535], "supping thou art as you are all": [0, 65535], "thou art as you are all a": [0, 65535], "art as you are all a sorceresse": [0, 65535], "as you are all a sorceresse i": [0, 65535], "you are all a sorceresse i coniure": [0, 65535], "are all a sorceresse i coniure thee": [0, 65535], "all a sorceresse i coniure thee to": [0, 65535], "a sorceresse i coniure thee to leaue": [0, 65535], "sorceresse i coniure thee to leaue me": [0, 65535], "i coniure thee to leaue me and": [0, 65535], "coniure thee to leaue me and be": [0, 65535], "thee to leaue me and be gon": [0, 65535], "to leaue me and be gon cur": [0, 65535], "leaue me and be gon cur giue": [0, 65535], "me and be gon cur giue me": [0, 65535], "and be gon cur giue me the": [0, 65535], "be gon cur giue me the ring": [0, 65535], "gon cur giue me the ring of": [0, 65535], "cur giue me the ring of mine": [0, 65535], "giue me the ring of mine you": [0, 65535], "me the ring of mine you had": [0, 65535], "the ring of mine you had at": [0, 65535], "ring of mine you had at dinner": [0, 65535], "of mine you had at dinner or": [0, 65535], "mine you had at dinner or for": [0, 65535], "you had at dinner or for my": [0, 65535], "had at dinner or for my diamond": [0, 65535], "at dinner or for my diamond the": [0, 65535], "dinner or for my diamond the chaine": [0, 65535], "or for my diamond the chaine you": [0, 65535], "for my diamond the chaine you promis'd": [0, 65535], "my diamond the chaine you promis'd and": [0, 65535], "diamond the chaine you promis'd and ile": [0, 65535], "the chaine you promis'd and ile be": [0, 65535], "chaine you promis'd and ile be gone": [0, 65535], "you promis'd and ile be gone sir": [0, 65535], "promis'd and ile be gone sir and": [0, 65535], "and ile be gone sir and not": [0, 65535], "ile be gone sir and not trouble": [0, 65535], "be gone sir and not trouble you": [0, 65535], "gone sir and not trouble you s": [0, 65535], "sir and not trouble you s dro": [0, 65535], "and not trouble you s dro some": [0, 65535], "not trouble you s dro some diuels": [0, 65535], "trouble you s dro some diuels aske": [0, 65535], "you s dro some diuels aske but": [0, 65535], "s dro some diuels aske but the": [0, 65535], "dro some diuels aske but the parings": [0, 65535], "some diuels aske but the parings of": [0, 65535], "diuels aske but the parings of ones": [0, 65535], "aske but the parings of ones naile": [0, 65535], "but the parings of ones naile a": [0, 65535], "the parings of ones naile a rush": [0, 65535], "parings of ones naile a rush a": [0, 65535], "of ones naile a rush a haire": [0, 65535], "ones naile a rush a haire a": [0, 65535], "naile a rush a haire a drop": [0, 65535], "a rush a haire a drop of": [0, 65535], "rush a haire a drop of blood": [0, 65535], "a haire a drop of blood a": [0, 65535], "haire a drop of blood a pin": [0, 65535], "a drop of blood a pin a": [0, 65535], "drop of blood a pin a nut": [0, 65535], "of blood a pin a nut a": [0, 65535], "blood a pin a nut a cherrie": [0, 65535], "a pin a nut a cherrie stone": [0, 65535], "pin a nut a cherrie stone but": [0, 65535], "a nut a cherrie stone but she": [0, 65535], "nut a cherrie stone but she more": [0, 65535], "a cherrie stone but she more couetous": [0, 65535], "cherrie stone but she more couetous wold": [0, 65535], "stone but she more couetous wold haue": [0, 65535], "but she more couetous wold haue a": [0, 65535], "she more couetous wold haue a chaine": [0, 65535], "more couetous wold haue a chaine master": [0, 65535], "couetous wold haue a chaine master be": [0, 65535], "wold haue a chaine master be wise": [0, 65535], "haue a chaine master be wise and": [0, 65535], "a chaine master be wise and if": [0, 65535], "chaine master be wise and if you": [0, 65535], "master be wise and if you giue": [0, 65535], "be wise and if you giue it": [0, 65535], "wise and if you giue it her": [0, 65535], "and if you giue it her the": [0, 65535], "if you giue it her the diuell": [0, 65535], "you giue it her the diuell will": [0, 65535], "giue it her the diuell will shake": [0, 65535], "it her the diuell will shake her": [0, 65535], "her the diuell will shake her chaine": [0, 65535], "the diuell will shake her chaine and": [0, 65535], "diuell will shake her chaine and fright": [0, 65535], "will shake her chaine and fright vs": [0, 65535], "shake her chaine and fright vs with": [0, 65535], "her chaine and fright vs with it": [0, 65535], "chaine and fright vs with it cur": [0, 65535], "and fright vs with it cur i": [0, 65535], "fright vs with it cur i pray": [0, 65535], "vs with it cur i pray you": [0, 65535], "with it cur i pray you sir": [0, 65535], "it cur i pray you sir my": [0, 65535], "cur i pray you sir my ring": [0, 65535], "i pray you sir my ring or": [0, 65535], "pray you sir my ring or else": [0, 65535], "you sir my ring or else the": [0, 65535], "sir my ring or else the chaine": [0, 65535], "my ring or else the chaine i": [0, 65535], "ring or else the chaine i hope": [0, 65535], "or else the chaine i hope you": [0, 65535], "else the chaine i hope you do": [0, 65535], "the chaine i hope you do not": [0, 65535], "chaine i hope you do not meane": [0, 65535], "i hope you do not meane to": [0, 65535], "hope you do not meane to cheate": [0, 65535], "you do not meane to cheate me": [0, 65535], "do not meane to cheate me so": [0, 65535], "not meane to cheate me so ant": [0, 65535], "meane to cheate me so ant auant": [0, 65535], "to cheate me so ant auant thou": [0, 65535], "cheate me so ant auant thou witch": [0, 65535], "me so ant auant thou witch come": [0, 65535], "so ant auant thou witch come dromio": [0, 65535], "ant auant thou witch come dromio let": [0, 65535], "auant thou witch come dromio let vs": [0, 65535], "thou witch come dromio let vs go": [0, 65535], "witch come dromio let vs go s": [0, 65535], "come dromio let vs go s dro": [0, 65535], "dromio let vs go s dro flie": [0, 65535], "let vs go s dro flie pride": [0, 65535], "vs go s dro flie pride saies": [0, 65535], "go s dro flie pride saies the": [0, 65535], "s dro flie pride saies the pea": [0, 65535], "dro flie pride saies the pea cocke": [0, 65535], "flie pride saies the pea cocke mistris": [0, 65535], "pride saies the pea cocke mistris that": [0, 65535], "saies the pea cocke mistris that you": [0, 65535], "the pea cocke mistris that you know": [0, 65535], "pea cocke mistris that you know exit": [0, 65535], "cocke mistris that you know exit cur": [0, 65535], "mistris that you know exit cur now": [0, 65535], "that you know exit cur now out": [0, 65535], "you know exit cur now out of": [0, 65535], "know exit cur now out of doubt": [0, 65535], "exit cur now out of doubt antipholus": [0, 65535], "cur now out of doubt antipholus is": [0, 65535], "now out of doubt antipholus is mad": [0, 65535], "out of doubt antipholus is mad else": [0, 65535], "of doubt antipholus is mad else would": [0, 65535], "doubt antipholus is mad else would he": [0, 65535], "antipholus is mad else would he neuer": [0, 65535], "is mad else would he neuer so": [0, 65535], "mad else would he neuer so demeane": [0, 65535], "else would he neuer so demeane himselfe": [0, 65535], "would he neuer so demeane himselfe a": [0, 65535], "he neuer so demeane himselfe a ring": [0, 65535], "neuer so demeane himselfe a ring he": [0, 65535], "so demeane himselfe a ring he hath": [0, 65535], "demeane himselfe a ring he hath of": [0, 65535], "himselfe a ring he hath of mine": [0, 65535], "a ring he hath of mine worth": [0, 65535], "ring he hath of mine worth fortie": [0, 65535], "he hath of mine worth fortie duckets": [0, 65535], "hath of mine worth fortie duckets and": [0, 65535], "of mine worth fortie duckets and for": [0, 65535], "mine worth fortie duckets and for the": [0, 65535], "worth fortie duckets and for the same": [0, 65535], "fortie duckets and for the same he": [0, 65535], "duckets and for the same he promis'd": [0, 65535], "and for the same he promis'd me": [0, 65535], "for the same he promis'd me a": [0, 65535], "the same he promis'd me a chaine": [0, 65535], "same he promis'd me a chaine both": [0, 65535], "he promis'd me a chaine both one": [0, 65535], "promis'd me a chaine both one and": [0, 65535], "me a chaine both one and other": [0, 65535], "a chaine both one and other he": [0, 65535], "chaine both one and other he denies": [0, 65535], "both one and other he denies me": [0, 65535], "one and other he denies me now": [0, 65535], "and other he denies me now the": [0, 65535], "other he denies me now the reason": [0, 65535], "he denies me now the reason that": [0, 65535], "denies me now the reason that i": [0, 65535], "me now the reason that i gather": [0, 65535], "now the reason that i gather he": [0, 65535], "the reason that i gather he is": [0, 65535], "reason that i gather he is mad": [0, 65535], "that i gather he is mad besides": [0, 65535], "i gather he is mad besides this": [0, 65535], "gather he is mad besides this present": [0, 65535], "he is mad besides this present instance": [0, 65535], "is mad besides this present instance of": [0, 65535], "mad besides this present instance of his": [0, 65535], "besides this present instance of his rage": [0, 65535], "this present instance of his rage is": [0, 65535], "present instance of his rage is a": [0, 65535], "instance of his rage is a mad": [0, 65535], "of his rage is a mad tale": [0, 65535], "his rage is a mad tale he": [0, 65535], "rage is a mad tale he told": [0, 65535], "is a mad tale he told to": [0, 65535], "a mad tale he told to day": [0, 65535], "mad tale he told to day at": [0, 65535], "tale he told to day at dinner": [0, 65535], "he told to day at dinner of": [0, 65535], "told to day at dinner of his": [0, 65535], "to day at dinner of his owne": [0, 65535], "day at dinner of his owne doores": [0, 65535], "at dinner of his owne doores being": [0, 65535], "dinner of his owne doores being shut": [0, 65535], "of his owne doores being shut against": [0, 65535], "his owne doores being shut against his": [0, 65535], "owne doores being shut against his entrance": [0, 65535], "doores being shut against his entrance belike": [0, 65535], "being shut against his entrance belike his": [0, 65535], "shut against his entrance belike his wife": [0, 65535], "against his entrance belike his wife acquainted": [0, 65535], "his entrance belike his wife acquainted with": [0, 65535], "entrance belike his wife acquainted with his": [0, 65535], "belike his wife acquainted with his fits": [0, 65535], "his wife acquainted with his fits on": [0, 65535], "wife acquainted with his fits on purpose": [0, 65535], "acquainted with his fits on purpose shut": [0, 65535], "with his fits on purpose shut the": [0, 65535], "his fits on purpose shut the doores": [0, 65535], "fits on purpose shut the doores against": [0, 65535], "on purpose shut the doores against his": [0, 65535], "purpose shut the doores against his way": [0, 65535], "shut the doores against his way my": [0, 65535], "the doores against his way my way": [0, 65535], "doores against his way my way is": [0, 65535], "against his way my way is now": [0, 65535], "his way my way is now to": [0, 65535], "way my way is now to hie": [0, 65535], "my way is now to hie home": [0, 65535], "way is now to hie home to": [0, 65535], "is now to hie home to his": [0, 65535], "now to hie home to his house": [0, 65535], "to hie home to his house and": [0, 65535], "hie home to his house and tell": [0, 65535], "home to his house and tell his": [0, 65535], "to his house and tell his wife": [0, 65535], "his house and tell his wife that": [0, 65535], "house and tell his wife that being": [0, 65535], "and tell his wife that being lunaticke": [0, 65535], "tell his wife that being lunaticke he": [0, 65535], "his wife that being lunaticke he rush'd": [0, 65535], "wife that being lunaticke he rush'd into": [0, 65535], "that being lunaticke he rush'd into my": [0, 65535], "being lunaticke he rush'd into my house": [0, 65535], "lunaticke he rush'd into my house and": [0, 65535], "he rush'd into my house and tooke": [0, 65535], "rush'd into my house and tooke perforce": [0, 65535], "into my house and tooke perforce my": [0, 65535], "my house and tooke perforce my ring": [0, 65535], "house and tooke perforce my ring away": [0, 65535], "and tooke perforce my ring away this": [0, 65535], "tooke perforce my ring away this course": [0, 65535], "perforce my ring away this course i": [0, 65535], "my ring away this course i fittest": [0, 65535], "ring away this course i fittest choose": [0, 65535], "away this course i fittest choose for": [0, 65535], "this course i fittest choose for fortie": [0, 65535], "course i fittest choose for fortie duckets": [0, 65535], "i fittest choose for fortie duckets is": [0, 65535], "fittest choose for fortie duckets is too": [0, 65535], "choose for fortie duckets is too much": [0, 65535], "for fortie duckets is too much to": [0, 65535], "fortie duckets is too much to loose": [0, 65535], "duckets is too much to loose enter": [0, 65535], "is too much to loose enter antipholus": [0, 65535], "too much to loose enter antipholus ephes": [0, 65535], "much to loose enter antipholus ephes with": [0, 65535], "to loose enter antipholus ephes with a": [0, 65535], "loose enter antipholus ephes with a iailor": [0, 65535], "enter antipholus ephes with a iailor an": [0, 65535], "antipholus ephes with a iailor an feare": [0, 65535], "ephes with a iailor an feare me": [0, 65535], "with a iailor an feare me not": [0, 65535], "a iailor an feare me not man": [0, 65535], "iailor an feare me not man i": [0, 65535], "an feare me not man i will": [0, 65535], "feare me not man i will not": [0, 65535], "me not man i will not breake": [0, 65535], "not man i will not breake away": [0, 65535], "man i will not breake away ile": [0, 65535], "i will not breake away ile giue": [0, 65535], "will not breake away ile giue thee": [0, 65535], "not breake away ile giue thee ere": [0, 65535], "breake away ile giue thee ere i": [0, 65535], "away ile giue thee ere i leaue": [0, 65535], "ile giue thee ere i leaue thee": [0, 65535], "giue thee ere i leaue thee so": [0, 65535], "thee ere i leaue thee so much": [0, 65535], "ere i leaue thee so much money": [0, 65535], "i leaue thee so much money to": [0, 65535], "leaue thee so much money to warrant": [0, 65535], "thee so much money to warrant thee": [0, 65535], "so much money to warrant thee as": [0, 65535], "much money to warrant thee as i": [0, 65535], "money to warrant thee as i am": [0, 65535], "to warrant thee as i am rested": [0, 65535], "warrant thee as i am rested for": [0, 65535], "thee as i am rested for my": [0, 65535], "as i am rested for my wife": [0, 65535], "i am rested for my wife is": [0, 65535], "am rested for my wife is in": [0, 65535], "rested for my wife is in a": [0, 65535], "for my wife is in a wayward": [0, 65535], "my wife is in a wayward moode": [0, 65535], "wife is in a wayward moode to": [0, 65535], "is in a wayward moode to day": [0, 65535], "in a wayward moode to day and": [0, 65535], "a wayward moode to day and will": [0, 65535], "wayward moode to day and will not": [0, 65535], "moode to day and will not lightly": [0, 65535], "to day and will not lightly trust": [0, 65535], "day and will not lightly trust the": [0, 65535], "and will not lightly trust the messenger": [0, 65535], "will not lightly trust the messenger that": [0, 65535], "not lightly trust the messenger that i": [0, 65535], "lightly trust the messenger that i should": [0, 65535], "trust the messenger that i should be": [0, 65535], "the messenger that i should be attach'd": [0, 65535], "messenger that i should be attach'd in": [0, 65535], "that i should be attach'd in ephesus": [0, 65535], "i should be attach'd in ephesus i": [0, 65535], "should be attach'd in ephesus i tell": [0, 65535], "be attach'd in ephesus i tell you": [0, 65535], "attach'd in ephesus i tell you 'twill": [0, 65535], "in ephesus i tell you 'twill sound": [0, 65535], "ephesus i tell you 'twill sound harshly": [0, 65535], "i tell you 'twill sound harshly in": [0, 65535], "tell you 'twill sound harshly in her": [0, 65535], "you 'twill sound harshly in her eares": [0, 65535], "'twill sound harshly in her eares enter": [0, 65535], "sound harshly in her eares enter dromio": [0, 65535], "harshly in her eares enter dromio eph": [0, 65535], "in her eares enter dromio eph with": [0, 65535], "her eares enter dromio eph with a": [0, 65535], "eares enter dromio eph with a ropes": [0, 65535], "enter dromio eph with a ropes end": [0, 65535], "dromio eph with a ropes end heere": [0, 65535], "eph with a ropes end heere comes": [0, 65535], "with a ropes end heere comes my": [0, 65535], "a ropes end heere comes my man": [0, 65535], "ropes end heere comes my man i": [0, 65535], "end heere comes my man i thinke": [0, 65535], "heere comes my man i thinke he": [0, 65535], "comes my man i thinke he brings": [0, 65535], "my man i thinke he brings the": [0, 65535], "man i thinke he brings the monie": [0, 65535], "i thinke he brings the monie how": [0, 65535], "thinke he brings the monie how now": [0, 65535], "he brings the monie how now sir": [0, 65535], "brings the monie how now sir haue": [0, 65535], "the monie how now sir haue you": [0, 65535], "monie how now sir haue you that": [0, 65535], "how now sir haue you that i": [0, 65535], "now sir haue you that i sent": [0, 65535], "sir haue you that i sent you": [0, 65535], "haue you that i sent you for": [0, 65535], "you that i sent you for e": [0, 65535], "that i sent you for e dro": [0, 65535], "i sent you for e dro here's": [0, 65535], "sent you for e dro here's that": [0, 65535], "you for e dro here's that i": [0, 65535], "for e dro here's that i warrant": [0, 65535], "e dro here's that i warrant you": [0, 65535], "dro here's that i warrant you will": [0, 65535], "here's that i warrant you will pay": [0, 65535], "that i warrant you will pay them": [0, 65535], "i warrant you will pay them all": [0, 65535], "warrant you will pay them all anti": [0, 65535], "you will pay them all anti but": [0, 65535], "will pay them all anti but where's": [0, 65535], "pay them all anti but where's the": [0, 65535], "them all anti but where's the money": [0, 65535], "all anti but where's the money e": [0, 65535], "anti but where's the money e dro": [0, 65535], "but where's the money e dro why": [0, 65535], "where's the money e dro why sir": [0, 65535], "the money e dro why sir i": [0, 65535], "money e dro why sir i gaue": [0, 65535], "e dro why sir i gaue the": [0, 65535], "dro why sir i gaue the monie": [0, 65535], "why sir i gaue the monie for": [0, 65535], "sir i gaue the monie for the": [0, 65535], "i gaue the monie for the rope": [0, 65535], "gaue the monie for the rope ant": [0, 65535], "the monie for the rope ant fiue": [0, 65535], "monie for the rope ant fiue hundred": [0, 65535], "for the rope ant fiue hundred duckets": [0, 65535], "the rope ant fiue hundred duckets villaine": [0, 65535], "rope ant fiue hundred duckets villaine for": [0, 65535], "ant fiue hundred duckets villaine for a": [0, 65535], "fiue hundred duckets villaine for a rope": [0, 65535], "hundred duckets villaine for a rope e": [0, 65535], "duckets villaine for a rope e dro": [0, 65535], "villaine for a rope e dro ile": [0, 65535], "for a rope e dro ile serue": [0, 65535], "a rope e dro ile serue you": [0, 65535], "rope e dro ile serue you sir": [0, 65535], "e dro ile serue you sir fiue": [0, 65535], "dro ile serue you sir fiue hundred": [0, 65535], "ile serue you sir fiue hundred at": [0, 65535], "serue you sir fiue hundred at the": [0, 65535], "you sir fiue hundred at the rate": [0, 65535], "sir fiue hundred at the rate ant": [0, 65535], "fiue hundred at the rate ant to": [0, 65535], "hundred at the rate ant to what": [0, 65535], "at the rate ant to what end": [0, 65535], "the rate ant to what end did": [0, 65535], "rate ant to what end did i": [0, 65535], "ant to what end did i bid": [0, 65535], "to what end did i bid thee": [0, 65535], "what end did i bid thee hie": [0, 65535], "end did i bid thee hie thee": [0, 65535], "did i bid thee hie thee home": [0, 65535], "i bid thee hie thee home e": [0, 65535], "bid thee hie thee home e dro": [0, 65535], "thee hie thee home e dro to": [0, 65535], "hie thee home e dro to a": [0, 65535], "thee home e dro to a ropes": [0, 65535], "home e dro to a ropes end": [0, 65535], "e dro to a ropes end sir": [0, 65535], "dro to a ropes end sir and": [0, 65535], "to a ropes end sir and to": [0, 65535], "a ropes end sir and to that": [0, 65535], "ropes end sir and to that end": [0, 65535], "end sir and to that end am": [0, 65535], "sir and to that end am i": [0, 65535], "and to that end am i re": [0, 65535], "to that end am i re turn'd": [0, 65535], "that end am i re turn'd ant": [0, 65535], "end am i re turn'd ant and": [0, 65535], "am i re turn'd ant and to": [0, 65535], "i re turn'd ant and to that": [0, 65535], "re turn'd ant and to that end": [0, 65535], "turn'd ant and to that end sir": [0, 65535], "ant and to that end sir i": [0, 65535], "and to that end sir i will": [0, 65535], "to that end sir i will welcome": [0, 65535], "that end sir i will welcome you": [0, 65535], "end sir i will welcome you offi": [0, 65535], "sir i will welcome you offi good": [0, 65535], "i will welcome you offi good sir": [0, 65535], "will welcome you offi good sir be": [0, 65535], "welcome you offi good sir be patient": [0, 65535], "you offi good sir be patient e": [0, 65535], "offi good sir be patient e dro": [0, 65535], "good sir be patient e dro nay": [0, 65535], "sir be patient e dro nay 'tis": [0, 65535], "be patient e dro nay 'tis for": [0, 65535], "patient e dro nay 'tis for me": [0, 65535], "e dro nay 'tis for me to": [0, 65535], "dro nay 'tis for me to be": [0, 65535], "nay 'tis for me to be patient": [0, 65535], "'tis for me to be patient i": [0, 65535], "for me to be patient i am": [0, 65535], "me to be patient i am in": [0, 65535], "to be patient i am in aduersitie": [0, 65535], "be patient i am in aduersitie offi": [0, 65535], "patient i am in aduersitie offi good": [0, 65535], "i am in aduersitie offi good now": [0, 65535], "am in aduersitie offi good now hold": [0, 65535], "in aduersitie offi good now hold thy": [0, 65535], "aduersitie offi good now hold thy tongue": [0, 65535], "offi good now hold thy tongue e": [0, 65535], "good now hold thy tongue e dro": [0, 65535], "now hold thy tongue e dro nay": [0, 65535], "hold thy tongue e dro nay rather": [0, 65535], "thy tongue e dro nay rather perswade": [0, 65535], "tongue e dro nay rather perswade him": [0, 65535], "e dro nay rather perswade him to": [0, 65535], "dro nay rather perswade him to hold": [0, 65535], "nay rather perswade him to hold his": [0, 65535], "rather perswade him to hold his hands": [0, 65535], "perswade him to hold his hands anti": [0, 65535], "him to hold his hands anti thou": [0, 65535], "to hold his hands anti thou whoreson": [0, 65535], "hold his hands anti thou whoreson senselesse": [0, 65535], "his hands anti thou whoreson senselesse villaine": [0, 65535], "hands anti thou whoreson senselesse villaine e": [0, 65535], "anti thou whoreson senselesse villaine e dro": [0, 65535], "thou whoreson senselesse villaine e dro i": [0, 65535], "whoreson senselesse villaine e dro i would": [0, 65535], "senselesse villaine e dro i would i": [0, 65535], "villaine e dro i would i were": [0, 65535], "e dro i would i were senselesse": [0, 65535], "dro i would i were senselesse sir": [0, 65535], "i would i were senselesse sir that": [0, 65535], "would i were senselesse sir that i": [0, 65535], "i were senselesse sir that i might": [0, 65535], "were senselesse sir that i might not": [0, 65535], "senselesse sir that i might not feele": [0, 65535], "sir that i might not feele your": [0, 65535], "that i might not feele your blowes": [0, 65535], "i might not feele your blowes anti": [0, 65535], "might not feele your blowes anti thou": [0, 65535], "not feele your blowes anti thou art": [0, 65535], "feele your blowes anti thou art sensible": [0, 65535], "your blowes anti thou art sensible in": [0, 65535], "blowes anti thou art sensible in nothing": [0, 65535], "anti thou art sensible in nothing but": [0, 65535], "thou art sensible in nothing but blowes": [0, 65535], "art sensible in nothing but blowes and": [0, 65535], "sensible in nothing but blowes and so": [0, 65535], "in nothing but blowes and so is": [0, 65535], "nothing but blowes and so is an": [0, 65535], "but blowes and so is an asse": [0, 65535], "blowes and so is an asse e": [0, 65535], "and so is an asse e dro": [0, 65535], "so is an asse e dro i": [0, 65535], "is an asse e dro i am": [0, 65535], "an asse e dro i am an": [0, 65535], "asse e dro i am an asse": [0, 65535], "e dro i am an asse indeede": [0, 65535], "dro i am an asse indeede you": [0, 65535], "i am an asse indeede you may": [0, 65535], "am an asse indeede you may prooue": [0, 65535], "an asse indeede you may prooue it": [0, 65535], "asse indeede you may prooue it by": [0, 65535], "indeede you may prooue it by my": [0, 65535], "you may prooue it by my long": [0, 65535], "may prooue it by my long eares": [0, 65535], "prooue it by my long eares i": [0, 65535], "it by my long eares i haue": [0, 65535], "by my long eares i haue serued": [0, 65535], "my long eares i haue serued him": [0, 65535], "long eares i haue serued him from": [0, 65535], "eares i haue serued him from the": [0, 65535], "i haue serued him from the houre": [0, 65535], "haue serued him from the houre of": [0, 65535], "serued him from the houre of my": [0, 65535], "him from the houre of my natiuitie": [0, 65535], "from the houre of my natiuitie to": [0, 65535], "the houre of my natiuitie to this": [0, 65535], "houre of my natiuitie to this instant": [0, 65535], "of my natiuitie to this instant and": [0, 65535], "my natiuitie to this instant and haue": [0, 65535], "natiuitie to this instant and haue nothing": [0, 65535], "to this instant and haue nothing at": [0, 65535], "this instant and haue nothing at his": [0, 65535], "instant and haue nothing at his hands": [0, 65535], "and haue nothing at his hands for": [0, 65535], "haue nothing at his hands for my": [0, 65535], "nothing at his hands for my seruice": [0, 65535], "at his hands for my seruice but": [0, 65535], "his hands for my seruice but blowes": [0, 65535], "hands for my seruice but blowes when": [0, 65535], "for my seruice but blowes when i": [0, 65535], "my seruice but blowes when i am": [0, 65535], "seruice but blowes when i am cold": [0, 65535], "but blowes when i am cold he": [0, 65535], "blowes when i am cold he heates": [0, 65535], "when i am cold he heates me": [0, 65535], "i am cold he heates me with": [0, 65535], "am cold he heates me with beating": [0, 65535], "cold he heates me with beating when": [0, 65535], "he heates me with beating when i": [0, 65535], "heates me with beating when i am": [0, 65535], "me with beating when i am warme": [0, 65535], "with beating when i am warme he": [0, 65535], "beating when i am warme he cooles": [0, 65535], "when i am warme he cooles me": [0, 65535], "i am warme he cooles me with": [0, 65535], "am warme he cooles me with beating": [0, 65535], "warme he cooles me with beating i": [0, 65535], "he cooles me with beating i am": [0, 65535], "cooles me with beating i am wak'd": [0, 65535], "me with beating i am wak'd with": [0, 65535], "with beating i am wak'd with it": [0, 65535], "beating i am wak'd with it when": [0, 65535], "i am wak'd with it when i": [0, 65535], "am wak'd with it when i sleepe": [0, 65535], "wak'd with it when i sleepe rais'd": [0, 65535], "with it when i sleepe rais'd with": [0, 65535], "it when i sleepe rais'd with it": [0, 65535], "when i sleepe rais'd with it when": [0, 65535], "i sleepe rais'd with it when i": [0, 65535], "sleepe rais'd with it when i sit": [0, 65535], "rais'd with it when i sit driuen": [0, 65535], "with it when i sit driuen out": [0, 65535], "it when i sit driuen out of": [0, 65535], "when i sit driuen out of doores": [0, 65535], "i sit driuen out of doores with": [0, 65535], "sit driuen out of doores with it": [0, 65535], "driuen out of doores with it when": [0, 65535], "out of doores with it when i": [0, 65535], "of doores with it when i goe": [0, 65535], "doores with it when i goe from": [0, 65535], "with it when i goe from home": [0, 65535], "it when i goe from home welcom'd": [0, 65535], "when i goe from home welcom'd home": [0, 65535], "i goe from home welcom'd home with": [0, 65535], "goe from home welcom'd home with it": [0, 65535], "from home welcom'd home with it when": [0, 65535], "home welcom'd home with it when i": [0, 65535], "welcom'd home with it when i returne": [0, 65535], "home with it when i returne nay": [0, 65535], "with it when i returne nay i": [0, 65535], "it when i returne nay i beare": [0, 65535], "when i returne nay i beare it": [0, 65535], "i returne nay i beare it on": [0, 65535], "returne nay i beare it on my": [0, 65535], "nay i beare it on my shoulders": [0, 65535], "i beare it on my shoulders as": [0, 65535], "beare it on my shoulders as a": [0, 65535], "it on my shoulders as a begger": [0, 65535], "on my shoulders as a begger woont": [0, 65535], "my shoulders as a begger woont her": [0, 65535], "shoulders as a begger woont her brat": [0, 65535], "as a begger woont her brat and": [0, 65535], "a begger woont her brat and i": [0, 65535], "begger woont her brat and i thinke": [0, 65535], "woont her brat and i thinke when": [0, 65535], "her brat and i thinke when he": [0, 65535], "brat and i thinke when he hath": [0, 65535], "and i thinke when he hath lam'd": [0, 65535], "i thinke when he hath lam'd me": [0, 65535], "thinke when he hath lam'd me i": [0, 65535], "when he hath lam'd me i shall": [0, 65535], "he hath lam'd me i shall begge": [0, 65535], "hath lam'd me i shall begge with": [0, 65535], "lam'd me i shall begge with it": [0, 65535], "me i shall begge with it from": [0, 65535], "i shall begge with it from doore": [0, 65535], "shall begge with it from doore to": [0, 65535], "begge with it from doore to doore": [0, 65535], "with it from doore to doore enter": [0, 65535], "it from doore to doore enter adriana": [0, 65535], "from doore to doore enter adriana luciana": [0, 65535], "doore to doore enter adriana luciana courtizan": [0, 65535], "to doore enter adriana luciana courtizan and": [0, 65535], "doore enter adriana luciana courtizan and a": [0, 65535], "enter adriana luciana courtizan and a schoolemaster": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "courtizan and a schoolemaster call'd pinch ant": [0, 65535], "and a schoolemaster call'd pinch ant come": [0, 65535], "a schoolemaster call'd pinch ant come goe": [0, 65535], "schoolemaster call'd pinch ant come goe along": [0, 65535], "call'd pinch ant come goe along my": [0, 65535], "pinch ant come goe along my wife": [0, 65535], "ant come goe along my wife is": [0, 65535], "come goe along my wife is comming": [0, 65535], "goe along my wife is comming yonder": [0, 65535], "along my wife is comming yonder e": [0, 65535], "my wife is comming yonder e dro": [0, 65535], "wife is comming yonder e dro mistris": [0, 65535], "is comming yonder e dro mistris respice": [0, 65535], "comming yonder e dro mistris respice finem": [0, 65535], "yonder e dro mistris respice finem respect": [0, 65535], "e dro mistris respice finem respect your": [0, 65535], "dro mistris respice finem respect your end": [0, 65535], "mistris respice finem respect your end or": [0, 65535], "respice finem respect your end or rather": [0, 65535], "finem respect your end or rather the": [0, 65535], "respect your end or rather the prophesie": [0, 65535], "your end or rather the prophesie like": [0, 65535], "end or rather the prophesie like the": [0, 65535], "or rather the prophesie like the parrat": [0, 65535], "rather the prophesie like the parrat beware": [0, 65535], "the prophesie like the parrat beware the": [0, 65535], "prophesie like the parrat beware the ropes": [0, 65535], "like the parrat beware the ropes end": [0, 65535], "the parrat beware the ropes end anti": [0, 65535], "parrat beware the ropes end anti wilt": [0, 65535], "beware the ropes end anti wilt thou": [0, 65535], "the ropes end anti wilt thou still": [0, 65535], "ropes end anti wilt thou still talke": [0, 65535], "end anti wilt thou still talke beats": [0, 65535], "anti wilt thou still talke beats dro": [0, 65535], "wilt thou still talke beats dro curt": [0, 65535], "thou still talke beats dro curt how": [0, 65535], "still talke beats dro curt how say": [0, 65535], "talke beats dro curt how say you": [0, 65535], "beats dro curt how say you now": [0, 65535], "dro curt how say you now is": [0, 65535], "curt how say you now is not": [0, 65535], "how say you now is not your": [0, 65535], "say you now is not your husband": [0, 65535], "you now is not your husband mad": [0, 65535], "now is not your husband mad adri": [0, 65535], "is not your husband mad adri his": [0, 65535], "not your husband mad adri his inciuility": [0, 65535], "your husband mad adri his inciuility confirmes": [0, 65535], "husband mad adri his inciuility confirmes no": [0, 65535], "mad adri his inciuility confirmes no lesse": [0, 65535], "adri his inciuility confirmes no lesse good": [0, 65535], "his inciuility confirmes no lesse good doctor": [0, 65535], "inciuility confirmes no lesse good doctor pinch": [0, 65535], "confirmes no lesse good doctor pinch you": [0, 65535], "no lesse good doctor pinch you are": [0, 65535], "lesse good doctor pinch you are a": [0, 65535], "good doctor pinch you are a coniurer": [0, 65535], "doctor pinch you are a coniurer establish": [0, 65535], "pinch you are a coniurer establish him": [0, 65535], "you are a coniurer establish him in": [0, 65535], "are a coniurer establish him in his": [0, 65535], "a coniurer establish him in his true": [0, 65535], "coniurer establish him in his true sence": [0, 65535], "establish him in his true sence againe": [0, 65535], "him in his true sence againe and": [0, 65535], "in his true sence againe and i": [0, 65535], "his true sence againe and i will": [0, 65535], "true sence againe and i will please": [0, 65535], "sence againe and i will please you": [0, 65535], "againe and i will please you what": [0, 65535], "and i will please you what you": [0, 65535], "i will please you what you will": [0, 65535], "will please you what you will demand": [0, 65535], "please you what you will demand luc": [0, 65535], "you what you will demand luc alas": [0, 65535], "what you will demand luc alas how": [0, 65535], "you will demand luc alas how fiery": [0, 65535], "will demand luc alas how fiery and": [0, 65535], "demand luc alas how fiery and how": [0, 65535], "luc alas how fiery and how sharpe": [0, 65535], "alas how fiery and how sharpe he": [0, 65535], "how fiery and how sharpe he lookes": [0, 65535], "fiery and how sharpe he lookes cur": [0, 65535], "and how sharpe he lookes cur marke": [0, 65535], "how sharpe he lookes cur marke how": [0, 65535], "sharpe he lookes cur marke how he": [0, 65535], "he lookes cur marke how he trembles": [0, 65535], "lookes cur marke how he trembles in": [0, 65535], "cur marke how he trembles in his": [0, 65535], "marke how he trembles in his extasie": [0, 65535], "how he trembles in his extasie pinch": [0, 65535], "he trembles in his extasie pinch giue": [0, 65535], "trembles in his extasie pinch giue me": [0, 65535], "in his extasie pinch giue me your": [0, 65535], "his extasie pinch giue me your hand": [0, 65535], "extasie pinch giue me your hand and": [0, 65535], "pinch giue me your hand and let": [0, 65535], "giue me your hand and let mee": [0, 65535], "me your hand and let mee feele": [0, 65535], "your hand and let mee feele your": [0, 65535], "hand and let mee feele your pulse": [0, 65535], "and let mee feele your pulse ant": [0, 65535], "let mee feele your pulse ant there": [0, 65535], "mee feele your pulse ant there is": [0, 65535], "feele your pulse ant there is my": [0, 65535], "your pulse ant there is my hand": [0, 65535], "pulse ant there is my hand and": [0, 65535], "ant there is my hand and let": [0, 65535], "there is my hand and let it": [0, 65535], "is my hand and let it feele": [0, 65535], "my hand and let it feele your": [0, 65535], "hand and let it feele your eare": [0, 65535], "and let it feele your eare pinch": [0, 65535], "let it feele your eare pinch i": [0, 65535], "it feele your eare pinch i charge": [0, 65535], "feele your eare pinch i charge thee": [0, 65535], "your eare pinch i charge thee sathan": [0, 65535], "eare pinch i charge thee sathan hous'd": [0, 65535], "pinch i charge thee sathan hous'd within": [0, 65535], "i charge thee sathan hous'd within this": [0, 65535], "charge thee sathan hous'd within this man": [0, 65535], "thee sathan hous'd within this man to": [0, 65535], "sathan hous'd within this man to yeeld": [0, 65535], "hous'd within this man to yeeld possession": [0, 65535], "within this man to yeeld possession to": [0, 65535], "this man to yeeld possession to my": [0, 65535], "man to yeeld possession to my holie": [0, 65535], "to yeeld possession to my holie praiers": [0, 65535], "yeeld possession to my holie praiers and": [0, 65535], "possession to my holie praiers and to": [0, 65535], "to my holie praiers and to thy": [0, 65535], "my holie praiers and to thy state": [0, 65535], "holie praiers and to thy state of": [0, 65535], "praiers and to thy state of darknesse": [0, 65535], "and to thy state of darknesse hie": [0, 65535], "to thy state of darknesse hie thee": [0, 65535], "thy state of darknesse hie thee straight": [0, 65535], "state of darknesse hie thee straight i": [0, 65535], "of darknesse hie thee straight i coniure": [0, 65535], "darknesse hie thee straight i coniure thee": [0, 65535], "hie thee straight i coniure thee by": [0, 65535], "thee straight i coniure thee by all": [0, 65535], "straight i coniure thee by all the": [0, 65535], "i coniure thee by all the saints": [0, 65535], "coniure thee by all the saints in": [0, 65535], "thee by all the saints in heauen": [0, 65535], "by all the saints in heauen anti": [0, 65535], "all the saints in heauen anti peace": [0, 65535], "the saints in heauen anti peace doting": [0, 65535], "saints in heauen anti peace doting wizard": [0, 65535], "in heauen anti peace doting wizard peace": [0, 65535], "heauen anti peace doting wizard peace i": [0, 65535], "anti peace doting wizard peace i am": [0, 65535], "peace doting wizard peace i am not": [0, 65535], "doting wizard peace i am not mad": [0, 65535], "wizard peace i am not mad adr": [0, 65535], "peace i am not mad adr oh": [0, 65535], "i am not mad adr oh that": [0, 65535], "am not mad adr oh that thou": [0, 65535], "not mad adr oh that thou wer't": [0, 65535], "mad adr oh that thou wer't not": [0, 65535], "adr oh that thou wer't not poore": [0, 65535], "oh that thou wer't not poore distressed": [0, 65535], "that thou wer't not poore distressed soule": [0, 65535], "thou wer't not poore distressed soule anti": [0, 65535], "wer't not poore distressed soule anti you": [0, 65535], "not poore distressed soule anti you minion": [0, 65535], "poore distressed soule anti you minion you": [0, 65535], "distressed soule anti you minion you are": [0, 65535], "soule anti you minion you are these": [0, 65535], "anti you minion you are these your": [0, 65535], "you minion you are these your customers": [0, 65535], "minion you are these your customers did": [0, 65535], "you are these your customers did this": [0, 65535], "are these your customers did this companion": [0, 65535], "these your customers did this companion with": [0, 65535], "your customers did this companion with the": [0, 65535], "customers did this companion with the saffron": [0, 65535], "did this companion with the saffron face": [0, 65535], "this companion with the saffron face reuell": [0, 65535], "companion with the saffron face reuell and": [0, 65535], "with the saffron face reuell and feast": [0, 65535], "the saffron face reuell and feast it": [0, 65535], "saffron face reuell and feast it at": [0, 65535], "face reuell and feast it at my": [0, 65535], "reuell and feast it at my house": [0, 65535], "and feast it at my house to": [0, 65535], "feast it at my house to day": [0, 65535], "it at my house to day whil'st": [0, 65535], "at my house to day whil'st vpon": [0, 65535], "my house to day whil'st vpon me": [0, 65535], "house to day whil'st vpon me the": [0, 65535], "to day whil'st vpon me the guiltie": [0, 65535], "day whil'st vpon me the guiltie doores": [0, 65535], "whil'st vpon me the guiltie doores were": [0, 65535], "vpon me the guiltie doores were shut": [0, 65535], "me the guiltie doores were shut and": [0, 65535], "the guiltie doores were shut and i": [0, 65535], "guiltie doores were shut and i denied": [0, 65535], "doores were shut and i denied to": [0, 65535], "were shut and i denied to enter": [0, 65535], "shut and i denied to enter in": [0, 65535], "and i denied to enter in my": [0, 65535], "i denied to enter in my house": [0, 65535], "denied to enter in my house adr": [0, 65535], "to enter in my house adr o": [0, 65535], "enter in my house adr o husband": [0, 65535], "in my house adr o husband god": [0, 65535], "my house adr o husband god doth": [0, 65535], "house adr o husband god doth know": [0, 65535], "adr o husband god doth know you": [0, 65535], "o husband god doth know you din'd": [0, 65535], "husband god doth know you din'd at": [0, 65535], "god doth know you din'd at home": [0, 65535], "doth know you din'd at home where": [0, 65535], "know you din'd at home where would": [0, 65535], "you din'd at home where would you": [0, 65535], "din'd at home where would you had": [0, 65535], "at home where would you had remain'd": [0, 65535], "home where would you had remain'd vntill": [0, 65535], "where would you had remain'd vntill this": [0, 65535], "would you had remain'd vntill this time": [0, 65535], "you had remain'd vntill this time free": [0, 65535], "had remain'd vntill this time free from": [0, 65535], "remain'd vntill this time free from these": [0, 65535], "vntill this time free from these slanders": [0, 65535], "this time free from these slanders and": [0, 65535], "time free from these slanders and this": [0, 65535], "free from these slanders and this open": [0, 65535], "from these slanders and this open shame": [0, 65535], "these slanders and this open shame anti": [0, 65535], "slanders and this open shame anti din'd": [0, 65535], "and this open shame anti din'd at": [0, 65535], "this open shame anti din'd at home": [0, 65535], "open shame anti din'd at home thou": [0, 65535], "shame anti din'd at home thou villaine": [0, 65535], "anti din'd at home thou villaine what": [0, 65535], "din'd at home thou villaine what sayest": [0, 65535], "at home thou villaine what sayest thou": [0, 65535], "home thou villaine what sayest thou dro": [0, 65535], "thou villaine what sayest thou dro sir": [0, 65535], "villaine what sayest thou dro sir sooth": [0, 65535], "what sayest thou dro sir sooth to": [0, 65535], "sayest thou dro sir sooth to say": [0, 65535], "thou dro sir sooth to say you": [0, 65535], "dro sir sooth to say you did": [0, 65535], "sir sooth to say you did not": [0, 65535], "sooth to say you did not dine": [0, 65535], "to say you did not dine at": [0, 65535], "say you did not dine at home": [0, 65535], "you did not dine at home ant": [0, 65535], "did not dine at home ant were": [0, 65535], "not dine at home ant were not": [0, 65535], "dine at home ant were not my": [0, 65535], "at home ant were not my doores": [0, 65535], "home ant were not my doores lockt": [0, 65535], "ant were not my doores lockt vp": [0, 65535], "were not my doores lockt vp and": [0, 65535], "not my doores lockt vp and i": [0, 65535], "my doores lockt vp and i shut": [0, 65535], "doores lockt vp and i shut out": [0, 65535], "lockt vp and i shut out dro": [0, 65535], "vp and i shut out dro perdie": [0, 65535], "and i shut out dro perdie your": [0, 65535], "i shut out dro perdie your doores": [0, 65535], "shut out dro perdie your doores were": [0, 65535], "out dro perdie your doores were lockt": [0, 65535], "dro perdie your doores were lockt and": [0, 65535], "perdie your doores were lockt and you": [0, 65535], "your doores were lockt and you shut": [0, 65535], "doores were lockt and you shut out": [0, 65535], "were lockt and you shut out anti": [0, 65535], "lockt and you shut out anti and": [0, 65535], "and you shut out anti and did": [0, 65535], "you shut out anti and did not": [0, 65535], "shut out anti and did not she": [0, 65535], "out anti and did not she her": [0, 65535], "anti and did not she her selfe": [0, 65535], "and did not she her selfe reuile": [0, 65535], "did not she her selfe reuile me": [0, 65535], "not she her selfe reuile me there": [0, 65535], "she her selfe reuile me there dro": [0, 65535], "her selfe reuile me there dro sans": [0, 65535], "selfe reuile me there dro sans fable": [0, 65535], "reuile me there dro sans fable she": [0, 65535], "me there dro sans fable she her": [0, 65535], "there dro sans fable she her selfe": [0, 65535], "dro sans fable she her selfe reuil'd": [0, 65535], "sans fable she her selfe reuil'd you": [0, 65535], "fable she her selfe reuil'd you there": [0, 65535], "she her selfe reuil'd you there anti": [0, 65535], "her selfe reuil'd you there anti did": [0, 65535], "selfe reuil'd you there anti did not": [0, 65535], "reuil'd you there anti did not her": [0, 65535], "you there anti did not her kitchen": [0, 65535], "there anti did not her kitchen maide": [0, 65535], "anti did not her kitchen maide raile": [0, 65535], "did not her kitchen maide raile taunt": [0, 65535], "not her kitchen maide raile taunt and": [0, 65535], "her kitchen maide raile taunt and scorne": [0, 65535], "kitchen maide raile taunt and scorne me": [0, 65535], "maide raile taunt and scorne me dro": [0, 65535], "raile taunt and scorne me dro certis": [0, 65535], "taunt and scorne me dro certis she": [0, 65535], "and scorne me dro certis she did": [0, 65535], "scorne me dro certis she did the": [0, 65535], "me dro certis she did the kitchin": [0, 65535], "dro certis she did the kitchin vestall": [0, 65535], "certis she did the kitchin vestall scorn'd": [0, 65535], "she did the kitchin vestall scorn'd you": [0, 65535], "did the kitchin vestall scorn'd you ant": [0, 65535], "the kitchin vestall scorn'd you ant and": [0, 65535], "kitchin vestall scorn'd you ant and did": [0, 65535], "vestall scorn'd you ant and did not": [0, 65535], "scorn'd you ant and did not i": [0, 65535], "you ant and did not i in": [0, 65535], "ant and did not i in rage": [0, 65535], "and did not i in rage depart": [0, 65535], "did not i in rage depart from": [0, 65535], "not i in rage depart from thence": [0, 65535], "i in rage depart from thence dro": [0, 65535], "in rage depart from thence dro in": [0, 65535], "rage depart from thence dro in veritie": [0, 65535], "depart from thence dro in veritie you": [0, 65535], "from thence dro in veritie you did": [0, 65535], "thence dro in veritie you did my": [0, 65535], "dro in veritie you did my bones": [0, 65535], "in veritie you did my bones beares": [0, 65535], "veritie you did my bones beares witnesse": [0, 65535], "you did my bones beares witnesse that": [0, 65535], "did my bones beares witnesse that since": [0, 65535], "my bones beares witnesse that since haue": [0, 65535], "bones beares witnesse that since haue felt": [0, 65535], "beares witnesse that since haue felt the": [0, 65535], "witnesse that since haue felt the vigor": [0, 65535], "that since haue felt the vigor of": [0, 65535], "since haue felt the vigor of his": [0, 65535], "haue felt the vigor of his rage": [0, 65535], "felt the vigor of his rage adr": [0, 65535], "the vigor of his rage adr is't": [0, 65535], "vigor of his rage adr is't good": [0, 65535], "of his rage adr is't good to": [0, 65535], "his rage adr is't good to sooth": [0, 65535], "rage adr is't good to sooth him": [0, 65535], "adr is't good to sooth him in": [0, 65535], "is't good to sooth him in these": [0, 65535], "good to sooth him in these contraries": [0, 65535], "to sooth him in these contraries pinch": [0, 65535], "sooth him in these contraries pinch it": [0, 65535], "him in these contraries pinch it is": [0, 65535], "in these contraries pinch it is no": [0, 65535], "these contraries pinch it is no shame": [0, 65535], "contraries pinch it is no shame the": [0, 65535], "pinch it is no shame the fellow": [0, 65535], "it is no shame the fellow finds": [0, 65535], "is no shame the fellow finds his": [0, 65535], "no shame the fellow finds his vaine": [0, 65535], "shame the fellow finds his vaine and": [0, 65535], "the fellow finds his vaine and yeelding": [0, 65535], "fellow finds his vaine and yeelding to": [0, 65535], "finds his vaine and yeelding to him": [0, 65535], "his vaine and yeelding to him humors": [0, 65535], "vaine and yeelding to him humors well": [0, 65535], "and yeelding to him humors well his": [0, 65535], "yeelding to him humors well his frensie": [0, 65535], "to him humors well his frensie ant": [0, 65535], "him humors well his frensie ant thou": [0, 65535], "humors well his frensie ant thou hast": [0, 65535], "well his frensie ant thou hast subborn'd": [0, 65535], "his frensie ant thou hast subborn'd the": [0, 65535], "frensie ant thou hast subborn'd the goldsmith": [0, 65535], "ant thou hast subborn'd the goldsmith to": [0, 65535], "thou hast subborn'd the goldsmith to arrest": [0, 65535], "hast subborn'd the goldsmith to arrest mee": [0, 65535], "subborn'd the goldsmith to arrest mee adr": [0, 65535], "the goldsmith to arrest mee adr alas": [0, 65535], "goldsmith to arrest mee adr alas i": [0, 65535], "to arrest mee adr alas i sent": [0, 65535], "arrest mee adr alas i sent you": [0, 65535], "mee adr alas i sent you monie": [0, 65535], "adr alas i sent you monie to": [0, 65535], "alas i sent you monie to redeeme": [0, 65535], "i sent you monie to redeeme you": [0, 65535], "sent you monie to redeeme you by": [0, 65535], "you monie to redeeme you by dromio": [0, 65535], "monie to redeeme you by dromio heere": [0, 65535], "to redeeme you by dromio heere who": [0, 65535], "redeeme you by dromio heere who came": [0, 65535], "you by dromio heere who came in": [0, 65535], "by dromio heere who came in hast": [0, 65535], "dromio heere who came in hast for": [0, 65535], "heere who came in hast for it": [0, 65535], "who came in hast for it dro": [0, 65535], "came in hast for it dro monie": [0, 65535], "in hast for it dro monie by": [0, 65535], "hast for it dro monie by me": [0, 65535], "for it dro monie by me heart": [0, 65535], "it dro monie by me heart and": [0, 65535], "dro monie by me heart and good": [0, 65535], "monie by me heart and good will": [0, 65535], "by me heart and good will you": [0, 65535], "me heart and good will you might": [0, 65535], "heart and good will you might but": [0, 65535], "and good will you might but surely": [0, 65535], "good will you might but surely master": [0, 65535], "will you might but surely master not": [0, 65535], "you might but surely master not a": [0, 65535], "might but surely master not a ragge": [0, 65535], "but surely master not a ragge of": [0, 65535], "surely master not a ragge of monie": [0, 65535], "master not a ragge of monie ant": [0, 65535], "not a ragge of monie ant wentst": [0, 65535], "a ragge of monie ant wentst not": [0, 65535], "ragge of monie ant wentst not thou": [0, 65535], "of monie ant wentst not thou to": [0, 65535], "monie ant wentst not thou to her": [0, 65535], "ant wentst not thou to her for": [0, 65535], "wentst not thou to her for a": [0, 65535], "not thou to her for a purse": [0, 65535], "thou to her for a purse of": [0, 65535], "to her for a purse of duckets": [0, 65535], "her for a purse of duckets adri": [0, 65535], "for a purse of duckets adri he": [0, 65535], "a purse of duckets adri he came": [0, 65535], "purse of duckets adri he came to": [0, 65535], "of duckets adri he came to me": [0, 65535], "duckets adri he came to me and": [0, 65535], "adri he came to me and i": [0, 65535], "he came to me and i deliuer'd": [0, 65535], "came to me and i deliuer'd it": [0, 65535], "to me and i deliuer'd it luci": [0, 65535], "me and i deliuer'd it luci and": [0, 65535], "and i deliuer'd it luci and i": [0, 65535], "i deliuer'd it luci and i am": [0, 65535], "deliuer'd it luci and i am witnesse": [0, 65535], "it luci and i am witnesse with": [0, 65535], "luci and i am witnesse with her": [0, 65535], "and i am witnesse with her that": [0, 65535], "i am witnesse with her that she": [0, 65535], "am witnesse with her that she did": [0, 65535], "witnesse with her that she did dro": [0, 65535], "with her that she did dro god": [0, 65535], "her that she did dro god and": [0, 65535], "that she did dro god and the": [0, 65535], "she did dro god and the rope": [0, 65535], "did dro god and the rope maker": [0, 65535], "dro god and the rope maker beare": [0, 65535], "god and the rope maker beare me": [0, 65535], "and the rope maker beare me witnesse": [0, 65535], "the rope maker beare me witnesse that": [0, 65535], "rope maker beare me witnesse that i": [0, 65535], "maker beare me witnesse that i was": [0, 65535], "beare me witnesse that i was sent": [0, 65535], "me witnesse that i was sent for": [0, 65535], "witnesse that i was sent for nothing": [0, 65535], "that i was sent for nothing but": [0, 65535], "i was sent for nothing but a": [0, 65535], "was sent for nothing but a rope": [0, 65535], "sent for nothing but a rope pinch": [0, 65535], "for nothing but a rope pinch mistris": [0, 65535], "nothing but a rope pinch mistris both": [0, 65535], "but a rope pinch mistris both man": [0, 65535], "a rope pinch mistris both man and": [0, 65535], "rope pinch mistris both man and master": [0, 65535], "pinch mistris both man and master is": [0, 65535], "mistris both man and master is possest": [0, 65535], "both man and master is possest i": [0, 65535], "man and master is possest i know": [0, 65535], "and master is possest i know it": [0, 65535], "master is possest i know it by": [0, 65535], "is possest i know it by their": [0, 65535], "possest i know it by their pale": [0, 65535], "i know it by their pale and": [0, 65535], "know it by their pale and deadly": [0, 65535], "it by their pale and deadly lookes": [0, 65535], "by their pale and deadly lookes they": [0, 65535], "their pale and deadly lookes they must": [0, 65535], "pale and deadly lookes they must be": [0, 65535], "and deadly lookes they must be bound": [0, 65535], "deadly lookes they must be bound and": [0, 65535], "lookes they must be bound and laide": [0, 65535], "they must be bound and laide in": [0, 65535], "must be bound and laide in some": [0, 65535], "be bound and laide in some darke": [0, 65535], "bound and laide in some darke roome": [0, 65535], "and laide in some darke roome ant": [0, 65535], "laide in some darke roome ant say": [0, 65535], "in some darke roome ant say wherefore": [0, 65535], "some darke roome ant say wherefore didst": [0, 65535], "darke roome ant say wherefore didst thou": [0, 65535], "roome ant say wherefore didst thou locke": [0, 65535], "ant say wherefore didst thou locke me": [0, 65535], "say wherefore didst thou locke me forth": [0, 65535], "wherefore didst thou locke me forth to": [0, 65535], "didst thou locke me forth to day": [0, 65535], "thou locke me forth to day and": [0, 65535], "locke me forth to day and why": [0, 65535], "me forth to day and why dost": [0, 65535], "forth to day and why dost thou": [0, 65535], "to day and why dost thou denie": [0, 65535], "day and why dost thou denie the": [0, 65535], "and why dost thou denie the bagge": [0, 65535], "why dost thou denie the bagge of": [0, 65535], "dost thou denie the bagge of gold": [0, 65535], "thou denie the bagge of gold adr": [0, 65535], "denie the bagge of gold adr i": [0, 65535], "the bagge of gold adr i did": [0, 65535], "bagge of gold adr i did not": [0, 65535], "of gold adr i did not gentle": [0, 65535], "gold adr i did not gentle husband": [0, 65535], "adr i did not gentle husband locke": [0, 65535], "i did not gentle husband locke thee": [0, 65535], "did not gentle husband locke thee forth": [0, 65535], "not gentle husband locke thee forth dro": [0, 65535], "gentle husband locke thee forth dro and": [0, 65535], "husband locke thee forth dro and gentle": [0, 65535], "locke thee forth dro and gentle mr": [0, 65535], "thee forth dro and gentle mr i": [0, 65535], "forth dro and gentle mr i receiu'd": [0, 65535], "dro and gentle mr i receiu'd no": [0, 65535], "and gentle mr i receiu'd no gold": [0, 65535], "gentle mr i receiu'd no gold but": [0, 65535], "mr i receiu'd no gold but i": [0, 65535], "i receiu'd no gold but i confesse": [0, 65535], "receiu'd no gold but i confesse sir": [0, 65535], "no gold but i confesse sir that": [0, 65535], "gold but i confesse sir that we": [0, 65535], "but i confesse sir that we were": [0, 65535], "i confesse sir that we were lock'd": [0, 65535], "confesse sir that we were lock'd out": [0, 65535], "sir that we were lock'd out adr": [0, 65535], "that we were lock'd out adr dissembling": [0, 65535], "we were lock'd out adr dissembling villain": [0, 65535], "were lock'd out adr dissembling villain thou": [0, 65535], "lock'd out adr dissembling villain thou speak'st": [0, 65535], "out adr dissembling villain thou speak'st false": [0, 65535], "adr dissembling villain thou speak'st false in": [0, 65535], "dissembling villain thou speak'st false in both": [0, 65535], "villain thou speak'st false in both ant": [0, 65535], "thou speak'st false in both ant dissembling": [0, 65535], "speak'st false in both ant dissembling harlot": [0, 65535], "false in both ant dissembling harlot thou": [0, 65535], "in both ant dissembling harlot thou art": [0, 65535], "both ant dissembling harlot thou art false": [0, 65535], "ant dissembling harlot thou art false in": [0, 65535], "dissembling harlot thou art false in all": [0, 65535], "harlot thou art false in all and": [0, 65535], "thou art false in all and art": [0, 65535], "art false in all and art confederate": [0, 65535], "false in all and art confederate with": [0, 65535], "in all and art confederate with a": [0, 65535], "all and art confederate with a damned": [0, 65535], "and art confederate with a damned packe": [0, 65535], "art confederate with a damned packe to": [0, 65535], "confederate with a damned packe to make": [0, 65535], "with a damned packe to make a": [0, 65535], "a damned packe to make a loathsome": [0, 65535], "damned packe to make a loathsome abiect": [0, 65535], "packe to make a loathsome abiect scorne": [0, 65535], "to make a loathsome abiect scorne of": [0, 65535], "make a loathsome abiect scorne of me": [0, 65535], "a loathsome abiect scorne of me but": [0, 65535], "loathsome abiect scorne of me but with": [0, 65535], "abiect scorne of me but with these": [0, 65535], "scorne of me but with these nailes": [0, 65535], "of me but with these nailes ile": [0, 65535], "me but with these nailes ile plucke": [0, 65535], "but with these nailes ile plucke out": [0, 65535], "with these nailes ile plucke out these": [0, 65535], "these nailes ile plucke out these false": [0, 65535], "nailes ile plucke out these false eyes": [0, 65535], "ile plucke out these false eyes that": [0, 65535], "plucke out these false eyes that would": [0, 65535], "out these false eyes that would behold": [0, 65535], "these false eyes that would behold in": [0, 65535], "false eyes that would behold in me": [0, 65535], "eyes that would behold in me this": [0, 65535], "that would behold in me this shamefull": [0, 65535], "would behold in me this shamefull sport": [0, 65535], "behold in me this shamefull sport enter": [0, 65535], "in me this shamefull sport enter three": [0, 65535], "me this shamefull sport enter three or": [0, 65535], "this shamefull sport enter three or foure": [0, 65535], "shamefull sport enter three or foure and": [0, 65535], "sport enter three or foure and offer": [0, 65535], "enter three or foure and offer to": [0, 65535], "three or foure and offer to binde": [0, 65535], "or foure and offer to binde him": [0, 65535], "foure and offer to binde him hee": [0, 65535], "and offer to binde him hee striues": [0, 65535], "offer to binde him hee striues adr": [0, 65535], "to binde him hee striues adr oh": [0, 65535], "binde him hee striues adr oh binde": [0, 65535], "him hee striues adr oh binde him": [0, 65535], "hee striues adr oh binde him binde": [0, 65535], "striues adr oh binde him binde him": [0, 65535], "adr oh binde him binde him let": [0, 65535], "oh binde him binde him let him": [0, 65535], "binde him binde him let him not": [0, 65535], "him binde him let him not come": [0, 65535], "binde him let him not come neere": [0, 65535], "him let him not come neere me": [0, 65535], "let him not come neere me pinch": [0, 65535], "him not come neere me pinch more": [0, 65535], "not come neere me pinch more company": [0, 65535], "come neere me pinch more company the": [0, 65535], "neere me pinch more company the fiend": [0, 65535], "me pinch more company the fiend is": [0, 65535], "pinch more company the fiend is strong": [0, 65535], "more company the fiend is strong within": [0, 65535], "company the fiend is strong within him": [0, 65535], "the fiend is strong within him luc": [0, 65535], "fiend is strong within him luc aye": [0, 65535], "is strong within him luc aye me": [0, 65535], "strong within him luc aye me poore": [0, 65535], "within him luc aye me poore man": [0, 65535], "him luc aye me poore man how": [0, 65535], "luc aye me poore man how pale": [0, 65535], "aye me poore man how pale and": [0, 65535], "me poore man how pale and wan": [0, 65535], "poore man how pale and wan he": [0, 65535], "man how pale and wan he looks": [0, 65535], "how pale and wan he looks ant": [0, 65535], "pale and wan he looks ant what": [0, 65535], "and wan he looks ant what will": [0, 65535], "wan he looks ant what will you": [0, 65535], "he looks ant what will you murther": [0, 65535], "looks ant what will you murther me": [0, 65535], "ant what will you murther me thou": [0, 65535], "what will you murther me thou iailor": [0, 65535], "will you murther me thou iailor thou": [0, 65535], "you murther me thou iailor thou i": [0, 65535], "murther me thou iailor thou i am": [0, 65535], "me thou iailor thou i am thy": [0, 65535], "thou iailor thou i am thy prisoner": [0, 65535], "iailor thou i am thy prisoner wilt": [0, 65535], "thou i am thy prisoner wilt thou": [0, 65535], "i am thy prisoner wilt thou suffer": [0, 65535], "am thy prisoner wilt thou suffer them": [0, 65535], "thy prisoner wilt thou suffer them to": [0, 65535], "prisoner wilt thou suffer them to make": [0, 65535], "wilt thou suffer them to make a": [0, 65535], "thou suffer them to make a rescue": [0, 65535], "suffer them to make a rescue offi": [0, 65535], "them to make a rescue offi masters": [0, 65535], "to make a rescue offi masters let": [0, 65535], "make a rescue offi masters let him": [0, 65535], "a rescue offi masters let him go": [0, 65535], "rescue offi masters let him go he": [0, 65535], "offi masters let him go he is": [0, 65535], "masters let him go he is my": [0, 65535], "let him go he is my prisoner": [0, 65535], "him go he is my prisoner and": [0, 65535], "go he is my prisoner and you": [0, 65535], "he is my prisoner and you shall": [0, 65535], "is my prisoner and you shall not": [0, 65535], "my prisoner and you shall not haue": [0, 65535], "prisoner and you shall not haue him": [0, 65535], "and you shall not haue him pinch": [0, 65535], "you shall not haue him pinch go": [0, 65535], "shall not haue him pinch go binde": [0, 65535], "not haue him pinch go binde this": [0, 65535], "haue him pinch go binde this man": [0, 65535], "him pinch go binde this man for": [0, 65535], "pinch go binde this man for he": [0, 65535], "go binde this man for he is": [0, 65535], "binde this man for he is franticke": [0, 65535], "this man for he is franticke too": [0, 65535], "man for he is franticke too adr": [0, 65535], "for he is franticke too adr what": [0, 65535], "he is franticke too adr what wilt": [0, 65535], "is franticke too adr what wilt thou": [0, 65535], "franticke too adr what wilt thou do": [0, 65535], "too adr what wilt thou do thou": [0, 65535], "adr what wilt thou do thou peeuish": [0, 65535], "what wilt thou do thou peeuish officer": [0, 65535], "wilt thou do thou peeuish officer hast": [0, 65535], "thou do thou peeuish officer hast thou": [0, 65535], "do thou peeuish officer hast thou delight": [0, 65535], "thou peeuish officer hast thou delight to": [0, 65535], "peeuish officer hast thou delight to see": [0, 65535], "officer hast thou delight to see a": [0, 65535], "hast thou delight to see a wretched": [0, 65535], "thou delight to see a wretched man": [0, 65535], "delight to see a wretched man do": [0, 65535], "to see a wretched man do outrage": [0, 65535], "see a wretched man do outrage and": [0, 65535], "a wretched man do outrage and displeasure": [0, 65535], "wretched man do outrage and displeasure to": [0, 65535], "man do outrage and displeasure to himselfe": [0, 65535], "do outrage and displeasure to himselfe offi": [0, 65535], "outrage and displeasure to himselfe offi he": [0, 65535], "and displeasure to himselfe offi he is": [0, 65535], "displeasure to himselfe offi he is my": [0, 65535], "to himselfe offi he is my prisoner": [0, 65535], "himselfe offi he is my prisoner if": [0, 65535], "offi he is my prisoner if i": [0, 65535], "he is my prisoner if i let": [0, 65535], "is my prisoner if i let him": [0, 65535], "my prisoner if i let him go": [0, 65535], "prisoner if i let him go the": [0, 65535], "if i let him go the debt": [0, 65535], "i let him go the debt he": [0, 65535], "let him go the debt he owes": [0, 65535], "him go the debt he owes will": [0, 65535], "go the debt he owes will be": [0, 65535], "the debt he owes will be requir'd": [0, 65535], "debt he owes will be requir'd of": [0, 65535], "he owes will be requir'd of me": [0, 65535], "owes will be requir'd of me adr": [0, 65535], "will be requir'd of me adr i": [0, 65535], "be requir'd of me adr i will": [0, 65535], "requir'd of me adr i will discharge": [0, 65535], "of me adr i will discharge thee": [0, 65535], "me adr i will discharge thee ere": [0, 65535], "adr i will discharge thee ere i": [0, 65535], "i will discharge thee ere i go": [0, 65535], "will discharge thee ere i go from": [0, 65535], "discharge thee ere i go from thee": [0, 65535], "thee ere i go from thee beare": [0, 65535], "ere i go from thee beare me": [0, 65535], "i go from thee beare me forthwith": [0, 65535], "go from thee beare me forthwith vnto": [0, 65535], "from thee beare me forthwith vnto his": [0, 65535], "thee beare me forthwith vnto his creditor": [0, 65535], "beare me forthwith vnto his creditor and": [0, 65535], "me forthwith vnto his creditor and knowing": [0, 65535], "forthwith vnto his creditor and knowing how": [0, 65535], "vnto his creditor and knowing how the": [0, 65535], "his creditor and knowing how the debt": [0, 65535], "creditor and knowing how the debt growes": [0, 65535], "and knowing how the debt growes i": [0, 65535], "knowing how the debt growes i will": [0, 65535], "how the debt growes i will pay": [0, 65535], "the debt growes i will pay it": [0, 65535], "debt growes i will pay it good": [0, 65535], "growes i will pay it good master": [0, 65535], "i will pay it good master doctor": [0, 65535], "will pay it good master doctor see": [0, 65535], "pay it good master doctor see him": [0, 65535], "it good master doctor see him safe": [0, 65535], "good master doctor see him safe conuey'd": [0, 65535], "master doctor see him safe conuey'd home": [0, 65535], "doctor see him safe conuey'd home to": [0, 65535], "see him safe conuey'd home to my": [0, 65535], "him safe conuey'd home to my house": [0, 65535], "safe conuey'd home to my house oh": [0, 65535], "conuey'd home to my house oh most": [0, 65535], "home to my house oh most vnhappy": [0, 65535], "to my house oh most vnhappy day": [0, 65535], "my house oh most vnhappy day ant": [0, 65535], "house oh most vnhappy day ant oh": [0, 65535], "oh most vnhappy day ant oh most": [0, 65535], "most vnhappy day ant oh most vnhappie": [0, 65535], "vnhappy day ant oh most vnhappie strumpet": [0, 65535], "day ant oh most vnhappie strumpet dro": [0, 65535], "ant oh most vnhappie strumpet dro master": [0, 65535], "oh most vnhappie strumpet dro master i": [0, 65535], "most vnhappie strumpet dro master i am": [0, 65535], "vnhappie strumpet dro master i am heere": [0, 65535], "strumpet dro master i am heere entred": [0, 65535], "dro master i am heere entred in": [0, 65535], "master i am heere entred in bond": [0, 65535], "i am heere entred in bond for": [0, 65535], "am heere entred in bond for you": [0, 65535], "heere entred in bond for you ant": [0, 65535], "entred in bond for you ant out": [0, 65535], "in bond for you ant out on": [0, 65535], "bond for you ant out on thee": [0, 65535], "for you ant out on thee villaine": [0, 65535], "you ant out on thee villaine wherefore": [0, 65535], "ant out on thee villaine wherefore dost": [0, 65535], "out on thee villaine wherefore dost thou": [0, 65535], "on thee villaine wherefore dost thou mad": [0, 65535], "thee villaine wherefore dost thou mad mee": [0, 65535], "villaine wherefore dost thou mad mee dro": [0, 65535], "wherefore dost thou mad mee dro will": [0, 65535], "dost thou mad mee dro will you": [0, 65535], "thou mad mee dro will you be": [0, 65535], "mad mee dro will you be bound": [0, 65535], "mee dro will you be bound for": [0, 65535], "dro will you be bound for nothing": [0, 65535], "will you be bound for nothing be": [0, 65535], "you be bound for nothing be mad": [0, 65535], "be bound for nothing be mad good": [0, 65535], "bound for nothing be mad good master": [0, 65535], "for nothing be mad good master cry": [0, 65535], "nothing be mad good master cry the": [0, 65535], "be mad good master cry the diuell": [0, 65535], "mad good master cry the diuell luc": [0, 65535], "good master cry the diuell luc god": [0, 65535], "master cry the diuell luc god helpe": [0, 65535], "cry the diuell luc god helpe poore": [0, 65535], "the diuell luc god helpe poore soules": [0, 65535], "diuell luc god helpe poore soules how": [0, 65535], "luc god helpe poore soules how idlely": [0, 65535], "god helpe poore soules how idlely doe": [0, 65535], "helpe poore soules how idlely doe they": [0, 65535], "poore soules how idlely doe they talke": [0, 65535], "soules how idlely doe they talke adr": [0, 65535], "how idlely doe they talke adr go": [0, 65535], "idlely doe they talke adr go beare": [0, 65535], "doe they talke adr go beare him": [0, 65535], "they talke adr go beare him hence": [0, 65535], "talke adr go beare him hence sister": [0, 65535], "adr go beare him hence sister go": [0, 65535], "go beare him hence sister go you": [0, 65535], "beare him hence sister go you with": [0, 65535], "him hence sister go you with me": [0, 65535], "hence sister go you with me say": [0, 65535], "sister go you with me say now": [0, 65535], "go you with me say now whose": [0, 65535], "you with me say now whose suite": [0, 65535], "with me say now whose suite is": [0, 65535], "me say now whose suite is he": [0, 65535], "say now whose suite is he arrested": [0, 65535], "now whose suite is he arrested at": [0, 65535], "whose suite is he arrested at exeunt": [0, 65535], "suite is he arrested at exeunt manet": [0, 65535], "is he arrested at exeunt manet offic": [0, 65535], "he arrested at exeunt manet offic adri": [0, 65535], "arrested at exeunt manet offic adri luci": [0, 65535], "at exeunt manet offic adri luci courtizan": [0, 65535], "exeunt manet offic adri luci courtizan off": [0, 65535], "manet offic adri luci courtizan off one": [0, 65535], "offic adri luci courtizan off one angelo": [0, 65535], "adri luci courtizan off one angelo a": [0, 65535], "luci courtizan off one angelo a goldsmith": [0, 65535], "courtizan off one angelo a goldsmith do": [0, 65535], "off one angelo a goldsmith do you": [0, 65535], "one angelo a goldsmith do you know": [0, 65535], "angelo a goldsmith do you know him": [0, 65535], "a goldsmith do you know him adr": [0, 65535], "goldsmith do you know him adr i": [0, 65535], "do you know him adr i know": [0, 65535], "you know him adr i know the": [0, 65535], "know him adr i know the man": [0, 65535], "him adr i know the man what": [0, 65535], "adr i know the man what is": [0, 65535], "i know the man what is the": [0, 65535], "know the man what is the summe": [0, 65535], "the man what is the summe he": [0, 65535], "man what is the summe he owes": [0, 65535], "what is the summe he owes off": [0, 65535], "is the summe he owes off two": [0, 65535], "the summe he owes off two hundred": [0, 65535], "summe he owes off two hundred duckets": [0, 65535], "he owes off two hundred duckets adr": [0, 65535], "owes off two hundred duckets adr say": [0, 65535], "off two hundred duckets adr say how": [0, 65535], "two hundred duckets adr say how growes": [0, 65535], "hundred duckets adr say how growes it": [0, 65535], "duckets adr say how growes it due": [0, 65535], "adr say how growes it due off": [0, 65535], "say how growes it due off due": [0, 65535], "how growes it due off due for": [0, 65535], "growes it due off due for a": [0, 65535], "it due off due for a chaine": [0, 65535], "due off due for a chaine your": [0, 65535], "off due for a chaine your husband": [0, 65535], "due for a chaine your husband had": [0, 65535], "for a chaine your husband had of": [0, 65535], "a chaine your husband had of him": [0, 65535], "chaine your husband had of him adr": [0, 65535], "your husband had of him adr he": [0, 65535], "husband had of him adr he did": [0, 65535], "had of him adr he did bespeake": [0, 65535], "of him adr he did bespeake a": [0, 65535], "him adr he did bespeake a chain": [0, 65535], "adr he did bespeake a chain for": [0, 65535], "he did bespeake a chain for me": [0, 65535], "did bespeake a chain for me but": [0, 65535], "bespeake a chain for me but had": [0, 65535], "a chain for me but had it": [0, 65535], "chain for me but had it not": [0, 65535], "for me but had it not cur": [0, 65535], "me but had it not cur when": [0, 65535], "but had it not cur when as": [0, 65535], "had it not cur when as your": [0, 65535], "it not cur when as your husband": [0, 65535], "not cur when as your husband all": [0, 65535], "cur when as your husband all in": [0, 65535], "when as your husband all in rage": [0, 65535], "as your husband all in rage to": [0, 65535], "your husband all in rage to day": [0, 65535], "husband all in rage to day came": [0, 65535], "all in rage to day came to": [0, 65535], "in rage to day came to my": [0, 65535], "rage to day came to my house": [0, 65535], "to day came to my house and": [0, 65535], "day came to my house and tooke": [0, 65535], "came to my house and tooke away": [0, 65535], "to my house and tooke away my": [0, 65535], "my house and tooke away my ring": [0, 65535], "house and tooke away my ring the": [0, 65535], "and tooke away my ring the ring": [0, 65535], "tooke away my ring the ring i": [0, 65535], "away my ring the ring i saw": [0, 65535], "my ring the ring i saw vpon": [0, 65535], "ring the ring i saw vpon his": [0, 65535], "the ring i saw vpon his finger": [0, 65535], "ring i saw vpon his finger now": [0, 65535], "i saw vpon his finger now straight": [0, 65535], "saw vpon his finger now straight after": [0, 65535], "vpon his finger now straight after did": [0, 65535], "his finger now straight after did i": [0, 65535], "finger now straight after did i meete": [0, 65535], "now straight after did i meete him": [0, 65535], "straight after did i meete him with": [0, 65535], "after did i meete him with a": [0, 65535], "did i meete him with a chaine": [0, 65535], "i meete him with a chaine adr": [0, 65535], "meete him with a chaine adr it": [0, 65535], "him with a chaine adr it may": [0, 65535], "with a chaine adr it may be": [0, 65535], "a chaine adr it may be so": [0, 65535], "chaine adr it may be so but": [0, 65535], "adr it may be so but i": [0, 65535], "it may be so but i did": [0, 65535], "may be so but i did neuer": [0, 65535], "be so but i did neuer see": [0, 65535], "so but i did neuer see it": [0, 65535], "but i did neuer see it come": [0, 65535], "i did neuer see it come iailor": [0, 65535], "did neuer see it come iailor bring": [0, 65535], "neuer see it come iailor bring me": [0, 65535], "see it come iailor bring me where": [0, 65535], "it come iailor bring me where the": [0, 65535], "come iailor bring me where the goldsmith": [0, 65535], "iailor bring me where the goldsmith is": [0, 65535], "bring me where the goldsmith is i": [0, 65535], "me where the goldsmith is i long": [0, 65535], "where the goldsmith is i long to": [0, 65535], "the goldsmith is i long to know": [0, 65535], "goldsmith is i long to know the": [0, 65535], "is i long to know the truth": [0, 65535], "i long to know the truth heereof": [0, 65535], "long to know the truth heereof at": [0, 65535], "to know the truth heereof at large": [0, 65535], "know the truth heereof at large enter": [0, 65535], "the truth heereof at large enter antipholus": [0, 65535], "truth heereof at large enter antipholus siracusia": [0, 65535], "heereof at large enter antipholus siracusia with": [0, 65535], "at large enter antipholus siracusia with his": [0, 65535], "large enter antipholus siracusia with his rapier": [0, 65535], "enter antipholus siracusia with his rapier drawne": [0, 65535], "antipholus siracusia with his rapier drawne and": [0, 65535], "siracusia with his rapier drawne and dromio": [0, 65535], "with his rapier drawne and dromio sirac": [0, 65535], "his rapier drawne and dromio sirac luc": [0, 65535], "rapier drawne and dromio sirac luc god": [0, 65535], "drawne and dromio sirac luc god for": [0, 65535], "and dromio sirac luc god for thy": [0, 65535], "dromio sirac luc god for thy mercy": [0, 65535], "sirac luc god for thy mercy they": [0, 65535], "luc god for thy mercy they are": [0, 65535], "god for thy mercy they are loose": [0, 65535], "for thy mercy they are loose againe": [0, 65535], "thy mercy they are loose againe adr": [0, 65535], "mercy they are loose againe adr and": [0, 65535], "they are loose againe adr and come": [0, 65535], "are loose againe adr and come with": [0, 65535], "loose againe adr and come with naked": [0, 65535], "againe adr and come with naked swords": [0, 65535], "adr and come with naked swords let's": [0, 65535], "and come with naked swords let's call": [0, 65535], "come with naked swords let's call more": [0, 65535], "with naked swords let's call more helpe": [0, 65535], "naked swords let's call more helpe to": [0, 65535], "swords let's call more helpe to haue": [0, 65535], "let's call more helpe to haue them": [0, 65535], "call more helpe to haue them bound": [0, 65535], "more helpe to haue them bound againe": [0, 65535], "helpe to haue them bound againe runne": [0, 65535], "to haue them bound againe runne all": [0, 65535], "haue them bound againe runne all out": [0, 65535], "them bound againe runne all out off": [0, 65535], "bound againe runne all out off away": [0, 65535], "againe runne all out off away they'l": [0, 65535], "runne all out off away they'l kill": [0, 65535], "all out off away they'l kill vs": [0, 65535], "out off away they'l kill vs exeunt": [0, 65535], "off away they'l kill vs exeunt omnes": [0, 65535], "away they'l kill vs exeunt omnes as": [0, 65535], "they'l kill vs exeunt omnes as fast": [0, 65535], "kill vs exeunt omnes as fast as": [0, 65535], "vs exeunt omnes as fast as may": [0, 65535], "exeunt omnes as fast as may be": [0, 65535], "omnes as fast as may be frighted": [0, 65535], "as fast as may be frighted s": [0, 65535], "fast as may be frighted s ant": [0, 65535], "as may be frighted s ant i": [0, 65535], "may be frighted s ant i see": [0, 65535], "be frighted s ant i see these": [0, 65535], "frighted s ant i see these witches": [0, 65535], "s ant i see these witches are": [0, 65535], "ant i see these witches are affraid": [0, 65535], "i see these witches are affraid of": [0, 65535], "see these witches are affraid of swords": [0, 65535], "these witches are affraid of swords s": [0, 65535], "witches are affraid of swords s dro": [0, 65535], "are affraid of swords s dro she": [0, 65535], "affraid of swords s dro she that": [0, 65535], "of swords s dro she that would": [0, 65535], "swords s dro she that would be": [0, 65535], "s dro she that would be your": [0, 65535], "dro she that would be your wife": [0, 65535], "she that would be your wife now": [0, 65535], "that would be your wife now ran": [0, 65535], "would be your wife now ran from": [0, 65535], "be your wife now ran from you": [0, 65535], "your wife now ran from you ant": [0, 65535], "wife now ran from you ant come": [0, 65535], "now ran from you ant come to": [0, 65535], "ran from you ant come to the": [0, 65535], "from you ant come to the centaur": [0, 65535], "you ant come to the centaur fetch": [0, 65535], "ant come to the centaur fetch our": [0, 65535], "come to the centaur fetch our stuffe": [0, 65535], "to the centaur fetch our stuffe from": [0, 65535], "the centaur fetch our stuffe from thence": [0, 65535], "centaur fetch our stuffe from thence i": [0, 65535], "fetch our stuffe from thence i long": [0, 65535], "our stuffe from thence i long that": [0, 65535], "stuffe from thence i long that we": [0, 65535], "from thence i long that we were": [0, 65535], "thence i long that we were safe": [0, 65535], "i long that we were safe and": [0, 65535], "long that we were safe and sound": [0, 65535], "that we were safe and sound aboord": [0, 65535], "we were safe and sound aboord dro": [0, 65535], "were safe and sound aboord dro faith": [0, 65535], "safe and sound aboord dro faith stay": [0, 65535], "and sound aboord dro faith stay heere": [0, 65535], "sound aboord dro faith stay heere this": [0, 65535], "aboord dro faith stay heere this night": [0, 65535], "dro faith stay heere this night they": [0, 65535], "faith stay heere this night they will": [0, 65535], "stay heere this night they will surely": [0, 65535], "heere this night they will surely do": [0, 65535], "this night they will surely do vs": [0, 65535], "night they will surely do vs no": [0, 65535], "they will surely do vs no harme": [0, 65535], "will surely do vs no harme you": [0, 65535], "surely do vs no harme you saw": [0, 65535], "do vs no harme you saw they": [0, 65535], "vs no harme you saw they speake": [0, 65535], "no harme you saw they speake vs": [0, 65535], "harme you saw they speake vs faire": [0, 65535], "you saw they speake vs faire giue": [0, 65535], "saw they speake vs faire giue vs": [0, 65535], "they speake vs faire giue vs gold": [0, 65535], "speake vs faire giue vs gold me": [0, 65535], "vs faire giue vs gold me thinkes": [0, 65535], "faire giue vs gold me thinkes they": [0, 65535], "giue vs gold me thinkes they are": [0, 65535], "vs gold me thinkes they are such": [0, 65535], "gold me thinkes they are such a": [0, 65535], "me thinkes they are such a gentle": [0, 65535], "thinkes they are such a gentle nation": [0, 65535], "they are such a gentle nation that": [0, 65535], "are such a gentle nation that but": [0, 65535], "such a gentle nation that but for": [0, 65535], "a gentle nation that but for the": [0, 65535], "gentle nation that but for the mountaine": [0, 65535], "nation that but for the mountaine of": [0, 65535], "that but for the mountaine of mad": [0, 65535], "but for the mountaine of mad flesh": [0, 65535], "for the mountaine of mad flesh that": [0, 65535], "the mountaine of mad flesh that claimes": [0, 65535], "mountaine of mad flesh that claimes mariage": [0, 65535], "of mad flesh that claimes mariage of": [0, 65535], "mad flesh that claimes mariage of me": [0, 65535], "flesh that claimes mariage of me i": [0, 65535], "that claimes mariage of me i could": [0, 65535], "claimes mariage of me i could finde": [0, 65535], "mariage of me i could finde in": [0, 65535], "of me i could finde in my": [0, 65535], "me i could finde in my heart": [0, 65535], "i could finde in my heart to": [0, 65535], "could finde in my heart to stay": [0, 65535], "finde in my heart to stay heere": [0, 65535], "in my heart to stay heere still": [0, 65535], "my heart to stay heere still and": [0, 65535], "heart to stay heere still and turne": [0, 65535], "to stay heere still and turne witch": [0, 65535], "stay heere still and turne witch ant": [0, 65535], "heere still and turne witch ant i": [0, 65535], "still and turne witch ant i will": [0, 65535], "and turne witch ant i will not": [0, 65535], "turne witch ant i will not stay": [0, 65535], "witch ant i will not stay to": [0, 65535], "ant i will not stay to night": [0, 65535], "i will not stay to night for": [0, 65535], "will not stay to night for all": [0, 65535], "not stay to night for all the": [0, 65535], "stay to night for all the towne": [0, 65535], "to night for all the towne therefore": [0, 65535], "night for all the towne therefore away": [0, 65535], "for all the towne therefore away to": [0, 65535], "all the towne therefore away to get": [0, 65535], "the towne therefore away to get our": [0, 65535], "towne therefore away to get our stuffe": [0, 65535], "therefore away to get our stuffe aboord": [0, 65535], "away to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant goldsmith": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith and": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and an": [0, 65535], "prima enter a merchant goldsmith and an officer": [0, 65535], "enter a merchant goldsmith and an officer mar": [0, 65535], "a merchant goldsmith and an officer mar you": [0, 65535], "merchant goldsmith and an officer mar you know": [0, 65535], "goldsmith and an officer mar you know since": [0, 65535], "and an officer mar you know since pentecost": [0, 65535], "an officer mar you know since pentecost the": [0, 65535], "officer mar you know since pentecost the sum": [0, 65535], "mar you know since pentecost the sum is": [0, 65535], "you know since pentecost the sum is due": [0, 65535], "know since pentecost the sum is due and": [0, 65535], "since pentecost the sum is due and since": [0, 65535], "pentecost the sum is due and since i": [0, 65535], "the sum is due and since i haue": [0, 65535], "sum is due and since i haue not": [0, 65535], "is due and since i haue not much": [0, 65535], "due and since i haue not much importun'd": [0, 65535], "and since i haue not much importun'd you": [0, 65535], "since i haue not much importun'd you nor": [0, 65535], "i haue not much importun'd you nor now": [0, 65535], "haue not much importun'd you nor now i": [0, 65535], "not much importun'd you nor now i had": [0, 65535], "much importun'd you nor now i had not": [0, 65535], "importun'd you nor now i had not but": [0, 65535], "you nor now i had not but that": [0, 65535], "nor now i had not but that i": [0, 65535], "now i had not but that i am": [0, 65535], "i had not but that i am bound": [0, 65535], "had not but that i am bound to": [0, 65535], "not but that i am bound to persia": [0, 65535], "but that i am bound to persia and": [0, 65535], "that i am bound to persia and want": [0, 65535], "i am bound to persia and want gilders": [0, 65535], "am bound to persia and want gilders for": [0, 65535], "bound to persia and want gilders for my": [0, 65535], "to persia and want gilders for my voyage": [0, 65535], "persia and want gilders for my voyage therefore": [0, 65535], "and want gilders for my voyage therefore make": [0, 65535], "want gilders for my voyage therefore make present": [0, 65535], "gilders for my voyage therefore make present satisfaction": [0, 65535], "for my voyage therefore make present satisfaction or": [0, 65535], "my voyage therefore make present satisfaction or ile": [0, 65535], "voyage therefore make present satisfaction or ile attach": [0, 65535], "therefore make present satisfaction or ile attach you": [0, 65535], "make present satisfaction or ile attach you by": [0, 65535], "present satisfaction or ile attach you by this": [0, 65535], "satisfaction or ile attach you by this officer": [0, 65535], "or ile attach you by this officer gold": [0, 65535], "ile attach you by this officer gold euen": [0, 65535], "attach you by this officer gold euen iust": [0, 65535], "you by this officer gold euen iust the": [0, 65535], "by this officer gold euen iust the sum": [0, 65535], "this officer gold euen iust the sum that": [0, 65535], "officer gold euen iust the sum that i": [0, 65535], "gold euen iust the sum that i do": [0, 65535], "euen iust the sum that i do owe": [0, 65535], "iust the sum that i do owe to": [0, 65535], "the sum that i do owe to you": [0, 65535], "sum that i do owe to you is": [0, 65535], "that i do owe to you is growing": [0, 65535], "i do owe to you is growing to": [0, 65535], "do owe to you is growing to me": [0, 65535], "owe to you is growing to me by": [0, 65535], "to you is growing to me by antipholus": [0, 65535], "you is growing to me by antipholus and": [0, 65535], "is growing to me by antipholus and in": [0, 65535], "growing to me by antipholus and in the": [0, 65535], "to me by antipholus and in the instant": [0, 65535], "me by antipholus and in the instant that": [0, 65535], "by antipholus and in the instant that i": [0, 65535], "antipholus and in the instant that i met": [0, 65535], "and in the instant that i met with": [0, 65535], "in the instant that i met with you": [0, 65535], "the instant that i met with you he": [0, 65535], "instant that i met with you he had": [0, 65535], "that i met with you he had of": [0, 65535], "i met with you he had of me": [0, 65535], "met with you he had of me a": [0, 65535], "with you he had of me a chaine": [0, 65535], "you he had of me a chaine at": [0, 65535], "he had of me a chaine at fiue": [0, 65535], "had of me a chaine at fiue a": [0, 65535], "of me a chaine at fiue a clocke": [0, 65535], "me a chaine at fiue a clocke i": [0, 65535], "a chaine at fiue a clocke i shall": [0, 65535], "chaine at fiue a clocke i shall receiue": [0, 65535], "at fiue a clocke i shall receiue the": [0, 65535], "fiue a clocke i shall receiue the money": [0, 65535], "a clocke i shall receiue the money for": [0, 65535], "clocke i shall receiue the money for the": [0, 65535], "i shall receiue the money for the same": [0, 65535], "shall receiue the money for the same pleaseth": [0, 65535], "receiue the money for the same pleaseth you": [0, 65535], "the money for the same pleaseth you walke": [0, 65535], "money for the same pleaseth you walke with": [0, 65535], "for the same pleaseth you walke with me": [0, 65535], "the same pleaseth you walke with me downe": [0, 65535], "same pleaseth you walke with me downe to": [0, 65535], "pleaseth you walke with me downe to his": [0, 65535], "you walke with me downe to his house": [0, 65535], "walke with me downe to his house i": [0, 65535], "with me downe to his house i will": [0, 65535], "me downe to his house i will discharge": [0, 65535], "downe to his house i will discharge my": [0, 65535], "to his house i will discharge my bond": [0, 65535], "his house i will discharge my bond and": [0, 65535], "house i will discharge my bond and thanke": [0, 65535], "i will discharge my bond and thanke you": [0, 65535], "will discharge my bond and thanke you too": [0, 65535], "discharge my bond and thanke you too enter": [0, 65535], "my bond and thanke you too enter antipholus": [0, 65535], "bond and thanke you too enter antipholus ephes": [0, 65535], "and thanke you too enter antipholus ephes dromio": [0, 65535], "thanke you too enter antipholus ephes dromio from": [0, 65535], "you too enter antipholus ephes dromio from the": [0, 65535], "too enter antipholus ephes dromio from the courtizans": [0, 65535], "enter antipholus ephes dromio from the courtizans offi": [0, 65535], "antipholus ephes dromio from the courtizans offi that": [0, 65535], "ephes dromio from the courtizans offi that labour": [0, 65535], "dromio from the courtizans offi that labour may": [0, 65535], "from the courtizans offi that labour may you": [0, 65535], "the courtizans offi that labour may you saue": [0, 65535], "courtizans offi that labour may you saue see": [0, 65535], "offi that labour may you saue see where": [0, 65535], "that labour may you saue see where he": [0, 65535], "labour may you saue see where he comes": [0, 65535], "may you saue see where he comes ant": [0, 65535], "you saue see where he comes ant while": [0, 65535], "saue see where he comes ant while i": [0, 65535], "see where he comes ant while i go": [0, 65535], "where he comes ant while i go to": [0, 65535], "he comes ant while i go to the": [0, 65535], "comes ant while i go to the goldsmiths": [0, 65535], "ant while i go to the goldsmiths house": [0, 65535], "while i go to the goldsmiths house go": [0, 65535], "i go to the goldsmiths house go thou": [0, 65535], "go to the goldsmiths house go thou and": [0, 65535], "to the goldsmiths house go thou and buy": [0, 65535], "the goldsmiths house go thou and buy a": [0, 65535], "goldsmiths house go thou and buy a ropes": [0, 65535], "house go thou and buy a ropes end": [0, 65535], "go thou and buy a ropes end that": [0, 65535], "thou and buy a ropes end that will": [0, 65535], "and buy a ropes end that will i": [0, 65535], "buy a ropes end that will i bestow": [0, 65535], "a ropes end that will i bestow among": [0, 65535], "ropes end that will i bestow among my": [0, 65535], "end that will i bestow among my wife": [0, 65535], "that will i bestow among my wife and": [0, 65535], "will i bestow among my wife and their": [0, 65535], "i bestow among my wife and their confederates": [0, 65535], "bestow among my wife and their confederates for": [0, 65535], "among my wife and their confederates for locking": [0, 65535], "my wife and their confederates for locking me": [0, 65535], "wife and their confederates for locking me out": [0, 65535], "and their confederates for locking me out of": [0, 65535], "their confederates for locking me out of my": [0, 65535], "confederates for locking me out of my doores": [0, 65535], "for locking me out of my doores by": [0, 65535], "locking me out of my doores by day": [0, 65535], "me out of my doores by day but": [0, 65535], "out of my doores by day but soft": [0, 65535], "of my doores by day but soft i": [0, 65535], "my doores by day but soft i see": [0, 65535], "doores by day but soft i see the": [0, 65535], "by day but soft i see the goldsmith": [0, 65535], "day but soft i see the goldsmith get": [0, 65535], "but soft i see the goldsmith get thee": [0, 65535], "soft i see the goldsmith get thee gone": [0, 65535], "i see the goldsmith get thee gone buy": [0, 65535], "see the goldsmith get thee gone buy thou": [0, 65535], "the goldsmith get thee gone buy thou a": [0, 65535], "goldsmith get thee gone buy thou a rope": [0, 65535], "get thee gone buy thou a rope and": [0, 65535], "thee gone buy thou a rope and bring": [0, 65535], "gone buy thou a rope and bring it": [0, 65535], "buy thou a rope and bring it home": [0, 65535], "thou a rope and bring it home to": [0, 65535], "a rope and bring it home to me": [0, 65535], "rope and bring it home to me dro": [0, 65535], "and bring it home to me dro i": [0, 65535], "bring it home to me dro i buy": [0, 65535], "it home to me dro i buy a": [0, 65535], "home to me dro i buy a thousand": [0, 65535], "to me dro i buy a thousand pound": [0, 65535], "me dro i buy a thousand pound a": [0, 65535], "dro i buy a thousand pound a yeare": [0, 65535], "i buy a thousand pound a yeare i": [0, 65535], "buy a thousand pound a yeare i buy": [0, 65535], "a thousand pound a yeare i buy a": [0, 65535], "thousand pound a yeare i buy a rope": [0, 65535], "pound a yeare i buy a rope exit": [0, 65535], "a yeare i buy a rope exit dromio": [0, 65535], "yeare i buy a rope exit dromio eph": [0, 65535], "i buy a rope exit dromio eph ant": [0, 65535], "buy a rope exit dromio eph ant a": [0, 65535], "a rope exit dromio eph ant a man": [0, 65535], "rope exit dromio eph ant a man is": [0, 65535], "exit dromio eph ant a man is well": [0, 65535], "dromio eph ant a man is well holpe": [0, 65535], "eph ant a man is well holpe vp": [0, 65535], "ant a man is well holpe vp that": [0, 65535], "a man is well holpe vp that trusts": [0, 65535], "man is well holpe vp that trusts to": [0, 65535], "is well holpe vp that trusts to you": [0, 65535], "well holpe vp that trusts to you i": [0, 65535], "holpe vp that trusts to you i promised": [0, 65535], "vp that trusts to you i promised your": [0, 65535], "that trusts to you i promised your presence": [0, 65535], "trusts to you i promised your presence and": [0, 65535], "to you i promised your presence and the": [0, 65535], "you i promised your presence and the chaine": [0, 65535], "i promised your presence and the chaine but": [0, 65535], "promised your presence and the chaine but neither": [0, 65535], "your presence and the chaine but neither chaine": [0, 65535], "presence and the chaine but neither chaine nor": [0, 65535], "and the chaine but neither chaine nor goldsmith": [0, 65535], "the chaine but neither chaine nor goldsmith came": [0, 65535], "chaine but neither chaine nor goldsmith came to": [0, 65535], "but neither chaine nor goldsmith came to me": [0, 65535], "neither chaine nor goldsmith came to me belike": [0, 65535], "chaine nor goldsmith came to me belike you": [0, 65535], "nor goldsmith came to me belike you thought": [0, 65535], "goldsmith came to me belike you thought our": [0, 65535], "came to me belike you thought our loue": [0, 65535], "to me belike you thought our loue would": [0, 65535], "me belike you thought our loue would last": [0, 65535], "belike you thought our loue would last too": [0, 65535], "you thought our loue would last too long": [0, 65535], "thought our loue would last too long if": [0, 65535], "our loue would last too long if it": [0, 65535], "loue would last too long if it were": [0, 65535], "would last too long if it were chain'd": [0, 65535], "last too long if it were chain'd together": [0, 65535], "too long if it were chain'd together and": [0, 65535], "long if it were chain'd together and therefore": [0, 65535], "if it were chain'd together and therefore came": [0, 65535], "it were chain'd together and therefore came not": [0, 65535], "were chain'd together and therefore came not gold": [0, 65535], "chain'd together and therefore came not gold sauing": [0, 65535], "together and therefore came not gold sauing your": [0, 65535], "and therefore came not gold sauing your merrie": [0, 65535], "therefore came not gold sauing your merrie humor": [0, 65535], "came not gold sauing your merrie humor here's": [0, 65535], "not gold sauing your merrie humor here's the": [0, 65535], "gold sauing your merrie humor here's the note": [0, 65535], "sauing your merrie humor here's the note how": [0, 65535], "your merrie humor here's the note how much": [0, 65535], "merrie humor here's the note how much your": [0, 65535], "humor here's the note how much your chaine": [0, 65535], "here's the note how much your chaine weighs": [0, 65535], "the note how much your chaine weighs to": [0, 65535], "note how much your chaine weighs to the": [0, 65535], "how much your chaine weighs to the vtmost": [0, 65535], "much your chaine weighs to the vtmost charect": [0, 65535], "your chaine weighs to the vtmost charect the": [0, 65535], "chaine weighs to the vtmost charect the finenesse": [0, 65535], "weighs to the vtmost charect the finenesse of": [0, 65535], "to the vtmost charect the finenesse of the": [0, 65535], "the vtmost charect the finenesse of the gold": [0, 65535], "vtmost charect the finenesse of the gold and": [0, 65535], "charect the finenesse of the gold and chargefull": [0, 65535], "the finenesse of the gold and chargefull fashion": [0, 65535], "finenesse of the gold and chargefull fashion which": [0, 65535], "of the gold and chargefull fashion which doth": [0, 65535], "the gold and chargefull fashion which doth amount": [0, 65535], "gold and chargefull fashion which doth amount to": [0, 65535], "and chargefull fashion which doth amount to three": [0, 65535], "chargefull fashion which doth amount to three odde": [0, 65535], "fashion which doth amount to three odde duckets": [0, 65535], "which doth amount to three odde duckets more": [0, 65535], "doth amount to three odde duckets more then": [0, 65535], "amount to three odde duckets more then i": [0, 65535], "to three odde duckets more then i stand": [0, 65535], "three odde duckets more then i stand debted": [0, 65535], "odde duckets more then i stand debted to": [0, 65535], "duckets more then i stand debted to this": [0, 65535], "more then i stand debted to this gentleman": [0, 65535], "then i stand debted to this gentleman i": [0, 65535], "i stand debted to this gentleman i pray": [0, 65535], "stand debted to this gentleman i pray you": [0, 65535], "debted to this gentleman i pray you see": [0, 65535], "to this gentleman i pray you see him": [0, 65535], "this gentleman i pray you see him presently": [0, 65535], "gentleman i pray you see him presently discharg'd": [0, 65535], "i pray you see him presently discharg'd for": [0, 65535], "pray you see him presently discharg'd for he": [0, 65535], "you see him presently discharg'd for he is": [0, 65535], "see him presently discharg'd for he is bound": [0, 65535], "him presently discharg'd for he is bound to": [0, 65535], "presently discharg'd for he is bound to sea": [0, 65535], "discharg'd for he is bound to sea and": [0, 65535], "for he is bound to sea and stayes": [0, 65535], "he is bound to sea and stayes but": [0, 65535], "is bound to sea and stayes but for": [0, 65535], "bound to sea and stayes but for it": [0, 65535], "to sea and stayes but for it anti": [0, 65535], "sea and stayes but for it anti i": [0, 65535], "and stayes but for it anti i am": [0, 65535], "stayes but for it anti i am not": [0, 65535], "but for it anti i am not furnish'd": [0, 65535], "for it anti i am not furnish'd with": [0, 65535], "it anti i am not furnish'd with the": [0, 65535], "anti i am not furnish'd with the present": [0, 65535], "i am not furnish'd with the present monie": [0, 65535], "am not furnish'd with the present monie besides": [0, 65535], "not furnish'd with the present monie besides i": [0, 65535], "furnish'd with the present monie besides i haue": [0, 65535], "with the present monie besides i haue some": [0, 65535], "the present monie besides i haue some businesse": [0, 65535], "present monie besides i haue some businesse in": [0, 65535], "monie besides i haue some businesse in the": [0, 65535], "besides i haue some businesse in the towne": [0, 65535], "i haue some businesse in the towne good": [0, 65535], "haue some businesse in the towne good signior": [0, 65535], "some businesse in the towne good signior take": [0, 65535], "businesse in the towne good signior take the": [0, 65535], "in the towne good signior take the stranger": [0, 65535], "the towne good signior take the stranger to": [0, 65535], "towne good signior take the stranger to my": [0, 65535], "good signior take the stranger to my house": [0, 65535], "signior take the stranger to my house and": [0, 65535], "take the stranger to my house and with": [0, 65535], "the stranger to my house and with you": [0, 65535], "stranger to my house and with you take": [0, 65535], "to my house and with you take the": [0, 65535], "my house and with you take the chaine": [0, 65535], "house and with you take the chaine and": [0, 65535], "and with you take the chaine and bid": [0, 65535], "with you take the chaine and bid my": [0, 65535], "you take the chaine and bid my wife": [0, 65535], "take the chaine and bid my wife disburse": [0, 65535], "the chaine and bid my wife disburse the": [0, 65535], "chaine and bid my wife disburse the summe": [0, 65535], "and bid my wife disburse the summe on": [0, 65535], "bid my wife disburse the summe on the": [0, 65535], "my wife disburse the summe on the receit": [0, 65535], "wife disburse the summe on the receit thereof": [0, 65535], "disburse the summe on the receit thereof perchance": [0, 65535], "the summe on the receit thereof perchance i": [0, 65535], "summe on the receit thereof perchance i will": [0, 65535], "on the receit thereof perchance i will be": [0, 65535], "the receit thereof perchance i will be there": [0, 65535], "receit thereof perchance i will be there as": [0, 65535], "thereof perchance i will be there as soone": [0, 65535], "perchance i will be there as soone as": [0, 65535], "i will be there as soone as you": [0, 65535], "will be there as soone as you gold": [0, 65535], "be there as soone as you gold then": [0, 65535], "there as soone as you gold then you": [0, 65535], "as soone as you gold then you will": [0, 65535], "soone as you gold then you will bring": [0, 65535], "as you gold then you will bring the": [0, 65535], "you gold then you will bring the chaine": [0, 65535], "gold then you will bring the chaine to": [0, 65535], "then you will bring the chaine to her": [0, 65535], "you will bring the chaine to her your": [0, 65535], "will bring the chaine to her your selfe": [0, 65535], "bring the chaine to her your selfe anti": [0, 65535], "the chaine to her your selfe anti no": [0, 65535], "chaine to her your selfe anti no beare": [0, 65535], "to her your selfe anti no beare it": [0, 65535], "her your selfe anti no beare it with": [0, 65535], "your selfe anti no beare it with you": [0, 65535], "selfe anti no beare it with you least": [0, 65535], "anti no beare it with you least i": [0, 65535], "no beare it with you least i come": [0, 65535], "beare it with you least i come not": [0, 65535], "it with you least i come not time": [0, 65535], "with you least i come not time enough": [0, 65535], "you least i come not time enough gold": [0, 65535], "least i come not time enough gold well": [0, 65535], "i come not time enough gold well sir": [0, 65535], "come not time enough gold well sir i": [0, 65535], "not time enough gold well sir i will": [0, 65535], "time enough gold well sir i will haue": [0, 65535], "enough gold well sir i will haue you": [0, 65535], "gold well sir i will haue you the": [0, 65535], "well sir i will haue you the chaine": [0, 65535], "sir i will haue you the chaine about": [0, 65535], "i will haue you the chaine about you": [0, 65535], "will haue you the chaine about you ant": [0, 65535], "haue you the chaine about you ant and": [0, 65535], "you the chaine about you ant and if": [0, 65535], "the chaine about you ant and if i": [0, 65535], "chaine about you ant and if i haue": [0, 65535], "about you ant and if i haue not": [0, 65535], "you ant and if i haue not sir": [0, 65535], "ant and if i haue not sir i": [0, 65535], "and if i haue not sir i hope": [0, 65535], "if i haue not sir i hope you": [0, 65535], "i haue not sir i hope you haue": [0, 65535], "haue not sir i hope you haue or": [0, 65535], "not sir i hope you haue or else": [0, 65535], "sir i hope you haue or else you": [0, 65535], "i hope you haue or else you may": [0, 65535], "hope you haue or else you may returne": [0, 65535], "you haue or else you may returne without": [0, 65535], "haue or else you may returne without your": [0, 65535], "or else you may returne without your money": [0, 65535], "else you may returne without your money gold": [0, 65535], "you may returne without your money gold nay": [0, 65535], "may returne without your money gold nay come": [0, 65535], "returne without your money gold nay come i": [0, 65535], "without your money gold nay come i pray": [0, 65535], "your money gold nay come i pray you": [0, 65535], "money gold nay come i pray you sir": [0, 65535], "gold nay come i pray you sir giue": [0, 65535], "nay come i pray you sir giue me": [0, 65535], "come i pray you sir giue me the": [0, 65535], "i pray you sir giue me the chaine": [0, 65535], "pray you sir giue me the chaine both": [0, 65535], "you sir giue me the chaine both winde": [0, 65535], "sir giue me the chaine both winde and": [0, 65535], "giue me the chaine both winde and tide": [0, 65535], "me the chaine both winde and tide stayes": [0, 65535], "the chaine both winde and tide stayes for": [0, 65535], "chaine both winde and tide stayes for this": [0, 65535], "both winde and tide stayes for this gentleman": [0, 65535], "winde and tide stayes for this gentleman and": [0, 65535], "and tide stayes for this gentleman and i": [0, 65535], "tide stayes for this gentleman and i too": [0, 65535], "stayes for this gentleman and i too blame": [0, 65535], "for this gentleman and i too blame haue": [0, 65535], "this gentleman and i too blame haue held": [0, 65535], "gentleman and i too blame haue held him": [0, 65535], "and i too blame haue held him heere": [0, 65535], "i too blame haue held him heere too": [0, 65535], "too blame haue held him heere too long": [0, 65535], "blame haue held him heere too long anti": [0, 65535], "haue held him heere too long anti good": [0, 65535], "held him heere too long anti good lord": [0, 65535], "him heere too long anti good lord you": [0, 65535], "heere too long anti good lord you vse": [0, 65535], "too long anti good lord you vse this": [0, 65535], "long anti good lord you vse this dalliance": [0, 65535], "anti good lord you vse this dalliance to": [0, 65535], "good lord you vse this dalliance to excuse": [0, 65535], "lord you vse this dalliance to excuse your": [0, 65535], "you vse this dalliance to excuse your breach": [0, 65535], "vse this dalliance to excuse your breach of": [0, 65535], "this dalliance to excuse your breach of promise": [0, 65535], "dalliance to excuse your breach of promise to": [0, 65535], "to excuse your breach of promise to the": [0, 65535], "excuse your breach of promise to the porpentine": [0, 65535], "your breach of promise to the porpentine i": [0, 65535], "breach of promise to the porpentine i should": [0, 65535], "of promise to the porpentine i should haue": [0, 65535], "promise to the porpentine i should haue chid": [0, 65535], "to the porpentine i should haue chid you": [0, 65535], "the porpentine i should haue chid you for": [0, 65535], "porpentine i should haue chid you for not": [0, 65535], "i should haue chid you for not bringing": [0, 65535], "should haue chid you for not bringing it": [0, 65535], "haue chid you for not bringing it but": [0, 65535], "chid you for not bringing it but like": [0, 65535], "you for not bringing it but like a": [0, 65535], "for not bringing it but like a shrew": [0, 65535], "not bringing it but like a shrew you": [0, 65535], "bringing it but like a shrew you first": [0, 65535], "it but like a shrew you first begin": [0, 65535], "but like a shrew you first begin to": [0, 65535], "like a shrew you first begin to brawle": [0, 65535], "a shrew you first begin to brawle mar": [0, 65535], "shrew you first begin to brawle mar the": [0, 65535], "you first begin to brawle mar the houre": [0, 65535], "first begin to brawle mar the houre steales": [0, 65535], "begin to brawle mar the houre steales on": [0, 65535], "to brawle mar the houre steales on i": [0, 65535], "brawle mar the houre steales on i pray": [0, 65535], "mar the houre steales on i pray you": [0, 65535], "the houre steales on i pray you sir": [0, 65535], "houre steales on i pray you sir dispatch": [0, 65535], "steales on i pray you sir dispatch gold": [0, 65535], "on i pray you sir dispatch gold you": [0, 65535], "i pray you sir dispatch gold you heare": [0, 65535], "pray you sir dispatch gold you heare how": [0, 65535], "you sir dispatch gold you heare how he": [0, 65535], "sir dispatch gold you heare how he importunes": [0, 65535], "dispatch gold you heare how he importunes me": [0, 65535], "gold you heare how he importunes me the": [0, 65535], "you heare how he importunes me the chaine": [0, 65535], "heare how he importunes me the chaine ant": [0, 65535], "how he importunes me the chaine ant why": [0, 65535], "he importunes me the chaine ant why giue": [0, 65535], "importunes me the chaine ant why giue it": [0, 65535], "me the chaine ant why giue it to": [0, 65535], "the chaine ant why giue it to my": [0, 65535], "chaine ant why giue it to my wife": [0, 65535], "ant why giue it to my wife and": [0, 65535], "why giue it to my wife and fetch": [0, 65535], "giue it to my wife and fetch your": [0, 65535], "it to my wife and fetch your mony": [0, 65535], "to my wife and fetch your mony gold": [0, 65535], "my wife and fetch your mony gold come": [0, 65535], "wife and fetch your mony gold come come": [0, 65535], "and fetch your mony gold come come you": [0, 65535], "fetch your mony gold come come you know": [0, 65535], "your mony gold come come you know i": [0, 65535], "mony gold come come you know i gaue": [0, 65535], "gold come come you know i gaue it": [0, 65535], "come come you know i gaue it you": [0, 65535], "come you know i gaue it you euen": [0, 65535], "you know i gaue it you euen now": [0, 65535], "know i gaue it you euen now either": [0, 65535], "i gaue it you euen now either send": [0, 65535], "gaue it you euen now either send the": [0, 65535], "it you euen now either send the chaine": [0, 65535], "you euen now either send the chaine or": [0, 65535], "euen now either send the chaine or send": [0, 65535], "now either send the chaine or send me": [0, 65535], "either send the chaine or send me by": [0, 65535], "send the chaine or send me by some": [0, 65535], "the chaine or send me by some token": [0, 65535], "chaine or send me by some token ant": [0, 65535], "or send me by some token ant fie": [0, 65535], "send me by some token ant fie now": [0, 65535], "me by some token ant fie now you": [0, 65535], "by some token ant fie now you run": [0, 65535], "some token ant fie now you run this": [0, 65535], "token ant fie now you run this humor": [0, 65535], "ant fie now you run this humor out": [0, 65535], "fie now you run this humor out of": [0, 65535], "now you run this humor out of breath": [0, 65535], "you run this humor out of breath come": [0, 65535], "run this humor out of breath come where's": [0, 65535], "this humor out of breath come where's the": [0, 65535], "humor out of breath come where's the chaine": [0, 65535], "out of breath come where's the chaine i": [0, 65535], "of breath come where's the chaine i pray": [0, 65535], "breath come where's the chaine i pray you": [0, 65535], "come where's the chaine i pray you let": [0, 65535], "where's the chaine i pray you let me": [0, 65535], "the chaine i pray you let me see": [0, 65535], "chaine i pray you let me see it": [0, 65535], "i pray you let me see it mar": [0, 65535], "pray you let me see it mar my": [0, 65535], "you let me see it mar my businesse": [0, 65535], "let me see it mar my businesse cannot": [0, 65535], "me see it mar my businesse cannot brooke": [0, 65535], "see it mar my businesse cannot brooke this": [0, 65535], "it mar my businesse cannot brooke this dalliance": [0, 65535], "mar my businesse cannot brooke this dalliance good": [0, 65535], "my businesse cannot brooke this dalliance good sir": [0, 65535], "businesse cannot brooke this dalliance good sir say": [0, 65535], "cannot brooke this dalliance good sir say whe'r": [0, 65535], "brooke this dalliance good sir say whe'r you'l": [0, 65535], "this dalliance good sir say whe'r you'l answer": [0, 65535], "dalliance good sir say whe'r you'l answer me": [0, 65535], "good sir say whe'r you'l answer me or": [0, 65535], "sir say whe'r you'l answer me or no": [0, 65535], "say whe'r you'l answer me or no if": [0, 65535], "whe'r you'l answer me or no if not": [0, 65535], "you'l answer me or no if not ile": [0, 65535], "answer me or no if not ile leaue": [0, 65535], "me or no if not ile leaue him": [0, 65535], "or no if not ile leaue him to": [0, 65535], "no if not ile leaue him to the": [0, 65535], "if not ile leaue him to the officer": [0, 65535], "not ile leaue him to the officer ant": [0, 65535], "ile leaue him to the officer ant i": [0, 65535], "leaue him to the officer ant i answer": [0, 65535], "him to the officer ant i answer you": [0, 65535], "to the officer ant i answer you what": [0, 65535], "the officer ant i answer you what should": [0, 65535], "officer ant i answer you what should i": [0, 65535], "ant i answer you what should i answer": [0, 65535], "i answer you what should i answer you": [0, 65535], "answer you what should i answer you gold": [0, 65535], "you what should i answer you gold the": [0, 65535], "what should i answer you gold the monie": [0, 65535], "should i answer you gold the monie that": [0, 65535], "i answer you gold the monie that you": [0, 65535], "answer you gold the monie that you owe": [0, 65535], "you gold the monie that you owe me": [0, 65535], "gold the monie that you owe me for": [0, 65535], "the monie that you owe me for the": [0, 65535], "monie that you owe me for the chaine": [0, 65535], "that you owe me for the chaine ant": [0, 65535], "you owe me for the chaine ant i": [0, 65535], "owe me for the chaine ant i owe": [0, 65535], "me for the chaine ant i owe you": [0, 65535], "for the chaine ant i owe you none": [0, 65535], "the chaine ant i owe you none till": [0, 65535], "chaine ant i owe you none till i": [0, 65535], "ant i owe you none till i receiue": [0, 65535], "i owe you none till i receiue the": [0, 65535], "owe you none till i receiue the chaine": [0, 65535], "you none till i receiue the chaine gold": [0, 65535], "none till i receiue the chaine gold you": [0, 65535], "till i receiue the chaine gold you know": [0, 65535], "i receiue the chaine gold you know i": [0, 65535], "receiue the chaine gold you know i gaue": [0, 65535], "the chaine gold you know i gaue it": [0, 65535], "chaine gold you know i gaue it you": [0, 65535], "gold you know i gaue it you halfe": [0, 65535], "you know i gaue it you halfe an": [0, 65535], "know i gaue it you halfe an houre": [0, 65535], "i gaue it you halfe an houre since": [0, 65535], "gaue it you halfe an houre since ant": [0, 65535], "it you halfe an houre since ant you": [0, 65535], "you halfe an houre since ant you gaue": [0, 65535], "halfe an houre since ant you gaue me": [0, 65535], "an houre since ant you gaue me none": [0, 65535], "houre since ant you gaue me none you": [0, 65535], "since ant you gaue me none you wrong": [0, 65535], "ant you gaue me none you wrong mee": [0, 65535], "you gaue me none you wrong mee much": [0, 65535], "gaue me none you wrong mee much to": [0, 65535], "me none you wrong mee much to say": [0, 65535], "none you wrong mee much to say so": [0, 65535], "you wrong mee much to say so gold": [0, 65535], "wrong mee much to say so gold you": [0, 65535], "mee much to say so gold you wrong": [0, 65535], "much to say so gold you wrong me": [0, 65535], "to say so gold you wrong me more": [0, 65535], "say so gold you wrong me more sir": [0, 65535], "so gold you wrong me more sir in": [0, 65535], "gold you wrong me more sir in denying": [0, 65535], "you wrong me more sir in denying it": [0, 65535], "wrong me more sir in denying it consider": [0, 65535], "me more sir in denying it consider how": [0, 65535], "more sir in denying it consider how it": [0, 65535], "sir in denying it consider how it stands": [0, 65535], "in denying it consider how it stands vpon": [0, 65535], "denying it consider how it stands vpon my": [0, 65535], "it consider how it stands vpon my credit": [0, 65535], "consider how it stands vpon my credit mar": [0, 65535], "how it stands vpon my credit mar well": [0, 65535], "it stands vpon my credit mar well officer": [0, 65535], "stands vpon my credit mar well officer arrest": [0, 65535], "vpon my credit mar well officer arrest him": [0, 65535], "my credit mar well officer arrest him at": [0, 65535], "credit mar well officer arrest him at my": [0, 65535], "mar well officer arrest him at my suite": [0, 65535], "well officer arrest him at my suite offi": [0, 65535], "officer arrest him at my suite offi i": [0, 65535], "arrest him at my suite offi i do": [0, 65535], "him at my suite offi i do and": [0, 65535], "at my suite offi i do and charge": [0, 65535], "my suite offi i do and charge you": [0, 65535], "suite offi i do and charge you in": [0, 65535], "offi i do and charge you in the": [0, 65535], "i do and charge you in the dukes": [0, 65535], "do and charge you in the dukes name": [0, 65535], "and charge you in the dukes name to": [0, 65535], "charge you in the dukes name to obey": [0, 65535], "you in the dukes name to obey me": [0, 65535], "in the dukes name to obey me gold": [0, 65535], "the dukes name to obey me gold this": [0, 65535], "dukes name to obey me gold this touches": [0, 65535], "name to obey me gold this touches me": [0, 65535], "to obey me gold this touches me in": [0, 65535], "obey me gold this touches me in reputation": [0, 65535], "me gold this touches me in reputation either": [0, 65535], "gold this touches me in reputation either consent": [0, 65535], "this touches me in reputation either consent to": [0, 65535], "touches me in reputation either consent to pay": [0, 65535], "me in reputation either consent to pay this": [0, 65535], "in reputation either consent to pay this sum": [0, 65535], "reputation either consent to pay this sum for": [0, 65535], "either consent to pay this sum for me": [0, 65535], "consent to pay this sum for me or": [0, 65535], "to pay this sum for me or i": [0, 65535], "pay this sum for me or i attach": [0, 65535], "this sum for me or i attach you": [0, 65535], "sum for me or i attach you by": [0, 65535], "for me or i attach you by this": [0, 65535], "me or i attach you by this officer": [0, 65535], "or i attach you by this officer ant": [0, 65535], "i attach you by this officer ant consent": [0, 65535], "attach you by this officer ant consent to": [0, 65535], "you by this officer ant consent to pay": [0, 65535], "by this officer ant consent to pay thee": [0, 65535], "this officer ant consent to pay thee that": [0, 65535], "officer ant consent to pay thee that i": [0, 65535], "ant consent to pay thee that i neuer": [0, 65535], "consent to pay thee that i neuer had": [0, 65535], "to pay thee that i neuer had arrest": [0, 65535], "pay thee that i neuer had arrest me": [0, 65535], "thee that i neuer had arrest me foolish": [0, 65535], "that i neuer had arrest me foolish fellow": [0, 65535], "i neuer had arrest me foolish fellow if": [0, 65535], "neuer had arrest me foolish fellow if thou": [0, 65535], "had arrest me foolish fellow if thou dar'st": [0, 65535], "arrest me foolish fellow if thou dar'st gold": [0, 65535], "me foolish fellow if thou dar'st gold heere": [0, 65535], "foolish fellow if thou dar'st gold heere is": [0, 65535], "fellow if thou dar'st gold heere is thy": [0, 65535], "if thou dar'st gold heere is thy fee": [0, 65535], "thou dar'st gold heere is thy fee arrest": [0, 65535], "dar'st gold heere is thy fee arrest him": [0, 65535], "gold heere is thy fee arrest him officer": [0, 65535], "heere is thy fee arrest him officer i": [0, 65535], "is thy fee arrest him officer i would": [0, 65535], "thy fee arrest him officer i would not": [0, 65535], "fee arrest him officer i would not spare": [0, 65535], "arrest him officer i would not spare my": [0, 65535], "him officer i would not spare my brother": [0, 65535], "officer i would not spare my brother in": [0, 65535], "i would not spare my brother in this": [0, 65535], "would not spare my brother in this case": [0, 65535], "not spare my brother in this case if": [0, 65535], "spare my brother in this case if he": [0, 65535], "my brother in this case if he should": [0, 65535], "brother in this case if he should scorne": [0, 65535], "in this case if he should scorne me": [0, 65535], "this case if he should scorne me so": [0, 65535], "case if he should scorne me so apparantly": [0, 65535], "if he should scorne me so apparantly offic": [0, 65535], "he should scorne me so apparantly offic i": [0, 65535], "should scorne me so apparantly offic i do": [0, 65535], "scorne me so apparantly offic i do arrest": [0, 65535], "me so apparantly offic i do arrest you": [0, 65535], "so apparantly offic i do arrest you sir": [0, 65535], "apparantly offic i do arrest you sir you": [0, 65535], "offic i do arrest you sir you heare": [0, 65535], "i do arrest you sir you heare the": [0, 65535], "do arrest you sir you heare the suite": [0, 65535], "arrest you sir you heare the suite ant": [0, 65535], "you sir you heare the suite ant i": [0, 65535], "sir you heare the suite ant i do": [0, 65535], "you heare the suite ant i do obey": [0, 65535], "heare the suite ant i do obey thee": [0, 65535], "the suite ant i do obey thee till": [0, 65535], "suite ant i do obey thee till i": [0, 65535], "ant i do obey thee till i giue": [0, 65535], "i do obey thee till i giue thee": [0, 65535], "do obey thee till i giue thee baile": [0, 65535], "obey thee till i giue thee baile but": [0, 65535], "thee till i giue thee baile but sirrah": [0, 65535], "till i giue thee baile but sirrah you": [0, 65535], "i giue thee baile but sirrah you shall": [0, 65535], "giue thee baile but sirrah you shall buy": [0, 65535], "thee baile but sirrah you shall buy this": [0, 65535], "baile but sirrah you shall buy this sport": [0, 65535], "but sirrah you shall buy this sport as": [0, 65535], "sirrah you shall buy this sport as deere": [0, 65535], "you shall buy this sport as deere as": [0, 65535], "shall buy this sport as deere as all": [0, 65535], "buy this sport as deere as all the": [0, 65535], "this sport as deere as all the mettall": [0, 65535], "sport as deere as all the mettall in": [0, 65535], "as deere as all the mettall in your": [0, 65535], "deere as all the mettall in your shop": [0, 65535], "as all the mettall in your shop will": [0, 65535], "all the mettall in your shop will answer": [0, 65535], "the mettall in your shop will answer gold": [0, 65535], "mettall in your shop will answer gold sir": [0, 65535], "in your shop will answer gold sir sir": [0, 65535], "your shop will answer gold sir sir i": [0, 65535], "shop will answer gold sir sir i shall": [0, 65535], "will answer gold sir sir i shall haue": [0, 65535], "answer gold sir sir i shall haue law": [0, 65535], "gold sir sir i shall haue law in": [0, 65535], "sir sir i shall haue law in ephesus": [0, 65535], "sir i shall haue law in ephesus to": [0, 65535], "i shall haue law in ephesus to your": [0, 65535], "shall haue law in ephesus to your notorious": [0, 65535], "haue law in ephesus to your notorious shame": [0, 65535], "law in ephesus to your notorious shame i": [0, 65535], "in ephesus to your notorious shame i doubt": [0, 65535], "ephesus to your notorious shame i doubt it": [0, 65535], "to your notorious shame i doubt it not": [0, 65535], "your notorious shame i doubt it not enter": [0, 65535], "notorious shame i doubt it not enter dromio": [0, 65535], "shame i doubt it not enter dromio sira": [0, 65535], "i doubt it not enter dromio sira from": [0, 65535], "doubt it not enter dromio sira from the": [0, 65535], "it not enter dromio sira from the bay": [0, 65535], "not enter dromio sira from the bay dro": [0, 65535], "enter dromio sira from the bay dro master": [0, 65535], "dromio sira from the bay dro master there's": [0, 65535], "sira from the bay dro master there's a": [0, 65535], "from the bay dro master there's a barke": [0, 65535], "the bay dro master there's a barke of": [0, 65535], "bay dro master there's a barke of epidamium": [0, 65535], "dro master there's a barke of epidamium that": [0, 65535], "master there's a barke of epidamium that staies": [0, 65535], "there's a barke of epidamium that staies but": [0, 65535], "a barke of epidamium that staies but till": [0, 65535], "barke of epidamium that staies but till her": [0, 65535], "of epidamium that staies but till her owner": [0, 65535], "epidamium that staies but till her owner comes": [0, 65535], "that staies but till her owner comes aboord": [0, 65535], "staies but till her owner comes aboord and": [0, 65535], "but till her owner comes aboord and then": [0, 65535], "till her owner comes aboord and then sir": [0, 65535], "her owner comes aboord and then sir she": [0, 65535], "owner comes aboord and then sir she beares": [0, 65535], "comes aboord and then sir she beares away": [0, 65535], "aboord and then sir she beares away our": [0, 65535], "and then sir she beares away our fraughtage": [0, 65535], "then sir she beares away our fraughtage sir": [0, 65535], "sir she beares away our fraughtage sir i": [0, 65535], "she beares away our fraughtage sir i haue": [0, 65535], "beares away our fraughtage sir i haue conuei'd": [0, 65535], "away our fraughtage sir i haue conuei'd aboord": [0, 65535], "our fraughtage sir i haue conuei'd aboord and": [0, 65535], "fraughtage sir i haue conuei'd aboord and i": [0, 65535], "sir i haue conuei'd aboord and i haue": [0, 65535], "i haue conuei'd aboord and i haue bought": [0, 65535], "haue conuei'd aboord and i haue bought the": [0, 65535], "conuei'd aboord and i haue bought the oyle": [0, 65535], "aboord and i haue bought the oyle the": [0, 65535], "and i haue bought the oyle the balsamum": [0, 65535], "i haue bought the oyle the balsamum and": [0, 65535], "haue bought the oyle the balsamum and aqua": [0, 65535], "bought the oyle the balsamum and aqua vit\u00e6": [0, 65535], "the oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the ship": [0, 65535], "the balsamum and aqua vit\u00e6 the ship is": [0, 65535], "balsamum and aqua vit\u00e6 the ship is in": [0, 65535], "and aqua vit\u00e6 the ship is in her": [0, 65535], "aqua vit\u00e6 the ship is in her trim": [0, 65535], "vit\u00e6 the ship is in her trim the": [0, 65535], "the ship is in her trim the merrie": [0, 65535], "ship is in her trim the merrie winde": [0, 65535], "is in her trim the merrie winde blowes": [0, 65535], "in her trim the merrie winde blowes faire": [0, 65535], "her trim the merrie winde blowes faire from": [0, 65535], "trim the merrie winde blowes faire from land": [0, 65535], "the merrie winde blowes faire from land they": [0, 65535], "merrie winde blowes faire from land they stay": [0, 65535], "winde blowes faire from land they stay for": [0, 65535], "blowes faire from land they stay for nought": [0, 65535], "faire from land they stay for nought at": [0, 65535], "from land they stay for nought at all": [0, 65535], "land they stay for nought at all but": [0, 65535], "they stay for nought at all but for": [0, 65535], "stay for nought at all but for their": [0, 65535], "for nought at all but for their owner": [0, 65535], "nought at all but for their owner master": [0, 65535], "at all but for their owner master and": [0, 65535], "all but for their owner master and your": [0, 65535], "but for their owner master and your selfe": [0, 65535], "for their owner master and your selfe an": [0, 65535], "their owner master and your selfe an how": [0, 65535], "owner master and your selfe an how now": [0, 65535], "master and your selfe an how now a": [0, 65535], "and your selfe an how now a madman": [0, 65535], "your selfe an how now a madman why": [0, 65535], "selfe an how now a madman why thou": [0, 65535], "an how now a madman why thou peeuish": [0, 65535], "how now a madman why thou peeuish sheep": [0, 65535], "now a madman why thou peeuish sheep what": [0, 65535], "a madman why thou peeuish sheep what ship": [0, 65535], "madman why thou peeuish sheep what ship of": [0, 65535], "why thou peeuish sheep what ship of epidamium": [0, 65535], "thou peeuish sheep what ship of epidamium staies": [0, 65535], "peeuish sheep what ship of epidamium staies for": [0, 65535], "sheep what ship of epidamium staies for me": [0, 65535], "what ship of epidamium staies for me s": [0, 65535], "ship of epidamium staies for me s dro": [0, 65535], "of epidamium staies for me s dro a": [0, 65535], "epidamium staies for me s dro a ship": [0, 65535], "staies for me s dro a ship you": [0, 65535], "for me s dro a ship you sent": [0, 65535], "me s dro a ship you sent me": [0, 65535], "s dro a ship you sent me too": [0, 65535], "dro a ship you sent me too to": [0, 65535], "a ship you sent me too to hier": [0, 65535], "ship you sent me too to hier waftage": [0, 65535], "you sent me too to hier waftage ant": [0, 65535], "sent me too to hier waftage ant thou": [0, 65535], "me too to hier waftage ant thou drunken": [0, 65535], "too to hier waftage ant thou drunken slaue": [0, 65535], "to hier waftage ant thou drunken slaue i": [0, 65535], "hier waftage ant thou drunken slaue i sent": [0, 65535], "waftage ant thou drunken slaue i sent thee": [0, 65535], "ant thou drunken slaue i sent thee for": [0, 65535], "thou drunken slaue i sent thee for a": [0, 65535], "drunken slaue i sent thee for a rope": [0, 65535], "slaue i sent thee for a rope and": [0, 65535], "i sent thee for a rope and told": [0, 65535], "sent thee for a rope and told thee": [0, 65535], "thee for a rope and told thee to": [0, 65535], "for a rope and told thee to what": [0, 65535], "a rope and told thee to what purpose": [0, 65535], "rope and told thee to what purpose and": [0, 65535], "and told thee to what purpose and what": [0, 65535], "told thee to what purpose and what end": [0, 65535], "thee to what purpose and what end s": [0, 65535], "to what purpose and what end s dro": [0, 65535], "what purpose and what end s dro you": [0, 65535], "purpose and what end s dro you sent": [0, 65535], "and what end s dro you sent me": [0, 65535], "what end s dro you sent me for": [0, 65535], "end s dro you sent me for a": [0, 65535], "s dro you sent me for a ropes": [0, 65535], "dro you sent me for a ropes end": [0, 65535], "you sent me for a ropes end as": [0, 65535], "sent me for a ropes end as soone": [0, 65535], "me for a ropes end as soone you": [0, 65535], "for a ropes end as soone you sent": [0, 65535], "a ropes end as soone you sent me": [0, 65535], "ropes end as soone you sent me to": [0, 65535], "end as soone you sent me to the": [0, 65535], "as soone you sent me to the bay": [0, 65535], "soone you sent me to the bay sir": [0, 65535], "you sent me to the bay sir for": [0, 65535], "sent me to the bay sir for a": [0, 65535], "me to the bay sir for a barke": [0, 65535], "to the bay sir for a barke ant": [0, 65535], "the bay sir for a barke ant i": [0, 65535], "bay sir for a barke ant i will": [0, 65535], "sir for a barke ant i will debate": [0, 65535], "for a barke ant i will debate this": [0, 65535], "a barke ant i will debate this matter": [0, 65535], "barke ant i will debate this matter at": [0, 65535], "ant i will debate this matter at more": [0, 65535], "i will debate this matter at more leisure": [0, 65535], "will debate this matter at more leisure and": [0, 65535], "debate this matter at more leisure and teach": [0, 65535], "this matter at more leisure and teach your": [0, 65535], "matter at more leisure and teach your eares": [0, 65535], "at more leisure and teach your eares to": [0, 65535], "more leisure and teach your eares to list": [0, 65535], "leisure and teach your eares to list me": [0, 65535], "and teach your eares to list me with": [0, 65535], "teach your eares to list me with more": [0, 65535], "your eares to list me with more heede": [0, 65535], "eares to list me with more heede to": [0, 65535], "to list me with more heede to adriana": [0, 65535], "list me with more heede to adriana villaine": [0, 65535], "me with more heede to adriana villaine hie": [0, 65535], "with more heede to adriana villaine hie thee": [0, 65535], "more heede to adriana villaine hie thee straight": [0, 65535], "heede to adriana villaine hie thee straight giue": [0, 65535], "to adriana villaine hie thee straight giue her": [0, 65535], "adriana villaine hie thee straight giue her this": [0, 65535], "villaine hie thee straight giue her this key": [0, 65535], "hie thee straight giue her this key and": [0, 65535], "thee straight giue her this key and tell": [0, 65535], "straight giue her this key and tell her": [0, 65535], "giue her this key and tell her in": [0, 65535], "her this key and tell her in the": [0, 65535], "this key and tell her in the deske": [0, 65535], "key and tell her in the deske that's": [0, 65535], "and tell her in the deske that's couer'd": [0, 65535], "tell her in the deske that's couer'd o're": [0, 65535], "her in the deske that's couer'd o're with": [0, 65535], "in the deske that's couer'd o're with turkish": [0, 65535], "the deske that's couer'd o're with turkish tapistrie": [0, 65535], "deske that's couer'd o're with turkish tapistrie there": [0, 65535], "that's couer'd o're with turkish tapistrie there is": [0, 65535], "couer'd o're with turkish tapistrie there is a": [0, 65535], "o're with turkish tapistrie there is a purse": [0, 65535], "with turkish tapistrie there is a purse of": [0, 65535], "turkish tapistrie there is a purse of duckets": [0, 65535], "tapistrie there is a purse of duckets let": [0, 65535], "there is a purse of duckets let her": [0, 65535], "is a purse of duckets let her send": [0, 65535], "a purse of duckets let her send it": [0, 65535], "purse of duckets let her send it tell": [0, 65535], "of duckets let her send it tell her": [0, 65535], "duckets let her send it tell her i": [0, 65535], "let her send it tell her i am": [0, 65535], "her send it tell her i am arrested": [0, 65535], "send it tell her i am arrested in": [0, 65535], "it tell her i am arrested in the": [0, 65535], "tell her i am arrested in the streete": [0, 65535], "her i am arrested in the streete and": [0, 65535], "i am arrested in the streete and that": [0, 65535], "am arrested in the streete and that shall": [0, 65535], "arrested in the streete and that shall baile": [0, 65535], "in the streete and that shall baile me": [0, 65535], "the streete and that shall baile me hie": [0, 65535], "streete and that shall baile me hie thee": [0, 65535], "and that shall baile me hie thee slaue": [0, 65535], "that shall baile me hie thee slaue be": [0, 65535], "shall baile me hie thee slaue be gone": [0, 65535], "baile me hie thee slaue be gone on": [0, 65535], "me hie thee slaue be gone on officer": [0, 65535], "hie thee slaue be gone on officer to": [0, 65535], "thee slaue be gone on officer to prison": [0, 65535], "slaue be gone on officer to prison till": [0, 65535], "be gone on officer to prison till it": [0, 65535], "gone on officer to prison till it come": [0, 65535], "on officer to prison till it come exeunt": [0, 65535], "officer to prison till it come exeunt s": [0, 65535], "to prison till it come exeunt s dromio": [0, 65535], "prison till it come exeunt s dromio to": [0, 65535], "till it come exeunt s dromio to adriana": [0, 65535], "it come exeunt s dromio to adriana that": [0, 65535], "come exeunt s dromio to adriana that is": [0, 65535], "exeunt s dromio to adriana that is where": [0, 65535], "s dromio to adriana that is where we": [0, 65535], "dromio to adriana that is where we din'd": [0, 65535], "to adriana that is where we din'd where": [0, 65535], "adriana that is where we din'd where dowsabell": [0, 65535], "that is where we din'd where dowsabell did": [0, 65535], "is where we din'd where dowsabell did claime": [0, 65535], "where we din'd where dowsabell did claime me": [0, 65535], "we din'd where dowsabell did claime me for": [0, 65535], "din'd where dowsabell did claime me for her": [0, 65535], "where dowsabell did claime me for her husband": [0, 65535], "dowsabell did claime me for her husband she": [0, 65535], "did claime me for her husband she is": [0, 65535], "claime me for her husband she is too": [0, 65535], "me for her husband she is too bigge": [0, 65535], "for her husband she is too bigge i": [0, 65535], "her husband she is too bigge i hope": [0, 65535], "husband she is too bigge i hope for": [0, 65535], "she is too bigge i hope for me": [0, 65535], "is too bigge i hope for me to": [0, 65535], "too bigge i hope for me to compasse": [0, 65535], "bigge i hope for me to compasse thither": [0, 65535], "i hope for me to compasse thither i": [0, 65535], "hope for me to compasse thither i must": [0, 65535], "for me to compasse thither i must although": [0, 65535], "me to compasse thither i must although against": [0, 65535], "to compasse thither i must although against my": [0, 65535], "compasse thither i must although against my will": [0, 65535], "thither i must although against my will for": [0, 65535], "i must although against my will for seruants": [0, 65535], "must although against my will for seruants must": [0, 65535], "although against my will for seruants must their": [0, 65535], "against my will for seruants must their masters": [0, 65535], "my will for seruants must their masters mindes": [0, 65535], "will for seruants must their masters mindes fulfill": [0, 65535], "for seruants must their masters mindes fulfill exit": [0, 65535], "seruants must their masters mindes fulfill exit enter": [0, 65535], "must their masters mindes fulfill exit enter adriana": [0, 65535], "their masters mindes fulfill exit enter adriana and": [0, 65535], "masters mindes fulfill exit enter adriana and luciana": [0, 65535], "mindes fulfill exit enter adriana and luciana adr": [0, 65535], "fulfill exit enter adriana and luciana adr ah": [0, 65535], "exit enter adriana and luciana adr ah luciana": [0, 65535], "enter adriana and luciana adr ah luciana did": [0, 65535], "adriana and luciana adr ah luciana did he": [0, 65535], "and luciana adr ah luciana did he tempt": [0, 65535], "luciana adr ah luciana did he tempt thee": [0, 65535], "adr ah luciana did he tempt thee so": [0, 65535], "ah luciana did he tempt thee so might'st": [0, 65535], "luciana did he tempt thee so might'st thou": [0, 65535], "did he tempt thee so might'st thou perceiue": [0, 65535], "he tempt thee so might'st thou perceiue austeerely": [0, 65535], "tempt thee so might'st thou perceiue austeerely in": [0, 65535], "thee so might'st thou perceiue austeerely in his": [0, 65535], "so might'st thou perceiue austeerely in his eie": [0, 65535], "might'st thou perceiue austeerely in his eie that": [0, 65535], "thou perceiue austeerely in his eie that he": [0, 65535], "perceiue austeerely in his eie that he did": [0, 65535], "austeerely in his eie that he did plead": [0, 65535], "in his eie that he did plead in": [0, 65535], "his eie that he did plead in earnest": [0, 65535], "eie that he did plead in earnest yea": [0, 65535], "that he did plead in earnest yea or": [0, 65535], "he did plead in earnest yea or no": [0, 65535], "did plead in earnest yea or no look'd": [0, 65535], "plead in earnest yea or no look'd he": [0, 65535], "in earnest yea or no look'd he or": [0, 65535], "earnest yea or no look'd he or red": [0, 65535], "yea or no look'd he or red or": [0, 65535], "or no look'd he or red or pale": [0, 65535], "no look'd he or red or pale or": [0, 65535], "look'd he or red or pale or sad": [0, 65535], "he or red or pale or sad or": [0, 65535], "or red or pale or sad or merrily": [0, 65535], "red or pale or sad or merrily what": [0, 65535], "or pale or sad or merrily what obseruation": [0, 65535], "pale or sad or merrily what obseruation mad'st": [0, 65535], "or sad or merrily what obseruation mad'st thou": [0, 65535], "sad or merrily what obseruation mad'st thou in": [0, 65535], "or merrily what obseruation mad'st thou in this": [0, 65535], "merrily what obseruation mad'st thou in this case": [0, 65535], "what obseruation mad'st thou in this case oh": [0, 65535], "obseruation mad'st thou in this case oh his": [0, 65535], "mad'st thou in this case oh his hearts": [0, 65535], "thou in this case oh his hearts meteors": [0, 65535], "in this case oh his hearts meteors tilting": [0, 65535], "this case oh his hearts meteors tilting in": [0, 65535], "case oh his hearts meteors tilting in his": [0, 65535], "oh his hearts meteors tilting in his face": [0, 65535], "his hearts meteors tilting in his face luc": [0, 65535], "hearts meteors tilting in his face luc first": [0, 65535], "meteors tilting in his face luc first he": [0, 65535], "tilting in his face luc first he deni'de": [0, 65535], "in his face luc first he deni'de you": [0, 65535], "his face luc first he deni'de you had": [0, 65535], "face luc first he deni'de you had in": [0, 65535], "luc first he deni'de you had in him": [0, 65535], "first he deni'de you had in him no": [0, 65535], "he deni'de you had in him no right": [0, 65535], "deni'de you had in him no right adr": [0, 65535], "you had in him no right adr he": [0, 65535], "had in him no right adr he meant": [0, 65535], "in him no right adr he meant he": [0, 65535], "him no right adr he meant he did": [0, 65535], "no right adr he meant he did me": [0, 65535], "right adr he meant he did me none": [0, 65535], "adr he meant he did me none the": [0, 65535], "he meant he did me none the more": [0, 65535], "meant he did me none the more my": [0, 65535], "he did me none the more my spight": [0, 65535], "did me none the more my spight luc": [0, 65535], "me none the more my spight luc then": [0, 65535], "none the more my spight luc then swore": [0, 65535], "the more my spight luc then swore he": [0, 65535], "more my spight luc then swore he that": [0, 65535], "my spight luc then swore he that he": [0, 65535], "spight luc then swore he that he was": [0, 65535], "luc then swore he that he was a": [0, 65535], "then swore he that he was a stranger": [0, 65535], "swore he that he was a stranger heere": [0, 65535], "he that he was a stranger heere adr": [0, 65535], "that he was a stranger heere adr and": [0, 65535], "he was a stranger heere adr and true": [0, 65535], "was a stranger heere adr and true he": [0, 65535], "a stranger heere adr and true he swore": [0, 65535], "stranger heere adr and true he swore though": [0, 65535], "heere adr and true he swore though yet": [0, 65535], "adr and true he swore though yet forsworne": [0, 65535], "and true he swore though yet forsworne hee": [0, 65535], "true he swore though yet forsworne hee were": [0, 65535], "he swore though yet forsworne hee were luc": [0, 65535], "swore though yet forsworne hee were luc then": [0, 65535], "though yet forsworne hee were luc then pleaded": [0, 65535], "yet forsworne hee were luc then pleaded i": [0, 65535], "forsworne hee were luc then pleaded i for": [0, 65535], "hee were luc then pleaded i for you": [0, 65535], "were luc then pleaded i for you adr": [0, 65535], "luc then pleaded i for you adr and": [0, 65535], "then pleaded i for you adr and what": [0, 65535], "pleaded i for you adr and what said": [0, 65535], "i for you adr and what said he": [0, 65535], "for you adr and what said he luc": [0, 65535], "you adr and what said he luc that": [0, 65535], "adr and what said he luc that loue": [0, 65535], "and what said he luc that loue i": [0, 65535], "what said he luc that loue i begg'd": [0, 65535], "said he luc that loue i begg'd for": [0, 65535], "he luc that loue i begg'd for you": [0, 65535], "luc that loue i begg'd for you he": [0, 65535], "that loue i begg'd for you he begg'd": [0, 65535], "loue i begg'd for you he begg'd of": [0, 65535], "i begg'd for you he begg'd of me": [0, 65535], "begg'd for you he begg'd of me adr": [0, 65535], "for you he begg'd of me adr with": [0, 65535], "you he begg'd of me adr with what": [0, 65535], "he begg'd of me adr with what perswasion": [0, 65535], "begg'd of me adr with what perswasion did": [0, 65535], "of me adr with what perswasion did he": [0, 65535], "me adr with what perswasion did he tempt": [0, 65535], "adr with what perswasion did he tempt thy": [0, 65535], "with what perswasion did he tempt thy loue": [0, 65535], "what perswasion did he tempt thy loue luc": [0, 65535], "perswasion did he tempt thy loue luc with": [0, 65535], "did he tempt thy loue luc with words": [0, 65535], "he tempt thy loue luc with words that": [0, 65535], "tempt thy loue luc with words that in": [0, 65535], "thy loue luc with words that in an": [0, 65535], "loue luc with words that in an honest": [0, 65535], "luc with words that in an honest suit": [0, 65535], "with words that in an honest suit might": [0, 65535], "words that in an honest suit might moue": [0, 65535], "that in an honest suit might moue first": [0, 65535], "in an honest suit might moue first he": [0, 65535], "an honest suit might moue first he did": [0, 65535], "honest suit might moue first he did praise": [0, 65535], "suit might moue first he did praise my": [0, 65535], "might moue first he did praise my beautie": [0, 65535], "moue first he did praise my beautie then": [0, 65535], "first he did praise my beautie then my": [0, 65535], "he did praise my beautie then my speech": [0, 65535], "did praise my beautie then my speech adr": [0, 65535], "praise my beautie then my speech adr did'st": [0, 65535], "my beautie then my speech adr did'st speake": [0, 65535], "beautie then my speech adr did'st speake him": [0, 65535], "then my speech adr did'st speake him faire": [0, 65535], "my speech adr did'st speake him faire luc": [0, 65535], "speech adr did'st speake him faire luc haue": [0, 65535], "adr did'st speake him faire luc haue patience": [0, 65535], "did'st speake him faire luc haue patience i": [0, 65535], "speake him faire luc haue patience i beseech": [0, 65535], "him faire luc haue patience i beseech adr": [0, 65535], "faire luc haue patience i beseech adr i": [0, 65535], "luc haue patience i beseech adr i cannot": [0, 65535], "haue patience i beseech adr i cannot nor": [0, 65535], "patience i beseech adr i cannot nor i": [0, 65535], "i beseech adr i cannot nor i will": [0, 65535], "beseech adr i cannot nor i will not": [0, 65535], "adr i cannot nor i will not hold": [0, 65535], "i cannot nor i will not hold me": [0, 65535], "cannot nor i will not hold me still": [0, 65535], "nor i will not hold me still my": [0, 65535], "i will not hold me still my tongue": [0, 65535], "will not hold me still my tongue though": [0, 65535], "not hold me still my tongue though not": [0, 65535], "hold me still my tongue though not my": [0, 65535], "me still my tongue though not my heart": [0, 65535], "still my tongue though not my heart shall": [0, 65535], "my tongue though not my heart shall haue": [0, 65535], "tongue though not my heart shall haue his": [0, 65535], "though not my heart shall haue his will": [0, 65535], "not my heart shall haue his will he": [0, 65535], "my heart shall haue his will he is": [0, 65535], "heart shall haue his will he is deformed": [0, 65535], "shall haue his will he is deformed crooked": [0, 65535], "haue his will he is deformed crooked old": [0, 65535], "his will he is deformed crooked old and": [0, 65535], "will he is deformed crooked old and sere": [0, 65535], "he is deformed crooked old and sere ill": [0, 65535], "is deformed crooked old and sere ill fac'd": [0, 65535], "deformed crooked old and sere ill fac'd worse": [0, 65535], "crooked old and sere ill fac'd worse bodied": [0, 65535], "old and sere ill fac'd worse bodied shapelesse": [0, 65535], "and sere ill fac'd worse bodied shapelesse euery": [0, 65535], "sere ill fac'd worse bodied shapelesse euery where": [0, 65535], "ill fac'd worse bodied shapelesse euery where vicious": [0, 65535], "fac'd worse bodied shapelesse euery where vicious vngentle": [0, 65535], "worse bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse in": [0, 65535], "blunt vnkinde stigmaticall in making worse in minde": [0, 65535], "vnkinde stigmaticall in making worse in minde luc": [0, 65535], "stigmaticall in making worse in minde luc who": [0, 65535], "in making worse in minde luc who would": [0, 65535], "making worse in minde luc who would be": [0, 65535], "worse in minde luc who would be iealous": [0, 65535], "in minde luc who would be iealous then": [0, 65535], "minde luc who would be iealous then of": [0, 65535], "luc who would be iealous then of such": [0, 65535], "who would be iealous then of such a": [0, 65535], "would be iealous then of such a one": [0, 65535], "be iealous then of such a one no": [0, 65535], "iealous then of such a one no euill": [0, 65535], "then of such a one no euill lost": [0, 65535], "of such a one no euill lost is": [0, 65535], "such a one no euill lost is wail'd": [0, 65535], "a one no euill lost is wail'd when": [0, 65535], "one no euill lost is wail'd when it": [0, 65535], "no euill lost is wail'd when it is": [0, 65535], "euill lost is wail'd when it is gone": [0, 65535], "lost is wail'd when it is gone adr": [0, 65535], "is wail'd when it is gone adr ah": [0, 65535], "wail'd when it is gone adr ah but": [0, 65535], "when it is gone adr ah but i": [0, 65535], "it is gone adr ah but i thinke": [0, 65535], "is gone adr ah but i thinke him": [0, 65535], "gone adr ah but i thinke him better": [0, 65535], "adr ah but i thinke him better then": [0, 65535], "ah but i thinke him better then i": [0, 65535], "but i thinke him better then i say": [0, 65535], "i thinke him better then i say and": [0, 65535], "thinke him better then i say and yet": [0, 65535], "him better then i say and yet would": [0, 65535], "better then i say and yet would herein": [0, 65535], "then i say and yet would herein others": [0, 65535], "i say and yet would herein others eies": [0, 65535], "say and yet would herein others eies were": [0, 65535], "and yet would herein others eies were worse": [0, 65535], "yet would herein others eies were worse farre": [0, 65535], "would herein others eies were worse farre from": [0, 65535], "herein others eies were worse farre from her": [0, 65535], "others eies were worse farre from her nest": [0, 65535], "eies were worse farre from her nest the": [0, 65535], "were worse farre from her nest the lapwing": [0, 65535], "worse farre from her nest the lapwing cries": [0, 65535], "farre from her nest the lapwing cries away": [0, 65535], "from her nest the lapwing cries away my": [0, 65535], "her nest the lapwing cries away my heart": [0, 65535], "nest the lapwing cries away my heart praies": [0, 65535], "the lapwing cries away my heart praies for": [0, 65535], "lapwing cries away my heart praies for him": [0, 65535], "cries away my heart praies for him though": [0, 65535], "away my heart praies for him though my": [0, 65535], "my heart praies for him though my tongue": [0, 65535], "heart praies for him though my tongue doe": [0, 65535], "praies for him though my tongue doe curse": [0, 65535], "for him though my tongue doe curse enter": [0, 65535], "him though my tongue doe curse enter s": [0, 65535], "though my tongue doe curse enter s dromio": [0, 65535], "my tongue doe curse enter s dromio dro": [0, 65535], "tongue doe curse enter s dromio dro here": [0, 65535], "doe curse enter s dromio dro here goe": [0, 65535], "curse enter s dromio dro here goe the": [0, 65535], "enter s dromio dro here goe the deske": [0, 65535], "s dromio dro here goe the deske the": [0, 65535], "dromio dro here goe the deske the purse": [0, 65535], "dro here goe the deske the purse sweet": [0, 65535], "here goe the deske the purse sweet now": [0, 65535], "goe the deske the purse sweet now make": [0, 65535], "the deske the purse sweet now make haste": [0, 65535], "deske the purse sweet now make haste luc": [0, 65535], "the purse sweet now make haste luc how": [0, 65535], "purse sweet now make haste luc how hast": [0, 65535], "sweet now make haste luc how hast thou": [0, 65535], "now make haste luc how hast thou lost": [0, 65535], "make haste luc how hast thou lost thy": [0, 65535], "haste luc how hast thou lost thy breath": [0, 65535], "luc how hast thou lost thy breath s": [0, 65535], "how hast thou lost thy breath s dro": [0, 65535], "hast thou lost thy breath s dro by": [0, 65535], "thou lost thy breath s dro by running": [0, 65535], "lost thy breath s dro by running fast": [0, 65535], "thy breath s dro by running fast adr": [0, 65535], "breath s dro by running fast adr where": [0, 65535], "s dro by running fast adr where is": [0, 65535], "dro by running fast adr where is thy": [0, 65535], "by running fast adr where is thy master": [0, 65535], "running fast adr where is thy master dromio": [0, 65535], "fast adr where is thy master dromio is": [0, 65535], "adr where is thy master dromio is he": [0, 65535], "where is thy master dromio is he well": [0, 65535], "is thy master dromio is he well s": [0, 65535], "thy master dromio is he well s dro": [0, 65535], "master dromio is he well s dro no": [0, 65535], "dromio is he well s dro no he's": [0, 65535], "is he well s dro no he's in": [0, 65535], "he well s dro no he's in tartar": [0, 65535], "well s dro no he's in tartar limbo": [0, 65535], "s dro no he's in tartar limbo worse": [0, 65535], "dro no he's in tartar limbo worse then": [0, 65535], "no he's in tartar limbo worse then hell": [0, 65535], "he's in tartar limbo worse then hell a": [0, 65535], "in tartar limbo worse then hell a diuell": [0, 65535], "tartar limbo worse then hell a diuell in": [0, 65535], "limbo worse then hell a diuell in an": [0, 65535], "worse then hell a diuell in an euerlasting": [0, 65535], "then hell a diuell in an euerlasting garment": [0, 65535], "hell a diuell in an euerlasting garment hath": [0, 65535], "a diuell in an euerlasting garment hath him": [0, 65535], "diuell in an euerlasting garment hath him on": [0, 65535], "in an euerlasting garment hath him on whose": [0, 65535], "an euerlasting garment hath him on whose hard": [0, 65535], "euerlasting garment hath him on whose hard heart": [0, 65535], "garment hath him on whose hard heart is": [0, 65535], "hath him on whose hard heart is button'd": [0, 65535], "him on whose hard heart is button'd vp": [0, 65535], "on whose hard heart is button'd vp with": [0, 65535], "whose hard heart is button'd vp with steele": [0, 65535], "hard heart is button'd vp with steele a": [0, 65535], "heart is button'd vp with steele a feind": [0, 65535], "is button'd vp with steele a feind a": [0, 65535], "button'd vp with steele a feind a fairie": [0, 65535], "vp with steele a feind a fairie pittilesse": [0, 65535], "with steele a feind a fairie pittilesse and": [0, 65535], "steele a feind a fairie pittilesse and ruffe": [0, 65535], "a feind a fairie pittilesse and ruffe a": [0, 65535], "feind a fairie pittilesse and ruffe a wolfe": [0, 65535], "a fairie pittilesse and ruffe a wolfe nay": [0, 65535], "fairie pittilesse and ruffe a wolfe nay worse": [0, 65535], "pittilesse and ruffe a wolfe nay worse a": [0, 65535], "and ruffe a wolfe nay worse a fellow": [0, 65535], "ruffe a wolfe nay worse a fellow all": [0, 65535], "a wolfe nay worse a fellow all in": [0, 65535], "wolfe nay worse a fellow all in buffe": [0, 65535], "nay worse a fellow all in buffe a": [0, 65535], "worse a fellow all in buffe a back": [0, 65535], "a fellow all in buffe a back friend": [0, 65535], "fellow all in buffe a back friend a": [0, 65535], "all in buffe a back friend a shoulder": [0, 65535], "in buffe a back friend a shoulder clapper": [0, 65535], "buffe a back friend a shoulder clapper one": [0, 65535], "a back friend a shoulder clapper one that": [0, 65535], "back friend a shoulder clapper one that countermads": [0, 65535], "friend a shoulder clapper one that countermads the": [0, 65535], "a shoulder clapper one that countermads the passages": [0, 65535], "shoulder clapper one that countermads the passages of": [0, 65535], "clapper one that countermads the passages of allies": [0, 65535], "one that countermads the passages of allies creekes": [0, 65535], "that countermads the passages of allies creekes and": [0, 65535], "countermads the passages of allies creekes and narrow": [0, 65535], "the passages of allies creekes and narrow lands": [0, 65535], "passages of allies creekes and narrow lands a": [0, 65535], "of allies creekes and narrow lands a hound": [0, 65535], "allies creekes and narrow lands a hound that": [0, 65535], "creekes and narrow lands a hound that runs": [0, 65535], "and narrow lands a hound that runs counter": [0, 65535], "narrow lands a hound that runs counter and": [0, 65535], "lands a hound that runs counter and yet": [0, 65535], "a hound that runs counter and yet draws": [0, 65535], "hound that runs counter and yet draws drifoot": [0, 65535], "that runs counter and yet draws drifoot well": [0, 65535], "runs counter and yet draws drifoot well one": [0, 65535], "counter and yet draws drifoot well one that": [0, 65535], "and yet draws drifoot well one that before": [0, 65535], "yet draws drifoot well one that before the": [0, 65535], "draws drifoot well one that before the iudgment": [0, 65535], "drifoot well one that before the iudgment carries": [0, 65535], "well one that before the iudgment carries poore": [0, 65535], "one that before the iudgment carries poore soules": [0, 65535], "that before the iudgment carries poore soules to": [0, 65535], "before the iudgment carries poore soules to hel": [0, 65535], "the iudgment carries poore soules to hel adr": [0, 65535], "iudgment carries poore soules to hel adr why": [0, 65535], "carries poore soules to hel adr why man": [0, 65535], "poore soules to hel adr why man what": [0, 65535], "soules to hel adr why man what is": [0, 65535], "to hel adr why man what is the": [0, 65535], "hel adr why man what is the matter": [0, 65535], "adr why man what is the matter s": [0, 65535], "why man what is the matter s dro": [0, 65535], "man what is the matter s dro i": [0, 65535], "what is the matter s dro i doe": [0, 65535], "is the matter s dro i doe not": [0, 65535], "the matter s dro i doe not know": [0, 65535], "matter s dro i doe not know the": [0, 65535], "s dro i doe not know the matter": [0, 65535], "dro i doe not know the matter hee": [0, 65535], "i doe not know the matter hee is": [0, 65535], "doe not know the matter hee is rested": [0, 65535], "not know the matter hee is rested on": [0, 65535], "know the matter hee is rested on the": [0, 65535], "the matter hee is rested on the case": [0, 65535], "matter hee is rested on the case adr": [0, 65535], "hee is rested on the case adr what": [0, 65535], "is rested on the case adr what is": [0, 65535], "rested on the case adr what is he": [0, 65535], "on the case adr what is he arrested": [0, 65535], "the case adr what is he arrested tell": [0, 65535], "case adr what is he arrested tell me": [0, 65535], "adr what is he arrested tell me at": [0, 65535], "what is he arrested tell me at whose": [0, 65535], "is he arrested tell me at whose suite": [0, 65535], "he arrested tell me at whose suite s": [0, 65535], "arrested tell me at whose suite s dro": [0, 65535], "tell me at whose suite s dro i": [0, 65535], "me at whose suite s dro i know": [0, 65535], "at whose suite s dro i know not": [0, 65535], "whose suite s dro i know not at": [0, 65535], "suite s dro i know not at whose": [0, 65535], "s dro i know not at whose suite": [0, 65535], "dro i know not at whose suite he": [0, 65535], "i know not at whose suite he is": [0, 65535], "know not at whose suite he is arested": [0, 65535], "not at whose suite he is arested well": [0, 65535], "at whose suite he is arested well but": [0, 65535], "whose suite he is arested well but is": [0, 65535], "suite he is arested well but is in": [0, 65535], "he is arested well but is in a": [0, 65535], "is arested well but is in a suite": [0, 65535], "arested well but is in a suite of": [0, 65535], "well but is in a suite of buffe": [0, 65535], "but is in a suite of buffe which": [0, 65535], "is in a suite of buffe which rested": [0, 65535], "in a suite of buffe which rested him": [0, 65535], "a suite of buffe which rested him that": [0, 65535], "suite of buffe which rested him that can": [0, 65535], "of buffe which rested him that can i": [0, 65535], "buffe which rested him that can i tell": [0, 65535], "which rested him that can i tell will": [0, 65535], "rested him that can i tell will you": [0, 65535], "him that can i tell will you send": [0, 65535], "that can i tell will you send him": [0, 65535], "can i tell will you send him mistris": [0, 65535], "i tell will you send him mistris redemption": [0, 65535], "tell will you send him mistris redemption the": [0, 65535], "will you send him mistris redemption the monie": [0, 65535], "you send him mistris redemption the monie in": [0, 65535], "send him mistris redemption the monie in his": [0, 65535], "him mistris redemption the monie in his deske": [0, 65535], "mistris redemption the monie in his deske adr": [0, 65535], "redemption the monie in his deske adr go": [0, 65535], "the monie in his deske adr go fetch": [0, 65535], "monie in his deske adr go fetch it": [0, 65535], "in his deske adr go fetch it sister": [0, 65535], "his deske adr go fetch it sister this": [0, 65535], "deske adr go fetch it sister this i": [0, 65535], "adr go fetch it sister this i wonder": [0, 65535], "go fetch it sister this i wonder at": [0, 65535], "fetch it sister this i wonder at exit": [0, 65535], "it sister this i wonder at exit luciana": [0, 65535], "sister this i wonder at exit luciana thus": [0, 65535], "this i wonder at exit luciana thus he": [0, 65535], "i wonder at exit luciana thus he vnknowne": [0, 65535], "wonder at exit luciana thus he vnknowne to": [0, 65535], "at exit luciana thus he vnknowne to me": [0, 65535], "exit luciana thus he vnknowne to me should": [0, 65535], "luciana thus he vnknowne to me should be": [0, 65535], "thus he vnknowne to me should be in": [0, 65535], "he vnknowne to me should be in debt": [0, 65535], "vnknowne to me should be in debt tell": [0, 65535], "to me should be in debt tell me": [0, 65535], "me should be in debt tell me was": [0, 65535], "should be in debt tell me was he": [0, 65535], "be in debt tell me was he arested": [0, 65535], "in debt tell me was he arested on": [0, 65535], "debt tell me was he arested on a": [0, 65535], "tell me was he arested on a band": [0, 65535], "me was he arested on a band s": [0, 65535], "was he arested on a band s dro": [0, 65535], "he arested on a band s dro not": [0, 65535], "arested on a band s dro not on": [0, 65535], "on a band s dro not on a": [0, 65535], "a band s dro not on a band": [0, 65535], "band s dro not on a band but": [0, 65535], "s dro not on a band but on": [0, 65535], "dro not on a band but on a": [0, 65535], "not on a band but on a stronger": [0, 65535], "on a band but on a stronger thing": [0, 65535], "a band but on a stronger thing a": [0, 65535], "band but on a stronger thing a chaine": [0, 65535], "but on a stronger thing a chaine a": [0, 65535], "on a stronger thing a chaine a chaine": [0, 65535], "a stronger thing a chaine a chaine doe": [0, 65535], "stronger thing a chaine a chaine doe you": [0, 65535], "thing a chaine a chaine doe you not": [0, 65535], "a chaine a chaine doe you not here": [0, 65535], "chaine a chaine doe you not here it": [0, 65535], "a chaine doe you not here it ring": [0, 65535], "chaine doe you not here it ring adria": [0, 65535], "doe you not here it ring adria what": [0, 65535], "you not here it ring adria what the": [0, 65535], "not here it ring adria what the chaine": [0, 65535], "here it ring adria what the chaine s": [0, 65535], "it ring adria what the chaine s dro": [0, 65535], "ring adria what the chaine s dro no": [0, 65535], "adria what the chaine s dro no no": [0, 65535], "what the chaine s dro no no the": [0, 65535], "the chaine s dro no no the bell": [0, 65535], "chaine s dro no no the bell 'tis": [0, 65535], "s dro no no the bell 'tis time": [0, 65535], "dro no no the bell 'tis time that": [0, 65535], "no no the bell 'tis time that i": [0, 65535], "no the bell 'tis time that i were": [0, 65535], "the bell 'tis time that i were gone": [0, 65535], "bell 'tis time that i were gone it": [0, 65535], "'tis time that i were gone it was": [0, 65535], "time that i were gone it was two": [0, 65535], "that i were gone it was two ere": [0, 65535], "i were gone it was two ere i": [0, 65535], "were gone it was two ere i left": [0, 65535], "gone it was two ere i left him": [0, 65535], "it was two ere i left him and": [0, 65535], "was two ere i left him and now": [0, 65535], "two ere i left him and now the": [0, 65535], "ere i left him and now the clocke": [0, 65535], "i left him and now the clocke strikes": [0, 65535], "left him and now the clocke strikes one": [0, 65535], "him and now the clocke strikes one adr": [0, 65535], "and now the clocke strikes one adr the": [0, 65535], "now the clocke strikes one adr the houres": [0, 65535], "the clocke strikes one adr the houres come": [0, 65535], "clocke strikes one adr the houres come backe": [0, 65535], "strikes one adr the houres come backe that": [0, 65535], "one adr the houres come backe that did": [0, 65535], "adr the houres come backe that did i": [0, 65535], "the houres come backe that did i neuer": [0, 65535], "houres come backe that did i neuer here": [0, 65535], "come backe that did i neuer here s": [0, 65535], "backe that did i neuer here s dro": [0, 65535], "that did i neuer here s dro oh": [0, 65535], "did i neuer here s dro oh yes": [0, 65535], "i neuer here s dro oh yes if": [0, 65535], "neuer here s dro oh yes if any": [0, 65535], "here s dro oh yes if any houre": [0, 65535], "s dro oh yes if any houre meete": [0, 65535], "dro oh yes if any houre meete a": [0, 65535], "oh yes if any houre meete a serieant": [0, 65535], "yes if any houre meete a serieant a": [0, 65535], "if any houre meete a serieant a turnes": [0, 65535], "any houre meete a serieant a turnes backe": [0, 65535], "houre meete a serieant a turnes backe for": [0, 65535], "meete a serieant a turnes backe for verie": [0, 65535], "a serieant a turnes backe for verie feare": [0, 65535], "serieant a turnes backe for verie feare adri": [0, 65535], "a turnes backe for verie feare adri as": [0, 65535], "turnes backe for verie feare adri as if": [0, 65535], "backe for verie feare adri as if time": [0, 65535], "for verie feare adri as if time were": [0, 65535], "verie feare adri as if time were in": [0, 65535], "feare adri as if time were in debt": [0, 65535], "adri as if time were in debt how": [0, 65535], "as if time were in debt how fondly": [0, 65535], "if time were in debt how fondly do'st": [0, 65535], "time were in debt how fondly do'st thou": [0, 65535], "were in debt how fondly do'st thou reason": [0, 65535], "in debt how fondly do'st thou reason s": [0, 65535], "debt how fondly do'st thou reason s dro": [0, 65535], "how fondly do'st thou reason s dro time": [0, 65535], "fondly do'st thou reason s dro time is": [0, 65535], "do'st thou reason s dro time is a": [0, 65535], "thou reason s dro time is a verie": [0, 65535], "reason s dro time is a verie bankerout": [0, 65535], "s dro time is a verie bankerout and": [0, 65535], "dro time is a verie bankerout and owes": [0, 65535], "time is a verie bankerout and owes more": [0, 65535], "is a verie bankerout and owes more then": [0, 65535], "a verie bankerout and owes more then he's": [0, 65535], "verie bankerout and owes more then he's worth": [0, 65535], "bankerout and owes more then he's worth to": [0, 65535], "and owes more then he's worth to season": [0, 65535], "owes more then he's worth to season nay": [0, 65535], "more then he's worth to season nay he's": [0, 65535], "then he's worth to season nay he's a": [0, 65535], "he's worth to season nay he's a theefe": [0, 65535], "worth to season nay he's a theefe too": [0, 65535], "to season nay he's a theefe too haue": [0, 65535], "season nay he's a theefe too haue you": [0, 65535], "nay he's a theefe too haue you not": [0, 65535], "he's a theefe too haue you not heard": [0, 65535], "a theefe too haue you not heard men": [0, 65535], "theefe too haue you not heard men say": [0, 65535], "too haue you not heard men say that": [0, 65535], "haue you not heard men say that time": [0, 65535], "you not heard men say that time comes": [0, 65535], "not heard men say that time comes stealing": [0, 65535], "heard men say that time comes stealing on": [0, 65535], "men say that time comes stealing on by": [0, 65535], "say that time comes stealing on by night": [0, 65535], "that time comes stealing on by night and": [0, 65535], "time comes stealing on by night and day": [0, 65535], "comes stealing on by night and day if": [0, 65535], "stealing on by night and day if i": [0, 65535], "on by night and day if i be": [0, 65535], "by night and day if i be in": [0, 65535], "night and day if i be in debt": [0, 65535], "and day if i be in debt and": [0, 65535], "day if i be in debt and theft": [0, 65535], "if i be in debt and theft and": [0, 65535], "i be in debt and theft and a": [0, 65535], "be in debt and theft and a serieant": [0, 65535], "in debt and theft and a serieant in": [0, 65535], "debt and theft and a serieant in the": [0, 65535], "and theft and a serieant in the way": [0, 65535], "theft and a serieant in the way hath": [0, 65535], "and a serieant in the way hath he": [0, 65535], "a serieant in the way hath he not": [0, 65535], "serieant in the way hath he not reason": [0, 65535], "in the way hath he not reason to": [0, 65535], "the way hath he not reason to turne": [0, 65535], "way hath he not reason to turne backe": [0, 65535], "hath he not reason to turne backe an": [0, 65535], "he not reason to turne backe an houre": [0, 65535], "not reason to turne backe an houre in": [0, 65535], "reason to turne backe an houre in a": [0, 65535], "to turne backe an houre in a day": [0, 65535], "turne backe an houre in a day enter": [0, 65535], "backe an houre in a day enter luciana": [0, 65535], "an houre in a day enter luciana adr": [0, 65535], "houre in a day enter luciana adr go": [0, 65535], "in a day enter luciana adr go dromio": [0, 65535], "a day enter luciana adr go dromio there's": [0, 65535], "day enter luciana adr go dromio there's the": [0, 65535], "enter luciana adr go dromio there's the monie": [0, 65535], "luciana adr go dromio there's the monie beare": [0, 65535], "adr go dromio there's the monie beare it": [0, 65535], "go dromio there's the monie beare it straight": [0, 65535], "dromio there's the monie beare it straight and": [0, 65535], "there's the monie beare it straight and bring": [0, 65535], "the monie beare it straight and bring thy": [0, 65535], "monie beare it straight and bring thy master": [0, 65535], "beare it straight and bring thy master home": [0, 65535], "it straight and bring thy master home imediately": [0, 65535], "straight and bring thy master home imediately come": [0, 65535], "and bring thy master home imediately come sister": [0, 65535], "bring thy master home imediately come sister i": [0, 65535], "thy master home imediately come sister i am": [0, 65535], "master home imediately come sister i am prest": [0, 65535], "home imediately come sister i am prest downe": [0, 65535], "imediately come sister i am prest downe with": [0, 65535], "come sister i am prest downe with conceit": [0, 65535], "sister i am prest downe with conceit conceit": [0, 65535], "i am prest downe with conceit conceit my": [0, 65535], "am prest downe with conceit conceit my comfort": [0, 65535], "prest downe with conceit conceit my comfort and": [0, 65535], "downe with conceit conceit my comfort and my": [0, 65535], "with conceit conceit my comfort and my iniurie": [0, 65535], "conceit conceit my comfort and my iniurie exit": [0, 65535], "conceit my comfort and my iniurie exit enter": [0, 65535], "my comfort and my iniurie exit enter antipholus": [0, 65535], "comfort and my iniurie exit enter antipholus siracusia": [0, 65535], "and my iniurie exit enter antipholus siracusia there's": [0, 65535], "my iniurie exit enter antipholus siracusia there's not": [0, 65535], "iniurie exit enter antipholus siracusia there's not a": [0, 65535], "exit enter antipholus siracusia there's not a man": [0, 65535], "enter antipholus siracusia there's not a man i": [0, 65535], "antipholus siracusia there's not a man i meete": [0, 65535], "siracusia there's not a man i meete but": [0, 65535], "there's not a man i meete but doth": [0, 65535], "not a man i meete but doth salute": [0, 65535], "a man i meete but doth salute me": [0, 65535], "man i meete but doth salute me as": [0, 65535], "i meete but doth salute me as if": [0, 65535], "meete but doth salute me as if i": [0, 65535], "but doth salute me as if i were": [0, 65535], "doth salute me as if i were their": [0, 65535], "salute me as if i were their well": [0, 65535], "me as if i were their well acquainted": [0, 65535], "as if i were their well acquainted friend": [0, 65535], "if i were their well acquainted friend and": [0, 65535], "i were their well acquainted friend and euerie": [0, 65535], "were their well acquainted friend and euerie one": [0, 65535], "their well acquainted friend and euerie one doth": [0, 65535], "well acquainted friend and euerie one doth call": [0, 65535], "acquainted friend and euerie one doth call me": [0, 65535], "friend and euerie one doth call me by": [0, 65535], "and euerie one doth call me by my": [0, 65535], "euerie one doth call me by my name": [0, 65535], "one doth call me by my name some": [0, 65535], "doth call me by my name some tender": [0, 65535], "call me by my name some tender monie": [0, 65535], "me by my name some tender monie to": [0, 65535], "by my name some tender monie to me": [0, 65535], "my name some tender monie to me some": [0, 65535], "name some tender monie to me some inuite": [0, 65535], "some tender monie to me some inuite me": [0, 65535], "tender monie to me some inuite me some": [0, 65535], "monie to me some inuite me some other": [0, 65535], "to me some inuite me some other giue": [0, 65535], "me some inuite me some other giue me": [0, 65535], "some inuite me some other giue me thankes": [0, 65535], "inuite me some other giue me thankes for": [0, 65535], "me some other giue me thankes for kindnesses": [0, 65535], "some other giue me thankes for kindnesses some": [0, 65535], "other giue me thankes for kindnesses some offer": [0, 65535], "giue me thankes for kindnesses some offer me": [0, 65535], "me thankes for kindnesses some offer me commodities": [0, 65535], "thankes for kindnesses some offer me commodities to": [0, 65535], "for kindnesses some offer me commodities to buy": [0, 65535], "kindnesses some offer me commodities to buy euen": [0, 65535], "some offer me commodities to buy euen now": [0, 65535], "offer me commodities to buy euen now a": [0, 65535], "me commodities to buy euen now a tailor": [0, 65535], "commodities to buy euen now a tailor cal'd": [0, 65535], "to buy euen now a tailor cal'd me": [0, 65535], "buy euen now a tailor cal'd me in": [0, 65535], "euen now a tailor cal'd me in his": [0, 65535], "now a tailor cal'd me in his shop": [0, 65535], "a tailor cal'd me in his shop and": [0, 65535], "tailor cal'd me in his shop and show'd": [0, 65535], "cal'd me in his shop and show'd me": [0, 65535], "me in his shop and show'd me silkes": [0, 65535], "in his shop and show'd me silkes that": [0, 65535], "his shop and show'd me silkes that he": [0, 65535], "shop and show'd me silkes that he had": [0, 65535], "and show'd me silkes that he had bought": [0, 65535], "show'd me silkes that he had bought for": [0, 65535], "me silkes that he had bought for me": [0, 65535], "silkes that he had bought for me and": [0, 65535], "that he had bought for me and therewithall": [0, 65535], "he had bought for me and therewithall tooke": [0, 65535], "had bought for me and therewithall tooke measure": [0, 65535], "bought for me and therewithall tooke measure of": [0, 65535], "for me and therewithall tooke measure of my": [0, 65535], "me and therewithall tooke measure of my body": [0, 65535], "and therewithall tooke measure of my body sure": [0, 65535], "therewithall tooke measure of my body sure these": [0, 65535], "tooke measure of my body sure these are": [0, 65535], "measure of my body sure these are but": [0, 65535], "of my body sure these are but imaginarie": [0, 65535], "my body sure these are but imaginarie wiles": [0, 65535], "body sure these are but imaginarie wiles and": [0, 65535], "sure these are but imaginarie wiles and lapland": [0, 65535], "these are but imaginarie wiles and lapland sorcerers": [0, 65535], "are but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here enter": [0, 65535], "wiles and lapland sorcerers inhabite here enter dromio": [0, 65535], "and lapland sorcerers inhabite here enter dromio sir": [0, 65535], "lapland sorcerers inhabite here enter dromio sir s": [0, 65535], "sorcerers inhabite here enter dromio sir s dro": [0, 65535], "inhabite here enter dromio sir s dro master": [0, 65535], "here enter dromio sir s dro master here's": [0, 65535], "enter dromio sir s dro master here's the": [0, 65535], "dromio sir s dro master here's the gold": [0, 65535], "sir s dro master here's the gold you": [0, 65535], "s dro master here's the gold you sent": [0, 65535], "dro master here's the gold you sent me": [0, 65535], "master here's the gold you sent me for": [0, 65535], "here's the gold you sent me for what": [0, 65535], "the gold you sent me for what haue": [0, 65535], "gold you sent me for what haue you": [0, 65535], "you sent me for what haue you got": [0, 65535], "sent me for what haue you got the": [0, 65535], "me for what haue you got the picture": [0, 65535], "for what haue you got the picture of": [0, 65535], "what haue you got the picture of old": [0, 65535], "haue you got the picture of old adam": [0, 65535], "you got the picture of old adam new": [0, 65535], "got the picture of old adam new apparel'd": [0, 65535], "the picture of old adam new apparel'd ant": [0, 65535], "picture of old adam new apparel'd ant what": [0, 65535], "of old adam new apparel'd ant what gold": [0, 65535], "old adam new apparel'd ant what gold is": [0, 65535], "adam new apparel'd ant what gold is this": [0, 65535], "new apparel'd ant what gold is this what": [0, 65535], "apparel'd ant what gold is this what adam": [0, 65535], "ant what gold is this what adam do'st": [0, 65535], "what gold is this what adam do'st thou": [0, 65535], "gold is this what adam do'st thou meane": [0, 65535], "is this what adam do'st thou meane s": [0, 65535], "this what adam do'st thou meane s dro": [0, 65535], "what adam do'st thou meane s dro not": [0, 65535], "adam do'st thou meane s dro not that": [0, 65535], "do'st thou meane s dro not that adam": [0, 65535], "thou meane s dro not that adam that": [0, 65535], "meane s dro not that adam that kept": [0, 65535], "s dro not that adam that kept the": [0, 65535], "dro not that adam that kept the paradise": [0, 65535], "not that adam that kept the paradise but": [0, 65535], "that adam that kept the paradise but that": [0, 65535], "adam that kept the paradise but that adam": [0, 65535], "that kept the paradise but that adam that": [0, 65535], "kept the paradise but that adam that keepes": [0, 65535], "the paradise but that adam that keepes the": [0, 65535], "paradise but that adam that keepes the prison": [0, 65535], "but that adam that keepes the prison hee": [0, 65535], "that adam that keepes the prison hee that": [0, 65535], "adam that keepes the prison hee that goes": [0, 65535], "that keepes the prison hee that goes in": [0, 65535], "keepes the prison hee that goes in the": [0, 65535], "the prison hee that goes in the calues": [0, 65535], "prison hee that goes in the calues skin": [0, 65535], "hee that goes in the calues skin that": [0, 65535], "that goes in the calues skin that was": [0, 65535], "goes in the calues skin that was kil'd": [0, 65535], "in the calues skin that was kil'd for": [0, 65535], "the calues skin that was kil'd for the": [0, 65535], "calues skin that was kil'd for the prodigall": [0, 65535], "skin that was kil'd for the prodigall hee": [0, 65535], "that was kil'd for the prodigall hee that": [0, 65535], "was kil'd for the prodigall hee that came": [0, 65535], "kil'd for the prodigall hee that came behinde": [0, 65535], "for the prodigall hee that came behinde you": [0, 65535], "the prodigall hee that came behinde you sir": [0, 65535], "prodigall hee that came behinde you sir like": [0, 65535], "hee that came behinde you sir like an": [0, 65535], "that came behinde you sir like an euill": [0, 65535], "came behinde you sir like an euill angel": [0, 65535], "behinde you sir like an euill angel and": [0, 65535], "you sir like an euill angel and bid": [0, 65535], "sir like an euill angel and bid you": [0, 65535], "like an euill angel and bid you forsake": [0, 65535], "an euill angel and bid you forsake your": [0, 65535], "euill angel and bid you forsake your libertie": [0, 65535], "angel and bid you forsake your libertie ant": [0, 65535], "and bid you forsake your libertie ant i": [0, 65535], "bid you forsake your libertie ant i vnderstand": [0, 65535], "you forsake your libertie ant i vnderstand thee": [0, 65535], "forsake your libertie ant i vnderstand thee not": [0, 65535], "your libertie ant i vnderstand thee not s": [0, 65535], "libertie ant i vnderstand thee not s dro": [0, 65535], "ant i vnderstand thee not s dro no": [0, 65535], "i vnderstand thee not s dro no why": [0, 65535], "vnderstand thee not s dro no why 'tis": [0, 65535], "thee not s dro no why 'tis a": [0, 65535], "not s dro no why 'tis a plaine": [0, 65535], "s dro no why 'tis a plaine case": [0, 65535], "dro no why 'tis a plaine case he": [0, 65535], "no why 'tis a plaine case he that": [0, 65535], "why 'tis a plaine case he that went": [0, 65535], "'tis a plaine case he that went like": [0, 65535], "a plaine case he that went like a": [0, 65535], "plaine case he that went like a base": [0, 65535], "case he that went like a base viole": [0, 65535], "he that went like a base viole in": [0, 65535], "that went like a base viole in a": [0, 65535], "went like a base viole in a case": [0, 65535], "like a base viole in a case of": [0, 65535], "a base viole in a case of leather": [0, 65535], "base viole in a case of leather the": [0, 65535], "viole in a case of leather the man": [0, 65535], "in a case of leather the man sir": [0, 65535], "a case of leather the man sir that": [0, 65535], "case of leather the man sir that when": [0, 65535], "of leather the man sir that when gentlemen": [0, 65535], "leather the man sir that when gentlemen are": [0, 65535], "the man sir that when gentlemen are tired": [0, 65535], "man sir that when gentlemen are tired giues": [0, 65535], "sir that when gentlemen are tired giues them": [0, 65535], "that when gentlemen are tired giues them a": [0, 65535], "when gentlemen are tired giues them a sob": [0, 65535], "gentlemen are tired giues them a sob and": [0, 65535], "are tired giues them a sob and rests": [0, 65535], "tired giues them a sob and rests them": [0, 65535], "giues them a sob and rests them he": [0, 65535], "them a sob and rests them he sir": [0, 65535], "a sob and rests them he sir that": [0, 65535], "sob and rests them he sir that takes": [0, 65535], "and rests them he sir that takes pittie": [0, 65535], "rests them he sir that takes pittie on": [0, 65535], "them he sir that takes pittie on decaied": [0, 65535], "he sir that takes pittie on decaied men": [0, 65535], "sir that takes pittie on decaied men and": [0, 65535], "that takes pittie on decaied men and giues": [0, 65535], "takes pittie on decaied men and giues them": [0, 65535], "pittie on decaied men and giues them suites": [0, 65535], "on decaied men and giues them suites of": [0, 65535], "decaied men and giues them suites of durance": [0, 65535], "men and giues them suites of durance he": [0, 65535], "and giues them suites of durance he that": [0, 65535], "giues them suites of durance he that sets": [0, 65535], "them suites of durance he that sets vp": [0, 65535], "suites of durance he that sets vp his": [0, 65535], "of durance he that sets vp his rest": [0, 65535], "durance he that sets vp his rest to": [0, 65535], "he that sets vp his rest to doe": [0, 65535], "that sets vp his rest to doe more": [0, 65535], "sets vp his rest to doe more exploits": [0, 65535], "vp his rest to doe more exploits with": [0, 65535], "his rest to doe more exploits with his": [0, 65535], "rest to doe more exploits with his mace": [0, 65535], "to doe more exploits with his mace then": [0, 65535], "doe more exploits with his mace then a": [0, 65535], "more exploits with his mace then a moris": [0, 65535], "exploits with his mace then a moris pike": [0, 65535], "with his mace then a moris pike ant": [0, 65535], "his mace then a moris pike ant what": [0, 65535], "mace then a moris pike ant what thou": [0, 65535], "then a moris pike ant what thou mean'st": [0, 65535], "a moris pike ant what thou mean'st an": [0, 65535], "moris pike ant what thou mean'st an officer": [0, 65535], "pike ant what thou mean'st an officer s": [0, 65535], "ant what thou mean'st an officer s dro": [0, 65535], "what thou mean'st an officer s dro i": [0, 65535], "thou mean'st an officer s dro i sir": [0, 65535], "mean'st an officer s dro i sir the": [0, 65535], "an officer s dro i sir the serieant": [0, 65535], "officer s dro i sir the serieant of": [0, 65535], "s dro i sir the serieant of the": [0, 65535], "dro i sir the serieant of the band": [0, 65535], "i sir the serieant of the band he": [0, 65535], "sir the serieant of the band he that": [0, 65535], "the serieant of the band he that brings": [0, 65535], "serieant of the band he that brings any": [0, 65535], "of the band he that brings any man": [0, 65535], "the band he that brings any man to": [0, 65535], "band he that brings any man to answer": [0, 65535], "he that brings any man to answer it": [0, 65535], "that brings any man to answer it that": [0, 65535], "brings any man to answer it that breakes": [0, 65535], "any man to answer it that breakes his": [0, 65535], "man to answer it that breakes his band": [0, 65535], "to answer it that breakes his band one": [0, 65535], "answer it that breakes his band one that": [0, 65535], "it that breakes his band one that thinkes": [0, 65535], "that breakes his band one that thinkes a": [0, 65535], "breakes his band one that thinkes a man": [0, 65535], "his band one that thinkes a man alwaies": [0, 65535], "band one that thinkes a man alwaies going": [0, 65535], "one that thinkes a man alwaies going to": [0, 65535], "that thinkes a man alwaies going to bed": [0, 65535], "thinkes a man alwaies going to bed and": [0, 65535], "a man alwaies going to bed and saies": [0, 65535], "man alwaies going to bed and saies god": [0, 65535], "alwaies going to bed and saies god giue": [0, 65535], "going to bed and saies god giue you": [0, 65535], "to bed and saies god giue you good": [0, 65535], "bed and saies god giue you good rest": [0, 65535], "and saies god giue you good rest ant": [0, 65535], "saies god giue you good rest ant well": [0, 65535], "god giue you good rest ant well sir": [0, 65535], "giue you good rest ant well sir there": [0, 65535], "you good rest ant well sir there rest": [0, 65535], "good rest ant well sir there rest in": [0, 65535], "rest ant well sir there rest in your": [0, 65535], "ant well sir there rest in your foolerie": [0, 65535], "well sir there rest in your foolerie is": [0, 65535], "sir there rest in your foolerie is there": [0, 65535], "there rest in your foolerie is there any": [0, 65535], "rest in your foolerie is there any ships": [0, 65535], "in your foolerie is there any ships puts": [0, 65535], "your foolerie is there any ships puts forth": [0, 65535], "foolerie is there any ships puts forth to": [0, 65535], "is there any ships puts forth to night": [0, 65535], "there any ships puts forth to night may": [0, 65535], "any ships puts forth to night may we": [0, 65535], "ships puts forth to night may we be": [0, 65535], "puts forth to night may we be gone": [0, 65535], "forth to night may we be gone s": [0, 65535], "to night may we be gone s dro": [0, 65535], "night may we be gone s dro why": [0, 65535], "may we be gone s dro why sir": [0, 65535], "we be gone s dro why sir i": [0, 65535], "be gone s dro why sir i brought": [0, 65535], "gone s dro why sir i brought you": [0, 65535], "s dro why sir i brought you word": [0, 65535], "dro why sir i brought you word an": [0, 65535], "why sir i brought you word an houre": [0, 65535], "sir i brought you word an houre since": [0, 65535], "i brought you word an houre since that": [0, 65535], "brought you word an houre since that the": [0, 65535], "you word an houre since that the barke": [0, 65535], "word an houre since that the barke expedition": [0, 65535], "an houre since that the barke expedition put": [0, 65535], "houre since that the barke expedition put forth": [0, 65535], "since that the barke expedition put forth to": [0, 65535], "that the barke expedition put forth to night": [0, 65535], "the barke expedition put forth to night and": [0, 65535], "barke expedition put forth to night and then": [0, 65535], "expedition put forth to night and then were": [0, 65535], "put forth to night and then were you": [0, 65535], "forth to night and then were you hindred": [0, 65535], "to night and then were you hindred by": [0, 65535], "night and then were you hindred by the": [0, 65535], "and then were you hindred by the serieant": [0, 65535], "then were you hindred by the serieant to": [0, 65535], "were you hindred by the serieant to tarry": [0, 65535], "you hindred by the serieant to tarry for": [0, 65535], "hindred by the serieant to tarry for the": [0, 65535], "by the serieant to tarry for the hoy": [0, 65535], "the serieant to tarry for the hoy delay": [0, 65535], "serieant to tarry for the hoy delay here": [0, 65535], "to tarry for the hoy delay here are": [0, 65535], "tarry for the hoy delay here are the": [0, 65535], "for the hoy delay here are the angels": [0, 65535], "the hoy delay here are the angels that": [0, 65535], "hoy delay here are the angels that you": [0, 65535], "delay here are the angels that you sent": [0, 65535], "here are the angels that you sent for": [0, 65535], "are the angels that you sent for to": [0, 65535], "the angels that you sent for to deliuer": [0, 65535], "angels that you sent for to deliuer you": [0, 65535], "that you sent for to deliuer you ant": [0, 65535], "you sent for to deliuer you ant the": [0, 65535], "sent for to deliuer you ant the fellow": [0, 65535], "for to deliuer you ant the fellow is": [0, 65535], "to deliuer you ant the fellow is distract": [0, 65535], "deliuer you ant the fellow is distract and": [0, 65535], "you ant the fellow is distract and so": [0, 65535], "ant the fellow is distract and so am": [0, 65535], "the fellow is distract and so am i": [0, 65535], "fellow is distract and so am i and": [0, 65535], "is distract and so am i and here": [0, 65535], "distract and so am i and here we": [0, 65535], "and so am i and here we wander": [0, 65535], "so am i and here we wander in": [0, 65535], "am i and here we wander in illusions": [0, 65535], "i and here we wander in illusions some": [0, 65535], "and here we wander in illusions some blessed": [0, 65535], "here we wander in illusions some blessed power": [0, 65535], "we wander in illusions some blessed power deliuer": [0, 65535], "wander in illusions some blessed power deliuer vs": [0, 65535], "in illusions some blessed power deliuer vs from": [0, 65535], "illusions some blessed power deliuer vs from hence": [0, 65535], "some blessed power deliuer vs from hence enter": [0, 65535], "blessed power deliuer vs from hence enter a": [0, 65535], "power deliuer vs from hence enter a curtizan": [0, 65535], "deliuer vs from hence enter a curtizan cur": [0, 65535], "vs from hence enter a curtizan cur well": [0, 65535], "from hence enter a curtizan cur well met": [0, 65535], "hence enter a curtizan cur well met well": [0, 65535], "enter a curtizan cur well met well met": [0, 65535], "a curtizan cur well met well met master": [0, 65535], "curtizan cur well met well met master antipholus": [0, 65535], "cur well met well met master antipholus i": [0, 65535], "well met well met master antipholus i see": [0, 65535], "met well met master antipholus i see sir": [0, 65535], "well met master antipholus i see sir you": [0, 65535], "met master antipholus i see sir you haue": [0, 65535], "master antipholus i see sir you haue found": [0, 65535], "antipholus i see sir you haue found the": [0, 65535], "i see sir you haue found the gold": [0, 65535], "see sir you haue found the gold smith": [0, 65535], "sir you haue found the gold smith now": [0, 65535], "you haue found the gold smith now is": [0, 65535], "haue found the gold smith now is that": [0, 65535], "found the gold smith now is that the": [0, 65535], "the gold smith now is that the chaine": [0, 65535], "gold smith now is that the chaine you": [0, 65535], "smith now is that the chaine you promis'd": [0, 65535], "now is that the chaine you promis'd me": [0, 65535], "is that the chaine you promis'd me to": [0, 65535], "that the chaine you promis'd me to day": [0, 65535], "the chaine you promis'd me to day ant": [0, 65535], "chaine you promis'd me to day ant sathan": [0, 65535], "you promis'd me to day ant sathan auoide": [0, 65535], "promis'd me to day ant sathan auoide i": [0, 65535], "me to day ant sathan auoide i charge": [0, 65535], "to day ant sathan auoide i charge thee": [0, 65535], "day ant sathan auoide i charge thee tempt": [0, 65535], "ant sathan auoide i charge thee tempt me": [0, 65535], "sathan auoide i charge thee tempt me not": [0, 65535], "auoide i charge thee tempt me not s": [0, 65535], "i charge thee tempt me not s dro": [0, 65535], "charge thee tempt me not s dro master": [0, 65535], "thee tempt me not s dro master is": [0, 65535], "tempt me not s dro master is this": [0, 65535], "me not s dro master is this mistris": [0, 65535], "not s dro master is this mistris sathan": [0, 65535], "s dro master is this mistris sathan ant": [0, 65535], "dro master is this mistris sathan ant it": [0, 65535], "master is this mistris sathan ant it is": [0, 65535], "is this mistris sathan ant it is the": [0, 65535], "this mistris sathan ant it is the diuell": [0, 65535], "mistris sathan ant it is the diuell s": [0, 65535], "sathan ant it is the diuell s dro": [0, 65535], "ant it is the diuell s dro nay": [0, 65535], "it is the diuell s dro nay she": [0, 65535], "is the diuell s dro nay she is": [0, 65535], "the diuell s dro nay she is worse": [0, 65535], "diuell s dro nay she is worse she": [0, 65535], "s dro nay she is worse she is": [0, 65535], "dro nay she is worse she is the": [0, 65535], "nay she is worse she is the diuels": [0, 65535], "she is worse she is the diuels dam": [0, 65535], "is worse she is the diuels dam and": [0, 65535], "worse she is the diuels dam and here": [0, 65535], "she is the diuels dam and here she": [0, 65535], "is the diuels dam and here she comes": [0, 65535], "the diuels dam and here she comes in": [0, 65535], "diuels dam and here she comes in the": [0, 65535], "dam and here she comes in the habit": [0, 65535], "and here she comes in the habit of": [0, 65535], "here she comes in the habit of a": [0, 65535], "she comes in the habit of a light": [0, 65535], "comes in the habit of a light wench": [0, 65535], "in the habit of a light wench and": [0, 65535], "the habit of a light wench and thereof": [0, 65535], "habit of a light wench and thereof comes": [0, 65535], "of a light wench and thereof comes that": [0, 65535], "a light wench and thereof comes that the": [0, 65535], "light wench and thereof comes that the wenches": [0, 65535], "wench and thereof comes that the wenches say": [0, 65535], "and thereof comes that the wenches say god": [0, 65535], "thereof comes that the wenches say god dam": [0, 65535], "comes that the wenches say god dam me": [0, 65535], "that the wenches say god dam me that's": [0, 65535], "the wenches say god dam me that's as": [0, 65535], "wenches say god dam me that's as much": [0, 65535], "say god dam me that's as much to": [0, 65535], "god dam me that's as much to say": [0, 65535], "dam me that's as much to say god": [0, 65535], "me that's as much to say god make": [0, 65535], "that's as much to say god make me": [0, 65535], "as much to say god make me a": [0, 65535], "much to say god make me a light": [0, 65535], "to say god make me a light wench": [0, 65535], "say god make me a light wench it": [0, 65535], "god make me a light wench it is": [0, 65535], "make me a light wench it is written": [0, 65535], "me a light wench it is written they": [0, 65535], "a light wench it is written they appeare": [0, 65535], "light wench it is written they appeare to": [0, 65535], "wench it is written they appeare to men": [0, 65535], "it is written they appeare to men like": [0, 65535], "is written they appeare to men like angels": [0, 65535], "written they appeare to men like angels of": [0, 65535], "they appeare to men like angels of light": [0, 65535], "appeare to men like angels of light light": [0, 65535], "to men like angels of light light is": [0, 65535], "men like angels of light light is an": [0, 65535], "like angels of light light is an effect": [0, 65535], "angels of light light is an effect of": [0, 65535], "of light light is an effect of fire": [0, 65535], "light light is an effect of fire and": [0, 65535], "light is an effect of fire and fire": [0, 65535], "is an effect of fire and fire will": [0, 65535], "an effect of fire and fire will burne": [0, 65535], "effect of fire and fire will burne ergo": [0, 65535], "of fire and fire will burne ergo light": [0, 65535], "fire and fire will burne ergo light wenches": [0, 65535], "and fire will burne ergo light wenches will": [0, 65535], "fire will burne ergo light wenches will burne": [0, 65535], "will burne ergo light wenches will burne come": [0, 65535], "burne ergo light wenches will burne come not": [0, 65535], "ergo light wenches will burne come not neere": [0, 65535], "light wenches will burne come not neere her": [0, 65535], "wenches will burne come not neere her cur": [0, 65535], "will burne come not neere her cur your": [0, 65535], "burne come not neere her cur your man": [0, 65535], "come not neere her cur your man and": [0, 65535], "not neere her cur your man and you": [0, 65535], "neere her cur your man and you are": [0, 65535], "her cur your man and you are maruailous": [0, 65535], "cur your man and you are maruailous merrie": [0, 65535], "your man and you are maruailous merrie sir": [0, 65535], "man and you are maruailous merrie sir will": [0, 65535], "and you are maruailous merrie sir will you": [0, 65535], "you are maruailous merrie sir will you goe": [0, 65535], "are maruailous merrie sir will you goe with": [0, 65535], "maruailous merrie sir will you goe with me": [0, 65535], "merrie sir will you goe with me wee'll": [0, 65535], "sir will you goe with me wee'll mend": [0, 65535], "will you goe with me wee'll mend our": [0, 65535], "you goe with me wee'll mend our dinner": [0, 65535], "goe with me wee'll mend our dinner here": [0, 65535], "with me wee'll mend our dinner here s": [0, 65535], "me wee'll mend our dinner here s dro": [0, 65535], "wee'll mend our dinner here s dro master": [0, 65535], "mend our dinner here s dro master if": [0, 65535], "our dinner here s dro master if do": [0, 65535], "dinner here s dro master if do expect": [0, 65535], "here s dro master if do expect spoon": [0, 65535], "s dro master if do expect spoon meate": [0, 65535], "dro master if do expect spoon meate or": [0, 65535], "master if do expect spoon meate or bespeake": [0, 65535], "if do expect spoon meate or bespeake a": [0, 65535], "do expect spoon meate or bespeake a long": [0, 65535], "expect spoon meate or bespeake a long spoone": [0, 65535], "spoon meate or bespeake a long spoone ant": [0, 65535], "meate or bespeake a long spoone ant why": [0, 65535], "or bespeake a long spoone ant why dromio": [0, 65535], "bespeake a long spoone ant why dromio s": [0, 65535], "a long spoone ant why dromio s dro": [0, 65535], "long spoone ant why dromio s dro marrie": [0, 65535], "spoone ant why dromio s dro marrie he": [0, 65535], "ant why dromio s dro marrie he must": [0, 65535], "why dromio s dro marrie he must haue": [0, 65535], "dromio s dro marrie he must haue a": [0, 65535], "s dro marrie he must haue a long": [0, 65535], "dro marrie he must haue a long spoone": [0, 65535], "marrie he must haue a long spoone that": [0, 65535], "he must haue a long spoone that must": [0, 65535], "must haue a long spoone that must eate": [0, 65535], "haue a long spoone that must eate with": [0, 65535], "a long spoone that must eate with the": [0, 65535], "long spoone that must eate with the diuell": [0, 65535], "spoone that must eate with the diuell ant": [0, 65535], "that must eate with the diuell ant auoid": [0, 65535], "must eate with the diuell ant auoid then": [0, 65535], "eate with the diuell ant auoid then fiend": [0, 65535], "with the diuell ant auoid then fiend what": [0, 65535], "the diuell ant auoid then fiend what tel'st": [0, 65535], "diuell ant auoid then fiend what tel'st thou": [0, 65535], "ant auoid then fiend what tel'st thou me": [0, 65535], "auoid then fiend what tel'st thou me of": [0, 65535], "then fiend what tel'st thou me of supping": [0, 65535], "fiend what tel'st thou me of supping thou": [0, 65535], "what tel'st thou me of supping thou art": [0, 65535], "tel'st thou me of supping thou art as": [0, 65535], "thou me of supping thou art as you": [0, 65535], "me of supping thou art as you are": [0, 65535], "of supping thou art as you are all": [0, 65535], "supping thou art as you are all a": [0, 65535], "thou art as you are all a sorceresse": [0, 65535], "art as you are all a sorceresse i": [0, 65535], "as you are all a sorceresse i coniure": [0, 65535], "you are all a sorceresse i coniure thee": [0, 65535], "are all a sorceresse i coniure thee to": [0, 65535], "all a sorceresse i coniure thee to leaue": [0, 65535], "a sorceresse i coniure thee to leaue me": [0, 65535], "sorceresse i coniure thee to leaue me and": [0, 65535], "i coniure thee to leaue me and be": [0, 65535], "coniure thee to leaue me and be gon": [0, 65535], "thee to leaue me and be gon cur": [0, 65535], "to leaue me and be gon cur giue": [0, 65535], "leaue me and be gon cur giue me": [0, 65535], "me and be gon cur giue me the": [0, 65535], "and be gon cur giue me the ring": [0, 65535], "be gon cur giue me the ring of": [0, 65535], "gon cur giue me the ring of mine": [0, 65535], "cur giue me the ring of mine you": [0, 65535], "giue me the ring of mine you had": [0, 65535], "me the ring of mine you had at": [0, 65535], "the ring of mine you had at dinner": [0, 65535], "ring of mine you had at dinner or": [0, 65535], "of mine you had at dinner or for": [0, 65535], "mine you had at dinner or for my": [0, 65535], "you had at dinner or for my diamond": [0, 65535], "had at dinner or for my diamond the": [0, 65535], "at dinner or for my diamond the chaine": [0, 65535], "dinner or for my diamond the chaine you": [0, 65535], "or for my diamond the chaine you promis'd": [0, 65535], "for my diamond the chaine you promis'd and": [0, 65535], "my diamond the chaine you promis'd and ile": [0, 65535], "diamond the chaine you promis'd and ile be": [0, 65535], "the chaine you promis'd and ile be gone": [0, 65535], "chaine you promis'd and ile be gone sir": [0, 65535], "you promis'd and ile be gone sir and": [0, 65535], "promis'd and ile be gone sir and not": [0, 65535], "and ile be gone sir and not trouble": [0, 65535], "ile be gone sir and not trouble you": [0, 65535], "be gone sir and not trouble you s": [0, 65535], "gone sir and not trouble you s dro": [0, 65535], "sir and not trouble you s dro some": [0, 65535], "and not trouble you s dro some diuels": [0, 65535], "not trouble you s dro some diuels aske": [0, 65535], "trouble you s dro some diuels aske but": [0, 65535], "you s dro some diuels aske but the": [0, 65535], "s dro some diuels aske but the parings": [0, 65535], "dro some diuels aske but the parings of": [0, 65535], "some diuels aske but the parings of ones": [0, 65535], "diuels aske but the parings of ones naile": [0, 65535], "aske but the parings of ones naile a": [0, 65535], "but the parings of ones naile a rush": [0, 65535], "the parings of ones naile a rush a": [0, 65535], "parings of ones naile a rush a haire": [0, 65535], "of ones naile a rush a haire a": [0, 65535], "ones naile a rush a haire a drop": [0, 65535], "naile a rush a haire a drop of": [0, 65535], "a rush a haire a drop of blood": [0, 65535], "rush a haire a drop of blood a": [0, 65535], "a haire a drop of blood a pin": [0, 65535], "haire a drop of blood a pin a": [0, 65535], "a drop of blood a pin a nut": [0, 65535], "drop of blood a pin a nut a": [0, 65535], "of blood a pin a nut a cherrie": [0, 65535], "blood a pin a nut a cherrie stone": [0, 65535], "a pin a nut a cherrie stone but": [0, 65535], "pin a nut a cherrie stone but she": [0, 65535], "a nut a cherrie stone but she more": [0, 65535], "nut a cherrie stone but she more couetous": [0, 65535], "a cherrie stone but she more couetous wold": [0, 65535], "cherrie stone but she more couetous wold haue": [0, 65535], "stone but she more couetous wold haue a": [0, 65535], "but she more couetous wold haue a chaine": [0, 65535], "she more couetous wold haue a chaine master": [0, 65535], "more couetous wold haue a chaine master be": [0, 65535], "couetous wold haue a chaine master be wise": [0, 65535], "wold haue a chaine master be wise and": [0, 65535], "haue a chaine master be wise and if": [0, 65535], "a chaine master be wise and if you": [0, 65535], "chaine master be wise and if you giue": [0, 65535], "master be wise and if you giue it": [0, 65535], "be wise and if you giue it her": [0, 65535], "wise and if you giue it her the": [0, 65535], "and if you giue it her the diuell": [0, 65535], "if you giue it her the diuell will": [0, 65535], "you giue it her the diuell will shake": [0, 65535], "giue it her the diuell will shake her": [0, 65535], "it her the diuell will shake her chaine": [0, 65535], "her the diuell will shake her chaine and": [0, 65535], "the diuell will shake her chaine and fright": [0, 65535], "diuell will shake her chaine and fright vs": [0, 65535], "will shake her chaine and fright vs with": [0, 65535], "shake her chaine and fright vs with it": [0, 65535], "her chaine and fright vs with it cur": [0, 65535], "chaine and fright vs with it cur i": [0, 65535], "and fright vs with it cur i pray": [0, 65535], "fright vs with it cur i pray you": [0, 65535], "vs with it cur i pray you sir": [0, 65535], "with it cur i pray you sir my": [0, 65535], "it cur i pray you sir my ring": [0, 65535], "cur i pray you sir my ring or": [0, 65535], "i pray you sir my ring or else": [0, 65535], "pray you sir my ring or else the": [0, 65535], "you sir my ring or else the chaine": [0, 65535], "sir my ring or else the chaine i": [0, 65535], "my ring or else the chaine i hope": [0, 65535], "ring or else the chaine i hope you": [0, 65535], "or else the chaine i hope you do": [0, 65535], "else the chaine i hope you do not": [0, 65535], "the chaine i hope you do not meane": [0, 65535], "chaine i hope you do not meane to": [0, 65535], "i hope you do not meane to cheate": [0, 65535], "hope you do not meane to cheate me": [0, 65535], "you do not meane to cheate me so": [0, 65535], "do not meane to cheate me so ant": [0, 65535], "not meane to cheate me so ant auant": [0, 65535], "meane to cheate me so ant auant thou": [0, 65535], "to cheate me so ant auant thou witch": [0, 65535], "cheate me so ant auant thou witch come": [0, 65535], "me so ant auant thou witch come dromio": [0, 65535], "so ant auant thou witch come dromio let": [0, 65535], "ant auant thou witch come dromio let vs": [0, 65535], "auant thou witch come dromio let vs go": [0, 65535], "thou witch come dromio let vs go s": [0, 65535], "witch come dromio let vs go s dro": [0, 65535], "come dromio let vs go s dro flie": [0, 65535], "dromio let vs go s dro flie pride": [0, 65535], "let vs go s dro flie pride saies": [0, 65535], "vs go s dro flie pride saies the": [0, 65535], "go s dro flie pride saies the pea": [0, 65535], "s dro flie pride saies the pea cocke": [0, 65535], "dro flie pride saies the pea cocke mistris": [0, 65535], "flie pride saies the pea cocke mistris that": [0, 65535], "pride saies the pea cocke mistris that you": [0, 65535], "saies the pea cocke mistris that you know": [0, 65535], "the pea cocke mistris that you know exit": [0, 65535], "pea cocke mistris that you know exit cur": [0, 65535], "cocke mistris that you know exit cur now": [0, 65535], "mistris that you know exit cur now out": [0, 65535], "that you know exit cur now out of": [0, 65535], "you know exit cur now out of doubt": [0, 65535], "know exit cur now out of doubt antipholus": [0, 65535], "exit cur now out of doubt antipholus is": [0, 65535], "cur now out of doubt antipholus is mad": [0, 65535], "now out of doubt antipholus is mad else": [0, 65535], "out of doubt antipholus is mad else would": [0, 65535], "of doubt antipholus is mad else would he": [0, 65535], "doubt antipholus is mad else would he neuer": [0, 65535], "antipholus is mad else would he neuer so": [0, 65535], "is mad else would he neuer so demeane": [0, 65535], "mad else would he neuer so demeane himselfe": [0, 65535], "else would he neuer so demeane himselfe a": [0, 65535], "would he neuer so demeane himselfe a ring": [0, 65535], "he neuer so demeane himselfe a ring he": [0, 65535], "neuer so demeane himselfe a ring he hath": [0, 65535], "so demeane himselfe a ring he hath of": [0, 65535], "demeane himselfe a ring he hath of mine": [0, 65535], "himselfe a ring he hath of mine worth": [0, 65535], "a ring he hath of mine worth fortie": [0, 65535], "ring he hath of mine worth fortie duckets": [0, 65535], "he hath of mine worth fortie duckets and": [0, 65535], "hath of mine worth fortie duckets and for": [0, 65535], "of mine worth fortie duckets and for the": [0, 65535], "mine worth fortie duckets and for the same": [0, 65535], "worth fortie duckets and for the same he": [0, 65535], "fortie duckets and for the same he promis'd": [0, 65535], "duckets and for the same he promis'd me": [0, 65535], "and for the same he promis'd me a": [0, 65535], "for the same he promis'd me a chaine": [0, 65535], "the same he promis'd me a chaine both": [0, 65535], "same he promis'd me a chaine both one": [0, 65535], "he promis'd me a chaine both one and": [0, 65535], "promis'd me a chaine both one and other": [0, 65535], "me a chaine both one and other he": [0, 65535], "a chaine both one and other he denies": [0, 65535], "chaine both one and other he denies me": [0, 65535], "both one and other he denies me now": [0, 65535], "one and other he denies me now the": [0, 65535], "and other he denies me now the reason": [0, 65535], "other he denies me now the reason that": [0, 65535], "he denies me now the reason that i": [0, 65535], "denies me now the reason that i gather": [0, 65535], "me now the reason that i gather he": [0, 65535], "now the reason that i gather he is": [0, 65535], "the reason that i gather he is mad": [0, 65535], "reason that i gather he is mad besides": [0, 65535], "that i gather he is mad besides this": [0, 65535], "i gather he is mad besides this present": [0, 65535], "gather he is mad besides this present instance": [0, 65535], "he is mad besides this present instance of": [0, 65535], "is mad besides this present instance of his": [0, 65535], "mad besides this present instance of his rage": [0, 65535], "besides this present instance of his rage is": [0, 65535], "this present instance of his rage is a": [0, 65535], "present instance of his rage is a mad": [0, 65535], "instance of his rage is a mad tale": [0, 65535], "of his rage is a mad tale he": [0, 65535], "his rage is a mad tale he told": [0, 65535], "rage is a mad tale he told to": [0, 65535], "is a mad tale he told to day": [0, 65535], "a mad tale he told to day at": [0, 65535], "mad tale he told to day at dinner": [0, 65535], "tale he told to day at dinner of": [0, 65535], "he told to day at dinner of his": [0, 65535], "told to day at dinner of his owne": [0, 65535], "to day at dinner of his owne doores": [0, 65535], "day at dinner of his owne doores being": [0, 65535], "at dinner of his owne doores being shut": [0, 65535], "dinner of his owne doores being shut against": [0, 65535], "of his owne doores being shut against his": [0, 65535], "his owne doores being shut against his entrance": [0, 65535], "owne doores being shut against his entrance belike": [0, 65535], "doores being shut against his entrance belike his": [0, 65535], "being shut against his entrance belike his wife": [0, 65535], "shut against his entrance belike his wife acquainted": [0, 65535], "against his entrance belike his wife acquainted with": [0, 65535], "his entrance belike his wife acquainted with his": [0, 65535], "entrance belike his wife acquainted with his fits": [0, 65535], "belike his wife acquainted with his fits on": [0, 65535], "his wife acquainted with his fits on purpose": [0, 65535], "wife acquainted with his fits on purpose shut": [0, 65535], "acquainted with his fits on purpose shut the": [0, 65535], "with his fits on purpose shut the doores": [0, 65535], "his fits on purpose shut the doores against": [0, 65535], "fits on purpose shut the doores against his": [0, 65535], "on purpose shut the doores against his way": [0, 65535], "purpose shut the doores against his way my": [0, 65535], "shut the doores against his way my way": [0, 65535], "the doores against his way my way is": [0, 65535], "doores against his way my way is now": [0, 65535], "against his way my way is now to": [0, 65535], "his way my way is now to hie": [0, 65535], "way my way is now to hie home": [0, 65535], "my way is now to hie home to": [0, 65535], "way is now to hie home to his": [0, 65535], "is now to hie home to his house": [0, 65535], "now to hie home to his house and": [0, 65535], "to hie home to his house and tell": [0, 65535], "hie home to his house and tell his": [0, 65535], "home to his house and tell his wife": [0, 65535], "to his house and tell his wife that": [0, 65535], "his house and tell his wife that being": [0, 65535], "house and tell his wife that being lunaticke": [0, 65535], "and tell his wife that being lunaticke he": [0, 65535], "tell his wife that being lunaticke he rush'd": [0, 65535], "his wife that being lunaticke he rush'd into": [0, 65535], "wife that being lunaticke he rush'd into my": [0, 65535], "that being lunaticke he rush'd into my house": [0, 65535], "being lunaticke he rush'd into my house and": [0, 65535], "lunaticke he rush'd into my house and tooke": [0, 65535], "he rush'd into my house and tooke perforce": [0, 65535], "rush'd into my house and tooke perforce my": [0, 65535], "into my house and tooke perforce my ring": [0, 65535], "my house and tooke perforce my ring away": [0, 65535], "house and tooke perforce my ring away this": [0, 65535], "and tooke perforce my ring away this course": [0, 65535], "tooke perforce my ring away this course i": [0, 65535], "perforce my ring away this course i fittest": [0, 65535], "my ring away this course i fittest choose": [0, 65535], "ring away this course i fittest choose for": [0, 65535], "away this course i fittest choose for fortie": [0, 65535], "this course i fittest choose for fortie duckets": [0, 65535], "course i fittest choose for fortie duckets is": [0, 65535], "i fittest choose for fortie duckets is too": [0, 65535], "fittest choose for fortie duckets is too much": [0, 65535], "choose for fortie duckets is too much to": [0, 65535], "for fortie duckets is too much to loose": [0, 65535], "fortie duckets is too much to loose enter": [0, 65535], "duckets is too much to loose enter antipholus": [0, 65535], "is too much to loose enter antipholus ephes": [0, 65535], "too much to loose enter antipholus ephes with": [0, 65535], "much to loose enter antipholus ephes with a": [0, 65535], "to loose enter antipholus ephes with a iailor": [0, 65535], "loose enter antipholus ephes with a iailor an": [0, 65535], "enter antipholus ephes with a iailor an feare": [0, 65535], "antipholus ephes with a iailor an feare me": [0, 65535], "ephes with a iailor an feare me not": [0, 65535], "with a iailor an feare me not man": [0, 65535], "a iailor an feare me not man i": [0, 65535], "iailor an feare me not man i will": [0, 65535], "an feare me not man i will not": [0, 65535], "feare me not man i will not breake": [0, 65535], "me not man i will not breake away": [0, 65535], "not man i will not breake away ile": [0, 65535], "man i will not breake away ile giue": [0, 65535], "i will not breake away ile giue thee": [0, 65535], "will not breake away ile giue thee ere": [0, 65535], "not breake away ile giue thee ere i": [0, 65535], "breake away ile giue thee ere i leaue": [0, 65535], "away ile giue thee ere i leaue thee": [0, 65535], "ile giue thee ere i leaue thee so": [0, 65535], "giue thee ere i leaue thee so much": [0, 65535], "thee ere i leaue thee so much money": [0, 65535], "ere i leaue thee so much money to": [0, 65535], "i leaue thee so much money to warrant": [0, 65535], "leaue thee so much money to warrant thee": [0, 65535], "thee so much money to warrant thee as": [0, 65535], "so much money to warrant thee as i": [0, 65535], "much money to warrant thee as i am": [0, 65535], "money to warrant thee as i am rested": [0, 65535], "to warrant thee as i am rested for": [0, 65535], "warrant thee as i am rested for my": [0, 65535], "thee as i am rested for my wife": [0, 65535], "as i am rested for my wife is": [0, 65535], "i am rested for my wife is in": [0, 65535], "am rested for my wife is in a": [0, 65535], "rested for my wife is in a wayward": [0, 65535], "for my wife is in a wayward moode": [0, 65535], "my wife is in a wayward moode to": [0, 65535], "wife is in a wayward moode to day": [0, 65535], "is in a wayward moode to day and": [0, 65535], "in a wayward moode to day and will": [0, 65535], "a wayward moode to day and will not": [0, 65535], "wayward moode to day and will not lightly": [0, 65535], "moode to day and will not lightly trust": [0, 65535], "to day and will not lightly trust the": [0, 65535], "day and will not lightly trust the messenger": [0, 65535], "and will not lightly trust the messenger that": [0, 65535], "will not lightly trust the messenger that i": [0, 65535], "not lightly trust the messenger that i should": [0, 65535], "lightly trust the messenger that i should be": [0, 65535], "trust the messenger that i should be attach'd": [0, 65535], "the messenger that i should be attach'd in": [0, 65535], "messenger that i should be attach'd in ephesus": [0, 65535], "that i should be attach'd in ephesus i": [0, 65535], "i should be attach'd in ephesus i tell": [0, 65535], "should be attach'd in ephesus i tell you": [0, 65535], "be attach'd in ephesus i tell you 'twill": [0, 65535], "attach'd in ephesus i tell you 'twill sound": [0, 65535], "in ephesus i tell you 'twill sound harshly": [0, 65535], "ephesus i tell you 'twill sound harshly in": [0, 65535], "i tell you 'twill sound harshly in her": [0, 65535], "tell you 'twill sound harshly in her eares": [0, 65535], "you 'twill sound harshly in her eares enter": [0, 65535], "'twill sound harshly in her eares enter dromio": [0, 65535], "sound harshly in her eares enter dromio eph": [0, 65535], "harshly in her eares enter dromio eph with": [0, 65535], "in her eares enter dromio eph with a": [0, 65535], "her eares enter dromio eph with a ropes": [0, 65535], "eares enter dromio eph with a ropes end": [0, 65535], "enter dromio eph with a ropes end heere": [0, 65535], "dromio eph with a ropes end heere comes": [0, 65535], "eph with a ropes end heere comes my": [0, 65535], "with a ropes end heere comes my man": [0, 65535], "a ropes end heere comes my man i": [0, 65535], "ropes end heere comes my man i thinke": [0, 65535], "end heere comes my man i thinke he": [0, 65535], "heere comes my man i thinke he brings": [0, 65535], "comes my man i thinke he brings the": [0, 65535], "my man i thinke he brings the monie": [0, 65535], "man i thinke he brings the monie how": [0, 65535], "i thinke he brings the monie how now": [0, 65535], "thinke he brings the monie how now sir": [0, 65535], "he brings the monie how now sir haue": [0, 65535], "brings the monie how now sir haue you": [0, 65535], "the monie how now sir haue you that": [0, 65535], "monie how now sir haue you that i": [0, 65535], "how now sir haue you that i sent": [0, 65535], "now sir haue you that i sent you": [0, 65535], "sir haue you that i sent you for": [0, 65535], "haue you that i sent you for e": [0, 65535], "you that i sent you for e dro": [0, 65535], "that i sent you for e dro here's": [0, 65535], "i sent you for e dro here's that": [0, 65535], "sent you for e dro here's that i": [0, 65535], "you for e dro here's that i warrant": [0, 65535], "for e dro here's that i warrant you": [0, 65535], "e dro here's that i warrant you will": [0, 65535], "dro here's that i warrant you will pay": [0, 65535], "here's that i warrant you will pay them": [0, 65535], "that i warrant you will pay them all": [0, 65535], "i warrant you will pay them all anti": [0, 65535], "warrant you will pay them all anti but": [0, 65535], "you will pay them all anti but where's": [0, 65535], "will pay them all anti but where's the": [0, 65535], "pay them all anti but where's the money": [0, 65535], "them all anti but where's the money e": [0, 65535], "all anti but where's the money e dro": [0, 65535], "anti but where's the money e dro why": [0, 65535], "but where's the money e dro why sir": [0, 65535], "where's the money e dro why sir i": [0, 65535], "the money e dro why sir i gaue": [0, 65535], "money e dro why sir i gaue the": [0, 65535], "e dro why sir i gaue the monie": [0, 65535], "dro why sir i gaue the monie for": [0, 65535], "why sir i gaue the monie for the": [0, 65535], "sir i gaue the monie for the rope": [0, 65535], "i gaue the monie for the rope ant": [0, 65535], "gaue the monie for the rope ant fiue": [0, 65535], "the monie for the rope ant fiue hundred": [0, 65535], "monie for the rope ant fiue hundred duckets": [0, 65535], "for the rope ant fiue hundred duckets villaine": [0, 65535], "the rope ant fiue hundred duckets villaine for": [0, 65535], "rope ant fiue hundred duckets villaine for a": [0, 65535], "ant fiue hundred duckets villaine for a rope": [0, 65535], "fiue hundred duckets villaine for a rope e": [0, 65535], "hundred duckets villaine for a rope e dro": [0, 65535], "duckets villaine for a rope e dro ile": [0, 65535], "villaine for a rope e dro ile serue": [0, 65535], "for a rope e dro ile serue you": [0, 65535], "a rope e dro ile serue you sir": [0, 65535], "rope e dro ile serue you sir fiue": [0, 65535], "e dro ile serue you sir fiue hundred": [0, 65535], "dro ile serue you sir fiue hundred at": [0, 65535], "ile serue you sir fiue hundred at the": [0, 65535], "serue you sir fiue hundred at the rate": [0, 65535], "you sir fiue hundred at the rate ant": [0, 65535], "sir fiue hundred at the rate ant to": [0, 65535], "fiue hundred at the rate ant to what": [0, 65535], "hundred at the rate ant to what end": [0, 65535], "at the rate ant to what end did": [0, 65535], "the rate ant to what end did i": [0, 65535], "rate ant to what end did i bid": [0, 65535], "ant to what end did i bid thee": [0, 65535], "to what end did i bid thee hie": [0, 65535], "what end did i bid thee hie thee": [0, 65535], "end did i bid thee hie thee home": [0, 65535], "did i bid thee hie thee home e": [0, 65535], "i bid thee hie thee home e dro": [0, 65535], "bid thee hie thee home e dro to": [0, 65535], "thee hie thee home e dro to a": [0, 65535], "hie thee home e dro to a ropes": [0, 65535], "thee home e dro to a ropes end": [0, 65535], "home e dro to a ropes end sir": [0, 65535], "e dro to a ropes end sir and": [0, 65535], "dro to a ropes end sir and to": [0, 65535], "to a ropes end sir and to that": [0, 65535], "a ropes end sir and to that end": [0, 65535], "ropes end sir and to that end am": [0, 65535], "end sir and to that end am i": [0, 65535], "sir and to that end am i re": [0, 65535], "and to that end am i re turn'd": [0, 65535], "to that end am i re turn'd ant": [0, 65535], "that end am i re turn'd ant and": [0, 65535], "end am i re turn'd ant and to": [0, 65535], "am i re turn'd ant and to that": [0, 65535], "i re turn'd ant and to that end": [0, 65535], "re turn'd ant and to that end sir": [0, 65535], "turn'd ant and to that end sir i": [0, 65535], "ant and to that end sir i will": [0, 65535], "and to that end sir i will welcome": [0, 65535], "to that end sir i will welcome you": [0, 65535], "that end sir i will welcome you offi": [0, 65535], "end sir i will welcome you offi good": [0, 65535], "sir i will welcome you offi good sir": [0, 65535], "i will welcome you offi good sir be": [0, 65535], "will welcome you offi good sir be patient": [0, 65535], "welcome you offi good sir be patient e": [0, 65535], "you offi good sir be patient e dro": [0, 65535], "offi good sir be patient e dro nay": [0, 65535], "good sir be patient e dro nay 'tis": [0, 65535], "sir be patient e dro nay 'tis for": [0, 65535], "be patient e dro nay 'tis for me": [0, 65535], "patient e dro nay 'tis for me to": [0, 65535], "e dro nay 'tis for me to be": [0, 65535], "dro nay 'tis for me to be patient": [0, 65535], "nay 'tis for me to be patient i": [0, 65535], "'tis for me to be patient i am": [0, 65535], "for me to be patient i am in": [0, 65535], "me to be patient i am in aduersitie": [0, 65535], "to be patient i am in aduersitie offi": [0, 65535], "be patient i am in aduersitie offi good": [0, 65535], "patient i am in aduersitie offi good now": [0, 65535], "i am in aduersitie offi good now hold": [0, 65535], "am in aduersitie offi good now hold thy": [0, 65535], "in aduersitie offi good now hold thy tongue": [0, 65535], "aduersitie offi good now hold thy tongue e": [0, 65535], "offi good now hold thy tongue e dro": [0, 65535], "good now hold thy tongue e dro nay": [0, 65535], "now hold thy tongue e dro nay rather": [0, 65535], "hold thy tongue e dro nay rather perswade": [0, 65535], "thy tongue e dro nay rather perswade him": [0, 65535], "tongue e dro nay rather perswade him to": [0, 65535], "e dro nay rather perswade him to hold": [0, 65535], "dro nay rather perswade him to hold his": [0, 65535], "nay rather perswade him to hold his hands": [0, 65535], "rather perswade him to hold his hands anti": [0, 65535], "perswade him to hold his hands anti thou": [0, 65535], "him to hold his hands anti thou whoreson": [0, 65535], "to hold his hands anti thou whoreson senselesse": [0, 65535], "hold his hands anti thou whoreson senselesse villaine": [0, 65535], "his hands anti thou whoreson senselesse villaine e": [0, 65535], "hands anti thou whoreson senselesse villaine e dro": [0, 65535], "anti thou whoreson senselesse villaine e dro i": [0, 65535], "thou whoreson senselesse villaine e dro i would": [0, 65535], "whoreson senselesse villaine e dro i would i": [0, 65535], "senselesse villaine e dro i would i were": [0, 65535], "villaine e dro i would i were senselesse": [0, 65535], "e dro i would i were senselesse sir": [0, 65535], "dro i would i were senselesse sir that": [0, 65535], "i would i were senselesse sir that i": [0, 65535], "would i were senselesse sir that i might": [0, 65535], "i were senselesse sir that i might not": [0, 65535], "were senselesse sir that i might not feele": [0, 65535], "senselesse sir that i might not feele your": [0, 65535], "sir that i might not feele your blowes": [0, 65535], "that i might not feele your blowes anti": [0, 65535], "i might not feele your blowes anti thou": [0, 65535], "might not feele your blowes anti thou art": [0, 65535], "not feele your blowes anti thou art sensible": [0, 65535], "feele your blowes anti thou art sensible in": [0, 65535], "your blowes anti thou art sensible in nothing": [0, 65535], "blowes anti thou art sensible in nothing but": [0, 65535], "anti thou art sensible in nothing but blowes": [0, 65535], "thou art sensible in nothing but blowes and": [0, 65535], "art sensible in nothing but blowes and so": [0, 65535], "sensible in nothing but blowes and so is": [0, 65535], "in nothing but blowes and so is an": [0, 65535], "nothing but blowes and so is an asse": [0, 65535], "but blowes and so is an asse e": [0, 65535], "blowes and so is an asse e dro": [0, 65535], "and so is an asse e dro i": [0, 65535], "so is an asse e dro i am": [0, 65535], "is an asse e dro i am an": [0, 65535], "an asse e dro i am an asse": [0, 65535], "asse e dro i am an asse indeede": [0, 65535], "e dro i am an asse indeede you": [0, 65535], "dro i am an asse indeede you may": [0, 65535], "i am an asse indeede you may prooue": [0, 65535], "am an asse indeede you may prooue it": [0, 65535], "an asse indeede you may prooue it by": [0, 65535], "asse indeede you may prooue it by my": [0, 65535], "indeede you may prooue it by my long": [0, 65535], "you may prooue it by my long eares": [0, 65535], "may prooue it by my long eares i": [0, 65535], "prooue it by my long eares i haue": [0, 65535], "it by my long eares i haue serued": [0, 65535], "by my long eares i haue serued him": [0, 65535], "my long eares i haue serued him from": [0, 65535], "long eares i haue serued him from the": [0, 65535], "eares i haue serued him from the houre": [0, 65535], "i haue serued him from the houre of": [0, 65535], "haue serued him from the houre of my": [0, 65535], "serued him from the houre of my natiuitie": [0, 65535], "him from the houre of my natiuitie to": [0, 65535], "from the houre of my natiuitie to this": [0, 65535], "the houre of my natiuitie to this instant": [0, 65535], "houre of my natiuitie to this instant and": [0, 65535], "of my natiuitie to this instant and haue": [0, 65535], "my natiuitie to this instant and haue nothing": [0, 65535], "natiuitie to this instant and haue nothing at": [0, 65535], "to this instant and haue nothing at his": [0, 65535], "this instant and haue nothing at his hands": [0, 65535], "instant and haue nothing at his hands for": [0, 65535], "and haue nothing at his hands for my": [0, 65535], "haue nothing at his hands for my seruice": [0, 65535], "nothing at his hands for my seruice but": [0, 65535], "at his hands for my seruice but blowes": [0, 65535], "his hands for my seruice but blowes when": [0, 65535], "hands for my seruice but blowes when i": [0, 65535], "for my seruice but blowes when i am": [0, 65535], "my seruice but blowes when i am cold": [0, 65535], "seruice but blowes when i am cold he": [0, 65535], "but blowes when i am cold he heates": [0, 65535], "blowes when i am cold he heates me": [0, 65535], "when i am cold he heates me with": [0, 65535], "i am cold he heates me with beating": [0, 65535], "am cold he heates me with beating when": [0, 65535], "cold he heates me with beating when i": [0, 65535], "he heates me with beating when i am": [0, 65535], "heates me with beating when i am warme": [0, 65535], "me with beating when i am warme he": [0, 65535], "with beating when i am warme he cooles": [0, 65535], "beating when i am warme he cooles me": [0, 65535], "when i am warme he cooles me with": [0, 65535], "i am warme he cooles me with beating": [0, 65535], "am warme he cooles me with beating i": [0, 65535], "warme he cooles me with beating i am": [0, 65535], "he cooles me with beating i am wak'd": [0, 65535], "cooles me with beating i am wak'd with": [0, 65535], "me with beating i am wak'd with it": [0, 65535], "with beating i am wak'd with it when": [0, 65535], "beating i am wak'd with it when i": [0, 65535], "i am wak'd with it when i sleepe": [0, 65535], "am wak'd with it when i sleepe rais'd": [0, 65535], "wak'd with it when i sleepe rais'd with": [0, 65535], "with it when i sleepe rais'd with it": [0, 65535], "it when i sleepe rais'd with it when": [0, 65535], "when i sleepe rais'd with it when i": [0, 65535], "i sleepe rais'd with it when i sit": [0, 65535], "sleepe rais'd with it when i sit driuen": [0, 65535], "rais'd with it when i sit driuen out": [0, 65535], "with it when i sit driuen out of": [0, 65535], "it when i sit driuen out of doores": [0, 65535], "when i sit driuen out of doores with": [0, 65535], "i sit driuen out of doores with it": [0, 65535], "sit driuen out of doores with it when": [0, 65535], "driuen out of doores with it when i": [0, 65535], "out of doores with it when i goe": [0, 65535], "of doores with it when i goe from": [0, 65535], "doores with it when i goe from home": [0, 65535], "with it when i goe from home welcom'd": [0, 65535], "it when i goe from home welcom'd home": [0, 65535], "when i goe from home welcom'd home with": [0, 65535], "i goe from home welcom'd home with it": [0, 65535], "goe from home welcom'd home with it when": [0, 65535], "from home welcom'd home with it when i": [0, 65535], "home welcom'd home with it when i returne": [0, 65535], "welcom'd home with it when i returne nay": [0, 65535], "home with it when i returne nay i": [0, 65535], "with it when i returne nay i beare": [0, 65535], "it when i returne nay i beare it": [0, 65535], "when i returne nay i beare it on": [0, 65535], "i returne nay i beare it on my": [0, 65535], "returne nay i beare it on my shoulders": [0, 65535], "nay i beare it on my shoulders as": [0, 65535], "i beare it on my shoulders as a": [0, 65535], "beare it on my shoulders as a begger": [0, 65535], "it on my shoulders as a begger woont": [0, 65535], "on my shoulders as a begger woont her": [0, 65535], "my shoulders as a begger woont her brat": [0, 65535], "shoulders as a begger woont her brat and": [0, 65535], "as a begger woont her brat and i": [0, 65535], "a begger woont her brat and i thinke": [0, 65535], "begger woont her brat and i thinke when": [0, 65535], "woont her brat and i thinke when he": [0, 65535], "her brat and i thinke when he hath": [0, 65535], "brat and i thinke when he hath lam'd": [0, 65535], "and i thinke when he hath lam'd me": [0, 65535], "i thinke when he hath lam'd me i": [0, 65535], "thinke when he hath lam'd me i shall": [0, 65535], "when he hath lam'd me i shall begge": [0, 65535], "he hath lam'd me i shall begge with": [0, 65535], "hath lam'd me i shall begge with it": [0, 65535], "lam'd me i shall begge with it from": [0, 65535], "me i shall begge with it from doore": [0, 65535], "i shall begge with it from doore to": [0, 65535], "shall begge with it from doore to doore": [0, 65535], "begge with it from doore to doore enter": [0, 65535], "with it from doore to doore enter adriana": [0, 65535], "it from doore to doore enter adriana luciana": [0, 65535], "from doore to doore enter adriana luciana courtizan": [0, 65535], "doore to doore enter adriana luciana courtizan and": [0, 65535], "to doore enter adriana luciana courtizan and a": [0, 65535], "doore enter adriana luciana courtizan and a schoolemaster": [0, 65535], "enter adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch ant": [0, 65535], "courtizan and a schoolemaster call'd pinch ant come": [0, 65535], "and a schoolemaster call'd pinch ant come goe": [0, 65535], "a schoolemaster call'd pinch ant come goe along": [0, 65535], "schoolemaster call'd pinch ant come goe along my": [0, 65535], "call'd pinch ant come goe along my wife": [0, 65535], "pinch ant come goe along my wife is": [0, 65535], "ant come goe along my wife is comming": [0, 65535], "come goe along my wife is comming yonder": [0, 65535], "goe along my wife is comming yonder e": [0, 65535], "along my wife is comming yonder e dro": [0, 65535], "my wife is comming yonder e dro mistris": [0, 65535], "wife is comming yonder e dro mistris respice": [0, 65535], "is comming yonder e dro mistris respice finem": [0, 65535], "comming yonder e dro mistris respice finem respect": [0, 65535], "yonder e dro mistris respice finem respect your": [0, 65535], "e dro mistris respice finem respect your end": [0, 65535], "dro mistris respice finem respect your end or": [0, 65535], "mistris respice finem respect your end or rather": [0, 65535], "respice finem respect your end or rather the": [0, 65535], "finem respect your end or rather the prophesie": [0, 65535], "respect your end or rather the prophesie like": [0, 65535], "your end or rather the prophesie like the": [0, 65535], "end or rather the prophesie like the parrat": [0, 65535], "or rather the prophesie like the parrat beware": [0, 65535], "rather the prophesie like the parrat beware the": [0, 65535], "the prophesie like the parrat beware the ropes": [0, 65535], "prophesie like the parrat beware the ropes end": [0, 65535], "like the parrat beware the ropes end anti": [0, 65535], "the parrat beware the ropes end anti wilt": [0, 65535], "parrat beware the ropes end anti wilt thou": [0, 65535], "beware the ropes end anti wilt thou still": [0, 65535], "the ropes end anti wilt thou still talke": [0, 65535], "ropes end anti wilt thou still talke beats": [0, 65535], "end anti wilt thou still talke beats dro": [0, 65535], "anti wilt thou still talke beats dro curt": [0, 65535], "wilt thou still talke beats dro curt how": [0, 65535], "thou still talke beats dro curt how say": [0, 65535], "still talke beats dro curt how say you": [0, 65535], "talke beats dro curt how say you now": [0, 65535], "beats dro curt how say you now is": [0, 65535], "dro curt how say you now is not": [0, 65535], "curt how say you now is not your": [0, 65535], "how say you now is not your husband": [0, 65535], "say you now is not your husband mad": [0, 65535], "you now is not your husband mad adri": [0, 65535], "now is not your husband mad adri his": [0, 65535], "is not your husband mad adri his inciuility": [0, 65535], "not your husband mad adri his inciuility confirmes": [0, 65535], "your husband mad adri his inciuility confirmes no": [0, 65535], "husband mad adri his inciuility confirmes no lesse": [0, 65535], "mad adri his inciuility confirmes no lesse good": [0, 65535], "adri his inciuility confirmes no lesse good doctor": [0, 65535], "his inciuility confirmes no lesse good doctor pinch": [0, 65535], "inciuility confirmes no lesse good doctor pinch you": [0, 65535], "confirmes no lesse good doctor pinch you are": [0, 65535], "no lesse good doctor pinch you are a": [0, 65535], "lesse good doctor pinch you are a coniurer": [0, 65535], "good doctor pinch you are a coniurer establish": [0, 65535], "doctor pinch you are a coniurer establish him": [0, 65535], "pinch you are a coniurer establish him in": [0, 65535], "you are a coniurer establish him in his": [0, 65535], "are a coniurer establish him in his true": [0, 65535], "a coniurer establish him in his true sence": [0, 65535], "coniurer establish him in his true sence againe": [0, 65535], "establish him in his true sence againe and": [0, 65535], "him in his true sence againe and i": [0, 65535], "in his true sence againe and i will": [0, 65535], "his true sence againe and i will please": [0, 65535], "true sence againe and i will please you": [0, 65535], "sence againe and i will please you what": [0, 65535], "againe and i will please you what you": [0, 65535], "and i will please you what you will": [0, 65535], "i will please you what you will demand": [0, 65535], "will please you what you will demand luc": [0, 65535], "please you what you will demand luc alas": [0, 65535], "you what you will demand luc alas how": [0, 65535], "what you will demand luc alas how fiery": [0, 65535], "you will demand luc alas how fiery and": [0, 65535], "will demand luc alas how fiery and how": [0, 65535], "demand luc alas how fiery and how sharpe": [0, 65535], "luc alas how fiery and how sharpe he": [0, 65535], "alas how fiery and how sharpe he lookes": [0, 65535], "how fiery and how sharpe he lookes cur": [0, 65535], "fiery and how sharpe he lookes cur marke": [0, 65535], "and how sharpe he lookes cur marke how": [0, 65535], "how sharpe he lookes cur marke how he": [0, 65535], "sharpe he lookes cur marke how he trembles": [0, 65535], "he lookes cur marke how he trembles in": [0, 65535], "lookes cur marke how he trembles in his": [0, 65535], "cur marke how he trembles in his extasie": [0, 65535], "marke how he trembles in his extasie pinch": [0, 65535], "how he trembles in his extasie pinch giue": [0, 65535], "he trembles in his extasie pinch giue me": [0, 65535], "trembles in his extasie pinch giue me your": [0, 65535], "in his extasie pinch giue me your hand": [0, 65535], "his extasie pinch giue me your hand and": [0, 65535], "extasie pinch giue me your hand and let": [0, 65535], "pinch giue me your hand and let mee": [0, 65535], "giue me your hand and let mee feele": [0, 65535], "me your hand and let mee feele your": [0, 65535], "your hand and let mee feele your pulse": [0, 65535], "hand and let mee feele your pulse ant": [0, 65535], "and let mee feele your pulse ant there": [0, 65535], "let mee feele your pulse ant there is": [0, 65535], "mee feele your pulse ant there is my": [0, 65535], "feele your pulse ant there is my hand": [0, 65535], "your pulse ant there is my hand and": [0, 65535], "pulse ant there is my hand and let": [0, 65535], "ant there is my hand and let it": [0, 65535], "there is my hand and let it feele": [0, 65535], "is my hand and let it feele your": [0, 65535], "my hand and let it feele your eare": [0, 65535], "hand and let it feele your eare pinch": [0, 65535], "and let it feele your eare pinch i": [0, 65535], "let it feele your eare pinch i charge": [0, 65535], "it feele your eare pinch i charge thee": [0, 65535], "feele your eare pinch i charge thee sathan": [0, 65535], "your eare pinch i charge thee sathan hous'd": [0, 65535], "eare pinch i charge thee sathan hous'd within": [0, 65535], "pinch i charge thee sathan hous'd within this": [0, 65535], "i charge thee sathan hous'd within this man": [0, 65535], "charge thee sathan hous'd within this man to": [0, 65535], "thee sathan hous'd within this man to yeeld": [0, 65535], "sathan hous'd within this man to yeeld possession": [0, 65535], "hous'd within this man to yeeld possession to": [0, 65535], "within this man to yeeld possession to my": [0, 65535], "this man to yeeld possession to my holie": [0, 65535], "man to yeeld possession to my holie praiers": [0, 65535], "to yeeld possession to my holie praiers and": [0, 65535], "yeeld possession to my holie praiers and to": [0, 65535], "possession to my holie praiers and to thy": [0, 65535], "to my holie praiers and to thy state": [0, 65535], "my holie praiers and to thy state of": [0, 65535], "holie praiers and to thy state of darknesse": [0, 65535], "praiers and to thy state of darknesse hie": [0, 65535], "and to thy state of darknesse hie thee": [0, 65535], "to thy state of darknesse hie thee straight": [0, 65535], "thy state of darknesse hie thee straight i": [0, 65535], "state of darknesse hie thee straight i coniure": [0, 65535], "of darknesse hie thee straight i coniure thee": [0, 65535], "darknesse hie thee straight i coniure thee by": [0, 65535], "hie thee straight i coniure thee by all": [0, 65535], "thee straight i coniure thee by all the": [0, 65535], "straight i coniure thee by all the saints": [0, 65535], "i coniure thee by all the saints in": [0, 65535], "coniure thee by all the saints in heauen": [0, 65535], "thee by all the saints in heauen anti": [0, 65535], "by all the saints in heauen anti peace": [0, 65535], "all the saints in heauen anti peace doting": [0, 65535], "the saints in heauen anti peace doting wizard": [0, 65535], "saints in heauen anti peace doting wizard peace": [0, 65535], "in heauen anti peace doting wizard peace i": [0, 65535], "heauen anti peace doting wizard peace i am": [0, 65535], "anti peace doting wizard peace i am not": [0, 65535], "peace doting wizard peace i am not mad": [0, 65535], "doting wizard peace i am not mad adr": [0, 65535], "wizard peace i am not mad adr oh": [0, 65535], "peace i am not mad adr oh that": [0, 65535], "i am not mad adr oh that thou": [0, 65535], "am not mad adr oh that thou wer't": [0, 65535], "not mad adr oh that thou wer't not": [0, 65535], "mad adr oh that thou wer't not poore": [0, 65535], "adr oh that thou wer't not poore distressed": [0, 65535], "oh that thou wer't not poore distressed soule": [0, 65535], "that thou wer't not poore distressed soule anti": [0, 65535], "thou wer't not poore distressed soule anti you": [0, 65535], "wer't not poore distressed soule anti you minion": [0, 65535], "not poore distressed soule anti you minion you": [0, 65535], "poore distressed soule anti you minion you are": [0, 65535], "distressed soule anti you minion you are these": [0, 65535], "soule anti you minion you are these your": [0, 65535], "anti you minion you are these your customers": [0, 65535], "you minion you are these your customers did": [0, 65535], "minion you are these your customers did this": [0, 65535], "you are these your customers did this companion": [0, 65535], "are these your customers did this companion with": [0, 65535], "these your customers did this companion with the": [0, 65535], "your customers did this companion with the saffron": [0, 65535], "customers did this companion with the saffron face": [0, 65535], "did this companion with the saffron face reuell": [0, 65535], "this companion with the saffron face reuell and": [0, 65535], "companion with the saffron face reuell and feast": [0, 65535], "with the saffron face reuell and feast it": [0, 65535], "the saffron face reuell and feast it at": [0, 65535], "saffron face reuell and feast it at my": [0, 65535], "face reuell and feast it at my house": [0, 65535], "reuell and feast it at my house to": [0, 65535], "and feast it at my house to day": [0, 65535], "feast it at my house to day whil'st": [0, 65535], "it at my house to day whil'st vpon": [0, 65535], "at my house to day whil'st vpon me": [0, 65535], "my house to day whil'st vpon me the": [0, 65535], "house to day whil'st vpon me the guiltie": [0, 65535], "to day whil'st vpon me the guiltie doores": [0, 65535], "day whil'st vpon me the guiltie doores were": [0, 65535], "whil'st vpon me the guiltie doores were shut": [0, 65535], "vpon me the guiltie doores were shut and": [0, 65535], "me the guiltie doores were shut and i": [0, 65535], "the guiltie doores were shut and i denied": [0, 65535], "guiltie doores were shut and i denied to": [0, 65535], "doores were shut and i denied to enter": [0, 65535], "were shut and i denied to enter in": [0, 65535], "shut and i denied to enter in my": [0, 65535], "and i denied to enter in my house": [0, 65535], "i denied to enter in my house adr": [0, 65535], "denied to enter in my house adr o": [0, 65535], "to enter in my house adr o husband": [0, 65535], "enter in my house adr o husband god": [0, 65535], "in my house adr o husband god doth": [0, 65535], "my house adr o husband god doth know": [0, 65535], "house adr o husband god doth know you": [0, 65535], "adr o husband god doth know you din'd": [0, 65535], "o husband god doth know you din'd at": [0, 65535], "husband god doth know you din'd at home": [0, 65535], "god doth know you din'd at home where": [0, 65535], "doth know you din'd at home where would": [0, 65535], "know you din'd at home where would you": [0, 65535], "you din'd at home where would you had": [0, 65535], "din'd at home where would you had remain'd": [0, 65535], "at home where would you had remain'd vntill": [0, 65535], "home where would you had remain'd vntill this": [0, 65535], "where would you had remain'd vntill this time": [0, 65535], "would you had remain'd vntill this time free": [0, 65535], "you had remain'd vntill this time free from": [0, 65535], "had remain'd vntill this time free from these": [0, 65535], "remain'd vntill this time free from these slanders": [0, 65535], "vntill this time free from these slanders and": [0, 65535], "this time free from these slanders and this": [0, 65535], "time free from these slanders and this open": [0, 65535], "free from these slanders and this open shame": [0, 65535], "from these slanders and this open shame anti": [0, 65535], "these slanders and this open shame anti din'd": [0, 65535], "slanders and this open shame anti din'd at": [0, 65535], "and this open shame anti din'd at home": [0, 65535], "this open shame anti din'd at home thou": [0, 65535], "open shame anti din'd at home thou villaine": [0, 65535], "shame anti din'd at home thou villaine what": [0, 65535], "anti din'd at home thou villaine what sayest": [0, 65535], "din'd at home thou villaine what sayest thou": [0, 65535], "at home thou villaine what sayest thou dro": [0, 65535], "home thou villaine what sayest thou dro sir": [0, 65535], "thou villaine what sayest thou dro sir sooth": [0, 65535], "villaine what sayest thou dro sir sooth to": [0, 65535], "what sayest thou dro sir sooth to say": [0, 65535], "sayest thou dro sir sooth to say you": [0, 65535], "thou dro sir sooth to say you did": [0, 65535], "dro sir sooth to say you did not": [0, 65535], "sir sooth to say you did not dine": [0, 65535], "sooth to say you did not dine at": [0, 65535], "to say you did not dine at home": [0, 65535], "say you did not dine at home ant": [0, 65535], "you did not dine at home ant were": [0, 65535], "did not dine at home ant were not": [0, 65535], "not dine at home ant were not my": [0, 65535], "dine at home ant were not my doores": [0, 65535], "at home ant were not my doores lockt": [0, 65535], "home ant were not my doores lockt vp": [0, 65535], "ant were not my doores lockt vp and": [0, 65535], "were not my doores lockt vp and i": [0, 65535], "not my doores lockt vp and i shut": [0, 65535], "my doores lockt vp and i shut out": [0, 65535], "doores lockt vp and i shut out dro": [0, 65535], "lockt vp and i shut out dro perdie": [0, 65535], "vp and i shut out dro perdie your": [0, 65535], "and i shut out dro perdie your doores": [0, 65535], "i shut out dro perdie your doores were": [0, 65535], "shut out dro perdie your doores were lockt": [0, 65535], "out dro perdie your doores were lockt and": [0, 65535], "dro perdie your doores were lockt and you": [0, 65535], "perdie your doores were lockt and you shut": [0, 65535], "your doores were lockt and you shut out": [0, 65535], "doores were lockt and you shut out anti": [0, 65535], "were lockt and you shut out anti and": [0, 65535], "lockt and you shut out anti and did": [0, 65535], "and you shut out anti and did not": [0, 65535], "you shut out anti and did not she": [0, 65535], "shut out anti and did not she her": [0, 65535], "out anti and did not she her selfe": [0, 65535], "anti and did not she her selfe reuile": [0, 65535], "and did not she her selfe reuile me": [0, 65535], "did not she her selfe reuile me there": [0, 65535], "not she her selfe reuile me there dro": [0, 65535], "she her selfe reuile me there dro sans": [0, 65535], "her selfe reuile me there dro sans fable": [0, 65535], "selfe reuile me there dro sans fable she": [0, 65535], "reuile me there dro sans fable she her": [0, 65535], "me there dro sans fable she her selfe": [0, 65535], "there dro sans fable she her selfe reuil'd": [0, 65535], "dro sans fable she her selfe reuil'd you": [0, 65535], "sans fable she her selfe reuil'd you there": [0, 65535], "fable she her selfe reuil'd you there anti": [0, 65535], "she her selfe reuil'd you there anti did": [0, 65535], "her selfe reuil'd you there anti did not": [0, 65535], "selfe reuil'd you there anti did not her": [0, 65535], "reuil'd you there anti did not her kitchen": [0, 65535], "you there anti did not her kitchen maide": [0, 65535], "there anti did not her kitchen maide raile": [0, 65535], "anti did not her kitchen maide raile taunt": [0, 65535], "did not her kitchen maide raile taunt and": [0, 65535], "not her kitchen maide raile taunt and scorne": [0, 65535], "her kitchen maide raile taunt and scorne me": [0, 65535], "kitchen maide raile taunt and scorne me dro": [0, 65535], "maide raile taunt and scorne me dro certis": [0, 65535], "raile taunt and scorne me dro certis she": [0, 65535], "taunt and scorne me dro certis she did": [0, 65535], "and scorne me dro certis she did the": [0, 65535], "scorne me dro certis she did the kitchin": [0, 65535], "me dro certis she did the kitchin vestall": [0, 65535], "dro certis she did the kitchin vestall scorn'd": [0, 65535], "certis she did the kitchin vestall scorn'd you": [0, 65535], "she did the kitchin vestall scorn'd you ant": [0, 65535], "did the kitchin vestall scorn'd you ant and": [0, 65535], "the kitchin vestall scorn'd you ant and did": [0, 65535], "kitchin vestall scorn'd you ant and did not": [0, 65535], "vestall scorn'd you ant and did not i": [0, 65535], "scorn'd you ant and did not i in": [0, 65535], "you ant and did not i in rage": [0, 65535], "ant and did not i in rage depart": [0, 65535], "and did not i in rage depart from": [0, 65535], "did not i in rage depart from thence": [0, 65535], "not i in rage depart from thence dro": [0, 65535], "i in rage depart from thence dro in": [0, 65535], "in rage depart from thence dro in veritie": [0, 65535], "rage depart from thence dro in veritie you": [0, 65535], "depart from thence dro in veritie you did": [0, 65535], "from thence dro in veritie you did my": [0, 65535], "thence dro in veritie you did my bones": [0, 65535], "dro in veritie you did my bones beares": [0, 65535], "in veritie you did my bones beares witnesse": [0, 65535], "veritie you did my bones beares witnesse that": [0, 65535], "you did my bones beares witnesse that since": [0, 65535], "did my bones beares witnesse that since haue": [0, 65535], "my bones beares witnesse that since haue felt": [0, 65535], "bones beares witnesse that since haue felt the": [0, 65535], "beares witnesse that since haue felt the vigor": [0, 65535], "witnesse that since haue felt the vigor of": [0, 65535], "that since haue felt the vigor of his": [0, 65535], "since haue felt the vigor of his rage": [0, 65535], "haue felt the vigor of his rage adr": [0, 65535], "felt the vigor of his rage adr is't": [0, 65535], "the vigor of his rage adr is't good": [0, 65535], "vigor of his rage adr is't good to": [0, 65535], "of his rage adr is't good to sooth": [0, 65535], "his rage adr is't good to sooth him": [0, 65535], "rage adr is't good to sooth him in": [0, 65535], "adr is't good to sooth him in these": [0, 65535], "is't good to sooth him in these contraries": [0, 65535], "good to sooth him in these contraries pinch": [0, 65535], "to sooth him in these contraries pinch it": [0, 65535], "sooth him in these contraries pinch it is": [0, 65535], "him in these contraries pinch it is no": [0, 65535], "in these contraries pinch it is no shame": [0, 65535], "these contraries pinch it is no shame the": [0, 65535], "contraries pinch it is no shame the fellow": [0, 65535], "pinch it is no shame the fellow finds": [0, 65535], "it is no shame the fellow finds his": [0, 65535], "is no shame the fellow finds his vaine": [0, 65535], "no shame the fellow finds his vaine and": [0, 65535], "shame the fellow finds his vaine and yeelding": [0, 65535], "the fellow finds his vaine and yeelding to": [0, 65535], "fellow finds his vaine and yeelding to him": [0, 65535], "finds his vaine and yeelding to him humors": [0, 65535], "his vaine and yeelding to him humors well": [0, 65535], "vaine and yeelding to him humors well his": [0, 65535], "and yeelding to him humors well his frensie": [0, 65535], "yeelding to him humors well his frensie ant": [0, 65535], "to him humors well his frensie ant thou": [0, 65535], "him humors well his frensie ant thou hast": [0, 65535], "humors well his frensie ant thou hast subborn'd": [0, 65535], "well his frensie ant thou hast subborn'd the": [0, 65535], "his frensie ant thou hast subborn'd the goldsmith": [0, 65535], "frensie ant thou hast subborn'd the goldsmith to": [0, 65535], "ant thou hast subborn'd the goldsmith to arrest": [0, 65535], "thou hast subborn'd the goldsmith to arrest mee": [0, 65535], "hast subborn'd the goldsmith to arrest mee adr": [0, 65535], "subborn'd the goldsmith to arrest mee adr alas": [0, 65535], "the goldsmith to arrest mee adr alas i": [0, 65535], "goldsmith to arrest mee adr alas i sent": [0, 65535], "to arrest mee adr alas i sent you": [0, 65535], "arrest mee adr alas i sent you monie": [0, 65535], "mee adr alas i sent you monie to": [0, 65535], "adr alas i sent you monie to redeeme": [0, 65535], "alas i sent you monie to redeeme you": [0, 65535], "i sent you monie to redeeme you by": [0, 65535], "sent you monie to redeeme you by dromio": [0, 65535], "you monie to redeeme you by dromio heere": [0, 65535], "monie to redeeme you by dromio heere who": [0, 65535], "to redeeme you by dromio heere who came": [0, 65535], "redeeme you by dromio heere who came in": [0, 65535], "you by dromio heere who came in hast": [0, 65535], "by dromio heere who came in hast for": [0, 65535], "dromio heere who came in hast for it": [0, 65535], "heere who came in hast for it dro": [0, 65535], "who came in hast for it dro monie": [0, 65535], "came in hast for it dro monie by": [0, 65535], "in hast for it dro monie by me": [0, 65535], "hast for it dro monie by me heart": [0, 65535], "for it dro monie by me heart and": [0, 65535], "it dro monie by me heart and good": [0, 65535], "dro monie by me heart and good will": [0, 65535], "monie by me heart and good will you": [0, 65535], "by me heart and good will you might": [0, 65535], "me heart and good will you might but": [0, 65535], "heart and good will you might but surely": [0, 65535], "and good will you might but surely master": [0, 65535], "good will you might but surely master not": [0, 65535], "will you might but surely master not a": [0, 65535], "you might but surely master not a ragge": [0, 65535], "might but surely master not a ragge of": [0, 65535], "but surely master not a ragge of monie": [0, 65535], "surely master not a ragge of monie ant": [0, 65535], "master not a ragge of monie ant wentst": [0, 65535], "not a ragge of monie ant wentst not": [0, 65535], "a ragge of monie ant wentst not thou": [0, 65535], "ragge of monie ant wentst not thou to": [0, 65535], "of monie ant wentst not thou to her": [0, 65535], "monie ant wentst not thou to her for": [0, 65535], "ant wentst not thou to her for a": [0, 65535], "wentst not thou to her for a purse": [0, 65535], "not thou to her for a purse of": [0, 65535], "thou to her for a purse of duckets": [0, 65535], "to her for a purse of duckets adri": [0, 65535], "her for a purse of duckets adri he": [0, 65535], "for a purse of duckets adri he came": [0, 65535], "a purse of duckets adri he came to": [0, 65535], "purse of duckets adri he came to me": [0, 65535], "of duckets adri he came to me and": [0, 65535], "duckets adri he came to me and i": [0, 65535], "adri he came to me and i deliuer'd": [0, 65535], "he came to me and i deliuer'd it": [0, 65535], "came to me and i deliuer'd it luci": [0, 65535], "to me and i deliuer'd it luci and": [0, 65535], "me and i deliuer'd it luci and i": [0, 65535], "and i deliuer'd it luci and i am": [0, 65535], "i deliuer'd it luci and i am witnesse": [0, 65535], "deliuer'd it luci and i am witnesse with": [0, 65535], "it luci and i am witnesse with her": [0, 65535], "luci and i am witnesse with her that": [0, 65535], "and i am witnesse with her that she": [0, 65535], "i am witnesse with her that she did": [0, 65535], "am witnesse with her that she did dro": [0, 65535], "witnesse with her that she did dro god": [0, 65535], "with her that she did dro god and": [0, 65535], "her that she did dro god and the": [0, 65535], "that she did dro god and the rope": [0, 65535], "she did dro god and the rope maker": [0, 65535], "did dro god and the rope maker beare": [0, 65535], "dro god and the rope maker beare me": [0, 65535], "god and the rope maker beare me witnesse": [0, 65535], "and the rope maker beare me witnesse that": [0, 65535], "the rope maker beare me witnesse that i": [0, 65535], "rope maker beare me witnesse that i was": [0, 65535], "maker beare me witnesse that i was sent": [0, 65535], "beare me witnesse that i was sent for": [0, 65535], "me witnesse that i was sent for nothing": [0, 65535], "witnesse that i was sent for nothing but": [0, 65535], "that i was sent for nothing but a": [0, 65535], "i was sent for nothing but a rope": [0, 65535], "was sent for nothing but a rope pinch": [0, 65535], "sent for nothing but a rope pinch mistris": [0, 65535], "for nothing but a rope pinch mistris both": [0, 65535], "nothing but a rope pinch mistris both man": [0, 65535], "but a rope pinch mistris both man and": [0, 65535], "a rope pinch mistris both man and master": [0, 65535], "rope pinch mistris both man and master is": [0, 65535], "pinch mistris both man and master is possest": [0, 65535], "mistris both man and master is possest i": [0, 65535], "both man and master is possest i know": [0, 65535], "man and master is possest i know it": [0, 65535], "and master is possest i know it by": [0, 65535], "master is possest i know it by their": [0, 65535], "is possest i know it by their pale": [0, 65535], "possest i know it by their pale and": [0, 65535], "i know it by their pale and deadly": [0, 65535], "know it by their pale and deadly lookes": [0, 65535], "it by their pale and deadly lookes they": [0, 65535], "by their pale and deadly lookes they must": [0, 65535], "their pale and deadly lookes they must be": [0, 65535], "pale and deadly lookes they must be bound": [0, 65535], "and deadly lookes they must be bound and": [0, 65535], "deadly lookes they must be bound and laide": [0, 65535], "lookes they must be bound and laide in": [0, 65535], "they must be bound and laide in some": [0, 65535], "must be bound and laide in some darke": [0, 65535], "be bound and laide in some darke roome": [0, 65535], "bound and laide in some darke roome ant": [0, 65535], "and laide in some darke roome ant say": [0, 65535], "laide in some darke roome ant say wherefore": [0, 65535], "in some darke roome ant say wherefore didst": [0, 65535], "some darke roome ant say wherefore didst thou": [0, 65535], "darke roome ant say wherefore didst thou locke": [0, 65535], "roome ant say wherefore didst thou locke me": [0, 65535], "ant say wherefore didst thou locke me forth": [0, 65535], "say wherefore didst thou locke me forth to": [0, 65535], "wherefore didst thou locke me forth to day": [0, 65535], "didst thou locke me forth to day and": [0, 65535], "thou locke me forth to day and why": [0, 65535], "locke me forth to day and why dost": [0, 65535], "me forth to day and why dost thou": [0, 65535], "forth to day and why dost thou denie": [0, 65535], "to day and why dost thou denie the": [0, 65535], "day and why dost thou denie the bagge": [0, 65535], "and why dost thou denie the bagge of": [0, 65535], "why dost thou denie the bagge of gold": [0, 65535], "dost thou denie the bagge of gold adr": [0, 65535], "thou denie the bagge of gold adr i": [0, 65535], "denie the bagge of gold adr i did": [0, 65535], "the bagge of gold adr i did not": [0, 65535], "bagge of gold adr i did not gentle": [0, 65535], "of gold adr i did not gentle husband": [0, 65535], "gold adr i did not gentle husband locke": [0, 65535], "adr i did not gentle husband locke thee": [0, 65535], "i did not gentle husband locke thee forth": [0, 65535], "did not gentle husband locke thee forth dro": [0, 65535], "not gentle husband locke thee forth dro and": [0, 65535], "gentle husband locke thee forth dro and gentle": [0, 65535], "husband locke thee forth dro and gentle mr": [0, 65535], "locke thee forth dro and gentle mr i": [0, 65535], "thee forth dro and gentle mr i receiu'd": [0, 65535], "forth dro and gentle mr i receiu'd no": [0, 65535], "dro and gentle mr i receiu'd no gold": [0, 65535], "and gentle mr i receiu'd no gold but": [0, 65535], "gentle mr i receiu'd no gold but i": [0, 65535], "mr i receiu'd no gold but i confesse": [0, 65535], "i receiu'd no gold but i confesse sir": [0, 65535], "receiu'd no gold but i confesse sir that": [0, 65535], "no gold but i confesse sir that we": [0, 65535], "gold but i confesse sir that we were": [0, 65535], "but i confesse sir that we were lock'd": [0, 65535], "i confesse sir that we were lock'd out": [0, 65535], "confesse sir that we were lock'd out adr": [0, 65535], "sir that we were lock'd out adr dissembling": [0, 65535], "that we were lock'd out adr dissembling villain": [0, 65535], "we were lock'd out adr dissembling villain thou": [0, 65535], "were lock'd out adr dissembling villain thou speak'st": [0, 65535], "lock'd out adr dissembling villain thou speak'st false": [0, 65535], "out adr dissembling villain thou speak'st false in": [0, 65535], "adr dissembling villain thou speak'st false in both": [0, 65535], "dissembling villain thou speak'st false in both ant": [0, 65535], "villain thou speak'st false in both ant dissembling": [0, 65535], "thou speak'st false in both ant dissembling harlot": [0, 65535], "speak'st false in both ant dissembling harlot thou": [0, 65535], "false in both ant dissembling harlot thou art": [0, 65535], "in both ant dissembling harlot thou art false": [0, 65535], "both ant dissembling harlot thou art false in": [0, 65535], "ant dissembling harlot thou art false in all": [0, 65535], "dissembling harlot thou art false in all and": [0, 65535], "harlot thou art false in all and art": [0, 65535], "thou art false in all and art confederate": [0, 65535], "art false in all and art confederate with": [0, 65535], "false in all and art confederate with a": [0, 65535], "in all and art confederate with a damned": [0, 65535], "all and art confederate with a damned packe": [0, 65535], "and art confederate with a damned packe to": [0, 65535], "art confederate with a damned packe to make": [0, 65535], "confederate with a damned packe to make a": [0, 65535], "with a damned packe to make a loathsome": [0, 65535], "a damned packe to make a loathsome abiect": [0, 65535], "damned packe to make a loathsome abiect scorne": [0, 65535], "packe to make a loathsome abiect scorne of": [0, 65535], "to make a loathsome abiect scorne of me": [0, 65535], "make a loathsome abiect scorne of me but": [0, 65535], "a loathsome abiect scorne of me but with": [0, 65535], "loathsome abiect scorne of me but with these": [0, 65535], "abiect scorne of me but with these nailes": [0, 65535], "scorne of me but with these nailes ile": [0, 65535], "of me but with these nailes ile plucke": [0, 65535], "me but with these nailes ile plucke out": [0, 65535], "but with these nailes ile plucke out these": [0, 65535], "with these nailes ile plucke out these false": [0, 65535], "these nailes ile plucke out these false eyes": [0, 65535], "nailes ile plucke out these false eyes that": [0, 65535], "ile plucke out these false eyes that would": [0, 65535], "plucke out these false eyes that would behold": [0, 65535], "out these false eyes that would behold in": [0, 65535], "these false eyes that would behold in me": [0, 65535], "false eyes that would behold in me this": [0, 65535], "eyes that would behold in me this shamefull": [0, 65535], "that would behold in me this shamefull sport": [0, 65535], "would behold in me this shamefull sport enter": [0, 65535], "behold in me this shamefull sport enter three": [0, 65535], "in me this shamefull sport enter three or": [0, 65535], "me this shamefull sport enter three or foure": [0, 65535], "this shamefull sport enter three or foure and": [0, 65535], "shamefull sport enter three or foure and offer": [0, 65535], "sport enter three or foure and offer to": [0, 65535], "enter three or foure and offer to binde": [0, 65535], "three or foure and offer to binde him": [0, 65535], "or foure and offer to binde him hee": [0, 65535], "foure and offer to binde him hee striues": [0, 65535], "and offer to binde him hee striues adr": [0, 65535], "offer to binde him hee striues adr oh": [0, 65535], "to binde him hee striues adr oh binde": [0, 65535], "binde him hee striues adr oh binde him": [0, 65535], "him hee striues adr oh binde him binde": [0, 65535], "hee striues adr oh binde him binde him": [0, 65535], "striues adr oh binde him binde him let": [0, 65535], "adr oh binde him binde him let him": [0, 65535], "oh binde him binde him let him not": [0, 65535], "binde him binde him let him not come": [0, 65535], "him binde him let him not come neere": [0, 65535], "binde him let him not come neere me": [0, 65535], "him let him not come neere me pinch": [0, 65535], "let him not come neere me pinch more": [0, 65535], "him not come neere me pinch more company": [0, 65535], "not come neere me pinch more company the": [0, 65535], "come neere me pinch more company the fiend": [0, 65535], "neere me pinch more company the fiend is": [0, 65535], "me pinch more company the fiend is strong": [0, 65535], "pinch more company the fiend is strong within": [0, 65535], "more company the fiend is strong within him": [0, 65535], "company the fiend is strong within him luc": [0, 65535], "the fiend is strong within him luc aye": [0, 65535], "fiend is strong within him luc aye me": [0, 65535], "is strong within him luc aye me poore": [0, 65535], "strong within him luc aye me poore man": [0, 65535], "within him luc aye me poore man how": [0, 65535], "him luc aye me poore man how pale": [0, 65535], "luc aye me poore man how pale and": [0, 65535], "aye me poore man how pale and wan": [0, 65535], "me poore man how pale and wan he": [0, 65535], "poore man how pale and wan he looks": [0, 65535], "man how pale and wan he looks ant": [0, 65535], "how pale and wan he looks ant what": [0, 65535], "pale and wan he looks ant what will": [0, 65535], "and wan he looks ant what will you": [0, 65535], "wan he looks ant what will you murther": [0, 65535], "he looks ant what will you murther me": [0, 65535], "looks ant what will you murther me thou": [0, 65535], "ant what will you murther me thou iailor": [0, 65535], "what will you murther me thou iailor thou": [0, 65535], "will you murther me thou iailor thou i": [0, 65535], "you murther me thou iailor thou i am": [0, 65535], "murther me thou iailor thou i am thy": [0, 65535], "me thou iailor thou i am thy prisoner": [0, 65535], "thou iailor thou i am thy prisoner wilt": [0, 65535], "iailor thou i am thy prisoner wilt thou": [0, 65535], "thou i am thy prisoner wilt thou suffer": [0, 65535], "i am thy prisoner wilt thou suffer them": [0, 65535], "am thy prisoner wilt thou suffer them to": [0, 65535], "thy prisoner wilt thou suffer them to make": [0, 65535], "prisoner wilt thou suffer them to make a": [0, 65535], "wilt thou suffer them to make a rescue": [0, 65535], "thou suffer them to make a rescue offi": [0, 65535], "suffer them to make a rescue offi masters": [0, 65535], "them to make a rescue offi masters let": [0, 65535], "to make a rescue offi masters let him": [0, 65535], "make a rescue offi masters let him go": [0, 65535], "a rescue offi masters let him go he": [0, 65535], "rescue offi masters let him go he is": [0, 65535], "offi masters let him go he is my": [0, 65535], "masters let him go he is my prisoner": [0, 65535], "let him go he is my prisoner and": [0, 65535], "him go he is my prisoner and you": [0, 65535], "go he is my prisoner and you shall": [0, 65535], "he is my prisoner and you shall not": [0, 65535], "is my prisoner and you shall not haue": [0, 65535], "my prisoner and you shall not haue him": [0, 65535], "prisoner and you shall not haue him pinch": [0, 65535], "and you shall not haue him pinch go": [0, 65535], "you shall not haue him pinch go binde": [0, 65535], "shall not haue him pinch go binde this": [0, 65535], "not haue him pinch go binde this man": [0, 65535], "haue him pinch go binde this man for": [0, 65535], "him pinch go binde this man for he": [0, 65535], "pinch go binde this man for he is": [0, 65535], "go binde this man for he is franticke": [0, 65535], "binde this man for he is franticke too": [0, 65535], "this man for he is franticke too adr": [0, 65535], "man for he is franticke too adr what": [0, 65535], "for he is franticke too adr what wilt": [0, 65535], "he is franticke too adr what wilt thou": [0, 65535], "is franticke too adr what wilt thou do": [0, 65535], "franticke too adr what wilt thou do thou": [0, 65535], "too adr what wilt thou do thou peeuish": [0, 65535], "adr what wilt thou do thou peeuish officer": [0, 65535], "what wilt thou do thou peeuish officer hast": [0, 65535], "wilt thou do thou peeuish officer hast thou": [0, 65535], "thou do thou peeuish officer hast thou delight": [0, 65535], "do thou peeuish officer hast thou delight to": [0, 65535], "thou peeuish officer hast thou delight to see": [0, 65535], "peeuish officer hast thou delight to see a": [0, 65535], "officer hast thou delight to see a wretched": [0, 65535], "hast thou delight to see a wretched man": [0, 65535], "thou delight to see a wretched man do": [0, 65535], "delight to see a wretched man do outrage": [0, 65535], "to see a wretched man do outrage and": [0, 65535], "see a wretched man do outrage and displeasure": [0, 65535], "a wretched man do outrage and displeasure to": [0, 65535], "wretched man do outrage and displeasure to himselfe": [0, 65535], "man do outrage and displeasure to himselfe offi": [0, 65535], "do outrage and displeasure to himselfe offi he": [0, 65535], "outrage and displeasure to himselfe offi he is": [0, 65535], "and displeasure to himselfe offi he is my": [0, 65535], "displeasure to himselfe offi he is my prisoner": [0, 65535], "to himselfe offi he is my prisoner if": [0, 65535], "himselfe offi he is my prisoner if i": [0, 65535], "offi he is my prisoner if i let": [0, 65535], "he is my prisoner if i let him": [0, 65535], "is my prisoner if i let him go": [0, 65535], "my prisoner if i let him go the": [0, 65535], "prisoner if i let him go the debt": [0, 65535], "if i let him go the debt he": [0, 65535], "i let him go the debt he owes": [0, 65535], "let him go the debt he owes will": [0, 65535], "him go the debt he owes will be": [0, 65535], "go the debt he owes will be requir'd": [0, 65535], "the debt he owes will be requir'd of": [0, 65535], "debt he owes will be requir'd of me": [0, 65535], "he owes will be requir'd of me adr": [0, 65535], "owes will be requir'd of me adr i": [0, 65535], "will be requir'd of me adr i will": [0, 65535], "be requir'd of me adr i will discharge": [0, 65535], "requir'd of me adr i will discharge thee": [0, 65535], "of me adr i will discharge thee ere": [0, 65535], "me adr i will discharge thee ere i": [0, 65535], "adr i will discharge thee ere i go": [0, 65535], "i will discharge thee ere i go from": [0, 65535], "will discharge thee ere i go from thee": [0, 65535], "discharge thee ere i go from thee beare": [0, 65535], "thee ere i go from thee beare me": [0, 65535], "ere i go from thee beare me forthwith": [0, 65535], "i go from thee beare me forthwith vnto": [0, 65535], "go from thee beare me forthwith vnto his": [0, 65535], "from thee beare me forthwith vnto his creditor": [0, 65535], "thee beare me forthwith vnto his creditor and": [0, 65535], "beare me forthwith vnto his creditor and knowing": [0, 65535], "me forthwith vnto his creditor and knowing how": [0, 65535], "forthwith vnto his creditor and knowing how the": [0, 65535], "vnto his creditor and knowing how the debt": [0, 65535], "his creditor and knowing how the debt growes": [0, 65535], "creditor and knowing how the debt growes i": [0, 65535], "and knowing how the debt growes i will": [0, 65535], "knowing how the debt growes i will pay": [0, 65535], "how the debt growes i will pay it": [0, 65535], "the debt growes i will pay it good": [0, 65535], "debt growes i will pay it good master": [0, 65535], "growes i will pay it good master doctor": [0, 65535], "i will pay it good master doctor see": [0, 65535], "will pay it good master doctor see him": [0, 65535], "pay it good master doctor see him safe": [0, 65535], "it good master doctor see him safe conuey'd": [0, 65535], "good master doctor see him safe conuey'd home": [0, 65535], "master doctor see him safe conuey'd home to": [0, 65535], "doctor see him safe conuey'd home to my": [0, 65535], "see him safe conuey'd home to my house": [0, 65535], "him safe conuey'd home to my house oh": [0, 65535], "safe conuey'd home to my house oh most": [0, 65535], "conuey'd home to my house oh most vnhappy": [0, 65535], "home to my house oh most vnhappy day": [0, 65535], "to my house oh most vnhappy day ant": [0, 65535], "my house oh most vnhappy day ant oh": [0, 65535], "house oh most vnhappy day ant oh most": [0, 65535], "oh most vnhappy day ant oh most vnhappie": [0, 65535], "most vnhappy day ant oh most vnhappie strumpet": [0, 65535], "vnhappy day ant oh most vnhappie strumpet dro": [0, 65535], "day ant oh most vnhappie strumpet dro master": [0, 65535], "ant oh most vnhappie strumpet dro master i": [0, 65535], "oh most vnhappie strumpet dro master i am": [0, 65535], "most vnhappie strumpet dro master i am heere": [0, 65535], "vnhappie strumpet dro master i am heere entred": [0, 65535], "strumpet dro master i am heere entred in": [0, 65535], "dro master i am heere entred in bond": [0, 65535], "master i am heere entred in bond for": [0, 65535], "i am heere entred in bond for you": [0, 65535], "am heere entred in bond for you ant": [0, 65535], "heere entred in bond for you ant out": [0, 65535], "entred in bond for you ant out on": [0, 65535], "in bond for you ant out on thee": [0, 65535], "bond for you ant out on thee villaine": [0, 65535], "for you ant out on thee villaine wherefore": [0, 65535], "you ant out on thee villaine wherefore dost": [0, 65535], "ant out on thee villaine wherefore dost thou": [0, 65535], "out on thee villaine wherefore dost thou mad": [0, 65535], "on thee villaine wherefore dost thou mad mee": [0, 65535], "thee villaine wherefore dost thou mad mee dro": [0, 65535], "villaine wherefore dost thou mad mee dro will": [0, 65535], "wherefore dost thou mad mee dro will you": [0, 65535], "dost thou mad mee dro will you be": [0, 65535], "thou mad mee dro will you be bound": [0, 65535], "mad mee dro will you be bound for": [0, 65535], "mee dro will you be bound for nothing": [0, 65535], "dro will you be bound for nothing be": [0, 65535], "will you be bound for nothing be mad": [0, 65535], "you be bound for nothing be mad good": [0, 65535], "be bound for nothing be mad good master": [0, 65535], "bound for nothing be mad good master cry": [0, 65535], "for nothing be mad good master cry the": [0, 65535], "nothing be mad good master cry the diuell": [0, 65535], "be mad good master cry the diuell luc": [0, 65535], "mad good master cry the diuell luc god": [0, 65535], "good master cry the diuell luc god helpe": [0, 65535], "master cry the diuell luc god helpe poore": [0, 65535], "cry the diuell luc god helpe poore soules": [0, 65535], "the diuell luc god helpe poore soules how": [0, 65535], "diuell luc god helpe poore soules how idlely": [0, 65535], "luc god helpe poore soules how idlely doe": [0, 65535], "god helpe poore soules how idlely doe they": [0, 65535], "helpe poore soules how idlely doe they talke": [0, 65535], "poore soules how idlely doe they talke adr": [0, 65535], "soules how idlely doe they talke adr go": [0, 65535], "how idlely doe they talke adr go beare": [0, 65535], "idlely doe they talke adr go beare him": [0, 65535], "doe they talke adr go beare him hence": [0, 65535], "they talke adr go beare him hence sister": [0, 65535], "talke adr go beare him hence sister go": [0, 65535], "adr go beare him hence sister go you": [0, 65535], "go beare him hence sister go you with": [0, 65535], "beare him hence sister go you with me": [0, 65535], "him hence sister go you with me say": [0, 65535], "hence sister go you with me say now": [0, 65535], "sister go you with me say now whose": [0, 65535], "go you with me say now whose suite": [0, 65535], "you with me say now whose suite is": [0, 65535], "with me say now whose suite is he": [0, 65535], "me say now whose suite is he arrested": [0, 65535], "say now whose suite is he arrested at": [0, 65535], "now whose suite is he arrested at exeunt": [0, 65535], "whose suite is he arrested at exeunt manet": [0, 65535], "suite is he arrested at exeunt manet offic": [0, 65535], "is he arrested at exeunt manet offic adri": [0, 65535], "he arrested at exeunt manet offic adri luci": [0, 65535], "arrested at exeunt manet offic adri luci courtizan": [0, 65535], "at exeunt manet offic adri luci courtizan off": [0, 65535], "exeunt manet offic adri luci courtizan off one": [0, 65535], "manet offic adri luci courtizan off one angelo": [0, 65535], "offic adri luci courtizan off one angelo a": [0, 65535], "adri luci courtizan off one angelo a goldsmith": [0, 65535], "luci courtizan off one angelo a goldsmith do": [0, 65535], "courtizan off one angelo a goldsmith do you": [0, 65535], "off one angelo a goldsmith do you know": [0, 65535], "one angelo a goldsmith do you know him": [0, 65535], "angelo a goldsmith do you know him adr": [0, 65535], "a goldsmith do you know him adr i": [0, 65535], "goldsmith do you know him adr i know": [0, 65535], "do you know him adr i know the": [0, 65535], "you know him adr i know the man": [0, 65535], "know him adr i know the man what": [0, 65535], "him adr i know the man what is": [0, 65535], "adr i know the man what is the": [0, 65535], "i know the man what is the summe": [0, 65535], "know the man what is the summe he": [0, 65535], "the man what is the summe he owes": [0, 65535], "man what is the summe he owes off": [0, 65535], "what is the summe he owes off two": [0, 65535], "is the summe he owes off two hundred": [0, 65535], "the summe he owes off two hundred duckets": [0, 65535], "summe he owes off two hundred duckets adr": [0, 65535], "he owes off two hundred duckets adr say": [0, 65535], "owes off two hundred duckets adr say how": [0, 65535], "off two hundred duckets adr say how growes": [0, 65535], "two hundred duckets adr say how growes it": [0, 65535], "hundred duckets adr say how growes it due": [0, 65535], "duckets adr say how growes it due off": [0, 65535], "adr say how growes it due off due": [0, 65535], "say how growes it due off due for": [0, 65535], "how growes it due off due for a": [0, 65535], "growes it due off due for a chaine": [0, 65535], "it due off due for a chaine your": [0, 65535], "due off due for a chaine your husband": [0, 65535], "off due for a chaine your husband had": [0, 65535], "due for a chaine your husband had of": [0, 65535], "for a chaine your husband had of him": [0, 65535], "a chaine your husband had of him adr": [0, 65535], "chaine your husband had of him adr he": [0, 65535], "your husband had of him adr he did": [0, 65535], "husband had of him adr he did bespeake": [0, 65535], "had of him adr he did bespeake a": [0, 65535], "of him adr he did bespeake a chain": [0, 65535], "him adr he did bespeake a chain for": [0, 65535], "adr he did bespeake a chain for me": [0, 65535], "he did bespeake a chain for me but": [0, 65535], "did bespeake a chain for me but had": [0, 65535], "bespeake a chain for me but had it": [0, 65535], "a chain for me but had it not": [0, 65535], "chain for me but had it not cur": [0, 65535], "for me but had it not cur when": [0, 65535], "me but had it not cur when as": [0, 65535], "but had it not cur when as your": [0, 65535], "had it not cur when as your husband": [0, 65535], "it not cur when as your husband all": [0, 65535], "not cur when as your husband all in": [0, 65535], "cur when as your husband all in rage": [0, 65535], "when as your husband all in rage to": [0, 65535], "as your husband all in rage to day": [0, 65535], "your husband all in rage to day came": [0, 65535], "husband all in rage to day came to": [0, 65535], "all in rage to day came to my": [0, 65535], "in rage to day came to my house": [0, 65535], "rage to day came to my house and": [0, 65535], "to day came to my house and tooke": [0, 65535], "day came to my house and tooke away": [0, 65535], "came to my house and tooke away my": [0, 65535], "to my house and tooke away my ring": [0, 65535], "my house and tooke away my ring the": [0, 65535], "house and tooke away my ring the ring": [0, 65535], "and tooke away my ring the ring i": [0, 65535], "tooke away my ring the ring i saw": [0, 65535], "away my ring the ring i saw vpon": [0, 65535], "my ring the ring i saw vpon his": [0, 65535], "ring the ring i saw vpon his finger": [0, 65535], "the ring i saw vpon his finger now": [0, 65535], "ring i saw vpon his finger now straight": [0, 65535], "i saw vpon his finger now straight after": [0, 65535], "saw vpon his finger now straight after did": [0, 65535], "vpon his finger now straight after did i": [0, 65535], "his finger now straight after did i meete": [0, 65535], "finger now straight after did i meete him": [0, 65535], "now straight after did i meete him with": [0, 65535], "straight after did i meete him with a": [0, 65535], "after did i meete him with a chaine": [0, 65535], "did i meete him with a chaine adr": [0, 65535], "i meete him with a chaine adr it": [0, 65535], "meete him with a chaine adr it may": [0, 65535], "him with a chaine adr it may be": [0, 65535], "with a chaine adr it may be so": [0, 65535], "a chaine adr it may be so but": [0, 65535], "chaine adr it may be so but i": [0, 65535], "adr it may be so but i did": [0, 65535], "it may be so but i did neuer": [0, 65535], "may be so but i did neuer see": [0, 65535], "be so but i did neuer see it": [0, 65535], "so but i did neuer see it come": [0, 65535], "but i did neuer see it come iailor": [0, 65535], "i did neuer see it come iailor bring": [0, 65535], "did neuer see it come iailor bring me": [0, 65535], "neuer see it come iailor bring me where": [0, 65535], "see it come iailor bring me where the": [0, 65535], "it come iailor bring me where the goldsmith": [0, 65535], "come iailor bring me where the goldsmith is": [0, 65535], "iailor bring me where the goldsmith is i": [0, 65535], "bring me where the goldsmith is i long": [0, 65535], "me where the goldsmith is i long to": [0, 65535], "where the goldsmith is i long to know": [0, 65535], "the goldsmith is i long to know the": [0, 65535], "goldsmith is i long to know the truth": [0, 65535], "is i long to know the truth heereof": [0, 65535], "i long to know the truth heereof at": [0, 65535], "long to know the truth heereof at large": [0, 65535], "to know the truth heereof at large enter": [0, 65535], "know the truth heereof at large enter antipholus": [0, 65535], "the truth heereof at large enter antipholus siracusia": [0, 65535], "truth heereof at large enter antipholus siracusia with": [0, 65535], "heereof at large enter antipholus siracusia with his": [0, 65535], "at large enter antipholus siracusia with his rapier": [0, 65535], "large enter antipholus siracusia with his rapier drawne": [0, 65535], "enter antipholus siracusia with his rapier drawne and": [0, 65535], "antipholus siracusia with his rapier drawne and dromio": [0, 65535], "siracusia with his rapier drawne and dromio sirac": [0, 65535], "with his rapier drawne and dromio sirac luc": [0, 65535], "his rapier drawne and dromio sirac luc god": [0, 65535], "rapier drawne and dromio sirac luc god for": [0, 65535], "drawne and dromio sirac luc god for thy": [0, 65535], "and dromio sirac luc god for thy mercy": [0, 65535], "dromio sirac luc god for thy mercy they": [0, 65535], "sirac luc god for thy mercy they are": [0, 65535], "luc god for thy mercy they are loose": [0, 65535], "god for thy mercy they are loose againe": [0, 65535], "for thy mercy they are loose againe adr": [0, 65535], "thy mercy they are loose againe adr and": [0, 65535], "mercy they are loose againe adr and come": [0, 65535], "they are loose againe adr and come with": [0, 65535], "are loose againe adr and come with naked": [0, 65535], "loose againe adr and come with naked swords": [0, 65535], "againe adr and come with naked swords let's": [0, 65535], "adr and come with naked swords let's call": [0, 65535], "and come with naked swords let's call more": [0, 65535], "come with naked swords let's call more helpe": [0, 65535], "with naked swords let's call more helpe to": [0, 65535], "naked swords let's call more helpe to haue": [0, 65535], "swords let's call more helpe to haue them": [0, 65535], "let's call more helpe to haue them bound": [0, 65535], "call more helpe to haue them bound againe": [0, 65535], "more helpe to haue them bound againe runne": [0, 65535], "helpe to haue them bound againe runne all": [0, 65535], "to haue them bound againe runne all out": [0, 65535], "haue them bound againe runne all out off": [0, 65535], "them bound againe runne all out off away": [0, 65535], "bound againe runne all out off away they'l": [0, 65535], "againe runne all out off away they'l kill": [0, 65535], "runne all out off away they'l kill vs": [0, 65535], "all out off away they'l kill vs exeunt": [0, 65535], "out off away they'l kill vs exeunt omnes": [0, 65535], "off away they'l kill vs exeunt omnes as": [0, 65535], "away they'l kill vs exeunt omnes as fast": [0, 65535], "they'l kill vs exeunt omnes as fast as": [0, 65535], "kill vs exeunt omnes as fast as may": [0, 65535], "vs exeunt omnes as fast as may be": [0, 65535], "exeunt omnes as fast as may be frighted": [0, 65535], "omnes as fast as may be frighted s": [0, 65535], "as fast as may be frighted s ant": [0, 65535], "fast as may be frighted s ant i": [0, 65535], "as may be frighted s ant i see": [0, 65535], "may be frighted s ant i see these": [0, 65535], "be frighted s ant i see these witches": [0, 65535], "frighted s ant i see these witches are": [0, 65535], "s ant i see these witches are affraid": [0, 65535], "ant i see these witches are affraid of": [0, 65535], "i see these witches are affraid of swords": [0, 65535], "see these witches are affraid of swords s": [0, 65535], "these witches are affraid of swords s dro": [0, 65535], "witches are affraid of swords s dro she": [0, 65535], "are affraid of swords s dro she that": [0, 65535], "affraid of swords s dro she that would": [0, 65535], "of swords s dro she that would be": [0, 65535], "swords s dro she that would be your": [0, 65535], "s dro she that would be your wife": [0, 65535], "dro she that would be your wife now": [0, 65535], "she that would be your wife now ran": [0, 65535], "that would be your wife now ran from": [0, 65535], "would be your wife now ran from you": [0, 65535], "be your wife now ran from you ant": [0, 65535], "your wife now ran from you ant come": [0, 65535], "wife now ran from you ant come to": [0, 65535], "now ran from you ant come to the": [0, 65535], "ran from you ant come to the centaur": [0, 65535], "from you ant come to the centaur fetch": [0, 65535], "you ant come to the centaur fetch our": [0, 65535], "ant come to the centaur fetch our stuffe": [0, 65535], "come to the centaur fetch our stuffe from": [0, 65535], "to the centaur fetch our stuffe from thence": [0, 65535], "the centaur fetch our stuffe from thence i": [0, 65535], "centaur fetch our stuffe from thence i long": [0, 65535], "fetch our stuffe from thence i long that": [0, 65535], "our stuffe from thence i long that we": [0, 65535], "stuffe from thence i long that we were": [0, 65535], "from thence i long that we were safe": [0, 65535], "thence i long that we were safe and": [0, 65535], "i long that we were safe and sound": [0, 65535], "long that we were safe and sound aboord": [0, 65535], "that we were safe and sound aboord dro": [0, 65535], "we were safe and sound aboord dro faith": [0, 65535], "were safe and sound aboord dro faith stay": [0, 65535], "safe and sound aboord dro faith stay heere": [0, 65535], "and sound aboord dro faith stay heere this": [0, 65535], "sound aboord dro faith stay heere this night": [0, 65535], "aboord dro faith stay heere this night they": [0, 65535], "dro faith stay heere this night they will": [0, 65535], "faith stay heere this night they will surely": [0, 65535], "stay heere this night they will surely do": [0, 65535], "heere this night they will surely do vs": [0, 65535], "this night they will surely do vs no": [0, 65535], "night they will surely do vs no harme": [0, 65535], "they will surely do vs no harme you": [0, 65535], "will surely do vs no harme you saw": [0, 65535], "surely do vs no harme you saw they": [0, 65535], "do vs no harme you saw they speake": [0, 65535], "vs no harme you saw they speake vs": [0, 65535], "no harme you saw they speake vs faire": [0, 65535], "harme you saw they speake vs faire giue": [0, 65535], "you saw they speake vs faire giue vs": [0, 65535], "saw they speake vs faire giue vs gold": [0, 65535], "they speake vs faire giue vs gold me": [0, 65535], "speake vs faire giue vs gold me thinkes": [0, 65535], "vs faire giue vs gold me thinkes they": [0, 65535], "faire giue vs gold me thinkes they are": [0, 65535], "giue vs gold me thinkes they are such": [0, 65535], "vs gold me thinkes they are such a": [0, 65535], "gold me thinkes they are such a gentle": [0, 65535], "me thinkes they are such a gentle nation": [0, 65535], "thinkes they are such a gentle nation that": [0, 65535], "they are such a gentle nation that but": [0, 65535], "are such a gentle nation that but for": [0, 65535], "such a gentle nation that but for the": [0, 65535], "a gentle nation that but for the mountaine": [0, 65535], "gentle nation that but for the mountaine of": [0, 65535], "nation that but for the mountaine of mad": [0, 65535], "that but for the mountaine of mad flesh": [0, 65535], "but for the mountaine of mad flesh that": [0, 65535], "for the mountaine of mad flesh that claimes": [0, 65535], "the mountaine of mad flesh that claimes mariage": [0, 65535], "mountaine of mad flesh that claimes mariage of": [0, 65535], "of mad flesh that claimes mariage of me": [0, 65535], "mad flesh that claimes mariage of me i": [0, 65535], "flesh that claimes mariage of me i could": [0, 65535], "that claimes mariage of me i could finde": [0, 65535], "claimes mariage of me i could finde in": [0, 65535], "mariage of me i could finde in my": [0, 65535], "of me i could finde in my heart": [0, 65535], "me i could finde in my heart to": [0, 65535], "i could finde in my heart to stay": [0, 65535], "could finde in my heart to stay heere": [0, 65535], "finde in my heart to stay heere still": [0, 65535], "in my heart to stay heere still and": [0, 65535], "my heart to stay heere still and turne": [0, 65535], "heart to stay heere still and turne witch": [0, 65535], "to stay heere still and turne witch ant": [0, 65535], "stay heere still and turne witch ant i": [0, 65535], "heere still and turne witch ant i will": [0, 65535], "still and turne witch ant i will not": [0, 65535], "and turne witch ant i will not stay": [0, 65535], "turne witch ant i will not stay to": [0, 65535], "witch ant i will not stay to night": [0, 65535], "ant i will not stay to night for": [0, 65535], "i will not stay to night for all": [0, 65535], "will not stay to night for all the": [0, 65535], "not stay to night for all the towne": [0, 65535], "stay to night for all the towne therefore": [0, 65535], "to night for all the towne therefore away": [0, 65535], "night for all the towne therefore away to": [0, 65535], "for all the towne therefore away to get": [0, 65535], "all the towne therefore away to get our": [0, 65535], "the towne therefore away to get our stuffe": [0, 65535], "towne therefore away to get our stuffe aboord": [0, 65535], "therefore away to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant goldsmith and": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith and an": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and an officer": [0, 65535], "prima enter a merchant goldsmith and an officer mar": [0, 65535], "enter a merchant goldsmith and an officer mar you": [0, 65535], "a merchant goldsmith and an officer mar you know": [0, 65535], "merchant goldsmith and an officer mar you know since": [0, 65535], "goldsmith and an officer mar you know since pentecost": [0, 65535], "and an officer mar you know since pentecost the": [0, 65535], "an officer mar you know since pentecost the sum": [0, 65535], "officer mar you know since pentecost the sum is": [0, 65535], "mar you know since pentecost the sum is due": [0, 65535], "you know since pentecost the sum is due and": [0, 65535], "know since pentecost the sum is due and since": [0, 65535], "since pentecost the sum is due and since i": [0, 65535], "pentecost the sum is due and since i haue": [0, 65535], "the sum is due and since i haue not": [0, 65535], "sum is due and since i haue not much": [0, 65535], "is due and since i haue not much importun'd": [0, 65535], "due and since i haue not much importun'd you": [0, 65535], "and since i haue not much importun'd you nor": [0, 65535], "since i haue not much importun'd you nor now": [0, 65535], "i haue not much importun'd you nor now i": [0, 65535], "haue not much importun'd you nor now i had": [0, 65535], "not much importun'd you nor now i had not": [0, 65535], "much importun'd you nor now i had not but": [0, 65535], "importun'd you nor now i had not but that": [0, 65535], "you nor now i had not but that i": [0, 65535], "nor now i had not but that i am": [0, 65535], "now i had not but that i am bound": [0, 65535], "i had not but that i am bound to": [0, 65535], "had not but that i am bound to persia": [0, 65535], "not but that i am bound to persia and": [0, 65535], "but that i am bound to persia and want": [0, 65535], "that i am bound to persia and want gilders": [0, 65535], "i am bound to persia and want gilders for": [0, 65535], "am bound to persia and want gilders for my": [0, 65535], "bound to persia and want gilders for my voyage": [0, 65535], "to persia and want gilders for my voyage therefore": [0, 65535], "persia and want gilders for my voyage therefore make": [0, 65535], "and want gilders for my voyage therefore make present": [0, 65535], "want gilders for my voyage therefore make present satisfaction": [0, 65535], "gilders for my voyage therefore make present satisfaction or": [0, 65535], "for my voyage therefore make present satisfaction or ile": [0, 65535], "my voyage therefore make present satisfaction or ile attach": [0, 65535], "voyage therefore make present satisfaction or ile attach you": [0, 65535], "therefore make present satisfaction or ile attach you by": [0, 65535], "make present satisfaction or ile attach you by this": [0, 65535], "present satisfaction or ile attach you by this officer": [0, 65535], "satisfaction or ile attach you by this officer gold": [0, 65535], "or ile attach you by this officer gold euen": [0, 65535], "ile attach you by this officer gold euen iust": [0, 65535], "attach you by this officer gold euen iust the": [0, 65535], "you by this officer gold euen iust the sum": [0, 65535], "by this officer gold euen iust the sum that": [0, 65535], "this officer gold euen iust the sum that i": [0, 65535], "officer gold euen iust the sum that i do": [0, 65535], "gold euen iust the sum that i do owe": [0, 65535], "euen iust the sum that i do owe to": [0, 65535], "iust the sum that i do owe to you": [0, 65535], "the sum that i do owe to you is": [0, 65535], "sum that i do owe to you is growing": [0, 65535], "that i do owe to you is growing to": [0, 65535], "i do owe to you is growing to me": [0, 65535], "do owe to you is growing to me by": [0, 65535], "owe to you is growing to me by antipholus": [0, 65535], "to you is growing to me by antipholus and": [0, 65535], "you is growing to me by antipholus and in": [0, 65535], "is growing to me by antipholus and in the": [0, 65535], "growing to me by antipholus and in the instant": [0, 65535], "to me by antipholus and in the instant that": [0, 65535], "me by antipholus and in the instant that i": [0, 65535], "by antipholus and in the instant that i met": [0, 65535], "antipholus and in the instant that i met with": [0, 65535], "and in the instant that i met with you": [0, 65535], "in the instant that i met with you he": [0, 65535], "the instant that i met with you he had": [0, 65535], "instant that i met with you he had of": [0, 65535], "that i met with you he had of me": [0, 65535], "i met with you he had of me a": [0, 65535], "met with you he had of me a chaine": [0, 65535], "with you he had of me a chaine at": [0, 65535], "you he had of me a chaine at fiue": [0, 65535], "he had of me a chaine at fiue a": [0, 65535], "had of me a chaine at fiue a clocke": [0, 65535], "of me a chaine at fiue a clocke i": [0, 65535], "me a chaine at fiue a clocke i shall": [0, 65535], "a chaine at fiue a clocke i shall receiue": [0, 65535], "chaine at fiue a clocke i shall receiue the": [0, 65535], "at fiue a clocke i shall receiue the money": [0, 65535], "fiue a clocke i shall receiue the money for": [0, 65535], "a clocke i shall receiue the money for the": [0, 65535], "clocke i shall receiue the money for the same": [0, 65535], "i shall receiue the money for the same pleaseth": [0, 65535], "shall receiue the money for the same pleaseth you": [0, 65535], "receiue the money for the same pleaseth you walke": [0, 65535], "the money for the same pleaseth you walke with": [0, 65535], "money for the same pleaseth you walke with me": [0, 65535], "for the same pleaseth you walke with me downe": [0, 65535], "the same pleaseth you walke with me downe to": [0, 65535], "same pleaseth you walke with me downe to his": [0, 65535], "pleaseth you walke with me downe to his house": [0, 65535], "you walke with me downe to his house i": [0, 65535], "walke with me downe to his house i will": [0, 65535], "with me downe to his house i will discharge": [0, 65535], "me downe to his house i will discharge my": [0, 65535], "downe to his house i will discharge my bond": [0, 65535], "to his house i will discharge my bond and": [0, 65535], "his house i will discharge my bond and thanke": [0, 65535], "house i will discharge my bond and thanke you": [0, 65535], "i will discharge my bond and thanke you too": [0, 65535], "will discharge my bond and thanke you too enter": [0, 65535], "discharge my bond and thanke you too enter antipholus": [0, 65535], "my bond and thanke you too enter antipholus ephes": [0, 65535], "bond and thanke you too enter antipholus ephes dromio": [0, 65535], "and thanke you too enter antipholus ephes dromio from": [0, 65535], "thanke you too enter antipholus ephes dromio from the": [0, 65535], "you too enter antipholus ephes dromio from the courtizans": [0, 65535], "too enter antipholus ephes dromio from the courtizans offi": [0, 65535], "enter antipholus ephes dromio from the courtizans offi that": [0, 65535], "antipholus ephes dromio from the courtizans offi that labour": [0, 65535], "ephes dromio from the courtizans offi that labour may": [0, 65535], "dromio from the courtizans offi that labour may you": [0, 65535], "from the courtizans offi that labour may you saue": [0, 65535], "the courtizans offi that labour may you saue see": [0, 65535], "courtizans offi that labour may you saue see where": [0, 65535], "offi that labour may you saue see where he": [0, 65535], "that labour may you saue see where he comes": [0, 65535], "labour may you saue see where he comes ant": [0, 65535], "may you saue see where he comes ant while": [0, 65535], "you saue see where he comes ant while i": [0, 65535], "saue see where he comes ant while i go": [0, 65535], "see where he comes ant while i go to": [0, 65535], "where he comes ant while i go to the": [0, 65535], "he comes ant while i go to the goldsmiths": [0, 65535], "comes ant while i go to the goldsmiths house": [0, 65535], "ant while i go to the goldsmiths house go": [0, 65535], "while i go to the goldsmiths house go thou": [0, 65535], "i go to the goldsmiths house go thou and": [0, 65535], "go to the goldsmiths house go thou and buy": [0, 65535], "to the goldsmiths house go thou and buy a": [0, 65535], "the goldsmiths house go thou and buy a ropes": [0, 65535], "goldsmiths house go thou and buy a ropes end": [0, 65535], "house go thou and buy a ropes end that": [0, 65535], "go thou and buy a ropes end that will": [0, 65535], "thou and buy a ropes end that will i": [0, 65535], "and buy a ropes end that will i bestow": [0, 65535], "buy a ropes end that will i bestow among": [0, 65535], "a ropes end that will i bestow among my": [0, 65535], "ropes end that will i bestow among my wife": [0, 65535], "end that will i bestow among my wife and": [0, 65535], "that will i bestow among my wife and their": [0, 65535], "will i bestow among my wife and their confederates": [0, 65535], "i bestow among my wife and their confederates for": [0, 65535], "bestow among my wife and their confederates for locking": [0, 65535], "among my wife and their confederates for locking me": [0, 65535], "my wife and their confederates for locking me out": [0, 65535], "wife and their confederates for locking me out of": [0, 65535], "and their confederates for locking me out of my": [0, 65535], "their confederates for locking me out of my doores": [0, 65535], "confederates for locking me out of my doores by": [0, 65535], "for locking me out of my doores by day": [0, 65535], "locking me out of my doores by day but": [0, 65535], "me out of my doores by day but soft": [0, 65535], "out of my doores by day but soft i": [0, 65535], "of my doores by day but soft i see": [0, 65535], "my doores by day but soft i see the": [0, 65535], "doores by day but soft i see the goldsmith": [0, 65535], "by day but soft i see the goldsmith get": [0, 65535], "day but soft i see the goldsmith get thee": [0, 65535], "but soft i see the goldsmith get thee gone": [0, 65535], "soft i see the goldsmith get thee gone buy": [0, 65535], "i see the goldsmith get thee gone buy thou": [0, 65535], "see the goldsmith get thee gone buy thou a": [0, 65535], "the goldsmith get thee gone buy thou a rope": [0, 65535], "goldsmith get thee gone buy thou a rope and": [0, 65535], "get thee gone buy thou a rope and bring": [0, 65535], "thee gone buy thou a rope and bring it": [0, 65535], "gone buy thou a rope and bring it home": [0, 65535], "buy thou a rope and bring it home to": [0, 65535], "thou a rope and bring it home to me": [0, 65535], "a rope and bring it home to me dro": [0, 65535], "rope and bring it home to me dro i": [0, 65535], "and bring it home to me dro i buy": [0, 65535], "bring it home to me dro i buy a": [0, 65535], "it home to me dro i buy a thousand": [0, 65535], "home to me dro i buy a thousand pound": [0, 65535], "to me dro i buy a thousand pound a": [0, 65535], "me dro i buy a thousand pound a yeare": [0, 65535], "dro i buy a thousand pound a yeare i": [0, 65535], "i buy a thousand pound a yeare i buy": [0, 65535], "buy a thousand pound a yeare i buy a": [0, 65535], "a thousand pound a yeare i buy a rope": [0, 65535], "thousand pound a yeare i buy a rope exit": [0, 65535], "pound a yeare i buy a rope exit dromio": [0, 65535], "a yeare i buy a rope exit dromio eph": [0, 65535], "yeare i buy a rope exit dromio eph ant": [0, 65535], "i buy a rope exit dromio eph ant a": [0, 65535], "buy a rope exit dromio eph ant a man": [0, 65535], "a rope exit dromio eph ant a man is": [0, 65535], "rope exit dromio eph ant a man is well": [0, 65535], "exit dromio eph ant a man is well holpe": [0, 65535], "dromio eph ant a man is well holpe vp": [0, 65535], "eph ant a man is well holpe vp that": [0, 65535], "ant a man is well holpe vp that trusts": [0, 65535], "a man is well holpe vp that trusts to": [0, 65535], "man is well holpe vp that trusts to you": [0, 65535], "is well holpe vp that trusts to you i": [0, 65535], "well holpe vp that trusts to you i promised": [0, 65535], "holpe vp that trusts to you i promised your": [0, 65535], "vp that trusts to you i promised your presence": [0, 65535], "that trusts to you i promised your presence and": [0, 65535], "trusts to you i promised your presence and the": [0, 65535], "to you i promised your presence and the chaine": [0, 65535], "you i promised your presence and the chaine but": [0, 65535], "i promised your presence and the chaine but neither": [0, 65535], "promised your presence and the chaine but neither chaine": [0, 65535], "your presence and the chaine but neither chaine nor": [0, 65535], "presence and the chaine but neither chaine nor goldsmith": [0, 65535], "and the chaine but neither chaine nor goldsmith came": [0, 65535], "the chaine but neither chaine nor goldsmith came to": [0, 65535], "chaine but neither chaine nor goldsmith came to me": [0, 65535], "but neither chaine nor goldsmith came to me belike": [0, 65535], "neither chaine nor goldsmith came to me belike you": [0, 65535], "chaine nor goldsmith came to me belike you thought": [0, 65535], "nor goldsmith came to me belike you thought our": [0, 65535], "goldsmith came to me belike you thought our loue": [0, 65535], "came to me belike you thought our loue would": [0, 65535], "to me belike you thought our loue would last": [0, 65535], "me belike you thought our loue would last too": [0, 65535], "belike you thought our loue would last too long": [0, 65535], "you thought our loue would last too long if": [0, 65535], "thought our loue would last too long if it": [0, 65535], "our loue would last too long if it were": [0, 65535], "loue would last too long if it were chain'd": [0, 65535], "would last too long if it were chain'd together": [0, 65535], "last too long if it were chain'd together and": [0, 65535], "too long if it were chain'd together and therefore": [0, 65535], "long if it were chain'd together and therefore came": [0, 65535], "if it were chain'd together and therefore came not": [0, 65535], "it were chain'd together and therefore came not gold": [0, 65535], "were chain'd together and therefore came not gold sauing": [0, 65535], "chain'd together and therefore came not gold sauing your": [0, 65535], "together and therefore came not gold sauing your merrie": [0, 65535], "and therefore came not gold sauing your merrie humor": [0, 65535], "therefore came not gold sauing your merrie humor here's": [0, 65535], "came not gold sauing your merrie humor here's the": [0, 65535], "not gold sauing your merrie humor here's the note": [0, 65535], "gold sauing your merrie humor here's the note how": [0, 65535], "sauing your merrie humor here's the note how much": [0, 65535], "your merrie humor here's the note how much your": [0, 65535], "merrie humor here's the note how much your chaine": [0, 65535], "humor here's the note how much your chaine weighs": [0, 65535], "here's the note how much your chaine weighs to": [0, 65535], "the note how much your chaine weighs to the": [0, 65535], "note how much your chaine weighs to the vtmost": [0, 65535], "how much your chaine weighs to the vtmost charect": [0, 65535], "much your chaine weighs to the vtmost charect the": [0, 65535], "your chaine weighs to the vtmost charect the finenesse": [0, 65535], "chaine weighs to the vtmost charect the finenesse of": [0, 65535], "weighs to the vtmost charect the finenesse of the": [0, 65535], "to the vtmost charect the finenesse of the gold": [0, 65535], "the vtmost charect the finenesse of the gold and": [0, 65535], "vtmost charect the finenesse of the gold and chargefull": [0, 65535], "charect the finenesse of the gold and chargefull fashion": [0, 65535], "the finenesse of the gold and chargefull fashion which": [0, 65535], "finenesse of the gold and chargefull fashion which doth": [0, 65535], "of the gold and chargefull fashion which doth amount": [0, 65535], "the gold and chargefull fashion which doth amount to": [0, 65535], "gold and chargefull fashion which doth amount to three": [0, 65535], "and chargefull fashion which doth amount to three odde": [0, 65535], "chargefull fashion which doth amount to three odde duckets": [0, 65535], "fashion which doth amount to three odde duckets more": [0, 65535], "which doth amount to three odde duckets more then": [0, 65535], "doth amount to three odde duckets more then i": [0, 65535], "amount to three odde duckets more then i stand": [0, 65535], "to three odde duckets more then i stand debted": [0, 65535], "three odde duckets more then i stand debted to": [0, 65535], "odde duckets more then i stand debted to this": [0, 65535], "duckets more then i stand debted to this gentleman": [0, 65535], "more then i stand debted to this gentleman i": [0, 65535], "then i stand debted to this gentleman i pray": [0, 65535], "i stand debted to this gentleman i pray you": [0, 65535], "stand debted to this gentleman i pray you see": [0, 65535], "debted to this gentleman i pray you see him": [0, 65535], "to this gentleman i pray you see him presently": [0, 65535], "this gentleman i pray you see him presently discharg'd": [0, 65535], "gentleman i pray you see him presently discharg'd for": [0, 65535], "i pray you see him presently discharg'd for he": [0, 65535], "pray you see him presently discharg'd for he is": [0, 65535], "you see him presently discharg'd for he is bound": [0, 65535], "see him presently discharg'd for he is bound to": [0, 65535], "him presently discharg'd for he is bound to sea": [0, 65535], "presently discharg'd for he is bound to sea and": [0, 65535], "discharg'd for he is bound to sea and stayes": [0, 65535], "for he is bound to sea and stayes but": [0, 65535], "he is bound to sea and stayes but for": [0, 65535], "is bound to sea and stayes but for it": [0, 65535], "bound to sea and stayes but for it anti": [0, 65535], "to sea and stayes but for it anti i": [0, 65535], "sea and stayes but for it anti i am": [0, 65535], "and stayes but for it anti i am not": [0, 65535], "stayes but for it anti i am not furnish'd": [0, 65535], "but for it anti i am not furnish'd with": [0, 65535], "for it anti i am not furnish'd with the": [0, 65535], "it anti i am not furnish'd with the present": [0, 65535], "anti i am not furnish'd with the present monie": [0, 65535], "i am not furnish'd with the present monie besides": [0, 65535], "am not furnish'd with the present monie besides i": [0, 65535], "not furnish'd with the present monie besides i haue": [0, 65535], "furnish'd with the present monie besides i haue some": [0, 65535], "with the present monie besides i haue some businesse": [0, 65535], "the present monie besides i haue some businesse in": [0, 65535], "present monie besides i haue some businesse in the": [0, 65535], "monie besides i haue some businesse in the towne": [0, 65535], "besides i haue some businesse in the towne good": [0, 65535], "i haue some businesse in the towne good signior": [0, 65535], "haue some businesse in the towne good signior take": [0, 65535], "some businesse in the towne good signior take the": [0, 65535], "businesse in the towne good signior take the stranger": [0, 65535], "in the towne good signior take the stranger to": [0, 65535], "the towne good signior take the stranger to my": [0, 65535], "towne good signior take the stranger to my house": [0, 65535], "good signior take the stranger to my house and": [0, 65535], "signior take the stranger to my house and with": [0, 65535], "take the stranger to my house and with you": [0, 65535], "the stranger to my house and with you take": [0, 65535], "stranger to my house and with you take the": [0, 65535], "to my house and with you take the chaine": [0, 65535], "my house and with you take the chaine and": [0, 65535], "house and with you take the chaine and bid": [0, 65535], "and with you take the chaine and bid my": [0, 65535], "with you take the chaine and bid my wife": [0, 65535], "you take the chaine and bid my wife disburse": [0, 65535], "take the chaine and bid my wife disburse the": [0, 65535], "the chaine and bid my wife disburse the summe": [0, 65535], "chaine and bid my wife disburse the summe on": [0, 65535], "and bid my wife disburse the summe on the": [0, 65535], "bid my wife disburse the summe on the receit": [0, 65535], "my wife disburse the summe on the receit thereof": [0, 65535], "wife disburse the summe on the receit thereof perchance": [0, 65535], "disburse the summe on the receit thereof perchance i": [0, 65535], "the summe on the receit thereof perchance i will": [0, 65535], "summe on the receit thereof perchance i will be": [0, 65535], "on the receit thereof perchance i will be there": [0, 65535], "the receit thereof perchance i will be there as": [0, 65535], "receit thereof perchance i will be there as soone": [0, 65535], "thereof perchance i will be there as soone as": [0, 65535], "perchance i will be there as soone as you": [0, 65535], "i will be there as soone as you gold": [0, 65535], "will be there as soone as you gold then": [0, 65535], "be there as soone as you gold then you": [0, 65535], "there as soone as you gold then you will": [0, 65535], "as soone as you gold then you will bring": [0, 65535], "soone as you gold then you will bring the": [0, 65535], "as you gold then you will bring the chaine": [0, 65535], "you gold then you will bring the chaine to": [0, 65535], "gold then you will bring the chaine to her": [0, 65535], "then you will bring the chaine to her your": [0, 65535], "you will bring the chaine to her your selfe": [0, 65535], "will bring the chaine to her your selfe anti": [0, 65535], "bring the chaine to her your selfe anti no": [0, 65535], "the chaine to her your selfe anti no beare": [0, 65535], "chaine to her your selfe anti no beare it": [0, 65535], "to her your selfe anti no beare it with": [0, 65535], "her your selfe anti no beare it with you": [0, 65535], "your selfe anti no beare it with you least": [0, 65535], "selfe anti no beare it with you least i": [0, 65535], "anti no beare it with you least i come": [0, 65535], "no beare it with you least i come not": [0, 65535], "beare it with you least i come not time": [0, 65535], "it with you least i come not time enough": [0, 65535], "with you least i come not time enough gold": [0, 65535], "you least i come not time enough gold well": [0, 65535], "least i come not time enough gold well sir": [0, 65535], "i come not time enough gold well sir i": [0, 65535], "come not time enough gold well sir i will": [0, 65535], "not time enough gold well sir i will haue": [0, 65535], "time enough gold well sir i will haue you": [0, 65535], "enough gold well sir i will haue you the": [0, 65535], "gold well sir i will haue you the chaine": [0, 65535], "well sir i will haue you the chaine about": [0, 65535], "sir i will haue you the chaine about you": [0, 65535], "i will haue you the chaine about you ant": [0, 65535], "will haue you the chaine about you ant and": [0, 65535], "haue you the chaine about you ant and if": [0, 65535], "you the chaine about you ant and if i": [0, 65535], "the chaine about you ant and if i haue": [0, 65535], "chaine about you ant and if i haue not": [0, 65535], "about you ant and if i haue not sir": [0, 65535], "you ant and if i haue not sir i": [0, 65535], "ant and if i haue not sir i hope": [0, 65535], "and if i haue not sir i hope you": [0, 65535], "if i haue not sir i hope you haue": [0, 65535], "i haue not sir i hope you haue or": [0, 65535], "haue not sir i hope you haue or else": [0, 65535], "not sir i hope you haue or else you": [0, 65535], "sir i hope you haue or else you may": [0, 65535], "i hope you haue or else you may returne": [0, 65535], "hope you haue or else you may returne without": [0, 65535], "you haue or else you may returne without your": [0, 65535], "haue or else you may returne without your money": [0, 65535], "or else you may returne without your money gold": [0, 65535], "else you may returne without your money gold nay": [0, 65535], "you may returne without your money gold nay come": [0, 65535], "may returne without your money gold nay come i": [0, 65535], "returne without your money gold nay come i pray": [0, 65535], "without your money gold nay come i pray you": [0, 65535], "your money gold nay come i pray you sir": [0, 65535], "money gold nay come i pray you sir giue": [0, 65535], "gold nay come i pray you sir giue me": [0, 65535], "nay come i pray you sir giue me the": [0, 65535], "come i pray you sir giue me the chaine": [0, 65535], "i pray you sir giue me the chaine both": [0, 65535], "pray you sir giue me the chaine both winde": [0, 65535], "you sir giue me the chaine both winde and": [0, 65535], "sir giue me the chaine both winde and tide": [0, 65535], "giue me the chaine both winde and tide stayes": [0, 65535], "me the chaine both winde and tide stayes for": [0, 65535], "the chaine both winde and tide stayes for this": [0, 65535], "chaine both winde and tide stayes for this gentleman": [0, 65535], "both winde and tide stayes for this gentleman and": [0, 65535], "winde and tide stayes for this gentleman and i": [0, 65535], "and tide stayes for this gentleman and i too": [0, 65535], "tide stayes for this gentleman and i too blame": [0, 65535], "stayes for this gentleman and i too blame haue": [0, 65535], "for this gentleman and i too blame haue held": [0, 65535], "this gentleman and i too blame haue held him": [0, 65535], "gentleman and i too blame haue held him heere": [0, 65535], "and i too blame haue held him heere too": [0, 65535], "i too blame haue held him heere too long": [0, 65535], "too blame haue held him heere too long anti": [0, 65535], "blame haue held him heere too long anti good": [0, 65535], "haue held him heere too long anti good lord": [0, 65535], "held him heere too long anti good lord you": [0, 65535], "him heere too long anti good lord you vse": [0, 65535], "heere too long anti good lord you vse this": [0, 65535], "too long anti good lord you vse this dalliance": [0, 65535], "long anti good lord you vse this dalliance to": [0, 65535], "anti good lord you vse this dalliance to excuse": [0, 65535], "good lord you vse this dalliance to excuse your": [0, 65535], "lord you vse this dalliance to excuse your breach": [0, 65535], "you vse this dalliance to excuse your breach of": [0, 65535], "vse this dalliance to excuse your breach of promise": [0, 65535], "this dalliance to excuse your breach of promise to": [0, 65535], "dalliance to excuse your breach of promise to the": [0, 65535], "to excuse your breach of promise to the porpentine": [0, 65535], "excuse your breach of promise to the porpentine i": [0, 65535], "your breach of promise to the porpentine i should": [0, 65535], "breach of promise to the porpentine i should haue": [0, 65535], "of promise to the porpentine i should haue chid": [0, 65535], "promise to the porpentine i should haue chid you": [0, 65535], "to the porpentine i should haue chid you for": [0, 65535], "the porpentine i should haue chid you for not": [0, 65535], "porpentine i should haue chid you for not bringing": [0, 65535], "i should haue chid you for not bringing it": [0, 65535], "should haue chid you for not bringing it but": [0, 65535], "haue chid you for not bringing it but like": [0, 65535], "chid you for not bringing it but like a": [0, 65535], "you for not bringing it but like a shrew": [0, 65535], "for not bringing it but like a shrew you": [0, 65535], "not bringing it but like a shrew you first": [0, 65535], "bringing it but like a shrew you first begin": [0, 65535], "it but like a shrew you first begin to": [0, 65535], "but like a shrew you first begin to brawle": [0, 65535], "like a shrew you first begin to brawle mar": [0, 65535], "a shrew you first begin to brawle mar the": [0, 65535], "shrew you first begin to brawle mar the houre": [0, 65535], "you first begin to brawle mar the houre steales": [0, 65535], "first begin to brawle mar the houre steales on": [0, 65535], "begin to brawle mar the houre steales on i": [0, 65535], "to brawle mar the houre steales on i pray": [0, 65535], "brawle mar the houre steales on i pray you": [0, 65535], "mar the houre steales on i pray you sir": [0, 65535], "the houre steales on i pray you sir dispatch": [0, 65535], "houre steales on i pray you sir dispatch gold": [0, 65535], "steales on i pray you sir dispatch gold you": [0, 65535], "on i pray you sir dispatch gold you heare": [0, 65535], "i pray you sir dispatch gold you heare how": [0, 65535], "pray you sir dispatch gold you heare how he": [0, 65535], "you sir dispatch gold you heare how he importunes": [0, 65535], "sir dispatch gold you heare how he importunes me": [0, 65535], "dispatch gold you heare how he importunes me the": [0, 65535], "gold you heare how he importunes me the chaine": [0, 65535], "you heare how he importunes me the chaine ant": [0, 65535], "heare how he importunes me the chaine ant why": [0, 65535], "how he importunes me the chaine ant why giue": [0, 65535], "he importunes me the chaine ant why giue it": [0, 65535], "importunes me the chaine ant why giue it to": [0, 65535], "me the chaine ant why giue it to my": [0, 65535], "the chaine ant why giue it to my wife": [0, 65535], "chaine ant why giue it to my wife and": [0, 65535], "ant why giue it to my wife and fetch": [0, 65535], "why giue it to my wife and fetch your": [0, 65535], "giue it to my wife and fetch your mony": [0, 65535], "it to my wife and fetch your mony gold": [0, 65535], "to my wife and fetch your mony gold come": [0, 65535], "my wife and fetch your mony gold come come": [0, 65535], "wife and fetch your mony gold come come you": [0, 65535], "and fetch your mony gold come come you know": [0, 65535], "fetch your mony gold come come you know i": [0, 65535], "your mony gold come come you know i gaue": [0, 65535], "mony gold come come you know i gaue it": [0, 65535], "gold come come you know i gaue it you": [0, 65535], "come come you know i gaue it you euen": [0, 65535], "come you know i gaue it you euen now": [0, 65535], "you know i gaue it you euen now either": [0, 65535], "know i gaue it you euen now either send": [0, 65535], "i gaue it you euen now either send the": [0, 65535], "gaue it you euen now either send the chaine": [0, 65535], "it you euen now either send the chaine or": [0, 65535], "you euen now either send the chaine or send": [0, 65535], "euen now either send the chaine or send me": [0, 65535], "now either send the chaine or send me by": [0, 65535], "either send the chaine or send me by some": [0, 65535], "send the chaine or send me by some token": [0, 65535], "the chaine or send me by some token ant": [0, 65535], "chaine or send me by some token ant fie": [0, 65535], "or send me by some token ant fie now": [0, 65535], "send me by some token ant fie now you": [0, 65535], "me by some token ant fie now you run": [0, 65535], "by some token ant fie now you run this": [0, 65535], "some token ant fie now you run this humor": [0, 65535], "token ant fie now you run this humor out": [0, 65535], "ant fie now you run this humor out of": [0, 65535], "fie now you run this humor out of breath": [0, 65535], "now you run this humor out of breath come": [0, 65535], "you run this humor out of breath come where's": [0, 65535], "run this humor out of breath come where's the": [0, 65535], "this humor out of breath come where's the chaine": [0, 65535], "humor out of breath come where's the chaine i": [0, 65535], "out of breath come where's the chaine i pray": [0, 65535], "of breath come where's the chaine i pray you": [0, 65535], "breath come where's the chaine i pray you let": [0, 65535], "come where's the chaine i pray you let me": [0, 65535], "where's the chaine i pray you let me see": [0, 65535], "the chaine i pray you let me see it": [0, 65535], "chaine i pray you let me see it mar": [0, 65535], "i pray you let me see it mar my": [0, 65535], "pray you let me see it mar my businesse": [0, 65535], "you let me see it mar my businesse cannot": [0, 65535], "let me see it mar my businesse cannot brooke": [0, 65535], "me see it mar my businesse cannot brooke this": [0, 65535], "see it mar my businesse cannot brooke this dalliance": [0, 65535], "it mar my businesse cannot brooke this dalliance good": [0, 65535], "mar my businesse cannot brooke this dalliance good sir": [0, 65535], "my businesse cannot brooke this dalliance good sir say": [0, 65535], "businesse cannot brooke this dalliance good sir say whe'r": [0, 65535], "cannot brooke this dalliance good sir say whe'r you'l": [0, 65535], "brooke this dalliance good sir say whe'r you'l answer": [0, 65535], "this dalliance good sir say whe'r you'l answer me": [0, 65535], "dalliance good sir say whe'r you'l answer me or": [0, 65535], "good sir say whe'r you'l answer me or no": [0, 65535], "sir say whe'r you'l answer me or no if": [0, 65535], "say whe'r you'l answer me or no if not": [0, 65535], "whe'r you'l answer me or no if not ile": [0, 65535], "you'l answer me or no if not ile leaue": [0, 65535], "answer me or no if not ile leaue him": [0, 65535], "me or no if not ile leaue him to": [0, 65535], "or no if not ile leaue him to the": [0, 65535], "no if not ile leaue him to the officer": [0, 65535], "if not ile leaue him to the officer ant": [0, 65535], "not ile leaue him to the officer ant i": [0, 65535], "ile leaue him to the officer ant i answer": [0, 65535], "leaue him to the officer ant i answer you": [0, 65535], "him to the officer ant i answer you what": [0, 65535], "to the officer ant i answer you what should": [0, 65535], "the officer ant i answer you what should i": [0, 65535], "officer ant i answer you what should i answer": [0, 65535], "ant i answer you what should i answer you": [0, 65535], "i answer you what should i answer you gold": [0, 65535], "answer you what should i answer you gold the": [0, 65535], "you what should i answer you gold the monie": [0, 65535], "what should i answer you gold the monie that": [0, 65535], "should i answer you gold the monie that you": [0, 65535], "i answer you gold the monie that you owe": [0, 65535], "answer you gold the monie that you owe me": [0, 65535], "you gold the monie that you owe me for": [0, 65535], "gold the monie that you owe me for the": [0, 65535], "the monie that you owe me for the chaine": [0, 65535], "monie that you owe me for the chaine ant": [0, 65535], "that you owe me for the chaine ant i": [0, 65535], "you owe me for the chaine ant i owe": [0, 65535], "owe me for the chaine ant i owe you": [0, 65535], "me for the chaine ant i owe you none": [0, 65535], "for the chaine ant i owe you none till": [0, 65535], "the chaine ant i owe you none till i": [0, 65535], "chaine ant i owe you none till i receiue": [0, 65535], "ant i owe you none till i receiue the": [0, 65535], "i owe you none till i receiue the chaine": [0, 65535], "owe you none till i receiue the chaine gold": [0, 65535], "you none till i receiue the chaine gold you": [0, 65535], "none till i receiue the chaine gold you know": [0, 65535], "till i receiue the chaine gold you know i": [0, 65535], "i receiue the chaine gold you know i gaue": [0, 65535], "receiue the chaine gold you know i gaue it": [0, 65535], "the chaine gold you know i gaue it you": [0, 65535], "chaine gold you know i gaue it you halfe": [0, 65535], "gold you know i gaue it you halfe an": [0, 65535], "you know i gaue it you halfe an houre": [0, 65535], "know i gaue it you halfe an houre since": [0, 65535], "i gaue it you halfe an houre since ant": [0, 65535], "gaue it you halfe an houre since ant you": [0, 65535], "it you halfe an houre since ant you gaue": [0, 65535], "you halfe an houre since ant you gaue me": [0, 65535], "halfe an houre since ant you gaue me none": [0, 65535], "an houre since ant you gaue me none you": [0, 65535], "houre since ant you gaue me none you wrong": [0, 65535], "since ant you gaue me none you wrong mee": [0, 65535], "ant you gaue me none you wrong mee much": [0, 65535], "you gaue me none you wrong mee much to": [0, 65535], "gaue me none you wrong mee much to say": [0, 65535], "me none you wrong mee much to say so": [0, 65535], "none you wrong mee much to say so gold": [0, 65535], "you wrong mee much to say so gold you": [0, 65535], "wrong mee much to say so gold you wrong": [0, 65535], "mee much to say so gold you wrong me": [0, 65535], "much to say so gold you wrong me more": [0, 65535], "to say so gold you wrong me more sir": [0, 65535], "say so gold you wrong me more sir in": [0, 65535], "so gold you wrong me more sir in denying": [0, 65535], "gold you wrong me more sir in denying it": [0, 65535], "you wrong me more sir in denying it consider": [0, 65535], "wrong me more sir in denying it consider how": [0, 65535], "me more sir in denying it consider how it": [0, 65535], "more sir in denying it consider how it stands": [0, 65535], "sir in denying it consider how it stands vpon": [0, 65535], "in denying it consider how it stands vpon my": [0, 65535], "denying it consider how it stands vpon my credit": [0, 65535], "it consider how it stands vpon my credit mar": [0, 65535], "consider how it stands vpon my credit mar well": [0, 65535], "how it stands vpon my credit mar well officer": [0, 65535], "it stands vpon my credit mar well officer arrest": [0, 65535], "stands vpon my credit mar well officer arrest him": [0, 65535], "vpon my credit mar well officer arrest him at": [0, 65535], "my credit mar well officer arrest him at my": [0, 65535], "credit mar well officer arrest him at my suite": [0, 65535], "mar well officer arrest him at my suite offi": [0, 65535], "well officer arrest him at my suite offi i": [0, 65535], "officer arrest him at my suite offi i do": [0, 65535], "arrest him at my suite offi i do and": [0, 65535], "him at my suite offi i do and charge": [0, 65535], "at my suite offi i do and charge you": [0, 65535], "my suite offi i do and charge you in": [0, 65535], "suite offi i do and charge you in the": [0, 65535], "offi i do and charge you in the dukes": [0, 65535], "i do and charge you in the dukes name": [0, 65535], "do and charge you in the dukes name to": [0, 65535], "and charge you in the dukes name to obey": [0, 65535], "charge you in the dukes name to obey me": [0, 65535], "you in the dukes name to obey me gold": [0, 65535], "in the dukes name to obey me gold this": [0, 65535], "the dukes name to obey me gold this touches": [0, 65535], "dukes name to obey me gold this touches me": [0, 65535], "name to obey me gold this touches me in": [0, 65535], "to obey me gold this touches me in reputation": [0, 65535], "obey me gold this touches me in reputation either": [0, 65535], "me gold this touches me in reputation either consent": [0, 65535], "gold this touches me in reputation either consent to": [0, 65535], "this touches me in reputation either consent to pay": [0, 65535], "touches me in reputation either consent to pay this": [0, 65535], "me in reputation either consent to pay this sum": [0, 65535], "in reputation either consent to pay this sum for": [0, 65535], "reputation either consent to pay this sum for me": [0, 65535], "either consent to pay this sum for me or": [0, 65535], "consent to pay this sum for me or i": [0, 65535], "to pay this sum for me or i attach": [0, 65535], "pay this sum for me or i attach you": [0, 65535], "this sum for me or i attach you by": [0, 65535], "sum for me or i attach you by this": [0, 65535], "for me or i attach you by this officer": [0, 65535], "me or i attach you by this officer ant": [0, 65535], "or i attach you by this officer ant consent": [0, 65535], "i attach you by this officer ant consent to": [0, 65535], "attach you by this officer ant consent to pay": [0, 65535], "you by this officer ant consent to pay thee": [0, 65535], "by this officer ant consent to pay thee that": [0, 65535], "this officer ant consent to pay thee that i": [0, 65535], "officer ant consent to pay thee that i neuer": [0, 65535], "ant consent to pay thee that i neuer had": [0, 65535], "consent to pay thee that i neuer had arrest": [0, 65535], "to pay thee that i neuer had arrest me": [0, 65535], "pay thee that i neuer had arrest me foolish": [0, 65535], "thee that i neuer had arrest me foolish fellow": [0, 65535], "that i neuer had arrest me foolish fellow if": [0, 65535], "i neuer had arrest me foolish fellow if thou": [0, 65535], "neuer had arrest me foolish fellow if thou dar'st": [0, 65535], "had arrest me foolish fellow if thou dar'st gold": [0, 65535], "arrest me foolish fellow if thou dar'st gold heere": [0, 65535], "me foolish fellow if thou dar'st gold heere is": [0, 65535], "foolish fellow if thou dar'st gold heere is thy": [0, 65535], "fellow if thou dar'st gold heere is thy fee": [0, 65535], "if thou dar'st gold heere is thy fee arrest": [0, 65535], "thou dar'st gold heere is thy fee arrest him": [0, 65535], "dar'st gold heere is thy fee arrest him officer": [0, 65535], "gold heere is thy fee arrest him officer i": [0, 65535], "heere is thy fee arrest him officer i would": [0, 65535], "is thy fee arrest him officer i would not": [0, 65535], "thy fee arrest him officer i would not spare": [0, 65535], "fee arrest him officer i would not spare my": [0, 65535], "arrest him officer i would not spare my brother": [0, 65535], "him officer i would not spare my brother in": [0, 65535], "officer i would not spare my brother in this": [0, 65535], "i would not spare my brother in this case": [0, 65535], "would not spare my brother in this case if": [0, 65535], "not spare my brother in this case if he": [0, 65535], "spare my brother in this case if he should": [0, 65535], "my brother in this case if he should scorne": [0, 65535], "brother in this case if he should scorne me": [0, 65535], "in this case if he should scorne me so": [0, 65535], "this case if he should scorne me so apparantly": [0, 65535], "case if he should scorne me so apparantly offic": [0, 65535], "if he should scorne me so apparantly offic i": [0, 65535], "he should scorne me so apparantly offic i do": [0, 65535], "should scorne me so apparantly offic i do arrest": [0, 65535], "scorne me so apparantly offic i do arrest you": [0, 65535], "me so apparantly offic i do arrest you sir": [0, 65535], "so apparantly offic i do arrest you sir you": [0, 65535], "apparantly offic i do arrest you sir you heare": [0, 65535], "offic i do arrest you sir you heare the": [0, 65535], "i do arrest you sir you heare the suite": [0, 65535], "do arrest you sir you heare the suite ant": [0, 65535], "arrest you sir you heare the suite ant i": [0, 65535], "you sir you heare the suite ant i do": [0, 65535], "sir you heare the suite ant i do obey": [0, 65535], "you heare the suite ant i do obey thee": [0, 65535], "heare the suite ant i do obey thee till": [0, 65535], "the suite ant i do obey thee till i": [0, 65535], "suite ant i do obey thee till i giue": [0, 65535], "ant i do obey thee till i giue thee": [0, 65535], "i do obey thee till i giue thee baile": [0, 65535], "do obey thee till i giue thee baile but": [0, 65535], "obey thee till i giue thee baile but sirrah": [0, 65535], "thee till i giue thee baile but sirrah you": [0, 65535], "till i giue thee baile but sirrah you shall": [0, 65535], "i giue thee baile but sirrah you shall buy": [0, 65535], "giue thee baile but sirrah you shall buy this": [0, 65535], "thee baile but sirrah you shall buy this sport": [0, 65535], "baile but sirrah you shall buy this sport as": [0, 65535], "but sirrah you shall buy this sport as deere": [0, 65535], "sirrah you shall buy this sport as deere as": [0, 65535], "you shall buy this sport as deere as all": [0, 65535], "shall buy this sport as deere as all the": [0, 65535], "buy this sport as deere as all the mettall": [0, 65535], "this sport as deere as all the mettall in": [0, 65535], "sport as deere as all the mettall in your": [0, 65535], "as deere as all the mettall in your shop": [0, 65535], "deere as all the mettall in your shop will": [0, 65535], "as all the mettall in your shop will answer": [0, 65535], "all the mettall in your shop will answer gold": [0, 65535], "the mettall in your shop will answer gold sir": [0, 65535], "mettall in your shop will answer gold sir sir": [0, 65535], "in your shop will answer gold sir sir i": [0, 65535], "your shop will answer gold sir sir i shall": [0, 65535], "shop will answer gold sir sir i shall haue": [0, 65535], "will answer gold sir sir i shall haue law": [0, 65535], "answer gold sir sir i shall haue law in": [0, 65535], "gold sir sir i shall haue law in ephesus": [0, 65535], "sir sir i shall haue law in ephesus to": [0, 65535], "sir i shall haue law in ephesus to your": [0, 65535], "i shall haue law in ephesus to your notorious": [0, 65535], "shall haue law in ephesus to your notorious shame": [0, 65535], "haue law in ephesus to your notorious shame i": [0, 65535], "law in ephesus to your notorious shame i doubt": [0, 65535], "in ephesus to your notorious shame i doubt it": [0, 65535], "ephesus to your notorious shame i doubt it not": [0, 65535], "to your notorious shame i doubt it not enter": [0, 65535], "your notorious shame i doubt it not enter dromio": [0, 65535], "notorious shame i doubt it not enter dromio sira": [0, 65535], "shame i doubt it not enter dromio sira from": [0, 65535], "i doubt it not enter dromio sira from the": [0, 65535], "doubt it not enter dromio sira from the bay": [0, 65535], "it not enter dromio sira from the bay dro": [0, 65535], "not enter dromio sira from the bay dro master": [0, 65535], "enter dromio sira from the bay dro master there's": [0, 65535], "dromio sira from the bay dro master there's a": [0, 65535], "sira from the bay dro master there's a barke": [0, 65535], "from the bay dro master there's a barke of": [0, 65535], "the bay dro master there's a barke of epidamium": [0, 65535], "bay dro master there's a barke of epidamium that": [0, 65535], "dro master there's a barke of epidamium that staies": [0, 65535], "master there's a barke of epidamium that staies but": [0, 65535], "there's a barke of epidamium that staies but till": [0, 65535], "a barke of epidamium that staies but till her": [0, 65535], "barke of epidamium that staies but till her owner": [0, 65535], "of epidamium that staies but till her owner comes": [0, 65535], "epidamium that staies but till her owner comes aboord": [0, 65535], "that staies but till her owner comes aboord and": [0, 65535], "staies but till her owner comes aboord and then": [0, 65535], "but till her owner comes aboord and then sir": [0, 65535], "till her owner comes aboord and then sir she": [0, 65535], "her owner comes aboord and then sir she beares": [0, 65535], "owner comes aboord and then sir she beares away": [0, 65535], "comes aboord and then sir she beares away our": [0, 65535], "aboord and then sir she beares away our fraughtage": [0, 65535], "and then sir she beares away our fraughtage sir": [0, 65535], "then sir she beares away our fraughtage sir i": [0, 65535], "sir she beares away our fraughtage sir i haue": [0, 65535], "she beares away our fraughtage sir i haue conuei'd": [0, 65535], "beares away our fraughtage sir i haue conuei'd aboord": [0, 65535], "away our fraughtage sir i haue conuei'd aboord and": [0, 65535], "our fraughtage sir i haue conuei'd aboord and i": [0, 65535], "fraughtage sir i haue conuei'd aboord and i haue": [0, 65535], "sir i haue conuei'd aboord and i haue bought": [0, 65535], "i haue conuei'd aboord and i haue bought the": [0, 65535], "haue conuei'd aboord and i haue bought the oyle": [0, 65535], "conuei'd aboord and i haue bought the oyle the": [0, 65535], "aboord and i haue bought the oyle the balsamum": [0, 65535], "and i haue bought the oyle the balsamum and": [0, 65535], "i haue bought the oyle the balsamum and aqua": [0, 65535], "haue bought the oyle the balsamum and aqua vit\u00e6": [0, 65535], "bought the oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "the oyle the balsamum and aqua vit\u00e6 the ship": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the ship is": [0, 65535], "the balsamum and aqua vit\u00e6 the ship is in": [0, 65535], "balsamum and aqua vit\u00e6 the ship is in her": [0, 65535], "and aqua vit\u00e6 the ship is in her trim": [0, 65535], "aqua vit\u00e6 the ship is in her trim the": [0, 65535], "vit\u00e6 the ship is in her trim the merrie": [0, 65535], "the ship is in her trim the merrie winde": [0, 65535], "ship is in her trim the merrie winde blowes": [0, 65535], "is in her trim the merrie winde blowes faire": [0, 65535], "in her trim the merrie winde blowes faire from": [0, 65535], "her trim the merrie winde blowes faire from land": [0, 65535], "trim the merrie winde blowes faire from land they": [0, 65535], "the merrie winde blowes faire from land they stay": [0, 65535], "merrie winde blowes faire from land they stay for": [0, 65535], "winde blowes faire from land they stay for nought": [0, 65535], "blowes faire from land they stay for nought at": [0, 65535], "faire from land they stay for nought at all": [0, 65535], "from land they stay for nought at all but": [0, 65535], "land they stay for nought at all but for": [0, 65535], "they stay for nought at all but for their": [0, 65535], "stay for nought at all but for their owner": [0, 65535], "for nought at all but for their owner master": [0, 65535], "nought at all but for their owner master and": [0, 65535], "at all but for their owner master and your": [0, 65535], "all but for their owner master and your selfe": [0, 65535], "but for their owner master and your selfe an": [0, 65535], "for their owner master and your selfe an how": [0, 65535], "their owner master and your selfe an how now": [0, 65535], "owner master and your selfe an how now a": [0, 65535], "master and your selfe an how now a madman": [0, 65535], "and your selfe an how now a madman why": [0, 65535], "your selfe an how now a madman why thou": [0, 65535], "selfe an how now a madman why thou peeuish": [0, 65535], "an how now a madman why thou peeuish sheep": [0, 65535], "how now a madman why thou peeuish sheep what": [0, 65535], "now a madman why thou peeuish sheep what ship": [0, 65535], "a madman why thou peeuish sheep what ship of": [0, 65535], "madman why thou peeuish sheep what ship of epidamium": [0, 65535], "why thou peeuish sheep what ship of epidamium staies": [0, 65535], "thou peeuish sheep what ship of epidamium staies for": [0, 65535], "peeuish sheep what ship of epidamium staies for me": [0, 65535], "sheep what ship of epidamium staies for me s": [0, 65535], "what ship of epidamium staies for me s dro": [0, 65535], "ship of epidamium staies for me s dro a": [0, 65535], "of epidamium staies for me s dro a ship": [0, 65535], "epidamium staies for me s dro a ship you": [0, 65535], "staies for me s dro a ship you sent": [0, 65535], "for me s dro a ship you sent me": [0, 65535], "me s dro a ship you sent me too": [0, 65535], "s dro a ship you sent me too to": [0, 65535], "dro a ship you sent me too to hier": [0, 65535], "a ship you sent me too to hier waftage": [0, 65535], "ship you sent me too to hier waftage ant": [0, 65535], "you sent me too to hier waftage ant thou": [0, 65535], "sent me too to hier waftage ant thou drunken": [0, 65535], "me too to hier waftage ant thou drunken slaue": [0, 65535], "too to hier waftage ant thou drunken slaue i": [0, 65535], "to hier waftage ant thou drunken slaue i sent": [0, 65535], "hier waftage ant thou drunken slaue i sent thee": [0, 65535], "waftage ant thou drunken slaue i sent thee for": [0, 65535], "ant thou drunken slaue i sent thee for a": [0, 65535], "thou drunken slaue i sent thee for a rope": [0, 65535], "drunken slaue i sent thee for a rope and": [0, 65535], "slaue i sent thee for a rope and told": [0, 65535], "i sent thee for a rope and told thee": [0, 65535], "sent thee for a rope and told thee to": [0, 65535], "thee for a rope and told thee to what": [0, 65535], "for a rope and told thee to what purpose": [0, 65535], "a rope and told thee to what purpose and": [0, 65535], "rope and told thee to what purpose and what": [0, 65535], "and told thee to what purpose and what end": [0, 65535], "told thee to what purpose and what end s": [0, 65535], "thee to what purpose and what end s dro": [0, 65535], "to what purpose and what end s dro you": [0, 65535], "what purpose and what end s dro you sent": [0, 65535], "purpose and what end s dro you sent me": [0, 65535], "and what end s dro you sent me for": [0, 65535], "what end s dro you sent me for a": [0, 65535], "end s dro you sent me for a ropes": [0, 65535], "s dro you sent me for a ropes end": [0, 65535], "dro you sent me for a ropes end as": [0, 65535], "you sent me for a ropes end as soone": [0, 65535], "sent me for a ropes end as soone you": [0, 65535], "me for a ropes end as soone you sent": [0, 65535], "for a ropes end as soone you sent me": [0, 65535], "a ropes end as soone you sent me to": [0, 65535], "ropes end as soone you sent me to the": [0, 65535], "end as soone you sent me to the bay": [0, 65535], "as soone you sent me to the bay sir": [0, 65535], "soone you sent me to the bay sir for": [0, 65535], "you sent me to the bay sir for a": [0, 65535], "sent me to the bay sir for a barke": [0, 65535], "me to the bay sir for a barke ant": [0, 65535], "to the bay sir for a barke ant i": [0, 65535], "the bay sir for a barke ant i will": [0, 65535], "bay sir for a barke ant i will debate": [0, 65535], "sir for a barke ant i will debate this": [0, 65535], "for a barke ant i will debate this matter": [0, 65535], "a barke ant i will debate this matter at": [0, 65535], "barke ant i will debate this matter at more": [0, 65535], "ant i will debate this matter at more leisure": [0, 65535], "i will debate this matter at more leisure and": [0, 65535], "will debate this matter at more leisure and teach": [0, 65535], "debate this matter at more leisure and teach your": [0, 65535], "this matter at more leisure and teach your eares": [0, 65535], "matter at more leisure and teach your eares to": [0, 65535], "at more leisure and teach your eares to list": [0, 65535], "more leisure and teach your eares to list me": [0, 65535], "leisure and teach your eares to list me with": [0, 65535], "and teach your eares to list me with more": [0, 65535], "teach your eares to list me with more heede": [0, 65535], "your eares to list me with more heede to": [0, 65535], "eares to list me with more heede to adriana": [0, 65535], "to list me with more heede to adriana villaine": [0, 65535], "list me with more heede to adriana villaine hie": [0, 65535], "me with more heede to adriana villaine hie thee": [0, 65535], "with more heede to adriana villaine hie thee straight": [0, 65535], "more heede to adriana villaine hie thee straight giue": [0, 65535], "heede to adriana villaine hie thee straight giue her": [0, 65535], "to adriana villaine hie thee straight giue her this": [0, 65535], "adriana villaine hie thee straight giue her this key": [0, 65535], "villaine hie thee straight giue her this key and": [0, 65535], "hie thee straight giue her this key and tell": [0, 65535], "thee straight giue her this key and tell her": [0, 65535], "straight giue her this key and tell her in": [0, 65535], "giue her this key and tell her in the": [0, 65535], "her this key and tell her in the deske": [0, 65535], "this key and tell her in the deske that's": [0, 65535], "key and tell her in the deske that's couer'd": [0, 65535], "and tell her in the deske that's couer'd o're": [0, 65535], "tell her in the deske that's couer'd o're with": [0, 65535], "her in the deske that's couer'd o're with turkish": [0, 65535], "in the deske that's couer'd o're with turkish tapistrie": [0, 65535], "the deske that's couer'd o're with turkish tapistrie there": [0, 65535], "deske that's couer'd o're with turkish tapistrie there is": [0, 65535], "that's couer'd o're with turkish tapistrie there is a": [0, 65535], "couer'd o're with turkish tapistrie there is a purse": [0, 65535], "o're with turkish tapistrie there is a purse of": [0, 65535], "with turkish tapistrie there is a purse of duckets": [0, 65535], "turkish tapistrie there is a purse of duckets let": [0, 65535], "tapistrie there is a purse of duckets let her": [0, 65535], "there is a purse of duckets let her send": [0, 65535], "is a purse of duckets let her send it": [0, 65535], "a purse of duckets let her send it tell": [0, 65535], "purse of duckets let her send it tell her": [0, 65535], "of duckets let her send it tell her i": [0, 65535], "duckets let her send it tell her i am": [0, 65535], "let her send it tell her i am arrested": [0, 65535], "her send it tell her i am arrested in": [0, 65535], "send it tell her i am arrested in the": [0, 65535], "it tell her i am arrested in the streete": [0, 65535], "tell her i am arrested in the streete and": [0, 65535], "her i am arrested in the streete and that": [0, 65535], "i am arrested in the streete and that shall": [0, 65535], "am arrested in the streete and that shall baile": [0, 65535], "arrested in the streete and that shall baile me": [0, 65535], "in the streete and that shall baile me hie": [0, 65535], "the streete and that shall baile me hie thee": [0, 65535], "streete and that shall baile me hie thee slaue": [0, 65535], "and that shall baile me hie thee slaue be": [0, 65535], "that shall baile me hie thee slaue be gone": [0, 65535], "shall baile me hie thee slaue be gone on": [0, 65535], "baile me hie thee slaue be gone on officer": [0, 65535], "me hie thee slaue be gone on officer to": [0, 65535], "hie thee slaue be gone on officer to prison": [0, 65535], "thee slaue be gone on officer to prison till": [0, 65535], "slaue be gone on officer to prison till it": [0, 65535], "be gone on officer to prison till it come": [0, 65535], "gone on officer to prison till it come exeunt": [0, 65535], "on officer to prison till it come exeunt s": [0, 65535], "officer to prison till it come exeunt s dromio": [0, 65535], "to prison till it come exeunt s dromio to": [0, 65535], "prison till it come exeunt s dromio to adriana": [0, 65535], "till it come exeunt s dromio to adriana that": [0, 65535], "it come exeunt s dromio to adriana that is": [0, 65535], "come exeunt s dromio to adriana that is where": [0, 65535], "exeunt s dromio to adriana that is where we": [0, 65535], "s dromio to adriana that is where we din'd": [0, 65535], "dromio to adriana that is where we din'd where": [0, 65535], "to adriana that is where we din'd where dowsabell": [0, 65535], "adriana that is where we din'd where dowsabell did": [0, 65535], "that is where we din'd where dowsabell did claime": [0, 65535], "is where we din'd where dowsabell did claime me": [0, 65535], "where we din'd where dowsabell did claime me for": [0, 65535], "we din'd where dowsabell did claime me for her": [0, 65535], "din'd where dowsabell did claime me for her husband": [0, 65535], "where dowsabell did claime me for her husband she": [0, 65535], "dowsabell did claime me for her husband she is": [0, 65535], "did claime me for her husband she is too": [0, 65535], "claime me for her husband she is too bigge": [0, 65535], "me for her husband she is too bigge i": [0, 65535], "for her husband she is too bigge i hope": [0, 65535], "her husband she is too bigge i hope for": [0, 65535], "husband she is too bigge i hope for me": [0, 65535], "she is too bigge i hope for me to": [0, 65535], "is too bigge i hope for me to compasse": [0, 65535], "too bigge i hope for me to compasse thither": [0, 65535], "bigge i hope for me to compasse thither i": [0, 65535], "i hope for me to compasse thither i must": [0, 65535], "hope for me to compasse thither i must although": [0, 65535], "for me to compasse thither i must although against": [0, 65535], "me to compasse thither i must although against my": [0, 65535], "to compasse thither i must although against my will": [0, 65535], "compasse thither i must although against my will for": [0, 65535], "thither i must although against my will for seruants": [0, 65535], "i must although against my will for seruants must": [0, 65535], "must although against my will for seruants must their": [0, 65535], "although against my will for seruants must their masters": [0, 65535], "against my will for seruants must their masters mindes": [0, 65535], "my will for seruants must their masters mindes fulfill": [0, 65535], "will for seruants must their masters mindes fulfill exit": [0, 65535], "for seruants must their masters mindes fulfill exit enter": [0, 65535], "seruants must their masters mindes fulfill exit enter adriana": [0, 65535], "must their masters mindes fulfill exit enter adriana and": [0, 65535], "their masters mindes fulfill exit enter adriana and luciana": [0, 65535], "masters mindes fulfill exit enter adriana and luciana adr": [0, 65535], "mindes fulfill exit enter adriana and luciana adr ah": [0, 65535], "fulfill exit enter adriana and luciana adr ah luciana": [0, 65535], "exit enter adriana and luciana adr ah luciana did": [0, 65535], "enter adriana and luciana adr ah luciana did he": [0, 65535], "adriana and luciana adr ah luciana did he tempt": [0, 65535], "and luciana adr ah luciana did he tempt thee": [0, 65535], "luciana adr ah luciana did he tempt thee so": [0, 65535], "adr ah luciana did he tempt thee so might'st": [0, 65535], "ah luciana did he tempt thee so might'st thou": [0, 65535], "luciana did he tempt thee so might'st thou perceiue": [0, 65535], "did he tempt thee so might'st thou perceiue austeerely": [0, 65535], "he tempt thee so might'st thou perceiue austeerely in": [0, 65535], "tempt thee so might'st thou perceiue austeerely in his": [0, 65535], "thee so might'st thou perceiue austeerely in his eie": [0, 65535], "so might'st thou perceiue austeerely in his eie that": [0, 65535], "might'st thou perceiue austeerely in his eie that he": [0, 65535], "thou perceiue austeerely in his eie that he did": [0, 65535], "perceiue austeerely in his eie that he did plead": [0, 65535], "austeerely in his eie that he did plead in": [0, 65535], "in his eie that he did plead in earnest": [0, 65535], "his eie that he did plead in earnest yea": [0, 65535], "eie that he did plead in earnest yea or": [0, 65535], "that he did plead in earnest yea or no": [0, 65535], "he did plead in earnest yea or no look'd": [0, 65535], "did plead in earnest yea or no look'd he": [0, 65535], "plead in earnest yea or no look'd he or": [0, 65535], "in earnest yea or no look'd he or red": [0, 65535], "earnest yea or no look'd he or red or": [0, 65535], "yea or no look'd he or red or pale": [0, 65535], "or no look'd he or red or pale or": [0, 65535], "no look'd he or red or pale or sad": [0, 65535], "look'd he or red or pale or sad or": [0, 65535], "he or red or pale or sad or merrily": [0, 65535], "or red or pale or sad or merrily what": [0, 65535], "red or pale or sad or merrily what obseruation": [0, 65535], "or pale or sad or merrily what obseruation mad'st": [0, 65535], "pale or sad or merrily what obseruation mad'st thou": [0, 65535], "or sad or merrily what obseruation mad'st thou in": [0, 65535], "sad or merrily what obseruation mad'st thou in this": [0, 65535], "or merrily what obseruation mad'st thou in this case": [0, 65535], "merrily what obseruation mad'st thou in this case oh": [0, 65535], "what obseruation mad'st thou in this case oh his": [0, 65535], "obseruation mad'st thou in this case oh his hearts": [0, 65535], "mad'st thou in this case oh his hearts meteors": [0, 65535], "thou in this case oh his hearts meteors tilting": [0, 65535], "in this case oh his hearts meteors tilting in": [0, 65535], "this case oh his hearts meteors tilting in his": [0, 65535], "case oh his hearts meteors tilting in his face": [0, 65535], "oh his hearts meteors tilting in his face luc": [0, 65535], "his hearts meteors tilting in his face luc first": [0, 65535], "hearts meteors tilting in his face luc first he": [0, 65535], "meteors tilting in his face luc first he deni'de": [0, 65535], "tilting in his face luc first he deni'de you": [0, 65535], "in his face luc first he deni'de you had": [0, 65535], "his face luc first he deni'de you had in": [0, 65535], "face luc first he deni'de you had in him": [0, 65535], "luc first he deni'de you had in him no": [0, 65535], "first he deni'de you had in him no right": [0, 65535], "he deni'de you had in him no right adr": [0, 65535], "deni'de you had in him no right adr he": [0, 65535], "you had in him no right adr he meant": [0, 65535], "had in him no right adr he meant he": [0, 65535], "in him no right adr he meant he did": [0, 65535], "him no right adr he meant he did me": [0, 65535], "no right adr he meant he did me none": [0, 65535], "right adr he meant he did me none the": [0, 65535], "adr he meant he did me none the more": [0, 65535], "he meant he did me none the more my": [0, 65535], "meant he did me none the more my spight": [0, 65535], "he did me none the more my spight luc": [0, 65535], "did me none the more my spight luc then": [0, 65535], "me none the more my spight luc then swore": [0, 65535], "none the more my spight luc then swore he": [0, 65535], "the more my spight luc then swore he that": [0, 65535], "more my spight luc then swore he that he": [0, 65535], "my spight luc then swore he that he was": [0, 65535], "spight luc then swore he that he was a": [0, 65535], "luc then swore he that he was a stranger": [0, 65535], "then swore he that he was a stranger heere": [0, 65535], "swore he that he was a stranger heere adr": [0, 65535], "he that he was a stranger heere adr and": [0, 65535], "that he was a stranger heere adr and true": [0, 65535], "he was a stranger heere adr and true he": [0, 65535], "was a stranger heere adr and true he swore": [0, 65535], "a stranger heere adr and true he swore though": [0, 65535], "stranger heere adr and true he swore though yet": [0, 65535], "heere adr and true he swore though yet forsworne": [0, 65535], "adr and true he swore though yet forsworne hee": [0, 65535], "and true he swore though yet forsworne hee were": [0, 65535], "true he swore though yet forsworne hee were luc": [0, 65535], "he swore though yet forsworne hee were luc then": [0, 65535], "swore though yet forsworne hee were luc then pleaded": [0, 65535], "though yet forsworne hee were luc then pleaded i": [0, 65535], "yet forsworne hee were luc then pleaded i for": [0, 65535], "forsworne hee were luc then pleaded i for you": [0, 65535], "hee were luc then pleaded i for you adr": [0, 65535], "were luc then pleaded i for you adr and": [0, 65535], "luc then pleaded i for you adr and what": [0, 65535], "then pleaded i for you adr and what said": [0, 65535], "pleaded i for you adr and what said he": [0, 65535], "i for you adr and what said he luc": [0, 65535], "for you adr and what said he luc that": [0, 65535], "you adr and what said he luc that loue": [0, 65535], "adr and what said he luc that loue i": [0, 65535], "and what said he luc that loue i begg'd": [0, 65535], "what said he luc that loue i begg'd for": [0, 65535], "said he luc that loue i begg'd for you": [0, 65535], "he luc that loue i begg'd for you he": [0, 65535], "luc that loue i begg'd for you he begg'd": [0, 65535], "that loue i begg'd for you he begg'd of": [0, 65535], "loue i begg'd for you he begg'd of me": [0, 65535], "i begg'd for you he begg'd of me adr": [0, 65535], "begg'd for you he begg'd of me adr with": [0, 65535], "for you he begg'd of me adr with what": [0, 65535], "you he begg'd of me adr with what perswasion": [0, 65535], "he begg'd of me adr with what perswasion did": [0, 65535], "begg'd of me adr with what perswasion did he": [0, 65535], "of me adr with what perswasion did he tempt": [0, 65535], "me adr with what perswasion did he tempt thy": [0, 65535], "adr with what perswasion did he tempt thy loue": [0, 65535], "with what perswasion did he tempt thy loue luc": [0, 65535], "what perswasion did he tempt thy loue luc with": [0, 65535], "perswasion did he tempt thy loue luc with words": [0, 65535], "did he tempt thy loue luc with words that": [0, 65535], "he tempt thy loue luc with words that in": [0, 65535], "tempt thy loue luc with words that in an": [0, 65535], "thy loue luc with words that in an honest": [0, 65535], "loue luc with words that in an honest suit": [0, 65535], "luc with words that in an honest suit might": [0, 65535], "with words that in an honest suit might moue": [0, 65535], "words that in an honest suit might moue first": [0, 65535], "that in an honest suit might moue first he": [0, 65535], "in an honest suit might moue first he did": [0, 65535], "an honest suit might moue first he did praise": [0, 65535], "honest suit might moue first he did praise my": [0, 65535], "suit might moue first he did praise my beautie": [0, 65535], "might moue first he did praise my beautie then": [0, 65535], "moue first he did praise my beautie then my": [0, 65535], "first he did praise my beautie then my speech": [0, 65535], "he did praise my beautie then my speech adr": [0, 65535], "did praise my beautie then my speech adr did'st": [0, 65535], "praise my beautie then my speech adr did'st speake": [0, 65535], "my beautie then my speech adr did'st speake him": [0, 65535], "beautie then my speech adr did'st speake him faire": [0, 65535], "then my speech adr did'st speake him faire luc": [0, 65535], "my speech adr did'st speake him faire luc haue": [0, 65535], "speech adr did'st speake him faire luc haue patience": [0, 65535], "adr did'st speake him faire luc haue patience i": [0, 65535], "did'st speake him faire luc haue patience i beseech": [0, 65535], "speake him faire luc haue patience i beseech adr": [0, 65535], "him faire luc haue patience i beseech adr i": [0, 65535], "faire luc haue patience i beseech adr i cannot": [0, 65535], "luc haue patience i beseech adr i cannot nor": [0, 65535], "haue patience i beseech adr i cannot nor i": [0, 65535], "patience i beseech adr i cannot nor i will": [0, 65535], "i beseech adr i cannot nor i will not": [0, 65535], "beseech adr i cannot nor i will not hold": [0, 65535], "adr i cannot nor i will not hold me": [0, 65535], "i cannot nor i will not hold me still": [0, 65535], "cannot nor i will not hold me still my": [0, 65535], "nor i will not hold me still my tongue": [0, 65535], "i will not hold me still my tongue though": [0, 65535], "will not hold me still my tongue though not": [0, 65535], "not hold me still my tongue though not my": [0, 65535], "hold me still my tongue though not my heart": [0, 65535], "me still my tongue though not my heart shall": [0, 65535], "still my tongue though not my heart shall haue": [0, 65535], "my tongue though not my heart shall haue his": [0, 65535], "tongue though not my heart shall haue his will": [0, 65535], "though not my heart shall haue his will he": [0, 65535], "not my heart shall haue his will he is": [0, 65535], "my heart shall haue his will he is deformed": [0, 65535], "heart shall haue his will he is deformed crooked": [0, 65535], "shall haue his will he is deformed crooked old": [0, 65535], "haue his will he is deformed crooked old and": [0, 65535], "his will he is deformed crooked old and sere": [0, 65535], "will he is deformed crooked old and sere ill": [0, 65535], "he is deformed crooked old and sere ill fac'd": [0, 65535], "is deformed crooked old and sere ill fac'd worse": [0, 65535], "deformed crooked old and sere ill fac'd worse bodied": [0, 65535], "crooked old and sere ill fac'd worse bodied shapelesse": [0, 65535], "old and sere ill fac'd worse bodied shapelesse euery": [0, 65535], "and sere ill fac'd worse bodied shapelesse euery where": [0, 65535], "sere ill fac'd worse bodied shapelesse euery where vicious": [0, 65535], "ill fac'd worse bodied shapelesse euery where vicious vngentle": [0, 65535], "fac'd worse bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "worse bodied shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making worse in": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse in minde": [0, 65535], "blunt vnkinde stigmaticall in making worse in minde luc": [0, 65535], "vnkinde stigmaticall in making worse in minde luc who": [0, 65535], "stigmaticall in making worse in minde luc who would": [0, 65535], "in making worse in minde luc who would be": [0, 65535], "making worse in minde luc who would be iealous": [0, 65535], "worse in minde luc who would be iealous then": [0, 65535], "in minde luc who would be iealous then of": [0, 65535], "minde luc who would be iealous then of such": [0, 65535], "luc who would be iealous then of such a": [0, 65535], "who would be iealous then of such a one": [0, 65535], "would be iealous then of such a one no": [0, 65535], "be iealous then of such a one no euill": [0, 65535], "iealous then of such a one no euill lost": [0, 65535], "then of such a one no euill lost is": [0, 65535], "of such a one no euill lost is wail'd": [0, 65535], "such a one no euill lost is wail'd when": [0, 65535], "a one no euill lost is wail'd when it": [0, 65535], "one no euill lost is wail'd when it is": [0, 65535], "no euill lost is wail'd when it is gone": [0, 65535], "euill lost is wail'd when it is gone adr": [0, 65535], "lost is wail'd when it is gone adr ah": [0, 65535], "is wail'd when it is gone adr ah but": [0, 65535], "wail'd when it is gone adr ah but i": [0, 65535], "when it is gone adr ah but i thinke": [0, 65535], "it is gone adr ah but i thinke him": [0, 65535], "is gone adr ah but i thinke him better": [0, 65535], "gone adr ah but i thinke him better then": [0, 65535], "adr ah but i thinke him better then i": [0, 65535], "ah but i thinke him better then i say": [0, 65535], "but i thinke him better then i say and": [0, 65535], "i thinke him better then i say and yet": [0, 65535], "thinke him better then i say and yet would": [0, 65535], "him better then i say and yet would herein": [0, 65535], "better then i say and yet would herein others": [0, 65535], "then i say and yet would herein others eies": [0, 65535], "i say and yet would herein others eies were": [0, 65535], "say and yet would herein others eies were worse": [0, 65535], "and yet would herein others eies were worse farre": [0, 65535], "yet would herein others eies were worse farre from": [0, 65535], "would herein others eies were worse farre from her": [0, 65535], "herein others eies were worse farre from her nest": [0, 65535], "others eies were worse farre from her nest the": [0, 65535], "eies were worse farre from her nest the lapwing": [0, 65535], "were worse farre from her nest the lapwing cries": [0, 65535], "worse farre from her nest the lapwing cries away": [0, 65535], "farre from her nest the lapwing cries away my": [0, 65535], "from her nest the lapwing cries away my heart": [0, 65535], "her nest the lapwing cries away my heart praies": [0, 65535], "nest the lapwing cries away my heart praies for": [0, 65535], "the lapwing cries away my heart praies for him": [0, 65535], "lapwing cries away my heart praies for him though": [0, 65535], "cries away my heart praies for him though my": [0, 65535], "away my heart praies for him though my tongue": [0, 65535], "my heart praies for him though my tongue doe": [0, 65535], "heart praies for him though my tongue doe curse": [0, 65535], "praies for him though my tongue doe curse enter": [0, 65535], "for him though my tongue doe curse enter s": [0, 65535], "him though my tongue doe curse enter s dromio": [0, 65535], "though my tongue doe curse enter s dromio dro": [0, 65535], "my tongue doe curse enter s dromio dro here": [0, 65535], "tongue doe curse enter s dromio dro here goe": [0, 65535], "doe curse enter s dromio dro here goe the": [0, 65535], "curse enter s dromio dro here goe the deske": [0, 65535], "enter s dromio dro here goe the deske the": [0, 65535], "s dromio dro here goe the deske the purse": [0, 65535], "dromio dro here goe the deske the purse sweet": [0, 65535], "dro here goe the deske the purse sweet now": [0, 65535], "here goe the deske the purse sweet now make": [0, 65535], "goe the deske the purse sweet now make haste": [0, 65535], "the deske the purse sweet now make haste luc": [0, 65535], "deske the purse sweet now make haste luc how": [0, 65535], "the purse sweet now make haste luc how hast": [0, 65535], "purse sweet now make haste luc how hast thou": [0, 65535], "sweet now make haste luc how hast thou lost": [0, 65535], "now make haste luc how hast thou lost thy": [0, 65535], "make haste luc how hast thou lost thy breath": [0, 65535], "haste luc how hast thou lost thy breath s": [0, 65535], "luc how hast thou lost thy breath s dro": [0, 65535], "how hast thou lost thy breath s dro by": [0, 65535], "hast thou lost thy breath s dro by running": [0, 65535], "thou lost thy breath s dro by running fast": [0, 65535], "lost thy breath s dro by running fast adr": [0, 65535], "thy breath s dro by running fast adr where": [0, 65535], "breath s dro by running fast adr where is": [0, 65535], "s dro by running fast adr where is thy": [0, 65535], "dro by running fast adr where is thy master": [0, 65535], "by running fast adr where is thy master dromio": [0, 65535], "running fast adr where is thy master dromio is": [0, 65535], "fast adr where is thy master dromio is he": [0, 65535], "adr where is thy master dromio is he well": [0, 65535], "where is thy master dromio is he well s": [0, 65535], "is thy master dromio is he well s dro": [0, 65535], "thy master dromio is he well s dro no": [0, 65535], "master dromio is he well s dro no he's": [0, 65535], "dromio is he well s dro no he's in": [0, 65535], "is he well s dro no he's in tartar": [0, 65535], "he well s dro no he's in tartar limbo": [0, 65535], "well s dro no he's in tartar limbo worse": [0, 65535], "s dro no he's in tartar limbo worse then": [0, 65535], "dro no he's in tartar limbo worse then hell": [0, 65535], "no he's in tartar limbo worse then hell a": [0, 65535], "he's in tartar limbo worse then hell a diuell": [0, 65535], "in tartar limbo worse then hell a diuell in": [0, 65535], "tartar limbo worse then hell a diuell in an": [0, 65535], "limbo worse then hell a diuell in an euerlasting": [0, 65535], "worse then hell a diuell in an euerlasting garment": [0, 65535], "then hell a diuell in an euerlasting garment hath": [0, 65535], "hell a diuell in an euerlasting garment hath him": [0, 65535], "a diuell in an euerlasting garment hath him on": [0, 65535], "diuell in an euerlasting garment hath him on whose": [0, 65535], "in an euerlasting garment hath him on whose hard": [0, 65535], "an euerlasting garment hath him on whose hard heart": [0, 65535], "euerlasting garment hath him on whose hard heart is": [0, 65535], "garment hath him on whose hard heart is button'd": [0, 65535], "hath him on whose hard heart is button'd vp": [0, 65535], "him on whose hard heart is button'd vp with": [0, 65535], "on whose hard heart is button'd vp with steele": [0, 65535], "whose hard heart is button'd vp with steele a": [0, 65535], "hard heart is button'd vp with steele a feind": [0, 65535], "heart is button'd vp with steele a feind a": [0, 65535], "is button'd vp with steele a feind a fairie": [0, 65535], "button'd vp with steele a feind a fairie pittilesse": [0, 65535], "vp with steele a feind a fairie pittilesse and": [0, 65535], "with steele a feind a fairie pittilesse and ruffe": [0, 65535], "steele a feind a fairie pittilesse and ruffe a": [0, 65535], "a feind a fairie pittilesse and ruffe a wolfe": [0, 65535], "feind a fairie pittilesse and ruffe a wolfe nay": [0, 65535], "a fairie pittilesse and ruffe a wolfe nay worse": [0, 65535], "fairie pittilesse and ruffe a wolfe nay worse a": [0, 65535], "pittilesse and ruffe a wolfe nay worse a fellow": [0, 65535], "and ruffe a wolfe nay worse a fellow all": [0, 65535], "ruffe a wolfe nay worse a fellow all in": [0, 65535], "a wolfe nay worse a fellow all in buffe": [0, 65535], "wolfe nay worse a fellow all in buffe a": [0, 65535], "nay worse a fellow all in buffe a back": [0, 65535], "worse a fellow all in buffe a back friend": [0, 65535], "a fellow all in buffe a back friend a": [0, 65535], "fellow all in buffe a back friend a shoulder": [0, 65535], "all in buffe a back friend a shoulder clapper": [0, 65535], "in buffe a back friend a shoulder clapper one": [0, 65535], "buffe a back friend a shoulder clapper one that": [0, 65535], "a back friend a shoulder clapper one that countermads": [0, 65535], "back friend a shoulder clapper one that countermads the": [0, 65535], "friend a shoulder clapper one that countermads the passages": [0, 65535], "a shoulder clapper one that countermads the passages of": [0, 65535], "shoulder clapper one that countermads the passages of allies": [0, 65535], "clapper one that countermads the passages of allies creekes": [0, 65535], "one that countermads the passages of allies creekes and": [0, 65535], "that countermads the passages of allies creekes and narrow": [0, 65535], "countermads the passages of allies creekes and narrow lands": [0, 65535], "the passages of allies creekes and narrow lands a": [0, 65535], "passages of allies creekes and narrow lands a hound": [0, 65535], "of allies creekes and narrow lands a hound that": [0, 65535], "allies creekes and narrow lands a hound that runs": [0, 65535], "creekes and narrow lands a hound that runs counter": [0, 65535], "and narrow lands a hound that runs counter and": [0, 65535], "narrow lands a hound that runs counter and yet": [0, 65535], "lands a hound that runs counter and yet draws": [0, 65535], "a hound that runs counter and yet draws drifoot": [0, 65535], "hound that runs counter and yet draws drifoot well": [0, 65535], "that runs counter and yet draws drifoot well one": [0, 65535], "runs counter and yet draws drifoot well one that": [0, 65535], "counter and yet draws drifoot well one that before": [0, 65535], "and yet draws drifoot well one that before the": [0, 65535], "yet draws drifoot well one that before the iudgment": [0, 65535], "draws drifoot well one that before the iudgment carries": [0, 65535], "drifoot well one that before the iudgment carries poore": [0, 65535], "well one that before the iudgment carries poore soules": [0, 65535], "one that before the iudgment carries poore soules to": [0, 65535], "that before the iudgment carries poore soules to hel": [0, 65535], "before the iudgment carries poore soules to hel adr": [0, 65535], "the iudgment carries poore soules to hel adr why": [0, 65535], "iudgment carries poore soules to hel adr why man": [0, 65535], "carries poore soules to hel adr why man what": [0, 65535], "poore soules to hel adr why man what is": [0, 65535], "soules to hel adr why man what is the": [0, 65535], "to hel adr why man what is the matter": [0, 65535], "hel adr why man what is the matter s": [0, 65535], "adr why man what is the matter s dro": [0, 65535], "why man what is the matter s dro i": [0, 65535], "man what is the matter s dro i doe": [0, 65535], "what is the matter s dro i doe not": [0, 65535], "is the matter s dro i doe not know": [0, 65535], "the matter s dro i doe not know the": [0, 65535], "matter s dro i doe not know the matter": [0, 65535], "s dro i doe not know the matter hee": [0, 65535], "dro i doe not know the matter hee is": [0, 65535], "i doe not know the matter hee is rested": [0, 65535], "doe not know the matter hee is rested on": [0, 65535], "not know the matter hee is rested on the": [0, 65535], "know the matter hee is rested on the case": [0, 65535], "the matter hee is rested on the case adr": [0, 65535], "matter hee is rested on the case adr what": [0, 65535], "hee is rested on the case adr what is": [0, 65535], "is rested on the case adr what is he": [0, 65535], "rested on the case adr what is he arrested": [0, 65535], "on the case adr what is he arrested tell": [0, 65535], "the case adr what is he arrested tell me": [0, 65535], "case adr what is he arrested tell me at": [0, 65535], "adr what is he arrested tell me at whose": [0, 65535], "what is he arrested tell me at whose suite": [0, 65535], "is he arrested tell me at whose suite s": [0, 65535], "he arrested tell me at whose suite s dro": [0, 65535], "arrested tell me at whose suite s dro i": [0, 65535], "tell me at whose suite s dro i know": [0, 65535], "me at whose suite s dro i know not": [0, 65535], "at whose suite s dro i know not at": [0, 65535], "whose suite s dro i know not at whose": [0, 65535], "suite s dro i know not at whose suite": [0, 65535], "s dro i know not at whose suite he": [0, 65535], "dro i know not at whose suite he is": [0, 65535], "i know not at whose suite he is arested": [0, 65535], "know not at whose suite he is arested well": [0, 65535], "not at whose suite he is arested well but": [0, 65535], "at whose suite he is arested well but is": [0, 65535], "whose suite he is arested well but is in": [0, 65535], "suite he is arested well but is in a": [0, 65535], "he is arested well but is in a suite": [0, 65535], "is arested well but is in a suite of": [0, 65535], "arested well but is in a suite of buffe": [0, 65535], "well but is in a suite of buffe which": [0, 65535], "but is in a suite of buffe which rested": [0, 65535], "is in a suite of buffe which rested him": [0, 65535], "in a suite of buffe which rested him that": [0, 65535], "a suite of buffe which rested him that can": [0, 65535], "suite of buffe which rested him that can i": [0, 65535], "of buffe which rested him that can i tell": [0, 65535], "buffe which rested him that can i tell will": [0, 65535], "which rested him that can i tell will you": [0, 65535], "rested him that can i tell will you send": [0, 65535], "him that can i tell will you send him": [0, 65535], "that can i tell will you send him mistris": [0, 65535], "can i tell will you send him mistris redemption": [0, 65535], "i tell will you send him mistris redemption the": [0, 65535], "tell will you send him mistris redemption the monie": [0, 65535], "will you send him mistris redemption the monie in": [0, 65535], "you send him mistris redemption the monie in his": [0, 65535], "send him mistris redemption the monie in his deske": [0, 65535], "him mistris redemption the monie in his deske adr": [0, 65535], "mistris redemption the monie in his deske adr go": [0, 65535], "redemption the monie in his deske adr go fetch": [0, 65535], "the monie in his deske adr go fetch it": [0, 65535], "monie in his deske adr go fetch it sister": [0, 65535], "in his deske adr go fetch it sister this": [0, 65535], "his deske adr go fetch it sister this i": [0, 65535], "deske adr go fetch it sister this i wonder": [0, 65535], "adr go fetch it sister this i wonder at": [0, 65535], "go fetch it sister this i wonder at exit": [0, 65535], "fetch it sister this i wonder at exit luciana": [0, 65535], "it sister this i wonder at exit luciana thus": [0, 65535], "sister this i wonder at exit luciana thus he": [0, 65535], "this i wonder at exit luciana thus he vnknowne": [0, 65535], "i wonder at exit luciana thus he vnknowne to": [0, 65535], "wonder at exit luciana thus he vnknowne to me": [0, 65535], "at exit luciana thus he vnknowne to me should": [0, 65535], "exit luciana thus he vnknowne to me should be": [0, 65535], "luciana thus he vnknowne to me should be in": [0, 65535], "thus he vnknowne to me should be in debt": [0, 65535], "he vnknowne to me should be in debt tell": [0, 65535], "vnknowne to me should be in debt tell me": [0, 65535], "to me should be in debt tell me was": [0, 65535], "me should be in debt tell me was he": [0, 65535], "should be in debt tell me was he arested": [0, 65535], "be in debt tell me was he arested on": [0, 65535], "in debt tell me was he arested on a": [0, 65535], "debt tell me was he arested on a band": [0, 65535], "tell me was he arested on a band s": [0, 65535], "me was he arested on a band s dro": [0, 65535], "was he arested on a band s dro not": [0, 65535], "he arested on a band s dro not on": [0, 65535], "arested on a band s dro not on a": [0, 65535], "on a band s dro not on a band": [0, 65535], "a band s dro not on a band but": [0, 65535], "band s dro not on a band but on": [0, 65535], "s dro not on a band but on a": [0, 65535], "dro not on a band but on a stronger": [0, 65535], "not on a band but on a stronger thing": [0, 65535], "on a band but on a stronger thing a": [0, 65535], "a band but on a stronger thing a chaine": [0, 65535], "band but on a stronger thing a chaine a": [0, 65535], "but on a stronger thing a chaine a chaine": [0, 65535], "on a stronger thing a chaine a chaine doe": [0, 65535], "a stronger thing a chaine a chaine doe you": [0, 65535], "stronger thing a chaine a chaine doe you not": [0, 65535], "thing a chaine a chaine doe you not here": [0, 65535], "a chaine a chaine doe you not here it": [0, 65535], "chaine a chaine doe you not here it ring": [0, 65535], "a chaine doe you not here it ring adria": [0, 65535], "chaine doe you not here it ring adria what": [0, 65535], "doe you not here it ring adria what the": [0, 65535], "you not here it ring adria what the chaine": [0, 65535], "not here it ring adria what the chaine s": [0, 65535], "here it ring adria what the chaine s dro": [0, 65535], "it ring adria what the chaine s dro no": [0, 65535], "ring adria what the chaine s dro no no": [0, 65535], "adria what the chaine s dro no no the": [0, 65535], "what the chaine s dro no no the bell": [0, 65535], "the chaine s dro no no the bell 'tis": [0, 65535], "chaine s dro no no the bell 'tis time": [0, 65535], "s dro no no the bell 'tis time that": [0, 65535], "dro no no the bell 'tis time that i": [0, 65535], "no no the bell 'tis time that i were": [0, 65535], "no the bell 'tis time that i were gone": [0, 65535], "the bell 'tis time that i were gone it": [0, 65535], "bell 'tis time that i were gone it was": [0, 65535], "'tis time that i were gone it was two": [0, 65535], "time that i were gone it was two ere": [0, 65535], "that i were gone it was two ere i": [0, 65535], "i were gone it was two ere i left": [0, 65535], "were gone it was two ere i left him": [0, 65535], "gone it was two ere i left him and": [0, 65535], "it was two ere i left him and now": [0, 65535], "was two ere i left him and now the": [0, 65535], "two ere i left him and now the clocke": [0, 65535], "ere i left him and now the clocke strikes": [0, 65535], "i left him and now the clocke strikes one": [0, 65535], "left him and now the clocke strikes one adr": [0, 65535], "him and now the clocke strikes one adr the": [0, 65535], "and now the clocke strikes one adr the houres": [0, 65535], "now the clocke strikes one adr the houres come": [0, 65535], "the clocke strikes one adr the houres come backe": [0, 65535], "clocke strikes one adr the houres come backe that": [0, 65535], "strikes one adr the houres come backe that did": [0, 65535], "one adr the houres come backe that did i": [0, 65535], "adr the houres come backe that did i neuer": [0, 65535], "the houres come backe that did i neuer here": [0, 65535], "houres come backe that did i neuer here s": [0, 65535], "come backe that did i neuer here s dro": [0, 65535], "backe that did i neuer here s dro oh": [0, 65535], "that did i neuer here s dro oh yes": [0, 65535], "did i neuer here s dro oh yes if": [0, 65535], "i neuer here s dro oh yes if any": [0, 65535], "neuer here s dro oh yes if any houre": [0, 65535], "here s dro oh yes if any houre meete": [0, 65535], "s dro oh yes if any houre meete a": [0, 65535], "dro oh yes if any houre meete a serieant": [0, 65535], "oh yes if any houre meete a serieant a": [0, 65535], "yes if any houre meete a serieant a turnes": [0, 65535], "if any houre meete a serieant a turnes backe": [0, 65535], "any houre meete a serieant a turnes backe for": [0, 65535], "houre meete a serieant a turnes backe for verie": [0, 65535], "meete a serieant a turnes backe for verie feare": [0, 65535], "a serieant a turnes backe for verie feare adri": [0, 65535], "serieant a turnes backe for verie feare adri as": [0, 65535], "a turnes backe for verie feare adri as if": [0, 65535], "turnes backe for verie feare adri as if time": [0, 65535], "backe for verie feare adri as if time were": [0, 65535], "for verie feare adri as if time were in": [0, 65535], "verie feare adri as if time were in debt": [0, 65535], "feare adri as if time were in debt how": [0, 65535], "adri as if time were in debt how fondly": [0, 65535], "as if time were in debt how fondly do'st": [0, 65535], "if time were in debt how fondly do'st thou": [0, 65535], "time were in debt how fondly do'st thou reason": [0, 65535], "were in debt how fondly do'st thou reason s": [0, 65535], "in debt how fondly do'st thou reason s dro": [0, 65535], "debt how fondly do'st thou reason s dro time": [0, 65535], "how fondly do'st thou reason s dro time is": [0, 65535], "fondly do'st thou reason s dro time is a": [0, 65535], "do'st thou reason s dro time is a verie": [0, 65535], "thou reason s dro time is a verie bankerout": [0, 65535], "reason s dro time is a verie bankerout and": [0, 65535], "s dro time is a verie bankerout and owes": [0, 65535], "dro time is a verie bankerout and owes more": [0, 65535], "time is a verie bankerout and owes more then": [0, 65535], "is a verie bankerout and owes more then he's": [0, 65535], "a verie bankerout and owes more then he's worth": [0, 65535], "verie bankerout and owes more then he's worth to": [0, 65535], "bankerout and owes more then he's worth to season": [0, 65535], "and owes more then he's worth to season nay": [0, 65535], "owes more then he's worth to season nay he's": [0, 65535], "more then he's worth to season nay he's a": [0, 65535], "then he's worth to season nay he's a theefe": [0, 65535], "he's worth to season nay he's a theefe too": [0, 65535], "worth to season nay he's a theefe too haue": [0, 65535], "to season nay he's a theefe too haue you": [0, 65535], "season nay he's a theefe too haue you not": [0, 65535], "nay he's a theefe too haue you not heard": [0, 65535], "he's a theefe too haue you not heard men": [0, 65535], "a theefe too haue you not heard men say": [0, 65535], "theefe too haue you not heard men say that": [0, 65535], "too haue you not heard men say that time": [0, 65535], "haue you not heard men say that time comes": [0, 65535], "you not heard men say that time comes stealing": [0, 65535], "not heard men say that time comes stealing on": [0, 65535], "heard men say that time comes stealing on by": [0, 65535], "men say that time comes stealing on by night": [0, 65535], "say that time comes stealing on by night and": [0, 65535], "that time comes stealing on by night and day": [0, 65535], "time comes stealing on by night and day if": [0, 65535], "comes stealing on by night and day if i": [0, 65535], "stealing on by night and day if i be": [0, 65535], "on by night and day if i be in": [0, 65535], "by night and day if i be in debt": [0, 65535], "night and day if i be in debt and": [0, 65535], "and day if i be in debt and theft": [0, 65535], "day if i be in debt and theft and": [0, 65535], "if i be in debt and theft and a": [0, 65535], "i be in debt and theft and a serieant": [0, 65535], "be in debt and theft and a serieant in": [0, 65535], "in debt and theft and a serieant in the": [0, 65535], "debt and theft and a serieant in the way": [0, 65535], "and theft and a serieant in the way hath": [0, 65535], "theft and a serieant in the way hath he": [0, 65535], "and a serieant in the way hath he not": [0, 65535], "a serieant in the way hath he not reason": [0, 65535], "serieant in the way hath he not reason to": [0, 65535], "in the way hath he not reason to turne": [0, 65535], "the way hath he not reason to turne backe": [0, 65535], "way hath he not reason to turne backe an": [0, 65535], "hath he not reason to turne backe an houre": [0, 65535], "he not reason to turne backe an houre in": [0, 65535], "not reason to turne backe an houre in a": [0, 65535], "reason to turne backe an houre in a day": [0, 65535], "to turne backe an houre in a day enter": [0, 65535], "turne backe an houre in a day enter luciana": [0, 65535], "backe an houre in a day enter luciana adr": [0, 65535], "an houre in a day enter luciana adr go": [0, 65535], "houre in a day enter luciana adr go dromio": [0, 65535], "in a day enter luciana adr go dromio there's": [0, 65535], "a day enter luciana adr go dromio there's the": [0, 65535], "day enter luciana adr go dromio there's the monie": [0, 65535], "enter luciana adr go dromio there's the monie beare": [0, 65535], "luciana adr go dromio there's the monie beare it": [0, 65535], "adr go dromio there's the monie beare it straight": [0, 65535], "go dromio there's the monie beare it straight and": [0, 65535], "dromio there's the monie beare it straight and bring": [0, 65535], "there's the monie beare it straight and bring thy": [0, 65535], "the monie beare it straight and bring thy master": [0, 65535], "monie beare it straight and bring thy master home": [0, 65535], "beare it straight and bring thy master home imediately": [0, 65535], "it straight and bring thy master home imediately come": [0, 65535], "straight and bring thy master home imediately come sister": [0, 65535], "and bring thy master home imediately come sister i": [0, 65535], "bring thy master home imediately come sister i am": [0, 65535], "thy master home imediately come sister i am prest": [0, 65535], "master home imediately come sister i am prest downe": [0, 65535], "home imediately come sister i am prest downe with": [0, 65535], "imediately come sister i am prest downe with conceit": [0, 65535], "come sister i am prest downe with conceit conceit": [0, 65535], "sister i am prest downe with conceit conceit my": [0, 65535], "i am prest downe with conceit conceit my comfort": [0, 65535], "am prest downe with conceit conceit my comfort and": [0, 65535], "prest downe with conceit conceit my comfort and my": [0, 65535], "downe with conceit conceit my comfort and my iniurie": [0, 65535], "with conceit conceit my comfort and my iniurie exit": [0, 65535], "conceit conceit my comfort and my iniurie exit enter": [0, 65535], "conceit my comfort and my iniurie exit enter antipholus": [0, 65535], "my comfort and my iniurie exit enter antipholus siracusia": [0, 65535], "comfort and my iniurie exit enter antipholus siracusia there's": [0, 65535], "and my iniurie exit enter antipholus siracusia there's not": [0, 65535], "my iniurie exit enter antipholus siracusia there's not a": [0, 65535], "iniurie exit enter antipholus siracusia there's not a man": [0, 65535], "exit enter antipholus siracusia there's not a man i": [0, 65535], "enter antipholus siracusia there's not a man i meete": [0, 65535], "antipholus siracusia there's not a man i meete but": [0, 65535], "siracusia there's not a man i meete but doth": [0, 65535], "there's not a man i meete but doth salute": [0, 65535], "not a man i meete but doth salute me": [0, 65535], "a man i meete but doth salute me as": [0, 65535], "man i meete but doth salute me as if": [0, 65535], "i meete but doth salute me as if i": [0, 65535], "meete but doth salute me as if i were": [0, 65535], "but doth salute me as if i were their": [0, 65535], "doth salute me as if i were their well": [0, 65535], "salute me as if i were their well acquainted": [0, 65535], "me as if i were their well acquainted friend": [0, 65535], "as if i were their well acquainted friend and": [0, 65535], "if i were their well acquainted friend and euerie": [0, 65535], "i were their well acquainted friend and euerie one": [0, 65535], "were their well acquainted friend and euerie one doth": [0, 65535], "their well acquainted friend and euerie one doth call": [0, 65535], "well acquainted friend and euerie one doth call me": [0, 65535], "acquainted friend and euerie one doth call me by": [0, 65535], "friend and euerie one doth call me by my": [0, 65535], "and euerie one doth call me by my name": [0, 65535], "euerie one doth call me by my name some": [0, 65535], "one doth call me by my name some tender": [0, 65535], "doth call me by my name some tender monie": [0, 65535], "call me by my name some tender monie to": [0, 65535], "me by my name some tender monie to me": [0, 65535], "by my name some tender monie to me some": [0, 65535], "my name some tender monie to me some inuite": [0, 65535], "name some tender monie to me some inuite me": [0, 65535], "some tender monie to me some inuite me some": [0, 65535], "tender monie to me some inuite me some other": [0, 65535], "monie to me some inuite me some other giue": [0, 65535], "to me some inuite me some other giue me": [0, 65535], "me some inuite me some other giue me thankes": [0, 65535], "some inuite me some other giue me thankes for": [0, 65535], "inuite me some other giue me thankes for kindnesses": [0, 65535], "me some other giue me thankes for kindnesses some": [0, 65535], "some other giue me thankes for kindnesses some offer": [0, 65535], "other giue me thankes for kindnesses some offer me": [0, 65535], "giue me thankes for kindnesses some offer me commodities": [0, 65535], "me thankes for kindnesses some offer me commodities to": [0, 65535], "thankes for kindnesses some offer me commodities to buy": [0, 65535], "for kindnesses some offer me commodities to buy euen": [0, 65535], "kindnesses some offer me commodities to buy euen now": [0, 65535], "some offer me commodities to buy euen now a": [0, 65535], "offer me commodities to buy euen now a tailor": [0, 65535], "me commodities to buy euen now a tailor cal'd": [0, 65535], "commodities to buy euen now a tailor cal'd me": [0, 65535], "to buy euen now a tailor cal'd me in": [0, 65535], "buy euen now a tailor cal'd me in his": [0, 65535], "euen now a tailor cal'd me in his shop": [0, 65535], "now a tailor cal'd me in his shop and": [0, 65535], "a tailor cal'd me in his shop and show'd": [0, 65535], "tailor cal'd me in his shop and show'd me": [0, 65535], "cal'd me in his shop and show'd me silkes": [0, 65535], "me in his shop and show'd me silkes that": [0, 65535], "in his shop and show'd me silkes that he": [0, 65535], "his shop and show'd me silkes that he had": [0, 65535], "shop and show'd me silkes that he had bought": [0, 65535], "and show'd me silkes that he had bought for": [0, 65535], "show'd me silkes that he had bought for me": [0, 65535], "me silkes that he had bought for me and": [0, 65535], "silkes that he had bought for me and therewithall": [0, 65535], "that he had bought for me and therewithall tooke": [0, 65535], "he had bought for me and therewithall tooke measure": [0, 65535], "had bought for me and therewithall tooke measure of": [0, 65535], "bought for me and therewithall tooke measure of my": [0, 65535], "for me and therewithall tooke measure of my body": [0, 65535], "me and therewithall tooke measure of my body sure": [0, 65535], "and therewithall tooke measure of my body sure these": [0, 65535], "therewithall tooke measure of my body sure these are": [0, 65535], "tooke measure of my body sure these are but": [0, 65535], "measure of my body sure these are but imaginarie": [0, 65535], "of my body sure these are but imaginarie wiles": [0, 65535], "my body sure these are but imaginarie wiles and": [0, 65535], "body sure these are but imaginarie wiles and lapland": [0, 65535], "sure these are but imaginarie wiles and lapland sorcerers": [0, 65535], "these are but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "are but imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite here enter": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here enter dromio": [0, 65535], "wiles and lapland sorcerers inhabite here enter dromio sir": [0, 65535], "and lapland sorcerers inhabite here enter dromio sir s": [0, 65535], "lapland sorcerers inhabite here enter dromio sir s dro": [0, 65535], "sorcerers inhabite here enter dromio sir s dro master": [0, 65535], "inhabite here enter dromio sir s dro master here's": [0, 65535], "here enter dromio sir s dro master here's the": [0, 65535], "enter dromio sir s dro master here's the gold": [0, 65535], "dromio sir s dro master here's the gold you": [0, 65535], "sir s dro master here's the gold you sent": [0, 65535], "s dro master here's the gold you sent me": [0, 65535], "dro master here's the gold you sent me for": [0, 65535], "master here's the gold you sent me for what": [0, 65535], "here's the gold you sent me for what haue": [0, 65535], "the gold you sent me for what haue you": [0, 65535], "gold you sent me for what haue you got": [0, 65535], "you sent me for what haue you got the": [0, 65535], "sent me for what haue you got the picture": [0, 65535], "me for what haue you got the picture of": [0, 65535], "for what haue you got the picture of old": [0, 65535], "what haue you got the picture of old adam": [0, 65535], "haue you got the picture of old adam new": [0, 65535], "you got the picture of old adam new apparel'd": [0, 65535], "got the picture of old adam new apparel'd ant": [0, 65535], "the picture of old adam new apparel'd ant what": [0, 65535], "picture of old adam new apparel'd ant what gold": [0, 65535], "of old adam new apparel'd ant what gold is": [0, 65535], "old adam new apparel'd ant what gold is this": [0, 65535], "adam new apparel'd ant what gold is this what": [0, 65535], "new apparel'd ant what gold is this what adam": [0, 65535], "apparel'd ant what gold is this what adam do'st": [0, 65535], "ant what gold is this what adam do'st thou": [0, 65535], "what gold is this what adam do'st thou meane": [0, 65535], "gold is this what adam do'st thou meane s": [0, 65535], "is this what adam do'st thou meane s dro": [0, 65535], "this what adam do'st thou meane s dro not": [0, 65535], "what adam do'st thou meane s dro not that": [0, 65535], "adam do'st thou meane s dro not that adam": [0, 65535], "do'st thou meane s dro not that adam that": [0, 65535], "thou meane s dro not that adam that kept": [0, 65535], "meane s dro not that adam that kept the": [0, 65535], "s dro not that adam that kept the paradise": [0, 65535], "dro not that adam that kept the paradise but": [0, 65535], "not that adam that kept the paradise but that": [0, 65535], "that adam that kept the paradise but that adam": [0, 65535], "adam that kept the paradise but that adam that": [0, 65535], "that kept the paradise but that adam that keepes": [0, 65535], "kept the paradise but that adam that keepes the": [0, 65535], "the paradise but that adam that keepes the prison": [0, 65535], "paradise but that adam that keepes the prison hee": [0, 65535], "but that adam that keepes the prison hee that": [0, 65535], "that adam that keepes the prison hee that goes": [0, 65535], "adam that keepes the prison hee that goes in": [0, 65535], "that keepes the prison hee that goes in the": [0, 65535], "keepes the prison hee that goes in the calues": [0, 65535], "the prison hee that goes in the calues skin": [0, 65535], "prison hee that goes in the calues skin that": [0, 65535], "hee that goes in the calues skin that was": [0, 65535], "that goes in the calues skin that was kil'd": [0, 65535], "goes in the calues skin that was kil'd for": [0, 65535], "in the calues skin that was kil'd for the": [0, 65535], "the calues skin that was kil'd for the prodigall": [0, 65535], "calues skin that was kil'd for the prodigall hee": [0, 65535], "skin that was kil'd for the prodigall hee that": [0, 65535], "that was kil'd for the prodigall hee that came": [0, 65535], "was kil'd for the prodigall hee that came behinde": [0, 65535], "kil'd for the prodigall hee that came behinde you": [0, 65535], "for the prodigall hee that came behinde you sir": [0, 65535], "the prodigall hee that came behinde you sir like": [0, 65535], "prodigall hee that came behinde you sir like an": [0, 65535], "hee that came behinde you sir like an euill": [0, 65535], "that came behinde you sir like an euill angel": [0, 65535], "came behinde you sir like an euill angel and": [0, 65535], "behinde you sir like an euill angel and bid": [0, 65535], "you sir like an euill angel and bid you": [0, 65535], "sir like an euill angel and bid you forsake": [0, 65535], "like an euill angel and bid you forsake your": [0, 65535], "an euill angel and bid you forsake your libertie": [0, 65535], "euill angel and bid you forsake your libertie ant": [0, 65535], "angel and bid you forsake your libertie ant i": [0, 65535], "and bid you forsake your libertie ant i vnderstand": [0, 65535], "bid you forsake your libertie ant i vnderstand thee": [0, 65535], "you forsake your libertie ant i vnderstand thee not": [0, 65535], "forsake your libertie ant i vnderstand thee not s": [0, 65535], "your libertie ant i vnderstand thee not s dro": [0, 65535], "libertie ant i vnderstand thee not s dro no": [0, 65535], "ant i vnderstand thee not s dro no why": [0, 65535], "i vnderstand thee not s dro no why 'tis": [0, 65535], "vnderstand thee not s dro no why 'tis a": [0, 65535], "thee not s dro no why 'tis a plaine": [0, 65535], "not s dro no why 'tis a plaine case": [0, 65535], "s dro no why 'tis a plaine case he": [0, 65535], "dro no why 'tis a plaine case he that": [0, 65535], "no why 'tis a plaine case he that went": [0, 65535], "why 'tis a plaine case he that went like": [0, 65535], "'tis a plaine case he that went like a": [0, 65535], "a plaine case he that went like a base": [0, 65535], "plaine case he that went like a base viole": [0, 65535], "case he that went like a base viole in": [0, 65535], "he that went like a base viole in a": [0, 65535], "that went like a base viole in a case": [0, 65535], "went like a base viole in a case of": [0, 65535], "like a base viole in a case of leather": [0, 65535], "a base viole in a case of leather the": [0, 65535], "base viole in a case of leather the man": [0, 65535], "viole in a case of leather the man sir": [0, 65535], "in a case of leather the man sir that": [0, 65535], "a case of leather the man sir that when": [0, 65535], "case of leather the man sir that when gentlemen": [0, 65535], "of leather the man sir that when gentlemen are": [0, 65535], "leather the man sir that when gentlemen are tired": [0, 65535], "the man sir that when gentlemen are tired giues": [0, 65535], "man sir that when gentlemen are tired giues them": [0, 65535], "sir that when gentlemen are tired giues them a": [0, 65535], "that when gentlemen are tired giues them a sob": [0, 65535], "when gentlemen are tired giues them a sob and": [0, 65535], "gentlemen are tired giues them a sob and rests": [0, 65535], "are tired giues them a sob and rests them": [0, 65535], "tired giues them a sob and rests them he": [0, 65535], "giues them a sob and rests them he sir": [0, 65535], "them a sob and rests them he sir that": [0, 65535], "a sob and rests them he sir that takes": [0, 65535], "sob and rests them he sir that takes pittie": [0, 65535], "and rests them he sir that takes pittie on": [0, 65535], "rests them he sir that takes pittie on decaied": [0, 65535], "them he sir that takes pittie on decaied men": [0, 65535], "he sir that takes pittie on decaied men and": [0, 65535], "sir that takes pittie on decaied men and giues": [0, 65535], "that takes pittie on decaied men and giues them": [0, 65535], "takes pittie on decaied men and giues them suites": [0, 65535], "pittie on decaied men and giues them suites of": [0, 65535], "on decaied men and giues them suites of durance": [0, 65535], "decaied men and giues them suites of durance he": [0, 65535], "men and giues them suites of durance he that": [0, 65535], "and giues them suites of durance he that sets": [0, 65535], "giues them suites of durance he that sets vp": [0, 65535], "them suites of durance he that sets vp his": [0, 65535], "suites of durance he that sets vp his rest": [0, 65535], "of durance he that sets vp his rest to": [0, 65535], "durance he that sets vp his rest to doe": [0, 65535], "he that sets vp his rest to doe more": [0, 65535], "that sets vp his rest to doe more exploits": [0, 65535], "sets vp his rest to doe more exploits with": [0, 65535], "vp his rest to doe more exploits with his": [0, 65535], "his rest to doe more exploits with his mace": [0, 65535], "rest to doe more exploits with his mace then": [0, 65535], "to doe more exploits with his mace then a": [0, 65535], "doe more exploits with his mace then a moris": [0, 65535], "more exploits with his mace then a moris pike": [0, 65535], "exploits with his mace then a moris pike ant": [0, 65535], "with his mace then a moris pike ant what": [0, 65535], "his mace then a moris pike ant what thou": [0, 65535], "mace then a moris pike ant what thou mean'st": [0, 65535], "then a moris pike ant what thou mean'st an": [0, 65535], "a moris pike ant what thou mean'st an officer": [0, 65535], "moris pike ant what thou mean'st an officer s": [0, 65535], "pike ant what thou mean'st an officer s dro": [0, 65535], "ant what thou mean'st an officer s dro i": [0, 65535], "what thou mean'st an officer s dro i sir": [0, 65535], "thou mean'st an officer s dro i sir the": [0, 65535], "mean'st an officer s dro i sir the serieant": [0, 65535], "an officer s dro i sir the serieant of": [0, 65535], "officer s dro i sir the serieant of the": [0, 65535], "s dro i sir the serieant of the band": [0, 65535], "dro i sir the serieant of the band he": [0, 65535], "i sir the serieant of the band he that": [0, 65535], "sir the serieant of the band he that brings": [0, 65535], "the serieant of the band he that brings any": [0, 65535], "serieant of the band he that brings any man": [0, 65535], "of the band he that brings any man to": [0, 65535], "the band he that brings any man to answer": [0, 65535], "band he that brings any man to answer it": [0, 65535], "he that brings any man to answer it that": [0, 65535], "that brings any man to answer it that breakes": [0, 65535], "brings any man to answer it that breakes his": [0, 65535], "any man to answer it that breakes his band": [0, 65535], "man to answer it that breakes his band one": [0, 65535], "to answer it that breakes his band one that": [0, 65535], "answer it that breakes his band one that thinkes": [0, 65535], "it that breakes his band one that thinkes a": [0, 65535], "that breakes his band one that thinkes a man": [0, 65535], "breakes his band one that thinkes a man alwaies": [0, 65535], "his band one that thinkes a man alwaies going": [0, 65535], "band one that thinkes a man alwaies going to": [0, 65535], "one that thinkes a man alwaies going to bed": [0, 65535], "that thinkes a man alwaies going to bed and": [0, 65535], "thinkes a man alwaies going to bed and saies": [0, 65535], "a man alwaies going to bed and saies god": [0, 65535], "man alwaies going to bed and saies god giue": [0, 65535], "alwaies going to bed and saies god giue you": [0, 65535], "going to bed and saies god giue you good": [0, 65535], "to bed and saies god giue you good rest": [0, 65535], "bed and saies god giue you good rest ant": [0, 65535], "and saies god giue you good rest ant well": [0, 65535], "saies god giue you good rest ant well sir": [0, 65535], "god giue you good rest ant well sir there": [0, 65535], "giue you good rest ant well sir there rest": [0, 65535], "you good rest ant well sir there rest in": [0, 65535], "good rest ant well sir there rest in your": [0, 65535], "rest ant well sir there rest in your foolerie": [0, 65535], "ant well sir there rest in your foolerie is": [0, 65535], "well sir there rest in your foolerie is there": [0, 65535], "sir there rest in your foolerie is there any": [0, 65535], "there rest in your foolerie is there any ships": [0, 65535], "rest in your foolerie is there any ships puts": [0, 65535], "in your foolerie is there any ships puts forth": [0, 65535], "your foolerie is there any ships puts forth to": [0, 65535], "foolerie is there any ships puts forth to night": [0, 65535], "is there any ships puts forth to night may": [0, 65535], "there any ships puts forth to night may we": [0, 65535], "any ships puts forth to night may we be": [0, 65535], "ships puts forth to night may we be gone": [0, 65535], "puts forth to night may we be gone s": [0, 65535], "forth to night may we be gone s dro": [0, 65535], "to night may we be gone s dro why": [0, 65535], "night may we be gone s dro why sir": [0, 65535], "may we be gone s dro why sir i": [0, 65535], "we be gone s dro why sir i brought": [0, 65535], "be gone s dro why sir i brought you": [0, 65535], "gone s dro why sir i brought you word": [0, 65535], "s dro why sir i brought you word an": [0, 65535], "dro why sir i brought you word an houre": [0, 65535], "why sir i brought you word an houre since": [0, 65535], "sir i brought you word an houre since that": [0, 65535], "i brought you word an houre since that the": [0, 65535], "brought you word an houre since that the barke": [0, 65535], "you word an houre since that the barke expedition": [0, 65535], "word an houre since that the barke expedition put": [0, 65535], "an houre since that the barke expedition put forth": [0, 65535], "houre since that the barke expedition put forth to": [0, 65535], "since that the barke expedition put forth to night": [0, 65535], "that the barke expedition put forth to night and": [0, 65535], "the barke expedition put forth to night and then": [0, 65535], "barke expedition put forth to night and then were": [0, 65535], "expedition put forth to night and then were you": [0, 65535], "put forth to night and then were you hindred": [0, 65535], "forth to night and then were you hindred by": [0, 65535], "to night and then were you hindred by the": [0, 65535], "night and then were you hindred by the serieant": [0, 65535], "and then were you hindred by the serieant to": [0, 65535], "then were you hindred by the serieant to tarry": [0, 65535], "were you hindred by the serieant to tarry for": [0, 65535], "you hindred by the serieant to tarry for the": [0, 65535], "hindred by the serieant to tarry for the hoy": [0, 65535], "by the serieant to tarry for the hoy delay": [0, 65535], "the serieant to tarry for the hoy delay here": [0, 65535], "serieant to tarry for the hoy delay here are": [0, 65535], "to tarry for the hoy delay here are the": [0, 65535], "tarry for the hoy delay here are the angels": [0, 65535], "for the hoy delay here are the angels that": [0, 65535], "the hoy delay here are the angels that you": [0, 65535], "hoy delay here are the angels that you sent": [0, 65535], "delay here are the angels that you sent for": [0, 65535], "here are the angels that you sent for to": [0, 65535], "are the angels that you sent for to deliuer": [0, 65535], "the angels that you sent for to deliuer you": [0, 65535], "angels that you sent for to deliuer you ant": [0, 65535], "that you sent for to deliuer you ant the": [0, 65535], "you sent for to deliuer you ant the fellow": [0, 65535], "sent for to deliuer you ant the fellow is": [0, 65535], "for to deliuer you ant the fellow is distract": [0, 65535], "to deliuer you ant the fellow is distract and": [0, 65535], "deliuer you ant the fellow is distract and so": [0, 65535], "you ant the fellow is distract and so am": [0, 65535], "ant the fellow is distract and so am i": [0, 65535], "the fellow is distract and so am i and": [0, 65535], "fellow is distract and so am i and here": [0, 65535], "is distract and so am i and here we": [0, 65535], "distract and so am i and here we wander": [0, 65535], "and so am i and here we wander in": [0, 65535], "so am i and here we wander in illusions": [0, 65535], "am i and here we wander in illusions some": [0, 65535], "i and here we wander in illusions some blessed": [0, 65535], "and here we wander in illusions some blessed power": [0, 65535], "here we wander in illusions some blessed power deliuer": [0, 65535], "we wander in illusions some blessed power deliuer vs": [0, 65535], "wander in illusions some blessed power deliuer vs from": [0, 65535], "in illusions some blessed power deliuer vs from hence": [0, 65535], "illusions some blessed power deliuer vs from hence enter": [0, 65535], "some blessed power deliuer vs from hence enter a": [0, 65535], "blessed power deliuer vs from hence enter a curtizan": [0, 65535], "power deliuer vs from hence enter a curtizan cur": [0, 65535], "deliuer vs from hence enter a curtizan cur well": [0, 65535], "vs from hence enter a curtizan cur well met": [0, 65535], "from hence enter a curtizan cur well met well": [0, 65535], "hence enter a curtizan cur well met well met": [0, 65535], "enter a curtizan cur well met well met master": [0, 65535], "a curtizan cur well met well met master antipholus": [0, 65535], "curtizan cur well met well met master antipholus i": [0, 65535], "cur well met well met master antipholus i see": [0, 65535], "well met well met master antipholus i see sir": [0, 65535], "met well met master antipholus i see sir you": [0, 65535], "well met master antipholus i see sir you haue": [0, 65535], "met master antipholus i see sir you haue found": [0, 65535], "master antipholus i see sir you haue found the": [0, 65535], "antipholus i see sir you haue found the gold": [0, 65535], "i see sir you haue found the gold smith": [0, 65535], "see sir you haue found the gold smith now": [0, 65535], "sir you haue found the gold smith now is": [0, 65535], "you haue found the gold smith now is that": [0, 65535], "haue found the gold smith now is that the": [0, 65535], "found the gold smith now is that the chaine": [0, 65535], "the gold smith now is that the chaine you": [0, 65535], "gold smith now is that the chaine you promis'd": [0, 65535], "smith now is that the chaine you promis'd me": [0, 65535], "now is that the chaine you promis'd me to": [0, 65535], "is that the chaine you promis'd me to day": [0, 65535], "that the chaine you promis'd me to day ant": [0, 65535], "the chaine you promis'd me to day ant sathan": [0, 65535], "chaine you promis'd me to day ant sathan auoide": [0, 65535], "you promis'd me to day ant sathan auoide i": [0, 65535], "promis'd me to day ant sathan auoide i charge": [0, 65535], "me to day ant sathan auoide i charge thee": [0, 65535], "to day ant sathan auoide i charge thee tempt": [0, 65535], "day ant sathan auoide i charge thee tempt me": [0, 65535], "ant sathan auoide i charge thee tempt me not": [0, 65535], "sathan auoide i charge thee tempt me not s": [0, 65535], "auoide i charge thee tempt me not s dro": [0, 65535], "i charge thee tempt me not s dro master": [0, 65535], "charge thee tempt me not s dro master is": [0, 65535], "thee tempt me not s dro master is this": [0, 65535], "tempt me not s dro master is this mistris": [0, 65535], "me not s dro master is this mistris sathan": [0, 65535], "not s dro master is this mistris sathan ant": [0, 65535], "s dro master is this mistris sathan ant it": [0, 65535], "dro master is this mistris sathan ant it is": [0, 65535], "master is this mistris sathan ant it is the": [0, 65535], "is this mistris sathan ant it is the diuell": [0, 65535], "this mistris sathan ant it is the diuell s": [0, 65535], "mistris sathan ant it is the diuell s dro": [0, 65535], "sathan ant it is the diuell s dro nay": [0, 65535], "ant it is the diuell s dro nay she": [0, 65535], "it is the diuell s dro nay she is": [0, 65535], "is the diuell s dro nay she is worse": [0, 65535], "the diuell s dro nay she is worse she": [0, 65535], "diuell s dro nay she is worse she is": [0, 65535], "s dro nay she is worse she is the": [0, 65535], "dro nay she is worse she is the diuels": [0, 65535], "nay she is worse she is the diuels dam": [0, 65535], "she is worse she is the diuels dam and": [0, 65535], "is worse she is the diuels dam and here": [0, 65535], "worse she is the diuels dam and here she": [0, 65535], "she is the diuels dam and here she comes": [0, 65535], "is the diuels dam and here she comes in": [0, 65535], "the diuels dam and here she comes in the": [0, 65535], "diuels dam and here she comes in the habit": [0, 65535], "dam and here she comes in the habit of": [0, 65535], "and here she comes in the habit of a": [0, 65535], "here she comes in the habit of a light": [0, 65535], "she comes in the habit of a light wench": [0, 65535], "comes in the habit of a light wench and": [0, 65535], "in the habit of a light wench and thereof": [0, 65535], "the habit of a light wench and thereof comes": [0, 65535], "habit of a light wench and thereof comes that": [0, 65535], "of a light wench and thereof comes that the": [0, 65535], "a light wench and thereof comes that the wenches": [0, 65535], "light wench and thereof comes that the wenches say": [0, 65535], "wench and thereof comes that the wenches say god": [0, 65535], "and thereof comes that the wenches say god dam": [0, 65535], "thereof comes that the wenches say god dam me": [0, 65535], "comes that the wenches say god dam me that's": [0, 65535], "that the wenches say god dam me that's as": [0, 65535], "the wenches say god dam me that's as much": [0, 65535], "wenches say god dam me that's as much to": [0, 65535], "say god dam me that's as much to say": [0, 65535], "god dam me that's as much to say god": [0, 65535], "dam me that's as much to say god make": [0, 65535], "me that's as much to say god make me": [0, 65535], "that's as much to say god make me a": [0, 65535], "as much to say god make me a light": [0, 65535], "much to say god make me a light wench": [0, 65535], "to say god make me a light wench it": [0, 65535], "say god make me a light wench it is": [0, 65535], "god make me a light wench it is written": [0, 65535], "make me a light wench it is written they": [0, 65535], "me a light wench it is written they appeare": [0, 65535], "a light wench it is written they appeare to": [0, 65535], "light wench it is written they appeare to men": [0, 65535], "wench it is written they appeare to men like": [0, 65535], "it is written they appeare to men like angels": [0, 65535], "is written they appeare to men like angels of": [0, 65535], "written they appeare to men like angels of light": [0, 65535], "they appeare to men like angels of light light": [0, 65535], "appeare to men like angels of light light is": [0, 65535], "to men like angels of light light is an": [0, 65535], "men like angels of light light is an effect": [0, 65535], "like angels of light light is an effect of": [0, 65535], "angels of light light is an effect of fire": [0, 65535], "of light light is an effect of fire and": [0, 65535], "light light is an effect of fire and fire": [0, 65535], "light is an effect of fire and fire will": [0, 65535], "is an effect of fire and fire will burne": [0, 65535], "an effect of fire and fire will burne ergo": [0, 65535], "effect of fire and fire will burne ergo light": [0, 65535], "of fire and fire will burne ergo light wenches": [0, 65535], "fire and fire will burne ergo light wenches will": [0, 65535], "and fire will burne ergo light wenches will burne": [0, 65535], "fire will burne ergo light wenches will burne come": [0, 65535], "will burne ergo light wenches will burne come not": [0, 65535], "burne ergo light wenches will burne come not neere": [0, 65535], "ergo light wenches will burne come not neere her": [0, 65535], "light wenches will burne come not neere her cur": [0, 65535], "wenches will burne come not neere her cur your": [0, 65535], "will burne come not neere her cur your man": [0, 65535], "burne come not neere her cur your man and": [0, 65535], "come not neere her cur your man and you": [0, 65535], "not neere her cur your man and you are": [0, 65535], "neere her cur your man and you are maruailous": [0, 65535], "her cur your man and you are maruailous merrie": [0, 65535], "cur your man and you are maruailous merrie sir": [0, 65535], "your man and you are maruailous merrie sir will": [0, 65535], "man and you are maruailous merrie sir will you": [0, 65535], "and you are maruailous merrie sir will you goe": [0, 65535], "you are maruailous merrie sir will you goe with": [0, 65535], "are maruailous merrie sir will you goe with me": [0, 65535], "maruailous merrie sir will you goe with me wee'll": [0, 65535], "merrie sir will you goe with me wee'll mend": [0, 65535], "sir will you goe with me wee'll mend our": [0, 65535], "will you goe with me wee'll mend our dinner": [0, 65535], "you goe with me wee'll mend our dinner here": [0, 65535], "goe with me wee'll mend our dinner here s": [0, 65535], "with me wee'll mend our dinner here s dro": [0, 65535], "me wee'll mend our dinner here s dro master": [0, 65535], "wee'll mend our dinner here s dro master if": [0, 65535], "mend our dinner here s dro master if do": [0, 65535], "our dinner here s dro master if do expect": [0, 65535], "dinner here s dro master if do expect spoon": [0, 65535], "here s dro master if do expect spoon meate": [0, 65535], "s dro master if do expect spoon meate or": [0, 65535], "dro master if do expect spoon meate or bespeake": [0, 65535], "master if do expect spoon meate or bespeake a": [0, 65535], "if do expect spoon meate or bespeake a long": [0, 65535], "do expect spoon meate or bespeake a long spoone": [0, 65535], "expect spoon meate or bespeake a long spoone ant": [0, 65535], "spoon meate or bespeake a long spoone ant why": [0, 65535], "meate or bespeake a long spoone ant why dromio": [0, 65535], "or bespeake a long spoone ant why dromio s": [0, 65535], "bespeake a long spoone ant why dromio s dro": [0, 65535], "a long spoone ant why dromio s dro marrie": [0, 65535], "long spoone ant why dromio s dro marrie he": [0, 65535], "spoone ant why dromio s dro marrie he must": [0, 65535], "ant why dromio s dro marrie he must haue": [0, 65535], "why dromio s dro marrie he must haue a": [0, 65535], "dromio s dro marrie he must haue a long": [0, 65535], "s dro marrie he must haue a long spoone": [0, 65535], "dro marrie he must haue a long spoone that": [0, 65535], "marrie he must haue a long spoone that must": [0, 65535], "he must haue a long spoone that must eate": [0, 65535], "must haue a long spoone that must eate with": [0, 65535], "haue a long spoone that must eate with the": [0, 65535], "a long spoone that must eate with the diuell": [0, 65535], "long spoone that must eate with the diuell ant": [0, 65535], "spoone that must eate with the diuell ant auoid": [0, 65535], "that must eate with the diuell ant auoid then": [0, 65535], "must eate with the diuell ant auoid then fiend": [0, 65535], "eate with the diuell ant auoid then fiend what": [0, 65535], "with the diuell ant auoid then fiend what tel'st": [0, 65535], "the diuell ant auoid then fiend what tel'st thou": [0, 65535], "diuell ant auoid then fiend what tel'st thou me": [0, 65535], "ant auoid then fiend what tel'st thou me of": [0, 65535], "auoid then fiend what tel'st thou me of supping": [0, 65535], "then fiend what tel'st thou me of supping thou": [0, 65535], "fiend what tel'st thou me of supping thou art": [0, 65535], "what tel'st thou me of supping thou art as": [0, 65535], "tel'st thou me of supping thou art as you": [0, 65535], "thou me of supping thou art as you are": [0, 65535], "me of supping thou art as you are all": [0, 65535], "of supping thou art as you are all a": [0, 65535], "supping thou art as you are all a sorceresse": [0, 65535], "thou art as you are all a sorceresse i": [0, 65535], "art as you are all a sorceresse i coniure": [0, 65535], "as you are all a sorceresse i coniure thee": [0, 65535], "you are all a sorceresse i coniure thee to": [0, 65535], "are all a sorceresse i coniure thee to leaue": [0, 65535], "all a sorceresse i coniure thee to leaue me": [0, 65535], "a sorceresse i coniure thee to leaue me and": [0, 65535], "sorceresse i coniure thee to leaue me and be": [0, 65535], "i coniure thee to leaue me and be gon": [0, 65535], "coniure thee to leaue me and be gon cur": [0, 65535], "thee to leaue me and be gon cur giue": [0, 65535], "to leaue me and be gon cur giue me": [0, 65535], "leaue me and be gon cur giue me the": [0, 65535], "me and be gon cur giue me the ring": [0, 65535], "and be gon cur giue me the ring of": [0, 65535], "be gon cur giue me the ring of mine": [0, 65535], "gon cur giue me the ring of mine you": [0, 65535], "cur giue me the ring of mine you had": [0, 65535], "giue me the ring of mine you had at": [0, 65535], "me the ring of mine you had at dinner": [0, 65535], "the ring of mine you had at dinner or": [0, 65535], "ring of mine you had at dinner or for": [0, 65535], "of mine you had at dinner or for my": [0, 65535], "mine you had at dinner or for my diamond": [0, 65535], "you had at dinner or for my diamond the": [0, 65535], "had at dinner or for my diamond the chaine": [0, 65535], "at dinner or for my diamond the chaine you": [0, 65535], "dinner or for my diamond the chaine you promis'd": [0, 65535], "or for my diamond the chaine you promis'd and": [0, 65535], "for my diamond the chaine you promis'd and ile": [0, 65535], "my diamond the chaine you promis'd and ile be": [0, 65535], "diamond the chaine you promis'd and ile be gone": [0, 65535], "the chaine you promis'd and ile be gone sir": [0, 65535], "chaine you promis'd and ile be gone sir and": [0, 65535], "you promis'd and ile be gone sir and not": [0, 65535], "promis'd and ile be gone sir and not trouble": [0, 65535], "and ile be gone sir and not trouble you": [0, 65535], "ile be gone sir and not trouble you s": [0, 65535], "be gone sir and not trouble you s dro": [0, 65535], "gone sir and not trouble you s dro some": [0, 65535], "sir and not trouble you s dro some diuels": [0, 65535], "and not trouble you s dro some diuels aske": [0, 65535], "not trouble you s dro some diuels aske but": [0, 65535], "trouble you s dro some diuels aske but the": [0, 65535], "you s dro some diuels aske but the parings": [0, 65535], "s dro some diuels aske but the parings of": [0, 65535], "dro some diuels aske but the parings of ones": [0, 65535], "some diuels aske but the parings of ones naile": [0, 65535], "diuels aske but the parings of ones naile a": [0, 65535], "aske but the parings of ones naile a rush": [0, 65535], "but the parings of ones naile a rush a": [0, 65535], "the parings of ones naile a rush a haire": [0, 65535], "parings of ones naile a rush a haire a": [0, 65535], "of ones naile a rush a haire a drop": [0, 65535], "ones naile a rush a haire a drop of": [0, 65535], "naile a rush a haire a drop of blood": [0, 65535], "a rush a haire a drop of blood a": [0, 65535], "rush a haire a drop of blood a pin": [0, 65535], "a haire a drop of blood a pin a": [0, 65535], "haire a drop of blood a pin a nut": [0, 65535], "a drop of blood a pin a nut a": [0, 65535], "drop of blood a pin a nut a cherrie": [0, 65535], "of blood a pin a nut a cherrie stone": [0, 65535], "blood a pin a nut a cherrie stone but": [0, 65535], "a pin a nut a cherrie stone but she": [0, 65535], "pin a nut a cherrie stone but she more": [0, 65535], "a nut a cherrie stone but she more couetous": [0, 65535], "nut a cherrie stone but she more couetous wold": [0, 65535], "a cherrie stone but she more couetous wold haue": [0, 65535], "cherrie stone but she more couetous wold haue a": [0, 65535], "stone but she more couetous wold haue a chaine": [0, 65535], "but she more couetous wold haue a chaine master": [0, 65535], "she more couetous wold haue a chaine master be": [0, 65535], "more couetous wold haue a chaine master be wise": [0, 65535], "couetous wold haue a chaine master be wise and": [0, 65535], "wold haue a chaine master be wise and if": [0, 65535], "haue a chaine master be wise and if you": [0, 65535], "a chaine master be wise and if you giue": [0, 65535], "chaine master be wise and if you giue it": [0, 65535], "master be wise and if you giue it her": [0, 65535], "be wise and if you giue it her the": [0, 65535], "wise and if you giue it her the diuell": [0, 65535], "and if you giue it her the diuell will": [0, 65535], "if you giue it her the diuell will shake": [0, 65535], "you giue it her the diuell will shake her": [0, 65535], "giue it her the diuell will shake her chaine": [0, 65535], "it her the diuell will shake her chaine and": [0, 65535], "her the diuell will shake her chaine and fright": [0, 65535], "the diuell will shake her chaine and fright vs": [0, 65535], "diuell will shake her chaine and fright vs with": [0, 65535], "will shake her chaine and fright vs with it": [0, 65535], "shake her chaine and fright vs with it cur": [0, 65535], "her chaine and fright vs with it cur i": [0, 65535], "chaine and fright vs with it cur i pray": [0, 65535], "and fright vs with it cur i pray you": [0, 65535], "fright vs with it cur i pray you sir": [0, 65535], "vs with it cur i pray you sir my": [0, 65535], "with it cur i pray you sir my ring": [0, 65535], "it cur i pray you sir my ring or": [0, 65535], "cur i pray you sir my ring or else": [0, 65535], "i pray you sir my ring or else the": [0, 65535], "pray you sir my ring or else the chaine": [0, 65535], "you sir my ring or else the chaine i": [0, 65535], "sir my ring or else the chaine i hope": [0, 65535], "my ring or else the chaine i hope you": [0, 65535], "ring or else the chaine i hope you do": [0, 65535], "or else the chaine i hope you do not": [0, 65535], "else the chaine i hope you do not meane": [0, 65535], "the chaine i hope you do not meane to": [0, 65535], "chaine i hope you do not meane to cheate": [0, 65535], "i hope you do not meane to cheate me": [0, 65535], "hope you do not meane to cheate me so": [0, 65535], "you do not meane to cheate me so ant": [0, 65535], "do not meane to cheate me so ant auant": [0, 65535], "not meane to cheate me so ant auant thou": [0, 65535], "meane to cheate me so ant auant thou witch": [0, 65535], "to cheate me so ant auant thou witch come": [0, 65535], "cheate me so ant auant thou witch come dromio": [0, 65535], "me so ant auant thou witch come dromio let": [0, 65535], "so ant auant thou witch come dromio let vs": [0, 65535], "ant auant thou witch come dromio let vs go": [0, 65535], "auant thou witch come dromio let vs go s": [0, 65535], "thou witch come dromio let vs go s dro": [0, 65535], "witch come dromio let vs go s dro flie": [0, 65535], "come dromio let vs go s dro flie pride": [0, 65535], "dromio let vs go s dro flie pride saies": [0, 65535], "let vs go s dro flie pride saies the": [0, 65535], "vs go s dro flie pride saies the pea": [0, 65535], "go s dro flie pride saies the pea cocke": [0, 65535], "s dro flie pride saies the pea cocke mistris": [0, 65535], "dro flie pride saies the pea cocke mistris that": [0, 65535], "flie pride saies the pea cocke mistris that you": [0, 65535], "pride saies the pea cocke mistris that you know": [0, 65535], "saies the pea cocke mistris that you know exit": [0, 65535], "the pea cocke mistris that you know exit cur": [0, 65535], "pea cocke mistris that you know exit cur now": [0, 65535], "cocke mistris that you know exit cur now out": [0, 65535], "mistris that you know exit cur now out of": [0, 65535], "that you know exit cur now out of doubt": [0, 65535], "you know exit cur now out of doubt antipholus": [0, 65535], "know exit cur now out of doubt antipholus is": [0, 65535], "exit cur now out of doubt antipholus is mad": [0, 65535], "cur now out of doubt antipholus is mad else": [0, 65535], "now out of doubt antipholus is mad else would": [0, 65535], "out of doubt antipholus is mad else would he": [0, 65535], "of doubt antipholus is mad else would he neuer": [0, 65535], "doubt antipholus is mad else would he neuer so": [0, 65535], "antipholus is mad else would he neuer so demeane": [0, 65535], "is mad else would he neuer so demeane himselfe": [0, 65535], "mad else would he neuer so demeane himselfe a": [0, 65535], "else would he neuer so demeane himselfe a ring": [0, 65535], "would he neuer so demeane himselfe a ring he": [0, 65535], "he neuer so demeane himselfe a ring he hath": [0, 65535], "neuer so demeane himselfe a ring he hath of": [0, 65535], "so demeane himselfe a ring he hath of mine": [0, 65535], "demeane himselfe a ring he hath of mine worth": [0, 65535], "himselfe a ring he hath of mine worth fortie": [0, 65535], "a ring he hath of mine worth fortie duckets": [0, 65535], "ring he hath of mine worth fortie duckets and": [0, 65535], "he hath of mine worth fortie duckets and for": [0, 65535], "hath of mine worth fortie duckets and for the": [0, 65535], "of mine worth fortie duckets and for the same": [0, 65535], "mine worth fortie duckets and for the same he": [0, 65535], "worth fortie duckets and for the same he promis'd": [0, 65535], "fortie duckets and for the same he promis'd me": [0, 65535], "duckets and for the same he promis'd me a": [0, 65535], "and for the same he promis'd me a chaine": [0, 65535], "for the same he promis'd me a chaine both": [0, 65535], "the same he promis'd me a chaine both one": [0, 65535], "same he promis'd me a chaine both one and": [0, 65535], "he promis'd me a chaine both one and other": [0, 65535], "promis'd me a chaine both one and other he": [0, 65535], "me a chaine both one and other he denies": [0, 65535], "a chaine both one and other he denies me": [0, 65535], "chaine both one and other he denies me now": [0, 65535], "both one and other he denies me now the": [0, 65535], "one and other he denies me now the reason": [0, 65535], "and other he denies me now the reason that": [0, 65535], "other he denies me now the reason that i": [0, 65535], "he denies me now the reason that i gather": [0, 65535], "denies me now the reason that i gather he": [0, 65535], "me now the reason that i gather he is": [0, 65535], "now the reason that i gather he is mad": [0, 65535], "the reason that i gather he is mad besides": [0, 65535], "reason that i gather he is mad besides this": [0, 65535], "that i gather he is mad besides this present": [0, 65535], "i gather he is mad besides this present instance": [0, 65535], "gather he is mad besides this present instance of": [0, 65535], "he is mad besides this present instance of his": [0, 65535], "is mad besides this present instance of his rage": [0, 65535], "mad besides this present instance of his rage is": [0, 65535], "besides this present instance of his rage is a": [0, 65535], "this present instance of his rage is a mad": [0, 65535], "present instance of his rage is a mad tale": [0, 65535], "instance of his rage is a mad tale he": [0, 65535], "of his rage is a mad tale he told": [0, 65535], "his rage is a mad tale he told to": [0, 65535], "rage is a mad tale he told to day": [0, 65535], "is a mad tale he told to day at": [0, 65535], "a mad tale he told to day at dinner": [0, 65535], "mad tale he told to day at dinner of": [0, 65535], "tale he told to day at dinner of his": [0, 65535], "he told to day at dinner of his owne": [0, 65535], "told to day at dinner of his owne doores": [0, 65535], "to day at dinner of his owne doores being": [0, 65535], "day at dinner of his owne doores being shut": [0, 65535], "at dinner of his owne doores being shut against": [0, 65535], "dinner of his owne doores being shut against his": [0, 65535], "of his owne doores being shut against his entrance": [0, 65535], "his owne doores being shut against his entrance belike": [0, 65535], "owne doores being shut against his entrance belike his": [0, 65535], "doores being shut against his entrance belike his wife": [0, 65535], "being shut against his entrance belike his wife acquainted": [0, 65535], "shut against his entrance belike his wife acquainted with": [0, 65535], "against his entrance belike his wife acquainted with his": [0, 65535], "his entrance belike his wife acquainted with his fits": [0, 65535], "entrance belike his wife acquainted with his fits on": [0, 65535], "belike his wife acquainted with his fits on purpose": [0, 65535], "his wife acquainted with his fits on purpose shut": [0, 65535], "wife acquainted with his fits on purpose shut the": [0, 65535], "acquainted with his fits on purpose shut the doores": [0, 65535], "with his fits on purpose shut the doores against": [0, 65535], "his fits on purpose shut the doores against his": [0, 65535], "fits on purpose shut the doores against his way": [0, 65535], "on purpose shut the doores against his way my": [0, 65535], "purpose shut the doores against his way my way": [0, 65535], "shut the doores against his way my way is": [0, 65535], "the doores against his way my way is now": [0, 65535], "doores against his way my way is now to": [0, 65535], "against his way my way is now to hie": [0, 65535], "his way my way is now to hie home": [0, 65535], "way my way is now to hie home to": [0, 65535], "my way is now to hie home to his": [0, 65535], "way is now to hie home to his house": [0, 65535], "is now to hie home to his house and": [0, 65535], "now to hie home to his house and tell": [0, 65535], "to hie home to his house and tell his": [0, 65535], "hie home to his house and tell his wife": [0, 65535], "home to his house and tell his wife that": [0, 65535], "to his house and tell his wife that being": [0, 65535], "his house and tell his wife that being lunaticke": [0, 65535], "house and tell his wife that being lunaticke he": [0, 65535], "and tell his wife that being lunaticke he rush'd": [0, 65535], "tell his wife that being lunaticke he rush'd into": [0, 65535], "his wife that being lunaticke he rush'd into my": [0, 65535], "wife that being lunaticke he rush'd into my house": [0, 65535], "that being lunaticke he rush'd into my house and": [0, 65535], "being lunaticke he rush'd into my house and tooke": [0, 65535], "lunaticke he rush'd into my house and tooke perforce": [0, 65535], "he rush'd into my house and tooke perforce my": [0, 65535], "rush'd into my house and tooke perforce my ring": [0, 65535], "into my house and tooke perforce my ring away": [0, 65535], "my house and tooke perforce my ring away this": [0, 65535], "house and tooke perforce my ring away this course": [0, 65535], "and tooke perforce my ring away this course i": [0, 65535], "tooke perforce my ring away this course i fittest": [0, 65535], "perforce my ring away this course i fittest choose": [0, 65535], "my ring away this course i fittest choose for": [0, 65535], "ring away this course i fittest choose for fortie": [0, 65535], "away this course i fittest choose for fortie duckets": [0, 65535], "this course i fittest choose for fortie duckets is": [0, 65535], "course i fittest choose for fortie duckets is too": [0, 65535], "i fittest choose for fortie duckets is too much": [0, 65535], "fittest choose for fortie duckets is too much to": [0, 65535], "choose for fortie duckets is too much to loose": [0, 65535], "for fortie duckets is too much to loose enter": [0, 65535], "fortie duckets is too much to loose enter antipholus": [0, 65535], "duckets is too much to loose enter antipholus ephes": [0, 65535], "is too much to loose enter antipholus ephes with": [0, 65535], "too much to loose enter antipholus ephes with a": [0, 65535], "much to loose enter antipholus ephes with a iailor": [0, 65535], "to loose enter antipholus ephes with a iailor an": [0, 65535], "loose enter antipholus ephes with a iailor an feare": [0, 65535], "enter antipholus ephes with a iailor an feare me": [0, 65535], "antipholus ephes with a iailor an feare me not": [0, 65535], "ephes with a iailor an feare me not man": [0, 65535], "with a iailor an feare me not man i": [0, 65535], "a iailor an feare me not man i will": [0, 65535], "iailor an feare me not man i will not": [0, 65535], "an feare me not man i will not breake": [0, 65535], "feare me not man i will not breake away": [0, 65535], "me not man i will not breake away ile": [0, 65535], "not man i will not breake away ile giue": [0, 65535], "man i will not breake away ile giue thee": [0, 65535], "i will not breake away ile giue thee ere": [0, 65535], "will not breake away ile giue thee ere i": [0, 65535], "not breake away ile giue thee ere i leaue": [0, 65535], "breake away ile giue thee ere i leaue thee": [0, 65535], "away ile giue thee ere i leaue thee so": [0, 65535], "ile giue thee ere i leaue thee so much": [0, 65535], "giue thee ere i leaue thee so much money": [0, 65535], "thee ere i leaue thee so much money to": [0, 65535], "ere i leaue thee so much money to warrant": [0, 65535], "i leaue thee so much money to warrant thee": [0, 65535], "leaue thee so much money to warrant thee as": [0, 65535], "thee so much money to warrant thee as i": [0, 65535], "so much money to warrant thee as i am": [0, 65535], "much money to warrant thee as i am rested": [0, 65535], "money to warrant thee as i am rested for": [0, 65535], "to warrant thee as i am rested for my": [0, 65535], "warrant thee as i am rested for my wife": [0, 65535], "thee as i am rested for my wife is": [0, 65535], "as i am rested for my wife is in": [0, 65535], "i am rested for my wife is in a": [0, 65535], "am rested for my wife is in a wayward": [0, 65535], "rested for my wife is in a wayward moode": [0, 65535], "for my wife is in a wayward moode to": [0, 65535], "my wife is in a wayward moode to day": [0, 65535], "wife is in a wayward moode to day and": [0, 65535], "is in a wayward moode to day and will": [0, 65535], "in a wayward moode to day and will not": [0, 65535], "a wayward moode to day and will not lightly": [0, 65535], "wayward moode to day and will not lightly trust": [0, 65535], "moode to day and will not lightly trust the": [0, 65535], "to day and will not lightly trust the messenger": [0, 65535], "day and will not lightly trust the messenger that": [0, 65535], "and will not lightly trust the messenger that i": [0, 65535], "will not lightly trust the messenger that i should": [0, 65535], "not lightly trust the messenger that i should be": [0, 65535], "lightly trust the messenger that i should be attach'd": [0, 65535], "trust the messenger that i should be attach'd in": [0, 65535], "the messenger that i should be attach'd in ephesus": [0, 65535], "messenger that i should be attach'd in ephesus i": [0, 65535], "that i should be attach'd in ephesus i tell": [0, 65535], "i should be attach'd in ephesus i tell you": [0, 65535], "should be attach'd in ephesus i tell you 'twill": [0, 65535], "be attach'd in ephesus i tell you 'twill sound": [0, 65535], "attach'd in ephesus i tell you 'twill sound harshly": [0, 65535], "in ephesus i tell you 'twill sound harshly in": [0, 65535], "ephesus i tell you 'twill sound harshly in her": [0, 65535], "i tell you 'twill sound harshly in her eares": [0, 65535], "tell you 'twill sound harshly in her eares enter": [0, 65535], "you 'twill sound harshly in her eares enter dromio": [0, 65535], "'twill sound harshly in her eares enter dromio eph": [0, 65535], "sound harshly in her eares enter dromio eph with": [0, 65535], "harshly in her eares enter dromio eph with a": [0, 65535], "in her eares enter dromio eph with a ropes": [0, 65535], "her eares enter dromio eph with a ropes end": [0, 65535], "eares enter dromio eph with a ropes end heere": [0, 65535], "enter dromio eph with a ropes end heere comes": [0, 65535], "dromio eph with a ropes end heere comes my": [0, 65535], "eph with a ropes end heere comes my man": [0, 65535], "with a ropes end heere comes my man i": [0, 65535], "a ropes end heere comes my man i thinke": [0, 65535], "ropes end heere comes my man i thinke he": [0, 65535], "end heere comes my man i thinke he brings": [0, 65535], "heere comes my man i thinke he brings the": [0, 65535], "comes my man i thinke he brings the monie": [0, 65535], "my man i thinke he brings the monie how": [0, 65535], "man i thinke he brings the monie how now": [0, 65535], "i thinke he brings the monie how now sir": [0, 65535], "thinke he brings the monie how now sir haue": [0, 65535], "he brings the monie how now sir haue you": [0, 65535], "brings the monie how now sir haue you that": [0, 65535], "the monie how now sir haue you that i": [0, 65535], "monie how now sir haue you that i sent": [0, 65535], "how now sir haue you that i sent you": [0, 65535], "now sir haue you that i sent you for": [0, 65535], "sir haue you that i sent you for e": [0, 65535], "haue you that i sent you for e dro": [0, 65535], "you that i sent you for e dro here's": [0, 65535], "that i sent you for e dro here's that": [0, 65535], "i sent you for e dro here's that i": [0, 65535], "sent you for e dro here's that i warrant": [0, 65535], "you for e dro here's that i warrant you": [0, 65535], "for e dro here's that i warrant you will": [0, 65535], "e dro here's that i warrant you will pay": [0, 65535], "dro here's that i warrant you will pay them": [0, 65535], "here's that i warrant you will pay them all": [0, 65535], "that i warrant you will pay them all anti": [0, 65535], "i warrant you will pay them all anti but": [0, 65535], "warrant you will pay them all anti but where's": [0, 65535], "you will pay them all anti but where's the": [0, 65535], "will pay them all anti but where's the money": [0, 65535], "pay them all anti but where's the money e": [0, 65535], "them all anti but where's the money e dro": [0, 65535], "all anti but where's the money e dro why": [0, 65535], "anti but where's the money e dro why sir": [0, 65535], "but where's the money e dro why sir i": [0, 65535], "where's the money e dro why sir i gaue": [0, 65535], "the money e dro why sir i gaue the": [0, 65535], "money e dro why sir i gaue the monie": [0, 65535], "e dro why sir i gaue the monie for": [0, 65535], "dro why sir i gaue the monie for the": [0, 65535], "why sir i gaue the monie for the rope": [0, 65535], "sir i gaue the monie for the rope ant": [0, 65535], "i gaue the monie for the rope ant fiue": [0, 65535], "gaue the monie for the rope ant fiue hundred": [0, 65535], "the monie for the rope ant fiue hundred duckets": [0, 65535], "monie for the rope ant fiue hundred duckets villaine": [0, 65535], "for the rope ant fiue hundred duckets villaine for": [0, 65535], "the rope ant fiue hundred duckets villaine for a": [0, 65535], "rope ant fiue hundred duckets villaine for a rope": [0, 65535], "ant fiue hundred duckets villaine for a rope e": [0, 65535], "fiue hundred duckets villaine for a rope e dro": [0, 65535], "hundred duckets villaine for a rope e dro ile": [0, 65535], "duckets villaine for a rope e dro ile serue": [0, 65535], "villaine for a rope e dro ile serue you": [0, 65535], "for a rope e dro ile serue you sir": [0, 65535], "a rope e dro ile serue you sir fiue": [0, 65535], "rope e dro ile serue you sir fiue hundred": [0, 65535], "e dro ile serue you sir fiue hundred at": [0, 65535], "dro ile serue you sir fiue hundred at the": [0, 65535], "ile serue you sir fiue hundred at the rate": [0, 65535], "serue you sir fiue hundred at the rate ant": [0, 65535], "you sir fiue hundred at the rate ant to": [0, 65535], "sir fiue hundred at the rate ant to what": [0, 65535], "fiue hundred at the rate ant to what end": [0, 65535], "hundred at the rate ant to what end did": [0, 65535], "at the rate ant to what end did i": [0, 65535], "the rate ant to what end did i bid": [0, 65535], "rate ant to what end did i bid thee": [0, 65535], "ant to what end did i bid thee hie": [0, 65535], "to what end did i bid thee hie thee": [0, 65535], "what end did i bid thee hie thee home": [0, 65535], "end did i bid thee hie thee home e": [0, 65535], "did i bid thee hie thee home e dro": [0, 65535], "i bid thee hie thee home e dro to": [0, 65535], "bid thee hie thee home e dro to a": [0, 65535], "thee hie thee home e dro to a ropes": [0, 65535], "hie thee home e dro to a ropes end": [0, 65535], "thee home e dro to a ropes end sir": [0, 65535], "home e dro to a ropes end sir and": [0, 65535], "e dro to a ropes end sir and to": [0, 65535], "dro to a ropes end sir and to that": [0, 65535], "to a ropes end sir and to that end": [0, 65535], "a ropes end sir and to that end am": [0, 65535], "ropes end sir and to that end am i": [0, 65535], "end sir and to that end am i re": [0, 65535], "sir and to that end am i re turn'd": [0, 65535], "and to that end am i re turn'd ant": [0, 65535], "to that end am i re turn'd ant and": [0, 65535], "that end am i re turn'd ant and to": [0, 65535], "end am i re turn'd ant and to that": [0, 65535], "am i re turn'd ant and to that end": [0, 65535], "i re turn'd ant and to that end sir": [0, 65535], "re turn'd ant and to that end sir i": [0, 65535], "turn'd ant and to that end sir i will": [0, 65535], "ant and to that end sir i will welcome": [0, 65535], "and to that end sir i will welcome you": [0, 65535], "to that end sir i will welcome you offi": [0, 65535], "that end sir i will welcome you offi good": [0, 65535], "end sir i will welcome you offi good sir": [0, 65535], "sir i will welcome you offi good sir be": [0, 65535], "i will welcome you offi good sir be patient": [0, 65535], "will welcome you offi good sir be patient e": [0, 65535], "welcome you offi good sir be patient e dro": [0, 65535], "you offi good sir be patient e dro nay": [0, 65535], "offi good sir be patient e dro nay 'tis": [0, 65535], "good sir be patient e dro nay 'tis for": [0, 65535], "sir be patient e dro nay 'tis for me": [0, 65535], "be patient e dro nay 'tis for me to": [0, 65535], "patient e dro nay 'tis for me to be": [0, 65535], "e dro nay 'tis for me to be patient": [0, 65535], "dro nay 'tis for me to be patient i": [0, 65535], "nay 'tis for me to be patient i am": [0, 65535], "'tis for me to be patient i am in": [0, 65535], "for me to be patient i am in aduersitie": [0, 65535], "me to be patient i am in aduersitie offi": [0, 65535], "to be patient i am in aduersitie offi good": [0, 65535], "be patient i am in aduersitie offi good now": [0, 65535], "patient i am in aduersitie offi good now hold": [0, 65535], "i am in aduersitie offi good now hold thy": [0, 65535], "am in aduersitie offi good now hold thy tongue": [0, 65535], "in aduersitie offi good now hold thy tongue e": [0, 65535], "aduersitie offi good now hold thy tongue e dro": [0, 65535], "offi good now hold thy tongue e dro nay": [0, 65535], "good now hold thy tongue e dro nay rather": [0, 65535], "now hold thy tongue e dro nay rather perswade": [0, 65535], "hold thy tongue e dro nay rather perswade him": [0, 65535], "thy tongue e dro nay rather perswade him to": [0, 65535], "tongue e dro nay rather perswade him to hold": [0, 65535], "e dro nay rather perswade him to hold his": [0, 65535], "dro nay rather perswade him to hold his hands": [0, 65535], "nay rather perswade him to hold his hands anti": [0, 65535], "rather perswade him to hold his hands anti thou": [0, 65535], "perswade him to hold his hands anti thou whoreson": [0, 65535], "him to hold his hands anti thou whoreson senselesse": [0, 65535], "to hold his hands anti thou whoreson senselesse villaine": [0, 65535], "hold his hands anti thou whoreson senselesse villaine e": [0, 65535], "his hands anti thou whoreson senselesse villaine e dro": [0, 65535], "hands anti thou whoreson senselesse villaine e dro i": [0, 65535], "anti thou whoreson senselesse villaine e dro i would": [0, 65535], "thou whoreson senselesse villaine e dro i would i": [0, 65535], "whoreson senselesse villaine e dro i would i were": [0, 65535], "senselesse villaine e dro i would i were senselesse": [0, 65535], "villaine e dro i would i were senselesse sir": [0, 65535], "e dro i would i were senselesse sir that": [0, 65535], "dro i would i were senselesse sir that i": [0, 65535], "i would i were senselesse sir that i might": [0, 65535], "would i were senselesse sir that i might not": [0, 65535], "i were senselesse sir that i might not feele": [0, 65535], "were senselesse sir that i might not feele your": [0, 65535], "senselesse sir that i might not feele your blowes": [0, 65535], "sir that i might not feele your blowes anti": [0, 65535], "that i might not feele your blowes anti thou": [0, 65535], "i might not feele your blowes anti thou art": [0, 65535], "might not feele your blowes anti thou art sensible": [0, 65535], "not feele your blowes anti thou art sensible in": [0, 65535], "feele your blowes anti thou art sensible in nothing": [0, 65535], "your blowes anti thou art sensible in nothing but": [0, 65535], "blowes anti thou art sensible in nothing but blowes": [0, 65535], "anti thou art sensible in nothing but blowes and": [0, 65535], "thou art sensible in nothing but blowes and so": [0, 65535], "art sensible in nothing but blowes and so is": [0, 65535], "sensible in nothing but blowes and so is an": [0, 65535], "in nothing but blowes and so is an asse": [0, 65535], "nothing but blowes and so is an asse e": [0, 65535], "but blowes and so is an asse e dro": [0, 65535], "blowes and so is an asse e dro i": [0, 65535], "and so is an asse e dro i am": [0, 65535], "so is an asse e dro i am an": [0, 65535], "is an asse e dro i am an asse": [0, 65535], "an asse e dro i am an asse indeede": [0, 65535], "asse e dro i am an asse indeede you": [0, 65535], "e dro i am an asse indeede you may": [0, 65535], "dro i am an asse indeede you may prooue": [0, 65535], "i am an asse indeede you may prooue it": [0, 65535], "am an asse indeede you may prooue it by": [0, 65535], "an asse indeede you may prooue it by my": [0, 65535], "asse indeede you may prooue it by my long": [0, 65535], "indeede you may prooue it by my long eares": [0, 65535], "you may prooue it by my long eares i": [0, 65535], "may prooue it by my long eares i haue": [0, 65535], "prooue it by my long eares i haue serued": [0, 65535], "it by my long eares i haue serued him": [0, 65535], "by my long eares i haue serued him from": [0, 65535], "my long eares i haue serued him from the": [0, 65535], "long eares i haue serued him from the houre": [0, 65535], "eares i haue serued him from the houre of": [0, 65535], "i haue serued him from the houre of my": [0, 65535], "haue serued him from the houre of my natiuitie": [0, 65535], "serued him from the houre of my natiuitie to": [0, 65535], "him from the houre of my natiuitie to this": [0, 65535], "from the houre of my natiuitie to this instant": [0, 65535], "the houre of my natiuitie to this instant and": [0, 65535], "houre of my natiuitie to this instant and haue": [0, 65535], "of my natiuitie to this instant and haue nothing": [0, 65535], "my natiuitie to this instant and haue nothing at": [0, 65535], "natiuitie to this instant and haue nothing at his": [0, 65535], "to this instant and haue nothing at his hands": [0, 65535], "this instant and haue nothing at his hands for": [0, 65535], "instant and haue nothing at his hands for my": [0, 65535], "and haue nothing at his hands for my seruice": [0, 65535], "haue nothing at his hands for my seruice but": [0, 65535], "nothing at his hands for my seruice but blowes": [0, 65535], "at his hands for my seruice but blowes when": [0, 65535], "his hands for my seruice but blowes when i": [0, 65535], "hands for my seruice but blowes when i am": [0, 65535], "for my seruice but blowes when i am cold": [0, 65535], "my seruice but blowes when i am cold he": [0, 65535], "seruice but blowes when i am cold he heates": [0, 65535], "but blowes when i am cold he heates me": [0, 65535], "blowes when i am cold he heates me with": [0, 65535], "when i am cold he heates me with beating": [0, 65535], "i am cold he heates me with beating when": [0, 65535], "am cold he heates me with beating when i": [0, 65535], "cold he heates me with beating when i am": [0, 65535], "he heates me with beating when i am warme": [0, 65535], "heates me with beating when i am warme he": [0, 65535], "me with beating when i am warme he cooles": [0, 65535], "with beating when i am warme he cooles me": [0, 65535], "beating when i am warme he cooles me with": [0, 65535], "when i am warme he cooles me with beating": [0, 65535], "i am warme he cooles me with beating i": [0, 65535], "am warme he cooles me with beating i am": [0, 65535], "warme he cooles me with beating i am wak'd": [0, 65535], "he cooles me with beating i am wak'd with": [0, 65535], "cooles me with beating i am wak'd with it": [0, 65535], "me with beating i am wak'd with it when": [0, 65535], "with beating i am wak'd with it when i": [0, 65535], "beating i am wak'd with it when i sleepe": [0, 65535], "i am wak'd with it when i sleepe rais'd": [0, 65535], "am wak'd with it when i sleepe rais'd with": [0, 65535], "wak'd with it when i sleepe rais'd with it": [0, 65535], "with it when i sleepe rais'd with it when": [0, 65535], "it when i sleepe rais'd with it when i": [0, 65535], "when i sleepe rais'd with it when i sit": [0, 65535], "i sleepe rais'd with it when i sit driuen": [0, 65535], "sleepe rais'd with it when i sit driuen out": [0, 65535], "rais'd with it when i sit driuen out of": [0, 65535], "with it when i sit driuen out of doores": [0, 65535], "it when i sit driuen out of doores with": [0, 65535], "when i sit driuen out of doores with it": [0, 65535], "i sit driuen out of doores with it when": [0, 65535], "sit driuen out of doores with it when i": [0, 65535], "driuen out of doores with it when i goe": [0, 65535], "out of doores with it when i goe from": [0, 65535], "of doores with it when i goe from home": [0, 65535], "doores with it when i goe from home welcom'd": [0, 65535], "with it when i goe from home welcom'd home": [0, 65535], "it when i goe from home welcom'd home with": [0, 65535], "when i goe from home welcom'd home with it": [0, 65535], "i goe from home welcom'd home with it when": [0, 65535], "goe from home welcom'd home with it when i": [0, 65535], "from home welcom'd home with it when i returne": [0, 65535], "home welcom'd home with it when i returne nay": [0, 65535], "welcom'd home with it when i returne nay i": [0, 65535], "home with it when i returne nay i beare": [0, 65535], "with it when i returne nay i beare it": [0, 65535], "it when i returne nay i beare it on": [0, 65535], "when i returne nay i beare it on my": [0, 65535], "i returne nay i beare it on my shoulders": [0, 65535], "returne nay i beare it on my shoulders as": [0, 65535], "nay i beare it on my shoulders as a": [0, 65535], "i beare it on my shoulders as a begger": [0, 65535], "beare it on my shoulders as a begger woont": [0, 65535], "it on my shoulders as a begger woont her": [0, 65535], "on my shoulders as a begger woont her brat": [0, 65535], "my shoulders as a begger woont her brat and": [0, 65535], "shoulders as a begger woont her brat and i": [0, 65535], "as a begger woont her brat and i thinke": [0, 65535], "a begger woont her brat and i thinke when": [0, 65535], "begger woont her brat and i thinke when he": [0, 65535], "woont her brat and i thinke when he hath": [0, 65535], "her brat and i thinke when he hath lam'd": [0, 65535], "brat and i thinke when he hath lam'd me": [0, 65535], "and i thinke when he hath lam'd me i": [0, 65535], "i thinke when he hath lam'd me i shall": [0, 65535], "thinke when he hath lam'd me i shall begge": [0, 65535], "when he hath lam'd me i shall begge with": [0, 65535], "he hath lam'd me i shall begge with it": [0, 65535], "hath lam'd me i shall begge with it from": [0, 65535], "lam'd me i shall begge with it from doore": [0, 65535], "me i shall begge with it from doore to": [0, 65535], "i shall begge with it from doore to doore": [0, 65535], "shall begge with it from doore to doore enter": [0, 65535], "begge with it from doore to doore enter adriana": [0, 65535], "with it from doore to doore enter adriana luciana": [0, 65535], "it from doore to doore enter adriana luciana courtizan": [0, 65535], "from doore to doore enter adriana luciana courtizan and": [0, 65535], "doore to doore enter adriana luciana courtizan and a": [0, 65535], "to doore enter adriana luciana courtizan and a schoolemaster": [0, 65535], "doore enter adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "enter adriana luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd pinch ant": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch ant come": [0, 65535], "courtizan and a schoolemaster call'd pinch ant come goe": [0, 65535], "and a schoolemaster call'd pinch ant come goe along": [0, 65535], "a schoolemaster call'd pinch ant come goe along my": [0, 65535], "schoolemaster call'd pinch ant come goe along my wife": [0, 65535], "call'd pinch ant come goe along my wife is": [0, 65535], "pinch ant come goe along my wife is comming": [0, 65535], "ant come goe along my wife is comming yonder": [0, 65535], "come goe along my wife is comming yonder e": [0, 65535], "goe along my wife is comming yonder e dro": [0, 65535], "along my wife is comming yonder e dro mistris": [0, 65535], "my wife is comming yonder e dro mistris respice": [0, 65535], "wife is comming yonder e dro mistris respice finem": [0, 65535], "is comming yonder e dro mistris respice finem respect": [0, 65535], "comming yonder e dro mistris respice finem respect your": [0, 65535], "yonder e dro mistris respice finem respect your end": [0, 65535], "e dro mistris respice finem respect your end or": [0, 65535], "dro mistris respice finem respect your end or rather": [0, 65535], "mistris respice finem respect your end or rather the": [0, 65535], "respice finem respect your end or rather the prophesie": [0, 65535], "finem respect your end or rather the prophesie like": [0, 65535], "respect your end or rather the prophesie like the": [0, 65535], "your end or rather the prophesie like the parrat": [0, 65535], "end or rather the prophesie like the parrat beware": [0, 65535], "or rather the prophesie like the parrat beware the": [0, 65535], "rather the prophesie like the parrat beware the ropes": [0, 65535], "the prophesie like the parrat beware the ropes end": [0, 65535], "prophesie like the parrat beware the ropes end anti": [0, 65535], "like the parrat beware the ropes end anti wilt": [0, 65535], "the parrat beware the ropes end anti wilt thou": [0, 65535], "parrat beware the ropes end anti wilt thou still": [0, 65535], "beware the ropes end anti wilt thou still talke": [0, 65535], "the ropes end anti wilt thou still talke beats": [0, 65535], "ropes end anti wilt thou still talke beats dro": [0, 65535], "end anti wilt thou still talke beats dro curt": [0, 65535], "anti wilt thou still talke beats dro curt how": [0, 65535], "wilt thou still talke beats dro curt how say": [0, 65535], "thou still talke beats dro curt how say you": [0, 65535], "still talke beats dro curt how say you now": [0, 65535], "talke beats dro curt how say you now is": [0, 65535], "beats dro curt how say you now is not": [0, 65535], "dro curt how say you now is not your": [0, 65535], "curt how say you now is not your husband": [0, 65535], "how say you now is not your husband mad": [0, 65535], "say you now is not your husband mad adri": [0, 65535], "you now is not your husband mad adri his": [0, 65535], "now is not your husband mad adri his inciuility": [0, 65535], "is not your husband mad adri his inciuility confirmes": [0, 65535], "not your husband mad adri his inciuility confirmes no": [0, 65535], "your husband mad adri his inciuility confirmes no lesse": [0, 65535], "husband mad adri his inciuility confirmes no lesse good": [0, 65535], "mad adri his inciuility confirmes no lesse good doctor": [0, 65535], "adri his inciuility confirmes no lesse good doctor pinch": [0, 65535], "his inciuility confirmes no lesse good doctor pinch you": [0, 65535], "inciuility confirmes no lesse good doctor pinch you are": [0, 65535], "confirmes no lesse good doctor pinch you are a": [0, 65535], "no lesse good doctor pinch you are a coniurer": [0, 65535], "lesse good doctor pinch you are a coniurer establish": [0, 65535], "good doctor pinch you are a coniurer establish him": [0, 65535], "doctor pinch you are a coniurer establish him in": [0, 65535], "pinch you are a coniurer establish him in his": [0, 65535], "you are a coniurer establish him in his true": [0, 65535], "are a coniurer establish him in his true sence": [0, 65535], "a coniurer establish him in his true sence againe": [0, 65535], "coniurer establish him in his true sence againe and": [0, 65535], "establish him in his true sence againe and i": [0, 65535], "him in his true sence againe and i will": [0, 65535], "in his true sence againe and i will please": [0, 65535], "his true sence againe and i will please you": [0, 65535], "true sence againe and i will please you what": [0, 65535], "sence againe and i will please you what you": [0, 65535], "againe and i will please you what you will": [0, 65535], "and i will please you what you will demand": [0, 65535], "i will please you what you will demand luc": [0, 65535], "will please you what you will demand luc alas": [0, 65535], "please you what you will demand luc alas how": [0, 65535], "you what you will demand luc alas how fiery": [0, 65535], "what you will demand luc alas how fiery and": [0, 65535], "you will demand luc alas how fiery and how": [0, 65535], "will demand luc alas how fiery and how sharpe": [0, 65535], "demand luc alas how fiery and how sharpe he": [0, 65535], "luc alas how fiery and how sharpe he lookes": [0, 65535], "alas how fiery and how sharpe he lookes cur": [0, 65535], "how fiery and how sharpe he lookes cur marke": [0, 65535], "fiery and how sharpe he lookes cur marke how": [0, 65535], "and how sharpe he lookes cur marke how he": [0, 65535], "how sharpe he lookes cur marke how he trembles": [0, 65535], "sharpe he lookes cur marke how he trembles in": [0, 65535], "he lookes cur marke how he trembles in his": [0, 65535], "lookes cur marke how he trembles in his extasie": [0, 65535], "cur marke how he trembles in his extasie pinch": [0, 65535], "marke how he trembles in his extasie pinch giue": [0, 65535], "how he trembles in his extasie pinch giue me": [0, 65535], "he trembles in his extasie pinch giue me your": [0, 65535], "trembles in his extasie pinch giue me your hand": [0, 65535], "in his extasie pinch giue me your hand and": [0, 65535], "his extasie pinch giue me your hand and let": [0, 65535], "extasie pinch giue me your hand and let mee": [0, 65535], "pinch giue me your hand and let mee feele": [0, 65535], "giue me your hand and let mee feele your": [0, 65535], "me your hand and let mee feele your pulse": [0, 65535], "your hand and let mee feele your pulse ant": [0, 65535], "hand and let mee feele your pulse ant there": [0, 65535], "and let mee feele your pulse ant there is": [0, 65535], "let mee feele your pulse ant there is my": [0, 65535], "mee feele your pulse ant there is my hand": [0, 65535], "feele your pulse ant there is my hand and": [0, 65535], "your pulse ant there is my hand and let": [0, 65535], "pulse ant there is my hand and let it": [0, 65535], "ant there is my hand and let it feele": [0, 65535], "there is my hand and let it feele your": [0, 65535], "is my hand and let it feele your eare": [0, 65535], "my hand and let it feele your eare pinch": [0, 65535], "hand and let it feele your eare pinch i": [0, 65535], "and let it feele your eare pinch i charge": [0, 65535], "let it feele your eare pinch i charge thee": [0, 65535], "it feele your eare pinch i charge thee sathan": [0, 65535], "feele your eare pinch i charge thee sathan hous'd": [0, 65535], "your eare pinch i charge thee sathan hous'd within": [0, 65535], "eare pinch i charge thee sathan hous'd within this": [0, 65535], "pinch i charge thee sathan hous'd within this man": [0, 65535], "i charge thee sathan hous'd within this man to": [0, 65535], "charge thee sathan hous'd within this man to yeeld": [0, 65535], "thee sathan hous'd within this man to yeeld possession": [0, 65535], "sathan hous'd within this man to yeeld possession to": [0, 65535], "hous'd within this man to yeeld possession to my": [0, 65535], "within this man to yeeld possession to my holie": [0, 65535], "this man to yeeld possession to my holie praiers": [0, 65535], "man to yeeld possession to my holie praiers and": [0, 65535], "to yeeld possession to my holie praiers and to": [0, 65535], "yeeld possession to my holie praiers and to thy": [0, 65535], "possession to my holie praiers and to thy state": [0, 65535], "to my holie praiers and to thy state of": [0, 65535], "my holie praiers and to thy state of darknesse": [0, 65535], "holie praiers and to thy state of darknesse hie": [0, 65535], "praiers and to thy state of darknesse hie thee": [0, 65535], "and to thy state of darknesse hie thee straight": [0, 65535], "to thy state of darknesse hie thee straight i": [0, 65535], "thy state of darknesse hie thee straight i coniure": [0, 65535], "state of darknesse hie thee straight i coniure thee": [0, 65535], "of darknesse hie thee straight i coniure thee by": [0, 65535], "darknesse hie thee straight i coniure thee by all": [0, 65535], "hie thee straight i coniure thee by all the": [0, 65535], "thee straight i coniure thee by all the saints": [0, 65535], "straight i coniure thee by all the saints in": [0, 65535], "i coniure thee by all the saints in heauen": [0, 65535], "coniure thee by all the saints in heauen anti": [0, 65535], "thee by all the saints in heauen anti peace": [0, 65535], "by all the saints in heauen anti peace doting": [0, 65535], "all the saints in heauen anti peace doting wizard": [0, 65535], "the saints in heauen anti peace doting wizard peace": [0, 65535], "saints in heauen anti peace doting wizard peace i": [0, 65535], "in heauen anti peace doting wizard peace i am": [0, 65535], "heauen anti peace doting wizard peace i am not": [0, 65535], "anti peace doting wizard peace i am not mad": [0, 65535], "peace doting wizard peace i am not mad adr": [0, 65535], "doting wizard peace i am not mad adr oh": [0, 65535], "wizard peace i am not mad adr oh that": [0, 65535], "peace i am not mad adr oh that thou": [0, 65535], "i am not mad adr oh that thou wer't": [0, 65535], "am not mad adr oh that thou wer't not": [0, 65535], "not mad adr oh that thou wer't not poore": [0, 65535], "mad adr oh that thou wer't not poore distressed": [0, 65535], "adr oh that thou wer't not poore distressed soule": [0, 65535], "oh that thou wer't not poore distressed soule anti": [0, 65535], "that thou wer't not poore distressed soule anti you": [0, 65535], "thou wer't not poore distressed soule anti you minion": [0, 65535], "wer't not poore distressed soule anti you minion you": [0, 65535], "not poore distressed soule anti you minion you are": [0, 65535], "poore distressed soule anti you minion you are these": [0, 65535], "distressed soule anti you minion you are these your": [0, 65535], "soule anti you minion you are these your customers": [0, 65535], "anti you minion you are these your customers did": [0, 65535], "you minion you are these your customers did this": [0, 65535], "minion you are these your customers did this companion": [0, 65535], "you are these your customers did this companion with": [0, 65535], "are these your customers did this companion with the": [0, 65535], "these your customers did this companion with the saffron": [0, 65535], "your customers did this companion with the saffron face": [0, 65535], "customers did this companion with the saffron face reuell": [0, 65535], "did this companion with the saffron face reuell and": [0, 65535], "this companion with the saffron face reuell and feast": [0, 65535], "companion with the saffron face reuell and feast it": [0, 65535], "with the saffron face reuell and feast it at": [0, 65535], "the saffron face reuell and feast it at my": [0, 65535], "saffron face reuell and feast it at my house": [0, 65535], "face reuell and feast it at my house to": [0, 65535], "reuell and feast it at my house to day": [0, 65535], "and feast it at my house to day whil'st": [0, 65535], "feast it at my house to day whil'st vpon": [0, 65535], "it at my house to day whil'st vpon me": [0, 65535], "at my house to day whil'st vpon me the": [0, 65535], "my house to day whil'st vpon me the guiltie": [0, 65535], "house to day whil'st vpon me the guiltie doores": [0, 65535], "to day whil'st vpon me the guiltie doores were": [0, 65535], "day whil'st vpon me the guiltie doores were shut": [0, 65535], "whil'st vpon me the guiltie doores were shut and": [0, 65535], "vpon me the guiltie doores were shut and i": [0, 65535], "me the guiltie doores were shut and i denied": [0, 65535], "the guiltie doores were shut and i denied to": [0, 65535], "guiltie doores were shut and i denied to enter": [0, 65535], "doores were shut and i denied to enter in": [0, 65535], "were shut and i denied to enter in my": [0, 65535], "shut and i denied to enter in my house": [0, 65535], "and i denied to enter in my house adr": [0, 65535], "i denied to enter in my house adr o": [0, 65535], "denied to enter in my house adr o husband": [0, 65535], "to enter in my house adr o husband god": [0, 65535], "enter in my house adr o husband god doth": [0, 65535], "in my house adr o husband god doth know": [0, 65535], "my house adr o husband god doth know you": [0, 65535], "house adr o husband god doth know you din'd": [0, 65535], "adr o husband god doth know you din'd at": [0, 65535], "o husband god doth know you din'd at home": [0, 65535], "husband god doth know you din'd at home where": [0, 65535], "god doth know you din'd at home where would": [0, 65535], "doth know you din'd at home where would you": [0, 65535], "know you din'd at home where would you had": [0, 65535], "you din'd at home where would you had remain'd": [0, 65535], "din'd at home where would you had remain'd vntill": [0, 65535], "at home where would you had remain'd vntill this": [0, 65535], "home where would you had remain'd vntill this time": [0, 65535], "where would you had remain'd vntill this time free": [0, 65535], "would you had remain'd vntill this time free from": [0, 65535], "you had remain'd vntill this time free from these": [0, 65535], "had remain'd vntill this time free from these slanders": [0, 65535], "remain'd vntill this time free from these slanders and": [0, 65535], "vntill this time free from these slanders and this": [0, 65535], "this time free from these slanders and this open": [0, 65535], "time free from these slanders and this open shame": [0, 65535], "free from these slanders and this open shame anti": [0, 65535], "from these slanders and this open shame anti din'd": [0, 65535], "these slanders and this open shame anti din'd at": [0, 65535], "slanders and this open shame anti din'd at home": [0, 65535], "and this open shame anti din'd at home thou": [0, 65535], "this open shame anti din'd at home thou villaine": [0, 65535], "open shame anti din'd at home thou villaine what": [0, 65535], "shame anti din'd at home thou villaine what sayest": [0, 65535], "anti din'd at home thou villaine what sayest thou": [0, 65535], "din'd at home thou villaine what sayest thou dro": [0, 65535], "at home thou villaine what sayest thou dro sir": [0, 65535], "home thou villaine what sayest thou dro sir sooth": [0, 65535], "thou villaine what sayest thou dro sir sooth to": [0, 65535], "villaine what sayest thou dro sir sooth to say": [0, 65535], "what sayest thou dro sir sooth to say you": [0, 65535], "sayest thou dro sir sooth to say you did": [0, 65535], "thou dro sir sooth to say you did not": [0, 65535], "dro sir sooth to say you did not dine": [0, 65535], "sir sooth to say you did not dine at": [0, 65535], "sooth to say you did not dine at home": [0, 65535], "to say you did not dine at home ant": [0, 65535], "say you did not dine at home ant were": [0, 65535], "you did not dine at home ant were not": [0, 65535], "did not dine at home ant were not my": [0, 65535], "not dine at home ant were not my doores": [0, 65535], "dine at home ant were not my doores lockt": [0, 65535], "at home ant were not my doores lockt vp": [0, 65535], "home ant were not my doores lockt vp and": [0, 65535], "ant were not my doores lockt vp and i": [0, 65535], "were not my doores lockt vp and i shut": [0, 65535], "not my doores lockt vp and i shut out": [0, 65535], "my doores lockt vp and i shut out dro": [0, 65535], "doores lockt vp and i shut out dro perdie": [0, 65535], "lockt vp and i shut out dro perdie your": [0, 65535], "vp and i shut out dro perdie your doores": [0, 65535], "and i shut out dro perdie your doores were": [0, 65535], "i shut out dro perdie your doores were lockt": [0, 65535], "shut out dro perdie your doores were lockt and": [0, 65535], "out dro perdie your doores were lockt and you": [0, 65535], "dro perdie your doores were lockt and you shut": [0, 65535], "perdie your doores were lockt and you shut out": [0, 65535], "your doores were lockt and you shut out anti": [0, 65535], "doores were lockt and you shut out anti and": [0, 65535], "were lockt and you shut out anti and did": [0, 65535], "lockt and you shut out anti and did not": [0, 65535], "and you shut out anti and did not she": [0, 65535], "you shut out anti and did not she her": [0, 65535], "shut out anti and did not she her selfe": [0, 65535], "out anti and did not she her selfe reuile": [0, 65535], "anti and did not she her selfe reuile me": [0, 65535], "and did not she her selfe reuile me there": [0, 65535], "did not she her selfe reuile me there dro": [0, 65535], "not she her selfe reuile me there dro sans": [0, 65535], "she her selfe reuile me there dro sans fable": [0, 65535], "her selfe reuile me there dro sans fable she": [0, 65535], "selfe reuile me there dro sans fable she her": [0, 65535], "reuile me there dro sans fable she her selfe": [0, 65535], "me there dro sans fable she her selfe reuil'd": [0, 65535], "there dro sans fable she her selfe reuil'd you": [0, 65535], "dro sans fable she her selfe reuil'd you there": [0, 65535], "sans fable she her selfe reuil'd you there anti": [0, 65535], "fable she her selfe reuil'd you there anti did": [0, 65535], "she her selfe reuil'd you there anti did not": [0, 65535], "her selfe reuil'd you there anti did not her": [0, 65535], "selfe reuil'd you there anti did not her kitchen": [0, 65535], "reuil'd you there anti did not her kitchen maide": [0, 65535], "you there anti did not her kitchen maide raile": [0, 65535], "there anti did not her kitchen maide raile taunt": [0, 65535], "anti did not her kitchen maide raile taunt and": [0, 65535], "did not her kitchen maide raile taunt and scorne": [0, 65535], "not her kitchen maide raile taunt and scorne me": [0, 65535], "her kitchen maide raile taunt and scorne me dro": [0, 65535], "kitchen maide raile taunt and scorne me dro certis": [0, 65535], "maide raile taunt and scorne me dro certis she": [0, 65535], "raile taunt and scorne me dro certis she did": [0, 65535], "taunt and scorne me dro certis she did the": [0, 65535], "and scorne me dro certis she did the kitchin": [0, 65535], "scorne me dro certis she did the kitchin vestall": [0, 65535], "me dro certis she did the kitchin vestall scorn'd": [0, 65535], "dro certis she did the kitchin vestall scorn'd you": [0, 65535], "certis she did the kitchin vestall scorn'd you ant": [0, 65535], "she did the kitchin vestall scorn'd you ant and": [0, 65535], "did the kitchin vestall scorn'd you ant and did": [0, 65535], "the kitchin vestall scorn'd you ant and did not": [0, 65535], "kitchin vestall scorn'd you ant and did not i": [0, 65535], "vestall scorn'd you ant and did not i in": [0, 65535], "scorn'd you ant and did not i in rage": [0, 65535], "you ant and did not i in rage depart": [0, 65535], "ant and did not i in rage depart from": [0, 65535], "and did not i in rage depart from thence": [0, 65535], "did not i in rage depart from thence dro": [0, 65535], "not i in rage depart from thence dro in": [0, 65535], "i in rage depart from thence dro in veritie": [0, 65535], "in rage depart from thence dro in veritie you": [0, 65535], "rage depart from thence dro in veritie you did": [0, 65535], "depart from thence dro in veritie you did my": [0, 65535], "from thence dro in veritie you did my bones": [0, 65535], "thence dro in veritie you did my bones beares": [0, 65535], "dro in veritie you did my bones beares witnesse": [0, 65535], "in veritie you did my bones beares witnesse that": [0, 65535], "veritie you did my bones beares witnesse that since": [0, 65535], "you did my bones beares witnesse that since haue": [0, 65535], "did my bones beares witnesse that since haue felt": [0, 65535], "my bones beares witnesse that since haue felt the": [0, 65535], "bones beares witnesse that since haue felt the vigor": [0, 65535], "beares witnesse that since haue felt the vigor of": [0, 65535], "witnesse that since haue felt the vigor of his": [0, 65535], "that since haue felt the vigor of his rage": [0, 65535], "since haue felt the vigor of his rage adr": [0, 65535], "haue felt the vigor of his rage adr is't": [0, 65535], "felt the vigor of his rage adr is't good": [0, 65535], "the vigor of his rage adr is't good to": [0, 65535], "vigor of his rage adr is't good to sooth": [0, 65535], "of his rage adr is't good to sooth him": [0, 65535], "his rage adr is't good to sooth him in": [0, 65535], "rage adr is't good to sooth him in these": [0, 65535], "adr is't good to sooth him in these contraries": [0, 65535], "is't good to sooth him in these contraries pinch": [0, 65535], "good to sooth him in these contraries pinch it": [0, 65535], "to sooth him in these contraries pinch it is": [0, 65535], "sooth him in these contraries pinch it is no": [0, 65535], "him in these contraries pinch it is no shame": [0, 65535], "in these contraries pinch it is no shame the": [0, 65535], "these contraries pinch it is no shame the fellow": [0, 65535], "contraries pinch it is no shame the fellow finds": [0, 65535], "pinch it is no shame the fellow finds his": [0, 65535], "it is no shame the fellow finds his vaine": [0, 65535], "is no shame the fellow finds his vaine and": [0, 65535], "no shame the fellow finds his vaine and yeelding": [0, 65535], "shame the fellow finds his vaine and yeelding to": [0, 65535], "the fellow finds his vaine and yeelding to him": [0, 65535], "fellow finds his vaine and yeelding to him humors": [0, 65535], "finds his vaine and yeelding to him humors well": [0, 65535], "his vaine and yeelding to him humors well his": [0, 65535], "vaine and yeelding to him humors well his frensie": [0, 65535], "and yeelding to him humors well his frensie ant": [0, 65535], "yeelding to him humors well his frensie ant thou": [0, 65535], "to him humors well his frensie ant thou hast": [0, 65535], "him humors well his frensie ant thou hast subborn'd": [0, 65535], "humors well his frensie ant thou hast subborn'd the": [0, 65535], "well his frensie ant thou hast subborn'd the goldsmith": [0, 65535], "his frensie ant thou hast subborn'd the goldsmith to": [0, 65535], "frensie ant thou hast subborn'd the goldsmith to arrest": [0, 65535], "ant thou hast subborn'd the goldsmith to arrest mee": [0, 65535], "thou hast subborn'd the goldsmith to arrest mee adr": [0, 65535], "hast subborn'd the goldsmith to arrest mee adr alas": [0, 65535], "subborn'd the goldsmith to arrest mee adr alas i": [0, 65535], "the goldsmith to arrest mee adr alas i sent": [0, 65535], "goldsmith to arrest mee adr alas i sent you": [0, 65535], "to arrest mee adr alas i sent you monie": [0, 65535], "arrest mee adr alas i sent you monie to": [0, 65535], "mee adr alas i sent you monie to redeeme": [0, 65535], "adr alas i sent you monie to redeeme you": [0, 65535], "alas i sent you monie to redeeme you by": [0, 65535], "i sent you monie to redeeme you by dromio": [0, 65535], "sent you monie to redeeme you by dromio heere": [0, 65535], "you monie to redeeme you by dromio heere who": [0, 65535], "monie to redeeme you by dromio heere who came": [0, 65535], "to redeeme you by dromio heere who came in": [0, 65535], "redeeme you by dromio heere who came in hast": [0, 65535], "you by dromio heere who came in hast for": [0, 65535], "by dromio heere who came in hast for it": [0, 65535], "dromio heere who came in hast for it dro": [0, 65535], "heere who came in hast for it dro monie": [0, 65535], "who came in hast for it dro monie by": [0, 65535], "came in hast for it dro monie by me": [0, 65535], "in hast for it dro monie by me heart": [0, 65535], "hast for it dro monie by me heart and": [0, 65535], "for it dro monie by me heart and good": [0, 65535], "it dro monie by me heart and good will": [0, 65535], "dro monie by me heart and good will you": [0, 65535], "monie by me heart and good will you might": [0, 65535], "by me heart and good will you might but": [0, 65535], "me heart and good will you might but surely": [0, 65535], "heart and good will you might but surely master": [0, 65535], "and good will you might but surely master not": [0, 65535], "good will you might but surely master not a": [0, 65535], "will you might but surely master not a ragge": [0, 65535], "you might but surely master not a ragge of": [0, 65535], "might but surely master not a ragge of monie": [0, 65535], "but surely master not a ragge of monie ant": [0, 65535], "surely master not a ragge of monie ant wentst": [0, 65535], "master not a ragge of monie ant wentst not": [0, 65535], "not a ragge of monie ant wentst not thou": [0, 65535], "a ragge of monie ant wentst not thou to": [0, 65535], "ragge of monie ant wentst not thou to her": [0, 65535], "of monie ant wentst not thou to her for": [0, 65535], "monie ant wentst not thou to her for a": [0, 65535], "ant wentst not thou to her for a purse": [0, 65535], "wentst not thou to her for a purse of": [0, 65535], "not thou to her for a purse of duckets": [0, 65535], "thou to her for a purse of duckets adri": [0, 65535], "to her for a purse of duckets adri he": [0, 65535], "her for a purse of duckets adri he came": [0, 65535], "for a purse of duckets adri he came to": [0, 65535], "a purse of duckets adri he came to me": [0, 65535], "purse of duckets adri he came to me and": [0, 65535], "of duckets adri he came to me and i": [0, 65535], "duckets adri he came to me and i deliuer'd": [0, 65535], "adri he came to me and i deliuer'd it": [0, 65535], "he came to me and i deliuer'd it luci": [0, 65535], "came to me and i deliuer'd it luci and": [0, 65535], "to me and i deliuer'd it luci and i": [0, 65535], "me and i deliuer'd it luci and i am": [0, 65535], "and i deliuer'd it luci and i am witnesse": [0, 65535], "i deliuer'd it luci and i am witnesse with": [0, 65535], "deliuer'd it luci and i am witnesse with her": [0, 65535], "it luci and i am witnesse with her that": [0, 65535], "luci and i am witnesse with her that she": [0, 65535], "and i am witnesse with her that she did": [0, 65535], "i am witnesse with her that she did dro": [0, 65535], "am witnesse with her that she did dro god": [0, 65535], "witnesse with her that she did dro god and": [0, 65535], "with her that she did dro god and the": [0, 65535], "her that she did dro god and the rope": [0, 65535], "that she did dro god and the rope maker": [0, 65535], "she did dro god and the rope maker beare": [0, 65535], "did dro god and the rope maker beare me": [0, 65535], "dro god and the rope maker beare me witnesse": [0, 65535], "god and the rope maker beare me witnesse that": [0, 65535], "and the rope maker beare me witnesse that i": [0, 65535], "the rope maker beare me witnesse that i was": [0, 65535], "rope maker beare me witnesse that i was sent": [0, 65535], "maker beare me witnesse that i was sent for": [0, 65535], "beare me witnesse that i was sent for nothing": [0, 65535], "me witnesse that i was sent for nothing but": [0, 65535], "witnesse that i was sent for nothing but a": [0, 65535], "that i was sent for nothing but a rope": [0, 65535], "i was sent for nothing but a rope pinch": [0, 65535], "was sent for nothing but a rope pinch mistris": [0, 65535], "sent for nothing but a rope pinch mistris both": [0, 65535], "for nothing but a rope pinch mistris both man": [0, 65535], "nothing but a rope pinch mistris both man and": [0, 65535], "but a rope pinch mistris both man and master": [0, 65535], "a rope pinch mistris both man and master is": [0, 65535], "rope pinch mistris both man and master is possest": [0, 65535], "pinch mistris both man and master is possest i": [0, 65535], "mistris both man and master is possest i know": [0, 65535], "both man and master is possest i know it": [0, 65535], "man and master is possest i know it by": [0, 65535], "and master is possest i know it by their": [0, 65535], "master is possest i know it by their pale": [0, 65535], "is possest i know it by their pale and": [0, 65535], "possest i know it by their pale and deadly": [0, 65535], "i know it by their pale and deadly lookes": [0, 65535], "know it by their pale and deadly lookes they": [0, 65535], "it by their pale and deadly lookes they must": [0, 65535], "by their pale and deadly lookes they must be": [0, 65535], "their pale and deadly lookes they must be bound": [0, 65535], "pale and deadly lookes they must be bound and": [0, 65535], "and deadly lookes they must be bound and laide": [0, 65535], "deadly lookes they must be bound and laide in": [0, 65535], "lookes they must be bound and laide in some": [0, 65535], "they must be bound and laide in some darke": [0, 65535], "must be bound and laide in some darke roome": [0, 65535], "be bound and laide in some darke roome ant": [0, 65535], "bound and laide in some darke roome ant say": [0, 65535], "and laide in some darke roome ant say wherefore": [0, 65535], "laide in some darke roome ant say wherefore didst": [0, 65535], "in some darke roome ant say wherefore didst thou": [0, 65535], "some darke roome ant say wherefore didst thou locke": [0, 65535], "darke roome ant say wherefore didst thou locke me": [0, 65535], "roome ant say wherefore didst thou locke me forth": [0, 65535], "ant say wherefore didst thou locke me forth to": [0, 65535], "say wherefore didst thou locke me forth to day": [0, 65535], "wherefore didst thou locke me forth to day and": [0, 65535], "didst thou locke me forth to day and why": [0, 65535], "thou locke me forth to day and why dost": [0, 65535], "locke me forth to day and why dost thou": [0, 65535], "me forth to day and why dost thou denie": [0, 65535], "forth to day and why dost thou denie the": [0, 65535], "to day and why dost thou denie the bagge": [0, 65535], "day and why dost thou denie the bagge of": [0, 65535], "and why dost thou denie the bagge of gold": [0, 65535], "why dost thou denie the bagge of gold adr": [0, 65535], "dost thou denie the bagge of gold adr i": [0, 65535], "thou denie the bagge of gold adr i did": [0, 65535], "denie the bagge of gold adr i did not": [0, 65535], "the bagge of gold adr i did not gentle": [0, 65535], "bagge of gold adr i did not gentle husband": [0, 65535], "of gold adr i did not gentle husband locke": [0, 65535], "gold adr i did not gentle husband locke thee": [0, 65535], "adr i did not gentle husband locke thee forth": [0, 65535], "i did not gentle husband locke thee forth dro": [0, 65535], "did not gentle husband locke thee forth dro and": [0, 65535], "not gentle husband locke thee forth dro and gentle": [0, 65535], "gentle husband locke thee forth dro and gentle mr": [0, 65535], "husband locke thee forth dro and gentle mr i": [0, 65535], "locke thee forth dro and gentle mr i receiu'd": [0, 65535], "thee forth dro and gentle mr i receiu'd no": [0, 65535], "forth dro and gentle mr i receiu'd no gold": [0, 65535], "dro and gentle mr i receiu'd no gold but": [0, 65535], "and gentle mr i receiu'd no gold but i": [0, 65535], "gentle mr i receiu'd no gold but i confesse": [0, 65535], "mr i receiu'd no gold but i confesse sir": [0, 65535], "i receiu'd no gold but i confesse sir that": [0, 65535], "receiu'd no gold but i confesse sir that we": [0, 65535], "no gold but i confesse sir that we were": [0, 65535], "gold but i confesse sir that we were lock'd": [0, 65535], "but i confesse sir that we were lock'd out": [0, 65535], "i confesse sir that we were lock'd out adr": [0, 65535], "confesse sir that we were lock'd out adr dissembling": [0, 65535], "sir that we were lock'd out adr dissembling villain": [0, 65535], "that we were lock'd out adr dissembling villain thou": [0, 65535], "we were lock'd out adr dissembling villain thou speak'st": [0, 65535], "were lock'd out adr dissembling villain thou speak'st false": [0, 65535], "lock'd out adr dissembling villain thou speak'st false in": [0, 65535], "out adr dissembling villain thou speak'st false in both": [0, 65535], "adr dissembling villain thou speak'st false in both ant": [0, 65535], "dissembling villain thou speak'st false in both ant dissembling": [0, 65535], "villain thou speak'st false in both ant dissembling harlot": [0, 65535], "thou speak'st false in both ant dissembling harlot thou": [0, 65535], "speak'st false in both ant dissembling harlot thou art": [0, 65535], "false in both ant dissembling harlot thou art false": [0, 65535], "in both ant dissembling harlot thou art false in": [0, 65535], "both ant dissembling harlot thou art false in all": [0, 65535], "ant dissembling harlot thou art false in all and": [0, 65535], "dissembling harlot thou art false in all and art": [0, 65535], "harlot thou art false in all and art confederate": [0, 65535], "thou art false in all and art confederate with": [0, 65535], "art false in all and art confederate with a": [0, 65535], "false in all and art confederate with a damned": [0, 65535], "in all and art confederate with a damned packe": [0, 65535], "all and art confederate with a damned packe to": [0, 65535], "and art confederate with a damned packe to make": [0, 65535], "art confederate with a damned packe to make a": [0, 65535], "confederate with a damned packe to make a loathsome": [0, 65535], "with a damned packe to make a loathsome abiect": [0, 65535], "a damned packe to make a loathsome abiect scorne": [0, 65535], "damned packe to make a loathsome abiect scorne of": [0, 65535], "packe to make a loathsome abiect scorne of me": [0, 65535], "to make a loathsome abiect scorne of me but": [0, 65535], "make a loathsome abiect scorne of me but with": [0, 65535], "a loathsome abiect scorne of me but with these": [0, 65535], "loathsome abiect scorne of me but with these nailes": [0, 65535], "abiect scorne of me but with these nailes ile": [0, 65535], "scorne of me but with these nailes ile plucke": [0, 65535], "of me but with these nailes ile plucke out": [0, 65535], "me but with these nailes ile plucke out these": [0, 65535], "but with these nailes ile plucke out these false": [0, 65535], "with these nailes ile plucke out these false eyes": [0, 65535], "these nailes ile plucke out these false eyes that": [0, 65535], "nailes ile plucke out these false eyes that would": [0, 65535], "ile plucke out these false eyes that would behold": [0, 65535], "plucke out these false eyes that would behold in": [0, 65535], "out these false eyes that would behold in me": [0, 65535], "these false eyes that would behold in me this": [0, 65535], "false eyes that would behold in me this shamefull": [0, 65535], "eyes that would behold in me this shamefull sport": [0, 65535], "that would behold in me this shamefull sport enter": [0, 65535], "would behold in me this shamefull sport enter three": [0, 65535], "behold in me this shamefull sport enter three or": [0, 65535], "in me this shamefull sport enter three or foure": [0, 65535], "me this shamefull sport enter three or foure and": [0, 65535], "this shamefull sport enter three or foure and offer": [0, 65535], "shamefull sport enter three or foure and offer to": [0, 65535], "sport enter three or foure and offer to binde": [0, 65535], "enter three or foure and offer to binde him": [0, 65535], "three or foure and offer to binde him hee": [0, 65535], "or foure and offer to binde him hee striues": [0, 65535], "foure and offer to binde him hee striues adr": [0, 65535], "and offer to binde him hee striues adr oh": [0, 65535], "offer to binde him hee striues adr oh binde": [0, 65535], "to binde him hee striues adr oh binde him": [0, 65535], "binde him hee striues adr oh binde him binde": [0, 65535], "him hee striues adr oh binde him binde him": [0, 65535], "hee striues adr oh binde him binde him let": [0, 65535], "striues adr oh binde him binde him let him": [0, 65535], "adr oh binde him binde him let him not": [0, 65535], "oh binde him binde him let him not come": [0, 65535], "binde him binde him let him not come neere": [0, 65535], "him binde him let him not come neere me": [0, 65535], "binde him let him not come neere me pinch": [0, 65535], "him let him not come neere me pinch more": [0, 65535], "let him not come neere me pinch more company": [0, 65535], "him not come neere me pinch more company the": [0, 65535], "not come neere me pinch more company the fiend": [0, 65535], "come neere me pinch more company the fiend is": [0, 65535], "neere me pinch more company the fiend is strong": [0, 65535], "me pinch more company the fiend is strong within": [0, 65535], "pinch more company the fiend is strong within him": [0, 65535], "more company the fiend is strong within him luc": [0, 65535], "company the fiend is strong within him luc aye": [0, 65535], "the fiend is strong within him luc aye me": [0, 65535], "fiend is strong within him luc aye me poore": [0, 65535], "is strong within him luc aye me poore man": [0, 65535], "strong within him luc aye me poore man how": [0, 65535], "within him luc aye me poore man how pale": [0, 65535], "him luc aye me poore man how pale and": [0, 65535], "luc aye me poore man how pale and wan": [0, 65535], "aye me poore man how pale and wan he": [0, 65535], "me poore man how pale and wan he looks": [0, 65535], "poore man how pale and wan he looks ant": [0, 65535], "man how pale and wan he looks ant what": [0, 65535], "how pale and wan he looks ant what will": [0, 65535], "pale and wan he looks ant what will you": [0, 65535], "and wan he looks ant what will you murther": [0, 65535], "wan he looks ant what will you murther me": [0, 65535], "he looks ant what will you murther me thou": [0, 65535], "looks ant what will you murther me thou iailor": [0, 65535], "ant what will you murther me thou iailor thou": [0, 65535], "what will you murther me thou iailor thou i": [0, 65535], "will you murther me thou iailor thou i am": [0, 65535], "you murther me thou iailor thou i am thy": [0, 65535], "murther me thou iailor thou i am thy prisoner": [0, 65535], "me thou iailor thou i am thy prisoner wilt": [0, 65535], "thou iailor thou i am thy prisoner wilt thou": [0, 65535], "iailor thou i am thy prisoner wilt thou suffer": [0, 65535], "thou i am thy prisoner wilt thou suffer them": [0, 65535], "i am thy prisoner wilt thou suffer them to": [0, 65535], "am thy prisoner wilt thou suffer them to make": [0, 65535], "thy prisoner wilt thou suffer them to make a": [0, 65535], "prisoner wilt thou suffer them to make a rescue": [0, 65535], "wilt thou suffer them to make a rescue offi": [0, 65535], "thou suffer them to make a rescue offi masters": [0, 65535], "suffer them to make a rescue offi masters let": [0, 65535], "them to make a rescue offi masters let him": [0, 65535], "to make a rescue offi masters let him go": [0, 65535], "make a rescue offi masters let him go he": [0, 65535], "a rescue offi masters let him go he is": [0, 65535], "rescue offi masters let him go he is my": [0, 65535], "offi masters let him go he is my prisoner": [0, 65535], "masters let him go he is my prisoner and": [0, 65535], "let him go he is my prisoner and you": [0, 65535], "him go he is my prisoner and you shall": [0, 65535], "go he is my prisoner and you shall not": [0, 65535], "he is my prisoner and you shall not haue": [0, 65535], "is my prisoner and you shall not haue him": [0, 65535], "my prisoner and you shall not haue him pinch": [0, 65535], "prisoner and you shall not haue him pinch go": [0, 65535], "and you shall not haue him pinch go binde": [0, 65535], "you shall not haue him pinch go binde this": [0, 65535], "shall not haue him pinch go binde this man": [0, 65535], "not haue him pinch go binde this man for": [0, 65535], "haue him pinch go binde this man for he": [0, 65535], "him pinch go binde this man for he is": [0, 65535], "pinch go binde this man for he is franticke": [0, 65535], "go binde this man for he is franticke too": [0, 65535], "binde this man for he is franticke too adr": [0, 65535], "this man for he is franticke too adr what": [0, 65535], "man for he is franticke too adr what wilt": [0, 65535], "for he is franticke too adr what wilt thou": [0, 65535], "he is franticke too adr what wilt thou do": [0, 65535], "is franticke too adr what wilt thou do thou": [0, 65535], "franticke too adr what wilt thou do thou peeuish": [0, 65535], "too adr what wilt thou do thou peeuish officer": [0, 65535], "adr what wilt thou do thou peeuish officer hast": [0, 65535], "what wilt thou do thou peeuish officer hast thou": [0, 65535], "wilt thou do thou peeuish officer hast thou delight": [0, 65535], "thou do thou peeuish officer hast thou delight to": [0, 65535], "do thou peeuish officer hast thou delight to see": [0, 65535], "thou peeuish officer hast thou delight to see a": [0, 65535], "peeuish officer hast thou delight to see a wretched": [0, 65535], "officer hast thou delight to see a wretched man": [0, 65535], "hast thou delight to see a wretched man do": [0, 65535], "thou delight to see a wretched man do outrage": [0, 65535], "delight to see a wretched man do outrage and": [0, 65535], "to see a wretched man do outrage and displeasure": [0, 65535], "see a wretched man do outrage and displeasure to": [0, 65535], "a wretched man do outrage and displeasure to himselfe": [0, 65535], "wretched man do outrage and displeasure to himselfe offi": [0, 65535], "man do outrage and displeasure to himselfe offi he": [0, 65535], "do outrage and displeasure to himselfe offi he is": [0, 65535], "outrage and displeasure to himselfe offi he is my": [0, 65535], "and displeasure to himselfe offi he is my prisoner": [0, 65535], "displeasure to himselfe offi he is my prisoner if": [0, 65535], "to himselfe offi he is my prisoner if i": [0, 65535], "himselfe offi he is my prisoner if i let": [0, 65535], "offi he is my prisoner if i let him": [0, 65535], "he is my prisoner if i let him go": [0, 65535], "is my prisoner if i let him go the": [0, 65535], "my prisoner if i let him go the debt": [0, 65535], "prisoner if i let him go the debt he": [0, 65535], "if i let him go the debt he owes": [0, 65535], "i let him go the debt he owes will": [0, 65535], "let him go the debt he owes will be": [0, 65535], "him go the debt he owes will be requir'd": [0, 65535], "go the debt he owes will be requir'd of": [0, 65535], "the debt he owes will be requir'd of me": [0, 65535], "debt he owes will be requir'd of me adr": [0, 65535], "he owes will be requir'd of me adr i": [0, 65535], "owes will be requir'd of me adr i will": [0, 65535], "will be requir'd of me adr i will discharge": [0, 65535], "be requir'd of me adr i will discharge thee": [0, 65535], "requir'd of me adr i will discharge thee ere": [0, 65535], "of me adr i will discharge thee ere i": [0, 65535], "me adr i will discharge thee ere i go": [0, 65535], "adr i will discharge thee ere i go from": [0, 65535], "i will discharge thee ere i go from thee": [0, 65535], "will discharge thee ere i go from thee beare": [0, 65535], "discharge thee ere i go from thee beare me": [0, 65535], "thee ere i go from thee beare me forthwith": [0, 65535], "ere i go from thee beare me forthwith vnto": [0, 65535], "i go from thee beare me forthwith vnto his": [0, 65535], "go from thee beare me forthwith vnto his creditor": [0, 65535], "from thee beare me forthwith vnto his creditor and": [0, 65535], "thee beare me forthwith vnto his creditor and knowing": [0, 65535], "beare me forthwith vnto his creditor and knowing how": [0, 65535], "me forthwith vnto his creditor and knowing how the": [0, 65535], "forthwith vnto his creditor and knowing how the debt": [0, 65535], "vnto his creditor and knowing how the debt growes": [0, 65535], "his creditor and knowing how the debt growes i": [0, 65535], "creditor and knowing how the debt growes i will": [0, 65535], "and knowing how the debt growes i will pay": [0, 65535], "knowing how the debt growes i will pay it": [0, 65535], "how the debt growes i will pay it good": [0, 65535], "the debt growes i will pay it good master": [0, 65535], "debt growes i will pay it good master doctor": [0, 65535], "growes i will pay it good master doctor see": [0, 65535], "i will pay it good master doctor see him": [0, 65535], "will pay it good master doctor see him safe": [0, 65535], "pay it good master doctor see him safe conuey'd": [0, 65535], "it good master doctor see him safe conuey'd home": [0, 65535], "good master doctor see him safe conuey'd home to": [0, 65535], "master doctor see him safe conuey'd home to my": [0, 65535], "doctor see him safe conuey'd home to my house": [0, 65535], "see him safe conuey'd home to my house oh": [0, 65535], "him safe conuey'd home to my house oh most": [0, 65535], "safe conuey'd home to my house oh most vnhappy": [0, 65535], "conuey'd home to my house oh most vnhappy day": [0, 65535], "home to my house oh most vnhappy day ant": [0, 65535], "to my house oh most vnhappy day ant oh": [0, 65535], "my house oh most vnhappy day ant oh most": [0, 65535], "house oh most vnhappy day ant oh most vnhappie": [0, 65535], "oh most vnhappy day ant oh most vnhappie strumpet": [0, 65535], "most vnhappy day ant oh most vnhappie strumpet dro": [0, 65535], "vnhappy day ant oh most vnhappie strumpet dro master": [0, 65535], "day ant oh most vnhappie strumpet dro master i": [0, 65535], "ant oh most vnhappie strumpet dro master i am": [0, 65535], "oh most vnhappie strumpet dro master i am heere": [0, 65535], "most vnhappie strumpet dro master i am heere entred": [0, 65535], "vnhappie strumpet dro master i am heere entred in": [0, 65535], "strumpet dro master i am heere entred in bond": [0, 65535], "dro master i am heere entred in bond for": [0, 65535], "master i am heere entred in bond for you": [0, 65535], "i am heere entred in bond for you ant": [0, 65535], "am heere entred in bond for you ant out": [0, 65535], "heere entred in bond for you ant out on": [0, 65535], "entred in bond for you ant out on thee": [0, 65535], "in bond for you ant out on thee villaine": [0, 65535], "bond for you ant out on thee villaine wherefore": [0, 65535], "for you ant out on thee villaine wherefore dost": [0, 65535], "you ant out on thee villaine wherefore dost thou": [0, 65535], "ant out on thee villaine wherefore dost thou mad": [0, 65535], "out on thee villaine wherefore dost thou mad mee": [0, 65535], "on thee villaine wherefore dost thou mad mee dro": [0, 65535], "thee villaine wherefore dost thou mad mee dro will": [0, 65535], "villaine wherefore dost thou mad mee dro will you": [0, 65535], "wherefore dost thou mad mee dro will you be": [0, 65535], "dost thou mad mee dro will you be bound": [0, 65535], "thou mad mee dro will you be bound for": [0, 65535], "mad mee dro will you be bound for nothing": [0, 65535], "mee dro will you be bound for nothing be": [0, 65535], "dro will you be bound for nothing be mad": [0, 65535], "will you be bound for nothing be mad good": [0, 65535], "you be bound for nothing be mad good master": [0, 65535], "be bound for nothing be mad good master cry": [0, 65535], "bound for nothing be mad good master cry the": [0, 65535], "for nothing be mad good master cry the diuell": [0, 65535], "nothing be mad good master cry the diuell luc": [0, 65535], "be mad good master cry the diuell luc god": [0, 65535], "mad good master cry the diuell luc god helpe": [0, 65535], "good master cry the diuell luc god helpe poore": [0, 65535], "master cry the diuell luc god helpe poore soules": [0, 65535], "cry the diuell luc god helpe poore soules how": [0, 65535], "the diuell luc god helpe poore soules how idlely": [0, 65535], "diuell luc god helpe poore soules how idlely doe": [0, 65535], "luc god helpe poore soules how idlely doe they": [0, 65535], "god helpe poore soules how idlely doe they talke": [0, 65535], "helpe poore soules how idlely doe they talke adr": [0, 65535], "poore soules how idlely doe they talke adr go": [0, 65535], "soules how idlely doe they talke adr go beare": [0, 65535], "how idlely doe they talke adr go beare him": [0, 65535], "idlely doe they talke adr go beare him hence": [0, 65535], "doe they talke adr go beare him hence sister": [0, 65535], "they talke adr go beare him hence sister go": [0, 65535], "talke adr go beare him hence sister go you": [0, 65535], "adr go beare him hence sister go you with": [0, 65535], "go beare him hence sister go you with me": [0, 65535], "beare him hence sister go you with me say": [0, 65535], "him hence sister go you with me say now": [0, 65535], "hence sister go you with me say now whose": [0, 65535], "sister go you with me say now whose suite": [0, 65535], "go you with me say now whose suite is": [0, 65535], "you with me say now whose suite is he": [0, 65535], "with me say now whose suite is he arrested": [0, 65535], "me say now whose suite is he arrested at": [0, 65535], "say now whose suite is he arrested at exeunt": [0, 65535], "now whose suite is he arrested at exeunt manet": [0, 65535], "whose suite is he arrested at exeunt manet offic": [0, 65535], "suite is he arrested at exeunt manet offic adri": [0, 65535], "is he arrested at exeunt manet offic adri luci": [0, 65535], "he arrested at exeunt manet offic adri luci courtizan": [0, 65535], "arrested at exeunt manet offic adri luci courtizan off": [0, 65535], "at exeunt manet offic adri luci courtizan off one": [0, 65535], "exeunt manet offic adri luci courtizan off one angelo": [0, 65535], "manet offic adri luci courtizan off one angelo a": [0, 65535], "offic adri luci courtizan off one angelo a goldsmith": [0, 65535], "adri luci courtizan off one angelo a goldsmith do": [0, 65535], "luci courtizan off one angelo a goldsmith do you": [0, 65535], "courtizan off one angelo a goldsmith do you know": [0, 65535], "off one angelo a goldsmith do you know him": [0, 65535], "one angelo a goldsmith do you know him adr": [0, 65535], "angelo a goldsmith do you know him adr i": [0, 65535], "a goldsmith do you know him adr i know": [0, 65535], "goldsmith do you know him adr i know the": [0, 65535], "do you know him adr i know the man": [0, 65535], "you know him adr i know the man what": [0, 65535], "know him adr i know the man what is": [0, 65535], "him adr i know the man what is the": [0, 65535], "adr i know the man what is the summe": [0, 65535], "i know the man what is the summe he": [0, 65535], "know the man what is the summe he owes": [0, 65535], "the man what is the summe he owes off": [0, 65535], "man what is the summe he owes off two": [0, 65535], "what is the summe he owes off two hundred": [0, 65535], "is the summe he owes off two hundred duckets": [0, 65535], "the summe he owes off two hundred duckets adr": [0, 65535], "summe he owes off two hundred duckets adr say": [0, 65535], "he owes off two hundred duckets adr say how": [0, 65535], "owes off two hundred duckets adr say how growes": [0, 65535], "off two hundred duckets adr say how growes it": [0, 65535], "two hundred duckets adr say how growes it due": [0, 65535], "hundred duckets adr say how growes it due off": [0, 65535], "duckets adr say how growes it due off due": [0, 65535], "adr say how growes it due off due for": [0, 65535], "say how growes it due off due for a": [0, 65535], "how growes it due off due for a chaine": [0, 65535], "growes it due off due for a chaine your": [0, 65535], "it due off due for a chaine your husband": [0, 65535], "due off due for a chaine your husband had": [0, 65535], "off due for a chaine your husband had of": [0, 65535], "due for a chaine your husband had of him": [0, 65535], "for a chaine your husband had of him adr": [0, 65535], "a chaine your husband had of him adr he": [0, 65535], "chaine your husband had of him adr he did": [0, 65535], "your husband had of him adr he did bespeake": [0, 65535], "husband had of him adr he did bespeake a": [0, 65535], "had of him adr he did bespeake a chain": [0, 65535], "of him adr he did bespeake a chain for": [0, 65535], "him adr he did bespeake a chain for me": [0, 65535], "adr he did bespeake a chain for me but": [0, 65535], "he did bespeake a chain for me but had": [0, 65535], "did bespeake a chain for me but had it": [0, 65535], "bespeake a chain for me but had it not": [0, 65535], "a chain for me but had it not cur": [0, 65535], "chain for me but had it not cur when": [0, 65535], "for me but had it not cur when as": [0, 65535], "me but had it not cur when as your": [0, 65535], "but had it not cur when as your husband": [0, 65535], "had it not cur when as your husband all": [0, 65535], "it not cur when as your husband all in": [0, 65535], "not cur when as your husband all in rage": [0, 65535], "cur when as your husband all in rage to": [0, 65535], "when as your husband all in rage to day": [0, 65535], "as your husband all in rage to day came": [0, 65535], "your husband all in rage to day came to": [0, 65535], "husband all in rage to day came to my": [0, 65535], "all in rage to day came to my house": [0, 65535], "in rage to day came to my house and": [0, 65535], "rage to day came to my house and tooke": [0, 65535], "to day came to my house and tooke away": [0, 65535], "day came to my house and tooke away my": [0, 65535], "came to my house and tooke away my ring": [0, 65535], "to my house and tooke away my ring the": [0, 65535], "my house and tooke away my ring the ring": [0, 65535], "house and tooke away my ring the ring i": [0, 65535], "and tooke away my ring the ring i saw": [0, 65535], "tooke away my ring the ring i saw vpon": [0, 65535], "away my ring the ring i saw vpon his": [0, 65535], "my ring the ring i saw vpon his finger": [0, 65535], "ring the ring i saw vpon his finger now": [0, 65535], "the ring i saw vpon his finger now straight": [0, 65535], "ring i saw vpon his finger now straight after": [0, 65535], "i saw vpon his finger now straight after did": [0, 65535], "saw vpon his finger now straight after did i": [0, 65535], "vpon his finger now straight after did i meete": [0, 65535], "his finger now straight after did i meete him": [0, 65535], "finger now straight after did i meete him with": [0, 65535], "now straight after did i meete him with a": [0, 65535], "straight after did i meete him with a chaine": [0, 65535], "after did i meete him with a chaine adr": [0, 65535], "did i meete him with a chaine adr it": [0, 65535], "i meete him with a chaine adr it may": [0, 65535], "meete him with a chaine adr it may be": [0, 65535], "him with a chaine adr it may be so": [0, 65535], "with a chaine adr it may be so but": [0, 65535], "a chaine adr it may be so but i": [0, 65535], "chaine adr it may be so but i did": [0, 65535], "adr it may be so but i did neuer": [0, 65535], "it may be so but i did neuer see": [0, 65535], "may be so but i did neuer see it": [0, 65535], "be so but i did neuer see it come": [0, 65535], "so but i did neuer see it come iailor": [0, 65535], "but i did neuer see it come iailor bring": [0, 65535], "i did neuer see it come iailor bring me": [0, 65535], "did neuer see it come iailor bring me where": [0, 65535], "neuer see it come iailor bring me where the": [0, 65535], "see it come iailor bring me where the goldsmith": [0, 65535], "it come iailor bring me where the goldsmith is": [0, 65535], "come iailor bring me where the goldsmith is i": [0, 65535], "iailor bring me where the goldsmith is i long": [0, 65535], "bring me where the goldsmith is i long to": [0, 65535], "me where the goldsmith is i long to know": [0, 65535], "where the goldsmith is i long to know the": [0, 65535], "the goldsmith is i long to know the truth": [0, 65535], "goldsmith is i long to know the truth heereof": [0, 65535], "is i long to know the truth heereof at": [0, 65535], "i long to know the truth heereof at large": [0, 65535], "long to know the truth heereof at large enter": [0, 65535], "to know the truth heereof at large enter antipholus": [0, 65535], "know the truth heereof at large enter antipholus siracusia": [0, 65535], "the truth heereof at large enter antipholus siracusia with": [0, 65535], "truth heereof at large enter antipholus siracusia with his": [0, 65535], "heereof at large enter antipholus siracusia with his rapier": [0, 65535], "at large enter antipholus siracusia with his rapier drawne": [0, 65535], "large enter antipholus siracusia with his rapier drawne and": [0, 65535], "enter antipholus siracusia with his rapier drawne and dromio": [0, 65535], "antipholus siracusia with his rapier drawne and dromio sirac": [0, 65535], "siracusia with his rapier drawne and dromio sirac luc": [0, 65535], "with his rapier drawne and dromio sirac luc god": [0, 65535], "his rapier drawne and dromio sirac luc god for": [0, 65535], "rapier drawne and dromio sirac luc god for thy": [0, 65535], "drawne and dromio sirac luc god for thy mercy": [0, 65535], "and dromio sirac luc god for thy mercy they": [0, 65535], "dromio sirac luc god for thy mercy they are": [0, 65535], "sirac luc god for thy mercy they are loose": [0, 65535], "luc god for thy mercy they are loose againe": [0, 65535], "god for thy mercy they are loose againe adr": [0, 65535], "for thy mercy they are loose againe adr and": [0, 65535], "thy mercy they are loose againe adr and come": [0, 65535], "mercy they are loose againe adr and come with": [0, 65535], "they are loose againe adr and come with naked": [0, 65535], "are loose againe adr and come with naked swords": [0, 65535], "loose againe adr and come with naked swords let's": [0, 65535], "againe adr and come with naked swords let's call": [0, 65535], "adr and come with naked swords let's call more": [0, 65535], "and come with naked swords let's call more helpe": [0, 65535], "come with naked swords let's call more helpe to": [0, 65535], "with naked swords let's call more helpe to haue": [0, 65535], "naked swords let's call more helpe to haue them": [0, 65535], "swords let's call more helpe to haue them bound": [0, 65535], "let's call more helpe to haue them bound againe": [0, 65535], "call more helpe to haue them bound againe runne": [0, 65535], "more helpe to haue them bound againe runne all": [0, 65535], "helpe to haue them bound againe runne all out": [0, 65535], "to haue them bound againe runne all out off": [0, 65535], "haue them bound againe runne all out off away": [0, 65535], "them bound againe runne all out off away they'l": [0, 65535], "bound againe runne all out off away they'l kill": [0, 65535], "againe runne all out off away they'l kill vs": [0, 65535], "runne all out off away they'l kill vs exeunt": [0, 65535], "all out off away they'l kill vs exeunt omnes": [0, 65535], "out off away they'l kill vs exeunt omnes as": [0, 65535], "off away they'l kill vs exeunt omnes as fast": [0, 65535], "away they'l kill vs exeunt omnes as fast as": [0, 65535], "they'l kill vs exeunt omnes as fast as may": [0, 65535], "kill vs exeunt omnes as fast as may be": [0, 65535], "vs exeunt omnes as fast as may be frighted": [0, 65535], "exeunt omnes as fast as may be frighted s": [0, 65535], "omnes as fast as may be frighted s ant": [0, 65535], "as fast as may be frighted s ant i": [0, 65535], "fast as may be frighted s ant i see": [0, 65535], "as may be frighted s ant i see these": [0, 65535], "may be frighted s ant i see these witches": [0, 65535], "be frighted s ant i see these witches are": [0, 65535], "frighted s ant i see these witches are affraid": [0, 65535], "s ant i see these witches are affraid of": [0, 65535], "ant i see these witches are affraid of swords": [0, 65535], "i see these witches are affraid of swords s": [0, 65535], "see these witches are affraid of swords s dro": [0, 65535], "these witches are affraid of swords s dro she": [0, 65535], "witches are affraid of swords s dro she that": [0, 65535], "are affraid of swords s dro she that would": [0, 65535], "affraid of swords s dro she that would be": [0, 65535], "of swords s dro she that would be your": [0, 65535], "swords s dro she that would be your wife": [0, 65535], "s dro she that would be your wife now": [0, 65535], "dro she that would be your wife now ran": [0, 65535], "she that would be your wife now ran from": [0, 65535], "that would be your wife now ran from you": [0, 65535], "would be your wife now ran from you ant": [0, 65535], "be your wife now ran from you ant come": [0, 65535], "your wife now ran from you ant come to": [0, 65535], "wife now ran from you ant come to the": [0, 65535], "now ran from you ant come to the centaur": [0, 65535], "ran from you ant come to the centaur fetch": [0, 65535], "from you ant come to the centaur fetch our": [0, 65535], "you ant come to the centaur fetch our stuffe": [0, 65535], "ant come to the centaur fetch our stuffe from": [0, 65535], "come to the centaur fetch our stuffe from thence": [0, 65535], "to the centaur fetch our stuffe from thence i": [0, 65535], "the centaur fetch our stuffe from thence i long": [0, 65535], "centaur fetch our stuffe from thence i long that": [0, 65535], "fetch our stuffe from thence i long that we": [0, 65535], "our stuffe from thence i long that we were": [0, 65535], "stuffe from thence i long that we were safe": [0, 65535], "from thence i long that we were safe and": [0, 65535], "thence i long that we were safe and sound": [0, 65535], "i long that we were safe and sound aboord": [0, 65535], "long that we were safe and sound aboord dro": [0, 65535], "that we were safe and sound aboord dro faith": [0, 65535], "we were safe and sound aboord dro faith stay": [0, 65535], "were safe and sound aboord dro faith stay heere": [0, 65535], "safe and sound aboord dro faith stay heere this": [0, 65535], "and sound aboord dro faith stay heere this night": [0, 65535], "sound aboord dro faith stay heere this night they": [0, 65535], "aboord dro faith stay heere this night they will": [0, 65535], "dro faith stay heere this night they will surely": [0, 65535], "faith stay heere this night they will surely do": [0, 65535], "stay heere this night they will surely do vs": [0, 65535], "heere this night they will surely do vs no": [0, 65535], "this night they will surely do vs no harme": [0, 65535], "night they will surely do vs no harme you": [0, 65535], "they will surely do vs no harme you saw": [0, 65535], "will surely do vs no harme you saw they": [0, 65535], "surely do vs no harme you saw they speake": [0, 65535], "do vs no harme you saw they speake vs": [0, 65535], "vs no harme you saw they speake vs faire": [0, 65535], "no harme you saw they speake vs faire giue": [0, 65535], "harme you saw they speake vs faire giue vs": [0, 65535], "you saw they speake vs faire giue vs gold": [0, 65535], "saw they speake vs faire giue vs gold me": [0, 65535], "they speake vs faire giue vs gold me thinkes": [0, 65535], "speake vs faire giue vs gold me thinkes they": [0, 65535], "vs faire giue vs gold me thinkes they are": [0, 65535], "faire giue vs gold me thinkes they are such": [0, 65535], "giue vs gold me thinkes they are such a": [0, 65535], "vs gold me thinkes they are such a gentle": [0, 65535], "gold me thinkes they are such a gentle nation": [0, 65535], "me thinkes they are such a gentle nation that": [0, 65535], "thinkes they are such a gentle nation that but": [0, 65535], "they are such a gentle nation that but for": [0, 65535], "are such a gentle nation that but for the": [0, 65535], "such a gentle nation that but for the mountaine": [0, 65535], "a gentle nation that but for the mountaine of": [0, 65535], "gentle nation that but for the mountaine of mad": [0, 65535], "nation that but for the mountaine of mad flesh": [0, 65535], "that but for the mountaine of mad flesh that": [0, 65535], "but for the mountaine of mad flesh that claimes": [0, 65535], "for the mountaine of mad flesh that claimes mariage": [0, 65535], "the mountaine of mad flesh that claimes mariage of": [0, 65535], "mountaine of mad flesh that claimes mariage of me": [0, 65535], "of mad flesh that claimes mariage of me i": [0, 65535], "mad flesh that claimes mariage of me i could": [0, 65535], "flesh that claimes mariage of me i could finde": [0, 65535], "that claimes mariage of me i could finde in": [0, 65535], "claimes mariage of me i could finde in my": [0, 65535], "mariage of me i could finde in my heart": [0, 65535], "of me i could finde in my heart to": [0, 65535], "me i could finde in my heart to stay": [0, 65535], "i could finde in my heart to stay heere": [0, 65535], "could finde in my heart to stay heere still": [0, 65535], "finde in my heart to stay heere still and": [0, 65535], "in my heart to stay heere still and turne": [0, 65535], "my heart to stay heere still and turne witch": [0, 65535], "heart to stay heere still and turne witch ant": [0, 65535], "to stay heere still and turne witch ant i": [0, 65535], "stay heere still and turne witch ant i will": [0, 65535], "heere still and turne witch ant i will not": [0, 65535], "still and turne witch ant i will not stay": [0, 65535], "and turne witch ant i will not stay to": [0, 65535], "turne witch ant i will not stay to night": [0, 65535], "witch ant i will not stay to night for": [0, 65535], "ant i will not stay to night for all": [0, 65535], "i will not stay to night for all the": [0, 65535], "will not stay to night for all the towne": [0, 65535], "not stay to night for all the towne therefore": [0, 65535], "stay to night for all the towne therefore away": [0, 65535], "to night for all the towne therefore away to": [0, 65535], "night for all the towne therefore away to get": [0, 65535], "for all the towne therefore away to get our": [0, 65535], "all the towne therefore away to get our stuffe": [0, 65535], "the towne therefore away to get our stuffe aboord": [0, 65535], "towne therefore away to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant goldsmith and an": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith and an officer": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and an officer mar": [0, 65535], "prima enter a merchant goldsmith and an officer mar you": [0, 65535], "enter a merchant goldsmith and an officer mar you know": [0, 65535], "a merchant goldsmith and an officer mar you know since": [0, 65535], "merchant goldsmith and an officer mar you know since pentecost": [0, 65535], "goldsmith and an officer mar you know since pentecost the": [0, 65535], "and an officer mar you know since pentecost the sum": [0, 65535], "an officer mar you know since pentecost the sum is": [0, 65535], "officer mar you know since pentecost the sum is due": [0, 65535], "mar you know since pentecost the sum is due and": [0, 65535], "you know since pentecost the sum is due and since": [0, 65535], "know since pentecost the sum is due and since i": [0, 65535], "since pentecost the sum is due and since i haue": [0, 65535], "pentecost the sum is due and since i haue not": [0, 65535], "the sum is due and since i haue not much": [0, 65535], "sum is due and since i haue not much importun'd": [0, 65535], "is due and since i haue not much importun'd you": [0, 65535], "due and since i haue not much importun'd you nor": [0, 65535], "and since i haue not much importun'd you nor now": [0, 65535], "since i haue not much importun'd you nor now i": [0, 65535], "i haue not much importun'd you nor now i had": [0, 65535], "haue not much importun'd you nor now i had not": [0, 65535], "not much importun'd you nor now i had not but": [0, 65535], "much importun'd you nor now i had not but that": [0, 65535], "importun'd you nor now i had not but that i": [0, 65535], "you nor now i had not but that i am": [0, 65535], "nor now i had not but that i am bound": [0, 65535], "now i had not but that i am bound to": [0, 65535], "i had not but that i am bound to persia": [0, 65535], "had not but that i am bound to persia and": [0, 65535], "not but that i am bound to persia and want": [0, 65535], "but that i am bound to persia and want gilders": [0, 65535], "that i am bound to persia and want gilders for": [0, 65535], "i am bound to persia and want gilders for my": [0, 65535], "am bound to persia and want gilders for my voyage": [0, 65535], "bound to persia and want gilders for my voyage therefore": [0, 65535], "to persia and want gilders for my voyage therefore make": [0, 65535], "persia and want gilders for my voyage therefore make present": [0, 65535], "and want gilders for my voyage therefore make present satisfaction": [0, 65535], "want gilders for my voyage therefore make present satisfaction or": [0, 65535], "gilders for my voyage therefore make present satisfaction or ile": [0, 65535], "for my voyage therefore make present satisfaction or ile attach": [0, 65535], "my voyage therefore make present satisfaction or ile attach you": [0, 65535], "voyage therefore make present satisfaction or ile attach you by": [0, 65535], "therefore make present satisfaction or ile attach you by this": [0, 65535], "make present satisfaction or ile attach you by this officer": [0, 65535], "present satisfaction or ile attach you by this officer gold": [0, 65535], "satisfaction or ile attach you by this officer gold euen": [0, 65535], "or ile attach you by this officer gold euen iust": [0, 65535], "ile attach you by this officer gold euen iust the": [0, 65535], "attach you by this officer gold euen iust the sum": [0, 65535], "you by this officer gold euen iust the sum that": [0, 65535], "by this officer gold euen iust the sum that i": [0, 65535], "this officer gold euen iust the sum that i do": [0, 65535], "officer gold euen iust the sum that i do owe": [0, 65535], "gold euen iust the sum that i do owe to": [0, 65535], "euen iust the sum that i do owe to you": [0, 65535], "iust the sum that i do owe to you is": [0, 65535], "the sum that i do owe to you is growing": [0, 65535], "sum that i do owe to you is growing to": [0, 65535], "that i do owe to you is growing to me": [0, 65535], "i do owe to you is growing to me by": [0, 65535], "do owe to you is growing to me by antipholus": [0, 65535], "owe to you is growing to me by antipholus and": [0, 65535], "to you is growing to me by antipholus and in": [0, 65535], "you is growing to me by antipholus and in the": [0, 65535], "is growing to me by antipholus and in the instant": [0, 65535], "growing to me by antipholus and in the instant that": [0, 65535], "to me by antipholus and in the instant that i": [0, 65535], "me by antipholus and in the instant that i met": [0, 65535], "by antipholus and in the instant that i met with": [0, 65535], "antipholus and in the instant that i met with you": [0, 65535], "and in the instant that i met with you he": [0, 65535], "in the instant that i met with you he had": [0, 65535], "the instant that i met with you he had of": [0, 65535], "instant that i met with you he had of me": [0, 65535], "that i met with you he had of me a": [0, 65535], "i met with you he had of me a chaine": [0, 65535], "met with you he had of me a chaine at": [0, 65535], "with you he had of me a chaine at fiue": [0, 65535], "you he had of me a chaine at fiue a": [0, 65535], "he had of me a chaine at fiue a clocke": [0, 65535], "had of me a chaine at fiue a clocke i": [0, 65535], "of me a chaine at fiue a clocke i shall": [0, 65535], "me a chaine at fiue a clocke i shall receiue": [0, 65535], "a chaine at fiue a clocke i shall receiue the": [0, 65535], "chaine at fiue a clocke i shall receiue the money": [0, 65535], "at fiue a clocke i shall receiue the money for": [0, 65535], "fiue a clocke i shall receiue the money for the": [0, 65535], "a clocke i shall receiue the money for the same": [0, 65535], "clocke i shall receiue the money for the same pleaseth": [0, 65535], "i shall receiue the money for the same pleaseth you": [0, 65535], "shall receiue the money for the same pleaseth you walke": [0, 65535], "receiue the money for the same pleaseth you walke with": [0, 65535], "the money for the same pleaseth you walke with me": [0, 65535], "money for the same pleaseth you walke with me downe": [0, 65535], "for the same pleaseth you walke with me downe to": [0, 65535], "the same pleaseth you walke with me downe to his": [0, 65535], "same pleaseth you walke with me downe to his house": [0, 65535], "pleaseth you walke with me downe to his house i": [0, 65535], "you walke with me downe to his house i will": [0, 65535], "walke with me downe to his house i will discharge": [0, 65535], "with me downe to his house i will discharge my": [0, 65535], "me downe to his house i will discharge my bond": [0, 65535], "downe to his house i will discharge my bond and": [0, 65535], "to his house i will discharge my bond and thanke": [0, 65535], "his house i will discharge my bond and thanke you": [0, 65535], "house i will discharge my bond and thanke you too": [0, 65535], "i will discharge my bond and thanke you too enter": [0, 65535], "will discharge my bond and thanke you too enter antipholus": [0, 65535], "discharge my bond and thanke you too enter antipholus ephes": [0, 65535], "my bond and thanke you too enter antipholus ephes dromio": [0, 65535], "bond and thanke you too enter antipholus ephes dromio from": [0, 65535], "and thanke you too enter antipholus ephes dromio from the": [0, 65535], "thanke you too enter antipholus ephes dromio from the courtizans": [0, 65535], "you too enter antipholus ephes dromio from the courtizans offi": [0, 65535], "too enter antipholus ephes dromio from the courtizans offi that": [0, 65535], "enter antipholus ephes dromio from the courtizans offi that labour": [0, 65535], "antipholus ephes dromio from the courtizans offi that labour may": [0, 65535], "ephes dromio from the courtizans offi that labour may you": [0, 65535], "dromio from the courtizans offi that labour may you saue": [0, 65535], "from the courtizans offi that labour may you saue see": [0, 65535], "the courtizans offi that labour may you saue see where": [0, 65535], "courtizans offi that labour may you saue see where he": [0, 65535], "offi that labour may you saue see where he comes": [0, 65535], "that labour may you saue see where he comes ant": [0, 65535], "labour may you saue see where he comes ant while": [0, 65535], "may you saue see where he comes ant while i": [0, 65535], "you saue see where he comes ant while i go": [0, 65535], "saue see where he comes ant while i go to": [0, 65535], "see where he comes ant while i go to the": [0, 65535], "where he comes ant while i go to the goldsmiths": [0, 65535], "he comes ant while i go to the goldsmiths house": [0, 65535], "comes ant while i go to the goldsmiths house go": [0, 65535], "ant while i go to the goldsmiths house go thou": [0, 65535], "while i go to the goldsmiths house go thou and": [0, 65535], "i go to the goldsmiths house go thou and buy": [0, 65535], "go to the goldsmiths house go thou and buy a": [0, 65535], "to the goldsmiths house go thou and buy a ropes": [0, 65535], "the goldsmiths house go thou and buy a ropes end": [0, 65535], "goldsmiths house go thou and buy a ropes end that": [0, 65535], "house go thou and buy a ropes end that will": [0, 65535], "go thou and buy a ropes end that will i": [0, 65535], "thou and buy a ropes end that will i bestow": [0, 65535], "and buy a ropes end that will i bestow among": [0, 65535], "buy a ropes end that will i bestow among my": [0, 65535], "a ropes end that will i bestow among my wife": [0, 65535], "ropes end that will i bestow among my wife and": [0, 65535], "end that will i bestow among my wife and their": [0, 65535], "that will i bestow among my wife and their confederates": [0, 65535], "will i bestow among my wife and their confederates for": [0, 65535], "i bestow among my wife and their confederates for locking": [0, 65535], "bestow among my wife and their confederates for locking me": [0, 65535], "among my wife and their confederates for locking me out": [0, 65535], "my wife and their confederates for locking me out of": [0, 65535], "wife and their confederates for locking me out of my": [0, 65535], "and their confederates for locking me out of my doores": [0, 65535], "their confederates for locking me out of my doores by": [0, 65535], "confederates for locking me out of my doores by day": [0, 65535], "for locking me out of my doores by day but": [0, 65535], "locking me out of my doores by day but soft": [0, 65535], "me out of my doores by day but soft i": [0, 65535], "out of my doores by day but soft i see": [0, 65535], "of my doores by day but soft i see the": [0, 65535], "my doores by day but soft i see the goldsmith": [0, 65535], "doores by day but soft i see the goldsmith get": [0, 65535], "by day but soft i see the goldsmith get thee": [0, 65535], "day but soft i see the goldsmith get thee gone": [0, 65535], "but soft i see the goldsmith get thee gone buy": [0, 65535], "soft i see the goldsmith get thee gone buy thou": [0, 65535], "i see the goldsmith get thee gone buy thou a": [0, 65535], "see the goldsmith get thee gone buy thou a rope": [0, 65535], "the goldsmith get thee gone buy thou a rope and": [0, 65535], "goldsmith get thee gone buy thou a rope and bring": [0, 65535], "get thee gone buy thou a rope and bring it": [0, 65535], "thee gone buy thou a rope and bring it home": [0, 65535], "gone buy thou a rope and bring it home to": [0, 65535], "buy thou a rope and bring it home to me": [0, 65535], "thou a rope and bring it home to me dro": [0, 65535], "a rope and bring it home to me dro i": [0, 65535], "rope and bring it home to me dro i buy": [0, 65535], "and bring it home to me dro i buy a": [0, 65535], "bring it home to me dro i buy a thousand": [0, 65535], "it home to me dro i buy a thousand pound": [0, 65535], "home to me dro i buy a thousand pound a": [0, 65535], "to me dro i buy a thousand pound a yeare": [0, 65535], "me dro i buy a thousand pound a yeare i": [0, 65535], "dro i buy a thousand pound a yeare i buy": [0, 65535], "i buy a thousand pound a yeare i buy a": [0, 65535], "buy a thousand pound a yeare i buy a rope": [0, 65535], "a thousand pound a yeare i buy a rope exit": [0, 65535], "thousand pound a yeare i buy a rope exit dromio": [0, 65535], "pound a yeare i buy a rope exit dromio eph": [0, 65535], "a yeare i buy a rope exit dromio eph ant": [0, 65535], "yeare i buy a rope exit dromio eph ant a": [0, 65535], "i buy a rope exit dromio eph ant a man": [0, 65535], "buy a rope exit dromio eph ant a man is": [0, 65535], "a rope exit dromio eph ant a man is well": [0, 65535], "rope exit dromio eph ant a man is well holpe": [0, 65535], "exit dromio eph ant a man is well holpe vp": [0, 65535], "dromio eph ant a man is well holpe vp that": [0, 65535], "eph ant a man is well holpe vp that trusts": [0, 65535], "ant a man is well holpe vp that trusts to": [0, 65535], "a man is well holpe vp that trusts to you": [0, 65535], "man is well holpe vp that trusts to you i": [0, 65535], "is well holpe vp that trusts to you i promised": [0, 65535], "well holpe vp that trusts to you i promised your": [0, 65535], "holpe vp that trusts to you i promised your presence": [0, 65535], "vp that trusts to you i promised your presence and": [0, 65535], "that trusts to you i promised your presence and the": [0, 65535], "trusts to you i promised your presence and the chaine": [0, 65535], "to you i promised your presence and the chaine but": [0, 65535], "you i promised your presence and the chaine but neither": [0, 65535], "i promised your presence and the chaine but neither chaine": [0, 65535], "promised your presence and the chaine but neither chaine nor": [0, 65535], "your presence and the chaine but neither chaine nor goldsmith": [0, 65535], "presence and the chaine but neither chaine nor goldsmith came": [0, 65535], "and the chaine but neither chaine nor goldsmith came to": [0, 65535], "the chaine but neither chaine nor goldsmith came to me": [0, 65535], "chaine but neither chaine nor goldsmith came to me belike": [0, 65535], "but neither chaine nor goldsmith came to me belike you": [0, 65535], "neither chaine nor goldsmith came to me belike you thought": [0, 65535], "chaine nor goldsmith came to me belike you thought our": [0, 65535], "nor goldsmith came to me belike you thought our loue": [0, 65535], "goldsmith came to me belike you thought our loue would": [0, 65535], "came to me belike you thought our loue would last": [0, 65535], "to me belike you thought our loue would last too": [0, 65535], "me belike you thought our loue would last too long": [0, 65535], "belike you thought our loue would last too long if": [0, 65535], "you thought our loue would last too long if it": [0, 65535], "thought our loue would last too long if it were": [0, 65535], "our loue would last too long if it were chain'd": [0, 65535], "loue would last too long if it were chain'd together": [0, 65535], "would last too long if it were chain'd together and": [0, 65535], "last too long if it were chain'd together and therefore": [0, 65535], "too long if it were chain'd together and therefore came": [0, 65535], "long if it were chain'd together and therefore came not": [0, 65535], "if it were chain'd together and therefore came not gold": [0, 65535], "it were chain'd together and therefore came not gold sauing": [0, 65535], "were chain'd together and therefore came not gold sauing your": [0, 65535], "chain'd together and therefore came not gold sauing your merrie": [0, 65535], "together and therefore came not gold sauing your merrie humor": [0, 65535], "and therefore came not gold sauing your merrie humor here's": [0, 65535], "therefore came not gold sauing your merrie humor here's the": [0, 65535], "came not gold sauing your merrie humor here's the note": [0, 65535], "not gold sauing your merrie humor here's the note how": [0, 65535], "gold sauing your merrie humor here's the note how much": [0, 65535], "sauing your merrie humor here's the note how much your": [0, 65535], "your merrie humor here's the note how much your chaine": [0, 65535], "merrie humor here's the note how much your chaine weighs": [0, 65535], "humor here's the note how much your chaine weighs to": [0, 65535], "here's the note how much your chaine weighs to the": [0, 65535], "the note how much your chaine weighs to the vtmost": [0, 65535], "note how much your chaine weighs to the vtmost charect": [0, 65535], "how much your chaine weighs to the vtmost charect the": [0, 65535], "much your chaine weighs to the vtmost charect the finenesse": [0, 65535], "your chaine weighs to the vtmost charect the finenesse of": [0, 65535], "chaine weighs to the vtmost charect the finenesse of the": [0, 65535], "weighs to the vtmost charect the finenesse of the gold": [0, 65535], "to the vtmost charect the finenesse of the gold and": [0, 65535], "the vtmost charect the finenesse of the gold and chargefull": [0, 65535], "vtmost charect the finenesse of the gold and chargefull fashion": [0, 65535], "charect the finenesse of the gold and chargefull fashion which": [0, 65535], "the finenesse of the gold and chargefull fashion which doth": [0, 65535], "finenesse of the gold and chargefull fashion which doth amount": [0, 65535], "of the gold and chargefull fashion which doth amount to": [0, 65535], "the gold and chargefull fashion which doth amount to three": [0, 65535], "gold and chargefull fashion which doth amount to three odde": [0, 65535], "and chargefull fashion which doth amount to three odde duckets": [0, 65535], "chargefull fashion which doth amount to three odde duckets more": [0, 65535], "fashion which doth amount to three odde duckets more then": [0, 65535], "which doth amount to three odde duckets more then i": [0, 65535], "doth amount to three odde duckets more then i stand": [0, 65535], "amount to three odde duckets more then i stand debted": [0, 65535], "to three odde duckets more then i stand debted to": [0, 65535], "three odde duckets more then i stand debted to this": [0, 65535], "odde duckets more then i stand debted to this gentleman": [0, 65535], "duckets more then i stand debted to this gentleman i": [0, 65535], "more then i stand debted to this gentleman i pray": [0, 65535], "then i stand debted to this gentleman i pray you": [0, 65535], "i stand debted to this gentleman i pray you see": [0, 65535], "stand debted to this gentleman i pray you see him": [0, 65535], "debted to this gentleman i pray you see him presently": [0, 65535], "to this gentleman i pray you see him presently discharg'd": [0, 65535], "this gentleman i pray you see him presently discharg'd for": [0, 65535], "gentleman i pray you see him presently discharg'd for he": [0, 65535], "i pray you see him presently discharg'd for he is": [0, 65535], "pray you see him presently discharg'd for he is bound": [0, 65535], "you see him presently discharg'd for he is bound to": [0, 65535], "see him presently discharg'd for he is bound to sea": [0, 65535], "him presently discharg'd for he is bound to sea and": [0, 65535], "presently discharg'd for he is bound to sea and stayes": [0, 65535], "discharg'd for he is bound to sea and stayes but": [0, 65535], "for he is bound to sea and stayes but for": [0, 65535], "he is bound to sea and stayes but for it": [0, 65535], "is bound to sea and stayes but for it anti": [0, 65535], "bound to sea and stayes but for it anti i": [0, 65535], "to sea and stayes but for it anti i am": [0, 65535], "sea and stayes but for it anti i am not": [0, 65535], "and stayes but for it anti i am not furnish'd": [0, 65535], "stayes but for it anti i am not furnish'd with": [0, 65535], "but for it anti i am not furnish'd with the": [0, 65535], "for it anti i am not furnish'd with the present": [0, 65535], "it anti i am not furnish'd with the present monie": [0, 65535], "anti i am not furnish'd with the present monie besides": [0, 65535], "i am not furnish'd with the present monie besides i": [0, 65535], "am not furnish'd with the present monie besides i haue": [0, 65535], "not furnish'd with the present monie besides i haue some": [0, 65535], "furnish'd with the present monie besides i haue some businesse": [0, 65535], "with the present monie besides i haue some businesse in": [0, 65535], "the present monie besides i haue some businesse in the": [0, 65535], "present monie besides i haue some businesse in the towne": [0, 65535], "monie besides i haue some businesse in the towne good": [0, 65535], "besides i haue some businesse in the towne good signior": [0, 65535], "i haue some businesse in the towne good signior take": [0, 65535], "haue some businesse in the towne good signior take the": [0, 65535], "some businesse in the towne good signior take the stranger": [0, 65535], "businesse in the towne good signior take the stranger to": [0, 65535], "in the towne good signior take the stranger to my": [0, 65535], "the towne good signior take the stranger to my house": [0, 65535], "towne good signior take the stranger to my house and": [0, 65535], "good signior take the stranger to my house and with": [0, 65535], "signior take the stranger to my house and with you": [0, 65535], "take the stranger to my house and with you take": [0, 65535], "the stranger to my house and with you take the": [0, 65535], "stranger to my house and with you take the chaine": [0, 65535], "to my house and with you take the chaine and": [0, 65535], "my house and with you take the chaine and bid": [0, 65535], "house and with you take the chaine and bid my": [0, 65535], "and with you take the chaine and bid my wife": [0, 65535], "with you take the chaine and bid my wife disburse": [0, 65535], "you take the chaine and bid my wife disburse the": [0, 65535], "take the chaine and bid my wife disburse the summe": [0, 65535], "the chaine and bid my wife disburse the summe on": [0, 65535], "chaine and bid my wife disburse the summe on the": [0, 65535], "and bid my wife disburse the summe on the receit": [0, 65535], "bid my wife disburse the summe on the receit thereof": [0, 65535], "my wife disburse the summe on the receit thereof perchance": [0, 65535], "wife disburse the summe on the receit thereof perchance i": [0, 65535], "disburse the summe on the receit thereof perchance i will": [0, 65535], "the summe on the receit thereof perchance i will be": [0, 65535], "summe on the receit thereof perchance i will be there": [0, 65535], "on the receit thereof perchance i will be there as": [0, 65535], "the receit thereof perchance i will be there as soone": [0, 65535], "receit thereof perchance i will be there as soone as": [0, 65535], "thereof perchance i will be there as soone as you": [0, 65535], "perchance i will be there as soone as you gold": [0, 65535], "i will be there as soone as you gold then": [0, 65535], "will be there as soone as you gold then you": [0, 65535], "be there as soone as you gold then you will": [0, 65535], "there as soone as you gold then you will bring": [0, 65535], "as soone as you gold then you will bring the": [0, 65535], "soone as you gold then you will bring the chaine": [0, 65535], "as you gold then you will bring the chaine to": [0, 65535], "you gold then you will bring the chaine to her": [0, 65535], "gold then you will bring the chaine to her your": [0, 65535], "then you will bring the chaine to her your selfe": [0, 65535], "you will bring the chaine to her your selfe anti": [0, 65535], "will bring the chaine to her your selfe anti no": [0, 65535], "bring the chaine to her your selfe anti no beare": [0, 65535], "the chaine to her your selfe anti no beare it": [0, 65535], "chaine to her your selfe anti no beare it with": [0, 65535], "to her your selfe anti no beare it with you": [0, 65535], "her your selfe anti no beare it with you least": [0, 65535], "your selfe anti no beare it with you least i": [0, 65535], "selfe anti no beare it with you least i come": [0, 65535], "anti no beare it with you least i come not": [0, 65535], "no beare it with you least i come not time": [0, 65535], "beare it with you least i come not time enough": [0, 65535], "it with you least i come not time enough gold": [0, 65535], "with you least i come not time enough gold well": [0, 65535], "you least i come not time enough gold well sir": [0, 65535], "least i come not time enough gold well sir i": [0, 65535], "i come not time enough gold well sir i will": [0, 65535], "come not time enough gold well sir i will haue": [0, 65535], "not time enough gold well sir i will haue you": [0, 65535], "time enough gold well sir i will haue you the": [0, 65535], "enough gold well sir i will haue you the chaine": [0, 65535], "gold well sir i will haue you the chaine about": [0, 65535], "well sir i will haue you the chaine about you": [0, 65535], "sir i will haue you the chaine about you ant": [0, 65535], "i will haue you the chaine about you ant and": [0, 65535], "will haue you the chaine about you ant and if": [0, 65535], "haue you the chaine about you ant and if i": [0, 65535], "you the chaine about you ant and if i haue": [0, 65535], "the chaine about you ant and if i haue not": [0, 65535], "chaine about you ant and if i haue not sir": [0, 65535], "about you ant and if i haue not sir i": [0, 65535], "you ant and if i haue not sir i hope": [0, 65535], "ant and if i haue not sir i hope you": [0, 65535], "and if i haue not sir i hope you haue": [0, 65535], "if i haue not sir i hope you haue or": [0, 65535], "i haue not sir i hope you haue or else": [0, 65535], "haue not sir i hope you haue or else you": [0, 65535], "not sir i hope you haue or else you may": [0, 65535], "sir i hope you haue or else you may returne": [0, 65535], "i hope you haue or else you may returne without": [0, 65535], "hope you haue or else you may returne without your": [0, 65535], "you haue or else you may returne without your money": [0, 65535], "haue or else you may returne without your money gold": [0, 65535], "or else you may returne without your money gold nay": [0, 65535], "else you may returne without your money gold nay come": [0, 65535], "you may returne without your money gold nay come i": [0, 65535], "may returne without your money gold nay come i pray": [0, 65535], "returne without your money gold nay come i pray you": [0, 65535], "without your money gold nay come i pray you sir": [0, 65535], "your money gold nay come i pray you sir giue": [0, 65535], "money gold nay come i pray you sir giue me": [0, 65535], "gold nay come i pray you sir giue me the": [0, 65535], "nay come i pray you sir giue me the chaine": [0, 65535], "come i pray you sir giue me the chaine both": [0, 65535], "i pray you sir giue me the chaine both winde": [0, 65535], "pray you sir giue me the chaine both winde and": [0, 65535], "you sir giue me the chaine both winde and tide": [0, 65535], "sir giue me the chaine both winde and tide stayes": [0, 65535], "giue me the chaine both winde and tide stayes for": [0, 65535], "me the chaine both winde and tide stayes for this": [0, 65535], "the chaine both winde and tide stayes for this gentleman": [0, 65535], "chaine both winde and tide stayes for this gentleman and": [0, 65535], "both winde and tide stayes for this gentleman and i": [0, 65535], "winde and tide stayes for this gentleman and i too": [0, 65535], "and tide stayes for this gentleman and i too blame": [0, 65535], "tide stayes for this gentleman and i too blame haue": [0, 65535], "stayes for this gentleman and i too blame haue held": [0, 65535], "for this gentleman and i too blame haue held him": [0, 65535], "this gentleman and i too blame haue held him heere": [0, 65535], "gentleman and i too blame haue held him heere too": [0, 65535], "and i too blame haue held him heere too long": [0, 65535], "i too blame haue held him heere too long anti": [0, 65535], "too blame haue held him heere too long anti good": [0, 65535], "blame haue held him heere too long anti good lord": [0, 65535], "haue held him heere too long anti good lord you": [0, 65535], "held him heere too long anti good lord you vse": [0, 65535], "him heere too long anti good lord you vse this": [0, 65535], "heere too long anti good lord you vse this dalliance": [0, 65535], "too long anti good lord you vse this dalliance to": [0, 65535], "long anti good lord you vse this dalliance to excuse": [0, 65535], "anti good lord you vse this dalliance to excuse your": [0, 65535], "good lord you vse this dalliance to excuse your breach": [0, 65535], "lord you vse this dalliance to excuse your breach of": [0, 65535], "you vse this dalliance to excuse your breach of promise": [0, 65535], "vse this dalliance to excuse your breach of promise to": [0, 65535], "this dalliance to excuse your breach of promise to the": [0, 65535], "dalliance to excuse your breach of promise to the porpentine": [0, 65535], "to excuse your breach of promise to the porpentine i": [0, 65535], "excuse your breach of promise to the porpentine i should": [0, 65535], "your breach of promise to the porpentine i should haue": [0, 65535], "breach of promise to the porpentine i should haue chid": [0, 65535], "of promise to the porpentine i should haue chid you": [0, 65535], "promise to the porpentine i should haue chid you for": [0, 65535], "to the porpentine i should haue chid you for not": [0, 65535], "the porpentine i should haue chid you for not bringing": [0, 65535], "porpentine i should haue chid you for not bringing it": [0, 65535], "i should haue chid you for not bringing it but": [0, 65535], "should haue chid you for not bringing it but like": [0, 65535], "haue chid you for not bringing it but like a": [0, 65535], "chid you for not bringing it but like a shrew": [0, 65535], "you for not bringing it but like a shrew you": [0, 65535], "for not bringing it but like a shrew you first": [0, 65535], "not bringing it but like a shrew you first begin": [0, 65535], "bringing it but like a shrew you first begin to": [0, 65535], "it but like a shrew you first begin to brawle": [0, 65535], "but like a shrew you first begin to brawle mar": [0, 65535], "like a shrew you first begin to brawle mar the": [0, 65535], "a shrew you first begin to brawle mar the houre": [0, 65535], "shrew you first begin to brawle mar the houre steales": [0, 65535], "you first begin to brawle mar the houre steales on": [0, 65535], "first begin to brawle mar the houre steales on i": [0, 65535], "begin to brawle mar the houre steales on i pray": [0, 65535], "to brawle mar the houre steales on i pray you": [0, 65535], "brawle mar the houre steales on i pray you sir": [0, 65535], "mar the houre steales on i pray you sir dispatch": [0, 65535], "the houre steales on i pray you sir dispatch gold": [0, 65535], "houre steales on i pray you sir dispatch gold you": [0, 65535], "steales on i pray you sir dispatch gold you heare": [0, 65535], "on i pray you sir dispatch gold you heare how": [0, 65535], "i pray you sir dispatch gold you heare how he": [0, 65535], "pray you sir dispatch gold you heare how he importunes": [0, 65535], "you sir dispatch gold you heare how he importunes me": [0, 65535], "sir dispatch gold you heare how he importunes me the": [0, 65535], "dispatch gold you heare how he importunes me the chaine": [0, 65535], "gold you heare how he importunes me the chaine ant": [0, 65535], "you heare how he importunes me the chaine ant why": [0, 65535], "heare how he importunes me the chaine ant why giue": [0, 65535], "how he importunes me the chaine ant why giue it": [0, 65535], "he importunes me the chaine ant why giue it to": [0, 65535], "importunes me the chaine ant why giue it to my": [0, 65535], "me the chaine ant why giue it to my wife": [0, 65535], "the chaine ant why giue it to my wife and": [0, 65535], "chaine ant why giue it to my wife and fetch": [0, 65535], "ant why giue it to my wife and fetch your": [0, 65535], "why giue it to my wife and fetch your mony": [0, 65535], "giue it to my wife and fetch your mony gold": [0, 65535], "it to my wife and fetch your mony gold come": [0, 65535], "to my wife and fetch your mony gold come come": [0, 65535], "my wife and fetch your mony gold come come you": [0, 65535], "wife and fetch your mony gold come come you know": [0, 65535], "and fetch your mony gold come come you know i": [0, 65535], "fetch your mony gold come come you know i gaue": [0, 65535], "your mony gold come come you know i gaue it": [0, 65535], "mony gold come come you know i gaue it you": [0, 65535], "gold come come you know i gaue it you euen": [0, 65535], "come come you know i gaue it you euen now": [0, 65535], "come you know i gaue it you euen now either": [0, 65535], "you know i gaue it you euen now either send": [0, 65535], "know i gaue it you euen now either send the": [0, 65535], "i gaue it you euen now either send the chaine": [0, 65535], "gaue it you euen now either send the chaine or": [0, 65535], "it you euen now either send the chaine or send": [0, 65535], "you euen now either send the chaine or send me": [0, 65535], "euen now either send the chaine or send me by": [0, 65535], "now either send the chaine or send me by some": [0, 65535], "either send the chaine or send me by some token": [0, 65535], "send the chaine or send me by some token ant": [0, 65535], "the chaine or send me by some token ant fie": [0, 65535], "chaine or send me by some token ant fie now": [0, 65535], "or send me by some token ant fie now you": [0, 65535], "send me by some token ant fie now you run": [0, 65535], "me by some token ant fie now you run this": [0, 65535], "by some token ant fie now you run this humor": [0, 65535], "some token ant fie now you run this humor out": [0, 65535], "token ant fie now you run this humor out of": [0, 65535], "ant fie now you run this humor out of breath": [0, 65535], "fie now you run this humor out of breath come": [0, 65535], "now you run this humor out of breath come where's": [0, 65535], "you run this humor out of breath come where's the": [0, 65535], "run this humor out of breath come where's the chaine": [0, 65535], "this humor out of breath come where's the chaine i": [0, 65535], "humor out of breath come where's the chaine i pray": [0, 65535], "out of breath come where's the chaine i pray you": [0, 65535], "of breath come where's the chaine i pray you let": [0, 65535], "breath come where's the chaine i pray you let me": [0, 65535], "come where's the chaine i pray you let me see": [0, 65535], "where's the chaine i pray you let me see it": [0, 65535], "the chaine i pray you let me see it mar": [0, 65535], "chaine i pray you let me see it mar my": [0, 65535], "i pray you let me see it mar my businesse": [0, 65535], "pray you let me see it mar my businesse cannot": [0, 65535], "you let me see it mar my businesse cannot brooke": [0, 65535], "let me see it mar my businesse cannot brooke this": [0, 65535], "me see it mar my businesse cannot brooke this dalliance": [0, 65535], "see it mar my businesse cannot brooke this dalliance good": [0, 65535], "it mar my businesse cannot brooke this dalliance good sir": [0, 65535], "mar my businesse cannot brooke this dalliance good sir say": [0, 65535], "my businesse cannot brooke this dalliance good sir say whe'r": [0, 65535], "businesse cannot brooke this dalliance good sir say whe'r you'l": [0, 65535], "cannot brooke this dalliance good sir say whe'r you'l answer": [0, 65535], "brooke this dalliance good sir say whe'r you'l answer me": [0, 65535], "this dalliance good sir say whe'r you'l answer me or": [0, 65535], "dalliance good sir say whe'r you'l answer me or no": [0, 65535], "good sir say whe'r you'l answer me or no if": [0, 65535], "sir say whe'r you'l answer me or no if not": [0, 65535], "say whe'r you'l answer me or no if not ile": [0, 65535], "whe'r you'l answer me or no if not ile leaue": [0, 65535], "you'l answer me or no if not ile leaue him": [0, 65535], "answer me or no if not ile leaue him to": [0, 65535], "me or no if not ile leaue him to the": [0, 65535], "or no if not ile leaue him to the officer": [0, 65535], "no if not ile leaue him to the officer ant": [0, 65535], "if not ile leaue him to the officer ant i": [0, 65535], "not ile leaue him to the officer ant i answer": [0, 65535], "ile leaue him to the officer ant i answer you": [0, 65535], "leaue him to the officer ant i answer you what": [0, 65535], "him to the officer ant i answer you what should": [0, 65535], "to the officer ant i answer you what should i": [0, 65535], "the officer ant i answer you what should i answer": [0, 65535], "officer ant i answer you what should i answer you": [0, 65535], "ant i answer you what should i answer you gold": [0, 65535], "i answer you what should i answer you gold the": [0, 65535], "answer you what should i answer you gold the monie": [0, 65535], "you what should i answer you gold the monie that": [0, 65535], "what should i answer you gold the monie that you": [0, 65535], "should i answer you gold the monie that you owe": [0, 65535], "i answer you gold the monie that you owe me": [0, 65535], "answer you gold the monie that you owe me for": [0, 65535], "you gold the monie that you owe me for the": [0, 65535], "gold the monie that you owe me for the chaine": [0, 65535], "the monie that you owe me for the chaine ant": [0, 65535], "monie that you owe me for the chaine ant i": [0, 65535], "that you owe me for the chaine ant i owe": [0, 65535], "you owe me for the chaine ant i owe you": [0, 65535], "owe me for the chaine ant i owe you none": [0, 65535], "me for the chaine ant i owe you none till": [0, 65535], "for the chaine ant i owe you none till i": [0, 65535], "the chaine ant i owe you none till i receiue": [0, 65535], "chaine ant i owe you none till i receiue the": [0, 65535], "ant i owe you none till i receiue the chaine": [0, 65535], "i owe you none till i receiue the chaine gold": [0, 65535], "owe you none till i receiue the chaine gold you": [0, 65535], "you none till i receiue the chaine gold you know": [0, 65535], "none till i receiue the chaine gold you know i": [0, 65535], "till i receiue the chaine gold you know i gaue": [0, 65535], "i receiue the chaine gold you know i gaue it": [0, 65535], "receiue the chaine gold you know i gaue it you": [0, 65535], "the chaine gold you know i gaue it you halfe": [0, 65535], "chaine gold you know i gaue it you halfe an": [0, 65535], "gold you know i gaue it you halfe an houre": [0, 65535], "you know i gaue it you halfe an houre since": [0, 65535], "know i gaue it you halfe an houre since ant": [0, 65535], "i gaue it you halfe an houre since ant you": [0, 65535], "gaue it you halfe an houre since ant you gaue": [0, 65535], "it you halfe an houre since ant you gaue me": [0, 65535], "you halfe an houre since ant you gaue me none": [0, 65535], "halfe an houre since ant you gaue me none you": [0, 65535], "an houre since ant you gaue me none you wrong": [0, 65535], "houre since ant you gaue me none you wrong mee": [0, 65535], "since ant you gaue me none you wrong mee much": [0, 65535], "ant you gaue me none you wrong mee much to": [0, 65535], "you gaue me none you wrong mee much to say": [0, 65535], "gaue me none you wrong mee much to say so": [0, 65535], "me none you wrong mee much to say so gold": [0, 65535], "none you wrong mee much to say so gold you": [0, 65535], "you wrong mee much to say so gold you wrong": [0, 65535], "wrong mee much to say so gold you wrong me": [0, 65535], "mee much to say so gold you wrong me more": [0, 65535], "much to say so gold you wrong me more sir": [0, 65535], "to say so gold you wrong me more sir in": [0, 65535], "say so gold you wrong me more sir in denying": [0, 65535], "so gold you wrong me more sir in denying it": [0, 65535], "gold you wrong me more sir in denying it consider": [0, 65535], "you wrong me more sir in denying it consider how": [0, 65535], "wrong me more sir in denying it consider how it": [0, 65535], "me more sir in denying it consider how it stands": [0, 65535], "more sir in denying it consider how it stands vpon": [0, 65535], "sir in denying it consider how it stands vpon my": [0, 65535], "in denying it consider how it stands vpon my credit": [0, 65535], "denying it consider how it stands vpon my credit mar": [0, 65535], "it consider how it stands vpon my credit mar well": [0, 65535], "consider how it stands vpon my credit mar well officer": [0, 65535], "how it stands vpon my credit mar well officer arrest": [0, 65535], "it stands vpon my credit mar well officer arrest him": [0, 65535], "stands vpon my credit mar well officer arrest him at": [0, 65535], "vpon my credit mar well officer arrest him at my": [0, 65535], "my credit mar well officer arrest him at my suite": [0, 65535], "credit mar well officer arrest him at my suite offi": [0, 65535], "mar well officer arrest him at my suite offi i": [0, 65535], "well officer arrest him at my suite offi i do": [0, 65535], "officer arrest him at my suite offi i do and": [0, 65535], "arrest him at my suite offi i do and charge": [0, 65535], "him at my suite offi i do and charge you": [0, 65535], "at my suite offi i do and charge you in": [0, 65535], "my suite offi i do and charge you in the": [0, 65535], "suite offi i do and charge you in the dukes": [0, 65535], "offi i do and charge you in the dukes name": [0, 65535], "i do and charge you in the dukes name to": [0, 65535], "do and charge you in the dukes name to obey": [0, 65535], "and charge you in the dukes name to obey me": [0, 65535], "charge you in the dukes name to obey me gold": [0, 65535], "you in the dukes name to obey me gold this": [0, 65535], "in the dukes name to obey me gold this touches": [0, 65535], "the dukes name to obey me gold this touches me": [0, 65535], "dukes name to obey me gold this touches me in": [0, 65535], "name to obey me gold this touches me in reputation": [0, 65535], "to obey me gold this touches me in reputation either": [0, 65535], "obey me gold this touches me in reputation either consent": [0, 65535], "me gold this touches me in reputation either consent to": [0, 65535], "gold this touches me in reputation either consent to pay": [0, 65535], "this touches me in reputation either consent to pay this": [0, 65535], "touches me in reputation either consent to pay this sum": [0, 65535], "me in reputation either consent to pay this sum for": [0, 65535], "in reputation either consent to pay this sum for me": [0, 65535], "reputation either consent to pay this sum for me or": [0, 65535], "either consent to pay this sum for me or i": [0, 65535], "consent to pay this sum for me or i attach": [0, 65535], "to pay this sum for me or i attach you": [0, 65535], "pay this sum for me or i attach you by": [0, 65535], "this sum for me or i attach you by this": [0, 65535], "sum for me or i attach you by this officer": [0, 65535], "for me or i attach you by this officer ant": [0, 65535], "me or i attach you by this officer ant consent": [0, 65535], "or i attach you by this officer ant consent to": [0, 65535], "i attach you by this officer ant consent to pay": [0, 65535], "attach you by this officer ant consent to pay thee": [0, 65535], "you by this officer ant consent to pay thee that": [0, 65535], "by this officer ant consent to pay thee that i": [0, 65535], "this officer ant consent to pay thee that i neuer": [0, 65535], "officer ant consent to pay thee that i neuer had": [0, 65535], "ant consent to pay thee that i neuer had arrest": [0, 65535], "consent to pay thee that i neuer had arrest me": [0, 65535], "to pay thee that i neuer had arrest me foolish": [0, 65535], "pay thee that i neuer had arrest me foolish fellow": [0, 65535], "thee that i neuer had arrest me foolish fellow if": [0, 65535], "that i neuer had arrest me foolish fellow if thou": [0, 65535], "i neuer had arrest me foolish fellow if thou dar'st": [0, 65535], "neuer had arrest me foolish fellow if thou dar'st gold": [0, 65535], "had arrest me foolish fellow if thou dar'st gold heere": [0, 65535], "arrest me foolish fellow if thou dar'st gold heere is": [0, 65535], "me foolish fellow if thou dar'st gold heere is thy": [0, 65535], "foolish fellow if thou dar'st gold heere is thy fee": [0, 65535], "fellow if thou dar'st gold heere is thy fee arrest": [0, 65535], "if thou dar'st gold heere is thy fee arrest him": [0, 65535], "thou dar'st gold heere is thy fee arrest him officer": [0, 65535], "dar'st gold heere is thy fee arrest him officer i": [0, 65535], "gold heere is thy fee arrest him officer i would": [0, 65535], "heere is thy fee arrest him officer i would not": [0, 65535], "is thy fee arrest him officer i would not spare": [0, 65535], "thy fee arrest him officer i would not spare my": [0, 65535], "fee arrest him officer i would not spare my brother": [0, 65535], "arrest him officer i would not spare my brother in": [0, 65535], "him officer i would not spare my brother in this": [0, 65535], "officer i would not spare my brother in this case": [0, 65535], "i would not spare my brother in this case if": [0, 65535], "would not spare my brother in this case if he": [0, 65535], "not spare my brother in this case if he should": [0, 65535], "spare my brother in this case if he should scorne": [0, 65535], "my brother in this case if he should scorne me": [0, 65535], "brother in this case if he should scorne me so": [0, 65535], "in this case if he should scorne me so apparantly": [0, 65535], "this case if he should scorne me so apparantly offic": [0, 65535], "case if he should scorne me so apparantly offic i": [0, 65535], "if he should scorne me so apparantly offic i do": [0, 65535], "he should scorne me so apparantly offic i do arrest": [0, 65535], "should scorne me so apparantly offic i do arrest you": [0, 65535], "scorne me so apparantly offic i do arrest you sir": [0, 65535], "me so apparantly offic i do arrest you sir you": [0, 65535], "so apparantly offic i do arrest you sir you heare": [0, 65535], "apparantly offic i do arrest you sir you heare the": [0, 65535], "offic i do arrest you sir you heare the suite": [0, 65535], "i do arrest you sir you heare the suite ant": [0, 65535], "do arrest you sir you heare the suite ant i": [0, 65535], "arrest you sir you heare the suite ant i do": [0, 65535], "you sir you heare the suite ant i do obey": [0, 65535], "sir you heare the suite ant i do obey thee": [0, 65535], "you heare the suite ant i do obey thee till": [0, 65535], "heare the suite ant i do obey thee till i": [0, 65535], "the suite ant i do obey thee till i giue": [0, 65535], "suite ant i do obey thee till i giue thee": [0, 65535], "ant i do obey thee till i giue thee baile": [0, 65535], "i do obey thee till i giue thee baile but": [0, 65535], "do obey thee till i giue thee baile but sirrah": [0, 65535], "obey thee till i giue thee baile but sirrah you": [0, 65535], "thee till i giue thee baile but sirrah you shall": [0, 65535], "till i giue thee baile but sirrah you shall buy": [0, 65535], "i giue thee baile but sirrah you shall buy this": [0, 65535], "giue thee baile but sirrah you shall buy this sport": [0, 65535], "thee baile but sirrah you shall buy this sport as": [0, 65535], "baile but sirrah you shall buy this sport as deere": [0, 65535], "but sirrah you shall buy this sport as deere as": [0, 65535], "sirrah you shall buy this sport as deere as all": [0, 65535], "you shall buy this sport as deere as all the": [0, 65535], "shall buy this sport as deere as all the mettall": [0, 65535], "buy this sport as deere as all the mettall in": [0, 65535], "this sport as deere as all the mettall in your": [0, 65535], "sport as deere as all the mettall in your shop": [0, 65535], "as deere as all the mettall in your shop will": [0, 65535], "deere as all the mettall in your shop will answer": [0, 65535], "as all the mettall in your shop will answer gold": [0, 65535], "all the mettall in your shop will answer gold sir": [0, 65535], "the mettall in your shop will answer gold sir sir": [0, 65535], "mettall in your shop will answer gold sir sir i": [0, 65535], "in your shop will answer gold sir sir i shall": [0, 65535], "your shop will answer gold sir sir i shall haue": [0, 65535], "shop will answer gold sir sir i shall haue law": [0, 65535], "will answer gold sir sir i shall haue law in": [0, 65535], "answer gold sir sir i shall haue law in ephesus": [0, 65535], "gold sir sir i shall haue law in ephesus to": [0, 65535], "sir sir i shall haue law in ephesus to your": [0, 65535], "sir i shall haue law in ephesus to your notorious": [0, 65535], "i shall haue law in ephesus to your notorious shame": [0, 65535], "shall haue law in ephesus to your notorious shame i": [0, 65535], "haue law in ephesus to your notorious shame i doubt": [0, 65535], "law in ephesus to your notorious shame i doubt it": [0, 65535], "in ephesus to your notorious shame i doubt it not": [0, 65535], "ephesus to your notorious shame i doubt it not enter": [0, 65535], "to your notorious shame i doubt it not enter dromio": [0, 65535], "your notorious shame i doubt it not enter dromio sira": [0, 65535], "notorious shame i doubt it not enter dromio sira from": [0, 65535], "shame i doubt it not enter dromio sira from the": [0, 65535], "i doubt it not enter dromio sira from the bay": [0, 65535], "doubt it not enter dromio sira from the bay dro": [0, 65535], "it not enter dromio sira from the bay dro master": [0, 65535], "not enter dromio sira from the bay dro master there's": [0, 65535], "enter dromio sira from the bay dro master there's a": [0, 65535], "dromio sira from the bay dro master there's a barke": [0, 65535], "sira from the bay dro master there's a barke of": [0, 65535], "from the bay dro master there's a barke of epidamium": [0, 65535], "the bay dro master there's a barke of epidamium that": [0, 65535], "bay dro master there's a barke of epidamium that staies": [0, 65535], "dro master there's a barke of epidamium that staies but": [0, 65535], "master there's a barke of epidamium that staies but till": [0, 65535], "there's a barke of epidamium that staies but till her": [0, 65535], "a barke of epidamium that staies but till her owner": [0, 65535], "barke of epidamium that staies but till her owner comes": [0, 65535], "of epidamium that staies but till her owner comes aboord": [0, 65535], "epidamium that staies but till her owner comes aboord and": [0, 65535], "that staies but till her owner comes aboord and then": [0, 65535], "staies but till her owner comes aboord and then sir": [0, 65535], "but till her owner comes aboord and then sir she": [0, 65535], "till her owner comes aboord and then sir she beares": [0, 65535], "her owner comes aboord and then sir she beares away": [0, 65535], "owner comes aboord and then sir she beares away our": [0, 65535], "comes aboord and then sir she beares away our fraughtage": [0, 65535], "aboord and then sir she beares away our fraughtage sir": [0, 65535], "and then sir she beares away our fraughtage sir i": [0, 65535], "then sir she beares away our fraughtage sir i haue": [0, 65535], "sir she beares away our fraughtage sir i haue conuei'd": [0, 65535], "she beares away our fraughtage sir i haue conuei'd aboord": [0, 65535], "beares away our fraughtage sir i haue conuei'd aboord and": [0, 65535], "away our fraughtage sir i haue conuei'd aboord and i": [0, 65535], "our fraughtage sir i haue conuei'd aboord and i haue": [0, 65535], "fraughtage sir i haue conuei'd aboord and i haue bought": [0, 65535], "sir i haue conuei'd aboord and i haue bought the": [0, 65535], "i haue conuei'd aboord and i haue bought the oyle": [0, 65535], "haue conuei'd aboord and i haue bought the oyle the": [0, 65535], "conuei'd aboord and i haue bought the oyle the balsamum": [0, 65535], "aboord and i haue bought the oyle the balsamum and": [0, 65535], "and i haue bought the oyle the balsamum and aqua": [0, 65535], "i haue bought the oyle the balsamum and aqua vit\u00e6": [0, 65535], "haue bought the oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "bought the oyle the balsamum and aqua vit\u00e6 the ship": [0, 65535], "the oyle the balsamum and aqua vit\u00e6 the ship is": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the ship is in": [0, 65535], "the balsamum and aqua vit\u00e6 the ship is in her": [0, 65535], "balsamum and aqua vit\u00e6 the ship is in her trim": [0, 65535], "and aqua vit\u00e6 the ship is in her trim the": [0, 65535], "aqua vit\u00e6 the ship is in her trim the merrie": [0, 65535], "vit\u00e6 the ship is in her trim the merrie winde": [0, 65535], "the ship is in her trim the merrie winde blowes": [0, 65535], "ship is in her trim the merrie winde blowes faire": [0, 65535], "is in her trim the merrie winde blowes faire from": [0, 65535], "in her trim the merrie winde blowes faire from land": [0, 65535], "her trim the merrie winde blowes faire from land they": [0, 65535], "trim the merrie winde blowes faire from land they stay": [0, 65535], "the merrie winde blowes faire from land they stay for": [0, 65535], "merrie winde blowes faire from land they stay for nought": [0, 65535], "winde blowes faire from land they stay for nought at": [0, 65535], "blowes faire from land they stay for nought at all": [0, 65535], "faire from land they stay for nought at all but": [0, 65535], "from land they stay for nought at all but for": [0, 65535], "land they stay for nought at all but for their": [0, 65535], "they stay for nought at all but for their owner": [0, 65535], "stay for nought at all but for their owner master": [0, 65535], "for nought at all but for their owner master and": [0, 65535], "nought at all but for their owner master and your": [0, 65535], "at all but for their owner master and your selfe": [0, 65535], "all but for their owner master and your selfe an": [0, 65535], "but for their owner master and your selfe an how": [0, 65535], "for their owner master and your selfe an how now": [0, 65535], "their owner master and your selfe an how now a": [0, 65535], "owner master and your selfe an how now a madman": [0, 65535], "master and your selfe an how now a madman why": [0, 65535], "and your selfe an how now a madman why thou": [0, 65535], "your selfe an how now a madman why thou peeuish": [0, 65535], "selfe an how now a madman why thou peeuish sheep": [0, 65535], "an how now a madman why thou peeuish sheep what": [0, 65535], "how now a madman why thou peeuish sheep what ship": [0, 65535], "now a madman why thou peeuish sheep what ship of": [0, 65535], "a madman why thou peeuish sheep what ship of epidamium": [0, 65535], "madman why thou peeuish sheep what ship of epidamium staies": [0, 65535], "why thou peeuish sheep what ship of epidamium staies for": [0, 65535], "thou peeuish sheep what ship of epidamium staies for me": [0, 65535], "peeuish sheep what ship of epidamium staies for me s": [0, 65535], "sheep what ship of epidamium staies for me s dro": [0, 65535], "what ship of epidamium staies for me s dro a": [0, 65535], "ship of epidamium staies for me s dro a ship": [0, 65535], "of epidamium staies for me s dro a ship you": [0, 65535], "epidamium staies for me s dro a ship you sent": [0, 65535], "staies for me s dro a ship you sent me": [0, 65535], "for me s dro a ship you sent me too": [0, 65535], "me s dro a ship you sent me too to": [0, 65535], "s dro a ship you sent me too to hier": [0, 65535], "dro a ship you sent me too to hier waftage": [0, 65535], "a ship you sent me too to hier waftage ant": [0, 65535], "ship you sent me too to hier waftage ant thou": [0, 65535], "you sent me too to hier waftage ant thou drunken": [0, 65535], "sent me too to hier waftage ant thou drunken slaue": [0, 65535], "me too to hier waftage ant thou drunken slaue i": [0, 65535], "too to hier waftage ant thou drunken slaue i sent": [0, 65535], "to hier waftage ant thou drunken slaue i sent thee": [0, 65535], "hier waftage ant thou drunken slaue i sent thee for": [0, 65535], "waftage ant thou drunken slaue i sent thee for a": [0, 65535], "ant thou drunken slaue i sent thee for a rope": [0, 65535], "thou drunken slaue i sent thee for a rope and": [0, 65535], "drunken slaue i sent thee for a rope and told": [0, 65535], "slaue i sent thee for a rope and told thee": [0, 65535], "i sent thee for a rope and told thee to": [0, 65535], "sent thee for a rope and told thee to what": [0, 65535], "thee for a rope and told thee to what purpose": [0, 65535], "for a rope and told thee to what purpose and": [0, 65535], "a rope and told thee to what purpose and what": [0, 65535], "rope and told thee to what purpose and what end": [0, 65535], "and told thee to what purpose and what end s": [0, 65535], "told thee to what purpose and what end s dro": [0, 65535], "thee to what purpose and what end s dro you": [0, 65535], "to what purpose and what end s dro you sent": [0, 65535], "what purpose and what end s dro you sent me": [0, 65535], "purpose and what end s dro you sent me for": [0, 65535], "and what end s dro you sent me for a": [0, 65535], "what end s dro you sent me for a ropes": [0, 65535], "end s dro you sent me for a ropes end": [0, 65535], "s dro you sent me for a ropes end as": [0, 65535], "dro you sent me for a ropes end as soone": [0, 65535], "you sent me for a ropes end as soone you": [0, 65535], "sent me for a ropes end as soone you sent": [0, 65535], "me for a ropes end as soone you sent me": [0, 65535], "for a ropes end as soone you sent me to": [0, 65535], "a ropes end as soone you sent me to the": [0, 65535], "ropes end as soone you sent me to the bay": [0, 65535], "end as soone you sent me to the bay sir": [0, 65535], "as soone you sent me to the bay sir for": [0, 65535], "soone you sent me to the bay sir for a": [0, 65535], "you sent me to the bay sir for a barke": [0, 65535], "sent me to the bay sir for a barke ant": [0, 65535], "me to the bay sir for a barke ant i": [0, 65535], "to the bay sir for a barke ant i will": [0, 65535], "the bay sir for a barke ant i will debate": [0, 65535], "bay sir for a barke ant i will debate this": [0, 65535], "sir for a barke ant i will debate this matter": [0, 65535], "for a barke ant i will debate this matter at": [0, 65535], "a barke ant i will debate this matter at more": [0, 65535], "barke ant i will debate this matter at more leisure": [0, 65535], "ant i will debate this matter at more leisure and": [0, 65535], "i will debate this matter at more leisure and teach": [0, 65535], "will debate this matter at more leisure and teach your": [0, 65535], "debate this matter at more leisure and teach your eares": [0, 65535], "this matter at more leisure and teach your eares to": [0, 65535], "matter at more leisure and teach your eares to list": [0, 65535], "at more leisure and teach your eares to list me": [0, 65535], "more leisure and teach your eares to list me with": [0, 65535], "leisure and teach your eares to list me with more": [0, 65535], "and teach your eares to list me with more heede": [0, 65535], "teach your eares to list me with more heede to": [0, 65535], "your eares to list me with more heede to adriana": [0, 65535], "eares to list me with more heede to adriana villaine": [0, 65535], "to list me with more heede to adriana villaine hie": [0, 65535], "list me with more heede to adriana villaine hie thee": [0, 65535], "me with more heede to adriana villaine hie thee straight": [0, 65535], "with more heede to adriana villaine hie thee straight giue": [0, 65535], "more heede to adriana villaine hie thee straight giue her": [0, 65535], "heede to adriana villaine hie thee straight giue her this": [0, 65535], "to adriana villaine hie thee straight giue her this key": [0, 65535], "adriana villaine hie thee straight giue her this key and": [0, 65535], "villaine hie thee straight giue her this key and tell": [0, 65535], "hie thee straight giue her this key and tell her": [0, 65535], "thee straight giue her this key and tell her in": [0, 65535], "straight giue her this key and tell her in the": [0, 65535], "giue her this key and tell her in the deske": [0, 65535], "her this key and tell her in the deske that's": [0, 65535], "this key and tell her in the deske that's couer'd": [0, 65535], "key and tell her in the deske that's couer'd o're": [0, 65535], "and tell her in the deske that's couer'd o're with": [0, 65535], "tell her in the deske that's couer'd o're with turkish": [0, 65535], "her in the deske that's couer'd o're with turkish tapistrie": [0, 65535], "in the deske that's couer'd o're with turkish tapistrie there": [0, 65535], "the deske that's couer'd o're with turkish tapistrie there is": [0, 65535], "deske that's couer'd o're with turkish tapistrie there is a": [0, 65535], "that's couer'd o're with turkish tapistrie there is a purse": [0, 65535], "couer'd o're with turkish tapistrie there is a purse of": [0, 65535], "o're with turkish tapistrie there is a purse of duckets": [0, 65535], "with turkish tapistrie there is a purse of duckets let": [0, 65535], "turkish tapistrie there is a purse of duckets let her": [0, 65535], "tapistrie there is a purse of duckets let her send": [0, 65535], "there is a purse of duckets let her send it": [0, 65535], "is a purse of duckets let her send it tell": [0, 65535], "a purse of duckets let her send it tell her": [0, 65535], "purse of duckets let her send it tell her i": [0, 65535], "of duckets let her send it tell her i am": [0, 65535], "duckets let her send it tell her i am arrested": [0, 65535], "let her send it tell her i am arrested in": [0, 65535], "her send it tell her i am arrested in the": [0, 65535], "send it tell her i am arrested in the streete": [0, 65535], "it tell her i am arrested in the streete and": [0, 65535], "tell her i am arrested in the streete and that": [0, 65535], "her i am arrested in the streete and that shall": [0, 65535], "i am arrested in the streete and that shall baile": [0, 65535], "am arrested in the streete and that shall baile me": [0, 65535], "arrested in the streete and that shall baile me hie": [0, 65535], "in the streete and that shall baile me hie thee": [0, 65535], "the streete and that shall baile me hie thee slaue": [0, 65535], "streete and that shall baile me hie thee slaue be": [0, 65535], "and that shall baile me hie thee slaue be gone": [0, 65535], "that shall baile me hie thee slaue be gone on": [0, 65535], "shall baile me hie thee slaue be gone on officer": [0, 65535], "baile me hie thee slaue be gone on officer to": [0, 65535], "me hie thee slaue be gone on officer to prison": [0, 65535], "hie thee slaue be gone on officer to prison till": [0, 65535], "thee slaue be gone on officer to prison till it": [0, 65535], "slaue be gone on officer to prison till it come": [0, 65535], "be gone on officer to prison till it come exeunt": [0, 65535], "gone on officer to prison till it come exeunt s": [0, 65535], "on officer to prison till it come exeunt s dromio": [0, 65535], "officer to prison till it come exeunt s dromio to": [0, 65535], "to prison till it come exeunt s dromio to adriana": [0, 65535], "prison till it come exeunt s dromio to adriana that": [0, 65535], "till it come exeunt s dromio to adriana that is": [0, 65535], "it come exeunt s dromio to adriana that is where": [0, 65535], "come exeunt s dromio to adriana that is where we": [0, 65535], "exeunt s dromio to adriana that is where we din'd": [0, 65535], "s dromio to adriana that is where we din'd where": [0, 65535], "dromio to adriana that is where we din'd where dowsabell": [0, 65535], "to adriana that is where we din'd where dowsabell did": [0, 65535], "adriana that is where we din'd where dowsabell did claime": [0, 65535], "that is where we din'd where dowsabell did claime me": [0, 65535], "is where we din'd where dowsabell did claime me for": [0, 65535], "where we din'd where dowsabell did claime me for her": [0, 65535], "we din'd where dowsabell did claime me for her husband": [0, 65535], "din'd where dowsabell did claime me for her husband she": [0, 65535], "where dowsabell did claime me for her husband she is": [0, 65535], "dowsabell did claime me for her husband she is too": [0, 65535], "did claime me for her husband she is too bigge": [0, 65535], "claime me for her husband she is too bigge i": [0, 65535], "me for her husband she is too bigge i hope": [0, 65535], "for her husband she is too bigge i hope for": [0, 65535], "her husband she is too bigge i hope for me": [0, 65535], "husband she is too bigge i hope for me to": [0, 65535], "she is too bigge i hope for me to compasse": [0, 65535], "is too bigge i hope for me to compasse thither": [0, 65535], "too bigge i hope for me to compasse thither i": [0, 65535], "bigge i hope for me to compasse thither i must": [0, 65535], "i hope for me to compasse thither i must although": [0, 65535], "hope for me to compasse thither i must although against": [0, 65535], "for me to compasse thither i must although against my": [0, 65535], "me to compasse thither i must although against my will": [0, 65535], "to compasse thither i must although against my will for": [0, 65535], "compasse thither i must although against my will for seruants": [0, 65535], "thither i must although against my will for seruants must": [0, 65535], "i must although against my will for seruants must their": [0, 65535], "must although against my will for seruants must their masters": [0, 65535], "although against my will for seruants must their masters mindes": [0, 65535], "against my will for seruants must their masters mindes fulfill": [0, 65535], "my will for seruants must their masters mindes fulfill exit": [0, 65535], "will for seruants must their masters mindes fulfill exit enter": [0, 65535], "for seruants must their masters mindes fulfill exit enter adriana": [0, 65535], "seruants must their masters mindes fulfill exit enter adriana and": [0, 65535], "must their masters mindes fulfill exit enter adriana and luciana": [0, 65535], "their masters mindes fulfill exit enter adriana and luciana adr": [0, 65535], "masters mindes fulfill exit enter adriana and luciana adr ah": [0, 65535], "mindes fulfill exit enter adriana and luciana adr ah luciana": [0, 65535], "fulfill exit enter adriana and luciana adr ah luciana did": [0, 65535], "exit enter adriana and luciana adr ah luciana did he": [0, 65535], "enter adriana and luciana adr ah luciana did he tempt": [0, 65535], "adriana and luciana adr ah luciana did he tempt thee": [0, 65535], "and luciana adr ah luciana did he tempt thee so": [0, 65535], "luciana adr ah luciana did he tempt thee so might'st": [0, 65535], "adr ah luciana did he tempt thee so might'st thou": [0, 65535], "ah luciana did he tempt thee so might'st thou perceiue": [0, 65535], "luciana did he tempt thee so might'st thou perceiue austeerely": [0, 65535], "did he tempt thee so might'st thou perceiue austeerely in": [0, 65535], "he tempt thee so might'st thou perceiue austeerely in his": [0, 65535], "tempt thee so might'st thou perceiue austeerely in his eie": [0, 65535], "thee so might'st thou perceiue austeerely in his eie that": [0, 65535], "so might'st thou perceiue austeerely in his eie that he": [0, 65535], "might'st thou perceiue austeerely in his eie that he did": [0, 65535], "thou perceiue austeerely in his eie that he did plead": [0, 65535], "perceiue austeerely in his eie that he did plead in": [0, 65535], "austeerely in his eie that he did plead in earnest": [0, 65535], "in his eie that he did plead in earnest yea": [0, 65535], "his eie that he did plead in earnest yea or": [0, 65535], "eie that he did plead in earnest yea or no": [0, 65535], "that he did plead in earnest yea or no look'd": [0, 65535], "he did plead in earnest yea or no look'd he": [0, 65535], "did plead in earnest yea or no look'd he or": [0, 65535], "plead in earnest yea or no look'd he or red": [0, 65535], "in earnest yea or no look'd he or red or": [0, 65535], "earnest yea or no look'd he or red or pale": [0, 65535], "yea or no look'd he or red or pale or": [0, 65535], "or no look'd he or red or pale or sad": [0, 65535], "no look'd he or red or pale or sad or": [0, 65535], "look'd he or red or pale or sad or merrily": [0, 65535], "he or red or pale or sad or merrily what": [0, 65535], "or red or pale or sad or merrily what obseruation": [0, 65535], "red or pale or sad or merrily what obseruation mad'st": [0, 65535], "or pale or sad or merrily what obseruation mad'st thou": [0, 65535], "pale or sad or merrily what obseruation mad'st thou in": [0, 65535], "or sad or merrily what obseruation mad'st thou in this": [0, 65535], "sad or merrily what obseruation mad'st thou in this case": [0, 65535], "or merrily what obseruation mad'st thou in this case oh": [0, 65535], "merrily what obseruation mad'st thou in this case oh his": [0, 65535], "what obseruation mad'st thou in this case oh his hearts": [0, 65535], "obseruation mad'st thou in this case oh his hearts meteors": [0, 65535], "mad'st thou in this case oh his hearts meteors tilting": [0, 65535], "thou in this case oh his hearts meteors tilting in": [0, 65535], "in this case oh his hearts meteors tilting in his": [0, 65535], "this case oh his hearts meteors tilting in his face": [0, 65535], "case oh his hearts meteors tilting in his face luc": [0, 65535], "oh his hearts meteors tilting in his face luc first": [0, 65535], "his hearts meteors tilting in his face luc first he": [0, 65535], "hearts meteors tilting in his face luc first he deni'de": [0, 65535], "meteors tilting in his face luc first he deni'de you": [0, 65535], "tilting in his face luc first he deni'de you had": [0, 65535], "in his face luc first he deni'de you had in": [0, 65535], "his face luc first he deni'de you had in him": [0, 65535], "face luc first he deni'de you had in him no": [0, 65535], "luc first he deni'de you had in him no right": [0, 65535], "first he deni'de you had in him no right adr": [0, 65535], "he deni'de you had in him no right adr he": [0, 65535], "deni'de you had in him no right adr he meant": [0, 65535], "you had in him no right adr he meant he": [0, 65535], "had in him no right adr he meant he did": [0, 65535], "in him no right adr he meant he did me": [0, 65535], "him no right adr he meant he did me none": [0, 65535], "no right adr he meant he did me none the": [0, 65535], "right adr he meant he did me none the more": [0, 65535], "adr he meant he did me none the more my": [0, 65535], "he meant he did me none the more my spight": [0, 65535], "meant he did me none the more my spight luc": [0, 65535], "he did me none the more my spight luc then": [0, 65535], "did me none the more my spight luc then swore": [0, 65535], "me none the more my spight luc then swore he": [0, 65535], "none the more my spight luc then swore he that": [0, 65535], "the more my spight luc then swore he that he": [0, 65535], "more my spight luc then swore he that he was": [0, 65535], "my spight luc then swore he that he was a": [0, 65535], "spight luc then swore he that he was a stranger": [0, 65535], "luc then swore he that he was a stranger heere": [0, 65535], "then swore he that he was a stranger heere adr": [0, 65535], "swore he that he was a stranger heere adr and": [0, 65535], "he that he was a stranger heere adr and true": [0, 65535], "that he was a stranger heere adr and true he": [0, 65535], "he was a stranger heere adr and true he swore": [0, 65535], "was a stranger heere adr and true he swore though": [0, 65535], "a stranger heere adr and true he swore though yet": [0, 65535], "stranger heere adr and true he swore though yet forsworne": [0, 65535], "heere adr and true he swore though yet forsworne hee": [0, 65535], "adr and true he swore though yet forsworne hee were": [0, 65535], "and true he swore though yet forsworne hee were luc": [0, 65535], "true he swore though yet forsworne hee were luc then": [0, 65535], "he swore though yet forsworne hee were luc then pleaded": [0, 65535], "swore though yet forsworne hee were luc then pleaded i": [0, 65535], "though yet forsworne hee were luc then pleaded i for": [0, 65535], "yet forsworne hee were luc then pleaded i for you": [0, 65535], "forsworne hee were luc then pleaded i for you adr": [0, 65535], "hee were luc then pleaded i for you adr and": [0, 65535], "were luc then pleaded i for you adr and what": [0, 65535], "luc then pleaded i for you adr and what said": [0, 65535], "then pleaded i for you adr and what said he": [0, 65535], "pleaded i for you adr and what said he luc": [0, 65535], "i for you adr and what said he luc that": [0, 65535], "for you adr and what said he luc that loue": [0, 65535], "you adr and what said he luc that loue i": [0, 65535], "adr and what said he luc that loue i begg'd": [0, 65535], "and what said he luc that loue i begg'd for": [0, 65535], "what said he luc that loue i begg'd for you": [0, 65535], "said he luc that loue i begg'd for you he": [0, 65535], "he luc that loue i begg'd for you he begg'd": [0, 65535], "luc that loue i begg'd for you he begg'd of": [0, 65535], "that loue i begg'd for you he begg'd of me": [0, 65535], "loue i begg'd for you he begg'd of me adr": [0, 65535], "i begg'd for you he begg'd of me adr with": [0, 65535], "begg'd for you he begg'd of me adr with what": [0, 65535], "for you he begg'd of me adr with what perswasion": [0, 65535], "you he begg'd of me adr with what perswasion did": [0, 65535], "he begg'd of me adr with what perswasion did he": [0, 65535], "begg'd of me adr with what perswasion did he tempt": [0, 65535], "of me adr with what perswasion did he tempt thy": [0, 65535], "me adr with what perswasion did he tempt thy loue": [0, 65535], "adr with what perswasion did he tempt thy loue luc": [0, 65535], "with what perswasion did he tempt thy loue luc with": [0, 65535], "what perswasion did he tempt thy loue luc with words": [0, 65535], "perswasion did he tempt thy loue luc with words that": [0, 65535], "did he tempt thy loue luc with words that in": [0, 65535], "he tempt thy loue luc with words that in an": [0, 65535], "tempt thy loue luc with words that in an honest": [0, 65535], "thy loue luc with words that in an honest suit": [0, 65535], "loue luc with words that in an honest suit might": [0, 65535], "luc with words that in an honest suit might moue": [0, 65535], "with words that in an honest suit might moue first": [0, 65535], "words that in an honest suit might moue first he": [0, 65535], "that in an honest suit might moue first he did": [0, 65535], "in an honest suit might moue first he did praise": [0, 65535], "an honest suit might moue first he did praise my": [0, 65535], "honest suit might moue first he did praise my beautie": [0, 65535], "suit might moue first he did praise my beautie then": [0, 65535], "might moue first he did praise my beautie then my": [0, 65535], "moue first he did praise my beautie then my speech": [0, 65535], "first he did praise my beautie then my speech adr": [0, 65535], "he did praise my beautie then my speech adr did'st": [0, 65535], "did praise my beautie then my speech adr did'st speake": [0, 65535], "praise my beautie then my speech adr did'st speake him": [0, 65535], "my beautie then my speech adr did'st speake him faire": [0, 65535], "beautie then my speech adr did'st speake him faire luc": [0, 65535], "then my speech adr did'st speake him faire luc haue": [0, 65535], "my speech adr did'st speake him faire luc haue patience": [0, 65535], "speech adr did'st speake him faire luc haue patience i": [0, 65535], "adr did'st speake him faire luc haue patience i beseech": [0, 65535], "did'st speake him faire luc haue patience i beseech adr": [0, 65535], "speake him faire luc haue patience i beseech adr i": [0, 65535], "him faire luc haue patience i beseech adr i cannot": [0, 65535], "faire luc haue patience i beseech adr i cannot nor": [0, 65535], "luc haue patience i beseech adr i cannot nor i": [0, 65535], "haue patience i beseech adr i cannot nor i will": [0, 65535], "patience i beseech adr i cannot nor i will not": [0, 65535], "i beseech adr i cannot nor i will not hold": [0, 65535], "beseech adr i cannot nor i will not hold me": [0, 65535], "adr i cannot nor i will not hold me still": [0, 65535], "i cannot nor i will not hold me still my": [0, 65535], "cannot nor i will not hold me still my tongue": [0, 65535], "nor i will not hold me still my tongue though": [0, 65535], "i will not hold me still my tongue though not": [0, 65535], "will not hold me still my tongue though not my": [0, 65535], "not hold me still my tongue though not my heart": [0, 65535], "hold me still my tongue though not my heart shall": [0, 65535], "me still my tongue though not my heart shall haue": [0, 65535], "still my tongue though not my heart shall haue his": [0, 65535], "my tongue though not my heart shall haue his will": [0, 65535], "tongue though not my heart shall haue his will he": [0, 65535], "though not my heart shall haue his will he is": [0, 65535], "not my heart shall haue his will he is deformed": [0, 65535], "my heart shall haue his will he is deformed crooked": [0, 65535], "heart shall haue his will he is deformed crooked old": [0, 65535], "shall haue his will he is deformed crooked old and": [0, 65535], "haue his will he is deformed crooked old and sere": [0, 65535], "his will he is deformed crooked old and sere ill": [0, 65535], "will he is deformed crooked old and sere ill fac'd": [0, 65535], "he is deformed crooked old and sere ill fac'd worse": [0, 65535], "is deformed crooked old and sere ill fac'd worse bodied": [0, 65535], "deformed crooked old and sere ill fac'd worse bodied shapelesse": [0, 65535], "crooked old and sere ill fac'd worse bodied shapelesse euery": [0, 65535], "old and sere ill fac'd worse bodied shapelesse euery where": [0, 65535], "and sere ill fac'd worse bodied shapelesse euery where vicious": [0, 65535], "sere ill fac'd worse bodied shapelesse euery where vicious vngentle": [0, 65535], "ill fac'd worse bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "fac'd worse bodied shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "worse bodied shapelesse euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in making worse in": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making worse in minde": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse in minde luc": [0, 65535], "blunt vnkinde stigmaticall in making worse in minde luc who": [0, 65535], "vnkinde stigmaticall in making worse in minde luc who would": [0, 65535], "stigmaticall in making worse in minde luc who would be": [0, 65535], "in making worse in minde luc who would be iealous": [0, 65535], "making worse in minde luc who would be iealous then": [0, 65535], "worse in minde luc who would be iealous then of": [0, 65535], "in minde luc who would be iealous then of such": [0, 65535], "minde luc who would be iealous then of such a": [0, 65535], "luc who would be iealous then of such a one": [0, 65535], "who would be iealous then of such a one no": [0, 65535], "would be iealous then of such a one no euill": [0, 65535], "be iealous then of such a one no euill lost": [0, 65535], "iealous then of such a one no euill lost is": [0, 65535], "then of such a one no euill lost is wail'd": [0, 65535], "of such a one no euill lost is wail'd when": [0, 65535], "such a one no euill lost is wail'd when it": [0, 65535], "a one no euill lost is wail'd when it is": [0, 65535], "one no euill lost is wail'd when it is gone": [0, 65535], "no euill lost is wail'd when it is gone adr": [0, 65535], "euill lost is wail'd when it is gone adr ah": [0, 65535], "lost is wail'd when it is gone adr ah but": [0, 65535], "is wail'd when it is gone adr ah but i": [0, 65535], "wail'd when it is gone adr ah but i thinke": [0, 65535], "when it is gone adr ah but i thinke him": [0, 65535], "it is gone adr ah but i thinke him better": [0, 65535], "is gone adr ah but i thinke him better then": [0, 65535], "gone adr ah but i thinke him better then i": [0, 65535], "adr ah but i thinke him better then i say": [0, 65535], "ah but i thinke him better then i say and": [0, 65535], "but i thinke him better then i say and yet": [0, 65535], "i thinke him better then i say and yet would": [0, 65535], "thinke him better then i say and yet would herein": [0, 65535], "him better then i say and yet would herein others": [0, 65535], "better then i say and yet would herein others eies": [0, 65535], "then i say and yet would herein others eies were": [0, 65535], "i say and yet would herein others eies were worse": [0, 65535], "say and yet would herein others eies were worse farre": [0, 65535], "and yet would herein others eies were worse farre from": [0, 65535], "yet would herein others eies were worse farre from her": [0, 65535], "would herein others eies were worse farre from her nest": [0, 65535], "herein others eies were worse farre from her nest the": [0, 65535], "others eies were worse farre from her nest the lapwing": [0, 65535], "eies were worse farre from her nest the lapwing cries": [0, 65535], "were worse farre from her nest the lapwing cries away": [0, 65535], "worse farre from her nest the lapwing cries away my": [0, 65535], "farre from her nest the lapwing cries away my heart": [0, 65535], "from her nest the lapwing cries away my heart praies": [0, 65535], "her nest the lapwing cries away my heart praies for": [0, 65535], "nest the lapwing cries away my heart praies for him": [0, 65535], "the lapwing cries away my heart praies for him though": [0, 65535], "lapwing cries away my heart praies for him though my": [0, 65535], "cries away my heart praies for him though my tongue": [0, 65535], "away my heart praies for him though my tongue doe": [0, 65535], "my heart praies for him though my tongue doe curse": [0, 65535], "heart praies for him though my tongue doe curse enter": [0, 65535], "praies for him though my tongue doe curse enter s": [0, 65535], "for him though my tongue doe curse enter s dromio": [0, 65535], "him though my tongue doe curse enter s dromio dro": [0, 65535], "though my tongue doe curse enter s dromio dro here": [0, 65535], "my tongue doe curse enter s dromio dro here goe": [0, 65535], "tongue doe curse enter s dromio dro here goe the": [0, 65535], "doe curse enter s dromio dro here goe the deske": [0, 65535], "curse enter s dromio dro here goe the deske the": [0, 65535], "enter s dromio dro here goe the deske the purse": [0, 65535], "s dromio dro here goe the deske the purse sweet": [0, 65535], "dromio dro here goe the deske the purse sweet now": [0, 65535], "dro here goe the deske the purse sweet now make": [0, 65535], "here goe the deske the purse sweet now make haste": [0, 65535], "goe the deske the purse sweet now make haste luc": [0, 65535], "the deske the purse sweet now make haste luc how": [0, 65535], "deske the purse sweet now make haste luc how hast": [0, 65535], "the purse sweet now make haste luc how hast thou": [0, 65535], "purse sweet now make haste luc how hast thou lost": [0, 65535], "sweet now make haste luc how hast thou lost thy": [0, 65535], "now make haste luc how hast thou lost thy breath": [0, 65535], "make haste luc how hast thou lost thy breath s": [0, 65535], "haste luc how hast thou lost thy breath s dro": [0, 65535], "luc how hast thou lost thy breath s dro by": [0, 65535], "how hast thou lost thy breath s dro by running": [0, 65535], "hast thou lost thy breath s dro by running fast": [0, 65535], "thou lost thy breath s dro by running fast adr": [0, 65535], "lost thy breath s dro by running fast adr where": [0, 65535], "thy breath s dro by running fast adr where is": [0, 65535], "breath s dro by running fast adr where is thy": [0, 65535], "s dro by running fast adr where is thy master": [0, 65535], "dro by running fast adr where is thy master dromio": [0, 65535], "by running fast adr where is thy master dromio is": [0, 65535], "running fast adr where is thy master dromio is he": [0, 65535], "fast adr where is thy master dromio is he well": [0, 65535], "adr where is thy master dromio is he well s": [0, 65535], "where is thy master dromio is he well s dro": [0, 65535], "is thy master dromio is he well s dro no": [0, 65535], "thy master dromio is he well s dro no he's": [0, 65535], "master dromio is he well s dro no he's in": [0, 65535], "dromio is he well s dro no he's in tartar": [0, 65535], "is he well s dro no he's in tartar limbo": [0, 65535], "he well s dro no he's in tartar limbo worse": [0, 65535], "well s dro no he's in tartar limbo worse then": [0, 65535], "s dro no he's in tartar limbo worse then hell": [0, 65535], "dro no he's in tartar limbo worse then hell a": [0, 65535], "no he's in tartar limbo worse then hell a diuell": [0, 65535], "he's in tartar limbo worse then hell a diuell in": [0, 65535], "in tartar limbo worse then hell a diuell in an": [0, 65535], "tartar limbo worse then hell a diuell in an euerlasting": [0, 65535], "limbo worse then hell a diuell in an euerlasting garment": [0, 65535], "worse then hell a diuell in an euerlasting garment hath": [0, 65535], "then hell a diuell in an euerlasting garment hath him": [0, 65535], "hell a diuell in an euerlasting garment hath him on": [0, 65535], "a diuell in an euerlasting garment hath him on whose": [0, 65535], "diuell in an euerlasting garment hath him on whose hard": [0, 65535], "in an euerlasting garment hath him on whose hard heart": [0, 65535], "an euerlasting garment hath him on whose hard heart is": [0, 65535], "euerlasting garment hath him on whose hard heart is button'd": [0, 65535], "garment hath him on whose hard heart is button'd vp": [0, 65535], "hath him on whose hard heart is button'd vp with": [0, 65535], "him on whose hard heart is button'd vp with steele": [0, 65535], "on whose hard heart is button'd vp with steele a": [0, 65535], "whose hard heart is button'd vp with steele a feind": [0, 65535], "hard heart is button'd vp with steele a feind a": [0, 65535], "heart is button'd vp with steele a feind a fairie": [0, 65535], "is button'd vp with steele a feind a fairie pittilesse": [0, 65535], "button'd vp with steele a feind a fairie pittilesse and": [0, 65535], "vp with steele a feind a fairie pittilesse and ruffe": [0, 65535], "with steele a feind a fairie pittilesse and ruffe a": [0, 65535], "steele a feind a fairie pittilesse and ruffe a wolfe": [0, 65535], "a feind a fairie pittilesse and ruffe a wolfe nay": [0, 65535], "feind a fairie pittilesse and ruffe a wolfe nay worse": [0, 65535], "a fairie pittilesse and ruffe a wolfe nay worse a": [0, 65535], "fairie pittilesse and ruffe a wolfe nay worse a fellow": [0, 65535], "pittilesse and ruffe a wolfe nay worse a fellow all": [0, 65535], "and ruffe a wolfe nay worse a fellow all in": [0, 65535], "ruffe a wolfe nay worse a fellow all in buffe": [0, 65535], "a wolfe nay worse a fellow all in buffe a": [0, 65535], "wolfe nay worse a fellow all in buffe a back": [0, 65535], "nay worse a fellow all in buffe a back friend": [0, 65535], "worse a fellow all in buffe a back friend a": [0, 65535], "a fellow all in buffe a back friend a shoulder": [0, 65535], "fellow all in buffe a back friend a shoulder clapper": [0, 65535], "all in buffe a back friend a shoulder clapper one": [0, 65535], "in buffe a back friend a shoulder clapper one that": [0, 65535], "buffe a back friend a shoulder clapper one that countermads": [0, 65535], "a back friend a shoulder clapper one that countermads the": [0, 65535], "back friend a shoulder clapper one that countermads the passages": [0, 65535], "friend a shoulder clapper one that countermads the passages of": [0, 65535], "a shoulder clapper one that countermads the passages of allies": [0, 65535], "shoulder clapper one that countermads the passages of allies creekes": [0, 65535], "clapper one that countermads the passages of allies creekes and": [0, 65535], "one that countermads the passages of allies creekes and narrow": [0, 65535], "that countermads the passages of allies creekes and narrow lands": [0, 65535], "countermads the passages of allies creekes and narrow lands a": [0, 65535], "the passages of allies creekes and narrow lands a hound": [0, 65535], "passages of allies creekes and narrow lands a hound that": [0, 65535], "of allies creekes and narrow lands a hound that runs": [0, 65535], "allies creekes and narrow lands a hound that runs counter": [0, 65535], "creekes and narrow lands a hound that runs counter and": [0, 65535], "and narrow lands a hound that runs counter and yet": [0, 65535], "narrow lands a hound that runs counter and yet draws": [0, 65535], "lands a hound that runs counter and yet draws drifoot": [0, 65535], "a hound that runs counter and yet draws drifoot well": [0, 65535], "hound that runs counter and yet draws drifoot well one": [0, 65535], "that runs counter and yet draws drifoot well one that": [0, 65535], "runs counter and yet draws drifoot well one that before": [0, 65535], "counter and yet draws drifoot well one that before the": [0, 65535], "and yet draws drifoot well one that before the iudgment": [0, 65535], "yet draws drifoot well one that before the iudgment carries": [0, 65535], "draws drifoot well one that before the iudgment carries poore": [0, 65535], "drifoot well one that before the iudgment carries poore soules": [0, 65535], "well one that before the iudgment carries poore soules to": [0, 65535], "one that before the iudgment carries poore soules to hel": [0, 65535], "that before the iudgment carries poore soules to hel adr": [0, 65535], "before the iudgment carries poore soules to hel adr why": [0, 65535], "the iudgment carries poore soules to hel adr why man": [0, 65535], "iudgment carries poore soules to hel adr why man what": [0, 65535], "carries poore soules to hel adr why man what is": [0, 65535], "poore soules to hel adr why man what is the": [0, 65535], "soules to hel adr why man what is the matter": [0, 65535], "to hel adr why man what is the matter s": [0, 65535], "hel adr why man what is the matter s dro": [0, 65535], "adr why man what is the matter s dro i": [0, 65535], "why man what is the matter s dro i doe": [0, 65535], "man what is the matter s dro i doe not": [0, 65535], "what is the matter s dro i doe not know": [0, 65535], "is the matter s dro i doe not know the": [0, 65535], "the matter s dro i doe not know the matter": [0, 65535], "matter s dro i doe not know the matter hee": [0, 65535], "s dro i doe not know the matter hee is": [0, 65535], "dro i doe not know the matter hee is rested": [0, 65535], "i doe not know the matter hee is rested on": [0, 65535], "doe not know the matter hee is rested on the": [0, 65535], "not know the matter hee is rested on the case": [0, 65535], "know the matter hee is rested on the case adr": [0, 65535], "the matter hee is rested on the case adr what": [0, 65535], "matter hee is rested on the case adr what is": [0, 65535], "hee is rested on the case adr what is he": [0, 65535], "is rested on the case adr what is he arrested": [0, 65535], "rested on the case adr what is he arrested tell": [0, 65535], "on the case adr what is he arrested tell me": [0, 65535], "the case adr what is he arrested tell me at": [0, 65535], "case adr what is he arrested tell me at whose": [0, 65535], "adr what is he arrested tell me at whose suite": [0, 65535], "what is he arrested tell me at whose suite s": [0, 65535], "is he arrested tell me at whose suite s dro": [0, 65535], "he arrested tell me at whose suite s dro i": [0, 65535], "arrested tell me at whose suite s dro i know": [0, 65535], "tell me at whose suite s dro i know not": [0, 65535], "me at whose suite s dro i know not at": [0, 65535], "at whose suite s dro i know not at whose": [0, 65535], "whose suite s dro i know not at whose suite": [0, 65535], "suite s dro i know not at whose suite he": [0, 65535], "s dro i know not at whose suite he is": [0, 65535], "dro i know not at whose suite he is arested": [0, 65535], "i know not at whose suite he is arested well": [0, 65535], "know not at whose suite he is arested well but": [0, 65535], "not at whose suite he is arested well but is": [0, 65535], "at whose suite he is arested well but is in": [0, 65535], "whose suite he is arested well but is in a": [0, 65535], "suite he is arested well but is in a suite": [0, 65535], "he is arested well but is in a suite of": [0, 65535], "is arested well but is in a suite of buffe": [0, 65535], "arested well but is in a suite of buffe which": [0, 65535], "well but is in a suite of buffe which rested": [0, 65535], "but is in a suite of buffe which rested him": [0, 65535], "is in a suite of buffe which rested him that": [0, 65535], "in a suite of buffe which rested him that can": [0, 65535], "a suite of buffe which rested him that can i": [0, 65535], "suite of buffe which rested him that can i tell": [0, 65535], "of buffe which rested him that can i tell will": [0, 65535], "buffe which rested him that can i tell will you": [0, 65535], "which rested him that can i tell will you send": [0, 65535], "rested him that can i tell will you send him": [0, 65535], "him that can i tell will you send him mistris": [0, 65535], "that can i tell will you send him mistris redemption": [0, 65535], "can i tell will you send him mistris redemption the": [0, 65535], "i tell will you send him mistris redemption the monie": [0, 65535], "tell will you send him mistris redemption the monie in": [0, 65535], "will you send him mistris redemption the monie in his": [0, 65535], "you send him mistris redemption the monie in his deske": [0, 65535], "send him mistris redemption the monie in his deske adr": [0, 65535], "him mistris redemption the monie in his deske adr go": [0, 65535], "mistris redemption the monie in his deske adr go fetch": [0, 65535], "redemption the monie in his deske adr go fetch it": [0, 65535], "the monie in his deske adr go fetch it sister": [0, 65535], "monie in his deske adr go fetch it sister this": [0, 65535], "in his deske adr go fetch it sister this i": [0, 65535], "his deske adr go fetch it sister this i wonder": [0, 65535], "deske adr go fetch it sister this i wonder at": [0, 65535], "adr go fetch it sister this i wonder at exit": [0, 65535], "go fetch it sister this i wonder at exit luciana": [0, 65535], "fetch it sister this i wonder at exit luciana thus": [0, 65535], "it sister this i wonder at exit luciana thus he": [0, 65535], "sister this i wonder at exit luciana thus he vnknowne": [0, 65535], "this i wonder at exit luciana thus he vnknowne to": [0, 65535], "i wonder at exit luciana thus he vnknowne to me": [0, 65535], "wonder at exit luciana thus he vnknowne to me should": [0, 65535], "at exit luciana thus he vnknowne to me should be": [0, 65535], "exit luciana thus he vnknowne to me should be in": [0, 65535], "luciana thus he vnknowne to me should be in debt": [0, 65535], "thus he vnknowne to me should be in debt tell": [0, 65535], "he vnknowne to me should be in debt tell me": [0, 65535], "vnknowne to me should be in debt tell me was": [0, 65535], "to me should be in debt tell me was he": [0, 65535], "me should be in debt tell me was he arested": [0, 65535], "should be in debt tell me was he arested on": [0, 65535], "be in debt tell me was he arested on a": [0, 65535], "in debt tell me was he arested on a band": [0, 65535], "debt tell me was he arested on a band s": [0, 65535], "tell me was he arested on a band s dro": [0, 65535], "me was he arested on a band s dro not": [0, 65535], "was he arested on a band s dro not on": [0, 65535], "he arested on a band s dro not on a": [0, 65535], "arested on a band s dro not on a band": [0, 65535], "on a band s dro not on a band but": [0, 65535], "a band s dro not on a band but on": [0, 65535], "band s dro not on a band but on a": [0, 65535], "s dro not on a band but on a stronger": [0, 65535], "dro not on a band but on a stronger thing": [0, 65535], "not on a band but on a stronger thing a": [0, 65535], "on a band but on a stronger thing a chaine": [0, 65535], "a band but on a stronger thing a chaine a": [0, 65535], "band but on a stronger thing a chaine a chaine": [0, 65535], "but on a stronger thing a chaine a chaine doe": [0, 65535], "on a stronger thing a chaine a chaine doe you": [0, 65535], "a stronger thing a chaine a chaine doe you not": [0, 65535], "stronger thing a chaine a chaine doe you not here": [0, 65535], "thing a chaine a chaine doe you not here it": [0, 65535], "a chaine a chaine doe you not here it ring": [0, 65535], "chaine a chaine doe you not here it ring adria": [0, 65535], "a chaine doe you not here it ring adria what": [0, 65535], "chaine doe you not here it ring adria what the": [0, 65535], "doe you not here it ring adria what the chaine": [0, 65535], "you not here it ring adria what the chaine s": [0, 65535], "not here it ring adria what the chaine s dro": [0, 65535], "here it ring adria what the chaine s dro no": [0, 65535], "it ring adria what the chaine s dro no no": [0, 65535], "ring adria what the chaine s dro no no the": [0, 65535], "adria what the chaine s dro no no the bell": [0, 65535], "what the chaine s dro no no the bell 'tis": [0, 65535], "the chaine s dro no no the bell 'tis time": [0, 65535], "chaine s dro no no the bell 'tis time that": [0, 65535], "s dro no no the bell 'tis time that i": [0, 65535], "dro no no the bell 'tis time that i were": [0, 65535], "no no the bell 'tis time that i were gone": [0, 65535], "no the bell 'tis time that i were gone it": [0, 65535], "the bell 'tis time that i were gone it was": [0, 65535], "bell 'tis time that i were gone it was two": [0, 65535], "'tis time that i were gone it was two ere": [0, 65535], "time that i were gone it was two ere i": [0, 65535], "that i were gone it was two ere i left": [0, 65535], "i were gone it was two ere i left him": [0, 65535], "were gone it was two ere i left him and": [0, 65535], "gone it was two ere i left him and now": [0, 65535], "it was two ere i left him and now the": [0, 65535], "was two ere i left him and now the clocke": [0, 65535], "two ere i left him and now the clocke strikes": [0, 65535], "ere i left him and now the clocke strikes one": [0, 65535], "i left him and now the clocke strikes one adr": [0, 65535], "left him and now the clocke strikes one adr the": [0, 65535], "him and now the clocke strikes one adr the houres": [0, 65535], "and now the clocke strikes one adr the houres come": [0, 65535], "now the clocke strikes one adr the houres come backe": [0, 65535], "the clocke strikes one adr the houres come backe that": [0, 65535], "clocke strikes one adr the houres come backe that did": [0, 65535], "strikes one adr the houres come backe that did i": [0, 65535], "one adr the houres come backe that did i neuer": [0, 65535], "adr the houres come backe that did i neuer here": [0, 65535], "the houres come backe that did i neuer here s": [0, 65535], "houres come backe that did i neuer here s dro": [0, 65535], "come backe that did i neuer here s dro oh": [0, 65535], "backe that did i neuer here s dro oh yes": [0, 65535], "that did i neuer here s dro oh yes if": [0, 65535], "did i neuer here s dro oh yes if any": [0, 65535], "i neuer here s dro oh yes if any houre": [0, 65535], "neuer here s dro oh yes if any houre meete": [0, 65535], "here s dro oh yes if any houre meete a": [0, 65535], "s dro oh yes if any houre meete a serieant": [0, 65535], "dro oh yes if any houre meete a serieant a": [0, 65535], "oh yes if any houre meete a serieant a turnes": [0, 65535], "yes if any houre meete a serieant a turnes backe": [0, 65535], "if any houre meete a serieant a turnes backe for": [0, 65535], "any houre meete a serieant a turnes backe for verie": [0, 65535], "houre meete a serieant a turnes backe for verie feare": [0, 65535], "meete a serieant a turnes backe for verie feare adri": [0, 65535], "a serieant a turnes backe for verie feare adri as": [0, 65535], "serieant a turnes backe for verie feare adri as if": [0, 65535], "a turnes backe for verie feare adri as if time": [0, 65535], "turnes backe for verie feare adri as if time were": [0, 65535], "backe for verie feare adri as if time were in": [0, 65535], "for verie feare adri as if time were in debt": [0, 65535], "verie feare adri as if time were in debt how": [0, 65535], "feare adri as if time were in debt how fondly": [0, 65535], "adri as if time were in debt how fondly do'st": [0, 65535], "as if time were in debt how fondly do'st thou": [0, 65535], "if time were in debt how fondly do'st thou reason": [0, 65535], "time were in debt how fondly do'st thou reason s": [0, 65535], "were in debt how fondly do'st thou reason s dro": [0, 65535], "in debt how fondly do'st thou reason s dro time": [0, 65535], "debt how fondly do'st thou reason s dro time is": [0, 65535], "how fondly do'st thou reason s dro time is a": [0, 65535], "fondly do'st thou reason s dro time is a verie": [0, 65535], "do'st thou reason s dro time is a verie bankerout": [0, 65535], "thou reason s dro time is a verie bankerout and": [0, 65535], "reason s dro time is a verie bankerout and owes": [0, 65535], "s dro time is a verie bankerout and owes more": [0, 65535], "dro time is a verie bankerout and owes more then": [0, 65535], "time is a verie bankerout and owes more then he's": [0, 65535], "is a verie bankerout and owes more then he's worth": [0, 65535], "a verie bankerout and owes more then he's worth to": [0, 65535], "verie bankerout and owes more then he's worth to season": [0, 65535], "bankerout and owes more then he's worth to season nay": [0, 65535], "and owes more then he's worth to season nay he's": [0, 65535], "owes more then he's worth to season nay he's a": [0, 65535], "more then he's worth to season nay he's a theefe": [0, 65535], "then he's worth to season nay he's a theefe too": [0, 65535], "he's worth to season nay he's a theefe too haue": [0, 65535], "worth to season nay he's a theefe too haue you": [0, 65535], "to season nay he's a theefe too haue you not": [0, 65535], "season nay he's a theefe too haue you not heard": [0, 65535], "nay he's a theefe too haue you not heard men": [0, 65535], "he's a theefe too haue you not heard men say": [0, 65535], "a theefe too haue you not heard men say that": [0, 65535], "theefe too haue you not heard men say that time": [0, 65535], "too haue you not heard men say that time comes": [0, 65535], "haue you not heard men say that time comes stealing": [0, 65535], "you not heard men say that time comes stealing on": [0, 65535], "not heard men say that time comes stealing on by": [0, 65535], "heard men say that time comes stealing on by night": [0, 65535], "men say that time comes stealing on by night and": [0, 65535], "say that time comes stealing on by night and day": [0, 65535], "that time comes stealing on by night and day if": [0, 65535], "time comes stealing on by night and day if i": [0, 65535], "comes stealing on by night and day if i be": [0, 65535], "stealing on by night and day if i be in": [0, 65535], "on by night and day if i be in debt": [0, 65535], "by night and day if i be in debt and": [0, 65535], "night and day if i be in debt and theft": [0, 65535], "and day if i be in debt and theft and": [0, 65535], "day if i be in debt and theft and a": [0, 65535], "if i be in debt and theft and a serieant": [0, 65535], "i be in debt and theft and a serieant in": [0, 65535], "be in debt and theft and a serieant in the": [0, 65535], "in debt and theft and a serieant in the way": [0, 65535], "debt and theft and a serieant in the way hath": [0, 65535], "and theft and a serieant in the way hath he": [0, 65535], "theft and a serieant in the way hath he not": [0, 65535], "and a serieant in the way hath he not reason": [0, 65535], "a serieant in the way hath he not reason to": [0, 65535], "serieant in the way hath he not reason to turne": [0, 65535], "in the way hath he not reason to turne backe": [0, 65535], "the way hath he not reason to turne backe an": [0, 65535], "way hath he not reason to turne backe an houre": [0, 65535], "hath he not reason to turne backe an houre in": [0, 65535], "he not reason to turne backe an houre in a": [0, 65535], "not reason to turne backe an houre in a day": [0, 65535], "reason to turne backe an houre in a day enter": [0, 65535], "to turne backe an houre in a day enter luciana": [0, 65535], "turne backe an houre in a day enter luciana adr": [0, 65535], "backe an houre in a day enter luciana adr go": [0, 65535], "an houre in a day enter luciana adr go dromio": [0, 65535], "houre in a day enter luciana adr go dromio there's": [0, 65535], "in a day enter luciana adr go dromio there's the": [0, 65535], "a day enter luciana adr go dromio there's the monie": [0, 65535], "day enter luciana adr go dromio there's the monie beare": [0, 65535], "enter luciana adr go dromio there's the monie beare it": [0, 65535], "luciana adr go dromio there's the monie beare it straight": [0, 65535], "adr go dromio there's the monie beare it straight and": [0, 65535], "go dromio there's the monie beare it straight and bring": [0, 65535], "dromio there's the monie beare it straight and bring thy": [0, 65535], "there's the monie beare it straight and bring thy master": [0, 65535], "the monie beare it straight and bring thy master home": [0, 65535], "monie beare it straight and bring thy master home imediately": [0, 65535], "beare it straight and bring thy master home imediately come": [0, 65535], "it straight and bring thy master home imediately come sister": [0, 65535], "straight and bring thy master home imediately come sister i": [0, 65535], "and bring thy master home imediately come sister i am": [0, 65535], "bring thy master home imediately come sister i am prest": [0, 65535], "thy master home imediately come sister i am prest downe": [0, 65535], "master home imediately come sister i am prest downe with": [0, 65535], "home imediately come sister i am prest downe with conceit": [0, 65535], "imediately come sister i am prest downe with conceit conceit": [0, 65535], "come sister i am prest downe with conceit conceit my": [0, 65535], "sister i am prest downe with conceit conceit my comfort": [0, 65535], "i am prest downe with conceit conceit my comfort and": [0, 65535], "am prest downe with conceit conceit my comfort and my": [0, 65535], "prest downe with conceit conceit my comfort and my iniurie": [0, 65535], "downe with conceit conceit my comfort and my iniurie exit": [0, 65535], "with conceit conceit my comfort and my iniurie exit enter": [0, 65535], "conceit conceit my comfort and my iniurie exit enter antipholus": [0, 65535], "conceit my comfort and my iniurie exit enter antipholus siracusia": [0, 65535], "my comfort and my iniurie exit enter antipholus siracusia there's": [0, 65535], "comfort and my iniurie exit enter antipholus siracusia there's not": [0, 65535], "and my iniurie exit enter antipholus siracusia there's not a": [0, 65535], "my iniurie exit enter antipholus siracusia there's not a man": [0, 65535], "iniurie exit enter antipholus siracusia there's not a man i": [0, 65535], "exit enter antipholus siracusia there's not a man i meete": [0, 65535], "enter antipholus siracusia there's not a man i meete but": [0, 65535], "antipholus siracusia there's not a man i meete but doth": [0, 65535], "siracusia there's not a man i meete but doth salute": [0, 65535], "there's not a man i meete but doth salute me": [0, 65535], "not a man i meete but doth salute me as": [0, 65535], "a man i meete but doth salute me as if": [0, 65535], "man i meete but doth salute me as if i": [0, 65535], "i meete but doth salute me as if i were": [0, 65535], "meete but doth salute me as if i were their": [0, 65535], "but doth salute me as if i were their well": [0, 65535], "doth salute me as if i were their well acquainted": [0, 65535], "salute me as if i were their well acquainted friend": [0, 65535], "me as if i were their well acquainted friend and": [0, 65535], "as if i were their well acquainted friend and euerie": [0, 65535], "if i were their well acquainted friend and euerie one": [0, 65535], "i were their well acquainted friend and euerie one doth": [0, 65535], "were their well acquainted friend and euerie one doth call": [0, 65535], "their well acquainted friend and euerie one doth call me": [0, 65535], "well acquainted friend and euerie one doth call me by": [0, 65535], "acquainted friend and euerie one doth call me by my": [0, 65535], "friend and euerie one doth call me by my name": [0, 65535], "and euerie one doth call me by my name some": [0, 65535], "euerie one doth call me by my name some tender": [0, 65535], "one doth call me by my name some tender monie": [0, 65535], "doth call me by my name some tender monie to": [0, 65535], "call me by my name some tender monie to me": [0, 65535], "me by my name some tender monie to me some": [0, 65535], "by my name some tender monie to me some inuite": [0, 65535], "my name some tender monie to me some inuite me": [0, 65535], "name some tender monie to me some inuite me some": [0, 65535], "some tender monie to me some inuite me some other": [0, 65535], "tender monie to me some inuite me some other giue": [0, 65535], "monie to me some inuite me some other giue me": [0, 65535], "to me some inuite me some other giue me thankes": [0, 65535], "me some inuite me some other giue me thankes for": [0, 65535], "some inuite me some other giue me thankes for kindnesses": [0, 65535], "inuite me some other giue me thankes for kindnesses some": [0, 65535], "me some other giue me thankes for kindnesses some offer": [0, 65535], "some other giue me thankes for kindnesses some offer me": [0, 65535], "other giue me thankes for kindnesses some offer me commodities": [0, 65535], "giue me thankes for kindnesses some offer me commodities to": [0, 65535], "me thankes for kindnesses some offer me commodities to buy": [0, 65535], "thankes for kindnesses some offer me commodities to buy euen": [0, 65535], "for kindnesses some offer me commodities to buy euen now": [0, 65535], "kindnesses some offer me commodities to buy euen now a": [0, 65535], "some offer me commodities to buy euen now a tailor": [0, 65535], "offer me commodities to buy euen now a tailor cal'd": [0, 65535], "me commodities to buy euen now a tailor cal'd me": [0, 65535], "commodities to buy euen now a tailor cal'd me in": [0, 65535], "to buy euen now a tailor cal'd me in his": [0, 65535], "buy euen now a tailor cal'd me in his shop": [0, 65535], "euen now a tailor cal'd me in his shop and": [0, 65535], "now a tailor cal'd me in his shop and show'd": [0, 65535], "a tailor cal'd me in his shop and show'd me": [0, 65535], "tailor cal'd me in his shop and show'd me silkes": [0, 65535], "cal'd me in his shop and show'd me silkes that": [0, 65535], "me in his shop and show'd me silkes that he": [0, 65535], "in his shop and show'd me silkes that he had": [0, 65535], "his shop and show'd me silkes that he had bought": [0, 65535], "shop and show'd me silkes that he had bought for": [0, 65535], "and show'd me silkes that he had bought for me": [0, 65535], "show'd me silkes that he had bought for me and": [0, 65535], "me silkes that he had bought for me and therewithall": [0, 65535], "silkes that he had bought for me and therewithall tooke": [0, 65535], "that he had bought for me and therewithall tooke measure": [0, 65535], "he had bought for me and therewithall tooke measure of": [0, 65535], "had bought for me and therewithall tooke measure of my": [0, 65535], "bought for me and therewithall tooke measure of my body": [0, 65535], "for me and therewithall tooke measure of my body sure": [0, 65535], "me and therewithall tooke measure of my body sure these": [0, 65535], "and therewithall tooke measure of my body sure these are": [0, 65535], "therewithall tooke measure of my body sure these are but": [0, 65535], "tooke measure of my body sure these are but imaginarie": [0, 65535], "measure of my body sure these are but imaginarie wiles": [0, 65535], "of my body sure these are but imaginarie wiles and": [0, 65535], "my body sure these are but imaginarie wiles and lapland": [0, 65535], "body sure these are but imaginarie wiles and lapland sorcerers": [0, 65535], "sure these are but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "these are but imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "are but imaginarie wiles and lapland sorcerers inhabite here enter": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite here enter dromio": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here enter dromio sir": [0, 65535], "wiles and lapland sorcerers inhabite here enter dromio sir s": [0, 65535], "and lapland sorcerers inhabite here enter dromio sir s dro": [0, 65535], "lapland sorcerers inhabite here enter dromio sir s dro master": [0, 65535], "sorcerers inhabite here enter dromio sir s dro master here's": [0, 65535], "inhabite here enter dromio sir s dro master here's the": [0, 65535], "here enter dromio sir s dro master here's the gold": [0, 65535], "enter dromio sir s dro master here's the gold you": [0, 65535], "dromio sir s dro master here's the gold you sent": [0, 65535], "sir s dro master here's the gold you sent me": [0, 65535], "s dro master here's the gold you sent me for": [0, 65535], "dro master here's the gold you sent me for what": [0, 65535], "master here's the gold you sent me for what haue": [0, 65535], "here's the gold you sent me for what haue you": [0, 65535], "the gold you sent me for what haue you got": [0, 65535], "gold you sent me for what haue you got the": [0, 65535], "you sent me for what haue you got the picture": [0, 65535], "sent me for what haue you got the picture of": [0, 65535], "me for what haue you got the picture of old": [0, 65535], "for what haue you got the picture of old adam": [0, 65535], "what haue you got the picture of old adam new": [0, 65535], "haue you got the picture of old adam new apparel'd": [0, 65535], "you got the picture of old adam new apparel'd ant": [0, 65535], "got the picture of old adam new apparel'd ant what": [0, 65535], "the picture of old adam new apparel'd ant what gold": [0, 65535], "picture of old adam new apparel'd ant what gold is": [0, 65535], "of old adam new apparel'd ant what gold is this": [0, 65535], "old adam new apparel'd ant what gold is this what": [0, 65535], "adam new apparel'd ant what gold is this what adam": [0, 65535], "new apparel'd ant what gold is this what adam do'st": [0, 65535], "apparel'd ant what gold is this what adam do'st thou": [0, 65535], "ant what gold is this what adam do'st thou meane": [0, 65535], "what gold is this what adam do'st thou meane s": [0, 65535], "gold is this what adam do'st thou meane s dro": [0, 65535], "is this what adam do'st thou meane s dro not": [0, 65535], "this what adam do'st thou meane s dro not that": [0, 65535], "what adam do'st thou meane s dro not that adam": [0, 65535], "adam do'st thou meane s dro not that adam that": [0, 65535], "do'st thou meane s dro not that adam that kept": [0, 65535], "thou meane s dro not that adam that kept the": [0, 65535], "meane s dro not that adam that kept the paradise": [0, 65535], "s dro not that adam that kept the paradise but": [0, 65535], "dro not that adam that kept the paradise but that": [0, 65535], "not that adam that kept the paradise but that adam": [0, 65535], "that adam that kept the paradise but that adam that": [0, 65535], "adam that kept the paradise but that adam that keepes": [0, 65535], "that kept the paradise but that adam that keepes the": [0, 65535], "kept the paradise but that adam that keepes the prison": [0, 65535], "the paradise but that adam that keepes the prison hee": [0, 65535], "paradise but that adam that keepes the prison hee that": [0, 65535], "but that adam that keepes the prison hee that goes": [0, 65535], "that adam that keepes the prison hee that goes in": [0, 65535], "adam that keepes the prison hee that goes in the": [0, 65535], "that keepes the prison hee that goes in the calues": [0, 65535], "keepes the prison hee that goes in the calues skin": [0, 65535], "the prison hee that goes in the calues skin that": [0, 65535], "prison hee that goes in the calues skin that was": [0, 65535], "hee that goes in the calues skin that was kil'd": [0, 65535], "that goes in the calues skin that was kil'd for": [0, 65535], "goes in the calues skin that was kil'd for the": [0, 65535], "in the calues skin that was kil'd for the prodigall": [0, 65535], "the calues skin that was kil'd for the prodigall hee": [0, 65535], "calues skin that was kil'd for the prodigall hee that": [0, 65535], "skin that was kil'd for the prodigall hee that came": [0, 65535], "that was kil'd for the prodigall hee that came behinde": [0, 65535], "was kil'd for the prodigall hee that came behinde you": [0, 65535], "kil'd for the prodigall hee that came behinde you sir": [0, 65535], "for the prodigall hee that came behinde you sir like": [0, 65535], "the prodigall hee that came behinde you sir like an": [0, 65535], "prodigall hee that came behinde you sir like an euill": [0, 65535], "hee that came behinde you sir like an euill angel": [0, 65535], "that came behinde you sir like an euill angel and": [0, 65535], "came behinde you sir like an euill angel and bid": [0, 65535], "behinde you sir like an euill angel and bid you": [0, 65535], "you sir like an euill angel and bid you forsake": [0, 65535], "sir like an euill angel and bid you forsake your": [0, 65535], "like an euill angel and bid you forsake your libertie": [0, 65535], "an euill angel and bid you forsake your libertie ant": [0, 65535], "euill angel and bid you forsake your libertie ant i": [0, 65535], "angel and bid you forsake your libertie ant i vnderstand": [0, 65535], "and bid you forsake your libertie ant i vnderstand thee": [0, 65535], "bid you forsake your libertie ant i vnderstand thee not": [0, 65535], "you forsake your libertie ant i vnderstand thee not s": [0, 65535], "forsake your libertie ant i vnderstand thee not s dro": [0, 65535], "your libertie ant i vnderstand thee not s dro no": [0, 65535], "libertie ant i vnderstand thee not s dro no why": [0, 65535], "ant i vnderstand thee not s dro no why 'tis": [0, 65535], "i vnderstand thee not s dro no why 'tis a": [0, 65535], "vnderstand thee not s dro no why 'tis a plaine": [0, 65535], "thee not s dro no why 'tis a plaine case": [0, 65535], "not s dro no why 'tis a plaine case he": [0, 65535], "s dro no why 'tis a plaine case he that": [0, 65535], "dro no why 'tis a plaine case he that went": [0, 65535], "no why 'tis a plaine case he that went like": [0, 65535], "why 'tis a plaine case he that went like a": [0, 65535], "'tis a plaine case he that went like a base": [0, 65535], "a plaine case he that went like a base viole": [0, 65535], "plaine case he that went like a base viole in": [0, 65535], "case he that went like a base viole in a": [0, 65535], "he that went like a base viole in a case": [0, 65535], "that went like a base viole in a case of": [0, 65535], "went like a base viole in a case of leather": [0, 65535], "like a base viole in a case of leather the": [0, 65535], "a base viole in a case of leather the man": [0, 65535], "base viole in a case of leather the man sir": [0, 65535], "viole in a case of leather the man sir that": [0, 65535], "in a case of leather the man sir that when": [0, 65535], "a case of leather the man sir that when gentlemen": [0, 65535], "case of leather the man sir that when gentlemen are": [0, 65535], "of leather the man sir that when gentlemen are tired": [0, 65535], "leather the man sir that when gentlemen are tired giues": [0, 65535], "the man sir that when gentlemen are tired giues them": [0, 65535], "man sir that when gentlemen are tired giues them a": [0, 65535], "sir that when gentlemen are tired giues them a sob": [0, 65535], "that when gentlemen are tired giues them a sob and": [0, 65535], "when gentlemen are tired giues them a sob and rests": [0, 65535], "gentlemen are tired giues them a sob and rests them": [0, 65535], "are tired giues them a sob and rests them he": [0, 65535], "tired giues them a sob and rests them he sir": [0, 65535], "giues them a sob and rests them he sir that": [0, 65535], "them a sob and rests them he sir that takes": [0, 65535], "a sob and rests them he sir that takes pittie": [0, 65535], "sob and rests them he sir that takes pittie on": [0, 65535], "and rests them he sir that takes pittie on decaied": [0, 65535], "rests them he sir that takes pittie on decaied men": [0, 65535], "them he sir that takes pittie on decaied men and": [0, 65535], "he sir that takes pittie on decaied men and giues": [0, 65535], "sir that takes pittie on decaied men and giues them": [0, 65535], "that takes pittie on decaied men and giues them suites": [0, 65535], "takes pittie on decaied men and giues them suites of": [0, 65535], "pittie on decaied men and giues them suites of durance": [0, 65535], "on decaied men and giues them suites of durance he": [0, 65535], "decaied men and giues them suites of durance he that": [0, 65535], "men and giues them suites of durance he that sets": [0, 65535], "and giues them suites of durance he that sets vp": [0, 65535], "giues them suites of durance he that sets vp his": [0, 65535], "them suites of durance he that sets vp his rest": [0, 65535], "suites of durance he that sets vp his rest to": [0, 65535], "of durance he that sets vp his rest to doe": [0, 65535], "durance he that sets vp his rest to doe more": [0, 65535], "he that sets vp his rest to doe more exploits": [0, 65535], "that sets vp his rest to doe more exploits with": [0, 65535], "sets vp his rest to doe more exploits with his": [0, 65535], "vp his rest to doe more exploits with his mace": [0, 65535], "his rest to doe more exploits with his mace then": [0, 65535], "rest to doe more exploits with his mace then a": [0, 65535], "to doe more exploits with his mace then a moris": [0, 65535], "doe more exploits with his mace then a moris pike": [0, 65535], "more exploits with his mace then a moris pike ant": [0, 65535], "exploits with his mace then a moris pike ant what": [0, 65535], "with his mace then a moris pike ant what thou": [0, 65535], "his mace then a moris pike ant what thou mean'st": [0, 65535], "mace then a moris pike ant what thou mean'st an": [0, 65535], "then a moris pike ant what thou mean'st an officer": [0, 65535], "a moris pike ant what thou mean'st an officer s": [0, 65535], "moris pike ant what thou mean'st an officer s dro": [0, 65535], "pike ant what thou mean'st an officer s dro i": [0, 65535], "ant what thou mean'st an officer s dro i sir": [0, 65535], "what thou mean'st an officer s dro i sir the": [0, 65535], "thou mean'st an officer s dro i sir the serieant": [0, 65535], "mean'st an officer s dro i sir the serieant of": [0, 65535], "an officer s dro i sir the serieant of the": [0, 65535], "officer s dro i sir the serieant of the band": [0, 65535], "s dro i sir the serieant of the band he": [0, 65535], "dro i sir the serieant of the band he that": [0, 65535], "i sir the serieant of the band he that brings": [0, 65535], "sir the serieant of the band he that brings any": [0, 65535], "the serieant of the band he that brings any man": [0, 65535], "serieant of the band he that brings any man to": [0, 65535], "of the band he that brings any man to answer": [0, 65535], "the band he that brings any man to answer it": [0, 65535], "band he that brings any man to answer it that": [0, 65535], "he that brings any man to answer it that breakes": [0, 65535], "that brings any man to answer it that breakes his": [0, 65535], "brings any man to answer it that breakes his band": [0, 65535], "any man to answer it that breakes his band one": [0, 65535], "man to answer it that breakes his band one that": [0, 65535], "to answer it that breakes his band one that thinkes": [0, 65535], "answer it that breakes his band one that thinkes a": [0, 65535], "it that breakes his band one that thinkes a man": [0, 65535], "that breakes his band one that thinkes a man alwaies": [0, 65535], "breakes his band one that thinkes a man alwaies going": [0, 65535], "his band one that thinkes a man alwaies going to": [0, 65535], "band one that thinkes a man alwaies going to bed": [0, 65535], "one that thinkes a man alwaies going to bed and": [0, 65535], "that thinkes a man alwaies going to bed and saies": [0, 65535], "thinkes a man alwaies going to bed and saies god": [0, 65535], "a man alwaies going to bed and saies god giue": [0, 65535], "man alwaies going to bed and saies god giue you": [0, 65535], "alwaies going to bed and saies god giue you good": [0, 65535], "going to bed and saies god giue you good rest": [0, 65535], "to bed and saies god giue you good rest ant": [0, 65535], "bed and saies god giue you good rest ant well": [0, 65535], "and saies god giue you good rest ant well sir": [0, 65535], "saies god giue you good rest ant well sir there": [0, 65535], "god giue you good rest ant well sir there rest": [0, 65535], "giue you good rest ant well sir there rest in": [0, 65535], "you good rest ant well sir there rest in your": [0, 65535], "good rest ant well sir there rest in your foolerie": [0, 65535], "rest ant well sir there rest in your foolerie is": [0, 65535], "ant well sir there rest in your foolerie is there": [0, 65535], "well sir there rest in your foolerie is there any": [0, 65535], "sir there rest in your foolerie is there any ships": [0, 65535], "there rest in your foolerie is there any ships puts": [0, 65535], "rest in your foolerie is there any ships puts forth": [0, 65535], "in your foolerie is there any ships puts forth to": [0, 65535], "your foolerie is there any ships puts forth to night": [0, 65535], "foolerie is there any ships puts forth to night may": [0, 65535], "is there any ships puts forth to night may we": [0, 65535], "there any ships puts forth to night may we be": [0, 65535], "any ships puts forth to night may we be gone": [0, 65535], "ships puts forth to night may we be gone s": [0, 65535], "puts forth to night may we be gone s dro": [0, 65535], "forth to night may we be gone s dro why": [0, 65535], "to night may we be gone s dro why sir": [0, 65535], "night may we be gone s dro why sir i": [0, 65535], "may we be gone s dro why sir i brought": [0, 65535], "we be gone s dro why sir i brought you": [0, 65535], "be gone s dro why sir i brought you word": [0, 65535], "gone s dro why sir i brought you word an": [0, 65535], "s dro why sir i brought you word an houre": [0, 65535], "dro why sir i brought you word an houre since": [0, 65535], "why sir i brought you word an houre since that": [0, 65535], "sir i brought you word an houre since that the": [0, 65535], "i brought you word an houre since that the barke": [0, 65535], "brought you word an houre since that the barke expedition": [0, 65535], "you word an houre since that the barke expedition put": [0, 65535], "word an houre since that the barke expedition put forth": [0, 65535], "an houre since that the barke expedition put forth to": [0, 65535], "houre since that the barke expedition put forth to night": [0, 65535], "since that the barke expedition put forth to night and": [0, 65535], "that the barke expedition put forth to night and then": [0, 65535], "the barke expedition put forth to night and then were": [0, 65535], "barke expedition put forth to night and then were you": [0, 65535], "expedition put forth to night and then were you hindred": [0, 65535], "put forth to night and then were you hindred by": [0, 65535], "forth to night and then were you hindred by the": [0, 65535], "to night and then were you hindred by the serieant": [0, 65535], "night and then were you hindred by the serieant to": [0, 65535], "and then were you hindred by the serieant to tarry": [0, 65535], "then were you hindred by the serieant to tarry for": [0, 65535], "were you hindred by the serieant to tarry for the": [0, 65535], "you hindred by the serieant to tarry for the hoy": [0, 65535], "hindred by the serieant to tarry for the hoy delay": [0, 65535], "by the serieant to tarry for the hoy delay here": [0, 65535], "the serieant to tarry for the hoy delay here are": [0, 65535], "serieant to tarry for the hoy delay here are the": [0, 65535], "to tarry for the hoy delay here are the angels": [0, 65535], "tarry for the hoy delay here are the angels that": [0, 65535], "for the hoy delay here are the angels that you": [0, 65535], "the hoy delay here are the angels that you sent": [0, 65535], "hoy delay here are the angels that you sent for": [0, 65535], "delay here are the angels that you sent for to": [0, 65535], "here are the angels that you sent for to deliuer": [0, 65535], "are the angels that you sent for to deliuer you": [0, 65535], "the angels that you sent for to deliuer you ant": [0, 65535], "angels that you sent for to deliuer you ant the": [0, 65535], "that you sent for to deliuer you ant the fellow": [0, 65535], "you sent for to deliuer you ant the fellow is": [0, 65535], "sent for to deliuer you ant the fellow is distract": [0, 65535], "for to deliuer you ant the fellow is distract and": [0, 65535], "to deliuer you ant the fellow is distract and so": [0, 65535], "deliuer you ant the fellow is distract and so am": [0, 65535], "you ant the fellow is distract and so am i": [0, 65535], "ant the fellow is distract and so am i and": [0, 65535], "the fellow is distract and so am i and here": [0, 65535], "fellow is distract and so am i and here we": [0, 65535], "is distract and so am i and here we wander": [0, 65535], "distract and so am i and here we wander in": [0, 65535], "and so am i and here we wander in illusions": [0, 65535], "so am i and here we wander in illusions some": [0, 65535], "am i and here we wander in illusions some blessed": [0, 65535], "i and here we wander in illusions some blessed power": [0, 65535], "and here we wander in illusions some blessed power deliuer": [0, 65535], "here we wander in illusions some blessed power deliuer vs": [0, 65535], "we wander in illusions some blessed power deliuer vs from": [0, 65535], "wander in illusions some blessed power deliuer vs from hence": [0, 65535], "in illusions some blessed power deliuer vs from hence enter": [0, 65535], "illusions some blessed power deliuer vs from hence enter a": [0, 65535], "some blessed power deliuer vs from hence enter a curtizan": [0, 65535], "blessed power deliuer vs from hence enter a curtizan cur": [0, 65535], "power deliuer vs from hence enter a curtizan cur well": [0, 65535], "deliuer vs from hence enter a curtizan cur well met": [0, 65535], "vs from hence enter a curtizan cur well met well": [0, 65535], "from hence enter a curtizan cur well met well met": [0, 65535], "hence enter a curtizan cur well met well met master": [0, 65535], "enter a curtizan cur well met well met master antipholus": [0, 65535], "a curtizan cur well met well met master antipholus i": [0, 65535], "curtizan cur well met well met master antipholus i see": [0, 65535], "cur well met well met master antipholus i see sir": [0, 65535], "well met well met master antipholus i see sir you": [0, 65535], "met well met master antipholus i see sir you haue": [0, 65535], "well met master antipholus i see sir you haue found": [0, 65535], "met master antipholus i see sir you haue found the": [0, 65535], "master antipholus i see sir you haue found the gold": [0, 65535], "antipholus i see sir you haue found the gold smith": [0, 65535], "i see sir you haue found the gold smith now": [0, 65535], "see sir you haue found the gold smith now is": [0, 65535], "sir you haue found the gold smith now is that": [0, 65535], "you haue found the gold smith now is that the": [0, 65535], "haue found the gold smith now is that the chaine": [0, 65535], "found the gold smith now is that the chaine you": [0, 65535], "the gold smith now is that the chaine you promis'd": [0, 65535], "gold smith now is that the chaine you promis'd me": [0, 65535], "smith now is that the chaine you promis'd me to": [0, 65535], "now is that the chaine you promis'd me to day": [0, 65535], "is that the chaine you promis'd me to day ant": [0, 65535], "that the chaine you promis'd me to day ant sathan": [0, 65535], "the chaine you promis'd me to day ant sathan auoide": [0, 65535], "chaine you promis'd me to day ant sathan auoide i": [0, 65535], "you promis'd me to day ant sathan auoide i charge": [0, 65535], "promis'd me to day ant sathan auoide i charge thee": [0, 65535], "me to day ant sathan auoide i charge thee tempt": [0, 65535], "to day ant sathan auoide i charge thee tempt me": [0, 65535], "day ant sathan auoide i charge thee tempt me not": [0, 65535], "ant sathan auoide i charge thee tempt me not s": [0, 65535], "sathan auoide i charge thee tempt me not s dro": [0, 65535], "auoide i charge thee tempt me not s dro master": [0, 65535], "i charge thee tempt me not s dro master is": [0, 65535], "charge thee tempt me not s dro master is this": [0, 65535], "thee tempt me not s dro master is this mistris": [0, 65535], "tempt me not s dro master is this mistris sathan": [0, 65535], "me not s dro master is this mistris sathan ant": [0, 65535], "not s dro master is this mistris sathan ant it": [0, 65535], "s dro master is this mistris sathan ant it is": [0, 65535], "dro master is this mistris sathan ant it is the": [0, 65535], "master is this mistris sathan ant it is the diuell": [0, 65535], "is this mistris sathan ant it is the diuell s": [0, 65535], "this mistris sathan ant it is the diuell s dro": [0, 65535], "mistris sathan ant it is the diuell s dro nay": [0, 65535], "sathan ant it is the diuell s dro nay she": [0, 65535], "ant it is the diuell s dro nay she is": [0, 65535], "it is the diuell s dro nay she is worse": [0, 65535], "is the diuell s dro nay she is worse she": [0, 65535], "the diuell s dro nay she is worse she is": [0, 65535], "diuell s dro nay she is worse she is the": [0, 65535], "s dro nay she is worse she is the diuels": [0, 65535], "dro nay she is worse she is the diuels dam": [0, 65535], "nay she is worse she is the diuels dam and": [0, 65535], "she is worse she is the diuels dam and here": [0, 65535], "is worse she is the diuels dam and here she": [0, 65535], "worse she is the diuels dam and here she comes": [0, 65535], "she is the diuels dam and here she comes in": [0, 65535], "is the diuels dam and here she comes in the": [0, 65535], "the diuels dam and here she comes in the habit": [0, 65535], "diuels dam and here she comes in the habit of": [0, 65535], "dam and here she comes in the habit of a": [0, 65535], "and here she comes in the habit of a light": [0, 65535], "here she comes in the habit of a light wench": [0, 65535], "she comes in the habit of a light wench and": [0, 65535], "comes in the habit of a light wench and thereof": [0, 65535], "in the habit of a light wench and thereof comes": [0, 65535], "the habit of a light wench and thereof comes that": [0, 65535], "habit of a light wench and thereof comes that the": [0, 65535], "of a light wench and thereof comes that the wenches": [0, 65535], "a light wench and thereof comes that the wenches say": [0, 65535], "light wench and thereof comes that the wenches say god": [0, 65535], "wench and thereof comes that the wenches say god dam": [0, 65535], "and thereof comes that the wenches say god dam me": [0, 65535], "thereof comes that the wenches say god dam me that's": [0, 65535], "comes that the wenches say god dam me that's as": [0, 65535], "that the wenches say god dam me that's as much": [0, 65535], "the wenches say god dam me that's as much to": [0, 65535], "wenches say god dam me that's as much to say": [0, 65535], "say god dam me that's as much to say god": [0, 65535], "god dam me that's as much to say god make": [0, 65535], "dam me that's as much to say god make me": [0, 65535], "me that's as much to say god make me a": [0, 65535], "that's as much to say god make me a light": [0, 65535], "as much to say god make me a light wench": [0, 65535], "much to say god make me a light wench it": [0, 65535], "to say god make me a light wench it is": [0, 65535], "say god make me a light wench it is written": [0, 65535], "god make me a light wench it is written they": [0, 65535], "make me a light wench it is written they appeare": [0, 65535], "me a light wench it is written they appeare to": [0, 65535], "a light wench it is written they appeare to men": [0, 65535], "light wench it is written they appeare to men like": [0, 65535], "wench it is written they appeare to men like angels": [0, 65535], "it is written they appeare to men like angels of": [0, 65535], "is written they appeare to men like angels of light": [0, 65535], "written they appeare to men like angels of light light": [0, 65535], "they appeare to men like angels of light light is": [0, 65535], "appeare to men like angels of light light is an": [0, 65535], "to men like angels of light light is an effect": [0, 65535], "men like angels of light light is an effect of": [0, 65535], "like angels of light light is an effect of fire": [0, 65535], "angels of light light is an effect of fire and": [0, 65535], "of light light is an effect of fire and fire": [0, 65535], "light light is an effect of fire and fire will": [0, 65535], "light is an effect of fire and fire will burne": [0, 65535], "is an effect of fire and fire will burne ergo": [0, 65535], "an effect of fire and fire will burne ergo light": [0, 65535], "effect of fire and fire will burne ergo light wenches": [0, 65535], "of fire and fire will burne ergo light wenches will": [0, 65535], "fire and fire will burne ergo light wenches will burne": [0, 65535], "and fire will burne ergo light wenches will burne come": [0, 65535], "fire will burne ergo light wenches will burne come not": [0, 65535], "will burne ergo light wenches will burne come not neere": [0, 65535], "burne ergo light wenches will burne come not neere her": [0, 65535], "ergo light wenches will burne come not neere her cur": [0, 65535], "light wenches will burne come not neere her cur your": [0, 65535], "wenches will burne come not neere her cur your man": [0, 65535], "will burne come not neere her cur your man and": [0, 65535], "burne come not neere her cur your man and you": [0, 65535], "come not neere her cur your man and you are": [0, 65535], "not neere her cur your man and you are maruailous": [0, 65535], "neere her cur your man and you are maruailous merrie": [0, 65535], "her cur your man and you are maruailous merrie sir": [0, 65535], "cur your man and you are maruailous merrie sir will": [0, 65535], "your man and you are maruailous merrie sir will you": [0, 65535], "man and you are maruailous merrie sir will you goe": [0, 65535], "and you are maruailous merrie sir will you goe with": [0, 65535], "you are maruailous merrie sir will you goe with me": [0, 65535], "are maruailous merrie sir will you goe with me wee'll": [0, 65535], "maruailous merrie sir will you goe with me wee'll mend": [0, 65535], "merrie sir will you goe with me wee'll mend our": [0, 65535], "sir will you goe with me wee'll mend our dinner": [0, 65535], "will you goe with me wee'll mend our dinner here": [0, 65535], "you goe with me wee'll mend our dinner here s": [0, 65535], "goe with me wee'll mend our dinner here s dro": [0, 65535], "with me wee'll mend our dinner here s dro master": [0, 65535], "me wee'll mend our dinner here s dro master if": [0, 65535], "wee'll mend our dinner here s dro master if do": [0, 65535], "mend our dinner here s dro master if do expect": [0, 65535], "our dinner here s dro master if do expect spoon": [0, 65535], "dinner here s dro master if do expect spoon meate": [0, 65535], "here s dro master if do expect spoon meate or": [0, 65535], "s dro master if do expect spoon meate or bespeake": [0, 65535], "dro master if do expect spoon meate or bespeake a": [0, 65535], "master if do expect spoon meate or bespeake a long": [0, 65535], "if do expect spoon meate or bespeake a long spoone": [0, 65535], "do expect spoon meate or bespeake a long spoone ant": [0, 65535], "expect spoon meate or bespeake a long spoone ant why": [0, 65535], "spoon meate or bespeake a long spoone ant why dromio": [0, 65535], "meate or bespeake a long spoone ant why dromio s": [0, 65535], "or bespeake a long spoone ant why dromio s dro": [0, 65535], "bespeake a long spoone ant why dromio s dro marrie": [0, 65535], "a long spoone ant why dromio s dro marrie he": [0, 65535], "long spoone ant why dromio s dro marrie he must": [0, 65535], "spoone ant why dromio s dro marrie he must haue": [0, 65535], "ant why dromio s dro marrie he must haue a": [0, 65535], "why dromio s dro marrie he must haue a long": [0, 65535], "dromio s dro marrie he must haue a long spoone": [0, 65535], "s dro marrie he must haue a long spoone that": [0, 65535], "dro marrie he must haue a long spoone that must": [0, 65535], "marrie he must haue a long spoone that must eate": [0, 65535], "he must haue a long spoone that must eate with": [0, 65535], "must haue a long spoone that must eate with the": [0, 65535], "haue a long spoone that must eate with the diuell": [0, 65535], "a long spoone that must eate with the diuell ant": [0, 65535], "long spoone that must eate with the diuell ant auoid": [0, 65535], "spoone that must eate with the diuell ant auoid then": [0, 65535], "that must eate with the diuell ant auoid then fiend": [0, 65535], "must eate with the diuell ant auoid then fiend what": [0, 65535], "eate with the diuell ant auoid then fiend what tel'st": [0, 65535], "with the diuell ant auoid then fiend what tel'st thou": [0, 65535], "the diuell ant auoid then fiend what tel'st thou me": [0, 65535], "diuell ant auoid then fiend what tel'st thou me of": [0, 65535], "ant auoid then fiend what tel'st thou me of supping": [0, 65535], "auoid then fiend what tel'st thou me of supping thou": [0, 65535], "then fiend what tel'st thou me of supping thou art": [0, 65535], "fiend what tel'st thou me of supping thou art as": [0, 65535], "what tel'st thou me of supping thou art as you": [0, 65535], "tel'st thou me of supping thou art as you are": [0, 65535], "thou me of supping thou art as you are all": [0, 65535], "me of supping thou art as you are all a": [0, 65535], "of supping thou art as you are all a sorceresse": [0, 65535], "supping thou art as you are all a sorceresse i": [0, 65535], "thou art as you are all a sorceresse i coniure": [0, 65535], "art as you are all a sorceresse i coniure thee": [0, 65535], "as you are all a sorceresse i coniure thee to": [0, 65535], "you are all a sorceresse i coniure thee to leaue": [0, 65535], "are all a sorceresse i coniure thee to leaue me": [0, 65535], "all a sorceresse i coniure thee to leaue me and": [0, 65535], "a sorceresse i coniure thee to leaue me and be": [0, 65535], "sorceresse i coniure thee to leaue me and be gon": [0, 65535], "i coniure thee to leaue me and be gon cur": [0, 65535], "coniure thee to leaue me and be gon cur giue": [0, 65535], "thee to leaue me and be gon cur giue me": [0, 65535], "to leaue me and be gon cur giue me the": [0, 65535], "leaue me and be gon cur giue me the ring": [0, 65535], "me and be gon cur giue me the ring of": [0, 65535], "and be gon cur giue me the ring of mine": [0, 65535], "be gon cur giue me the ring of mine you": [0, 65535], "gon cur giue me the ring of mine you had": [0, 65535], "cur giue me the ring of mine you had at": [0, 65535], "giue me the ring of mine you had at dinner": [0, 65535], "me the ring of mine you had at dinner or": [0, 65535], "the ring of mine you had at dinner or for": [0, 65535], "ring of mine you had at dinner or for my": [0, 65535], "of mine you had at dinner or for my diamond": [0, 65535], "mine you had at dinner or for my diamond the": [0, 65535], "you had at dinner or for my diamond the chaine": [0, 65535], "had at dinner or for my diamond the chaine you": [0, 65535], "at dinner or for my diamond the chaine you promis'd": [0, 65535], "dinner or for my diamond the chaine you promis'd and": [0, 65535], "or for my diamond the chaine you promis'd and ile": [0, 65535], "for my diamond the chaine you promis'd and ile be": [0, 65535], "my diamond the chaine you promis'd and ile be gone": [0, 65535], "diamond the chaine you promis'd and ile be gone sir": [0, 65535], "the chaine you promis'd and ile be gone sir and": [0, 65535], "chaine you promis'd and ile be gone sir and not": [0, 65535], "you promis'd and ile be gone sir and not trouble": [0, 65535], "promis'd and ile be gone sir and not trouble you": [0, 65535], "and ile be gone sir and not trouble you s": [0, 65535], "ile be gone sir and not trouble you s dro": [0, 65535], "be gone sir and not trouble you s dro some": [0, 65535], "gone sir and not trouble you s dro some diuels": [0, 65535], "sir and not trouble you s dro some diuels aske": [0, 65535], "and not trouble you s dro some diuels aske but": [0, 65535], "not trouble you s dro some diuels aske but the": [0, 65535], "trouble you s dro some diuels aske but the parings": [0, 65535], "you s dro some diuels aske but the parings of": [0, 65535], "s dro some diuels aske but the parings of ones": [0, 65535], "dro some diuels aske but the parings of ones naile": [0, 65535], "some diuels aske but the parings of ones naile a": [0, 65535], "diuels aske but the parings of ones naile a rush": [0, 65535], "aske but the parings of ones naile a rush a": [0, 65535], "but the parings of ones naile a rush a haire": [0, 65535], "the parings of ones naile a rush a haire a": [0, 65535], "parings of ones naile a rush a haire a drop": [0, 65535], "of ones naile a rush a haire a drop of": [0, 65535], "ones naile a rush a haire a drop of blood": [0, 65535], "naile a rush a haire a drop of blood a": [0, 65535], "a rush a haire a drop of blood a pin": [0, 65535], "rush a haire a drop of blood a pin a": [0, 65535], "a haire a drop of blood a pin a nut": [0, 65535], "haire a drop of blood a pin a nut a": [0, 65535], "a drop of blood a pin a nut a cherrie": [0, 65535], "drop of blood a pin a nut a cherrie stone": [0, 65535], "of blood a pin a nut a cherrie stone but": [0, 65535], "blood a pin a nut a cherrie stone but she": [0, 65535], "a pin a nut a cherrie stone but she more": [0, 65535], "pin a nut a cherrie stone but she more couetous": [0, 65535], "a nut a cherrie stone but she more couetous wold": [0, 65535], "nut a cherrie stone but she more couetous wold haue": [0, 65535], "a cherrie stone but she more couetous wold haue a": [0, 65535], "cherrie stone but she more couetous wold haue a chaine": [0, 65535], "stone but she more couetous wold haue a chaine master": [0, 65535], "but she more couetous wold haue a chaine master be": [0, 65535], "she more couetous wold haue a chaine master be wise": [0, 65535], "more couetous wold haue a chaine master be wise and": [0, 65535], "couetous wold haue a chaine master be wise and if": [0, 65535], "wold haue a chaine master be wise and if you": [0, 65535], "haue a chaine master be wise and if you giue": [0, 65535], "a chaine master be wise and if you giue it": [0, 65535], "chaine master be wise and if you giue it her": [0, 65535], "master be wise and if you giue it her the": [0, 65535], "be wise and if you giue it her the diuell": [0, 65535], "wise and if you giue it her the diuell will": [0, 65535], "and if you giue it her the diuell will shake": [0, 65535], "if you giue it her the diuell will shake her": [0, 65535], "you giue it her the diuell will shake her chaine": [0, 65535], "giue it her the diuell will shake her chaine and": [0, 65535], "it her the diuell will shake her chaine and fright": [0, 65535], "her the diuell will shake her chaine and fright vs": [0, 65535], "the diuell will shake her chaine and fright vs with": [0, 65535], "diuell will shake her chaine and fright vs with it": [0, 65535], "will shake her chaine and fright vs with it cur": [0, 65535], "shake her chaine and fright vs with it cur i": [0, 65535], "her chaine and fright vs with it cur i pray": [0, 65535], "chaine and fright vs with it cur i pray you": [0, 65535], "and fright vs with it cur i pray you sir": [0, 65535], "fright vs with it cur i pray you sir my": [0, 65535], "vs with it cur i pray you sir my ring": [0, 65535], "with it cur i pray you sir my ring or": [0, 65535], "it cur i pray you sir my ring or else": [0, 65535], "cur i pray you sir my ring or else the": [0, 65535], "i pray you sir my ring or else the chaine": [0, 65535], "pray you sir my ring or else the chaine i": [0, 65535], "you sir my ring or else the chaine i hope": [0, 65535], "sir my ring or else the chaine i hope you": [0, 65535], "my ring or else the chaine i hope you do": [0, 65535], "ring or else the chaine i hope you do not": [0, 65535], "or else the chaine i hope you do not meane": [0, 65535], "else the chaine i hope you do not meane to": [0, 65535], "the chaine i hope you do not meane to cheate": [0, 65535], "chaine i hope you do not meane to cheate me": [0, 65535], "i hope you do not meane to cheate me so": [0, 65535], "hope you do not meane to cheate me so ant": [0, 65535], "you do not meane to cheate me so ant auant": [0, 65535], "do not meane to cheate me so ant auant thou": [0, 65535], "not meane to cheate me so ant auant thou witch": [0, 65535], "meane to cheate me so ant auant thou witch come": [0, 65535], "to cheate me so ant auant thou witch come dromio": [0, 65535], "cheate me so ant auant thou witch come dromio let": [0, 65535], "me so ant auant thou witch come dromio let vs": [0, 65535], "so ant auant thou witch come dromio let vs go": [0, 65535], "ant auant thou witch come dromio let vs go s": [0, 65535], "auant thou witch come dromio let vs go s dro": [0, 65535], "thou witch come dromio let vs go s dro flie": [0, 65535], "witch come dromio let vs go s dro flie pride": [0, 65535], "come dromio let vs go s dro flie pride saies": [0, 65535], "dromio let vs go s dro flie pride saies the": [0, 65535], "let vs go s dro flie pride saies the pea": [0, 65535], "vs go s dro flie pride saies the pea cocke": [0, 65535], "go s dro flie pride saies the pea cocke mistris": [0, 65535], "s dro flie pride saies the pea cocke mistris that": [0, 65535], "dro flie pride saies the pea cocke mistris that you": [0, 65535], "flie pride saies the pea cocke mistris that you know": [0, 65535], "pride saies the pea cocke mistris that you know exit": [0, 65535], "saies the pea cocke mistris that you know exit cur": [0, 65535], "the pea cocke mistris that you know exit cur now": [0, 65535], "pea cocke mistris that you know exit cur now out": [0, 65535], "cocke mistris that you know exit cur now out of": [0, 65535], "mistris that you know exit cur now out of doubt": [0, 65535], "that you know exit cur now out of doubt antipholus": [0, 65535], "you know exit cur now out of doubt antipholus is": [0, 65535], "know exit cur now out of doubt antipholus is mad": [0, 65535], "exit cur now out of doubt antipholus is mad else": [0, 65535], "cur now out of doubt antipholus is mad else would": [0, 65535], "now out of doubt antipholus is mad else would he": [0, 65535], "out of doubt antipholus is mad else would he neuer": [0, 65535], "of doubt antipholus is mad else would he neuer so": [0, 65535], "doubt antipholus is mad else would he neuer so demeane": [0, 65535], "antipholus is mad else would he neuer so demeane himselfe": [0, 65535], "is mad else would he neuer so demeane himselfe a": [0, 65535], "mad else would he neuer so demeane himselfe a ring": [0, 65535], "else would he neuer so demeane himselfe a ring he": [0, 65535], "would he neuer so demeane himselfe a ring he hath": [0, 65535], "he neuer so demeane himselfe a ring he hath of": [0, 65535], "neuer so demeane himselfe a ring he hath of mine": [0, 65535], "so demeane himselfe a ring he hath of mine worth": [0, 65535], "demeane himselfe a ring he hath of mine worth fortie": [0, 65535], "himselfe a ring he hath of mine worth fortie duckets": [0, 65535], "a ring he hath of mine worth fortie duckets and": [0, 65535], "ring he hath of mine worth fortie duckets and for": [0, 65535], "he hath of mine worth fortie duckets and for the": [0, 65535], "hath of mine worth fortie duckets and for the same": [0, 65535], "of mine worth fortie duckets and for the same he": [0, 65535], "mine worth fortie duckets and for the same he promis'd": [0, 65535], "worth fortie duckets and for the same he promis'd me": [0, 65535], "fortie duckets and for the same he promis'd me a": [0, 65535], "duckets and for the same he promis'd me a chaine": [0, 65535], "and for the same he promis'd me a chaine both": [0, 65535], "for the same he promis'd me a chaine both one": [0, 65535], "the same he promis'd me a chaine both one and": [0, 65535], "same he promis'd me a chaine both one and other": [0, 65535], "he promis'd me a chaine both one and other he": [0, 65535], "promis'd me a chaine both one and other he denies": [0, 65535], "me a chaine both one and other he denies me": [0, 65535], "a chaine both one and other he denies me now": [0, 65535], "chaine both one and other he denies me now the": [0, 65535], "both one and other he denies me now the reason": [0, 65535], "one and other he denies me now the reason that": [0, 65535], "and other he denies me now the reason that i": [0, 65535], "other he denies me now the reason that i gather": [0, 65535], "he denies me now the reason that i gather he": [0, 65535], "denies me now the reason that i gather he is": [0, 65535], "me now the reason that i gather he is mad": [0, 65535], "now the reason that i gather he is mad besides": [0, 65535], "the reason that i gather he is mad besides this": [0, 65535], "reason that i gather he is mad besides this present": [0, 65535], "that i gather he is mad besides this present instance": [0, 65535], "i gather he is mad besides this present instance of": [0, 65535], "gather he is mad besides this present instance of his": [0, 65535], "he is mad besides this present instance of his rage": [0, 65535], "is mad besides this present instance of his rage is": [0, 65535], "mad besides this present instance of his rage is a": [0, 65535], "besides this present instance of his rage is a mad": [0, 65535], "this present instance of his rage is a mad tale": [0, 65535], "present instance of his rage is a mad tale he": [0, 65535], "instance of his rage is a mad tale he told": [0, 65535], "of his rage is a mad tale he told to": [0, 65535], "his rage is a mad tale he told to day": [0, 65535], "rage is a mad tale he told to day at": [0, 65535], "is a mad tale he told to day at dinner": [0, 65535], "a mad tale he told to day at dinner of": [0, 65535], "mad tale he told to day at dinner of his": [0, 65535], "tale he told to day at dinner of his owne": [0, 65535], "he told to day at dinner of his owne doores": [0, 65535], "told to day at dinner of his owne doores being": [0, 65535], "to day at dinner of his owne doores being shut": [0, 65535], "day at dinner of his owne doores being shut against": [0, 65535], "at dinner of his owne doores being shut against his": [0, 65535], "dinner of his owne doores being shut against his entrance": [0, 65535], "of his owne doores being shut against his entrance belike": [0, 65535], "his owne doores being shut against his entrance belike his": [0, 65535], "owne doores being shut against his entrance belike his wife": [0, 65535], "doores being shut against his entrance belike his wife acquainted": [0, 65535], "being shut against his entrance belike his wife acquainted with": [0, 65535], "shut against his entrance belike his wife acquainted with his": [0, 65535], "against his entrance belike his wife acquainted with his fits": [0, 65535], "his entrance belike his wife acquainted with his fits on": [0, 65535], "entrance belike his wife acquainted with his fits on purpose": [0, 65535], "belike his wife acquainted with his fits on purpose shut": [0, 65535], "his wife acquainted with his fits on purpose shut the": [0, 65535], "wife acquainted with his fits on purpose shut the doores": [0, 65535], "acquainted with his fits on purpose shut the doores against": [0, 65535], "with his fits on purpose shut the doores against his": [0, 65535], "his fits on purpose shut the doores against his way": [0, 65535], "fits on purpose shut the doores against his way my": [0, 65535], "on purpose shut the doores against his way my way": [0, 65535], "purpose shut the doores against his way my way is": [0, 65535], "shut the doores against his way my way is now": [0, 65535], "the doores against his way my way is now to": [0, 65535], "doores against his way my way is now to hie": [0, 65535], "against his way my way is now to hie home": [0, 65535], "his way my way is now to hie home to": [0, 65535], "way my way is now to hie home to his": [0, 65535], "my way is now to hie home to his house": [0, 65535], "way is now to hie home to his house and": [0, 65535], "is now to hie home to his house and tell": [0, 65535], "now to hie home to his house and tell his": [0, 65535], "to hie home to his house and tell his wife": [0, 65535], "hie home to his house and tell his wife that": [0, 65535], "home to his house and tell his wife that being": [0, 65535], "to his house and tell his wife that being lunaticke": [0, 65535], "his house and tell his wife that being lunaticke he": [0, 65535], "house and tell his wife that being lunaticke he rush'd": [0, 65535], "and tell his wife that being lunaticke he rush'd into": [0, 65535], "tell his wife that being lunaticke he rush'd into my": [0, 65535], "his wife that being lunaticke he rush'd into my house": [0, 65535], "wife that being lunaticke he rush'd into my house and": [0, 65535], "that being lunaticke he rush'd into my house and tooke": [0, 65535], "being lunaticke he rush'd into my house and tooke perforce": [0, 65535], "lunaticke he rush'd into my house and tooke perforce my": [0, 65535], "he rush'd into my house and tooke perforce my ring": [0, 65535], "rush'd into my house and tooke perforce my ring away": [0, 65535], "into my house and tooke perforce my ring away this": [0, 65535], "my house and tooke perforce my ring away this course": [0, 65535], "house and tooke perforce my ring away this course i": [0, 65535], "and tooke perforce my ring away this course i fittest": [0, 65535], "tooke perforce my ring away this course i fittest choose": [0, 65535], "perforce my ring away this course i fittest choose for": [0, 65535], "my ring away this course i fittest choose for fortie": [0, 65535], "ring away this course i fittest choose for fortie duckets": [0, 65535], "away this course i fittest choose for fortie duckets is": [0, 65535], "this course i fittest choose for fortie duckets is too": [0, 65535], "course i fittest choose for fortie duckets is too much": [0, 65535], "i fittest choose for fortie duckets is too much to": [0, 65535], "fittest choose for fortie duckets is too much to loose": [0, 65535], "choose for fortie duckets is too much to loose enter": [0, 65535], "for fortie duckets is too much to loose enter antipholus": [0, 65535], "fortie duckets is too much to loose enter antipholus ephes": [0, 65535], "duckets is too much to loose enter antipholus ephes with": [0, 65535], "is too much to loose enter antipholus ephes with a": [0, 65535], "too much to loose enter antipholus ephes with a iailor": [0, 65535], "much to loose enter antipholus ephes with a iailor an": [0, 65535], "to loose enter antipholus ephes with a iailor an feare": [0, 65535], "loose enter antipholus ephes with a iailor an feare me": [0, 65535], "enter antipholus ephes with a iailor an feare me not": [0, 65535], "antipholus ephes with a iailor an feare me not man": [0, 65535], "ephes with a iailor an feare me not man i": [0, 65535], "with a iailor an feare me not man i will": [0, 65535], "a iailor an feare me not man i will not": [0, 65535], "iailor an feare me not man i will not breake": [0, 65535], "an feare me not man i will not breake away": [0, 65535], "feare me not man i will not breake away ile": [0, 65535], "me not man i will not breake away ile giue": [0, 65535], "not man i will not breake away ile giue thee": [0, 65535], "man i will not breake away ile giue thee ere": [0, 65535], "i will not breake away ile giue thee ere i": [0, 65535], "will not breake away ile giue thee ere i leaue": [0, 65535], "not breake away ile giue thee ere i leaue thee": [0, 65535], "breake away ile giue thee ere i leaue thee so": [0, 65535], "away ile giue thee ere i leaue thee so much": [0, 65535], "ile giue thee ere i leaue thee so much money": [0, 65535], "giue thee ere i leaue thee so much money to": [0, 65535], "thee ere i leaue thee so much money to warrant": [0, 65535], "ere i leaue thee so much money to warrant thee": [0, 65535], "i leaue thee so much money to warrant thee as": [0, 65535], "leaue thee so much money to warrant thee as i": [0, 65535], "thee so much money to warrant thee as i am": [0, 65535], "so much money to warrant thee as i am rested": [0, 65535], "much money to warrant thee as i am rested for": [0, 65535], "money to warrant thee as i am rested for my": [0, 65535], "to warrant thee as i am rested for my wife": [0, 65535], "warrant thee as i am rested for my wife is": [0, 65535], "thee as i am rested for my wife is in": [0, 65535], "as i am rested for my wife is in a": [0, 65535], "i am rested for my wife is in a wayward": [0, 65535], "am rested for my wife is in a wayward moode": [0, 65535], "rested for my wife is in a wayward moode to": [0, 65535], "for my wife is in a wayward moode to day": [0, 65535], "my wife is in a wayward moode to day and": [0, 65535], "wife is in a wayward moode to day and will": [0, 65535], "is in a wayward moode to day and will not": [0, 65535], "in a wayward moode to day and will not lightly": [0, 65535], "a wayward moode to day and will not lightly trust": [0, 65535], "wayward moode to day and will not lightly trust the": [0, 65535], "moode to day and will not lightly trust the messenger": [0, 65535], "to day and will not lightly trust the messenger that": [0, 65535], "day and will not lightly trust the messenger that i": [0, 65535], "and will not lightly trust the messenger that i should": [0, 65535], "will not lightly trust the messenger that i should be": [0, 65535], "not lightly trust the messenger that i should be attach'd": [0, 65535], "lightly trust the messenger that i should be attach'd in": [0, 65535], "trust the messenger that i should be attach'd in ephesus": [0, 65535], "the messenger that i should be attach'd in ephesus i": [0, 65535], "messenger that i should be attach'd in ephesus i tell": [0, 65535], "that i should be attach'd in ephesus i tell you": [0, 65535], "i should be attach'd in ephesus i tell you 'twill": [0, 65535], "should be attach'd in ephesus i tell you 'twill sound": [0, 65535], "be attach'd in ephesus i tell you 'twill sound harshly": [0, 65535], "attach'd in ephesus i tell you 'twill sound harshly in": [0, 65535], "in ephesus i tell you 'twill sound harshly in her": [0, 65535], "ephesus i tell you 'twill sound harshly in her eares": [0, 65535], "i tell you 'twill sound harshly in her eares enter": [0, 65535], "tell you 'twill sound harshly in her eares enter dromio": [0, 65535], "you 'twill sound harshly in her eares enter dromio eph": [0, 65535], "'twill sound harshly in her eares enter dromio eph with": [0, 65535], "sound harshly in her eares enter dromio eph with a": [0, 65535], "harshly in her eares enter dromio eph with a ropes": [0, 65535], "in her eares enter dromio eph with a ropes end": [0, 65535], "her eares enter dromio eph with a ropes end heere": [0, 65535], "eares enter dromio eph with a ropes end heere comes": [0, 65535], "enter dromio eph with a ropes end heere comes my": [0, 65535], "dromio eph with a ropes end heere comes my man": [0, 65535], "eph with a ropes end heere comes my man i": [0, 65535], "with a ropes end heere comes my man i thinke": [0, 65535], "a ropes end heere comes my man i thinke he": [0, 65535], "ropes end heere comes my man i thinke he brings": [0, 65535], "end heere comes my man i thinke he brings the": [0, 65535], "heere comes my man i thinke he brings the monie": [0, 65535], "comes my man i thinke he brings the monie how": [0, 65535], "my man i thinke he brings the monie how now": [0, 65535], "man i thinke he brings the monie how now sir": [0, 65535], "i thinke he brings the monie how now sir haue": [0, 65535], "thinke he brings the monie how now sir haue you": [0, 65535], "he brings the monie how now sir haue you that": [0, 65535], "brings the monie how now sir haue you that i": [0, 65535], "the monie how now sir haue you that i sent": [0, 65535], "monie how now sir haue you that i sent you": [0, 65535], "how now sir haue you that i sent you for": [0, 65535], "now sir haue you that i sent you for e": [0, 65535], "sir haue you that i sent you for e dro": [0, 65535], "haue you that i sent you for e dro here's": [0, 65535], "you that i sent you for e dro here's that": [0, 65535], "that i sent you for e dro here's that i": [0, 65535], "i sent you for e dro here's that i warrant": [0, 65535], "sent you for e dro here's that i warrant you": [0, 65535], "you for e dro here's that i warrant you will": [0, 65535], "for e dro here's that i warrant you will pay": [0, 65535], "e dro here's that i warrant you will pay them": [0, 65535], "dro here's that i warrant you will pay them all": [0, 65535], "here's that i warrant you will pay them all anti": [0, 65535], "that i warrant you will pay them all anti but": [0, 65535], "i warrant you will pay them all anti but where's": [0, 65535], "warrant you will pay them all anti but where's the": [0, 65535], "you will pay them all anti but where's the money": [0, 65535], "will pay them all anti but where's the money e": [0, 65535], "pay them all anti but where's the money e dro": [0, 65535], "them all anti but where's the money e dro why": [0, 65535], "all anti but where's the money e dro why sir": [0, 65535], "anti but where's the money e dro why sir i": [0, 65535], "but where's the money e dro why sir i gaue": [0, 65535], "where's the money e dro why sir i gaue the": [0, 65535], "the money e dro why sir i gaue the monie": [0, 65535], "money e dro why sir i gaue the monie for": [0, 65535], "e dro why sir i gaue the monie for the": [0, 65535], "dro why sir i gaue the monie for the rope": [0, 65535], "why sir i gaue the monie for the rope ant": [0, 65535], "sir i gaue the monie for the rope ant fiue": [0, 65535], "i gaue the monie for the rope ant fiue hundred": [0, 65535], "gaue the monie for the rope ant fiue hundred duckets": [0, 65535], "the monie for the rope ant fiue hundred duckets villaine": [0, 65535], "monie for the rope ant fiue hundred duckets villaine for": [0, 65535], "for the rope ant fiue hundred duckets villaine for a": [0, 65535], "the rope ant fiue hundred duckets villaine for a rope": [0, 65535], "rope ant fiue hundred duckets villaine for a rope e": [0, 65535], "ant fiue hundred duckets villaine for a rope e dro": [0, 65535], "fiue hundred duckets villaine for a rope e dro ile": [0, 65535], "hundred duckets villaine for a rope e dro ile serue": [0, 65535], "duckets villaine for a rope e dro ile serue you": [0, 65535], "villaine for a rope e dro ile serue you sir": [0, 65535], "for a rope e dro ile serue you sir fiue": [0, 65535], "a rope e dro ile serue you sir fiue hundred": [0, 65535], "rope e dro ile serue you sir fiue hundred at": [0, 65535], "e dro ile serue you sir fiue hundred at the": [0, 65535], "dro ile serue you sir fiue hundred at the rate": [0, 65535], "ile serue you sir fiue hundred at the rate ant": [0, 65535], "serue you sir fiue hundred at the rate ant to": [0, 65535], "you sir fiue hundred at the rate ant to what": [0, 65535], "sir fiue hundred at the rate ant to what end": [0, 65535], "fiue hundred at the rate ant to what end did": [0, 65535], "hundred at the rate ant to what end did i": [0, 65535], "at the rate ant to what end did i bid": [0, 65535], "the rate ant to what end did i bid thee": [0, 65535], "rate ant to what end did i bid thee hie": [0, 65535], "ant to what end did i bid thee hie thee": [0, 65535], "to what end did i bid thee hie thee home": [0, 65535], "what end did i bid thee hie thee home e": [0, 65535], "end did i bid thee hie thee home e dro": [0, 65535], "did i bid thee hie thee home e dro to": [0, 65535], "i bid thee hie thee home e dro to a": [0, 65535], "bid thee hie thee home e dro to a ropes": [0, 65535], "thee hie thee home e dro to a ropes end": [0, 65535], "hie thee home e dro to a ropes end sir": [0, 65535], "thee home e dro to a ropes end sir and": [0, 65535], "home e dro to a ropes end sir and to": [0, 65535], "e dro to a ropes end sir and to that": [0, 65535], "dro to a ropes end sir and to that end": [0, 65535], "to a ropes end sir and to that end am": [0, 65535], "a ropes end sir and to that end am i": [0, 65535], "ropes end sir and to that end am i re": [0, 65535], "end sir and to that end am i re turn'd": [0, 65535], "sir and to that end am i re turn'd ant": [0, 65535], "and to that end am i re turn'd ant and": [0, 65535], "to that end am i re turn'd ant and to": [0, 65535], "that end am i re turn'd ant and to that": [0, 65535], "end am i re turn'd ant and to that end": [0, 65535], "am i re turn'd ant and to that end sir": [0, 65535], "i re turn'd ant and to that end sir i": [0, 65535], "re turn'd ant and to that end sir i will": [0, 65535], "turn'd ant and to that end sir i will welcome": [0, 65535], "ant and to that end sir i will welcome you": [0, 65535], "and to that end sir i will welcome you offi": [0, 65535], "to that end sir i will welcome you offi good": [0, 65535], "that end sir i will welcome you offi good sir": [0, 65535], "end sir i will welcome you offi good sir be": [0, 65535], "sir i will welcome you offi good sir be patient": [0, 65535], "i will welcome you offi good sir be patient e": [0, 65535], "will welcome you offi good sir be patient e dro": [0, 65535], "welcome you offi good sir be patient e dro nay": [0, 65535], "you offi good sir be patient e dro nay 'tis": [0, 65535], "offi good sir be patient e dro nay 'tis for": [0, 65535], "good sir be patient e dro nay 'tis for me": [0, 65535], "sir be patient e dro nay 'tis for me to": [0, 65535], "be patient e dro nay 'tis for me to be": [0, 65535], "patient e dro nay 'tis for me to be patient": [0, 65535], "e dro nay 'tis for me to be patient i": [0, 65535], "dro nay 'tis for me to be patient i am": [0, 65535], "nay 'tis for me to be patient i am in": [0, 65535], "'tis for me to be patient i am in aduersitie": [0, 65535], "for me to be patient i am in aduersitie offi": [0, 65535], "me to be patient i am in aduersitie offi good": [0, 65535], "to be patient i am in aduersitie offi good now": [0, 65535], "be patient i am in aduersitie offi good now hold": [0, 65535], "patient i am in aduersitie offi good now hold thy": [0, 65535], "i am in aduersitie offi good now hold thy tongue": [0, 65535], "am in aduersitie offi good now hold thy tongue e": [0, 65535], "in aduersitie offi good now hold thy tongue e dro": [0, 65535], "aduersitie offi good now hold thy tongue e dro nay": [0, 65535], "offi good now hold thy tongue e dro nay rather": [0, 65535], "good now hold thy tongue e dro nay rather perswade": [0, 65535], "now hold thy tongue e dro nay rather perswade him": [0, 65535], "hold thy tongue e dro nay rather perswade him to": [0, 65535], "thy tongue e dro nay rather perswade him to hold": [0, 65535], "tongue e dro nay rather perswade him to hold his": [0, 65535], "e dro nay rather perswade him to hold his hands": [0, 65535], "dro nay rather perswade him to hold his hands anti": [0, 65535], "nay rather perswade him to hold his hands anti thou": [0, 65535], "rather perswade him to hold his hands anti thou whoreson": [0, 65535], "perswade him to hold his hands anti thou whoreson senselesse": [0, 65535], "him to hold his hands anti thou whoreson senselesse villaine": [0, 65535], "to hold his hands anti thou whoreson senselesse villaine e": [0, 65535], "hold his hands anti thou whoreson senselesse villaine e dro": [0, 65535], "his hands anti thou whoreson senselesse villaine e dro i": [0, 65535], "hands anti thou whoreson senselesse villaine e dro i would": [0, 65535], "anti thou whoreson senselesse villaine e dro i would i": [0, 65535], "thou whoreson senselesse villaine e dro i would i were": [0, 65535], "whoreson senselesse villaine e dro i would i were senselesse": [0, 65535], "senselesse villaine e dro i would i were senselesse sir": [0, 65535], "villaine e dro i would i were senselesse sir that": [0, 65535], "e dro i would i were senselesse sir that i": [0, 65535], "dro i would i were senselesse sir that i might": [0, 65535], "i would i were senselesse sir that i might not": [0, 65535], "would i were senselesse sir that i might not feele": [0, 65535], "i were senselesse sir that i might not feele your": [0, 65535], "were senselesse sir that i might not feele your blowes": [0, 65535], "senselesse sir that i might not feele your blowes anti": [0, 65535], "sir that i might not feele your blowes anti thou": [0, 65535], "that i might not feele your blowes anti thou art": [0, 65535], "i might not feele your blowes anti thou art sensible": [0, 65535], "might not feele your blowes anti thou art sensible in": [0, 65535], "not feele your blowes anti thou art sensible in nothing": [0, 65535], "feele your blowes anti thou art sensible in nothing but": [0, 65535], "your blowes anti thou art sensible in nothing but blowes": [0, 65535], "blowes anti thou art sensible in nothing but blowes and": [0, 65535], "anti thou art sensible in nothing but blowes and so": [0, 65535], "thou art sensible in nothing but blowes and so is": [0, 65535], "art sensible in nothing but blowes and so is an": [0, 65535], "sensible in nothing but blowes and so is an asse": [0, 65535], "in nothing but blowes and so is an asse e": [0, 65535], "nothing but blowes and so is an asse e dro": [0, 65535], "but blowes and so is an asse e dro i": [0, 65535], "blowes and so is an asse e dro i am": [0, 65535], "and so is an asse e dro i am an": [0, 65535], "so is an asse e dro i am an asse": [0, 65535], "is an asse e dro i am an asse indeede": [0, 65535], "an asse e dro i am an asse indeede you": [0, 65535], "asse e dro i am an asse indeede you may": [0, 65535], "e dro i am an asse indeede you may prooue": [0, 65535], "dro i am an asse indeede you may prooue it": [0, 65535], "i am an asse indeede you may prooue it by": [0, 65535], "am an asse indeede you may prooue it by my": [0, 65535], "an asse indeede you may prooue it by my long": [0, 65535], "asse indeede you may prooue it by my long eares": [0, 65535], "indeede you may prooue it by my long eares i": [0, 65535], "you may prooue it by my long eares i haue": [0, 65535], "may prooue it by my long eares i haue serued": [0, 65535], "prooue it by my long eares i haue serued him": [0, 65535], "it by my long eares i haue serued him from": [0, 65535], "by my long eares i haue serued him from the": [0, 65535], "my long eares i haue serued him from the houre": [0, 65535], "long eares i haue serued him from the houre of": [0, 65535], "eares i haue serued him from the houre of my": [0, 65535], "i haue serued him from the houre of my natiuitie": [0, 65535], "haue serued him from the houre of my natiuitie to": [0, 65535], "serued him from the houre of my natiuitie to this": [0, 65535], "him from the houre of my natiuitie to this instant": [0, 65535], "from the houre of my natiuitie to this instant and": [0, 65535], "the houre of my natiuitie to this instant and haue": [0, 65535], "houre of my natiuitie to this instant and haue nothing": [0, 65535], "of my natiuitie to this instant and haue nothing at": [0, 65535], "my natiuitie to this instant and haue nothing at his": [0, 65535], "natiuitie to this instant and haue nothing at his hands": [0, 65535], "to this instant and haue nothing at his hands for": [0, 65535], "this instant and haue nothing at his hands for my": [0, 65535], "instant and haue nothing at his hands for my seruice": [0, 65535], "and haue nothing at his hands for my seruice but": [0, 65535], "haue nothing at his hands for my seruice but blowes": [0, 65535], "nothing at his hands for my seruice but blowes when": [0, 65535], "at his hands for my seruice but blowes when i": [0, 65535], "his hands for my seruice but blowes when i am": [0, 65535], "hands for my seruice but blowes when i am cold": [0, 65535], "for my seruice but blowes when i am cold he": [0, 65535], "my seruice but blowes when i am cold he heates": [0, 65535], "seruice but blowes when i am cold he heates me": [0, 65535], "but blowes when i am cold he heates me with": [0, 65535], "blowes when i am cold he heates me with beating": [0, 65535], "when i am cold he heates me with beating when": [0, 65535], "i am cold he heates me with beating when i": [0, 65535], "am cold he heates me with beating when i am": [0, 65535], "cold he heates me with beating when i am warme": [0, 65535], "he heates me with beating when i am warme he": [0, 65535], "heates me with beating when i am warme he cooles": [0, 65535], "me with beating when i am warme he cooles me": [0, 65535], "with beating when i am warme he cooles me with": [0, 65535], "beating when i am warme he cooles me with beating": [0, 65535], "when i am warme he cooles me with beating i": [0, 65535], "i am warme he cooles me with beating i am": [0, 65535], "am warme he cooles me with beating i am wak'd": [0, 65535], "warme he cooles me with beating i am wak'd with": [0, 65535], "he cooles me with beating i am wak'd with it": [0, 65535], "cooles me with beating i am wak'd with it when": [0, 65535], "me with beating i am wak'd with it when i": [0, 65535], "with beating i am wak'd with it when i sleepe": [0, 65535], "beating i am wak'd with it when i sleepe rais'd": [0, 65535], "i am wak'd with it when i sleepe rais'd with": [0, 65535], "am wak'd with it when i sleepe rais'd with it": [0, 65535], "wak'd with it when i sleepe rais'd with it when": [0, 65535], "with it when i sleepe rais'd with it when i": [0, 65535], "it when i sleepe rais'd with it when i sit": [0, 65535], "when i sleepe rais'd with it when i sit driuen": [0, 65535], "i sleepe rais'd with it when i sit driuen out": [0, 65535], "sleepe rais'd with it when i sit driuen out of": [0, 65535], "rais'd with it when i sit driuen out of doores": [0, 65535], "with it when i sit driuen out of doores with": [0, 65535], "it when i sit driuen out of doores with it": [0, 65535], "when i sit driuen out of doores with it when": [0, 65535], "i sit driuen out of doores with it when i": [0, 65535], "sit driuen out of doores with it when i goe": [0, 65535], "driuen out of doores with it when i goe from": [0, 65535], "out of doores with it when i goe from home": [0, 65535], "of doores with it when i goe from home welcom'd": [0, 65535], "doores with it when i goe from home welcom'd home": [0, 65535], "with it when i goe from home welcom'd home with": [0, 65535], "it when i goe from home welcom'd home with it": [0, 65535], "when i goe from home welcom'd home with it when": [0, 65535], "i goe from home welcom'd home with it when i": [0, 65535], "goe from home welcom'd home with it when i returne": [0, 65535], "from home welcom'd home with it when i returne nay": [0, 65535], "home welcom'd home with it when i returne nay i": [0, 65535], "welcom'd home with it when i returne nay i beare": [0, 65535], "home with it when i returne nay i beare it": [0, 65535], "with it when i returne nay i beare it on": [0, 65535], "it when i returne nay i beare it on my": [0, 65535], "when i returne nay i beare it on my shoulders": [0, 65535], "i returne nay i beare it on my shoulders as": [0, 65535], "returne nay i beare it on my shoulders as a": [0, 65535], "nay i beare it on my shoulders as a begger": [0, 65535], "i beare it on my shoulders as a begger woont": [0, 65535], "beare it on my shoulders as a begger woont her": [0, 65535], "it on my shoulders as a begger woont her brat": [0, 65535], "on my shoulders as a begger woont her brat and": [0, 65535], "my shoulders as a begger woont her brat and i": [0, 65535], "shoulders as a begger woont her brat and i thinke": [0, 65535], "as a begger woont her brat and i thinke when": [0, 65535], "a begger woont her brat and i thinke when he": [0, 65535], "begger woont her brat and i thinke when he hath": [0, 65535], "woont her brat and i thinke when he hath lam'd": [0, 65535], "her brat and i thinke when he hath lam'd me": [0, 65535], "brat and i thinke when he hath lam'd me i": [0, 65535], "and i thinke when he hath lam'd me i shall": [0, 65535], "i thinke when he hath lam'd me i shall begge": [0, 65535], "thinke when he hath lam'd me i shall begge with": [0, 65535], "when he hath lam'd me i shall begge with it": [0, 65535], "he hath lam'd me i shall begge with it from": [0, 65535], "hath lam'd me i shall begge with it from doore": [0, 65535], "lam'd me i shall begge with it from doore to": [0, 65535], "me i shall begge with it from doore to doore": [0, 65535], "i shall begge with it from doore to doore enter": [0, 65535], "shall begge with it from doore to doore enter adriana": [0, 65535], "begge with it from doore to doore enter adriana luciana": [0, 65535], "with it from doore to doore enter adriana luciana courtizan": [0, 65535], "it from doore to doore enter adriana luciana courtizan and": [0, 65535], "from doore to doore enter adriana luciana courtizan and a": [0, 65535], "doore to doore enter adriana luciana courtizan and a schoolemaster": [0, 65535], "to doore enter adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "doore enter adriana luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "enter adriana luciana courtizan and a schoolemaster call'd pinch ant": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd pinch ant come": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch ant come goe": [0, 65535], "courtizan and a schoolemaster call'd pinch ant come goe along": [0, 65535], "and a schoolemaster call'd pinch ant come goe along my": [0, 65535], "a schoolemaster call'd pinch ant come goe along my wife": [0, 65535], "schoolemaster call'd pinch ant come goe along my wife is": [0, 65535], "call'd pinch ant come goe along my wife is comming": [0, 65535], "pinch ant come goe along my wife is comming yonder": [0, 65535], "ant come goe along my wife is comming yonder e": [0, 65535], "come goe along my wife is comming yonder e dro": [0, 65535], "goe along my wife is comming yonder e dro mistris": [0, 65535], "along my wife is comming yonder e dro mistris respice": [0, 65535], "my wife is comming yonder e dro mistris respice finem": [0, 65535], "wife is comming yonder e dro mistris respice finem respect": [0, 65535], "is comming yonder e dro mistris respice finem respect your": [0, 65535], "comming yonder e dro mistris respice finem respect your end": [0, 65535], "yonder e dro mistris respice finem respect your end or": [0, 65535], "e dro mistris respice finem respect your end or rather": [0, 65535], "dro mistris respice finem respect your end or rather the": [0, 65535], "mistris respice finem respect your end or rather the prophesie": [0, 65535], "respice finem respect your end or rather the prophesie like": [0, 65535], "finem respect your end or rather the prophesie like the": [0, 65535], "respect your end or rather the prophesie like the parrat": [0, 65535], "your end or rather the prophesie like the parrat beware": [0, 65535], "end or rather the prophesie like the parrat beware the": [0, 65535], "or rather the prophesie like the parrat beware the ropes": [0, 65535], "rather the prophesie like the parrat beware the ropes end": [0, 65535], "the prophesie like the parrat beware the ropes end anti": [0, 65535], "prophesie like the parrat beware the ropes end anti wilt": [0, 65535], "like the parrat beware the ropes end anti wilt thou": [0, 65535], "the parrat beware the ropes end anti wilt thou still": [0, 65535], "parrat beware the ropes end anti wilt thou still talke": [0, 65535], "beware the ropes end anti wilt thou still talke beats": [0, 65535], "the ropes end anti wilt thou still talke beats dro": [0, 65535], "ropes end anti wilt thou still talke beats dro curt": [0, 65535], "end anti wilt thou still talke beats dro curt how": [0, 65535], "anti wilt thou still talke beats dro curt how say": [0, 65535], "wilt thou still talke beats dro curt how say you": [0, 65535], "thou still talke beats dro curt how say you now": [0, 65535], "still talke beats dro curt how say you now is": [0, 65535], "talke beats dro curt how say you now is not": [0, 65535], "beats dro curt how say you now is not your": [0, 65535], "dro curt how say you now is not your husband": [0, 65535], "curt how say you now is not your husband mad": [0, 65535], "how say you now is not your husband mad adri": [0, 65535], "say you now is not your husband mad adri his": [0, 65535], "you now is not your husband mad adri his inciuility": [0, 65535], "now is not your husband mad adri his inciuility confirmes": [0, 65535], "is not your husband mad adri his inciuility confirmes no": [0, 65535], "not your husband mad adri his inciuility confirmes no lesse": [0, 65535], "your husband mad adri his inciuility confirmes no lesse good": [0, 65535], "husband mad adri his inciuility confirmes no lesse good doctor": [0, 65535], "mad adri his inciuility confirmes no lesse good doctor pinch": [0, 65535], "adri his inciuility confirmes no lesse good doctor pinch you": [0, 65535], "his inciuility confirmes no lesse good doctor pinch you are": [0, 65535], "inciuility confirmes no lesse good doctor pinch you are a": [0, 65535], "confirmes no lesse good doctor pinch you are a coniurer": [0, 65535], "no lesse good doctor pinch you are a coniurer establish": [0, 65535], "lesse good doctor pinch you are a coniurer establish him": [0, 65535], "good doctor pinch you are a coniurer establish him in": [0, 65535], "doctor pinch you are a coniurer establish him in his": [0, 65535], "pinch you are a coniurer establish him in his true": [0, 65535], "you are a coniurer establish him in his true sence": [0, 65535], "are a coniurer establish him in his true sence againe": [0, 65535], "a coniurer establish him in his true sence againe and": [0, 65535], "coniurer establish him in his true sence againe and i": [0, 65535], "establish him in his true sence againe and i will": [0, 65535], "him in his true sence againe and i will please": [0, 65535], "in his true sence againe and i will please you": [0, 65535], "his true sence againe and i will please you what": [0, 65535], "true sence againe and i will please you what you": [0, 65535], "sence againe and i will please you what you will": [0, 65535], "againe and i will please you what you will demand": [0, 65535], "and i will please you what you will demand luc": [0, 65535], "i will please you what you will demand luc alas": [0, 65535], "will please you what you will demand luc alas how": [0, 65535], "please you what you will demand luc alas how fiery": [0, 65535], "you what you will demand luc alas how fiery and": [0, 65535], "what you will demand luc alas how fiery and how": [0, 65535], "you will demand luc alas how fiery and how sharpe": [0, 65535], "will demand luc alas how fiery and how sharpe he": [0, 65535], "demand luc alas how fiery and how sharpe he lookes": [0, 65535], "luc alas how fiery and how sharpe he lookes cur": [0, 65535], "alas how fiery and how sharpe he lookes cur marke": [0, 65535], "how fiery and how sharpe he lookes cur marke how": [0, 65535], "fiery and how sharpe he lookes cur marke how he": [0, 65535], "and how sharpe he lookes cur marke how he trembles": [0, 65535], "how sharpe he lookes cur marke how he trembles in": [0, 65535], "sharpe he lookes cur marke how he trembles in his": [0, 65535], "he lookes cur marke how he trembles in his extasie": [0, 65535], "lookes cur marke how he trembles in his extasie pinch": [0, 65535], "cur marke how he trembles in his extasie pinch giue": [0, 65535], "marke how he trembles in his extasie pinch giue me": [0, 65535], "how he trembles in his extasie pinch giue me your": [0, 65535], "he trembles in his extasie pinch giue me your hand": [0, 65535], "trembles in his extasie pinch giue me your hand and": [0, 65535], "in his extasie pinch giue me your hand and let": [0, 65535], "his extasie pinch giue me your hand and let mee": [0, 65535], "extasie pinch giue me your hand and let mee feele": [0, 65535], "pinch giue me your hand and let mee feele your": [0, 65535], "giue me your hand and let mee feele your pulse": [0, 65535], "me your hand and let mee feele your pulse ant": [0, 65535], "your hand and let mee feele your pulse ant there": [0, 65535], "hand and let mee feele your pulse ant there is": [0, 65535], "and let mee feele your pulse ant there is my": [0, 65535], "let mee feele your pulse ant there is my hand": [0, 65535], "mee feele your pulse ant there is my hand and": [0, 65535], "feele your pulse ant there is my hand and let": [0, 65535], "your pulse ant there is my hand and let it": [0, 65535], "pulse ant there is my hand and let it feele": [0, 65535], "ant there is my hand and let it feele your": [0, 65535], "there is my hand and let it feele your eare": [0, 65535], "is my hand and let it feele your eare pinch": [0, 65535], "my hand and let it feele your eare pinch i": [0, 65535], "hand and let it feele your eare pinch i charge": [0, 65535], "and let it feele your eare pinch i charge thee": [0, 65535], "let it feele your eare pinch i charge thee sathan": [0, 65535], "it feele your eare pinch i charge thee sathan hous'd": [0, 65535], "feele your eare pinch i charge thee sathan hous'd within": [0, 65535], "your eare pinch i charge thee sathan hous'd within this": [0, 65535], "eare pinch i charge thee sathan hous'd within this man": [0, 65535], "pinch i charge thee sathan hous'd within this man to": [0, 65535], "i charge thee sathan hous'd within this man to yeeld": [0, 65535], "charge thee sathan hous'd within this man to yeeld possession": [0, 65535], "thee sathan hous'd within this man to yeeld possession to": [0, 65535], "sathan hous'd within this man to yeeld possession to my": [0, 65535], "hous'd within this man to yeeld possession to my holie": [0, 65535], "within this man to yeeld possession to my holie praiers": [0, 65535], "this man to yeeld possession to my holie praiers and": [0, 65535], "man to yeeld possession to my holie praiers and to": [0, 65535], "to yeeld possession to my holie praiers and to thy": [0, 65535], "yeeld possession to my holie praiers and to thy state": [0, 65535], "possession to my holie praiers and to thy state of": [0, 65535], "to my holie praiers and to thy state of darknesse": [0, 65535], "my holie praiers and to thy state of darknesse hie": [0, 65535], "holie praiers and to thy state of darknesse hie thee": [0, 65535], "praiers and to thy state of darknesse hie thee straight": [0, 65535], "and to thy state of darknesse hie thee straight i": [0, 65535], "to thy state of darknesse hie thee straight i coniure": [0, 65535], "thy state of darknesse hie thee straight i coniure thee": [0, 65535], "state of darknesse hie thee straight i coniure thee by": [0, 65535], "of darknesse hie thee straight i coniure thee by all": [0, 65535], "darknesse hie thee straight i coniure thee by all the": [0, 65535], "hie thee straight i coniure thee by all the saints": [0, 65535], "thee straight i coniure thee by all the saints in": [0, 65535], "straight i coniure thee by all the saints in heauen": [0, 65535], "i coniure thee by all the saints in heauen anti": [0, 65535], "coniure thee by all the saints in heauen anti peace": [0, 65535], "thee by all the saints in heauen anti peace doting": [0, 65535], "by all the saints in heauen anti peace doting wizard": [0, 65535], "all the saints in heauen anti peace doting wizard peace": [0, 65535], "the saints in heauen anti peace doting wizard peace i": [0, 65535], "saints in heauen anti peace doting wizard peace i am": [0, 65535], "in heauen anti peace doting wizard peace i am not": [0, 65535], "heauen anti peace doting wizard peace i am not mad": [0, 65535], "anti peace doting wizard peace i am not mad adr": [0, 65535], "peace doting wizard peace i am not mad adr oh": [0, 65535], "doting wizard peace i am not mad adr oh that": [0, 65535], "wizard peace i am not mad adr oh that thou": [0, 65535], "peace i am not mad adr oh that thou wer't": [0, 65535], "i am not mad adr oh that thou wer't not": [0, 65535], "am not mad adr oh that thou wer't not poore": [0, 65535], "not mad adr oh that thou wer't not poore distressed": [0, 65535], "mad adr oh that thou wer't not poore distressed soule": [0, 65535], "adr oh that thou wer't not poore distressed soule anti": [0, 65535], "oh that thou wer't not poore distressed soule anti you": [0, 65535], "that thou wer't not poore distressed soule anti you minion": [0, 65535], "thou wer't not poore distressed soule anti you minion you": [0, 65535], "wer't not poore distressed soule anti you minion you are": [0, 65535], "not poore distressed soule anti you minion you are these": [0, 65535], "poore distressed soule anti you minion you are these your": [0, 65535], "distressed soule anti you minion you are these your customers": [0, 65535], "soule anti you minion you are these your customers did": [0, 65535], "anti you minion you are these your customers did this": [0, 65535], "you minion you are these your customers did this companion": [0, 65535], "minion you are these your customers did this companion with": [0, 65535], "you are these your customers did this companion with the": [0, 65535], "are these your customers did this companion with the saffron": [0, 65535], "these your customers did this companion with the saffron face": [0, 65535], "your customers did this companion with the saffron face reuell": [0, 65535], "customers did this companion with the saffron face reuell and": [0, 65535], "did this companion with the saffron face reuell and feast": [0, 65535], "this companion with the saffron face reuell and feast it": [0, 65535], "companion with the saffron face reuell and feast it at": [0, 65535], "with the saffron face reuell and feast it at my": [0, 65535], "the saffron face reuell and feast it at my house": [0, 65535], "saffron face reuell and feast it at my house to": [0, 65535], "face reuell and feast it at my house to day": [0, 65535], "reuell and feast it at my house to day whil'st": [0, 65535], "and feast it at my house to day whil'st vpon": [0, 65535], "feast it at my house to day whil'st vpon me": [0, 65535], "it at my house to day whil'st vpon me the": [0, 65535], "at my house to day whil'st vpon me the guiltie": [0, 65535], "my house to day whil'st vpon me the guiltie doores": [0, 65535], "house to day whil'st vpon me the guiltie doores were": [0, 65535], "to day whil'st vpon me the guiltie doores were shut": [0, 65535], "day whil'st vpon me the guiltie doores were shut and": [0, 65535], "whil'st vpon me the guiltie doores were shut and i": [0, 65535], "vpon me the guiltie doores were shut and i denied": [0, 65535], "me the guiltie doores were shut and i denied to": [0, 65535], "the guiltie doores were shut and i denied to enter": [0, 65535], "guiltie doores were shut and i denied to enter in": [0, 65535], "doores were shut and i denied to enter in my": [0, 65535], "were shut and i denied to enter in my house": [0, 65535], "shut and i denied to enter in my house adr": [0, 65535], "and i denied to enter in my house adr o": [0, 65535], "i denied to enter in my house adr o husband": [0, 65535], "denied to enter in my house adr o husband god": [0, 65535], "to enter in my house adr o husband god doth": [0, 65535], "enter in my house adr o husband god doth know": [0, 65535], "in my house adr o husband god doth know you": [0, 65535], "my house adr o husband god doth know you din'd": [0, 65535], "house adr o husband god doth know you din'd at": [0, 65535], "adr o husband god doth know you din'd at home": [0, 65535], "o husband god doth know you din'd at home where": [0, 65535], "husband god doth know you din'd at home where would": [0, 65535], "god doth know you din'd at home where would you": [0, 65535], "doth know you din'd at home where would you had": [0, 65535], "know you din'd at home where would you had remain'd": [0, 65535], "you din'd at home where would you had remain'd vntill": [0, 65535], "din'd at home where would you had remain'd vntill this": [0, 65535], "at home where would you had remain'd vntill this time": [0, 65535], "home where would you had remain'd vntill this time free": [0, 65535], "where would you had remain'd vntill this time free from": [0, 65535], "would you had remain'd vntill this time free from these": [0, 65535], "you had remain'd vntill this time free from these slanders": [0, 65535], "had remain'd vntill this time free from these slanders and": [0, 65535], "remain'd vntill this time free from these slanders and this": [0, 65535], "vntill this time free from these slanders and this open": [0, 65535], "this time free from these slanders and this open shame": [0, 65535], "time free from these slanders and this open shame anti": [0, 65535], "free from these slanders and this open shame anti din'd": [0, 65535], "from these slanders and this open shame anti din'd at": [0, 65535], "these slanders and this open shame anti din'd at home": [0, 65535], "slanders and this open shame anti din'd at home thou": [0, 65535], "and this open shame anti din'd at home thou villaine": [0, 65535], "this open shame anti din'd at home thou villaine what": [0, 65535], "open shame anti din'd at home thou villaine what sayest": [0, 65535], "shame anti din'd at home thou villaine what sayest thou": [0, 65535], "anti din'd at home thou villaine what sayest thou dro": [0, 65535], "din'd at home thou villaine what sayest thou dro sir": [0, 65535], "at home thou villaine what sayest thou dro sir sooth": [0, 65535], "home thou villaine what sayest thou dro sir sooth to": [0, 65535], "thou villaine what sayest thou dro sir sooth to say": [0, 65535], "villaine what sayest thou dro sir sooth to say you": [0, 65535], "what sayest thou dro sir sooth to say you did": [0, 65535], "sayest thou dro sir sooth to say you did not": [0, 65535], "thou dro sir sooth to say you did not dine": [0, 65535], "dro sir sooth to say you did not dine at": [0, 65535], "sir sooth to say you did not dine at home": [0, 65535], "sooth to say you did not dine at home ant": [0, 65535], "to say you did not dine at home ant were": [0, 65535], "say you did not dine at home ant were not": [0, 65535], "you did not dine at home ant were not my": [0, 65535], "did not dine at home ant were not my doores": [0, 65535], "not dine at home ant were not my doores lockt": [0, 65535], "dine at home ant were not my doores lockt vp": [0, 65535], "at home ant were not my doores lockt vp and": [0, 65535], "home ant were not my doores lockt vp and i": [0, 65535], "ant were not my doores lockt vp and i shut": [0, 65535], "were not my doores lockt vp and i shut out": [0, 65535], "not my doores lockt vp and i shut out dro": [0, 65535], "my doores lockt vp and i shut out dro perdie": [0, 65535], "doores lockt vp and i shut out dro perdie your": [0, 65535], "lockt vp and i shut out dro perdie your doores": [0, 65535], "vp and i shut out dro perdie your doores were": [0, 65535], "and i shut out dro perdie your doores were lockt": [0, 65535], "i shut out dro perdie your doores were lockt and": [0, 65535], "shut out dro perdie your doores were lockt and you": [0, 65535], "out dro perdie your doores were lockt and you shut": [0, 65535], "dro perdie your doores were lockt and you shut out": [0, 65535], "perdie your doores were lockt and you shut out anti": [0, 65535], "your doores were lockt and you shut out anti and": [0, 65535], "doores were lockt and you shut out anti and did": [0, 65535], "were lockt and you shut out anti and did not": [0, 65535], "lockt and you shut out anti and did not she": [0, 65535], "and you shut out anti and did not she her": [0, 65535], "you shut out anti and did not she her selfe": [0, 65535], "shut out anti and did not she her selfe reuile": [0, 65535], "out anti and did not she her selfe reuile me": [0, 65535], "anti and did not she her selfe reuile me there": [0, 65535], "and did not she her selfe reuile me there dro": [0, 65535], "did not she her selfe reuile me there dro sans": [0, 65535], "not she her selfe reuile me there dro sans fable": [0, 65535], "she her selfe reuile me there dro sans fable she": [0, 65535], "her selfe reuile me there dro sans fable she her": [0, 65535], "selfe reuile me there dro sans fable she her selfe": [0, 65535], "reuile me there dro sans fable she her selfe reuil'd": [0, 65535], "me there dro sans fable she her selfe reuil'd you": [0, 65535], "there dro sans fable she her selfe reuil'd you there": [0, 65535], "dro sans fable she her selfe reuil'd you there anti": [0, 65535], "sans fable she her selfe reuil'd you there anti did": [0, 65535], "fable she her selfe reuil'd you there anti did not": [0, 65535], "she her selfe reuil'd you there anti did not her": [0, 65535], "her selfe reuil'd you there anti did not her kitchen": [0, 65535], "selfe reuil'd you there anti did not her kitchen maide": [0, 65535], "reuil'd you there anti did not her kitchen maide raile": [0, 65535], "you there anti did not her kitchen maide raile taunt": [0, 65535], "there anti did not her kitchen maide raile taunt and": [0, 65535], "anti did not her kitchen maide raile taunt and scorne": [0, 65535], "did not her kitchen maide raile taunt and scorne me": [0, 65535], "not her kitchen maide raile taunt and scorne me dro": [0, 65535], "her kitchen maide raile taunt and scorne me dro certis": [0, 65535], "kitchen maide raile taunt and scorne me dro certis she": [0, 65535], "maide raile taunt and scorne me dro certis she did": [0, 65535], "raile taunt and scorne me dro certis she did the": [0, 65535], "taunt and scorne me dro certis she did the kitchin": [0, 65535], "and scorne me dro certis she did the kitchin vestall": [0, 65535], "scorne me dro certis she did the kitchin vestall scorn'd": [0, 65535], "me dro certis she did the kitchin vestall scorn'd you": [0, 65535], "dro certis she did the kitchin vestall scorn'd you ant": [0, 65535], "certis she did the kitchin vestall scorn'd you ant and": [0, 65535], "she did the kitchin vestall scorn'd you ant and did": [0, 65535], "did the kitchin vestall scorn'd you ant and did not": [0, 65535], "the kitchin vestall scorn'd you ant and did not i": [0, 65535], "kitchin vestall scorn'd you ant and did not i in": [0, 65535], "vestall scorn'd you ant and did not i in rage": [0, 65535], "scorn'd you ant and did not i in rage depart": [0, 65535], "you ant and did not i in rage depart from": [0, 65535], "ant and did not i in rage depart from thence": [0, 65535], "and did not i in rage depart from thence dro": [0, 65535], "did not i in rage depart from thence dro in": [0, 65535], "not i in rage depart from thence dro in veritie": [0, 65535], "i in rage depart from thence dro in veritie you": [0, 65535], "in rage depart from thence dro in veritie you did": [0, 65535], "rage depart from thence dro in veritie you did my": [0, 65535], "depart from thence dro in veritie you did my bones": [0, 65535], "from thence dro in veritie you did my bones beares": [0, 65535], "thence dro in veritie you did my bones beares witnesse": [0, 65535], "dro in veritie you did my bones beares witnesse that": [0, 65535], "in veritie you did my bones beares witnesse that since": [0, 65535], "veritie you did my bones beares witnesse that since haue": [0, 65535], "you did my bones beares witnesse that since haue felt": [0, 65535], "did my bones beares witnesse that since haue felt the": [0, 65535], "my bones beares witnesse that since haue felt the vigor": [0, 65535], "bones beares witnesse that since haue felt the vigor of": [0, 65535], "beares witnesse that since haue felt the vigor of his": [0, 65535], "witnesse that since haue felt the vigor of his rage": [0, 65535], "that since haue felt the vigor of his rage adr": [0, 65535], "since haue felt the vigor of his rage adr is't": [0, 65535], "haue felt the vigor of his rage adr is't good": [0, 65535], "felt the vigor of his rage adr is't good to": [0, 65535], "the vigor of his rage adr is't good to sooth": [0, 65535], "vigor of his rage adr is't good to sooth him": [0, 65535], "of his rage adr is't good to sooth him in": [0, 65535], "his rage adr is't good to sooth him in these": [0, 65535], "rage adr is't good to sooth him in these contraries": [0, 65535], "adr is't good to sooth him in these contraries pinch": [0, 65535], "is't good to sooth him in these contraries pinch it": [0, 65535], "good to sooth him in these contraries pinch it is": [0, 65535], "to sooth him in these contraries pinch it is no": [0, 65535], "sooth him in these contraries pinch it is no shame": [0, 65535], "him in these contraries pinch it is no shame the": [0, 65535], "in these contraries pinch it is no shame the fellow": [0, 65535], "these contraries pinch it is no shame the fellow finds": [0, 65535], "contraries pinch it is no shame the fellow finds his": [0, 65535], "pinch it is no shame the fellow finds his vaine": [0, 65535], "it is no shame the fellow finds his vaine and": [0, 65535], "is no shame the fellow finds his vaine and yeelding": [0, 65535], "no shame the fellow finds his vaine and yeelding to": [0, 65535], "shame the fellow finds his vaine and yeelding to him": [0, 65535], "the fellow finds his vaine and yeelding to him humors": [0, 65535], "fellow finds his vaine and yeelding to him humors well": [0, 65535], "finds his vaine and yeelding to him humors well his": [0, 65535], "his vaine and yeelding to him humors well his frensie": [0, 65535], "vaine and yeelding to him humors well his frensie ant": [0, 65535], "and yeelding to him humors well his frensie ant thou": [0, 65535], "yeelding to him humors well his frensie ant thou hast": [0, 65535], "to him humors well his frensie ant thou hast subborn'd": [0, 65535], "him humors well his frensie ant thou hast subborn'd the": [0, 65535], "humors well his frensie ant thou hast subborn'd the goldsmith": [0, 65535], "well his frensie ant thou hast subborn'd the goldsmith to": [0, 65535], "his frensie ant thou hast subborn'd the goldsmith to arrest": [0, 65535], "frensie ant thou hast subborn'd the goldsmith to arrest mee": [0, 65535], "ant thou hast subborn'd the goldsmith to arrest mee adr": [0, 65535], "thou hast subborn'd the goldsmith to arrest mee adr alas": [0, 65535], "hast subborn'd the goldsmith to arrest mee adr alas i": [0, 65535], "subborn'd the goldsmith to arrest mee adr alas i sent": [0, 65535], "the goldsmith to arrest mee adr alas i sent you": [0, 65535], "goldsmith to arrest mee adr alas i sent you monie": [0, 65535], "to arrest mee adr alas i sent you monie to": [0, 65535], "arrest mee adr alas i sent you monie to redeeme": [0, 65535], "mee adr alas i sent you monie to redeeme you": [0, 65535], "adr alas i sent you monie to redeeme you by": [0, 65535], "alas i sent you monie to redeeme you by dromio": [0, 65535], "i sent you monie to redeeme you by dromio heere": [0, 65535], "sent you monie to redeeme you by dromio heere who": [0, 65535], "you monie to redeeme you by dromio heere who came": [0, 65535], "monie to redeeme you by dromio heere who came in": [0, 65535], "to redeeme you by dromio heere who came in hast": [0, 65535], "redeeme you by dromio heere who came in hast for": [0, 65535], "you by dromio heere who came in hast for it": [0, 65535], "by dromio heere who came in hast for it dro": [0, 65535], "dromio heere who came in hast for it dro monie": [0, 65535], "heere who came in hast for it dro monie by": [0, 65535], "who came in hast for it dro monie by me": [0, 65535], "came in hast for it dro monie by me heart": [0, 65535], "in hast for it dro monie by me heart and": [0, 65535], "hast for it dro monie by me heart and good": [0, 65535], "for it dro monie by me heart and good will": [0, 65535], "it dro monie by me heart and good will you": [0, 65535], "dro monie by me heart and good will you might": [0, 65535], "monie by me heart and good will you might but": [0, 65535], "by me heart and good will you might but surely": [0, 65535], "me heart and good will you might but surely master": [0, 65535], "heart and good will you might but surely master not": [0, 65535], "and good will you might but surely master not a": [0, 65535], "good will you might but surely master not a ragge": [0, 65535], "will you might but surely master not a ragge of": [0, 65535], "you might but surely master not a ragge of monie": [0, 65535], "might but surely master not a ragge of monie ant": [0, 65535], "but surely master not a ragge of monie ant wentst": [0, 65535], "surely master not a ragge of monie ant wentst not": [0, 65535], "master not a ragge of monie ant wentst not thou": [0, 65535], "not a ragge of monie ant wentst not thou to": [0, 65535], "a ragge of monie ant wentst not thou to her": [0, 65535], "ragge of monie ant wentst not thou to her for": [0, 65535], "of monie ant wentst not thou to her for a": [0, 65535], "monie ant wentst not thou to her for a purse": [0, 65535], "ant wentst not thou to her for a purse of": [0, 65535], "wentst not thou to her for a purse of duckets": [0, 65535], "not thou to her for a purse of duckets adri": [0, 65535], "thou to her for a purse of duckets adri he": [0, 65535], "to her for a purse of duckets adri he came": [0, 65535], "her for a purse of duckets adri he came to": [0, 65535], "for a purse of duckets adri he came to me": [0, 65535], "a purse of duckets adri he came to me and": [0, 65535], "purse of duckets adri he came to me and i": [0, 65535], "of duckets adri he came to me and i deliuer'd": [0, 65535], "duckets adri he came to me and i deliuer'd it": [0, 65535], "adri he came to me and i deliuer'd it luci": [0, 65535], "he came to me and i deliuer'd it luci and": [0, 65535], "came to me and i deliuer'd it luci and i": [0, 65535], "to me and i deliuer'd it luci and i am": [0, 65535], "me and i deliuer'd it luci and i am witnesse": [0, 65535], "and i deliuer'd it luci and i am witnesse with": [0, 65535], "i deliuer'd it luci and i am witnesse with her": [0, 65535], "deliuer'd it luci and i am witnesse with her that": [0, 65535], "it luci and i am witnesse with her that she": [0, 65535], "luci and i am witnesse with her that she did": [0, 65535], "and i am witnesse with her that she did dro": [0, 65535], "i am witnesse with her that she did dro god": [0, 65535], "am witnesse with her that she did dro god and": [0, 65535], "witnesse with her that she did dro god and the": [0, 65535], "with her that she did dro god and the rope": [0, 65535], "her that she did dro god and the rope maker": [0, 65535], "that she did dro god and the rope maker beare": [0, 65535], "she did dro god and the rope maker beare me": [0, 65535], "did dro god and the rope maker beare me witnesse": [0, 65535], "dro god and the rope maker beare me witnesse that": [0, 65535], "god and the rope maker beare me witnesse that i": [0, 65535], "and the rope maker beare me witnesse that i was": [0, 65535], "the rope maker beare me witnesse that i was sent": [0, 65535], "rope maker beare me witnesse that i was sent for": [0, 65535], "maker beare me witnesse that i was sent for nothing": [0, 65535], "beare me witnesse that i was sent for nothing but": [0, 65535], "me witnesse that i was sent for nothing but a": [0, 65535], "witnesse that i was sent for nothing but a rope": [0, 65535], "that i was sent for nothing but a rope pinch": [0, 65535], "i was sent for nothing but a rope pinch mistris": [0, 65535], "was sent for nothing but a rope pinch mistris both": [0, 65535], "sent for nothing but a rope pinch mistris both man": [0, 65535], "for nothing but a rope pinch mistris both man and": [0, 65535], "nothing but a rope pinch mistris both man and master": [0, 65535], "but a rope pinch mistris both man and master is": [0, 65535], "a rope pinch mistris both man and master is possest": [0, 65535], "rope pinch mistris both man and master is possest i": [0, 65535], "pinch mistris both man and master is possest i know": [0, 65535], "mistris both man and master is possest i know it": [0, 65535], "both man and master is possest i know it by": [0, 65535], "man and master is possest i know it by their": [0, 65535], "and master is possest i know it by their pale": [0, 65535], "master is possest i know it by their pale and": [0, 65535], "is possest i know it by their pale and deadly": [0, 65535], "possest i know it by their pale and deadly lookes": [0, 65535], "i know it by their pale and deadly lookes they": [0, 65535], "know it by their pale and deadly lookes they must": [0, 65535], "it by their pale and deadly lookes they must be": [0, 65535], "by their pale and deadly lookes they must be bound": [0, 65535], "their pale and deadly lookes they must be bound and": [0, 65535], "pale and deadly lookes they must be bound and laide": [0, 65535], "and deadly lookes they must be bound and laide in": [0, 65535], "deadly lookes they must be bound and laide in some": [0, 65535], "lookes they must be bound and laide in some darke": [0, 65535], "they must be bound and laide in some darke roome": [0, 65535], "must be bound and laide in some darke roome ant": [0, 65535], "be bound and laide in some darke roome ant say": [0, 65535], "bound and laide in some darke roome ant say wherefore": [0, 65535], "and laide in some darke roome ant say wherefore didst": [0, 65535], "laide in some darke roome ant say wherefore didst thou": [0, 65535], "in some darke roome ant say wherefore didst thou locke": [0, 65535], "some darke roome ant say wherefore didst thou locke me": [0, 65535], "darke roome ant say wherefore didst thou locke me forth": [0, 65535], "roome ant say wherefore didst thou locke me forth to": [0, 65535], "ant say wherefore didst thou locke me forth to day": [0, 65535], "say wherefore didst thou locke me forth to day and": [0, 65535], "wherefore didst thou locke me forth to day and why": [0, 65535], "didst thou locke me forth to day and why dost": [0, 65535], "thou locke me forth to day and why dost thou": [0, 65535], "locke me forth to day and why dost thou denie": [0, 65535], "me forth to day and why dost thou denie the": [0, 65535], "forth to day and why dost thou denie the bagge": [0, 65535], "to day and why dost thou denie the bagge of": [0, 65535], "day and why dost thou denie the bagge of gold": [0, 65535], "and why dost thou denie the bagge of gold adr": [0, 65535], "why dost thou denie the bagge of gold adr i": [0, 65535], "dost thou denie the bagge of gold adr i did": [0, 65535], "thou denie the bagge of gold adr i did not": [0, 65535], "denie the bagge of gold adr i did not gentle": [0, 65535], "the bagge of gold adr i did not gentle husband": [0, 65535], "bagge of gold adr i did not gentle husband locke": [0, 65535], "of gold adr i did not gentle husband locke thee": [0, 65535], "gold adr i did not gentle husband locke thee forth": [0, 65535], "adr i did not gentle husband locke thee forth dro": [0, 65535], "i did not gentle husband locke thee forth dro and": [0, 65535], "did not gentle husband locke thee forth dro and gentle": [0, 65535], "not gentle husband locke thee forth dro and gentle mr": [0, 65535], "gentle husband locke thee forth dro and gentle mr i": [0, 65535], "husband locke thee forth dro and gentle mr i receiu'd": [0, 65535], "locke thee forth dro and gentle mr i receiu'd no": [0, 65535], "thee forth dro and gentle mr i receiu'd no gold": [0, 65535], "forth dro and gentle mr i receiu'd no gold but": [0, 65535], "dro and gentle mr i receiu'd no gold but i": [0, 65535], "and gentle mr i receiu'd no gold but i confesse": [0, 65535], "gentle mr i receiu'd no gold but i confesse sir": [0, 65535], "mr i receiu'd no gold but i confesse sir that": [0, 65535], "i receiu'd no gold but i confesse sir that we": [0, 65535], "receiu'd no gold but i confesse sir that we were": [0, 65535], "no gold but i confesse sir that we were lock'd": [0, 65535], "gold but i confesse sir that we were lock'd out": [0, 65535], "but i confesse sir that we were lock'd out adr": [0, 65535], "i confesse sir that we were lock'd out adr dissembling": [0, 65535], "confesse sir that we were lock'd out adr dissembling villain": [0, 65535], "sir that we were lock'd out adr dissembling villain thou": [0, 65535], "that we were lock'd out adr dissembling villain thou speak'st": [0, 65535], "we were lock'd out adr dissembling villain thou speak'st false": [0, 65535], "were lock'd out adr dissembling villain thou speak'st false in": [0, 65535], "lock'd out adr dissembling villain thou speak'st false in both": [0, 65535], "out adr dissembling villain thou speak'st false in both ant": [0, 65535], "adr dissembling villain thou speak'st false in both ant dissembling": [0, 65535], "dissembling villain thou speak'st false in both ant dissembling harlot": [0, 65535], "villain thou speak'st false in both ant dissembling harlot thou": [0, 65535], "thou speak'st false in both ant dissembling harlot thou art": [0, 65535], "speak'st false in both ant dissembling harlot thou art false": [0, 65535], "false in both ant dissembling harlot thou art false in": [0, 65535], "in both ant dissembling harlot thou art false in all": [0, 65535], "both ant dissembling harlot thou art false in all and": [0, 65535], "ant dissembling harlot thou art false in all and art": [0, 65535], "dissembling harlot thou art false in all and art confederate": [0, 65535], "harlot thou art false in all and art confederate with": [0, 65535], "thou art false in all and art confederate with a": [0, 65535], "art false in all and art confederate with a damned": [0, 65535], "false in all and art confederate with a damned packe": [0, 65535], "in all and art confederate with a damned packe to": [0, 65535], "all and art confederate with a damned packe to make": [0, 65535], "and art confederate with a damned packe to make a": [0, 65535], "art confederate with a damned packe to make a loathsome": [0, 65535], "confederate with a damned packe to make a loathsome abiect": [0, 65535], "with a damned packe to make a loathsome abiect scorne": [0, 65535], "a damned packe to make a loathsome abiect scorne of": [0, 65535], "damned packe to make a loathsome abiect scorne of me": [0, 65535], "packe to make a loathsome abiect scorne of me but": [0, 65535], "to make a loathsome abiect scorne of me but with": [0, 65535], "make a loathsome abiect scorne of me but with these": [0, 65535], "a loathsome abiect scorne of me but with these nailes": [0, 65535], "loathsome abiect scorne of me but with these nailes ile": [0, 65535], "abiect scorne of me but with these nailes ile plucke": [0, 65535], "scorne of me but with these nailes ile plucke out": [0, 65535], "of me but with these nailes ile plucke out these": [0, 65535], "me but with these nailes ile plucke out these false": [0, 65535], "but with these nailes ile plucke out these false eyes": [0, 65535], "with these nailes ile plucke out these false eyes that": [0, 65535], "these nailes ile plucke out these false eyes that would": [0, 65535], "nailes ile plucke out these false eyes that would behold": [0, 65535], "ile plucke out these false eyes that would behold in": [0, 65535], "plucke out these false eyes that would behold in me": [0, 65535], "out these false eyes that would behold in me this": [0, 65535], "these false eyes that would behold in me this shamefull": [0, 65535], "false eyes that would behold in me this shamefull sport": [0, 65535], "eyes that would behold in me this shamefull sport enter": [0, 65535], "that would behold in me this shamefull sport enter three": [0, 65535], "would behold in me this shamefull sport enter three or": [0, 65535], "behold in me this shamefull sport enter three or foure": [0, 65535], "in me this shamefull sport enter three or foure and": [0, 65535], "me this shamefull sport enter three or foure and offer": [0, 65535], "this shamefull sport enter three or foure and offer to": [0, 65535], "shamefull sport enter three or foure and offer to binde": [0, 65535], "sport enter three or foure and offer to binde him": [0, 65535], "enter three or foure and offer to binde him hee": [0, 65535], "three or foure and offer to binde him hee striues": [0, 65535], "or foure and offer to binde him hee striues adr": [0, 65535], "foure and offer to binde him hee striues adr oh": [0, 65535], "and offer to binde him hee striues adr oh binde": [0, 65535], "offer to binde him hee striues adr oh binde him": [0, 65535], "to binde him hee striues adr oh binde him binde": [0, 65535], "binde him hee striues adr oh binde him binde him": [0, 65535], "him hee striues adr oh binde him binde him let": [0, 65535], "hee striues adr oh binde him binde him let him": [0, 65535], "striues adr oh binde him binde him let him not": [0, 65535], "adr oh binde him binde him let him not come": [0, 65535], "oh binde him binde him let him not come neere": [0, 65535], "binde him binde him let him not come neere me": [0, 65535], "him binde him let him not come neere me pinch": [0, 65535], "binde him let him not come neere me pinch more": [0, 65535], "him let him not come neere me pinch more company": [0, 65535], "let him not come neere me pinch more company the": [0, 65535], "him not come neere me pinch more company the fiend": [0, 65535], "not come neere me pinch more company the fiend is": [0, 65535], "come neere me pinch more company the fiend is strong": [0, 65535], "neere me pinch more company the fiend is strong within": [0, 65535], "me pinch more company the fiend is strong within him": [0, 65535], "pinch more company the fiend is strong within him luc": [0, 65535], "more company the fiend is strong within him luc aye": [0, 65535], "company the fiend is strong within him luc aye me": [0, 65535], "the fiend is strong within him luc aye me poore": [0, 65535], "fiend is strong within him luc aye me poore man": [0, 65535], "is strong within him luc aye me poore man how": [0, 65535], "strong within him luc aye me poore man how pale": [0, 65535], "within him luc aye me poore man how pale and": [0, 65535], "him luc aye me poore man how pale and wan": [0, 65535], "luc aye me poore man how pale and wan he": [0, 65535], "aye me poore man how pale and wan he looks": [0, 65535], "me poore man how pale and wan he looks ant": [0, 65535], "poore man how pale and wan he looks ant what": [0, 65535], "man how pale and wan he looks ant what will": [0, 65535], "how pale and wan he looks ant what will you": [0, 65535], "pale and wan he looks ant what will you murther": [0, 65535], "and wan he looks ant what will you murther me": [0, 65535], "wan he looks ant what will you murther me thou": [0, 65535], "he looks ant what will you murther me thou iailor": [0, 65535], "looks ant what will you murther me thou iailor thou": [0, 65535], "ant what will you murther me thou iailor thou i": [0, 65535], "what will you murther me thou iailor thou i am": [0, 65535], "will you murther me thou iailor thou i am thy": [0, 65535], "you murther me thou iailor thou i am thy prisoner": [0, 65535], "murther me thou iailor thou i am thy prisoner wilt": [0, 65535], "me thou iailor thou i am thy prisoner wilt thou": [0, 65535], "thou iailor thou i am thy prisoner wilt thou suffer": [0, 65535], "iailor thou i am thy prisoner wilt thou suffer them": [0, 65535], "thou i am thy prisoner wilt thou suffer them to": [0, 65535], "i am thy prisoner wilt thou suffer them to make": [0, 65535], "am thy prisoner wilt thou suffer them to make a": [0, 65535], "thy prisoner wilt thou suffer them to make a rescue": [0, 65535], "prisoner wilt thou suffer them to make a rescue offi": [0, 65535], "wilt thou suffer them to make a rescue offi masters": [0, 65535], "thou suffer them to make a rescue offi masters let": [0, 65535], "suffer them to make a rescue offi masters let him": [0, 65535], "them to make a rescue offi masters let him go": [0, 65535], "to make a rescue offi masters let him go he": [0, 65535], "make a rescue offi masters let him go he is": [0, 65535], "a rescue offi masters let him go he is my": [0, 65535], "rescue offi masters let him go he is my prisoner": [0, 65535], "offi masters let him go he is my prisoner and": [0, 65535], "masters let him go he is my prisoner and you": [0, 65535], "let him go he is my prisoner and you shall": [0, 65535], "him go he is my prisoner and you shall not": [0, 65535], "go he is my prisoner and you shall not haue": [0, 65535], "he is my prisoner and you shall not haue him": [0, 65535], "is my prisoner and you shall not haue him pinch": [0, 65535], "my prisoner and you shall not haue him pinch go": [0, 65535], "prisoner and you shall not haue him pinch go binde": [0, 65535], "and you shall not haue him pinch go binde this": [0, 65535], "you shall not haue him pinch go binde this man": [0, 65535], "shall not haue him pinch go binde this man for": [0, 65535], "not haue him pinch go binde this man for he": [0, 65535], "haue him pinch go binde this man for he is": [0, 65535], "him pinch go binde this man for he is franticke": [0, 65535], "pinch go binde this man for he is franticke too": [0, 65535], "go binde this man for he is franticke too adr": [0, 65535], "binde this man for he is franticke too adr what": [0, 65535], "this man for he is franticke too adr what wilt": [0, 65535], "man for he is franticke too adr what wilt thou": [0, 65535], "for he is franticke too adr what wilt thou do": [0, 65535], "he is franticke too adr what wilt thou do thou": [0, 65535], "is franticke too adr what wilt thou do thou peeuish": [0, 65535], "franticke too adr what wilt thou do thou peeuish officer": [0, 65535], "too adr what wilt thou do thou peeuish officer hast": [0, 65535], "adr what wilt thou do thou peeuish officer hast thou": [0, 65535], "what wilt thou do thou peeuish officer hast thou delight": [0, 65535], "wilt thou do thou peeuish officer hast thou delight to": [0, 65535], "thou do thou peeuish officer hast thou delight to see": [0, 65535], "do thou peeuish officer hast thou delight to see a": [0, 65535], "thou peeuish officer hast thou delight to see a wretched": [0, 65535], "peeuish officer hast thou delight to see a wretched man": [0, 65535], "officer hast thou delight to see a wretched man do": [0, 65535], "hast thou delight to see a wretched man do outrage": [0, 65535], "thou delight to see a wretched man do outrage and": [0, 65535], "delight to see a wretched man do outrage and displeasure": [0, 65535], "to see a wretched man do outrage and displeasure to": [0, 65535], "see a wretched man do outrage and displeasure to himselfe": [0, 65535], "a wretched man do outrage and displeasure to himselfe offi": [0, 65535], "wretched man do outrage and displeasure to himselfe offi he": [0, 65535], "man do outrage and displeasure to himselfe offi he is": [0, 65535], "do outrage and displeasure to himselfe offi he is my": [0, 65535], "outrage and displeasure to himselfe offi he is my prisoner": [0, 65535], "and displeasure to himselfe offi he is my prisoner if": [0, 65535], "displeasure to himselfe offi he is my prisoner if i": [0, 65535], "to himselfe offi he is my prisoner if i let": [0, 65535], "himselfe offi he is my prisoner if i let him": [0, 65535], "offi he is my prisoner if i let him go": [0, 65535], "he is my prisoner if i let him go the": [0, 65535], "is my prisoner if i let him go the debt": [0, 65535], "my prisoner if i let him go the debt he": [0, 65535], "prisoner if i let him go the debt he owes": [0, 65535], "if i let him go the debt he owes will": [0, 65535], "i let him go the debt he owes will be": [0, 65535], "let him go the debt he owes will be requir'd": [0, 65535], "him go the debt he owes will be requir'd of": [0, 65535], "go the debt he owes will be requir'd of me": [0, 65535], "the debt he owes will be requir'd of me adr": [0, 65535], "debt he owes will be requir'd of me adr i": [0, 65535], "he owes will be requir'd of me adr i will": [0, 65535], "owes will be requir'd of me adr i will discharge": [0, 65535], "will be requir'd of me adr i will discharge thee": [0, 65535], "be requir'd of me adr i will discharge thee ere": [0, 65535], "requir'd of me adr i will discharge thee ere i": [0, 65535], "of me adr i will discharge thee ere i go": [0, 65535], "me adr i will discharge thee ere i go from": [0, 65535], "adr i will discharge thee ere i go from thee": [0, 65535], "i will discharge thee ere i go from thee beare": [0, 65535], "will discharge thee ere i go from thee beare me": [0, 65535], "discharge thee ere i go from thee beare me forthwith": [0, 65535], "thee ere i go from thee beare me forthwith vnto": [0, 65535], "ere i go from thee beare me forthwith vnto his": [0, 65535], "i go from thee beare me forthwith vnto his creditor": [0, 65535], "go from thee beare me forthwith vnto his creditor and": [0, 65535], "from thee beare me forthwith vnto his creditor and knowing": [0, 65535], "thee beare me forthwith vnto his creditor and knowing how": [0, 65535], "beare me forthwith vnto his creditor and knowing how the": [0, 65535], "me forthwith vnto his creditor and knowing how the debt": [0, 65535], "forthwith vnto his creditor and knowing how the debt growes": [0, 65535], "vnto his creditor and knowing how the debt growes i": [0, 65535], "his creditor and knowing how the debt growes i will": [0, 65535], "creditor and knowing how the debt growes i will pay": [0, 65535], "and knowing how the debt growes i will pay it": [0, 65535], "knowing how the debt growes i will pay it good": [0, 65535], "how the debt growes i will pay it good master": [0, 65535], "the debt growes i will pay it good master doctor": [0, 65535], "debt growes i will pay it good master doctor see": [0, 65535], "growes i will pay it good master doctor see him": [0, 65535], "i will pay it good master doctor see him safe": [0, 65535], "will pay it good master doctor see him safe conuey'd": [0, 65535], "pay it good master doctor see him safe conuey'd home": [0, 65535], "it good master doctor see him safe conuey'd home to": [0, 65535], "good master doctor see him safe conuey'd home to my": [0, 65535], "master doctor see him safe conuey'd home to my house": [0, 65535], "doctor see him safe conuey'd home to my house oh": [0, 65535], "see him safe conuey'd home to my house oh most": [0, 65535], "him safe conuey'd home to my house oh most vnhappy": [0, 65535], "safe conuey'd home to my house oh most vnhappy day": [0, 65535], "conuey'd home to my house oh most vnhappy day ant": [0, 65535], "home to my house oh most vnhappy day ant oh": [0, 65535], "to my house oh most vnhappy day ant oh most": [0, 65535], "my house oh most vnhappy day ant oh most vnhappie": [0, 65535], "house oh most vnhappy day ant oh most vnhappie strumpet": [0, 65535], "oh most vnhappy day ant oh most vnhappie strumpet dro": [0, 65535], "most vnhappy day ant oh most vnhappie strumpet dro master": [0, 65535], "vnhappy day ant oh most vnhappie strumpet dro master i": [0, 65535], "day ant oh most vnhappie strumpet dro master i am": [0, 65535], "ant oh most vnhappie strumpet dro master i am heere": [0, 65535], "oh most vnhappie strumpet dro master i am heere entred": [0, 65535], "most vnhappie strumpet dro master i am heere entred in": [0, 65535], "vnhappie strumpet dro master i am heere entred in bond": [0, 65535], "strumpet dro master i am heere entred in bond for": [0, 65535], "dro master i am heere entred in bond for you": [0, 65535], "master i am heere entred in bond for you ant": [0, 65535], "i am heere entred in bond for you ant out": [0, 65535], "am heere entred in bond for you ant out on": [0, 65535], "heere entred in bond for you ant out on thee": [0, 65535], "entred in bond for you ant out on thee villaine": [0, 65535], "in bond for you ant out on thee villaine wherefore": [0, 65535], "bond for you ant out on thee villaine wherefore dost": [0, 65535], "for you ant out on thee villaine wherefore dost thou": [0, 65535], "you ant out on thee villaine wherefore dost thou mad": [0, 65535], "ant out on thee villaine wherefore dost thou mad mee": [0, 65535], "out on thee villaine wherefore dost thou mad mee dro": [0, 65535], "on thee villaine wherefore dost thou mad mee dro will": [0, 65535], "thee villaine wherefore dost thou mad mee dro will you": [0, 65535], "villaine wherefore dost thou mad mee dro will you be": [0, 65535], "wherefore dost thou mad mee dro will you be bound": [0, 65535], "dost thou mad mee dro will you be bound for": [0, 65535], "thou mad mee dro will you be bound for nothing": [0, 65535], "mad mee dro will you be bound for nothing be": [0, 65535], "mee dro will you be bound for nothing be mad": [0, 65535], "dro will you be bound for nothing be mad good": [0, 65535], "will you be bound for nothing be mad good master": [0, 65535], "you be bound for nothing be mad good master cry": [0, 65535], "be bound for nothing be mad good master cry the": [0, 65535], "bound for nothing be mad good master cry the diuell": [0, 65535], "for nothing be mad good master cry the diuell luc": [0, 65535], "nothing be mad good master cry the diuell luc god": [0, 65535], "be mad good master cry the diuell luc god helpe": [0, 65535], "mad good master cry the diuell luc god helpe poore": [0, 65535], "good master cry the diuell luc god helpe poore soules": [0, 65535], "master cry the diuell luc god helpe poore soules how": [0, 65535], "cry the diuell luc god helpe poore soules how idlely": [0, 65535], "the diuell luc god helpe poore soules how idlely doe": [0, 65535], "diuell luc god helpe poore soules how idlely doe they": [0, 65535], "luc god helpe poore soules how idlely doe they talke": [0, 65535], "god helpe poore soules how idlely doe they talke adr": [0, 65535], "helpe poore soules how idlely doe they talke adr go": [0, 65535], "poore soules how idlely doe they talke adr go beare": [0, 65535], "soules how idlely doe they talke adr go beare him": [0, 65535], "how idlely doe they talke adr go beare him hence": [0, 65535], "idlely doe they talke adr go beare him hence sister": [0, 65535], "doe they talke adr go beare him hence sister go": [0, 65535], "they talke adr go beare him hence sister go you": [0, 65535], "talke adr go beare him hence sister go you with": [0, 65535], "adr go beare him hence sister go you with me": [0, 65535], "go beare him hence sister go you with me say": [0, 65535], "beare him hence sister go you with me say now": [0, 65535], "him hence sister go you with me say now whose": [0, 65535], "hence sister go you with me say now whose suite": [0, 65535], "sister go you with me say now whose suite is": [0, 65535], "go you with me say now whose suite is he": [0, 65535], "you with me say now whose suite is he arrested": [0, 65535], "with me say now whose suite is he arrested at": [0, 65535], "me say now whose suite is he arrested at exeunt": [0, 65535], "say now whose suite is he arrested at exeunt manet": [0, 65535], "now whose suite is he arrested at exeunt manet offic": [0, 65535], "whose suite is he arrested at exeunt manet offic adri": [0, 65535], "suite is he arrested at exeunt manet offic adri luci": [0, 65535], "is he arrested at exeunt manet offic adri luci courtizan": [0, 65535], "he arrested at exeunt manet offic adri luci courtizan off": [0, 65535], "arrested at exeunt manet offic adri luci courtizan off one": [0, 65535], "at exeunt manet offic adri luci courtizan off one angelo": [0, 65535], "exeunt manet offic adri luci courtizan off one angelo a": [0, 65535], "manet offic adri luci courtizan off one angelo a goldsmith": [0, 65535], "offic adri luci courtizan off one angelo a goldsmith do": [0, 65535], "adri luci courtizan off one angelo a goldsmith do you": [0, 65535], "luci courtizan off one angelo a goldsmith do you know": [0, 65535], "courtizan off one angelo a goldsmith do you know him": [0, 65535], "off one angelo a goldsmith do you know him adr": [0, 65535], "one angelo a goldsmith do you know him adr i": [0, 65535], "angelo a goldsmith do you know him adr i know": [0, 65535], "a goldsmith do you know him adr i know the": [0, 65535], "goldsmith do you know him adr i know the man": [0, 65535], "do you know him adr i know the man what": [0, 65535], "you know him adr i know the man what is": [0, 65535], "know him adr i know the man what is the": [0, 65535], "him adr i know the man what is the summe": [0, 65535], "adr i know the man what is the summe he": [0, 65535], "i know the man what is the summe he owes": [0, 65535], "know the man what is the summe he owes off": [0, 65535], "the man what is the summe he owes off two": [0, 65535], "man what is the summe he owes off two hundred": [0, 65535], "what is the summe he owes off two hundred duckets": [0, 65535], "is the summe he owes off two hundred duckets adr": [0, 65535], "the summe he owes off two hundred duckets adr say": [0, 65535], "summe he owes off two hundred duckets adr say how": [0, 65535], "he owes off two hundred duckets adr say how growes": [0, 65535], "owes off two hundred duckets adr say how growes it": [0, 65535], "off two hundred duckets adr say how growes it due": [0, 65535], "two hundred duckets adr say how growes it due off": [0, 65535], "hundred duckets adr say how growes it due off due": [0, 65535], "duckets adr say how growes it due off due for": [0, 65535], "adr say how growes it due off due for a": [0, 65535], "say how growes it due off due for a chaine": [0, 65535], "how growes it due off due for a chaine your": [0, 65535], "growes it due off due for a chaine your husband": [0, 65535], "it due off due for a chaine your husband had": [0, 65535], "due off due for a chaine your husband had of": [0, 65535], "off due for a chaine your husband had of him": [0, 65535], "due for a chaine your husband had of him adr": [0, 65535], "for a chaine your husband had of him adr he": [0, 65535], "a chaine your husband had of him adr he did": [0, 65535], "chaine your husband had of him adr he did bespeake": [0, 65535], "your husband had of him adr he did bespeake a": [0, 65535], "husband had of him adr he did bespeake a chain": [0, 65535], "had of him adr he did bespeake a chain for": [0, 65535], "of him adr he did bespeake a chain for me": [0, 65535], "him adr he did bespeake a chain for me but": [0, 65535], "adr he did bespeake a chain for me but had": [0, 65535], "he did bespeake a chain for me but had it": [0, 65535], "did bespeake a chain for me but had it not": [0, 65535], "bespeake a chain for me but had it not cur": [0, 65535], "a chain for me but had it not cur when": [0, 65535], "chain for me but had it not cur when as": [0, 65535], "for me but had it not cur when as your": [0, 65535], "me but had it not cur when as your husband": [0, 65535], "but had it not cur when as your husband all": [0, 65535], "had it not cur when as your husband all in": [0, 65535], "it not cur when as your husband all in rage": [0, 65535], "not cur when as your husband all in rage to": [0, 65535], "cur when as your husband all in rage to day": [0, 65535], "when as your husband all in rage to day came": [0, 65535], "as your husband all in rage to day came to": [0, 65535], "your husband all in rage to day came to my": [0, 65535], "husband all in rage to day came to my house": [0, 65535], "all in rage to day came to my house and": [0, 65535], "in rage to day came to my house and tooke": [0, 65535], "rage to day came to my house and tooke away": [0, 65535], "to day came to my house and tooke away my": [0, 65535], "day came to my house and tooke away my ring": [0, 65535], "came to my house and tooke away my ring the": [0, 65535], "to my house and tooke away my ring the ring": [0, 65535], "my house and tooke away my ring the ring i": [0, 65535], "house and tooke away my ring the ring i saw": [0, 65535], "and tooke away my ring the ring i saw vpon": [0, 65535], "tooke away my ring the ring i saw vpon his": [0, 65535], "away my ring the ring i saw vpon his finger": [0, 65535], "my ring the ring i saw vpon his finger now": [0, 65535], "ring the ring i saw vpon his finger now straight": [0, 65535], "the ring i saw vpon his finger now straight after": [0, 65535], "ring i saw vpon his finger now straight after did": [0, 65535], "i saw vpon his finger now straight after did i": [0, 65535], "saw vpon his finger now straight after did i meete": [0, 65535], "vpon his finger now straight after did i meete him": [0, 65535], "his finger now straight after did i meete him with": [0, 65535], "finger now straight after did i meete him with a": [0, 65535], "now straight after did i meete him with a chaine": [0, 65535], "straight after did i meete him with a chaine adr": [0, 65535], "after did i meete him with a chaine adr it": [0, 65535], "did i meete him with a chaine adr it may": [0, 65535], "i meete him with a chaine adr it may be": [0, 65535], "meete him with a chaine adr it may be so": [0, 65535], "him with a chaine adr it may be so but": [0, 65535], "with a chaine adr it may be so but i": [0, 65535], "a chaine adr it may be so but i did": [0, 65535], "chaine adr it may be so but i did neuer": [0, 65535], "adr it may be so but i did neuer see": [0, 65535], "it may be so but i did neuer see it": [0, 65535], "may be so but i did neuer see it come": [0, 65535], "be so but i did neuer see it come iailor": [0, 65535], "so but i did neuer see it come iailor bring": [0, 65535], "but i did neuer see it come iailor bring me": [0, 65535], "i did neuer see it come iailor bring me where": [0, 65535], "did neuer see it come iailor bring me where the": [0, 65535], "neuer see it come iailor bring me where the goldsmith": [0, 65535], "see it come iailor bring me where the goldsmith is": [0, 65535], "it come iailor bring me where the goldsmith is i": [0, 65535], "come iailor bring me where the goldsmith is i long": [0, 65535], "iailor bring me where the goldsmith is i long to": [0, 65535], "bring me where the goldsmith is i long to know": [0, 65535], "me where the goldsmith is i long to know the": [0, 65535], "where the goldsmith is i long to know the truth": [0, 65535], "the goldsmith is i long to know the truth heereof": [0, 65535], "goldsmith is i long to know the truth heereof at": [0, 65535], "is i long to know the truth heereof at large": [0, 65535], "i long to know the truth heereof at large enter": [0, 65535], "long to know the truth heereof at large enter antipholus": [0, 65535], "to know the truth heereof at large enter antipholus siracusia": [0, 65535], "know the truth heereof at large enter antipholus siracusia with": [0, 65535], "the truth heereof at large enter antipholus siracusia with his": [0, 65535], "truth heereof at large enter antipholus siracusia with his rapier": [0, 65535], "heereof at large enter antipholus siracusia with his rapier drawne": [0, 65535], "at large enter antipholus siracusia with his rapier drawne and": [0, 65535], "large enter antipholus siracusia with his rapier drawne and dromio": [0, 65535], "enter antipholus siracusia with his rapier drawne and dromio sirac": [0, 65535], "antipholus siracusia with his rapier drawne and dromio sirac luc": [0, 65535], "siracusia with his rapier drawne and dromio sirac luc god": [0, 65535], "with his rapier drawne and dromio sirac luc god for": [0, 65535], "his rapier drawne and dromio sirac luc god for thy": [0, 65535], "rapier drawne and dromio sirac luc god for thy mercy": [0, 65535], "drawne and dromio sirac luc god for thy mercy they": [0, 65535], "and dromio sirac luc god for thy mercy they are": [0, 65535], "dromio sirac luc god for thy mercy they are loose": [0, 65535], "sirac luc god for thy mercy they are loose againe": [0, 65535], "luc god for thy mercy they are loose againe adr": [0, 65535], "god for thy mercy they are loose againe adr and": [0, 65535], "for thy mercy they are loose againe adr and come": [0, 65535], "thy mercy they are loose againe adr and come with": [0, 65535], "mercy they are loose againe adr and come with naked": [0, 65535], "they are loose againe adr and come with naked swords": [0, 65535], "are loose againe adr and come with naked swords let's": [0, 65535], "loose againe adr and come with naked swords let's call": [0, 65535], "againe adr and come with naked swords let's call more": [0, 65535], "adr and come with naked swords let's call more helpe": [0, 65535], "and come with naked swords let's call more helpe to": [0, 65535], "come with naked swords let's call more helpe to haue": [0, 65535], "with naked swords let's call more helpe to haue them": [0, 65535], "naked swords let's call more helpe to haue them bound": [0, 65535], "swords let's call more helpe to haue them bound againe": [0, 65535], "let's call more helpe to haue them bound againe runne": [0, 65535], "call more helpe to haue them bound againe runne all": [0, 65535], "more helpe to haue them bound againe runne all out": [0, 65535], "helpe to haue them bound againe runne all out off": [0, 65535], "to haue them bound againe runne all out off away": [0, 65535], "haue them bound againe runne all out off away they'l": [0, 65535], "them bound againe runne all out off away they'l kill": [0, 65535], "bound againe runne all out off away they'l kill vs": [0, 65535], "againe runne all out off away they'l kill vs exeunt": [0, 65535], "runne all out off away they'l kill vs exeunt omnes": [0, 65535], "all out off away they'l kill vs exeunt omnes as": [0, 65535], "out off away they'l kill vs exeunt omnes as fast": [0, 65535], "off away they'l kill vs exeunt omnes as fast as": [0, 65535], "away they'l kill vs exeunt omnes as fast as may": [0, 65535], "they'l kill vs exeunt omnes as fast as may be": [0, 65535], "kill vs exeunt omnes as fast as may be frighted": [0, 65535], "vs exeunt omnes as fast as may be frighted s": [0, 65535], "exeunt omnes as fast as may be frighted s ant": [0, 65535], "omnes as fast as may be frighted s ant i": [0, 65535], "as fast as may be frighted s ant i see": [0, 65535], "fast as may be frighted s ant i see these": [0, 65535], "as may be frighted s ant i see these witches": [0, 65535], "may be frighted s ant i see these witches are": [0, 65535], "be frighted s ant i see these witches are affraid": [0, 65535], "frighted s ant i see these witches are affraid of": [0, 65535], "s ant i see these witches are affraid of swords": [0, 65535], "ant i see these witches are affraid of swords s": [0, 65535], "i see these witches are affraid of swords s dro": [0, 65535], "see these witches are affraid of swords s dro she": [0, 65535], "these witches are affraid of swords s dro she that": [0, 65535], "witches are affraid of swords s dro she that would": [0, 65535], "are affraid of swords s dro she that would be": [0, 65535], "affraid of swords s dro she that would be your": [0, 65535], "of swords s dro she that would be your wife": [0, 65535], "swords s dro she that would be your wife now": [0, 65535], "s dro she that would be your wife now ran": [0, 65535], "dro she that would be your wife now ran from": [0, 65535], "she that would be your wife now ran from you": [0, 65535], "that would be your wife now ran from you ant": [0, 65535], "would be your wife now ran from you ant come": [0, 65535], "be your wife now ran from you ant come to": [0, 65535], "your wife now ran from you ant come to the": [0, 65535], "wife now ran from you ant come to the centaur": [0, 65535], "now ran from you ant come to the centaur fetch": [0, 65535], "ran from you ant come to the centaur fetch our": [0, 65535], "from you ant come to the centaur fetch our stuffe": [0, 65535], "you ant come to the centaur fetch our stuffe from": [0, 65535], "ant come to the centaur fetch our stuffe from thence": [0, 65535], "come to the centaur fetch our stuffe from thence i": [0, 65535], "to the centaur fetch our stuffe from thence i long": [0, 65535], "the centaur fetch our stuffe from thence i long that": [0, 65535], "centaur fetch our stuffe from thence i long that we": [0, 65535], "fetch our stuffe from thence i long that we were": [0, 65535], "our stuffe from thence i long that we were safe": [0, 65535], "stuffe from thence i long that we were safe and": [0, 65535], "from thence i long that we were safe and sound": [0, 65535], "thence i long that we were safe and sound aboord": [0, 65535], "i long that we were safe and sound aboord dro": [0, 65535], "long that we were safe and sound aboord dro faith": [0, 65535], "that we were safe and sound aboord dro faith stay": [0, 65535], "we were safe and sound aboord dro faith stay heere": [0, 65535], "were safe and sound aboord dro faith stay heere this": [0, 65535], "safe and sound aboord dro faith stay heere this night": [0, 65535], "and sound aboord dro faith stay heere this night they": [0, 65535], "sound aboord dro faith stay heere this night they will": [0, 65535], "aboord dro faith stay heere this night they will surely": [0, 65535], "dro faith stay heere this night they will surely do": [0, 65535], "faith stay heere this night they will surely do vs": [0, 65535], "stay heere this night they will surely do vs no": [0, 65535], "heere this night they will surely do vs no harme": [0, 65535], "this night they will surely do vs no harme you": [0, 65535], "night they will surely do vs no harme you saw": [0, 65535], "they will surely do vs no harme you saw they": [0, 65535], "will surely do vs no harme you saw they speake": [0, 65535], "surely do vs no harme you saw they speake vs": [0, 65535], "do vs no harme you saw they speake vs faire": [0, 65535], "vs no harme you saw they speake vs faire giue": [0, 65535], "no harme you saw they speake vs faire giue vs": [0, 65535], "harme you saw they speake vs faire giue vs gold": [0, 65535], "you saw they speake vs faire giue vs gold me": [0, 65535], "saw they speake vs faire giue vs gold me thinkes": [0, 65535], "they speake vs faire giue vs gold me thinkes they": [0, 65535], "speake vs faire giue vs gold me thinkes they are": [0, 65535], "vs faire giue vs gold me thinkes they are such": [0, 65535], "faire giue vs gold me thinkes they are such a": [0, 65535], "giue vs gold me thinkes they are such a gentle": [0, 65535], "vs gold me thinkes they are such a gentle nation": [0, 65535], "gold me thinkes they are such a gentle nation that": [0, 65535], "me thinkes they are such a gentle nation that but": [0, 65535], "thinkes they are such a gentle nation that but for": [0, 65535], "they are such a gentle nation that but for the": [0, 65535], "are such a gentle nation that but for the mountaine": [0, 65535], "such a gentle nation that but for the mountaine of": [0, 65535], "a gentle nation that but for the mountaine of mad": [0, 65535], "gentle nation that but for the mountaine of mad flesh": [0, 65535], "nation that but for the mountaine of mad flesh that": [0, 65535], "that but for the mountaine of mad flesh that claimes": [0, 65535], "but for the mountaine of mad flesh that claimes mariage": [0, 65535], "for the mountaine of mad flesh that claimes mariage of": [0, 65535], "the mountaine of mad flesh that claimes mariage of me": [0, 65535], "mountaine of mad flesh that claimes mariage of me i": [0, 65535], "of mad flesh that claimes mariage of me i could": [0, 65535], "mad flesh that claimes mariage of me i could finde": [0, 65535], "flesh that claimes mariage of me i could finde in": [0, 65535], "that claimes mariage of me i could finde in my": [0, 65535], "claimes mariage of me i could finde in my heart": [0, 65535], "mariage of me i could finde in my heart to": [0, 65535], "of me i could finde in my heart to stay": [0, 65535], "me i could finde in my heart to stay heere": [0, 65535], "i could finde in my heart to stay heere still": [0, 65535], "could finde in my heart to stay heere still and": [0, 65535], "finde in my heart to stay heere still and turne": [0, 65535], "in my heart to stay heere still and turne witch": [0, 65535], "my heart to stay heere still and turne witch ant": [0, 65535], "heart to stay heere still and turne witch ant i": [0, 65535], "to stay heere still and turne witch ant i will": [0, 65535], "stay heere still and turne witch ant i will not": [0, 65535], "heere still and turne witch ant i will not stay": [0, 65535], "still and turne witch ant i will not stay to": [0, 65535], "and turne witch ant i will not stay to night": [0, 65535], "turne witch ant i will not stay to night for": [0, 65535], "witch ant i will not stay to night for all": [0, 65535], "ant i will not stay to night for all the": [0, 65535], "i will not stay to night for all the towne": [0, 65535], "will not stay to night for all the towne therefore": [0, 65535], "not stay to night for all the towne therefore away": [0, 65535], "stay to night for all the towne therefore away to": [0, 65535], "to night for all the towne therefore away to get": [0, 65535], "night for all the towne therefore away to get our": [0, 65535], "for all the towne therefore away to get our stuffe": [0, 65535], "all the towne therefore away to get our stuffe aboord": [0, 65535], "the towne therefore away to get our stuffe aboord exeunt": [0, 65535], "__names__": ["twain", "shakespeare"], "__ngrams__": 10, "__version__": 3}